diff --git a/3ds Max/Max2Babylon/2015/Max2Babylon2015.csproj b/3ds Max/Max2Babylon/2015/Max2Babylon2015.csproj
index 101d1fcc..6fd278f8 100644
--- a/3ds Max/Max2Babylon/2015/Max2Babylon2015.csproj
+++ b/3ds Max/Max2Babylon/2015/Max2Babylon2015.csproj
@@ -157,6 +157,9 @@
Exporter\BabylonExporter.Camera.cs
+
+ Exporter\BabylonExporter.CustomAttributes.cs
+
Exporter\BabylonExporter.cs
@@ -166,6 +169,9 @@
Exporter\BabylonExporter.Light.cs
+
+ Exporter\BabylonExporter.Logger.cs
+
Exporter\BabylonExporter.Material.cs
diff --git a/3ds Max/Max2Babylon/2017/Max2Babylon2017.csproj b/3ds Max/Max2Babylon/2017/Max2Babylon2017.csproj
index c017ed76..ecb83403 100644
--- a/3ds Max/Max2Babylon/2017/Max2Babylon2017.csproj
+++ b/3ds Max/Max2Babylon/2017/Max2Babylon2017.csproj
@@ -158,6 +158,9 @@
Exporter\BabylonExporter.Camera.cs
+
+ Exporter\BabylonExporter.CustomAttributes.cs
+
Exporter\BabylonExporter.cs
@@ -167,6 +170,9 @@
Exporter\BabylonExporter.Light.cs
+
+ Exporter\BabylonExporter.Logger.cs
+
Exporter\BabylonExporter.Material.cs
diff --git a/3ds Max/Max2Babylon/2018/Max2Babylon2018.csproj b/3ds Max/Max2Babylon/2018/Max2Babylon2018.csproj
index 543ddff9..f5096051 100644
--- a/3ds Max/Max2Babylon/2018/Max2Babylon2018.csproj
+++ b/3ds Max/Max2Babylon/2018/Max2Babylon2018.csproj
@@ -157,6 +157,9 @@
Exporter\BabylonExporter.Camera.cs
+
+ Exporter\BabylonExporter.CustomAttributes.cs
+
Exporter\BabylonExporter.cs
@@ -166,6 +169,9 @@
Exporter\BabylonExporter.Light.cs
+
+ Exporter\BabylonExporter.Logger.cs
+
Exporter\BabylonExporter.Material.cs
diff --git a/3ds Max/Max2Babylon/2019/Max2Babylon2019.csproj b/3ds Max/Max2Babylon/2019/Max2Babylon2019.csproj
index d38f6a44..279008ae 100644
--- a/3ds Max/Max2Babylon/2019/Max2Babylon2019.csproj
+++ b/3ds Max/Max2Babylon/2019/Max2Babylon2019.csproj
@@ -161,6 +161,9 @@
Exporter\BabylonExporter.Camera.cs
+
+ Exporter\BabylonExporter.CustomAttributes.cs
+
Exporter\BabylonExporter.cs
@@ -170,6 +173,9 @@
Exporter\BabylonExporter.Light.cs
+
+ Exporter\BabylonExporter.Logger.cs
+
Exporter\BabylonExporter.Material.cs
diff --git a/3ds Max/Max2Babylon/2020/Max2Babylon2020.csproj b/3ds Max/Max2Babylon/2020/Max2Babylon2020.csproj
index c4baceab..26642b71 100644
--- a/3ds Max/Max2Babylon/2020/Max2Babylon2020.csproj
+++ b/3ds Max/Max2Babylon/2020/Max2Babylon2020.csproj
@@ -161,6 +161,9 @@
Exporter\BabylonExporter.Camera.cs
+
+ Exporter\BabylonExporter.CustomAttributes.cs
+
Exporter\BabylonExporter.cs
@@ -170,6 +173,9 @@
Exporter\BabylonExporter.Light.cs
+
+ Exporter\BabylonExporter.Logger.cs
+
Exporter\BabylonExporter.Material.cs
diff --git a/3ds Max/Max2Babylon/Exporter/BabylonExporter.Camera.cs b/3ds Max/Max2Babylon/Exporter/BabylonExporter.Camera.cs
index 8f3dbbf5..766115f6 100644
--- a/3ds Max/Max2Babylon/Exporter/BabylonExporter.Camera.cs
+++ b/3ds Max/Max2Babylon/Exporter/BabylonExporter.Camera.cs
@@ -32,6 +32,9 @@ private BabylonCamera ExportCamera(IIGameScene scene, IIGameNode cameraNode, Bab
babylonCamera.parentId = cameraNode.NodeParent.MaxNode.GetGuid().ToString();
}
+ // Export the custom attributes of this camera
+ babylonCamera.metadata = ExportExtraAttributes(cameraNode, babylonScene);
+
babylonCamera.fov = Tools.ConvertFov(maxCamera.GetFOV(0, Tools.Forever));
if (maxCamera.ManualClip == 1)
diff --git a/3ds Max/Max2Babylon/Exporter/BabylonExporter.CustomAttributes.cs b/3ds Max/Max2Babylon/Exporter/BabylonExporter.CustomAttributes.cs
new file mode 100644
index 00000000..9c9cd383
--- /dev/null
+++ b/3ds Max/Max2Babylon/Exporter/BabylonExporter.CustomAttributes.cs
@@ -0,0 +1,173 @@
+using Autodesk.Max;
+using BabylonExport.Entities;
+using System;
+using System.Collections.Generic;
+
+namespace Max2Babylon
+{
+ partial class BabylonExporter
+ {
+ ///
+ /// Return the custom attributes of a material
+ ///
+ ///
+ ///
+ /// Attribute names to not export
+ public Dictionary ExportExtraAttributes(IIGameMaterial gameMaterial, BabylonScene babylonScene, List excludeAttributes = null)
+ {
+ // Retreive the max object
+ ManagedServices.MaxscriptSDK.ExecuteMaxscriptCommand("obj = sceneMaterials[\"" + gameMaterial.MaterialName + "\"];");
+
+ return _ExportExtraAttributes(gameMaterial.IPropertyContainer, babylonScene, excludeAttributes);
+ }
+
+ ///
+ /// Return the custom attributes of a material
+ ///
+ ///
+ ///
+ /// Attribute names to not export
+ public Dictionary ExportExtraAttributes(IIGameNode gameNode, BabylonScene babylonScene, List excludeAttributes = null)
+ {
+ // Retreive the max object
+ ManagedServices.MaxscriptSDK.ExecuteMaxscriptCommand("obj = execute(\"$'" + gameNode.Name + "'\");");
+
+ return _ExportExtraAttributes(gameNode.IGameObject.IPropertyContainer, babylonScene, excludeAttributes);
+ }
+
+ ///
+ /// Return custom attributes retreive from a max object named "obj"
+ ///
+ ///
+ ///
+ ///
+ /// Attribute names to not export
+ private Dictionary _ExportExtraAttributes(IIPropertyContainer propertyContainer, BabylonScene babylonScene, List excludeAttributes = null)
+ {
+ RaiseMessage("ExportExtraAttributes", 2);
+
+ // Return a string encoded with 2 separators
+ // Parameter separator: _$€PParam_
+ // Name/Type separator: _$€PType_
+ string cmd = "s = \"\""
+ + "\r\n" + "for objDef in (custAttributes.getDefs obj) do"
+ + "\r\n" + "("
+ + "\r\n" + "pbArray = custAttributes.getPBlockDefs objdef"
+ + "\r\n" + "for indexPBlock = 1 to pbArray.count do"
+ + "\r\n" + "("
+ + "\r\n" + "itms = pbArray[indexPBlock]"
+ + "\r\n" + "for y = 5 to itms.Count do"
+ + "\r\n" + "("
+ + "\r\n" + "s = s + \"_$€PParam_\" + itms[y][1]"
+ + "\r\n" + "for z = 1 to itms[y][2].Count by 2 do"
+ + "\r\n" + "("
+ + "\r\n" + "key = itms[y][2][z] as string"
+ + "\r\n" + "if (findString key \"type\") != undefined then"
+ + "\r\n" + "("
+ + "\r\n" + "s = s + \"_$€PType_\" + itms[y][2][z+1]"
+ + "\r\n" + ")"
+ + "\r\n" + ")"
+ + "\r\n" + ")"
+ + "\r\n" + ")"
+ + "\r\n" + ")"
+ + "\r\n" + "s";
+ string result = ManagedServices.MaxscriptSDK.ExecuteStringMaxscriptQuery(cmd);
+
+ if (result == null || result == "")
+ {
+ return null;
+ }
+
+ // Parse the result into a dictionary
+ string[] parameters = result.Split(new string[] { "_$€PParam_" }, StringSplitOptions.RemoveEmptyEntries);
+ Dictionary customAttributesTypeByName = new Dictionary();
+ foreach (string parameter in parameters)
+ {
+ string[] customAttribute = parameter.Split(new string[] { "_$€PType_" }, StringSplitOptions.RemoveEmptyEntries);
+ string key = customAttribute[0];
+ if (customAttributesTypeByName.ContainsKey(key) == false)
+ {
+ customAttributesTypeByName.Add(key, customAttribute[1]);
+ }
+ }
+
+ // Remove preset custom attributes
+ customAttributesTypeByName.Remove("presetName_str");
+ customAttributesTypeByName.Remove("preset_str");
+ customAttributesTypeByName.Remove("rampOn");
+
+ // Remove specified attributes
+ if (excludeAttributes != null)
+ {
+ foreach (string excludeAttribute in excludeAttributes)
+ {
+ customAttributesTypeByName.Remove(excludeAttribute);
+ }
+ }
+
+ // Handle each attribute type
+ Dictionary metadata = new Dictionary();
+ foreach (KeyValuePair entry in customAttributesTypeByName)
+ {
+ object obj = null;
+
+ RaiseMessage(entry.Key + "=" + entry.Value, 2);
+
+ switch (entry.Value.ToLowerInvariant())
+ {
+ case "float":
+ case "angle": // in rad units
+ case "worldunits":
+ obj = propertyContainer.GetFloatProperty(entry.Key);
+ break;
+ case "percent": // in base 1 (80% => 0.8)
+ obj = propertyContainer.GetFloatProperty(entry.Key) / 100f;
+ break;
+ case "boolean":
+ obj = propertyContainer.GetBoolProperty(entry.Key);
+ break;
+ case "integer":
+ case "array": // selected enum value expressed as int starting from 1
+ obj = propertyContainer.GetIntProperty(entry.Key);
+ break;
+ case "string":
+ obj = propertyContainer.GetStringProperty(entry.Key);
+ break;
+ case "color": // Color RGB in base 1 (not 255)
+ obj = propertyContainer.GetPoint3Property(entry.Key).ToArray();
+ break;
+ case "frgba": // Color RGBA in base 1 (not 255)
+ obj = propertyContainer.GetPoint4Property(entry.Key).ToArray();
+ break;
+ case "texturemap":
+ IIGameProperty gameProperty = propertyContainer.QueryProperty(entry.Key);
+ ITexmap texmap = gameProperty.MaxParamBlock2.GetTexmap(gameProperty.ParamID, 0, 0);
+ obj = ExportTexture(texmap, babylonScene);
+ break;
+ case "node":
+ // Currently not exported
+ break;
+ case "material":
+ // Currently not exported
+ break;
+ default:
+ RaiseWarning("Unknown type '" + entry.Value + "' for custom attribute named '" + entry.Key + "'", 2);
+ break;
+ }
+
+ if (obj != null)
+ {
+ metadata.Add(entry.Key, obj);
+ }
+ }
+
+ // Print all extra attributes
+ foreach (KeyValuePair entry in metadata)
+ {
+ RaiseVerbose(entry.Key + "=" + entry.Value, 2);
+ }
+
+ return metadata;
+ }
+ }
+}
diff --git a/3ds Max/Max2Babylon/Exporter/BabylonExporter.Light.cs b/3ds Max/Max2Babylon/Exporter/BabylonExporter.Light.cs
index 406ed057..515739a5 100644
--- a/3ds Max/Max2Babylon/Exporter/BabylonExporter.Light.cs
+++ b/3ds Max/Max2Babylon/Exporter/BabylonExporter.Light.cs
@@ -44,6 +44,9 @@ private BabylonNode ExportLight(IIGameScene scene, IIGameNode lightNode, Babylon
RaiseMessage(lightNode.Name, 1);
babylonLight.name = lightNode.Name;
+ // Export the custom attributes of this light
+ babylonLight.metadata = ExportExtraAttributes(lightNode, babylonScene);
+
// If the light has a children and the export is to babylon, add a dummy
// To preserve the position/rotation and the hierarchy, we create a dummy that will contains as direct children the light and the light children
// The light will have no children. The dummy will contains the position and rotation animations.
diff --git a/3ds Max/Max2Babylon/Exporter/BabylonExporter.Logger.cs b/3ds Max/Max2Babylon/Exporter/BabylonExporter.Logger.cs
new file mode 100644
index 00000000..a6824259
--- /dev/null
+++ b/3ds Max/Max2Babylon/Exporter/BabylonExporter.Logger.cs
@@ -0,0 +1,200 @@
+using Autodesk.Max;
+using System;
+using System.Drawing;
+
+namespace Max2Babylon
+{
+ internal partial class BabylonExporter
+ {
+ public enum LogLevel
+ {
+ ERROR,
+ WARNING,
+ MESSAGE,
+ VERBOSE
+ }
+
+ // TODO - Update log level for release
+ public LogLevel logLevel = LogLevel.VERBOSE;
+
+ public event Action OnExportProgressChanged;
+ public event Action OnError;
+ public event Action OnWarning;
+ public event Action OnMessage;
+ public event Action OnVerbose;
+
+ public void ReportProgressChanged(int progress)
+ {
+ if (OnExportProgressChanged != null)
+ {
+ OnExportProgressChanged(progress);
+ }
+ }
+
+ public void ReportProgressChanged(float progress)
+ {
+ ReportProgressChanged((int)progress);
+ }
+
+ public void RaiseError(string error, int rank = 0)
+ {
+ if (OnError != null && logLevel >= LogLevel.ERROR)
+ {
+ OnError(error, rank);
+ }
+ }
+
+ public void RaiseWarning(string warning, int rank = 0)
+ {
+ if (OnWarning != null && logLevel >= LogLevel.WARNING)
+ {
+ OnWarning(warning, rank);
+ }
+ }
+
+ public void RaiseMessage(string message, int rank = 0, bool emphasis = false)
+ {
+ RaiseMessage(message, Color.Black, rank, emphasis);
+ }
+
+ public void RaiseMessage(string message, Color color, int rank = 0, bool emphasis = false)
+ {
+ if (OnMessage != null && logLevel >= LogLevel.MESSAGE)
+ {
+ OnMessage(message, color, rank, emphasis);
+ }
+ }
+
+ public void RaiseVerbose(string message, int rank = 0, bool emphasis = false)
+ {
+ RaiseVerbose(message, Color.FromArgb(100, 100, 100), rank, emphasis);
+ }
+
+ public void RaiseVerbose(string message, Color color, int rank = 0, bool emphasis = false)
+ {
+ if (OnVerbose != null && logLevel >= LogLevel.VERBOSE)
+ {
+ OnVerbose(message, color, rank, emphasis);
+ }
+ }
+
+ public void Print(IIParamBlock2 paramBlock, int logRank)
+ {
+ RaiseVerbose("paramBlock=" + paramBlock, logRank);
+ if (paramBlock != null)
+ {
+ RaiseVerbose("paramBlock.NumParams=" + paramBlock.NumParams, logRank + 1);
+ for (short i = 0; i < paramBlock.NumParams; i++)
+ {
+ ParamType2 paramType = paramBlock.GetParameterType(i);
+
+ RaiseVerbose("paramBlock.GetLocalName(" + i + ")=" + paramBlock.GetLocalName(i, 0) + ", type=" + paramType, logRank + 1);
+ switch (paramType)
+ {
+ case ParamType2.String:
+ RaiseVerbose("paramBlock.GetProperty(" + i + ")=" + paramBlock.GetStr(i, 0, 0), logRank + 2);
+ break;
+ case ParamType2.Int:
+ RaiseVerbose("paramBlock.GetProperty(" + i + ")=" + paramBlock.GetInt(i, 0, 0), logRank + 2);
+ break;
+ case ParamType2.Float:
+ RaiseVerbose("paramBlock.GetProperty(" + i + ")=" + paramBlock.GetFloat(i, 0, 0), logRank + 2);
+ break;
+ default:
+ RaiseVerbose("Unknown property type", logRank + 2);
+ break;
+ }
+ }
+ }
+ }
+
+ public void Print(IIPropertyContainer propertyContainer, int logRank)
+ {
+ RaiseVerbose("propertyContainer=" + propertyContainer, logRank);
+ if (propertyContainer != null)
+ {
+ RaiseVerbose("propertyContainer.NumberOfProperties=" + propertyContainer.NumberOfProperties, logRank + 1);
+ for (int i = 0; i < propertyContainer.NumberOfProperties; i++)
+ {
+ var prop = propertyContainer.GetProperty(i);
+ if (prop != null)
+ {
+ RaiseVerbose("propertyContainer.GetProperty(" + i + ")=" + prop.Name, logRank + 1);
+ switch (prop.GetType_)
+ {
+ case PropType.StringProp:
+ string propertyString = "";
+ RaiseVerbose("prop.GetPropertyValue(ref propertyString, 0)=" + prop.GetPropertyValue(ref propertyString, 0), logRank + 2);
+ RaiseVerbose("propertyString=" + propertyString, logRank + 2);
+ break;
+ case PropType.IntProp:
+ int propertyInt = 0;
+ RaiseVerbose("prop.GetPropertyValue(ref propertyInt, 0)=" + prop.GetPropertyValue(ref propertyInt, 0), logRank + 2);
+ RaiseVerbose("propertyInt=" + propertyInt, logRank + 2);
+ break;
+ case PropType.FloatProp:
+ float propertyFloat = 0;
+ RaiseVerbose("prop.GetPropertyValue(ref propertyFloat, 0, true)=" + prop.GetPropertyValue(ref propertyFloat, 0, true), logRank + 2);
+ RaiseVerbose("propertyFloat=" + propertyFloat, logRank + 2);
+ RaiseVerbose("prop.GetPropertyValue(ref propertyFloat, 0, false)=" + prop.GetPropertyValue(ref propertyFloat, 0, false), logRank + 2);
+ RaiseVerbose("propertyFloat=" + propertyFloat, logRank + 2);
+ break;
+ case PropType.Point3Prop:
+ IPoint3 propertyPoint3 = Loader.Global.Point3.Create(0, 0, 0);
+ RaiseVerbose("prop.GetPropertyValue(ref propertyPoint3, 0)=" + prop.GetPropertyValue(propertyPoint3, 0), logRank + 2);
+ RaiseVerbose("propertyPoint3=" + Point3ToString(propertyPoint3), logRank + 2);
+ break;
+ case PropType.Point4Prop:
+ IPoint4 propertyPoint4 = Loader.Global.Point4.Create(0, 0, 0, 0);
+ RaiseVerbose("prop.GetPropertyValue(ref propertyPoint4, 0)=" + prop.GetPropertyValue(propertyPoint4, 0), logRank + 2);
+ RaiseVerbose("propertyPoint4=" + Point4ToString(propertyPoint4), logRank + 2);
+ break;
+ case PropType.UnknownProp:
+ default:
+ RaiseVerbose("Unknown property type", logRank + 2);
+ break;
+ }
+ }
+ else
+ {
+ RaiseVerbose("propertyContainer.GetProperty(" + i + ") IS NULL", logRank + 1);
+ }
+ }
+ }
+ }
+
+ // -------------------------
+ // --------- Utils ---------
+ // -------------------------
+
+ private string ColorToString(IColor color)
+ {
+ if (color == null)
+ {
+ return "";
+ }
+
+ return "{ r=" + color.R + ", g=" + color.G + ", b=" + color.B + " }";
+ }
+
+ private string Point3ToString(IPoint3 point)
+ {
+ if (point == null)
+ {
+ return "";
+ }
+
+ return "{ x=" + point.X + ", y=" + point.Y + ", z=" + point.Z + " }";
+ }
+
+ private string Point4ToString(IPoint4 point)
+ {
+ if (point == null)
+ {
+ return "";
+ }
+
+ return "{ x=" + point.X + ", y=" + point.Y + ", z=" + point.Z + ", w=" + point.W + " }";
+ }
+ }
+}
diff --git a/3ds Max/Max2Babylon/Exporter/BabylonExporter.Material.cs b/3ds Max/Max2Babylon/Exporter/BabylonExporter.Material.cs
index f326b05e..cacfb92b 100644
--- a/3ds Max/Max2Babylon/Exporter/BabylonExporter.Material.cs
+++ b/3ds Max/Max2Babylon/Exporter/BabylonExporter.Material.cs
@@ -1,509 +1,617 @@
-using System;
-using System.Linq;
-using System.Collections.Generic;
-using Autodesk.Max;
-using Utilities;
-using BabylonExport.Entities;
-
-namespace BabylonExport.Entities
-{
- partial class BabylonMaterial
- {
- public IIGameMaterial maxGameMaterial { get; set; }
- }
-}
-
-namespace Max2Babylon
-{
- partial class BabylonExporter
- {
- readonly List referencedMaterials = new List();
- Dictionary materialExporters;
-
- private void ExportMaterial(IIGameMaterial materialNode, BabylonScene babylonScene)
- {
- var name = materialNode.MaterialName;
- var id = materialNode.MaxMaterial.GetGuid().ToString();
-
- // Check if the material was already exported. The material id is unique.
- if (babylonScene.MaterialsList.FirstOrDefault(m => m.id == id) != null)
- {
- return;
- }
-
- RaiseMessage(name, 1);
-
- // --- prints ---
- #region prints
- {
- RaiseVerbose("materialNode.MaterialClass=" + materialNode.MaterialClass, 2);
- RaiseVerbose("materialNode.NumberOfTextureMaps=" + materialNode.NumberOfTextureMaps, 2);
-
- var propertyContainer = materialNode.IPropertyContainer;
- RaiseVerbose("propertyContainer=" + propertyContainer, 2);
- if (propertyContainer != null)
- {
- RaiseVerbose("propertyContainer.NumberOfProperties=" + propertyContainer.NumberOfProperties, 3);
- for (int i = 0; i < propertyContainer.NumberOfProperties; i++)
- {
- var prop = propertyContainer.GetProperty(i);
- if (prop != null)
- {
- RaiseVerbose("propertyContainer.GetProperty(" + i + ")=" + prop.Name, 3);
- switch (prop.GetType_)
- {
- case PropType.StringProp:
- string propertyString = "";
- RaiseVerbose("prop.GetPropertyValue(ref propertyString, 0)=" + prop.GetPropertyValue(ref propertyString, 0), 4);
- RaiseVerbose("propertyString=" + propertyString, 4);
- break;
- case PropType.IntProp:
- int propertyInt = 0;
- RaiseVerbose("prop.GetPropertyValue(ref propertyInt, 0)=" + prop.GetPropertyValue(ref propertyInt, 0), 4);
- RaiseVerbose("propertyInt=" + propertyInt, 4);
- break;
- case PropType.FloatProp:
- float propertyFloat = 0;
- RaiseVerbose("prop.GetPropertyValue(ref propertyFloat, 0, true)=" + prop.GetPropertyValue(ref propertyFloat, 0, true), 4);
- RaiseVerbose("propertyFloat=" + propertyFloat, 4);
- RaiseVerbose("prop.GetPropertyValue(ref propertyFloat, 0, false)=" + prop.GetPropertyValue(ref propertyFloat, 0, false), 4);
- RaiseVerbose("propertyFloat=" + propertyFloat, 4);
- break;
- case PropType.Point3Prop:
- IPoint3 propertyPoint3 = Loader.Global.Point3.Create(0, 0, 0);
- RaiseVerbose("prop.GetPropertyValue(ref propertyPoint3, 0)=" + prop.GetPropertyValue(propertyPoint3, 0), 4);
- RaiseVerbose("propertyPoint3=" + Point3ToString(propertyPoint3), 4);
- break;
- case PropType.Point4Prop:
- IPoint4 propertyPoint4 = Loader.Global.Point4.Create(0, 0, 0, 0);
- RaiseVerbose("prop.GetPropertyValue(ref propertyPoint4, 0)=" + prop.GetPropertyValue(propertyPoint4, 0), 4);
- RaiseVerbose("propertyPoint4=" + Point4ToString(propertyPoint4), 4);
- break;
- case PropType.UnknownProp:
- default:
- RaiseVerbose("Unknown property type", 4);
- break;
- }
- }
- else
- {
- RaiseVerbose("propertyContainer.GetProperty(" + i + ") IS NULL", 3);
- }
- }
- }
- }
- #endregion
-
- if (materialNode.SubMaterialCount > 0)
- {
- var babylonMultimaterial = new BabylonMultiMaterial { name = name, id = id };
-
- var guids = new List();
-
- for (var index = 0; index < materialNode.SubMaterialCount; index++)
- {
- var subMat = materialNode.GetSubMaterial(index);
-
- if (subMat != null)
- {
- if (subMat.SubMaterialCount > 0)
- {
- RaiseError("MultiMaterials as inputs to other MultiMaterials are not supported!");
- }
- else
- {
- guids.Add(subMat.MaxMaterial.GetGuid().ToString());
-
- if (!referencedMaterials.Contains(subMat))
- {
- referencedMaterials.Add(subMat);
- ExportMaterial(subMat, babylonScene);
- }
- }
- }
- else
- {
- guids.Add(Guid.Empty.ToString());
- }
- }
-
- babylonMultimaterial.materials = guids.ToArray();
-
- babylonScene.MultiMaterialsList.Add(babylonMultimaterial);
- return;
- }
-
- var unlitProperty = materialNode.IPropertyContainer.QueryProperty("BabylonUnlit");
- bool isUnlit = unlitProperty != null ? unlitProperty.GetBoolValue() : false;
-
- // check custom exporters first, to allow custom exporters of supported material classes
- IMaxMaterialExporter materialExporter;
- materialExporters.TryGetValue(new ClassIDWrapper(materialNode.MaxMaterial.ClassID), out materialExporter);
-
-
- var stdMat = materialNode.MaxMaterial.NumParamBlocks > 0 ? materialNode.MaxMaterial.GetParamBlock(0).Owner as IStdMat2 : null;
-
- if (isBabylonExported && materialExporter != null && materialExporter is IMaxBabylonMaterialExporter)
- {
- IMaxBabylonMaterialExporter babylonMaterialExporter = materialExporter as IMaxBabylonMaterialExporter;
- BabylonMaterial babylonMaterial = babylonMaterialExporter.ExportBabylonMaterial(materialNode);
- if (babylonMaterial == null)
- {
- string message = string.Format("Custom Babylon material exporter failed to export | Exporter: '{0}' | Material Name: '{1}' | Material Class: '{2}'",
- babylonMaterialExporter.GetType().ToString(), materialNode.MaterialName, materialNode.MaterialClass);
- RaiseWarning(message, 2);
- }
- else babylonScene.MaterialsList.Add(babylonMaterial);
- }
- else if (isGltfExported && materialExporter != null && materialExporter is IMaxGLTFMaterialExporter)
- {
- // add a basic babylon material to the list to forward the max material reference
- var babylonMaterial = new BabylonMaterial(id)
- {
- maxGameMaterial = materialNode,
- name = name
- };
- babylonScene.MaterialsList.Add(babylonMaterial);
- }
- else if (stdMat != null)
- {
- var babylonMaterial = new BabylonStandardMaterial(id)
- {
- maxGameMaterial = materialNode,
- name = name,
- isUnlit = isUnlit,
- diffuse = materialNode.MaxMaterial.GetDiffuse(0, false).ToArray(),
- alpha = 1.0f - materialNode.MaxMaterial.GetXParency(0, false)
- };
-
- babylonMaterial.backFaceCulling = !stdMat.TwoSided;
- babylonMaterial.wireframe = stdMat.Wire;
-
- var isSelfIllumColor = materialNode.MaxMaterial.GetSelfIllumColorOn(0, false);
- var maxSpecularColor = materialNode.MaxMaterial.GetSpecular(0, false).ToArray();
-
- if (isUnlit == false)
- {
- babylonMaterial.ambient = materialNode.MaxMaterial.GetAmbient(0, false).ToArray();
- babylonMaterial.specular = maxSpecularColor.Multiply(materialNode.MaxMaterial.GetShinStr(0, false));
- babylonMaterial.specularPower = materialNode.MaxMaterial.GetShininess(0, false) * 256;
- babylonMaterial.emissive =
- isSelfIllumColor
- ? materialNode.MaxMaterial.GetSelfIllumColor(0, false).ToArray()
- : materialNode.MaxMaterial.GetDiffuse(0, false).Scale(materialNode.MaxMaterial.GetSelfIllum(0, false)); // compute the pre-multiplied emissive color
-
- // If Self-Illumination color checkbox is checked
- // Then self-illumination is assumed to be pre-multiplied
- // Otherwise self-illumination needs to be multiplied with diffuse
- // linkEmissiveWithDiffuse attribute tells the Babylon engine to perform such multiplication
- babylonMaterial.linkEmissiveWithDiffuse = !isSelfIllumColor;
- // useEmissiveAsIllumination attribute tells the Babylon engine to use pre-multiplied emissive as illumination
- babylonMaterial.useEmissiveAsIllumination = isSelfIllumColor;
-
- // Store the emissive value (before multiplication) for gltf
- babylonMaterial.selfIllum = materialNode.MaxMaterial.GetSelfIllum(0, false);
- }
-
- // Textures
-
- BabylonFresnelParameters fresnelParameters;
- babylonMaterial.diffuseTexture = ExportTexture(stdMat, 1, out fresnelParameters, babylonScene); // Diffuse
- if (fresnelParameters != null)
- {
- babylonMaterial.diffuseFresnelParameters = fresnelParameters;
- }
- if ((babylonMaterial.alpha == 1.0f && babylonMaterial.opacityTexture == null) &&
- babylonMaterial.diffuseTexture != null &&
- (babylonMaterial.diffuseTexture.originalPath.EndsWith(".tif") || babylonMaterial.diffuseTexture.originalPath.EndsWith(".tiff")) &&
- babylonMaterial.diffuseTexture.hasAlpha)
- {
- RaiseWarning($"Diffuse texture named {babylonMaterial.diffuseTexture.originalPath} is a .tif file and its Alpha Source is 'Image Alpha' by default.", 2);
- RaiseWarning($"If you don't want material to be in BLEND mode, set diffuse texture Alpha Source to 'None (Opaque)'", 2);
- }
-
- babylonMaterial.opacityTexture = ExportTexture(stdMat, 6, out fresnelParameters, babylonScene, false, true); // Opacity
- if (fresnelParameters != null)
- {
- babylonMaterial.opacityFresnelParameters = fresnelParameters;
- if (babylonMaterial.alpha == 1 &&
- babylonMaterial.opacityTexture == null)
- {
- babylonMaterial.alpha = 0;
- }
- }
-
- if (isUnlit == false)
- {
- babylonMaterial.ambientTexture = ExportTexture(stdMat, 0, out fresnelParameters, babylonScene); // Ambient
-
- babylonMaterial.specularTexture = ExportSpecularTexture(materialNode, maxSpecularColor, babylonScene);
-
- babylonMaterial.emissiveTexture = ExportTexture(stdMat, 5, out fresnelParameters, babylonScene); // Emissive
- if (fresnelParameters != null)
- {
- babylonMaterial.emissiveFresnelParameters = fresnelParameters;
- if (babylonMaterial.emissive[0] == 0 &&
- babylonMaterial.emissive[1] == 0 &&
- babylonMaterial.emissive[2] == 0 &&
- babylonMaterial.emissiveTexture == null)
- {
- babylonMaterial.emissive = new float[] { 1, 1, 1 };
- }
- }
-
- babylonMaterial.bumpTexture = ExportTexture(stdMat, 8, out fresnelParameters, babylonScene); // Bump
- babylonMaterial.reflectionTexture = ExportTexture(stdMat, 9, out fresnelParameters, babylonScene, true); // Reflection
- if (fresnelParameters != null)
- {
- if (babylonMaterial.reflectionTexture == null)
- {
- RaiseWarning("Fallout cannot be used with reflection channel without a texture", 2);
- }
- else
- {
- babylonMaterial.reflectionFresnelParameters = fresnelParameters;
- }
- }
- }
-
- if (babylonMaterial.alpha != 1.0f || (babylonMaterial.diffuseTexture != null && babylonMaterial.diffuseTexture.hasAlpha) || babylonMaterial.opacityTexture != null)
- {
- var alphaTestProperty = materialNode.IPropertyContainer.QueryProperty("BabylonAlphaTest");
- var alphaTestPercentProperty = materialNode.IPropertyContainer.QueryProperty("BabylonAlphaTestPercent");
- bool isAlphaTest = alphaTestProperty != null ? alphaTestProperty.GetBoolValue() : false;
- float alphaTestPercent = alphaTestPercentProperty != null ? alphaTestPercentProperty.GetFloatValue() : 0.5f; // default alpha test cutoff is 50%
-
- babylonMaterial.transparencyMode = isAlphaTest ? (int)BabylonPBRMetallicRoughnessMaterial.TransparencyMode.ALPHATEST : (int)BabylonPBRMetallicRoughnessMaterial.TransparencyMode.ALPHABLEND;
- babylonMaterial.alphaCutOff = alphaTestPercent;
- }
-
- // Constraints
- if (babylonMaterial.diffuseTexture != null)
- {
- babylonMaterial.diffuse = new[] { 1.0f, 1.0f, 1.0f };
- }
-
- if (babylonMaterial.emissiveTexture != null)
- {
- babylonMaterial.emissive = new float[] { 0, 0, 0 };
- }
-
- if (babylonMaterial.opacityTexture != null && babylonMaterial.diffuseTexture != null &&
- babylonMaterial.diffuseTexture.name == babylonMaterial.opacityTexture.name &&
- babylonMaterial.diffuseTexture.hasAlpha && !babylonMaterial.opacityTexture.getAlphaFromRGB)
- {
- // This is a alpha testing purpose
- babylonMaterial.opacityTexture = null;
- babylonMaterial.diffuseTexture.hasAlpha = true;
- RaiseWarning("Opacity texture was removed because alpha from diffuse texture can be use instead", 2);
- RaiseWarning("If you do not want this behavior, just set Alpha Source = None on your diffuse texture", 2);
- }
-
- babylonScene.MaterialsList.Add(babylonMaterial);
- }
- else if (isPhysicalMaterial(materialNode))
- {
- var propertyContainer = materialNode.IPropertyContainer;
-
- var babylonMaterial = new BabylonPBRMetallicRoughnessMaterial(id)
- {
- maxGameMaterial = materialNode,
- name = name,
- isUnlit = isUnlit
- };
-
- // --- Global ---
-
- // Alpha
- //var alphaFromXParency = 1.0f - materialNode.MaxMaterial.GetXParency(0, false);
- var alphaFromPropertyContainer = 1.0f - propertyContainer.GetFloatProperty(17);
- //RaiseMessage("alphaFromXParency=" + alphaFromXParency, 2);
- //RaiseMessage("alphaFromPropertyContainer=" + alphaFromPropertyContainer, 2);
- babylonMaterial.alpha = alphaFromPropertyContainer;
-
- babylonMaterial.baseColor = materialNode.MaxMaterial.GetDiffuse(0, false).ToArray();
-
- var invertRoughness = propertyContainer.GetBoolProperty(5);
- if (isUnlit == false)
- {
- babylonMaterial.metallic = propertyContainer.GetFloatProperty(6);
-
- babylonMaterial.roughness = propertyContainer.GetFloatProperty(4);
- if (invertRoughness)
- {
- // Inverse roughness
- babylonMaterial.roughness = 1 - babylonMaterial.roughness;
- }
-
- // Self illumination is computed from emission color, luminance, temperature and weight
- babylonMaterial.emissive = materialNode.MaxMaterial.GetSelfIllumColorOn(0, false)
- ? materialNode.MaxMaterial.GetSelfIllumColor(0, false).ToArray()
- : materialNode.MaxMaterial.GetDiffuse(0, false).Scale(materialNode.MaxMaterial.GetSelfIllum(0, false));
- }
- else
- {
- // Ignore specified roughness and metallic values
- babylonMaterial.metallic = 0;
- babylonMaterial.roughness = 0.9f;
- }
-
- // --- Textures ---
- // 1 - base color ; 9 - transparancy weight
- ITexmap colorTexmap = _getTexMap(materialNode, 1);
- ITexmap alphaTexmap = _getTexMap(materialNode, 9);
- babylonMaterial.baseTexture = ExportBaseColorAlphaTexture(colorTexmap, alphaTexmap, babylonMaterial.baseColor, babylonMaterial.alpha, babylonScene, name);
-
- if (isUnlit == false)
- {
- // Metallic, roughness, ambient occlusion
- ITexmap metallicTexmap = _getTexMap(materialNode, 5);
- ITexmap roughnessTexmap = _getTexMap(materialNode, 4);
- ITexmap ambientOcclusionTexmap = _getTexMap(materialNode, 6); // Use diffuse roughness map as ambient occlusion
-
- // Check if MR or ORM textures are already merged
- bool areTexturesAlreadyMerged = false;
- if (metallicTexmap != null && roughnessTexmap != null)
- {
- string sourcePathMetallic = getSourcePath(metallicTexmap);
- string sourcePathRoughness = getSourcePath(roughnessTexmap);
-
- if (sourcePathMetallic == sourcePathRoughness)
- {
- if (ambientOcclusionTexmap != null && exportParameters.mergeAOwithMR)
- {
- string sourcePathAmbientOcclusion = getSourcePath(ambientOcclusionTexmap);
- if (sourcePathMetallic == sourcePathAmbientOcclusion)
- {
- // Metallic, roughness and ambient occlusion are already merged
- RaiseVerbose("Metallic, roughness and ambient occlusion are already merged", 2);
- BabylonTexture ormTexture = ExportTexture(metallicTexmap, babylonScene);
- babylonMaterial.metallicRoughnessTexture = ormTexture;
- babylonMaterial.occlusionTexture = ormTexture;
- areTexturesAlreadyMerged = true;
- }
- }
- else
- {
- // Metallic and roughness are already merged
- RaiseVerbose("Metallic and roughness are already merged", 2);
- BabylonTexture ormTexture = ExportTexture(metallicTexmap, babylonScene);
- babylonMaterial.metallicRoughnessTexture = ormTexture;
- areTexturesAlreadyMerged = true;
- }
- }
- }
- if (areTexturesAlreadyMerged == false)
- {
- if (metallicTexmap != null || roughnessTexmap != null)
- {
- // Merge metallic, roughness and ambient occlusion
- RaiseVerbose("Merge metallic and roughness (and ambient occlusion if `mergeAOwithMR` is enabled)", 2);
- BabylonTexture ormTexture = ExportORMTexture(exportParameters.mergeAOwithMR ? ambientOcclusionTexmap : null, roughnessTexmap, metallicTexmap, babylonMaterial.metallic, babylonMaterial.roughness, babylonScene, invertRoughness);
- babylonMaterial.metallicRoughnessTexture = ormTexture;
-
- if (ambientOcclusionTexmap != null)
- {
- if (exportParameters.mergeAOwithMR)
- {
- // if the ambient occlusion texture map uses a different set of texture coordinates than
- // metallic roughness, create a new instance of the ORM BabylonTexture with the different texture
- // coordinate indices
- var ambientOcclusionTexture = _getBitmapTex(ambientOcclusionTexmap);
- var texCoordIndex = ambientOcclusionTexture.UVGen.MapChannel - 1;
- if (texCoordIndex != ormTexture.coordinatesIndex)
- {
- babylonMaterial.occlusionTexture = new BabylonTexture(ormTexture);
- babylonMaterial.occlusionTexture.coordinatesIndex = texCoordIndex;
- // Set UVs/texture transform for the ambient occlusion texture
- var uvGen = _exportUV(ambientOcclusionTexture.UVGen, babylonMaterial.occlusionTexture);
- }
- else
- {
- babylonMaterial.occlusionTexture = ormTexture;
- }
- }
- else
- {
- babylonMaterial.occlusionTexture = ExportPBRTexture(materialNode, 6, babylonScene);
- }
- }
- }
- else if (ambientOcclusionTexmap != null)
- {
- // Simply export occlusion texture
- RaiseVerbose("Simply export occlusion texture", 2);
- babylonMaterial.occlusionTexture = ExportTexture(ambientOcclusionTexmap, babylonScene);
- }
- }
- if (ambientOcclusionTexmap != null && !exportParameters.mergeAOwithMR && babylonMaterial.occlusionTexture == null)
- {
- RaiseVerbose("Exporting occlusion texture without merging with metallic roughness", 2);
- babylonMaterial.occlusionTexture = ExportTexture(ambientOcclusionTexmap, babylonScene);
- }
-
- var normalMapAmount = propertyContainer.GetFloatProperty(91);
- babylonMaterial.normalTexture = ExportPBRTexture(materialNode, 30, babylonScene, normalMapAmount);
-
- babylonMaterial.emissiveTexture = ExportPBRTexture(materialNode, 17, babylonScene);
- }
-
- if (babylonMaterial.alpha != 1.0f || (babylonMaterial.baseTexture != null && babylonMaterial.baseTexture.hasAlpha))
- {
- var alphaTestProperty = materialNode.IPropertyContainer.QueryProperty("BabylonAlphaTest");
- var alphaTestPercentProperty = materialNode.IPropertyContainer.QueryProperty("BabylonAlphaTestPercent");
- bool isAlphaTest = alphaTestProperty != null ? alphaTestProperty.GetBoolValue() : false;
- float alphaTestPercent = alphaTestPercentProperty != null ? alphaTestPercentProperty.GetFloatValue() : 0.5f; // default alpha test cutoff is 50%
-
- babylonMaterial.transparencyMode = isAlphaTest ? (int)BabylonPBRMetallicRoughnessMaterial.TransparencyMode.ALPHATEST : (int)BabylonPBRMetallicRoughnessMaterial.TransparencyMode.ALPHABLEND;
- babylonMaterial.alphaCutOff = alphaTestPercent;
- }
-
- if (babylonMaterial.emissiveTexture != null)
- {
- babylonMaterial.emissive = new[] { 1.0f, 1.0f, 1.0f };
- }
-
- if (babylonMaterial.metallicRoughnessTexture != null)
- {
- babylonMaterial.metallic = 1.0f;
- babylonMaterial.roughness = 1.0f;
- }
-
- babylonScene.MaterialsList.Add(babylonMaterial);
- }
- else if (isArnoldMaterial(materialNode))
- {
- var propertyContainer = materialNode.IPropertyContainer;
- var babylonMaterial = new BabylonPBRMetallicRoughnessMaterial(id)
- {
- maxGameMaterial = materialNode,
- name = name,
- isUnlit = isUnlit
- };
-
- // Alpha
- babylonMaterial.alpha = 1.0f - propertyContainer.GetFloatProperty(32);
-
- // Color: base * weight
- float[] baseColor = propertyContainer.GetPoint3Property(5).ToArray();
- float baseWeight = propertyContainer.GetFloatProperty(2);
- babylonMaterial.baseColor = baseColor.Multiply(baseWeight);
-
- // Metallic & roughness
- bool invertRoughness = false;
- babylonMaterial.roughness = propertyContainer.GetFloatProperty(17); // specular_roughness
- babylonMaterial.metallic = propertyContainer.GetFloatProperty(29);
-
- // Emissive: emission_color * emission
- float[] emissionColor = propertyContainer.QueryProperty("emission_color").GetPoint3Property().ToArray();
- float emissionWeight = propertyContainer.QueryProperty("emission").GetFloatValue();
- if (emissionColor != null && emissionWeight > 0f)
- {
- babylonMaterial.emissive = emissionColor.Multiply(emissionWeight);
- }
-
- // --- Clear Coat ---
- float coatWeight = propertyContainer.GetFloatProperty(75);
+using System;
+using System.Linq;
+using System.Collections.Generic;
+using Autodesk.Max;
+using Utilities;
+using BabylonExport.Entities;
+using Max2Babylon.Extensions;
+using System.Drawing;
+
+namespace BabylonExport.Entities
+{
+ partial class BabylonMaterial
+ {
+ public IIGameMaterial maxGameMaterial { get; set; }
+ }
+}
+
+namespace Max2Babylon
+{
+ partial class BabylonExporter
+ {
+ readonly List referencedMaterials = new List();
+ Dictionary materialExporters;
+
+ private static int STANDARD_MATERIAL_TEXTURE_ID_DIFFUSE = 1;
+ private static int STANDARD_MATERIAL_TEXTURE_ID_OPACITY = 6;
+
+ private void ExportMaterial(IIGameMaterial materialNode, BabylonScene babylonScene)
+ {
+ var name = materialNode.MaterialName;
+ var id = materialNode.MaxMaterial.GetGuid().ToString();
+
+ // Check if the material was already exported. The material id is unique.
+ if (babylonScene.MaterialsList.FirstOrDefault(m => m.id == id) != null)
+ {
+ return;
+ }
+
+ RaiseMessage(name, 1);
+
+ // --- prints ---
+ #region prints
+ {
+ RaiseVerbose("materialNode.MaterialClass=" + materialNode.MaterialClass, 2);
+ RaiseVerbose("materialNode.NumberOfTextureMaps=" + materialNode.NumberOfTextureMaps, 2);
+
+ Print(materialNode.IPropertyContainer, 2);
+ for (int i = 0; i < materialNode.MaxMaterial.NumSubTexmaps; i++)
+ {
+ RaiseVerbose("Texture[" + i + "] is named '" + materialNode.MaxMaterial.GetSubTexmapSlotName(i) + "'", 2);
+ }
+ }
+ #endregion
+
+ if (materialNode.SubMaterialCount > 0)
+ {
+ var babylonMultimaterial = new BabylonMultiMaterial { name = name, id = id };
+
+ var guids = new List();
+
+ for (var index = 0; index < materialNode.SubMaterialCount; index++)
+ {
+ var subMat = materialNode.GetSubMaterial(index);
+
+ if (subMat != null)
+ {
+ if (subMat.SubMaterialCount > 0)
+ {
+ RaiseError("MultiMaterials as inputs to other MultiMaterials are not supported!");
+ }
+ else
+ {
+ guids.Add(subMat.MaxMaterial.GetGuid().ToString());
+
+ if (!referencedMaterials.Contains(subMat))
+ {
+ referencedMaterials.Add(subMat);
+ ExportMaterial(subMat, babylonScene);
+ }
+ }
+ }
+ else
+ {
+ guids.Add(Guid.Empty.ToString());
+ }
+ }
+
+ babylonMultimaterial.materials = guids.ToArray();
+
+ babylonScene.MultiMaterialsList.Add(babylonMultimaterial);
+ return;
+ }
+
+ // Retreive Babylon Attributes container
+ IIPropertyContainer babylonAttributesContainer = materialNode.IPropertyContainer;
+
+ bool isUnlit = false;
+ if (babylonAttributesContainer != null)
+ {
+ isUnlit = babylonAttributesContainer.GetBoolProperty("babylonUnlit", false);
+ }
+
+ // check custom exporters first, to allow custom exporters of supported material classes
+ IMaxMaterialExporter materialExporter;
+ materialExporters.TryGetValue(new ClassIDWrapper(materialNode.MaxMaterial.ClassID), out materialExporter);
+
+ IStdMat2 stdMat = null;
+ if (materialNode.MaxMaterial != null && materialNode.MaxMaterial.NumParamBlocks > 0)
+ {
+ var paramBlock = materialNode.MaxMaterial.GetParamBlock(0);
+ if (paramBlock != null && paramBlock.Owner != null)
+ {
+ stdMat = materialNode.MaxMaterial.GetParamBlock(0).Owner as IStdMat2;
+ }
+ }
+
+ if (isBabylonExported && materialExporter != null && materialExporter is IMaxBabylonMaterialExporter)
+ {
+ IMaxBabylonMaterialExporter babylonMaterialExporter = materialExporter as IMaxBabylonMaterialExporter;
+ BabylonMaterial babylonMaterial = babylonMaterialExporter.ExportBabylonMaterial(materialNode);
+ if (babylonMaterial == null)
+ {
+ string message = string.Format("Custom Babylon material exporter failed to export | Exporter: '{0}' | Material Name: '{1}' | Material Class: '{2}'",
+ babylonMaterialExporter.GetType().ToString(), materialNode.MaterialName, materialNode.MaterialClass);
+ RaiseWarning(message, 2);
+ }
+ else babylonScene.MaterialsList.Add(babylonMaterial);
+ }
+ else if (isGltfExported && materialExporter != null && materialExporter is IMaxGLTFMaterialExporter)
+ {
+ // add a basic babylon material to the list to forward the max material reference
+ var babylonMaterial = new BabylonMaterial(id)
+ {
+ maxGameMaterial = materialNode,
+ name = name
+ };
+ babylonScene.MaterialsList.Add(babylonMaterial);
+ }
+ else if (stdMat != null)
+ {
+ var babylonMaterial = new BabylonStandardMaterial(id)
+ {
+ maxGameMaterial = materialNode,
+ name = name,
+ isUnlit = isUnlit,
+ diffuse = materialNode.MaxMaterial.GetDiffuse(0, false).ToArray()
+ };
+
+ bool isTransparencyModeFromBabylonAttributes = false;
+ if (babylonAttributesContainer != null)
+ {
+ IIGameProperty babylonTransparencyModeGameProperty = babylonAttributesContainer.QueryProperty("babylonTransparencyMode");
+ if (babylonTransparencyModeGameProperty != null)
+ {
+ babylonMaterial.transparencyMode = babylonTransparencyModeGameProperty.GetIntValue();
+ isTransparencyModeFromBabylonAttributes = true;
+ }
+ }
+
+ if (isTransparencyModeFromBabylonAttributes == false || babylonMaterial.transparencyMode != 0)
+ {
+ // The user specified value in 3ds Max is opacity
+ // The retreived value here is transparency
+ // Convert transparency to opacity
+ babylonMaterial.alpha = 1.0f - materialNode.MaxMaterial.GetXParency(0, false);
+ }
+
+ babylonMaterial.backFaceCulling = !stdMat.TwoSided;
+ babylonMaterial.wireframe = stdMat.Wire;
+
+ var isSelfIllumColor = materialNode.MaxMaterial.GetSelfIllumColorOn(0, false);
+ var maxSpecularColor = materialNode.MaxMaterial.GetSpecular(0, false).ToArray();
+
+ if (isUnlit == false)
+ {
+ babylonMaterial.ambient = materialNode.MaxMaterial.GetAmbient(0, false).ToArray();
+ babylonMaterial.specular = maxSpecularColor.Multiply(materialNode.MaxMaterial.GetShinStr(0, false));
+ babylonMaterial.specularPower = materialNode.MaxMaterial.GetShininess(0, false) * 256;
+ babylonMaterial.emissive =
+ isSelfIllumColor
+ ? materialNode.MaxMaterial.GetSelfIllumColor(0, false).ToArray()
+ : materialNode.MaxMaterial.GetDiffuse(0, false).Scale(materialNode.MaxMaterial.GetSelfIllum(0, false)); // compute the pre-multiplied emissive color
+
+ // If Self-Illumination color checkbox is checked
+ // Then self-illumination is assumed to be pre-multiplied
+ // Otherwise self-illumination needs to be multiplied with diffuse
+ // linkEmissiveWithDiffuse attribute tells the Babylon engine to perform such multiplication
+ babylonMaterial.linkEmissiveWithDiffuse = !isSelfIllumColor;
+ // useEmissiveAsIllumination attribute tells the Babylon engine to use pre-multiplied emissive as illumination
+ babylonMaterial.useEmissiveAsIllumination = isSelfIllumColor;
+
+ // Store the emissive value (before multiplication) for gltf
+ babylonMaterial.selfIllum = materialNode.MaxMaterial.GetSelfIllum(0, false);
+ }
+
+ // Textures
+
+ BabylonFresnelParameters fresnelParameters;
+ babylonMaterial.diffuseTexture = ExportTexture(stdMat, STANDARD_MATERIAL_TEXTURE_ID_DIFFUSE, out fresnelParameters, babylonScene); // Diffuse
+ if (fresnelParameters != null)
+ {
+ babylonMaterial.diffuseFresnelParameters = fresnelParameters;
+ }
+ if ((babylonMaterial.alpha == 1.0f && babylonMaterial.opacityTexture == null) &&
+ babylonMaterial.diffuseTexture != null &&
+ (babylonMaterial.diffuseTexture.originalPath.EndsWith(".tif") || babylonMaterial.diffuseTexture.originalPath.EndsWith(".tiff")) &&
+ babylonMaterial.diffuseTexture.hasAlpha)
+ {
+ RaiseWarning($"Diffuse texture named {babylonMaterial.diffuseTexture.originalPath} is a .tif file and its Alpha Source is 'Image Alpha' by default.", 2);
+ RaiseWarning($"If you don't want material to be in BLEND mode, set diffuse texture Alpha Source to 'None (Opaque)'", 2);
+ }
+
+ if (isTransparencyModeFromBabylonAttributes == false || babylonMaterial.transparencyMode != 0)
+ {
+ // The map is opacity
+ babylonMaterial.opacityTexture = ExportTexture(stdMat, STANDARD_MATERIAL_TEXTURE_ID_OPACITY, out fresnelParameters, babylonScene, false, true); // Opacity
+ }
+
+ if (fresnelParameters != null)
+ {
+ babylonMaterial.opacityFresnelParameters = fresnelParameters;
+ if (babylonMaterial.alpha == 1 &&
+ babylonMaterial.opacityTexture == null)
+ {
+ babylonMaterial.alpha = 0;
+ }
+ }
+
+ if (isUnlit == false)
+ {
+ babylonMaterial.ambientTexture = ExportTexture(stdMat, 0, out fresnelParameters, babylonScene); // Ambient
+
+ babylonMaterial.specularTexture = ExportSpecularTexture(materialNode, maxSpecularColor, babylonScene);
+
+ babylonMaterial.emissiveTexture = ExportTexture(stdMat, 5, out fresnelParameters, babylonScene); // Emissive
+ if (fresnelParameters != null)
+ {
+ babylonMaterial.emissiveFresnelParameters = fresnelParameters;
+ if (babylonMaterial.emissive[0] == 0 &&
+ babylonMaterial.emissive[1] == 0 &&
+ babylonMaterial.emissive[2] == 0 &&
+ babylonMaterial.emissiveTexture == null)
+ {
+ babylonMaterial.emissive = new float[] { 1, 1, 1 };
+ }
+ }
+
+ babylonMaterial.bumpTexture = ExportTexture(stdMat, 8, out fresnelParameters, babylonScene); // Bump
+ babylonMaterial.reflectionTexture = ExportTexture(stdMat, 9, out fresnelParameters, babylonScene, true); // Reflection
+ if (fresnelParameters != null)
+ {
+ if (babylonMaterial.reflectionTexture == null)
+ {
+ RaiseWarning("Fallout cannot be used with reflection channel without a texture", 2);
+ }
+ else
+ {
+ babylonMaterial.reflectionFresnelParameters = fresnelParameters;
+ }
+ }
+ }
+
+ if (isTransparencyModeFromBabylonAttributes == false && (babylonMaterial.alpha != 1.0f || (babylonMaterial.diffuseTexture != null && babylonMaterial.diffuseTexture.hasAlpha) || babylonMaterial.opacityTexture != null))
+ {
+ babylonMaterial.transparencyMode = (int)BabylonPBRMetallicRoughnessMaterial.TransparencyMode.ALPHABLEND;
+ }
+
+ // Constraints
+ if (babylonMaterial.diffuseTexture != null)
+ {
+ babylonMaterial.diffuse = new[] { 1.0f, 1.0f, 1.0f };
+ }
+
+ if (babylonMaterial.emissiveTexture != null)
+ {
+ babylonMaterial.emissive = new float[] { 0, 0, 0 };
+ }
+
+ if (babylonMaterial.opacityTexture != null && babylonMaterial.diffuseTexture != null &&
+ babylonMaterial.diffuseTexture.name == babylonMaterial.opacityTexture.name &&
+ babylonMaterial.diffuseTexture.hasAlpha && !babylonMaterial.opacityTexture.getAlphaFromRGB)
+ {
+ // This is a alpha testing purpose
+ babylonMaterial.opacityTexture = null;
+ babylonMaterial.diffuseTexture.hasAlpha = true;
+ RaiseWarning("Opacity texture was removed because alpha from diffuse texture can be use instead", 2);
+ RaiseWarning("If you do not want this behavior, just set Alpha Source = None on your diffuse texture", 2);
+ }
+
+
+ if (babylonMaterial.transparencyMode == (int)BabylonPBRMetallicRoughnessMaterial.TransparencyMode.ALPHATEST)
+ {
+ // Set the alphaCutOff value explicitely to avoid different interpretations on different engines
+ // Use the glTF default value rather than the babylon one
+ babylonMaterial.alphaCutOff = 0.5f;
+ }
+
+ // Add babylon attributes
+ AddStandardBabylonAttributes(materialNode.MaterialName, babylonMaterial);
+
+ if (babylonAttributesContainer != null)
+ {
+ RaiseVerbose("Babylon Attributes of " + materialNode.MaterialName, 2);
+
+ // Common attributes
+ ExportCommonBabylonAttributes(babylonAttributesContainer, babylonMaterial);
+
+ // Special treatment for Unlit
+ if (babylonMaterial.isUnlit)
+ {
+ if ((babylonMaterial.emissive != null && (babylonMaterial.emissive[0] != 0 || babylonMaterial.emissive[1] != 0 || babylonMaterial.emissive[2] != 0))
+ || (babylonMaterial.emissiveTexture != null)
+ || (babylonMaterial.emissiveFresnelParameters != null))
+ {
+ RaiseWarning("Material is unlit. Emission is discarded and replaced by diffuse.", 2);
+ }
+ // Copy diffuse to emissive
+ babylonMaterial.emissive = babylonMaterial.diffuse;
+ babylonMaterial.emissiveTexture = babylonMaterial.diffuseTexture;
+ babylonMaterial.emissiveFresnelParameters = babylonMaterial.diffuseFresnelParameters;
+
+ babylonMaterial.disableLighting = true;
+ babylonMaterial.linkEmissiveWithDiffuse = false;
+ }
+ // Special treatment for "Alpha test" transparency mode
+ if (babylonMaterial.transparencyMode == (int)BabylonPBRMetallicRoughnessMaterial.TransparencyMode.ALPHATEST)
+ {
+ // Base color and alpha files need to be merged into a single file
+ Color defaultColor = Color.FromArgb((int)(babylonMaterial.diffuse[0] * 255), (int)(babylonMaterial.diffuse[1] * 255), (int)(babylonMaterial.diffuse[2] * 255));
+ ITexmap baseColorTextureMap = GetSubTexmap(stdMat, STANDARD_MATERIAL_TEXTURE_ID_DIFFUSE);
+ ITexmap opacityTextureMap = GetSubTexmap(stdMat, STANDARD_MATERIAL_TEXTURE_ID_OPACITY);
+ babylonMaterial.diffuseTexture = ExportBaseColorAlphaTexture(baseColorTextureMap, opacityTextureMap, babylonMaterial.diffuse, babylonMaterial.alpha, babylonScene, name, true);
+ babylonMaterial.opacityTexture = null;
+ babylonMaterial.alpha = 1.0f;
+ }
+ }
+
+ // List all babylon material attributes
+ // Those attributes are currently stored into the native material
+ // They should not be exported as extra attributes
+ List excludeAttributes = new List();
+ excludeAttributes.Add("babylonUnlit");
+ excludeAttributes.Add("babylonMaxSimultaneousLights");
+ excludeAttributes.Add("babylonTransparencyMode");
+
+ // Export the custom attributes of this material
+ babylonMaterial.metadata = ExportExtraAttributes(materialNode, babylonScene, excludeAttributes);
+
+ babylonScene.MaterialsList.Add(babylonMaterial);
+ }
+ else if (isPhysicalMaterial(materialNode))
+ {
+ var propertyContainer = materialNode.IPropertyContainer;
+
+ var babylonMaterial = new BabylonPBRMetallicRoughnessMaterial(id)
+ {
+ maxGameMaterial = materialNode,
+ name = name,
+ isUnlit = isUnlit
+ };
+
+ bool isTransparencyModeFromBabylonAttributes = false;
+ if (babylonAttributesContainer != null)
+ {
+ IIGameProperty babylonTransparencyModeGameProperty = babylonAttributesContainer.QueryProperty("babylonTransparencyMode");
+ if (babylonTransparencyModeGameProperty != null)
+ {
+ babylonMaterial.transparencyMode = babylonTransparencyModeGameProperty.GetIntValue();
+ isTransparencyModeFromBabylonAttributes = true;
+ }
+ }
+
+ // --- Global ---
+
+ // Alpha
+ if (isTransparencyModeFromBabylonAttributes == false || babylonMaterial.transparencyMode != 0)
+ {
+ // Convert transparency to opacity
+ babylonMaterial.alpha = 1.0f - propertyContainer.GetFloatProperty(17);
+ }
+
+ babylonMaterial.baseColor = materialNode.MaxMaterial.GetDiffuse(0, false).ToArray();
+
+ var invertRoughness = propertyContainer.GetBoolProperty(5);
+ if (isUnlit == false)
+ {
+ babylonMaterial.metallic = propertyContainer.GetFloatProperty(6);
+
+ babylonMaterial.roughness = propertyContainer.GetFloatProperty(4);
+ if (invertRoughness)
+ {
+ // Inverse roughness
+ babylonMaterial.roughness = 1 - babylonMaterial.roughness;
+ }
+
+ // Self illumination is computed from emission color, luminance, temperature and weight
+ babylonMaterial.emissive = materialNode.MaxMaterial.GetSelfIllumColorOn(0, false)
+ ? materialNode.MaxMaterial.GetSelfIllumColor(0, false).ToArray()
+ : materialNode.MaxMaterial.GetDiffuse(0, false).Scale(materialNode.MaxMaterial.GetSelfIllum(0, false));
+ }
+ else
+ {
+ // Ignore specified roughness and metallic values
+ babylonMaterial.metallic = 0;
+ babylonMaterial.roughness = 0.9f;
+ }
+
+ // --- Textures ---
+ // 1 - base color ; 9 - transparency weight
+ ITexmap colorTexmap = _getTexMap(materialNode, 1);
+ ITexmap alphaTexmap = null;
+ if (isTransparencyModeFromBabylonAttributes == false || babylonMaterial.transparencyMode != 0)
+ {
+ alphaTexmap = _getTexMap(materialNode, 9);
+ }
+ babylonMaterial.baseTexture = ExportBaseColorAlphaTexture(colorTexmap, alphaTexmap, babylonMaterial.baseColor, babylonMaterial.alpha, babylonScene, name);
+
+ if (isUnlit == false)
+ {
+ // Metallic, roughness, ambient occlusion
+ ITexmap metallicTexmap = _getTexMap(materialNode, 5);
+ ITexmap roughnessTexmap = _getTexMap(materialNode, 4);
+ ITexmap ambientOcclusionTexmap = _getTexMap(materialNode, 6); // Use diffuse roughness map as ambient occlusion
+
+ // Check if MR or ORM textures are already merged
+ bool areTexturesAlreadyMerged = false;
+ if (metallicTexmap != null && roughnessTexmap != null)
+ {
+ string sourcePathMetallic = getSourcePath(metallicTexmap);
+ string sourcePathRoughness = getSourcePath(roughnessTexmap);
+
+ if (sourcePathMetallic == sourcePathRoughness)
+ {
+ if (ambientOcclusionTexmap != null && exportParameters.mergeAOwithMR)
+ {
+ string sourcePathAmbientOcclusion = getSourcePath(ambientOcclusionTexmap);
+ if (sourcePathMetallic == sourcePathAmbientOcclusion)
+ {
+ // Metallic, roughness and ambient occlusion are already merged
+ RaiseVerbose("Metallic, roughness and ambient occlusion are already merged", 2);
+ BabylonTexture ormTexture = ExportTexture(metallicTexmap, babylonScene);
+ babylonMaterial.metallicRoughnessTexture = ormTexture;
+ babylonMaterial.occlusionTexture = ormTexture;
+ areTexturesAlreadyMerged = true;
+ }
+ }
+ else
+ {
+ // Metallic and roughness are already merged
+ RaiseVerbose("Metallic and roughness are already merged", 2);
+ BabylonTexture ormTexture = ExportTexture(metallicTexmap, babylonScene);
+ babylonMaterial.metallicRoughnessTexture = ormTexture;
+ areTexturesAlreadyMerged = true;
+ }
+ }
+ }
+ if (areTexturesAlreadyMerged == false)
+ {
+ if (metallicTexmap != null || roughnessTexmap != null)
+ {
+ // Merge metallic, roughness and ambient occlusion
+ RaiseVerbose("Merge metallic and roughness (and ambient occlusion if `mergeAOwithMR` is enabled)", 2);
+ BabylonTexture ormTexture = ExportORMTexture(exportParameters.mergeAOwithMR ? ambientOcclusionTexmap : null, roughnessTexmap, metallicTexmap, babylonMaterial.metallic, babylonMaterial.roughness, babylonScene, invertRoughness);
+ babylonMaterial.metallicRoughnessTexture = ormTexture;
+
+ if (ambientOcclusionTexmap != null)
+ {
+ if (exportParameters.mergeAOwithMR)
+ {
+ // if the ambient occlusion texture map uses a different set of texture coordinates than
+ // metallic roughness, create a new instance of the ORM BabylonTexture with the different texture
+ // coordinate indices
+ var ambientOcclusionTexture = _getBitmapTex(ambientOcclusionTexmap);
+ var texCoordIndex = ambientOcclusionTexture.UVGen.MapChannel - 1;
+ if (texCoordIndex != ormTexture.coordinatesIndex)
+ {
+ babylonMaterial.occlusionTexture = new BabylonTexture(ormTexture);
+ babylonMaterial.occlusionTexture.coordinatesIndex = texCoordIndex;
+ // Set UVs/texture transform for the ambient occlusion texture
+ var uvGen = _exportUV(ambientOcclusionTexture.UVGen, babylonMaterial.occlusionTexture);
+ }
+ else
+ {
+ babylonMaterial.occlusionTexture = ormTexture;
+ }
+ }
+ else
+ {
+ babylonMaterial.occlusionTexture = ExportPBRTexture(materialNode, 6, babylonScene);
+ }
+ }
+ }
+ else if (ambientOcclusionTexmap != null)
+ {
+ // Simply export occlusion texture
+ RaiseVerbose("Simply export occlusion texture", 2);
+ babylonMaterial.occlusionTexture = ExportTexture(ambientOcclusionTexmap, babylonScene);
+ }
+ }
+ if (ambientOcclusionTexmap != null && !exportParameters.mergeAOwithMR && babylonMaterial.occlusionTexture == null)
+ {
+ RaiseVerbose("Exporting occlusion texture without merging with metallic roughness", 2);
+ babylonMaterial.occlusionTexture = ExportTexture(ambientOcclusionTexmap, babylonScene);
+ }
+
+ var normalMapAmount = propertyContainer.GetFloatProperty(91);
+ babylonMaterial.normalTexture = ExportPBRTexture(materialNode, 30, babylonScene, normalMapAmount);
+
+ babylonMaterial.emissiveTexture = ExportPBRTexture(materialNode, 17, babylonScene);
+ }
+
+ if (isTransparencyModeFromBabylonAttributes == false && (babylonMaterial.alpha != 1.0f || (babylonMaterial.baseTexture != null && babylonMaterial.baseTexture.hasAlpha)))
+ {
+ babylonMaterial.transparencyMode = (int)BabylonPBRMetallicRoughnessMaterial.TransparencyMode.ALPHABLEND;
+ }
+
+ if (babylonMaterial.emissiveTexture != null)
+ {
+ babylonMaterial.emissive = new[] { 1.0f, 1.0f, 1.0f };
+ }
+
+ if (babylonMaterial.metallicRoughnessTexture != null)
+ {
+ babylonMaterial.metallic = 1.0f;
+ babylonMaterial.roughness = 1.0f;
+ }
+
+ if (babylonMaterial.transparencyMode == (int)BabylonPBRMetallicRoughnessMaterial.TransparencyMode.ALPHATEST)
+ {
+ // Set the alphaCutOff value explicitely to avoid different interpretations on different engines
+ // Use the glTF default value rather than the babylon one
+ babylonMaterial.alphaCutOff = 0.5f;
+ }
+
+ // Add babylon attributes
+ AddPhysicalBabylonAttributes(materialNode.MaterialName, babylonMaterial);
+
+ if (babylonAttributesContainer != null)
+ {
+ RaiseVerbose("Babylon Attributes of " + materialNode.MaterialName, 2);
+
+ // Common attributes
+ ExportCommonBabylonAttributes(babylonAttributesContainer, babylonMaterial);
+ babylonMaterial._unlit = babylonMaterial.isUnlit;
+
+ // Backface culling
+ bool backFaceCulling = babylonAttributesContainer.GetBoolProperty("babylonBackfaceCulling");
+ RaiseVerbose("backFaceCulling=" + backFaceCulling, 3);
+ babylonMaterial.backFaceCulling = backFaceCulling;
+ babylonMaterial.doubleSided = !backFaceCulling;
+ }
+
+ // List all babylon material attributes
+ // Those attributes are currently stored into the native material
+ // They should not be exported as extra attributes
+ List excludeAttributes = new List();
+ excludeAttributes.Add("babylonUnlit");
+ excludeAttributes.Add("babylonBackfaceCulling");
+ excludeAttributes.Add("babylonMaxSimultaneousLights");
+ excludeAttributes.Add("babylonTransparencyMode");
+
+ // Export the custom attributes of this material
+ babylonMaterial.metadata = ExportExtraAttributes(materialNode, babylonScene, excludeAttributes);
+
+ babylonScene.MaterialsList.Add(babylonMaterial);
+ }
+ else if (isArnoldMaterial(materialNode))
+ {
+ var propertyContainer = materialNode.IPropertyContainer;
+ var babylonMaterial = new BabylonPBRMetallicRoughnessMaterial(id)
+ {
+ maxGameMaterial = materialNode,
+ name = name,
+ isUnlit = isUnlit
+ };
+
+ bool isTransparencyModeFromBabylonAttributes = false;
+ if (babylonAttributesContainer != null)
+ {
+ IIGameProperty babylonTransparencyModeGameProperty = babylonAttributesContainer.QueryProperty("babylonTransparencyMode");
+ if (babylonTransparencyModeGameProperty != null)
+ {
+ babylonMaterial.transparencyMode = babylonTransparencyModeGameProperty.GetIntValue();
+ isTransparencyModeFromBabylonAttributes = true;
+ }
+ }
+
+ // Alpha
+ if (isTransparencyModeFromBabylonAttributes == false || babylonMaterial.transparencyMode != 0)
+ {
+ // Retreive alpha value from R channel of opacity color
+ babylonMaterial.alpha = propertyContainer.GetPoint3Property("opacity")[0];
+ }
+
+ // Color: base * weight
+ float[] baseColor = propertyContainer.GetPoint3Property(5).ToArray();
+ float baseWeight = propertyContainer.GetFloatProperty(2);
+ babylonMaterial.baseColor = baseColor.Multiply(baseWeight);
+
+ // Metallic & roughness
+ bool invertRoughness = false;
+ babylonMaterial.roughness = propertyContainer.GetFloatProperty(17); // specular_roughness
+ babylonMaterial.metallic = propertyContainer.GetFloatProperty(29);
+
+ // Emissive: emission_color * emission
+ float[] emissionColor = propertyContainer.QueryProperty("emission_color").GetPoint3Property().ToArray();
+ float emissionWeight = propertyContainer.QueryProperty("emission").GetFloatValue();
+ if (emissionColor != null && emissionWeight > 0f)
+ {
+ babylonMaterial.emissive = emissionColor.Multiply(emissionWeight);
+ }
+
+ // --- Clear Coat ---
+ float coatWeight = propertyContainer.GetFloatProperty(75);
if (coatWeight > 0.0f)
{
babylonMaterial.clearCoat.isEnabled = true;
@@ -530,9 +638,9 @@ private void ExportMaterial(IIGameMaterial materialNode, BabylonScene babylonSce
{
babylonMaterial.clearCoat.isTintEnabled = true;
babylonMaterial.clearCoat.tintColor = coatColor;
- }
-
- babylonMaterial.clearCoat.tintTexture = ExportPBRTexture(materialNode, 24, babylonScene);
+ }
+
+ babylonMaterial.clearCoat.tintTexture = ExportPBRTexture(materialNode, 24, babylonScene);
if (babylonMaterial.clearCoat.tintTexture != null)
{
babylonMaterial.clearCoat.tintColor = new[] { 1.0f, 1.0f, 1.0f };
@@ -543,322 +651,468 @@ private void ExportMaterial(IIGameMaterial materialNode, BabylonScene babylonSce
babylonMaterial.clearCoat.tintThickness = 0.65f;
babylonMaterial.clearCoat.bumpTexture = ExportPBRTexture(materialNode, 27, babylonScene);
- }
-
- // --- Textures ---
- // 1 - base_color ; 5 - specular_roughness ; 9 - metalness ; 10 - transparent
- ITexmap colorTexmap = _getTexMap(materialNode, 1);
- ITexmap alphaTexmap = _getTexMap(materialNode, 10);
- babylonMaterial.baseTexture = ExportBaseColorAlphaTexture(colorTexmap, alphaTexmap, babylonMaterial.baseColor, babylonMaterial.alpha, babylonScene, name);
-
- if (isUnlit == false)
- {
- // Metallic, roughness
- ITexmap metallicTexmap = _getTexMap(materialNode, 9);
- ITexmap roughnessTexmap = _getTexMap(materialNode, 5);
- ITexmap ambientOcclusionTexmap = _getTexMap(materialNode, 6); // Use diffuse roughness map as ambient occlusion
-
- // Check if MR textures are already merged
- bool areTexturesAlreadyMerged = false;
- if (metallicTexmap != null && roughnessTexmap != null)
- {
- string sourcePathMetallic = getSourcePath(metallicTexmap);
- string sourcePathRoughness = getSourcePath(roughnessTexmap);
-
- if (sourcePathMetallic == sourcePathRoughness)
- {
- // Metallic and roughness are already merged
- RaiseVerbose("Metallic and roughness are already merged", 2);
- BabylonTexture ormTexture = ExportTexture(metallicTexmap, babylonScene);
- babylonMaterial.metallicRoughnessTexture = ormTexture;
- // The already merged map is assumed to contain Ambient Occlusion in R channel
-
- if (ambientOcclusionTexmap != null)
- {
- // if the ambient occlusion texture map uses a different set of texture coordinates than
- // metallic roughness, create a new instance of the ORM BabylonTexture with the different texture
- // coordinate indices
-
- var ambientOcclusionTexture = _getBitmapTex(ambientOcclusionTexmap);
- var texCoordIndex = ambientOcclusionTexture.UVGen.MapChannel - 1;
- if (texCoordIndex != ormTexture.coordinatesIndex)
- {
- babylonMaterial.occlusionTexture = new BabylonTexture(ormTexture);
- babylonMaterial.occlusionTexture.coordinatesIndex = texCoordIndex;
- // Set UVs/texture transform for the ambient occlusion texture
- var uvGen = _exportUV(ambientOcclusionTexture.UVGen, babylonMaterial.occlusionTexture);
- }
- else
- {
- babylonMaterial.occlusionTexture = ormTexture;
- }
- }
- else
- {
- babylonMaterial.occlusionTexture = ormTexture;
- }
- areTexturesAlreadyMerged = true;
- }
- }
- if (areTexturesAlreadyMerged == false)
- {
- if (metallicTexmap != null || roughnessTexmap != null)
- {
- // Merge metallic, roughness
- RaiseVerbose("Merge metallic and roughness", 2);
- BabylonTexture ormTexture = ExportORMTexture(null, roughnessTexmap, metallicTexmap, babylonMaterial.metallic, babylonMaterial.roughness, babylonScene, invertRoughness);
- babylonMaterial.metallicRoughnessTexture = ormTexture;
- }
- }
-
- var numOfTexMapSlots = materialNode.MaxMaterial.NumSubTexmaps;
-
- for (int i = 0; i < numOfTexMapSlots; i++)
- {
- if (materialNode.MaxMaterial.GetSubTexmapSlotName(i) == "normal")
- {
- babylonMaterial.normalTexture = ExportPBRTexture(materialNode, i, babylonScene);
- }
-
- else if (materialNode.MaxMaterial.GetSubTexmapSlotName(i) == "emission")
- {
- babylonMaterial.emissiveTexture = ExportPBRTexture(materialNode, i, babylonScene);
- }
- }
- }
-
- // Constraints
- if (babylonMaterial.baseTexture != null)
- {
- babylonMaterial.baseColor = new[] { 1.0f, 1.0f, 1.0f };
- babylonMaterial.alpha = 1.0f;
- }
-
- if (babylonMaterial.alpha != 1.0f || (babylonMaterial.baseTexture != null && babylonMaterial.baseTexture.hasAlpha))
- {
- var alphaTestProperty = materialNode.IPropertyContainer.QueryProperty("BabylonAlphaTest");
- var alphaTestPercentProperty = materialNode.IPropertyContainer.QueryProperty("BabylonAlphaTestPercent");
- bool isAlphaTest = alphaTestProperty != null ? alphaTestProperty.GetBoolValue() : false;
- float alphaTestPercent = alphaTestPercentProperty != null ? alphaTestPercentProperty.GetFloatValue() : 0.5f; // default alpha test cutoff is 50%
-
- babylonMaterial.transparencyMode = isAlphaTest ? (int)BabylonPBRMetallicRoughnessMaterial.TransparencyMode.ALPHATEST : (int)BabylonPBRMetallicRoughnessMaterial.TransparencyMode.ALPHABLEND;
- babylonMaterial.alphaCutOff = alphaTestPercent;
- }
-
- if (babylonMaterial.metallicRoughnessTexture != null)
- {
- babylonMaterial.metallic = 1.0f;
- babylonMaterial.roughness = 1.0f;
- }
-
+ }
+
+ // --- Textures ---
+ // 1 - base_color ; 5 - specular_roughness ; 9 - metalness ; 40 - transparent
+ ITexmap colorTexmap = _getTexMap(materialNode, 1);
+ ITexmap alphaTexmap = null;
+ if (isTransparencyModeFromBabylonAttributes == false || babylonMaterial.transparencyMode != 0)
+ {
+ alphaTexmap = _getTexMap(materialNode, "opacity");
+ }
+ babylonMaterial.baseTexture = ExportBaseColorAlphaTexture(colorTexmap, alphaTexmap, babylonMaterial.baseColor, babylonMaterial.alpha, babylonScene, name, true);
+
+ if (isUnlit == false)
+ {
+ // Metallic, roughness
+ ITexmap metallicTexmap = _getTexMap(materialNode, 9);
+ ITexmap roughnessTexmap = _getTexMap(materialNode, 5);
+ ITexmap ambientOcclusionTexmap = _getTexMap(materialNode, 6); // Use diffuse roughness map as ambient occlusion
+
+ // Check if MR textures are already merged
+ bool areTexturesAlreadyMerged = false;
+ if (metallicTexmap != null && roughnessTexmap != null)
+ {
+ string sourcePathMetallic = getSourcePath(metallicTexmap);
+ string sourcePathRoughness = getSourcePath(roughnessTexmap);
+
+ if (sourcePathMetallic == sourcePathRoughness)
+ {
+ // Metallic and roughness are already merged
+ RaiseVerbose("Metallic and roughness are already merged", 2);
+ BabylonTexture ormTexture = ExportTexture(metallicTexmap, babylonScene);
+ babylonMaterial.metallicRoughnessTexture = ormTexture;
+ // The already merged map is assumed to contain Ambient Occlusion in R channel
+
+ if (ambientOcclusionTexmap != null)
+ {
+ // if the ambient occlusion texture map uses a different set of texture coordinates than
+ // metallic roughness, create a new instance of the ORM BabylonTexture with the different texture
+ // coordinate indices
+
+ var ambientOcclusionTexture = _getBitmapTex(ambientOcclusionTexmap);
+ var texCoordIndex = ambientOcclusionTexture.UVGen.MapChannel - 1;
+ if (texCoordIndex != ormTexture.coordinatesIndex)
+ {
+ babylonMaterial.occlusionTexture = new BabylonTexture(ormTexture);
+ babylonMaterial.occlusionTexture.coordinatesIndex = texCoordIndex;
+ // Set UVs/texture transform for the ambient occlusion texture
+ var uvGen = _exportUV(ambientOcclusionTexture.UVGen, babylonMaterial.occlusionTexture);
+ }
+ else
+ {
+ babylonMaterial.occlusionTexture = ormTexture;
+ }
+ }
+ else
+ {
+ babylonMaterial.occlusionTexture = ormTexture;
+ }
+ areTexturesAlreadyMerged = true;
+ }
+ }
+ if (areTexturesAlreadyMerged == false)
+ {
+ if (metallicTexmap != null || roughnessTexmap != null)
+ {
+ // Merge metallic, roughness
+ RaiseVerbose("Merge metallic and roughness", 2);
+ BabylonTexture ormTexture = ExportORMTexture(null, roughnessTexmap, metallicTexmap, babylonMaterial.metallic, babylonMaterial.roughness, babylonScene, invertRoughness);
+ babylonMaterial.metallicRoughnessTexture = ormTexture;
+ }
+ }
+
+ var numOfTexMapSlots = materialNode.MaxMaterial.NumSubTexmaps;
+
+ for (int i = 0; i < numOfTexMapSlots; i++)
+ {
+ if (materialNode.MaxMaterial.GetSubTexmapSlotName(i) == "normal")
+ {
+ babylonMaterial.normalTexture = ExportPBRTexture(materialNode, i, babylonScene);
+ }
+
+ else if (materialNode.MaxMaterial.GetSubTexmapSlotName(i) == "emission")
+ {
+ babylonMaterial.emissiveTexture = ExportPBRTexture(materialNode, i, babylonScene);
+ }
+ }
+ }
+
+ // Constraints
+ if (babylonMaterial.baseTexture != null)
+ {
+ babylonMaterial.baseColor = new[] { 1.0f, 1.0f, 1.0f };
+ babylonMaterial.alpha = 1.0f;
+ }
+
+ if (isTransparencyModeFromBabylonAttributes == false && (babylonMaterial.alpha != 1.0f || (babylonMaterial.baseTexture != null && babylonMaterial.baseTexture.hasAlpha)))
+ {
+ babylonMaterial.transparencyMode = (int)BabylonPBRMetallicRoughnessMaterial.TransparencyMode.ALPHABLEND;
+ }
+
+ if (babylonMaterial.metallicRoughnessTexture != null)
+ {
+ babylonMaterial.metallic = 1.0f;
+ babylonMaterial.roughness = 1.0f;
+ }
+
+ if (babylonMaterial.transparencyMode == (int)BabylonPBRMetallicRoughnessMaterial.TransparencyMode.ALPHATEST)
+ {
+ // Set the alphaCutOff value explicitely to avoid different interpretations on different engines
+ // Use the glTF default value rather than the babylon one
+ babylonMaterial.alphaCutOff = 0.5f;
+ }
+
+ // Add babylon attributes
+ AddAiStandardSurfaceBabylonAttributes(materialNode.MaterialName, babylonMaterial);
+
+ if (babylonAttributesContainer != null)
+ {
+ RaiseVerbose("Babylon Attributes of " + materialNode.MaterialName, 2);
+
+ // Common attributes
+ ExportCommonBabylonAttributes(babylonAttributesContainer, babylonMaterial);
+ babylonMaterial._unlit = babylonMaterial.isUnlit;
+
+ // Backface culling
+ bool backFaceCulling = babylonAttributesContainer.GetBoolProperty("babylonBackfaceCulling");
+ RaiseVerbose("backFaceCulling=" + backFaceCulling, 3);
+ babylonMaterial.backFaceCulling = backFaceCulling;
+ babylonMaterial.doubleSided = !backFaceCulling;
+ }
+
+ // List all babylon material attributes
+ // Those attributes are currently stored into the native material
+ // They should not be exported as extra attributes
+ List excludeAttributes = new List();
+ excludeAttributes.Add("babylonUnlit");
+ excludeAttributes.Add("babylonBackfaceCulling");
+ excludeAttributes.Add("babylonMaxSimultaneousLights");
+ excludeAttributes.Add("babylonTransparencyMode");
+
+ // Export the custom attributes of this material
+ babylonMaterial.metadata = ExportExtraAttributes(materialNode, babylonScene, excludeAttributes);
+
if (exportParameters.pbrFull)
{
var fullPBR = new BabylonPBRMaterial(babylonMaterial);
fullPBR.maxGameMaterial = babylonMaterial.maxGameMaterial;
babylonScene.MaterialsList.Add(fullPBR);
- }
+ }
else
{
// Add the material to the scene
babylonScene.MaterialsList.Add(babylonMaterial);
- }
- }
- else
- {
- // isMaterialExportable check should prevent this to happen
- RaiseError("Unsupported material type: " + materialNode.MaterialClass, 2);
- }
- }
-
- public bool isPhysicalMaterial(IIGameMaterial materialNode)
- {
- return ClassIDWrapper.Physical_Material.Equals(materialNode.MaxMaterial.ClassID);
- }
-
- public bool isMultiSubObjectMaterial(IIGameMaterial materialNode)
- {
- return ClassIDWrapper.Multi_Sub_Object_Material.Equals(materialNode.MaxMaterial.ClassID);
- }
-
- public bool isDirectXShaderMaterial(IIGameMaterial materialNode)
- {
- return ClassIDWrapper.DirectX_Shader_Material.Equals(materialNode.MaxMaterial.ClassID);
- }
-
- public bool isArnoldMaterial(IIGameMaterial materialNode)
- {
- return ClassIDWrapper.Standard_Surface_Material.Equals(materialNode.MaxMaterial.ClassID);
- }
-
- public bool isShellMaterial(IIGameMaterial materialNode)
- {
- return ClassIDWrapper.Shell_Material.Equals(materialNode.MaxMaterial.ClassID);
- }
-
- ///
- /// Return null if the material is supported.
- /// Otherwise return the unsupported material (himself or one of its sub-materials)
- ///
- ///
- ///
- public IIGameMaterial isMaterialSupported(IIGameMaterial materialNode)
- {
- // Shell material
- if (isShellMaterial(materialNode))
- {
- var bakedMaterial = GetBakedMaterialFromShellMaterial(materialNode);
- if(bakedMaterial == null)
- {
- return materialNode;
- }
- return isMaterialSupported(bakedMaterial);
- }
-
- if (materialNode.SubMaterialCount > 0)
- {
- // Check sub materials recursively
- for (int indexSubMaterial = 0; indexSubMaterial < materialNode.SubMaterialCount; indexSubMaterial++)
- {
- IIGameMaterial subMaterialNode = materialNode.GetSubMaterial(indexSubMaterial);
- IIGameMaterial unsupportedSubMaterial = isMaterialSupported(subMaterialNode);
- if (unsupportedSubMaterial != null)
- {
- return unsupportedSubMaterial;
- }
- }
-
- // Multi/sub-object material
- if (isMultiSubObjectMaterial(materialNode))
- {
- return null;
- }
- }
- else
- {
- // Standard material
- var stdMat = materialNode.MaxMaterial.NumParamBlocks > 0 ? materialNode.MaxMaterial.GetParamBlock(0).Owner as IStdMat2 : null;
-
- if (stdMat != null)
- {
- return null;
- }
-
- // Physical material
- if (isPhysicalMaterial(materialNode))
- {
- return null;
- }
-
- // Custom material exporters
- IMaxMaterialExporter materialExporter;
- if (materialExporters.TryGetValue(new ClassIDWrapper(materialNode.MaxMaterial.ClassID), out materialExporter))
- {
- if (isGltfExported && materialExporter is IMaxGLTFMaterialExporter)
- return null;
- else if (isBabylonExported && materialExporter is IMaxBabylonMaterialExporter)
- return null;
- }
-
- // Arnold material
- if (isArnoldMaterial(materialNode))
- {
- return null;
- }
-
- // DirectX Shader
- if (isDirectXShaderMaterial(materialNode))
- {
- return isMaterialSupported(GetRenderMaterialFromDirectXShader(materialNode));
- }
- }
- return materialNode;
- }
-
- private IIGameMaterial GetRenderMaterialFromDirectXShader(IIGameMaterial materialNode)
- {
- IIGameMaterial renderMaterial = null;
-
- if (isDirectXShaderMaterial(materialNode))
- {
- var gameScene = Loader.Global.IGameInterface;
- IIGameProperty property = materialNode.IPropertyContainer.GetProperty(35);
- if (property != null)
- {
- IMtl renderMtl = materialNode.IPropertyContainer.GetProperty(35).MaxParamBlock2.GetMtl(4, 0, 0);
- if (renderMtl != null)
- {
- renderMaterial = gameScene.GetIGameMaterial(renderMtl);
- }
- }
- else
- {
- RaiseWarning($"DirectX material property for {materialNode.MaterialName} is null...", 2);
- }
-
- }
-
- return renderMaterial;
- }
-
- private IIGameMaterial GetBakedMaterialFromShellMaterial(IIGameMaterial materialNode)
- {
- if (isShellMaterial(materialNode))
- {
- // Shell Material Parameters
- // Original Material not exported => only for the offline rendering in 3DS Max
- // Baked Material => used for the export
- IMtl bakedMtl = materialNode.IPropertyContainer.GetProperty(1).MaxParamBlock2.GetMtl(3, 0, 0);
-
- if(bakedMtl != null)
- {
- Guid guid = bakedMtl.GetGuid();
-
- for (int indexSubMaterial = 0; indexSubMaterial < materialNode.SubMaterialCount; indexSubMaterial++)
- {
- IIGameMaterial subMaterialNode = materialNode.GetSubMaterial(indexSubMaterial);
- if (guid.Equals(subMaterialNode.MaxMaterial.GetGuid()))
- {
- return subMaterialNode;
- }
- }
- }
- }
-
- return null;
- }
-
- // -------------------------
- // --------- Utils ---------
- // -------------------------
-
- private string ColorToString(IColor color)
- {
- if (color == null)
- {
- return "";
- }
-
- return "{ r=" + color.R + ", g=" + color.G + ", b=" + color.B + " }";
- }
-
- private string Point3ToString(IPoint3 point)
- {
- if (point == null)
- {
- return "";
- }
-
- return "{ x=" + point.X + ", y=" + point.Y + ", z=" + point.Z + " }";
- }
-
- private string Point4ToString(IPoint4 point)
- {
- if (point == null)
- {
- return "";
- }
-
- return "{ x=" + point.X + ", y=" + point.Y + ", z=" + point.Z + ", w=" + point.W + " }";
- }
- }
-}
+ }
+ }
+ else
+ {
+ // isMaterialExportable check should prevent this to happen
+ RaiseError("Unsupported material type: " + materialNode.MaterialClass, 2);
+ }
+ }
+
+ public bool isPhysicalMaterial(IIGameMaterial materialNode)
+ {
+ return ClassIDWrapper.Physical_Material.Equals(materialNode.MaxMaterial.ClassID);
+ }
+
+ public bool isDoubleSidedMaterial(IIGameMaterial materialNode)
+ {
+ return ClassIDWrapper.Double_Sided_Material.Equals(materialNode.MaxMaterial.ClassID);
+ }
+
+ public bool isMultiSubObjectMaterial(IIGameMaterial materialNode)
+ {
+ return ClassIDWrapper.Multi_Sub_Object_Material.Equals(materialNode.MaxMaterial.ClassID);
+ }
+
+ public bool isDirectXShaderMaterial(IIGameMaterial materialNode)
+ {
+ return ClassIDWrapper.DirectX_Shader_Material.Equals(materialNode.MaxMaterial.ClassID);
+ }
+
+ public bool isArnoldMaterial(IIGameMaterial materialNode)
+ {
+ return ClassIDWrapper.Standard_Surface_Material.Equals(materialNode.MaxMaterial.ClassID);
+ }
+
+ public bool isShellMaterial(IIGameMaterial materialNode)
+ {
+ return ClassIDWrapper.Shell_Material.Equals(materialNode.MaxMaterial.ClassID);
+ }
+
+ ///
+ /// Return null if the material is supported.
+ /// Otherwise return the unsupported material (himself or one of its sub-materials)
+ ///
+ ///
+ ///
+ public IIGameMaterial isMaterialSupported(IIGameMaterial materialNode)
+ {
+ // Shell material
+ if (isShellMaterial(materialNode))
+ {
+ var bakedMaterial = GetBakedMaterialFromShellMaterial(materialNode);
+ if (bakedMaterial == null)
+ {
+ return materialNode;
+ }
+ return isMaterialSupported(bakedMaterial);
+ }
+
+ if (materialNode.SubMaterialCount > 0)
+ {
+ // Check sub materials recursively
+ for (int indexSubMaterial = 0; indexSubMaterial < materialNode.SubMaterialCount; indexSubMaterial++)
+ {
+ IIGameMaterial subMaterialNode = materialNode.GetSubMaterial(indexSubMaterial);
+ IIGameMaterial unsupportedSubMaterial = isMaterialSupported(subMaterialNode);
+ if (unsupportedSubMaterial != null)
+ {
+ return unsupportedSubMaterial;
+ }
+ }
+
+ // Multi/sub-object material
+ if (isMultiSubObjectMaterial(materialNode))
+ {
+ return null;
+ }
+
+ // Double sided material
+ if (isDoubleSidedMaterial(materialNode))
+ {
+ return null;
+ }
+ }
+ else
+ {
+ // Standard material
+ IStdMat2 stdMat = null;
+ if (materialNode.MaxMaterial != null && materialNode.MaxMaterial.NumParamBlocks > 0)
+ {
+ var paramBlock = materialNode.MaxMaterial.GetParamBlock(0);
+ if (paramBlock != null && paramBlock.Owner != null)
+ {
+ stdMat = materialNode.MaxMaterial.GetParamBlock(0).Owner as IStdMat2;
+ }
+ }
+
+ if (stdMat != null)
+ {
+ return null;
+ }
+
+ // Physical material
+ if (isPhysicalMaterial(materialNode))
+ {
+ return null;
+ }
+
+ // Custom material exporters
+ IMaxMaterialExporter materialExporter;
+ if (materialExporters.TryGetValue(new ClassIDWrapper(materialNode.MaxMaterial.ClassID), out materialExporter))
+ {
+ if (isGltfExported && materialExporter is IMaxGLTFMaterialExporter)
+ return null;
+ else if (isBabylonExported && materialExporter is IMaxBabylonMaterialExporter)
+ return null;
+ }
+
+ // Arnold material
+ if (isArnoldMaterial(materialNode))
+ {
+ return null;
+ }
+
+ // DirectX Shader
+ if (isDirectXShaderMaterial(materialNode))
+ {
+ return isMaterialSupported(GetRenderMaterialFromDirectXShader(materialNode));
+ }
+ }
+ return materialNode;
+ }
+
+ private IIGameMaterial GetRenderMaterialFromDirectXShader(IIGameMaterial materialNode)
+ {
+ IIGameMaterial renderMaterial = null;
+
+ if (isDirectXShaderMaterial(materialNode))
+ {
+ var gameScene = Loader.Global.IGameInterface;
+ IIGameProperty property = materialNode.IPropertyContainer.GetProperty(35);
+ if (property != null)
+ {
+ IMtl renderMtl = materialNode.IPropertyContainer.GetProperty(35).MaxParamBlock2.GetMtl(4, 0, 0);
+ if (renderMtl != null)
+ {
+ renderMaterial = gameScene.GetIGameMaterial(renderMtl);
+ }
+ }
+ else
+ {
+ RaiseWarning($"DirectX material property for {materialNode.MaterialName} is null...", 2);
+ }
+
+ }
+
+ return renderMaterial;
+ }
+
+ private IIGameMaterial GetBakedMaterialFromShellMaterial(IIGameMaterial materialNode)
+ {
+ if (isShellMaterial(materialNode))
+ {
+ // Shell Material Parameters
+ // Original Material not exported => only for the offline rendering in 3DS Max
+ // Baked Material => used for the export
+ IMtl bakedMtl = materialNode.IPropertyContainer.GetProperty(1).MaxParamBlock2.GetMtl(3, 0, 0);
+
+ if (bakedMtl != null)
+ {
+ Guid guid = bakedMtl.GetGuid();
+
+ for (int indexSubMaterial = 0; indexSubMaterial < materialNode.SubMaterialCount; indexSubMaterial++)
+ {
+ IIGameMaterial subMaterialNode = materialNode.GetSubMaterial(indexSubMaterial);
+ if (guid.Equals(subMaterialNode.MaxMaterial.GetGuid()))
+ {
+ return subMaterialNode;
+ }
+ }
+ }
+ }
+
+ return null;
+ }
+
+ ///
+ /// Add babylon attributes to a Standard material.
+ /// The attributes are defined as global (with a static ID).
+ /// If the attributes are not present on the material, they will be addded.
+ /// Otherwise the definition will be updated.
+ ///
+ /// Name of the object containing babylon attributes
+ private void AddStandardBabylonAttributes(string attributesContainer, BabylonStandardMaterial babylonMaterial)
+ {
+ string cmdCreateBabylonAttributes = GetStandardBabylonAttributesDataCA(babylonMaterial.transparencyMode);
+ AddBabylonAttributes(attributesContainer, cmdCreateBabylonAttributes);
+ }
+
+ public static string GetStandardBabylonAttributesDataCA(int babylonTransparencyMode = 0)
+ {
+ return "babylonAttributesDataCA = attributes \"Babylon Attributes\" attribID:#(0x360393c4, 0x6cfefa59)"
+ + "\r\n" + "("
+ + "\r\n" + "parameters main rollout:params"
+ + "\r\n" + "("
+ + "\r\n" + "babylonUnlit type:#boolean ui:babylonUnlit_ui"
+ //+ "\r\n" + "babylonBackfaceCulling type:#boolean ui:babylonBackfaceCulling_ui default:true"
+ + "\r\n" + "babylonMaxSimultaneousLights type:#integer ui:babylonMaxSimultaneousLights_ui default:4"
+ + "\r\n" + "babylonTransparencyMode type:#integer default:" + babylonTransparencyMode
+ + "\r\n" + ")"
+ + "\r\n" + " "
+ + "\r\n" + "rollout params \"Babylon Attributes\""
+ + "\r\n" + "("
+ + "\r\n" + "checkbox babylonUnlit_ui \"Unlit\""
+ //+ "\r\n" + "checkbox babylonBackfaceCulling_ui \"Backface Culling\""
+ + "\r\n" + "spinner babylonMaxSimultaneousLights_ui \"Max Simultaneous Lights\" Align: #Left type: #integer Range:[1,100,4]"
+ + "\r\n" + "dropdownlist babylonTransparencyMode_dd \"Transparency Mode\" items:# (\"Opaque\",\"Cutoff\",\"Blend\") selection:(babylonTransparencyMode+1)"
+ + "\r\n" + "on babylonTransparencyMode_dd selected i do babylonTransparencyMode = i-1"
+ + "\r\n" + ")"
+ + "\r\n" + ");";
+ }
+
+ ///
+ /// Add babylon attributes to a Physical material.
+ /// The attributes are defined as global (with a static ID).
+ /// If the attributes are not present on the material, they will be addded.
+ /// Otherwise the definition will be updated.
+ ///
+ /// Name of the object containing babylon attributes
+ private void AddPhysicalBabylonAttributes(string attributesContainer, BabylonPBRMetallicRoughnessMaterial babylonMaterial)
+ {
+ string cmdCreateBabylonAttributes = GetPhysicalBabylonAttributesDataCA(babylonMaterial.transparencyMode);
+ AddBabylonAttributes(attributesContainer, cmdCreateBabylonAttributes);
+ }
+
+ public static string GetPhysicalBabylonAttributesDataCA(int babylonTransparencyMode = 0)
+ {
+ return "babylonAttributesDataCA = attributes \"Babylon Attributes\" attribID:#(0x4f890715, 0x24da1759)"
+ + "\r\n" + "("
+ + "\r\n" + "parameters main rollout:params"
+ + "\r\n" + "("
+ + "\r\n" + "babylonUnlit type:#boolean ui:babylonUnlit_ui"
+ + "\r\n" + "babylonBackfaceCulling type:#boolean ui:babylonBackfaceCulling_ui default:true"
+ + "\r\n" + "babylonMaxSimultaneousLights type:#integer ui:babylonMaxSimultaneousLights_ui default:4"
+ + "\r\n" + "babylonTransparencyMode type:#integer default:" + babylonTransparencyMode
+ + "\r\n" + ")"
+ + "\r\n" + " "
+ + "\r\n" + "rollout params \"Babylon Attributes\""
+ + "\r\n" + "("
+ + "\r\n" + "checkbox babylonUnlit_ui \"Unlit\""
+ + "\r\n" + "checkbox babylonBackfaceCulling_ui \"Backface Culling\""
+ + "\r\n" + "spinner babylonMaxSimultaneousLights_ui \"Max Simultaneous Lights\" Align: #Left type: #integer Range:[1,100,4]"
+ + "\r\n" + "dropdownlist babylonTransparencyMode_dd \"Transparency Mode\" items:# (\"Opaque\",\"Cutoff\",\"Blend\") selection:(babylonTransparencyMode+1)"
+ + "\r\n" + "on babylonTransparencyMode_dd selected i do babylonTransparencyMode = i-1"
+ + "\r\n" + ")"
+ + "\r\n" + ");";
+ }
+
+ ///
+ /// Add babylon attributes to a AiStandardSurfaceMaterial material.
+ /// The attributes are defined as global (with a static ID).
+ /// If the attributes are not present on the material, they will be addded.
+ /// Otherwise the definition will be updated.
+ ///
+ /// Name of the object containing babylon attributes
+ private void AddAiStandardSurfaceBabylonAttributes(string attributesContainer, BabylonPBRMetallicRoughnessMaterial babylonMaterial)
+ {
+ string cmdCreateBabylonAttributes = GetAiStandardSurfaceBabylonAttributesDataCA(babylonMaterial.transparencyMode);
+ AddBabylonAttributes(attributesContainer, cmdCreateBabylonAttributes);
+ }
+
+ public static string GetAiStandardSurfaceBabylonAttributesDataCA(int babylonTransparencyMode = 0)
+ {
+ return "babylonAttributesDataCA = attributes \"Babylon Attributes\" attribID:#(0x7c15a5ea, 0x5fc4d835)"
+ + "\r\n" + "("
+ + "\r\n" + "parameters main rollout:params"
+ + "\r\n" + "("
+ + "\r\n" + "babylonUnlit type:#boolean ui:babylonUnlit_ui"
+ + "\r\n" + "babylonBackfaceCulling type:#boolean ui:babylonBackfaceCulling_ui default:true"
+ + "\r\n" + "babylonMaxSimultaneousLights type:#integer ui:babylonMaxSimultaneousLights_ui default:4"
+ + "\r\n" + "babylonTransparencyMode type:#integer default:" + babylonTransparencyMode
+ + "\r\n" + ")"
+ + "\r\n" + " "
+ + "\r\n" + "rollout params \"Babylon Attributes\""
+ + "\r\n" + "("
+ + "\r\n" + "checkbox babylonUnlit_ui \"Unlit\""
+ + "\r\n" + "checkbox babylonBackfaceCulling_ui \"Backface Culling\""
+ + "\r\n" + "spinner babylonMaxSimultaneousLights_ui \"Max Simultaneous Lights\" Align: #Left type: #integer Range:[1,100,4]"
+ + "\r\n" + "dropdownlist babylonTransparencyMode_dd \"Opacity Mode\" items:# (\"Opaque\",\"Cutoff\",\"Blend\") selection:(babylonTransparencyMode+1)"
+ + "\r\n" + "on babylonTransparencyMode_dd selected i do babylonTransparencyMode = i-1"
+ + "\r\n" + ")"
+ + "\r\n" + ");";
+ }
+
+ private void AddBabylonAttributes(string attributesContainer, string cmdCreateBabylonAttributes)
+ {
+ ManagedServices.MaxscriptSDK.ExecuteMaxscriptCommand(cmdCreateBabylonAttributes);
+ ManagedServices.MaxscriptSDK.ExecuteMaxscriptCommand("maxMaterial = sceneMaterials[\"" + attributesContainer + "\"];");
+ ManagedServices.MaxscriptSDK.ExecuteMaxscriptCommand(@"custAttributes.add maxMaterial babylonAttributesDataCA;");
+ }
+
+ private void ExportCommonBabylonAttributes(IIPropertyContainer babylonAttributesContainer, BabylonMaterial babylonMaterial)
+ {
+ int maxSimultaneousLights = babylonAttributesContainer.GetIntProperty("babylonMaxSimultaneousLights", 4);
+ RaiseVerbose("maxSimultaneousLights=" + maxSimultaneousLights, 3);
+ babylonMaterial.maxSimultaneousLights = maxSimultaneousLights;
+
+ bool unlit = babylonAttributesContainer.GetBoolProperty("babylonUnlit");
+ RaiseVerbose("unlit=" + unlit, 3);
+ babylonMaterial.isUnlit = unlit;
+ }
+ }
+}
diff --git a/3ds Max/Max2Babylon/Exporter/BabylonExporter.Mesh.cs b/3ds Max/Max2Babylon/Exporter/BabylonExporter.Mesh.cs
index 0800b38d..29e02df5 100644
--- a/3ds Max/Max2Babylon/Exporter/BabylonExporter.Mesh.cs
+++ b/3ds Max/Max2Babylon/Exporter/BabylonExporter.Mesh.cs
@@ -1,1025 +1,1080 @@
-using Autodesk.Max;
-using BabylonExport.Entities;
-using System;
-using System.Collections.Generic;
-using System.IO;
-using System.Linq;
-
-namespace Max2Babylon
-{
- partial class BabylonExporter
- {
- private bool IsMeshExportable(IIGameNode meshNode)
- {
- return IsNodeExportable(meshNode);
- }
-
- private BabylonNode ExportDummy(IIGameScene scene, IIGameNode meshNode, BabylonScene babylonScene)
- {
- RaiseMessage(meshNode.Name, 1);
-
- var babylonMesh = new BabylonMesh { name = meshNode.Name, id = meshNode.MaxNode.GetGuid().ToString() };
- babylonMesh.isDummy = true;
-
- // Position / rotation / scaling / hierarchy
- exportNode(babylonMesh, meshNode, scene, babylonScene);
-
- // Animations
- exportAnimation(babylonMesh, meshNode);
-
- babylonScene.MeshesList.Add(babylonMesh);
-
- return babylonMesh;
- }
-
- private BabylonNode ExportMesh(IIGameScene scene, IIGameNode meshNode, BabylonScene babylonScene)
- {
- if (IsMeshExportable(meshNode) == false)
- {
- return null;
- }
-
- RaiseMessage(meshNode.Name, 1);
-
- // Instances
-#if MAX2020
- var tabs = Loader.Global.INodeTab.Create();
-#else
- var tabs = Loader.Global.NodeTab.Create();
-#endif
- Loader.Global.IInstanceMgr.InstanceMgr.GetInstances(meshNode.MaxNode, tabs);
- if (tabs.Count > 1)
- {
- // For a mesh with instances, we distinguish between master and instance meshes:
- // - a master mesh stores all the info of the mesh (transform, hierarchy, animations + vertices, indices, materials, bones...)
- // - an instance mesh only stores the info of the node (transform, hierarchy, animations)
-
- // Check if this mesh has already been exported
- List babylonMasterMeshes = new List();
- var index = 0;
- while (index < tabs.Count)
- {
-#if MAX2017 || MAX2018 || MAX2019 || MAX2020
- var tab = tabs[index];
-#else
- var tab = tabs[new IntPtr(index)];
-#endif
-
- babylonMasterMeshes.AddRange(babylonScene.MeshesList.FindAll(_babylonMesh => {
- // Same id
- return _babylonMesh.id == tab.GetGuid().ToString() &&
- // Mesh is not a dummy
- _babylonMesh.isDummy == false;
- }));
-
- index++;
- }
-
- if (babylonMasterMeshes.Count > 0)
- {
- // Mesh already exported
- // Export this node as instance
-
- // Check if we need to export this instance as an instance mesh.
- // If there is already an exported mesh in the scene that shares this mesh's material, then export it as an instance.
- BabylonMesh babylonMasterMesh = null;
- foreach (var mesh in babylonMasterMeshes)
- {
- if ( mesh.materialId == null
- || (meshNode.NodeMaterial != null && meshNode.NodeMaterial.MaxMaterial.GetGuid().ToString().Equals(mesh.materialId)))
- {
- babylonMasterMesh = mesh;
- }
- }
-
- if (babylonMasterMesh != null)
- {
- return ExportInstanceMesh(scene, meshNode, babylonScene, babylonMasterMesh);
- }
-
- return ExportMasterMesh(scene, meshNode, babylonScene);
- }
- }
-
- return ExportMasterMesh(scene, meshNode, babylonScene);
- }
-
- private BabylonNode ExportMasterMesh(IIGameScene scene, IIGameNode meshNode, BabylonScene babylonScene)
- {
- var gameMesh = meshNode.IGameObject.AsGameMesh();
- try
- {
- bool initialized = gameMesh.InitializeData; // needed, the property is in fact a method initializing the exporter that has wrongly been auto
- // translated into a property because it has no parameters
- }
- catch (Exception e)
- {
- RaiseWarning($"Mesh {meshNode.Name} failed to initialize. Mesh is exported as dummy.", 2);
- return ExportDummy(scene, meshNode, babylonScene);
- }
-
- var babylonMesh = new BabylonMesh { name = meshNode.Name, id = meshNode.MaxNode.GetGuid().ToString() };
-
- // Position / rotation / scaling / hierarchy
- exportNode(babylonMesh, meshNode, scene, babylonScene);
-
- // Sounds
- var soundName = meshNode.MaxNode.GetStringProperty("babylonjs_sound_filename", "");
- if (!string.IsNullOrEmpty(soundName))
- {
- var filename = Path.GetFileName(soundName);
-
- var meshSound = new BabylonSound
- {
- name = filename,
- autoplay = meshNode.MaxNode.GetBoolProperty("babylonjs_sound_autoplay", 1),
- loop = meshNode.MaxNode.GetBoolProperty("babylonjs_sound_loop", 1),
- volume = meshNode.MaxNode.GetFloatProperty("babylonjs_sound_volume", 1.0f),
- playbackRate = meshNode.MaxNode.GetFloatProperty("babylonjs_sound_playbackrate", 1.0f),
- connectedMeshId = babylonMesh.id,
- isDirectional = false,
- spatialSound = false,
- distanceModel = meshNode.MaxNode.GetStringProperty("babylonjs_sound_distancemodel", "linear"),
- maxDistance = meshNode.MaxNode.GetFloatProperty("babylonjs_sound_maxdistance", 100f),
- rolloffFactor = meshNode.MaxNode.GetFloatProperty("babylonjs_sound_rolloff", 1.0f),
- refDistance = meshNode.MaxNode.GetFloatProperty("babylonjs_sound_refdistance", 1.0f),
- };
-
- var isDirectional = meshNode.MaxNode.GetBoolProperty("babylonjs_sound_directional");
-
- if (isDirectional)
- {
- meshSound.isDirectional = true;
- meshSound.coneInnerAngle = meshNode.MaxNode.GetFloatProperty("babylonjs_sound_coneinnerangle", 360f);
- meshSound.coneOuterAngle = meshNode.MaxNode.GetFloatProperty("babylonjs_sound_coneouterangle", 360f);
- meshSound.coneOuterGain = meshNode.MaxNode.GetFloatProperty("babylonjs_sound_coneoutergain", 1.0f);
- }
-
- babylonScene.SoundsList.Add(meshSound);
-
- if (isBabylonExported)
- {
- try
- {
- File.Copy(soundName, Path.Combine(babylonScene.OutputPath, filename), true);
- }
- catch
- {
- }
- }
- }
-
- // Misc.
-#if MAX2017 || MAX2018 || MAX2019 || MAX2020
- babylonMesh.isVisible = meshNode.MaxNode.Renderable;
- babylonMesh.receiveShadows = meshNode.MaxNode.RcvShadows;
- babylonMesh.applyFog = meshNode.MaxNode.ApplyAtmospherics;
-#else
- babylonMesh.isVisible = meshNode.MaxNode.Renderable == 1;
- babylonMesh.receiveShadows = meshNode.MaxNode.RcvShadows == 1;
- babylonMesh.applyFog = meshNode.MaxNode.ApplyAtmospherics == 1;
-#endif
- babylonMesh.pickable = meshNode.MaxNode.GetBoolProperty("babylonjs_checkpickable");
- babylonMesh.showBoundingBox = meshNode.MaxNode.GetBoolProperty("babylonjs_showboundingbox");
- babylonMesh.showSubMeshesBoundingBox = meshNode.MaxNode.GetBoolProperty("babylonjs_showsubmeshesboundingbox");
- babylonMesh.alphaIndex = (int)meshNode.MaxNode.GetFloatProperty("babylonjs_alphaindex", 1000);
-
- // Collisions
- babylonMesh.checkCollisions = meshNode.MaxNode.GetBoolProperty("babylonjs_checkcollisions");
-
- // Skin
- var isSkinned = gameMesh.IsObjectSkinned;
- var skin = gameMesh.IGameSkin;
- var unskinnedMesh = gameMesh;
- IGMatrix skinInitPoseMatrix = Loader.Global.GMatrix.Create(Loader.Global.Matrix3.Create(true));
- List boneIds = null;
- int maxNbBones = 0;
- List skinnedBones = GetSkinnedBones(skin);
- if (isSkinned && skinnedBones.Count > 0) // if the mesh has a skin with at least one bone
- {
- var skinAlreadyStored = skins.Find(_skin => IsSkinEqualTo(_skin, skin));
- if (skinAlreadyStored == null)
- {
- skins.Add(skin);
- babylonMesh.skeletonId = skins.IndexOf(skin);
- }
- else
- {
- babylonMesh.skeletonId = skins.IndexOf(skinAlreadyStored);
- }
-
- skin.GetInitSkinTM(skinInitPoseMatrix);
- boneIds = GetNodeIndices(skin);
- }
- else
- {
- skin = null;
- }
-
- // Mesh
-
- if (unskinnedMesh.IGameType == Autodesk.Max.IGameObject.ObjectTypes.Mesh && unskinnedMesh.MaxMesh != null)
- {
- if (unskinnedMesh.NumberOfFaces < 1)
- {
- RaiseError($"Mesh {babylonMesh.name} has no face", 2);
- }
-
- if (unskinnedMesh.NumberOfVerts < 3)
- {
- RaiseError($"Mesh {babylonMesh.name} has not enough vertices", 2);
- }
-
- if (unskinnedMesh.NumberOfVerts >= 65536)
- {
- RaiseWarning($"Mesh {babylonMesh.name} has tmore than 65536 vertices which means that it will require specific WebGL extension to be rendered. This may impact portability of your scene on low end devices.", 2);
- }
-
- if (skin != null)
- {
- for (var vertexIndex = 0; vertexIndex < unskinnedMesh.NumberOfVerts; vertexIndex++)
- {
- maxNbBones = Math.Max(maxNbBones, skin.GetNumberOfBones(vertexIndex));
- }
- }
-
- // Physics
- var impostorText = meshNode.MaxNode.GetStringProperty("babylonjs_impostor", "None");
-
- if (impostorText != "None")
- {
- switch (impostorText)
- {
- case "Sphere":
- babylonMesh.physicsImpostor = 1;
- break;
- case "Box":
- babylonMesh.physicsImpostor = 2;
- break;
- case "Plane":
- babylonMesh.physicsImpostor = 3;
- break;
- default:
- babylonMesh.physicsImpostor = 0;
- break;
- }
-
- babylonMesh.physicsMass = meshNode.MaxNode.GetFloatProperty("babylonjs_mass");
- babylonMesh.physicsFriction = meshNode.MaxNode.GetFloatProperty("babylonjs_friction", 0.2f);
- babylonMesh.physicsRestitution = meshNode.MaxNode.GetFloatProperty("babylonjs_restitution", 0.2f);
- }
-
- // Material
- var mtl = meshNode.NodeMaterial;
- var multiMatsCount = 1;
-
- // The DirectXShader material is a passthrough to its render material.
- // The shell material is a passthrough to its baked material.
- while (mtl != null && (isShellMaterial(mtl) || isDirectXShaderMaterial(mtl)))
- {
- if(isShellMaterial(mtl))
- {
- // Retrieve the baked material from the shell material.
- mtl = GetBakedMaterialFromShellMaterial(mtl);
- }
- else // isDirectXShaderMaterial(mtl)
- {
- // Retrieve the render material from the directX shader
- mtl = GetRenderMaterialFromDirectXShader(mtl);
- }
- }
-
- if (mtl != null)
- {
- IIGameMaterial unsupportedMaterial = isMaterialSupported(mtl);
- if (unsupportedMaterial == null)
- {
- babylonMesh.materialId = mtl.MaxMaterial.GetGuid().ToString();
-
- if (!referencedMaterials.Contains(mtl))
- {
- referencedMaterials.Add(mtl);
- }
-
- multiMatsCount = Math.Max(mtl.SubMaterialCount, 1);
- }
- else
- {
- if (mtl.SubMaterialCount == 0 || mtl == unsupportedMaterial)
- {
- RaiseWarning("Unsupported material type '" + unsupportedMaterial.MaterialClass + "'. Material is ignored.", 2);
- }
- else
- {
- RaiseWarning("Unsupported sub-material type '" + unsupportedMaterial.MaterialClass + "'. Material is ignored.", 2);
- }
- }
- }
-
- babylonMesh.visibility = meshNode.MaxNode.GetVisibility(0, Tools.Forever);
-
- var vertices = new List();
- var indices = new List();
- var mappingChannels = unskinnedMesh.ActiveMapChannelNum;
- bool hasUV = false;
- bool hasUV2 = false;
- for (int i = 0; i < mappingChannels.Count; ++i)
- {
-#if MAX2017 || MAX2018 || MAX2019 || MAX2020
- var channelNum = mappingChannels[i];
-#else
- var channelNum = mappingChannels[new IntPtr(i)];
-#endif
- if (channelNum == 1)
- {
- hasUV = true;
- }
- else if (channelNum == 2)
- {
- hasUV2 = true;
- }
- }
- var hasColor = unskinnedMesh.NumberOfColorVerts > 0;
- var hasAlpha = unskinnedMesh.GetNumberOfMapVerts(-2) > 0;
-
- var optimizeVertices = meshNode.MaxNode.GetBoolProperty("babylonjs_optimizevertices");
-
- var invertedWorldMatrix = GetInvertWorldTM(meshNode, 0);
- var offsetTM = GetOffsetTM(meshNode, 0);
-
- // Compute normals
- var subMeshes = new List();
- List faceIndexes = null;
- ExtractGeometry(babylonMesh, vertices, indices, subMeshes, boneIds, skin, unskinnedMesh, invertedWorldMatrix, offsetTM, hasUV, hasUV2, hasColor, hasAlpha, optimizeVertices, multiMatsCount, meshNode, ref faceIndexes);
-
- if (vertices.Count >= 65536)
- {
- RaiseWarning($"Mesh {babylonMesh.name} has {vertices.Count} vertices. This may prevent your scene to work on low end devices where 32 bits indice are not supported", 2);
-
- if (!optimizeVertices)
- {
- RaiseError("You can try to optimize your object using [Try to optimize vertices] option", 2);
- }
- }
-
- RaiseMessage($"{vertices.Count} vertices, {indices.Count / 3} faces", 2);
-
- // Buffers
- babylonMesh.positions = vertices.SelectMany(v => new[] { v.Position.X, v.Position.Y, v.Position.Z }).ToArray();
- babylonMesh.normals = vertices.SelectMany(v => new[] { v.Normal.X, v.Normal.Y, v.Normal.Z }).ToArray();
-
- // Export tangents if option is checked and mesh has tangents
- if (exportParameters.exportTangents)
- {
- babylonMesh.tangents = vertices.SelectMany(v => v.Tangent).ToArray();
- }
-
- if (hasUV)
- {
- babylonMesh.uvs = vertices.SelectMany(v => new[] { v.UV.X, 1 - v.UV.Y }).ToArray();
- }
- if (hasUV2)
- {
- babylonMesh.uvs2 = vertices.SelectMany(v => new[] { v.UV2.X, 1 - v.UV2.Y }).ToArray();
- }
-
- if (skin != null)
- {
- babylonMesh.matricesWeights = vertices.SelectMany(v => v.Weights.ToArray()).ToArray();
- babylonMesh.matricesIndices = vertices.Select(v => v.BonesIndices).ToArray();
-
- babylonMesh.numBoneInfluencers = maxNbBones;
- if (maxNbBones > 4)
- {
- babylonMesh.matricesWeightsExtra = vertices.SelectMany(v => v.WeightsExtra != null ? v.WeightsExtra.ToArray() : new[] { 0.0f, 0.0f, 0.0f, 0.0f }).ToArray();
- babylonMesh.matricesIndicesExtra = vertices.Select(v => v.BonesIndicesExtra).ToArray();
- }
- }
-
- if (hasColor)
- {
- babylonMesh.colors = vertices.SelectMany(v => v.Color.ToArray()).ToArray();
- babylonMesh.hasVertexAlpha = hasAlpha;
- }
-
- babylonMesh.subMeshes = subMeshes.ToArray();
-
- // Buffers - Indices
- babylonMesh.indices = indices.ToArray();
-
- // ------------------------
- // ---- Morph targets -----
- // ------------------------
-
- // Retreive modifiers with morpher flag
- List modifiers = new List();
- for (int i = 0; i < meshNode.IGameObject.NumModifiers; i++)
- {
- var modifier = meshNode.IGameObject.GetIGameModifier(i);
- if (modifier.ModifierType == Autodesk.Max.IGameModifier.ModType.Morpher)
- {
- modifiers.Add(modifier);
- }
- }
-
- // Cast modifiers to morphers
- List morphers = modifiers.ConvertAll(new Converter(modifier => modifier.AsGameMorpher()));
-
- var hasMorphTarget = false;
- morphers.ForEach(morpher =>
- {
- if (morpher.NumberOfMorphTargets > 0)
- {
- hasMorphTarget = true;
- }
- });
-
- if (hasMorphTarget)
- {
- RaiseMessage("Export morph targets", 2);
-
- // Morph Target Manager
- var babylonMorphTargetManager = new BabylonMorphTargetManager(babylonMesh);
- babylonScene.MorphTargetManagersList.Add(babylonMorphTargetManager);
- babylonMesh.morphTargetManagerId = babylonMorphTargetManager.id;
-
- // Morph Targets
- var babylonMorphTargets = new List();
- // All morphers are considered identical
- // Their targets are concatenated
- morphers.ForEach(morpher =>
- {
- for (int i = 0; i < morpher.NumberOfMorphTargets; i++)
- {
- // Morph target
- var maxMorphTarget = morpher.GetMorphTarget(i);
-
- // Ensure target still exists (green color legend)
- if (maxMorphTarget != null)
- {
- var babylonMorphTarget = new BabylonMorphTarget
- {
- name = maxMorphTarget.Name
- };
- babylonMorphTargets.Add(babylonMorphTarget);
-
- // TODO - Influence
- babylonMorphTarget.influence = 0f;
-
- // Target geometry
- var targetVertices = ExtractVertices(babylonMesh, maxMorphTarget, optimizeVertices, faceIndexes);
- babylonMorphTarget.positions = targetVertices.SelectMany(v => new[] { v.Position.X, v.Position.Y, v.Position.Z }).ToArray();
-
- if (exportParameters.exportMorphNormals)
- {
- babylonMorphTarget.normals = targetVertices.SelectMany(v => new[] { v.Normal.X, v.Normal.Y, v.Normal.Z }).ToArray();
- }
-
- // Tangent
- if (exportParameters.exportTangents && exportParameters.exportMorphTangents)
- {
- babylonMorphTarget.tangents = targetVertices.SelectMany(v => v.Tangent).ToArray();
- }
-
- // Animations
- var animations = new List();
- var morphWeight = morpher.GetMorphWeight(i);
- ExportFloatGameController(morphWeight, "influence", animations);
- if (animations.Count > 0)
- {
- babylonMorphTarget.animations = animations.ToArray();
- }
- }
- }
- });
-
- babylonMorphTargetManager.targets = babylonMorphTargets.ToArray();
- }
- }
-
- // World Modifiers
- ExportWorldModifiers(meshNode, babylonScene, babylonMesh);
-
- // Animations
- // Done last to avoid '0 vertex found' error (unkown cause)
- exportAnimation(babylonMesh, meshNode);
-
- babylonScene.MeshesList.Add(babylonMesh);
-
- return babylonMesh;
- }
-
- private BabylonNode ExportInstanceMesh(IIGameScene scene, IIGameNode meshNode, BabylonScene babylonScene, BabylonMesh babylonMasterMesh)
- {
- meshNode.MaxNode.MarkAsInstance();
-
- var babylonInstanceMesh = new BabylonAbstractMesh
- {
- id = meshNode.MaxNode.GetGuid().ToString(),
- name = meshNode.Name,
- pickable = meshNode.MaxNode.GetBoolProperty("babylonjs_checkpickable"),
- checkCollisions = meshNode.MaxNode.GetBoolProperty("babylonjs_checkcollisions"),
- showBoundingBox = meshNode.MaxNode.GetBoolProperty("babylonjs_showboundingbox"),
- showSubMeshesBoundingBox = meshNode.MaxNode.GetBoolProperty("babylonjs_showsubmeshesboundingbox"),
- alphaIndex = (int)meshNode.MaxNode.GetFloatProperty("babylonjs_alphaindex", 1000)
- };
-
- // Physics
- var impostorText = meshNode.MaxNode.GetStringProperty("babylonjs_impostor", "None");
-
- if (impostorText != "None")
- {
- switch (impostorText)
- {
- case "Sphere":
- babylonInstanceMesh.physicsImpostor = 1;
- break;
- case "Box":
- babylonInstanceMesh.physicsImpostor = 2;
- break;
- case "Plane":
- babylonInstanceMesh.physicsImpostor = 3;
- break;
- default:
- babylonInstanceMesh.physicsImpostor = 0;
- break;
- }
-
- babylonInstanceMesh.physicsMass = meshNode.MaxNode.GetFloatProperty("babylonjs_mass");
- babylonInstanceMesh.physicsFriction = meshNode.MaxNode.GetFloatProperty("babylonjs_friction", 0.2f);
- babylonInstanceMesh.physicsRestitution = meshNode.MaxNode.GetFloatProperty("babylonjs_restitution", 0.2f);
- }
-
-
- // Add instance to master mesh
- List list = babylonMasterMesh.instances != null ? babylonMasterMesh.instances.ToList() : new List();
- list.Add(babylonInstanceMesh);
- babylonMasterMesh.instances = list.ToArray();
-
- // Export transform / hierarchy / animations
- exportNode(babylonInstanceMesh, meshNode, scene, babylonScene);
-
- // Animations
- exportAnimation(babylonInstanceMesh, meshNode);
-
- return babylonInstanceMesh;
- }
-
- private List ExtractVertices(BabylonAbstractMesh babylonAbstractMesh, IIGameNode maxMorphTarget, bool optimizeVertices, List faceIndexes)
- {
- var gameMesh = maxMorphTarget.IGameObject.AsGameMesh();
- bool initialized = gameMesh.InitializeData; // needed, the property is in fact a method initializing the exporter that has wrongly been auto
- // translated into a property because it has no parameters
-
- var mtl = maxMorphTarget.NodeMaterial;
- var multiMatsCount = 1;
-
- if (mtl != null)
- {
- multiMatsCount = Math.Max(mtl.SubMaterialCount, 1);
- }
-
- var invertedWorldMatrix = GetInvertWorldTM(maxMorphTarget, 0);
- var offsetTM = GetOffsetTM(maxMorphTarget, 0);
-
- var vertices = new List();
- ExtractGeometry(babylonAbstractMesh, vertices, new List(), new List(), null, null, gameMesh, invertedWorldMatrix, offsetTM, false, false, false, false, optimizeVertices, multiMatsCount, maxMorphTarget, ref faceIndexes);
- return vertices;
- }
-
- private void ExtractGeometry(BabylonAbstractMesh babylonAbstractMesh, List vertices, List indices, List subMeshes, List boneIds, IIGameSkin skin, IIGameMesh unskinnedMesh, IMatrix3 invertedWorldMatrix, IMatrix3 offsetTM, bool hasUV, bool hasUV2, bool hasColor, bool hasAlpha, bool optimizeVertices, int multiMatsCount, IIGameNode meshNode, ref List faceIndexes)
- {
- Dictionary> verticesAlreadyExported = null;
-
- if (optimizeVertices)
- {
- verticesAlreadyExported = new Dictionary>();
- }
-
- var indexStart = 0;
-
- // Whether or not to store order in which faces are exported
- // Storage is used when exporting Morph Targets geometry
- // To ensure face order is identical, especially with multimaterials involved
- bool storeFaceIndexes = faceIndexes == null;
- if (storeFaceIndexes)
- {
- faceIndexes = new List();
- }
- int indexInFaceIndexesArray = 0;
- for (int i = 0; i < multiMatsCount; ++i)
- {
- int materialId = i;
- var indexCount = 0;
- var minVertexIndex = int.MaxValue;
- var maxVertexIndex = int.MinValue;
- var subMesh = new BabylonSubMesh { indexStart = indexStart, materialIndex = i };
-
- if (multiMatsCount == 1)
- {
- for (int j = 0; j < unskinnedMesh.NumberOfFaces; ++j)
- {
- IFaceEx face = null;
- if (storeFaceIndexes)
- {
- face = unskinnedMesh.GetFace(j);
- // Store face index (j = face.MeshFaceIndex)
- faceIndexes.Add(j);
- }
- else
- {
- face = unskinnedMesh.GetFace(faceIndexes[indexInFaceIndexesArray++]);
- }
- ExtractFace(skin, unskinnedMesh, babylonAbstractMesh, invertedWorldMatrix, offsetTM, vertices, indices, hasUV, hasUV2, hasColor, hasAlpha, verticesAlreadyExported, ref indexCount, ref minVertexIndex, ref maxVertexIndex, face, boneIds);
- }
- }
- else
- {
- ITab materialFaces = unskinnedMesh.GetFacesFromMatID(materialId);
- for (int j = 0; j < materialFaces.Count; ++j)
- {
- IFaceEx face = null;
- if (storeFaceIndexes)
- {
- // Retreive face
-#if MAX2017 || MAX2018 || MAX2019 || MAX2020
- face = materialFaces[j];
-#else
- face = materialFaces[new IntPtr(j)];
-#endif
-
- // Store face index
- faceIndexes.Add(face.MeshFaceIndex);
- }
- else
- {
- face = unskinnedMesh.GetFace(faceIndexes[indexInFaceIndexesArray++]);
- }
- ExtractFace(skin, unskinnedMesh, babylonAbstractMesh, invertedWorldMatrix, offsetTM, vertices, indices, hasUV, hasUV2, hasColor, hasAlpha, verticesAlreadyExported, ref indexCount, ref minVertexIndex, ref maxVertexIndex, face, boneIds);
- }
- }
-
- if (indexCount != 0)
- {
-
- subMesh.indexCount = indexCount;
- subMesh.verticesStart = minVertexIndex;
- subMesh.verticesCount = maxVertexIndex - minVertexIndex + 1;
-
- indexStart += indexCount;
-
- subMeshes.Add(subMesh);
- }
- }
- }
-
- private void ExtractFace(IIGameSkin skin, IIGameMesh unskinnedMesh, BabylonAbstractMesh babylonAbstractMesh, IMatrix3 invertedWorldMatrix, IMatrix3 offsetTM, List vertices, List indices, bool hasUV, bool hasUV2, bool hasColor, bool hasAlpha, Dictionary>verticesAlreadyExported, ref int indexCount, ref int minVertexIndex, ref int maxVertexIndex, IFaceEx face, List boneIds)
- {
- int a, b, c;
- // parity is TRUE, if determinant negative ( counter-intuitive convention of 3ds max, see docs... :/ )
-
- // fix for cesium: currently, cesium does not expect a reversed winding order for negative scales
- //if (false)
-
- // for threejs and babylonjs (handle negative scales correctly (reversed winding order expected)
- if (invertedWorldMatrix.Parity)
- {
- // flipped case: reverse winding order
- a = CreateGlobalVertex(unskinnedMesh, babylonAbstractMesh, invertedWorldMatrix, offsetTM, face, 0, vertices, hasUV, hasUV2, hasColor, hasAlpha, verticesAlreadyExported, skin, boneIds);
- b = CreateGlobalVertex(unskinnedMesh, babylonAbstractMesh, invertedWorldMatrix, offsetTM, face, 1, vertices, hasUV, hasUV2, hasColor, hasAlpha, verticesAlreadyExported, skin, boneIds);
- c = CreateGlobalVertex(unskinnedMesh, babylonAbstractMesh, invertedWorldMatrix, offsetTM, face, 2, vertices, hasUV, hasUV2, hasColor, hasAlpha, verticesAlreadyExported, skin, boneIds);
- }
- else
- {
- // normal case
- a = CreateGlobalVertex(unskinnedMesh, babylonAbstractMesh, invertedWorldMatrix, offsetTM, face, 0, vertices, hasUV, hasUV2, hasColor, hasAlpha, verticesAlreadyExported, skin, boneIds);
- b = CreateGlobalVertex(unskinnedMesh, babylonAbstractMesh, invertedWorldMatrix, offsetTM, face, 2, vertices, hasUV, hasUV2, hasColor, hasAlpha, verticesAlreadyExported, skin, boneIds);
- c = CreateGlobalVertex(unskinnedMesh, babylonAbstractMesh, invertedWorldMatrix, offsetTM, face, 1, vertices, hasUV, hasUV2, hasColor, hasAlpha, verticesAlreadyExported, skin, boneIds);
- }
-
- indices.Add(a);
- indices.Add(b);
- indices.Add(c);
-
- if (a < minVertexIndex)
- {
- minVertexIndex = a;
- }
-
- if (b < minVertexIndex)
- {
- minVertexIndex = b;
- }
-
- if (c < minVertexIndex)
- {
- minVertexIndex = c;
- }
-
- if (a > maxVertexIndex)
- {
- maxVertexIndex = a;
- }
-
- if (b > maxVertexIndex)
- {
- maxVertexIndex = b;
- }
-
- if (c > maxVertexIndex)
- {
- maxVertexIndex = c;
- }
-
-
- indexCount += 3;
- CheckCancelled();
- }
-
-
- int CreateGlobalVertex(IIGameMesh mesh, BabylonAbstractMesh babylonAbstractMesh, IMatrix3 invertedWorldMatrix, IMatrix3 offsetTM, IFaceEx face, int facePart, List vertices, bool hasUV, bool hasUV2, bool hasColor, bool hasAlpha, Dictionary> verticesAlreadyExported, IIGameSkin skin, List boneIds)
- {
- var vertexIndex = (int)face.Vert[facePart];
-
- // Position can by retrieved in world space or object space
- // Unfortunately, this value can't be retrieved in local space
- var vertex = new GlobalVertex
- {
- BaseIndex = vertexIndex,
- Position = mesh.GetVertex(vertexIndex, true), // retrieve in object space to keep precision
- Normal = mesh.GetNormal((int)face.Norm[facePart], true) // object space (world space was somehow bugged for normal)
- };
- //System.Diagnostics.Debug.WriteLine("vertex normal: " + string.Join(", ", vertex.Normal.ToArray().Select(v => Math.Round(v, 3))));
-
-
- // convert from object to local/node space
- vertex.Position = offsetTM.PointTransform(vertex.Position);
-
- // normal (from object to local/node space)
- vertex.Normal = offsetTM.VectorTransform(vertex.Normal).Normalize;
-
- // tangent
- if (exportParameters.exportTangents)
- {
- int indexTangentBinormal = mesh.GetFaceVertexTangentBinormal(face.MeshFaceIndex, facePart, 1);
- IPoint3 normal = vertex.Normal.Normalize;
- IPoint3 tangent = mesh.GetTangent(indexTangentBinormal, 1).Normalize;
- IPoint3 bitangent = mesh.GetBinormal(indexTangentBinormal, 1).Normalize;
- int w = GetW(normal, tangent, bitangent);
- vertex.Tangent = new float[] { tangent.X, tangent.Y, tangent.Z, w };
- }
-
- if (hasUV)
- {
- var indices = new int[3];
- unsafe
- {
- fixed (int* indicesPtr = indices)
- {
- mesh.GetMapFaceIndex(1, face.MeshFaceIndex, new IntPtr(indicesPtr));
- }
- }
- var texCoord = mesh.GetMapVertex(1, indices[facePart]);
- vertex.UV = Loader.Global.Point2.Create(texCoord.X, -texCoord.Y);
- }
-
- if (hasUV2)
- {
- var indices = new int[3];
- unsafe
- {
- fixed (int* indicesPtr = indices)
- {
- mesh.GetMapFaceIndex(2, face.MeshFaceIndex, new IntPtr(indicesPtr));
- }
- }
- var texCoord = mesh.GetMapVertex(2, indices[facePart]);
- vertex.UV2 = Loader.Global.Point2.Create(texCoord.X, -texCoord.Y);
- }
-
- if (hasColor)
- {
- var vertexColorIndex = (int)face.Color[facePart];
- var vertexColor = mesh.GetColorVertex(vertexColorIndex);
- float alpha = 1;
- if (hasAlpha)
- {
- var indices = new int[3];
- unsafe
- {
- fixed (int* indicesPtr = indices)
- {
- mesh.GetMapFaceIndex(-2, face.MeshFaceIndex, new IntPtr(indicesPtr));
- }
- }
- var color = mesh.GetMapVertex(-2, indices[facePart]);
-
- alpha = color.X;
- }
-
- vertex.Color = new[] { vertexColor.X, vertexColor.Y, vertexColor.Z, alpha };
- }
-
- if (skin != null)
- {
- float[] weight = new float[4] { 0, 0, 0, 0 };
- int[] bone = new int[4] { 0, 0, 0, 0 };
- var nbBones = skin.GetNumberOfBones(vertexIndex);
-
- int currentVtxBone = 0;
- int currentSkinBone = 0;
-
- // process skin bones until we have 4 bones for this vertex or we run out of skin bones
- for (currentSkinBone = 0; currentSkinBone < nbBones && currentVtxBone < 4; ++currentSkinBone)
- {
- float boneWeight = skin.GetWeight(vertexIndex, currentSkinBone);
- if (boneWeight <= 0)
- continue;
-
- bone[currentVtxBone] = boneIds.IndexOf(skin.GetIGameBone(vertexIndex, currentSkinBone).NodeID);
- weight[currentVtxBone] = skin.GetWeight(vertexIndex, currentSkinBone);
- ++currentVtxBone;
- }
-
- // if we didnt have any bones with a weight > 0
- if (currentVtxBone == 0)
- {
- weight[0] = 1.0f;
- bone[0] = 0;
- }
-
- vertex.Weights = Loader.Global.Point4.Create(weight);
- vertex.BonesIndices = (bone[3] << 24) | (bone[2] << 16) | (bone[1] << 8) | bone[0];
-
- if (currentVtxBone >= 4 && currentSkinBone < nbBones)
- {
- weight = new float[4] { 0, 0, 0, 0 };
- bone = new int[4] { 0, 0, 0, 0 };
-
- // process remaining skin bones until we have a total of 8 bones for this vertex or we run out of skin bones
- for (; currentSkinBone < nbBones && currentVtxBone < 8; ++currentSkinBone)
- {
- float boneWeight = skin.GetWeight(vertexIndex, currentSkinBone);
- if (boneWeight <= 0)
- continue;
-
- if (isGltfExported)
- {
- RaiseError("Too many bone influences per vertex for vertexIndex: " + vertexIndex + ". glTF only supports up to 4 bone influences per vertex.", 2);
- break;
- }
-
- bone[currentVtxBone-4] = boneIds.IndexOf(skin.GetIGameBone(vertexIndex, currentSkinBone).NodeID);
- weight[currentVtxBone-4] = skin.GetWeight(vertexIndex, currentSkinBone);
- ++currentVtxBone;
- }
-
- // if we have any extra bone weights
- if (currentVtxBone > 4)
- {
- vertex.WeightsExtra = Loader.Global.Point4.Create(weight);
- vertex.BonesIndicesExtra = (bone[3] << 24) | (bone[2] << 16) | (bone[1] << 8) | bone[0];
-
- if (currentSkinBone < nbBones)
- {
- // if we have more skin bones left, this means we have used up all our bones for this vertex
- // check if any of the remaining bones has a weight > 0
- for (; currentSkinBone < nbBones; ++currentSkinBone)
- {
- float boneWeight = skin.GetWeight(vertexIndex, currentSkinBone);
- if (boneWeight <= 0)
- continue;
- RaiseError("Too many bone influences per vertex for vertexIndex: "+ vertexIndex + ". Babylon.js only supports up to 8 bone influences per vertex.", 2);
- break;
- }
- }
- }
- }
- }
-
- // if we are optmizing our exported vertices, check that a hash-equivalent vertex was already exported.
- if (verticesAlreadyExported != null)
- {
+using Autodesk.Max;
+using BabylonExport.Entities;
+using System;
+using System.Collections.Generic;
+using System.IO;
+using System.Linq;
+
+namespace Max2Babylon
+{
+ partial class BabylonExporter
+ {
+ private bool isMaterialDoubleSided;
+
+ private bool IsMeshExportable(IIGameNode meshNode)
+ {
+ return IsNodeExportable(meshNode);
+ }
+
+ private BabylonNode ExportDummy(IIGameScene scene, IIGameNode meshNode, BabylonScene babylonScene)
+ {
+ RaiseMessage(meshNode.Name, 1);
+
+ var babylonMesh = new BabylonMesh { name = meshNode.Name, id = meshNode.MaxNode.GetGuid().ToString() };
+ babylonMesh.isDummy = true;
+
+ // Position / rotation / scaling / hierarchy
+ exportNode(babylonMesh, meshNode, scene, babylonScene);
+
+ // Animations
+ exportAnimation(babylonMesh, meshNode);
+
+ babylonScene.MeshesList.Add(babylonMesh);
+
+ return babylonMesh;
+ }
+
+ private BabylonNode ExportMesh(IIGameScene scene, IIGameNode meshNode, BabylonScene babylonScene)
+ {
+ if (IsMeshExportable(meshNode) == false)
+ {
+ return null;
+ }
+
+ RaiseMessage(meshNode.Name, 1);
+
+ // Instances
+#if MAX2020
+ var tabs = Loader.Global.INodeTab.Create();
+#else
+ var tabs = Loader.Global.NodeTab.Create();
+#endif
+ Loader.Global.IInstanceMgr.InstanceMgr.GetInstances(meshNode.MaxNode, tabs);
+ if (tabs.Count > 1)
+ {
+ // For a mesh with instances, we distinguish between master and instance meshes:
+ // - a master mesh stores all the info of the mesh (transform, hierarchy, animations + vertices, indices, materials, bones...)
+ // - an instance mesh only stores the info of the node (transform, hierarchy, animations)
+
+ // Check if this mesh has already been exported
+ List babylonMasterMeshes = new List();
+ var index = 0;
+ while (index < tabs.Count)
+ {
+#if MAX2017 || MAX2018 || MAX2019 || MAX2020
+ var tab = tabs[index];
+#else
+ var tab = tabs[new IntPtr(index)];
+#endif
+
+ babylonMasterMeshes.AddRange(babylonScene.MeshesList.FindAll(_babylonMesh => {
+ // Same id
+ return _babylonMesh.id == tab.GetGuid().ToString() &&
+ // Mesh is not a dummy
+ _babylonMesh.isDummy == false;
+ }));
+
+ index++;
+ }
+
+ if (babylonMasterMeshes.Count > 0)
+ {
+ // Mesh already exported
+ // Export this node as instance
+
+ // Check if we need to export this instance as an instance mesh.
+ // If there is already an exported mesh in the scene that shares this mesh's material, then export it as an instance.
+ BabylonMesh babylonMasterMesh = null;
+ foreach (var mesh in babylonMasterMeshes)
+ {
+ if (mesh.materialId == null
+ || (meshNode.NodeMaterial != null && meshNode.NodeMaterial.MaxMaterial.GetGuid().ToString().Equals(mesh.materialId)))
+ {
+ babylonMasterMesh = mesh;
+ }
+ }
+
+ if (babylonMasterMesh != null)
+ {
+ return ExportInstanceMesh(scene, meshNode, babylonScene, babylonMasterMesh);
+ }
+
+ return ExportMasterMesh(scene, meshNode, babylonScene);
+ }
+ }
+
+ return ExportMasterMesh(scene, meshNode, babylonScene);
+ }
+
+ private BabylonNode ExportMasterMesh(IIGameScene scene, IIGameNode meshNode, BabylonScene babylonScene)
+ {
+ var gameMesh = meshNode.IGameObject.AsGameMesh();
+ try
+ {
+ bool initialized = gameMesh.InitializeData; // needed, the property is in fact a method initializing the exporter that has wrongly been auto
+ // translated into a property because it has no parameters
+ }
+ catch (Exception e)
+ {
+ RaiseWarning($"Mesh {meshNode.Name} failed to initialize. Mesh is exported as dummy.", 2);
+ return ExportDummy(scene, meshNode, babylonScene);
+ }
+
+ var babylonMesh = new BabylonMesh { name = meshNode.Name, id = meshNode.MaxNode.GetGuid().ToString() };
+
+ // Position / rotation / scaling / hierarchy
+ exportNode(babylonMesh, meshNode, scene, babylonScene);
+
+ // Export the custom attributes of this mesh
+ babylonMesh.metadata = ExportExtraAttributes(meshNode, babylonScene);
+
+ // Sounds
+ var soundName = meshNode.MaxNode.GetStringProperty("babylonjs_sound_filename", "");
+ if (!string.IsNullOrEmpty(soundName))
+ {
+ var filename = Path.GetFileName(soundName);
+
+ var meshSound = new BabylonSound
+ {
+ name = filename,
+ autoplay = meshNode.MaxNode.GetBoolProperty("babylonjs_sound_autoplay", 1),
+ loop = meshNode.MaxNode.GetBoolProperty("babylonjs_sound_loop", 1),
+ volume = meshNode.MaxNode.GetFloatProperty("babylonjs_sound_volume", 1.0f),
+ playbackRate = meshNode.MaxNode.GetFloatProperty("babylonjs_sound_playbackrate", 1.0f),
+ connectedMeshId = babylonMesh.id,
+ isDirectional = false,
+ spatialSound = false,
+ distanceModel = meshNode.MaxNode.GetStringProperty("babylonjs_sound_distancemodel", "linear"),
+ maxDistance = meshNode.MaxNode.GetFloatProperty("babylonjs_sound_maxdistance", 100f),
+ rolloffFactor = meshNode.MaxNode.GetFloatProperty("babylonjs_sound_rolloff", 1.0f),
+ refDistance = meshNode.MaxNode.GetFloatProperty("babylonjs_sound_refdistance", 1.0f),
+ };
+
+ var isDirectional = meshNode.MaxNode.GetBoolProperty("babylonjs_sound_directional");
+
+ if (isDirectional)
+ {
+ meshSound.isDirectional = true;
+ meshSound.coneInnerAngle = meshNode.MaxNode.GetFloatProperty("babylonjs_sound_coneinnerangle", 360f);
+ meshSound.coneOuterAngle = meshNode.MaxNode.GetFloatProperty("babylonjs_sound_coneouterangle", 360f);
+ meshSound.coneOuterGain = meshNode.MaxNode.GetFloatProperty("babylonjs_sound_coneoutergain", 1.0f);
+ }
+
+ babylonScene.SoundsList.Add(meshSound);
+
+ if (isBabylonExported)
+ {
+ try
+ {
+ File.Copy(soundName, Path.Combine(babylonScene.OutputPath, filename), true);
+ }
+ catch
+ {
+ }
+ }
+ }
+
+ // Misc.
+#if MAX2017 || MAX2018 || MAX2019 || MAX2020
+ babylonMesh.isVisible = meshNode.MaxNode.Renderable;
+ babylonMesh.receiveShadows = meshNode.MaxNode.RcvShadows;
+ babylonMesh.applyFog = meshNode.MaxNode.ApplyAtmospherics;
+#else
+ babylonMesh.isVisible = meshNode.MaxNode.Renderable == 1;
+ babylonMesh.receiveShadows = meshNode.MaxNode.RcvShadows == 1;
+ babylonMesh.applyFog = meshNode.MaxNode.ApplyAtmospherics == 1;
+#endif
+ babylonMesh.pickable = meshNode.MaxNode.GetBoolProperty("babylonjs_checkpickable");
+ babylonMesh.showBoundingBox = meshNode.MaxNode.GetBoolProperty("babylonjs_showboundingbox");
+ babylonMesh.showSubMeshesBoundingBox = meshNode.MaxNode.GetBoolProperty("babylonjs_showsubmeshesboundingbox");
+ babylonMesh.alphaIndex = (int)meshNode.MaxNode.GetFloatProperty("babylonjs_alphaindex", 1000);
+
+ // Collisions
+ babylonMesh.checkCollisions = meshNode.MaxNode.GetBoolProperty("babylonjs_checkcollisions");
+
+ // Skin
+ var isSkinned = gameMesh.IsObjectSkinned;
+ var skin = gameMesh.IGameSkin;
+ var unskinnedMesh = gameMesh;
+ IGMatrix skinInitPoseMatrix = Loader.Global.GMatrix.Create(Loader.Global.Matrix3.Create(true));
+ List boneIds = null;
+ int maxNbBones = 0;
+ List skinnedBones = GetSkinnedBones(skin);
+ if (isSkinned && skinnedBones.Count > 0) // if the mesh has a skin with at least one bone
+ {
+ var skinAlreadyStored = skins.Find(_skin => IsSkinEqualTo(_skin, skin));
+ if (skinAlreadyStored == null)
+ {
+ skins.Add(skin);
+ babylonMesh.skeletonId = skins.IndexOf(skin);
+ }
+ else
+ {
+ babylonMesh.skeletonId = skins.IndexOf(skinAlreadyStored);
+ }
+
+ skin.GetInitSkinTM(skinInitPoseMatrix);
+ boneIds = GetNodeIndices(skin);
+ }
+ else
+ {
+ skin = null;
+ }
+
+ // Mesh
+
+ if (unskinnedMesh.IGameType == Autodesk.Max.IGameObject.ObjectTypes.Mesh && unskinnedMesh.MaxMesh != null)
+ {
+ if (unskinnedMesh.NumberOfFaces < 1)
+ {
+ RaiseError($"Mesh {babylonMesh.name} has no face", 2);
+ }
+
+ if (unskinnedMesh.NumberOfVerts < 3)
+ {
+ RaiseError($"Mesh {babylonMesh.name} has not enough vertices", 2);
+ }
+
+ if (unskinnedMesh.NumberOfVerts >= 65536)
+ {
+ RaiseWarning($"Mesh {babylonMesh.name} has tmore than 65536 vertices which means that it will require specific WebGL extension to be rendered. This may impact portability of your scene on low end devices.", 2);
+ }
+
+ if (skin != null)
+ {
+ for (var vertexIndex = 0; vertexIndex < unskinnedMesh.NumberOfVerts; vertexIndex++)
+ {
+ maxNbBones = Math.Max(maxNbBones, skin.GetNumberOfBones(vertexIndex));
+ }
+ }
+
+ // Physics
+ var impostorText = meshNode.MaxNode.GetStringProperty("babylonjs_impostor", "None");
+
+ if (impostorText != "None")
+ {
+ switch (impostorText)
+ {
+ case "Sphere":
+ babylonMesh.physicsImpostor = 1;
+ break;
+ case "Box":
+ babylonMesh.physicsImpostor = 2;
+ break;
+ case "Plane":
+ babylonMesh.physicsImpostor = 3;
+ break;
+ default:
+ babylonMesh.physicsImpostor = 0;
+ break;
+ }
+
+ babylonMesh.physicsMass = meshNode.MaxNode.GetFloatProperty("babylonjs_mass");
+ babylonMesh.physicsFriction = meshNode.MaxNode.GetFloatProperty("babylonjs_friction", 0.2f);
+ babylonMesh.physicsRestitution = meshNode.MaxNode.GetFloatProperty("babylonjs_restitution", 0.2f);
+ }
+
+ // Material
+ var mtl = meshNode.NodeMaterial;
+ var multiMatsCount = 1;
+
+ // The DirectXShader material is a passthrough to its render material.
+ // The shell material is a passthrough to its baked material.
+ while (mtl != null && (isShellMaterial(mtl) || isDirectXShaderMaterial(mtl)))
+ {
+ if (isShellMaterial(mtl))
+ {
+ // Retrieve the baked material from the shell material.
+ mtl = GetBakedMaterialFromShellMaterial(mtl);
+ }
+ else // isDirectXShaderMaterial(mtl)
+ {
+ // Retrieve the render material from the directX shader
+ mtl = GetRenderMaterialFromDirectXShader(mtl);
+ }
+ }
+
+ isMaterialDoubleSided = false;
+ if (mtl != null)
+ {
+ IIGameMaterial unsupportedMaterial = isMaterialSupported(mtl);
+ if (unsupportedMaterial == null)
+ {
+ babylonMesh.materialId = mtl.MaxMaterial.GetGuid().ToString();
+
+ if (!referencedMaterials.Contains(mtl))
+ {
+ referencedMaterials.Add(mtl);
+ }
+
+ multiMatsCount = Math.Max(mtl.SubMaterialCount, 1);
+
+ if (isDoubleSidedMaterial(mtl))
+ {
+ isMaterialDoubleSided = true;
+ }
+ }
+ else
+ {
+ if (mtl.SubMaterialCount == 0 || mtl == unsupportedMaterial)
+ {
+ RaiseWarning("Unsupported material type '" + unsupportedMaterial.MaterialClass + "'. Material is ignored.", 2);
+ }
+ else
+ {
+ RaiseWarning("Unsupported sub-material type '" + unsupportedMaterial.MaterialClass + "'. Material is ignored.", 2);
+ }
+ }
+ }
+
+ babylonMesh.visibility = meshNode.MaxNode.GetVisibility(0, Tools.Forever);
+
+ var vertices = new List();
+ var indices = new List();
+ var mappingChannels = unskinnedMesh.ActiveMapChannelNum;
+ bool hasUV = false;
+ bool hasUV2 = false;
+ for (int i = 0; i < mappingChannels.Count; ++i)
+ {
+#if MAX2017 || MAX2018 || MAX2019 || MAX2020
+ var channelNum = mappingChannels[i];
+#else
+ var channelNum = mappingChannels[new IntPtr(i)];
+#endif
+ if (channelNum == 1)
+ {
+ hasUV = true;
+ }
+ else if (channelNum == 2)
+ {
+ hasUV2 = true;
+ }
+ }
+ var hasColor = unskinnedMesh.NumberOfColorVerts > 0;
+ var hasAlpha = unskinnedMesh.GetNumberOfMapVerts(-2) > 0;
+
+ var optimizeVertices = meshNode.MaxNode.GetBoolProperty("babylonjs_optimizevertices");
+
+ var invertedWorldMatrix = GetInvertWorldTM(meshNode, 0);
+ var offsetTM = GetOffsetTM(meshNode, 0);
+
+ // Compute normals
+ var subMeshes = new List();
+ List faceIndexes = null;
+ ExtractGeometry(babylonMesh, vertices, indices, subMeshes, boneIds, skin, unskinnedMesh, invertedWorldMatrix, offsetTM, hasUV, hasUV2, hasColor, hasAlpha, optimizeVertices, multiMatsCount, meshNode, ref faceIndexes);
+
+ if (vertices.Count >= 65536)
+ {
+ RaiseWarning($"Mesh {babylonMesh.name} has {vertices.Count} vertices. This may prevent your scene to work on low end devices where 32 bits indice are not supported", 2);
+
+ if (!optimizeVertices)
+ {
+ RaiseError("You can try to optimize your object using [Try to optimize vertices] option", 2);
+ }
+ }
+
+ RaiseMessage($"{vertices.Count} vertices, {indices.Count / 3} faces", 2);
+
+ // Buffers
+ babylonMesh.positions = vertices.SelectMany(v => new[] { v.Position.X, v.Position.Y, v.Position.Z }).ToArray();
+ babylonMesh.normals = vertices.SelectMany(v => new[] { v.Normal.X, v.Normal.Y, v.Normal.Z }).ToArray();
+
+ // Export tangents if option is checked and mesh has tangents
+ if (exportParameters.exportTangents)
+ {
+ babylonMesh.tangents = vertices.SelectMany(v => v.Tangent).ToArray();
+ }
+
+ if (hasUV)
+ {
+ babylonMesh.uvs = vertices.SelectMany(v => new[] { v.UV.X, 1 - v.UV.Y }).ToArray();
+ }
+ if (hasUV2)
+ {
+ babylonMesh.uvs2 = vertices.SelectMany(v => new[] { v.UV2.X, 1 - v.UV2.Y }).ToArray();
+ }
+
+ if (skin != null)
+ {
+ babylonMesh.matricesWeights = vertices.SelectMany(v => v.Weights.ToArray()).ToArray();
+ babylonMesh.matricesIndices = vertices.Select(v => v.BonesIndices).ToArray();
+
+ babylonMesh.numBoneInfluencers = maxNbBones;
+ if (maxNbBones > 4)
+ {
+ babylonMesh.matricesWeightsExtra = vertices.SelectMany(v => v.WeightsExtra != null ? v.WeightsExtra.ToArray() : new[] { 0.0f, 0.0f, 0.0f, 0.0f }).ToArray();
+ babylonMesh.matricesIndicesExtra = vertices.Select(v => v.BonesIndicesExtra).ToArray();
+ }
+ }
+
+ if (hasColor)
+ {
+ babylonMesh.colors = vertices.SelectMany(v => v.Color.ToArray()).ToArray();
+ babylonMesh.hasVertexAlpha = hasAlpha;
+ }
+
+ babylonMesh.subMeshes = subMeshes.ToArray();
+
+ // Buffers - Indices
+ babylonMesh.indices = indices.ToArray();
+
+ // ------------------------
+ // ---- Morph targets -----
+ // ------------------------
+
+ // Retreive modifiers with morpher flag
+ List modifiers = new List();
+ for (int i = 0; i < meshNode.IGameObject.NumModifiers; i++)
+ {
+ var modifier = meshNode.IGameObject.GetIGameModifier(i);
+ if (modifier.ModifierType == Autodesk.Max.IGameModifier.ModType.Morpher)
+ {
+ modifiers.Add(modifier);
+ }
+ }
+
+ // Cast modifiers to morphers
+ List morphers = modifiers.ConvertAll(new Converter(modifier => modifier.AsGameMorpher()));
+
+ var hasMorphTarget = false;
+ morphers.ForEach(morpher =>
+ {
+ if (morpher.NumberOfMorphTargets > 0)
+ {
+ hasMorphTarget = true;
+ }
+ });
+
+ if (hasMorphTarget)
+ {
+ RaiseMessage("Export morph targets", 2);
+
+ // Morph Target Manager
+ var babylonMorphTargetManager = new BabylonMorphTargetManager(babylonMesh);
+ babylonScene.MorphTargetManagersList.Add(babylonMorphTargetManager);
+ babylonMesh.morphTargetManagerId = babylonMorphTargetManager.id;
+
+ // Morph Targets
+ var babylonMorphTargets = new List();
+ // All morphers are considered identical
+ // Their targets are concatenated
+ morphers.ForEach(morpher =>
+ {
+ for (int i = 0; i < morpher.NumberOfMorphTargets; i++)
+ {
+ // Morph target
+ var maxMorphTarget = morpher.GetMorphTarget(i);
+
+ // Ensure target still exists (green color legend)
+ if (maxMorphTarget != null)
+ {
+ var babylonMorphTarget = new BabylonMorphTarget
+ {
+ name = maxMorphTarget.Name
+ };
+ babylonMorphTargets.Add(babylonMorphTarget);
+
+ // TODO - Influence
+ babylonMorphTarget.influence = 0f;
+
+ // Target geometry
+ var targetVertices = ExtractVertices(babylonMesh, maxMorphTarget, optimizeVertices, faceIndexes);
+ babylonMorphTarget.positions = targetVertices.SelectMany(v => new[] { v.Position.X, v.Position.Y, v.Position.Z }).ToArray();
+
+ if (exportParameters.exportMorphNormals)
+ {
+ babylonMorphTarget.normals = targetVertices.SelectMany(v => new[] { v.Normal.X, v.Normal.Y, v.Normal.Z }).ToArray();
+ }
+
+ // Tangent
+ if (exportParameters.exportTangents && exportParameters.exportMorphTangents)
+ {
+ babylonMorphTarget.tangents = targetVertices.SelectMany(v => v.Tangent).ToArray();
+ }
+
+ // Animations
+ var animations = new List();
+ var morphWeight = morpher.GetMorphWeight(i);
+ ExportFloatGameController(morphWeight, "influence", animations);
+ if (animations.Count > 0)
+ {
+ babylonMorphTarget.animations = animations.ToArray();
+ }
+ }
+ }
+ });
+
+ babylonMorphTargetManager.targets = babylonMorphTargets.ToArray();
+ }
+ }
+
+ // World Modifiers
+ ExportWorldModifiers(meshNode, babylonScene, babylonMesh);
+
+ // Animations
+ // Done last to avoid '0 vertex found' error (unkown cause)
+ exportAnimation(babylonMesh, meshNode);
+
+ babylonScene.MeshesList.Add(babylonMesh);
+
+ return babylonMesh;
+ }
+
+ private BabylonNode ExportInstanceMesh(IIGameScene scene, IIGameNode meshNode, BabylonScene babylonScene, BabylonMesh babylonMasterMesh)
+ {
+ meshNode.MaxNode.MarkAsInstance();
+
+ var babylonInstanceMesh = new BabylonAbstractMesh
+ {
+ id = meshNode.MaxNode.GetGuid().ToString(),
+ name = meshNode.Name,
+ pickable = meshNode.MaxNode.GetBoolProperty("babylonjs_checkpickable"),
+ checkCollisions = meshNode.MaxNode.GetBoolProperty("babylonjs_checkcollisions"),
+ showBoundingBox = meshNode.MaxNode.GetBoolProperty("babylonjs_showboundingbox"),
+ showSubMeshesBoundingBox = meshNode.MaxNode.GetBoolProperty("babylonjs_showsubmeshesboundingbox"),
+ alphaIndex = (int)meshNode.MaxNode.GetFloatProperty("babylonjs_alphaindex", 1000)
+ };
+
+ // Export the custom attributes of this mesh
+ babylonInstanceMesh.metadata = ExportExtraAttributes(meshNode, babylonScene);
+
+ // Physics
+ var impostorText = meshNode.MaxNode.GetStringProperty("babylonjs_impostor", "None");
+
+ if (impostorText != "None")
+ {
+ switch (impostorText)
+ {
+ case "Sphere":
+ babylonInstanceMesh.physicsImpostor = 1;
+ break;
+ case "Box":
+ babylonInstanceMesh.physicsImpostor = 2;
+ break;
+ case "Plane":
+ babylonInstanceMesh.physicsImpostor = 3;
+ break;
+ default:
+ babylonInstanceMesh.physicsImpostor = 0;
+ break;
+ }
+
+ babylonInstanceMesh.physicsMass = meshNode.MaxNode.GetFloatProperty("babylonjs_mass");
+ babylonInstanceMesh.physicsFriction = meshNode.MaxNode.GetFloatProperty("babylonjs_friction", 0.2f);
+ babylonInstanceMesh.physicsRestitution = meshNode.MaxNode.GetFloatProperty("babylonjs_restitution", 0.2f);
+ }
+
+
+ // Add instance to master mesh
+ List list = babylonMasterMesh.instances != null ? babylonMasterMesh.instances.ToList() : new List();
+ list.Add(babylonInstanceMesh);
+ babylonMasterMesh.instances = list.ToArray();
+
+ // Export transform / hierarchy / animations
+ exportNode(babylonInstanceMesh, meshNode, scene, babylonScene);
+
+ // Animations
+ exportAnimation(babylonInstanceMesh, meshNode);
+
+ return babylonInstanceMesh;
+ }
+
+ private List ExtractVertices(BabylonAbstractMesh babylonAbstractMesh, IIGameNode maxMorphTarget, bool optimizeVertices, List faceIndexes)
+ {
+ var gameMesh = maxMorphTarget.IGameObject.AsGameMesh();
+ bool initialized = gameMesh.InitializeData; // needed, the property is in fact a method initializing the exporter that has wrongly been auto
+ // translated into a property because it has no parameters
+
+ var mtl = maxMorphTarget.NodeMaterial;
+ var multiMatsCount = 1;
+
+ if (mtl != null)
+ {
+ multiMatsCount = Math.Max(mtl.SubMaterialCount, 1);
+ }
+
+ var invertedWorldMatrix = GetInvertWorldTM(maxMorphTarget, 0);
+ var offsetTM = GetOffsetTM(maxMorphTarget, 0);
+
+ var vertices = new List();
+ ExtractGeometry(babylonAbstractMesh, vertices, new List(), new List(), null, null, gameMesh, invertedWorldMatrix, offsetTM, false, false, false, false, optimizeVertices, multiMatsCount, maxMorphTarget, ref faceIndexes);
+ return vertices;
+ }
+
+ private void ExtractGeometry(BabylonAbstractMesh babylonAbstractMesh, List vertices, List indices, List subMeshes, List boneIds, IIGameSkin skin, IIGameMesh unskinnedMesh, IMatrix3 invertedWorldMatrix, IMatrix3 offsetTM, bool hasUV, bool hasUV2, bool hasColor, bool hasAlpha, bool optimizeVertices, int multiMatsCount, IIGameNode meshNode, ref List faceIndexes)
+ {
+ Dictionary> verticesAlreadyExported = null;
+
+ if (optimizeVertices)
+ {
+ verticesAlreadyExported = new Dictionary>();
+ }
+
+ var indexStart = 0;
+
+ // Whether or not to store order in which faces are exported
+ // Storage is used when exporting Morph Targets geometry
+ // To ensure face order is identical, especially with multimaterials involved
+ bool storeFaceIndexes = faceIndexes == null;
+ if (storeFaceIndexes)
+ {
+ faceIndexes = new List();
+ }
+ int indexInFaceIndexesArray = 0;
+ for (int i = 0; i < multiMatsCount; ++i)
+ {
+ int materialId = i;
+ var indexCount = 0;
+ var minVertexIndex = int.MaxValue;
+ var maxVertexIndex = int.MinValue;
+ var subMesh = new BabylonSubMesh { indexStart = indexStart, materialIndex = i };
+
+ if (multiMatsCount == 1)
+ {
+ for (int j = 0; j < unskinnedMesh.NumberOfFaces; ++j)
+ {
+ IFaceEx face = null;
+ if (storeFaceIndexes)
+ {
+ face = unskinnedMesh.GetFace(j);
+ // Store face index (j = face.MeshFaceIndex)
+ faceIndexes.Add(j);
+ }
+ else
+ {
+ face = unskinnedMesh.GetFace(faceIndexes[indexInFaceIndexesArray++]);
+ }
+ ExtractFace(skin, unskinnedMesh, babylonAbstractMesh, invertedWorldMatrix, offsetTM, vertices, indices, hasUV, hasUV2, hasColor, hasAlpha, verticesAlreadyExported, ref indexCount, ref minVertexIndex, ref maxVertexIndex, face, boneIds);
+ }
+ }
+ else
+ {
+ if (i == 0 || isMaterialDoubleSided == false)
+ {
+ ITab materialFaces = unskinnedMesh.GetFacesFromMatID(materialId);
+ for (int j = 0; j < materialFaces.Count; ++j)
+ {
+ IFaceEx face = null;
+ if (storeFaceIndexes)
+ {
+ // Retreive face
+#if MAX2017 || MAX2018 || MAX2019 || MAX2020
+ face = materialFaces[j];
+#else
+ face = materialFaces[new IntPtr(j)];
+#endif
+
+ // Store face index
+ faceIndexes.Add(face.MeshFaceIndex);
+ }
+ else
+ {
+ face = unskinnedMesh.GetFace(faceIndexes[indexInFaceIndexesArray++]);
+ }
+ ExtractFace(skin, unskinnedMesh, babylonAbstractMesh, invertedWorldMatrix, offsetTM, vertices, indices, hasUV, hasUV2, hasColor, hasAlpha, verticesAlreadyExported, ref indexCount, ref minVertexIndex, ref maxVertexIndex, face, boneIds);
+ }
+ }
+ else
+ {
+ // It's a double sided material
+ // The back faces are created at runtime
+
+ // WARNING - Nested multimaterial and double sided material are not supported
+
+ minVertexIndex = vertices.Count;
+ maxVertexIndex = vertices.Count * 2 - 1;
+
+ // Vertices
+ int nbVertices = vertices.Count;
+ for (int index = 0; index < nbVertices; index++)
+ {
+ GlobalVertex vertexOrg = vertices[index];
+
+ // Duplicate vertex
+ GlobalVertex vertexNew = new GlobalVertex(vertexOrg);
+
+ // Inverse back vertices normal
+ vertexNew.Normal = vertexNew.Normal.MultiplyBy(-1);
+ vertexNew.Tangent = vertexNew.Tangent.MultiplyBy(-1);
+
+ vertices.Add(vertexNew);
+ }
+
+ // Faces
+ int nbIndices = indices.Count;
+ for (int index = 0; index < nbIndices; index += 3)
+ {
+ // Duplicate and flip faces
+ indices.Add(indices[index + 2] + nbIndices);
+ indices.Add(indices[index + 1] + nbIndices);
+ indices.Add(indices[index] + nbIndices);
+
+ indexCount += 3;
+ }
+ }
+ }
+
+ if (indexCount != 0)
+ {
+
+ subMesh.indexCount = indexCount;
+ subMesh.verticesStart = minVertexIndex;
+ subMesh.verticesCount = maxVertexIndex - minVertexIndex + 1;
+
+ indexStart += indexCount;
+
+ subMeshes.Add(subMesh);
+ }
+ }
+ }
+
+ private void ExtractFace(IIGameSkin skin, IIGameMesh unskinnedMesh, BabylonAbstractMesh babylonAbstractMesh, IMatrix3 invertedWorldMatrix, IMatrix3 offsetTM, List vertices, List indices, bool hasUV, bool hasUV2, bool hasColor, bool hasAlpha, Dictionary> verticesAlreadyExported, ref int indexCount, ref int minVertexIndex, ref int maxVertexIndex, IFaceEx face, List boneIds)
+ {
+ int a, b, c;
+ // parity is TRUE, if determinant negative ( counter-intuitive convention of 3ds max, see docs... :/ )
+
+ // fix for cesium: currently, cesium does not expect a reversed winding order for negative scales
+ //if (false)
+
+ // for threejs and babylonjs (handle negative scales correctly (reversed winding order expected)
+ if (invertedWorldMatrix.Parity)
+ {
+ // flipped case: reverse winding order
+ a = CreateGlobalVertex(unskinnedMesh, babylonAbstractMesh, invertedWorldMatrix, offsetTM, face, 0, vertices, hasUV, hasUV2, hasColor, hasAlpha, verticesAlreadyExported, skin, boneIds);
+ b = CreateGlobalVertex(unskinnedMesh, babylonAbstractMesh, invertedWorldMatrix, offsetTM, face, 1, vertices, hasUV, hasUV2, hasColor, hasAlpha, verticesAlreadyExported, skin, boneIds);
+ c = CreateGlobalVertex(unskinnedMesh, babylonAbstractMesh, invertedWorldMatrix, offsetTM, face, 2, vertices, hasUV, hasUV2, hasColor, hasAlpha, verticesAlreadyExported, skin, boneIds);
+ }
+ else
+ {
+ // normal case
+ a = CreateGlobalVertex(unskinnedMesh, babylonAbstractMesh, invertedWorldMatrix, offsetTM, face, 0, vertices, hasUV, hasUV2, hasColor, hasAlpha, verticesAlreadyExported, skin, boneIds);
+ b = CreateGlobalVertex(unskinnedMesh, babylonAbstractMesh, invertedWorldMatrix, offsetTM, face, 2, vertices, hasUV, hasUV2, hasColor, hasAlpha, verticesAlreadyExported, skin, boneIds);
+ c = CreateGlobalVertex(unskinnedMesh, babylonAbstractMesh, invertedWorldMatrix, offsetTM, face, 1, vertices, hasUV, hasUV2, hasColor, hasAlpha, verticesAlreadyExported, skin, boneIds);
+ }
+
+ indices.Add(a);
+ indices.Add(b);
+ indices.Add(c);
+
+ if (a < minVertexIndex)
+ {
+ minVertexIndex = a;
+ }
+
+ if (b < minVertexIndex)
+ {
+ minVertexIndex = b;
+ }
+
+ if (c < minVertexIndex)
+ {
+ minVertexIndex = c;
+ }
+
+ if (a > maxVertexIndex)
+ {
+ maxVertexIndex = a;
+ }
+
+ if (b > maxVertexIndex)
+ {
+ maxVertexIndex = b;
+ }
+
+ if (c > maxVertexIndex)
+ {
+ maxVertexIndex = c;
+ }
+
+
+ indexCount += 3;
+ CheckCancelled();
+ }
+
+
+ int CreateGlobalVertex(IIGameMesh mesh, BabylonAbstractMesh babylonAbstractMesh, IMatrix3 invertedWorldMatrix, IMatrix3 offsetTM, IFaceEx face, int facePart, List vertices, bool hasUV, bool hasUV2, bool hasColor, bool hasAlpha, Dictionary> verticesAlreadyExported, IIGameSkin skin, List boneIds)
+ {
+ var vertexIndex = (int)face.Vert[facePart];
+
+ // Position can by retrieved in world space or object space
+ // Unfortunately, this value can't be retrieved in local space
+ var vertex = new GlobalVertex
+ {
+ BaseIndex = vertexIndex,
+ Position = mesh.GetVertex(vertexIndex, true), // retrieve in object space to keep precision
+ Normal = mesh.GetNormal((int)face.Norm[facePart], true) // object space (world space was somehow bugged for normal)
+ };
+ //System.Diagnostics.Debug.WriteLine("vertex normal: " + string.Join(", ", vertex.Normal.ToArray().Select(v => Math.Round(v, 3))));
+
+
+ // convert from object to local/node space
+ vertex.Position = offsetTM.PointTransform(vertex.Position);
+
+ // normal (from object to local/node space)
+ vertex.Normal = offsetTM.VectorTransform(vertex.Normal).Normalize;
+
+ // tangent
+ if (exportParameters.exportTangents)
+ {
+ int indexTangentBinormal = mesh.GetFaceVertexTangentBinormal(face.MeshFaceIndex, facePart, 1);
+ IPoint3 normal = vertex.Normal.Normalize;
+ IPoint3 tangent = mesh.GetTangent(indexTangentBinormal, 1).Normalize;
+ IPoint3 bitangent = mesh.GetBinormal(indexTangentBinormal, 1).Normalize;
+ int w = GetW(normal, tangent, bitangent);
+ vertex.Tangent = new float[] { tangent.X, tangent.Y, tangent.Z, w };
+ }
+
+ if (hasUV)
+ {
+ var indices = new int[3];
+ unsafe
+ {
+ fixed (int* indicesPtr = indices)
+ {
+ mesh.GetMapFaceIndex(1, face.MeshFaceIndex, new IntPtr(indicesPtr));
+ }
+ }
+ var texCoord = mesh.GetMapVertex(1, indices[facePart]);
+ vertex.UV = Loader.Global.Point2.Create(texCoord.X, -texCoord.Y);
+ }
+
+ if (hasUV2)
+ {
+ var indices = new int[3];
+ unsafe
+ {
+ fixed (int* indicesPtr = indices)
+ {
+ mesh.GetMapFaceIndex(2, face.MeshFaceIndex, new IntPtr(indicesPtr));
+ }
+ }
+ var texCoord = mesh.GetMapVertex(2, indices[facePart]);
+ vertex.UV2 = Loader.Global.Point2.Create(texCoord.X, -texCoord.Y);
+ }
+
+ if (hasColor)
+ {
+ var vertexColorIndex = (int)face.Color[facePart];
+ var vertexColor = mesh.GetColorVertex(vertexColorIndex);
+ float alpha = 1;
+ if (hasAlpha)
+ {
+ var indices = new int[3];
+ unsafe
+ {
+ fixed (int* indicesPtr = indices)
+ {
+ mesh.GetMapFaceIndex(-2, face.MeshFaceIndex, new IntPtr(indicesPtr));
+ }
+ }
+ var color = mesh.GetMapVertex(-2, indices[facePart]);
+
+ alpha = color.X;
+ }
+
+ vertex.Color = new[] { vertexColor.X, vertexColor.Y, vertexColor.Z, alpha };
+ }
+
+ if (skin != null)
+ {
+ float[] weight = new float[4] { 0, 0, 0, 0 };
+ int[] bone = new int[4] { 0, 0, 0, 0 };
+ var nbBones = skin.GetNumberOfBones(vertexIndex);
+
+ int currentVtxBone = 0;
+ int currentSkinBone = 0;
+
+ // process skin bones until we have 4 bones for this vertex or we run out of skin bones
+ for (currentSkinBone = 0; currentSkinBone < nbBones && currentVtxBone < 4; ++currentSkinBone)
+ {
+ float boneWeight = skin.GetWeight(vertexIndex, currentSkinBone);
+ if (boneWeight <= 0)
+ continue;
+
+ bone[currentVtxBone] = boneIds.IndexOf(skin.GetIGameBone(vertexIndex, currentSkinBone).NodeID);
+ weight[currentVtxBone] = skin.GetWeight(vertexIndex, currentSkinBone);
+ ++currentVtxBone;
+ }
+
+ // if we didnt have any bones with a weight > 0
+ if (currentVtxBone == 0)
+ {
+ weight[0] = 1.0f;
+ bone[0] = 0;
+ }
+
+ vertex.Weights = Loader.Global.Point4.Create(weight);
+ vertex.BonesIndices = (bone[3] << 24) | (bone[2] << 16) | (bone[1] << 8) | bone[0];
+
+ if (currentVtxBone >= 4 && currentSkinBone < nbBones)
+ {
+ weight = new float[4] { 0, 0, 0, 0 };
+ bone = new int[4] { 0, 0, 0, 0 };
+
+ // process remaining skin bones until we have a total of 8 bones for this vertex or we run out of skin bones
+ for (; currentSkinBone < nbBones && currentVtxBone < 8; ++currentSkinBone)
+ {
+ float boneWeight = skin.GetWeight(vertexIndex, currentSkinBone);
+ if (boneWeight <= 0)
+ continue;
+
+ if (isGltfExported)
+ {
+ RaiseError("Too many bone influences per vertex for vertexIndex: " + vertexIndex + ". glTF only supports up to 4 bone influences per vertex.", 2);
+ break;
+ }
+
+ bone[currentVtxBone - 4] = boneIds.IndexOf(skin.GetIGameBone(vertexIndex, currentSkinBone).NodeID);
+ weight[currentVtxBone - 4] = skin.GetWeight(vertexIndex, currentSkinBone);
+ ++currentVtxBone;
+ }
+
+ // if we have any extra bone weights
+ if (currentVtxBone > 4)
+ {
+ vertex.WeightsExtra = Loader.Global.Point4.Create(weight);
+ vertex.BonesIndicesExtra = (bone[3] << 24) | (bone[2] << 16) | (bone[1] << 8) | bone[0];
+
+ if (currentSkinBone < nbBones)
+ {
+ // if we have more skin bones left, this means we have used up all our bones for this vertex
+ // check if any of the remaining bones has a weight > 0
+ for (; currentSkinBone < nbBones; ++currentSkinBone)
+ {
+ float boneWeight = skin.GetWeight(vertexIndex, currentSkinBone);
+ if (boneWeight <= 0)
+ continue;
+ RaiseError("Too many bone influences per vertex for vertexIndex: " + vertexIndex + ". Babylon.js only supports up to 8 bone influences per vertex.", 2);
+ break;
+ }
+ }
+ }
+ }
+ }
+
+ // if we are optmizing our exported vertices, check that a hash-equivalent vertex was already exported.
+ if (verticesAlreadyExported != null)
+ {
if (verticesAlreadyExported.ContainsKey(vertex))
{
verticesAlreadyExported[vertex].Add(vertex);
return verticesAlreadyExported[vertex].ElementAt(0).CurrentIndex;
- }
- else
- {
- verticesAlreadyExported[vertex] = new List();
- var modifiedVertex = new GlobalVertex(vertex);
- modifiedVertex.CurrentIndex = vertices.Count;
- verticesAlreadyExported[vertex].Add(modifiedVertex);
- vertex = modifiedVertex;
- }
- }
-
- vertices.Add(vertex);
-
- return vertices.Count -1;
- }
-
- private void exportNode(BabylonAbstractMesh babylonAbstractMesh, IIGameNode maxGameNode, IIGameScene maxGameScene, BabylonScene babylonScene)
- {
- // Position / rotation / scaling
- exportTransform(babylonAbstractMesh, maxGameNode);
-
- // Hierarchy
- if (maxGameNode.NodeParent != null)
- {
- babylonAbstractMesh.parentId = maxGameNode.NodeParent.MaxNode.GetGuid().ToString();
- }
- }
-
- private void exportTransform(BabylonNode babylonAbstractMesh, IIGameNode maxGameNode)
- {
- // Position / rotation / scaling
- var localTM = maxGameNode.GetLocalTM(0);
-
- // use babylon decomposition, as 3ds max built-in values are no correct
- var tm_babylon = new BabylonMatrix();
- tm_babylon.m = localTM.ToArray();
-
- var s_babylon = new BabylonVector3();
- var q_babylon = new BabylonQuaternion();
- var t_babylon = new BabylonVector3();
-
- tm_babylon.decompose(s_babylon, q_babylon, t_babylon);
-
- if (ExportQuaternionsInsteadOfEulers)
- {
- // normalize quaternion
- var q = q_babylon;
- float q_length = (float)Math.Sqrt(q.X * q.X + q.Y * q.Y + q.Z * q.Z + q.W * q.W);
- babylonAbstractMesh.rotationQuaternion = new[] { q_babylon.X / q_length, q_babylon.Y / q_length, q_babylon.Z / q_length, q_babylon.W / q_length };
- }
- else
- {
- babylonAbstractMesh.rotation = q_babylon.toEulerAngles().ToArray();
- }
- babylonAbstractMesh.scaling = new[] { s_babylon.X, s_babylon.Y, s_babylon.Z };
- babylonAbstractMesh.position = new[] { t_babylon.X, t_babylon.Y, t_babylon.Z };
- }
-
- private void exportAnimation(BabylonNode babylonNode, IIGameNode maxGameNode)
- {
- var animations = new List();
-
- GenerateCoordinatesAnimations(maxGameNode, animations);
-
- if (!ExportFloatController(maxGameNode.MaxNode.VisController, "visibility", animations))
- {
- ExportFloatAnimation("visibility", animations, key => new[] { maxGameNode.MaxNode.GetVisibility(key, Tools.Forever) });
- }
-
- babylonNode.animations = animations.ToArray();
-
- if (maxGameNode.MaxNode.GetBoolProperty("babylonjs_autoanimate", 1))
- {
- babylonNode.autoAnimate = true;
- babylonNode.autoAnimateFrom = (int)maxGameNode.MaxNode.GetFloatProperty("babylonjs_autoanimate_from");
- babylonNode.autoAnimateTo = (int)maxGameNode.MaxNode.GetFloatProperty("babylonjs_autoanimate_to", 100);
- babylonNode.autoAnimateLoop = maxGameNode.MaxNode.GetBoolProperty("babylonjs_autoanimateloop", 1);
- }
- }
-
- public void GenerateCoordinatesAnimations(IIGameNode meshNode, List animations)
- {
- GeneratePositionAnimation(meshNode, animations);
- GenerateRotationAnimation(meshNode, animations);
- GenerateScalingAnimation(meshNode, animations);
- }
-
- ///
- /// get the w of the tangent
- ///
- ///
- ///
- ///
- ///
- /// -1 when the normal is not flipped
- /// 1 when the normal is flipped
- ///
- private int GetW(IPoint3 normal, IPoint3 tangent, IPoint3 bitangent)
- {
- //Cross product bitangent = w * normal ^ tangent
- float x = normal.Y * tangent.Z - normal.Z * tangent.Y;
- float y = normal.Z * tangent.X - normal.X * tangent.Z;
- float z = normal.X * tangent.Y - normal.Y * tangent.X;
-
- int w = Math.Sign(bitangent.X * x);
- if (w == 0)
- {
- w = Math.Sign(bitangent.Y * y);
- }
- if (w == 0)
- {
- w = Math.Sign(bitangent.Z * z);
- }
-
- return w;
- }
-
- }
-}
+ }
+ else
+ {
+ verticesAlreadyExported[vertex] = new List();
+ var modifiedVertex = new GlobalVertex(vertex);
+ modifiedVertex.CurrentIndex = vertices.Count;
+ verticesAlreadyExported[vertex].Add(modifiedVertex);
+ vertex = modifiedVertex;
+ }
+ }
+
+ vertices.Add(vertex);
+
+ return vertices.Count - 1;
+ }
+
+ private void exportNode(BabylonAbstractMesh babylonAbstractMesh, IIGameNode maxGameNode, IIGameScene maxGameScene, BabylonScene babylonScene)
+ {
+ // Position / rotation / scaling
+ exportTransform(babylonAbstractMesh, maxGameNode);
+
+ // Hierarchy
+ if (maxGameNode.NodeParent != null)
+ {
+ babylonAbstractMesh.parentId = maxGameNode.NodeParent.MaxNode.GetGuid().ToString();
+ }
+ }
+
+ private void exportTransform(BabylonNode babylonAbstractMesh, IIGameNode maxGameNode)
+ {
+ // Position / rotation / scaling
+ var localTM = maxGameNode.GetLocalTM(0);
+
+ // use babylon decomposition, as 3ds max built-in values are no correct
+ var tm_babylon = new BabylonMatrix();
+ tm_babylon.m = localTM.ToArray();
+
+ var s_babylon = new BabylonVector3();
+ var q_babylon = new BabylonQuaternion();
+ var t_babylon = new BabylonVector3();
+
+ tm_babylon.decompose(s_babylon, q_babylon, t_babylon);
+
+ if (ExportQuaternionsInsteadOfEulers)
+ {
+ // normalize quaternion
+ var q = q_babylon;
+ float q_length = (float)Math.Sqrt(q.X * q.X + q.Y * q.Y + q.Z * q.Z + q.W * q.W);
+ babylonAbstractMesh.rotationQuaternion = new[] { q_babylon.X / q_length, q_babylon.Y / q_length, q_babylon.Z / q_length, q_babylon.W / q_length };
+ }
+ else
+ {
+ babylonAbstractMesh.rotation = q_babylon.toEulerAngles().ToArray();
+ }
+ babylonAbstractMesh.scaling = new[] { s_babylon.X, s_babylon.Y, s_babylon.Z };
+ babylonAbstractMesh.position = new[] { t_babylon.X, t_babylon.Y, t_babylon.Z };
+ }
+
+ private void exportAnimation(BabylonNode babylonNode, IIGameNode maxGameNode)
+ {
+ var animations = new List();
+
+ GenerateCoordinatesAnimations(maxGameNode, animations);
+
+ if (!ExportFloatController(maxGameNode.MaxNode.VisController, "visibility", animations))
+ {
+ ExportFloatAnimation("visibility", animations, key => new[] { maxGameNode.MaxNode.GetVisibility(key, Tools.Forever) });
+ }
+
+ babylonNode.animations = animations.ToArray();
+
+ if (maxGameNode.MaxNode.GetBoolProperty("babylonjs_autoanimate", 1))
+ {
+ babylonNode.autoAnimate = true;
+ babylonNode.autoAnimateFrom = (int)maxGameNode.MaxNode.GetFloatProperty("babylonjs_autoanimate_from");
+ babylonNode.autoAnimateTo = (int)maxGameNode.MaxNode.GetFloatProperty("babylonjs_autoanimate_to", 100);
+ babylonNode.autoAnimateLoop = maxGameNode.MaxNode.GetBoolProperty("babylonjs_autoanimateloop", 1);
+ }
+ }
+
+ public void GenerateCoordinatesAnimations(IIGameNode meshNode, List animations)
+ {
+ GeneratePositionAnimation(meshNode, animations);
+ GenerateRotationAnimation(meshNode, animations);
+ GenerateScalingAnimation(meshNode, animations);
+ }
+
+ ///
+ /// get the w of the tangent
+ ///
+ ///
+ ///
+ ///
+ ///
+ /// -1 when the normal is not flipped
+ /// 1 when the normal is flipped
+ ///
+ private int GetW(IPoint3 normal, IPoint3 tangent, IPoint3 bitangent)
+ {
+ //Cross product bitangent = w * normal ^ tangent
+ float x = normal.Y * tangent.Z - normal.Z * tangent.Y;
+ float y = normal.Z * tangent.X - normal.X * tangent.Z;
+ float z = normal.X * tangent.Y - normal.Y * tangent.X;
+
+ int w = Math.Sign(bitangent.X * x);
+ if (w == 0)
+ {
+ w = Math.Sign(bitangent.Y * y);
+ }
+ if (w == 0)
+ {
+ w = Math.Sign(bitangent.Z * z);
+ }
+
+ return w;
+ }
+
+ }
+}
diff --git a/3ds Max/Max2Babylon/Exporter/BabylonExporter.Texture.cs b/3ds Max/Max2Babylon/Exporter/BabylonExporter.Texture.cs
index 72f79dfe..0ec74ded 100644
--- a/3ds Max/Max2Babylon/Exporter/BabylonExporter.Texture.cs
+++ b/3ds Max/Max2Babylon/Exporter/BabylonExporter.Texture.cs
@@ -23,6 +23,17 @@ partial class BabylonExporter
private static List invalidFormats = new List(new string[] { "dds", "tif", "tiff" });
private Dictionary textureMap = new Dictionary();
+
+ public ITexmap GetSubTexmap(IStdMat2 stdMat, int index)
+ {
+ if (!stdMat.MapEnabled(index))
+ {
+ return null;
+ }
+
+ return stdMat.GetSubTexmap(index);
+ }
+
// -------------------------------
// --- "public" export methods ---
// -------------------------------
@@ -290,7 +301,7 @@ private BabylonTexture ExportClearCoatTexture(ITexmap intensityTexMap, ITexmap r
}
///
- private BabylonTexture ExportBaseColorAlphaTexture(ITexmap baseColorTexMap, ITexmap alphaTexMap, float[] baseColor, float alpha, BabylonScene babylonScene, string materialName)
+ private BabylonTexture ExportBaseColorAlphaTexture(ITexmap baseColorTexMap, ITexmap alphaTexMap, float[] baseColor, float alpha, BabylonScene babylonScene, string materialName, bool isOpacity = false)
{
// --- Babylon texture ---
@@ -330,8 +341,8 @@ private BabylonTexture ExportBaseColorAlphaTexture(ITexmap baseColorTexMap, ITex
// Otherwise combine base color and alpha textures to a single output texture
RaiseMessage("Export baseColor+Alpha texture", 2);
- var texture = baseColorTexture != null ? baseColorTexture : alphaTexture;
- baseColorTextureMapExtension = baseColorTexture != null ? Path.GetExtension(baseColorTexture.Map.FullFilePath) : ".png"; // if we don't have a base color texture, export as png.
+ var texture = baseColorTexture != null ? baseColorTexture : alphaTexture;
+ baseColorTextureMapExtension = baseColorTexture != null ? Path.GetExtension(baseColorTexture.Map.FullFilePath) : ".png"; // if we don't have a base color texture, export as png.
var nameText = (baseColorTexture != null ? Path.GetFileNameWithoutExtension(baseColorTexture.Map.FullFilePath) : TextureUtilities.ColorToStringName(baseColor));
var textureID = baseColorTexture != null ? texture.GetGuid().ToString() : string.Format("{0}_{1}", texture.GetGuid().ToString(), nameText);
@@ -425,8 +436,13 @@ private BabylonTexture ExportBaseColorAlphaTexture(ITexmap baseColorTexMap, ITex
if (alphaBitmap != null)
{
// Retreive alpha from alpha texture
- var alphaColor = alphaBitmap.GetPixel(x, y);
- var alphaAtPixel = 255 - (getAlphaFromRGB ? alphaColor.R : alphaColor.A);
+ Color alphaColor = alphaBitmap.GetPixel(x, y);
+ int alphaAtPixel = getAlphaFromRGB ? alphaColor.R : alphaColor.A;
+ if (isOpacity == false)
+ {
+ // Convert transparency to opacity
+ alphaAtPixel = 255 - alphaAtPixel;
+ }
baseColorAlpha = Color.FromArgb(alphaAtPixel, baseColorAtPixel);
}
else if (baseColorTexture != null && baseColorTexture.AlphaSource == MaxConstants.IMAGE_ALPHA_FILE) // Alpha source is 'Image Alpha'
@@ -1042,6 +1058,18 @@ private ITexmap _getTexMap(IIGameMaterial materialNode, int index)
//}
}
return texMap;
+ }
+
+ private ITexmap _getTexMap(IIGameMaterial materialNode, string name)
+ {
+ for (int i = 0; i < materialNode.MaxMaterial.NumSubTexmaps; i++)
+ {
+ if (materialNode.MaxMaterial.GetSubTexmapSlotName(i) == name)
+ {
+ return _getTexMap(materialNode, i);
+ }
+ }
+ return null;
}
private bool isTextureOk(ITexmap texMap)
diff --git a/3ds Max/Max2Babylon/Exporter/BabylonExporter.cs b/3ds Max/Max2Babylon/Exporter/BabylonExporter.cs
index 4f128a9c..4aad6c4e 100644
--- a/3ds Max/Max2Babylon/Exporter/BabylonExporter.cs
+++ b/3ds Max/Max2Babylon/Exporter/BabylonExporter.cs
@@ -20,11 +20,6 @@ namespace Max2Babylon
{
internal partial class BabylonExporter : ILoggingProvider
{
- public event Action OnImportProgressChanged;
- public event Action OnWarning;
- public event Action OnMessage;
- public event Action OnError;
-
public Form callerForm;
public ExportParameters exportParameters;
@@ -43,45 +38,6 @@ internal partial class BabylonExporter : ILoggingProvider
public const int MaxSceneTicksPerSecond = 4800; //https://knowledge.autodesk.com/search-result/caas/CloudHelp/cloudhelp/2016/ENU/MAXScript-Help/files/GUID-141213A1-B5A8-457B-8838-E602022C8798-htm.html
- public void ReportProgressChanged(int progress)
- {
- OnImportProgressChanged?.Invoke(progress);
- }
-
- public void RaiseError(string error, int rank = 0)
- {
- if (OnError != null)
- {
- OnError(error, rank);
- }
- }
-
- public void RaiseWarning(string warning, int rank = 0)
- {
- if (OnWarning != null)
- {
- OnWarning(warning, rank);
- }
- }
-
- public void RaiseMessage(string message, int rank = 0, bool emphasis = false)
- {
- RaiseMessage(message, Color.Black, rank, emphasis);
- }
-
- public void RaiseMessage(string message, Color color, int rank = 0, bool emphasis = false)
- {
- if (OnMessage != null)
- {
- OnMessage(message, color, rank, emphasis);
- }
- }
-
- // For debug purpose
- public void RaiseVerbose(string message, int rank = 0, bool emphasis = false)
- {
- //RaiseMessage(message, Color.DarkGray, rank, emphasis);
- }
public void CheckCancelled()
{
diff --git a/3ds Max/Max2Babylon/Exporter/GlobalVertex.cs b/3ds Max/Max2Babylon/Exporter/GlobalVertex.cs
index f5272f34..86a54f7d 100644
--- a/3ds Max/Max2Babylon/Exporter/GlobalVertex.cs
+++ b/3ds Max/Max2Babylon/Exporter/GlobalVertex.cs
@@ -23,16 +23,16 @@ public GlobalVertex(GlobalVertex other)
{
this.BaseIndex = other.BaseIndex;
this.CurrentIndex = other.CurrentIndex;
- this.Position = other.Position;
- this.Normal = other.Normal;
- this.Tangent = other.Tangent;
- this.UV = other.UV;
- this.UV2 = other.UV2;
+ this.Position = other.Position != null ? other.Position.Clone() : null;
+ this.Normal = other.Normal != null ? other.Normal.Clone() : null;
+ this.Tangent = other.Tangent != null ? other.Tangent.Clone2() : null;
+ this.UV = other.UV != null ? other.UV.Clone() : null;
+ this.UV2 = other.UV2 != null ? other.UV2.Clone() : null;
this.BonesIndices = other.BonesIndices;
- this.Weights = other.Weights;
+ this.Weights = other.Weights != null ? other.Weights.Clone() : null;
this.BonesIndicesExtra = other.BonesIndicesExtra;
- this.WeightsExtra = other.WeightsExtra;
- this.Color = other.Color;
+ this.WeightsExtra = other.WeightsExtra != null ? other.WeightsExtra.Clone() : null;
+ this.Color = other.Color != null ? other.Color.Clone2() : null;
}
public override int GetHashCode()
diff --git a/3ds Max/Max2Babylon/Forms/ExporterForm.cs b/3ds Max/Max2Babylon/Forms/ExporterForm.cs
index c5e29975..f095d6e4 100644
--- a/3ds Max/Max2Babylon/Forms/ExporterForm.cs
+++ b/3ds Max/Max2Babylon/Forms/ExporterForm.cs
@@ -1,32 +1,32 @@
-using Autodesk.Max;
-using BabylonExport.Entities;
-using System;
-using System.Diagnostics;
-using System.IO;
-using System.Threading.Tasks;
-using System.Windows.Forms;
-using Utilities;
-using Color = System.Drawing.Color;
-using Microsoft.WindowsAPICodePack.Dialogs;
-using System.Collections.Generic;
-using System.Linq;
-
-namespace Max2Babylon
-{
- public partial class ExporterForm : Form
- {
- private const string ModelFilePathProperty = "modelFilePathProperty";
- private const string TextureFolderPathProperty = "textureFolderPathProperty";
-
- private readonly BabylonExportActionItem babylonExportAction;
- private BabylonExporter exporter;
- private bool gltfPipelineInstalled = true; // true if the gltf-pipeline is installed and runnable.
-
- TreeNode currentNode;
- int currentRank;
-
- private ExportItem singleExportItem;
-
+using Autodesk.Max;
+using BabylonExport.Entities;
+using System;
+using System.Diagnostics;
+using System.IO;
+using System.Threading.Tasks;
+using System.Windows.Forms;
+using Utilities;
+using Color = System.Drawing.Color;
+using Microsoft.WindowsAPICodePack.Dialogs;
+using System.Collections.Generic;
+using System.Linq;
+
+namespace Max2Babylon
+{
+ public partial class ExporterForm : Form
+ {
+ private const string ModelFilePathProperty = "modelFilePathProperty";
+ private const string TextureFolderPathProperty = "textureFolderPathProperty";
+
+ private readonly BabylonExportActionItem babylonExportAction;
+ private BabylonExporter exporter;
+ private bool gltfPipelineInstalled = true; // true if the gltf-pipeline is installed and runnable.
+
+ TreeNode currentNode;
+ int currentRank;
+
+ private ExportItem singleExportItem;
+
private bool filePostOpenCallback = false;
private GlobalDelegates.Delegate5 m_FilePostOpenDelegate;
@@ -52,94 +52,94 @@ private void OnFilePostOpen(IntPtr param0, INotifyInfo param1)
LoadOptions();
}
- public ExporterForm(BabylonExportActionItem babylonExportAction)
- {
- InitializeComponent();
+ public ExporterForm(BabylonExportActionItem babylonExportAction)
+ {
+ InitializeComponent();
RegisterFilePreOpen();
- this.Text = $"Babylon.js - Export scene to babylon or glTF format v{BabylonExporter.exporterVersion}";
-
- this.babylonExportAction = babylonExportAction;
-
- // Check if the gltf-pipeline module is installed
- try
- {
- Process gltfPipeline = new Process();
- gltfPipeline.StartInfo.FileName = "gltf-pipeline.cmd";
-
- // Hide the cmd window that show the gltf-pipeline result
- gltfPipeline.StartInfo.UseShellExecute = false;
- gltfPipeline.StartInfo.CreateNoWindow = true;
-
- gltfPipeline.Start();
- gltfPipeline.WaitForExit();
- }
- catch
- {
- gltfPipelineInstalled = false;
- }
-
- groupBox1.MouseMove += groupBox1_MouseMove;
- }
-
+ this.Text = $"Babylon.js - Export scene to babylon or glTF format v{BabylonExporter.exporterVersion}";
+
+ this.babylonExportAction = babylonExportAction;
+
+ // Check if the gltf-pipeline module is installed
+ try
+ {
+ Process gltfPipeline = new Process();
+ gltfPipeline.StartInfo.FileName = "gltf-pipeline.cmd";
+
+ // Hide the cmd window that show the gltf-pipeline result
+ gltfPipeline.StartInfo.UseShellExecute = false;
+ gltfPipeline.StartInfo.CreateNoWindow = true;
+
+ gltfPipeline.Start();
+ gltfPipeline.WaitForExit();
+ }
+ catch
+ {
+ gltfPipelineInstalled = false;
+ }
+
+ groupBox1.MouseMove += groupBox1_MouseMove;
+ }
+
private void LoadOptions()
- {
- string storedModelPath = Loader.Core.RootNode.GetStringProperty(ExportParameters.ModelFilePathProperty, string.Empty);
- string absoluteModelPath = Tools.ResolveRelativePath(storedModelPath);
+ {
+ string storedModelPath = Loader.Core.RootNode.GetStringProperty(ExportParameters.ModelFilePathProperty, string.Empty);
+ string absoluteModelPath = Tools.ResolveRelativePath(storedModelPath);
txtModelPath.MaxPath(absoluteModelPath);
-
- string storedFolderPath = Loader.Core.RootNode.GetStringProperty(ExportParameters.TextureFolderPathProperty, string.Empty);
- string absoluteTexturesFolderPath = Tools.ResolveRelativePath(storedFolderPath);
+
+ string storedFolderPath = Loader.Core.RootNode.GetStringProperty(ExportParameters.TextureFolderPathProperty, string.Empty);
+ string absoluteTexturesFolderPath = Tools.ResolveRelativePath(storedFolderPath);
txtTexturesPath.MaxPath(absoluteTexturesFolderPath);
-
- singleExportItem = new ExportItem(absoluteModelPath);
-
- Tools.PrepareCheckBox(chkManifest, Loader.Core.RootNode, "babylonjs_generatemanifest");
- Tools.PrepareCheckBox(chkWriteTextures, Loader.Core.RootNode, "babylonjs_writetextures", 1);
- Tools.PrepareCheckBox(chkOverwriteTextures, Loader.Core.RootNode, "babylonjs_overwritetextures", 1);
- Tools.PrepareCheckBox(chkHidden, Loader.Core.RootNode, "babylonjs_exporthidden");
- Tools.PrepareCheckBox(chkAutoSave, Loader.Core.RootNode, "babylonjs_autosave", 1);
- Tools.PrepareCheckBox(chkOnlySelected, Loader.Core.RootNode, "babylonjs_onlySelected");
- Tools.PrepareCheckBox(chkExportTangents, Loader.Core.RootNode, "babylonjs_exporttangents");
- Tools.PrepareComboBox(comboOutputFormat, Loader.Core.RootNode, "babylonjs_outputFormat", "babylon");
- Tools.PrepareTextBox(txtScaleFactor, Loader.Core.RootNode, "babylonjs_txtScaleFactor", "1");
- Tools.PrepareTextBox(txtQuality, Loader.Core.RootNode, "babylonjs_txtCompression", "100");
- Tools.PrepareCheckBox(chkMergeAOwithMR, Loader.Core.RootNode, "babylonjs_mergeAOwithMR", 1);
- Tools.PrepareCheckBox(chkDracoCompression, Loader.Core.RootNode, "babylonjs_dracoCompression", 0);
- Tools.PrepareCheckBox(chkKHRLightsPunctual, Loader.Core.RootNode, "babylonjs_khrLightsPunctual");
- Tools.PrepareCheckBox(chkKHRTextureTransform, Loader.Core.RootNode, "babylonjs_khrTextureTransform");
- Tools.PrepareCheckBox(chkAnimgroupExportNonAnimated, Loader.Core.RootNode, "babylonjs_animgroupexportnonanimated");
- Tools.PrepareCheckBox(chkDoNotOptimizeAnimations, Loader.Core.RootNode, "babylonjs_donotoptimizeanimations");
- Tools.PrepareCheckBox(chkKHRMaterialsUnlit, Loader.Core.RootNode, "babylonjs_khr_materials_unlit");
- Tools.PrepareCheckBox(chkExportMaterials, Loader.Core.RootNode, "babylonjs_export_materials", 1);
- Tools.PrepareCheckBox(chkExportMorphTangents, Loader.Core.RootNode, "babylonjs_export_Morph_Tangents", 0);
- Tools.PrepareCheckBox(chkExportMorphNormals, Loader.Core.RootNode, "babylonjs_export_Morph_Normals", 1);
- Tools.PrepareComboBox(cmbBakeAnimationOptions, Loader.Core.RootNode, "babylonjs_bakeAnimationsType", (int)BakeAnimationType.DoNotBakeAnimation);
- Tools.PrepareCheckBox(chkApplyPreprocessToScene, Loader.Core.RootNode, "babylonjs_applyPreprocess", 0);
-
- if (comboOutputFormat.SelectedText == "babylon" || comboOutputFormat.SelectedText == "binary babylon" || !gltfPipelineInstalled)
- {
- chkDracoCompression.Checked = false;
- chkDracoCompression.Enabled = false;
- }
-
- Tools.PrepareCheckBox(chkFullPBR, Loader.Core.RootNode, ExportParameters.PBRFullPropertyName);
- Tools.PrepareCheckBox(chkNoAutoLight, Loader.Core.RootNode, ExportParameters.PBRNoLightPropertyName);
- string storedEnvironmentPath = Loader.Core.RootNode.GetStringProperty(ExportParameters.PBREnvironmentPathPropertyName, string.Empty);
- string absoluteEnvironmentPath = Tools.ResolveRelativePath(storedEnvironmentPath);
- txtEnvironmentName.MaxPath(absoluteEnvironmentPath);
-
- Tools.PrepareCheckBox(chkUsePreExportProces, Loader.Core.RootNode, "babylonjs_preproces", 0);
- Tools.PrepareCheckBox(chkFlatten, Loader.Core.RootNode, "babylonjs_flattenScene", 0);
- Tools.PrepareCheckBox(chkMrgContainersAndXref, Loader.Core.RootNode, "babylonjs_mergecontainersandxref", 0);
+
+ singleExportItem = new ExportItem(absoluteModelPath);
+
+ Tools.PrepareCheckBox(chkManifest, Loader.Core.RootNode, "babylonjs_generatemanifest");
+ Tools.PrepareCheckBox(chkWriteTextures, Loader.Core.RootNode, "babylonjs_writetextures", 1);
+ Tools.PrepareCheckBox(chkOverwriteTextures, Loader.Core.RootNode, "babylonjs_overwritetextures", 1);
+ Tools.PrepareCheckBox(chkHidden, Loader.Core.RootNode, "babylonjs_exporthidden");
+ Tools.PrepareCheckBox(chkAutoSave, Loader.Core.RootNode, "babylonjs_autosave", 1);
+ Tools.PrepareCheckBox(chkOnlySelected, Loader.Core.RootNode, "babylonjs_onlySelected");
+ Tools.PrepareCheckBox(chkExportTangents, Loader.Core.RootNode, "babylonjs_exporttangents");
+ Tools.PrepareComboBox(comboOutputFormat, Loader.Core.RootNode, "babylonjs_outputFormat", "babylon");
+ Tools.PrepareTextBox(txtScaleFactor, Loader.Core.RootNode, "babylonjs_txtScaleFactor", "1");
+ Tools.PrepareTextBox(txtQuality, Loader.Core.RootNode, "babylonjs_txtCompression", "100");
+ Tools.PrepareCheckBox(chkMergeAOwithMR, Loader.Core.RootNode, "babylonjs_mergeAOwithMR", 1);
+ Tools.PrepareCheckBox(chkDracoCompression, Loader.Core.RootNode, "babylonjs_dracoCompression", 0);
+ Tools.PrepareCheckBox(chkKHRLightsPunctual, Loader.Core.RootNode, "babylonjs_khrLightsPunctual");
+ Tools.PrepareCheckBox(chkKHRTextureTransform, Loader.Core.RootNode, "babylonjs_khrTextureTransform");
+ Tools.PrepareCheckBox(chkAnimgroupExportNonAnimated, Loader.Core.RootNode, "babylonjs_animgroupexportnonanimated");
+ Tools.PrepareCheckBox(chkDoNotOptimizeAnimations, Loader.Core.RootNode, "babylonjs_donotoptimizeanimations");
+ Tools.PrepareCheckBox(chkKHRMaterialsUnlit, Loader.Core.RootNode, "babylonjs_khr_materials_unlit");
+ Tools.PrepareCheckBox(chkExportMaterials, Loader.Core.RootNode, "babylonjs_export_materials", 1);
+ Tools.PrepareCheckBox(chkExportMorphTangents, Loader.Core.RootNode, "babylonjs_export_Morph_Tangents", 0);
+ Tools.PrepareCheckBox(chkExportMorphNormals, Loader.Core.RootNode, "babylonjs_export_Morph_Normals", 1);
+ Tools.PrepareComboBox(cmbBakeAnimationOptions, Loader.Core.RootNode, "babylonjs_bakeAnimationsType", (int)BakeAnimationType.DoNotBakeAnimation);
+ Tools.PrepareCheckBox(chkApplyPreprocessToScene, Loader.Core.RootNode, "babylonjs_applyPreprocess", 0);
+
+ if (comboOutputFormat.SelectedText == "babylon" || comboOutputFormat.SelectedText == "binary babylon" || !gltfPipelineInstalled)
+ {
+ chkDracoCompression.Checked = false;
+ chkDracoCompression.Enabled = false;
+ }
+
+ Tools.PrepareCheckBox(chkFullPBR, Loader.Core.RootNode, ExportParameters.PBRFullPropertyName);
+ Tools.PrepareCheckBox(chkNoAutoLight, Loader.Core.RootNode, ExportParameters.PBRNoLightPropertyName);
+ string storedEnvironmentPath = Loader.Core.RootNode.GetStringProperty(ExportParameters.PBREnvironmentPathPropertyName, string.Empty);
+ string absoluteEnvironmentPath = Tools.ResolveRelativePath(storedEnvironmentPath);
+ txtEnvironmentName.MaxPath(absoluteEnvironmentPath);
+
+ Tools.PrepareCheckBox(chkUsePreExportProces, Loader.Core.RootNode, "babylonjs_preproces", 0);
+ Tools.PrepareCheckBox(chkFlatten, Loader.Core.RootNode, "babylonjs_flattenScene", 0);
+ Tools.PrepareCheckBox(chkMrgContainersAndXref, Loader.Core.RootNode, "babylonjs_mergecontainersandxref", 0);
}
-
+
private void ExporterForm_Load(object sender, EventArgs e)
{
LoadOptions();
- var maxVersion = Tools.GetMaxVersion();
+ var maxVersion = Tools.GetMaxVersion();
if (maxVersion.Major == 22 && maxVersion.Minor < 2)
{
CreateErrorMessage("You must update 3dsMax 2020 to version 2020.2 to use Max2Babylon. Unpatched versions of 3dsMax will crash during export.", 0);
@@ -147,248 +147,266 @@ private void ExporterForm_Load(object sender, EventArgs e)
else
{
CreateMessage(String.Format("Using Max2Babylon for 3dsMax version v{0}.{1}.{2}.{3}", maxVersion.Major, maxVersion.Minor, maxVersion.Revision, maxVersion.BuildNumber), Color.Black, 0, true);
- }
- }
-
- private void butModelBrowse_Click(object sender, EventArgs e)
- {
+ }
+ }
+
+ private void butModelBrowse_Click(object sender, EventArgs e)
+ {
if (!string.IsNullOrEmpty(txtModelPath.Text))
- {
+ {
string intialDirectory = Path.GetDirectoryName(txtModelPath.Text);
-
- if (!Directory.Exists(intialDirectory))
- {
- intialDirectory = Loader.Core.GetDir((int)MaxDirectory.ProjectFolder);
- }
-
- if (!Directory.Exists(intialDirectory))
- {
- intialDirectory = null;
- }
-
- saveFileDialog.InitialDirectory = intialDirectory;
- }
-
- if (saveFileDialog.ShowDialog(this) == DialogResult.OK)
- {
+
+ if (!Directory.Exists(intialDirectory))
+ {
+ intialDirectory = Loader.Core.GetDir((int)MaxDirectory.ProjectFolder);
+ }
+
+ if (!Directory.Exists(intialDirectory))
+ {
+ intialDirectory = null;
+ }
+
+ saveFileDialog.InitialDirectory = intialDirectory;
+ }
+
+ if (saveFileDialog.ShowDialog(this) == DialogResult.OK)
+ {
txtModelPath.MaxPath(saveFileDialog.FileName);
if (string.IsNullOrWhiteSpace(txtTexturesPath.Text))
{
string defaultTexturesDir = Path.GetDirectoryName(txtModelPath.Text);
txtTexturesPath.MaxPath(defaultTexturesDir);
- }
+ }
if (!PathUtilities.IsBelowPath(txtTexturesPath.Text, txtModelPath.Text))
{
CreateWarningMessage("WARNING: textures path should be below model file path, not all client renderers support this feature", 0);
- }
+ }
}
}
-
- private void btnTextureBrowse_Click(object sender, EventArgs e)
- {
+
+ private void btnTextureBrowse_Click(object sender, EventArgs e)
+ {
if (string.IsNullOrWhiteSpace(txtModelPath.Text))
- {
- MessageBox.Show("Select model file path first");
- return;
- }
-
- CommonOpenFileDialog dialog = new CommonOpenFileDialog();
-
+ {
+ MessageBox.Show("Select model file path first");
+ return;
+ }
+
+ CommonOpenFileDialog dialog = new CommonOpenFileDialog();
+
string intialDirectory = txtTexturesPath.Text;
-
- if (!Directory.Exists(intialDirectory))
- {
+
+ if (!Directory.Exists(intialDirectory))
+ {
intialDirectory = Path.GetDirectoryName(txtModelPath.Text);
- }
-
- if (!Directory.Exists(intialDirectory))
- {
- intialDirectory = Loader.Core.GetDir((int)MaxDirectory.ProjectFolder);
- }
-
- if (!Directory.Exists(intialDirectory))
- {
- intialDirectory = null;
- }
-
- dialog.InitialDirectory = intialDirectory;
- dialog.IsFolderPicker = true;
-
- if (dialog.ShowDialog() == CommonFileDialogResult.Ok)
- {
- string selectedFolderPath = dialog.FileName;
+ }
+
+ if (!Directory.Exists(intialDirectory))
+ {
+ intialDirectory = Loader.Core.GetDir((int)MaxDirectory.ProjectFolder);
+ }
+
+ if (!Directory.Exists(intialDirectory))
+ {
+ intialDirectory = null;
+ }
+
+ dialog.InitialDirectory = intialDirectory;
+ dialog.IsFolderPicker = true;
+
+ if (dialog.ShowDialog() == CommonFileDialogResult.Ok)
+ {
+ string selectedFolderPath = dialog.FileName;
string absoluteModelPath = txtModelPath.Text;
-
- if (!PathUtilities.IsBelowPath(selectedFolderPath, absoluteModelPath))
- {
+
+ if (!PathUtilities.IsBelowPath(selectedFolderPath, absoluteModelPath))
+ {
CreateWarningMessage("WARNING: textures path should be below model file path, not all client renderers support this feature",0);
- }
-
+ }
+
txtTexturesPath.MaxPath(selectedFolderPath);
- }
- }
-
- private void btnEnvBrowse_Click(object sender, EventArgs e)
- {
- if (!string.IsNullOrEmpty(txtEnvironmentName.Text))
- {
- string intialDirectory = Path.GetDirectoryName(txtEnvironmentName.Text);
-
- if (!Directory.Exists(intialDirectory))
- {
- intialDirectory = Loader.Core.GetDir((int)MaxDirectory.ProjectFolder);
- }
-
- if (!Directory.Exists(intialDirectory))
- {
- intialDirectory = null;
- }
-
- envFileDialog.InitialDirectory = intialDirectory;
- }
-
- if (envFileDialog.ShowDialog() == DialogResult.OK)
- {
- txtEnvironmentName.MaxPath(envFileDialog.FileName);
- }
- }
-
- private async void butExport_Click(object sender, EventArgs e)
- {
- try
- {
- if (chkUsePreExportProces.Checked)
- {
- Loader.Core.FileHold();
- }
-
- await DoExport(singleExportItem);
- }
- catch{}
- finally
- {
- if (chkUsePreExportProces.Checked && !chkApplyPreprocessToScene.Checked)
- {
- Loader.Core.SetQuietMode(true);
- Loader.Core.FileFetch();
- Loader.Core.SetQuietMode(false);
- }
- }
- }
-
- private async Task DoExport(ExportItemList exportItemList)
- {
- treeView.Nodes.Clear();
-
- bool allSucceeded = true;
- foreach (ExportItem item in exportItemList)
- {
- if (!item.Selected) continue;
-
- allSucceeded = allSucceeded && await DoExport(item, true, false);
-
- if (exporter.IsCancelled)
- break;
- }
-
- return allSucceeded;
- }
-
- private void saveOptionBtn_Click(object sender, EventArgs e)
- {
- SaveOptions();
- }
-
- private void SaveOptions()
- {
- Tools.UpdateCheckBox(chkManifest, Loader.Core.RootNode, "babylonjs_generatemanifest");
- Tools.UpdateCheckBox(chkWriteTextures, Loader.Core.RootNode, "babylonjs_writetextures");
- Tools.UpdateCheckBox(chkOverwriteTextures, Loader.Core.RootNode, "babylonjs_overwritetextures");
- Tools.UpdateCheckBox(chkHidden, Loader.Core.RootNode, "babylonjs_exporthidden");
- Tools.UpdateCheckBox(chkAutoSave, Loader.Core.RootNode, "babylonjs_autosave");
- Tools.UpdateCheckBox(chkOnlySelected, Loader.Core.RootNode, "babylonjs_onlySelected");
- Tools.UpdateCheckBox(chkExportTangents, Loader.Core.RootNode, "babylonjs_exporttangents");
- Tools.UpdateComboBox(comboOutputFormat, Loader.Core.RootNode, "babylonjs_outputFormat");
- Tools.UpdateTextBox(txtScaleFactor, Loader.Core.RootNode, "babylonjs_txtScaleFactor");
- Tools.UpdateTextBox(txtQuality, Loader.Core.RootNode, "babylonjs_txtCompression");
- Tools.UpdateCheckBox(chkMergeAOwithMR, Loader.Core.RootNode, "babylonjs_mergeAOwithMR");
- Tools.UpdateCheckBox(chkDracoCompression, Loader.Core.RootNode, "babylonjs_dracoCompression");
- Tools.UpdateCheckBox(chkKHRTextureTransform, Loader.Core.RootNode, "babylonjs_khrTextureTransform");
- Tools.UpdateCheckBox(chkKHRLightsPunctual, Loader.Core.RootNode, "babylonjs_khrLightsPunctual");
- Tools.UpdateCheckBox(chkKHRMaterialsUnlit, Loader.Core.RootNode, "babylonjs_khr_materials_unlit");
- Tools.UpdateCheckBox(chkExportMaterials, Loader.Core.RootNode, "babylonjs_export_materials");
- Tools.UpdateCheckBox(chkAnimgroupExportNonAnimated, Loader.Core.RootNode, "babylonjs_animgroupexportnonanimated");
- Tools.UpdateCheckBox(chkDoNotOptimizeAnimations, Loader.Core.RootNode, "babylonjs_donotoptimizeanimations");
- Tools.UpdateCheckBox(chkExportMorphTangents, Loader.Core.RootNode, "babylonjs_export_Morph_Tangents");
- Tools.UpdateCheckBox(chkExportMorphNormals, Loader.Core.RootNode, "babylonjs_export_Morph_Normals");
- Tools.UpdateComboBoxByIndex(cmbBakeAnimationOptions, Loader.Core.RootNode, "babylonjs_bakeAnimationsType");
- Tools.UpdateCheckBox(chkApplyPreprocessToScene,Loader.Core.RootNode, "babylonjs_applyPreprocess");
-
+ }
+ }
+
+ private void btnEnvBrowse_Click(object sender, EventArgs e)
+ {
+ if (!string.IsNullOrEmpty(txtEnvironmentName.Text))
+ {
+ string intialDirectory = Path.GetDirectoryName(txtEnvironmentName.Text);
+
+ if (!Directory.Exists(intialDirectory))
+ {
+ intialDirectory = Loader.Core.GetDir((int)MaxDirectory.ProjectFolder);
+ }
+
+ if (!Directory.Exists(intialDirectory))
+ {
+ intialDirectory = null;
+ }
+
+ envFileDialog.InitialDirectory = intialDirectory;
+ }
+
+ if (envFileDialog.ShowDialog() == DialogResult.OK)
+ {
+ txtEnvironmentName.MaxPath(envFileDialog.FileName);
+ }
+ }
+
+ private async void butExport_Click(object sender, EventArgs e)
+ {
+ try
+ {
+ if (chkUsePreExportProces.Checked)
+ {
+ Loader.Core.FileHold();
+ }
+
+ await DoExport(singleExportItem);
+ }
+ catch{}
+ finally
+ {
+ if (chkUsePreExportProces.Checked && !chkApplyPreprocessToScene.Checked)
+ {
+ Loader.Core.SetQuietMode(true);
+ Loader.Core.FileFetch();
+ Loader.Core.SetQuietMode(false);
+ }
+ }
+ }
+
+ private async Task DoExport(ExportItemList exportItemList)
+ {
+ treeView.Nodes.Clear();
+
+ bool allSucceeded = true;
+ foreach (ExportItem item in exportItemList)
+ {
+ if (!item.Selected) continue;
+
+ allSucceeded = allSucceeded && await DoExport(item, true, false);
+
+ if (exporter.IsCancelled)
+ break;
+ }
+
+ return allSucceeded;
+ }
+
+ private void saveOptionBtn_Click(object sender, EventArgs e)
+ {
+ SaveOptions();
+ }
+
+ private void SaveOptions()
+ {
+ Tools.UpdateCheckBox(chkManifest, Loader.Core.RootNode, "babylonjs_generatemanifest");
+ Tools.UpdateCheckBox(chkWriteTextures, Loader.Core.RootNode, "babylonjs_writetextures");
+ Tools.UpdateCheckBox(chkOverwriteTextures, Loader.Core.RootNode, "babylonjs_overwritetextures");
+ Tools.UpdateCheckBox(chkHidden, Loader.Core.RootNode, "babylonjs_exporthidden");
+ Tools.UpdateCheckBox(chkAutoSave, Loader.Core.RootNode, "babylonjs_autosave");
+ Tools.UpdateCheckBox(chkOnlySelected, Loader.Core.RootNode, "babylonjs_onlySelected");
+ Tools.UpdateCheckBox(chkExportTangents, Loader.Core.RootNode, "babylonjs_exporttangents");
+ Tools.UpdateComboBox(comboOutputFormat, Loader.Core.RootNode, "babylonjs_outputFormat");
+ Tools.UpdateTextBox(txtScaleFactor, Loader.Core.RootNode, "babylonjs_txtScaleFactor");
+ Tools.UpdateTextBox(txtQuality, Loader.Core.RootNode, "babylonjs_txtCompression");
+ Tools.UpdateCheckBox(chkMergeAOwithMR, Loader.Core.RootNode, "babylonjs_mergeAOwithMR");
+ Tools.UpdateCheckBox(chkDracoCompression, Loader.Core.RootNode, "babylonjs_dracoCompression");
+ Tools.UpdateCheckBox(chkKHRTextureTransform, Loader.Core.RootNode, "babylonjs_khrTextureTransform");
+ Tools.UpdateCheckBox(chkKHRLightsPunctual, Loader.Core.RootNode, "babylonjs_khrLightsPunctual");
+ Tools.UpdateCheckBox(chkKHRMaterialsUnlit, Loader.Core.RootNode, "babylonjs_khr_materials_unlit");
+ Tools.UpdateCheckBox(chkExportMaterials, Loader.Core.RootNode, "babylonjs_export_materials");
+ Tools.UpdateCheckBox(chkAnimgroupExportNonAnimated, Loader.Core.RootNode, "babylonjs_animgroupexportnonanimated");
+ Tools.UpdateCheckBox(chkDoNotOptimizeAnimations, Loader.Core.RootNode, "babylonjs_donotoptimizeanimations");
+ Tools.UpdateCheckBox(chkExportMorphTangents, Loader.Core.RootNode, "babylonjs_export_Morph_Tangents");
+ Tools.UpdateCheckBox(chkExportMorphNormals, Loader.Core.RootNode, "babylonjs_export_Morph_Normals");
+ Tools.UpdateComboBoxByIndex(cmbBakeAnimationOptions, Loader.Core.RootNode, "babylonjs_bakeAnimationsType");
+ Tools.UpdateCheckBox(chkApplyPreprocessToScene,Loader.Core.RootNode, "babylonjs_applyPreprocess");
+
Loader.Core.RootNode.SetStringProperty(ExportParameters.ModelFilePathProperty, Tools.RelativePathStore(txtModelPath.Text));
Loader.Core.RootNode.SetStringProperty(ExportParameters.TextureFolderPathProperty, Tools.RelativePathStore(txtTexturesPath.Text));
-
- Tools.UpdateCheckBox(chkFullPBR, Loader.Core.RootNode, ExportParameters.PBRFullPropertyName);
- Tools.UpdateCheckBox(chkNoAutoLight, Loader.Core.RootNode, ExportParameters.PBRNoLightPropertyName);
- Loader.Core.RootNode.SetStringProperty(ExportParameters.PBREnvironmentPathPropertyName, Tools.RelativePathStore(txtEnvironmentName.Text));
-
- Tools.UpdateCheckBox(chkUsePreExportProces, Loader.Core.RootNode, "babylonjs_preproces");
- Tools.UpdateCheckBox(chkFlatten, Loader.Core.RootNode, "babylonjs_flattenScene");
- Tools.UpdateCheckBox(chkMrgContainersAndXref, Loader.Core.RootNode, "babylonjs_mergecontainersandxref");
- }
-
- private async Task DoExport(ExportItem exportItem, bool multiExport = false, bool clearLogs = true)
- {
- new BabylonAnimationActionItem().Close();
- SaveOptions();
-
- //store layer visibility status and force visibility on
-
- Dictionary layerState = new Dictionary();
- if (exportItem.Layers != null)
- {
- foreach (IILayer layer in exportItem.Layers)
- {
- List treeLayers = layer.LayerTree().ToList();
- treeLayers.Add(layer);
-
- foreach (IILayer l in treeLayers)
- {
-#if MAX2015
- layerState.Add( l, l.IsHidden);
-#else
- layerState.Add( l, l.IsHidden(false));
-#endif
- l.Hide(false,false);
- }
-
- }
- }
-
- exporter = new BabylonExporter();
-
- if (clearLogs)
- treeView.Nodes.Clear();
-
- exporter.OnImportProgressChanged += progress =>
- {
- progressBar.Value = progress;
- Application.DoEvents();
- };
-
- exporter.OnWarning += (warning, rank) => CreateWarningMessage(warning, rank);
-
- exporter.OnError += (error, rank) => CreateErrorMessage(error, rank);
-
- exporter.OnMessage += (message, color, rank, emphasis) => CreateMessage(message, color, rank, emphasis);
-
- butExport.Enabled = false;
- butExportAndRun.Enabled = false;
- butMultiExport.Enabled = false;
- butCancel.Enabled = true;
-
- bool success = true;
- try
+
+ Tools.UpdateCheckBox(chkFullPBR, Loader.Core.RootNode, ExportParameters.PBRFullPropertyName);
+ Tools.UpdateCheckBox(chkNoAutoLight, Loader.Core.RootNode, ExportParameters.PBRNoLightPropertyName);
+ Loader.Core.RootNode.SetStringProperty(ExportParameters.PBREnvironmentPathPropertyName, Tools.RelativePathStore(txtEnvironmentName.Text));
+
+ Tools.UpdateCheckBox(chkUsePreExportProces, Loader.Core.RootNode, "babylonjs_preproces");
+ Tools.UpdateCheckBox(chkFlatten, Loader.Core.RootNode, "babylonjs_flattenScene");
+ Tools.UpdateCheckBox(chkMrgContainersAndXref, Loader.Core.RootNode, "babylonjs_mergecontainersandxref");
+ }
+
+ private async Task DoExport(ExportItem exportItem, bool multiExport = false, bool clearLogs = true)
+ {
+ new BabylonAnimationActionItem().Close();
+ SaveOptions();
+
+ //store layer visibility status and force visibility on
+
+ Dictionary layerState = new Dictionary();
+ if (exportItem.Layers != null)
+ {
+ foreach (IILayer layer in exportItem.Layers)
+ {
+ List treeLayers = layer.LayerTree().ToList();
+ treeLayers.Add(layer);
+
+ foreach (IILayer l in treeLayers)
+ {
+#if MAX2015
+ layerState.Add( l, l.IsHidden);
+#else
+ layerState.Add( l, l.IsHidden(false));
+#endif
+ l.Hide(false,false);
+ }
+
+ }
+ }
+
+ exporter = new BabylonExporter();
+
+ if (clearLogs)
+ treeView.Nodes.Clear();
+
+ exporter.OnExportProgressChanged += progress =>
+ {
+ progressBar.Value = progress;
+ Application.DoEvents();
+ };
+
+ exporter.OnWarning += (warning, rank) => CreateWarningMessage(warning, rank);
+
+ exporter.OnError += (error, rank) => CreateErrorMessage(error, rank);
+
+ exporter.OnMessage += (message, color, rank, emphasis) => CreateMessage(message, color, rank, emphasis);
+
+ exporter.OnVerbose += (message, color, rank, emphasis) =>
+ {
+ try
+ {
+ currentNode = CreateTreeNode(rank, message, color);
+
+ if (emphasis)
+ {
+ currentNode.EnsureVisible();
+ }
+ }
+ catch
+ {
+ //do nothing
+ }
+ Application.DoEvents();
+ };
+
+ butExport.Enabled = false;
+ butExportAndRun.Enabled = false;
+ butMultiExport.Enabled = false;
+ butCancel.Enabled = true;
+
+ bool success = true;
+ try
{
string modelAbsolutePath = multiExport ? exportItem.ExportFilePathAbsolute : txtModelPath.Text;
string textureExportPath = multiExport ? exportItem.ExportTexturesesFolderPath : txtTexturesPath.Text;
@@ -396,7 +414,7 @@ private async Task DoExport(ExportItem exportItem, bool multiExport = fals
var scaleFactorParsed = 1.0f;
var textureQualityParsed = 100L;
try
- {
+ {
scaleFactorParsed = float.Parse(txtScaleFactor.Text);
}
catch (Exception e)
@@ -412,93 +430,93 @@ private async Task DoExport(ExportItem exportItem, bool multiExport = fals
throw new InvalidDataException(String.Format("Invalid Texture Quality value: {0}", txtScaleFactor.Text));
}
- MaxExportParameters exportParameters = new MaxExportParameters
- {
- outputPath = modelAbsolutePath,
- textureFolder = textureExportPath,
- outputFormat = comboOutputFormat.SelectedItem.ToString(),
+ MaxExportParameters exportParameters = new MaxExportParameters
+ {
+ outputPath = modelAbsolutePath,
+ textureFolder = textureExportPath,
+ outputFormat = comboOutputFormat.SelectedItem.ToString(),
scaleFactor = scaleFactorParsed,
- writeTextures = chkWriteTextures.Checked,
- overwriteTextures = chkOverwriteTextures.Checked,
- exportHiddenObjects = chkHidden.Checked,
- exportOnlySelected = chkOnlySelected.Checked,
- generateManifest = chkManifest.Checked,
- autoSaveSceneFile = chkAutoSave.Checked,
- exportTangents = chkExportTangents.Checked,
- exportMorphTangents = chkExportMorphTangents.Checked,
- exportMorphNormals = chkExportMorphNormals.Checked,
+ writeTextures = chkWriteTextures.Checked,
+ overwriteTextures = chkOverwriteTextures.Checked,
+ exportHiddenObjects = chkHidden.Checked,
+ exportOnlySelected = chkOnlySelected.Checked,
+ generateManifest = chkManifest.Checked,
+ autoSaveSceneFile = chkAutoSave.Checked,
+ exportTangents = chkExportTangents.Checked,
+ exportMorphTangents = chkExportMorphTangents.Checked,
+ exportMorphNormals = chkExportMorphNormals.Checked,
txtQuality = textureQualityParsed,
- mergeAOwithMR = chkMergeAOwithMR.Checked,
- bakeAnimationType = (BakeAnimationType)cmbBakeAnimationOptions.SelectedIndex,
- dracoCompression = chkDracoCompression.Checked,
- enableKHRLightsPunctual = chkKHRLightsPunctual.Checked,
- enableKHRTextureTransform = chkKHRTextureTransform.Checked,
- enableKHRMaterialsUnlit = chkKHRMaterialsUnlit.Checked,
- exportMaterials = chkExportMaterials.Checked,
- optimizeAnimations = !chkDoNotOptimizeAnimations.Checked,
- animgroupExportNonAnimated = chkAnimgroupExportNonAnimated.Checked,
- exportNode = exportItem?.Node,
- exportLayers = exportItem?.Layers,
- pbrNoLight = chkNoAutoLight.Checked,
- pbrFull = chkFullPBR.Checked,
- pbrEnvironment = txtEnvironmentName.Text,
- usePreExportProcess = chkUsePreExportProces.Checked,
- flattenScene = chkFlatten.Checked,
- mergeContainersAndXRef = chkMrgContainersAndXref.Checked,
- useMultiExporter = multiExport
- };
-
- exporter.callerForm = this;
-
- exporter.Export(exportParameters);
- }
- catch (OperationCanceledException)
- {
- progressBar.Value = 0;
- success = false;
- }
- catch (Exception ex)
- {
- IUTF8Str operationStatus = GlobalInterface.Instance.UTF8Str.Create("BabylonExportAborted");
- Loader.Global.BroadcastNotification(SystemNotificationCode.PreExport, operationStatus);
-
- currentNode = CreateTreeNode(0, "Export cancelled: " + ex.Message, Color.Red);
- currentNode = CreateTreeNode(1, ex.ToString(), Color.Red);
- currentNode.EnsureVisible();
-
- progressBar.Value = 0;
- success = false;
- }
-
- butCancel.Enabled = false;
- butExport.Enabled = true;
- butMultiExport.Enabled = true;
- butExportAndRun.Enabled = WebServer.IsSupported;
-
- BringToFront();
-
- //re-store layer visibility status
- if (exportItem.Layers != null)
- {
- foreach (IILayer layer in exportItem.Layers)
- {
- List treeLayers = layer.LayerTree().ToList();
- treeLayers.Add(layer);
- foreach (IILayer l in treeLayers)
- {
- bool exist;
- layerState.TryGetValue(l, out exist);
- if (exist)
- {
- l.Hide(layerState[l], false);
- }
- }
- }
- }
-
- return success;
- }
-
+ mergeAOwithMR = chkMergeAOwithMR.Checked,
+ bakeAnimationType = (BakeAnimationType)cmbBakeAnimationOptions.SelectedIndex,
+ dracoCompression = chkDracoCompression.Checked,
+ enableKHRLightsPunctual = chkKHRLightsPunctual.Checked,
+ enableKHRTextureTransform = chkKHRTextureTransform.Checked,
+ enableKHRMaterialsUnlit = chkKHRMaterialsUnlit.Checked,
+ exportMaterials = chkExportMaterials.Checked,
+ optimizeAnimations = !chkDoNotOptimizeAnimations.Checked,
+ animgroupExportNonAnimated = chkAnimgroupExportNonAnimated.Checked,
+ exportNode = exportItem?.Node,
+ exportLayers = exportItem?.Layers,
+ pbrNoLight = chkNoAutoLight.Checked,
+ pbrFull = chkFullPBR.Checked,
+ pbrEnvironment = txtEnvironmentName.Text,
+ usePreExportProcess = chkUsePreExportProces.Checked,
+ flattenScene = chkFlatten.Checked,
+ mergeContainersAndXRef = chkMrgContainersAndXref.Checked,
+ useMultiExporter = multiExport
+ };
+
+ exporter.callerForm = this;
+
+ exporter.Export(exportParameters);
+ }
+ catch (OperationCanceledException)
+ {
+ progressBar.Value = 0;
+ success = false;
+ }
+ catch (Exception ex)
+ {
+ IUTF8Str operationStatus = GlobalInterface.Instance.UTF8Str.Create("BabylonExportAborted");
+ Loader.Global.BroadcastNotification(SystemNotificationCode.PreExport, operationStatus);
+
+ currentNode = CreateTreeNode(0, "Export cancelled: " + ex.Message, Color.Red);
+ currentNode = CreateTreeNode(1, ex.ToString(), Color.Red);
+ currentNode.EnsureVisible();
+
+ progressBar.Value = 0;
+ success = false;
+ }
+
+ butCancel.Enabled = false;
+ butExport.Enabled = true;
+ butMultiExport.Enabled = true;
+ butExportAndRun.Enabled = WebServer.IsSupported;
+
+ BringToFront();
+
+ //re-store layer visibility status
+ if (exportItem.Layers != null)
+ {
+ foreach (IILayer layer in exportItem.Layers)
+ {
+ List treeLayers = layer.LayerTree().ToList();
+ treeLayers.Add(layer);
+ foreach (IILayer l in treeLayers)
+ {
+ bool exist;
+ layerState.TryGetValue(l, out exist);
+ if (exist)
+ {
+ l.Hide(layerState[l], false);
+ }
+ }
+ }
+ }
+
+ return success;
+ }
+
void CreateWarningMessage(string warning, int rank)
{
try
@@ -511,22 +529,22 @@ void CreateWarningMessage(string warning, int rank)
//do nothing
}
Application.DoEvents();
- }
-
+ }
+
void CreateErrorMessage(string error, int rank)
- {
- try
- {
- currentNode = CreateTreeNode(rank, error, Color.Red);
- currentNode.EnsureVisible();
- }
- catch
- {
- //do nothing
- }
+ {
+ try
+ {
+ currentNode = CreateTreeNode(rank, error, Color.Red);
+ currentNode.EnsureVisible();
+ }
+ catch
+ {
+ //do nothing
+ }
Application.DoEvents();
- }
-
+ }
+
void CreateMessage(string message, Color color, int rank, bool emphasis)
{
try
@@ -543,284 +561,284 @@ void CreateMessage(string message, Color color, int rank, bool emphasis)
//do nothing
}
Application.DoEvents();
- }
-
- private TreeNode CreateTreeNode(int rank, string text, Color color)
- {
- TreeNode newNode = null;
-
- Invoke(new Action(() =>
- {
- newNode = new TreeNode(text) { ForeColor = color };
- if (rank < 0 || rank > currentRank + 1)
- {
- rank = 0;
- treeView.Nodes.Add(new TreeNode("Invalid rank passed to CreateTreeNode (through RaiseMessage, RaiseWarning or RaiseError)!") { ForeColor = Color.DarkOrange });
- }
- if (rank == 0)
- {
- treeView.Nodes.Add(newNode);
- }
- else if (rank == currentRank + 1)
- {
- currentNode.Nodes.Add(newNode);
- }
- else
- {
- var parentNode = currentNode;
- while (currentRank != rank - 1)
- {
- parentNode = parentNode.Parent;
- currentRank--;
- }
- parentNode.Nodes.Add(newNode);
- }
-
- currentRank = rank;
- }));
-
- return newNode;
- }
-
- private void ExporterForm_FormClosed(object sender, FormClosedEventArgs e)
- {
- if (exporter != null)
- {
- exporter.IsCancelled = true;
- }
- babylonExportAction.Close();
- }
-
- private void txtFilename_TextChanged(object sender, EventArgs e)
- {
+ }
+
+ private TreeNode CreateTreeNode(int rank, string text, Color color)
+ {
+ TreeNode newNode = null;
+
+ Invoke(new Action(() =>
+ {
+ newNode = new TreeNode(text) { ForeColor = color };
+ if (rank < 0 || rank > currentRank + 1)
+ {
+ rank = 0;
+ treeView.Nodes.Add(new TreeNode("Invalid rank passed to CreateTreeNode (through RaiseMessage, RaiseWarning or RaiseError)!") { ForeColor = Color.DarkOrange });
+ }
+ if (rank == 0)
+ {
+ treeView.Nodes.Add(newNode);
+ }
+ else if (rank == currentRank + 1)
+ {
+ currentNode.Nodes.Add(newNode);
+ }
+ else
+ {
+ var parentNode = currentNode;
+ while (currentRank != rank - 1)
+ {
+ parentNode = parentNode.Parent;
+ currentRank--;
+ }
+ parentNode.Nodes.Add(newNode);
+ }
+
+ currentRank = rank;
+ }));
+
+ return newNode;
+ }
+
+ private void ExporterForm_FormClosed(object sender, FormClosedEventArgs e)
+ {
+ if (exporter != null)
+ {
+ exporter.IsCancelled = true;
+ }
+ babylonExportAction.Close();
+ }
+
+ private void txtFilename_TextChanged(object sender, EventArgs e)
+ {
butExport.Enabled = !string.IsNullOrEmpty(txtModelPath.Text.Trim());
- butExportAndRun.Enabled = butExport.Enabled && WebServer.IsSupported;
- }
-
- private void butCancel_Click(object sender, EventArgs e)
- {
- exporter.IsCancelled = true;
- }
-
- private void ExporterForm_Activated(object sender, EventArgs e)
- {
- Loader.Global.DisableAccelerators();
- }
-
- private void ExporterForm_Deactivate(object sender, EventArgs e)
- {
- Loader.Global.EnableAccelerators();
- }
-
- private async void butExportAndRun_Click(object sender, EventArgs e)
- {
- try
- {
- if (chkUsePreExportProces.Checked)
- {
- Loader.Core.FileHold();
- }
-
- if (await DoExport(singleExportItem))
- {
+ butExportAndRun.Enabled = butExport.Enabled && WebServer.IsSupported;
+ }
+
+ private void butCancel_Click(object sender, EventArgs e)
+ {
+ exporter.IsCancelled = true;
+ }
+
+ private void ExporterForm_Activated(object sender, EventArgs e)
+ {
+ Loader.Global.DisableAccelerators();
+ }
+
+ private void ExporterForm_Deactivate(object sender, EventArgs e)
+ {
+ Loader.Global.EnableAccelerators();
+ }
+
+ private async void butExportAndRun_Click(object sender, EventArgs e)
+ {
+ try
+ {
+ if (chkUsePreExportProces.Checked)
+ {
+ Loader.Core.FileHold();
+ }
+
+ if (await DoExport(singleExportItem))
+ {
WebServer.SceneFilename = Path.GetFileName(txtModelPath.Text);
WebServer.SceneFolder = Path.GetDirectoryName(txtModelPath.Text);
-
- Process.Start(WebServer.url + WebServer.SceneFilename);
-
- WindowState = FormWindowState.Minimized;
- }
- }
- catch{}
- finally
- {
- if (chkUsePreExportProces.Checked && !chkApplyPreprocessToScene.Checked)
- {
- Loader.Core.SetQuietMode(true);
- Loader.Core.FileFetch();
- Loader.Core.SetQuietMode(false);
- }
- }
- }
-
- private void butClose_Click(object sender, EventArgs e)
- {
- Close();
- }
-
- private void comboOutputFormat_SelectedIndexChanged(object sender, EventArgs e)
- {
- var outputFormat = comboOutputFormat.SelectedItem.ToString();
- switch (outputFormat)
- {
- case "babylon":
- case "binary babylon":
- this.saveFileDialog.DefaultExt = "babylon";
- this.saveFileDialog.Filter = "Babylon files|*.babylon";
- chkDracoCompression.Checked = false;
- chkDracoCompression.Enabled = false;
- chkWriteTextures.Enabled = true;
- chkOverwriteTextures.Enabled = true;
+
+ Process.Start(WebServer.url + WebServer.SceneFilename);
+
+ WindowState = FormWindowState.Minimized;
+ }
+ }
+ catch{}
+ finally
+ {
+ if (chkUsePreExportProces.Checked && !chkApplyPreprocessToScene.Checked)
+ {
+ Loader.Core.SetQuietMode(true);
+ Loader.Core.FileFetch();
+ Loader.Core.SetQuietMode(false);
+ }
+ }
+ }
+
+ private void butClose_Click(object sender, EventArgs e)
+ {
+ Close();
+ }
+
+ private void comboOutputFormat_SelectedIndexChanged(object sender, EventArgs e)
+ {
+ var outputFormat = comboOutputFormat.SelectedItem.ToString();
+ switch (outputFormat)
+ {
+ case "babylon":
+ case "binary babylon":
+ this.saveFileDialog.DefaultExt = "babylon";
+ this.saveFileDialog.Filter = "Babylon files|*.babylon";
+ chkDracoCompression.Checked = false;
+ chkDracoCompression.Enabled = false;
+ chkWriteTextures.Enabled = true;
+ chkOverwriteTextures.Enabled = true;
txtTexturesPath.Text = string.Empty;
txtTexturesPath.Enabled = false;
- textureLabel.Enabled = false;
- btnTxtBrowse.Enabled = false;
- chkNoAutoLight.Enabled = true;
- chkFullPBR.Enabled = true;
- btnEnvBrowse.Enabled = true;
- txtEnvironmentName.Enabled = true;
- chkKHRMaterialsUnlit.Enabled = false;
- chkKHRLightsPunctual.Enabled = false;
- chkKHRTextureTransform.Enabled = false;
- break;
- case "gltf":
- this.saveFileDialog.DefaultExt = "gltf";
- this.saveFileDialog.Filter = "glTF files|*.gltf";
- chkDracoCompression.Enabled = gltfPipelineInstalled;
- chkWriteTextures.Enabled = true;
- chkOverwriteTextures.Enabled = true;
+ textureLabel.Enabled = false;
+ btnTxtBrowse.Enabled = false;
+ chkNoAutoLight.Enabled = true;
+ chkFullPBR.Enabled = true;
+ btnEnvBrowse.Enabled = true;
+ txtEnvironmentName.Enabled = true;
+ chkKHRMaterialsUnlit.Enabled = false;
+ chkKHRLightsPunctual.Enabled = false;
+ chkKHRTextureTransform.Enabled = false;
+ break;
+ case "gltf":
+ this.saveFileDialog.DefaultExt = "gltf";
+ this.saveFileDialog.Filter = "glTF files|*.gltf";
+ chkDracoCompression.Enabled = gltfPipelineInstalled;
+ chkWriteTextures.Enabled = true;
+ chkOverwriteTextures.Enabled = true;
txtTexturesPath.Enabled = true;
- textureLabel.Enabled = true;
- btnTxtBrowse.Enabled = true;
- chkNoAutoLight.Enabled = false;
- chkNoAutoLight.Checked = false;
- chkFullPBR.Enabled = false;
- chkFullPBR.Checked = false;
- btnEnvBrowse.Enabled = false;
- txtEnvironmentName.Enabled = false;
- txtEnvironmentName.Text = string.Empty;
- chkKHRMaterialsUnlit.Enabled = true;
- chkKHRLightsPunctual.Enabled = true;
- chkKHRTextureTransform.Enabled = true;
- break;
- case "glb":
- this.saveFileDialog.DefaultExt = "glb";
- this.saveFileDialog.Filter = "glb files|*.glb";
- chkDracoCompression.Enabled = gltfPipelineInstalled;
- chkWriteTextures.Checked = true;
- chkWriteTextures.Enabled = false;
- chkOverwriteTextures.Checked = true;
- chkOverwriteTextures.Enabled = false;
+ textureLabel.Enabled = true;
+ btnTxtBrowse.Enabled = true;
+ chkNoAutoLight.Enabled = false;
+ chkNoAutoLight.Checked = false;
+ chkFullPBR.Enabled = false;
+ chkFullPBR.Checked = false;
+ btnEnvBrowse.Enabled = false;
+ txtEnvironmentName.Enabled = false;
+ txtEnvironmentName.Text = string.Empty;
+ chkKHRMaterialsUnlit.Enabled = true;
+ chkKHRLightsPunctual.Enabled = true;
+ chkKHRTextureTransform.Enabled = true;
+ break;
+ case "glb":
+ this.saveFileDialog.DefaultExt = "glb";
+ this.saveFileDialog.Filter = "glb files|*.glb";
+ chkDracoCompression.Enabled = gltfPipelineInstalled;
+ chkWriteTextures.Checked = true;
+ chkWriteTextures.Enabled = false;
+ chkOverwriteTextures.Checked = true;
+ chkOverwriteTextures.Enabled = false;
txtTexturesPath.Text = string.Empty;
txtTexturesPath.Enabled = false;
- textureLabel.Enabled = false;
- btnTxtBrowse.Enabled = false;
- chkNoAutoLight.Enabled = false;
- chkNoAutoLight.Checked = false;
- chkFullPBR.Enabled = false;
- chkFullPBR.Checked = false;
- btnEnvBrowse.Enabled = false;
- txtEnvironmentName.Enabled = false;
- txtEnvironmentName.Text = string.Empty;
- chkKHRMaterialsUnlit.Enabled = true;
- chkKHRLightsPunctual.Enabled = true;
- chkKHRTextureTransform.Enabled = true;
- break;
- }
-
+ textureLabel.Enabled = false;
+ btnTxtBrowse.Enabled = false;
+ chkNoAutoLight.Enabled = false;
+ chkNoAutoLight.Checked = false;
+ chkFullPBR.Enabled = false;
+ chkFullPBR.Checked = false;
+ btnEnvBrowse.Enabled = false;
+ txtEnvironmentName.Enabled = false;
+ txtEnvironmentName.Text = string.Empty;
+ chkKHRMaterialsUnlit.Enabled = true;
+ chkKHRLightsPunctual.Enabled = true;
+ chkKHRTextureTransform.Enabled = true;
+ break;
+ }
+
string newModelPath = Path.ChangeExtension(txtModelPath.Text, this.saveFileDialog.DefaultExt);
this.txtModelPath.MaxPath(newModelPath);
- }
-
- ///
- /// Show a toolTip when the mouse is over the chkDracoCompression checkBox
- ///
- ///
- ///
- bool IsShown = false;
- private void groupBox1_MouseMove(object sender, MouseEventArgs e)
- {
- Control ctrl = groupBox1.GetChildAtPoint(e.Location);
-
- if (ctrl != null)
- {
- if (ctrl == chkDracoCompression && !ctrl.Enabled && !IsShown)
- {
- string tip = "For glTF and glb export only.\nNode.js and gltf-pipeline modules are required.";
- toolTipDracoCompression.Show(tip, chkDracoCompression, chkDracoCompression.Width / 2, chkDracoCompression.Height / 2);
- IsShown = true;
- }
- }
- else
- {
- toolTipDracoCompression.Hide(chkDracoCompression);
- IsShown = false;
- }
- }
-
- ///
- /// Handle the tab navigation
- ///
- ///
- ///
- private void ExporterForm_KeyDown(object sender, KeyEventArgs e)
- {
- if (e.KeyCode == Keys.Tab)
- {
- if (e.Modifiers == Keys.Shift)
- ProcessTabKey(false);
- else
- ProcessTabKey(true);
- }
- }
-
- private async void butMultiExport_Click(object sender, EventArgs e)
- {
- string outputFileExt;
- outputFileExt = comboOutputFormat.SelectedItem.ToString();
- if (outputFileExt.Contains("binary babylon"))
- outputFileExt = "babylon";
-
- ExportItemList exportItemList = new ExportItemList(outputFileExt);
-
- exportItemList.LoadFromData();
-
- int numLoadedItems = exportItemList.Count;
-
- if (ModifierKeys == Keys.Shift)
- {
- MultiExportForm form = new MultiExportForm(exportItemList);
- form.ShowDialog(this);
- }
- else if (numLoadedItems > 0)
- {
- try
- {
- if (chkUsePreExportProces.Checked)
- {
- Loader.Core.FileHold();
- }
- await DoExport(exportItemList);
- }
- catch{}
- finally
- {
- if (chkUsePreExportProces.Checked && !chkApplyPreprocessToScene.Checked)
- {
- Loader.Core.SetQuietMode(true);
- Loader.Core.FileFetch();
- Loader.Core.SetQuietMode(false);
- }
- }
- }
- }
-
- private void chkUsePreExportProces_CheckedChanged(object sender, EventArgs e)
- {
- if (!chkUsePreExportProces.Checked)
- {
- chkMrgContainersAndXref.Enabled = false;
- cmbBakeAnimationOptions.Enabled = false;
- lblBakeAnimation.Enabled = false;
- chkApplyPreprocessToScene.Enabled = false;
- }
- else
- {
- chkMrgContainersAndXref.Enabled = true;
- cmbBakeAnimationOptions.Enabled = true;
- lblBakeAnimation.Enabled = true;
- chkApplyPreprocessToScene.Enabled = true;
- }
- }
- }
-}
+ }
+
+ ///
+ /// Show a toolTip when the mouse is over the chkDracoCompression checkBox
+ ///
+ ///
+ ///
+ bool IsShown = false;
+ private void groupBox1_MouseMove(object sender, MouseEventArgs e)
+ {
+ Control ctrl = groupBox1.GetChildAtPoint(e.Location);
+
+ if (ctrl != null)
+ {
+ if (ctrl == chkDracoCompression && !ctrl.Enabled && !IsShown)
+ {
+ string tip = "For glTF and glb export only.\nNode.js and gltf-pipeline modules are required.";
+ toolTipDracoCompression.Show(tip, chkDracoCompression, chkDracoCompression.Width / 2, chkDracoCompression.Height / 2);
+ IsShown = true;
+ }
+ }
+ else
+ {
+ toolTipDracoCompression.Hide(chkDracoCompression);
+ IsShown = false;
+ }
+ }
+
+ ///
+ /// Handle the tab navigation
+ ///
+ ///
+ ///
+ private void ExporterForm_KeyDown(object sender, KeyEventArgs e)
+ {
+ if (e.KeyCode == Keys.Tab)
+ {
+ if (e.Modifiers == Keys.Shift)
+ ProcessTabKey(false);
+ else
+ ProcessTabKey(true);
+ }
+ }
+
+ private async void butMultiExport_Click(object sender, EventArgs e)
+ {
+ string outputFileExt;
+ outputFileExt = comboOutputFormat.SelectedItem.ToString();
+ if (outputFileExt.Contains("binary babylon"))
+ outputFileExt = "babylon";
+
+ ExportItemList exportItemList = new ExportItemList(outputFileExt);
+
+ exportItemList.LoadFromData();
+
+ int numLoadedItems = exportItemList.Count;
+
+ if (ModifierKeys == Keys.Shift)
+ {
+ MultiExportForm form = new MultiExportForm(exportItemList);
+ form.ShowDialog(this);
+ }
+ else if (numLoadedItems > 0)
+ {
+ try
+ {
+ if (chkUsePreExportProces.Checked)
+ {
+ Loader.Core.FileHold();
+ }
+ await DoExport(exportItemList);
+ }
+ catch{}
+ finally
+ {
+ if (chkUsePreExportProces.Checked && !chkApplyPreprocessToScene.Checked)
+ {
+ Loader.Core.SetQuietMode(true);
+ Loader.Core.FileFetch();
+ Loader.Core.SetQuietMode(false);
+ }
+ }
+ }
+ }
+
+ private void chkUsePreExportProces_CheckedChanged(object sender, EventArgs e)
+ {
+ if (!chkUsePreExportProces.Checked)
+ {
+ chkMrgContainersAndXref.Enabled = false;
+ cmbBakeAnimationOptions.Enabled = false;
+ lblBakeAnimation.Enabled = false;
+ chkApplyPreprocessToScene.Enabled = false;
+ }
+ else
+ {
+ chkMrgContainersAndXref.Enabled = true;
+ cmbBakeAnimationOptions.Enabled = true;
+ lblBakeAnimation.Enabled = true;
+ chkApplyPreprocessToScene.Enabled = true;
+ }
+ }
+ }
+}
diff --git a/3ds Max/Max2Babylon/GlobalUtility.cs b/3ds Max/Max2Babylon/GlobalUtility.cs
index e98a6f7a..69b1195b 100644
--- a/3ds Max/Max2Babylon/GlobalUtility.cs
+++ b/3ds Max/Max2Babylon/GlobalUtility.cs
@@ -3,10 +3,6 @@
using Autodesk.Max.Plugins;
using System;
using System.Collections.Generic;
-using System.Diagnostics;
-using System.Runtime.InteropServices;
-using Autodesk.Max.MaxSDK.AssetManagement;
-using Object = Autodesk.Max.Plugins.Object;
namespace Max2Babylon
{
@@ -43,6 +39,7 @@ class GlobalUtility : GUP
private void MenuSystemStartupHandler(IntPtr objPtr, INotifyInfo infoPtr)
{
InstallMenus();
+ AddCallbacks();
}
private void InitializeBabylonGuids(IntPtr param0, IntPtr param1)
@@ -198,7 +195,7 @@ public override uint Start
actionManager.RegisterActionTable(actionTable);
actionManager.ActivateActionTable(actionCallback as ActionCallback, idActionTable);
-
+
// Set up menus
#if MAX2018 || MAX2019
@@ -206,9 +203,10 @@ public override uint Start
m_SystemStartupDelegate = new GlobalDelegates.Delegate5(MenuSystemStartupHandler);
global.RegisterNotification(m_SystemStartupDelegate, null, SystemNotificationCode.SystemStartup);
-
+
#else
InstallMenus();
+ AddCallbacks();
#endif
RegisterFilePreOpen();
RegisterPostSceneReset();
@@ -223,7 +221,7 @@ public void RegisterFilePreOpen()
if (!filePreOpenCallback)
{
m_FilePreOpenDelegate = new GlobalDelegates.Delegate5(this.InitializeBabylonGuids);
- GlobalInterface.Instance.RegisterNotification(this.m_FilePreOpenDelegate, null, SystemNotificationCode.FilePreOpen );
+ GlobalInterface.Instance.RegisterNotification(this.m_FilePreOpenDelegate, null, SystemNotificationCode.FilePreOpen);
filePreOpenCallback = true;
}
@@ -239,7 +237,7 @@ public void RegisterPostSceneReset()
postSceneResetCallback = true;
}
}
-
+
public void RegisterNodeAddedCallback()
{
@@ -250,7 +248,7 @@ public void RegisterNodeAddedCallback()
//bug on Autodesk API SystemNotificationCode.SceneAddedNode doesn't work for max 2015-2016
GlobalInterface.Instance.RegisterNotification(this.m_NodeAddedDelegate, null, SystemNotificationCode.NodeLinked );
#else
- GlobalInterface.Instance.RegisterNotification(this.m_NodeAddedDelegate, null, SystemNotificationCode.SceneAddedNode );
+ GlobalInterface.Instance.RegisterNotification(this.m_NodeAddedDelegate, null, SystemNotificationCode.SceneAddedNode);
#endif
nodeAddedCallback = true;
}
@@ -350,5 +348,45 @@ private void InstallMenus()
Loader.Global.COREInterface.MenuManager.UpdateMenuBar();
}
+
+ private void AddCallbacks()
+ {
+ // Retreive the material just created
+ string cmd = "maxMaterial = callbacks.notificationParam();";
+
+ // Easy syntax for a switch/case expression
+ cmd += "\r\n" + "if classof maxMaterial == StandardMaterial then";
+ cmd += "\r\n" + "(";
+ cmd += "\r\n" + BabylonExporter.GetStandardBabylonAttributesDataCA();
+ cmd += "\r\n" + "custAttributes.add maxMaterial babylonAttributesDataCA;";
+ cmd += "\r\n" + ")";
+ cmd += "\r\n" + "else if classof maxMaterial == PhysicalMaterial then";
+ cmd += "\r\n" + "(";
+ cmd += "\r\n" + BabylonExporter.GetPhysicalBabylonAttributesDataCA();
+ cmd += "\r\n" + "custAttributes.add maxMaterial babylonAttributesDataCA;";
+ cmd += "\r\n" + ")";
+ cmd += "\r\n" + "else if classof maxMaterial == ai_standard_surface then";
+ cmd += "\r\n" + "(";
+ cmd += "\r\n" + BabylonExporter.GetAiStandardSurfaceBabylonAttributesDataCA();
+ cmd += "\r\n" + "custAttributes.add maxMaterial babylonAttributesDataCA;";
+ cmd += "\r\n" + ")";
+
+ // Escape cmd
+ cmd = cmd.Replace("\"", "\\\"");
+
+ // Create cmd as string
+ ManagedServices.MaxscriptSDK.ExecuteMaxscriptCommand("cmd = \"" + cmd + "\"");
+
+ // Remove any definition of this callback
+ ManagedServices.MaxscriptSDK.ExecuteMaxscriptCommand("callbacks.removeScripts id:#BabylonAttributesMaterial;");
+
+ // Add a callback triggered when a new material is created
+ // Note:
+ // The callback is NOT persistent (default value is false).
+ // This means that it is not linked to a specific file.
+ // Rather, the callback is active for the current run of 3ds Max.
+ // See Autodesk documentation for more info: http://help.autodesk.com/view/3DSMAX/2015/ENU/?guid=__files_GUID_C1F6495F_5831_4FC8_A00C_667C5F2EAE36_htm
+ ManagedServices.MaxscriptSDK.ExecuteMaxscriptCommand("callbacks.addScript #mtlRefAdded cmd id:#BabylonAttributesMaterial;");
+ }
}
}
diff --git a/3ds Max/Max2Babylon/MaxScriptManager.cs b/3ds Max/Max2Babylon/MaxScriptManager.cs
index fe87e0bb..921c1a26 100644
--- a/3ds Max/Max2Babylon/MaxScriptManager.cs
+++ b/3ds Max/Max2Babylon/MaxScriptManager.cs
@@ -51,13 +51,13 @@ public static void Export(MaxExportParameters exportParameters)
};
exporter.OnMessage += (message, color, rank, emphasis) =>
{
- // TODO - Add a log level parameter (Error, Warning, Message, Verbose)
- if (rank < 1)
- {
- Autodesk.Max.GlobalInterface.Instance.TheListener.EditStream.Printf(message + "\n");
- }
+ Autodesk.Max.GlobalInterface.Instance.TheListener.EditStream.Printf(message + "\n");
};
-
+ exporter.OnVerbose += (message, color, rank, emphasis) =>
+ {
+ Autodesk.Max.GlobalInterface.Instance.TheListener.EditStream.Printf(message + "\n");
+ };
+
// Start export
exporter.Export(exportParameters);
}
diff --git a/3ds Max/Max2Babylon/Tools/Tools.cs b/3ds Max/Max2Babylon/Tools/Tools.cs
index bfba8359..a62ee791 100644
--- a/3ds Max/Max2Babylon/Tools/Tools.cs
+++ b/3ds Max/Max2Babylon/Tools/Tools.cs
@@ -42,7 +42,7 @@ public static IEnumerable GetLoadableTypes(this Assembly assembly)
}
}
- #region IIPropertyContainer
+ #region IIGameProperty
public static string GetStringProperty(this IIGameProperty property)
{
@@ -84,6 +84,48 @@ public static IPoint4 GetPoint4Property(this IIGameProperty property)
return value;
}
+ #endregion
+
+ #region IIPropertyContainer
+
+ public static string GetStringProperty(this IIPropertyContainer propertyContainer, string propName, string defaultValue = null)
+ {
+ IIGameProperty gameProperty = propertyContainer.QueryProperty(propName);
+ return gameProperty != null ? gameProperty.GetStringProperty() : defaultValue;
+ }
+
+ public static int GetIntProperty(this IIPropertyContainer propertyContainer, string propName, int defaultValue = 0)
+ {
+ IIGameProperty gameProperty = propertyContainer.QueryProperty(propName);
+ return gameProperty != null ? gameProperty.GetIntValue() : defaultValue;
+ }
+
+ public static bool GetBoolProperty(this IIPropertyContainer propertyContainer, string propName, bool defaultValue = false)
+ {
+ IIGameProperty gameProperty = propertyContainer.QueryProperty(propName);
+ return gameProperty != null ? gameProperty.GetBoolValue() : defaultValue;
+ }
+
+ public static float GetFloatProperty(this IIPropertyContainer propertyContainer, string propName, float defaultValue = 0f)
+ {
+ IIGameProperty gameProperty = propertyContainer.QueryProperty(propName);
+ return gameProperty != null ? gameProperty.GetFloatValue() : defaultValue;
+ }
+
+ public static IPoint3 GetPoint3Property(this IIPropertyContainer propertyContainer, string propName, IPoint3 defaultValue = null)
+ {
+ IIGameProperty gameProperty = propertyContainer.QueryProperty(propName);
+ return gameProperty != null ? gameProperty.GetPoint3Property() : defaultValue;
+ }
+
+ public static IPoint4 GetPoint4Property(this IIPropertyContainer propertyContainer, string propName, IPoint4 defaultValue = null)
+ {
+ IIGameProperty gameProperty = propertyContainer.QueryProperty(propName);
+ return gameProperty != null ? gameProperty.GetPoint4Property() : defaultValue;
+ }
+
+ // ---
+
public static string GetStringProperty(this IIPropertyContainer propertyContainer, int indexProperty)
{
return propertyContainer.GetProperty(indexProperty).GetStringProperty();
@@ -402,6 +444,47 @@ public static IPoint3 ToPoint3(this Vector3 value)
return Loader.Global.Point3.Create(value.X, value.Y, value.Z);
}
+ public static IPoint2 Clone(this IPoint2 value)
+ {
+ return Loader.Global.Point2.Create(value.X, value.Y);
+ }
+
+ public static IPoint3 Clone(this IPoint3 value)
+ {
+ return Loader.Global.Point3.Create(value.X, value.Y, value.Z);
+ }
+
+ public static IPoint4 Clone(this IPoint4 value)
+ {
+ return Loader.Global.Point4.Create(value.X, value.Y, value.Z, value.W);
+ }
+
+ public static float[] Clone2(this float[] value)
+ {
+ if (value == null)
+ {
+ return null;
+ }
+ return value.ToList().ToArray();
+ }
+
+ public static float[] MultiplyBy(this float[] array, float value)
+ {
+ if (array == null)
+ {
+ return null;
+ }
+ else
+ {
+ float[] result = new float[array.Length];
+ for (int i = 0; i < array.Length; i++)
+ {
+ result[i] = array[i] * value;
+ }
+ return result;
+ }
+ }
+
public static Vector3 ToVector3(this IPoint3 value)
{
return new Vector3(value.X, value.Y, value.Z);
diff --git a/3ds Max/Samples/babylon/BabylonMaterialAttributes/BackfaceCulling.babylon b/3ds Max/Samples/babylon/BabylonMaterialAttributes/BackfaceCulling.babylon
new file mode 100644
index 00000000..150b20cd
--- /dev/null
+++ b/3ds Max/Samples/babylon/BabylonMaterialAttributes/BackfaceCulling.babylon
@@ -0,0 +1 @@
+{"producer":{"name":"3dsmax","version":"2019","exporter_version":"1.5.0","file":"BackfaceCulling.babylon"},"autoClear":true,"clearColor":[0.0,0.0,0.0],"ambientColor":[0.0,0.0,0.0],"fogMode":0,"fogColor":null,"fogStart":0.0,"fogEnd":0.0,"fogDensity":0.0,"gravity":[0.0,0.0,0.0],"physicsEngine":null,"physicsEnabled":false,"physicsGravity":null,"lights":[{"direction":[0.0,1.0,0.0],"type":3,"diffuse":[1.0,1.0,1.0],"specular":[1.0,1.0,1.0],"intensity":1.0,"range":3.40282347E+38,"exponent":0.0,"angle":0.0,"groundColor":[0.0,0.0,0.0],"excludedMeshesIds":null,"includedOnlyMeshesIds":null,"lightmapMode":null,"falloffType":null,"name":"Default light","id":"a5cd8b04-8b20-4455-92bc-15596055dc01","parentId":null,"position":[0.0,0.0,0.0],"animations":null,"autoAnimate":false,"autoAnimateFrom":0,"autoAnimateTo":0,"autoAnimateLoop":false,"metadata":null}],"meshes":[{"materialId":"814decf0-a4ea-454e-a404-277528478ef5","isEnabled":true,"isVisible":true,"positions":[0.0,1.0,0.0,0.0,0.9808,0.1951,-0.0381,0.9808,0.1913,0.0,1.0,0.0,-0.0381,0.9808,0.1913,-0.0747,0.9808,0.1802,0.0,1.0,0.0,-0.0747,0.9808,0.1802,-0.1084,0.9808,0.1622,0.0,1.0,0.0,-0.1084,0.9808,0.1622,-0.1379,0.9808,0.1379,0.0,1.0,0.0,-0.1379,0.9808,0.1379,-0.1622,0.9808,0.1084,0.0,1.0,0.0,-0.1622,0.9808,0.1084,-0.1802,0.9808,0.0747,0.0,1.0,0.0,-0.1802,0.9808,0.0747,-0.1913,0.9808,0.0381,0.0,1.0,0.0,-0.1913,0.9808,0.0381,-0.1951,0.9808,0.0,0.0,1.0,0.0,-0.1951,0.9808,0.0,-0.1913,0.9808,-0.0381,0.0,1.0,0.0,-0.1913,0.9808,-0.0381,-0.1802,0.9808,-0.0747,0.0,1.0,0.0,-0.1802,0.9808,-0.0747,-0.1622,0.9808,-0.1084,0.0,1.0,0.0,-0.1622,0.9808,-0.1084,-0.1379,0.9808,-0.1379,0.0,1.0,0.0,-0.1379,0.9808,-0.1379,-0.1084,0.9808,-0.1622,0.0,1.0,0.0,-0.1084,0.9808,-0.1622,-0.0747,0.9808,-0.1802,0.0,1.0,0.0,-0.0747,0.9808,-0.1802,-0.0381,0.9808,-0.1913,0.0,1.0,0.0,-0.0381,0.9808,-0.1913,0.0,0.9808,-0.1951,-0.0747,0.9239,0.3753,-0.0381,0.9808,0.1913,0.0,0.9808,0.1951,0.0,0.9808,0.1951,0.0,0.9239,0.3827,-0.0747,0.9239,0.3753,-0.1464,0.9239,0.3536,-0.0747,0.9808,0.1802,-0.0381,0.9808,0.1913,-0.0381,0.9808,0.1913,-0.0747,0.9239,0.3753,-0.1464,0.9239,0.3536,-0.2126,0.9239,0.3182,-0.1084,0.9808,0.1622,-0.0747,0.9808,0.1802,-0.0747,0.9808,0.1802,-0.1464,0.9239,0.3536,-0.2126,0.9239,0.3182,-0.2706,0.9239,0.2706,-0.1379,0.9808,0.1379,-0.1084,0.9808,0.1622,-0.1084,0.9808,0.1622,-0.2126,0.9239,0.3182,-0.2706,0.9239,0.2706,-0.3182,0.9239,0.2126,-0.1622,0.9808,0.1084,-0.1379,0.9808,0.1379,-0.1379,0.9808,0.1379,-0.2706,0.9239,0.2706,-0.3182,0.9239,0.2126,-0.3536,0.9239,0.1464,-0.1802,0.9808,0.0747,-0.1622,0.9808,0.1084,-0.1622,0.9808,0.1084,-0.3182,0.9239,0.2126,-0.3536,0.9239,0.1464,-0.3753,0.9239,0.0747,-0.1913,0.9808,0.0381,-0.1802,0.9808,0.0747,-0.1802,0.9808,0.0747,-0.3536,0.9239,0.1464,-0.3753,0.9239,0.0747,-0.3827,0.9239,0.0,-0.1951,0.9808,0.0,-0.1913,0.9808,0.0381,-0.1913,0.9808,0.0381,-0.3753,0.9239,0.0747,-0.3827,0.9239,0.0,-0.3753,0.9239,-0.0747,-0.1913,0.9808,-0.0381,-0.1951,0.9808,0.0,-0.1951,0.9808,0.0,-0.3827,0.9239,0.0,-0.3753,0.9239,-0.0747,-0.3536,0.9239,-0.1464,-0.1802,0.9808,-0.0747,-0.1913,0.9808,-0.0381,-0.1913,0.9808,-0.0381,-0.3753,0.9239,-0.0747,-0.3536,0.9239,-0.1464,-0.3182,0.9239,-0.2126,-0.1622,0.9808,-0.1084,-0.1802,0.9808,-0.0747,-0.1802,0.9808,-0.0747,-0.3536,0.9239,-0.1464,-0.3182,0.9239,-0.2126,-0.2706,0.9239,-0.2706,-0.1379,0.9808,-0.1379,-0.1622,0.9808,-0.1084,-0.1622,0.9808,-0.1084,-0.3182,0.9239,-0.2126,-0.2706,0.9239,-0.2706,-0.2126,0.9239,-0.3182,-0.1084,0.9808,-0.1622,-0.1379,0.9808,-0.1379,-0.1379,0.9808,-0.1379,-0.2706,0.9239,-0.2706,-0.2126,0.9239,-0.3182,-0.1464,0.9239,-0.3536,-0.0747,0.9808,-0.1802,-0.1084,0.9808,-0.1622,-0.1084,0.9808,-0.1622,-0.2126,0.9239,-0.3182,-0.1464,0.9239,-0.3536,-0.0747,0.9239,-0.3753,-0.0381,0.9808,-0.1913,-0.0747,0.9808,-0.1802,-0.0747,0.9808,-0.1802,-0.1464,0.9239,-0.3536,-0.0747,0.9239,-0.3753,0.0,0.9239,-0.3827,0.0,0.9808,-0.1951,-0.0381,0.9808,-0.1913,-0.0381,0.9808,-0.1913,-0.0747,0.9239,-0.3753,0.0,0.9239,-0.3827,-0.1084,0.8315,0.5449,-0.0747,0.9239,0.3753,0.0,0.9239,0.3827,0.0,0.9239,0.3827,0.0,0.8315,0.5556,-0.1084,0.8315,0.5449,-0.2126,0.8315,0.5133,-0.1464,0.9239,0.3536,-0.0747,0.9239,0.3753,-0.0747,0.9239,0.3753,-0.1084,0.8315,0.5449,-0.2126,0.8315,0.5133,-0.3087,0.8315,0.4619,-0.2126,0.9239,0.3182,-0.1464,0.9239,0.3536,-0.1464,0.9239,0.3536,-0.2126,0.8315,0.5133,-0.3087,0.8315,0.4619,-0.3928,0.8315,0.3928,-0.2706,0.9239,0.2706,-0.2126,0.9239,0.3182,-0.2126,0.9239,0.3182,-0.3087,0.8315,0.4619,-0.3928,0.8315,0.3928,-0.4619,0.8315,0.3087,-0.3182,0.9239,0.2126,-0.2706,0.9239,0.2706,-0.2706,0.9239,0.2706,-0.3928,0.8315,0.3928,-0.4619,0.8315,0.3087,-0.5133,0.8315,0.2126,-0.3536,0.9239,0.1464,-0.3182,0.9239,0.2126,-0.3182,0.9239,0.2126,-0.4619,0.8315,0.3087,-0.5133,0.8315,0.2126,-0.5449,0.8315,0.1084,-0.3753,0.9239,0.0747,-0.3536,0.9239,0.1464,-0.3536,0.9239,0.1464,-0.5133,0.8315,0.2126,-0.5449,0.8315,0.1084,-0.5556,0.8315,0.0,-0.3827,0.9239,0.0,-0.3753,0.9239,0.0747,-0.3753,0.9239,0.0747,-0.5449,0.8315,0.1084,-0.5556,0.8315,0.0,-0.5449,0.8315,-0.1084,-0.3753,0.9239,-0.0747,-0.3827,0.9239,0.0,-0.3827,0.9239,0.0,-0.5556,0.8315,0.0,-0.5449,0.8315,-0.1084,-0.5133,0.8315,-0.2126,-0.3536,0.9239,-0.1464,-0.3753,0.9239,-0.0747,-0.3753,0.9239,-0.0747,-0.5449,0.8315,-0.1084,-0.5133,0.8315,-0.2126,-0.4619,0.8315,-0.3087,-0.3182,0.9239,-0.2126,-0.3536,0.9239,-0.1464,-0.3536,0.9239,-0.1464,-0.5133,0.8315,-0.2126,-0.4619,0.8315,-0.3087,-0.3928,0.8315,-0.3928,-0.2706,0.9239,-0.2706,-0.3182,0.9239,-0.2126,-0.3182,0.9239,-0.2126,-0.4619,0.8315,-0.3087,-0.3928,0.8315,-0.3928,-0.3087,0.8315,-0.4619,-0.2126,0.9239,-0.3182,-0.2706,0.9239,-0.2706,-0.2706,0.9239,-0.2706,-0.3928,0.8315,-0.3928,-0.3087,0.8315,-0.4619,-0.2126,0.8315,-0.5133,-0.1464,0.9239,-0.3536,-0.2126,0.9239,-0.3182,-0.2126,0.9239,-0.3182,-0.3087,0.8315,-0.4619,-0.2126,0.8315,-0.5133,-0.1084,0.8315,-0.5449,-0.0747,0.9239,-0.3753,-0.1464,0.9239,-0.3536,-0.1464,0.9239,-0.3536,-0.2126,0.8315,-0.5133,-0.1084,0.8315,-0.5449,0.0,0.8315,-0.5556,0.0,0.9239,-0.3827,-0.0747,0.9239,-0.3753,-0.0747,0.9239,-0.3753,-0.1084,0.8315,-0.5449,0.0,0.8315,-0.5556,-0.1379,0.7071,0.6935,-0.1084,0.8315,0.5449,0.0,0.8315,0.5556,0.0,0.8315,0.5556,0.0,0.7071,0.7071,-0.1379,0.7071,0.6935,-0.2706,0.7071,0.6533,-0.2126,0.8315,0.5133,-0.1084,0.8315,0.5449,-0.1084,0.8315,0.5449,-0.1379,0.7071,0.6935,-0.2706,0.7071,0.6533,-0.3928,0.7071,0.5879,-0.3087,0.8315,0.4619,-0.2126,0.8315,0.5133,-0.2126,0.8315,0.5133,-0.2706,0.7071,0.6533,-0.3928,0.7071,0.5879,-0.5,0.7071,0.5,-0.3928,0.8315,0.3928,-0.3087,0.8315,0.4619,-0.3087,0.8315,0.4619,-0.3928,0.7071,0.5879,-0.5,0.7071,0.5,-0.5879,0.7071,0.3928,-0.4619,0.8315,0.3087,-0.3928,0.8315,0.3928,-0.3928,0.8315,0.3928,-0.5,0.7071,0.5,-0.5879,0.7071,0.3928,-0.6533,0.7071,0.2706,-0.5133,0.8315,0.2126,-0.4619,0.8315,0.3087,-0.4619,0.8315,0.3087,-0.5879,0.7071,0.3928,-0.6533,0.7071,0.2706,-0.6935,0.7071,0.1379,-0.5449,0.8315,0.1084,-0.5133,0.8315,0.2126,-0.5133,0.8315,0.2126,-0.6533,0.7071,0.2706,-0.6935,0.7071,0.1379,-0.7071,0.7071,0.0,-0.5556,0.8315,0.0,-0.5449,0.8315,0.1084,-0.5449,0.8315,0.1084,-0.6935,0.7071,0.1379,-0.7071,0.7071,0.0,-0.6935,0.7071,-0.1379,-0.5449,0.8315,-0.1084,-0.5556,0.8315,0.0,-0.5556,0.8315,0.0,-0.7071,0.7071,0.0,-0.6935,0.7071,-0.1379,-0.6533,0.7071,-0.2706,-0.5133,0.8315,-0.2126,-0.5449,0.8315,-0.1084,-0.5449,0.8315,-0.1084,-0.6935,0.7071,-0.1379,-0.6533,0.7071,-0.2706,-0.5879,0.7071,-0.3928,-0.4619,0.8315,-0.3087,-0.5133,0.8315,-0.2126,-0.5133,0.8315,-0.2126,-0.6533,0.7071,-0.2706,-0.5879,0.7071,-0.3928,-0.5,0.7071,-0.5,-0.3928,0.8315,-0.3928,-0.4619,0.8315,-0.3087,-0.4619,0.8315,-0.3087,-0.5879,0.7071,-0.3928,-0.5,0.7071,-0.5,-0.3928,0.7071,-0.5879,-0.3087,0.8315,-0.4619,-0.3928,0.8315,-0.3928,-0.3928,0.8315,-0.3928,-0.5,0.7071,-0.5,-0.3928,0.7071,-0.5879,-0.2706,0.7071,-0.6533,-0.2126,0.8315,-0.5133,-0.3087,0.8315,-0.4619,-0.3087,0.8315,-0.4619,-0.3928,0.7071,-0.5879,-0.2706,0.7071,-0.6533,-0.1379,0.7071,-0.6935,-0.1084,0.8315,-0.5449,-0.2126,0.8315,-0.5133,-0.2126,0.8315,-0.5133,-0.2706,0.7071,-0.6533,-0.1379,0.7071,-0.6935,0.0,0.7071,-0.7071,0.0,0.8315,-0.5556,-0.1084,0.8315,-0.5449,-0.1084,0.8315,-0.5449,-0.1379,0.7071,-0.6935,0.0,0.7071,-0.7071,-0.1622,0.5556,0.8155,-0.1379,0.7071,0.6935,0.0,0.7071,0.7071,0.0,0.7071,0.7071,0.0,0.5556,0.8315,-0.1622,0.5556,0.8155,-0.3182,0.5556,0.7682,-0.2706,0.7071,0.6533,-0.1379,0.7071,0.6935,-0.1379,0.7071,0.6935,-0.1622,0.5556,0.8155,-0.3182,0.5556,0.7682,-0.4619,0.5556,0.6913,-0.3928,0.7071,0.5879,-0.2706,0.7071,0.6533,-0.2706,0.7071,0.6533,-0.3182,0.5556,0.7682,-0.4619,0.5556,0.6913,-0.5879,0.5556,0.5879,-0.5,0.7071,0.5,-0.3928,0.7071,0.5879,-0.3928,0.7071,0.5879,-0.4619,0.5556,0.6913,-0.5879,0.5556,0.5879,-0.6913,0.5556,0.4619,-0.5879,0.7071,0.3928,-0.5,0.7071,0.5,-0.5,0.7071,0.5,-0.5879,0.5556,0.5879,-0.6913,0.5556,0.4619,-0.7682,0.5556,0.3182,-0.6533,0.7071,0.2706,-0.5879,0.7071,0.3928,-0.5879,0.7071,0.3928,-0.6913,0.5556,0.4619,-0.7682,0.5556,0.3182,-0.8155,0.5556,0.1622,-0.6935,0.7071,0.1379,-0.6533,0.7071,0.2706,-0.6533,0.7071,0.2706,-0.7682,0.5556,0.3182,-0.8155,0.5556,0.1622,-0.8315,0.5556,0.0,-0.7071,0.7071,0.0,-0.6935,0.7071,0.1379,-0.6935,0.7071,0.1379,-0.8155,0.5556,0.1622,-0.8315,0.5556,0.0,-0.8155,0.5556,-0.1622,-0.6935,0.7071,-0.1379,-0.7071,0.7071,0.0,-0.7071,0.7071,0.0,-0.8315,0.5556,0.0,-0.8155,0.5556,-0.1622,-0.7682,0.5556,-0.3182,-0.6533,0.7071,-0.2706,-0.6935,0.7071,-0.1379,-0.6935,0.7071,-0.1379,-0.8155,0.5556,-0.1622,-0.7682,0.5556,-0.3182,-0.6913,0.5556,-0.4619,-0.5879,0.7071,-0.3928,-0.6533,0.7071,-0.2706,-0.6533,0.7071,-0.2706,-0.7682,0.5556,-0.3182,-0.6913,0.5556,-0.4619,-0.5879,0.5556,-0.5879,-0.5,0.7071,-0.5,-0.5879,0.7071,-0.3928,-0.5879,0.7071,-0.3928,-0.6913,0.5556,-0.4619,-0.5879,0.5556,-0.5879,-0.4619,0.5556,-0.6913,-0.3928,0.7071,-0.5879,-0.5,0.7071,-0.5,-0.5,0.7071,-0.5,-0.5879,0.5556,-0.5879,-0.4619,0.5556,-0.6913,-0.3182,0.5556,-0.7682,-0.2706,0.7071,-0.6533,-0.3928,0.7071,-0.5879,-0.3928,0.7071,-0.5879,-0.4619,0.5556,-0.6913,-0.3182,0.5556,-0.7682,-0.1622,0.5556,-0.8155,-0.1379,0.7071,-0.6935,-0.2706,0.7071,-0.6533,-0.2706,0.7071,-0.6533,-0.3182,0.5556,-0.7682,-0.1622,0.5556,-0.8155,0.0,0.5556,-0.8315,0.0,0.7071,-0.7071,-0.1379,0.7071,-0.6935,-0.1379,0.7071,-0.6935,-0.1622,0.5556,-0.8155,0.0,0.5556,-0.8315,-0.1802,0.3827,0.9061,-0.1622,0.5556,0.8155,0.0,0.5556,0.8315,0.0,0.5556,0.8315,0.0,0.3827,0.9239,-0.1802,0.3827,0.9061,-0.3536,0.3827,0.8536,-0.3182,0.5556,0.7682,-0.1622,0.5556,0.8155,-0.1622,0.5556,0.8155,-0.1802,0.3827,0.9061,-0.3536,0.3827,0.8536,-0.5133,0.3827,0.7682,-0.4619,0.5556,0.6913,-0.3182,0.5556,0.7682,-0.3182,0.5556,0.7682,-0.3536,0.3827,0.8536,-0.5133,0.3827,0.7682,-0.6533,0.3827,0.6533,-0.5879,0.5556,0.5879,-0.4619,0.5556,0.6913,-0.4619,0.5556,0.6913,-0.5133,0.3827,0.7682,-0.6533,0.3827,0.6533,-0.7682,0.3827,0.5133,-0.6913,0.5556,0.4619,-0.5879,0.5556,0.5879,-0.5879,0.5556,0.5879,-0.6533,0.3827,0.6533,-0.7682,0.3827,0.5133,-0.8536,0.3827,0.3536,-0.7682,0.5556,0.3182,-0.6913,0.5556,0.4619,-0.6913,0.5556,0.4619,-0.7682,0.3827,0.5133,-0.8536,0.3827,0.3536,-0.9061,0.3827,0.1802,-0.8155,0.5556,0.1622,-0.7682,0.5556,0.3182,-0.7682,0.5556,0.3182,-0.8536,0.3827,0.3536,-0.9061,0.3827,0.1802,-0.9239,0.3827,0.0,-0.8315,0.5556,0.0,-0.8155,0.5556,0.1622,-0.8155,0.5556,0.1622,-0.9061,0.3827,0.1802,-0.9239,0.3827,0.0,-0.9061,0.3827,-0.1802,-0.8155,0.5556,-0.1622,-0.8315,0.5556,0.0,-0.8315,0.5556,0.0,-0.9239,0.3827,0.0,-0.9061,0.3827,-0.1802,-0.8536,0.3827,-0.3536,-0.7682,0.5556,-0.3182,-0.8155,0.5556,-0.1622,-0.8155,0.5556,-0.1622,-0.9061,0.3827,-0.1802,-0.8536,0.3827,-0.3536,-0.7682,0.3827,-0.5133,-0.6913,0.5556,-0.4619,-0.7682,0.5556,-0.3182,-0.7682,0.5556,-0.3182,-0.8536,0.3827,-0.3536,-0.7682,0.3827,-0.5133,-0.6533,0.3827,-0.6533,-0.5879,0.5556,-0.5879,-0.6913,0.5556,-0.4619,-0.6913,0.5556,-0.4619,-0.7682,0.3827,-0.5133,-0.6533,0.3827,-0.6533,-0.5133,0.3827,-0.7682,-0.4619,0.5556,-0.6913,-0.5879,0.5556,-0.5879,-0.5879,0.5556,-0.5879,-0.6533,0.3827,-0.6533,-0.5133,0.3827,-0.7682,-0.3536,0.3827,-0.8536,-0.3182,0.5556,-0.7682,-0.4619,0.5556,-0.6913,-0.4619,0.5556,-0.6913,-0.5133,0.3827,-0.7682,-0.3536,0.3827,-0.8536,-0.1802,0.3827,-0.9061,-0.1622,0.5556,-0.8155,-0.3182,0.5556,-0.7682,-0.3182,0.5556,-0.7682,-0.3536,0.3827,-0.8536,-0.1802,0.3827,-0.9061,0.0,0.3827,-0.9239,0.0,0.5556,-0.8315,-0.1622,0.5556,-0.8155,-0.1622,0.5556,-0.8155,-0.1802,0.3827,-0.9061,0.0,0.3827,-0.9239,-0.1913,0.1951,0.9619,-0.1802,0.3827,0.9061,0.0,0.3827,0.9239,0.0,0.3827,0.9239,0.0,0.1951,0.9808,-0.1913,0.1951,0.9619,-0.3753,0.1951,0.9061,-0.3536,0.3827,0.8536,-0.1802,0.3827,0.9061,-0.1802,0.3827,0.9061,-0.1913,0.1951,0.9619,-0.3753,0.1951,0.9061,-0.5449,0.1951,0.8155,-0.5133,0.3827,0.7682,-0.3536,0.3827,0.8536,-0.3536,0.3827,0.8536,-0.3753,0.1951,0.9061,-0.5449,0.1951,0.8155,-0.6935,0.1951,0.6935,-0.6533,0.3827,0.6533,-0.5133,0.3827,0.7682,-0.5133,0.3827,0.7682,-0.5449,0.1951,0.8155,-0.6935,0.1951,0.6935,-0.8155,0.1951,0.5449,-0.7682,0.3827,0.5133,-0.6533,0.3827,0.6533,-0.6533,0.3827,0.6533,-0.6935,0.1951,0.6935,-0.8155,0.1951,0.5449,-0.9061,0.1951,0.3753,-0.8536,0.3827,0.3536,-0.7682,0.3827,0.5133,-0.7682,0.3827,0.5133,-0.8155,0.1951,0.5449,-0.9061,0.1951,0.3753,-0.9619,0.1951,0.1913,-0.9061,0.3827,0.1802,-0.8536,0.3827,0.3536,-0.8536,0.3827,0.3536,-0.9061,0.1951,0.3753,-0.9619,0.1951,0.1913,-0.9808,0.1951,0.0,-0.9239,0.3827,0.0,-0.9061,0.3827,0.1802,-0.9061,0.3827,0.1802,-0.9619,0.1951,0.1913,-0.9808,0.1951,0.0,-0.9619,0.1951,-0.1913,-0.9061,0.3827,-0.1802,-0.9239,0.3827,0.0,-0.9239,0.3827,0.0,-0.9808,0.1951,0.0,-0.9619,0.1951,-0.1913,-0.9061,0.1951,-0.3753,-0.8536,0.3827,-0.3536,-0.9061,0.3827,-0.1802,-0.9061,0.3827,-0.1802,-0.9619,0.1951,-0.1913,-0.9061,0.1951,-0.3753,-0.8155,0.1951,-0.5449,-0.7682,0.3827,-0.5133,-0.8536,0.3827,-0.3536,-0.8536,0.3827,-0.3536,-0.9061,0.1951,-0.3753,-0.8155,0.1951,-0.5449,-0.6935,0.1951,-0.6935,-0.6533,0.3827,-0.6533,-0.7682,0.3827,-0.5133,-0.7682,0.3827,-0.5133,-0.8155,0.1951,-0.5449,-0.6935,0.1951,-0.6935,-0.5449,0.1951,-0.8155,-0.5133,0.3827,-0.7682,-0.6533,0.3827,-0.6533,-0.6533,0.3827,-0.6533,-0.6935,0.1951,-0.6935,-0.5449,0.1951,-0.8155,-0.3753,0.1951,-0.9061,-0.3536,0.3827,-0.8536,-0.5133,0.3827,-0.7682,-0.5133,0.3827,-0.7682,-0.5449,0.1951,-0.8155,-0.3753,0.1951,-0.9061,-0.1913,0.1951,-0.9619,-0.1802,0.3827,-0.9061,-0.3536,0.3827,-0.8536,-0.3536,0.3827,-0.8536,-0.3753,0.1951,-0.9061,-0.1913,0.1951,-0.9619,0.0,0.1951,-0.9808,0.0,0.3827,-0.9239,-0.1802,0.3827,-0.9061,-0.1802,0.3827,-0.9061,-0.1913,0.1951,-0.9619,0.0,0.1951,-0.9808,-0.1951,0.0,0.9808,-0.1913,0.1951,0.9619,0.0,0.1951,0.9808,0.0,0.1951,0.9808,0.0,0.0,1.0,-0.1951,0.0,0.9808,-0.3827,0.0,0.9239,-0.3753,0.1951,0.9061,-0.1913,0.1951,0.9619,-0.1913,0.1951,0.9619,-0.1951,0.0,0.9808,-0.3827,0.0,0.9239,-0.5556,0.0,0.8315,-0.5449,0.1951,0.8155,-0.3753,0.1951,0.9061,-0.3753,0.1951,0.9061,-0.3827,0.0,0.9239,-0.5556,0.0,0.8315,-0.7071,0.0,0.7071,-0.6935,0.1951,0.6935,-0.5449,0.1951,0.8155,-0.5449,0.1951,0.8155,-0.5556,0.0,0.8315,-0.7071,0.0,0.7071,-0.8315,0.0,0.5556,-0.8155,0.1951,0.5449,-0.6935,0.1951,0.6935,-0.6935,0.1951,0.6935,-0.7071,0.0,0.7071,-0.8315,0.0,0.5556,-0.9239,0.0,0.3827,-0.9061,0.1951,0.3753,-0.8155,0.1951,0.5449,-0.8155,0.1951,0.5449,-0.8315,0.0,0.5556,-0.9239,0.0,0.3827,-0.9808,0.0,0.1951,-0.9619,0.1951,0.1913,-0.9061,0.1951,0.3753,-0.9061,0.1951,0.3753,-0.9239,0.0,0.3827,-0.9808,0.0,0.1951,-1.0,0.0,0.0,-0.9808,0.1951,0.0,-0.9619,0.1951,0.1913,-0.9619,0.1951,0.1913,-0.9808,0.0,0.1951,-1.0,0.0,0.0,-0.9808,0.0,-0.1951,-0.9619,0.1951,-0.1913,-0.9808,0.1951,0.0,-0.9808,0.1951,0.0,-1.0,0.0,0.0,-0.9808,0.0,-0.1951,-0.9239,0.0,-0.3827,-0.9061,0.1951,-0.3753,-0.9619,0.1951,-0.1913,-0.9619,0.1951,-0.1913,-0.9808,0.0,-0.1951,-0.9239,0.0,-0.3827,-0.8315,0.0,-0.5556,-0.8155,0.1951,-0.5449,-0.9061,0.1951,-0.3753,-0.9061,0.1951,-0.3753,-0.9239,0.0,-0.3827,-0.8315,0.0,-0.5556,-0.7071,0.0,-0.7071,-0.6935,0.1951,-0.6935,-0.8155,0.1951,-0.5449,-0.8155,0.1951,-0.5449,-0.8315,0.0,-0.5556,-0.7071,0.0,-0.7071,-0.5556,0.0,-0.8315,-0.5449,0.1951,-0.8155,-0.6935,0.1951,-0.6935,-0.6935,0.1951,-0.6935,-0.7071,0.0,-0.7071,-0.5556,0.0,-0.8315,-0.3827,0.0,-0.9239,-0.3753,0.1951,-0.9061,-0.5449,0.1951,-0.8155,-0.5449,0.1951,-0.8155,-0.5556,0.0,-0.8315,-0.3827,0.0,-0.9239,-0.1951,0.0,-0.9808,-0.1913,0.1951,-0.9619,-0.3753,0.1951,-0.9061,-0.3753,0.1951,-0.9061,-0.3827,0.0,-0.9239,-0.1951,0.0,-0.9808,0.0,0.0,-1.0,0.0,0.1951,-0.9808,-0.1913,0.1951,-0.9619,-0.1913,0.1951,-0.9619,-0.1951,0.0,-0.9808,0.0,0.0,-1.0,-0.1913,-0.1951,0.9619,-0.1951,0.0,0.9808,0.0,0.0,1.0,0.0,0.0,1.0,0.0,-0.1951,0.9808,-0.1913,-0.1951,0.9619,-0.3753,-0.1951,0.9061,-0.3827,0.0,0.9239,-0.1951,0.0,0.9808,-0.1951,0.0,0.9808,-0.1913,-0.1951,0.9619,-0.3753,-0.1951,0.9061,-0.5449,-0.1951,0.8155,-0.5556,0.0,0.8315,-0.3827,0.0,0.9239,-0.3827,0.0,0.9239,-0.3753,-0.1951,0.9061,-0.5449,-0.1951,0.8155,-0.6935,-0.1951,0.6935,-0.7071,0.0,0.7071,-0.5556,0.0,0.8315,-0.5556,0.0,0.8315,-0.5449,-0.1951,0.8155,-0.6935,-0.1951,0.6935,-0.8155,-0.1951,0.5449,-0.8315,0.0,0.5556,-0.7071,0.0,0.7071,-0.7071,0.0,0.7071,-0.6935,-0.1951,0.6935,-0.8155,-0.1951,0.5449,-0.9061,-0.1951,0.3753,-0.9239,0.0,0.3827,-0.8315,0.0,0.5556,-0.8315,0.0,0.5556,-0.8155,-0.1951,0.5449,-0.9061,-0.1951,0.3753,-0.9619,-0.1951,0.1913,-0.9808,0.0,0.1951,-0.9239,0.0,0.3827,-0.9239,0.0,0.3827,-0.9061,-0.1951,0.3753,-0.9619,-0.1951,0.1913,-0.9808,-0.1951,0.0,-1.0,0.0,0.0,-0.9808,0.0,0.1951,-0.9808,0.0,0.1951,-0.9619,-0.1951,0.1913,-0.9808,-0.1951,0.0,-0.9619,-0.1951,-0.1913,-0.9808,0.0,-0.1951,-1.0,0.0,0.0,-1.0,0.0,0.0,-0.9808,-0.1951,0.0,-0.9619,-0.1951,-0.1913,-0.9061,-0.1951,-0.3753,-0.9239,0.0,-0.3827,-0.9808,0.0,-0.1951,-0.9808,0.0,-0.1951,-0.9619,-0.1951,-0.1913,-0.9061,-0.1951,-0.3753,-0.8155,-0.1951,-0.5449,-0.8315,0.0,-0.5556,-0.9239,0.0,-0.3827,-0.9239,0.0,-0.3827,-0.9061,-0.1951,-0.3753,-0.8155,-0.1951,-0.5449,-0.6935,-0.1951,-0.6935,-0.7071,0.0,-0.7071,-0.8315,0.0,-0.5556,-0.8315,0.0,-0.5556,-0.8155,-0.1951,-0.5449,-0.6935,-0.1951,-0.6935,-0.5449,-0.1951,-0.8155,-0.5556,0.0,-0.8315,-0.7071,0.0,-0.7071,-0.7071,0.0,-0.7071,-0.6935,-0.1951,-0.6935,-0.5449,-0.1951,-0.8155,-0.3753,-0.1951,-0.9061,-0.3827,0.0,-0.9239,-0.5556,0.0,-0.8315,-0.5556,0.0,-0.8315,-0.5449,-0.1951,-0.8155,-0.3753,-0.1951,-0.9061,-0.1913,-0.1951,-0.9619,-0.1951,0.0,-0.9808,-0.3827,0.0,-0.9239,-0.3827,0.0,-0.9239,-0.3753,-0.1951,-0.9061,-0.1913,-0.1951,-0.9619,0.0,-0.1951,-0.9808,0.0,0.0,-1.0,-0.1951,0.0,-0.9808,-0.1951,0.0,-0.9808,-0.1913,-0.1951,-0.9619,0.0,-0.1951,-0.9808,-0.1802,-0.3827,0.9061,-0.1913,-0.1951,0.9619,0.0,-0.1951,0.9808,0.0,-0.1951,0.9808,0.0,-0.3827,0.9239,-0.1802,-0.3827,0.9061,-0.3536,-0.3827,0.8536,-0.3753,-0.1951,0.9061,-0.1913,-0.1951,0.9619,-0.1913,-0.1951,0.9619,-0.1802,-0.3827,0.9061,-0.3536,-0.3827,0.8536,-0.5133,-0.3827,0.7682,-0.5449,-0.1951,0.8155,-0.3753,-0.1951,0.9061,-0.3753,-0.1951,0.9061,-0.3536,-0.3827,0.8536,-0.5133,-0.3827,0.7682,-0.6533,-0.3827,0.6533,-0.6935,-0.1951,0.6935,-0.5449,-0.1951,0.8155,-0.5449,-0.1951,0.8155,-0.5133,-0.3827,0.7682,-0.6533,-0.3827,0.6533,-0.7682,-0.3827,0.5133,-0.8155,-0.1951,0.5449,-0.6935,-0.1951,0.6935,-0.6935,-0.1951,0.6935,-0.6533,-0.3827,0.6533,-0.7682,-0.3827,0.5133,-0.8536,-0.3827,0.3536,-0.9061,-0.1951,0.3753,-0.8155,-0.1951,0.5449,-0.8155,-0.1951,0.5449,-0.7682,-0.3827,0.5133,-0.8536,-0.3827,0.3536,-0.9061,-0.3827,0.1802,-0.9619,-0.1951,0.1913,-0.9061,-0.1951,0.3753,-0.9061,-0.1951,0.3753,-0.8536,-0.3827,0.3536,-0.9061,-0.3827,0.1802,-0.9239,-0.3827,0.0,-0.9808,-0.1951,0.0,-0.9619,-0.1951,0.1913,-0.9619,-0.1951,0.1913,-0.9061,-0.3827,0.1802,-0.9239,-0.3827,0.0,-0.9061,-0.3827,-0.1802,-0.9619,-0.1951,-0.1913,-0.9808,-0.1951,0.0,-0.9808,-0.1951,0.0,-0.9239,-0.3827,0.0,-0.9061,-0.3827,-0.1802,-0.8536,-0.3827,-0.3536,-0.9061,-0.1951,-0.3753,-0.9619,-0.1951,-0.1913,-0.9619,-0.1951,-0.1913,-0.9061,-0.3827,-0.1802,-0.8536,-0.3827,-0.3536,-0.7682,-0.3827,-0.5133,-0.8155,-0.1951,-0.5449,-0.9061,-0.1951,-0.3753,-0.9061,-0.1951,-0.3753,-0.8536,-0.3827,-0.3536,-0.7682,-0.3827,-0.5133,-0.6533,-0.3827,-0.6533,-0.6935,-0.1951,-0.6935,-0.8155,-0.1951,-0.5449,-0.8155,-0.1951,-0.5449,-0.7682,-0.3827,-0.5133,-0.6533,-0.3827,-0.6533,-0.5133,-0.3827,-0.7682,-0.5449,-0.1951,-0.8155,-0.6935,-0.1951,-0.6935,-0.6935,-0.1951,-0.6935,-0.6533,-0.3827,-0.6533,-0.5133,-0.3827,-0.7682,-0.3536,-0.3827,-0.8536,-0.3753,-0.1951,-0.9061,-0.5449,-0.1951,-0.8155,-0.5449,-0.1951,-0.8155,-0.5133,-0.3827,-0.7682,-0.3536,-0.3827,-0.8536,-0.1802,-0.3827,-0.9061,-0.1913,-0.1951,-0.9619,-0.3753,-0.1951,-0.9061,-0.3753,-0.1951,-0.9061,-0.3536,-0.3827,-0.8536,-0.1802,-0.3827,-0.9061,0.0,-0.3827,-0.9239,0.0,-0.1951,-0.9808,-0.1913,-0.1951,-0.9619,-0.1913,-0.1951,-0.9619,-0.1802,-0.3827,-0.9061,0.0,-0.3827,-0.9239,-0.1622,-0.5556,0.8155,-0.1802,-0.3827,0.9061,0.0,-0.3827,0.9239,0.0,-0.3827,0.9239,0.0,-0.5556,0.8315,-0.1622,-0.5556,0.8155,-0.3182,-0.5556,0.7682,-0.3536,-0.3827,0.8536,-0.1802,-0.3827,0.9061,-0.1802,-0.3827,0.9061,-0.1622,-0.5556,0.8155,-0.3182,-0.5556,0.7682,-0.4619,-0.5556,0.6913,-0.5133,-0.3827,0.7682,-0.3536,-0.3827,0.8536,-0.3536,-0.3827,0.8536,-0.3182,-0.5556,0.7682,-0.4619,-0.5556,0.6913,-0.5879,-0.5556,0.5879,-0.6533,-0.3827,0.6533,-0.5133,-0.3827,0.7682,-0.5133,-0.3827,0.7682,-0.4619,-0.5556,0.6913,-0.5879,-0.5556,0.5879,-0.6913,-0.5556,0.4619,-0.7682,-0.3827,0.5133,-0.6533,-0.3827,0.6533,-0.6533,-0.3827,0.6533,-0.5879,-0.5556,0.5879,-0.6913,-0.5556,0.4619,-0.7682,-0.5556,0.3182,-0.8536,-0.3827,0.3536,-0.7682,-0.3827,0.5133,-0.7682,-0.3827,0.5133,-0.6913,-0.5556,0.4619,-0.7682,-0.5556,0.3182,-0.8155,-0.5556,0.1622,-0.9061,-0.3827,0.1802,-0.8536,-0.3827,0.3536,-0.8536,-0.3827,0.3536,-0.7682,-0.5556,0.3182,-0.8155,-0.5556,0.1622,-0.8315,-0.5556,0.0,-0.9239,-0.3827,0.0,-0.9061,-0.3827,0.1802,-0.9061,-0.3827,0.1802,-0.8155,-0.5556,0.1622,-0.8315,-0.5556,0.0,-0.8155,-0.5556,-0.1622,-0.9061,-0.3827,-0.1802,-0.9239,-0.3827,0.0,-0.9239,-0.3827,0.0,-0.8315,-0.5556,0.0,-0.8155,-0.5556,-0.1622,-0.7682,-0.5556,-0.3182,-0.8536,-0.3827,-0.3536,-0.9061,-0.3827,-0.1802,-0.9061,-0.3827,-0.1802,-0.8155,-0.5556,-0.1622,-0.7682,-0.5556,-0.3182,-0.6913,-0.5556,-0.4619,-0.7682,-0.3827,-0.5133,-0.8536,-0.3827,-0.3536,-0.8536,-0.3827,-0.3536,-0.7682,-0.5556,-0.3182,-0.6913,-0.5556,-0.4619,-0.5879,-0.5556,-0.5879,-0.6533,-0.3827,-0.6533,-0.7682,-0.3827,-0.5133,-0.7682,-0.3827,-0.5133,-0.6913,-0.5556,-0.4619,-0.5879,-0.5556,-0.5879,-0.4619,-0.5556,-0.6913,-0.5133,-0.3827,-0.7682,-0.6533,-0.3827,-0.6533,-0.6533,-0.3827,-0.6533,-0.5879,-0.5556,-0.5879,-0.4619,-0.5556,-0.6913,-0.3182,-0.5556,-0.7682,-0.3536,-0.3827,-0.8536,-0.5133,-0.3827,-0.7682,-0.5133,-0.3827,-0.7682,-0.4619,-0.5556,-0.6913,-0.3182,-0.5556,-0.7682,-0.1622,-0.5556,-0.8155,-0.1802,-0.3827,-0.9061,-0.3536,-0.3827,-0.8536,-0.3536,-0.3827,-0.8536,-0.3182,-0.5556,-0.7682,-0.1622,-0.5556,-0.8155,0.0,-0.5556,-0.8315,0.0,-0.3827,-0.9239,-0.1802,-0.3827,-0.9061,-0.1802,-0.3827,-0.9061,-0.1622,-0.5556,-0.8155,0.0,-0.5556,-0.8315,-0.1379,-0.7071,0.6935,-0.1622,-0.5556,0.8155,0.0,-0.5556,0.8315,0.0,-0.5556,0.8315,0.0,-0.7071,0.7071,-0.1379,-0.7071,0.6935,-0.2706,-0.7071,0.6533,-0.3182,-0.5556,0.7682,-0.1622,-0.5556,0.8155,-0.1622,-0.5556,0.8155,-0.1379,-0.7071,0.6935,-0.2706,-0.7071,0.6533,-0.3928,-0.7071,0.5879,-0.4619,-0.5556,0.6913,-0.3182,-0.5556,0.7682,-0.3182,-0.5556,0.7682,-0.2706,-0.7071,0.6533,-0.3928,-0.7071,0.5879,-0.5,-0.7071,0.5,-0.5879,-0.5556,0.5879,-0.4619,-0.5556,0.6913,-0.4619,-0.5556,0.6913,-0.3928,-0.7071,0.5879,-0.5,-0.7071,0.5,-0.5879,-0.7071,0.3928,-0.6913,-0.5556,0.4619,-0.5879,-0.5556,0.5879,-0.5879,-0.5556,0.5879,-0.5,-0.7071,0.5,-0.5879,-0.7071,0.3928,-0.6533,-0.7071,0.2706,-0.7682,-0.5556,0.3182,-0.6913,-0.5556,0.4619,-0.6913,-0.5556,0.4619,-0.5879,-0.7071,0.3928,-0.6533,-0.7071,0.2706,-0.6935,-0.7071,0.1379,-0.8155,-0.5556,0.1622,-0.7682,-0.5556,0.3182,-0.7682,-0.5556,0.3182,-0.6533,-0.7071,0.2706,-0.6935,-0.7071,0.1379,-0.7071,-0.7071,0.0,-0.8315,-0.5556,0.0,-0.8155,-0.5556,0.1622,-0.8155,-0.5556,0.1622,-0.6935,-0.7071,0.1379,-0.7071,-0.7071,0.0,-0.6935,-0.7071,-0.1379,-0.8155,-0.5556,-0.1622,-0.8315,-0.5556,0.0,-0.8315,-0.5556,0.0,-0.7071,-0.7071,0.0,-0.6935,-0.7071,-0.1379,-0.6533,-0.7071,-0.2706,-0.7682,-0.5556,-0.3182,-0.8155,-0.5556,-0.1622,-0.8155,-0.5556,-0.1622,-0.6935,-0.7071,-0.1379,-0.6533,-0.7071,-0.2706,-0.5879,-0.7071,-0.3928,-0.6913,-0.5556,-0.4619,-0.7682,-0.5556,-0.3182,-0.7682,-0.5556,-0.3182,-0.6533,-0.7071,-0.2706,-0.5879,-0.7071,-0.3928,-0.5,-0.7071,-0.5,-0.5879,-0.5556,-0.5879,-0.6913,-0.5556,-0.4619,-0.6913,-0.5556,-0.4619,-0.5879,-0.7071,-0.3928,-0.5,-0.7071,-0.5,-0.3928,-0.7071,-0.5879,-0.4619,-0.5556,-0.6913,-0.5879,-0.5556,-0.5879,-0.5879,-0.5556,-0.5879,-0.5,-0.7071,-0.5,-0.3928,-0.7071,-0.5879,-0.2706,-0.7071,-0.6533,-0.3182,-0.5556,-0.7682,-0.4619,-0.5556,-0.6913,-0.4619,-0.5556,-0.6913,-0.3928,-0.7071,-0.5879,-0.2706,-0.7071,-0.6533,-0.1379,-0.7071,-0.6935,-0.1622,-0.5556,-0.8155,-0.3182,-0.5556,-0.7682,-0.3182,-0.5556,-0.7682,-0.2706,-0.7071,-0.6533,-0.1379,-0.7071,-0.6935,0.0,-0.7071,-0.7071,0.0,-0.5556,-0.8315,-0.1622,-0.5556,-0.8155,-0.1622,-0.5556,-0.8155,-0.1379,-0.7071,-0.6935,0.0,-0.7071,-0.7071,-0.1084,-0.8315,0.5449,-0.1379,-0.7071,0.6935,0.0,-0.7071,0.7071,0.0,-0.7071,0.7071,0.0,-0.8315,0.5556,-0.1084,-0.8315,0.5449,-0.2126,-0.8315,0.5133,-0.2706,-0.7071,0.6533,-0.1379,-0.7071,0.6935,-0.1379,-0.7071,0.6935,-0.1084,-0.8315,0.5449,-0.2126,-0.8315,0.5133,-0.3087,-0.8315,0.4619,-0.3928,-0.7071,0.5879,-0.2706,-0.7071,0.6533,-0.2706,-0.7071,0.6533,-0.2126,-0.8315,0.5133,-0.3087,-0.8315,0.4619,-0.3928,-0.8315,0.3928,-0.5,-0.7071,0.5,-0.3928,-0.7071,0.5879,-0.3928,-0.7071,0.5879,-0.3087,-0.8315,0.4619,-0.3928,-0.8315,0.3928,-0.4619,-0.8315,0.3087,-0.5879,-0.7071,0.3928,-0.5,-0.7071,0.5,-0.5,-0.7071,0.5,-0.3928,-0.8315,0.3928,-0.4619,-0.8315,0.3087,-0.5133,-0.8315,0.2126,-0.6533,-0.7071,0.2706,-0.5879,-0.7071,0.3928,-0.5879,-0.7071,0.3928,-0.4619,-0.8315,0.3087,-0.5133,-0.8315,0.2126,-0.5449,-0.8315,0.1084,-0.6935,-0.7071,0.1379,-0.6533,-0.7071,0.2706,-0.6533,-0.7071,0.2706,-0.5133,-0.8315,0.2126,-0.5449,-0.8315,0.1084,-0.5556,-0.8315,0.0,-0.7071,-0.7071,0.0,-0.6935,-0.7071,0.1379,-0.6935,-0.7071,0.1379,-0.5449,-0.8315,0.1084,-0.5556,-0.8315,0.0,-0.5449,-0.8315,-0.1084,-0.6935,-0.7071,-0.1379,-0.7071,-0.7071,0.0,-0.7071,-0.7071,0.0,-0.5556,-0.8315,0.0,-0.5449,-0.8315,-0.1084,-0.5133,-0.8315,-0.2126,-0.6533,-0.7071,-0.2706,-0.6935,-0.7071,-0.1379,-0.6935,-0.7071,-0.1379,-0.5449,-0.8315,-0.1084,-0.5133,-0.8315,-0.2126,-0.4619,-0.8315,-0.3087,-0.5879,-0.7071,-0.3928,-0.6533,-0.7071,-0.2706,-0.6533,-0.7071,-0.2706,-0.5133,-0.8315,-0.2126,-0.4619,-0.8315,-0.3087,-0.3928,-0.8315,-0.3928,-0.5,-0.7071,-0.5,-0.5879,-0.7071,-0.3928,-0.5879,-0.7071,-0.3928,-0.4619,-0.8315,-0.3087,-0.3928,-0.8315,-0.3928,-0.3087,-0.8315,-0.4619,-0.3928,-0.7071,-0.5879,-0.5,-0.7071,-0.5,-0.5,-0.7071,-0.5,-0.3928,-0.8315,-0.3928,-0.3087,-0.8315,-0.4619,-0.2126,-0.8315,-0.5133,-0.2706,-0.7071,-0.6533,-0.3928,-0.7071,-0.5879,-0.3928,-0.7071,-0.5879,-0.3087,-0.8315,-0.4619,-0.2126,-0.8315,-0.5133,-0.1084,-0.8315,-0.5449,-0.1379,-0.7071,-0.6935,-0.2706,-0.7071,-0.6533,-0.2706,-0.7071,-0.6533,-0.2126,-0.8315,-0.5133,-0.1084,-0.8315,-0.5449,0.0,-0.8315,-0.5556,0.0,-0.7071,-0.7071,-0.1379,-0.7071,-0.6935,-0.1379,-0.7071,-0.6935,-0.1084,-0.8315,-0.5449,0.0,-0.8315,-0.5556,-0.0747,-0.9239,0.3753,-0.1084,-0.8315,0.5449,0.0,-0.8315,0.5556,0.0,-0.8315,0.5556,0.0,-0.9239,0.3827,-0.0747,-0.9239,0.3753,-0.1464,-0.9239,0.3536,-0.2126,-0.8315,0.5133,-0.1084,-0.8315,0.5449,-0.1084,-0.8315,0.5449,-0.0747,-0.9239,0.3753,-0.1464,-0.9239,0.3536,-0.2126,-0.9239,0.3182,-0.3087,-0.8315,0.4619,-0.2126,-0.8315,0.5133,-0.2126,-0.8315,0.5133,-0.1464,-0.9239,0.3536,-0.2126,-0.9239,0.3182,-0.2706,-0.9239,0.2706,-0.3928,-0.8315,0.3928,-0.3087,-0.8315,0.4619,-0.3087,-0.8315,0.4619,-0.2126,-0.9239,0.3182,-0.2706,-0.9239,0.2706,-0.3182,-0.9239,0.2126,-0.4619,-0.8315,0.3087,-0.3928,-0.8315,0.3928,-0.3928,-0.8315,0.3928,-0.2706,-0.9239,0.2706,-0.3182,-0.9239,0.2126,-0.3536,-0.9239,0.1464,-0.5133,-0.8315,0.2126,-0.4619,-0.8315,0.3087,-0.4619,-0.8315,0.3087,-0.3182,-0.9239,0.2126,-0.3536,-0.9239,0.1464,-0.3753,-0.9239,0.0747,-0.5449,-0.8315,0.1084,-0.5133,-0.8315,0.2126,-0.5133,-0.8315,0.2126,-0.3536,-0.9239,0.1464,-0.3753,-0.9239,0.0747,-0.3827,-0.9239,0.0,-0.5556,-0.8315,0.0,-0.5449,-0.8315,0.1084,-0.5449,-0.8315,0.1084,-0.3753,-0.9239,0.0747,-0.3827,-0.9239,0.0,-0.3753,-0.9239,-0.0747,-0.5449,-0.8315,-0.1084,-0.5556,-0.8315,0.0,-0.5556,-0.8315,0.0,-0.3827,-0.9239,0.0,-0.3753,-0.9239,-0.0747,-0.3536,-0.9239,-0.1464,-0.5133,-0.8315,-0.2126,-0.5449,-0.8315,-0.1084,-0.5449,-0.8315,-0.1084,-0.3753,-0.9239,-0.0747,-0.3536,-0.9239,-0.1464,-0.3182,-0.9239,-0.2126,-0.4619,-0.8315,-0.3087,-0.5133,-0.8315,-0.2126,-0.5133,-0.8315,-0.2126,-0.3536,-0.9239,-0.1464,-0.3182,-0.9239,-0.2126,-0.2706,-0.9239,-0.2706,-0.3928,-0.8315,-0.3928,-0.4619,-0.8315,-0.3087,-0.4619,-0.8315,-0.3087,-0.3182,-0.9239,-0.2126,-0.2706,-0.9239,-0.2706,-0.2126,-0.9239,-0.3182,-0.3087,-0.8315,-0.4619,-0.3928,-0.8315,-0.3928,-0.3928,-0.8315,-0.3928,-0.2706,-0.9239,-0.2706,-0.2126,-0.9239,-0.3182,-0.1464,-0.9239,-0.3536,-0.2126,-0.8315,-0.5133,-0.3087,-0.8315,-0.4619,-0.3087,-0.8315,-0.4619,-0.2126,-0.9239,-0.3182,-0.1464,-0.9239,-0.3536,-0.0747,-0.9239,-0.3753,-0.1084,-0.8315,-0.5449,-0.2126,-0.8315,-0.5133,-0.2126,-0.8315,-0.5133,-0.1464,-0.9239,-0.3536,-0.0747,-0.9239,-0.3753,0.0,-0.9239,-0.3827,0.0,-0.8315,-0.5556,-0.1084,-0.8315,-0.5449,-0.1084,-0.8315,-0.5449,-0.0747,-0.9239,-0.3753,0.0,-0.9239,-0.3827,-0.0381,-0.9808,0.1913,-0.0747,-0.9239,0.3753,0.0,-0.9239,0.3827,0.0,-0.9239,0.3827,0.0,-0.9808,0.1951,-0.0381,-0.9808,0.1913,-0.0747,-0.9808,0.1802,-0.1464,-0.9239,0.3536,-0.0747,-0.9239,0.3753,-0.0747,-0.9239,0.3753,-0.0381,-0.9808,0.1913,-0.0747,-0.9808,0.1802,-0.1084,-0.9808,0.1622,-0.2126,-0.9239,0.3182,-0.1464,-0.9239,0.3536,-0.1464,-0.9239,0.3536,-0.0747,-0.9808,0.1802,-0.1084,-0.9808,0.1622,-0.1379,-0.9808,0.1379,-0.2706,-0.9239,0.2706,-0.2126,-0.9239,0.3182,-0.2126,-0.9239,0.3182,-0.1084,-0.9808,0.1622,-0.1379,-0.9808,0.1379,-0.1622,-0.9808,0.1084,-0.3182,-0.9239,0.2126,-0.2706,-0.9239,0.2706,-0.2706,-0.9239,0.2706,-0.1379,-0.9808,0.1379,-0.1622,-0.9808,0.1084,-0.1802,-0.9808,0.0747,-0.3536,-0.9239,0.1464,-0.3182,-0.9239,0.2126,-0.3182,-0.9239,0.2126,-0.1622,-0.9808,0.1084,-0.1802,-0.9808,0.0747,-0.1913,-0.9808,0.0381,-0.3753,-0.9239,0.0747,-0.3536,-0.9239,0.1464,-0.3536,-0.9239,0.1464,-0.1802,-0.9808,0.0747,-0.1913,-0.9808,0.0381,-0.1951,-0.9808,0.0,-0.3827,-0.9239,0.0,-0.3753,-0.9239,0.0747,-0.3753,-0.9239,0.0747,-0.1913,-0.9808,0.0381,-0.1951,-0.9808,0.0,-0.1913,-0.9808,-0.0381,-0.3753,-0.9239,-0.0747,-0.3827,-0.9239,0.0,-0.3827,-0.9239,0.0,-0.1951,-0.9808,0.0,-0.1913,-0.9808,-0.0381,-0.1802,-0.9808,-0.0747,-0.3536,-0.9239,-0.1464,-0.3753,-0.9239,-0.0747,-0.3753,-0.9239,-0.0747,-0.1913,-0.9808,-0.0381,-0.1802,-0.9808,-0.0747,-0.1622,-0.9808,-0.1084,-0.3182,-0.9239,-0.2126,-0.3536,-0.9239,-0.1464,-0.3536,-0.9239,-0.1464,-0.1802,-0.9808,-0.0747,-0.1622,-0.9808,-0.1084,-0.1379,-0.9808,-0.1379,-0.2706,-0.9239,-0.2706,-0.3182,-0.9239,-0.2126,-0.3182,-0.9239,-0.2126,-0.1622,-0.9808,-0.1084,-0.1379,-0.9808,-0.1379,-0.1084,-0.9808,-0.1622,-0.2126,-0.9239,-0.3182,-0.2706,-0.9239,-0.2706,-0.2706,-0.9239,-0.2706,-0.1379,-0.9808,-0.1379,-0.1084,-0.9808,-0.1622,-0.0747,-0.9808,-0.1802,-0.1464,-0.9239,-0.3536,-0.2126,-0.9239,-0.3182,-0.2126,-0.9239,-0.3182,-0.1084,-0.9808,-0.1622,-0.0747,-0.9808,-0.1802,-0.0381,-0.9808,-0.1913,-0.0747,-0.9239,-0.3753,-0.1464,-0.9239,-0.3536,-0.1464,-0.9239,-0.3536,-0.0747,-0.9808,-0.1802,-0.0381,-0.9808,-0.1913,0.0,-0.9808,-0.1951,0.0,-0.9239,-0.3827,-0.0747,-0.9239,-0.3753,-0.0747,-0.9239,-0.3753,-0.0381,-0.9808,-0.1913,0.0,-0.9808,-0.1951,0.0,-1.0,0.0,-0.0381,-0.9808,0.1913,0.0,-0.9808,0.1951,0.0,-1.0,0.0,-0.0747,-0.9808,0.1802,-0.0381,-0.9808,0.1913,0.0,-1.0,0.0,-0.1084,-0.9808,0.1622,-0.0747,-0.9808,0.1802,0.0,-1.0,0.0,-0.1379,-0.9808,0.1379,-0.1084,-0.9808,0.1622,0.0,-1.0,0.0,-0.1622,-0.9808,0.1084,-0.1379,-0.9808,0.1379,0.0,-1.0,0.0,-0.1802,-0.9808,0.0747,-0.1622,-0.9808,0.1084,0.0,-1.0,0.0,-0.1913,-0.9808,0.0381,-0.1802,-0.9808,0.0747,0.0,-1.0,0.0,-0.1951,-0.9808,0.0,-0.1913,-0.9808,0.0381,0.0,-1.0,0.0,-0.1913,-0.9808,-0.0381,-0.1951,-0.9808,0.0,0.0,-1.0,0.0,-0.1802,-0.9808,-0.0747,-0.1913,-0.9808,-0.0381,0.0,-1.0,0.0,-0.1622,-0.9808,-0.1084,-0.1802,-0.9808,-0.0747,0.0,-1.0,0.0,-0.1379,-0.9808,-0.1379,-0.1622,-0.9808,-0.1084,0.0,-1.0,0.0,-0.1084,-0.9808,-0.1622,-0.1379,-0.9808,-0.1379,0.0,-1.0,0.0,-0.0747,-0.9808,-0.1802,-0.1084,-0.9808,-0.1622,0.0,-1.0,0.0,-0.0381,-0.9808,-0.1913,-0.0747,-0.9808,-0.1802,0.0,-1.0,0.0,0.0,-0.9808,-0.1951,-0.0381,-0.9808,-0.1913],"normals":[-0.063,0.998,0.0,-0.0198,0.9794,0.2009,-0.0392,0.9796,0.1971,-0.063,0.998,0.0,-0.0392,0.9796,0.1971,-0.0769,0.9796,0.1857,-0.063,0.998,0.0,-0.0769,0.9796,0.1857,-0.1117,0.9796,0.1671,-0.063,0.998,0.0,-0.1117,0.9796,0.1671,-0.1421,0.9796,0.1421,-0.063,0.998,0.0,-0.1421,0.9796,0.1421,-0.1671,0.9796,0.1117,-0.063,0.998,0.0,-0.1671,0.9796,0.1117,-0.1857,0.9796,0.0769,-0.063,0.998,0.0,-0.1857,0.9796,0.0769,-0.1971,0.9796,0.0392,-0.063,0.998,0.0,-0.1971,0.9796,0.0392,-0.201,0.9796,0.0,-0.063,0.998,0.0,-0.201,0.9796,0.0,-0.1971,0.9796,-0.0392,-0.063,0.998,0.0,-0.1971,0.9796,-0.0392,-0.1857,0.9796,-0.0769,-0.063,0.998,0.0,-0.1857,0.9796,-0.0769,-0.1671,0.9796,-0.1117,-0.063,0.998,0.0,-0.1671,0.9796,-0.1117,-0.1421,0.9796,-0.1421,-0.063,0.998,0.0,-0.1421,0.9796,-0.1421,-0.1117,0.9796,-0.1671,-0.063,0.998,0.0,-0.1117,0.9796,-0.1671,-0.0769,0.9796,-0.1857,-0.063,0.998,0.0,-0.0769,0.9796,-0.1857,-0.0392,0.9796,-0.1971,-0.063,0.998,0.0,-0.0392,0.9796,-0.1971,-0.0198,0.9794,-0.2009,-0.0757,0.9217,0.3804,-0.0392,0.9796,0.1971,-0.0198,0.9794,0.2009,-0.0198,0.9794,0.2009,-0.0382,0.921,0.3876,-0.0757,0.9217,0.3804,-0.1484,0.9217,0.3584,-0.0769,0.9796,0.1857,-0.0392,0.9796,0.1971,-0.0392,0.9796,0.1971,-0.0757,0.9217,0.3804,-0.1484,0.9217,0.3584,-0.2155,0.9217,0.3225,-0.1117,0.9796,0.1671,-0.0769,0.9796,0.1857,-0.0769,0.9796,0.1857,-0.1484,0.9217,0.3584,-0.2155,0.9217,0.3225,-0.2743,0.9217,0.2743,-0.1421,0.9796,0.1421,-0.1117,0.9796,0.1671,-0.1117,0.9796,0.1671,-0.2155,0.9217,0.3225,-0.2743,0.9217,0.2743,-0.3225,0.9217,0.2155,-0.1671,0.9796,0.1117,-0.1421,0.9796,0.1421,-0.1421,0.9796,0.1421,-0.2743,0.9217,0.2743,-0.3225,0.9217,0.2155,-0.3584,0.9217,0.1484,-0.1857,0.9796,0.0769,-0.1671,0.9796,0.1117,-0.1671,0.9796,0.1117,-0.3225,0.9217,0.2155,-0.3584,0.9217,0.1484,-0.3804,0.9217,0.0757,-0.1971,0.9796,0.0392,-0.1857,0.9796,0.0769,-0.1857,0.9796,0.0769,-0.3584,0.9217,0.1484,-0.3804,0.9217,0.0757,-0.3879,0.9217,0.0,-0.201,0.9796,0.0,-0.1971,0.9796,0.0392,-0.1971,0.9796,0.0392,-0.3804,0.9217,0.0757,-0.3879,0.9217,0.0,-0.3804,0.9217,-0.0757,-0.1971,0.9796,-0.0392,-0.201,0.9796,0.0,-0.201,0.9796,0.0,-0.3879,0.9217,0.0,-0.3804,0.9217,-0.0757,-0.3584,0.9217,-0.1484,-0.1857,0.9796,-0.0769,-0.1971,0.9796,-0.0392,-0.1971,0.9796,-0.0392,-0.3804,0.9217,-0.0757,-0.3584,0.9217,-0.1484,-0.3225,0.9217,-0.2155,-0.1671,0.9796,-0.1117,-0.1857,0.9796,-0.0769,-0.1857,0.9796,-0.0769,-0.3584,0.9217,-0.1484,-0.3225,0.9217,-0.2155,-0.2743,0.9217,-0.2743,-0.1421,0.9796,-0.1421,-0.1671,0.9796,-0.1117,-0.1671,0.9796,-0.1117,-0.3225,0.9217,-0.2155,-0.2743,0.9217,-0.2743,-0.2155,0.9217,-0.3225,-0.1117,0.9796,-0.1671,-0.1421,0.9796,-0.1421,-0.1421,0.9796,-0.1421,-0.2743,0.9217,-0.2743,-0.2155,0.9217,-0.3225,-0.1484,0.9217,-0.3584,-0.0769,0.9796,-0.1857,-0.1117,0.9796,-0.1671,-0.1117,0.9796,-0.1671,-0.2155,0.9217,-0.3225,-0.1484,0.9217,-0.3584,-0.0757,0.9217,-0.3804,-0.0392,0.9796,-0.1971,-0.0769,0.9796,-0.1857,-0.0769,0.9796,-0.1857,-0.1484,0.9217,-0.3584,-0.0757,0.9217,-0.3804,-0.0382,0.921,-0.3876,-0.0198,0.9794,-0.2009,-0.0392,0.9796,-0.1971,-0.0392,0.9796,-0.1971,-0.0757,0.9217,-0.3804,-0.0382,0.921,-0.3876,-0.1092,0.8286,0.549,-0.0757,0.9217,0.3804,-0.0382,0.921,0.3876,-0.0382,0.921,0.3876,-0.055,0.8274,0.5589,-0.1092,0.8286,0.549,-0.2142,0.8286,0.5172,-0.1484,0.9217,0.3584,-0.0757,0.9217,0.3804,-0.0757,0.9217,0.3804,-0.1092,0.8286,0.549,-0.2142,0.8286,0.5172,-0.311,0.8286,0.4654,-0.2155,0.9217,0.3225,-0.1484,0.9217,0.3584,-0.1484,0.9217,0.3584,-0.2142,0.8286,0.5172,-0.311,0.8286,0.4654,-0.3958,0.8286,0.3958,-0.2743,0.9217,0.2743,-0.2155,0.9217,0.3225,-0.2155,0.9217,0.3225,-0.311,0.8286,0.4654,-0.3958,0.8286,0.3958,-0.4654,0.8286,0.311,-0.3225,0.9217,0.2155,-0.2743,0.9217,0.2743,-0.2743,0.9217,0.2743,-0.3958,0.8286,0.3958,-0.4654,0.8286,0.311,-0.5172,0.8286,0.2142,-0.3584,0.9217,0.1484,-0.3225,0.9217,0.2155,-0.3225,0.9217,0.2155,-0.4654,0.8286,0.311,-0.5172,0.8286,0.2142,-0.549,0.8286,0.1092,-0.3804,0.9217,0.0757,-0.3584,0.9217,0.1484,-0.3584,0.9217,0.1484,-0.5172,0.8286,0.2142,-0.549,0.8286,0.1092,-0.5598,0.8286,0.0,-0.3879,0.9217,0.0,-0.3804,0.9217,0.0757,-0.3804,0.9217,0.0757,-0.549,0.8286,0.1092,-0.5598,0.8286,0.0,-0.549,0.8286,-0.1092,-0.3804,0.9217,-0.0757,-0.3879,0.9217,0.0,-0.3879,0.9217,0.0,-0.5598,0.8286,0.0,-0.549,0.8286,-0.1092,-0.5172,0.8286,-0.2142,-0.3584,0.9217,-0.1484,-0.3804,0.9217,-0.0757,-0.3804,0.9217,-0.0757,-0.549,0.8286,-0.1092,-0.5172,0.8286,-0.2142,-0.4654,0.8286,-0.311,-0.3225,0.9217,-0.2155,-0.3584,0.9217,-0.1484,-0.3584,0.9217,-0.1484,-0.5172,0.8286,-0.2142,-0.4654,0.8286,-0.311,-0.3958,0.8286,-0.3958,-0.2743,0.9217,-0.2743,-0.3225,0.9217,-0.2155,-0.3225,0.9217,-0.2155,-0.4654,0.8286,-0.311,-0.3958,0.8286,-0.3958,-0.311,0.8286,-0.4654,-0.2155,0.9217,-0.3225,-0.2743,0.9217,-0.2743,-0.2743,0.9217,-0.2743,-0.3958,0.8286,-0.3958,-0.311,0.8286,-0.4654,-0.2142,0.8286,-0.5172,-0.1484,0.9217,-0.3584,-0.2155,0.9217,-0.3225,-0.2155,0.9217,-0.3225,-0.311,0.8286,-0.4654,-0.2142,0.8286,-0.5172,-0.1092,0.8286,-0.549,-0.0757,0.9217,-0.3804,-0.1484,0.9217,-0.3584,-0.1484,0.9217,-0.3584,-0.2142,0.8286,-0.5172,-0.1092,0.8286,-0.549,-0.055,0.8274,-0.5589,-0.0382,0.921,-0.3876,-0.0757,0.9217,-0.3804,-0.0757,0.9217,-0.3804,-0.1092,0.8286,-0.549,-0.055,0.8274,-0.5589,-0.1385,0.7041,0.6965,-0.1092,0.8286,0.549,-0.055,0.8274,0.5589,-0.055,0.8274,0.5589,-0.0698,0.7023,0.7084,-0.1385,0.7041,0.6965,-0.2718,0.7041,0.6561,-0.2142,0.8286,0.5172,-0.1092,0.8286,0.549,-0.1092,0.8286,0.549,-0.1385,0.7041,0.6965,-0.2718,0.7041,0.6561,-0.3945,0.7041,0.5905,-0.311,0.8286,0.4654,-0.2142,0.8286,0.5172,-0.2142,0.8286,0.5172,-0.2718,0.7041,0.6561,-0.3945,0.7041,0.5905,-0.5021,0.7041,0.5021,-0.3958,0.8286,0.3958,-0.311,0.8286,0.4654,-0.311,0.8286,0.4654,-0.3945,0.7041,0.5905,-0.5021,0.7041,0.5021,-0.5905,0.7041,0.3945,-0.4654,0.8286,0.311,-0.3958,0.8286,0.3958,-0.3958,0.8286,0.3958,-0.5021,0.7041,0.5021,-0.5905,0.7041,0.3945,-0.6561,0.7041,0.2718,-0.5172,0.8286,0.2142,-0.4654,0.8286,0.311,-0.4654,0.8286,0.311,-0.5905,0.7041,0.3945,-0.6561,0.7041,0.2718,-0.6965,0.7041,0.1385,-0.549,0.8286,0.1092,-0.5172,0.8286,0.2142,-0.5172,0.8286,0.2142,-0.6561,0.7041,0.2718,-0.6965,0.7041,0.1385,-0.7101,0.7041,0.0,-0.5598,0.8286,0.0,-0.549,0.8286,0.1092,-0.549,0.8286,0.1092,-0.6965,0.7041,0.1385,-0.7101,0.7041,0.0,-0.6965,0.7041,-0.1385,-0.549,0.8286,-0.1092,-0.5598,0.8286,0.0,-0.5598,0.8286,0.0,-0.7101,0.7041,0.0,-0.6965,0.7041,-0.1385,-0.6561,0.7041,-0.2718,-0.5172,0.8286,-0.2142,-0.549,0.8286,-0.1092,-0.549,0.8286,-0.1092,-0.6965,0.7041,-0.1385,-0.6561,0.7041,-0.2718,-0.5905,0.7041,-0.3945,-0.4654,0.8286,-0.311,-0.5172,0.8286,-0.2142,-0.5172,0.8286,-0.2142,-0.6561,0.7041,-0.2718,-0.5905,0.7041,-0.3945,-0.5021,0.7041,-0.5021,-0.3958,0.8286,-0.3958,-0.4654,0.8286,-0.311,-0.4654,0.8286,-0.311,-0.5905,0.7041,-0.3945,-0.5021,0.7041,-0.5021,-0.3945,0.7041,-0.5905,-0.311,0.8286,-0.4654,-0.3958,0.8286,-0.3958,-0.3958,0.8286,-0.3958,-0.5021,0.7041,-0.5021,-0.3945,0.7041,-0.5905,-0.2718,0.7041,-0.6561,-0.2142,0.8286,-0.5172,-0.311,0.8286,-0.4654,-0.311,0.8286,-0.4654,-0.3945,0.7041,-0.5905,-0.2718,0.7041,-0.6561,-0.1385,0.7041,-0.6965,-0.1092,0.8286,-0.549,-0.2142,0.8286,-0.5172,-0.2142,0.8286,-0.5172,-0.2718,0.7041,-0.6561,-0.1385,0.7041,-0.6965,-0.0698,0.7023,-0.7084,-0.055,0.8274,-0.5589,-0.1092,0.8286,-0.549,-0.1092,0.8286,-0.549,-0.1385,0.7041,-0.6965,-0.0698,0.7023,-0.7084,-0.1626,0.5528,0.8173,-0.1385,0.7041,0.6965,-0.0698,0.7023,0.7084,-0.0698,0.7023,0.7084,-0.0818,0.5509,0.8305,-0.1626,0.5528,0.8173,-0.3189,0.5528,0.7699,-0.2718,0.7041,0.6561,-0.1385,0.7041,0.6965,-0.1385,0.7041,0.6965,-0.1626,0.5528,0.8173,-0.3189,0.5528,0.7699,-0.463,0.5528,0.6929,-0.3945,0.7041,0.5905,-0.2718,0.7041,0.6561,-0.2718,0.7041,0.6561,-0.3189,0.5528,0.7699,-0.463,0.5528,0.6929,-0.5893,0.5528,0.5893,-0.5021,0.7041,0.5021,-0.3945,0.7041,0.5905,-0.3945,0.7041,0.5905,-0.463,0.5528,0.6929,-0.5893,0.5528,0.5893,-0.6929,0.5528,0.463,-0.5905,0.7041,0.3945,-0.5021,0.7041,0.5021,-0.5021,0.7041,0.5021,-0.5893,0.5528,0.5893,-0.6929,0.5528,0.463,-0.7699,0.5528,0.3189,-0.6561,0.7041,0.2718,-0.5905,0.7041,0.3945,-0.5905,0.7041,0.3945,-0.6929,0.5528,0.463,-0.7699,0.5528,0.3189,-0.8173,0.5528,0.1626,-0.6965,0.7041,0.1385,-0.6561,0.7041,0.2718,-0.6561,0.7041,0.2718,-0.7699,0.5528,0.3189,-0.8173,0.5528,0.1626,-0.8333,0.5528,0.0,-0.7101,0.7041,0.0,-0.6965,0.7041,0.1385,-0.6965,0.7041,0.1385,-0.8173,0.5528,0.1626,-0.8333,0.5528,0.0,-0.8173,0.5528,-0.1626,-0.6965,0.7041,-0.1385,-0.7101,0.7041,0.0,-0.7101,0.7041,0.0,-0.8333,0.5528,0.0,-0.8173,0.5528,-0.1626,-0.7699,0.5528,-0.3189,-0.6561,0.7041,-0.2718,-0.6965,0.7041,-0.1385,-0.6965,0.7041,-0.1385,-0.8173,0.5528,-0.1626,-0.7699,0.5528,-0.3189,-0.6929,0.5528,-0.463,-0.5905,0.7041,-0.3945,-0.6561,0.7041,-0.2718,-0.6561,0.7041,-0.2718,-0.7699,0.5528,-0.3189,-0.6929,0.5528,-0.463,-0.5893,0.5528,-0.5893,-0.5021,0.7041,-0.5021,-0.5905,0.7041,-0.3945,-0.5905,0.7041,-0.3945,-0.6929,0.5528,-0.463,-0.5893,0.5528,-0.5893,-0.463,0.5528,-0.6929,-0.3945,0.7041,-0.5905,-0.5021,0.7041,-0.5021,-0.5021,0.7041,-0.5021,-0.5893,0.5528,-0.5893,-0.463,0.5528,-0.6929,-0.3189,0.5528,-0.7699,-0.2718,0.7041,-0.6561,-0.3945,0.7041,-0.5905,-0.3945,0.7041,-0.5905,-0.463,0.5528,-0.6929,-0.3189,0.5528,-0.7699,-0.1626,0.5528,-0.8173,-0.1385,0.7041,-0.6965,-0.2718,0.7041,-0.6561,-0.2718,0.7041,-0.6561,-0.3189,0.5528,-0.7699,-0.1626,0.5528,-0.8173,-0.0818,0.5509,-0.8305,-0.0698,0.7023,-0.7084,-0.1385,0.7041,-0.6965,-0.1385,0.7041,-0.6965,-0.1626,0.5528,-0.8173,-0.0818,0.5509,-0.8305,-0.1804,0.3805,0.907,-0.1626,0.5528,0.8173,-0.0818,0.5509,0.8305,-0.0818,0.5509,0.8305,-0.0907,0.379,0.921,-0.1804,0.3805,0.907,-0.3539,0.3805,0.8544,-0.3189,0.5528,0.7699,-0.1626,0.5528,0.8173,-0.1626,0.5528,0.8173,-0.1804,0.3805,0.907,-0.3539,0.3805,0.8544,-0.5138,0.3805,0.7689,-0.463,0.5528,0.6929,-0.3189,0.5528,0.7699,-0.3189,0.5528,0.7699,-0.3539,0.3805,0.8544,-0.5138,0.3805,0.7689,-0.6539,0.3805,0.6539,-0.5893,0.5528,0.5893,-0.463,0.5528,0.6929,-0.463,0.5528,0.6929,-0.5138,0.3805,0.7689,-0.6539,0.3805,0.6539,-0.7689,0.3805,0.5138,-0.6929,0.5528,0.463,-0.5893,0.5528,0.5893,-0.5893,0.5528,0.5893,-0.6539,0.3805,0.6539,-0.7689,0.3805,0.5138,-0.8544,0.3805,0.3539,-0.7699,0.5528,0.3189,-0.6929,0.5528,0.463,-0.6929,0.5528,0.463,-0.7689,0.3805,0.5138,-0.8544,0.3805,0.3539,-0.907,0.3805,0.1804,-0.8173,0.5528,0.1626,-0.7699,0.5528,0.3189,-0.7699,0.5528,0.3189,-0.8544,0.3805,0.3539,-0.907,0.3805,0.1804,-0.9248,0.3805,0.0,-0.8333,0.5528,0.0,-0.8173,0.5528,0.1626,-0.8173,0.5528,0.1626,-0.907,0.3805,0.1804,-0.9248,0.3805,0.0,-0.907,0.3805,-0.1804,-0.8173,0.5528,-0.1626,-0.8333,0.5528,0.0,-0.8333,0.5528,0.0,-0.9248,0.3805,0.0,-0.907,0.3805,-0.1804,-0.8544,0.3805,-0.3539,-0.7699,0.5528,-0.3189,-0.8173,0.5528,-0.1626,-0.8173,0.5528,-0.1626,-0.907,0.3805,-0.1804,-0.8544,0.3805,-0.3539,-0.7689,0.3805,-0.5138,-0.6929,0.5528,-0.463,-0.7699,0.5528,-0.3189,-0.7699,0.5528,-0.3189,-0.8544,0.3805,-0.3539,-0.7689,0.3805,-0.5138,-0.6539,0.3805,-0.6539,-0.5893,0.5528,-0.5893,-0.6929,0.5528,-0.463,-0.6929,0.5528,-0.463,-0.7689,0.3805,-0.5138,-0.6539,0.3805,-0.6539,-0.5138,0.3805,-0.7689,-0.463,0.5528,-0.6929,-0.5893,0.5528,-0.5893,-0.5893,0.5528,-0.5893,-0.6539,0.3805,-0.6539,-0.5138,0.3805,-0.7689,-0.3539,0.3805,-0.8544,-0.3189,0.5528,-0.7699,-0.463,0.5528,-0.6929,-0.463,0.5528,-0.6929,-0.5138,0.3805,-0.7689,-0.3539,0.3805,-0.8544,-0.1804,0.3805,-0.907,-0.1626,0.5528,-0.8173,-0.3189,0.5528,-0.7699,-0.3189,0.5528,-0.7699,-0.3539,0.3805,-0.8544,-0.1804,0.3805,-0.907,-0.0907,0.379,-0.921,-0.0818,0.5509,-0.8305,-0.1626,0.5528,-0.8173,-0.1626,0.5528,-0.8173,-0.1804,0.3805,-0.907,-0.0907,0.379,-0.921,-0.1914,0.1939,0.9622,-0.1804,0.3805,0.907,-0.0907,0.379,0.921,-0.0907,0.379,0.921,-0.0962,0.193,0.9765,-0.1914,0.1939,0.9622,-0.3754,0.1939,0.9063,-0.3539,0.3805,0.8544,-0.1804,0.3805,0.907,-0.1804,0.3805,0.907,-0.1914,0.1939,0.9622,-0.3754,0.1939,0.9063,-0.545,0.1939,0.8157,-0.5138,0.3805,0.7689,-0.3539,0.3805,0.8544,-0.3539,0.3805,0.8544,-0.3754,0.1939,0.9063,-0.545,0.1939,0.8157,-0.6937,0.1939,0.6937,-0.6539,0.3805,0.6539,-0.5138,0.3805,0.7689,-0.5138,0.3805,0.7689,-0.545,0.1939,0.8157,-0.6937,0.1939,0.6937,-0.8157,0.1939,0.545,-0.7689,0.3805,0.5138,-0.6539,0.3805,0.6539,-0.6539,0.3805,0.6539,-0.6937,0.1939,0.6937,-0.8157,0.1939,0.545,-0.9063,0.1939,0.3754,-0.8544,0.3805,0.3539,-0.7689,0.3805,0.5138,-0.7689,0.3805,0.5138,-0.8157,0.1939,0.545,-0.9063,0.1939,0.3754,-0.9622,0.1939,0.1914,-0.907,0.3805,0.1804,-0.8544,0.3805,0.3539,-0.8544,0.3805,0.3539,-0.9063,0.1939,0.3754,-0.9622,0.1939,0.1914,-0.981,0.1939,0.0,-0.9248,0.3805,0.0,-0.907,0.3805,0.1804,-0.907,0.3805,0.1804,-0.9622,0.1939,0.1914,-0.981,0.1939,0.0,-0.9622,0.1939,-0.1914,-0.907,0.3805,-0.1804,-0.9248,0.3805,0.0,-0.9248,0.3805,0.0,-0.981,0.1939,0.0,-0.9622,0.1939,-0.1914,-0.9063,0.1939,-0.3754,-0.8544,0.3805,-0.3539,-0.907,0.3805,-0.1804,-0.907,0.3805,-0.1804,-0.9622,0.1939,-0.1914,-0.9063,0.1939,-0.3754,-0.8157,0.1939,-0.545,-0.7689,0.3805,-0.5138,-0.8544,0.3805,-0.3539,-0.8544,0.3805,-0.3539,-0.9063,0.1939,-0.3754,-0.8157,0.1939,-0.545,-0.6937,0.1939,-0.6937,-0.6539,0.3805,-0.6539,-0.7689,0.3805,-0.5138,-0.7689,0.3805,-0.5138,-0.8157,0.1939,-0.545,-0.6937,0.1939,-0.6937,-0.545,0.1939,-0.8157,-0.5138,0.3805,-0.7689,-0.6539,0.3805,-0.6539,-0.6539,0.3805,-0.6539,-0.6937,0.1939,-0.6937,-0.545,0.1939,-0.8157,-0.3754,0.1939,-0.9063,-0.3539,0.3805,-0.8544,-0.5138,0.3805,-0.7689,-0.5138,0.3805,-0.7689,-0.545,0.1939,-0.8157,-0.3754,0.1939,-0.9063,-0.1914,0.1939,-0.9622,-0.1804,0.3805,-0.907,-0.3539,0.3805,-0.8544,-0.3539,0.3805,-0.8544,-0.3754,0.1939,-0.9063,-0.1914,0.1939,-0.9622,-0.0962,0.193,-0.9765,-0.0907,0.379,-0.921,-0.1804,0.3805,-0.907,-0.1804,0.3805,-0.907,-0.1914,0.1939,-0.9622,-0.0962,0.193,-0.9765,-0.1951,0.0,0.9808,-0.1914,0.1939,0.9622,-0.0962,0.193,0.9765,-0.0962,0.193,0.9765,-0.098,0.0,0.9952,-0.1951,0.0,0.9808,-0.3827,0.0,0.9239,-0.3754,0.1939,0.9063,-0.1914,0.1939,0.9622,-0.1914,0.1939,0.9622,-0.1951,0.0,0.9808,-0.3827,0.0,0.9239,-0.5556,0.0,0.8315,-0.545,0.1939,0.8157,-0.3754,0.1939,0.9063,-0.3754,0.1939,0.9063,-0.3827,0.0,0.9239,-0.5556,0.0,0.8315,-0.7071,0.0,0.7071,-0.6937,0.1939,0.6937,-0.545,0.1939,0.8157,-0.545,0.1939,0.8157,-0.5556,0.0,0.8315,-0.7071,0.0,0.7071,-0.8315,0.0,0.5556,-0.8157,0.1939,0.545,-0.6937,0.1939,0.6937,-0.6937,0.1939,0.6937,-0.7071,0.0,0.7071,-0.8315,0.0,0.5556,-0.9239,0.0,0.3827,-0.9063,0.1939,0.3754,-0.8157,0.1939,0.545,-0.8157,0.1939,0.545,-0.8315,0.0,0.5556,-0.9239,0.0,0.3827,-0.9808,0.0,0.1951,-0.9622,0.1939,0.1914,-0.9063,0.1939,0.3754,-0.9063,0.1939,0.3754,-0.9239,0.0,0.3827,-0.9808,0.0,0.1951,-1.0,0.0,0.0,-0.981,0.1939,0.0,-0.9622,0.1939,0.1914,-0.9622,0.1939,0.1914,-0.9808,0.0,0.1951,-1.0,0.0,0.0,-0.9808,0.0,-0.1951,-0.9622,0.1939,-0.1914,-0.981,0.1939,0.0,-0.981,0.1939,0.0,-1.0,0.0,0.0,-0.9808,0.0,-0.1951,-0.9239,0.0,-0.3827,-0.9063,0.1939,-0.3754,-0.9622,0.1939,-0.1914,-0.9622,0.1939,-0.1914,-0.9808,0.0,-0.1951,-0.9239,0.0,-0.3827,-0.8315,0.0,-0.5556,-0.8157,0.1939,-0.545,-0.9063,0.1939,-0.3754,-0.9063,0.1939,-0.3754,-0.9239,0.0,-0.3827,-0.8315,0.0,-0.5556,-0.7071,0.0,-0.7071,-0.6937,0.1939,-0.6937,-0.8157,0.1939,-0.545,-0.8157,0.1939,-0.545,-0.8315,0.0,-0.5556,-0.7071,0.0,-0.7071,-0.5556,0.0,-0.8315,-0.545,0.1939,-0.8157,-0.6937,0.1939,-0.6937,-0.6937,0.1939,-0.6937,-0.7071,0.0,-0.7071,-0.5556,0.0,-0.8315,-0.3827,0.0,-0.9239,-0.3754,0.1939,-0.9063,-0.545,0.1939,-0.8157,-0.545,0.1939,-0.8157,-0.5556,0.0,-0.8315,-0.3827,0.0,-0.9239,-0.1951,0.0,-0.9808,-0.1914,0.1939,-0.9622,-0.3754,0.1939,-0.9063,-0.3754,0.1939,-0.9063,-0.3827,0.0,-0.9239,-0.1951,0.0,-0.9808,-0.098,0.0,-0.9952,-0.0962,0.193,-0.9765,-0.1914,0.1939,-0.9622,-0.1914,0.1939,-0.9622,-0.1951,0.0,-0.9808,-0.098,0.0,-0.9952,-0.1914,-0.1939,0.9622,-0.1951,0.0,0.9808,-0.098,0.0,0.9952,-0.098,0.0,0.9952,-0.0962,-0.193,0.9765,-0.1914,-0.1939,0.9622,-0.3754,-0.1939,0.9063,-0.3827,0.0,0.9239,-0.1951,0.0,0.9808,-0.1951,0.0,0.9808,-0.1914,-0.1939,0.9622,-0.3754,-0.1939,0.9063,-0.545,-0.1939,0.8157,-0.5556,0.0,0.8315,-0.3827,0.0,0.9239,-0.3827,0.0,0.9239,-0.3754,-0.1939,0.9063,-0.545,-0.1939,0.8157,-0.6937,-0.1939,0.6937,-0.7071,0.0,0.7071,-0.5556,0.0,0.8315,-0.5556,0.0,0.8315,-0.545,-0.1939,0.8157,-0.6937,-0.1939,0.6937,-0.8157,-0.1939,0.545,-0.8315,0.0,0.5556,-0.7071,0.0,0.7071,-0.7071,0.0,0.7071,-0.6937,-0.1939,0.6937,-0.8157,-0.1939,0.545,-0.9063,-0.1939,0.3754,-0.9239,0.0,0.3827,-0.8315,0.0,0.5556,-0.8315,0.0,0.5556,-0.8157,-0.1939,0.545,-0.9063,-0.1939,0.3754,-0.9622,-0.1939,0.1914,-0.9808,0.0,0.1951,-0.9239,0.0,0.3827,-0.9239,0.0,0.3827,-0.9063,-0.1939,0.3754,-0.9622,-0.1939,0.1914,-0.981,-0.1939,0.0,-1.0,0.0,0.0,-0.9808,0.0,0.1951,-0.9808,0.0,0.1951,-0.9622,-0.1939,0.1914,-0.981,-0.1939,0.0,-0.9622,-0.1939,-0.1914,-0.9808,0.0,-0.1951,-1.0,0.0,0.0,-1.0,0.0,0.0,-0.981,-0.1939,0.0,-0.9622,-0.1939,-0.1914,-0.9063,-0.1939,-0.3754,-0.9239,0.0,-0.3827,-0.9808,0.0,-0.1951,-0.9808,0.0,-0.1951,-0.9622,-0.1939,-0.1914,-0.9063,-0.1939,-0.3754,-0.8157,-0.1939,-0.545,-0.8315,0.0,-0.5556,-0.9239,0.0,-0.3827,-0.9239,0.0,-0.3827,-0.9063,-0.1939,-0.3754,-0.8157,-0.1939,-0.545,-0.6937,-0.1939,-0.6937,-0.7071,0.0,-0.7071,-0.8315,0.0,-0.5556,-0.8315,0.0,-0.5556,-0.8157,-0.1939,-0.545,-0.6937,-0.1939,-0.6937,-0.545,-0.1939,-0.8157,-0.5556,0.0,-0.8315,-0.7071,0.0,-0.7071,-0.7071,0.0,-0.7071,-0.6937,-0.1939,-0.6937,-0.545,-0.1939,-0.8157,-0.3754,-0.1939,-0.9063,-0.3827,0.0,-0.9239,-0.5556,0.0,-0.8315,-0.5556,0.0,-0.8315,-0.545,-0.1939,-0.8157,-0.3754,-0.1939,-0.9063,-0.1914,-0.1939,-0.9622,-0.1951,0.0,-0.9808,-0.3827,0.0,-0.9239,-0.3827,0.0,-0.9239,-0.3754,-0.1939,-0.9063,-0.1914,-0.1939,-0.9622,-0.0962,-0.193,-0.9765,-0.098,0.0,-0.9952,-0.1951,0.0,-0.9808,-0.1951,0.0,-0.9808,-0.1914,-0.1939,-0.9622,-0.0962,-0.193,-0.9765,-0.1804,-0.3805,0.907,-0.1914,-0.1939,0.9622,-0.0962,-0.193,0.9765,-0.0962,-0.193,0.9765,-0.0907,-0.379,0.921,-0.1804,-0.3805,0.907,-0.3539,-0.3805,0.8544,-0.3754,-0.1939,0.9063,-0.1914,-0.1939,0.9622,-0.1914,-0.1939,0.9622,-0.1804,-0.3805,0.907,-0.3539,-0.3805,0.8544,-0.5138,-0.3805,0.7689,-0.545,-0.1939,0.8157,-0.3754,-0.1939,0.9063,-0.3754,-0.1939,0.9063,-0.3539,-0.3805,0.8544,-0.5138,-0.3805,0.7689,-0.6539,-0.3805,0.6539,-0.6937,-0.1939,0.6937,-0.545,-0.1939,0.8157,-0.545,-0.1939,0.8157,-0.5138,-0.3805,0.7689,-0.6539,-0.3805,0.6539,-0.7689,-0.3805,0.5138,-0.8157,-0.1939,0.545,-0.6937,-0.1939,0.6937,-0.6937,-0.1939,0.6937,-0.6539,-0.3805,0.6539,-0.7689,-0.3805,0.5138,-0.8544,-0.3805,0.3539,-0.9063,-0.1939,0.3754,-0.8157,-0.1939,0.545,-0.8157,-0.1939,0.545,-0.7689,-0.3805,0.5138,-0.8544,-0.3805,0.3539,-0.907,-0.3805,0.1804,-0.9622,-0.1939,0.1914,-0.9063,-0.1939,0.3754,-0.9063,-0.1939,0.3754,-0.8544,-0.3805,0.3539,-0.907,-0.3805,0.1804,-0.9248,-0.3805,0.0,-0.981,-0.1939,0.0,-0.9622,-0.1939,0.1914,-0.9622,-0.1939,0.1914,-0.907,-0.3805,0.1804,-0.9248,-0.3805,0.0,-0.907,-0.3805,-0.1804,-0.9622,-0.1939,-0.1914,-0.981,-0.1939,0.0,-0.981,-0.1939,0.0,-0.9248,-0.3805,0.0,-0.907,-0.3805,-0.1804,-0.8544,-0.3805,-0.3539,-0.9063,-0.1939,-0.3754,-0.9622,-0.1939,-0.1914,-0.9622,-0.1939,-0.1914,-0.907,-0.3805,-0.1804,-0.8544,-0.3805,-0.3539,-0.7689,-0.3805,-0.5138,-0.8157,-0.1939,-0.545,-0.9063,-0.1939,-0.3754,-0.9063,-0.1939,-0.3754,-0.8544,-0.3805,-0.3539,-0.7689,-0.3805,-0.5138,-0.6539,-0.3805,-0.6539,-0.6937,-0.1939,-0.6937,-0.8157,-0.1939,-0.545,-0.8157,-0.1939,-0.545,-0.7689,-0.3805,-0.5138,-0.6539,-0.3805,-0.6539,-0.5138,-0.3805,-0.7689,-0.545,-0.1939,-0.8157,-0.6937,-0.1939,-0.6937,-0.6937,-0.1939,-0.6937,-0.6539,-0.3805,-0.6539,-0.5138,-0.3805,-0.7689,-0.3539,-0.3805,-0.8544,-0.3754,-0.1939,-0.9063,-0.545,-0.1939,-0.8157,-0.545,-0.1939,-0.8157,-0.5138,-0.3805,-0.7689,-0.3539,-0.3805,-0.8544,-0.1804,-0.3805,-0.907,-0.1914,-0.1939,-0.9622,-0.3754,-0.1939,-0.9063,-0.3754,-0.1939,-0.9063,-0.3539,-0.3805,-0.8544,-0.1804,-0.3805,-0.907,-0.0907,-0.379,-0.921,-0.0962,-0.193,-0.9765,-0.1914,-0.1939,-0.9622,-0.1914,-0.1939,-0.9622,-0.1804,-0.3805,-0.907,-0.0907,-0.379,-0.921,-0.1626,-0.5528,0.8173,-0.1804,-0.3805,0.907,-0.0907,-0.379,0.921,-0.0907,-0.379,0.921,-0.0818,-0.5509,0.8305,-0.1626,-0.5528,0.8173,-0.3189,-0.5528,0.7699,-0.3539,-0.3805,0.8544,-0.1804,-0.3805,0.907,-0.1804,-0.3805,0.907,-0.1626,-0.5528,0.8173,-0.3189,-0.5528,0.7699,-0.463,-0.5528,0.6929,-0.5138,-0.3805,0.7689,-0.3539,-0.3805,0.8544,-0.3539,-0.3805,0.8544,-0.3189,-0.5528,0.7699,-0.463,-0.5528,0.6929,-0.5893,-0.5528,0.5893,-0.6539,-0.3805,0.6539,-0.5138,-0.3805,0.7689,-0.5138,-0.3805,0.7689,-0.463,-0.5528,0.6929,-0.5893,-0.5528,0.5893,-0.6929,-0.5528,0.463,-0.7689,-0.3805,0.5138,-0.6539,-0.3805,0.6539,-0.6539,-0.3805,0.6539,-0.5893,-0.5528,0.5893,-0.6929,-0.5528,0.463,-0.7699,-0.5528,0.3189,-0.8544,-0.3805,0.3539,-0.7689,-0.3805,0.5138,-0.7689,-0.3805,0.5138,-0.6929,-0.5528,0.463,-0.7699,-0.5528,0.3189,-0.8173,-0.5528,0.1626,-0.907,-0.3805,0.1804,-0.8544,-0.3805,0.3539,-0.8544,-0.3805,0.3539,-0.7699,-0.5528,0.3189,-0.8173,-0.5528,0.1626,-0.8333,-0.5528,0.0,-0.9248,-0.3805,0.0,-0.907,-0.3805,0.1804,-0.907,-0.3805,0.1804,-0.8173,-0.5528,0.1626,-0.8333,-0.5528,0.0,-0.8173,-0.5528,-0.1626,-0.907,-0.3805,-0.1804,-0.9248,-0.3805,0.0,-0.9248,-0.3805,0.0,-0.8333,-0.5528,0.0,-0.8173,-0.5528,-0.1626,-0.7699,-0.5528,-0.3189,-0.8544,-0.3805,-0.3539,-0.907,-0.3805,-0.1804,-0.907,-0.3805,-0.1804,-0.8173,-0.5528,-0.1626,-0.7699,-0.5528,-0.3189,-0.6929,-0.5528,-0.463,-0.7689,-0.3805,-0.5138,-0.8544,-0.3805,-0.3539,-0.8544,-0.3805,-0.3539,-0.7699,-0.5528,-0.3189,-0.6929,-0.5528,-0.463,-0.5893,-0.5528,-0.5893,-0.6539,-0.3805,-0.6539,-0.7689,-0.3805,-0.5138,-0.7689,-0.3805,-0.5138,-0.6929,-0.5528,-0.463,-0.5893,-0.5528,-0.5893,-0.463,-0.5528,-0.6929,-0.5138,-0.3805,-0.7689,-0.6539,-0.3805,-0.6539,-0.6539,-0.3805,-0.6539,-0.5893,-0.5528,-0.5893,-0.463,-0.5528,-0.6929,-0.3189,-0.5528,-0.7699,-0.3539,-0.3805,-0.8544,-0.5138,-0.3805,-0.7689,-0.5138,-0.3805,-0.7689,-0.463,-0.5528,-0.6929,-0.3189,-0.5528,-0.7699,-0.1626,-0.5528,-0.8173,-0.1804,-0.3805,-0.907,-0.3539,-0.3805,-0.8544,-0.3539,-0.3805,-0.8544,-0.3189,-0.5528,-0.7699,-0.1626,-0.5528,-0.8173,-0.0818,-0.5509,-0.8305,-0.0907,-0.379,-0.921,-0.1804,-0.3805,-0.907,-0.1804,-0.3805,-0.907,-0.1626,-0.5528,-0.8173,-0.0818,-0.5509,-0.8305,-0.1385,-0.7041,0.6965,-0.1626,-0.5528,0.8173,-0.0818,-0.5509,0.8305,-0.0818,-0.5509,0.8305,-0.0698,-0.7023,0.7084,-0.1385,-0.7041,0.6965,-0.2718,-0.7041,0.6561,-0.3189,-0.5528,0.7699,-0.1626,-0.5528,0.8173,-0.1626,-0.5528,0.8173,-0.1385,-0.7041,0.6965,-0.2718,-0.7041,0.6561,-0.3945,-0.7041,0.5905,-0.463,-0.5528,0.6929,-0.3189,-0.5528,0.7699,-0.3189,-0.5528,0.7699,-0.2718,-0.7041,0.6561,-0.3945,-0.7041,0.5905,-0.5021,-0.7041,0.5021,-0.5893,-0.5528,0.5893,-0.463,-0.5528,0.6929,-0.463,-0.5528,0.6929,-0.3945,-0.7041,0.5905,-0.5021,-0.7041,0.5021,-0.5905,-0.7041,0.3945,-0.6929,-0.5528,0.463,-0.5893,-0.5528,0.5893,-0.5893,-0.5528,0.5893,-0.5021,-0.7041,0.5021,-0.5905,-0.7041,0.3945,-0.6561,-0.7041,0.2718,-0.7699,-0.5528,0.3189,-0.6929,-0.5528,0.463,-0.6929,-0.5528,0.463,-0.5905,-0.7041,0.3945,-0.6561,-0.7041,0.2718,-0.6965,-0.7041,0.1385,-0.8173,-0.5528,0.1626,-0.7699,-0.5528,0.3189,-0.7699,-0.5528,0.3189,-0.6561,-0.7041,0.2718,-0.6965,-0.7041,0.1385,-0.7101,-0.7041,0.0,-0.8333,-0.5528,0.0,-0.8173,-0.5528,0.1626,-0.8173,-0.5528,0.1626,-0.6965,-0.7041,0.1385,-0.7101,-0.7041,0.0,-0.6965,-0.7041,-0.1385,-0.8173,-0.5528,-0.1626,-0.8333,-0.5528,0.0,-0.8333,-0.5528,0.0,-0.7101,-0.7041,0.0,-0.6965,-0.7041,-0.1385,-0.6561,-0.7041,-0.2718,-0.7699,-0.5528,-0.3189,-0.8173,-0.5528,-0.1626,-0.8173,-0.5528,-0.1626,-0.6965,-0.7041,-0.1385,-0.6561,-0.7041,-0.2718,-0.5905,-0.7041,-0.3945,-0.6929,-0.5528,-0.463,-0.7699,-0.5528,-0.3189,-0.7699,-0.5528,-0.3189,-0.6561,-0.7041,-0.2718,-0.5905,-0.7041,-0.3945,-0.5021,-0.7041,-0.5021,-0.5893,-0.5528,-0.5893,-0.6929,-0.5528,-0.463,-0.6929,-0.5528,-0.463,-0.5905,-0.7041,-0.3945,-0.5021,-0.7041,-0.5021,-0.3945,-0.7041,-0.5905,-0.463,-0.5528,-0.6929,-0.5893,-0.5528,-0.5893,-0.5893,-0.5528,-0.5893,-0.5021,-0.7041,-0.5021,-0.3945,-0.7041,-0.5905,-0.2718,-0.7041,-0.6561,-0.3189,-0.5528,-0.7699,-0.463,-0.5528,-0.6929,-0.463,-0.5528,-0.6929,-0.3945,-0.7041,-0.5905,-0.2718,-0.7041,-0.6561,-0.1385,-0.7041,-0.6965,-0.1626,-0.5528,-0.8173,-0.3189,-0.5528,-0.7699,-0.3189,-0.5528,-0.7699,-0.2718,-0.7041,-0.6561,-0.1385,-0.7041,-0.6965,-0.0698,-0.7023,-0.7084,-0.0818,-0.5509,-0.8305,-0.1626,-0.5528,-0.8173,-0.1626,-0.5528,-0.8173,-0.1385,-0.7041,-0.6965,-0.0698,-0.7023,-0.7084,-0.1092,-0.8286,0.549,-0.1385,-0.7041,0.6965,-0.0698,-0.7023,0.7084,-0.0698,-0.7023,0.7084,-0.055,-0.8274,0.5589,-0.1092,-0.8286,0.549,-0.2142,-0.8286,0.5172,-0.2718,-0.7041,0.6561,-0.1385,-0.7041,0.6965,-0.1385,-0.7041,0.6965,-0.1092,-0.8286,0.549,-0.2142,-0.8286,0.5172,-0.311,-0.8286,0.4654,-0.3945,-0.7041,0.5905,-0.2718,-0.7041,0.6561,-0.2718,-0.7041,0.6561,-0.2142,-0.8286,0.5172,-0.311,-0.8286,0.4654,-0.3958,-0.8286,0.3958,-0.5021,-0.7041,0.5021,-0.3945,-0.7041,0.5905,-0.3945,-0.7041,0.5905,-0.311,-0.8286,0.4654,-0.3958,-0.8286,0.3958,-0.4654,-0.8286,0.311,-0.5905,-0.7041,0.3945,-0.5021,-0.7041,0.5021,-0.5021,-0.7041,0.5021,-0.3958,-0.8286,0.3958,-0.4654,-0.8286,0.311,-0.5172,-0.8286,0.2142,-0.6561,-0.7041,0.2718,-0.5905,-0.7041,0.3945,-0.5905,-0.7041,0.3945,-0.4654,-0.8286,0.311,-0.5172,-0.8286,0.2142,-0.549,-0.8286,0.1092,-0.6965,-0.7041,0.1385,-0.6561,-0.7041,0.2718,-0.6561,-0.7041,0.2718,-0.5172,-0.8286,0.2142,-0.549,-0.8286,0.1092,-0.5598,-0.8286,0.0,-0.7101,-0.7041,0.0,-0.6965,-0.7041,0.1385,-0.6965,-0.7041,0.1385,-0.549,-0.8286,0.1092,-0.5598,-0.8286,0.0,-0.549,-0.8286,-0.1092,-0.6965,-0.7041,-0.1385,-0.7101,-0.7041,0.0,-0.7101,-0.7041,0.0,-0.5598,-0.8286,0.0,-0.549,-0.8286,-0.1092,-0.5172,-0.8286,-0.2142,-0.6561,-0.7041,-0.2718,-0.6965,-0.7041,-0.1385,-0.6965,-0.7041,-0.1385,-0.549,-0.8286,-0.1092,-0.5172,-0.8286,-0.2142,-0.4654,-0.8286,-0.311,-0.5905,-0.7041,-0.3945,-0.6561,-0.7041,-0.2718,-0.6561,-0.7041,-0.2718,-0.5172,-0.8286,-0.2142,-0.4654,-0.8286,-0.311,-0.3958,-0.8286,-0.3958,-0.5021,-0.7041,-0.5021,-0.5905,-0.7041,-0.3945,-0.5905,-0.7041,-0.3945,-0.4654,-0.8286,-0.311,-0.3958,-0.8286,-0.3958,-0.311,-0.8286,-0.4654,-0.3945,-0.7041,-0.5905,-0.5021,-0.7041,-0.5021,-0.5021,-0.7041,-0.5021,-0.3958,-0.8286,-0.3958,-0.311,-0.8286,-0.4654,-0.2142,-0.8286,-0.5172,-0.2718,-0.7041,-0.6561,-0.3945,-0.7041,-0.5905,-0.3945,-0.7041,-0.5905,-0.311,-0.8286,-0.4654,-0.2142,-0.8286,-0.5172,-0.1092,-0.8286,-0.549,-0.1385,-0.7041,-0.6965,-0.2718,-0.7041,-0.6561,-0.2718,-0.7041,-0.6561,-0.2142,-0.8286,-0.5172,-0.1092,-0.8286,-0.549,-0.055,-0.8274,-0.5589,-0.0698,-0.7023,-0.7084,-0.1385,-0.7041,-0.6965,-0.1385,-0.7041,-0.6965,-0.1092,-0.8286,-0.549,-0.055,-0.8274,-0.5589,-0.0757,-0.9217,0.3804,-0.1092,-0.8286,0.549,-0.055,-0.8274,0.5589,-0.055,-0.8274,0.5589,-0.0382,-0.921,0.3876,-0.0757,-0.9217,0.3804,-0.1484,-0.9217,0.3584,-0.2142,-0.8286,0.5172,-0.1092,-0.8286,0.549,-0.1092,-0.8286,0.549,-0.0757,-0.9217,0.3804,-0.1484,-0.9217,0.3584,-0.2155,-0.9217,0.3225,-0.311,-0.8286,0.4654,-0.2142,-0.8286,0.5172,-0.2142,-0.8286,0.5172,-0.1484,-0.9217,0.3584,-0.2155,-0.9217,0.3225,-0.2743,-0.9217,0.2743,-0.3958,-0.8286,0.3958,-0.311,-0.8286,0.4654,-0.311,-0.8286,0.4654,-0.2155,-0.9217,0.3225,-0.2743,-0.9217,0.2743,-0.3225,-0.9217,0.2155,-0.4654,-0.8286,0.311,-0.3958,-0.8286,0.3958,-0.3958,-0.8286,0.3958,-0.2743,-0.9217,0.2743,-0.3225,-0.9217,0.2155,-0.3584,-0.9217,0.1484,-0.5172,-0.8286,0.2142,-0.4654,-0.8286,0.311,-0.4654,-0.8286,0.311,-0.3225,-0.9217,0.2155,-0.3584,-0.9217,0.1484,-0.3804,-0.9217,0.0757,-0.549,-0.8286,0.1092,-0.5172,-0.8286,0.2142,-0.5172,-0.8286,0.2142,-0.3584,-0.9217,0.1484,-0.3804,-0.9217,0.0757,-0.3879,-0.9217,0.0,-0.5598,-0.8286,0.0,-0.549,-0.8286,0.1092,-0.549,-0.8286,0.1092,-0.3804,-0.9217,0.0757,-0.3879,-0.9217,0.0,-0.3804,-0.9217,-0.0757,-0.549,-0.8286,-0.1092,-0.5598,-0.8286,0.0,-0.5598,-0.8286,0.0,-0.3879,-0.9217,0.0,-0.3804,-0.9217,-0.0757,-0.3584,-0.9217,-0.1484,-0.5172,-0.8286,-0.2142,-0.549,-0.8286,-0.1092,-0.549,-0.8286,-0.1092,-0.3804,-0.9217,-0.0757,-0.3584,-0.9217,-0.1484,-0.3225,-0.9217,-0.2155,-0.4654,-0.8286,-0.311,-0.5172,-0.8286,-0.2142,-0.5172,-0.8286,-0.2142,-0.3584,-0.9217,-0.1484,-0.3225,-0.9217,-0.2155,-0.2743,-0.9217,-0.2743,-0.3958,-0.8286,-0.3958,-0.4654,-0.8286,-0.311,-0.4654,-0.8286,-0.311,-0.3225,-0.9217,-0.2155,-0.2743,-0.9217,-0.2743,-0.2155,-0.9217,-0.3225,-0.311,-0.8286,-0.4654,-0.3958,-0.8286,-0.3958,-0.3958,-0.8286,-0.3958,-0.2743,-0.9217,-0.2743,-0.2155,-0.9217,-0.3225,-0.1484,-0.9217,-0.3584,-0.2142,-0.8286,-0.5172,-0.311,-0.8286,-0.4654,-0.311,-0.8286,-0.4654,-0.2155,-0.9217,-0.3225,-0.1484,-0.9217,-0.3584,-0.0757,-0.9217,-0.3804,-0.1092,-0.8286,-0.549,-0.2142,-0.8286,-0.5172,-0.2142,-0.8286,-0.5172,-0.1484,-0.9217,-0.3584,-0.0757,-0.9217,-0.3804,-0.0382,-0.921,-0.3876,-0.055,-0.8274,-0.5589,-0.1092,-0.8286,-0.549,-0.1092,-0.8286,-0.549,-0.0757,-0.9217,-0.3804,-0.0382,-0.921,-0.3876,-0.0392,-0.9796,0.1971,-0.0757,-0.9217,0.3804,-0.0382,-0.921,0.3876,-0.0382,-0.921,0.3876,-0.0198,-0.9794,0.2009,-0.0392,-0.9796,0.1971,-0.0769,-0.9796,0.1857,-0.1484,-0.9217,0.3584,-0.0757,-0.9217,0.3804,-0.0757,-0.9217,0.3804,-0.0392,-0.9796,0.1971,-0.0769,-0.9796,0.1857,-0.1117,-0.9796,0.1671,-0.2155,-0.9217,0.3225,-0.1484,-0.9217,0.3584,-0.1484,-0.9217,0.3584,-0.0769,-0.9796,0.1857,-0.1117,-0.9796,0.1671,-0.1421,-0.9796,0.1421,-0.2743,-0.9217,0.2743,-0.2155,-0.9217,0.3225,-0.2155,-0.9217,0.3225,-0.1117,-0.9796,0.1671,-0.1421,-0.9796,0.1421,-0.1671,-0.9796,0.1117,-0.3225,-0.9217,0.2155,-0.2743,-0.9217,0.2743,-0.2743,-0.9217,0.2743,-0.1421,-0.9796,0.1421,-0.1671,-0.9796,0.1117,-0.1857,-0.9796,0.0769,-0.3584,-0.9217,0.1484,-0.3225,-0.9217,0.2155,-0.3225,-0.9217,0.2155,-0.1671,-0.9796,0.1117,-0.1857,-0.9796,0.0769,-0.1971,-0.9796,0.0392,-0.3804,-0.9217,0.0757,-0.3584,-0.9217,0.1484,-0.3584,-0.9217,0.1484,-0.1857,-0.9796,0.0769,-0.1971,-0.9796,0.0392,-0.201,-0.9796,0.0,-0.3879,-0.9217,0.0,-0.3804,-0.9217,0.0757,-0.3804,-0.9217,0.0757,-0.1971,-0.9796,0.0392,-0.201,-0.9796,0.0,-0.1971,-0.9796,-0.0392,-0.3804,-0.9217,-0.0757,-0.3879,-0.9217,0.0,-0.3879,-0.9217,0.0,-0.201,-0.9796,0.0,-0.1971,-0.9796,-0.0392,-0.1857,-0.9796,-0.0769,-0.3584,-0.9217,-0.1484,-0.3804,-0.9217,-0.0757,-0.3804,-0.9217,-0.0757,-0.1971,-0.9796,-0.0392,-0.1857,-0.9796,-0.0769,-0.1671,-0.9796,-0.1117,-0.3225,-0.9217,-0.2155,-0.3584,-0.9217,-0.1484,-0.3584,-0.9217,-0.1484,-0.1857,-0.9796,-0.0769,-0.1671,-0.9796,-0.1117,-0.1421,-0.9796,-0.1421,-0.2743,-0.9217,-0.2743,-0.3225,-0.9217,-0.2155,-0.3225,-0.9217,-0.2155,-0.1671,-0.9796,-0.1117,-0.1421,-0.9796,-0.1421,-0.1117,-0.9796,-0.1671,-0.2155,-0.9217,-0.3225,-0.2743,-0.9217,-0.2743,-0.2743,-0.9217,-0.2743,-0.1421,-0.9796,-0.1421,-0.1117,-0.9796,-0.1671,-0.0769,-0.9796,-0.1857,-0.1484,-0.9217,-0.3584,-0.2155,-0.9217,-0.3225,-0.2155,-0.9217,-0.3225,-0.1117,-0.9796,-0.1671,-0.0769,-0.9796,-0.1857,-0.0392,-0.9796,-0.1971,-0.0757,-0.9217,-0.3804,-0.1484,-0.9217,-0.3584,-0.1484,-0.9217,-0.3584,-0.0769,-0.9796,-0.1857,-0.0392,-0.9796,-0.1971,-0.0198,-0.9794,-0.2009,-0.0382,-0.921,-0.3876,-0.0757,-0.9217,-0.3804,-0.0757,-0.9217,-0.3804,-0.0392,-0.9796,-0.1971,-0.0198,-0.9794,-0.2009,-0.063,-0.998,0.0,-0.0392,-0.9796,0.1971,-0.0198,-0.9794,0.2009,-0.063,-0.998,0.0,-0.0769,-0.9796,0.1857,-0.0392,-0.9796,0.1971,-0.063,-0.998,0.0,-0.1117,-0.9796,0.1671,-0.0769,-0.9796,0.1857,-0.063,-0.998,0.0,-0.1421,-0.9796,0.1421,-0.1117,-0.9796,0.1671,-0.063,-0.998,0.0,-0.1671,-0.9796,0.1117,-0.1421,-0.9796,0.1421,-0.063,-0.998,0.0,-0.1857,-0.9796,0.0769,-0.1671,-0.9796,0.1117,-0.063,-0.998,0.0,-0.1971,-0.9796,0.0392,-0.1857,-0.9796,0.0769,-0.063,-0.998,0.0,-0.201,-0.9796,0.0,-0.1971,-0.9796,0.0392,-0.063,-0.998,0.0,-0.1971,-0.9796,-0.0392,-0.201,-0.9796,0.0,-0.063,-0.998,0.0,-0.1857,-0.9796,-0.0769,-0.1971,-0.9796,-0.0392,-0.063,-0.998,0.0,-0.1671,-0.9796,-0.1117,-0.1857,-0.9796,-0.0769,-0.063,-0.998,0.0,-0.1421,-0.9796,-0.1421,-0.1671,-0.9796,-0.1117,-0.063,-0.998,0.0,-0.1117,-0.9796,-0.1671,-0.1421,-0.9796,-0.1421,-0.063,-0.998,0.0,-0.0769,-0.9796,-0.1857,-0.1117,-0.9796,-0.1671,-0.063,-0.998,0.0,-0.0392,-0.9796,-0.1971,-0.0769,-0.9796,-0.1857,-0.063,-0.998,0.0,-0.0198,-0.9794,-0.2009,-0.0392,-0.9796,-0.1971],"tangents":null,"uvs":[0.0,2.0,0.0,1.9375,0.0312,1.9375,0.0312,2.0,0.0312,1.9375,0.0625,1.9375,0.0625,2.0,0.0625,1.9375,0.0938,1.9375,0.0938,2.0,0.0938,1.9375,0.125,1.9375,0.125,2.0,0.125,1.9375,0.1562,1.9375,0.1562,2.0,0.1562,1.9375,0.1875,1.9375,0.1875,2.0,0.1875,1.9375,0.2187,1.9375,0.2187,2.0,0.2187,1.9375,0.25,1.9375,0.25,2.0,0.25,1.9375,0.2812,1.9375,0.2812,2.0,0.2812,1.9375,0.3125,1.9375,0.3125,2.0,0.3125,1.9375,0.3437,1.9375,0.3437,2.0,0.3437,1.9375,0.375,1.9375,0.375,2.0,0.375,1.9375,0.4062,1.9375,0.4062,2.0,0.4062,1.9375,0.4375,1.9375,0.4375,2.0,0.4375,1.9375,0.4688,1.9375,0.4688,2.0,0.4688,1.9375,0.5,1.9375,0.0312,1.875,0.0312,1.9375,0.0,1.9375,0.0,1.9375,0.0,1.875,0.0312,1.875,0.0625,1.875,0.0625,1.9375,0.0312,1.9375,0.0312,1.9375,0.0312,1.875,0.0625,1.875,0.0938,1.875,0.0938,1.9375,0.0625,1.9375,0.0625,1.9375,0.0625,1.875,0.0938,1.875,0.125,1.875,0.125,1.9375,0.0938,1.9375,0.0938,1.9375,0.0938,1.875,0.125,1.875,0.1562,1.875,0.1562,1.9375,0.125,1.9375,0.125,1.9375,0.125,1.875,0.1562,1.875,0.1875,1.875,0.1875,1.9375,0.1562,1.9375,0.1562,1.9375,0.1562,1.875,0.1875,1.875,0.2187,1.875,0.2187,1.9375,0.1875,1.9375,0.1875,1.9375,0.1875,1.875,0.2187,1.875,0.25,1.875,0.25,1.9375,0.2187,1.9375,0.2187,1.9375,0.2187,1.875,0.25,1.875,0.2812,1.875,0.2812,1.9375,0.25,1.9375,0.25,1.9375,0.25,1.875,0.2812,1.875,0.3125,1.875,0.3125,1.9375,0.2812,1.9375,0.2812,1.9375,0.2812,1.875,0.3125,1.875,0.3437,1.875,0.3437,1.9375,0.3125,1.9375,0.3125,1.9375,0.3125,1.875,0.3437,1.875,0.375,1.875,0.375,1.9375,0.3437,1.9375,0.3437,1.9375,0.3437,1.875,0.375,1.875,0.4062,1.875,0.4062,1.9375,0.375,1.9375,0.375,1.9375,0.375,1.875,0.4062,1.875,0.4375,1.875,0.4375,1.9375,0.4062,1.9375,0.4062,1.9375,0.4062,1.875,0.4375,1.875,0.4688,1.875,0.4688,1.9375,0.4375,1.9375,0.4375,1.9375,0.4375,1.875,0.4688,1.875,0.5,1.875,0.5,1.9375,0.4688,1.9375,0.4688,1.9375,0.4688,1.875,0.5,1.875,0.0312,1.8125,0.0312,1.875,0.0,1.875,0.0,1.875,0.0,1.8125,0.0312,1.8125,0.0625,1.8125,0.0625,1.875,0.0312,1.875,0.0312,1.875,0.0312,1.8125,0.0625,1.8125,0.0938,1.8125,0.0938,1.875,0.0625,1.875,0.0625,1.875,0.0625,1.8125,0.0938,1.8125,0.125,1.8125,0.125,1.875,0.0938,1.875,0.0938,1.875,0.0938,1.8125,0.125,1.8125,0.1562,1.8125,0.1562,1.875,0.125,1.875,0.125,1.875,0.125,1.8125,0.1562,1.8125,0.1875,1.8125,0.1875,1.875,0.1562,1.875,0.1562,1.875,0.1562,1.8125,0.1875,1.8125,0.2187,1.8125,0.2187,1.875,0.1875,1.875,0.1875,1.875,0.1875,1.8125,0.2187,1.8125,0.25,1.8125,0.25,1.875,0.2187,1.875,0.2187,1.875,0.2187,1.8125,0.25,1.8125,0.2812,1.8125,0.2812,1.875,0.25,1.875,0.25,1.875,0.25,1.8125,0.2812,1.8125,0.3125,1.8125,0.3125,1.875,0.2812,1.875,0.2812,1.875,0.2812,1.8125,0.3125,1.8125,0.3437,1.8125,0.3437,1.875,0.3125,1.875,0.3125,1.875,0.3125,1.8125,0.3437,1.8125,0.375,1.8125,0.375,1.875,0.3437,1.875,0.3437,1.875,0.3437,1.8125,0.375,1.8125,0.4062,1.8125,0.4062,1.875,0.375,1.875,0.375,1.875,0.375,1.8125,0.4062,1.8125,0.4375,1.8125,0.4375,1.875,0.4062,1.875,0.4062,1.875,0.4062,1.8125,0.4375,1.8125,0.4688,1.8125,0.4688,1.875,0.4375,1.875,0.4375,1.875,0.4375,1.8125,0.4688,1.8125,0.5,1.8125,0.5,1.875,0.4688,1.875,0.4688,1.875,0.4688,1.8125,0.5,1.8125,0.0312,1.75,0.0312,1.8125,0.0,1.8125,0.0,1.8125,0.0,1.75,0.0312,1.75,0.0625,1.75,0.0625,1.8125,0.0312,1.8125,0.0312,1.8125,0.0312,1.75,0.0625,1.75,0.0938,1.75,0.0938,1.8125,0.0625,1.8125,0.0625,1.8125,0.0625,1.75,0.0938,1.75,0.125,1.75,0.125,1.8125,0.0938,1.8125,0.0938,1.8125,0.0938,1.75,0.125,1.75,0.1562,1.75,0.1562,1.8125,0.125,1.8125,0.125,1.8125,0.125,1.75,0.1562,1.75,0.1875,1.75,0.1875,1.8125,0.1562,1.8125,0.1562,1.8125,0.1562,1.75,0.1875,1.75,0.2187,1.75,0.2187,1.8125,0.1875,1.8125,0.1875,1.8125,0.1875,1.75,0.2187,1.75,0.25,1.75,0.25,1.8125,0.2187,1.8125,0.2187,1.8125,0.2187,1.75,0.25,1.75,0.2812,1.75,0.2812,1.8125,0.25,1.8125,0.25,1.8125,0.25,1.75,0.2812,1.75,0.3125,1.75,0.3125,1.8125,0.2812,1.8125,0.2812,1.8125,0.2812,1.75,0.3125,1.75,0.3437,1.75,0.3437,1.8125,0.3125,1.8125,0.3125,1.8125,0.3125,1.75,0.3437,1.75,0.375,1.75,0.375,1.8125,0.3437,1.8125,0.3437,1.8125,0.3437,1.75,0.375,1.75,0.4062,1.75,0.4062,1.8125,0.375,1.8125,0.375,1.8125,0.375,1.75,0.4062,1.75,0.4375,1.75,0.4375,1.8125,0.4062,1.8125,0.4062,1.8125,0.4062,1.75,0.4375,1.75,0.4688,1.75,0.4688,1.8125,0.4375,1.8125,0.4375,1.8125,0.4375,1.75,0.4688,1.75,0.5,1.75,0.5,1.8125,0.4688,1.8125,0.4688,1.8125,0.4688,1.75,0.5,1.75,0.0312,1.6875,0.0312,1.75,0.0,1.75,0.0,1.75,0.0,1.6875,0.0312,1.6875,0.0625,1.6875,0.0625,1.75,0.0312,1.75,0.0312,1.75,0.0312,1.6875,0.0625,1.6875,0.0938,1.6875,0.0938,1.75,0.0625,1.75,0.0625,1.75,0.0625,1.6875,0.0938,1.6875,0.125,1.6875,0.125,1.75,0.0938,1.75,0.0938,1.75,0.0938,1.6875,0.125,1.6875,0.1562,1.6875,0.1562,1.75,0.125,1.75,0.125,1.75,0.125,1.6875,0.1562,1.6875,0.1875,1.6875,0.1875,1.75,0.1562,1.75,0.1562,1.75,0.1562,1.6875,0.1875,1.6875,0.2187,1.6875,0.2187,1.75,0.1875,1.75,0.1875,1.75,0.1875,1.6875,0.2187,1.6875,0.25,1.6875,0.25,1.75,0.2187,1.75,0.2187,1.75,0.2187,1.6875,0.25,1.6875,0.2812,1.6875,0.2812,1.75,0.25,1.75,0.25,1.75,0.25,1.6875,0.2812,1.6875,0.3125,1.6875,0.3125,1.75,0.2812,1.75,0.2812,1.75,0.2812,1.6875,0.3125,1.6875,0.3437,1.6875,0.3437,1.75,0.3125,1.75,0.3125,1.75,0.3125,1.6875,0.3437,1.6875,0.375,1.6875,0.375,1.75,0.3437,1.75,0.3437,1.75,0.3437,1.6875,0.375,1.6875,0.4062,1.6875,0.4062,1.75,0.375,1.75,0.375,1.75,0.375,1.6875,0.4062,1.6875,0.4375,1.6875,0.4375,1.75,0.4062,1.75,0.4062,1.75,0.4062,1.6875,0.4375,1.6875,0.4688,1.6875,0.4688,1.75,0.4375,1.75,0.4375,1.75,0.4375,1.6875,0.4688,1.6875,0.5,1.6875,0.5,1.75,0.4688,1.75,0.4688,1.75,0.4688,1.6875,0.5,1.6875,0.0312,1.625,0.0312,1.6875,0.0,1.6875,0.0,1.6875,0.0,1.625,0.0312,1.625,0.0625,1.625,0.0625,1.6875,0.0312,1.6875,0.0312,1.6875,0.0312,1.625,0.0625,1.625,0.0938,1.625,0.0938,1.6875,0.0625,1.6875,0.0625,1.6875,0.0625,1.625,0.0938,1.625,0.125,1.625,0.125,1.6875,0.0938,1.6875,0.0938,1.6875,0.0938,1.625,0.125,1.625,0.1562,1.625,0.1562,1.6875,0.125,1.6875,0.125,1.6875,0.125,1.625,0.1562,1.625,0.1875,1.625,0.1875,1.6875,0.1562,1.6875,0.1562,1.6875,0.1562,1.625,0.1875,1.625,0.2187,1.625,0.2187,1.6875,0.1875,1.6875,0.1875,1.6875,0.1875,1.625,0.2187,1.625,0.25,1.625,0.25,1.6875,0.2187,1.6875,0.2187,1.6875,0.2187,1.625,0.25,1.625,0.2812,1.625,0.2812,1.6875,0.25,1.6875,0.25,1.6875,0.25,1.625,0.2812,1.625,0.3125,1.625,0.3125,1.6875,0.2812,1.6875,0.2812,1.6875,0.2812,1.625,0.3125,1.625,0.3437,1.625,0.3437,1.6875,0.3125,1.6875,0.3125,1.6875,0.3125,1.625,0.3437,1.625,0.375,1.625,0.375,1.6875,0.3437,1.6875,0.3437,1.6875,0.3437,1.625,0.375,1.625,0.4062,1.625,0.4062,1.6875,0.375,1.6875,0.375,1.6875,0.375,1.625,0.4062,1.625,0.4375,1.625,0.4375,1.6875,0.4062,1.6875,0.4062,1.6875,0.4062,1.625,0.4375,1.625,0.4688,1.625,0.4688,1.6875,0.4375,1.6875,0.4375,1.6875,0.4375,1.625,0.4688,1.625,0.5,1.625,0.5,1.6875,0.4688,1.6875,0.4688,1.6875,0.4688,1.625,0.5,1.625,0.0312,1.5625,0.0312,1.625,0.0,1.625,0.0,1.625,0.0,1.5625,0.0312,1.5625,0.0625,1.5625,0.0625,1.625,0.0312,1.625,0.0312,1.625,0.0312,1.5625,0.0625,1.5625,0.0938,1.5625,0.0938,1.625,0.0625,1.625,0.0625,1.625,0.0625,1.5625,0.0938,1.5625,0.125,1.5625,0.125,1.625,0.0938,1.625,0.0938,1.625,0.0938,1.5625,0.125,1.5625,0.1562,1.5625,0.1562,1.625,0.125,1.625,0.125,1.625,0.125,1.5625,0.1562,1.5625,0.1875,1.5625,0.1875,1.625,0.1562,1.625,0.1562,1.625,0.1562,1.5625,0.1875,1.5625,0.2187,1.5625,0.2187,1.625,0.1875,1.625,0.1875,1.625,0.1875,1.5625,0.2187,1.5625,0.25,1.5625,0.25,1.625,0.2187,1.625,0.2187,1.625,0.2187,1.5625,0.25,1.5625,0.2812,1.5625,0.2812,1.625,0.25,1.625,0.25,1.625,0.25,1.5625,0.2812,1.5625,0.3125,1.5625,0.3125,1.625,0.2812,1.625,0.2812,1.625,0.2812,1.5625,0.3125,1.5625,0.3437,1.5625,0.3437,1.625,0.3125,1.625,0.3125,1.625,0.3125,1.5625,0.3437,1.5625,0.375,1.5625,0.375,1.625,0.3437,1.625,0.3437,1.625,0.3437,1.5625,0.375,1.5625,0.4062,1.5625,0.4062,1.625,0.375,1.625,0.375,1.625,0.375,1.5625,0.4062,1.5625,0.4375,1.5625,0.4375,1.625,0.4062,1.625,0.4062,1.625,0.4062,1.5625,0.4375,1.5625,0.4688,1.5625,0.4688,1.625,0.4375,1.625,0.4375,1.625,0.4375,1.5625,0.4688,1.5625,0.5,1.5625,0.5,1.625,0.4688,1.625,0.4688,1.625,0.4688,1.5625,0.5,1.5625,0.0312,1.5,0.0312,1.5625,0.0,1.5625,0.0,1.5625,0.0,1.5,0.0312,1.5,0.0625,1.5,0.0625,1.5625,0.0312,1.5625,0.0312,1.5625,0.0312,1.5,0.0625,1.5,0.0938,1.5,0.0938,1.5625,0.0625,1.5625,0.0625,1.5625,0.0625,1.5,0.0938,1.5,0.125,1.5,0.125,1.5625,0.0938,1.5625,0.0938,1.5625,0.0938,1.5,0.125,1.5,0.1562,1.5,0.1562,1.5625,0.125,1.5625,0.125,1.5625,0.125,1.5,0.1562,1.5,0.1875,1.5,0.1875,1.5625,0.1562,1.5625,0.1562,1.5625,0.1562,1.5,0.1875,1.5,0.2187,1.5,0.2187,1.5625,0.1875,1.5625,0.1875,1.5625,0.1875,1.5,0.2187,1.5,0.25,1.5,0.25,1.5625,0.2187,1.5625,0.2187,1.5625,0.2187,1.5,0.25,1.5,0.2812,1.5,0.2812,1.5625,0.25,1.5625,0.25,1.5625,0.25,1.5,0.2812,1.5,0.3125,1.5,0.3125,1.5625,0.2812,1.5625,0.2812,1.5625,0.2812,1.5,0.3125,1.5,0.3437,1.5,0.3437,1.5625,0.3125,1.5625,0.3125,1.5625,0.3125,1.5,0.3437,1.5,0.375,1.5,0.375,1.5625,0.3437,1.5625,0.3437,1.5625,0.3437,1.5,0.375,1.5,0.4062,1.5,0.4062,1.5625,0.375,1.5625,0.375,1.5625,0.375,1.5,0.4062,1.5,0.4375,1.5,0.4375,1.5625,0.4062,1.5625,0.4062,1.5625,0.4062,1.5,0.4375,1.5,0.4688,1.5,0.4688,1.5625,0.4375,1.5625,0.4375,1.5625,0.4375,1.5,0.4688,1.5,0.5,1.5,0.5,1.5625,0.4688,1.5625,0.4688,1.5625,0.4688,1.5,0.5,1.5,0.0312,1.4375,0.0312,1.5,0.0,1.5,0.0,1.5,0.0,1.4375,0.0312,1.4375,0.0625,1.4375,0.0625,1.5,0.0312,1.5,0.0312,1.5,0.0312,1.4375,0.0625,1.4375,0.0938,1.4375,0.0938,1.5,0.0625,1.5,0.0625,1.5,0.0625,1.4375,0.0938,1.4375,0.125,1.4375,0.125,1.5,0.0938,1.5,0.0938,1.5,0.0938,1.4375,0.125,1.4375,0.1562,1.4375,0.1562,1.5,0.125,1.5,0.125,1.5,0.125,1.4375,0.1562,1.4375,0.1875,1.4375,0.1875,1.5,0.1562,1.5,0.1562,1.5,0.1562,1.4375,0.1875,1.4375,0.2187,1.4375,0.2187,1.5,0.1875,1.5,0.1875,1.5,0.1875,1.4375,0.2187,1.4375,0.25,1.4375,0.25,1.5,0.2187,1.5,0.2187,1.5,0.2187,1.4375,0.25,1.4375,0.2812,1.4375,0.2812,1.5,0.25,1.5,0.25,1.5,0.25,1.4375,0.2812,1.4375,0.3125,1.4375,0.3125,1.5,0.2812,1.5,0.2812,1.5,0.2812,1.4375,0.3125,1.4375,0.3437,1.4375,0.3437,1.5,0.3125,1.5,0.3125,1.5,0.3125,1.4375,0.3437,1.4375,0.375,1.4375,0.375,1.5,0.3437,1.5,0.3437,1.5,0.3437,1.4375,0.375,1.4375,0.4062,1.4375,0.4062,1.5,0.375,1.5,0.375,1.5,0.375,1.4375,0.4062,1.4375,0.4375,1.4375,0.4375,1.5,0.4062,1.5,0.4062,1.5,0.4062,1.4375,0.4375,1.4375,0.4688,1.4375,0.4688,1.5,0.4375,1.5,0.4375,1.5,0.4375,1.4375,0.4688,1.4375,0.5,1.4375,0.5,1.5,0.4688,1.5,0.4688,1.5,0.4688,1.4375,0.5,1.4375,0.0312,1.375,0.0312,1.4375,0.0,1.4375,0.0,1.4375,0.0,1.375,0.0312,1.375,0.0625,1.375,0.0625,1.4375,0.0312,1.4375,0.0312,1.4375,0.0312,1.375,0.0625,1.375,0.0938,1.375,0.0938,1.4375,0.0625,1.4375,0.0625,1.4375,0.0625,1.375,0.0938,1.375,0.125,1.375,0.125,1.4375,0.0938,1.4375,0.0938,1.4375,0.0938,1.375,0.125,1.375,0.1562,1.375,0.1562,1.4375,0.125,1.4375,0.125,1.4375,0.125,1.375,0.1562,1.375,0.1875,1.375,0.1875,1.4375,0.1562,1.4375,0.1562,1.4375,0.1562,1.375,0.1875,1.375,0.2187,1.375,0.2187,1.4375,0.1875,1.4375,0.1875,1.4375,0.1875,1.375,0.2187,1.375,0.25,1.375,0.25,1.4375,0.2187,1.4375,0.2187,1.4375,0.2187,1.375,0.25,1.375,0.2812,1.375,0.2812,1.4375,0.25,1.4375,0.25,1.4375,0.25,1.375,0.2812,1.375,0.3125,1.375,0.3125,1.4375,0.2812,1.4375,0.2812,1.4375,0.2812,1.375,0.3125,1.375,0.3437,1.375,0.3437,1.4375,0.3125,1.4375,0.3125,1.4375,0.3125,1.375,0.3437,1.375,0.375,1.375,0.375,1.4375,0.3437,1.4375,0.3437,1.4375,0.3437,1.375,0.375,1.375,0.4062,1.375,0.4062,1.4375,0.375,1.4375,0.375,1.4375,0.375,1.375,0.4062,1.375,0.4375,1.375,0.4375,1.4375,0.4062,1.4375,0.4062,1.4375,0.4062,1.375,0.4375,1.375,0.4688,1.375,0.4688,1.4375,0.4375,1.4375,0.4375,1.4375,0.4375,1.375,0.4688,1.375,0.5,1.375,0.5,1.4375,0.4688,1.4375,0.4688,1.4375,0.4688,1.375,0.5,1.375,0.0312,1.3125,0.0312,1.375,0.0,1.375,0.0,1.375,0.0,1.3125,0.0312,1.3125,0.0625,1.3125,0.0625,1.375,0.0312,1.375,0.0312,1.375,0.0312,1.3125,0.0625,1.3125,0.0938,1.3125,0.0938,1.375,0.0625,1.375,0.0625,1.375,0.0625,1.3125,0.0938,1.3125,0.125,1.3125,0.125,1.375,0.0938,1.375,0.0938,1.375,0.0938,1.3125,0.125,1.3125,0.1562,1.3125,0.1562,1.375,0.125,1.375,0.125,1.375,0.125,1.3125,0.1562,1.3125,0.1875,1.3125,0.1875,1.375,0.1562,1.375,0.1562,1.375,0.1562,1.3125,0.1875,1.3125,0.2187,1.3125,0.2187,1.375,0.1875,1.375,0.1875,1.375,0.1875,1.3125,0.2187,1.3125,0.25,1.3125,0.25,1.375,0.2187,1.375,0.2187,1.375,0.2187,1.3125,0.25,1.3125,0.2812,1.3125,0.2812,1.375,0.25,1.375,0.25,1.375,0.25,1.3125,0.2812,1.3125,0.3125,1.3125,0.3125,1.375,0.2812,1.375,0.2812,1.375,0.2812,1.3125,0.3125,1.3125,0.3437,1.3125,0.3437,1.375,0.3125,1.375,0.3125,1.375,0.3125,1.3125,0.3437,1.3125,0.375,1.3125,0.375,1.375,0.3437,1.375,0.3437,1.375,0.3437,1.3125,0.375,1.3125,0.4062,1.3125,0.4062,1.375,0.375,1.375,0.375,1.375,0.375,1.3125,0.4062,1.3125,0.4375,1.3125,0.4375,1.375,0.4062,1.375,0.4062,1.375,0.4062,1.3125,0.4375,1.3125,0.4688,1.3125,0.4688,1.375,0.4375,1.375,0.4375,1.375,0.4375,1.3125,0.4688,1.3125,0.5,1.3125,0.5,1.375,0.4688,1.375,0.4688,1.375,0.4688,1.3125,0.5,1.3125,0.0312,1.25,0.0312,1.3125,0.0,1.3125,0.0,1.3125,0.0,1.25,0.0312,1.25,0.0625,1.25,0.0625,1.3125,0.0312,1.3125,0.0312,1.3125,0.0312,1.25,0.0625,1.25,0.0938,1.25,0.0938,1.3125,0.0625,1.3125,0.0625,1.3125,0.0625,1.25,0.0938,1.25,0.125,1.25,0.125,1.3125,0.0938,1.3125,0.0938,1.3125,0.0938,1.25,0.125,1.25,0.1562,1.25,0.1562,1.3125,0.125,1.3125,0.125,1.3125,0.125,1.25,0.1562,1.25,0.1875,1.25,0.1875,1.3125,0.1562,1.3125,0.1562,1.3125,0.1562,1.25,0.1875,1.25,0.2187,1.25,0.2187,1.3125,0.1875,1.3125,0.1875,1.3125,0.1875,1.25,0.2187,1.25,0.25,1.25,0.25,1.3125,0.2187,1.3125,0.2187,1.3125,0.2187,1.25,0.25,1.25,0.2812,1.25,0.2812,1.3125,0.25,1.3125,0.25,1.3125,0.25,1.25,0.2812,1.25,0.3125,1.25,0.3125,1.3125,0.2812,1.3125,0.2812,1.3125,0.2812,1.25,0.3125,1.25,0.3437,1.25,0.3437,1.3125,0.3125,1.3125,0.3125,1.3125,0.3125,1.25,0.3437,1.25,0.375,1.25,0.375,1.3125,0.3437,1.3125,0.3437,1.3125,0.3437,1.25,0.375,1.25,0.4062,1.25,0.4062,1.3125,0.375,1.3125,0.375,1.3125,0.375,1.25,0.4062,1.25,0.4375,1.25,0.4375,1.3125,0.4062,1.3125,0.4062,1.3125,0.4062,1.25,0.4375,1.25,0.4688,1.25,0.4688,1.3125,0.4375,1.3125,0.4375,1.3125,0.4375,1.25,0.4688,1.25,0.5,1.25,0.5,1.3125,0.4688,1.3125,0.4688,1.3125,0.4688,1.25,0.5,1.25,0.0312,1.1875,0.0312,1.25,0.0,1.25,0.0,1.25,0.0,1.1875,0.0312,1.1875,0.0625,1.1875,0.0625,1.25,0.0312,1.25,0.0312,1.25,0.0312,1.1875,0.0625,1.1875,0.0938,1.1875,0.0938,1.25,0.0625,1.25,0.0625,1.25,0.0625,1.1875,0.0938,1.1875,0.125,1.1875,0.125,1.25,0.0938,1.25,0.0938,1.25,0.0938,1.1875,0.125,1.1875,0.1562,1.1875,0.1562,1.25,0.125,1.25,0.125,1.25,0.125,1.1875,0.1562,1.1875,0.1875,1.1875,0.1875,1.25,0.1562,1.25,0.1562,1.25,0.1562,1.1875,0.1875,1.1875,0.2187,1.1875,0.2187,1.25,0.1875,1.25,0.1875,1.25,0.1875,1.1875,0.2187,1.1875,0.25,1.1875,0.25,1.25,0.2187,1.25,0.2187,1.25,0.2187,1.1875,0.25,1.1875,0.2812,1.1875,0.2812,1.25,0.25,1.25,0.25,1.25,0.25,1.1875,0.2812,1.1875,0.3125,1.1875,0.3125,1.25,0.2812,1.25,0.2812,1.25,0.2812,1.1875,0.3125,1.1875,0.3437,1.1875,0.3437,1.25,0.3125,1.25,0.3125,1.25,0.3125,1.1875,0.3437,1.1875,0.375,1.1875,0.375,1.25,0.3437,1.25,0.3437,1.25,0.3437,1.1875,0.375,1.1875,0.4062,1.1875,0.4062,1.25,0.375,1.25,0.375,1.25,0.375,1.1875,0.4062,1.1875,0.4375,1.1875,0.4375,1.25,0.4062,1.25,0.4062,1.25,0.4062,1.1875,0.4375,1.1875,0.4688,1.1875,0.4688,1.25,0.4375,1.25,0.4375,1.25,0.4375,1.1875,0.4688,1.1875,0.5,1.1875,0.5,1.25,0.4688,1.25,0.4688,1.25,0.4688,1.1875,0.5,1.1875,0.0312,1.125,0.0312,1.1875,0.0,1.1875,0.0,1.1875,0.0,1.125,0.0312,1.125,0.0625,1.125,0.0625,1.1875,0.0312,1.1875,0.0312,1.1875,0.0312,1.125,0.0625,1.125,0.0938,1.125,0.0938,1.1875,0.0625,1.1875,0.0625,1.1875,0.0625,1.125,0.0938,1.125,0.125,1.125,0.125,1.1875,0.0938,1.1875,0.0938,1.1875,0.0938,1.125,0.125,1.125,0.1562,1.125,0.1562,1.1875,0.125,1.1875,0.125,1.1875,0.125,1.125,0.1562,1.125,0.1875,1.125,0.1875,1.1875,0.1562,1.1875,0.1562,1.1875,0.1562,1.125,0.1875,1.125,0.2187,1.125,0.2187,1.1875,0.1875,1.1875,0.1875,1.1875,0.1875,1.125,0.2187,1.125,0.25,1.125,0.25,1.1875,0.2187,1.1875,0.2187,1.1875,0.2187,1.125,0.25,1.125,0.2812,1.125,0.2812,1.1875,0.25,1.1875,0.25,1.1875,0.25,1.125,0.2812,1.125,0.3125,1.125,0.3125,1.1875,0.2812,1.1875,0.2812,1.1875,0.2812,1.125,0.3125,1.125,0.3437,1.125,0.3437,1.1875,0.3125,1.1875,0.3125,1.1875,0.3125,1.125,0.3437,1.125,0.375,1.125,0.375,1.1875,0.3437,1.1875,0.3437,1.1875,0.3437,1.125,0.375,1.125,0.4062,1.125,0.4062,1.1875,0.375,1.1875,0.375,1.1875,0.375,1.125,0.4062,1.125,0.4375,1.125,0.4375,1.1875,0.4062,1.1875,0.4062,1.1875,0.4062,1.125,0.4375,1.125,0.4688,1.125,0.4688,1.1875,0.4375,1.1875,0.4375,1.1875,0.4375,1.125,0.4688,1.125,0.5,1.125,0.5,1.1875,0.4688,1.1875,0.4688,1.1875,0.4688,1.125,0.5,1.125,0.0312,1.0625,0.0312,1.125,0.0,1.125,0.0,1.125,0.0,1.0625,0.0312,1.0625,0.0625,1.0625,0.0625,1.125,0.0312,1.125,0.0312,1.125,0.0312,1.0625,0.0625,1.0625,0.0938,1.0625,0.0938,1.125,0.0625,1.125,0.0625,1.125,0.0625,1.0625,0.0938,1.0625,0.125,1.0625,0.125,1.125,0.0938,1.125,0.0938,1.125,0.0938,1.0625,0.125,1.0625,0.1562,1.0625,0.1562,1.125,0.125,1.125,0.125,1.125,0.125,1.0625,0.1562,1.0625,0.1875,1.0625,0.1875,1.125,0.1562,1.125,0.1562,1.125,0.1562,1.0625,0.1875,1.0625,0.2187,1.0625,0.2187,1.125,0.1875,1.125,0.1875,1.125,0.1875,1.0625,0.2187,1.0625,0.25,1.0625,0.25,1.125,0.2187,1.125,0.2187,1.125,0.2187,1.0625,0.25,1.0625,0.2812,1.0625,0.2812,1.125,0.25,1.125,0.25,1.125,0.25,1.0625,0.2812,1.0625,0.3125,1.0625,0.3125,1.125,0.2812,1.125,0.2812,1.125,0.2812,1.0625,0.3125,1.0625,0.3437,1.0625,0.3437,1.125,0.3125,1.125,0.3125,1.125,0.3125,1.0625,0.3437,1.0625,0.375,1.0625,0.375,1.125,0.3437,1.125,0.3437,1.125,0.3437,1.0625,0.375,1.0625,0.4062,1.0625,0.4062,1.125,0.375,1.125,0.375,1.125,0.375,1.0625,0.4062,1.0625,0.4375,1.0625,0.4375,1.125,0.4062,1.125,0.4062,1.125,0.4062,1.0625,0.4375,1.0625,0.4688,1.0625,0.4688,1.125,0.4375,1.125,0.4375,1.125,0.4375,1.0625,0.4688,1.0625,0.5,1.0625,0.5,1.125,0.4688,1.125,0.4688,1.125,0.4688,1.0625,0.5,1.0625,0.0,1.0,0.0312,1.0625,0.0,1.0625,0.0312,1.0,0.0625,1.0625,0.0312,1.0625,0.0625,1.0,0.0938,1.0625,0.0625,1.0625,0.0938,1.0,0.125,1.0625,0.0938,1.0625,0.125,1.0,0.1562,1.0625,0.125,1.0625,0.1562,1.0,0.1875,1.0625,0.1562,1.0625,0.1875,1.0,0.2187,1.0625,0.1875,1.0625,0.2187,1.0,0.25,1.0625,0.2187,1.0625,0.25,1.0,0.2812,1.0625,0.25,1.0625,0.2812,1.0,0.3125,1.0625,0.2812,1.0625,0.3125,1.0,0.3437,1.0625,0.3125,1.0625,0.3437,1.0,0.375,1.0625,0.3437,1.0625,0.375,1.0,0.4062,1.0625,0.375,1.0625,0.4062,1.0,0.4375,1.0625,0.4062,1.0625,0.4375,1.0,0.4688,1.0625,0.4375,1.0625,0.4688,1.0,0.5,1.0625,0.4688,1.0625],"uvs2":null,"colors":null,"hasVertexAlpha":false,"matricesIndices":null,"matricesWeights":null,"matricesIndicesExtra":null,"matricesWeightsExtra":null,"indices":[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],"receiveShadows":true,"infiniteDistance":false,"billboardMode":0,"visibility":1.0,"subMeshes":[{"materialIndex":0,"verticesStart":0,"verticesCount":1440,"indexStart":0,"indexCount":1440}],"instances":null,"skeletonId":-1,"numBoneInfluencers":4,"applyFog":true,"lodMeshIds":null,"lodDistances":null,"lodCoverages":null,"rotation":null,"scaling":[1.0,1.0,1.0],"rotationQuaternion":[0.0,0.0,0.0,1.0],"actions":null,"checkCollisions":false,"pickable":false,"showBoundingBox":false,"showSubMeshesBoundingBox":false,"alphaIndex":1000,"physicsImpostor":0,"physicsMass":0.0,"physicsFriction":0.0,"physicsRestitution":0.0,"name":"StandardMeshBackfaceCullingOn","id":"113f2dbc-dce1-4faa-be71-35277504433b","parentId":null,"position":[0.0,0.0,0.0],"animations":[],"autoAnimate":true,"autoAnimateFrom":0,"autoAnimateTo":100,"autoAnimateLoop":true,"metadata":null},{"materialId":"e8d366dc-9a25-4d46-80f2-60a95ec88505","isEnabled":true,"isVisible":true,"positions":[0.0,1.0,0.0,0.0,0.9808,0.1951,-0.0381,0.9808,0.1913,0.0,1.0,0.0,-0.0381,0.9808,0.1913,-0.0747,0.9808,0.1802,0.0,1.0,0.0,-0.0747,0.9808,0.1802,-0.1084,0.9808,0.1622,0.0,1.0,0.0,-0.1084,0.9808,0.1622,-0.1379,0.9808,0.1379,0.0,1.0,0.0,-0.1379,0.9808,0.1379,-0.1622,0.9808,0.1084,0.0,1.0,0.0,-0.1622,0.9808,0.1084,-0.1802,0.9808,0.0747,0.0,1.0,0.0,-0.1802,0.9808,0.0747,-0.1913,0.9808,0.0381,0.0,1.0,0.0,-0.1913,0.9808,0.0381,-0.1951,0.9808,0.0,0.0,1.0,0.0,-0.1951,0.9808,0.0,-0.1913,0.9808,-0.0381,0.0,1.0,0.0,-0.1913,0.9808,-0.0381,-0.1802,0.9808,-0.0747,0.0,1.0,0.0,-0.1802,0.9808,-0.0747,-0.1622,0.9808,-0.1084,0.0,1.0,0.0,-0.1622,0.9808,-0.1084,-0.1379,0.9808,-0.1379,0.0,1.0,0.0,-0.1379,0.9808,-0.1379,-0.1084,0.9808,-0.1622,0.0,1.0,0.0,-0.1084,0.9808,-0.1622,-0.0747,0.9808,-0.1802,0.0,1.0,0.0,-0.0747,0.9808,-0.1802,-0.0381,0.9808,-0.1913,0.0,1.0,0.0,-0.0381,0.9808,-0.1913,0.0,0.9808,-0.1951,-0.0747,0.9239,0.3753,-0.0381,0.9808,0.1913,0.0,0.9808,0.1951,0.0,0.9808,0.1951,0.0,0.9239,0.3827,-0.0747,0.9239,0.3753,-0.1464,0.9239,0.3536,-0.0747,0.9808,0.1802,-0.0381,0.9808,0.1913,-0.0381,0.9808,0.1913,-0.0747,0.9239,0.3753,-0.1464,0.9239,0.3536,-0.2126,0.9239,0.3182,-0.1084,0.9808,0.1622,-0.0747,0.9808,0.1802,-0.0747,0.9808,0.1802,-0.1464,0.9239,0.3536,-0.2126,0.9239,0.3182,-0.2706,0.9239,0.2706,-0.1379,0.9808,0.1379,-0.1084,0.9808,0.1622,-0.1084,0.9808,0.1622,-0.2126,0.9239,0.3182,-0.2706,0.9239,0.2706,-0.3182,0.9239,0.2126,-0.1622,0.9808,0.1084,-0.1379,0.9808,0.1379,-0.1379,0.9808,0.1379,-0.2706,0.9239,0.2706,-0.3182,0.9239,0.2126,-0.3536,0.9239,0.1464,-0.1802,0.9808,0.0747,-0.1622,0.9808,0.1084,-0.1622,0.9808,0.1084,-0.3182,0.9239,0.2126,-0.3536,0.9239,0.1464,-0.3753,0.9239,0.0747,-0.1913,0.9808,0.0381,-0.1802,0.9808,0.0747,-0.1802,0.9808,0.0747,-0.3536,0.9239,0.1464,-0.3753,0.9239,0.0747,-0.3827,0.9239,0.0,-0.1951,0.9808,0.0,-0.1913,0.9808,0.0381,-0.1913,0.9808,0.0381,-0.3753,0.9239,0.0747,-0.3827,0.9239,0.0,-0.3753,0.9239,-0.0747,-0.1913,0.9808,-0.0381,-0.1951,0.9808,0.0,-0.1951,0.9808,0.0,-0.3827,0.9239,0.0,-0.3753,0.9239,-0.0747,-0.3536,0.9239,-0.1464,-0.1802,0.9808,-0.0747,-0.1913,0.9808,-0.0381,-0.1913,0.9808,-0.0381,-0.3753,0.9239,-0.0747,-0.3536,0.9239,-0.1464,-0.3182,0.9239,-0.2126,-0.1622,0.9808,-0.1084,-0.1802,0.9808,-0.0747,-0.1802,0.9808,-0.0747,-0.3536,0.9239,-0.1464,-0.3182,0.9239,-0.2126,-0.2706,0.9239,-0.2706,-0.1379,0.9808,-0.1379,-0.1622,0.9808,-0.1084,-0.1622,0.9808,-0.1084,-0.3182,0.9239,-0.2126,-0.2706,0.9239,-0.2706,-0.2126,0.9239,-0.3182,-0.1084,0.9808,-0.1622,-0.1379,0.9808,-0.1379,-0.1379,0.9808,-0.1379,-0.2706,0.9239,-0.2706,-0.2126,0.9239,-0.3182,-0.1464,0.9239,-0.3536,-0.0747,0.9808,-0.1802,-0.1084,0.9808,-0.1622,-0.1084,0.9808,-0.1622,-0.2126,0.9239,-0.3182,-0.1464,0.9239,-0.3536,-0.0747,0.9239,-0.3753,-0.0381,0.9808,-0.1913,-0.0747,0.9808,-0.1802,-0.0747,0.9808,-0.1802,-0.1464,0.9239,-0.3536,-0.0747,0.9239,-0.3753,0.0,0.9239,-0.3827,0.0,0.9808,-0.1951,-0.0381,0.9808,-0.1913,-0.0381,0.9808,-0.1913,-0.0747,0.9239,-0.3753,0.0,0.9239,-0.3827,-0.1084,0.8315,0.5449,-0.0747,0.9239,0.3753,0.0,0.9239,0.3827,0.0,0.9239,0.3827,0.0,0.8315,0.5556,-0.1084,0.8315,0.5449,-0.2126,0.8315,0.5133,-0.1464,0.9239,0.3536,-0.0747,0.9239,0.3753,-0.0747,0.9239,0.3753,-0.1084,0.8315,0.5449,-0.2126,0.8315,0.5133,-0.3087,0.8315,0.4619,-0.2126,0.9239,0.3182,-0.1464,0.9239,0.3536,-0.1464,0.9239,0.3536,-0.2126,0.8315,0.5133,-0.3087,0.8315,0.4619,-0.3928,0.8315,0.3928,-0.2706,0.9239,0.2706,-0.2126,0.9239,0.3182,-0.2126,0.9239,0.3182,-0.3087,0.8315,0.4619,-0.3928,0.8315,0.3928,-0.4619,0.8315,0.3087,-0.3182,0.9239,0.2126,-0.2706,0.9239,0.2706,-0.2706,0.9239,0.2706,-0.3928,0.8315,0.3928,-0.4619,0.8315,0.3087,-0.5133,0.8315,0.2126,-0.3536,0.9239,0.1464,-0.3182,0.9239,0.2126,-0.3182,0.9239,0.2126,-0.4619,0.8315,0.3087,-0.5133,0.8315,0.2126,-0.5449,0.8315,0.1084,-0.3753,0.9239,0.0747,-0.3536,0.9239,0.1464,-0.3536,0.9239,0.1464,-0.5133,0.8315,0.2126,-0.5449,0.8315,0.1084,-0.5556,0.8315,0.0,-0.3827,0.9239,0.0,-0.3753,0.9239,0.0747,-0.3753,0.9239,0.0747,-0.5449,0.8315,0.1084,-0.5556,0.8315,0.0,-0.5449,0.8315,-0.1084,-0.3753,0.9239,-0.0747,-0.3827,0.9239,0.0,-0.3827,0.9239,0.0,-0.5556,0.8315,0.0,-0.5449,0.8315,-0.1084,-0.5133,0.8315,-0.2126,-0.3536,0.9239,-0.1464,-0.3753,0.9239,-0.0747,-0.3753,0.9239,-0.0747,-0.5449,0.8315,-0.1084,-0.5133,0.8315,-0.2126,-0.4619,0.8315,-0.3087,-0.3182,0.9239,-0.2126,-0.3536,0.9239,-0.1464,-0.3536,0.9239,-0.1464,-0.5133,0.8315,-0.2126,-0.4619,0.8315,-0.3087,-0.3928,0.8315,-0.3928,-0.2706,0.9239,-0.2706,-0.3182,0.9239,-0.2126,-0.3182,0.9239,-0.2126,-0.4619,0.8315,-0.3087,-0.3928,0.8315,-0.3928,-0.3087,0.8315,-0.4619,-0.2126,0.9239,-0.3182,-0.2706,0.9239,-0.2706,-0.2706,0.9239,-0.2706,-0.3928,0.8315,-0.3928,-0.3087,0.8315,-0.4619,-0.2126,0.8315,-0.5133,-0.1464,0.9239,-0.3536,-0.2126,0.9239,-0.3182,-0.2126,0.9239,-0.3182,-0.3087,0.8315,-0.4619,-0.2126,0.8315,-0.5133,-0.1084,0.8315,-0.5449,-0.0747,0.9239,-0.3753,-0.1464,0.9239,-0.3536,-0.1464,0.9239,-0.3536,-0.2126,0.8315,-0.5133,-0.1084,0.8315,-0.5449,0.0,0.8315,-0.5556,0.0,0.9239,-0.3827,-0.0747,0.9239,-0.3753,-0.0747,0.9239,-0.3753,-0.1084,0.8315,-0.5449,0.0,0.8315,-0.5556,-0.1379,0.7071,0.6935,-0.1084,0.8315,0.5449,0.0,0.8315,0.5556,0.0,0.8315,0.5556,0.0,0.7071,0.7071,-0.1379,0.7071,0.6935,-0.2706,0.7071,0.6533,-0.2126,0.8315,0.5133,-0.1084,0.8315,0.5449,-0.1084,0.8315,0.5449,-0.1379,0.7071,0.6935,-0.2706,0.7071,0.6533,-0.3928,0.7071,0.5879,-0.3087,0.8315,0.4619,-0.2126,0.8315,0.5133,-0.2126,0.8315,0.5133,-0.2706,0.7071,0.6533,-0.3928,0.7071,0.5879,-0.5,0.7071,0.5,-0.3928,0.8315,0.3928,-0.3087,0.8315,0.4619,-0.3087,0.8315,0.4619,-0.3928,0.7071,0.5879,-0.5,0.7071,0.5,-0.5879,0.7071,0.3928,-0.4619,0.8315,0.3087,-0.3928,0.8315,0.3928,-0.3928,0.8315,0.3928,-0.5,0.7071,0.5,-0.5879,0.7071,0.3928,-0.6533,0.7071,0.2706,-0.5133,0.8315,0.2126,-0.4619,0.8315,0.3087,-0.4619,0.8315,0.3087,-0.5879,0.7071,0.3928,-0.6533,0.7071,0.2706,-0.6935,0.7071,0.1379,-0.5449,0.8315,0.1084,-0.5133,0.8315,0.2126,-0.5133,0.8315,0.2126,-0.6533,0.7071,0.2706,-0.6935,0.7071,0.1379,-0.7071,0.7071,0.0,-0.5556,0.8315,0.0,-0.5449,0.8315,0.1084,-0.5449,0.8315,0.1084,-0.6935,0.7071,0.1379,-0.7071,0.7071,0.0,-0.6935,0.7071,-0.1379,-0.5449,0.8315,-0.1084,-0.5556,0.8315,0.0,-0.5556,0.8315,0.0,-0.7071,0.7071,0.0,-0.6935,0.7071,-0.1379,-0.6533,0.7071,-0.2706,-0.5133,0.8315,-0.2126,-0.5449,0.8315,-0.1084,-0.5449,0.8315,-0.1084,-0.6935,0.7071,-0.1379,-0.6533,0.7071,-0.2706,-0.5879,0.7071,-0.3928,-0.4619,0.8315,-0.3087,-0.5133,0.8315,-0.2126,-0.5133,0.8315,-0.2126,-0.6533,0.7071,-0.2706,-0.5879,0.7071,-0.3928,-0.5,0.7071,-0.5,-0.3928,0.8315,-0.3928,-0.4619,0.8315,-0.3087,-0.4619,0.8315,-0.3087,-0.5879,0.7071,-0.3928,-0.5,0.7071,-0.5,-0.3928,0.7071,-0.5879,-0.3087,0.8315,-0.4619,-0.3928,0.8315,-0.3928,-0.3928,0.8315,-0.3928,-0.5,0.7071,-0.5,-0.3928,0.7071,-0.5879,-0.2706,0.7071,-0.6533,-0.2126,0.8315,-0.5133,-0.3087,0.8315,-0.4619,-0.3087,0.8315,-0.4619,-0.3928,0.7071,-0.5879,-0.2706,0.7071,-0.6533,-0.1379,0.7071,-0.6935,-0.1084,0.8315,-0.5449,-0.2126,0.8315,-0.5133,-0.2126,0.8315,-0.5133,-0.2706,0.7071,-0.6533,-0.1379,0.7071,-0.6935,0.0,0.7071,-0.7071,0.0,0.8315,-0.5556,-0.1084,0.8315,-0.5449,-0.1084,0.8315,-0.5449,-0.1379,0.7071,-0.6935,0.0,0.7071,-0.7071,-0.1622,0.5556,0.8155,-0.1379,0.7071,0.6935,0.0,0.7071,0.7071,0.0,0.7071,0.7071,0.0,0.5556,0.8315,-0.1622,0.5556,0.8155,-0.3182,0.5556,0.7682,-0.2706,0.7071,0.6533,-0.1379,0.7071,0.6935,-0.1379,0.7071,0.6935,-0.1622,0.5556,0.8155,-0.3182,0.5556,0.7682,-0.4619,0.5556,0.6913,-0.3928,0.7071,0.5879,-0.2706,0.7071,0.6533,-0.2706,0.7071,0.6533,-0.3182,0.5556,0.7682,-0.4619,0.5556,0.6913,-0.5879,0.5556,0.5879,-0.5,0.7071,0.5,-0.3928,0.7071,0.5879,-0.3928,0.7071,0.5879,-0.4619,0.5556,0.6913,-0.5879,0.5556,0.5879,-0.6913,0.5556,0.4619,-0.5879,0.7071,0.3928,-0.5,0.7071,0.5,-0.5,0.7071,0.5,-0.5879,0.5556,0.5879,-0.6913,0.5556,0.4619,-0.7682,0.5556,0.3182,-0.6533,0.7071,0.2706,-0.5879,0.7071,0.3928,-0.5879,0.7071,0.3928,-0.6913,0.5556,0.4619,-0.7682,0.5556,0.3182,-0.8155,0.5556,0.1622,-0.6935,0.7071,0.1379,-0.6533,0.7071,0.2706,-0.6533,0.7071,0.2706,-0.7682,0.5556,0.3182,-0.8155,0.5556,0.1622,-0.8315,0.5556,0.0,-0.7071,0.7071,0.0,-0.6935,0.7071,0.1379,-0.6935,0.7071,0.1379,-0.8155,0.5556,0.1622,-0.8315,0.5556,0.0,-0.8155,0.5556,-0.1622,-0.6935,0.7071,-0.1379,-0.7071,0.7071,0.0,-0.7071,0.7071,0.0,-0.8315,0.5556,0.0,-0.8155,0.5556,-0.1622,-0.7682,0.5556,-0.3182,-0.6533,0.7071,-0.2706,-0.6935,0.7071,-0.1379,-0.6935,0.7071,-0.1379,-0.8155,0.5556,-0.1622,-0.7682,0.5556,-0.3182,-0.6913,0.5556,-0.4619,-0.5879,0.7071,-0.3928,-0.6533,0.7071,-0.2706,-0.6533,0.7071,-0.2706,-0.7682,0.5556,-0.3182,-0.6913,0.5556,-0.4619,-0.5879,0.5556,-0.5879,-0.5,0.7071,-0.5,-0.5879,0.7071,-0.3928,-0.5879,0.7071,-0.3928,-0.6913,0.5556,-0.4619,-0.5879,0.5556,-0.5879,-0.4619,0.5556,-0.6913,-0.3928,0.7071,-0.5879,-0.5,0.7071,-0.5,-0.5,0.7071,-0.5,-0.5879,0.5556,-0.5879,-0.4619,0.5556,-0.6913,-0.3182,0.5556,-0.7682,-0.2706,0.7071,-0.6533,-0.3928,0.7071,-0.5879,-0.3928,0.7071,-0.5879,-0.4619,0.5556,-0.6913,-0.3182,0.5556,-0.7682,-0.1622,0.5556,-0.8155,-0.1379,0.7071,-0.6935,-0.2706,0.7071,-0.6533,-0.2706,0.7071,-0.6533,-0.3182,0.5556,-0.7682,-0.1622,0.5556,-0.8155,0.0,0.5556,-0.8315,0.0,0.7071,-0.7071,-0.1379,0.7071,-0.6935,-0.1379,0.7071,-0.6935,-0.1622,0.5556,-0.8155,0.0,0.5556,-0.8315,-0.1802,0.3827,0.9061,-0.1622,0.5556,0.8155,0.0,0.5556,0.8315,0.0,0.5556,0.8315,0.0,0.3827,0.9239,-0.1802,0.3827,0.9061,-0.3536,0.3827,0.8536,-0.3182,0.5556,0.7682,-0.1622,0.5556,0.8155,-0.1622,0.5556,0.8155,-0.1802,0.3827,0.9061,-0.3536,0.3827,0.8536,-0.5133,0.3827,0.7682,-0.4619,0.5556,0.6913,-0.3182,0.5556,0.7682,-0.3182,0.5556,0.7682,-0.3536,0.3827,0.8536,-0.5133,0.3827,0.7682,-0.6533,0.3827,0.6533,-0.5879,0.5556,0.5879,-0.4619,0.5556,0.6913,-0.4619,0.5556,0.6913,-0.5133,0.3827,0.7682,-0.6533,0.3827,0.6533,-0.7682,0.3827,0.5133,-0.6913,0.5556,0.4619,-0.5879,0.5556,0.5879,-0.5879,0.5556,0.5879,-0.6533,0.3827,0.6533,-0.7682,0.3827,0.5133,-0.8536,0.3827,0.3536,-0.7682,0.5556,0.3182,-0.6913,0.5556,0.4619,-0.6913,0.5556,0.4619,-0.7682,0.3827,0.5133,-0.8536,0.3827,0.3536,-0.9061,0.3827,0.1802,-0.8155,0.5556,0.1622,-0.7682,0.5556,0.3182,-0.7682,0.5556,0.3182,-0.8536,0.3827,0.3536,-0.9061,0.3827,0.1802,-0.9239,0.3827,0.0,-0.8315,0.5556,0.0,-0.8155,0.5556,0.1622,-0.8155,0.5556,0.1622,-0.9061,0.3827,0.1802,-0.9239,0.3827,0.0,-0.9061,0.3827,-0.1802,-0.8155,0.5556,-0.1622,-0.8315,0.5556,0.0,-0.8315,0.5556,0.0,-0.9239,0.3827,0.0,-0.9061,0.3827,-0.1802,-0.8536,0.3827,-0.3536,-0.7682,0.5556,-0.3182,-0.8155,0.5556,-0.1622,-0.8155,0.5556,-0.1622,-0.9061,0.3827,-0.1802,-0.8536,0.3827,-0.3536,-0.7682,0.3827,-0.5133,-0.6913,0.5556,-0.4619,-0.7682,0.5556,-0.3182,-0.7682,0.5556,-0.3182,-0.8536,0.3827,-0.3536,-0.7682,0.3827,-0.5133,-0.6533,0.3827,-0.6533,-0.5879,0.5556,-0.5879,-0.6913,0.5556,-0.4619,-0.6913,0.5556,-0.4619,-0.7682,0.3827,-0.5133,-0.6533,0.3827,-0.6533,-0.5133,0.3827,-0.7682,-0.4619,0.5556,-0.6913,-0.5879,0.5556,-0.5879,-0.5879,0.5556,-0.5879,-0.6533,0.3827,-0.6533,-0.5133,0.3827,-0.7682,-0.3536,0.3827,-0.8536,-0.3182,0.5556,-0.7682,-0.4619,0.5556,-0.6913,-0.4619,0.5556,-0.6913,-0.5133,0.3827,-0.7682,-0.3536,0.3827,-0.8536,-0.1802,0.3827,-0.9061,-0.1622,0.5556,-0.8155,-0.3182,0.5556,-0.7682,-0.3182,0.5556,-0.7682,-0.3536,0.3827,-0.8536,-0.1802,0.3827,-0.9061,0.0,0.3827,-0.9239,0.0,0.5556,-0.8315,-0.1622,0.5556,-0.8155,-0.1622,0.5556,-0.8155,-0.1802,0.3827,-0.9061,0.0,0.3827,-0.9239,-0.1913,0.1951,0.9619,-0.1802,0.3827,0.9061,0.0,0.3827,0.9239,0.0,0.3827,0.9239,0.0,0.1951,0.9808,-0.1913,0.1951,0.9619,-0.3753,0.1951,0.9061,-0.3536,0.3827,0.8536,-0.1802,0.3827,0.9061,-0.1802,0.3827,0.9061,-0.1913,0.1951,0.9619,-0.3753,0.1951,0.9061,-0.5449,0.1951,0.8155,-0.5133,0.3827,0.7682,-0.3536,0.3827,0.8536,-0.3536,0.3827,0.8536,-0.3753,0.1951,0.9061,-0.5449,0.1951,0.8155,-0.6935,0.1951,0.6935,-0.6533,0.3827,0.6533,-0.5133,0.3827,0.7682,-0.5133,0.3827,0.7682,-0.5449,0.1951,0.8155,-0.6935,0.1951,0.6935,-0.8155,0.1951,0.5449,-0.7682,0.3827,0.5133,-0.6533,0.3827,0.6533,-0.6533,0.3827,0.6533,-0.6935,0.1951,0.6935,-0.8155,0.1951,0.5449,-0.9061,0.1951,0.3753,-0.8536,0.3827,0.3536,-0.7682,0.3827,0.5133,-0.7682,0.3827,0.5133,-0.8155,0.1951,0.5449,-0.9061,0.1951,0.3753,-0.9619,0.1951,0.1913,-0.9061,0.3827,0.1802,-0.8536,0.3827,0.3536,-0.8536,0.3827,0.3536,-0.9061,0.1951,0.3753,-0.9619,0.1951,0.1913,-0.9808,0.1951,0.0,-0.9239,0.3827,0.0,-0.9061,0.3827,0.1802,-0.9061,0.3827,0.1802,-0.9619,0.1951,0.1913,-0.9808,0.1951,0.0,-0.9619,0.1951,-0.1913,-0.9061,0.3827,-0.1802,-0.9239,0.3827,0.0,-0.9239,0.3827,0.0,-0.9808,0.1951,0.0,-0.9619,0.1951,-0.1913,-0.9061,0.1951,-0.3753,-0.8536,0.3827,-0.3536,-0.9061,0.3827,-0.1802,-0.9061,0.3827,-0.1802,-0.9619,0.1951,-0.1913,-0.9061,0.1951,-0.3753,-0.8155,0.1951,-0.5449,-0.7682,0.3827,-0.5133,-0.8536,0.3827,-0.3536,-0.8536,0.3827,-0.3536,-0.9061,0.1951,-0.3753,-0.8155,0.1951,-0.5449,-0.6935,0.1951,-0.6935,-0.6533,0.3827,-0.6533,-0.7682,0.3827,-0.5133,-0.7682,0.3827,-0.5133,-0.8155,0.1951,-0.5449,-0.6935,0.1951,-0.6935,-0.5449,0.1951,-0.8155,-0.5133,0.3827,-0.7682,-0.6533,0.3827,-0.6533,-0.6533,0.3827,-0.6533,-0.6935,0.1951,-0.6935,-0.5449,0.1951,-0.8155,-0.3753,0.1951,-0.9061,-0.3536,0.3827,-0.8536,-0.5133,0.3827,-0.7682,-0.5133,0.3827,-0.7682,-0.5449,0.1951,-0.8155,-0.3753,0.1951,-0.9061,-0.1913,0.1951,-0.9619,-0.1802,0.3827,-0.9061,-0.3536,0.3827,-0.8536,-0.3536,0.3827,-0.8536,-0.3753,0.1951,-0.9061,-0.1913,0.1951,-0.9619,0.0,0.1951,-0.9808,0.0,0.3827,-0.9239,-0.1802,0.3827,-0.9061,-0.1802,0.3827,-0.9061,-0.1913,0.1951,-0.9619,0.0,0.1951,-0.9808,-0.1951,0.0,0.9808,-0.1913,0.1951,0.9619,0.0,0.1951,0.9808,0.0,0.1951,0.9808,0.0,0.0,1.0,-0.1951,0.0,0.9808,-0.3827,0.0,0.9239,-0.3753,0.1951,0.9061,-0.1913,0.1951,0.9619,-0.1913,0.1951,0.9619,-0.1951,0.0,0.9808,-0.3827,0.0,0.9239,-0.5556,0.0,0.8315,-0.5449,0.1951,0.8155,-0.3753,0.1951,0.9061,-0.3753,0.1951,0.9061,-0.3827,0.0,0.9239,-0.5556,0.0,0.8315,-0.7071,0.0,0.7071,-0.6935,0.1951,0.6935,-0.5449,0.1951,0.8155,-0.5449,0.1951,0.8155,-0.5556,0.0,0.8315,-0.7071,0.0,0.7071,-0.8315,0.0,0.5556,-0.8155,0.1951,0.5449,-0.6935,0.1951,0.6935,-0.6935,0.1951,0.6935,-0.7071,0.0,0.7071,-0.8315,0.0,0.5556,-0.9239,0.0,0.3827,-0.9061,0.1951,0.3753,-0.8155,0.1951,0.5449,-0.8155,0.1951,0.5449,-0.8315,0.0,0.5556,-0.9239,0.0,0.3827,-0.9808,0.0,0.1951,-0.9619,0.1951,0.1913,-0.9061,0.1951,0.3753,-0.9061,0.1951,0.3753,-0.9239,0.0,0.3827,-0.9808,0.0,0.1951,-1.0,0.0,0.0,-0.9808,0.1951,0.0,-0.9619,0.1951,0.1913,-0.9619,0.1951,0.1913,-0.9808,0.0,0.1951,-1.0,0.0,0.0,-0.9808,0.0,-0.1951,-0.9619,0.1951,-0.1913,-0.9808,0.1951,0.0,-0.9808,0.1951,0.0,-1.0,0.0,0.0,-0.9808,0.0,-0.1951,-0.9239,0.0,-0.3827,-0.9061,0.1951,-0.3753,-0.9619,0.1951,-0.1913,-0.9619,0.1951,-0.1913,-0.9808,0.0,-0.1951,-0.9239,0.0,-0.3827,-0.8315,0.0,-0.5556,-0.8155,0.1951,-0.5449,-0.9061,0.1951,-0.3753,-0.9061,0.1951,-0.3753,-0.9239,0.0,-0.3827,-0.8315,0.0,-0.5556,-0.7071,0.0,-0.7071,-0.6935,0.1951,-0.6935,-0.8155,0.1951,-0.5449,-0.8155,0.1951,-0.5449,-0.8315,0.0,-0.5556,-0.7071,0.0,-0.7071,-0.5556,0.0,-0.8315,-0.5449,0.1951,-0.8155,-0.6935,0.1951,-0.6935,-0.6935,0.1951,-0.6935,-0.7071,0.0,-0.7071,-0.5556,0.0,-0.8315,-0.3827,0.0,-0.9239,-0.3753,0.1951,-0.9061,-0.5449,0.1951,-0.8155,-0.5449,0.1951,-0.8155,-0.5556,0.0,-0.8315,-0.3827,0.0,-0.9239,-0.1951,0.0,-0.9808,-0.1913,0.1951,-0.9619,-0.3753,0.1951,-0.9061,-0.3753,0.1951,-0.9061,-0.3827,0.0,-0.9239,-0.1951,0.0,-0.9808,0.0,0.0,-1.0,0.0,0.1951,-0.9808,-0.1913,0.1951,-0.9619,-0.1913,0.1951,-0.9619,-0.1951,0.0,-0.9808,0.0,0.0,-1.0,-0.1913,-0.1951,0.9619,-0.1951,0.0,0.9808,0.0,0.0,1.0,0.0,0.0,1.0,0.0,-0.1951,0.9808,-0.1913,-0.1951,0.9619,-0.3753,-0.1951,0.9061,-0.3827,0.0,0.9239,-0.1951,0.0,0.9808,-0.1951,0.0,0.9808,-0.1913,-0.1951,0.9619,-0.3753,-0.1951,0.9061,-0.5449,-0.1951,0.8155,-0.5556,0.0,0.8315,-0.3827,0.0,0.9239,-0.3827,0.0,0.9239,-0.3753,-0.1951,0.9061,-0.5449,-0.1951,0.8155,-0.6935,-0.1951,0.6935,-0.7071,0.0,0.7071,-0.5556,0.0,0.8315,-0.5556,0.0,0.8315,-0.5449,-0.1951,0.8155,-0.6935,-0.1951,0.6935,-0.8155,-0.1951,0.5449,-0.8315,0.0,0.5556,-0.7071,0.0,0.7071,-0.7071,0.0,0.7071,-0.6935,-0.1951,0.6935,-0.8155,-0.1951,0.5449,-0.9061,-0.1951,0.3753,-0.9239,0.0,0.3827,-0.8315,0.0,0.5556,-0.8315,0.0,0.5556,-0.8155,-0.1951,0.5449,-0.9061,-0.1951,0.3753,-0.9619,-0.1951,0.1913,-0.9808,0.0,0.1951,-0.9239,0.0,0.3827,-0.9239,0.0,0.3827,-0.9061,-0.1951,0.3753,-0.9619,-0.1951,0.1913,-0.9808,-0.1951,0.0,-1.0,0.0,0.0,-0.9808,0.0,0.1951,-0.9808,0.0,0.1951,-0.9619,-0.1951,0.1913,-0.9808,-0.1951,0.0,-0.9619,-0.1951,-0.1913,-0.9808,0.0,-0.1951,-1.0,0.0,0.0,-1.0,0.0,0.0,-0.9808,-0.1951,0.0,-0.9619,-0.1951,-0.1913,-0.9061,-0.1951,-0.3753,-0.9239,0.0,-0.3827,-0.9808,0.0,-0.1951,-0.9808,0.0,-0.1951,-0.9619,-0.1951,-0.1913,-0.9061,-0.1951,-0.3753,-0.8155,-0.1951,-0.5449,-0.8315,0.0,-0.5556,-0.9239,0.0,-0.3827,-0.9239,0.0,-0.3827,-0.9061,-0.1951,-0.3753,-0.8155,-0.1951,-0.5449,-0.6935,-0.1951,-0.6935,-0.7071,0.0,-0.7071,-0.8315,0.0,-0.5556,-0.8315,0.0,-0.5556,-0.8155,-0.1951,-0.5449,-0.6935,-0.1951,-0.6935,-0.5449,-0.1951,-0.8155,-0.5556,0.0,-0.8315,-0.7071,0.0,-0.7071,-0.7071,0.0,-0.7071,-0.6935,-0.1951,-0.6935,-0.5449,-0.1951,-0.8155,-0.3753,-0.1951,-0.9061,-0.3827,0.0,-0.9239,-0.5556,0.0,-0.8315,-0.5556,0.0,-0.8315,-0.5449,-0.1951,-0.8155,-0.3753,-0.1951,-0.9061,-0.1913,-0.1951,-0.9619,-0.1951,0.0,-0.9808,-0.3827,0.0,-0.9239,-0.3827,0.0,-0.9239,-0.3753,-0.1951,-0.9061,-0.1913,-0.1951,-0.9619,0.0,-0.1951,-0.9808,0.0,0.0,-1.0,-0.1951,0.0,-0.9808,-0.1951,0.0,-0.9808,-0.1913,-0.1951,-0.9619,0.0,-0.1951,-0.9808,-0.1802,-0.3827,0.9061,-0.1913,-0.1951,0.9619,0.0,-0.1951,0.9808,0.0,-0.1951,0.9808,0.0,-0.3827,0.9239,-0.1802,-0.3827,0.9061,-0.3536,-0.3827,0.8536,-0.3753,-0.1951,0.9061,-0.1913,-0.1951,0.9619,-0.1913,-0.1951,0.9619,-0.1802,-0.3827,0.9061,-0.3536,-0.3827,0.8536,-0.5133,-0.3827,0.7682,-0.5449,-0.1951,0.8155,-0.3753,-0.1951,0.9061,-0.3753,-0.1951,0.9061,-0.3536,-0.3827,0.8536,-0.5133,-0.3827,0.7682,-0.6533,-0.3827,0.6533,-0.6935,-0.1951,0.6935,-0.5449,-0.1951,0.8155,-0.5449,-0.1951,0.8155,-0.5133,-0.3827,0.7682,-0.6533,-0.3827,0.6533,-0.7682,-0.3827,0.5133,-0.8155,-0.1951,0.5449,-0.6935,-0.1951,0.6935,-0.6935,-0.1951,0.6935,-0.6533,-0.3827,0.6533,-0.7682,-0.3827,0.5133,-0.8536,-0.3827,0.3536,-0.9061,-0.1951,0.3753,-0.8155,-0.1951,0.5449,-0.8155,-0.1951,0.5449,-0.7682,-0.3827,0.5133,-0.8536,-0.3827,0.3536,-0.9061,-0.3827,0.1802,-0.9619,-0.1951,0.1913,-0.9061,-0.1951,0.3753,-0.9061,-0.1951,0.3753,-0.8536,-0.3827,0.3536,-0.9061,-0.3827,0.1802,-0.9239,-0.3827,0.0,-0.9808,-0.1951,0.0,-0.9619,-0.1951,0.1913,-0.9619,-0.1951,0.1913,-0.9061,-0.3827,0.1802,-0.9239,-0.3827,0.0,-0.9061,-0.3827,-0.1802,-0.9619,-0.1951,-0.1913,-0.9808,-0.1951,0.0,-0.9808,-0.1951,0.0,-0.9239,-0.3827,0.0,-0.9061,-0.3827,-0.1802,-0.8536,-0.3827,-0.3536,-0.9061,-0.1951,-0.3753,-0.9619,-0.1951,-0.1913,-0.9619,-0.1951,-0.1913,-0.9061,-0.3827,-0.1802,-0.8536,-0.3827,-0.3536,-0.7682,-0.3827,-0.5133,-0.8155,-0.1951,-0.5449,-0.9061,-0.1951,-0.3753,-0.9061,-0.1951,-0.3753,-0.8536,-0.3827,-0.3536,-0.7682,-0.3827,-0.5133,-0.6533,-0.3827,-0.6533,-0.6935,-0.1951,-0.6935,-0.8155,-0.1951,-0.5449,-0.8155,-0.1951,-0.5449,-0.7682,-0.3827,-0.5133,-0.6533,-0.3827,-0.6533,-0.5133,-0.3827,-0.7682,-0.5449,-0.1951,-0.8155,-0.6935,-0.1951,-0.6935,-0.6935,-0.1951,-0.6935,-0.6533,-0.3827,-0.6533,-0.5133,-0.3827,-0.7682,-0.3536,-0.3827,-0.8536,-0.3753,-0.1951,-0.9061,-0.5449,-0.1951,-0.8155,-0.5449,-0.1951,-0.8155,-0.5133,-0.3827,-0.7682,-0.3536,-0.3827,-0.8536,-0.1802,-0.3827,-0.9061,-0.1913,-0.1951,-0.9619,-0.3753,-0.1951,-0.9061,-0.3753,-0.1951,-0.9061,-0.3536,-0.3827,-0.8536,-0.1802,-0.3827,-0.9061,0.0,-0.3827,-0.9239,0.0,-0.1951,-0.9808,-0.1913,-0.1951,-0.9619,-0.1913,-0.1951,-0.9619,-0.1802,-0.3827,-0.9061,0.0,-0.3827,-0.9239,-0.1622,-0.5556,0.8155,-0.1802,-0.3827,0.9061,0.0,-0.3827,0.9239,0.0,-0.3827,0.9239,0.0,-0.5556,0.8315,-0.1622,-0.5556,0.8155,-0.3182,-0.5556,0.7682,-0.3536,-0.3827,0.8536,-0.1802,-0.3827,0.9061,-0.1802,-0.3827,0.9061,-0.1622,-0.5556,0.8155,-0.3182,-0.5556,0.7682,-0.4619,-0.5556,0.6913,-0.5133,-0.3827,0.7682,-0.3536,-0.3827,0.8536,-0.3536,-0.3827,0.8536,-0.3182,-0.5556,0.7682,-0.4619,-0.5556,0.6913,-0.5879,-0.5556,0.5879,-0.6533,-0.3827,0.6533,-0.5133,-0.3827,0.7682,-0.5133,-0.3827,0.7682,-0.4619,-0.5556,0.6913,-0.5879,-0.5556,0.5879,-0.6913,-0.5556,0.4619,-0.7682,-0.3827,0.5133,-0.6533,-0.3827,0.6533,-0.6533,-0.3827,0.6533,-0.5879,-0.5556,0.5879,-0.6913,-0.5556,0.4619,-0.7682,-0.5556,0.3182,-0.8536,-0.3827,0.3536,-0.7682,-0.3827,0.5133,-0.7682,-0.3827,0.5133,-0.6913,-0.5556,0.4619,-0.7682,-0.5556,0.3182,-0.8155,-0.5556,0.1622,-0.9061,-0.3827,0.1802,-0.8536,-0.3827,0.3536,-0.8536,-0.3827,0.3536,-0.7682,-0.5556,0.3182,-0.8155,-0.5556,0.1622,-0.8315,-0.5556,0.0,-0.9239,-0.3827,0.0,-0.9061,-0.3827,0.1802,-0.9061,-0.3827,0.1802,-0.8155,-0.5556,0.1622,-0.8315,-0.5556,0.0,-0.8155,-0.5556,-0.1622,-0.9061,-0.3827,-0.1802,-0.9239,-0.3827,0.0,-0.9239,-0.3827,0.0,-0.8315,-0.5556,0.0,-0.8155,-0.5556,-0.1622,-0.7682,-0.5556,-0.3182,-0.8536,-0.3827,-0.3536,-0.9061,-0.3827,-0.1802,-0.9061,-0.3827,-0.1802,-0.8155,-0.5556,-0.1622,-0.7682,-0.5556,-0.3182,-0.6913,-0.5556,-0.4619,-0.7682,-0.3827,-0.5133,-0.8536,-0.3827,-0.3536,-0.8536,-0.3827,-0.3536,-0.7682,-0.5556,-0.3182,-0.6913,-0.5556,-0.4619,-0.5879,-0.5556,-0.5879,-0.6533,-0.3827,-0.6533,-0.7682,-0.3827,-0.5133,-0.7682,-0.3827,-0.5133,-0.6913,-0.5556,-0.4619,-0.5879,-0.5556,-0.5879,-0.4619,-0.5556,-0.6913,-0.5133,-0.3827,-0.7682,-0.6533,-0.3827,-0.6533,-0.6533,-0.3827,-0.6533,-0.5879,-0.5556,-0.5879,-0.4619,-0.5556,-0.6913,-0.3182,-0.5556,-0.7682,-0.3536,-0.3827,-0.8536,-0.5133,-0.3827,-0.7682,-0.5133,-0.3827,-0.7682,-0.4619,-0.5556,-0.6913,-0.3182,-0.5556,-0.7682,-0.1622,-0.5556,-0.8155,-0.1802,-0.3827,-0.9061,-0.3536,-0.3827,-0.8536,-0.3536,-0.3827,-0.8536,-0.3182,-0.5556,-0.7682,-0.1622,-0.5556,-0.8155,0.0,-0.5556,-0.8315,0.0,-0.3827,-0.9239,-0.1802,-0.3827,-0.9061,-0.1802,-0.3827,-0.9061,-0.1622,-0.5556,-0.8155,0.0,-0.5556,-0.8315,-0.1379,-0.7071,0.6935,-0.1622,-0.5556,0.8155,0.0,-0.5556,0.8315,0.0,-0.5556,0.8315,0.0,-0.7071,0.7071,-0.1379,-0.7071,0.6935,-0.2706,-0.7071,0.6533,-0.3182,-0.5556,0.7682,-0.1622,-0.5556,0.8155,-0.1622,-0.5556,0.8155,-0.1379,-0.7071,0.6935,-0.2706,-0.7071,0.6533,-0.3928,-0.7071,0.5879,-0.4619,-0.5556,0.6913,-0.3182,-0.5556,0.7682,-0.3182,-0.5556,0.7682,-0.2706,-0.7071,0.6533,-0.3928,-0.7071,0.5879,-0.5,-0.7071,0.5,-0.5879,-0.5556,0.5879,-0.4619,-0.5556,0.6913,-0.4619,-0.5556,0.6913,-0.3928,-0.7071,0.5879,-0.5,-0.7071,0.5,-0.5879,-0.7071,0.3928,-0.6913,-0.5556,0.4619,-0.5879,-0.5556,0.5879,-0.5879,-0.5556,0.5879,-0.5,-0.7071,0.5,-0.5879,-0.7071,0.3928,-0.6533,-0.7071,0.2706,-0.7682,-0.5556,0.3182,-0.6913,-0.5556,0.4619,-0.6913,-0.5556,0.4619,-0.5879,-0.7071,0.3928,-0.6533,-0.7071,0.2706,-0.6935,-0.7071,0.1379,-0.8155,-0.5556,0.1622,-0.7682,-0.5556,0.3182,-0.7682,-0.5556,0.3182,-0.6533,-0.7071,0.2706,-0.6935,-0.7071,0.1379,-0.7071,-0.7071,0.0,-0.8315,-0.5556,0.0,-0.8155,-0.5556,0.1622,-0.8155,-0.5556,0.1622,-0.6935,-0.7071,0.1379,-0.7071,-0.7071,0.0,-0.6935,-0.7071,-0.1379,-0.8155,-0.5556,-0.1622,-0.8315,-0.5556,0.0,-0.8315,-0.5556,0.0,-0.7071,-0.7071,0.0,-0.6935,-0.7071,-0.1379,-0.6533,-0.7071,-0.2706,-0.7682,-0.5556,-0.3182,-0.8155,-0.5556,-0.1622,-0.8155,-0.5556,-0.1622,-0.6935,-0.7071,-0.1379,-0.6533,-0.7071,-0.2706,-0.5879,-0.7071,-0.3928,-0.6913,-0.5556,-0.4619,-0.7682,-0.5556,-0.3182,-0.7682,-0.5556,-0.3182,-0.6533,-0.7071,-0.2706,-0.5879,-0.7071,-0.3928,-0.5,-0.7071,-0.5,-0.5879,-0.5556,-0.5879,-0.6913,-0.5556,-0.4619,-0.6913,-0.5556,-0.4619,-0.5879,-0.7071,-0.3928,-0.5,-0.7071,-0.5,-0.3928,-0.7071,-0.5879,-0.4619,-0.5556,-0.6913,-0.5879,-0.5556,-0.5879,-0.5879,-0.5556,-0.5879,-0.5,-0.7071,-0.5,-0.3928,-0.7071,-0.5879,-0.2706,-0.7071,-0.6533,-0.3182,-0.5556,-0.7682,-0.4619,-0.5556,-0.6913,-0.4619,-0.5556,-0.6913,-0.3928,-0.7071,-0.5879,-0.2706,-0.7071,-0.6533,-0.1379,-0.7071,-0.6935,-0.1622,-0.5556,-0.8155,-0.3182,-0.5556,-0.7682,-0.3182,-0.5556,-0.7682,-0.2706,-0.7071,-0.6533,-0.1379,-0.7071,-0.6935,0.0,-0.7071,-0.7071,0.0,-0.5556,-0.8315,-0.1622,-0.5556,-0.8155,-0.1622,-0.5556,-0.8155,-0.1379,-0.7071,-0.6935,0.0,-0.7071,-0.7071,-0.1084,-0.8315,0.5449,-0.1379,-0.7071,0.6935,0.0,-0.7071,0.7071,0.0,-0.7071,0.7071,0.0,-0.8315,0.5556,-0.1084,-0.8315,0.5449,-0.2126,-0.8315,0.5133,-0.2706,-0.7071,0.6533,-0.1379,-0.7071,0.6935,-0.1379,-0.7071,0.6935,-0.1084,-0.8315,0.5449,-0.2126,-0.8315,0.5133,-0.3087,-0.8315,0.4619,-0.3928,-0.7071,0.5879,-0.2706,-0.7071,0.6533,-0.2706,-0.7071,0.6533,-0.2126,-0.8315,0.5133,-0.3087,-0.8315,0.4619,-0.3928,-0.8315,0.3928,-0.5,-0.7071,0.5,-0.3928,-0.7071,0.5879,-0.3928,-0.7071,0.5879,-0.3087,-0.8315,0.4619,-0.3928,-0.8315,0.3928,-0.4619,-0.8315,0.3087,-0.5879,-0.7071,0.3928,-0.5,-0.7071,0.5,-0.5,-0.7071,0.5,-0.3928,-0.8315,0.3928,-0.4619,-0.8315,0.3087,-0.5133,-0.8315,0.2126,-0.6533,-0.7071,0.2706,-0.5879,-0.7071,0.3928,-0.5879,-0.7071,0.3928,-0.4619,-0.8315,0.3087,-0.5133,-0.8315,0.2126,-0.5449,-0.8315,0.1084,-0.6935,-0.7071,0.1379,-0.6533,-0.7071,0.2706,-0.6533,-0.7071,0.2706,-0.5133,-0.8315,0.2126,-0.5449,-0.8315,0.1084,-0.5556,-0.8315,0.0,-0.7071,-0.7071,0.0,-0.6935,-0.7071,0.1379,-0.6935,-0.7071,0.1379,-0.5449,-0.8315,0.1084,-0.5556,-0.8315,0.0,-0.5449,-0.8315,-0.1084,-0.6935,-0.7071,-0.1379,-0.7071,-0.7071,0.0,-0.7071,-0.7071,0.0,-0.5556,-0.8315,0.0,-0.5449,-0.8315,-0.1084,-0.5133,-0.8315,-0.2126,-0.6533,-0.7071,-0.2706,-0.6935,-0.7071,-0.1379,-0.6935,-0.7071,-0.1379,-0.5449,-0.8315,-0.1084,-0.5133,-0.8315,-0.2126,-0.4619,-0.8315,-0.3087,-0.5879,-0.7071,-0.3928,-0.6533,-0.7071,-0.2706,-0.6533,-0.7071,-0.2706,-0.5133,-0.8315,-0.2126,-0.4619,-0.8315,-0.3087,-0.3928,-0.8315,-0.3928,-0.5,-0.7071,-0.5,-0.5879,-0.7071,-0.3928,-0.5879,-0.7071,-0.3928,-0.4619,-0.8315,-0.3087,-0.3928,-0.8315,-0.3928,-0.3087,-0.8315,-0.4619,-0.3928,-0.7071,-0.5879,-0.5,-0.7071,-0.5,-0.5,-0.7071,-0.5,-0.3928,-0.8315,-0.3928,-0.3087,-0.8315,-0.4619,-0.2126,-0.8315,-0.5133,-0.2706,-0.7071,-0.6533,-0.3928,-0.7071,-0.5879,-0.3928,-0.7071,-0.5879,-0.3087,-0.8315,-0.4619,-0.2126,-0.8315,-0.5133,-0.1084,-0.8315,-0.5449,-0.1379,-0.7071,-0.6935,-0.2706,-0.7071,-0.6533,-0.2706,-0.7071,-0.6533,-0.2126,-0.8315,-0.5133,-0.1084,-0.8315,-0.5449,0.0,-0.8315,-0.5556,0.0,-0.7071,-0.7071,-0.1379,-0.7071,-0.6935,-0.1379,-0.7071,-0.6935,-0.1084,-0.8315,-0.5449,0.0,-0.8315,-0.5556,-0.0747,-0.9239,0.3753,-0.1084,-0.8315,0.5449,0.0,-0.8315,0.5556,0.0,-0.8315,0.5556,0.0,-0.9239,0.3827,-0.0747,-0.9239,0.3753,-0.1464,-0.9239,0.3536,-0.2126,-0.8315,0.5133,-0.1084,-0.8315,0.5449,-0.1084,-0.8315,0.5449,-0.0747,-0.9239,0.3753,-0.1464,-0.9239,0.3536,-0.2126,-0.9239,0.3182,-0.3087,-0.8315,0.4619,-0.2126,-0.8315,0.5133,-0.2126,-0.8315,0.5133,-0.1464,-0.9239,0.3536,-0.2126,-0.9239,0.3182,-0.2706,-0.9239,0.2706,-0.3928,-0.8315,0.3928,-0.3087,-0.8315,0.4619,-0.3087,-0.8315,0.4619,-0.2126,-0.9239,0.3182,-0.2706,-0.9239,0.2706,-0.3182,-0.9239,0.2126,-0.4619,-0.8315,0.3087,-0.3928,-0.8315,0.3928,-0.3928,-0.8315,0.3928,-0.2706,-0.9239,0.2706,-0.3182,-0.9239,0.2126,-0.3536,-0.9239,0.1464,-0.5133,-0.8315,0.2126,-0.4619,-0.8315,0.3087,-0.4619,-0.8315,0.3087,-0.3182,-0.9239,0.2126,-0.3536,-0.9239,0.1464,-0.3753,-0.9239,0.0747,-0.5449,-0.8315,0.1084,-0.5133,-0.8315,0.2126,-0.5133,-0.8315,0.2126,-0.3536,-0.9239,0.1464,-0.3753,-0.9239,0.0747,-0.3827,-0.9239,0.0,-0.5556,-0.8315,0.0,-0.5449,-0.8315,0.1084,-0.5449,-0.8315,0.1084,-0.3753,-0.9239,0.0747,-0.3827,-0.9239,0.0,-0.3753,-0.9239,-0.0747,-0.5449,-0.8315,-0.1084,-0.5556,-0.8315,0.0,-0.5556,-0.8315,0.0,-0.3827,-0.9239,0.0,-0.3753,-0.9239,-0.0747,-0.3536,-0.9239,-0.1464,-0.5133,-0.8315,-0.2126,-0.5449,-0.8315,-0.1084,-0.5449,-0.8315,-0.1084,-0.3753,-0.9239,-0.0747,-0.3536,-0.9239,-0.1464,-0.3182,-0.9239,-0.2126,-0.4619,-0.8315,-0.3087,-0.5133,-0.8315,-0.2126,-0.5133,-0.8315,-0.2126,-0.3536,-0.9239,-0.1464,-0.3182,-0.9239,-0.2126,-0.2706,-0.9239,-0.2706,-0.3928,-0.8315,-0.3928,-0.4619,-0.8315,-0.3087,-0.4619,-0.8315,-0.3087,-0.3182,-0.9239,-0.2126,-0.2706,-0.9239,-0.2706,-0.2126,-0.9239,-0.3182,-0.3087,-0.8315,-0.4619,-0.3928,-0.8315,-0.3928,-0.3928,-0.8315,-0.3928,-0.2706,-0.9239,-0.2706,-0.2126,-0.9239,-0.3182,-0.1464,-0.9239,-0.3536,-0.2126,-0.8315,-0.5133,-0.3087,-0.8315,-0.4619,-0.3087,-0.8315,-0.4619,-0.2126,-0.9239,-0.3182,-0.1464,-0.9239,-0.3536,-0.0747,-0.9239,-0.3753,-0.1084,-0.8315,-0.5449,-0.2126,-0.8315,-0.5133,-0.2126,-0.8315,-0.5133,-0.1464,-0.9239,-0.3536,-0.0747,-0.9239,-0.3753,0.0,-0.9239,-0.3827,0.0,-0.8315,-0.5556,-0.1084,-0.8315,-0.5449,-0.1084,-0.8315,-0.5449,-0.0747,-0.9239,-0.3753,0.0,-0.9239,-0.3827,-0.0381,-0.9808,0.1913,-0.0747,-0.9239,0.3753,0.0,-0.9239,0.3827,0.0,-0.9239,0.3827,0.0,-0.9808,0.1951,-0.0381,-0.9808,0.1913,-0.0747,-0.9808,0.1802,-0.1464,-0.9239,0.3536,-0.0747,-0.9239,0.3753,-0.0747,-0.9239,0.3753,-0.0381,-0.9808,0.1913,-0.0747,-0.9808,0.1802,-0.1084,-0.9808,0.1622,-0.2126,-0.9239,0.3182,-0.1464,-0.9239,0.3536,-0.1464,-0.9239,0.3536,-0.0747,-0.9808,0.1802,-0.1084,-0.9808,0.1622,-0.1379,-0.9808,0.1379,-0.2706,-0.9239,0.2706,-0.2126,-0.9239,0.3182,-0.2126,-0.9239,0.3182,-0.1084,-0.9808,0.1622,-0.1379,-0.9808,0.1379,-0.1622,-0.9808,0.1084,-0.3182,-0.9239,0.2126,-0.2706,-0.9239,0.2706,-0.2706,-0.9239,0.2706,-0.1379,-0.9808,0.1379,-0.1622,-0.9808,0.1084,-0.1802,-0.9808,0.0747,-0.3536,-0.9239,0.1464,-0.3182,-0.9239,0.2126,-0.3182,-0.9239,0.2126,-0.1622,-0.9808,0.1084,-0.1802,-0.9808,0.0747,-0.1913,-0.9808,0.0381,-0.3753,-0.9239,0.0747,-0.3536,-0.9239,0.1464,-0.3536,-0.9239,0.1464,-0.1802,-0.9808,0.0747,-0.1913,-0.9808,0.0381,-0.1951,-0.9808,0.0,-0.3827,-0.9239,0.0,-0.3753,-0.9239,0.0747,-0.3753,-0.9239,0.0747,-0.1913,-0.9808,0.0381,-0.1951,-0.9808,0.0,-0.1913,-0.9808,-0.0381,-0.3753,-0.9239,-0.0747,-0.3827,-0.9239,0.0,-0.3827,-0.9239,0.0,-0.1951,-0.9808,0.0,-0.1913,-0.9808,-0.0381,-0.1802,-0.9808,-0.0747,-0.3536,-0.9239,-0.1464,-0.3753,-0.9239,-0.0747,-0.3753,-0.9239,-0.0747,-0.1913,-0.9808,-0.0381,-0.1802,-0.9808,-0.0747,-0.1622,-0.9808,-0.1084,-0.3182,-0.9239,-0.2126,-0.3536,-0.9239,-0.1464,-0.3536,-0.9239,-0.1464,-0.1802,-0.9808,-0.0747,-0.1622,-0.9808,-0.1084,-0.1379,-0.9808,-0.1379,-0.2706,-0.9239,-0.2706,-0.3182,-0.9239,-0.2126,-0.3182,-0.9239,-0.2126,-0.1622,-0.9808,-0.1084,-0.1379,-0.9808,-0.1379,-0.1084,-0.9808,-0.1622,-0.2126,-0.9239,-0.3182,-0.2706,-0.9239,-0.2706,-0.2706,-0.9239,-0.2706,-0.1379,-0.9808,-0.1379,-0.1084,-0.9808,-0.1622,-0.0747,-0.9808,-0.1802,-0.1464,-0.9239,-0.3536,-0.2126,-0.9239,-0.3182,-0.2126,-0.9239,-0.3182,-0.1084,-0.9808,-0.1622,-0.0747,-0.9808,-0.1802,-0.0381,-0.9808,-0.1913,-0.0747,-0.9239,-0.3753,-0.1464,-0.9239,-0.3536,-0.1464,-0.9239,-0.3536,-0.0747,-0.9808,-0.1802,-0.0381,-0.9808,-0.1913,0.0,-0.9808,-0.1951,0.0,-0.9239,-0.3827,-0.0747,-0.9239,-0.3753,-0.0747,-0.9239,-0.3753,-0.0381,-0.9808,-0.1913,0.0,-0.9808,-0.1951,0.0,-1.0,0.0,-0.0381,-0.9808,0.1913,0.0,-0.9808,0.1951,0.0,-1.0,0.0,-0.0747,-0.9808,0.1802,-0.0381,-0.9808,0.1913,0.0,-1.0,0.0,-0.1084,-0.9808,0.1622,-0.0747,-0.9808,0.1802,0.0,-1.0,0.0,-0.1379,-0.9808,0.1379,-0.1084,-0.9808,0.1622,0.0,-1.0,0.0,-0.1622,-0.9808,0.1084,-0.1379,-0.9808,0.1379,0.0,-1.0,0.0,-0.1802,-0.9808,0.0747,-0.1622,-0.9808,0.1084,0.0,-1.0,0.0,-0.1913,-0.9808,0.0381,-0.1802,-0.9808,0.0747,0.0,-1.0,0.0,-0.1951,-0.9808,0.0,-0.1913,-0.9808,0.0381,0.0,-1.0,0.0,-0.1913,-0.9808,-0.0381,-0.1951,-0.9808,0.0,0.0,-1.0,0.0,-0.1802,-0.9808,-0.0747,-0.1913,-0.9808,-0.0381,0.0,-1.0,0.0,-0.1622,-0.9808,-0.1084,-0.1802,-0.9808,-0.0747,0.0,-1.0,0.0,-0.1379,-0.9808,-0.1379,-0.1622,-0.9808,-0.1084,0.0,-1.0,0.0,-0.1084,-0.9808,-0.1622,-0.1379,-0.9808,-0.1379,0.0,-1.0,0.0,-0.0747,-0.9808,-0.1802,-0.1084,-0.9808,-0.1622,0.0,-1.0,0.0,-0.0381,-0.9808,-0.1913,-0.0747,-0.9808,-0.1802,0.0,-1.0,0.0,0.0,-0.9808,-0.1951,-0.0381,-0.9808,-0.1913],"normals":[-0.063,0.998,0.0,-0.0198,0.9794,0.2009,-0.0392,0.9796,0.1971,-0.063,0.998,0.0,-0.0392,0.9796,0.1971,-0.0769,0.9796,0.1857,-0.063,0.998,0.0,-0.0769,0.9796,0.1857,-0.1117,0.9796,0.1671,-0.063,0.998,0.0,-0.1117,0.9796,0.1671,-0.1421,0.9796,0.1421,-0.063,0.998,0.0,-0.1421,0.9796,0.1421,-0.1671,0.9796,0.1117,-0.063,0.998,0.0,-0.1671,0.9796,0.1117,-0.1857,0.9796,0.0769,-0.063,0.998,0.0,-0.1857,0.9796,0.0769,-0.1971,0.9796,0.0392,-0.063,0.998,0.0,-0.1971,0.9796,0.0392,-0.201,0.9796,0.0,-0.063,0.998,0.0,-0.201,0.9796,0.0,-0.1971,0.9796,-0.0392,-0.063,0.998,0.0,-0.1971,0.9796,-0.0392,-0.1857,0.9796,-0.0769,-0.063,0.998,0.0,-0.1857,0.9796,-0.0769,-0.1671,0.9796,-0.1117,-0.063,0.998,0.0,-0.1671,0.9796,-0.1117,-0.1421,0.9796,-0.1421,-0.063,0.998,0.0,-0.1421,0.9796,-0.1421,-0.1117,0.9796,-0.1671,-0.063,0.998,0.0,-0.1117,0.9796,-0.1671,-0.0769,0.9796,-0.1857,-0.063,0.998,0.0,-0.0769,0.9796,-0.1857,-0.0392,0.9796,-0.1971,-0.063,0.998,0.0,-0.0392,0.9796,-0.1971,-0.0198,0.9794,-0.2009,-0.0757,0.9217,0.3804,-0.0392,0.9796,0.1971,-0.0198,0.9794,0.2009,-0.0198,0.9794,0.2009,-0.0382,0.921,0.3876,-0.0757,0.9217,0.3804,-0.1484,0.9217,0.3584,-0.0769,0.9796,0.1857,-0.0392,0.9796,0.1971,-0.0392,0.9796,0.1971,-0.0757,0.9217,0.3804,-0.1484,0.9217,0.3584,-0.2155,0.9217,0.3225,-0.1117,0.9796,0.1671,-0.0769,0.9796,0.1857,-0.0769,0.9796,0.1857,-0.1484,0.9217,0.3584,-0.2155,0.9217,0.3225,-0.2743,0.9217,0.2743,-0.1421,0.9796,0.1421,-0.1117,0.9796,0.1671,-0.1117,0.9796,0.1671,-0.2155,0.9217,0.3225,-0.2743,0.9217,0.2743,-0.3225,0.9217,0.2155,-0.1671,0.9796,0.1117,-0.1421,0.9796,0.1421,-0.1421,0.9796,0.1421,-0.2743,0.9217,0.2743,-0.3225,0.9217,0.2155,-0.3584,0.9217,0.1484,-0.1857,0.9796,0.0769,-0.1671,0.9796,0.1117,-0.1671,0.9796,0.1117,-0.3225,0.9217,0.2155,-0.3584,0.9217,0.1484,-0.3804,0.9217,0.0757,-0.1971,0.9796,0.0392,-0.1857,0.9796,0.0769,-0.1857,0.9796,0.0769,-0.3584,0.9217,0.1484,-0.3804,0.9217,0.0757,-0.3879,0.9217,0.0,-0.201,0.9796,0.0,-0.1971,0.9796,0.0392,-0.1971,0.9796,0.0392,-0.3804,0.9217,0.0757,-0.3879,0.9217,0.0,-0.3804,0.9217,-0.0757,-0.1971,0.9796,-0.0392,-0.201,0.9796,0.0,-0.201,0.9796,0.0,-0.3879,0.9217,0.0,-0.3804,0.9217,-0.0757,-0.3584,0.9217,-0.1484,-0.1857,0.9796,-0.0769,-0.1971,0.9796,-0.0392,-0.1971,0.9796,-0.0392,-0.3804,0.9217,-0.0757,-0.3584,0.9217,-0.1484,-0.3225,0.9217,-0.2155,-0.1671,0.9796,-0.1117,-0.1857,0.9796,-0.0769,-0.1857,0.9796,-0.0769,-0.3584,0.9217,-0.1484,-0.3225,0.9217,-0.2155,-0.2743,0.9217,-0.2743,-0.1421,0.9796,-0.1421,-0.1671,0.9796,-0.1117,-0.1671,0.9796,-0.1117,-0.3225,0.9217,-0.2155,-0.2743,0.9217,-0.2743,-0.2155,0.9217,-0.3225,-0.1117,0.9796,-0.1671,-0.1421,0.9796,-0.1421,-0.1421,0.9796,-0.1421,-0.2743,0.9217,-0.2743,-0.2155,0.9217,-0.3225,-0.1484,0.9217,-0.3584,-0.0769,0.9796,-0.1857,-0.1117,0.9796,-0.1671,-0.1117,0.9796,-0.1671,-0.2155,0.9217,-0.3225,-0.1484,0.9217,-0.3584,-0.0757,0.9217,-0.3804,-0.0392,0.9796,-0.1971,-0.0769,0.9796,-0.1857,-0.0769,0.9796,-0.1857,-0.1484,0.9217,-0.3584,-0.0757,0.9217,-0.3804,-0.0382,0.921,-0.3876,-0.0198,0.9794,-0.2009,-0.0392,0.9796,-0.1971,-0.0392,0.9796,-0.1971,-0.0757,0.9217,-0.3804,-0.0382,0.921,-0.3876,-0.1092,0.8286,0.549,-0.0757,0.9217,0.3804,-0.0382,0.921,0.3876,-0.0382,0.921,0.3876,-0.055,0.8274,0.5589,-0.1092,0.8286,0.549,-0.2142,0.8286,0.5172,-0.1484,0.9217,0.3584,-0.0757,0.9217,0.3804,-0.0757,0.9217,0.3804,-0.1092,0.8286,0.549,-0.2142,0.8286,0.5172,-0.311,0.8286,0.4654,-0.2155,0.9217,0.3225,-0.1484,0.9217,0.3584,-0.1484,0.9217,0.3584,-0.2142,0.8286,0.5172,-0.311,0.8286,0.4654,-0.3958,0.8286,0.3958,-0.2743,0.9217,0.2743,-0.2155,0.9217,0.3225,-0.2155,0.9217,0.3225,-0.311,0.8286,0.4654,-0.3958,0.8286,0.3958,-0.4654,0.8286,0.311,-0.3225,0.9217,0.2155,-0.2743,0.9217,0.2743,-0.2743,0.9217,0.2743,-0.3958,0.8286,0.3958,-0.4654,0.8286,0.311,-0.5172,0.8286,0.2142,-0.3584,0.9217,0.1484,-0.3225,0.9217,0.2155,-0.3225,0.9217,0.2155,-0.4654,0.8286,0.311,-0.5172,0.8286,0.2142,-0.549,0.8286,0.1092,-0.3804,0.9217,0.0757,-0.3584,0.9217,0.1484,-0.3584,0.9217,0.1484,-0.5172,0.8286,0.2142,-0.549,0.8286,0.1092,-0.5598,0.8286,0.0,-0.3879,0.9217,0.0,-0.3804,0.9217,0.0757,-0.3804,0.9217,0.0757,-0.549,0.8286,0.1092,-0.5598,0.8286,0.0,-0.549,0.8286,-0.1092,-0.3804,0.9217,-0.0757,-0.3879,0.9217,0.0,-0.3879,0.9217,0.0,-0.5598,0.8286,0.0,-0.549,0.8286,-0.1092,-0.5172,0.8286,-0.2142,-0.3584,0.9217,-0.1484,-0.3804,0.9217,-0.0757,-0.3804,0.9217,-0.0757,-0.549,0.8286,-0.1092,-0.5172,0.8286,-0.2142,-0.4654,0.8286,-0.311,-0.3225,0.9217,-0.2155,-0.3584,0.9217,-0.1484,-0.3584,0.9217,-0.1484,-0.5172,0.8286,-0.2142,-0.4654,0.8286,-0.311,-0.3958,0.8286,-0.3958,-0.2743,0.9217,-0.2743,-0.3225,0.9217,-0.2155,-0.3225,0.9217,-0.2155,-0.4654,0.8286,-0.311,-0.3958,0.8286,-0.3958,-0.311,0.8286,-0.4654,-0.2155,0.9217,-0.3225,-0.2743,0.9217,-0.2743,-0.2743,0.9217,-0.2743,-0.3958,0.8286,-0.3958,-0.311,0.8286,-0.4654,-0.2142,0.8286,-0.5172,-0.1484,0.9217,-0.3584,-0.2155,0.9217,-0.3225,-0.2155,0.9217,-0.3225,-0.311,0.8286,-0.4654,-0.2142,0.8286,-0.5172,-0.1092,0.8286,-0.549,-0.0757,0.9217,-0.3804,-0.1484,0.9217,-0.3584,-0.1484,0.9217,-0.3584,-0.2142,0.8286,-0.5172,-0.1092,0.8286,-0.549,-0.055,0.8274,-0.5589,-0.0382,0.921,-0.3876,-0.0757,0.9217,-0.3804,-0.0757,0.9217,-0.3804,-0.1092,0.8286,-0.549,-0.055,0.8274,-0.5589,-0.1385,0.7041,0.6965,-0.1092,0.8286,0.549,-0.055,0.8274,0.5589,-0.055,0.8274,0.5589,-0.0698,0.7023,0.7084,-0.1385,0.7041,0.6965,-0.2718,0.7041,0.6561,-0.2142,0.8286,0.5172,-0.1092,0.8286,0.549,-0.1092,0.8286,0.549,-0.1385,0.7041,0.6965,-0.2718,0.7041,0.6561,-0.3945,0.7041,0.5905,-0.311,0.8286,0.4654,-0.2142,0.8286,0.5172,-0.2142,0.8286,0.5172,-0.2718,0.7041,0.6561,-0.3945,0.7041,0.5905,-0.5021,0.7041,0.5021,-0.3958,0.8286,0.3958,-0.311,0.8286,0.4654,-0.311,0.8286,0.4654,-0.3945,0.7041,0.5905,-0.5021,0.7041,0.5021,-0.5905,0.7041,0.3945,-0.4654,0.8286,0.311,-0.3958,0.8286,0.3958,-0.3958,0.8286,0.3958,-0.5021,0.7041,0.5021,-0.5905,0.7041,0.3945,-0.6561,0.7041,0.2718,-0.5172,0.8286,0.2142,-0.4654,0.8286,0.311,-0.4654,0.8286,0.311,-0.5905,0.7041,0.3945,-0.6561,0.7041,0.2718,-0.6965,0.7041,0.1385,-0.549,0.8286,0.1092,-0.5172,0.8286,0.2142,-0.5172,0.8286,0.2142,-0.6561,0.7041,0.2718,-0.6965,0.7041,0.1385,-0.7101,0.7041,0.0,-0.5598,0.8286,0.0,-0.549,0.8286,0.1092,-0.549,0.8286,0.1092,-0.6965,0.7041,0.1385,-0.7101,0.7041,0.0,-0.6965,0.7041,-0.1385,-0.549,0.8286,-0.1092,-0.5598,0.8286,0.0,-0.5598,0.8286,0.0,-0.7101,0.7041,0.0,-0.6965,0.7041,-0.1385,-0.6561,0.7041,-0.2718,-0.5172,0.8286,-0.2142,-0.549,0.8286,-0.1092,-0.549,0.8286,-0.1092,-0.6965,0.7041,-0.1385,-0.6561,0.7041,-0.2718,-0.5905,0.7041,-0.3945,-0.4654,0.8286,-0.311,-0.5172,0.8286,-0.2142,-0.5172,0.8286,-0.2142,-0.6561,0.7041,-0.2718,-0.5905,0.7041,-0.3945,-0.5021,0.7041,-0.5021,-0.3958,0.8286,-0.3958,-0.4654,0.8286,-0.311,-0.4654,0.8286,-0.311,-0.5905,0.7041,-0.3945,-0.5021,0.7041,-0.5021,-0.3945,0.7041,-0.5905,-0.311,0.8286,-0.4654,-0.3958,0.8286,-0.3958,-0.3958,0.8286,-0.3958,-0.5021,0.7041,-0.5021,-0.3945,0.7041,-0.5905,-0.2718,0.7041,-0.6561,-0.2142,0.8286,-0.5172,-0.311,0.8286,-0.4654,-0.311,0.8286,-0.4654,-0.3945,0.7041,-0.5905,-0.2718,0.7041,-0.6561,-0.1385,0.7041,-0.6965,-0.1092,0.8286,-0.549,-0.2142,0.8286,-0.5172,-0.2142,0.8286,-0.5172,-0.2718,0.7041,-0.6561,-0.1385,0.7041,-0.6965,-0.0698,0.7023,-0.7084,-0.055,0.8274,-0.5589,-0.1092,0.8286,-0.549,-0.1092,0.8286,-0.549,-0.1385,0.7041,-0.6965,-0.0698,0.7023,-0.7084,-0.1626,0.5528,0.8173,-0.1385,0.7041,0.6965,-0.0698,0.7023,0.7084,-0.0698,0.7023,0.7084,-0.0818,0.5509,0.8305,-0.1626,0.5528,0.8173,-0.3189,0.5528,0.7699,-0.2718,0.7041,0.6561,-0.1385,0.7041,0.6965,-0.1385,0.7041,0.6965,-0.1626,0.5528,0.8173,-0.3189,0.5528,0.7699,-0.463,0.5528,0.6929,-0.3945,0.7041,0.5905,-0.2718,0.7041,0.6561,-0.2718,0.7041,0.6561,-0.3189,0.5528,0.7699,-0.463,0.5528,0.6929,-0.5893,0.5528,0.5893,-0.5021,0.7041,0.5021,-0.3945,0.7041,0.5905,-0.3945,0.7041,0.5905,-0.463,0.5528,0.6929,-0.5893,0.5528,0.5893,-0.6929,0.5528,0.463,-0.5905,0.7041,0.3945,-0.5021,0.7041,0.5021,-0.5021,0.7041,0.5021,-0.5893,0.5528,0.5893,-0.6929,0.5528,0.463,-0.7699,0.5528,0.3189,-0.6561,0.7041,0.2718,-0.5905,0.7041,0.3945,-0.5905,0.7041,0.3945,-0.6929,0.5528,0.463,-0.7699,0.5528,0.3189,-0.8173,0.5528,0.1626,-0.6965,0.7041,0.1385,-0.6561,0.7041,0.2718,-0.6561,0.7041,0.2718,-0.7699,0.5528,0.3189,-0.8173,0.5528,0.1626,-0.8333,0.5528,0.0,-0.7101,0.7041,0.0,-0.6965,0.7041,0.1385,-0.6965,0.7041,0.1385,-0.8173,0.5528,0.1626,-0.8333,0.5528,0.0,-0.8173,0.5528,-0.1626,-0.6965,0.7041,-0.1385,-0.7101,0.7041,0.0,-0.7101,0.7041,0.0,-0.8333,0.5528,0.0,-0.8173,0.5528,-0.1626,-0.7699,0.5528,-0.3189,-0.6561,0.7041,-0.2718,-0.6965,0.7041,-0.1385,-0.6965,0.7041,-0.1385,-0.8173,0.5528,-0.1626,-0.7699,0.5528,-0.3189,-0.6929,0.5528,-0.463,-0.5905,0.7041,-0.3945,-0.6561,0.7041,-0.2718,-0.6561,0.7041,-0.2718,-0.7699,0.5528,-0.3189,-0.6929,0.5528,-0.463,-0.5893,0.5528,-0.5893,-0.5021,0.7041,-0.5021,-0.5905,0.7041,-0.3945,-0.5905,0.7041,-0.3945,-0.6929,0.5528,-0.463,-0.5893,0.5528,-0.5893,-0.463,0.5528,-0.6929,-0.3945,0.7041,-0.5905,-0.5021,0.7041,-0.5021,-0.5021,0.7041,-0.5021,-0.5893,0.5528,-0.5893,-0.463,0.5528,-0.6929,-0.3189,0.5528,-0.7699,-0.2718,0.7041,-0.6561,-0.3945,0.7041,-0.5905,-0.3945,0.7041,-0.5905,-0.463,0.5528,-0.6929,-0.3189,0.5528,-0.7699,-0.1626,0.5528,-0.8173,-0.1385,0.7041,-0.6965,-0.2718,0.7041,-0.6561,-0.2718,0.7041,-0.6561,-0.3189,0.5528,-0.7699,-0.1626,0.5528,-0.8173,-0.0818,0.5509,-0.8305,-0.0698,0.7023,-0.7084,-0.1385,0.7041,-0.6965,-0.1385,0.7041,-0.6965,-0.1626,0.5528,-0.8173,-0.0818,0.5509,-0.8305,-0.1804,0.3805,0.907,-0.1626,0.5528,0.8173,-0.0818,0.5509,0.8305,-0.0818,0.5509,0.8305,-0.0907,0.379,0.921,-0.1804,0.3805,0.907,-0.3539,0.3805,0.8544,-0.3189,0.5528,0.7699,-0.1626,0.5528,0.8173,-0.1626,0.5528,0.8173,-0.1804,0.3805,0.907,-0.3539,0.3805,0.8544,-0.5138,0.3805,0.7689,-0.463,0.5528,0.6929,-0.3189,0.5528,0.7699,-0.3189,0.5528,0.7699,-0.3539,0.3805,0.8544,-0.5138,0.3805,0.7689,-0.6539,0.3805,0.6539,-0.5893,0.5528,0.5893,-0.463,0.5528,0.6929,-0.463,0.5528,0.6929,-0.5138,0.3805,0.7689,-0.6539,0.3805,0.6539,-0.7689,0.3805,0.5138,-0.6929,0.5528,0.463,-0.5893,0.5528,0.5893,-0.5893,0.5528,0.5893,-0.6539,0.3805,0.6539,-0.7689,0.3805,0.5138,-0.8544,0.3805,0.3539,-0.7699,0.5528,0.3189,-0.6929,0.5528,0.463,-0.6929,0.5528,0.463,-0.7689,0.3805,0.5138,-0.8544,0.3805,0.3539,-0.907,0.3805,0.1804,-0.8173,0.5528,0.1626,-0.7699,0.5528,0.3189,-0.7699,0.5528,0.3189,-0.8544,0.3805,0.3539,-0.907,0.3805,0.1804,-0.9248,0.3805,0.0,-0.8333,0.5528,0.0,-0.8173,0.5528,0.1626,-0.8173,0.5528,0.1626,-0.907,0.3805,0.1804,-0.9248,0.3805,0.0,-0.907,0.3805,-0.1804,-0.8173,0.5528,-0.1626,-0.8333,0.5528,0.0,-0.8333,0.5528,0.0,-0.9248,0.3805,0.0,-0.907,0.3805,-0.1804,-0.8544,0.3805,-0.3539,-0.7699,0.5528,-0.3189,-0.8173,0.5528,-0.1626,-0.8173,0.5528,-0.1626,-0.907,0.3805,-0.1804,-0.8544,0.3805,-0.3539,-0.7689,0.3805,-0.5138,-0.6929,0.5528,-0.463,-0.7699,0.5528,-0.3189,-0.7699,0.5528,-0.3189,-0.8544,0.3805,-0.3539,-0.7689,0.3805,-0.5138,-0.6539,0.3805,-0.6539,-0.5893,0.5528,-0.5893,-0.6929,0.5528,-0.463,-0.6929,0.5528,-0.463,-0.7689,0.3805,-0.5138,-0.6539,0.3805,-0.6539,-0.5138,0.3805,-0.7689,-0.463,0.5528,-0.6929,-0.5893,0.5528,-0.5893,-0.5893,0.5528,-0.5893,-0.6539,0.3805,-0.6539,-0.5138,0.3805,-0.7689,-0.3539,0.3805,-0.8544,-0.3189,0.5528,-0.7699,-0.463,0.5528,-0.6929,-0.463,0.5528,-0.6929,-0.5138,0.3805,-0.7689,-0.3539,0.3805,-0.8544,-0.1804,0.3805,-0.907,-0.1626,0.5528,-0.8173,-0.3189,0.5528,-0.7699,-0.3189,0.5528,-0.7699,-0.3539,0.3805,-0.8544,-0.1804,0.3805,-0.907,-0.0907,0.379,-0.921,-0.0818,0.5509,-0.8305,-0.1626,0.5528,-0.8173,-0.1626,0.5528,-0.8173,-0.1804,0.3805,-0.907,-0.0907,0.379,-0.921,-0.1914,0.1939,0.9622,-0.1804,0.3805,0.907,-0.0907,0.379,0.921,-0.0907,0.379,0.921,-0.0962,0.193,0.9765,-0.1914,0.1939,0.9622,-0.3754,0.1939,0.9063,-0.3539,0.3805,0.8544,-0.1804,0.3805,0.907,-0.1804,0.3805,0.907,-0.1914,0.1939,0.9622,-0.3754,0.1939,0.9063,-0.545,0.1939,0.8157,-0.5138,0.3805,0.7689,-0.3539,0.3805,0.8544,-0.3539,0.3805,0.8544,-0.3754,0.1939,0.9063,-0.545,0.1939,0.8157,-0.6937,0.1939,0.6937,-0.6539,0.3805,0.6539,-0.5138,0.3805,0.7689,-0.5138,0.3805,0.7689,-0.545,0.1939,0.8157,-0.6937,0.1939,0.6937,-0.8157,0.1939,0.545,-0.7689,0.3805,0.5138,-0.6539,0.3805,0.6539,-0.6539,0.3805,0.6539,-0.6937,0.1939,0.6937,-0.8157,0.1939,0.545,-0.9063,0.1939,0.3754,-0.8544,0.3805,0.3539,-0.7689,0.3805,0.5138,-0.7689,0.3805,0.5138,-0.8157,0.1939,0.545,-0.9063,0.1939,0.3754,-0.9622,0.1939,0.1914,-0.907,0.3805,0.1804,-0.8544,0.3805,0.3539,-0.8544,0.3805,0.3539,-0.9063,0.1939,0.3754,-0.9622,0.1939,0.1914,-0.981,0.1939,0.0,-0.9248,0.3805,0.0,-0.907,0.3805,0.1804,-0.907,0.3805,0.1804,-0.9622,0.1939,0.1914,-0.981,0.1939,0.0,-0.9622,0.1939,-0.1914,-0.907,0.3805,-0.1804,-0.9248,0.3805,0.0,-0.9248,0.3805,0.0,-0.981,0.1939,0.0,-0.9622,0.1939,-0.1914,-0.9063,0.1939,-0.3754,-0.8544,0.3805,-0.3539,-0.907,0.3805,-0.1804,-0.907,0.3805,-0.1804,-0.9622,0.1939,-0.1914,-0.9063,0.1939,-0.3754,-0.8157,0.1939,-0.545,-0.7689,0.3805,-0.5138,-0.8544,0.3805,-0.3539,-0.8544,0.3805,-0.3539,-0.9063,0.1939,-0.3754,-0.8157,0.1939,-0.545,-0.6937,0.1939,-0.6937,-0.6539,0.3805,-0.6539,-0.7689,0.3805,-0.5138,-0.7689,0.3805,-0.5138,-0.8157,0.1939,-0.545,-0.6937,0.1939,-0.6937,-0.545,0.1939,-0.8157,-0.5138,0.3805,-0.7689,-0.6539,0.3805,-0.6539,-0.6539,0.3805,-0.6539,-0.6937,0.1939,-0.6937,-0.545,0.1939,-0.8157,-0.3754,0.1939,-0.9063,-0.3539,0.3805,-0.8544,-0.5138,0.3805,-0.7689,-0.5138,0.3805,-0.7689,-0.545,0.1939,-0.8157,-0.3754,0.1939,-0.9063,-0.1914,0.1939,-0.9622,-0.1804,0.3805,-0.907,-0.3539,0.3805,-0.8544,-0.3539,0.3805,-0.8544,-0.3754,0.1939,-0.9063,-0.1914,0.1939,-0.9622,-0.0962,0.193,-0.9765,-0.0907,0.379,-0.921,-0.1804,0.3805,-0.907,-0.1804,0.3805,-0.907,-0.1914,0.1939,-0.9622,-0.0962,0.193,-0.9765,-0.1951,0.0,0.9808,-0.1914,0.1939,0.9622,-0.0962,0.193,0.9765,-0.0962,0.193,0.9765,-0.098,0.0,0.9952,-0.1951,0.0,0.9808,-0.3827,0.0,0.9239,-0.3754,0.1939,0.9063,-0.1914,0.1939,0.9622,-0.1914,0.1939,0.9622,-0.1951,0.0,0.9808,-0.3827,0.0,0.9239,-0.5556,0.0,0.8315,-0.545,0.1939,0.8157,-0.3754,0.1939,0.9063,-0.3754,0.1939,0.9063,-0.3827,0.0,0.9239,-0.5556,0.0,0.8315,-0.7071,0.0,0.7071,-0.6937,0.1939,0.6937,-0.545,0.1939,0.8157,-0.545,0.1939,0.8157,-0.5556,0.0,0.8315,-0.7071,0.0,0.7071,-0.8315,0.0,0.5556,-0.8157,0.1939,0.545,-0.6937,0.1939,0.6937,-0.6937,0.1939,0.6937,-0.7071,0.0,0.7071,-0.8315,0.0,0.5556,-0.9239,0.0,0.3827,-0.9063,0.1939,0.3754,-0.8157,0.1939,0.545,-0.8157,0.1939,0.545,-0.8315,0.0,0.5556,-0.9239,0.0,0.3827,-0.9808,0.0,0.1951,-0.9622,0.1939,0.1914,-0.9063,0.1939,0.3754,-0.9063,0.1939,0.3754,-0.9239,0.0,0.3827,-0.9808,0.0,0.1951,-1.0,0.0,0.0,-0.981,0.1939,0.0,-0.9622,0.1939,0.1914,-0.9622,0.1939,0.1914,-0.9808,0.0,0.1951,-1.0,0.0,0.0,-0.9808,0.0,-0.1951,-0.9622,0.1939,-0.1914,-0.981,0.1939,0.0,-0.981,0.1939,0.0,-1.0,0.0,0.0,-0.9808,0.0,-0.1951,-0.9239,0.0,-0.3827,-0.9063,0.1939,-0.3754,-0.9622,0.1939,-0.1914,-0.9622,0.1939,-0.1914,-0.9808,0.0,-0.1951,-0.9239,0.0,-0.3827,-0.8315,0.0,-0.5556,-0.8157,0.1939,-0.545,-0.9063,0.1939,-0.3754,-0.9063,0.1939,-0.3754,-0.9239,0.0,-0.3827,-0.8315,0.0,-0.5556,-0.7071,0.0,-0.7071,-0.6937,0.1939,-0.6937,-0.8157,0.1939,-0.545,-0.8157,0.1939,-0.545,-0.8315,0.0,-0.5556,-0.7071,0.0,-0.7071,-0.5556,0.0,-0.8315,-0.545,0.1939,-0.8157,-0.6937,0.1939,-0.6937,-0.6937,0.1939,-0.6937,-0.7071,0.0,-0.7071,-0.5556,0.0,-0.8315,-0.3827,0.0,-0.9239,-0.3754,0.1939,-0.9063,-0.545,0.1939,-0.8157,-0.545,0.1939,-0.8157,-0.5556,0.0,-0.8315,-0.3827,0.0,-0.9239,-0.1951,0.0,-0.9808,-0.1914,0.1939,-0.9622,-0.3754,0.1939,-0.9063,-0.3754,0.1939,-0.9063,-0.3827,0.0,-0.9239,-0.1951,0.0,-0.9808,-0.098,0.0,-0.9952,-0.0962,0.193,-0.9765,-0.1914,0.1939,-0.9622,-0.1914,0.1939,-0.9622,-0.1951,0.0,-0.9808,-0.098,0.0,-0.9952,-0.1914,-0.1939,0.9622,-0.1951,0.0,0.9808,-0.098,0.0,0.9952,-0.098,0.0,0.9952,-0.0962,-0.193,0.9765,-0.1914,-0.1939,0.9622,-0.3754,-0.1939,0.9063,-0.3827,0.0,0.9239,-0.1951,0.0,0.9808,-0.1951,0.0,0.9808,-0.1914,-0.1939,0.9622,-0.3754,-0.1939,0.9063,-0.545,-0.1939,0.8157,-0.5556,0.0,0.8315,-0.3827,0.0,0.9239,-0.3827,0.0,0.9239,-0.3754,-0.1939,0.9063,-0.545,-0.1939,0.8157,-0.6937,-0.1939,0.6937,-0.7071,0.0,0.7071,-0.5556,0.0,0.8315,-0.5556,0.0,0.8315,-0.545,-0.1939,0.8157,-0.6937,-0.1939,0.6937,-0.8157,-0.1939,0.545,-0.8315,0.0,0.5556,-0.7071,0.0,0.7071,-0.7071,0.0,0.7071,-0.6937,-0.1939,0.6937,-0.8157,-0.1939,0.545,-0.9063,-0.1939,0.3754,-0.9239,0.0,0.3827,-0.8315,0.0,0.5556,-0.8315,0.0,0.5556,-0.8157,-0.1939,0.545,-0.9063,-0.1939,0.3754,-0.9622,-0.1939,0.1914,-0.9808,0.0,0.1951,-0.9239,0.0,0.3827,-0.9239,0.0,0.3827,-0.9063,-0.1939,0.3754,-0.9622,-0.1939,0.1914,-0.981,-0.1939,0.0,-1.0,0.0,0.0,-0.9808,0.0,0.1951,-0.9808,0.0,0.1951,-0.9622,-0.1939,0.1914,-0.981,-0.1939,0.0,-0.9622,-0.1939,-0.1914,-0.9808,0.0,-0.1951,-1.0,0.0,0.0,-1.0,0.0,0.0,-0.981,-0.1939,0.0,-0.9622,-0.1939,-0.1914,-0.9063,-0.1939,-0.3754,-0.9239,0.0,-0.3827,-0.9808,0.0,-0.1951,-0.9808,0.0,-0.1951,-0.9622,-0.1939,-0.1914,-0.9063,-0.1939,-0.3754,-0.8157,-0.1939,-0.545,-0.8315,0.0,-0.5556,-0.9239,0.0,-0.3827,-0.9239,0.0,-0.3827,-0.9063,-0.1939,-0.3754,-0.8157,-0.1939,-0.545,-0.6937,-0.1939,-0.6937,-0.7071,0.0,-0.7071,-0.8315,0.0,-0.5556,-0.8315,0.0,-0.5556,-0.8157,-0.1939,-0.545,-0.6937,-0.1939,-0.6937,-0.545,-0.1939,-0.8157,-0.5556,0.0,-0.8315,-0.7071,0.0,-0.7071,-0.7071,0.0,-0.7071,-0.6937,-0.1939,-0.6937,-0.545,-0.1939,-0.8157,-0.3754,-0.1939,-0.9063,-0.3827,0.0,-0.9239,-0.5556,0.0,-0.8315,-0.5556,0.0,-0.8315,-0.545,-0.1939,-0.8157,-0.3754,-0.1939,-0.9063,-0.1914,-0.1939,-0.9622,-0.1951,0.0,-0.9808,-0.3827,0.0,-0.9239,-0.3827,0.0,-0.9239,-0.3754,-0.1939,-0.9063,-0.1914,-0.1939,-0.9622,-0.0962,-0.193,-0.9765,-0.098,0.0,-0.9952,-0.1951,0.0,-0.9808,-0.1951,0.0,-0.9808,-0.1914,-0.1939,-0.9622,-0.0962,-0.193,-0.9765,-0.1804,-0.3805,0.907,-0.1914,-0.1939,0.9622,-0.0962,-0.193,0.9765,-0.0962,-0.193,0.9765,-0.0907,-0.379,0.921,-0.1804,-0.3805,0.907,-0.3539,-0.3805,0.8544,-0.3754,-0.1939,0.9063,-0.1914,-0.1939,0.9622,-0.1914,-0.1939,0.9622,-0.1804,-0.3805,0.907,-0.3539,-0.3805,0.8544,-0.5138,-0.3805,0.7689,-0.545,-0.1939,0.8157,-0.3754,-0.1939,0.9063,-0.3754,-0.1939,0.9063,-0.3539,-0.3805,0.8544,-0.5138,-0.3805,0.7689,-0.6539,-0.3805,0.6539,-0.6937,-0.1939,0.6937,-0.545,-0.1939,0.8157,-0.545,-0.1939,0.8157,-0.5138,-0.3805,0.7689,-0.6539,-0.3805,0.6539,-0.7689,-0.3805,0.5138,-0.8157,-0.1939,0.545,-0.6937,-0.1939,0.6937,-0.6937,-0.1939,0.6937,-0.6539,-0.3805,0.6539,-0.7689,-0.3805,0.5138,-0.8544,-0.3805,0.3539,-0.9063,-0.1939,0.3754,-0.8157,-0.1939,0.545,-0.8157,-0.1939,0.545,-0.7689,-0.3805,0.5138,-0.8544,-0.3805,0.3539,-0.907,-0.3805,0.1804,-0.9622,-0.1939,0.1914,-0.9063,-0.1939,0.3754,-0.9063,-0.1939,0.3754,-0.8544,-0.3805,0.3539,-0.907,-0.3805,0.1804,-0.9248,-0.3805,0.0,-0.981,-0.1939,0.0,-0.9622,-0.1939,0.1914,-0.9622,-0.1939,0.1914,-0.907,-0.3805,0.1804,-0.9248,-0.3805,0.0,-0.907,-0.3805,-0.1804,-0.9622,-0.1939,-0.1914,-0.981,-0.1939,0.0,-0.981,-0.1939,0.0,-0.9248,-0.3805,0.0,-0.907,-0.3805,-0.1804,-0.8544,-0.3805,-0.3539,-0.9063,-0.1939,-0.3754,-0.9622,-0.1939,-0.1914,-0.9622,-0.1939,-0.1914,-0.907,-0.3805,-0.1804,-0.8544,-0.3805,-0.3539,-0.7689,-0.3805,-0.5138,-0.8157,-0.1939,-0.545,-0.9063,-0.1939,-0.3754,-0.9063,-0.1939,-0.3754,-0.8544,-0.3805,-0.3539,-0.7689,-0.3805,-0.5138,-0.6539,-0.3805,-0.6539,-0.6937,-0.1939,-0.6937,-0.8157,-0.1939,-0.545,-0.8157,-0.1939,-0.545,-0.7689,-0.3805,-0.5138,-0.6539,-0.3805,-0.6539,-0.5138,-0.3805,-0.7689,-0.545,-0.1939,-0.8157,-0.6937,-0.1939,-0.6937,-0.6937,-0.1939,-0.6937,-0.6539,-0.3805,-0.6539,-0.5138,-0.3805,-0.7689,-0.3539,-0.3805,-0.8544,-0.3754,-0.1939,-0.9063,-0.545,-0.1939,-0.8157,-0.545,-0.1939,-0.8157,-0.5138,-0.3805,-0.7689,-0.3539,-0.3805,-0.8544,-0.1804,-0.3805,-0.907,-0.1914,-0.1939,-0.9622,-0.3754,-0.1939,-0.9063,-0.3754,-0.1939,-0.9063,-0.3539,-0.3805,-0.8544,-0.1804,-0.3805,-0.907,-0.0907,-0.379,-0.921,-0.0962,-0.193,-0.9765,-0.1914,-0.1939,-0.9622,-0.1914,-0.1939,-0.9622,-0.1804,-0.3805,-0.907,-0.0907,-0.379,-0.921,-0.1626,-0.5528,0.8173,-0.1804,-0.3805,0.907,-0.0907,-0.379,0.921,-0.0907,-0.379,0.921,-0.0818,-0.5509,0.8305,-0.1626,-0.5528,0.8173,-0.3189,-0.5528,0.7699,-0.3539,-0.3805,0.8544,-0.1804,-0.3805,0.907,-0.1804,-0.3805,0.907,-0.1626,-0.5528,0.8173,-0.3189,-0.5528,0.7699,-0.463,-0.5528,0.6929,-0.5138,-0.3805,0.7689,-0.3539,-0.3805,0.8544,-0.3539,-0.3805,0.8544,-0.3189,-0.5528,0.7699,-0.463,-0.5528,0.6929,-0.5893,-0.5528,0.5893,-0.6539,-0.3805,0.6539,-0.5138,-0.3805,0.7689,-0.5138,-0.3805,0.7689,-0.463,-0.5528,0.6929,-0.5893,-0.5528,0.5893,-0.6929,-0.5528,0.463,-0.7689,-0.3805,0.5138,-0.6539,-0.3805,0.6539,-0.6539,-0.3805,0.6539,-0.5893,-0.5528,0.5893,-0.6929,-0.5528,0.463,-0.7699,-0.5528,0.3189,-0.8544,-0.3805,0.3539,-0.7689,-0.3805,0.5138,-0.7689,-0.3805,0.5138,-0.6929,-0.5528,0.463,-0.7699,-0.5528,0.3189,-0.8173,-0.5528,0.1626,-0.907,-0.3805,0.1804,-0.8544,-0.3805,0.3539,-0.8544,-0.3805,0.3539,-0.7699,-0.5528,0.3189,-0.8173,-0.5528,0.1626,-0.8333,-0.5528,0.0,-0.9248,-0.3805,0.0,-0.907,-0.3805,0.1804,-0.907,-0.3805,0.1804,-0.8173,-0.5528,0.1626,-0.8333,-0.5528,0.0,-0.8173,-0.5528,-0.1626,-0.907,-0.3805,-0.1804,-0.9248,-0.3805,0.0,-0.9248,-0.3805,0.0,-0.8333,-0.5528,0.0,-0.8173,-0.5528,-0.1626,-0.7699,-0.5528,-0.3189,-0.8544,-0.3805,-0.3539,-0.907,-0.3805,-0.1804,-0.907,-0.3805,-0.1804,-0.8173,-0.5528,-0.1626,-0.7699,-0.5528,-0.3189,-0.6929,-0.5528,-0.463,-0.7689,-0.3805,-0.5138,-0.8544,-0.3805,-0.3539,-0.8544,-0.3805,-0.3539,-0.7699,-0.5528,-0.3189,-0.6929,-0.5528,-0.463,-0.5893,-0.5528,-0.5893,-0.6539,-0.3805,-0.6539,-0.7689,-0.3805,-0.5138,-0.7689,-0.3805,-0.5138,-0.6929,-0.5528,-0.463,-0.5893,-0.5528,-0.5893,-0.463,-0.5528,-0.6929,-0.5138,-0.3805,-0.7689,-0.6539,-0.3805,-0.6539,-0.6539,-0.3805,-0.6539,-0.5893,-0.5528,-0.5893,-0.463,-0.5528,-0.6929,-0.3189,-0.5528,-0.7699,-0.3539,-0.3805,-0.8544,-0.5138,-0.3805,-0.7689,-0.5138,-0.3805,-0.7689,-0.463,-0.5528,-0.6929,-0.3189,-0.5528,-0.7699,-0.1626,-0.5528,-0.8173,-0.1804,-0.3805,-0.907,-0.3539,-0.3805,-0.8544,-0.3539,-0.3805,-0.8544,-0.3189,-0.5528,-0.7699,-0.1626,-0.5528,-0.8173,-0.0818,-0.5509,-0.8305,-0.0907,-0.379,-0.921,-0.1804,-0.3805,-0.907,-0.1804,-0.3805,-0.907,-0.1626,-0.5528,-0.8173,-0.0818,-0.5509,-0.8305,-0.1385,-0.7041,0.6965,-0.1626,-0.5528,0.8173,-0.0818,-0.5509,0.8305,-0.0818,-0.5509,0.8305,-0.0698,-0.7023,0.7084,-0.1385,-0.7041,0.6965,-0.2718,-0.7041,0.6561,-0.3189,-0.5528,0.7699,-0.1626,-0.5528,0.8173,-0.1626,-0.5528,0.8173,-0.1385,-0.7041,0.6965,-0.2718,-0.7041,0.6561,-0.3945,-0.7041,0.5905,-0.463,-0.5528,0.6929,-0.3189,-0.5528,0.7699,-0.3189,-0.5528,0.7699,-0.2718,-0.7041,0.6561,-0.3945,-0.7041,0.5905,-0.5021,-0.7041,0.5021,-0.5893,-0.5528,0.5893,-0.463,-0.5528,0.6929,-0.463,-0.5528,0.6929,-0.3945,-0.7041,0.5905,-0.5021,-0.7041,0.5021,-0.5905,-0.7041,0.3945,-0.6929,-0.5528,0.463,-0.5893,-0.5528,0.5893,-0.5893,-0.5528,0.5893,-0.5021,-0.7041,0.5021,-0.5905,-0.7041,0.3945,-0.6561,-0.7041,0.2718,-0.7699,-0.5528,0.3189,-0.6929,-0.5528,0.463,-0.6929,-0.5528,0.463,-0.5905,-0.7041,0.3945,-0.6561,-0.7041,0.2718,-0.6965,-0.7041,0.1385,-0.8173,-0.5528,0.1626,-0.7699,-0.5528,0.3189,-0.7699,-0.5528,0.3189,-0.6561,-0.7041,0.2718,-0.6965,-0.7041,0.1385,-0.7101,-0.7041,0.0,-0.8333,-0.5528,0.0,-0.8173,-0.5528,0.1626,-0.8173,-0.5528,0.1626,-0.6965,-0.7041,0.1385,-0.7101,-0.7041,0.0,-0.6965,-0.7041,-0.1385,-0.8173,-0.5528,-0.1626,-0.8333,-0.5528,0.0,-0.8333,-0.5528,0.0,-0.7101,-0.7041,0.0,-0.6965,-0.7041,-0.1385,-0.6561,-0.7041,-0.2718,-0.7699,-0.5528,-0.3189,-0.8173,-0.5528,-0.1626,-0.8173,-0.5528,-0.1626,-0.6965,-0.7041,-0.1385,-0.6561,-0.7041,-0.2718,-0.5905,-0.7041,-0.3945,-0.6929,-0.5528,-0.463,-0.7699,-0.5528,-0.3189,-0.7699,-0.5528,-0.3189,-0.6561,-0.7041,-0.2718,-0.5905,-0.7041,-0.3945,-0.5021,-0.7041,-0.5021,-0.5893,-0.5528,-0.5893,-0.6929,-0.5528,-0.463,-0.6929,-0.5528,-0.463,-0.5905,-0.7041,-0.3945,-0.5021,-0.7041,-0.5021,-0.3945,-0.7041,-0.5905,-0.463,-0.5528,-0.6929,-0.5893,-0.5528,-0.5893,-0.5893,-0.5528,-0.5893,-0.5021,-0.7041,-0.5021,-0.3945,-0.7041,-0.5905,-0.2718,-0.7041,-0.6561,-0.3189,-0.5528,-0.7699,-0.463,-0.5528,-0.6929,-0.463,-0.5528,-0.6929,-0.3945,-0.7041,-0.5905,-0.2718,-0.7041,-0.6561,-0.1385,-0.7041,-0.6965,-0.1626,-0.5528,-0.8173,-0.3189,-0.5528,-0.7699,-0.3189,-0.5528,-0.7699,-0.2718,-0.7041,-0.6561,-0.1385,-0.7041,-0.6965,-0.0698,-0.7023,-0.7084,-0.0818,-0.5509,-0.8305,-0.1626,-0.5528,-0.8173,-0.1626,-0.5528,-0.8173,-0.1385,-0.7041,-0.6965,-0.0698,-0.7023,-0.7084,-0.1092,-0.8286,0.549,-0.1385,-0.7041,0.6965,-0.0698,-0.7023,0.7084,-0.0698,-0.7023,0.7084,-0.055,-0.8274,0.5589,-0.1092,-0.8286,0.549,-0.2142,-0.8286,0.5172,-0.2718,-0.7041,0.6561,-0.1385,-0.7041,0.6965,-0.1385,-0.7041,0.6965,-0.1092,-0.8286,0.549,-0.2142,-0.8286,0.5172,-0.311,-0.8286,0.4654,-0.3945,-0.7041,0.5905,-0.2718,-0.7041,0.6561,-0.2718,-0.7041,0.6561,-0.2142,-0.8286,0.5172,-0.311,-0.8286,0.4654,-0.3958,-0.8286,0.3958,-0.5021,-0.7041,0.5021,-0.3945,-0.7041,0.5905,-0.3945,-0.7041,0.5905,-0.311,-0.8286,0.4654,-0.3958,-0.8286,0.3958,-0.4654,-0.8286,0.311,-0.5905,-0.7041,0.3945,-0.5021,-0.7041,0.5021,-0.5021,-0.7041,0.5021,-0.3958,-0.8286,0.3958,-0.4654,-0.8286,0.311,-0.5172,-0.8286,0.2142,-0.6561,-0.7041,0.2718,-0.5905,-0.7041,0.3945,-0.5905,-0.7041,0.3945,-0.4654,-0.8286,0.311,-0.5172,-0.8286,0.2142,-0.549,-0.8286,0.1092,-0.6965,-0.7041,0.1385,-0.6561,-0.7041,0.2718,-0.6561,-0.7041,0.2718,-0.5172,-0.8286,0.2142,-0.549,-0.8286,0.1092,-0.5598,-0.8286,0.0,-0.7101,-0.7041,0.0,-0.6965,-0.7041,0.1385,-0.6965,-0.7041,0.1385,-0.549,-0.8286,0.1092,-0.5598,-0.8286,0.0,-0.549,-0.8286,-0.1092,-0.6965,-0.7041,-0.1385,-0.7101,-0.7041,0.0,-0.7101,-0.7041,0.0,-0.5598,-0.8286,0.0,-0.549,-0.8286,-0.1092,-0.5172,-0.8286,-0.2142,-0.6561,-0.7041,-0.2718,-0.6965,-0.7041,-0.1385,-0.6965,-0.7041,-0.1385,-0.549,-0.8286,-0.1092,-0.5172,-0.8286,-0.2142,-0.4654,-0.8286,-0.311,-0.5905,-0.7041,-0.3945,-0.6561,-0.7041,-0.2718,-0.6561,-0.7041,-0.2718,-0.5172,-0.8286,-0.2142,-0.4654,-0.8286,-0.311,-0.3958,-0.8286,-0.3958,-0.5021,-0.7041,-0.5021,-0.5905,-0.7041,-0.3945,-0.5905,-0.7041,-0.3945,-0.4654,-0.8286,-0.311,-0.3958,-0.8286,-0.3958,-0.311,-0.8286,-0.4654,-0.3945,-0.7041,-0.5905,-0.5021,-0.7041,-0.5021,-0.5021,-0.7041,-0.5021,-0.3958,-0.8286,-0.3958,-0.311,-0.8286,-0.4654,-0.2142,-0.8286,-0.5172,-0.2718,-0.7041,-0.6561,-0.3945,-0.7041,-0.5905,-0.3945,-0.7041,-0.5905,-0.311,-0.8286,-0.4654,-0.2142,-0.8286,-0.5172,-0.1092,-0.8286,-0.549,-0.1385,-0.7041,-0.6965,-0.2718,-0.7041,-0.6561,-0.2718,-0.7041,-0.6561,-0.2142,-0.8286,-0.5172,-0.1092,-0.8286,-0.549,-0.055,-0.8274,-0.5589,-0.0698,-0.7023,-0.7084,-0.1385,-0.7041,-0.6965,-0.1385,-0.7041,-0.6965,-0.1092,-0.8286,-0.549,-0.055,-0.8274,-0.5589,-0.0757,-0.9217,0.3804,-0.1092,-0.8286,0.549,-0.055,-0.8274,0.5589,-0.055,-0.8274,0.5589,-0.0382,-0.921,0.3876,-0.0757,-0.9217,0.3804,-0.1484,-0.9217,0.3584,-0.2142,-0.8286,0.5172,-0.1092,-0.8286,0.549,-0.1092,-0.8286,0.549,-0.0757,-0.9217,0.3804,-0.1484,-0.9217,0.3584,-0.2155,-0.9217,0.3225,-0.311,-0.8286,0.4654,-0.2142,-0.8286,0.5172,-0.2142,-0.8286,0.5172,-0.1484,-0.9217,0.3584,-0.2155,-0.9217,0.3225,-0.2743,-0.9217,0.2743,-0.3958,-0.8286,0.3958,-0.311,-0.8286,0.4654,-0.311,-0.8286,0.4654,-0.2155,-0.9217,0.3225,-0.2743,-0.9217,0.2743,-0.3225,-0.9217,0.2155,-0.4654,-0.8286,0.311,-0.3958,-0.8286,0.3958,-0.3958,-0.8286,0.3958,-0.2743,-0.9217,0.2743,-0.3225,-0.9217,0.2155,-0.3584,-0.9217,0.1484,-0.5172,-0.8286,0.2142,-0.4654,-0.8286,0.311,-0.4654,-0.8286,0.311,-0.3225,-0.9217,0.2155,-0.3584,-0.9217,0.1484,-0.3804,-0.9217,0.0757,-0.549,-0.8286,0.1092,-0.5172,-0.8286,0.2142,-0.5172,-0.8286,0.2142,-0.3584,-0.9217,0.1484,-0.3804,-0.9217,0.0757,-0.3879,-0.9217,0.0,-0.5598,-0.8286,0.0,-0.549,-0.8286,0.1092,-0.549,-0.8286,0.1092,-0.3804,-0.9217,0.0757,-0.3879,-0.9217,0.0,-0.3804,-0.9217,-0.0757,-0.549,-0.8286,-0.1092,-0.5598,-0.8286,0.0,-0.5598,-0.8286,0.0,-0.3879,-0.9217,0.0,-0.3804,-0.9217,-0.0757,-0.3584,-0.9217,-0.1484,-0.5172,-0.8286,-0.2142,-0.549,-0.8286,-0.1092,-0.549,-0.8286,-0.1092,-0.3804,-0.9217,-0.0757,-0.3584,-0.9217,-0.1484,-0.3225,-0.9217,-0.2155,-0.4654,-0.8286,-0.311,-0.5172,-0.8286,-0.2142,-0.5172,-0.8286,-0.2142,-0.3584,-0.9217,-0.1484,-0.3225,-0.9217,-0.2155,-0.2743,-0.9217,-0.2743,-0.3958,-0.8286,-0.3958,-0.4654,-0.8286,-0.311,-0.4654,-0.8286,-0.311,-0.3225,-0.9217,-0.2155,-0.2743,-0.9217,-0.2743,-0.2155,-0.9217,-0.3225,-0.311,-0.8286,-0.4654,-0.3958,-0.8286,-0.3958,-0.3958,-0.8286,-0.3958,-0.2743,-0.9217,-0.2743,-0.2155,-0.9217,-0.3225,-0.1484,-0.9217,-0.3584,-0.2142,-0.8286,-0.5172,-0.311,-0.8286,-0.4654,-0.311,-0.8286,-0.4654,-0.2155,-0.9217,-0.3225,-0.1484,-0.9217,-0.3584,-0.0757,-0.9217,-0.3804,-0.1092,-0.8286,-0.549,-0.2142,-0.8286,-0.5172,-0.2142,-0.8286,-0.5172,-0.1484,-0.9217,-0.3584,-0.0757,-0.9217,-0.3804,-0.0382,-0.921,-0.3876,-0.055,-0.8274,-0.5589,-0.1092,-0.8286,-0.549,-0.1092,-0.8286,-0.549,-0.0757,-0.9217,-0.3804,-0.0382,-0.921,-0.3876,-0.0392,-0.9796,0.1971,-0.0757,-0.9217,0.3804,-0.0382,-0.921,0.3876,-0.0382,-0.921,0.3876,-0.0198,-0.9794,0.2009,-0.0392,-0.9796,0.1971,-0.0769,-0.9796,0.1857,-0.1484,-0.9217,0.3584,-0.0757,-0.9217,0.3804,-0.0757,-0.9217,0.3804,-0.0392,-0.9796,0.1971,-0.0769,-0.9796,0.1857,-0.1117,-0.9796,0.1671,-0.2155,-0.9217,0.3225,-0.1484,-0.9217,0.3584,-0.1484,-0.9217,0.3584,-0.0769,-0.9796,0.1857,-0.1117,-0.9796,0.1671,-0.1421,-0.9796,0.1421,-0.2743,-0.9217,0.2743,-0.2155,-0.9217,0.3225,-0.2155,-0.9217,0.3225,-0.1117,-0.9796,0.1671,-0.1421,-0.9796,0.1421,-0.1671,-0.9796,0.1117,-0.3225,-0.9217,0.2155,-0.2743,-0.9217,0.2743,-0.2743,-0.9217,0.2743,-0.1421,-0.9796,0.1421,-0.1671,-0.9796,0.1117,-0.1857,-0.9796,0.0769,-0.3584,-0.9217,0.1484,-0.3225,-0.9217,0.2155,-0.3225,-0.9217,0.2155,-0.1671,-0.9796,0.1117,-0.1857,-0.9796,0.0769,-0.1971,-0.9796,0.0392,-0.3804,-0.9217,0.0757,-0.3584,-0.9217,0.1484,-0.3584,-0.9217,0.1484,-0.1857,-0.9796,0.0769,-0.1971,-0.9796,0.0392,-0.201,-0.9796,0.0,-0.3879,-0.9217,0.0,-0.3804,-0.9217,0.0757,-0.3804,-0.9217,0.0757,-0.1971,-0.9796,0.0392,-0.201,-0.9796,0.0,-0.1971,-0.9796,-0.0392,-0.3804,-0.9217,-0.0757,-0.3879,-0.9217,0.0,-0.3879,-0.9217,0.0,-0.201,-0.9796,0.0,-0.1971,-0.9796,-0.0392,-0.1857,-0.9796,-0.0769,-0.3584,-0.9217,-0.1484,-0.3804,-0.9217,-0.0757,-0.3804,-0.9217,-0.0757,-0.1971,-0.9796,-0.0392,-0.1857,-0.9796,-0.0769,-0.1671,-0.9796,-0.1117,-0.3225,-0.9217,-0.2155,-0.3584,-0.9217,-0.1484,-0.3584,-0.9217,-0.1484,-0.1857,-0.9796,-0.0769,-0.1671,-0.9796,-0.1117,-0.1421,-0.9796,-0.1421,-0.2743,-0.9217,-0.2743,-0.3225,-0.9217,-0.2155,-0.3225,-0.9217,-0.2155,-0.1671,-0.9796,-0.1117,-0.1421,-0.9796,-0.1421,-0.1117,-0.9796,-0.1671,-0.2155,-0.9217,-0.3225,-0.2743,-0.9217,-0.2743,-0.2743,-0.9217,-0.2743,-0.1421,-0.9796,-0.1421,-0.1117,-0.9796,-0.1671,-0.0769,-0.9796,-0.1857,-0.1484,-0.9217,-0.3584,-0.2155,-0.9217,-0.3225,-0.2155,-0.9217,-0.3225,-0.1117,-0.9796,-0.1671,-0.0769,-0.9796,-0.1857,-0.0392,-0.9796,-0.1971,-0.0757,-0.9217,-0.3804,-0.1484,-0.9217,-0.3584,-0.1484,-0.9217,-0.3584,-0.0769,-0.9796,-0.1857,-0.0392,-0.9796,-0.1971,-0.0198,-0.9794,-0.2009,-0.0382,-0.921,-0.3876,-0.0757,-0.9217,-0.3804,-0.0757,-0.9217,-0.3804,-0.0392,-0.9796,-0.1971,-0.0198,-0.9794,-0.2009,-0.063,-0.998,0.0,-0.0392,-0.9796,0.1971,-0.0198,-0.9794,0.2009,-0.063,-0.998,0.0,-0.0769,-0.9796,0.1857,-0.0392,-0.9796,0.1971,-0.063,-0.998,0.0,-0.1117,-0.9796,0.1671,-0.0769,-0.9796,0.1857,-0.063,-0.998,0.0,-0.1421,-0.9796,0.1421,-0.1117,-0.9796,0.1671,-0.063,-0.998,0.0,-0.1671,-0.9796,0.1117,-0.1421,-0.9796,0.1421,-0.063,-0.998,0.0,-0.1857,-0.9796,0.0769,-0.1671,-0.9796,0.1117,-0.063,-0.998,0.0,-0.1971,-0.9796,0.0392,-0.1857,-0.9796,0.0769,-0.063,-0.998,0.0,-0.201,-0.9796,0.0,-0.1971,-0.9796,0.0392,-0.063,-0.998,0.0,-0.1971,-0.9796,-0.0392,-0.201,-0.9796,0.0,-0.063,-0.998,0.0,-0.1857,-0.9796,-0.0769,-0.1971,-0.9796,-0.0392,-0.063,-0.998,0.0,-0.1671,-0.9796,-0.1117,-0.1857,-0.9796,-0.0769,-0.063,-0.998,0.0,-0.1421,-0.9796,-0.1421,-0.1671,-0.9796,-0.1117,-0.063,-0.998,0.0,-0.1117,-0.9796,-0.1671,-0.1421,-0.9796,-0.1421,-0.063,-0.998,0.0,-0.0769,-0.9796,-0.1857,-0.1117,-0.9796,-0.1671,-0.063,-0.998,0.0,-0.0392,-0.9796,-0.1971,-0.0769,-0.9796,-0.1857,-0.063,-0.998,0.0,-0.0198,-0.9794,-0.2009,-0.0392,-0.9796,-0.1971],"tangents":null,"uvs":[0.0,2.0,0.0,1.9375,0.0312,1.9375,0.0312,2.0,0.0312,1.9375,0.0625,1.9375,0.0625,2.0,0.0625,1.9375,0.0938,1.9375,0.0938,2.0,0.0938,1.9375,0.125,1.9375,0.125,2.0,0.125,1.9375,0.1562,1.9375,0.1562,2.0,0.1562,1.9375,0.1875,1.9375,0.1875,2.0,0.1875,1.9375,0.2187,1.9375,0.2187,2.0,0.2187,1.9375,0.25,1.9375,0.25,2.0,0.25,1.9375,0.2812,1.9375,0.2812,2.0,0.2812,1.9375,0.3125,1.9375,0.3125,2.0,0.3125,1.9375,0.3437,1.9375,0.3437,2.0,0.3437,1.9375,0.375,1.9375,0.375,2.0,0.375,1.9375,0.4062,1.9375,0.4062,2.0,0.4062,1.9375,0.4375,1.9375,0.4375,2.0,0.4375,1.9375,0.4688,1.9375,0.4688,2.0,0.4688,1.9375,0.5,1.9375,0.0312,1.875,0.0312,1.9375,0.0,1.9375,0.0,1.9375,0.0,1.875,0.0312,1.875,0.0625,1.875,0.0625,1.9375,0.0312,1.9375,0.0312,1.9375,0.0312,1.875,0.0625,1.875,0.0938,1.875,0.0938,1.9375,0.0625,1.9375,0.0625,1.9375,0.0625,1.875,0.0938,1.875,0.125,1.875,0.125,1.9375,0.0938,1.9375,0.0938,1.9375,0.0938,1.875,0.125,1.875,0.1562,1.875,0.1562,1.9375,0.125,1.9375,0.125,1.9375,0.125,1.875,0.1562,1.875,0.1875,1.875,0.1875,1.9375,0.1562,1.9375,0.1562,1.9375,0.1562,1.875,0.1875,1.875,0.2187,1.875,0.2187,1.9375,0.1875,1.9375,0.1875,1.9375,0.1875,1.875,0.2187,1.875,0.25,1.875,0.25,1.9375,0.2187,1.9375,0.2187,1.9375,0.2187,1.875,0.25,1.875,0.2812,1.875,0.2812,1.9375,0.25,1.9375,0.25,1.9375,0.25,1.875,0.2812,1.875,0.3125,1.875,0.3125,1.9375,0.2812,1.9375,0.2812,1.9375,0.2812,1.875,0.3125,1.875,0.3437,1.875,0.3437,1.9375,0.3125,1.9375,0.3125,1.9375,0.3125,1.875,0.3437,1.875,0.375,1.875,0.375,1.9375,0.3437,1.9375,0.3437,1.9375,0.3437,1.875,0.375,1.875,0.4062,1.875,0.4062,1.9375,0.375,1.9375,0.375,1.9375,0.375,1.875,0.4062,1.875,0.4375,1.875,0.4375,1.9375,0.4062,1.9375,0.4062,1.9375,0.4062,1.875,0.4375,1.875,0.4688,1.875,0.4688,1.9375,0.4375,1.9375,0.4375,1.9375,0.4375,1.875,0.4688,1.875,0.5,1.875,0.5,1.9375,0.4688,1.9375,0.4688,1.9375,0.4688,1.875,0.5,1.875,0.0312,1.8125,0.0312,1.875,0.0,1.875,0.0,1.875,0.0,1.8125,0.0312,1.8125,0.0625,1.8125,0.0625,1.875,0.0312,1.875,0.0312,1.875,0.0312,1.8125,0.0625,1.8125,0.0938,1.8125,0.0938,1.875,0.0625,1.875,0.0625,1.875,0.0625,1.8125,0.0938,1.8125,0.125,1.8125,0.125,1.875,0.0938,1.875,0.0938,1.875,0.0938,1.8125,0.125,1.8125,0.1562,1.8125,0.1562,1.875,0.125,1.875,0.125,1.875,0.125,1.8125,0.1562,1.8125,0.1875,1.8125,0.1875,1.875,0.1562,1.875,0.1562,1.875,0.1562,1.8125,0.1875,1.8125,0.2187,1.8125,0.2187,1.875,0.1875,1.875,0.1875,1.875,0.1875,1.8125,0.2187,1.8125,0.25,1.8125,0.25,1.875,0.2187,1.875,0.2187,1.875,0.2187,1.8125,0.25,1.8125,0.2812,1.8125,0.2812,1.875,0.25,1.875,0.25,1.875,0.25,1.8125,0.2812,1.8125,0.3125,1.8125,0.3125,1.875,0.2812,1.875,0.2812,1.875,0.2812,1.8125,0.3125,1.8125,0.3437,1.8125,0.3437,1.875,0.3125,1.875,0.3125,1.875,0.3125,1.8125,0.3437,1.8125,0.375,1.8125,0.375,1.875,0.3437,1.875,0.3437,1.875,0.3437,1.8125,0.375,1.8125,0.4062,1.8125,0.4062,1.875,0.375,1.875,0.375,1.875,0.375,1.8125,0.4062,1.8125,0.4375,1.8125,0.4375,1.875,0.4062,1.875,0.4062,1.875,0.4062,1.8125,0.4375,1.8125,0.4688,1.8125,0.4688,1.875,0.4375,1.875,0.4375,1.875,0.4375,1.8125,0.4688,1.8125,0.5,1.8125,0.5,1.875,0.4688,1.875,0.4688,1.875,0.4688,1.8125,0.5,1.8125,0.0312,1.75,0.0312,1.8125,0.0,1.8125,0.0,1.8125,0.0,1.75,0.0312,1.75,0.0625,1.75,0.0625,1.8125,0.0312,1.8125,0.0312,1.8125,0.0312,1.75,0.0625,1.75,0.0938,1.75,0.0938,1.8125,0.0625,1.8125,0.0625,1.8125,0.0625,1.75,0.0938,1.75,0.125,1.75,0.125,1.8125,0.0938,1.8125,0.0938,1.8125,0.0938,1.75,0.125,1.75,0.1562,1.75,0.1562,1.8125,0.125,1.8125,0.125,1.8125,0.125,1.75,0.1562,1.75,0.1875,1.75,0.1875,1.8125,0.1562,1.8125,0.1562,1.8125,0.1562,1.75,0.1875,1.75,0.2187,1.75,0.2187,1.8125,0.1875,1.8125,0.1875,1.8125,0.1875,1.75,0.2187,1.75,0.25,1.75,0.25,1.8125,0.2187,1.8125,0.2187,1.8125,0.2187,1.75,0.25,1.75,0.2812,1.75,0.2812,1.8125,0.25,1.8125,0.25,1.8125,0.25,1.75,0.2812,1.75,0.3125,1.75,0.3125,1.8125,0.2812,1.8125,0.2812,1.8125,0.2812,1.75,0.3125,1.75,0.3437,1.75,0.3437,1.8125,0.3125,1.8125,0.3125,1.8125,0.3125,1.75,0.3437,1.75,0.375,1.75,0.375,1.8125,0.3437,1.8125,0.3437,1.8125,0.3437,1.75,0.375,1.75,0.4062,1.75,0.4062,1.8125,0.375,1.8125,0.375,1.8125,0.375,1.75,0.4062,1.75,0.4375,1.75,0.4375,1.8125,0.4062,1.8125,0.4062,1.8125,0.4062,1.75,0.4375,1.75,0.4688,1.75,0.4688,1.8125,0.4375,1.8125,0.4375,1.8125,0.4375,1.75,0.4688,1.75,0.5,1.75,0.5,1.8125,0.4688,1.8125,0.4688,1.8125,0.4688,1.75,0.5,1.75,0.0312,1.6875,0.0312,1.75,0.0,1.75,0.0,1.75,0.0,1.6875,0.0312,1.6875,0.0625,1.6875,0.0625,1.75,0.0312,1.75,0.0312,1.75,0.0312,1.6875,0.0625,1.6875,0.0938,1.6875,0.0938,1.75,0.0625,1.75,0.0625,1.75,0.0625,1.6875,0.0938,1.6875,0.125,1.6875,0.125,1.75,0.0938,1.75,0.0938,1.75,0.0938,1.6875,0.125,1.6875,0.1562,1.6875,0.1562,1.75,0.125,1.75,0.125,1.75,0.125,1.6875,0.1562,1.6875,0.1875,1.6875,0.1875,1.75,0.1562,1.75,0.1562,1.75,0.1562,1.6875,0.1875,1.6875,0.2187,1.6875,0.2187,1.75,0.1875,1.75,0.1875,1.75,0.1875,1.6875,0.2187,1.6875,0.25,1.6875,0.25,1.75,0.2187,1.75,0.2187,1.75,0.2187,1.6875,0.25,1.6875,0.2812,1.6875,0.2812,1.75,0.25,1.75,0.25,1.75,0.25,1.6875,0.2812,1.6875,0.3125,1.6875,0.3125,1.75,0.2812,1.75,0.2812,1.75,0.2812,1.6875,0.3125,1.6875,0.3437,1.6875,0.3437,1.75,0.3125,1.75,0.3125,1.75,0.3125,1.6875,0.3437,1.6875,0.375,1.6875,0.375,1.75,0.3437,1.75,0.3437,1.75,0.3437,1.6875,0.375,1.6875,0.4062,1.6875,0.4062,1.75,0.375,1.75,0.375,1.75,0.375,1.6875,0.4062,1.6875,0.4375,1.6875,0.4375,1.75,0.4062,1.75,0.4062,1.75,0.4062,1.6875,0.4375,1.6875,0.4688,1.6875,0.4688,1.75,0.4375,1.75,0.4375,1.75,0.4375,1.6875,0.4688,1.6875,0.5,1.6875,0.5,1.75,0.4688,1.75,0.4688,1.75,0.4688,1.6875,0.5,1.6875,0.0312,1.625,0.0312,1.6875,0.0,1.6875,0.0,1.6875,0.0,1.625,0.0312,1.625,0.0625,1.625,0.0625,1.6875,0.0312,1.6875,0.0312,1.6875,0.0312,1.625,0.0625,1.625,0.0938,1.625,0.0938,1.6875,0.0625,1.6875,0.0625,1.6875,0.0625,1.625,0.0938,1.625,0.125,1.625,0.125,1.6875,0.0938,1.6875,0.0938,1.6875,0.0938,1.625,0.125,1.625,0.1562,1.625,0.1562,1.6875,0.125,1.6875,0.125,1.6875,0.125,1.625,0.1562,1.625,0.1875,1.625,0.1875,1.6875,0.1562,1.6875,0.1562,1.6875,0.1562,1.625,0.1875,1.625,0.2187,1.625,0.2187,1.6875,0.1875,1.6875,0.1875,1.6875,0.1875,1.625,0.2187,1.625,0.25,1.625,0.25,1.6875,0.2187,1.6875,0.2187,1.6875,0.2187,1.625,0.25,1.625,0.2812,1.625,0.2812,1.6875,0.25,1.6875,0.25,1.6875,0.25,1.625,0.2812,1.625,0.3125,1.625,0.3125,1.6875,0.2812,1.6875,0.2812,1.6875,0.2812,1.625,0.3125,1.625,0.3437,1.625,0.3437,1.6875,0.3125,1.6875,0.3125,1.6875,0.3125,1.625,0.3437,1.625,0.375,1.625,0.375,1.6875,0.3437,1.6875,0.3437,1.6875,0.3437,1.625,0.375,1.625,0.4062,1.625,0.4062,1.6875,0.375,1.6875,0.375,1.6875,0.375,1.625,0.4062,1.625,0.4375,1.625,0.4375,1.6875,0.4062,1.6875,0.4062,1.6875,0.4062,1.625,0.4375,1.625,0.4688,1.625,0.4688,1.6875,0.4375,1.6875,0.4375,1.6875,0.4375,1.625,0.4688,1.625,0.5,1.625,0.5,1.6875,0.4688,1.6875,0.4688,1.6875,0.4688,1.625,0.5,1.625,0.0312,1.5625,0.0312,1.625,0.0,1.625,0.0,1.625,0.0,1.5625,0.0312,1.5625,0.0625,1.5625,0.0625,1.625,0.0312,1.625,0.0312,1.625,0.0312,1.5625,0.0625,1.5625,0.0938,1.5625,0.0938,1.625,0.0625,1.625,0.0625,1.625,0.0625,1.5625,0.0938,1.5625,0.125,1.5625,0.125,1.625,0.0938,1.625,0.0938,1.625,0.0938,1.5625,0.125,1.5625,0.1562,1.5625,0.1562,1.625,0.125,1.625,0.125,1.625,0.125,1.5625,0.1562,1.5625,0.1875,1.5625,0.1875,1.625,0.1562,1.625,0.1562,1.625,0.1562,1.5625,0.1875,1.5625,0.2187,1.5625,0.2187,1.625,0.1875,1.625,0.1875,1.625,0.1875,1.5625,0.2187,1.5625,0.25,1.5625,0.25,1.625,0.2187,1.625,0.2187,1.625,0.2187,1.5625,0.25,1.5625,0.2812,1.5625,0.2812,1.625,0.25,1.625,0.25,1.625,0.25,1.5625,0.2812,1.5625,0.3125,1.5625,0.3125,1.625,0.2812,1.625,0.2812,1.625,0.2812,1.5625,0.3125,1.5625,0.3437,1.5625,0.3437,1.625,0.3125,1.625,0.3125,1.625,0.3125,1.5625,0.3437,1.5625,0.375,1.5625,0.375,1.625,0.3437,1.625,0.3437,1.625,0.3437,1.5625,0.375,1.5625,0.4062,1.5625,0.4062,1.625,0.375,1.625,0.375,1.625,0.375,1.5625,0.4062,1.5625,0.4375,1.5625,0.4375,1.625,0.4062,1.625,0.4062,1.625,0.4062,1.5625,0.4375,1.5625,0.4688,1.5625,0.4688,1.625,0.4375,1.625,0.4375,1.625,0.4375,1.5625,0.4688,1.5625,0.5,1.5625,0.5,1.625,0.4688,1.625,0.4688,1.625,0.4688,1.5625,0.5,1.5625,0.0312,1.5,0.0312,1.5625,0.0,1.5625,0.0,1.5625,0.0,1.5,0.0312,1.5,0.0625,1.5,0.0625,1.5625,0.0312,1.5625,0.0312,1.5625,0.0312,1.5,0.0625,1.5,0.0938,1.5,0.0938,1.5625,0.0625,1.5625,0.0625,1.5625,0.0625,1.5,0.0938,1.5,0.125,1.5,0.125,1.5625,0.0938,1.5625,0.0938,1.5625,0.0938,1.5,0.125,1.5,0.1562,1.5,0.1562,1.5625,0.125,1.5625,0.125,1.5625,0.125,1.5,0.1562,1.5,0.1875,1.5,0.1875,1.5625,0.1562,1.5625,0.1562,1.5625,0.1562,1.5,0.1875,1.5,0.2187,1.5,0.2187,1.5625,0.1875,1.5625,0.1875,1.5625,0.1875,1.5,0.2187,1.5,0.25,1.5,0.25,1.5625,0.2187,1.5625,0.2187,1.5625,0.2187,1.5,0.25,1.5,0.2812,1.5,0.2812,1.5625,0.25,1.5625,0.25,1.5625,0.25,1.5,0.2812,1.5,0.3125,1.5,0.3125,1.5625,0.2812,1.5625,0.2812,1.5625,0.2812,1.5,0.3125,1.5,0.3437,1.5,0.3437,1.5625,0.3125,1.5625,0.3125,1.5625,0.3125,1.5,0.3437,1.5,0.375,1.5,0.375,1.5625,0.3437,1.5625,0.3437,1.5625,0.3437,1.5,0.375,1.5,0.4062,1.5,0.4062,1.5625,0.375,1.5625,0.375,1.5625,0.375,1.5,0.4062,1.5,0.4375,1.5,0.4375,1.5625,0.4062,1.5625,0.4062,1.5625,0.4062,1.5,0.4375,1.5,0.4688,1.5,0.4688,1.5625,0.4375,1.5625,0.4375,1.5625,0.4375,1.5,0.4688,1.5,0.5,1.5,0.5,1.5625,0.4688,1.5625,0.4688,1.5625,0.4688,1.5,0.5,1.5,0.0312,1.4375,0.0312,1.5,0.0,1.5,0.0,1.5,0.0,1.4375,0.0312,1.4375,0.0625,1.4375,0.0625,1.5,0.0312,1.5,0.0312,1.5,0.0312,1.4375,0.0625,1.4375,0.0938,1.4375,0.0938,1.5,0.0625,1.5,0.0625,1.5,0.0625,1.4375,0.0938,1.4375,0.125,1.4375,0.125,1.5,0.0938,1.5,0.0938,1.5,0.0938,1.4375,0.125,1.4375,0.1562,1.4375,0.1562,1.5,0.125,1.5,0.125,1.5,0.125,1.4375,0.1562,1.4375,0.1875,1.4375,0.1875,1.5,0.1562,1.5,0.1562,1.5,0.1562,1.4375,0.1875,1.4375,0.2187,1.4375,0.2187,1.5,0.1875,1.5,0.1875,1.5,0.1875,1.4375,0.2187,1.4375,0.25,1.4375,0.25,1.5,0.2187,1.5,0.2187,1.5,0.2187,1.4375,0.25,1.4375,0.2812,1.4375,0.2812,1.5,0.25,1.5,0.25,1.5,0.25,1.4375,0.2812,1.4375,0.3125,1.4375,0.3125,1.5,0.2812,1.5,0.2812,1.5,0.2812,1.4375,0.3125,1.4375,0.3437,1.4375,0.3437,1.5,0.3125,1.5,0.3125,1.5,0.3125,1.4375,0.3437,1.4375,0.375,1.4375,0.375,1.5,0.3437,1.5,0.3437,1.5,0.3437,1.4375,0.375,1.4375,0.4062,1.4375,0.4062,1.5,0.375,1.5,0.375,1.5,0.375,1.4375,0.4062,1.4375,0.4375,1.4375,0.4375,1.5,0.4062,1.5,0.4062,1.5,0.4062,1.4375,0.4375,1.4375,0.4688,1.4375,0.4688,1.5,0.4375,1.5,0.4375,1.5,0.4375,1.4375,0.4688,1.4375,0.5,1.4375,0.5,1.5,0.4688,1.5,0.4688,1.5,0.4688,1.4375,0.5,1.4375,0.0312,1.375,0.0312,1.4375,0.0,1.4375,0.0,1.4375,0.0,1.375,0.0312,1.375,0.0625,1.375,0.0625,1.4375,0.0312,1.4375,0.0312,1.4375,0.0312,1.375,0.0625,1.375,0.0938,1.375,0.0938,1.4375,0.0625,1.4375,0.0625,1.4375,0.0625,1.375,0.0938,1.375,0.125,1.375,0.125,1.4375,0.0938,1.4375,0.0938,1.4375,0.0938,1.375,0.125,1.375,0.1562,1.375,0.1562,1.4375,0.125,1.4375,0.125,1.4375,0.125,1.375,0.1562,1.375,0.1875,1.375,0.1875,1.4375,0.1562,1.4375,0.1562,1.4375,0.1562,1.375,0.1875,1.375,0.2187,1.375,0.2187,1.4375,0.1875,1.4375,0.1875,1.4375,0.1875,1.375,0.2187,1.375,0.25,1.375,0.25,1.4375,0.2187,1.4375,0.2187,1.4375,0.2187,1.375,0.25,1.375,0.2812,1.375,0.2812,1.4375,0.25,1.4375,0.25,1.4375,0.25,1.375,0.2812,1.375,0.3125,1.375,0.3125,1.4375,0.2812,1.4375,0.2812,1.4375,0.2812,1.375,0.3125,1.375,0.3437,1.375,0.3437,1.4375,0.3125,1.4375,0.3125,1.4375,0.3125,1.375,0.3437,1.375,0.375,1.375,0.375,1.4375,0.3437,1.4375,0.3437,1.4375,0.3437,1.375,0.375,1.375,0.4062,1.375,0.4062,1.4375,0.375,1.4375,0.375,1.4375,0.375,1.375,0.4062,1.375,0.4375,1.375,0.4375,1.4375,0.4062,1.4375,0.4062,1.4375,0.4062,1.375,0.4375,1.375,0.4688,1.375,0.4688,1.4375,0.4375,1.4375,0.4375,1.4375,0.4375,1.375,0.4688,1.375,0.5,1.375,0.5,1.4375,0.4688,1.4375,0.4688,1.4375,0.4688,1.375,0.5,1.375,0.0312,1.3125,0.0312,1.375,0.0,1.375,0.0,1.375,0.0,1.3125,0.0312,1.3125,0.0625,1.3125,0.0625,1.375,0.0312,1.375,0.0312,1.375,0.0312,1.3125,0.0625,1.3125,0.0938,1.3125,0.0938,1.375,0.0625,1.375,0.0625,1.375,0.0625,1.3125,0.0938,1.3125,0.125,1.3125,0.125,1.375,0.0938,1.375,0.0938,1.375,0.0938,1.3125,0.125,1.3125,0.1562,1.3125,0.1562,1.375,0.125,1.375,0.125,1.375,0.125,1.3125,0.1562,1.3125,0.1875,1.3125,0.1875,1.375,0.1562,1.375,0.1562,1.375,0.1562,1.3125,0.1875,1.3125,0.2187,1.3125,0.2187,1.375,0.1875,1.375,0.1875,1.375,0.1875,1.3125,0.2187,1.3125,0.25,1.3125,0.25,1.375,0.2187,1.375,0.2187,1.375,0.2187,1.3125,0.25,1.3125,0.2812,1.3125,0.2812,1.375,0.25,1.375,0.25,1.375,0.25,1.3125,0.2812,1.3125,0.3125,1.3125,0.3125,1.375,0.2812,1.375,0.2812,1.375,0.2812,1.3125,0.3125,1.3125,0.3437,1.3125,0.3437,1.375,0.3125,1.375,0.3125,1.375,0.3125,1.3125,0.3437,1.3125,0.375,1.3125,0.375,1.375,0.3437,1.375,0.3437,1.375,0.3437,1.3125,0.375,1.3125,0.4062,1.3125,0.4062,1.375,0.375,1.375,0.375,1.375,0.375,1.3125,0.4062,1.3125,0.4375,1.3125,0.4375,1.375,0.4062,1.375,0.4062,1.375,0.4062,1.3125,0.4375,1.3125,0.4688,1.3125,0.4688,1.375,0.4375,1.375,0.4375,1.375,0.4375,1.3125,0.4688,1.3125,0.5,1.3125,0.5,1.375,0.4688,1.375,0.4688,1.375,0.4688,1.3125,0.5,1.3125,0.0312,1.25,0.0312,1.3125,0.0,1.3125,0.0,1.3125,0.0,1.25,0.0312,1.25,0.0625,1.25,0.0625,1.3125,0.0312,1.3125,0.0312,1.3125,0.0312,1.25,0.0625,1.25,0.0938,1.25,0.0938,1.3125,0.0625,1.3125,0.0625,1.3125,0.0625,1.25,0.0938,1.25,0.125,1.25,0.125,1.3125,0.0938,1.3125,0.0938,1.3125,0.0938,1.25,0.125,1.25,0.1562,1.25,0.1562,1.3125,0.125,1.3125,0.125,1.3125,0.125,1.25,0.1562,1.25,0.1875,1.25,0.1875,1.3125,0.1562,1.3125,0.1562,1.3125,0.1562,1.25,0.1875,1.25,0.2187,1.25,0.2187,1.3125,0.1875,1.3125,0.1875,1.3125,0.1875,1.25,0.2187,1.25,0.25,1.25,0.25,1.3125,0.2187,1.3125,0.2187,1.3125,0.2187,1.25,0.25,1.25,0.2812,1.25,0.2812,1.3125,0.25,1.3125,0.25,1.3125,0.25,1.25,0.2812,1.25,0.3125,1.25,0.3125,1.3125,0.2812,1.3125,0.2812,1.3125,0.2812,1.25,0.3125,1.25,0.3437,1.25,0.3437,1.3125,0.3125,1.3125,0.3125,1.3125,0.3125,1.25,0.3437,1.25,0.375,1.25,0.375,1.3125,0.3437,1.3125,0.3437,1.3125,0.3437,1.25,0.375,1.25,0.4062,1.25,0.4062,1.3125,0.375,1.3125,0.375,1.3125,0.375,1.25,0.4062,1.25,0.4375,1.25,0.4375,1.3125,0.4062,1.3125,0.4062,1.3125,0.4062,1.25,0.4375,1.25,0.4688,1.25,0.4688,1.3125,0.4375,1.3125,0.4375,1.3125,0.4375,1.25,0.4688,1.25,0.5,1.25,0.5,1.3125,0.4688,1.3125,0.4688,1.3125,0.4688,1.25,0.5,1.25,0.0312,1.1875,0.0312,1.25,0.0,1.25,0.0,1.25,0.0,1.1875,0.0312,1.1875,0.0625,1.1875,0.0625,1.25,0.0312,1.25,0.0312,1.25,0.0312,1.1875,0.0625,1.1875,0.0938,1.1875,0.0938,1.25,0.0625,1.25,0.0625,1.25,0.0625,1.1875,0.0938,1.1875,0.125,1.1875,0.125,1.25,0.0938,1.25,0.0938,1.25,0.0938,1.1875,0.125,1.1875,0.1562,1.1875,0.1562,1.25,0.125,1.25,0.125,1.25,0.125,1.1875,0.1562,1.1875,0.1875,1.1875,0.1875,1.25,0.1562,1.25,0.1562,1.25,0.1562,1.1875,0.1875,1.1875,0.2187,1.1875,0.2187,1.25,0.1875,1.25,0.1875,1.25,0.1875,1.1875,0.2187,1.1875,0.25,1.1875,0.25,1.25,0.2187,1.25,0.2187,1.25,0.2187,1.1875,0.25,1.1875,0.2812,1.1875,0.2812,1.25,0.25,1.25,0.25,1.25,0.25,1.1875,0.2812,1.1875,0.3125,1.1875,0.3125,1.25,0.2812,1.25,0.2812,1.25,0.2812,1.1875,0.3125,1.1875,0.3437,1.1875,0.3437,1.25,0.3125,1.25,0.3125,1.25,0.3125,1.1875,0.3437,1.1875,0.375,1.1875,0.375,1.25,0.3437,1.25,0.3437,1.25,0.3437,1.1875,0.375,1.1875,0.4062,1.1875,0.4062,1.25,0.375,1.25,0.375,1.25,0.375,1.1875,0.4062,1.1875,0.4375,1.1875,0.4375,1.25,0.4062,1.25,0.4062,1.25,0.4062,1.1875,0.4375,1.1875,0.4688,1.1875,0.4688,1.25,0.4375,1.25,0.4375,1.25,0.4375,1.1875,0.4688,1.1875,0.5,1.1875,0.5,1.25,0.4688,1.25,0.4688,1.25,0.4688,1.1875,0.5,1.1875,0.0312,1.125,0.0312,1.1875,0.0,1.1875,0.0,1.1875,0.0,1.125,0.0312,1.125,0.0625,1.125,0.0625,1.1875,0.0312,1.1875,0.0312,1.1875,0.0312,1.125,0.0625,1.125,0.0938,1.125,0.0938,1.1875,0.0625,1.1875,0.0625,1.1875,0.0625,1.125,0.0938,1.125,0.125,1.125,0.125,1.1875,0.0938,1.1875,0.0938,1.1875,0.0938,1.125,0.125,1.125,0.1562,1.125,0.1562,1.1875,0.125,1.1875,0.125,1.1875,0.125,1.125,0.1562,1.125,0.1875,1.125,0.1875,1.1875,0.1562,1.1875,0.1562,1.1875,0.1562,1.125,0.1875,1.125,0.2187,1.125,0.2187,1.1875,0.1875,1.1875,0.1875,1.1875,0.1875,1.125,0.2187,1.125,0.25,1.125,0.25,1.1875,0.2187,1.1875,0.2187,1.1875,0.2187,1.125,0.25,1.125,0.2812,1.125,0.2812,1.1875,0.25,1.1875,0.25,1.1875,0.25,1.125,0.2812,1.125,0.3125,1.125,0.3125,1.1875,0.2812,1.1875,0.2812,1.1875,0.2812,1.125,0.3125,1.125,0.3437,1.125,0.3437,1.1875,0.3125,1.1875,0.3125,1.1875,0.3125,1.125,0.3437,1.125,0.375,1.125,0.375,1.1875,0.3437,1.1875,0.3437,1.1875,0.3437,1.125,0.375,1.125,0.4062,1.125,0.4062,1.1875,0.375,1.1875,0.375,1.1875,0.375,1.125,0.4062,1.125,0.4375,1.125,0.4375,1.1875,0.4062,1.1875,0.4062,1.1875,0.4062,1.125,0.4375,1.125,0.4688,1.125,0.4688,1.1875,0.4375,1.1875,0.4375,1.1875,0.4375,1.125,0.4688,1.125,0.5,1.125,0.5,1.1875,0.4688,1.1875,0.4688,1.1875,0.4688,1.125,0.5,1.125,0.0312,1.0625,0.0312,1.125,0.0,1.125,0.0,1.125,0.0,1.0625,0.0312,1.0625,0.0625,1.0625,0.0625,1.125,0.0312,1.125,0.0312,1.125,0.0312,1.0625,0.0625,1.0625,0.0938,1.0625,0.0938,1.125,0.0625,1.125,0.0625,1.125,0.0625,1.0625,0.0938,1.0625,0.125,1.0625,0.125,1.125,0.0938,1.125,0.0938,1.125,0.0938,1.0625,0.125,1.0625,0.1562,1.0625,0.1562,1.125,0.125,1.125,0.125,1.125,0.125,1.0625,0.1562,1.0625,0.1875,1.0625,0.1875,1.125,0.1562,1.125,0.1562,1.125,0.1562,1.0625,0.1875,1.0625,0.2187,1.0625,0.2187,1.125,0.1875,1.125,0.1875,1.125,0.1875,1.0625,0.2187,1.0625,0.25,1.0625,0.25,1.125,0.2187,1.125,0.2187,1.125,0.2187,1.0625,0.25,1.0625,0.2812,1.0625,0.2812,1.125,0.25,1.125,0.25,1.125,0.25,1.0625,0.2812,1.0625,0.3125,1.0625,0.3125,1.125,0.2812,1.125,0.2812,1.125,0.2812,1.0625,0.3125,1.0625,0.3437,1.0625,0.3437,1.125,0.3125,1.125,0.3125,1.125,0.3125,1.0625,0.3437,1.0625,0.375,1.0625,0.375,1.125,0.3437,1.125,0.3437,1.125,0.3437,1.0625,0.375,1.0625,0.4062,1.0625,0.4062,1.125,0.375,1.125,0.375,1.125,0.375,1.0625,0.4062,1.0625,0.4375,1.0625,0.4375,1.125,0.4062,1.125,0.4062,1.125,0.4062,1.0625,0.4375,1.0625,0.4688,1.0625,0.4688,1.125,0.4375,1.125,0.4375,1.125,0.4375,1.0625,0.4688,1.0625,0.5,1.0625,0.5,1.125,0.4688,1.125,0.4688,1.125,0.4688,1.0625,0.5,1.0625,0.0,1.0,0.0312,1.0625,0.0,1.0625,0.0312,1.0,0.0625,1.0625,0.0312,1.0625,0.0625,1.0,0.0938,1.0625,0.0625,1.0625,0.0938,1.0,0.125,1.0625,0.0938,1.0625,0.125,1.0,0.1562,1.0625,0.125,1.0625,0.1562,1.0,0.1875,1.0625,0.1562,1.0625,0.1875,1.0,0.2187,1.0625,0.1875,1.0625,0.2187,1.0,0.25,1.0625,0.2187,1.0625,0.25,1.0,0.2812,1.0625,0.25,1.0625,0.2812,1.0,0.3125,1.0625,0.2812,1.0625,0.3125,1.0,0.3437,1.0625,0.3125,1.0625,0.3437,1.0,0.375,1.0625,0.3437,1.0625,0.375,1.0,0.4062,1.0625,0.375,1.0625,0.4062,1.0,0.4375,1.0625,0.4062,1.0625,0.4375,1.0,0.4688,1.0625,0.4375,1.0625,0.4688,1.0,0.5,1.0625,0.4688,1.0625],"uvs2":null,"colors":null,"hasVertexAlpha":false,"matricesIndices":null,"matricesWeights":null,"matricesIndicesExtra":null,"matricesWeightsExtra":null,"indices":[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],"receiveShadows":true,"infiniteDistance":false,"billboardMode":0,"visibility":1.0,"subMeshes":[{"materialIndex":0,"verticesStart":0,"verticesCount":1440,"indexStart":0,"indexCount":1440}],"instances":null,"skeletonId":-1,"numBoneInfluencers":4,"applyFog":true,"lodMeshIds":null,"lodDistances":null,"lodCoverages":null,"rotation":null,"scaling":[1.0,1.0,1.0],"rotationQuaternion":[0.0,0.0,0.0,1.0],"actions":null,"checkCollisions":false,"pickable":false,"showBoundingBox":false,"showSubMeshesBoundingBox":false,"alphaIndex":1000,"physicsImpostor":0,"physicsMass":0.0,"physicsFriction":0.0,"physicsRestitution":0.0,"name":"PhysicalMeshBackfaceCullingOn","id":"311381f0-8487-4fc5-89fa-7d01dfda5e2f","parentId":null,"position":[3.0,0.0,0.0],"animations":[],"autoAnimate":true,"autoAnimateFrom":0,"autoAnimateTo":100,"autoAnimateLoop":true,"metadata":null},{"materialId":"e632063b-b9bd-4d8e-adbc-a67b63bdfad2","isEnabled":true,"isVisible":true,"positions":[0.0,1.0,0.0,0.0,0.9808,0.1951,-0.0381,0.9808,0.1913,0.0,1.0,0.0,-0.0381,0.9808,0.1913,-0.0747,0.9808,0.1802,0.0,1.0,0.0,-0.0747,0.9808,0.1802,-0.1084,0.9808,0.1622,0.0,1.0,0.0,-0.1084,0.9808,0.1622,-0.1379,0.9808,0.1379,0.0,1.0,0.0,-0.1379,0.9808,0.1379,-0.1622,0.9808,0.1084,0.0,1.0,0.0,-0.1622,0.9808,0.1084,-0.1802,0.9808,0.0747,0.0,1.0,0.0,-0.1802,0.9808,0.0747,-0.1913,0.9808,0.0381,0.0,1.0,0.0,-0.1913,0.9808,0.0381,-0.1951,0.9808,0.0,0.0,1.0,0.0,-0.1951,0.9808,0.0,-0.1913,0.9808,-0.0381,0.0,1.0,0.0,-0.1913,0.9808,-0.0381,-0.1802,0.9808,-0.0747,0.0,1.0,0.0,-0.1802,0.9808,-0.0747,-0.1622,0.9808,-0.1084,0.0,1.0,0.0,-0.1622,0.9808,-0.1084,-0.1379,0.9808,-0.1379,0.0,1.0,0.0,-0.1379,0.9808,-0.1379,-0.1084,0.9808,-0.1622,0.0,1.0,0.0,-0.1084,0.9808,-0.1622,-0.0747,0.9808,-0.1802,0.0,1.0,0.0,-0.0747,0.9808,-0.1802,-0.0381,0.9808,-0.1913,0.0,1.0,0.0,-0.0381,0.9808,-0.1913,0.0,0.9808,-0.1951,-0.0747,0.9239,0.3753,-0.0381,0.9808,0.1913,0.0,0.9808,0.1951,0.0,0.9808,0.1951,0.0,0.9239,0.3827,-0.0747,0.9239,0.3753,-0.1464,0.9239,0.3536,-0.0747,0.9808,0.1802,-0.0381,0.9808,0.1913,-0.0381,0.9808,0.1913,-0.0747,0.9239,0.3753,-0.1464,0.9239,0.3536,-0.2126,0.9239,0.3182,-0.1084,0.9808,0.1622,-0.0747,0.9808,0.1802,-0.0747,0.9808,0.1802,-0.1464,0.9239,0.3536,-0.2126,0.9239,0.3182,-0.2706,0.9239,0.2706,-0.1379,0.9808,0.1379,-0.1084,0.9808,0.1622,-0.1084,0.9808,0.1622,-0.2126,0.9239,0.3182,-0.2706,0.9239,0.2706,-0.3182,0.9239,0.2126,-0.1622,0.9808,0.1084,-0.1379,0.9808,0.1379,-0.1379,0.9808,0.1379,-0.2706,0.9239,0.2706,-0.3182,0.9239,0.2126,-0.3536,0.9239,0.1464,-0.1802,0.9808,0.0747,-0.1622,0.9808,0.1084,-0.1622,0.9808,0.1084,-0.3182,0.9239,0.2126,-0.3536,0.9239,0.1464,-0.3753,0.9239,0.0747,-0.1913,0.9808,0.0381,-0.1802,0.9808,0.0747,-0.1802,0.9808,0.0747,-0.3536,0.9239,0.1464,-0.3753,0.9239,0.0747,-0.3827,0.9239,0.0,-0.1951,0.9808,0.0,-0.1913,0.9808,0.0381,-0.1913,0.9808,0.0381,-0.3753,0.9239,0.0747,-0.3827,0.9239,0.0,-0.3753,0.9239,-0.0747,-0.1913,0.9808,-0.0381,-0.1951,0.9808,0.0,-0.1951,0.9808,0.0,-0.3827,0.9239,0.0,-0.3753,0.9239,-0.0747,-0.3536,0.9239,-0.1464,-0.1802,0.9808,-0.0747,-0.1913,0.9808,-0.0381,-0.1913,0.9808,-0.0381,-0.3753,0.9239,-0.0747,-0.3536,0.9239,-0.1464,-0.3182,0.9239,-0.2126,-0.1622,0.9808,-0.1084,-0.1802,0.9808,-0.0747,-0.1802,0.9808,-0.0747,-0.3536,0.9239,-0.1464,-0.3182,0.9239,-0.2126,-0.2706,0.9239,-0.2706,-0.1379,0.9808,-0.1379,-0.1622,0.9808,-0.1084,-0.1622,0.9808,-0.1084,-0.3182,0.9239,-0.2126,-0.2706,0.9239,-0.2706,-0.2126,0.9239,-0.3182,-0.1084,0.9808,-0.1622,-0.1379,0.9808,-0.1379,-0.1379,0.9808,-0.1379,-0.2706,0.9239,-0.2706,-0.2126,0.9239,-0.3182,-0.1464,0.9239,-0.3536,-0.0747,0.9808,-0.1802,-0.1084,0.9808,-0.1622,-0.1084,0.9808,-0.1622,-0.2126,0.9239,-0.3182,-0.1464,0.9239,-0.3536,-0.0747,0.9239,-0.3753,-0.0381,0.9808,-0.1913,-0.0747,0.9808,-0.1802,-0.0747,0.9808,-0.1802,-0.1464,0.9239,-0.3536,-0.0747,0.9239,-0.3753,0.0,0.9239,-0.3827,0.0,0.9808,-0.1951,-0.0381,0.9808,-0.1913,-0.0381,0.9808,-0.1913,-0.0747,0.9239,-0.3753,0.0,0.9239,-0.3827,-0.1084,0.8315,0.5449,-0.0747,0.9239,0.3753,0.0,0.9239,0.3827,0.0,0.9239,0.3827,0.0,0.8315,0.5556,-0.1084,0.8315,0.5449,-0.2126,0.8315,0.5133,-0.1464,0.9239,0.3536,-0.0747,0.9239,0.3753,-0.0747,0.9239,0.3753,-0.1084,0.8315,0.5449,-0.2126,0.8315,0.5133,-0.3087,0.8315,0.4619,-0.2126,0.9239,0.3182,-0.1464,0.9239,0.3536,-0.1464,0.9239,0.3536,-0.2126,0.8315,0.5133,-0.3087,0.8315,0.4619,-0.3928,0.8315,0.3928,-0.2706,0.9239,0.2706,-0.2126,0.9239,0.3182,-0.2126,0.9239,0.3182,-0.3087,0.8315,0.4619,-0.3928,0.8315,0.3928,-0.4619,0.8315,0.3087,-0.3182,0.9239,0.2126,-0.2706,0.9239,0.2706,-0.2706,0.9239,0.2706,-0.3928,0.8315,0.3928,-0.4619,0.8315,0.3087,-0.5133,0.8315,0.2126,-0.3536,0.9239,0.1464,-0.3182,0.9239,0.2126,-0.3182,0.9239,0.2126,-0.4619,0.8315,0.3087,-0.5133,0.8315,0.2126,-0.5449,0.8315,0.1084,-0.3753,0.9239,0.0747,-0.3536,0.9239,0.1464,-0.3536,0.9239,0.1464,-0.5133,0.8315,0.2126,-0.5449,0.8315,0.1084,-0.5556,0.8315,0.0,-0.3827,0.9239,0.0,-0.3753,0.9239,0.0747,-0.3753,0.9239,0.0747,-0.5449,0.8315,0.1084,-0.5556,0.8315,0.0,-0.5449,0.8315,-0.1084,-0.3753,0.9239,-0.0747,-0.3827,0.9239,0.0,-0.3827,0.9239,0.0,-0.5556,0.8315,0.0,-0.5449,0.8315,-0.1084,-0.5133,0.8315,-0.2126,-0.3536,0.9239,-0.1464,-0.3753,0.9239,-0.0747,-0.3753,0.9239,-0.0747,-0.5449,0.8315,-0.1084,-0.5133,0.8315,-0.2126,-0.4619,0.8315,-0.3087,-0.3182,0.9239,-0.2126,-0.3536,0.9239,-0.1464,-0.3536,0.9239,-0.1464,-0.5133,0.8315,-0.2126,-0.4619,0.8315,-0.3087,-0.3928,0.8315,-0.3928,-0.2706,0.9239,-0.2706,-0.3182,0.9239,-0.2126,-0.3182,0.9239,-0.2126,-0.4619,0.8315,-0.3087,-0.3928,0.8315,-0.3928,-0.3087,0.8315,-0.4619,-0.2126,0.9239,-0.3182,-0.2706,0.9239,-0.2706,-0.2706,0.9239,-0.2706,-0.3928,0.8315,-0.3928,-0.3087,0.8315,-0.4619,-0.2126,0.8315,-0.5133,-0.1464,0.9239,-0.3536,-0.2126,0.9239,-0.3182,-0.2126,0.9239,-0.3182,-0.3087,0.8315,-0.4619,-0.2126,0.8315,-0.5133,-0.1084,0.8315,-0.5449,-0.0747,0.9239,-0.3753,-0.1464,0.9239,-0.3536,-0.1464,0.9239,-0.3536,-0.2126,0.8315,-0.5133,-0.1084,0.8315,-0.5449,0.0,0.8315,-0.5556,0.0,0.9239,-0.3827,-0.0747,0.9239,-0.3753,-0.0747,0.9239,-0.3753,-0.1084,0.8315,-0.5449,0.0,0.8315,-0.5556,-0.1379,0.7071,0.6935,-0.1084,0.8315,0.5449,0.0,0.8315,0.5556,0.0,0.8315,0.5556,0.0,0.7071,0.7071,-0.1379,0.7071,0.6935,-0.2706,0.7071,0.6533,-0.2126,0.8315,0.5133,-0.1084,0.8315,0.5449,-0.1084,0.8315,0.5449,-0.1379,0.7071,0.6935,-0.2706,0.7071,0.6533,-0.3928,0.7071,0.5879,-0.3087,0.8315,0.4619,-0.2126,0.8315,0.5133,-0.2126,0.8315,0.5133,-0.2706,0.7071,0.6533,-0.3928,0.7071,0.5879,-0.5,0.7071,0.5,-0.3928,0.8315,0.3928,-0.3087,0.8315,0.4619,-0.3087,0.8315,0.4619,-0.3928,0.7071,0.5879,-0.5,0.7071,0.5,-0.5879,0.7071,0.3928,-0.4619,0.8315,0.3087,-0.3928,0.8315,0.3928,-0.3928,0.8315,0.3928,-0.5,0.7071,0.5,-0.5879,0.7071,0.3928,-0.6533,0.7071,0.2706,-0.5133,0.8315,0.2126,-0.4619,0.8315,0.3087,-0.4619,0.8315,0.3087,-0.5879,0.7071,0.3928,-0.6533,0.7071,0.2706,-0.6935,0.7071,0.1379,-0.5449,0.8315,0.1084,-0.5133,0.8315,0.2126,-0.5133,0.8315,0.2126,-0.6533,0.7071,0.2706,-0.6935,0.7071,0.1379,-0.7071,0.7071,0.0,-0.5556,0.8315,0.0,-0.5449,0.8315,0.1084,-0.5449,0.8315,0.1084,-0.6935,0.7071,0.1379,-0.7071,0.7071,0.0,-0.6935,0.7071,-0.1379,-0.5449,0.8315,-0.1084,-0.5556,0.8315,0.0,-0.5556,0.8315,0.0,-0.7071,0.7071,0.0,-0.6935,0.7071,-0.1379,-0.6533,0.7071,-0.2706,-0.5133,0.8315,-0.2126,-0.5449,0.8315,-0.1084,-0.5449,0.8315,-0.1084,-0.6935,0.7071,-0.1379,-0.6533,0.7071,-0.2706,-0.5879,0.7071,-0.3928,-0.4619,0.8315,-0.3087,-0.5133,0.8315,-0.2126,-0.5133,0.8315,-0.2126,-0.6533,0.7071,-0.2706,-0.5879,0.7071,-0.3928,-0.5,0.7071,-0.5,-0.3928,0.8315,-0.3928,-0.4619,0.8315,-0.3087,-0.4619,0.8315,-0.3087,-0.5879,0.7071,-0.3928,-0.5,0.7071,-0.5,-0.3928,0.7071,-0.5879,-0.3087,0.8315,-0.4619,-0.3928,0.8315,-0.3928,-0.3928,0.8315,-0.3928,-0.5,0.7071,-0.5,-0.3928,0.7071,-0.5879,-0.2706,0.7071,-0.6533,-0.2126,0.8315,-0.5133,-0.3087,0.8315,-0.4619,-0.3087,0.8315,-0.4619,-0.3928,0.7071,-0.5879,-0.2706,0.7071,-0.6533,-0.1379,0.7071,-0.6935,-0.1084,0.8315,-0.5449,-0.2126,0.8315,-0.5133,-0.2126,0.8315,-0.5133,-0.2706,0.7071,-0.6533,-0.1379,0.7071,-0.6935,0.0,0.7071,-0.7071,0.0,0.8315,-0.5556,-0.1084,0.8315,-0.5449,-0.1084,0.8315,-0.5449,-0.1379,0.7071,-0.6935,0.0,0.7071,-0.7071,-0.1622,0.5556,0.8155,-0.1379,0.7071,0.6935,0.0,0.7071,0.7071,0.0,0.7071,0.7071,0.0,0.5556,0.8315,-0.1622,0.5556,0.8155,-0.3182,0.5556,0.7682,-0.2706,0.7071,0.6533,-0.1379,0.7071,0.6935,-0.1379,0.7071,0.6935,-0.1622,0.5556,0.8155,-0.3182,0.5556,0.7682,-0.4619,0.5556,0.6913,-0.3928,0.7071,0.5879,-0.2706,0.7071,0.6533,-0.2706,0.7071,0.6533,-0.3182,0.5556,0.7682,-0.4619,0.5556,0.6913,-0.5879,0.5556,0.5879,-0.5,0.7071,0.5,-0.3928,0.7071,0.5879,-0.3928,0.7071,0.5879,-0.4619,0.5556,0.6913,-0.5879,0.5556,0.5879,-0.6913,0.5556,0.4619,-0.5879,0.7071,0.3928,-0.5,0.7071,0.5,-0.5,0.7071,0.5,-0.5879,0.5556,0.5879,-0.6913,0.5556,0.4619,-0.7682,0.5556,0.3182,-0.6533,0.7071,0.2706,-0.5879,0.7071,0.3928,-0.5879,0.7071,0.3928,-0.6913,0.5556,0.4619,-0.7682,0.5556,0.3182,-0.8155,0.5556,0.1622,-0.6935,0.7071,0.1379,-0.6533,0.7071,0.2706,-0.6533,0.7071,0.2706,-0.7682,0.5556,0.3182,-0.8155,0.5556,0.1622,-0.8315,0.5556,0.0,-0.7071,0.7071,0.0,-0.6935,0.7071,0.1379,-0.6935,0.7071,0.1379,-0.8155,0.5556,0.1622,-0.8315,0.5556,0.0,-0.8155,0.5556,-0.1622,-0.6935,0.7071,-0.1379,-0.7071,0.7071,0.0,-0.7071,0.7071,0.0,-0.8315,0.5556,0.0,-0.8155,0.5556,-0.1622,-0.7682,0.5556,-0.3182,-0.6533,0.7071,-0.2706,-0.6935,0.7071,-0.1379,-0.6935,0.7071,-0.1379,-0.8155,0.5556,-0.1622,-0.7682,0.5556,-0.3182,-0.6913,0.5556,-0.4619,-0.5879,0.7071,-0.3928,-0.6533,0.7071,-0.2706,-0.6533,0.7071,-0.2706,-0.7682,0.5556,-0.3182,-0.6913,0.5556,-0.4619,-0.5879,0.5556,-0.5879,-0.5,0.7071,-0.5,-0.5879,0.7071,-0.3928,-0.5879,0.7071,-0.3928,-0.6913,0.5556,-0.4619,-0.5879,0.5556,-0.5879,-0.4619,0.5556,-0.6913,-0.3928,0.7071,-0.5879,-0.5,0.7071,-0.5,-0.5,0.7071,-0.5,-0.5879,0.5556,-0.5879,-0.4619,0.5556,-0.6913,-0.3182,0.5556,-0.7682,-0.2706,0.7071,-0.6533,-0.3928,0.7071,-0.5879,-0.3928,0.7071,-0.5879,-0.4619,0.5556,-0.6913,-0.3182,0.5556,-0.7682,-0.1622,0.5556,-0.8155,-0.1379,0.7071,-0.6935,-0.2706,0.7071,-0.6533,-0.2706,0.7071,-0.6533,-0.3182,0.5556,-0.7682,-0.1622,0.5556,-0.8155,0.0,0.5556,-0.8315,0.0,0.7071,-0.7071,-0.1379,0.7071,-0.6935,-0.1379,0.7071,-0.6935,-0.1622,0.5556,-0.8155,0.0,0.5556,-0.8315,-0.1802,0.3827,0.9061,-0.1622,0.5556,0.8155,0.0,0.5556,0.8315,0.0,0.5556,0.8315,0.0,0.3827,0.9239,-0.1802,0.3827,0.9061,-0.3536,0.3827,0.8536,-0.3182,0.5556,0.7682,-0.1622,0.5556,0.8155,-0.1622,0.5556,0.8155,-0.1802,0.3827,0.9061,-0.3536,0.3827,0.8536,-0.5133,0.3827,0.7682,-0.4619,0.5556,0.6913,-0.3182,0.5556,0.7682,-0.3182,0.5556,0.7682,-0.3536,0.3827,0.8536,-0.5133,0.3827,0.7682,-0.6533,0.3827,0.6533,-0.5879,0.5556,0.5879,-0.4619,0.5556,0.6913,-0.4619,0.5556,0.6913,-0.5133,0.3827,0.7682,-0.6533,0.3827,0.6533,-0.7682,0.3827,0.5133,-0.6913,0.5556,0.4619,-0.5879,0.5556,0.5879,-0.5879,0.5556,0.5879,-0.6533,0.3827,0.6533,-0.7682,0.3827,0.5133,-0.8536,0.3827,0.3536,-0.7682,0.5556,0.3182,-0.6913,0.5556,0.4619,-0.6913,0.5556,0.4619,-0.7682,0.3827,0.5133,-0.8536,0.3827,0.3536,-0.9061,0.3827,0.1802,-0.8155,0.5556,0.1622,-0.7682,0.5556,0.3182,-0.7682,0.5556,0.3182,-0.8536,0.3827,0.3536,-0.9061,0.3827,0.1802,-0.9239,0.3827,0.0,-0.8315,0.5556,0.0,-0.8155,0.5556,0.1622,-0.8155,0.5556,0.1622,-0.9061,0.3827,0.1802,-0.9239,0.3827,0.0,-0.9061,0.3827,-0.1802,-0.8155,0.5556,-0.1622,-0.8315,0.5556,0.0,-0.8315,0.5556,0.0,-0.9239,0.3827,0.0,-0.9061,0.3827,-0.1802,-0.8536,0.3827,-0.3536,-0.7682,0.5556,-0.3182,-0.8155,0.5556,-0.1622,-0.8155,0.5556,-0.1622,-0.9061,0.3827,-0.1802,-0.8536,0.3827,-0.3536,-0.7682,0.3827,-0.5133,-0.6913,0.5556,-0.4619,-0.7682,0.5556,-0.3182,-0.7682,0.5556,-0.3182,-0.8536,0.3827,-0.3536,-0.7682,0.3827,-0.5133,-0.6533,0.3827,-0.6533,-0.5879,0.5556,-0.5879,-0.6913,0.5556,-0.4619,-0.6913,0.5556,-0.4619,-0.7682,0.3827,-0.5133,-0.6533,0.3827,-0.6533,-0.5133,0.3827,-0.7682,-0.4619,0.5556,-0.6913,-0.5879,0.5556,-0.5879,-0.5879,0.5556,-0.5879,-0.6533,0.3827,-0.6533,-0.5133,0.3827,-0.7682,-0.3536,0.3827,-0.8536,-0.3182,0.5556,-0.7682,-0.4619,0.5556,-0.6913,-0.4619,0.5556,-0.6913,-0.5133,0.3827,-0.7682,-0.3536,0.3827,-0.8536,-0.1802,0.3827,-0.9061,-0.1622,0.5556,-0.8155,-0.3182,0.5556,-0.7682,-0.3182,0.5556,-0.7682,-0.3536,0.3827,-0.8536,-0.1802,0.3827,-0.9061,0.0,0.3827,-0.9239,0.0,0.5556,-0.8315,-0.1622,0.5556,-0.8155,-0.1622,0.5556,-0.8155,-0.1802,0.3827,-0.9061,0.0,0.3827,-0.9239,-0.1913,0.1951,0.9619,-0.1802,0.3827,0.9061,0.0,0.3827,0.9239,0.0,0.3827,0.9239,0.0,0.1951,0.9808,-0.1913,0.1951,0.9619,-0.3753,0.1951,0.9061,-0.3536,0.3827,0.8536,-0.1802,0.3827,0.9061,-0.1802,0.3827,0.9061,-0.1913,0.1951,0.9619,-0.3753,0.1951,0.9061,-0.5449,0.1951,0.8155,-0.5133,0.3827,0.7682,-0.3536,0.3827,0.8536,-0.3536,0.3827,0.8536,-0.3753,0.1951,0.9061,-0.5449,0.1951,0.8155,-0.6935,0.1951,0.6935,-0.6533,0.3827,0.6533,-0.5133,0.3827,0.7682,-0.5133,0.3827,0.7682,-0.5449,0.1951,0.8155,-0.6935,0.1951,0.6935,-0.8155,0.1951,0.5449,-0.7682,0.3827,0.5133,-0.6533,0.3827,0.6533,-0.6533,0.3827,0.6533,-0.6935,0.1951,0.6935,-0.8155,0.1951,0.5449,-0.9061,0.1951,0.3753,-0.8536,0.3827,0.3536,-0.7682,0.3827,0.5133,-0.7682,0.3827,0.5133,-0.8155,0.1951,0.5449,-0.9061,0.1951,0.3753,-0.9619,0.1951,0.1913,-0.9061,0.3827,0.1802,-0.8536,0.3827,0.3536,-0.8536,0.3827,0.3536,-0.9061,0.1951,0.3753,-0.9619,0.1951,0.1913,-0.9808,0.1951,0.0,-0.9239,0.3827,0.0,-0.9061,0.3827,0.1802,-0.9061,0.3827,0.1802,-0.9619,0.1951,0.1913,-0.9808,0.1951,0.0,-0.9619,0.1951,-0.1913,-0.9061,0.3827,-0.1802,-0.9239,0.3827,0.0,-0.9239,0.3827,0.0,-0.9808,0.1951,0.0,-0.9619,0.1951,-0.1913,-0.9061,0.1951,-0.3753,-0.8536,0.3827,-0.3536,-0.9061,0.3827,-0.1802,-0.9061,0.3827,-0.1802,-0.9619,0.1951,-0.1913,-0.9061,0.1951,-0.3753,-0.8155,0.1951,-0.5449,-0.7682,0.3827,-0.5133,-0.8536,0.3827,-0.3536,-0.8536,0.3827,-0.3536,-0.9061,0.1951,-0.3753,-0.8155,0.1951,-0.5449,-0.6935,0.1951,-0.6935,-0.6533,0.3827,-0.6533,-0.7682,0.3827,-0.5133,-0.7682,0.3827,-0.5133,-0.8155,0.1951,-0.5449,-0.6935,0.1951,-0.6935,-0.5449,0.1951,-0.8155,-0.5133,0.3827,-0.7682,-0.6533,0.3827,-0.6533,-0.6533,0.3827,-0.6533,-0.6935,0.1951,-0.6935,-0.5449,0.1951,-0.8155,-0.3753,0.1951,-0.9061,-0.3536,0.3827,-0.8536,-0.5133,0.3827,-0.7682,-0.5133,0.3827,-0.7682,-0.5449,0.1951,-0.8155,-0.3753,0.1951,-0.9061,-0.1913,0.1951,-0.9619,-0.1802,0.3827,-0.9061,-0.3536,0.3827,-0.8536,-0.3536,0.3827,-0.8536,-0.3753,0.1951,-0.9061,-0.1913,0.1951,-0.9619,0.0,0.1951,-0.9808,0.0,0.3827,-0.9239,-0.1802,0.3827,-0.9061,-0.1802,0.3827,-0.9061,-0.1913,0.1951,-0.9619,0.0,0.1951,-0.9808,-0.1951,0.0,0.9808,-0.1913,0.1951,0.9619,0.0,0.1951,0.9808,0.0,0.1951,0.9808,0.0,0.0,1.0,-0.1951,0.0,0.9808,-0.3827,0.0,0.9239,-0.3753,0.1951,0.9061,-0.1913,0.1951,0.9619,-0.1913,0.1951,0.9619,-0.1951,0.0,0.9808,-0.3827,0.0,0.9239,-0.5556,0.0,0.8315,-0.5449,0.1951,0.8155,-0.3753,0.1951,0.9061,-0.3753,0.1951,0.9061,-0.3827,0.0,0.9239,-0.5556,0.0,0.8315,-0.7071,0.0,0.7071,-0.6935,0.1951,0.6935,-0.5449,0.1951,0.8155,-0.5449,0.1951,0.8155,-0.5556,0.0,0.8315,-0.7071,0.0,0.7071,-0.8315,0.0,0.5556,-0.8155,0.1951,0.5449,-0.6935,0.1951,0.6935,-0.6935,0.1951,0.6935,-0.7071,0.0,0.7071,-0.8315,0.0,0.5556,-0.9239,0.0,0.3827,-0.9061,0.1951,0.3753,-0.8155,0.1951,0.5449,-0.8155,0.1951,0.5449,-0.8315,0.0,0.5556,-0.9239,0.0,0.3827,-0.9808,0.0,0.1951,-0.9619,0.1951,0.1913,-0.9061,0.1951,0.3753,-0.9061,0.1951,0.3753,-0.9239,0.0,0.3827,-0.9808,0.0,0.1951,-1.0,0.0,0.0,-0.9808,0.1951,0.0,-0.9619,0.1951,0.1913,-0.9619,0.1951,0.1913,-0.9808,0.0,0.1951,-1.0,0.0,0.0,-0.9808,0.0,-0.1951,-0.9619,0.1951,-0.1913,-0.9808,0.1951,0.0,-0.9808,0.1951,0.0,-1.0,0.0,0.0,-0.9808,0.0,-0.1951,-0.9239,0.0,-0.3827,-0.9061,0.1951,-0.3753,-0.9619,0.1951,-0.1913,-0.9619,0.1951,-0.1913,-0.9808,0.0,-0.1951,-0.9239,0.0,-0.3827,-0.8315,0.0,-0.5556,-0.8155,0.1951,-0.5449,-0.9061,0.1951,-0.3753,-0.9061,0.1951,-0.3753,-0.9239,0.0,-0.3827,-0.8315,0.0,-0.5556,-0.7071,0.0,-0.7071,-0.6935,0.1951,-0.6935,-0.8155,0.1951,-0.5449,-0.8155,0.1951,-0.5449,-0.8315,0.0,-0.5556,-0.7071,0.0,-0.7071,-0.5556,0.0,-0.8315,-0.5449,0.1951,-0.8155,-0.6935,0.1951,-0.6935,-0.6935,0.1951,-0.6935,-0.7071,0.0,-0.7071,-0.5556,0.0,-0.8315,-0.3827,0.0,-0.9239,-0.3753,0.1951,-0.9061,-0.5449,0.1951,-0.8155,-0.5449,0.1951,-0.8155,-0.5556,0.0,-0.8315,-0.3827,0.0,-0.9239,-0.1951,0.0,-0.9808,-0.1913,0.1951,-0.9619,-0.3753,0.1951,-0.9061,-0.3753,0.1951,-0.9061,-0.3827,0.0,-0.9239,-0.1951,0.0,-0.9808,0.0,0.0,-1.0,0.0,0.1951,-0.9808,-0.1913,0.1951,-0.9619,-0.1913,0.1951,-0.9619,-0.1951,0.0,-0.9808,0.0,0.0,-1.0,-0.1913,-0.1951,0.9619,-0.1951,0.0,0.9808,0.0,0.0,1.0,0.0,0.0,1.0,0.0,-0.1951,0.9808,-0.1913,-0.1951,0.9619,-0.3753,-0.1951,0.9061,-0.3827,0.0,0.9239,-0.1951,0.0,0.9808,-0.1951,0.0,0.9808,-0.1913,-0.1951,0.9619,-0.3753,-0.1951,0.9061,-0.5449,-0.1951,0.8155,-0.5556,0.0,0.8315,-0.3827,0.0,0.9239,-0.3827,0.0,0.9239,-0.3753,-0.1951,0.9061,-0.5449,-0.1951,0.8155,-0.6935,-0.1951,0.6935,-0.7071,0.0,0.7071,-0.5556,0.0,0.8315,-0.5556,0.0,0.8315,-0.5449,-0.1951,0.8155,-0.6935,-0.1951,0.6935,-0.8155,-0.1951,0.5449,-0.8315,0.0,0.5556,-0.7071,0.0,0.7071,-0.7071,0.0,0.7071,-0.6935,-0.1951,0.6935,-0.8155,-0.1951,0.5449,-0.9061,-0.1951,0.3753,-0.9239,0.0,0.3827,-0.8315,0.0,0.5556,-0.8315,0.0,0.5556,-0.8155,-0.1951,0.5449,-0.9061,-0.1951,0.3753,-0.9619,-0.1951,0.1913,-0.9808,0.0,0.1951,-0.9239,0.0,0.3827,-0.9239,0.0,0.3827,-0.9061,-0.1951,0.3753,-0.9619,-0.1951,0.1913,-0.9808,-0.1951,0.0,-1.0,0.0,0.0,-0.9808,0.0,0.1951,-0.9808,0.0,0.1951,-0.9619,-0.1951,0.1913,-0.9808,-0.1951,0.0,-0.9619,-0.1951,-0.1913,-0.9808,0.0,-0.1951,-1.0,0.0,0.0,-1.0,0.0,0.0,-0.9808,-0.1951,0.0,-0.9619,-0.1951,-0.1913,-0.9061,-0.1951,-0.3753,-0.9239,0.0,-0.3827,-0.9808,0.0,-0.1951,-0.9808,0.0,-0.1951,-0.9619,-0.1951,-0.1913,-0.9061,-0.1951,-0.3753,-0.8155,-0.1951,-0.5449,-0.8315,0.0,-0.5556,-0.9239,0.0,-0.3827,-0.9239,0.0,-0.3827,-0.9061,-0.1951,-0.3753,-0.8155,-0.1951,-0.5449,-0.6935,-0.1951,-0.6935,-0.7071,0.0,-0.7071,-0.8315,0.0,-0.5556,-0.8315,0.0,-0.5556,-0.8155,-0.1951,-0.5449,-0.6935,-0.1951,-0.6935,-0.5449,-0.1951,-0.8155,-0.5556,0.0,-0.8315,-0.7071,0.0,-0.7071,-0.7071,0.0,-0.7071,-0.6935,-0.1951,-0.6935,-0.5449,-0.1951,-0.8155,-0.3753,-0.1951,-0.9061,-0.3827,0.0,-0.9239,-0.5556,0.0,-0.8315,-0.5556,0.0,-0.8315,-0.5449,-0.1951,-0.8155,-0.3753,-0.1951,-0.9061,-0.1913,-0.1951,-0.9619,-0.1951,0.0,-0.9808,-0.3827,0.0,-0.9239,-0.3827,0.0,-0.9239,-0.3753,-0.1951,-0.9061,-0.1913,-0.1951,-0.9619,0.0,-0.1951,-0.9808,0.0,0.0,-1.0,-0.1951,0.0,-0.9808,-0.1951,0.0,-0.9808,-0.1913,-0.1951,-0.9619,0.0,-0.1951,-0.9808,-0.1802,-0.3827,0.9061,-0.1913,-0.1951,0.9619,0.0,-0.1951,0.9808,0.0,-0.1951,0.9808,0.0,-0.3827,0.9239,-0.1802,-0.3827,0.9061,-0.3536,-0.3827,0.8536,-0.3753,-0.1951,0.9061,-0.1913,-0.1951,0.9619,-0.1913,-0.1951,0.9619,-0.1802,-0.3827,0.9061,-0.3536,-0.3827,0.8536,-0.5133,-0.3827,0.7682,-0.5449,-0.1951,0.8155,-0.3753,-0.1951,0.9061,-0.3753,-0.1951,0.9061,-0.3536,-0.3827,0.8536,-0.5133,-0.3827,0.7682,-0.6533,-0.3827,0.6533,-0.6935,-0.1951,0.6935,-0.5449,-0.1951,0.8155,-0.5449,-0.1951,0.8155,-0.5133,-0.3827,0.7682,-0.6533,-0.3827,0.6533,-0.7682,-0.3827,0.5133,-0.8155,-0.1951,0.5449,-0.6935,-0.1951,0.6935,-0.6935,-0.1951,0.6935,-0.6533,-0.3827,0.6533,-0.7682,-0.3827,0.5133,-0.8536,-0.3827,0.3536,-0.9061,-0.1951,0.3753,-0.8155,-0.1951,0.5449,-0.8155,-0.1951,0.5449,-0.7682,-0.3827,0.5133,-0.8536,-0.3827,0.3536,-0.9061,-0.3827,0.1802,-0.9619,-0.1951,0.1913,-0.9061,-0.1951,0.3753,-0.9061,-0.1951,0.3753,-0.8536,-0.3827,0.3536,-0.9061,-0.3827,0.1802,-0.9239,-0.3827,0.0,-0.9808,-0.1951,0.0,-0.9619,-0.1951,0.1913,-0.9619,-0.1951,0.1913,-0.9061,-0.3827,0.1802,-0.9239,-0.3827,0.0,-0.9061,-0.3827,-0.1802,-0.9619,-0.1951,-0.1913,-0.9808,-0.1951,0.0,-0.9808,-0.1951,0.0,-0.9239,-0.3827,0.0,-0.9061,-0.3827,-0.1802,-0.8536,-0.3827,-0.3536,-0.9061,-0.1951,-0.3753,-0.9619,-0.1951,-0.1913,-0.9619,-0.1951,-0.1913,-0.9061,-0.3827,-0.1802,-0.8536,-0.3827,-0.3536,-0.7682,-0.3827,-0.5133,-0.8155,-0.1951,-0.5449,-0.9061,-0.1951,-0.3753,-0.9061,-0.1951,-0.3753,-0.8536,-0.3827,-0.3536,-0.7682,-0.3827,-0.5133,-0.6533,-0.3827,-0.6533,-0.6935,-0.1951,-0.6935,-0.8155,-0.1951,-0.5449,-0.8155,-0.1951,-0.5449,-0.7682,-0.3827,-0.5133,-0.6533,-0.3827,-0.6533,-0.5133,-0.3827,-0.7682,-0.5449,-0.1951,-0.8155,-0.6935,-0.1951,-0.6935,-0.6935,-0.1951,-0.6935,-0.6533,-0.3827,-0.6533,-0.5133,-0.3827,-0.7682,-0.3536,-0.3827,-0.8536,-0.3753,-0.1951,-0.9061,-0.5449,-0.1951,-0.8155,-0.5449,-0.1951,-0.8155,-0.5133,-0.3827,-0.7682,-0.3536,-0.3827,-0.8536,-0.1802,-0.3827,-0.9061,-0.1913,-0.1951,-0.9619,-0.3753,-0.1951,-0.9061,-0.3753,-0.1951,-0.9061,-0.3536,-0.3827,-0.8536,-0.1802,-0.3827,-0.9061,0.0,-0.3827,-0.9239,0.0,-0.1951,-0.9808,-0.1913,-0.1951,-0.9619,-0.1913,-0.1951,-0.9619,-0.1802,-0.3827,-0.9061,0.0,-0.3827,-0.9239,-0.1622,-0.5556,0.8155,-0.1802,-0.3827,0.9061,0.0,-0.3827,0.9239,0.0,-0.3827,0.9239,0.0,-0.5556,0.8315,-0.1622,-0.5556,0.8155,-0.3182,-0.5556,0.7682,-0.3536,-0.3827,0.8536,-0.1802,-0.3827,0.9061,-0.1802,-0.3827,0.9061,-0.1622,-0.5556,0.8155,-0.3182,-0.5556,0.7682,-0.4619,-0.5556,0.6913,-0.5133,-0.3827,0.7682,-0.3536,-0.3827,0.8536,-0.3536,-0.3827,0.8536,-0.3182,-0.5556,0.7682,-0.4619,-0.5556,0.6913,-0.5879,-0.5556,0.5879,-0.6533,-0.3827,0.6533,-0.5133,-0.3827,0.7682,-0.5133,-0.3827,0.7682,-0.4619,-0.5556,0.6913,-0.5879,-0.5556,0.5879,-0.6913,-0.5556,0.4619,-0.7682,-0.3827,0.5133,-0.6533,-0.3827,0.6533,-0.6533,-0.3827,0.6533,-0.5879,-0.5556,0.5879,-0.6913,-0.5556,0.4619,-0.7682,-0.5556,0.3182,-0.8536,-0.3827,0.3536,-0.7682,-0.3827,0.5133,-0.7682,-0.3827,0.5133,-0.6913,-0.5556,0.4619,-0.7682,-0.5556,0.3182,-0.8155,-0.5556,0.1622,-0.9061,-0.3827,0.1802,-0.8536,-0.3827,0.3536,-0.8536,-0.3827,0.3536,-0.7682,-0.5556,0.3182,-0.8155,-0.5556,0.1622,-0.8315,-0.5556,0.0,-0.9239,-0.3827,0.0,-0.9061,-0.3827,0.1802,-0.9061,-0.3827,0.1802,-0.8155,-0.5556,0.1622,-0.8315,-0.5556,0.0,-0.8155,-0.5556,-0.1622,-0.9061,-0.3827,-0.1802,-0.9239,-0.3827,0.0,-0.9239,-0.3827,0.0,-0.8315,-0.5556,0.0,-0.8155,-0.5556,-0.1622,-0.7682,-0.5556,-0.3182,-0.8536,-0.3827,-0.3536,-0.9061,-0.3827,-0.1802,-0.9061,-0.3827,-0.1802,-0.8155,-0.5556,-0.1622,-0.7682,-0.5556,-0.3182,-0.6913,-0.5556,-0.4619,-0.7682,-0.3827,-0.5133,-0.8536,-0.3827,-0.3536,-0.8536,-0.3827,-0.3536,-0.7682,-0.5556,-0.3182,-0.6913,-0.5556,-0.4619,-0.5879,-0.5556,-0.5879,-0.6533,-0.3827,-0.6533,-0.7682,-0.3827,-0.5133,-0.7682,-0.3827,-0.5133,-0.6913,-0.5556,-0.4619,-0.5879,-0.5556,-0.5879,-0.4619,-0.5556,-0.6913,-0.5133,-0.3827,-0.7682,-0.6533,-0.3827,-0.6533,-0.6533,-0.3827,-0.6533,-0.5879,-0.5556,-0.5879,-0.4619,-0.5556,-0.6913,-0.3182,-0.5556,-0.7682,-0.3536,-0.3827,-0.8536,-0.5133,-0.3827,-0.7682,-0.5133,-0.3827,-0.7682,-0.4619,-0.5556,-0.6913,-0.3182,-0.5556,-0.7682,-0.1622,-0.5556,-0.8155,-0.1802,-0.3827,-0.9061,-0.3536,-0.3827,-0.8536,-0.3536,-0.3827,-0.8536,-0.3182,-0.5556,-0.7682,-0.1622,-0.5556,-0.8155,0.0,-0.5556,-0.8315,0.0,-0.3827,-0.9239,-0.1802,-0.3827,-0.9061,-0.1802,-0.3827,-0.9061,-0.1622,-0.5556,-0.8155,0.0,-0.5556,-0.8315,-0.1379,-0.7071,0.6935,-0.1622,-0.5556,0.8155,0.0,-0.5556,0.8315,0.0,-0.5556,0.8315,0.0,-0.7071,0.7071,-0.1379,-0.7071,0.6935,-0.2706,-0.7071,0.6533,-0.3182,-0.5556,0.7682,-0.1622,-0.5556,0.8155,-0.1622,-0.5556,0.8155,-0.1379,-0.7071,0.6935,-0.2706,-0.7071,0.6533,-0.3928,-0.7071,0.5879,-0.4619,-0.5556,0.6913,-0.3182,-0.5556,0.7682,-0.3182,-0.5556,0.7682,-0.2706,-0.7071,0.6533,-0.3928,-0.7071,0.5879,-0.5,-0.7071,0.5,-0.5879,-0.5556,0.5879,-0.4619,-0.5556,0.6913,-0.4619,-0.5556,0.6913,-0.3928,-0.7071,0.5879,-0.5,-0.7071,0.5,-0.5879,-0.7071,0.3928,-0.6913,-0.5556,0.4619,-0.5879,-0.5556,0.5879,-0.5879,-0.5556,0.5879,-0.5,-0.7071,0.5,-0.5879,-0.7071,0.3928,-0.6533,-0.7071,0.2706,-0.7682,-0.5556,0.3182,-0.6913,-0.5556,0.4619,-0.6913,-0.5556,0.4619,-0.5879,-0.7071,0.3928,-0.6533,-0.7071,0.2706,-0.6935,-0.7071,0.1379,-0.8155,-0.5556,0.1622,-0.7682,-0.5556,0.3182,-0.7682,-0.5556,0.3182,-0.6533,-0.7071,0.2706,-0.6935,-0.7071,0.1379,-0.7071,-0.7071,0.0,-0.8315,-0.5556,0.0,-0.8155,-0.5556,0.1622,-0.8155,-0.5556,0.1622,-0.6935,-0.7071,0.1379,-0.7071,-0.7071,0.0,-0.6935,-0.7071,-0.1379,-0.8155,-0.5556,-0.1622,-0.8315,-0.5556,0.0,-0.8315,-0.5556,0.0,-0.7071,-0.7071,0.0,-0.6935,-0.7071,-0.1379,-0.6533,-0.7071,-0.2706,-0.7682,-0.5556,-0.3182,-0.8155,-0.5556,-0.1622,-0.8155,-0.5556,-0.1622,-0.6935,-0.7071,-0.1379,-0.6533,-0.7071,-0.2706,-0.5879,-0.7071,-0.3928,-0.6913,-0.5556,-0.4619,-0.7682,-0.5556,-0.3182,-0.7682,-0.5556,-0.3182,-0.6533,-0.7071,-0.2706,-0.5879,-0.7071,-0.3928,-0.5,-0.7071,-0.5,-0.5879,-0.5556,-0.5879,-0.6913,-0.5556,-0.4619,-0.6913,-0.5556,-0.4619,-0.5879,-0.7071,-0.3928,-0.5,-0.7071,-0.5,-0.3928,-0.7071,-0.5879,-0.4619,-0.5556,-0.6913,-0.5879,-0.5556,-0.5879,-0.5879,-0.5556,-0.5879,-0.5,-0.7071,-0.5,-0.3928,-0.7071,-0.5879,-0.2706,-0.7071,-0.6533,-0.3182,-0.5556,-0.7682,-0.4619,-0.5556,-0.6913,-0.4619,-0.5556,-0.6913,-0.3928,-0.7071,-0.5879,-0.2706,-0.7071,-0.6533,-0.1379,-0.7071,-0.6935,-0.1622,-0.5556,-0.8155,-0.3182,-0.5556,-0.7682,-0.3182,-0.5556,-0.7682,-0.2706,-0.7071,-0.6533,-0.1379,-0.7071,-0.6935,0.0,-0.7071,-0.7071,0.0,-0.5556,-0.8315,-0.1622,-0.5556,-0.8155,-0.1622,-0.5556,-0.8155,-0.1379,-0.7071,-0.6935,0.0,-0.7071,-0.7071,-0.1084,-0.8315,0.5449,-0.1379,-0.7071,0.6935,0.0,-0.7071,0.7071,0.0,-0.7071,0.7071,0.0,-0.8315,0.5556,-0.1084,-0.8315,0.5449,-0.2126,-0.8315,0.5133,-0.2706,-0.7071,0.6533,-0.1379,-0.7071,0.6935,-0.1379,-0.7071,0.6935,-0.1084,-0.8315,0.5449,-0.2126,-0.8315,0.5133,-0.3087,-0.8315,0.4619,-0.3928,-0.7071,0.5879,-0.2706,-0.7071,0.6533,-0.2706,-0.7071,0.6533,-0.2126,-0.8315,0.5133,-0.3087,-0.8315,0.4619,-0.3928,-0.8315,0.3928,-0.5,-0.7071,0.5,-0.3928,-0.7071,0.5879,-0.3928,-0.7071,0.5879,-0.3087,-0.8315,0.4619,-0.3928,-0.8315,0.3928,-0.4619,-0.8315,0.3087,-0.5879,-0.7071,0.3928,-0.5,-0.7071,0.5,-0.5,-0.7071,0.5,-0.3928,-0.8315,0.3928,-0.4619,-0.8315,0.3087,-0.5133,-0.8315,0.2126,-0.6533,-0.7071,0.2706,-0.5879,-0.7071,0.3928,-0.5879,-0.7071,0.3928,-0.4619,-0.8315,0.3087,-0.5133,-0.8315,0.2126,-0.5449,-0.8315,0.1084,-0.6935,-0.7071,0.1379,-0.6533,-0.7071,0.2706,-0.6533,-0.7071,0.2706,-0.5133,-0.8315,0.2126,-0.5449,-0.8315,0.1084,-0.5556,-0.8315,0.0,-0.7071,-0.7071,0.0,-0.6935,-0.7071,0.1379,-0.6935,-0.7071,0.1379,-0.5449,-0.8315,0.1084,-0.5556,-0.8315,0.0,-0.5449,-0.8315,-0.1084,-0.6935,-0.7071,-0.1379,-0.7071,-0.7071,0.0,-0.7071,-0.7071,0.0,-0.5556,-0.8315,0.0,-0.5449,-0.8315,-0.1084,-0.5133,-0.8315,-0.2126,-0.6533,-0.7071,-0.2706,-0.6935,-0.7071,-0.1379,-0.6935,-0.7071,-0.1379,-0.5449,-0.8315,-0.1084,-0.5133,-0.8315,-0.2126,-0.4619,-0.8315,-0.3087,-0.5879,-0.7071,-0.3928,-0.6533,-0.7071,-0.2706,-0.6533,-0.7071,-0.2706,-0.5133,-0.8315,-0.2126,-0.4619,-0.8315,-0.3087,-0.3928,-0.8315,-0.3928,-0.5,-0.7071,-0.5,-0.5879,-0.7071,-0.3928,-0.5879,-0.7071,-0.3928,-0.4619,-0.8315,-0.3087,-0.3928,-0.8315,-0.3928,-0.3087,-0.8315,-0.4619,-0.3928,-0.7071,-0.5879,-0.5,-0.7071,-0.5,-0.5,-0.7071,-0.5,-0.3928,-0.8315,-0.3928,-0.3087,-0.8315,-0.4619,-0.2126,-0.8315,-0.5133,-0.2706,-0.7071,-0.6533,-0.3928,-0.7071,-0.5879,-0.3928,-0.7071,-0.5879,-0.3087,-0.8315,-0.4619,-0.2126,-0.8315,-0.5133,-0.1084,-0.8315,-0.5449,-0.1379,-0.7071,-0.6935,-0.2706,-0.7071,-0.6533,-0.2706,-0.7071,-0.6533,-0.2126,-0.8315,-0.5133,-0.1084,-0.8315,-0.5449,0.0,-0.8315,-0.5556,0.0,-0.7071,-0.7071,-0.1379,-0.7071,-0.6935,-0.1379,-0.7071,-0.6935,-0.1084,-0.8315,-0.5449,0.0,-0.8315,-0.5556,-0.0747,-0.9239,0.3753,-0.1084,-0.8315,0.5449,0.0,-0.8315,0.5556,0.0,-0.8315,0.5556,0.0,-0.9239,0.3827,-0.0747,-0.9239,0.3753,-0.1464,-0.9239,0.3536,-0.2126,-0.8315,0.5133,-0.1084,-0.8315,0.5449,-0.1084,-0.8315,0.5449,-0.0747,-0.9239,0.3753,-0.1464,-0.9239,0.3536,-0.2126,-0.9239,0.3182,-0.3087,-0.8315,0.4619,-0.2126,-0.8315,0.5133,-0.2126,-0.8315,0.5133,-0.1464,-0.9239,0.3536,-0.2126,-0.9239,0.3182,-0.2706,-0.9239,0.2706,-0.3928,-0.8315,0.3928,-0.3087,-0.8315,0.4619,-0.3087,-0.8315,0.4619,-0.2126,-0.9239,0.3182,-0.2706,-0.9239,0.2706,-0.3182,-0.9239,0.2126,-0.4619,-0.8315,0.3087,-0.3928,-0.8315,0.3928,-0.3928,-0.8315,0.3928,-0.2706,-0.9239,0.2706,-0.3182,-0.9239,0.2126,-0.3536,-0.9239,0.1464,-0.5133,-0.8315,0.2126,-0.4619,-0.8315,0.3087,-0.4619,-0.8315,0.3087,-0.3182,-0.9239,0.2126,-0.3536,-0.9239,0.1464,-0.3753,-0.9239,0.0747,-0.5449,-0.8315,0.1084,-0.5133,-0.8315,0.2126,-0.5133,-0.8315,0.2126,-0.3536,-0.9239,0.1464,-0.3753,-0.9239,0.0747,-0.3827,-0.9239,0.0,-0.5556,-0.8315,0.0,-0.5449,-0.8315,0.1084,-0.5449,-0.8315,0.1084,-0.3753,-0.9239,0.0747,-0.3827,-0.9239,0.0,-0.3753,-0.9239,-0.0747,-0.5449,-0.8315,-0.1084,-0.5556,-0.8315,0.0,-0.5556,-0.8315,0.0,-0.3827,-0.9239,0.0,-0.3753,-0.9239,-0.0747,-0.3536,-0.9239,-0.1464,-0.5133,-0.8315,-0.2126,-0.5449,-0.8315,-0.1084,-0.5449,-0.8315,-0.1084,-0.3753,-0.9239,-0.0747,-0.3536,-0.9239,-0.1464,-0.3182,-0.9239,-0.2126,-0.4619,-0.8315,-0.3087,-0.5133,-0.8315,-0.2126,-0.5133,-0.8315,-0.2126,-0.3536,-0.9239,-0.1464,-0.3182,-0.9239,-0.2126,-0.2706,-0.9239,-0.2706,-0.3928,-0.8315,-0.3928,-0.4619,-0.8315,-0.3087,-0.4619,-0.8315,-0.3087,-0.3182,-0.9239,-0.2126,-0.2706,-0.9239,-0.2706,-0.2126,-0.9239,-0.3182,-0.3087,-0.8315,-0.4619,-0.3928,-0.8315,-0.3928,-0.3928,-0.8315,-0.3928,-0.2706,-0.9239,-0.2706,-0.2126,-0.9239,-0.3182,-0.1464,-0.9239,-0.3536,-0.2126,-0.8315,-0.5133,-0.3087,-0.8315,-0.4619,-0.3087,-0.8315,-0.4619,-0.2126,-0.9239,-0.3182,-0.1464,-0.9239,-0.3536,-0.0747,-0.9239,-0.3753,-0.1084,-0.8315,-0.5449,-0.2126,-0.8315,-0.5133,-0.2126,-0.8315,-0.5133,-0.1464,-0.9239,-0.3536,-0.0747,-0.9239,-0.3753,0.0,-0.9239,-0.3827,0.0,-0.8315,-0.5556,-0.1084,-0.8315,-0.5449,-0.1084,-0.8315,-0.5449,-0.0747,-0.9239,-0.3753,0.0,-0.9239,-0.3827,-0.0381,-0.9808,0.1913,-0.0747,-0.9239,0.3753,0.0,-0.9239,0.3827,0.0,-0.9239,0.3827,0.0,-0.9808,0.1951,-0.0381,-0.9808,0.1913,-0.0747,-0.9808,0.1802,-0.1464,-0.9239,0.3536,-0.0747,-0.9239,0.3753,-0.0747,-0.9239,0.3753,-0.0381,-0.9808,0.1913,-0.0747,-0.9808,0.1802,-0.1084,-0.9808,0.1622,-0.2126,-0.9239,0.3182,-0.1464,-0.9239,0.3536,-0.1464,-0.9239,0.3536,-0.0747,-0.9808,0.1802,-0.1084,-0.9808,0.1622,-0.1379,-0.9808,0.1379,-0.2706,-0.9239,0.2706,-0.2126,-0.9239,0.3182,-0.2126,-0.9239,0.3182,-0.1084,-0.9808,0.1622,-0.1379,-0.9808,0.1379,-0.1622,-0.9808,0.1084,-0.3182,-0.9239,0.2126,-0.2706,-0.9239,0.2706,-0.2706,-0.9239,0.2706,-0.1379,-0.9808,0.1379,-0.1622,-0.9808,0.1084,-0.1802,-0.9808,0.0747,-0.3536,-0.9239,0.1464,-0.3182,-0.9239,0.2126,-0.3182,-0.9239,0.2126,-0.1622,-0.9808,0.1084,-0.1802,-0.9808,0.0747,-0.1913,-0.9808,0.0381,-0.3753,-0.9239,0.0747,-0.3536,-0.9239,0.1464,-0.3536,-0.9239,0.1464,-0.1802,-0.9808,0.0747,-0.1913,-0.9808,0.0381,-0.1951,-0.9808,0.0,-0.3827,-0.9239,0.0,-0.3753,-0.9239,0.0747,-0.3753,-0.9239,0.0747,-0.1913,-0.9808,0.0381,-0.1951,-0.9808,0.0,-0.1913,-0.9808,-0.0381,-0.3753,-0.9239,-0.0747,-0.3827,-0.9239,0.0,-0.3827,-0.9239,0.0,-0.1951,-0.9808,0.0,-0.1913,-0.9808,-0.0381,-0.1802,-0.9808,-0.0747,-0.3536,-0.9239,-0.1464,-0.3753,-0.9239,-0.0747,-0.3753,-0.9239,-0.0747,-0.1913,-0.9808,-0.0381,-0.1802,-0.9808,-0.0747,-0.1622,-0.9808,-0.1084,-0.3182,-0.9239,-0.2126,-0.3536,-0.9239,-0.1464,-0.3536,-0.9239,-0.1464,-0.1802,-0.9808,-0.0747,-0.1622,-0.9808,-0.1084,-0.1379,-0.9808,-0.1379,-0.2706,-0.9239,-0.2706,-0.3182,-0.9239,-0.2126,-0.3182,-0.9239,-0.2126,-0.1622,-0.9808,-0.1084,-0.1379,-0.9808,-0.1379,-0.1084,-0.9808,-0.1622,-0.2126,-0.9239,-0.3182,-0.2706,-0.9239,-0.2706,-0.2706,-0.9239,-0.2706,-0.1379,-0.9808,-0.1379,-0.1084,-0.9808,-0.1622,-0.0747,-0.9808,-0.1802,-0.1464,-0.9239,-0.3536,-0.2126,-0.9239,-0.3182,-0.2126,-0.9239,-0.3182,-0.1084,-0.9808,-0.1622,-0.0747,-0.9808,-0.1802,-0.0381,-0.9808,-0.1913,-0.0747,-0.9239,-0.3753,-0.1464,-0.9239,-0.3536,-0.1464,-0.9239,-0.3536,-0.0747,-0.9808,-0.1802,-0.0381,-0.9808,-0.1913,0.0,-0.9808,-0.1951,0.0,-0.9239,-0.3827,-0.0747,-0.9239,-0.3753,-0.0747,-0.9239,-0.3753,-0.0381,-0.9808,-0.1913,0.0,-0.9808,-0.1951,0.0,-1.0,0.0,-0.0381,-0.9808,0.1913,0.0,-0.9808,0.1951,0.0,-1.0,0.0,-0.0747,-0.9808,0.1802,-0.0381,-0.9808,0.1913,0.0,-1.0,0.0,-0.1084,-0.9808,0.1622,-0.0747,-0.9808,0.1802,0.0,-1.0,0.0,-0.1379,-0.9808,0.1379,-0.1084,-0.9808,0.1622,0.0,-1.0,0.0,-0.1622,-0.9808,0.1084,-0.1379,-0.9808,0.1379,0.0,-1.0,0.0,-0.1802,-0.9808,0.0747,-0.1622,-0.9808,0.1084,0.0,-1.0,0.0,-0.1913,-0.9808,0.0381,-0.1802,-0.9808,0.0747,0.0,-1.0,0.0,-0.1951,-0.9808,0.0,-0.1913,-0.9808,0.0381,0.0,-1.0,0.0,-0.1913,-0.9808,-0.0381,-0.1951,-0.9808,0.0,0.0,-1.0,0.0,-0.1802,-0.9808,-0.0747,-0.1913,-0.9808,-0.0381,0.0,-1.0,0.0,-0.1622,-0.9808,-0.1084,-0.1802,-0.9808,-0.0747,0.0,-1.0,0.0,-0.1379,-0.9808,-0.1379,-0.1622,-0.9808,-0.1084,0.0,-1.0,0.0,-0.1084,-0.9808,-0.1622,-0.1379,-0.9808,-0.1379,0.0,-1.0,0.0,-0.0747,-0.9808,-0.1802,-0.1084,-0.9808,-0.1622,0.0,-1.0,0.0,-0.0381,-0.9808,-0.1913,-0.0747,-0.9808,-0.1802,0.0,-1.0,0.0,0.0,-0.9808,-0.1951,-0.0381,-0.9808,-0.1913],"normals":[-0.063,0.998,0.0,-0.0198,0.9794,0.2009,-0.0392,0.9796,0.1971,-0.063,0.998,0.0,-0.0392,0.9796,0.1971,-0.0769,0.9796,0.1857,-0.063,0.998,0.0,-0.0769,0.9796,0.1857,-0.1117,0.9796,0.1671,-0.063,0.998,0.0,-0.1117,0.9796,0.1671,-0.1421,0.9796,0.1421,-0.063,0.998,0.0,-0.1421,0.9796,0.1421,-0.1671,0.9796,0.1117,-0.063,0.998,0.0,-0.1671,0.9796,0.1117,-0.1857,0.9796,0.0769,-0.063,0.998,0.0,-0.1857,0.9796,0.0769,-0.1971,0.9796,0.0392,-0.063,0.998,0.0,-0.1971,0.9796,0.0392,-0.201,0.9796,0.0,-0.063,0.998,0.0,-0.201,0.9796,0.0,-0.1971,0.9796,-0.0392,-0.063,0.998,0.0,-0.1971,0.9796,-0.0392,-0.1857,0.9796,-0.0769,-0.063,0.998,0.0,-0.1857,0.9796,-0.0769,-0.1671,0.9796,-0.1117,-0.063,0.998,0.0,-0.1671,0.9796,-0.1117,-0.1421,0.9796,-0.1421,-0.063,0.998,0.0,-0.1421,0.9796,-0.1421,-0.1117,0.9796,-0.1671,-0.063,0.998,0.0,-0.1117,0.9796,-0.1671,-0.0769,0.9796,-0.1857,-0.063,0.998,0.0,-0.0769,0.9796,-0.1857,-0.0392,0.9796,-0.1971,-0.063,0.998,0.0,-0.0392,0.9796,-0.1971,-0.0198,0.9794,-0.2009,-0.0757,0.9217,0.3804,-0.0392,0.9796,0.1971,-0.0198,0.9794,0.2009,-0.0198,0.9794,0.2009,-0.0382,0.921,0.3876,-0.0757,0.9217,0.3804,-0.1484,0.9217,0.3584,-0.0769,0.9796,0.1857,-0.0392,0.9796,0.1971,-0.0392,0.9796,0.1971,-0.0757,0.9217,0.3804,-0.1484,0.9217,0.3584,-0.2155,0.9217,0.3225,-0.1117,0.9796,0.1671,-0.0769,0.9796,0.1857,-0.0769,0.9796,0.1857,-0.1484,0.9217,0.3584,-0.2155,0.9217,0.3225,-0.2743,0.9217,0.2743,-0.1421,0.9796,0.1421,-0.1117,0.9796,0.1671,-0.1117,0.9796,0.1671,-0.2155,0.9217,0.3225,-0.2743,0.9217,0.2743,-0.3225,0.9217,0.2155,-0.1671,0.9796,0.1117,-0.1421,0.9796,0.1421,-0.1421,0.9796,0.1421,-0.2743,0.9217,0.2743,-0.3225,0.9217,0.2155,-0.3584,0.9217,0.1484,-0.1857,0.9796,0.0769,-0.1671,0.9796,0.1117,-0.1671,0.9796,0.1117,-0.3225,0.9217,0.2155,-0.3584,0.9217,0.1484,-0.3804,0.9217,0.0757,-0.1971,0.9796,0.0392,-0.1857,0.9796,0.0769,-0.1857,0.9796,0.0769,-0.3584,0.9217,0.1484,-0.3804,0.9217,0.0757,-0.3879,0.9217,0.0,-0.201,0.9796,0.0,-0.1971,0.9796,0.0392,-0.1971,0.9796,0.0392,-0.3804,0.9217,0.0757,-0.3879,0.9217,0.0,-0.3804,0.9217,-0.0757,-0.1971,0.9796,-0.0392,-0.201,0.9796,0.0,-0.201,0.9796,0.0,-0.3879,0.9217,0.0,-0.3804,0.9217,-0.0757,-0.3584,0.9217,-0.1484,-0.1857,0.9796,-0.0769,-0.1971,0.9796,-0.0392,-0.1971,0.9796,-0.0392,-0.3804,0.9217,-0.0757,-0.3584,0.9217,-0.1484,-0.3225,0.9217,-0.2155,-0.1671,0.9796,-0.1117,-0.1857,0.9796,-0.0769,-0.1857,0.9796,-0.0769,-0.3584,0.9217,-0.1484,-0.3225,0.9217,-0.2155,-0.2743,0.9217,-0.2743,-0.1421,0.9796,-0.1421,-0.1671,0.9796,-0.1117,-0.1671,0.9796,-0.1117,-0.3225,0.9217,-0.2155,-0.2743,0.9217,-0.2743,-0.2155,0.9217,-0.3225,-0.1117,0.9796,-0.1671,-0.1421,0.9796,-0.1421,-0.1421,0.9796,-0.1421,-0.2743,0.9217,-0.2743,-0.2155,0.9217,-0.3225,-0.1484,0.9217,-0.3584,-0.0769,0.9796,-0.1857,-0.1117,0.9796,-0.1671,-0.1117,0.9796,-0.1671,-0.2155,0.9217,-0.3225,-0.1484,0.9217,-0.3584,-0.0757,0.9217,-0.3804,-0.0392,0.9796,-0.1971,-0.0769,0.9796,-0.1857,-0.0769,0.9796,-0.1857,-0.1484,0.9217,-0.3584,-0.0757,0.9217,-0.3804,-0.0382,0.921,-0.3876,-0.0198,0.9794,-0.2009,-0.0392,0.9796,-0.1971,-0.0392,0.9796,-0.1971,-0.0757,0.9217,-0.3804,-0.0382,0.921,-0.3876,-0.1092,0.8286,0.549,-0.0757,0.9217,0.3804,-0.0382,0.921,0.3876,-0.0382,0.921,0.3876,-0.055,0.8274,0.5589,-0.1092,0.8286,0.549,-0.2142,0.8286,0.5172,-0.1484,0.9217,0.3584,-0.0757,0.9217,0.3804,-0.0757,0.9217,0.3804,-0.1092,0.8286,0.549,-0.2142,0.8286,0.5172,-0.311,0.8286,0.4654,-0.2155,0.9217,0.3225,-0.1484,0.9217,0.3584,-0.1484,0.9217,0.3584,-0.2142,0.8286,0.5172,-0.311,0.8286,0.4654,-0.3958,0.8286,0.3958,-0.2743,0.9217,0.2743,-0.2155,0.9217,0.3225,-0.2155,0.9217,0.3225,-0.311,0.8286,0.4654,-0.3958,0.8286,0.3958,-0.4654,0.8286,0.311,-0.3225,0.9217,0.2155,-0.2743,0.9217,0.2743,-0.2743,0.9217,0.2743,-0.3958,0.8286,0.3958,-0.4654,0.8286,0.311,-0.5172,0.8286,0.2142,-0.3584,0.9217,0.1484,-0.3225,0.9217,0.2155,-0.3225,0.9217,0.2155,-0.4654,0.8286,0.311,-0.5172,0.8286,0.2142,-0.549,0.8286,0.1092,-0.3804,0.9217,0.0757,-0.3584,0.9217,0.1484,-0.3584,0.9217,0.1484,-0.5172,0.8286,0.2142,-0.549,0.8286,0.1092,-0.5598,0.8286,0.0,-0.3879,0.9217,0.0,-0.3804,0.9217,0.0757,-0.3804,0.9217,0.0757,-0.549,0.8286,0.1092,-0.5598,0.8286,0.0,-0.549,0.8286,-0.1092,-0.3804,0.9217,-0.0757,-0.3879,0.9217,0.0,-0.3879,0.9217,0.0,-0.5598,0.8286,0.0,-0.549,0.8286,-0.1092,-0.5172,0.8286,-0.2142,-0.3584,0.9217,-0.1484,-0.3804,0.9217,-0.0757,-0.3804,0.9217,-0.0757,-0.549,0.8286,-0.1092,-0.5172,0.8286,-0.2142,-0.4654,0.8286,-0.311,-0.3225,0.9217,-0.2155,-0.3584,0.9217,-0.1484,-0.3584,0.9217,-0.1484,-0.5172,0.8286,-0.2142,-0.4654,0.8286,-0.311,-0.3958,0.8286,-0.3958,-0.2743,0.9217,-0.2743,-0.3225,0.9217,-0.2155,-0.3225,0.9217,-0.2155,-0.4654,0.8286,-0.311,-0.3958,0.8286,-0.3958,-0.311,0.8286,-0.4654,-0.2155,0.9217,-0.3225,-0.2743,0.9217,-0.2743,-0.2743,0.9217,-0.2743,-0.3958,0.8286,-0.3958,-0.311,0.8286,-0.4654,-0.2142,0.8286,-0.5172,-0.1484,0.9217,-0.3584,-0.2155,0.9217,-0.3225,-0.2155,0.9217,-0.3225,-0.311,0.8286,-0.4654,-0.2142,0.8286,-0.5172,-0.1092,0.8286,-0.549,-0.0757,0.9217,-0.3804,-0.1484,0.9217,-0.3584,-0.1484,0.9217,-0.3584,-0.2142,0.8286,-0.5172,-0.1092,0.8286,-0.549,-0.055,0.8274,-0.5589,-0.0382,0.921,-0.3876,-0.0757,0.9217,-0.3804,-0.0757,0.9217,-0.3804,-0.1092,0.8286,-0.549,-0.055,0.8274,-0.5589,-0.1385,0.7041,0.6965,-0.1092,0.8286,0.549,-0.055,0.8274,0.5589,-0.055,0.8274,0.5589,-0.0698,0.7023,0.7084,-0.1385,0.7041,0.6965,-0.2718,0.7041,0.6561,-0.2142,0.8286,0.5172,-0.1092,0.8286,0.549,-0.1092,0.8286,0.549,-0.1385,0.7041,0.6965,-0.2718,0.7041,0.6561,-0.3945,0.7041,0.5905,-0.311,0.8286,0.4654,-0.2142,0.8286,0.5172,-0.2142,0.8286,0.5172,-0.2718,0.7041,0.6561,-0.3945,0.7041,0.5905,-0.5021,0.7041,0.5021,-0.3958,0.8286,0.3958,-0.311,0.8286,0.4654,-0.311,0.8286,0.4654,-0.3945,0.7041,0.5905,-0.5021,0.7041,0.5021,-0.5905,0.7041,0.3945,-0.4654,0.8286,0.311,-0.3958,0.8286,0.3958,-0.3958,0.8286,0.3958,-0.5021,0.7041,0.5021,-0.5905,0.7041,0.3945,-0.6561,0.7041,0.2718,-0.5172,0.8286,0.2142,-0.4654,0.8286,0.311,-0.4654,0.8286,0.311,-0.5905,0.7041,0.3945,-0.6561,0.7041,0.2718,-0.6965,0.7041,0.1385,-0.549,0.8286,0.1092,-0.5172,0.8286,0.2142,-0.5172,0.8286,0.2142,-0.6561,0.7041,0.2718,-0.6965,0.7041,0.1385,-0.7101,0.7041,0.0,-0.5598,0.8286,0.0,-0.549,0.8286,0.1092,-0.549,0.8286,0.1092,-0.6965,0.7041,0.1385,-0.7101,0.7041,0.0,-0.6965,0.7041,-0.1385,-0.549,0.8286,-0.1092,-0.5598,0.8286,0.0,-0.5598,0.8286,0.0,-0.7101,0.7041,0.0,-0.6965,0.7041,-0.1385,-0.6561,0.7041,-0.2718,-0.5172,0.8286,-0.2142,-0.549,0.8286,-0.1092,-0.549,0.8286,-0.1092,-0.6965,0.7041,-0.1385,-0.6561,0.7041,-0.2718,-0.5905,0.7041,-0.3945,-0.4654,0.8286,-0.311,-0.5172,0.8286,-0.2142,-0.5172,0.8286,-0.2142,-0.6561,0.7041,-0.2718,-0.5905,0.7041,-0.3945,-0.5021,0.7041,-0.5021,-0.3958,0.8286,-0.3958,-0.4654,0.8286,-0.311,-0.4654,0.8286,-0.311,-0.5905,0.7041,-0.3945,-0.5021,0.7041,-0.5021,-0.3945,0.7041,-0.5905,-0.311,0.8286,-0.4654,-0.3958,0.8286,-0.3958,-0.3958,0.8286,-0.3958,-0.5021,0.7041,-0.5021,-0.3945,0.7041,-0.5905,-0.2718,0.7041,-0.6561,-0.2142,0.8286,-0.5172,-0.311,0.8286,-0.4654,-0.311,0.8286,-0.4654,-0.3945,0.7041,-0.5905,-0.2718,0.7041,-0.6561,-0.1385,0.7041,-0.6965,-0.1092,0.8286,-0.549,-0.2142,0.8286,-0.5172,-0.2142,0.8286,-0.5172,-0.2718,0.7041,-0.6561,-0.1385,0.7041,-0.6965,-0.0698,0.7023,-0.7084,-0.055,0.8274,-0.5589,-0.1092,0.8286,-0.549,-0.1092,0.8286,-0.549,-0.1385,0.7041,-0.6965,-0.0698,0.7023,-0.7084,-0.1626,0.5528,0.8173,-0.1385,0.7041,0.6965,-0.0698,0.7023,0.7084,-0.0698,0.7023,0.7084,-0.0818,0.5509,0.8305,-0.1626,0.5528,0.8173,-0.3189,0.5528,0.7699,-0.2718,0.7041,0.6561,-0.1385,0.7041,0.6965,-0.1385,0.7041,0.6965,-0.1626,0.5528,0.8173,-0.3189,0.5528,0.7699,-0.463,0.5528,0.6929,-0.3945,0.7041,0.5905,-0.2718,0.7041,0.6561,-0.2718,0.7041,0.6561,-0.3189,0.5528,0.7699,-0.463,0.5528,0.6929,-0.5893,0.5528,0.5893,-0.5021,0.7041,0.5021,-0.3945,0.7041,0.5905,-0.3945,0.7041,0.5905,-0.463,0.5528,0.6929,-0.5893,0.5528,0.5893,-0.6929,0.5528,0.463,-0.5905,0.7041,0.3945,-0.5021,0.7041,0.5021,-0.5021,0.7041,0.5021,-0.5893,0.5528,0.5893,-0.6929,0.5528,0.463,-0.7699,0.5528,0.3189,-0.6561,0.7041,0.2718,-0.5905,0.7041,0.3945,-0.5905,0.7041,0.3945,-0.6929,0.5528,0.463,-0.7699,0.5528,0.3189,-0.8173,0.5528,0.1626,-0.6965,0.7041,0.1385,-0.6561,0.7041,0.2718,-0.6561,0.7041,0.2718,-0.7699,0.5528,0.3189,-0.8173,0.5528,0.1626,-0.8333,0.5528,0.0,-0.7101,0.7041,0.0,-0.6965,0.7041,0.1385,-0.6965,0.7041,0.1385,-0.8173,0.5528,0.1626,-0.8333,0.5528,0.0,-0.8173,0.5528,-0.1626,-0.6965,0.7041,-0.1385,-0.7101,0.7041,0.0,-0.7101,0.7041,0.0,-0.8333,0.5528,0.0,-0.8173,0.5528,-0.1626,-0.7699,0.5528,-0.3189,-0.6561,0.7041,-0.2718,-0.6965,0.7041,-0.1385,-0.6965,0.7041,-0.1385,-0.8173,0.5528,-0.1626,-0.7699,0.5528,-0.3189,-0.6929,0.5528,-0.463,-0.5905,0.7041,-0.3945,-0.6561,0.7041,-0.2718,-0.6561,0.7041,-0.2718,-0.7699,0.5528,-0.3189,-0.6929,0.5528,-0.463,-0.5893,0.5528,-0.5893,-0.5021,0.7041,-0.5021,-0.5905,0.7041,-0.3945,-0.5905,0.7041,-0.3945,-0.6929,0.5528,-0.463,-0.5893,0.5528,-0.5893,-0.463,0.5528,-0.6929,-0.3945,0.7041,-0.5905,-0.5021,0.7041,-0.5021,-0.5021,0.7041,-0.5021,-0.5893,0.5528,-0.5893,-0.463,0.5528,-0.6929,-0.3189,0.5528,-0.7699,-0.2718,0.7041,-0.6561,-0.3945,0.7041,-0.5905,-0.3945,0.7041,-0.5905,-0.463,0.5528,-0.6929,-0.3189,0.5528,-0.7699,-0.1626,0.5528,-0.8173,-0.1385,0.7041,-0.6965,-0.2718,0.7041,-0.6561,-0.2718,0.7041,-0.6561,-0.3189,0.5528,-0.7699,-0.1626,0.5528,-0.8173,-0.0818,0.5509,-0.8305,-0.0698,0.7023,-0.7084,-0.1385,0.7041,-0.6965,-0.1385,0.7041,-0.6965,-0.1626,0.5528,-0.8173,-0.0818,0.5509,-0.8305,-0.1804,0.3805,0.907,-0.1626,0.5528,0.8173,-0.0818,0.5509,0.8305,-0.0818,0.5509,0.8305,-0.0907,0.379,0.921,-0.1804,0.3805,0.907,-0.3539,0.3805,0.8544,-0.3189,0.5528,0.7699,-0.1626,0.5528,0.8173,-0.1626,0.5528,0.8173,-0.1804,0.3805,0.907,-0.3539,0.3805,0.8544,-0.5138,0.3805,0.7689,-0.463,0.5528,0.6929,-0.3189,0.5528,0.7699,-0.3189,0.5528,0.7699,-0.3539,0.3805,0.8544,-0.5138,0.3805,0.7689,-0.6539,0.3805,0.6539,-0.5893,0.5528,0.5893,-0.463,0.5528,0.6929,-0.463,0.5528,0.6929,-0.5138,0.3805,0.7689,-0.6539,0.3805,0.6539,-0.7689,0.3805,0.5138,-0.6929,0.5528,0.463,-0.5893,0.5528,0.5893,-0.5893,0.5528,0.5893,-0.6539,0.3805,0.6539,-0.7689,0.3805,0.5138,-0.8544,0.3805,0.3539,-0.7699,0.5528,0.3189,-0.6929,0.5528,0.463,-0.6929,0.5528,0.463,-0.7689,0.3805,0.5138,-0.8544,0.3805,0.3539,-0.907,0.3805,0.1804,-0.8173,0.5528,0.1626,-0.7699,0.5528,0.3189,-0.7699,0.5528,0.3189,-0.8544,0.3805,0.3539,-0.907,0.3805,0.1804,-0.9248,0.3805,0.0,-0.8333,0.5528,0.0,-0.8173,0.5528,0.1626,-0.8173,0.5528,0.1626,-0.907,0.3805,0.1804,-0.9248,0.3805,0.0,-0.907,0.3805,-0.1804,-0.8173,0.5528,-0.1626,-0.8333,0.5528,0.0,-0.8333,0.5528,0.0,-0.9248,0.3805,0.0,-0.907,0.3805,-0.1804,-0.8544,0.3805,-0.3539,-0.7699,0.5528,-0.3189,-0.8173,0.5528,-0.1626,-0.8173,0.5528,-0.1626,-0.907,0.3805,-0.1804,-0.8544,0.3805,-0.3539,-0.7689,0.3805,-0.5138,-0.6929,0.5528,-0.463,-0.7699,0.5528,-0.3189,-0.7699,0.5528,-0.3189,-0.8544,0.3805,-0.3539,-0.7689,0.3805,-0.5138,-0.6539,0.3805,-0.6539,-0.5893,0.5528,-0.5893,-0.6929,0.5528,-0.463,-0.6929,0.5528,-0.463,-0.7689,0.3805,-0.5138,-0.6539,0.3805,-0.6539,-0.5138,0.3805,-0.7689,-0.463,0.5528,-0.6929,-0.5893,0.5528,-0.5893,-0.5893,0.5528,-0.5893,-0.6539,0.3805,-0.6539,-0.5138,0.3805,-0.7689,-0.3539,0.3805,-0.8544,-0.3189,0.5528,-0.7699,-0.463,0.5528,-0.6929,-0.463,0.5528,-0.6929,-0.5138,0.3805,-0.7689,-0.3539,0.3805,-0.8544,-0.1804,0.3805,-0.907,-0.1626,0.5528,-0.8173,-0.3189,0.5528,-0.7699,-0.3189,0.5528,-0.7699,-0.3539,0.3805,-0.8544,-0.1804,0.3805,-0.907,-0.0907,0.379,-0.921,-0.0818,0.5509,-0.8305,-0.1626,0.5528,-0.8173,-0.1626,0.5528,-0.8173,-0.1804,0.3805,-0.907,-0.0907,0.379,-0.921,-0.1914,0.1939,0.9622,-0.1804,0.3805,0.907,-0.0907,0.379,0.921,-0.0907,0.379,0.921,-0.0962,0.193,0.9765,-0.1914,0.1939,0.9622,-0.3754,0.1939,0.9063,-0.3539,0.3805,0.8544,-0.1804,0.3805,0.907,-0.1804,0.3805,0.907,-0.1914,0.1939,0.9622,-0.3754,0.1939,0.9063,-0.545,0.1939,0.8157,-0.5138,0.3805,0.7689,-0.3539,0.3805,0.8544,-0.3539,0.3805,0.8544,-0.3754,0.1939,0.9063,-0.545,0.1939,0.8157,-0.6937,0.1939,0.6937,-0.6539,0.3805,0.6539,-0.5138,0.3805,0.7689,-0.5138,0.3805,0.7689,-0.545,0.1939,0.8157,-0.6937,0.1939,0.6937,-0.8157,0.1939,0.545,-0.7689,0.3805,0.5138,-0.6539,0.3805,0.6539,-0.6539,0.3805,0.6539,-0.6937,0.1939,0.6937,-0.8157,0.1939,0.545,-0.9063,0.1939,0.3754,-0.8544,0.3805,0.3539,-0.7689,0.3805,0.5138,-0.7689,0.3805,0.5138,-0.8157,0.1939,0.545,-0.9063,0.1939,0.3754,-0.9622,0.1939,0.1914,-0.907,0.3805,0.1804,-0.8544,0.3805,0.3539,-0.8544,0.3805,0.3539,-0.9063,0.1939,0.3754,-0.9622,0.1939,0.1914,-0.981,0.1939,0.0,-0.9248,0.3805,0.0,-0.907,0.3805,0.1804,-0.907,0.3805,0.1804,-0.9622,0.1939,0.1914,-0.981,0.1939,0.0,-0.9622,0.1939,-0.1914,-0.907,0.3805,-0.1804,-0.9248,0.3805,0.0,-0.9248,0.3805,0.0,-0.981,0.1939,0.0,-0.9622,0.1939,-0.1914,-0.9063,0.1939,-0.3754,-0.8544,0.3805,-0.3539,-0.907,0.3805,-0.1804,-0.907,0.3805,-0.1804,-0.9622,0.1939,-0.1914,-0.9063,0.1939,-0.3754,-0.8157,0.1939,-0.545,-0.7689,0.3805,-0.5138,-0.8544,0.3805,-0.3539,-0.8544,0.3805,-0.3539,-0.9063,0.1939,-0.3754,-0.8157,0.1939,-0.545,-0.6937,0.1939,-0.6937,-0.6539,0.3805,-0.6539,-0.7689,0.3805,-0.5138,-0.7689,0.3805,-0.5138,-0.8157,0.1939,-0.545,-0.6937,0.1939,-0.6937,-0.545,0.1939,-0.8157,-0.5138,0.3805,-0.7689,-0.6539,0.3805,-0.6539,-0.6539,0.3805,-0.6539,-0.6937,0.1939,-0.6937,-0.545,0.1939,-0.8157,-0.3754,0.1939,-0.9063,-0.3539,0.3805,-0.8544,-0.5138,0.3805,-0.7689,-0.5138,0.3805,-0.7689,-0.545,0.1939,-0.8157,-0.3754,0.1939,-0.9063,-0.1914,0.1939,-0.9622,-0.1804,0.3805,-0.907,-0.3539,0.3805,-0.8544,-0.3539,0.3805,-0.8544,-0.3754,0.1939,-0.9063,-0.1914,0.1939,-0.9622,-0.0962,0.193,-0.9765,-0.0907,0.379,-0.921,-0.1804,0.3805,-0.907,-0.1804,0.3805,-0.907,-0.1914,0.1939,-0.9622,-0.0962,0.193,-0.9765,-0.1951,0.0,0.9808,-0.1914,0.1939,0.9622,-0.0962,0.193,0.9765,-0.0962,0.193,0.9765,-0.098,0.0,0.9952,-0.1951,0.0,0.9808,-0.3827,0.0,0.9239,-0.3754,0.1939,0.9063,-0.1914,0.1939,0.9622,-0.1914,0.1939,0.9622,-0.1951,0.0,0.9808,-0.3827,0.0,0.9239,-0.5556,0.0,0.8315,-0.545,0.1939,0.8157,-0.3754,0.1939,0.9063,-0.3754,0.1939,0.9063,-0.3827,0.0,0.9239,-0.5556,0.0,0.8315,-0.7071,0.0,0.7071,-0.6937,0.1939,0.6937,-0.545,0.1939,0.8157,-0.545,0.1939,0.8157,-0.5556,0.0,0.8315,-0.7071,0.0,0.7071,-0.8315,0.0,0.5556,-0.8157,0.1939,0.545,-0.6937,0.1939,0.6937,-0.6937,0.1939,0.6937,-0.7071,0.0,0.7071,-0.8315,0.0,0.5556,-0.9239,0.0,0.3827,-0.9063,0.1939,0.3754,-0.8157,0.1939,0.545,-0.8157,0.1939,0.545,-0.8315,0.0,0.5556,-0.9239,0.0,0.3827,-0.9808,0.0,0.1951,-0.9622,0.1939,0.1914,-0.9063,0.1939,0.3754,-0.9063,0.1939,0.3754,-0.9239,0.0,0.3827,-0.9808,0.0,0.1951,-1.0,0.0,0.0,-0.981,0.1939,0.0,-0.9622,0.1939,0.1914,-0.9622,0.1939,0.1914,-0.9808,0.0,0.1951,-1.0,0.0,0.0,-0.9808,0.0,-0.1951,-0.9622,0.1939,-0.1914,-0.981,0.1939,0.0,-0.981,0.1939,0.0,-1.0,0.0,0.0,-0.9808,0.0,-0.1951,-0.9239,0.0,-0.3827,-0.9063,0.1939,-0.3754,-0.9622,0.1939,-0.1914,-0.9622,0.1939,-0.1914,-0.9808,0.0,-0.1951,-0.9239,0.0,-0.3827,-0.8315,0.0,-0.5556,-0.8157,0.1939,-0.545,-0.9063,0.1939,-0.3754,-0.9063,0.1939,-0.3754,-0.9239,0.0,-0.3827,-0.8315,0.0,-0.5556,-0.7071,0.0,-0.7071,-0.6937,0.1939,-0.6937,-0.8157,0.1939,-0.545,-0.8157,0.1939,-0.545,-0.8315,0.0,-0.5556,-0.7071,0.0,-0.7071,-0.5556,0.0,-0.8315,-0.545,0.1939,-0.8157,-0.6937,0.1939,-0.6937,-0.6937,0.1939,-0.6937,-0.7071,0.0,-0.7071,-0.5556,0.0,-0.8315,-0.3827,0.0,-0.9239,-0.3754,0.1939,-0.9063,-0.545,0.1939,-0.8157,-0.545,0.1939,-0.8157,-0.5556,0.0,-0.8315,-0.3827,0.0,-0.9239,-0.1951,0.0,-0.9808,-0.1914,0.1939,-0.9622,-0.3754,0.1939,-0.9063,-0.3754,0.1939,-0.9063,-0.3827,0.0,-0.9239,-0.1951,0.0,-0.9808,-0.098,0.0,-0.9952,-0.0962,0.193,-0.9765,-0.1914,0.1939,-0.9622,-0.1914,0.1939,-0.9622,-0.1951,0.0,-0.9808,-0.098,0.0,-0.9952,-0.1914,-0.1939,0.9622,-0.1951,0.0,0.9808,-0.098,0.0,0.9952,-0.098,0.0,0.9952,-0.0962,-0.193,0.9765,-0.1914,-0.1939,0.9622,-0.3754,-0.1939,0.9063,-0.3827,0.0,0.9239,-0.1951,0.0,0.9808,-0.1951,0.0,0.9808,-0.1914,-0.1939,0.9622,-0.3754,-0.1939,0.9063,-0.545,-0.1939,0.8157,-0.5556,0.0,0.8315,-0.3827,0.0,0.9239,-0.3827,0.0,0.9239,-0.3754,-0.1939,0.9063,-0.545,-0.1939,0.8157,-0.6937,-0.1939,0.6937,-0.7071,0.0,0.7071,-0.5556,0.0,0.8315,-0.5556,0.0,0.8315,-0.545,-0.1939,0.8157,-0.6937,-0.1939,0.6937,-0.8157,-0.1939,0.545,-0.8315,0.0,0.5556,-0.7071,0.0,0.7071,-0.7071,0.0,0.7071,-0.6937,-0.1939,0.6937,-0.8157,-0.1939,0.545,-0.9063,-0.1939,0.3754,-0.9239,0.0,0.3827,-0.8315,0.0,0.5556,-0.8315,0.0,0.5556,-0.8157,-0.1939,0.545,-0.9063,-0.1939,0.3754,-0.9622,-0.1939,0.1914,-0.9808,0.0,0.1951,-0.9239,0.0,0.3827,-0.9239,0.0,0.3827,-0.9063,-0.1939,0.3754,-0.9622,-0.1939,0.1914,-0.981,-0.1939,0.0,-1.0,0.0,0.0,-0.9808,0.0,0.1951,-0.9808,0.0,0.1951,-0.9622,-0.1939,0.1914,-0.981,-0.1939,0.0,-0.9622,-0.1939,-0.1914,-0.9808,0.0,-0.1951,-1.0,0.0,0.0,-1.0,0.0,0.0,-0.981,-0.1939,0.0,-0.9622,-0.1939,-0.1914,-0.9063,-0.1939,-0.3754,-0.9239,0.0,-0.3827,-0.9808,0.0,-0.1951,-0.9808,0.0,-0.1951,-0.9622,-0.1939,-0.1914,-0.9063,-0.1939,-0.3754,-0.8157,-0.1939,-0.545,-0.8315,0.0,-0.5556,-0.9239,0.0,-0.3827,-0.9239,0.0,-0.3827,-0.9063,-0.1939,-0.3754,-0.8157,-0.1939,-0.545,-0.6937,-0.1939,-0.6937,-0.7071,0.0,-0.7071,-0.8315,0.0,-0.5556,-0.8315,0.0,-0.5556,-0.8157,-0.1939,-0.545,-0.6937,-0.1939,-0.6937,-0.545,-0.1939,-0.8157,-0.5556,0.0,-0.8315,-0.7071,0.0,-0.7071,-0.7071,0.0,-0.7071,-0.6937,-0.1939,-0.6937,-0.545,-0.1939,-0.8157,-0.3754,-0.1939,-0.9063,-0.3827,0.0,-0.9239,-0.5556,0.0,-0.8315,-0.5556,0.0,-0.8315,-0.545,-0.1939,-0.8157,-0.3754,-0.1939,-0.9063,-0.1914,-0.1939,-0.9622,-0.1951,0.0,-0.9808,-0.3827,0.0,-0.9239,-0.3827,0.0,-0.9239,-0.3754,-0.1939,-0.9063,-0.1914,-0.1939,-0.9622,-0.0962,-0.193,-0.9765,-0.098,0.0,-0.9952,-0.1951,0.0,-0.9808,-0.1951,0.0,-0.9808,-0.1914,-0.1939,-0.9622,-0.0962,-0.193,-0.9765,-0.1804,-0.3805,0.907,-0.1914,-0.1939,0.9622,-0.0962,-0.193,0.9765,-0.0962,-0.193,0.9765,-0.0907,-0.379,0.921,-0.1804,-0.3805,0.907,-0.3539,-0.3805,0.8544,-0.3754,-0.1939,0.9063,-0.1914,-0.1939,0.9622,-0.1914,-0.1939,0.9622,-0.1804,-0.3805,0.907,-0.3539,-0.3805,0.8544,-0.5138,-0.3805,0.7689,-0.545,-0.1939,0.8157,-0.3754,-0.1939,0.9063,-0.3754,-0.1939,0.9063,-0.3539,-0.3805,0.8544,-0.5138,-0.3805,0.7689,-0.6539,-0.3805,0.6539,-0.6937,-0.1939,0.6937,-0.545,-0.1939,0.8157,-0.545,-0.1939,0.8157,-0.5138,-0.3805,0.7689,-0.6539,-0.3805,0.6539,-0.7689,-0.3805,0.5138,-0.8157,-0.1939,0.545,-0.6937,-0.1939,0.6937,-0.6937,-0.1939,0.6937,-0.6539,-0.3805,0.6539,-0.7689,-0.3805,0.5138,-0.8544,-0.3805,0.3539,-0.9063,-0.1939,0.3754,-0.8157,-0.1939,0.545,-0.8157,-0.1939,0.545,-0.7689,-0.3805,0.5138,-0.8544,-0.3805,0.3539,-0.907,-0.3805,0.1804,-0.9622,-0.1939,0.1914,-0.9063,-0.1939,0.3754,-0.9063,-0.1939,0.3754,-0.8544,-0.3805,0.3539,-0.907,-0.3805,0.1804,-0.9248,-0.3805,0.0,-0.981,-0.1939,0.0,-0.9622,-0.1939,0.1914,-0.9622,-0.1939,0.1914,-0.907,-0.3805,0.1804,-0.9248,-0.3805,0.0,-0.907,-0.3805,-0.1804,-0.9622,-0.1939,-0.1914,-0.981,-0.1939,0.0,-0.981,-0.1939,0.0,-0.9248,-0.3805,0.0,-0.907,-0.3805,-0.1804,-0.8544,-0.3805,-0.3539,-0.9063,-0.1939,-0.3754,-0.9622,-0.1939,-0.1914,-0.9622,-0.1939,-0.1914,-0.907,-0.3805,-0.1804,-0.8544,-0.3805,-0.3539,-0.7689,-0.3805,-0.5138,-0.8157,-0.1939,-0.545,-0.9063,-0.1939,-0.3754,-0.9063,-0.1939,-0.3754,-0.8544,-0.3805,-0.3539,-0.7689,-0.3805,-0.5138,-0.6539,-0.3805,-0.6539,-0.6937,-0.1939,-0.6937,-0.8157,-0.1939,-0.545,-0.8157,-0.1939,-0.545,-0.7689,-0.3805,-0.5138,-0.6539,-0.3805,-0.6539,-0.5138,-0.3805,-0.7689,-0.545,-0.1939,-0.8157,-0.6937,-0.1939,-0.6937,-0.6937,-0.1939,-0.6937,-0.6539,-0.3805,-0.6539,-0.5138,-0.3805,-0.7689,-0.3539,-0.3805,-0.8544,-0.3754,-0.1939,-0.9063,-0.545,-0.1939,-0.8157,-0.545,-0.1939,-0.8157,-0.5138,-0.3805,-0.7689,-0.3539,-0.3805,-0.8544,-0.1804,-0.3805,-0.907,-0.1914,-0.1939,-0.9622,-0.3754,-0.1939,-0.9063,-0.3754,-0.1939,-0.9063,-0.3539,-0.3805,-0.8544,-0.1804,-0.3805,-0.907,-0.0907,-0.379,-0.921,-0.0962,-0.193,-0.9765,-0.1914,-0.1939,-0.9622,-0.1914,-0.1939,-0.9622,-0.1804,-0.3805,-0.907,-0.0907,-0.379,-0.921,-0.1626,-0.5528,0.8173,-0.1804,-0.3805,0.907,-0.0907,-0.379,0.921,-0.0907,-0.379,0.921,-0.0818,-0.5509,0.8305,-0.1626,-0.5528,0.8173,-0.3189,-0.5528,0.7699,-0.3539,-0.3805,0.8544,-0.1804,-0.3805,0.907,-0.1804,-0.3805,0.907,-0.1626,-0.5528,0.8173,-0.3189,-0.5528,0.7699,-0.463,-0.5528,0.6929,-0.5138,-0.3805,0.7689,-0.3539,-0.3805,0.8544,-0.3539,-0.3805,0.8544,-0.3189,-0.5528,0.7699,-0.463,-0.5528,0.6929,-0.5893,-0.5528,0.5893,-0.6539,-0.3805,0.6539,-0.5138,-0.3805,0.7689,-0.5138,-0.3805,0.7689,-0.463,-0.5528,0.6929,-0.5893,-0.5528,0.5893,-0.6929,-0.5528,0.463,-0.7689,-0.3805,0.5138,-0.6539,-0.3805,0.6539,-0.6539,-0.3805,0.6539,-0.5893,-0.5528,0.5893,-0.6929,-0.5528,0.463,-0.7699,-0.5528,0.3189,-0.8544,-0.3805,0.3539,-0.7689,-0.3805,0.5138,-0.7689,-0.3805,0.5138,-0.6929,-0.5528,0.463,-0.7699,-0.5528,0.3189,-0.8173,-0.5528,0.1626,-0.907,-0.3805,0.1804,-0.8544,-0.3805,0.3539,-0.8544,-0.3805,0.3539,-0.7699,-0.5528,0.3189,-0.8173,-0.5528,0.1626,-0.8333,-0.5528,0.0,-0.9248,-0.3805,0.0,-0.907,-0.3805,0.1804,-0.907,-0.3805,0.1804,-0.8173,-0.5528,0.1626,-0.8333,-0.5528,0.0,-0.8173,-0.5528,-0.1626,-0.907,-0.3805,-0.1804,-0.9248,-0.3805,0.0,-0.9248,-0.3805,0.0,-0.8333,-0.5528,0.0,-0.8173,-0.5528,-0.1626,-0.7699,-0.5528,-0.3189,-0.8544,-0.3805,-0.3539,-0.907,-0.3805,-0.1804,-0.907,-0.3805,-0.1804,-0.8173,-0.5528,-0.1626,-0.7699,-0.5528,-0.3189,-0.6929,-0.5528,-0.463,-0.7689,-0.3805,-0.5138,-0.8544,-0.3805,-0.3539,-0.8544,-0.3805,-0.3539,-0.7699,-0.5528,-0.3189,-0.6929,-0.5528,-0.463,-0.5893,-0.5528,-0.5893,-0.6539,-0.3805,-0.6539,-0.7689,-0.3805,-0.5138,-0.7689,-0.3805,-0.5138,-0.6929,-0.5528,-0.463,-0.5893,-0.5528,-0.5893,-0.463,-0.5528,-0.6929,-0.5138,-0.3805,-0.7689,-0.6539,-0.3805,-0.6539,-0.6539,-0.3805,-0.6539,-0.5893,-0.5528,-0.5893,-0.463,-0.5528,-0.6929,-0.3189,-0.5528,-0.7699,-0.3539,-0.3805,-0.8544,-0.5138,-0.3805,-0.7689,-0.5138,-0.3805,-0.7689,-0.463,-0.5528,-0.6929,-0.3189,-0.5528,-0.7699,-0.1626,-0.5528,-0.8173,-0.1804,-0.3805,-0.907,-0.3539,-0.3805,-0.8544,-0.3539,-0.3805,-0.8544,-0.3189,-0.5528,-0.7699,-0.1626,-0.5528,-0.8173,-0.0818,-0.5509,-0.8305,-0.0907,-0.379,-0.921,-0.1804,-0.3805,-0.907,-0.1804,-0.3805,-0.907,-0.1626,-0.5528,-0.8173,-0.0818,-0.5509,-0.8305,-0.1385,-0.7041,0.6965,-0.1626,-0.5528,0.8173,-0.0818,-0.5509,0.8305,-0.0818,-0.5509,0.8305,-0.0698,-0.7023,0.7084,-0.1385,-0.7041,0.6965,-0.2718,-0.7041,0.6561,-0.3189,-0.5528,0.7699,-0.1626,-0.5528,0.8173,-0.1626,-0.5528,0.8173,-0.1385,-0.7041,0.6965,-0.2718,-0.7041,0.6561,-0.3945,-0.7041,0.5905,-0.463,-0.5528,0.6929,-0.3189,-0.5528,0.7699,-0.3189,-0.5528,0.7699,-0.2718,-0.7041,0.6561,-0.3945,-0.7041,0.5905,-0.5021,-0.7041,0.5021,-0.5893,-0.5528,0.5893,-0.463,-0.5528,0.6929,-0.463,-0.5528,0.6929,-0.3945,-0.7041,0.5905,-0.5021,-0.7041,0.5021,-0.5905,-0.7041,0.3945,-0.6929,-0.5528,0.463,-0.5893,-0.5528,0.5893,-0.5893,-0.5528,0.5893,-0.5021,-0.7041,0.5021,-0.5905,-0.7041,0.3945,-0.6561,-0.7041,0.2718,-0.7699,-0.5528,0.3189,-0.6929,-0.5528,0.463,-0.6929,-0.5528,0.463,-0.5905,-0.7041,0.3945,-0.6561,-0.7041,0.2718,-0.6965,-0.7041,0.1385,-0.8173,-0.5528,0.1626,-0.7699,-0.5528,0.3189,-0.7699,-0.5528,0.3189,-0.6561,-0.7041,0.2718,-0.6965,-0.7041,0.1385,-0.7101,-0.7041,0.0,-0.8333,-0.5528,0.0,-0.8173,-0.5528,0.1626,-0.8173,-0.5528,0.1626,-0.6965,-0.7041,0.1385,-0.7101,-0.7041,0.0,-0.6965,-0.7041,-0.1385,-0.8173,-0.5528,-0.1626,-0.8333,-0.5528,0.0,-0.8333,-0.5528,0.0,-0.7101,-0.7041,0.0,-0.6965,-0.7041,-0.1385,-0.6561,-0.7041,-0.2718,-0.7699,-0.5528,-0.3189,-0.8173,-0.5528,-0.1626,-0.8173,-0.5528,-0.1626,-0.6965,-0.7041,-0.1385,-0.6561,-0.7041,-0.2718,-0.5905,-0.7041,-0.3945,-0.6929,-0.5528,-0.463,-0.7699,-0.5528,-0.3189,-0.7699,-0.5528,-0.3189,-0.6561,-0.7041,-0.2718,-0.5905,-0.7041,-0.3945,-0.5021,-0.7041,-0.5021,-0.5893,-0.5528,-0.5893,-0.6929,-0.5528,-0.463,-0.6929,-0.5528,-0.463,-0.5905,-0.7041,-0.3945,-0.5021,-0.7041,-0.5021,-0.3945,-0.7041,-0.5905,-0.463,-0.5528,-0.6929,-0.5893,-0.5528,-0.5893,-0.5893,-0.5528,-0.5893,-0.5021,-0.7041,-0.5021,-0.3945,-0.7041,-0.5905,-0.2718,-0.7041,-0.6561,-0.3189,-0.5528,-0.7699,-0.463,-0.5528,-0.6929,-0.463,-0.5528,-0.6929,-0.3945,-0.7041,-0.5905,-0.2718,-0.7041,-0.6561,-0.1385,-0.7041,-0.6965,-0.1626,-0.5528,-0.8173,-0.3189,-0.5528,-0.7699,-0.3189,-0.5528,-0.7699,-0.2718,-0.7041,-0.6561,-0.1385,-0.7041,-0.6965,-0.0698,-0.7023,-0.7084,-0.0818,-0.5509,-0.8305,-0.1626,-0.5528,-0.8173,-0.1626,-0.5528,-0.8173,-0.1385,-0.7041,-0.6965,-0.0698,-0.7023,-0.7084,-0.1092,-0.8286,0.549,-0.1385,-0.7041,0.6965,-0.0698,-0.7023,0.7084,-0.0698,-0.7023,0.7084,-0.055,-0.8274,0.5589,-0.1092,-0.8286,0.549,-0.2142,-0.8286,0.5172,-0.2718,-0.7041,0.6561,-0.1385,-0.7041,0.6965,-0.1385,-0.7041,0.6965,-0.1092,-0.8286,0.549,-0.2142,-0.8286,0.5172,-0.311,-0.8286,0.4654,-0.3945,-0.7041,0.5905,-0.2718,-0.7041,0.6561,-0.2718,-0.7041,0.6561,-0.2142,-0.8286,0.5172,-0.311,-0.8286,0.4654,-0.3958,-0.8286,0.3958,-0.5021,-0.7041,0.5021,-0.3945,-0.7041,0.5905,-0.3945,-0.7041,0.5905,-0.311,-0.8286,0.4654,-0.3958,-0.8286,0.3958,-0.4654,-0.8286,0.311,-0.5905,-0.7041,0.3945,-0.5021,-0.7041,0.5021,-0.5021,-0.7041,0.5021,-0.3958,-0.8286,0.3958,-0.4654,-0.8286,0.311,-0.5172,-0.8286,0.2142,-0.6561,-0.7041,0.2718,-0.5905,-0.7041,0.3945,-0.5905,-0.7041,0.3945,-0.4654,-0.8286,0.311,-0.5172,-0.8286,0.2142,-0.549,-0.8286,0.1092,-0.6965,-0.7041,0.1385,-0.6561,-0.7041,0.2718,-0.6561,-0.7041,0.2718,-0.5172,-0.8286,0.2142,-0.549,-0.8286,0.1092,-0.5598,-0.8286,0.0,-0.7101,-0.7041,0.0,-0.6965,-0.7041,0.1385,-0.6965,-0.7041,0.1385,-0.549,-0.8286,0.1092,-0.5598,-0.8286,0.0,-0.549,-0.8286,-0.1092,-0.6965,-0.7041,-0.1385,-0.7101,-0.7041,0.0,-0.7101,-0.7041,0.0,-0.5598,-0.8286,0.0,-0.549,-0.8286,-0.1092,-0.5172,-0.8286,-0.2142,-0.6561,-0.7041,-0.2718,-0.6965,-0.7041,-0.1385,-0.6965,-0.7041,-0.1385,-0.549,-0.8286,-0.1092,-0.5172,-0.8286,-0.2142,-0.4654,-0.8286,-0.311,-0.5905,-0.7041,-0.3945,-0.6561,-0.7041,-0.2718,-0.6561,-0.7041,-0.2718,-0.5172,-0.8286,-0.2142,-0.4654,-0.8286,-0.311,-0.3958,-0.8286,-0.3958,-0.5021,-0.7041,-0.5021,-0.5905,-0.7041,-0.3945,-0.5905,-0.7041,-0.3945,-0.4654,-0.8286,-0.311,-0.3958,-0.8286,-0.3958,-0.311,-0.8286,-0.4654,-0.3945,-0.7041,-0.5905,-0.5021,-0.7041,-0.5021,-0.5021,-0.7041,-0.5021,-0.3958,-0.8286,-0.3958,-0.311,-0.8286,-0.4654,-0.2142,-0.8286,-0.5172,-0.2718,-0.7041,-0.6561,-0.3945,-0.7041,-0.5905,-0.3945,-0.7041,-0.5905,-0.311,-0.8286,-0.4654,-0.2142,-0.8286,-0.5172,-0.1092,-0.8286,-0.549,-0.1385,-0.7041,-0.6965,-0.2718,-0.7041,-0.6561,-0.2718,-0.7041,-0.6561,-0.2142,-0.8286,-0.5172,-0.1092,-0.8286,-0.549,-0.055,-0.8274,-0.5589,-0.0698,-0.7023,-0.7084,-0.1385,-0.7041,-0.6965,-0.1385,-0.7041,-0.6965,-0.1092,-0.8286,-0.549,-0.055,-0.8274,-0.5589,-0.0757,-0.9217,0.3804,-0.1092,-0.8286,0.549,-0.055,-0.8274,0.5589,-0.055,-0.8274,0.5589,-0.0382,-0.921,0.3876,-0.0757,-0.9217,0.3804,-0.1484,-0.9217,0.3584,-0.2142,-0.8286,0.5172,-0.1092,-0.8286,0.549,-0.1092,-0.8286,0.549,-0.0757,-0.9217,0.3804,-0.1484,-0.9217,0.3584,-0.2155,-0.9217,0.3225,-0.311,-0.8286,0.4654,-0.2142,-0.8286,0.5172,-0.2142,-0.8286,0.5172,-0.1484,-0.9217,0.3584,-0.2155,-0.9217,0.3225,-0.2743,-0.9217,0.2743,-0.3958,-0.8286,0.3958,-0.311,-0.8286,0.4654,-0.311,-0.8286,0.4654,-0.2155,-0.9217,0.3225,-0.2743,-0.9217,0.2743,-0.3225,-0.9217,0.2155,-0.4654,-0.8286,0.311,-0.3958,-0.8286,0.3958,-0.3958,-0.8286,0.3958,-0.2743,-0.9217,0.2743,-0.3225,-0.9217,0.2155,-0.3584,-0.9217,0.1484,-0.5172,-0.8286,0.2142,-0.4654,-0.8286,0.311,-0.4654,-0.8286,0.311,-0.3225,-0.9217,0.2155,-0.3584,-0.9217,0.1484,-0.3804,-0.9217,0.0757,-0.549,-0.8286,0.1092,-0.5172,-0.8286,0.2142,-0.5172,-0.8286,0.2142,-0.3584,-0.9217,0.1484,-0.3804,-0.9217,0.0757,-0.3879,-0.9217,0.0,-0.5598,-0.8286,0.0,-0.549,-0.8286,0.1092,-0.549,-0.8286,0.1092,-0.3804,-0.9217,0.0757,-0.3879,-0.9217,0.0,-0.3804,-0.9217,-0.0757,-0.549,-0.8286,-0.1092,-0.5598,-0.8286,0.0,-0.5598,-0.8286,0.0,-0.3879,-0.9217,0.0,-0.3804,-0.9217,-0.0757,-0.3584,-0.9217,-0.1484,-0.5172,-0.8286,-0.2142,-0.549,-0.8286,-0.1092,-0.549,-0.8286,-0.1092,-0.3804,-0.9217,-0.0757,-0.3584,-0.9217,-0.1484,-0.3225,-0.9217,-0.2155,-0.4654,-0.8286,-0.311,-0.5172,-0.8286,-0.2142,-0.5172,-0.8286,-0.2142,-0.3584,-0.9217,-0.1484,-0.3225,-0.9217,-0.2155,-0.2743,-0.9217,-0.2743,-0.3958,-0.8286,-0.3958,-0.4654,-0.8286,-0.311,-0.4654,-0.8286,-0.311,-0.3225,-0.9217,-0.2155,-0.2743,-0.9217,-0.2743,-0.2155,-0.9217,-0.3225,-0.311,-0.8286,-0.4654,-0.3958,-0.8286,-0.3958,-0.3958,-0.8286,-0.3958,-0.2743,-0.9217,-0.2743,-0.2155,-0.9217,-0.3225,-0.1484,-0.9217,-0.3584,-0.2142,-0.8286,-0.5172,-0.311,-0.8286,-0.4654,-0.311,-0.8286,-0.4654,-0.2155,-0.9217,-0.3225,-0.1484,-0.9217,-0.3584,-0.0757,-0.9217,-0.3804,-0.1092,-0.8286,-0.549,-0.2142,-0.8286,-0.5172,-0.2142,-0.8286,-0.5172,-0.1484,-0.9217,-0.3584,-0.0757,-0.9217,-0.3804,-0.0382,-0.921,-0.3876,-0.055,-0.8274,-0.5589,-0.1092,-0.8286,-0.549,-0.1092,-0.8286,-0.549,-0.0757,-0.9217,-0.3804,-0.0382,-0.921,-0.3876,-0.0392,-0.9796,0.1971,-0.0757,-0.9217,0.3804,-0.0382,-0.921,0.3876,-0.0382,-0.921,0.3876,-0.0198,-0.9794,0.2009,-0.0392,-0.9796,0.1971,-0.0769,-0.9796,0.1857,-0.1484,-0.9217,0.3584,-0.0757,-0.9217,0.3804,-0.0757,-0.9217,0.3804,-0.0392,-0.9796,0.1971,-0.0769,-0.9796,0.1857,-0.1117,-0.9796,0.1671,-0.2155,-0.9217,0.3225,-0.1484,-0.9217,0.3584,-0.1484,-0.9217,0.3584,-0.0769,-0.9796,0.1857,-0.1117,-0.9796,0.1671,-0.1421,-0.9796,0.1421,-0.2743,-0.9217,0.2743,-0.2155,-0.9217,0.3225,-0.2155,-0.9217,0.3225,-0.1117,-0.9796,0.1671,-0.1421,-0.9796,0.1421,-0.1671,-0.9796,0.1117,-0.3225,-0.9217,0.2155,-0.2743,-0.9217,0.2743,-0.2743,-0.9217,0.2743,-0.1421,-0.9796,0.1421,-0.1671,-0.9796,0.1117,-0.1857,-0.9796,0.0769,-0.3584,-0.9217,0.1484,-0.3225,-0.9217,0.2155,-0.3225,-0.9217,0.2155,-0.1671,-0.9796,0.1117,-0.1857,-0.9796,0.0769,-0.1971,-0.9796,0.0392,-0.3804,-0.9217,0.0757,-0.3584,-0.9217,0.1484,-0.3584,-0.9217,0.1484,-0.1857,-0.9796,0.0769,-0.1971,-0.9796,0.0392,-0.201,-0.9796,0.0,-0.3879,-0.9217,0.0,-0.3804,-0.9217,0.0757,-0.3804,-0.9217,0.0757,-0.1971,-0.9796,0.0392,-0.201,-0.9796,0.0,-0.1971,-0.9796,-0.0392,-0.3804,-0.9217,-0.0757,-0.3879,-0.9217,0.0,-0.3879,-0.9217,0.0,-0.201,-0.9796,0.0,-0.1971,-0.9796,-0.0392,-0.1857,-0.9796,-0.0769,-0.3584,-0.9217,-0.1484,-0.3804,-0.9217,-0.0757,-0.3804,-0.9217,-0.0757,-0.1971,-0.9796,-0.0392,-0.1857,-0.9796,-0.0769,-0.1671,-0.9796,-0.1117,-0.3225,-0.9217,-0.2155,-0.3584,-0.9217,-0.1484,-0.3584,-0.9217,-0.1484,-0.1857,-0.9796,-0.0769,-0.1671,-0.9796,-0.1117,-0.1421,-0.9796,-0.1421,-0.2743,-0.9217,-0.2743,-0.3225,-0.9217,-0.2155,-0.3225,-0.9217,-0.2155,-0.1671,-0.9796,-0.1117,-0.1421,-0.9796,-0.1421,-0.1117,-0.9796,-0.1671,-0.2155,-0.9217,-0.3225,-0.2743,-0.9217,-0.2743,-0.2743,-0.9217,-0.2743,-0.1421,-0.9796,-0.1421,-0.1117,-0.9796,-0.1671,-0.0769,-0.9796,-0.1857,-0.1484,-0.9217,-0.3584,-0.2155,-0.9217,-0.3225,-0.2155,-0.9217,-0.3225,-0.1117,-0.9796,-0.1671,-0.0769,-0.9796,-0.1857,-0.0392,-0.9796,-0.1971,-0.0757,-0.9217,-0.3804,-0.1484,-0.9217,-0.3584,-0.1484,-0.9217,-0.3584,-0.0769,-0.9796,-0.1857,-0.0392,-0.9796,-0.1971,-0.0198,-0.9794,-0.2009,-0.0382,-0.921,-0.3876,-0.0757,-0.9217,-0.3804,-0.0757,-0.9217,-0.3804,-0.0392,-0.9796,-0.1971,-0.0198,-0.9794,-0.2009,-0.063,-0.998,0.0,-0.0392,-0.9796,0.1971,-0.0198,-0.9794,0.2009,-0.063,-0.998,0.0,-0.0769,-0.9796,0.1857,-0.0392,-0.9796,0.1971,-0.063,-0.998,0.0,-0.1117,-0.9796,0.1671,-0.0769,-0.9796,0.1857,-0.063,-0.998,0.0,-0.1421,-0.9796,0.1421,-0.1117,-0.9796,0.1671,-0.063,-0.998,0.0,-0.1671,-0.9796,0.1117,-0.1421,-0.9796,0.1421,-0.063,-0.998,0.0,-0.1857,-0.9796,0.0769,-0.1671,-0.9796,0.1117,-0.063,-0.998,0.0,-0.1971,-0.9796,0.0392,-0.1857,-0.9796,0.0769,-0.063,-0.998,0.0,-0.201,-0.9796,0.0,-0.1971,-0.9796,0.0392,-0.063,-0.998,0.0,-0.1971,-0.9796,-0.0392,-0.201,-0.9796,0.0,-0.063,-0.998,0.0,-0.1857,-0.9796,-0.0769,-0.1971,-0.9796,-0.0392,-0.063,-0.998,0.0,-0.1671,-0.9796,-0.1117,-0.1857,-0.9796,-0.0769,-0.063,-0.998,0.0,-0.1421,-0.9796,-0.1421,-0.1671,-0.9796,-0.1117,-0.063,-0.998,0.0,-0.1117,-0.9796,-0.1671,-0.1421,-0.9796,-0.1421,-0.063,-0.998,0.0,-0.0769,-0.9796,-0.1857,-0.1117,-0.9796,-0.1671,-0.063,-0.998,0.0,-0.0392,-0.9796,-0.1971,-0.0769,-0.9796,-0.1857,-0.063,-0.998,0.0,-0.0198,-0.9794,-0.2009,-0.0392,-0.9796,-0.1971],"tangents":null,"uvs":[0.0,2.0,0.0,1.9375,0.0312,1.9375,0.0312,2.0,0.0312,1.9375,0.0625,1.9375,0.0625,2.0,0.0625,1.9375,0.0938,1.9375,0.0938,2.0,0.0938,1.9375,0.125,1.9375,0.125,2.0,0.125,1.9375,0.1562,1.9375,0.1562,2.0,0.1562,1.9375,0.1875,1.9375,0.1875,2.0,0.1875,1.9375,0.2187,1.9375,0.2187,2.0,0.2187,1.9375,0.25,1.9375,0.25,2.0,0.25,1.9375,0.2812,1.9375,0.2812,2.0,0.2812,1.9375,0.3125,1.9375,0.3125,2.0,0.3125,1.9375,0.3437,1.9375,0.3437,2.0,0.3437,1.9375,0.375,1.9375,0.375,2.0,0.375,1.9375,0.4062,1.9375,0.4062,2.0,0.4062,1.9375,0.4375,1.9375,0.4375,2.0,0.4375,1.9375,0.4688,1.9375,0.4688,2.0,0.4688,1.9375,0.5,1.9375,0.0312,1.875,0.0312,1.9375,0.0,1.9375,0.0,1.9375,0.0,1.875,0.0312,1.875,0.0625,1.875,0.0625,1.9375,0.0312,1.9375,0.0312,1.9375,0.0312,1.875,0.0625,1.875,0.0938,1.875,0.0938,1.9375,0.0625,1.9375,0.0625,1.9375,0.0625,1.875,0.0938,1.875,0.125,1.875,0.125,1.9375,0.0938,1.9375,0.0938,1.9375,0.0938,1.875,0.125,1.875,0.1562,1.875,0.1562,1.9375,0.125,1.9375,0.125,1.9375,0.125,1.875,0.1562,1.875,0.1875,1.875,0.1875,1.9375,0.1562,1.9375,0.1562,1.9375,0.1562,1.875,0.1875,1.875,0.2187,1.875,0.2187,1.9375,0.1875,1.9375,0.1875,1.9375,0.1875,1.875,0.2187,1.875,0.25,1.875,0.25,1.9375,0.2187,1.9375,0.2187,1.9375,0.2187,1.875,0.25,1.875,0.2812,1.875,0.2812,1.9375,0.25,1.9375,0.25,1.9375,0.25,1.875,0.2812,1.875,0.3125,1.875,0.3125,1.9375,0.2812,1.9375,0.2812,1.9375,0.2812,1.875,0.3125,1.875,0.3437,1.875,0.3437,1.9375,0.3125,1.9375,0.3125,1.9375,0.3125,1.875,0.3437,1.875,0.375,1.875,0.375,1.9375,0.3437,1.9375,0.3437,1.9375,0.3437,1.875,0.375,1.875,0.4062,1.875,0.4062,1.9375,0.375,1.9375,0.375,1.9375,0.375,1.875,0.4062,1.875,0.4375,1.875,0.4375,1.9375,0.4062,1.9375,0.4062,1.9375,0.4062,1.875,0.4375,1.875,0.4688,1.875,0.4688,1.9375,0.4375,1.9375,0.4375,1.9375,0.4375,1.875,0.4688,1.875,0.5,1.875,0.5,1.9375,0.4688,1.9375,0.4688,1.9375,0.4688,1.875,0.5,1.875,0.0312,1.8125,0.0312,1.875,0.0,1.875,0.0,1.875,0.0,1.8125,0.0312,1.8125,0.0625,1.8125,0.0625,1.875,0.0312,1.875,0.0312,1.875,0.0312,1.8125,0.0625,1.8125,0.0938,1.8125,0.0938,1.875,0.0625,1.875,0.0625,1.875,0.0625,1.8125,0.0938,1.8125,0.125,1.8125,0.125,1.875,0.0938,1.875,0.0938,1.875,0.0938,1.8125,0.125,1.8125,0.1562,1.8125,0.1562,1.875,0.125,1.875,0.125,1.875,0.125,1.8125,0.1562,1.8125,0.1875,1.8125,0.1875,1.875,0.1562,1.875,0.1562,1.875,0.1562,1.8125,0.1875,1.8125,0.2187,1.8125,0.2187,1.875,0.1875,1.875,0.1875,1.875,0.1875,1.8125,0.2187,1.8125,0.25,1.8125,0.25,1.875,0.2187,1.875,0.2187,1.875,0.2187,1.8125,0.25,1.8125,0.2812,1.8125,0.2812,1.875,0.25,1.875,0.25,1.875,0.25,1.8125,0.2812,1.8125,0.3125,1.8125,0.3125,1.875,0.2812,1.875,0.2812,1.875,0.2812,1.8125,0.3125,1.8125,0.3437,1.8125,0.3437,1.875,0.3125,1.875,0.3125,1.875,0.3125,1.8125,0.3437,1.8125,0.375,1.8125,0.375,1.875,0.3437,1.875,0.3437,1.875,0.3437,1.8125,0.375,1.8125,0.4062,1.8125,0.4062,1.875,0.375,1.875,0.375,1.875,0.375,1.8125,0.4062,1.8125,0.4375,1.8125,0.4375,1.875,0.4062,1.875,0.4062,1.875,0.4062,1.8125,0.4375,1.8125,0.4688,1.8125,0.4688,1.875,0.4375,1.875,0.4375,1.875,0.4375,1.8125,0.4688,1.8125,0.5,1.8125,0.5,1.875,0.4688,1.875,0.4688,1.875,0.4688,1.8125,0.5,1.8125,0.0312,1.75,0.0312,1.8125,0.0,1.8125,0.0,1.8125,0.0,1.75,0.0312,1.75,0.0625,1.75,0.0625,1.8125,0.0312,1.8125,0.0312,1.8125,0.0312,1.75,0.0625,1.75,0.0938,1.75,0.0938,1.8125,0.0625,1.8125,0.0625,1.8125,0.0625,1.75,0.0938,1.75,0.125,1.75,0.125,1.8125,0.0938,1.8125,0.0938,1.8125,0.0938,1.75,0.125,1.75,0.1562,1.75,0.1562,1.8125,0.125,1.8125,0.125,1.8125,0.125,1.75,0.1562,1.75,0.1875,1.75,0.1875,1.8125,0.1562,1.8125,0.1562,1.8125,0.1562,1.75,0.1875,1.75,0.2187,1.75,0.2187,1.8125,0.1875,1.8125,0.1875,1.8125,0.1875,1.75,0.2187,1.75,0.25,1.75,0.25,1.8125,0.2187,1.8125,0.2187,1.8125,0.2187,1.75,0.25,1.75,0.2812,1.75,0.2812,1.8125,0.25,1.8125,0.25,1.8125,0.25,1.75,0.2812,1.75,0.3125,1.75,0.3125,1.8125,0.2812,1.8125,0.2812,1.8125,0.2812,1.75,0.3125,1.75,0.3437,1.75,0.3437,1.8125,0.3125,1.8125,0.3125,1.8125,0.3125,1.75,0.3437,1.75,0.375,1.75,0.375,1.8125,0.3437,1.8125,0.3437,1.8125,0.3437,1.75,0.375,1.75,0.4062,1.75,0.4062,1.8125,0.375,1.8125,0.375,1.8125,0.375,1.75,0.4062,1.75,0.4375,1.75,0.4375,1.8125,0.4062,1.8125,0.4062,1.8125,0.4062,1.75,0.4375,1.75,0.4688,1.75,0.4688,1.8125,0.4375,1.8125,0.4375,1.8125,0.4375,1.75,0.4688,1.75,0.5,1.75,0.5,1.8125,0.4688,1.8125,0.4688,1.8125,0.4688,1.75,0.5,1.75,0.0312,1.6875,0.0312,1.75,0.0,1.75,0.0,1.75,0.0,1.6875,0.0312,1.6875,0.0625,1.6875,0.0625,1.75,0.0312,1.75,0.0312,1.75,0.0312,1.6875,0.0625,1.6875,0.0938,1.6875,0.0938,1.75,0.0625,1.75,0.0625,1.75,0.0625,1.6875,0.0938,1.6875,0.125,1.6875,0.125,1.75,0.0938,1.75,0.0938,1.75,0.0938,1.6875,0.125,1.6875,0.1562,1.6875,0.1562,1.75,0.125,1.75,0.125,1.75,0.125,1.6875,0.1562,1.6875,0.1875,1.6875,0.1875,1.75,0.1562,1.75,0.1562,1.75,0.1562,1.6875,0.1875,1.6875,0.2187,1.6875,0.2187,1.75,0.1875,1.75,0.1875,1.75,0.1875,1.6875,0.2187,1.6875,0.25,1.6875,0.25,1.75,0.2187,1.75,0.2187,1.75,0.2187,1.6875,0.25,1.6875,0.2812,1.6875,0.2812,1.75,0.25,1.75,0.25,1.75,0.25,1.6875,0.2812,1.6875,0.3125,1.6875,0.3125,1.75,0.2812,1.75,0.2812,1.75,0.2812,1.6875,0.3125,1.6875,0.3437,1.6875,0.3437,1.75,0.3125,1.75,0.3125,1.75,0.3125,1.6875,0.3437,1.6875,0.375,1.6875,0.375,1.75,0.3437,1.75,0.3437,1.75,0.3437,1.6875,0.375,1.6875,0.4062,1.6875,0.4062,1.75,0.375,1.75,0.375,1.75,0.375,1.6875,0.4062,1.6875,0.4375,1.6875,0.4375,1.75,0.4062,1.75,0.4062,1.75,0.4062,1.6875,0.4375,1.6875,0.4688,1.6875,0.4688,1.75,0.4375,1.75,0.4375,1.75,0.4375,1.6875,0.4688,1.6875,0.5,1.6875,0.5,1.75,0.4688,1.75,0.4688,1.75,0.4688,1.6875,0.5,1.6875,0.0312,1.625,0.0312,1.6875,0.0,1.6875,0.0,1.6875,0.0,1.625,0.0312,1.625,0.0625,1.625,0.0625,1.6875,0.0312,1.6875,0.0312,1.6875,0.0312,1.625,0.0625,1.625,0.0938,1.625,0.0938,1.6875,0.0625,1.6875,0.0625,1.6875,0.0625,1.625,0.0938,1.625,0.125,1.625,0.125,1.6875,0.0938,1.6875,0.0938,1.6875,0.0938,1.625,0.125,1.625,0.1562,1.625,0.1562,1.6875,0.125,1.6875,0.125,1.6875,0.125,1.625,0.1562,1.625,0.1875,1.625,0.1875,1.6875,0.1562,1.6875,0.1562,1.6875,0.1562,1.625,0.1875,1.625,0.2187,1.625,0.2187,1.6875,0.1875,1.6875,0.1875,1.6875,0.1875,1.625,0.2187,1.625,0.25,1.625,0.25,1.6875,0.2187,1.6875,0.2187,1.6875,0.2187,1.625,0.25,1.625,0.2812,1.625,0.2812,1.6875,0.25,1.6875,0.25,1.6875,0.25,1.625,0.2812,1.625,0.3125,1.625,0.3125,1.6875,0.2812,1.6875,0.2812,1.6875,0.2812,1.625,0.3125,1.625,0.3437,1.625,0.3437,1.6875,0.3125,1.6875,0.3125,1.6875,0.3125,1.625,0.3437,1.625,0.375,1.625,0.375,1.6875,0.3437,1.6875,0.3437,1.6875,0.3437,1.625,0.375,1.625,0.4062,1.625,0.4062,1.6875,0.375,1.6875,0.375,1.6875,0.375,1.625,0.4062,1.625,0.4375,1.625,0.4375,1.6875,0.4062,1.6875,0.4062,1.6875,0.4062,1.625,0.4375,1.625,0.4688,1.625,0.4688,1.6875,0.4375,1.6875,0.4375,1.6875,0.4375,1.625,0.4688,1.625,0.5,1.625,0.5,1.6875,0.4688,1.6875,0.4688,1.6875,0.4688,1.625,0.5,1.625,0.0312,1.5625,0.0312,1.625,0.0,1.625,0.0,1.625,0.0,1.5625,0.0312,1.5625,0.0625,1.5625,0.0625,1.625,0.0312,1.625,0.0312,1.625,0.0312,1.5625,0.0625,1.5625,0.0938,1.5625,0.0938,1.625,0.0625,1.625,0.0625,1.625,0.0625,1.5625,0.0938,1.5625,0.125,1.5625,0.125,1.625,0.0938,1.625,0.0938,1.625,0.0938,1.5625,0.125,1.5625,0.1562,1.5625,0.1562,1.625,0.125,1.625,0.125,1.625,0.125,1.5625,0.1562,1.5625,0.1875,1.5625,0.1875,1.625,0.1562,1.625,0.1562,1.625,0.1562,1.5625,0.1875,1.5625,0.2187,1.5625,0.2187,1.625,0.1875,1.625,0.1875,1.625,0.1875,1.5625,0.2187,1.5625,0.25,1.5625,0.25,1.625,0.2187,1.625,0.2187,1.625,0.2187,1.5625,0.25,1.5625,0.2812,1.5625,0.2812,1.625,0.25,1.625,0.25,1.625,0.25,1.5625,0.2812,1.5625,0.3125,1.5625,0.3125,1.625,0.2812,1.625,0.2812,1.625,0.2812,1.5625,0.3125,1.5625,0.3437,1.5625,0.3437,1.625,0.3125,1.625,0.3125,1.625,0.3125,1.5625,0.3437,1.5625,0.375,1.5625,0.375,1.625,0.3437,1.625,0.3437,1.625,0.3437,1.5625,0.375,1.5625,0.4062,1.5625,0.4062,1.625,0.375,1.625,0.375,1.625,0.375,1.5625,0.4062,1.5625,0.4375,1.5625,0.4375,1.625,0.4062,1.625,0.4062,1.625,0.4062,1.5625,0.4375,1.5625,0.4688,1.5625,0.4688,1.625,0.4375,1.625,0.4375,1.625,0.4375,1.5625,0.4688,1.5625,0.5,1.5625,0.5,1.625,0.4688,1.625,0.4688,1.625,0.4688,1.5625,0.5,1.5625,0.0312,1.5,0.0312,1.5625,0.0,1.5625,0.0,1.5625,0.0,1.5,0.0312,1.5,0.0625,1.5,0.0625,1.5625,0.0312,1.5625,0.0312,1.5625,0.0312,1.5,0.0625,1.5,0.0938,1.5,0.0938,1.5625,0.0625,1.5625,0.0625,1.5625,0.0625,1.5,0.0938,1.5,0.125,1.5,0.125,1.5625,0.0938,1.5625,0.0938,1.5625,0.0938,1.5,0.125,1.5,0.1562,1.5,0.1562,1.5625,0.125,1.5625,0.125,1.5625,0.125,1.5,0.1562,1.5,0.1875,1.5,0.1875,1.5625,0.1562,1.5625,0.1562,1.5625,0.1562,1.5,0.1875,1.5,0.2187,1.5,0.2187,1.5625,0.1875,1.5625,0.1875,1.5625,0.1875,1.5,0.2187,1.5,0.25,1.5,0.25,1.5625,0.2187,1.5625,0.2187,1.5625,0.2187,1.5,0.25,1.5,0.2812,1.5,0.2812,1.5625,0.25,1.5625,0.25,1.5625,0.25,1.5,0.2812,1.5,0.3125,1.5,0.3125,1.5625,0.2812,1.5625,0.2812,1.5625,0.2812,1.5,0.3125,1.5,0.3437,1.5,0.3437,1.5625,0.3125,1.5625,0.3125,1.5625,0.3125,1.5,0.3437,1.5,0.375,1.5,0.375,1.5625,0.3437,1.5625,0.3437,1.5625,0.3437,1.5,0.375,1.5,0.4062,1.5,0.4062,1.5625,0.375,1.5625,0.375,1.5625,0.375,1.5,0.4062,1.5,0.4375,1.5,0.4375,1.5625,0.4062,1.5625,0.4062,1.5625,0.4062,1.5,0.4375,1.5,0.4688,1.5,0.4688,1.5625,0.4375,1.5625,0.4375,1.5625,0.4375,1.5,0.4688,1.5,0.5,1.5,0.5,1.5625,0.4688,1.5625,0.4688,1.5625,0.4688,1.5,0.5,1.5,0.0312,1.4375,0.0312,1.5,0.0,1.5,0.0,1.5,0.0,1.4375,0.0312,1.4375,0.0625,1.4375,0.0625,1.5,0.0312,1.5,0.0312,1.5,0.0312,1.4375,0.0625,1.4375,0.0938,1.4375,0.0938,1.5,0.0625,1.5,0.0625,1.5,0.0625,1.4375,0.0938,1.4375,0.125,1.4375,0.125,1.5,0.0938,1.5,0.0938,1.5,0.0938,1.4375,0.125,1.4375,0.1562,1.4375,0.1562,1.5,0.125,1.5,0.125,1.5,0.125,1.4375,0.1562,1.4375,0.1875,1.4375,0.1875,1.5,0.1562,1.5,0.1562,1.5,0.1562,1.4375,0.1875,1.4375,0.2187,1.4375,0.2187,1.5,0.1875,1.5,0.1875,1.5,0.1875,1.4375,0.2187,1.4375,0.25,1.4375,0.25,1.5,0.2187,1.5,0.2187,1.5,0.2187,1.4375,0.25,1.4375,0.2812,1.4375,0.2812,1.5,0.25,1.5,0.25,1.5,0.25,1.4375,0.2812,1.4375,0.3125,1.4375,0.3125,1.5,0.2812,1.5,0.2812,1.5,0.2812,1.4375,0.3125,1.4375,0.3437,1.4375,0.3437,1.5,0.3125,1.5,0.3125,1.5,0.3125,1.4375,0.3437,1.4375,0.375,1.4375,0.375,1.5,0.3437,1.5,0.3437,1.5,0.3437,1.4375,0.375,1.4375,0.4062,1.4375,0.4062,1.5,0.375,1.5,0.375,1.5,0.375,1.4375,0.4062,1.4375,0.4375,1.4375,0.4375,1.5,0.4062,1.5,0.4062,1.5,0.4062,1.4375,0.4375,1.4375,0.4688,1.4375,0.4688,1.5,0.4375,1.5,0.4375,1.5,0.4375,1.4375,0.4688,1.4375,0.5,1.4375,0.5,1.5,0.4688,1.5,0.4688,1.5,0.4688,1.4375,0.5,1.4375,0.0312,1.375,0.0312,1.4375,0.0,1.4375,0.0,1.4375,0.0,1.375,0.0312,1.375,0.0625,1.375,0.0625,1.4375,0.0312,1.4375,0.0312,1.4375,0.0312,1.375,0.0625,1.375,0.0938,1.375,0.0938,1.4375,0.0625,1.4375,0.0625,1.4375,0.0625,1.375,0.0938,1.375,0.125,1.375,0.125,1.4375,0.0938,1.4375,0.0938,1.4375,0.0938,1.375,0.125,1.375,0.1562,1.375,0.1562,1.4375,0.125,1.4375,0.125,1.4375,0.125,1.375,0.1562,1.375,0.1875,1.375,0.1875,1.4375,0.1562,1.4375,0.1562,1.4375,0.1562,1.375,0.1875,1.375,0.2187,1.375,0.2187,1.4375,0.1875,1.4375,0.1875,1.4375,0.1875,1.375,0.2187,1.375,0.25,1.375,0.25,1.4375,0.2187,1.4375,0.2187,1.4375,0.2187,1.375,0.25,1.375,0.2812,1.375,0.2812,1.4375,0.25,1.4375,0.25,1.4375,0.25,1.375,0.2812,1.375,0.3125,1.375,0.3125,1.4375,0.2812,1.4375,0.2812,1.4375,0.2812,1.375,0.3125,1.375,0.3437,1.375,0.3437,1.4375,0.3125,1.4375,0.3125,1.4375,0.3125,1.375,0.3437,1.375,0.375,1.375,0.375,1.4375,0.3437,1.4375,0.3437,1.4375,0.3437,1.375,0.375,1.375,0.4062,1.375,0.4062,1.4375,0.375,1.4375,0.375,1.4375,0.375,1.375,0.4062,1.375,0.4375,1.375,0.4375,1.4375,0.4062,1.4375,0.4062,1.4375,0.4062,1.375,0.4375,1.375,0.4688,1.375,0.4688,1.4375,0.4375,1.4375,0.4375,1.4375,0.4375,1.375,0.4688,1.375,0.5,1.375,0.5,1.4375,0.4688,1.4375,0.4688,1.4375,0.4688,1.375,0.5,1.375,0.0312,1.3125,0.0312,1.375,0.0,1.375,0.0,1.375,0.0,1.3125,0.0312,1.3125,0.0625,1.3125,0.0625,1.375,0.0312,1.375,0.0312,1.375,0.0312,1.3125,0.0625,1.3125,0.0938,1.3125,0.0938,1.375,0.0625,1.375,0.0625,1.375,0.0625,1.3125,0.0938,1.3125,0.125,1.3125,0.125,1.375,0.0938,1.375,0.0938,1.375,0.0938,1.3125,0.125,1.3125,0.1562,1.3125,0.1562,1.375,0.125,1.375,0.125,1.375,0.125,1.3125,0.1562,1.3125,0.1875,1.3125,0.1875,1.375,0.1562,1.375,0.1562,1.375,0.1562,1.3125,0.1875,1.3125,0.2187,1.3125,0.2187,1.375,0.1875,1.375,0.1875,1.375,0.1875,1.3125,0.2187,1.3125,0.25,1.3125,0.25,1.375,0.2187,1.375,0.2187,1.375,0.2187,1.3125,0.25,1.3125,0.2812,1.3125,0.2812,1.375,0.25,1.375,0.25,1.375,0.25,1.3125,0.2812,1.3125,0.3125,1.3125,0.3125,1.375,0.2812,1.375,0.2812,1.375,0.2812,1.3125,0.3125,1.3125,0.3437,1.3125,0.3437,1.375,0.3125,1.375,0.3125,1.375,0.3125,1.3125,0.3437,1.3125,0.375,1.3125,0.375,1.375,0.3437,1.375,0.3437,1.375,0.3437,1.3125,0.375,1.3125,0.4062,1.3125,0.4062,1.375,0.375,1.375,0.375,1.375,0.375,1.3125,0.4062,1.3125,0.4375,1.3125,0.4375,1.375,0.4062,1.375,0.4062,1.375,0.4062,1.3125,0.4375,1.3125,0.4688,1.3125,0.4688,1.375,0.4375,1.375,0.4375,1.375,0.4375,1.3125,0.4688,1.3125,0.5,1.3125,0.5,1.375,0.4688,1.375,0.4688,1.375,0.4688,1.3125,0.5,1.3125,0.0312,1.25,0.0312,1.3125,0.0,1.3125,0.0,1.3125,0.0,1.25,0.0312,1.25,0.0625,1.25,0.0625,1.3125,0.0312,1.3125,0.0312,1.3125,0.0312,1.25,0.0625,1.25,0.0938,1.25,0.0938,1.3125,0.0625,1.3125,0.0625,1.3125,0.0625,1.25,0.0938,1.25,0.125,1.25,0.125,1.3125,0.0938,1.3125,0.0938,1.3125,0.0938,1.25,0.125,1.25,0.1562,1.25,0.1562,1.3125,0.125,1.3125,0.125,1.3125,0.125,1.25,0.1562,1.25,0.1875,1.25,0.1875,1.3125,0.1562,1.3125,0.1562,1.3125,0.1562,1.25,0.1875,1.25,0.2187,1.25,0.2187,1.3125,0.1875,1.3125,0.1875,1.3125,0.1875,1.25,0.2187,1.25,0.25,1.25,0.25,1.3125,0.2187,1.3125,0.2187,1.3125,0.2187,1.25,0.25,1.25,0.2812,1.25,0.2812,1.3125,0.25,1.3125,0.25,1.3125,0.25,1.25,0.2812,1.25,0.3125,1.25,0.3125,1.3125,0.2812,1.3125,0.2812,1.3125,0.2812,1.25,0.3125,1.25,0.3437,1.25,0.3437,1.3125,0.3125,1.3125,0.3125,1.3125,0.3125,1.25,0.3437,1.25,0.375,1.25,0.375,1.3125,0.3437,1.3125,0.3437,1.3125,0.3437,1.25,0.375,1.25,0.4062,1.25,0.4062,1.3125,0.375,1.3125,0.375,1.3125,0.375,1.25,0.4062,1.25,0.4375,1.25,0.4375,1.3125,0.4062,1.3125,0.4062,1.3125,0.4062,1.25,0.4375,1.25,0.4688,1.25,0.4688,1.3125,0.4375,1.3125,0.4375,1.3125,0.4375,1.25,0.4688,1.25,0.5,1.25,0.5,1.3125,0.4688,1.3125,0.4688,1.3125,0.4688,1.25,0.5,1.25,0.0312,1.1875,0.0312,1.25,0.0,1.25,0.0,1.25,0.0,1.1875,0.0312,1.1875,0.0625,1.1875,0.0625,1.25,0.0312,1.25,0.0312,1.25,0.0312,1.1875,0.0625,1.1875,0.0938,1.1875,0.0938,1.25,0.0625,1.25,0.0625,1.25,0.0625,1.1875,0.0938,1.1875,0.125,1.1875,0.125,1.25,0.0938,1.25,0.0938,1.25,0.0938,1.1875,0.125,1.1875,0.1562,1.1875,0.1562,1.25,0.125,1.25,0.125,1.25,0.125,1.1875,0.1562,1.1875,0.1875,1.1875,0.1875,1.25,0.1562,1.25,0.1562,1.25,0.1562,1.1875,0.1875,1.1875,0.2187,1.1875,0.2187,1.25,0.1875,1.25,0.1875,1.25,0.1875,1.1875,0.2187,1.1875,0.25,1.1875,0.25,1.25,0.2187,1.25,0.2187,1.25,0.2187,1.1875,0.25,1.1875,0.2812,1.1875,0.2812,1.25,0.25,1.25,0.25,1.25,0.25,1.1875,0.2812,1.1875,0.3125,1.1875,0.3125,1.25,0.2812,1.25,0.2812,1.25,0.2812,1.1875,0.3125,1.1875,0.3437,1.1875,0.3437,1.25,0.3125,1.25,0.3125,1.25,0.3125,1.1875,0.3437,1.1875,0.375,1.1875,0.375,1.25,0.3437,1.25,0.3437,1.25,0.3437,1.1875,0.375,1.1875,0.4062,1.1875,0.4062,1.25,0.375,1.25,0.375,1.25,0.375,1.1875,0.4062,1.1875,0.4375,1.1875,0.4375,1.25,0.4062,1.25,0.4062,1.25,0.4062,1.1875,0.4375,1.1875,0.4688,1.1875,0.4688,1.25,0.4375,1.25,0.4375,1.25,0.4375,1.1875,0.4688,1.1875,0.5,1.1875,0.5,1.25,0.4688,1.25,0.4688,1.25,0.4688,1.1875,0.5,1.1875,0.0312,1.125,0.0312,1.1875,0.0,1.1875,0.0,1.1875,0.0,1.125,0.0312,1.125,0.0625,1.125,0.0625,1.1875,0.0312,1.1875,0.0312,1.1875,0.0312,1.125,0.0625,1.125,0.0938,1.125,0.0938,1.1875,0.0625,1.1875,0.0625,1.1875,0.0625,1.125,0.0938,1.125,0.125,1.125,0.125,1.1875,0.0938,1.1875,0.0938,1.1875,0.0938,1.125,0.125,1.125,0.1562,1.125,0.1562,1.1875,0.125,1.1875,0.125,1.1875,0.125,1.125,0.1562,1.125,0.1875,1.125,0.1875,1.1875,0.1562,1.1875,0.1562,1.1875,0.1562,1.125,0.1875,1.125,0.2187,1.125,0.2187,1.1875,0.1875,1.1875,0.1875,1.1875,0.1875,1.125,0.2187,1.125,0.25,1.125,0.25,1.1875,0.2187,1.1875,0.2187,1.1875,0.2187,1.125,0.25,1.125,0.2812,1.125,0.2812,1.1875,0.25,1.1875,0.25,1.1875,0.25,1.125,0.2812,1.125,0.3125,1.125,0.3125,1.1875,0.2812,1.1875,0.2812,1.1875,0.2812,1.125,0.3125,1.125,0.3437,1.125,0.3437,1.1875,0.3125,1.1875,0.3125,1.1875,0.3125,1.125,0.3437,1.125,0.375,1.125,0.375,1.1875,0.3437,1.1875,0.3437,1.1875,0.3437,1.125,0.375,1.125,0.4062,1.125,0.4062,1.1875,0.375,1.1875,0.375,1.1875,0.375,1.125,0.4062,1.125,0.4375,1.125,0.4375,1.1875,0.4062,1.1875,0.4062,1.1875,0.4062,1.125,0.4375,1.125,0.4688,1.125,0.4688,1.1875,0.4375,1.1875,0.4375,1.1875,0.4375,1.125,0.4688,1.125,0.5,1.125,0.5,1.1875,0.4688,1.1875,0.4688,1.1875,0.4688,1.125,0.5,1.125,0.0312,1.0625,0.0312,1.125,0.0,1.125,0.0,1.125,0.0,1.0625,0.0312,1.0625,0.0625,1.0625,0.0625,1.125,0.0312,1.125,0.0312,1.125,0.0312,1.0625,0.0625,1.0625,0.0938,1.0625,0.0938,1.125,0.0625,1.125,0.0625,1.125,0.0625,1.0625,0.0938,1.0625,0.125,1.0625,0.125,1.125,0.0938,1.125,0.0938,1.125,0.0938,1.0625,0.125,1.0625,0.1562,1.0625,0.1562,1.125,0.125,1.125,0.125,1.125,0.125,1.0625,0.1562,1.0625,0.1875,1.0625,0.1875,1.125,0.1562,1.125,0.1562,1.125,0.1562,1.0625,0.1875,1.0625,0.2187,1.0625,0.2187,1.125,0.1875,1.125,0.1875,1.125,0.1875,1.0625,0.2187,1.0625,0.25,1.0625,0.25,1.125,0.2187,1.125,0.2187,1.125,0.2187,1.0625,0.25,1.0625,0.2812,1.0625,0.2812,1.125,0.25,1.125,0.25,1.125,0.25,1.0625,0.2812,1.0625,0.3125,1.0625,0.3125,1.125,0.2812,1.125,0.2812,1.125,0.2812,1.0625,0.3125,1.0625,0.3437,1.0625,0.3437,1.125,0.3125,1.125,0.3125,1.125,0.3125,1.0625,0.3437,1.0625,0.375,1.0625,0.375,1.125,0.3437,1.125,0.3437,1.125,0.3437,1.0625,0.375,1.0625,0.4062,1.0625,0.4062,1.125,0.375,1.125,0.375,1.125,0.375,1.0625,0.4062,1.0625,0.4375,1.0625,0.4375,1.125,0.4062,1.125,0.4062,1.125,0.4062,1.0625,0.4375,1.0625,0.4688,1.0625,0.4688,1.125,0.4375,1.125,0.4375,1.125,0.4375,1.0625,0.4688,1.0625,0.5,1.0625,0.5,1.125,0.4688,1.125,0.4688,1.125,0.4688,1.0625,0.5,1.0625,0.0,1.0,0.0312,1.0625,0.0,1.0625,0.0312,1.0,0.0625,1.0625,0.0312,1.0625,0.0625,1.0,0.0938,1.0625,0.0625,1.0625,0.0938,1.0,0.125,1.0625,0.0938,1.0625,0.125,1.0,0.1562,1.0625,0.125,1.0625,0.1562,1.0,0.1875,1.0625,0.1562,1.0625,0.1875,1.0,0.2187,1.0625,0.1875,1.0625,0.2187,1.0,0.25,1.0625,0.2187,1.0625,0.25,1.0,0.2812,1.0625,0.25,1.0625,0.2812,1.0,0.3125,1.0625,0.2812,1.0625,0.3125,1.0,0.3437,1.0625,0.3125,1.0625,0.3437,1.0,0.375,1.0625,0.3437,1.0625,0.375,1.0,0.4062,1.0625,0.375,1.0625,0.4062,1.0,0.4375,1.0625,0.4062,1.0625,0.4375,1.0,0.4688,1.0625,0.4375,1.0625,0.4688,1.0,0.5,1.0625,0.4688,1.0625],"uvs2":null,"colors":null,"hasVertexAlpha":false,"matricesIndices":null,"matricesWeights":null,"matricesIndicesExtra":null,"matricesWeightsExtra":null,"indices":[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],"receiveShadows":true,"infiniteDistance":false,"billboardMode":0,"visibility":1.0,"subMeshes":[{"materialIndex":0,"verticesStart":0,"verticesCount":1440,"indexStart":0,"indexCount":1440}],"instances":null,"skeletonId":-1,"numBoneInfluencers":4,"applyFog":true,"lodMeshIds":null,"lodDistances":null,"lodCoverages":null,"rotation":null,"scaling":[1.0,1.0,1.0],"rotationQuaternion":[0.0,0.0,0.0,1.0],"actions":null,"checkCollisions":false,"pickable":false,"showBoundingBox":false,"showSubMeshesBoundingBox":false,"alphaIndex":1000,"physicsImpostor":0,"physicsMass":0.0,"physicsFriction":0.0,"physicsRestitution":0.0,"name":"StandardArnoldMeshBackfaceCullingOn","id":"57bbf667-4bf9-4453-8787-dd1f8673b543","parentId":null,"position":[6.0,0.0,0.0],"animations":[],"autoAnimate":true,"autoAnimateFrom":0,"autoAnimateTo":100,"autoAnimateLoop":true,"metadata":null},{"materialId":"0361c87e-7860-4b66-9bc3-cfa98d8f3667","isEnabled":true,"isVisible":true,"positions":[0.0,1.0,0.0,0.0,0.9808,0.1951,-0.0381,0.9808,0.1913,0.0,1.0,0.0,-0.0381,0.9808,0.1913,-0.0747,0.9808,0.1802,0.0,1.0,0.0,-0.0747,0.9808,0.1802,-0.1084,0.9808,0.1622,0.0,1.0,0.0,-0.1084,0.9808,0.1622,-0.1379,0.9808,0.1379,0.0,1.0,0.0,-0.1379,0.9808,0.1379,-0.1622,0.9808,0.1084,0.0,1.0,0.0,-0.1622,0.9808,0.1084,-0.1802,0.9808,0.0747,0.0,1.0,0.0,-0.1802,0.9808,0.0747,-0.1913,0.9808,0.0381,0.0,1.0,0.0,-0.1913,0.9808,0.0381,-0.1951,0.9808,0.0,0.0,1.0,0.0,-0.1951,0.9808,0.0,-0.1913,0.9808,-0.0381,0.0,1.0,0.0,-0.1913,0.9808,-0.0381,-0.1802,0.9808,-0.0747,0.0,1.0,0.0,-0.1802,0.9808,-0.0747,-0.1622,0.9808,-0.1084,0.0,1.0,0.0,-0.1622,0.9808,-0.1084,-0.1379,0.9808,-0.1379,0.0,1.0,0.0,-0.1379,0.9808,-0.1379,-0.1084,0.9808,-0.1622,0.0,1.0,0.0,-0.1084,0.9808,-0.1622,-0.0747,0.9808,-0.1802,0.0,1.0,0.0,-0.0747,0.9808,-0.1802,-0.0381,0.9808,-0.1913,0.0,1.0,0.0,-0.0381,0.9808,-0.1913,0.0,0.9808,-0.1951,-0.0747,0.9239,0.3753,-0.0381,0.9808,0.1913,0.0,0.9808,0.1951,0.0,0.9808,0.1951,0.0,0.9239,0.3827,-0.0747,0.9239,0.3753,-0.1464,0.9239,0.3536,-0.0747,0.9808,0.1802,-0.0381,0.9808,0.1913,-0.0381,0.9808,0.1913,-0.0747,0.9239,0.3753,-0.1464,0.9239,0.3536,-0.2126,0.9239,0.3182,-0.1084,0.9808,0.1622,-0.0747,0.9808,0.1802,-0.0747,0.9808,0.1802,-0.1464,0.9239,0.3536,-0.2126,0.9239,0.3182,-0.2706,0.9239,0.2706,-0.1379,0.9808,0.1379,-0.1084,0.9808,0.1622,-0.1084,0.9808,0.1622,-0.2126,0.9239,0.3182,-0.2706,0.9239,0.2706,-0.3182,0.9239,0.2126,-0.1622,0.9808,0.1084,-0.1379,0.9808,0.1379,-0.1379,0.9808,0.1379,-0.2706,0.9239,0.2706,-0.3182,0.9239,0.2126,-0.3536,0.9239,0.1464,-0.1802,0.9808,0.0747,-0.1622,0.9808,0.1084,-0.1622,0.9808,0.1084,-0.3182,0.9239,0.2126,-0.3536,0.9239,0.1464,-0.3753,0.9239,0.0747,-0.1913,0.9808,0.0381,-0.1802,0.9808,0.0747,-0.1802,0.9808,0.0747,-0.3536,0.9239,0.1464,-0.3753,0.9239,0.0747,-0.3827,0.9239,0.0,-0.1951,0.9808,0.0,-0.1913,0.9808,0.0381,-0.1913,0.9808,0.0381,-0.3753,0.9239,0.0747,-0.3827,0.9239,0.0,-0.3753,0.9239,-0.0747,-0.1913,0.9808,-0.0381,-0.1951,0.9808,0.0,-0.1951,0.9808,0.0,-0.3827,0.9239,0.0,-0.3753,0.9239,-0.0747,-0.3536,0.9239,-0.1464,-0.1802,0.9808,-0.0747,-0.1913,0.9808,-0.0381,-0.1913,0.9808,-0.0381,-0.3753,0.9239,-0.0747,-0.3536,0.9239,-0.1464,-0.3182,0.9239,-0.2126,-0.1622,0.9808,-0.1084,-0.1802,0.9808,-0.0747,-0.1802,0.9808,-0.0747,-0.3536,0.9239,-0.1464,-0.3182,0.9239,-0.2126,-0.2706,0.9239,-0.2706,-0.1379,0.9808,-0.1379,-0.1622,0.9808,-0.1084,-0.1622,0.9808,-0.1084,-0.3182,0.9239,-0.2126,-0.2706,0.9239,-0.2706,-0.2126,0.9239,-0.3182,-0.1084,0.9808,-0.1622,-0.1379,0.9808,-0.1379,-0.1379,0.9808,-0.1379,-0.2706,0.9239,-0.2706,-0.2126,0.9239,-0.3182,-0.1464,0.9239,-0.3536,-0.0747,0.9808,-0.1802,-0.1084,0.9808,-0.1622,-0.1084,0.9808,-0.1622,-0.2126,0.9239,-0.3182,-0.1464,0.9239,-0.3536,-0.0747,0.9239,-0.3753,-0.0381,0.9808,-0.1913,-0.0747,0.9808,-0.1802,-0.0747,0.9808,-0.1802,-0.1464,0.9239,-0.3536,-0.0747,0.9239,-0.3753,0.0,0.9239,-0.3827,0.0,0.9808,-0.1951,-0.0381,0.9808,-0.1913,-0.0381,0.9808,-0.1913,-0.0747,0.9239,-0.3753,0.0,0.9239,-0.3827,-0.1084,0.8315,0.5449,-0.0747,0.9239,0.3753,0.0,0.9239,0.3827,0.0,0.9239,0.3827,0.0,0.8315,0.5556,-0.1084,0.8315,0.5449,-0.2126,0.8315,0.5133,-0.1464,0.9239,0.3536,-0.0747,0.9239,0.3753,-0.0747,0.9239,0.3753,-0.1084,0.8315,0.5449,-0.2126,0.8315,0.5133,-0.3087,0.8315,0.4619,-0.2126,0.9239,0.3182,-0.1464,0.9239,0.3536,-0.1464,0.9239,0.3536,-0.2126,0.8315,0.5133,-0.3087,0.8315,0.4619,-0.3928,0.8315,0.3928,-0.2706,0.9239,0.2706,-0.2126,0.9239,0.3182,-0.2126,0.9239,0.3182,-0.3087,0.8315,0.4619,-0.3928,0.8315,0.3928,-0.4619,0.8315,0.3087,-0.3182,0.9239,0.2126,-0.2706,0.9239,0.2706,-0.2706,0.9239,0.2706,-0.3928,0.8315,0.3928,-0.4619,0.8315,0.3087,-0.5133,0.8315,0.2126,-0.3536,0.9239,0.1464,-0.3182,0.9239,0.2126,-0.3182,0.9239,0.2126,-0.4619,0.8315,0.3087,-0.5133,0.8315,0.2126,-0.5449,0.8315,0.1084,-0.3753,0.9239,0.0747,-0.3536,0.9239,0.1464,-0.3536,0.9239,0.1464,-0.5133,0.8315,0.2126,-0.5449,0.8315,0.1084,-0.5556,0.8315,0.0,-0.3827,0.9239,0.0,-0.3753,0.9239,0.0747,-0.3753,0.9239,0.0747,-0.5449,0.8315,0.1084,-0.5556,0.8315,0.0,-0.5449,0.8315,-0.1084,-0.3753,0.9239,-0.0747,-0.3827,0.9239,0.0,-0.3827,0.9239,0.0,-0.5556,0.8315,0.0,-0.5449,0.8315,-0.1084,-0.5133,0.8315,-0.2126,-0.3536,0.9239,-0.1464,-0.3753,0.9239,-0.0747,-0.3753,0.9239,-0.0747,-0.5449,0.8315,-0.1084,-0.5133,0.8315,-0.2126,-0.4619,0.8315,-0.3087,-0.3182,0.9239,-0.2126,-0.3536,0.9239,-0.1464,-0.3536,0.9239,-0.1464,-0.5133,0.8315,-0.2126,-0.4619,0.8315,-0.3087,-0.3928,0.8315,-0.3928,-0.2706,0.9239,-0.2706,-0.3182,0.9239,-0.2126,-0.3182,0.9239,-0.2126,-0.4619,0.8315,-0.3087,-0.3928,0.8315,-0.3928,-0.3087,0.8315,-0.4619,-0.2126,0.9239,-0.3182,-0.2706,0.9239,-0.2706,-0.2706,0.9239,-0.2706,-0.3928,0.8315,-0.3928,-0.3087,0.8315,-0.4619,-0.2126,0.8315,-0.5133,-0.1464,0.9239,-0.3536,-0.2126,0.9239,-0.3182,-0.2126,0.9239,-0.3182,-0.3087,0.8315,-0.4619,-0.2126,0.8315,-0.5133,-0.1084,0.8315,-0.5449,-0.0747,0.9239,-0.3753,-0.1464,0.9239,-0.3536,-0.1464,0.9239,-0.3536,-0.2126,0.8315,-0.5133,-0.1084,0.8315,-0.5449,0.0,0.8315,-0.5556,0.0,0.9239,-0.3827,-0.0747,0.9239,-0.3753,-0.0747,0.9239,-0.3753,-0.1084,0.8315,-0.5449,0.0,0.8315,-0.5556,-0.1379,0.7071,0.6935,-0.1084,0.8315,0.5449,0.0,0.8315,0.5556,0.0,0.8315,0.5556,0.0,0.7071,0.7071,-0.1379,0.7071,0.6935,-0.2706,0.7071,0.6533,-0.2126,0.8315,0.5133,-0.1084,0.8315,0.5449,-0.1084,0.8315,0.5449,-0.1379,0.7071,0.6935,-0.2706,0.7071,0.6533,-0.3928,0.7071,0.5879,-0.3087,0.8315,0.4619,-0.2126,0.8315,0.5133,-0.2126,0.8315,0.5133,-0.2706,0.7071,0.6533,-0.3928,0.7071,0.5879,-0.5,0.7071,0.5,-0.3928,0.8315,0.3928,-0.3087,0.8315,0.4619,-0.3087,0.8315,0.4619,-0.3928,0.7071,0.5879,-0.5,0.7071,0.5,-0.5879,0.7071,0.3928,-0.4619,0.8315,0.3087,-0.3928,0.8315,0.3928,-0.3928,0.8315,0.3928,-0.5,0.7071,0.5,-0.5879,0.7071,0.3928,-0.6533,0.7071,0.2706,-0.5133,0.8315,0.2126,-0.4619,0.8315,0.3087,-0.4619,0.8315,0.3087,-0.5879,0.7071,0.3928,-0.6533,0.7071,0.2706,-0.6935,0.7071,0.1379,-0.5449,0.8315,0.1084,-0.5133,0.8315,0.2126,-0.5133,0.8315,0.2126,-0.6533,0.7071,0.2706,-0.6935,0.7071,0.1379,-0.7071,0.7071,0.0,-0.5556,0.8315,0.0,-0.5449,0.8315,0.1084,-0.5449,0.8315,0.1084,-0.6935,0.7071,0.1379,-0.7071,0.7071,0.0,-0.6935,0.7071,-0.1379,-0.5449,0.8315,-0.1084,-0.5556,0.8315,0.0,-0.5556,0.8315,0.0,-0.7071,0.7071,0.0,-0.6935,0.7071,-0.1379,-0.6533,0.7071,-0.2706,-0.5133,0.8315,-0.2126,-0.5449,0.8315,-0.1084,-0.5449,0.8315,-0.1084,-0.6935,0.7071,-0.1379,-0.6533,0.7071,-0.2706,-0.5879,0.7071,-0.3928,-0.4619,0.8315,-0.3087,-0.5133,0.8315,-0.2126,-0.5133,0.8315,-0.2126,-0.6533,0.7071,-0.2706,-0.5879,0.7071,-0.3928,-0.5,0.7071,-0.5,-0.3928,0.8315,-0.3928,-0.4619,0.8315,-0.3087,-0.4619,0.8315,-0.3087,-0.5879,0.7071,-0.3928,-0.5,0.7071,-0.5,-0.3928,0.7071,-0.5879,-0.3087,0.8315,-0.4619,-0.3928,0.8315,-0.3928,-0.3928,0.8315,-0.3928,-0.5,0.7071,-0.5,-0.3928,0.7071,-0.5879,-0.2706,0.7071,-0.6533,-0.2126,0.8315,-0.5133,-0.3087,0.8315,-0.4619,-0.3087,0.8315,-0.4619,-0.3928,0.7071,-0.5879,-0.2706,0.7071,-0.6533,-0.1379,0.7071,-0.6935,-0.1084,0.8315,-0.5449,-0.2126,0.8315,-0.5133,-0.2126,0.8315,-0.5133,-0.2706,0.7071,-0.6533,-0.1379,0.7071,-0.6935,0.0,0.7071,-0.7071,0.0,0.8315,-0.5556,-0.1084,0.8315,-0.5449,-0.1084,0.8315,-0.5449,-0.1379,0.7071,-0.6935,0.0,0.7071,-0.7071,-0.1622,0.5556,0.8155,-0.1379,0.7071,0.6935,0.0,0.7071,0.7071,0.0,0.7071,0.7071,0.0,0.5556,0.8315,-0.1622,0.5556,0.8155,-0.3182,0.5556,0.7682,-0.2706,0.7071,0.6533,-0.1379,0.7071,0.6935,-0.1379,0.7071,0.6935,-0.1622,0.5556,0.8155,-0.3182,0.5556,0.7682,-0.4619,0.5556,0.6913,-0.3928,0.7071,0.5879,-0.2706,0.7071,0.6533,-0.2706,0.7071,0.6533,-0.3182,0.5556,0.7682,-0.4619,0.5556,0.6913,-0.5879,0.5556,0.5879,-0.5,0.7071,0.5,-0.3928,0.7071,0.5879,-0.3928,0.7071,0.5879,-0.4619,0.5556,0.6913,-0.5879,0.5556,0.5879,-0.6913,0.5556,0.4619,-0.5879,0.7071,0.3928,-0.5,0.7071,0.5,-0.5,0.7071,0.5,-0.5879,0.5556,0.5879,-0.6913,0.5556,0.4619,-0.7682,0.5556,0.3182,-0.6533,0.7071,0.2706,-0.5879,0.7071,0.3928,-0.5879,0.7071,0.3928,-0.6913,0.5556,0.4619,-0.7682,0.5556,0.3182,-0.8155,0.5556,0.1622,-0.6935,0.7071,0.1379,-0.6533,0.7071,0.2706,-0.6533,0.7071,0.2706,-0.7682,0.5556,0.3182,-0.8155,0.5556,0.1622,-0.8315,0.5556,0.0,-0.7071,0.7071,0.0,-0.6935,0.7071,0.1379,-0.6935,0.7071,0.1379,-0.8155,0.5556,0.1622,-0.8315,0.5556,0.0,-0.8155,0.5556,-0.1622,-0.6935,0.7071,-0.1379,-0.7071,0.7071,0.0,-0.7071,0.7071,0.0,-0.8315,0.5556,0.0,-0.8155,0.5556,-0.1622,-0.7682,0.5556,-0.3182,-0.6533,0.7071,-0.2706,-0.6935,0.7071,-0.1379,-0.6935,0.7071,-0.1379,-0.8155,0.5556,-0.1622,-0.7682,0.5556,-0.3182,-0.6913,0.5556,-0.4619,-0.5879,0.7071,-0.3928,-0.6533,0.7071,-0.2706,-0.6533,0.7071,-0.2706,-0.7682,0.5556,-0.3182,-0.6913,0.5556,-0.4619,-0.5879,0.5556,-0.5879,-0.5,0.7071,-0.5,-0.5879,0.7071,-0.3928,-0.5879,0.7071,-0.3928,-0.6913,0.5556,-0.4619,-0.5879,0.5556,-0.5879,-0.4619,0.5556,-0.6913,-0.3928,0.7071,-0.5879,-0.5,0.7071,-0.5,-0.5,0.7071,-0.5,-0.5879,0.5556,-0.5879,-0.4619,0.5556,-0.6913,-0.3182,0.5556,-0.7682,-0.2706,0.7071,-0.6533,-0.3928,0.7071,-0.5879,-0.3928,0.7071,-0.5879,-0.4619,0.5556,-0.6913,-0.3182,0.5556,-0.7682,-0.1622,0.5556,-0.8155,-0.1379,0.7071,-0.6935,-0.2706,0.7071,-0.6533,-0.2706,0.7071,-0.6533,-0.3182,0.5556,-0.7682,-0.1622,0.5556,-0.8155,0.0,0.5556,-0.8315,0.0,0.7071,-0.7071,-0.1379,0.7071,-0.6935,-0.1379,0.7071,-0.6935,-0.1622,0.5556,-0.8155,0.0,0.5556,-0.8315,-0.1802,0.3827,0.9061,-0.1622,0.5556,0.8155,0.0,0.5556,0.8315,0.0,0.5556,0.8315,0.0,0.3827,0.9239,-0.1802,0.3827,0.9061,-0.3536,0.3827,0.8536,-0.3182,0.5556,0.7682,-0.1622,0.5556,0.8155,-0.1622,0.5556,0.8155,-0.1802,0.3827,0.9061,-0.3536,0.3827,0.8536,-0.5133,0.3827,0.7682,-0.4619,0.5556,0.6913,-0.3182,0.5556,0.7682,-0.3182,0.5556,0.7682,-0.3536,0.3827,0.8536,-0.5133,0.3827,0.7682,-0.6533,0.3827,0.6533,-0.5879,0.5556,0.5879,-0.4619,0.5556,0.6913,-0.4619,0.5556,0.6913,-0.5133,0.3827,0.7682,-0.6533,0.3827,0.6533,-0.7682,0.3827,0.5133,-0.6913,0.5556,0.4619,-0.5879,0.5556,0.5879,-0.5879,0.5556,0.5879,-0.6533,0.3827,0.6533,-0.7682,0.3827,0.5133,-0.8536,0.3827,0.3536,-0.7682,0.5556,0.3182,-0.6913,0.5556,0.4619,-0.6913,0.5556,0.4619,-0.7682,0.3827,0.5133,-0.8536,0.3827,0.3536,-0.9061,0.3827,0.1802,-0.8155,0.5556,0.1622,-0.7682,0.5556,0.3182,-0.7682,0.5556,0.3182,-0.8536,0.3827,0.3536,-0.9061,0.3827,0.1802,-0.9239,0.3827,0.0,-0.8315,0.5556,0.0,-0.8155,0.5556,0.1622,-0.8155,0.5556,0.1622,-0.9061,0.3827,0.1802,-0.9239,0.3827,0.0,-0.9061,0.3827,-0.1802,-0.8155,0.5556,-0.1622,-0.8315,0.5556,0.0,-0.8315,0.5556,0.0,-0.9239,0.3827,0.0,-0.9061,0.3827,-0.1802,-0.8536,0.3827,-0.3536,-0.7682,0.5556,-0.3182,-0.8155,0.5556,-0.1622,-0.8155,0.5556,-0.1622,-0.9061,0.3827,-0.1802,-0.8536,0.3827,-0.3536,-0.7682,0.3827,-0.5133,-0.6913,0.5556,-0.4619,-0.7682,0.5556,-0.3182,-0.7682,0.5556,-0.3182,-0.8536,0.3827,-0.3536,-0.7682,0.3827,-0.5133,-0.6533,0.3827,-0.6533,-0.5879,0.5556,-0.5879,-0.6913,0.5556,-0.4619,-0.6913,0.5556,-0.4619,-0.7682,0.3827,-0.5133,-0.6533,0.3827,-0.6533,-0.5133,0.3827,-0.7682,-0.4619,0.5556,-0.6913,-0.5879,0.5556,-0.5879,-0.5879,0.5556,-0.5879,-0.6533,0.3827,-0.6533,-0.5133,0.3827,-0.7682,-0.3536,0.3827,-0.8536,-0.3182,0.5556,-0.7682,-0.4619,0.5556,-0.6913,-0.4619,0.5556,-0.6913,-0.5133,0.3827,-0.7682,-0.3536,0.3827,-0.8536,-0.1802,0.3827,-0.9061,-0.1622,0.5556,-0.8155,-0.3182,0.5556,-0.7682,-0.3182,0.5556,-0.7682,-0.3536,0.3827,-0.8536,-0.1802,0.3827,-0.9061,0.0,0.3827,-0.9239,0.0,0.5556,-0.8315,-0.1622,0.5556,-0.8155,-0.1622,0.5556,-0.8155,-0.1802,0.3827,-0.9061,0.0,0.3827,-0.9239,-0.1913,0.1951,0.9619,-0.1802,0.3827,0.9061,0.0,0.3827,0.9239,0.0,0.3827,0.9239,0.0,0.1951,0.9808,-0.1913,0.1951,0.9619,-0.3753,0.1951,0.9061,-0.3536,0.3827,0.8536,-0.1802,0.3827,0.9061,-0.1802,0.3827,0.9061,-0.1913,0.1951,0.9619,-0.3753,0.1951,0.9061,-0.5449,0.1951,0.8155,-0.5133,0.3827,0.7682,-0.3536,0.3827,0.8536,-0.3536,0.3827,0.8536,-0.3753,0.1951,0.9061,-0.5449,0.1951,0.8155,-0.6935,0.1951,0.6935,-0.6533,0.3827,0.6533,-0.5133,0.3827,0.7682,-0.5133,0.3827,0.7682,-0.5449,0.1951,0.8155,-0.6935,0.1951,0.6935,-0.8155,0.1951,0.5449,-0.7682,0.3827,0.5133,-0.6533,0.3827,0.6533,-0.6533,0.3827,0.6533,-0.6935,0.1951,0.6935,-0.8155,0.1951,0.5449,-0.9061,0.1951,0.3753,-0.8536,0.3827,0.3536,-0.7682,0.3827,0.5133,-0.7682,0.3827,0.5133,-0.8155,0.1951,0.5449,-0.9061,0.1951,0.3753,-0.9619,0.1951,0.1913,-0.9061,0.3827,0.1802,-0.8536,0.3827,0.3536,-0.8536,0.3827,0.3536,-0.9061,0.1951,0.3753,-0.9619,0.1951,0.1913,-0.9808,0.1951,0.0,-0.9239,0.3827,0.0,-0.9061,0.3827,0.1802,-0.9061,0.3827,0.1802,-0.9619,0.1951,0.1913,-0.9808,0.1951,0.0,-0.9619,0.1951,-0.1913,-0.9061,0.3827,-0.1802,-0.9239,0.3827,0.0,-0.9239,0.3827,0.0,-0.9808,0.1951,0.0,-0.9619,0.1951,-0.1913,-0.9061,0.1951,-0.3753,-0.8536,0.3827,-0.3536,-0.9061,0.3827,-0.1802,-0.9061,0.3827,-0.1802,-0.9619,0.1951,-0.1913,-0.9061,0.1951,-0.3753,-0.8155,0.1951,-0.5449,-0.7682,0.3827,-0.5133,-0.8536,0.3827,-0.3536,-0.8536,0.3827,-0.3536,-0.9061,0.1951,-0.3753,-0.8155,0.1951,-0.5449,-0.6935,0.1951,-0.6935,-0.6533,0.3827,-0.6533,-0.7682,0.3827,-0.5133,-0.7682,0.3827,-0.5133,-0.8155,0.1951,-0.5449,-0.6935,0.1951,-0.6935,-0.5449,0.1951,-0.8155,-0.5133,0.3827,-0.7682,-0.6533,0.3827,-0.6533,-0.6533,0.3827,-0.6533,-0.6935,0.1951,-0.6935,-0.5449,0.1951,-0.8155,-0.3753,0.1951,-0.9061,-0.3536,0.3827,-0.8536,-0.5133,0.3827,-0.7682,-0.5133,0.3827,-0.7682,-0.5449,0.1951,-0.8155,-0.3753,0.1951,-0.9061,-0.1913,0.1951,-0.9619,-0.1802,0.3827,-0.9061,-0.3536,0.3827,-0.8536,-0.3536,0.3827,-0.8536,-0.3753,0.1951,-0.9061,-0.1913,0.1951,-0.9619,0.0,0.1951,-0.9808,0.0,0.3827,-0.9239,-0.1802,0.3827,-0.9061,-0.1802,0.3827,-0.9061,-0.1913,0.1951,-0.9619,0.0,0.1951,-0.9808,-0.1951,0.0,0.9808,-0.1913,0.1951,0.9619,0.0,0.1951,0.9808,0.0,0.1951,0.9808,0.0,0.0,1.0,-0.1951,0.0,0.9808,-0.3827,0.0,0.9239,-0.3753,0.1951,0.9061,-0.1913,0.1951,0.9619,-0.1913,0.1951,0.9619,-0.1951,0.0,0.9808,-0.3827,0.0,0.9239,-0.5556,0.0,0.8315,-0.5449,0.1951,0.8155,-0.3753,0.1951,0.9061,-0.3753,0.1951,0.9061,-0.3827,0.0,0.9239,-0.5556,0.0,0.8315,-0.7071,0.0,0.7071,-0.6935,0.1951,0.6935,-0.5449,0.1951,0.8155,-0.5449,0.1951,0.8155,-0.5556,0.0,0.8315,-0.7071,0.0,0.7071,-0.8315,0.0,0.5556,-0.8155,0.1951,0.5449,-0.6935,0.1951,0.6935,-0.6935,0.1951,0.6935,-0.7071,0.0,0.7071,-0.8315,0.0,0.5556,-0.9239,0.0,0.3827,-0.9061,0.1951,0.3753,-0.8155,0.1951,0.5449,-0.8155,0.1951,0.5449,-0.8315,0.0,0.5556,-0.9239,0.0,0.3827,-0.9808,0.0,0.1951,-0.9619,0.1951,0.1913,-0.9061,0.1951,0.3753,-0.9061,0.1951,0.3753,-0.9239,0.0,0.3827,-0.9808,0.0,0.1951,-1.0,0.0,0.0,-0.9808,0.1951,0.0,-0.9619,0.1951,0.1913,-0.9619,0.1951,0.1913,-0.9808,0.0,0.1951,-1.0,0.0,0.0,-0.9808,0.0,-0.1951,-0.9619,0.1951,-0.1913,-0.9808,0.1951,0.0,-0.9808,0.1951,0.0,-1.0,0.0,0.0,-0.9808,0.0,-0.1951,-0.9239,0.0,-0.3827,-0.9061,0.1951,-0.3753,-0.9619,0.1951,-0.1913,-0.9619,0.1951,-0.1913,-0.9808,0.0,-0.1951,-0.9239,0.0,-0.3827,-0.8315,0.0,-0.5556,-0.8155,0.1951,-0.5449,-0.9061,0.1951,-0.3753,-0.9061,0.1951,-0.3753,-0.9239,0.0,-0.3827,-0.8315,0.0,-0.5556,-0.7071,0.0,-0.7071,-0.6935,0.1951,-0.6935,-0.8155,0.1951,-0.5449,-0.8155,0.1951,-0.5449,-0.8315,0.0,-0.5556,-0.7071,0.0,-0.7071,-0.5556,0.0,-0.8315,-0.5449,0.1951,-0.8155,-0.6935,0.1951,-0.6935,-0.6935,0.1951,-0.6935,-0.7071,0.0,-0.7071,-0.5556,0.0,-0.8315,-0.3827,0.0,-0.9239,-0.3753,0.1951,-0.9061,-0.5449,0.1951,-0.8155,-0.5449,0.1951,-0.8155,-0.5556,0.0,-0.8315,-0.3827,0.0,-0.9239,-0.1951,0.0,-0.9808,-0.1913,0.1951,-0.9619,-0.3753,0.1951,-0.9061,-0.3753,0.1951,-0.9061,-0.3827,0.0,-0.9239,-0.1951,0.0,-0.9808,0.0,0.0,-1.0,0.0,0.1951,-0.9808,-0.1913,0.1951,-0.9619,-0.1913,0.1951,-0.9619,-0.1951,0.0,-0.9808,0.0,0.0,-1.0,-0.1913,-0.1951,0.9619,-0.1951,0.0,0.9808,0.0,0.0,1.0,0.0,0.0,1.0,0.0,-0.1951,0.9808,-0.1913,-0.1951,0.9619,-0.3753,-0.1951,0.9061,-0.3827,0.0,0.9239,-0.1951,0.0,0.9808,-0.1951,0.0,0.9808,-0.1913,-0.1951,0.9619,-0.3753,-0.1951,0.9061,-0.5449,-0.1951,0.8155,-0.5556,0.0,0.8315,-0.3827,0.0,0.9239,-0.3827,0.0,0.9239,-0.3753,-0.1951,0.9061,-0.5449,-0.1951,0.8155,-0.6935,-0.1951,0.6935,-0.7071,0.0,0.7071,-0.5556,0.0,0.8315,-0.5556,0.0,0.8315,-0.5449,-0.1951,0.8155,-0.6935,-0.1951,0.6935,-0.8155,-0.1951,0.5449,-0.8315,0.0,0.5556,-0.7071,0.0,0.7071,-0.7071,0.0,0.7071,-0.6935,-0.1951,0.6935,-0.8155,-0.1951,0.5449,-0.9061,-0.1951,0.3753,-0.9239,0.0,0.3827,-0.8315,0.0,0.5556,-0.8315,0.0,0.5556,-0.8155,-0.1951,0.5449,-0.9061,-0.1951,0.3753,-0.9619,-0.1951,0.1913,-0.9808,0.0,0.1951,-0.9239,0.0,0.3827,-0.9239,0.0,0.3827,-0.9061,-0.1951,0.3753,-0.9619,-0.1951,0.1913,-0.9808,-0.1951,0.0,-1.0,0.0,0.0,-0.9808,0.0,0.1951,-0.9808,0.0,0.1951,-0.9619,-0.1951,0.1913,-0.9808,-0.1951,0.0,-0.9619,-0.1951,-0.1913,-0.9808,0.0,-0.1951,-1.0,0.0,0.0,-1.0,0.0,0.0,-0.9808,-0.1951,0.0,-0.9619,-0.1951,-0.1913,-0.9061,-0.1951,-0.3753,-0.9239,0.0,-0.3827,-0.9808,0.0,-0.1951,-0.9808,0.0,-0.1951,-0.9619,-0.1951,-0.1913,-0.9061,-0.1951,-0.3753,-0.8155,-0.1951,-0.5449,-0.8315,0.0,-0.5556,-0.9239,0.0,-0.3827,-0.9239,0.0,-0.3827,-0.9061,-0.1951,-0.3753,-0.8155,-0.1951,-0.5449,-0.6935,-0.1951,-0.6935,-0.7071,0.0,-0.7071,-0.8315,0.0,-0.5556,-0.8315,0.0,-0.5556,-0.8155,-0.1951,-0.5449,-0.6935,-0.1951,-0.6935,-0.5449,-0.1951,-0.8155,-0.5556,0.0,-0.8315,-0.7071,0.0,-0.7071,-0.7071,0.0,-0.7071,-0.6935,-0.1951,-0.6935,-0.5449,-0.1951,-0.8155,-0.3753,-0.1951,-0.9061,-0.3827,0.0,-0.9239,-0.5556,0.0,-0.8315,-0.5556,0.0,-0.8315,-0.5449,-0.1951,-0.8155,-0.3753,-0.1951,-0.9061,-0.1913,-0.1951,-0.9619,-0.1951,0.0,-0.9808,-0.3827,0.0,-0.9239,-0.3827,0.0,-0.9239,-0.3753,-0.1951,-0.9061,-0.1913,-0.1951,-0.9619,0.0,-0.1951,-0.9808,0.0,0.0,-1.0,-0.1951,0.0,-0.9808,-0.1951,0.0,-0.9808,-0.1913,-0.1951,-0.9619,0.0,-0.1951,-0.9808,-0.1802,-0.3827,0.9061,-0.1913,-0.1951,0.9619,0.0,-0.1951,0.9808,0.0,-0.1951,0.9808,0.0,-0.3827,0.9239,-0.1802,-0.3827,0.9061,-0.3536,-0.3827,0.8536,-0.3753,-0.1951,0.9061,-0.1913,-0.1951,0.9619,-0.1913,-0.1951,0.9619,-0.1802,-0.3827,0.9061,-0.3536,-0.3827,0.8536,-0.5133,-0.3827,0.7682,-0.5449,-0.1951,0.8155,-0.3753,-0.1951,0.9061,-0.3753,-0.1951,0.9061,-0.3536,-0.3827,0.8536,-0.5133,-0.3827,0.7682,-0.6533,-0.3827,0.6533,-0.6935,-0.1951,0.6935,-0.5449,-0.1951,0.8155,-0.5449,-0.1951,0.8155,-0.5133,-0.3827,0.7682,-0.6533,-0.3827,0.6533,-0.7682,-0.3827,0.5133,-0.8155,-0.1951,0.5449,-0.6935,-0.1951,0.6935,-0.6935,-0.1951,0.6935,-0.6533,-0.3827,0.6533,-0.7682,-0.3827,0.5133,-0.8536,-0.3827,0.3536,-0.9061,-0.1951,0.3753,-0.8155,-0.1951,0.5449,-0.8155,-0.1951,0.5449,-0.7682,-0.3827,0.5133,-0.8536,-0.3827,0.3536,-0.9061,-0.3827,0.1802,-0.9619,-0.1951,0.1913,-0.9061,-0.1951,0.3753,-0.9061,-0.1951,0.3753,-0.8536,-0.3827,0.3536,-0.9061,-0.3827,0.1802,-0.9239,-0.3827,0.0,-0.9808,-0.1951,0.0,-0.9619,-0.1951,0.1913,-0.9619,-0.1951,0.1913,-0.9061,-0.3827,0.1802,-0.9239,-0.3827,0.0,-0.9061,-0.3827,-0.1802,-0.9619,-0.1951,-0.1913,-0.9808,-0.1951,0.0,-0.9808,-0.1951,0.0,-0.9239,-0.3827,0.0,-0.9061,-0.3827,-0.1802,-0.8536,-0.3827,-0.3536,-0.9061,-0.1951,-0.3753,-0.9619,-0.1951,-0.1913,-0.9619,-0.1951,-0.1913,-0.9061,-0.3827,-0.1802,-0.8536,-0.3827,-0.3536,-0.7682,-0.3827,-0.5133,-0.8155,-0.1951,-0.5449,-0.9061,-0.1951,-0.3753,-0.9061,-0.1951,-0.3753,-0.8536,-0.3827,-0.3536,-0.7682,-0.3827,-0.5133,-0.6533,-0.3827,-0.6533,-0.6935,-0.1951,-0.6935,-0.8155,-0.1951,-0.5449,-0.8155,-0.1951,-0.5449,-0.7682,-0.3827,-0.5133,-0.6533,-0.3827,-0.6533,-0.5133,-0.3827,-0.7682,-0.5449,-0.1951,-0.8155,-0.6935,-0.1951,-0.6935,-0.6935,-0.1951,-0.6935,-0.6533,-0.3827,-0.6533,-0.5133,-0.3827,-0.7682,-0.3536,-0.3827,-0.8536,-0.3753,-0.1951,-0.9061,-0.5449,-0.1951,-0.8155,-0.5449,-0.1951,-0.8155,-0.5133,-0.3827,-0.7682,-0.3536,-0.3827,-0.8536,-0.1802,-0.3827,-0.9061,-0.1913,-0.1951,-0.9619,-0.3753,-0.1951,-0.9061,-0.3753,-0.1951,-0.9061,-0.3536,-0.3827,-0.8536,-0.1802,-0.3827,-0.9061,0.0,-0.3827,-0.9239,0.0,-0.1951,-0.9808,-0.1913,-0.1951,-0.9619,-0.1913,-0.1951,-0.9619,-0.1802,-0.3827,-0.9061,0.0,-0.3827,-0.9239,-0.1622,-0.5556,0.8155,-0.1802,-0.3827,0.9061,0.0,-0.3827,0.9239,0.0,-0.3827,0.9239,0.0,-0.5556,0.8315,-0.1622,-0.5556,0.8155,-0.3182,-0.5556,0.7682,-0.3536,-0.3827,0.8536,-0.1802,-0.3827,0.9061,-0.1802,-0.3827,0.9061,-0.1622,-0.5556,0.8155,-0.3182,-0.5556,0.7682,-0.4619,-0.5556,0.6913,-0.5133,-0.3827,0.7682,-0.3536,-0.3827,0.8536,-0.3536,-0.3827,0.8536,-0.3182,-0.5556,0.7682,-0.4619,-0.5556,0.6913,-0.5879,-0.5556,0.5879,-0.6533,-0.3827,0.6533,-0.5133,-0.3827,0.7682,-0.5133,-0.3827,0.7682,-0.4619,-0.5556,0.6913,-0.5879,-0.5556,0.5879,-0.6913,-0.5556,0.4619,-0.7682,-0.3827,0.5133,-0.6533,-0.3827,0.6533,-0.6533,-0.3827,0.6533,-0.5879,-0.5556,0.5879,-0.6913,-0.5556,0.4619,-0.7682,-0.5556,0.3182,-0.8536,-0.3827,0.3536,-0.7682,-0.3827,0.5133,-0.7682,-0.3827,0.5133,-0.6913,-0.5556,0.4619,-0.7682,-0.5556,0.3182,-0.8155,-0.5556,0.1622,-0.9061,-0.3827,0.1802,-0.8536,-0.3827,0.3536,-0.8536,-0.3827,0.3536,-0.7682,-0.5556,0.3182,-0.8155,-0.5556,0.1622,-0.8315,-0.5556,0.0,-0.9239,-0.3827,0.0,-0.9061,-0.3827,0.1802,-0.9061,-0.3827,0.1802,-0.8155,-0.5556,0.1622,-0.8315,-0.5556,0.0,-0.8155,-0.5556,-0.1622,-0.9061,-0.3827,-0.1802,-0.9239,-0.3827,0.0,-0.9239,-0.3827,0.0,-0.8315,-0.5556,0.0,-0.8155,-0.5556,-0.1622,-0.7682,-0.5556,-0.3182,-0.8536,-0.3827,-0.3536,-0.9061,-0.3827,-0.1802,-0.9061,-0.3827,-0.1802,-0.8155,-0.5556,-0.1622,-0.7682,-0.5556,-0.3182,-0.6913,-0.5556,-0.4619,-0.7682,-0.3827,-0.5133,-0.8536,-0.3827,-0.3536,-0.8536,-0.3827,-0.3536,-0.7682,-0.5556,-0.3182,-0.6913,-0.5556,-0.4619,-0.5879,-0.5556,-0.5879,-0.6533,-0.3827,-0.6533,-0.7682,-0.3827,-0.5133,-0.7682,-0.3827,-0.5133,-0.6913,-0.5556,-0.4619,-0.5879,-0.5556,-0.5879,-0.4619,-0.5556,-0.6913,-0.5133,-0.3827,-0.7682,-0.6533,-0.3827,-0.6533,-0.6533,-0.3827,-0.6533,-0.5879,-0.5556,-0.5879,-0.4619,-0.5556,-0.6913,-0.3182,-0.5556,-0.7682,-0.3536,-0.3827,-0.8536,-0.5133,-0.3827,-0.7682,-0.5133,-0.3827,-0.7682,-0.4619,-0.5556,-0.6913,-0.3182,-0.5556,-0.7682,-0.1622,-0.5556,-0.8155,-0.1802,-0.3827,-0.9061,-0.3536,-0.3827,-0.8536,-0.3536,-0.3827,-0.8536,-0.3182,-0.5556,-0.7682,-0.1622,-0.5556,-0.8155,0.0,-0.5556,-0.8315,0.0,-0.3827,-0.9239,-0.1802,-0.3827,-0.9061,-0.1802,-0.3827,-0.9061,-0.1622,-0.5556,-0.8155,0.0,-0.5556,-0.8315,-0.1379,-0.7071,0.6935,-0.1622,-0.5556,0.8155,0.0,-0.5556,0.8315,0.0,-0.5556,0.8315,0.0,-0.7071,0.7071,-0.1379,-0.7071,0.6935,-0.2706,-0.7071,0.6533,-0.3182,-0.5556,0.7682,-0.1622,-0.5556,0.8155,-0.1622,-0.5556,0.8155,-0.1379,-0.7071,0.6935,-0.2706,-0.7071,0.6533,-0.3928,-0.7071,0.5879,-0.4619,-0.5556,0.6913,-0.3182,-0.5556,0.7682,-0.3182,-0.5556,0.7682,-0.2706,-0.7071,0.6533,-0.3928,-0.7071,0.5879,-0.5,-0.7071,0.5,-0.5879,-0.5556,0.5879,-0.4619,-0.5556,0.6913,-0.4619,-0.5556,0.6913,-0.3928,-0.7071,0.5879,-0.5,-0.7071,0.5,-0.5879,-0.7071,0.3928,-0.6913,-0.5556,0.4619,-0.5879,-0.5556,0.5879,-0.5879,-0.5556,0.5879,-0.5,-0.7071,0.5,-0.5879,-0.7071,0.3928,-0.6533,-0.7071,0.2706,-0.7682,-0.5556,0.3182,-0.6913,-0.5556,0.4619,-0.6913,-0.5556,0.4619,-0.5879,-0.7071,0.3928,-0.6533,-0.7071,0.2706,-0.6935,-0.7071,0.1379,-0.8155,-0.5556,0.1622,-0.7682,-0.5556,0.3182,-0.7682,-0.5556,0.3182,-0.6533,-0.7071,0.2706,-0.6935,-0.7071,0.1379,-0.7071,-0.7071,0.0,-0.8315,-0.5556,0.0,-0.8155,-0.5556,0.1622,-0.8155,-0.5556,0.1622,-0.6935,-0.7071,0.1379,-0.7071,-0.7071,0.0,-0.6935,-0.7071,-0.1379,-0.8155,-0.5556,-0.1622,-0.8315,-0.5556,0.0,-0.8315,-0.5556,0.0,-0.7071,-0.7071,0.0,-0.6935,-0.7071,-0.1379,-0.6533,-0.7071,-0.2706,-0.7682,-0.5556,-0.3182,-0.8155,-0.5556,-0.1622,-0.8155,-0.5556,-0.1622,-0.6935,-0.7071,-0.1379,-0.6533,-0.7071,-0.2706,-0.5879,-0.7071,-0.3928,-0.6913,-0.5556,-0.4619,-0.7682,-0.5556,-0.3182,-0.7682,-0.5556,-0.3182,-0.6533,-0.7071,-0.2706,-0.5879,-0.7071,-0.3928,-0.5,-0.7071,-0.5,-0.5879,-0.5556,-0.5879,-0.6913,-0.5556,-0.4619,-0.6913,-0.5556,-0.4619,-0.5879,-0.7071,-0.3928,-0.5,-0.7071,-0.5,-0.3928,-0.7071,-0.5879,-0.4619,-0.5556,-0.6913,-0.5879,-0.5556,-0.5879,-0.5879,-0.5556,-0.5879,-0.5,-0.7071,-0.5,-0.3928,-0.7071,-0.5879,-0.2706,-0.7071,-0.6533,-0.3182,-0.5556,-0.7682,-0.4619,-0.5556,-0.6913,-0.4619,-0.5556,-0.6913,-0.3928,-0.7071,-0.5879,-0.2706,-0.7071,-0.6533,-0.1379,-0.7071,-0.6935,-0.1622,-0.5556,-0.8155,-0.3182,-0.5556,-0.7682,-0.3182,-0.5556,-0.7682,-0.2706,-0.7071,-0.6533,-0.1379,-0.7071,-0.6935,0.0,-0.7071,-0.7071,0.0,-0.5556,-0.8315,-0.1622,-0.5556,-0.8155,-0.1622,-0.5556,-0.8155,-0.1379,-0.7071,-0.6935,0.0,-0.7071,-0.7071,-0.1084,-0.8315,0.5449,-0.1379,-0.7071,0.6935,0.0,-0.7071,0.7071,0.0,-0.7071,0.7071,0.0,-0.8315,0.5556,-0.1084,-0.8315,0.5449,-0.2126,-0.8315,0.5133,-0.2706,-0.7071,0.6533,-0.1379,-0.7071,0.6935,-0.1379,-0.7071,0.6935,-0.1084,-0.8315,0.5449,-0.2126,-0.8315,0.5133,-0.3087,-0.8315,0.4619,-0.3928,-0.7071,0.5879,-0.2706,-0.7071,0.6533,-0.2706,-0.7071,0.6533,-0.2126,-0.8315,0.5133,-0.3087,-0.8315,0.4619,-0.3928,-0.8315,0.3928,-0.5,-0.7071,0.5,-0.3928,-0.7071,0.5879,-0.3928,-0.7071,0.5879,-0.3087,-0.8315,0.4619,-0.3928,-0.8315,0.3928,-0.4619,-0.8315,0.3087,-0.5879,-0.7071,0.3928,-0.5,-0.7071,0.5,-0.5,-0.7071,0.5,-0.3928,-0.8315,0.3928,-0.4619,-0.8315,0.3087,-0.5133,-0.8315,0.2126,-0.6533,-0.7071,0.2706,-0.5879,-0.7071,0.3928,-0.5879,-0.7071,0.3928,-0.4619,-0.8315,0.3087,-0.5133,-0.8315,0.2126,-0.5449,-0.8315,0.1084,-0.6935,-0.7071,0.1379,-0.6533,-0.7071,0.2706,-0.6533,-0.7071,0.2706,-0.5133,-0.8315,0.2126,-0.5449,-0.8315,0.1084,-0.5556,-0.8315,0.0,-0.7071,-0.7071,0.0,-0.6935,-0.7071,0.1379,-0.6935,-0.7071,0.1379,-0.5449,-0.8315,0.1084,-0.5556,-0.8315,0.0,-0.5449,-0.8315,-0.1084,-0.6935,-0.7071,-0.1379,-0.7071,-0.7071,0.0,-0.7071,-0.7071,0.0,-0.5556,-0.8315,0.0,-0.5449,-0.8315,-0.1084,-0.5133,-0.8315,-0.2126,-0.6533,-0.7071,-0.2706,-0.6935,-0.7071,-0.1379,-0.6935,-0.7071,-0.1379,-0.5449,-0.8315,-0.1084,-0.5133,-0.8315,-0.2126,-0.4619,-0.8315,-0.3087,-0.5879,-0.7071,-0.3928,-0.6533,-0.7071,-0.2706,-0.6533,-0.7071,-0.2706,-0.5133,-0.8315,-0.2126,-0.4619,-0.8315,-0.3087,-0.3928,-0.8315,-0.3928,-0.5,-0.7071,-0.5,-0.5879,-0.7071,-0.3928,-0.5879,-0.7071,-0.3928,-0.4619,-0.8315,-0.3087,-0.3928,-0.8315,-0.3928,-0.3087,-0.8315,-0.4619,-0.3928,-0.7071,-0.5879,-0.5,-0.7071,-0.5,-0.5,-0.7071,-0.5,-0.3928,-0.8315,-0.3928,-0.3087,-0.8315,-0.4619,-0.2126,-0.8315,-0.5133,-0.2706,-0.7071,-0.6533,-0.3928,-0.7071,-0.5879,-0.3928,-0.7071,-0.5879,-0.3087,-0.8315,-0.4619,-0.2126,-0.8315,-0.5133,-0.1084,-0.8315,-0.5449,-0.1379,-0.7071,-0.6935,-0.2706,-0.7071,-0.6533,-0.2706,-0.7071,-0.6533,-0.2126,-0.8315,-0.5133,-0.1084,-0.8315,-0.5449,0.0,-0.8315,-0.5556,0.0,-0.7071,-0.7071,-0.1379,-0.7071,-0.6935,-0.1379,-0.7071,-0.6935,-0.1084,-0.8315,-0.5449,0.0,-0.8315,-0.5556,-0.0747,-0.9239,0.3753,-0.1084,-0.8315,0.5449,0.0,-0.8315,0.5556,0.0,-0.8315,0.5556,0.0,-0.9239,0.3827,-0.0747,-0.9239,0.3753,-0.1464,-0.9239,0.3536,-0.2126,-0.8315,0.5133,-0.1084,-0.8315,0.5449,-0.1084,-0.8315,0.5449,-0.0747,-0.9239,0.3753,-0.1464,-0.9239,0.3536,-0.2126,-0.9239,0.3182,-0.3087,-0.8315,0.4619,-0.2126,-0.8315,0.5133,-0.2126,-0.8315,0.5133,-0.1464,-0.9239,0.3536,-0.2126,-0.9239,0.3182,-0.2706,-0.9239,0.2706,-0.3928,-0.8315,0.3928,-0.3087,-0.8315,0.4619,-0.3087,-0.8315,0.4619,-0.2126,-0.9239,0.3182,-0.2706,-0.9239,0.2706,-0.3182,-0.9239,0.2126,-0.4619,-0.8315,0.3087,-0.3928,-0.8315,0.3928,-0.3928,-0.8315,0.3928,-0.2706,-0.9239,0.2706,-0.3182,-0.9239,0.2126,-0.3536,-0.9239,0.1464,-0.5133,-0.8315,0.2126,-0.4619,-0.8315,0.3087,-0.4619,-0.8315,0.3087,-0.3182,-0.9239,0.2126,-0.3536,-0.9239,0.1464,-0.3753,-0.9239,0.0747,-0.5449,-0.8315,0.1084,-0.5133,-0.8315,0.2126,-0.5133,-0.8315,0.2126,-0.3536,-0.9239,0.1464,-0.3753,-0.9239,0.0747,-0.3827,-0.9239,0.0,-0.5556,-0.8315,0.0,-0.5449,-0.8315,0.1084,-0.5449,-0.8315,0.1084,-0.3753,-0.9239,0.0747,-0.3827,-0.9239,0.0,-0.3753,-0.9239,-0.0747,-0.5449,-0.8315,-0.1084,-0.5556,-0.8315,0.0,-0.5556,-0.8315,0.0,-0.3827,-0.9239,0.0,-0.3753,-0.9239,-0.0747,-0.3536,-0.9239,-0.1464,-0.5133,-0.8315,-0.2126,-0.5449,-0.8315,-0.1084,-0.5449,-0.8315,-0.1084,-0.3753,-0.9239,-0.0747,-0.3536,-0.9239,-0.1464,-0.3182,-0.9239,-0.2126,-0.4619,-0.8315,-0.3087,-0.5133,-0.8315,-0.2126,-0.5133,-0.8315,-0.2126,-0.3536,-0.9239,-0.1464,-0.3182,-0.9239,-0.2126,-0.2706,-0.9239,-0.2706,-0.3928,-0.8315,-0.3928,-0.4619,-0.8315,-0.3087,-0.4619,-0.8315,-0.3087,-0.3182,-0.9239,-0.2126,-0.2706,-0.9239,-0.2706,-0.2126,-0.9239,-0.3182,-0.3087,-0.8315,-0.4619,-0.3928,-0.8315,-0.3928,-0.3928,-0.8315,-0.3928,-0.2706,-0.9239,-0.2706,-0.2126,-0.9239,-0.3182,-0.1464,-0.9239,-0.3536,-0.2126,-0.8315,-0.5133,-0.3087,-0.8315,-0.4619,-0.3087,-0.8315,-0.4619,-0.2126,-0.9239,-0.3182,-0.1464,-0.9239,-0.3536,-0.0747,-0.9239,-0.3753,-0.1084,-0.8315,-0.5449,-0.2126,-0.8315,-0.5133,-0.2126,-0.8315,-0.5133,-0.1464,-0.9239,-0.3536,-0.0747,-0.9239,-0.3753,0.0,-0.9239,-0.3827,0.0,-0.8315,-0.5556,-0.1084,-0.8315,-0.5449,-0.1084,-0.8315,-0.5449,-0.0747,-0.9239,-0.3753,0.0,-0.9239,-0.3827,-0.0381,-0.9808,0.1913,-0.0747,-0.9239,0.3753,0.0,-0.9239,0.3827,0.0,-0.9239,0.3827,0.0,-0.9808,0.1951,-0.0381,-0.9808,0.1913,-0.0747,-0.9808,0.1802,-0.1464,-0.9239,0.3536,-0.0747,-0.9239,0.3753,-0.0747,-0.9239,0.3753,-0.0381,-0.9808,0.1913,-0.0747,-0.9808,0.1802,-0.1084,-0.9808,0.1622,-0.2126,-0.9239,0.3182,-0.1464,-0.9239,0.3536,-0.1464,-0.9239,0.3536,-0.0747,-0.9808,0.1802,-0.1084,-0.9808,0.1622,-0.1379,-0.9808,0.1379,-0.2706,-0.9239,0.2706,-0.2126,-0.9239,0.3182,-0.2126,-0.9239,0.3182,-0.1084,-0.9808,0.1622,-0.1379,-0.9808,0.1379,-0.1622,-0.9808,0.1084,-0.3182,-0.9239,0.2126,-0.2706,-0.9239,0.2706,-0.2706,-0.9239,0.2706,-0.1379,-0.9808,0.1379,-0.1622,-0.9808,0.1084,-0.1802,-0.9808,0.0747,-0.3536,-0.9239,0.1464,-0.3182,-0.9239,0.2126,-0.3182,-0.9239,0.2126,-0.1622,-0.9808,0.1084,-0.1802,-0.9808,0.0747,-0.1913,-0.9808,0.0381,-0.3753,-0.9239,0.0747,-0.3536,-0.9239,0.1464,-0.3536,-0.9239,0.1464,-0.1802,-0.9808,0.0747,-0.1913,-0.9808,0.0381,-0.1951,-0.9808,0.0,-0.3827,-0.9239,0.0,-0.3753,-0.9239,0.0747,-0.3753,-0.9239,0.0747,-0.1913,-0.9808,0.0381,-0.1951,-0.9808,0.0,-0.1913,-0.9808,-0.0381,-0.3753,-0.9239,-0.0747,-0.3827,-0.9239,0.0,-0.3827,-0.9239,0.0,-0.1951,-0.9808,0.0,-0.1913,-0.9808,-0.0381,-0.1802,-0.9808,-0.0747,-0.3536,-0.9239,-0.1464,-0.3753,-0.9239,-0.0747,-0.3753,-0.9239,-0.0747,-0.1913,-0.9808,-0.0381,-0.1802,-0.9808,-0.0747,-0.1622,-0.9808,-0.1084,-0.3182,-0.9239,-0.2126,-0.3536,-0.9239,-0.1464,-0.3536,-0.9239,-0.1464,-0.1802,-0.9808,-0.0747,-0.1622,-0.9808,-0.1084,-0.1379,-0.9808,-0.1379,-0.2706,-0.9239,-0.2706,-0.3182,-0.9239,-0.2126,-0.3182,-0.9239,-0.2126,-0.1622,-0.9808,-0.1084,-0.1379,-0.9808,-0.1379,-0.1084,-0.9808,-0.1622,-0.2126,-0.9239,-0.3182,-0.2706,-0.9239,-0.2706,-0.2706,-0.9239,-0.2706,-0.1379,-0.9808,-0.1379,-0.1084,-0.9808,-0.1622,-0.0747,-0.9808,-0.1802,-0.1464,-0.9239,-0.3536,-0.2126,-0.9239,-0.3182,-0.2126,-0.9239,-0.3182,-0.1084,-0.9808,-0.1622,-0.0747,-0.9808,-0.1802,-0.0381,-0.9808,-0.1913,-0.0747,-0.9239,-0.3753,-0.1464,-0.9239,-0.3536,-0.1464,-0.9239,-0.3536,-0.0747,-0.9808,-0.1802,-0.0381,-0.9808,-0.1913,0.0,-0.9808,-0.1951,0.0,-0.9239,-0.3827,-0.0747,-0.9239,-0.3753,-0.0747,-0.9239,-0.3753,-0.0381,-0.9808,-0.1913,0.0,-0.9808,-0.1951,0.0,-1.0,0.0,-0.0381,-0.9808,0.1913,0.0,-0.9808,0.1951,0.0,-1.0,0.0,-0.0747,-0.9808,0.1802,-0.0381,-0.9808,0.1913,0.0,-1.0,0.0,-0.1084,-0.9808,0.1622,-0.0747,-0.9808,0.1802,0.0,-1.0,0.0,-0.1379,-0.9808,0.1379,-0.1084,-0.9808,0.1622,0.0,-1.0,0.0,-0.1622,-0.9808,0.1084,-0.1379,-0.9808,0.1379,0.0,-1.0,0.0,-0.1802,-0.9808,0.0747,-0.1622,-0.9808,0.1084,0.0,-1.0,0.0,-0.1913,-0.9808,0.0381,-0.1802,-0.9808,0.0747,0.0,-1.0,0.0,-0.1951,-0.9808,0.0,-0.1913,-0.9808,0.0381,0.0,-1.0,0.0,-0.1913,-0.9808,-0.0381,-0.1951,-0.9808,0.0,0.0,-1.0,0.0,-0.1802,-0.9808,-0.0747,-0.1913,-0.9808,-0.0381,0.0,-1.0,0.0,-0.1622,-0.9808,-0.1084,-0.1802,-0.9808,-0.0747,0.0,-1.0,0.0,-0.1379,-0.9808,-0.1379,-0.1622,-0.9808,-0.1084,0.0,-1.0,0.0,-0.1084,-0.9808,-0.1622,-0.1379,-0.9808,-0.1379,0.0,-1.0,0.0,-0.0747,-0.9808,-0.1802,-0.1084,-0.9808,-0.1622,0.0,-1.0,0.0,-0.0381,-0.9808,-0.1913,-0.0747,-0.9808,-0.1802,0.0,-1.0,0.0,0.0,-0.9808,-0.1951,-0.0381,-0.9808,-0.1913],"normals":[-0.063,0.998,0.0,-0.0198,0.9794,0.2009,-0.0392,0.9796,0.1971,-0.063,0.998,0.0,-0.0392,0.9796,0.1971,-0.0769,0.9796,0.1857,-0.063,0.998,0.0,-0.0769,0.9796,0.1857,-0.1117,0.9796,0.1671,-0.063,0.998,0.0,-0.1117,0.9796,0.1671,-0.1421,0.9796,0.1421,-0.063,0.998,0.0,-0.1421,0.9796,0.1421,-0.1671,0.9796,0.1117,-0.063,0.998,0.0,-0.1671,0.9796,0.1117,-0.1857,0.9796,0.0769,-0.063,0.998,0.0,-0.1857,0.9796,0.0769,-0.1971,0.9796,0.0392,-0.063,0.998,0.0,-0.1971,0.9796,0.0392,-0.201,0.9796,0.0,-0.063,0.998,0.0,-0.201,0.9796,0.0,-0.1971,0.9796,-0.0392,-0.063,0.998,0.0,-0.1971,0.9796,-0.0392,-0.1857,0.9796,-0.0769,-0.063,0.998,0.0,-0.1857,0.9796,-0.0769,-0.1671,0.9796,-0.1117,-0.063,0.998,0.0,-0.1671,0.9796,-0.1117,-0.1421,0.9796,-0.1421,-0.063,0.998,0.0,-0.1421,0.9796,-0.1421,-0.1117,0.9796,-0.1671,-0.063,0.998,0.0,-0.1117,0.9796,-0.1671,-0.0769,0.9796,-0.1857,-0.063,0.998,0.0,-0.0769,0.9796,-0.1857,-0.0392,0.9796,-0.1971,-0.063,0.998,0.0,-0.0392,0.9796,-0.1971,-0.0198,0.9794,-0.2009,-0.0757,0.9217,0.3804,-0.0392,0.9796,0.1971,-0.0198,0.9794,0.2009,-0.0198,0.9794,0.2009,-0.0382,0.921,0.3876,-0.0757,0.9217,0.3804,-0.1484,0.9217,0.3584,-0.0769,0.9796,0.1857,-0.0392,0.9796,0.1971,-0.0392,0.9796,0.1971,-0.0757,0.9217,0.3804,-0.1484,0.9217,0.3584,-0.2155,0.9217,0.3225,-0.1117,0.9796,0.1671,-0.0769,0.9796,0.1857,-0.0769,0.9796,0.1857,-0.1484,0.9217,0.3584,-0.2155,0.9217,0.3225,-0.2743,0.9217,0.2743,-0.1421,0.9796,0.1421,-0.1117,0.9796,0.1671,-0.1117,0.9796,0.1671,-0.2155,0.9217,0.3225,-0.2743,0.9217,0.2743,-0.3225,0.9217,0.2155,-0.1671,0.9796,0.1117,-0.1421,0.9796,0.1421,-0.1421,0.9796,0.1421,-0.2743,0.9217,0.2743,-0.3225,0.9217,0.2155,-0.3584,0.9217,0.1484,-0.1857,0.9796,0.0769,-0.1671,0.9796,0.1117,-0.1671,0.9796,0.1117,-0.3225,0.9217,0.2155,-0.3584,0.9217,0.1484,-0.3804,0.9217,0.0757,-0.1971,0.9796,0.0392,-0.1857,0.9796,0.0769,-0.1857,0.9796,0.0769,-0.3584,0.9217,0.1484,-0.3804,0.9217,0.0757,-0.3879,0.9217,0.0,-0.201,0.9796,0.0,-0.1971,0.9796,0.0392,-0.1971,0.9796,0.0392,-0.3804,0.9217,0.0757,-0.3879,0.9217,0.0,-0.3804,0.9217,-0.0757,-0.1971,0.9796,-0.0392,-0.201,0.9796,0.0,-0.201,0.9796,0.0,-0.3879,0.9217,0.0,-0.3804,0.9217,-0.0757,-0.3584,0.9217,-0.1484,-0.1857,0.9796,-0.0769,-0.1971,0.9796,-0.0392,-0.1971,0.9796,-0.0392,-0.3804,0.9217,-0.0757,-0.3584,0.9217,-0.1484,-0.3225,0.9217,-0.2155,-0.1671,0.9796,-0.1117,-0.1857,0.9796,-0.0769,-0.1857,0.9796,-0.0769,-0.3584,0.9217,-0.1484,-0.3225,0.9217,-0.2155,-0.2743,0.9217,-0.2743,-0.1421,0.9796,-0.1421,-0.1671,0.9796,-0.1117,-0.1671,0.9796,-0.1117,-0.3225,0.9217,-0.2155,-0.2743,0.9217,-0.2743,-0.2155,0.9217,-0.3225,-0.1117,0.9796,-0.1671,-0.1421,0.9796,-0.1421,-0.1421,0.9796,-0.1421,-0.2743,0.9217,-0.2743,-0.2155,0.9217,-0.3225,-0.1484,0.9217,-0.3584,-0.0769,0.9796,-0.1857,-0.1117,0.9796,-0.1671,-0.1117,0.9796,-0.1671,-0.2155,0.9217,-0.3225,-0.1484,0.9217,-0.3584,-0.0757,0.9217,-0.3804,-0.0392,0.9796,-0.1971,-0.0769,0.9796,-0.1857,-0.0769,0.9796,-0.1857,-0.1484,0.9217,-0.3584,-0.0757,0.9217,-0.3804,-0.0382,0.921,-0.3876,-0.0198,0.9794,-0.2009,-0.0392,0.9796,-0.1971,-0.0392,0.9796,-0.1971,-0.0757,0.9217,-0.3804,-0.0382,0.921,-0.3876,-0.1092,0.8286,0.549,-0.0757,0.9217,0.3804,-0.0382,0.921,0.3876,-0.0382,0.921,0.3876,-0.055,0.8274,0.5589,-0.1092,0.8286,0.549,-0.2142,0.8286,0.5172,-0.1484,0.9217,0.3584,-0.0757,0.9217,0.3804,-0.0757,0.9217,0.3804,-0.1092,0.8286,0.549,-0.2142,0.8286,0.5172,-0.311,0.8286,0.4654,-0.2155,0.9217,0.3225,-0.1484,0.9217,0.3584,-0.1484,0.9217,0.3584,-0.2142,0.8286,0.5172,-0.311,0.8286,0.4654,-0.3958,0.8286,0.3958,-0.2743,0.9217,0.2743,-0.2155,0.9217,0.3225,-0.2155,0.9217,0.3225,-0.311,0.8286,0.4654,-0.3958,0.8286,0.3958,-0.4654,0.8286,0.311,-0.3225,0.9217,0.2155,-0.2743,0.9217,0.2743,-0.2743,0.9217,0.2743,-0.3958,0.8286,0.3958,-0.4654,0.8286,0.311,-0.5172,0.8286,0.2142,-0.3584,0.9217,0.1484,-0.3225,0.9217,0.2155,-0.3225,0.9217,0.2155,-0.4654,0.8286,0.311,-0.5172,0.8286,0.2142,-0.549,0.8286,0.1092,-0.3804,0.9217,0.0757,-0.3584,0.9217,0.1484,-0.3584,0.9217,0.1484,-0.5172,0.8286,0.2142,-0.549,0.8286,0.1092,-0.5598,0.8286,0.0,-0.3879,0.9217,0.0,-0.3804,0.9217,0.0757,-0.3804,0.9217,0.0757,-0.549,0.8286,0.1092,-0.5598,0.8286,0.0,-0.549,0.8286,-0.1092,-0.3804,0.9217,-0.0757,-0.3879,0.9217,0.0,-0.3879,0.9217,0.0,-0.5598,0.8286,0.0,-0.549,0.8286,-0.1092,-0.5172,0.8286,-0.2142,-0.3584,0.9217,-0.1484,-0.3804,0.9217,-0.0757,-0.3804,0.9217,-0.0757,-0.549,0.8286,-0.1092,-0.5172,0.8286,-0.2142,-0.4654,0.8286,-0.311,-0.3225,0.9217,-0.2155,-0.3584,0.9217,-0.1484,-0.3584,0.9217,-0.1484,-0.5172,0.8286,-0.2142,-0.4654,0.8286,-0.311,-0.3958,0.8286,-0.3958,-0.2743,0.9217,-0.2743,-0.3225,0.9217,-0.2155,-0.3225,0.9217,-0.2155,-0.4654,0.8286,-0.311,-0.3958,0.8286,-0.3958,-0.311,0.8286,-0.4654,-0.2155,0.9217,-0.3225,-0.2743,0.9217,-0.2743,-0.2743,0.9217,-0.2743,-0.3958,0.8286,-0.3958,-0.311,0.8286,-0.4654,-0.2142,0.8286,-0.5172,-0.1484,0.9217,-0.3584,-0.2155,0.9217,-0.3225,-0.2155,0.9217,-0.3225,-0.311,0.8286,-0.4654,-0.2142,0.8286,-0.5172,-0.1092,0.8286,-0.549,-0.0757,0.9217,-0.3804,-0.1484,0.9217,-0.3584,-0.1484,0.9217,-0.3584,-0.2142,0.8286,-0.5172,-0.1092,0.8286,-0.549,-0.055,0.8274,-0.5589,-0.0382,0.921,-0.3876,-0.0757,0.9217,-0.3804,-0.0757,0.9217,-0.3804,-0.1092,0.8286,-0.549,-0.055,0.8274,-0.5589,-0.1385,0.7041,0.6965,-0.1092,0.8286,0.549,-0.055,0.8274,0.5589,-0.055,0.8274,0.5589,-0.0698,0.7023,0.7084,-0.1385,0.7041,0.6965,-0.2718,0.7041,0.6561,-0.2142,0.8286,0.5172,-0.1092,0.8286,0.549,-0.1092,0.8286,0.549,-0.1385,0.7041,0.6965,-0.2718,0.7041,0.6561,-0.3945,0.7041,0.5905,-0.311,0.8286,0.4654,-0.2142,0.8286,0.5172,-0.2142,0.8286,0.5172,-0.2718,0.7041,0.6561,-0.3945,0.7041,0.5905,-0.5021,0.7041,0.5021,-0.3958,0.8286,0.3958,-0.311,0.8286,0.4654,-0.311,0.8286,0.4654,-0.3945,0.7041,0.5905,-0.5021,0.7041,0.5021,-0.5905,0.7041,0.3945,-0.4654,0.8286,0.311,-0.3958,0.8286,0.3958,-0.3958,0.8286,0.3958,-0.5021,0.7041,0.5021,-0.5905,0.7041,0.3945,-0.6561,0.7041,0.2718,-0.5172,0.8286,0.2142,-0.4654,0.8286,0.311,-0.4654,0.8286,0.311,-0.5905,0.7041,0.3945,-0.6561,0.7041,0.2718,-0.6965,0.7041,0.1385,-0.549,0.8286,0.1092,-0.5172,0.8286,0.2142,-0.5172,0.8286,0.2142,-0.6561,0.7041,0.2718,-0.6965,0.7041,0.1385,-0.7101,0.7041,0.0,-0.5598,0.8286,0.0,-0.549,0.8286,0.1092,-0.549,0.8286,0.1092,-0.6965,0.7041,0.1385,-0.7101,0.7041,0.0,-0.6965,0.7041,-0.1385,-0.549,0.8286,-0.1092,-0.5598,0.8286,0.0,-0.5598,0.8286,0.0,-0.7101,0.7041,0.0,-0.6965,0.7041,-0.1385,-0.6561,0.7041,-0.2718,-0.5172,0.8286,-0.2142,-0.549,0.8286,-0.1092,-0.549,0.8286,-0.1092,-0.6965,0.7041,-0.1385,-0.6561,0.7041,-0.2718,-0.5905,0.7041,-0.3945,-0.4654,0.8286,-0.311,-0.5172,0.8286,-0.2142,-0.5172,0.8286,-0.2142,-0.6561,0.7041,-0.2718,-0.5905,0.7041,-0.3945,-0.5021,0.7041,-0.5021,-0.3958,0.8286,-0.3958,-0.4654,0.8286,-0.311,-0.4654,0.8286,-0.311,-0.5905,0.7041,-0.3945,-0.5021,0.7041,-0.5021,-0.3945,0.7041,-0.5905,-0.311,0.8286,-0.4654,-0.3958,0.8286,-0.3958,-0.3958,0.8286,-0.3958,-0.5021,0.7041,-0.5021,-0.3945,0.7041,-0.5905,-0.2718,0.7041,-0.6561,-0.2142,0.8286,-0.5172,-0.311,0.8286,-0.4654,-0.311,0.8286,-0.4654,-0.3945,0.7041,-0.5905,-0.2718,0.7041,-0.6561,-0.1385,0.7041,-0.6965,-0.1092,0.8286,-0.549,-0.2142,0.8286,-0.5172,-0.2142,0.8286,-0.5172,-0.2718,0.7041,-0.6561,-0.1385,0.7041,-0.6965,-0.0698,0.7023,-0.7084,-0.055,0.8274,-0.5589,-0.1092,0.8286,-0.549,-0.1092,0.8286,-0.549,-0.1385,0.7041,-0.6965,-0.0698,0.7023,-0.7084,-0.1626,0.5528,0.8173,-0.1385,0.7041,0.6965,-0.0698,0.7023,0.7084,-0.0698,0.7023,0.7084,-0.0818,0.5509,0.8305,-0.1626,0.5528,0.8173,-0.3189,0.5528,0.7699,-0.2718,0.7041,0.6561,-0.1385,0.7041,0.6965,-0.1385,0.7041,0.6965,-0.1626,0.5528,0.8173,-0.3189,0.5528,0.7699,-0.463,0.5528,0.6929,-0.3945,0.7041,0.5905,-0.2718,0.7041,0.6561,-0.2718,0.7041,0.6561,-0.3189,0.5528,0.7699,-0.463,0.5528,0.6929,-0.5893,0.5528,0.5893,-0.5021,0.7041,0.5021,-0.3945,0.7041,0.5905,-0.3945,0.7041,0.5905,-0.463,0.5528,0.6929,-0.5893,0.5528,0.5893,-0.6929,0.5528,0.463,-0.5905,0.7041,0.3945,-0.5021,0.7041,0.5021,-0.5021,0.7041,0.5021,-0.5893,0.5528,0.5893,-0.6929,0.5528,0.463,-0.7699,0.5528,0.3189,-0.6561,0.7041,0.2718,-0.5905,0.7041,0.3945,-0.5905,0.7041,0.3945,-0.6929,0.5528,0.463,-0.7699,0.5528,0.3189,-0.8173,0.5528,0.1626,-0.6965,0.7041,0.1385,-0.6561,0.7041,0.2718,-0.6561,0.7041,0.2718,-0.7699,0.5528,0.3189,-0.8173,0.5528,0.1626,-0.8333,0.5528,0.0,-0.7101,0.7041,0.0,-0.6965,0.7041,0.1385,-0.6965,0.7041,0.1385,-0.8173,0.5528,0.1626,-0.8333,0.5528,0.0,-0.8173,0.5528,-0.1626,-0.6965,0.7041,-0.1385,-0.7101,0.7041,0.0,-0.7101,0.7041,0.0,-0.8333,0.5528,0.0,-0.8173,0.5528,-0.1626,-0.7699,0.5528,-0.3189,-0.6561,0.7041,-0.2718,-0.6965,0.7041,-0.1385,-0.6965,0.7041,-0.1385,-0.8173,0.5528,-0.1626,-0.7699,0.5528,-0.3189,-0.6929,0.5528,-0.463,-0.5905,0.7041,-0.3945,-0.6561,0.7041,-0.2718,-0.6561,0.7041,-0.2718,-0.7699,0.5528,-0.3189,-0.6929,0.5528,-0.463,-0.5893,0.5528,-0.5893,-0.5021,0.7041,-0.5021,-0.5905,0.7041,-0.3945,-0.5905,0.7041,-0.3945,-0.6929,0.5528,-0.463,-0.5893,0.5528,-0.5893,-0.463,0.5528,-0.6929,-0.3945,0.7041,-0.5905,-0.5021,0.7041,-0.5021,-0.5021,0.7041,-0.5021,-0.5893,0.5528,-0.5893,-0.463,0.5528,-0.6929,-0.3189,0.5528,-0.7699,-0.2718,0.7041,-0.6561,-0.3945,0.7041,-0.5905,-0.3945,0.7041,-0.5905,-0.463,0.5528,-0.6929,-0.3189,0.5528,-0.7699,-0.1626,0.5528,-0.8173,-0.1385,0.7041,-0.6965,-0.2718,0.7041,-0.6561,-0.2718,0.7041,-0.6561,-0.3189,0.5528,-0.7699,-0.1626,0.5528,-0.8173,-0.0818,0.5509,-0.8305,-0.0698,0.7023,-0.7084,-0.1385,0.7041,-0.6965,-0.1385,0.7041,-0.6965,-0.1626,0.5528,-0.8173,-0.0818,0.5509,-0.8305,-0.1804,0.3805,0.907,-0.1626,0.5528,0.8173,-0.0818,0.5509,0.8305,-0.0818,0.5509,0.8305,-0.0907,0.379,0.921,-0.1804,0.3805,0.907,-0.3539,0.3805,0.8544,-0.3189,0.5528,0.7699,-0.1626,0.5528,0.8173,-0.1626,0.5528,0.8173,-0.1804,0.3805,0.907,-0.3539,0.3805,0.8544,-0.5138,0.3805,0.7689,-0.463,0.5528,0.6929,-0.3189,0.5528,0.7699,-0.3189,0.5528,0.7699,-0.3539,0.3805,0.8544,-0.5138,0.3805,0.7689,-0.6539,0.3805,0.6539,-0.5893,0.5528,0.5893,-0.463,0.5528,0.6929,-0.463,0.5528,0.6929,-0.5138,0.3805,0.7689,-0.6539,0.3805,0.6539,-0.7689,0.3805,0.5138,-0.6929,0.5528,0.463,-0.5893,0.5528,0.5893,-0.5893,0.5528,0.5893,-0.6539,0.3805,0.6539,-0.7689,0.3805,0.5138,-0.8544,0.3805,0.3539,-0.7699,0.5528,0.3189,-0.6929,0.5528,0.463,-0.6929,0.5528,0.463,-0.7689,0.3805,0.5138,-0.8544,0.3805,0.3539,-0.907,0.3805,0.1804,-0.8173,0.5528,0.1626,-0.7699,0.5528,0.3189,-0.7699,0.5528,0.3189,-0.8544,0.3805,0.3539,-0.907,0.3805,0.1804,-0.9248,0.3805,0.0,-0.8333,0.5528,0.0,-0.8173,0.5528,0.1626,-0.8173,0.5528,0.1626,-0.907,0.3805,0.1804,-0.9248,0.3805,0.0,-0.907,0.3805,-0.1804,-0.8173,0.5528,-0.1626,-0.8333,0.5528,0.0,-0.8333,0.5528,0.0,-0.9248,0.3805,0.0,-0.907,0.3805,-0.1804,-0.8544,0.3805,-0.3539,-0.7699,0.5528,-0.3189,-0.8173,0.5528,-0.1626,-0.8173,0.5528,-0.1626,-0.907,0.3805,-0.1804,-0.8544,0.3805,-0.3539,-0.7689,0.3805,-0.5138,-0.6929,0.5528,-0.463,-0.7699,0.5528,-0.3189,-0.7699,0.5528,-0.3189,-0.8544,0.3805,-0.3539,-0.7689,0.3805,-0.5138,-0.6539,0.3805,-0.6539,-0.5893,0.5528,-0.5893,-0.6929,0.5528,-0.463,-0.6929,0.5528,-0.463,-0.7689,0.3805,-0.5138,-0.6539,0.3805,-0.6539,-0.5138,0.3805,-0.7689,-0.463,0.5528,-0.6929,-0.5893,0.5528,-0.5893,-0.5893,0.5528,-0.5893,-0.6539,0.3805,-0.6539,-0.5138,0.3805,-0.7689,-0.3539,0.3805,-0.8544,-0.3189,0.5528,-0.7699,-0.463,0.5528,-0.6929,-0.463,0.5528,-0.6929,-0.5138,0.3805,-0.7689,-0.3539,0.3805,-0.8544,-0.1804,0.3805,-0.907,-0.1626,0.5528,-0.8173,-0.3189,0.5528,-0.7699,-0.3189,0.5528,-0.7699,-0.3539,0.3805,-0.8544,-0.1804,0.3805,-0.907,-0.0907,0.379,-0.921,-0.0818,0.5509,-0.8305,-0.1626,0.5528,-0.8173,-0.1626,0.5528,-0.8173,-0.1804,0.3805,-0.907,-0.0907,0.379,-0.921,-0.1914,0.1939,0.9622,-0.1804,0.3805,0.907,-0.0907,0.379,0.921,-0.0907,0.379,0.921,-0.0962,0.193,0.9765,-0.1914,0.1939,0.9622,-0.3754,0.1939,0.9063,-0.3539,0.3805,0.8544,-0.1804,0.3805,0.907,-0.1804,0.3805,0.907,-0.1914,0.1939,0.9622,-0.3754,0.1939,0.9063,-0.545,0.1939,0.8157,-0.5138,0.3805,0.7689,-0.3539,0.3805,0.8544,-0.3539,0.3805,0.8544,-0.3754,0.1939,0.9063,-0.545,0.1939,0.8157,-0.6937,0.1939,0.6937,-0.6539,0.3805,0.6539,-0.5138,0.3805,0.7689,-0.5138,0.3805,0.7689,-0.545,0.1939,0.8157,-0.6937,0.1939,0.6937,-0.8157,0.1939,0.545,-0.7689,0.3805,0.5138,-0.6539,0.3805,0.6539,-0.6539,0.3805,0.6539,-0.6937,0.1939,0.6937,-0.8157,0.1939,0.545,-0.9063,0.1939,0.3754,-0.8544,0.3805,0.3539,-0.7689,0.3805,0.5138,-0.7689,0.3805,0.5138,-0.8157,0.1939,0.545,-0.9063,0.1939,0.3754,-0.9622,0.1939,0.1914,-0.907,0.3805,0.1804,-0.8544,0.3805,0.3539,-0.8544,0.3805,0.3539,-0.9063,0.1939,0.3754,-0.9622,0.1939,0.1914,-0.981,0.1939,0.0,-0.9248,0.3805,0.0,-0.907,0.3805,0.1804,-0.907,0.3805,0.1804,-0.9622,0.1939,0.1914,-0.981,0.1939,0.0,-0.9622,0.1939,-0.1914,-0.907,0.3805,-0.1804,-0.9248,0.3805,0.0,-0.9248,0.3805,0.0,-0.981,0.1939,0.0,-0.9622,0.1939,-0.1914,-0.9063,0.1939,-0.3754,-0.8544,0.3805,-0.3539,-0.907,0.3805,-0.1804,-0.907,0.3805,-0.1804,-0.9622,0.1939,-0.1914,-0.9063,0.1939,-0.3754,-0.8157,0.1939,-0.545,-0.7689,0.3805,-0.5138,-0.8544,0.3805,-0.3539,-0.8544,0.3805,-0.3539,-0.9063,0.1939,-0.3754,-0.8157,0.1939,-0.545,-0.6937,0.1939,-0.6937,-0.6539,0.3805,-0.6539,-0.7689,0.3805,-0.5138,-0.7689,0.3805,-0.5138,-0.8157,0.1939,-0.545,-0.6937,0.1939,-0.6937,-0.545,0.1939,-0.8157,-0.5138,0.3805,-0.7689,-0.6539,0.3805,-0.6539,-0.6539,0.3805,-0.6539,-0.6937,0.1939,-0.6937,-0.545,0.1939,-0.8157,-0.3754,0.1939,-0.9063,-0.3539,0.3805,-0.8544,-0.5138,0.3805,-0.7689,-0.5138,0.3805,-0.7689,-0.545,0.1939,-0.8157,-0.3754,0.1939,-0.9063,-0.1914,0.1939,-0.9622,-0.1804,0.3805,-0.907,-0.3539,0.3805,-0.8544,-0.3539,0.3805,-0.8544,-0.3754,0.1939,-0.9063,-0.1914,0.1939,-0.9622,-0.0962,0.193,-0.9765,-0.0907,0.379,-0.921,-0.1804,0.3805,-0.907,-0.1804,0.3805,-0.907,-0.1914,0.1939,-0.9622,-0.0962,0.193,-0.9765,-0.1951,0.0,0.9808,-0.1914,0.1939,0.9622,-0.0962,0.193,0.9765,-0.0962,0.193,0.9765,-0.098,0.0,0.9952,-0.1951,0.0,0.9808,-0.3827,0.0,0.9239,-0.3754,0.1939,0.9063,-0.1914,0.1939,0.9622,-0.1914,0.1939,0.9622,-0.1951,0.0,0.9808,-0.3827,0.0,0.9239,-0.5556,0.0,0.8315,-0.545,0.1939,0.8157,-0.3754,0.1939,0.9063,-0.3754,0.1939,0.9063,-0.3827,0.0,0.9239,-0.5556,0.0,0.8315,-0.7071,0.0,0.7071,-0.6937,0.1939,0.6937,-0.545,0.1939,0.8157,-0.545,0.1939,0.8157,-0.5556,0.0,0.8315,-0.7071,0.0,0.7071,-0.8315,0.0,0.5556,-0.8157,0.1939,0.545,-0.6937,0.1939,0.6937,-0.6937,0.1939,0.6937,-0.7071,0.0,0.7071,-0.8315,0.0,0.5556,-0.9239,0.0,0.3827,-0.9063,0.1939,0.3754,-0.8157,0.1939,0.545,-0.8157,0.1939,0.545,-0.8315,0.0,0.5556,-0.9239,0.0,0.3827,-0.9808,0.0,0.1951,-0.9622,0.1939,0.1914,-0.9063,0.1939,0.3754,-0.9063,0.1939,0.3754,-0.9239,0.0,0.3827,-0.9808,0.0,0.1951,-1.0,0.0,0.0,-0.981,0.1939,0.0,-0.9622,0.1939,0.1914,-0.9622,0.1939,0.1914,-0.9808,0.0,0.1951,-1.0,0.0,0.0,-0.9808,0.0,-0.1951,-0.9622,0.1939,-0.1914,-0.981,0.1939,0.0,-0.981,0.1939,0.0,-1.0,0.0,0.0,-0.9808,0.0,-0.1951,-0.9239,0.0,-0.3827,-0.9063,0.1939,-0.3754,-0.9622,0.1939,-0.1914,-0.9622,0.1939,-0.1914,-0.9808,0.0,-0.1951,-0.9239,0.0,-0.3827,-0.8315,0.0,-0.5556,-0.8157,0.1939,-0.545,-0.9063,0.1939,-0.3754,-0.9063,0.1939,-0.3754,-0.9239,0.0,-0.3827,-0.8315,0.0,-0.5556,-0.7071,0.0,-0.7071,-0.6937,0.1939,-0.6937,-0.8157,0.1939,-0.545,-0.8157,0.1939,-0.545,-0.8315,0.0,-0.5556,-0.7071,0.0,-0.7071,-0.5556,0.0,-0.8315,-0.545,0.1939,-0.8157,-0.6937,0.1939,-0.6937,-0.6937,0.1939,-0.6937,-0.7071,0.0,-0.7071,-0.5556,0.0,-0.8315,-0.3827,0.0,-0.9239,-0.3754,0.1939,-0.9063,-0.545,0.1939,-0.8157,-0.545,0.1939,-0.8157,-0.5556,0.0,-0.8315,-0.3827,0.0,-0.9239,-0.1951,0.0,-0.9808,-0.1914,0.1939,-0.9622,-0.3754,0.1939,-0.9063,-0.3754,0.1939,-0.9063,-0.3827,0.0,-0.9239,-0.1951,0.0,-0.9808,-0.098,0.0,-0.9952,-0.0962,0.193,-0.9765,-0.1914,0.1939,-0.9622,-0.1914,0.1939,-0.9622,-0.1951,0.0,-0.9808,-0.098,0.0,-0.9952,-0.1914,-0.1939,0.9622,-0.1951,0.0,0.9808,-0.098,0.0,0.9952,-0.098,0.0,0.9952,-0.0962,-0.193,0.9765,-0.1914,-0.1939,0.9622,-0.3754,-0.1939,0.9063,-0.3827,0.0,0.9239,-0.1951,0.0,0.9808,-0.1951,0.0,0.9808,-0.1914,-0.1939,0.9622,-0.3754,-0.1939,0.9063,-0.545,-0.1939,0.8157,-0.5556,0.0,0.8315,-0.3827,0.0,0.9239,-0.3827,0.0,0.9239,-0.3754,-0.1939,0.9063,-0.545,-0.1939,0.8157,-0.6937,-0.1939,0.6937,-0.7071,0.0,0.7071,-0.5556,0.0,0.8315,-0.5556,0.0,0.8315,-0.545,-0.1939,0.8157,-0.6937,-0.1939,0.6937,-0.8157,-0.1939,0.545,-0.8315,0.0,0.5556,-0.7071,0.0,0.7071,-0.7071,0.0,0.7071,-0.6937,-0.1939,0.6937,-0.8157,-0.1939,0.545,-0.9063,-0.1939,0.3754,-0.9239,0.0,0.3827,-0.8315,0.0,0.5556,-0.8315,0.0,0.5556,-0.8157,-0.1939,0.545,-0.9063,-0.1939,0.3754,-0.9622,-0.1939,0.1914,-0.9808,0.0,0.1951,-0.9239,0.0,0.3827,-0.9239,0.0,0.3827,-0.9063,-0.1939,0.3754,-0.9622,-0.1939,0.1914,-0.981,-0.1939,0.0,-1.0,0.0,0.0,-0.9808,0.0,0.1951,-0.9808,0.0,0.1951,-0.9622,-0.1939,0.1914,-0.981,-0.1939,0.0,-0.9622,-0.1939,-0.1914,-0.9808,0.0,-0.1951,-1.0,0.0,0.0,-1.0,0.0,0.0,-0.981,-0.1939,0.0,-0.9622,-0.1939,-0.1914,-0.9063,-0.1939,-0.3754,-0.9239,0.0,-0.3827,-0.9808,0.0,-0.1951,-0.9808,0.0,-0.1951,-0.9622,-0.1939,-0.1914,-0.9063,-0.1939,-0.3754,-0.8157,-0.1939,-0.545,-0.8315,0.0,-0.5556,-0.9239,0.0,-0.3827,-0.9239,0.0,-0.3827,-0.9063,-0.1939,-0.3754,-0.8157,-0.1939,-0.545,-0.6937,-0.1939,-0.6937,-0.7071,0.0,-0.7071,-0.8315,0.0,-0.5556,-0.8315,0.0,-0.5556,-0.8157,-0.1939,-0.545,-0.6937,-0.1939,-0.6937,-0.545,-0.1939,-0.8157,-0.5556,0.0,-0.8315,-0.7071,0.0,-0.7071,-0.7071,0.0,-0.7071,-0.6937,-0.1939,-0.6937,-0.545,-0.1939,-0.8157,-0.3754,-0.1939,-0.9063,-0.3827,0.0,-0.9239,-0.5556,0.0,-0.8315,-0.5556,0.0,-0.8315,-0.545,-0.1939,-0.8157,-0.3754,-0.1939,-0.9063,-0.1914,-0.1939,-0.9622,-0.1951,0.0,-0.9808,-0.3827,0.0,-0.9239,-0.3827,0.0,-0.9239,-0.3754,-0.1939,-0.9063,-0.1914,-0.1939,-0.9622,-0.0962,-0.193,-0.9765,-0.098,0.0,-0.9952,-0.1951,0.0,-0.9808,-0.1951,0.0,-0.9808,-0.1914,-0.1939,-0.9622,-0.0962,-0.193,-0.9765,-0.1804,-0.3805,0.907,-0.1914,-0.1939,0.9622,-0.0962,-0.193,0.9765,-0.0962,-0.193,0.9765,-0.0907,-0.379,0.921,-0.1804,-0.3805,0.907,-0.3539,-0.3805,0.8544,-0.3754,-0.1939,0.9063,-0.1914,-0.1939,0.9622,-0.1914,-0.1939,0.9622,-0.1804,-0.3805,0.907,-0.3539,-0.3805,0.8544,-0.5138,-0.3805,0.7689,-0.545,-0.1939,0.8157,-0.3754,-0.1939,0.9063,-0.3754,-0.1939,0.9063,-0.3539,-0.3805,0.8544,-0.5138,-0.3805,0.7689,-0.6539,-0.3805,0.6539,-0.6937,-0.1939,0.6937,-0.545,-0.1939,0.8157,-0.545,-0.1939,0.8157,-0.5138,-0.3805,0.7689,-0.6539,-0.3805,0.6539,-0.7689,-0.3805,0.5138,-0.8157,-0.1939,0.545,-0.6937,-0.1939,0.6937,-0.6937,-0.1939,0.6937,-0.6539,-0.3805,0.6539,-0.7689,-0.3805,0.5138,-0.8544,-0.3805,0.3539,-0.9063,-0.1939,0.3754,-0.8157,-0.1939,0.545,-0.8157,-0.1939,0.545,-0.7689,-0.3805,0.5138,-0.8544,-0.3805,0.3539,-0.907,-0.3805,0.1804,-0.9622,-0.1939,0.1914,-0.9063,-0.1939,0.3754,-0.9063,-0.1939,0.3754,-0.8544,-0.3805,0.3539,-0.907,-0.3805,0.1804,-0.9248,-0.3805,0.0,-0.981,-0.1939,0.0,-0.9622,-0.1939,0.1914,-0.9622,-0.1939,0.1914,-0.907,-0.3805,0.1804,-0.9248,-0.3805,0.0,-0.907,-0.3805,-0.1804,-0.9622,-0.1939,-0.1914,-0.981,-0.1939,0.0,-0.981,-0.1939,0.0,-0.9248,-0.3805,0.0,-0.907,-0.3805,-0.1804,-0.8544,-0.3805,-0.3539,-0.9063,-0.1939,-0.3754,-0.9622,-0.1939,-0.1914,-0.9622,-0.1939,-0.1914,-0.907,-0.3805,-0.1804,-0.8544,-0.3805,-0.3539,-0.7689,-0.3805,-0.5138,-0.8157,-0.1939,-0.545,-0.9063,-0.1939,-0.3754,-0.9063,-0.1939,-0.3754,-0.8544,-0.3805,-0.3539,-0.7689,-0.3805,-0.5138,-0.6539,-0.3805,-0.6539,-0.6937,-0.1939,-0.6937,-0.8157,-0.1939,-0.545,-0.8157,-0.1939,-0.545,-0.7689,-0.3805,-0.5138,-0.6539,-0.3805,-0.6539,-0.5138,-0.3805,-0.7689,-0.545,-0.1939,-0.8157,-0.6937,-0.1939,-0.6937,-0.6937,-0.1939,-0.6937,-0.6539,-0.3805,-0.6539,-0.5138,-0.3805,-0.7689,-0.3539,-0.3805,-0.8544,-0.3754,-0.1939,-0.9063,-0.545,-0.1939,-0.8157,-0.545,-0.1939,-0.8157,-0.5138,-0.3805,-0.7689,-0.3539,-0.3805,-0.8544,-0.1804,-0.3805,-0.907,-0.1914,-0.1939,-0.9622,-0.3754,-0.1939,-0.9063,-0.3754,-0.1939,-0.9063,-0.3539,-0.3805,-0.8544,-0.1804,-0.3805,-0.907,-0.0907,-0.379,-0.921,-0.0962,-0.193,-0.9765,-0.1914,-0.1939,-0.9622,-0.1914,-0.1939,-0.9622,-0.1804,-0.3805,-0.907,-0.0907,-0.379,-0.921,-0.1626,-0.5528,0.8173,-0.1804,-0.3805,0.907,-0.0907,-0.379,0.921,-0.0907,-0.379,0.921,-0.0818,-0.5509,0.8305,-0.1626,-0.5528,0.8173,-0.3189,-0.5528,0.7699,-0.3539,-0.3805,0.8544,-0.1804,-0.3805,0.907,-0.1804,-0.3805,0.907,-0.1626,-0.5528,0.8173,-0.3189,-0.5528,0.7699,-0.463,-0.5528,0.6929,-0.5138,-0.3805,0.7689,-0.3539,-0.3805,0.8544,-0.3539,-0.3805,0.8544,-0.3189,-0.5528,0.7699,-0.463,-0.5528,0.6929,-0.5893,-0.5528,0.5893,-0.6539,-0.3805,0.6539,-0.5138,-0.3805,0.7689,-0.5138,-0.3805,0.7689,-0.463,-0.5528,0.6929,-0.5893,-0.5528,0.5893,-0.6929,-0.5528,0.463,-0.7689,-0.3805,0.5138,-0.6539,-0.3805,0.6539,-0.6539,-0.3805,0.6539,-0.5893,-0.5528,0.5893,-0.6929,-0.5528,0.463,-0.7699,-0.5528,0.3189,-0.8544,-0.3805,0.3539,-0.7689,-0.3805,0.5138,-0.7689,-0.3805,0.5138,-0.6929,-0.5528,0.463,-0.7699,-0.5528,0.3189,-0.8173,-0.5528,0.1626,-0.907,-0.3805,0.1804,-0.8544,-0.3805,0.3539,-0.8544,-0.3805,0.3539,-0.7699,-0.5528,0.3189,-0.8173,-0.5528,0.1626,-0.8333,-0.5528,0.0,-0.9248,-0.3805,0.0,-0.907,-0.3805,0.1804,-0.907,-0.3805,0.1804,-0.8173,-0.5528,0.1626,-0.8333,-0.5528,0.0,-0.8173,-0.5528,-0.1626,-0.907,-0.3805,-0.1804,-0.9248,-0.3805,0.0,-0.9248,-0.3805,0.0,-0.8333,-0.5528,0.0,-0.8173,-0.5528,-0.1626,-0.7699,-0.5528,-0.3189,-0.8544,-0.3805,-0.3539,-0.907,-0.3805,-0.1804,-0.907,-0.3805,-0.1804,-0.8173,-0.5528,-0.1626,-0.7699,-0.5528,-0.3189,-0.6929,-0.5528,-0.463,-0.7689,-0.3805,-0.5138,-0.8544,-0.3805,-0.3539,-0.8544,-0.3805,-0.3539,-0.7699,-0.5528,-0.3189,-0.6929,-0.5528,-0.463,-0.5893,-0.5528,-0.5893,-0.6539,-0.3805,-0.6539,-0.7689,-0.3805,-0.5138,-0.7689,-0.3805,-0.5138,-0.6929,-0.5528,-0.463,-0.5893,-0.5528,-0.5893,-0.463,-0.5528,-0.6929,-0.5138,-0.3805,-0.7689,-0.6539,-0.3805,-0.6539,-0.6539,-0.3805,-0.6539,-0.5893,-0.5528,-0.5893,-0.463,-0.5528,-0.6929,-0.3189,-0.5528,-0.7699,-0.3539,-0.3805,-0.8544,-0.5138,-0.3805,-0.7689,-0.5138,-0.3805,-0.7689,-0.463,-0.5528,-0.6929,-0.3189,-0.5528,-0.7699,-0.1626,-0.5528,-0.8173,-0.1804,-0.3805,-0.907,-0.3539,-0.3805,-0.8544,-0.3539,-0.3805,-0.8544,-0.3189,-0.5528,-0.7699,-0.1626,-0.5528,-0.8173,-0.0818,-0.5509,-0.8305,-0.0907,-0.379,-0.921,-0.1804,-0.3805,-0.907,-0.1804,-0.3805,-0.907,-0.1626,-0.5528,-0.8173,-0.0818,-0.5509,-0.8305,-0.1385,-0.7041,0.6965,-0.1626,-0.5528,0.8173,-0.0818,-0.5509,0.8305,-0.0818,-0.5509,0.8305,-0.0698,-0.7023,0.7084,-0.1385,-0.7041,0.6965,-0.2718,-0.7041,0.6561,-0.3189,-0.5528,0.7699,-0.1626,-0.5528,0.8173,-0.1626,-0.5528,0.8173,-0.1385,-0.7041,0.6965,-0.2718,-0.7041,0.6561,-0.3945,-0.7041,0.5905,-0.463,-0.5528,0.6929,-0.3189,-0.5528,0.7699,-0.3189,-0.5528,0.7699,-0.2718,-0.7041,0.6561,-0.3945,-0.7041,0.5905,-0.5021,-0.7041,0.5021,-0.5893,-0.5528,0.5893,-0.463,-0.5528,0.6929,-0.463,-0.5528,0.6929,-0.3945,-0.7041,0.5905,-0.5021,-0.7041,0.5021,-0.5905,-0.7041,0.3945,-0.6929,-0.5528,0.463,-0.5893,-0.5528,0.5893,-0.5893,-0.5528,0.5893,-0.5021,-0.7041,0.5021,-0.5905,-0.7041,0.3945,-0.6561,-0.7041,0.2718,-0.7699,-0.5528,0.3189,-0.6929,-0.5528,0.463,-0.6929,-0.5528,0.463,-0.5905,-0.7041,0.3945,-0.6561,-0.7041,0.2718,-0.6965,-0.7041,0.1385,-0.8173,-0.5528,0.1626,-0.7699,-0.5528,0.3189,-0.7699,-0.5528,0.3189,-0.6561,-0.7041,0.2718,-0.6965,-0.7041,0.1385,-0.7101,-0.7041,0.0,-0.8333,-0.5528,0.0,-0.8173,-0.5528,0.1626,-0.8173,-0.5528,0.1626,-0.6965,-0.7041,0.1385,-0.7101,-0.7041,0.0,-0.6965,-0.7041,-0.1385,-0.8173,-0.5528,-0.1626,-0.8333,-0.5528,0.0,-0.8333,-0.5528,0.0,-0.7101,-0.7041,0.0,-0.6965,-0.7041,-0.1385,-0.6561,-0.7041,-0.2718,-0.7699,-0.5528,-0.3189,-0.8173,-0.5528,-0.1626,-0.8173,-0.5528,-0.1626,-0.6965,-0.7041,-0.1385,-0.6561,-0.7041,-0.2718,-0.5905,-0.7041,-0.3945,-0.6929,-0.5528,-0.463,-0.7699,-0.5528,-0.3189,-0.7699,-0.5528,-0.3189,-0.6561,-0.7041,-0.2718,-0.5905,-0.7041,-0.3945,-0.5021,-0.7041,-0.5021,-0.5893,-0.5528,-0.5893,-0.6929,-0.5528,-0.463,-0.6929,-0.5528,-0.463,-0.5905,-0.7041,-0.3945,-0.5021,-0.7041,-0.5021,-0.3945,-0.7041,-0.5905,-0.463,-0.5528,-0.6929,-0.5893,-0.5528,-0.5893,-0.5893,-0.5528,-0.5893,-0.5021,-0.7041,-0.5021,-0.3945,-0.7041,-0.5905,-0.2718,-0.7041,-0.6561,-0.3189,-0.5528,-0.7699,-0.463,-0.5528,-0.6929,-0.463,-0.5528,-0.6929,-0.3945,-0.7041,-0.5905,-0.2718,-0.7041,-0.6561,-0.1385,-0.7041,-0.6965,-0.1626,-0.5528,-0.8173,-0.3189,-0.5528,-0.7699,-0.3189,-0.5528,-0.7699,-0.2718,-0.7041,-0.6561,-0.1385,-0.7041,-0.6965,-0.0698,-0.7023,-0.7084,-0.0818,-0.5509,-0.8305,-0.1626,-0.5528,-0.8173,-0.1626,-0.5528,-0.8173,-0.1385,-0.7041,-0.6965,-0.0698,-0.7023,-0.7084,-0.1092,-0.8286,0.549,-0.1385,-0.7041,0.6965,-0.0698,-0.7023,0.7084,-0.0698,-0.7023,0.7084,-0.055,-0.8274,0.5589,-0.1092,-0.8286,0.549,-0.2142,-0.8286,0.5172,-0.2718,-0.7041,0.6561,-0.1385,-0.7041,0.6965,-0.1385,-0.7041,0.6965,-0.1092,-0.8286,0.549,-0.2142,-0.8286,0.5172,-0.311,-0.8286,0.4654,-0.3945,-0.7041,0.5905,-0.2718,-0.7041,0.6561,-0.2718,-0.7041,0.6561,-0.2142,-0.8286,0.5172,-0.311,-0.8286,0.4654,-0.3958,-0.8286,0.3958,-0.5021,-0.7041,0.5021,-0.3945,-0.7041,0.5905,-0.3945,-0.7041,0.5905,-0.311,-0.8286,0.4654,-0.3958,-0.8286,0.3958,-0.4654,-0.8286,0.311,-0.5905,-0.7041,0.3945,-0.5021,-0.7041,0.5021,-0.5021,-0.7041,0.5021,-0.3958,-0.8286,0.3958,-0.4654,-0.8286,0.311,-0.5172,-0.8286,0.2142,-0.6561,-0.7041,0.2718,-0.5905,-0.7041,0.3945,-0.5905,-0.7041,0.3945,-0.4654,-0.8286,0.311,-0.5172,-0.8286,0.2142,-0.549,-0.8286,0.1092,-0.6965,-0.7041,0.1385,-0.6561,-0.7041,0.2718,-0.6561,-0.7041,0.2718,-0.5172,-0.8286,0.2142,-0.549,-0.8286,0.1092,-0.5598,-0.8286,0.0,-0.7101,-0.7041,0.0,-0.6965,-0.7041,0.1385,-0.6965,-0.7041,0.1385,-0.549,-0.8286,0.1092,-0.5598,-0.8286,0.0,-0.549,-0.8286,-0.1092,-0.6965,-0.7041,-0.1385,-0.7101,-0.7041,0.0,-0.7101,-0.7041,0.0,-0.5598,-0.8286,0.0,-0.549,-0.8286,-0.1092,-0.5172,-0.8286,-0.2142,-0.6561,-0.7041,-0.2718,-0.6965,-0.7041,-0.1385,-0.6965,-0.7041,-0.1385,-0.549,-0.8286,-0.1092,-0.5172,-0.8286,-0.2142,-0.4654,-0.8286,-0.311,-0.5905,-0.7041,-0.3945,-0.6561,-0.7041,-0.2718,-0.6561,-0.7041,-0.2718,-0.5172,-0.8286,-0.2142,-0.4654,-0.8286,-0.311,-0.3958,-0.8286,-0.3958,-0.5021,-0.7041,-0.5021,-0.5905,-0.7041,-0.3945,-0.5905,-0.7041,-0.3945,-0.4654,-0.8286,-0.311,-0.3958,-0.8286,-0.3958,-0.311,-0.8286,-0.4654,-0.3945,-0.7041,-0.5905,-0.5021,-0.7041,-0.5021,-0.5021,-0.7041,-0.5021,-0.3958,-0.8286,-0.3958,-0.311,-0.8286,-0.4654,-0.2142,-0.8286,-0.5172,-0.2718,-0.7041,-0.6561,-0.3945,-0.7041,-0.5905,-0.3945,-0.7041,-0.5905,-0.311,-0.8286,-0.4654,-0.2142,-0.8286,-0.5172,-0.1092,-0.8286,-0.549,-0.1385,-0.7041,-0.6965,-0.2718,-0.7041,-0.6561,-0.2718,-0.7041,-0.6561,-0.2142,-0.8286,-0.5172,-0.1092,-0.8286,-0.549,-0.055,-0.8274,-0.5589,-0.0698,-0.7023,-0.7084,-0.1385,-0.7041,-0.6965,-0.1385,-0.7041,-0.6965,-0.1092,-0.8286,-0.549,-0.055,-0.8274,-0.5589,-0.0757,-0.9217,0.3804,-0.1092,-0.8286,0.549,-0.055,-0.8274,0.5589,-0.055,-0.8274,0.5589,-0.0382,-0.921,0.3876,-0.0757,-0.9217,0.3804,-0.1484,-0.9217,0.3584,-0.2142,-0.8286,0.5172,-0.1092,-0.8286,0.549,-0.1092,-0.8286,0.549,-0.0757,-0.9217,0.3804,-0.1484,-0.9217,0.3584,-0.2155,-0.9217,0.3225,-0.311,-0.8286,0.4654,-0.2142,-0.8286,0.5172,-0.2142,-0.8286,0.5172,-0.1484,-0.9217,0.3584,-0.2155,-0.9217,0.3225,-0.2743,-0.9217,0.2743,-0.3958,-0.8286,0.3958,-0.311,-0.8286,0.4654,-0.311,-0.8286,0.4654,-0.2155,-0.9217,0.3225,-0.2743,-0.9217,0.2743,-0.3225,-0.9217,0.2155,-0.4654,-0.8286,0.311,-0.3958,-0.8286,0.3958,-0.3958,-0.8286,0.3958,-0.2743,-0.9217,0.2743,-0.3225,-0.9217,0.2155,-0.3584,-0.9217,0.1484,-0.5172,-0.8286,0.2142,-0.4654,-0.8286,0.311,-0.4654,-0.8286,0.311,-0.3225,-0.9217,0.2155,-0.3584,-0.9217,0.1484,-0.3804,-0.9217,0.0757,-0.549,-0.8286,0.1092,-0.5172,-0.8286,0.2142,-0.5172,-0.8286,0.2142,-0.3584,-0.9217,0.1484,-0.3804,-0.9217,0.0757,-0.3879,-0.9217,0.0,-0.5598,-0.8286,0.0,-0.549,-0.8286,0.1092,-0.549,-0.8286,0.1092,-0.3804,-0.9217,0.0757,-0.3879,-0.9217,0.0,-0.3804,-0.9217,-0.0757,-0.549,-0.8286,-0.1092,-0.5598,-0.8286,0.0,-0.5598,-0.8286,0.0,-0.3879,-0.9217,0.0,-0.3804,-0.9217,-0.0757,-0.3584,-0.9217,-0.1484,-0.5172,-0.8286,-0.2142,-0.549,-0.8286,-0.1092,-0.549,-0.8286,-0.1092,-0.3804,-0.9217,-0.0757,-0.3584,-0.9217,-0.1484,-0.3225,-0.9217,-0.2155,-0.4654,-0.8286,-0.311,-0.5172,-0.8286,-0.2142,-0.5172,-0.8286,-0.2142,-0.3584,-0.9217,-0.1484,-0.3225,-0.9217,-0.2155,-0.2743,-0.9217,-0.2743,-0.3958,-0.8286,-0.3958,-0.4654,-0.8286,-0.311,-0.4654,-0.8286,-0.311,-0.3225,-0.9217,-0.2155,-0.2743,-0.9217,-0.2743,-0.2155,-0.9217,-0.3225,-0.311,-0.8286,-0.4654,-0.3958,-0.8286,-0.3958,-0.3958,-0.8286,-0.3958,-0.2743,-0.9217,-0.2743,-0.2155,-0.9217,-0.3225,-0.1484,-0.9217,-0.3584,-0.2142,-0.8286,-0.5172,-0.311,-0.8286,-0.4654,-0.311,-0.8286,-0.4654,-0.2155,-0.9217,-0.3225,-0.1484,-0.9217,-0.3584,-0.0757,-0.9217,-0.3804,-0.1092,-0.8286,-0.549,-0.2142,-0.8286,-0.5172,-0.2142,-0.8286,-0.5172,-0.1484,-0.9217,-0.3584,-0.0757,-0.9217,-0.3804,-0.0382,-0.921,-0.3876,-0.055,-0.8274,-0.5589,-0.1092,-0.8286,-0.549,-0.1092,-0.8286,-0.549,-0.0757,-0.9217,-0.3804,-0.0382,-0.921,-0.3876,-0.0392,-0.9796,0.1971,-0.0757,-0.9217,0.3804,-0.0382,-0.921,0.3876,-0.0382,-0.921,0.3876,-0.0198,-0.9794,0.2009,-0.0392,-0.9796,0.1971,-0.0769,-0.9796,0.1857,-0.1484,-0.9217,0.3584,-0.0757,-0.9217,0.3804,-0.0757,-0.9217,0.3804,-0.0392,-0.9796,0.1971,-0.0769,-0.9796,0.1857,-0.1117,-0.9796,0.1671,-0.2155,-0.9217,0.3225,-0.1484,-0.9217,0.3584,-0.1484,-0.9217,0.3584,-0.0769,-0.9796,0.1857,-0.1117,-0.9796,0.1671,-0.1421,-0.9796,0.1421,-0.2743,-0.9217,0.2743,-0.2155,-0.9217,0.3225,-0.2155,-0.9217,0.3225,-0.1117,-0.9796,0.1671,-0.1421,-0.9796,0.1421,-0.1671,-0.9796,0.1117,-0.3225,-0.9217,0.2155,-0.2743,-0.9217,0.2743,-0.2743,-0.9217,0.2743,-0.1421,-0.9796,0.1421,-0.1671,-0.9796,0.1117,-0.1857,-0.9796,0.0769,-0.3584,-0.9217,0.1484,-0.3225,-0.9217,0.2155,-0.3225,-0.9217,0.2155,-0.1671,-0.9796,0.1117,-0.1857,-0.9796,0.0769,-0.1971,-0.9796,0.0392,-0.3804,-0.9217,0.0757,-0.3584,-0.9217,0.1484,-0.3584,-0.9217,0.1484,-0.1857,-0.9796,0.0769,-0.1971,-0.9796,0.0392,-0.201,-0.9796,0.0,-0.3879,-0.9217,0.0,-0.3804,-0.9217,0.0757,-0.3804,-0.9217,0.0757,-0.1971,-0.9796,0.0392,-0.201,-0.9796,0.0,-0.1971,-0.9796,-0.0392,-0.3804,-0.9217,-0.0757,-0.3879,-0.9217,0.0,-0.3879,-0.9217,0.0,-0.201,-0.9796,0.0,-0.1971,-0.9796,-0.0392,-0.1857,-0.9796,-0.0769,-0.3584,-0.9217,-0.1484,-0.3804,-0.9217,-0.0757,-0.3804,-0.9217,-0.0757,-0.1971,-0.9796,-0.0392,-0.1857,-0.9796,-0.0769,-0.1671,-0.9796,-0.1117,-0.3225,-0.9217,-0.2155,-0.3584,-0.9217,-0.1484,-0.3584,-0.9217,-0.1484,-0.1857,-0.9796,-0.0769,-0.1671,-0.9796,-0.1117,-0.1421,-0.9796,-0.1421,-0.2743,-0.9217,-0.2743,-0.3225,-0.9217,-0.2155,-0.3225,-0.9217,-0.2155,-0.1671,-0.9796,-0.1117,-0.1421,-0.9796,-0.1421,-0.1117,-0.9796,-0.1671,-0.2155,-0.9217,-0.3225,-0.2743,-0.9217,-0.2743,-0.2743,-0.9217,-0.2743,-0.1421,-0.9796,-0.1421,-0.1117,-0.9796,-0.1671,-0.0769,-0.9796,-0.1857,-0.1484,-0.9217,-0.3584,-0.2155,-0.9217,-0.3225,-0.2155,-0.9217,-0.3225,-0.1117,-0.9796,-0.1671,-0.0769,-0.9796,-0.1857,-0.0392,-0.9796,-0.1971,-0.0757,-0.9217,-0.3804,-0.1484,-0.9217,-0.3584,-0.1484,-0.9217,-0.3584,-0.0769,-0.9796,-0.1857,-0.0392,-0.9796,-0.1971,-0.0198,-0.9794,-0.2009,-0.0382,-0.921,-0.3876,-0.0757,-0.9217,-0.3804,-0.0757,-0.9217,-0.3804,-0.0392,-0.9796,-0.1971,-0.0198,-0.9794,-0.2009,-0.063,-0.998,0.0,-0.0392,-0.9796,0.1971,-0.0198,-0.9794,0.2009,-0.063,-0.998,0.0,-0.0769,-0.9796,0.1857,-0.0392,-0.9796,0.1971,-0.063,-0.998,0.0,-0.1117,-0.9796,0.1671,-0.0769,-0.9796,0.1857,-0.063,-0.998,0.0,-0.1421,-0.9796,0.1421,-0.1117,-0.9796,0.1671,-0.063,-0.998,0.0,-0.1671,-0.9796,0.1117,-0.1421,-0.9796,0.1421,-0.063,-0.998,0.0,-0.1857,-0.9796,0.0769,-0.1671,-0.9796,0.1117,-0.063,-0.998,0.0,-0.1971,-0.9796,0.0392,-0.1857,-0.9796,0.0769,-0.063,-0.998,0.0,-0.201,-0.9796,0.0,-0.1971,-0.9796,0.0392,-0.063,-0.998,0.0,-0.1971,-0.9796,-0.0392,-0.201,-0.9796,0.0,-0.063,-0.998,0.0,-0.1857,-0.9796,-0.0769,-0.1971,-0.9796,-0.0392,-0.063,-0.998,0.0,-0.1671,-0.9796,-0.1117,-0.1857,-0.9796,-0.0769,-0.063,-0.998,0.0,-0.1421,-0.9796,-0.1421,-0.1671,-0.9796,-0.1117,-0.063,-0.998,0.0,-0.1117,-0.9796,-0.1671,-0.1421,-0.9796,-0.1421,-0.063,-0.998,0.0,-0.0769,-0.9796,-0.1857,-0.1117,-0.9796,-0.1671,-0.063,-0.998,0.0,-0.0392,-0.9796,-0.1971,-0.0769,-0.9796,-0.1857,-0.063,-0.998,0.0,-0.0198,-0.9794,-0.2009,-0.0392,-0.9796,-0.1971],"tangents":null,"uvs":[0.0,2.0,0.0,1.9375,0.0312,1.9375,0.0312,2.0,0.0312,1.9375,0.0625,1.9375,0.0625,2.0,0.0625,1.9375,0.0938,1.9375,0.0938,2.0,0.0938,1.9375,0.125,1.9375,0.125,2.0,0.125,1.9375,0.1562,1.9375,0.1562,2.0,0.1562,1.9375,0.1875,1.9375,0.1875,2.0,0.1875,1.9375,0.2187,1.9375,0.2187,2.0,0.2187,1.9375,0.25,1.9375,0.25,2.0,0.25,1.9375,0.2812,1.9375,0.2812,2.0,0.2812,1.9375,0.3125,1.9375,0.3125,2.0,0.3125,1.9375,0.3437,1.9375,0.3437,2.0,0.3437,1.9375,0.375,1.9375,0.375,2.0,0.375,1.9375,0.4062,1.9375,0.4062,2.0,0.4062,1.9375,0.4375,1.9375,0.4375,2.0,0.4375,1.9375,0.4688,1.9375,0.4688,2.0,0.4688,1.9375,0.5,1.9375,0.0312,1.875,0.0312,1.9375,0.0,1.9375,0.0,1.9375,0.0,1.875,0.0312,1.875,0.0625,1.875,0.0625,1.9375,0.0312,1.9375,0.0312,1.9375,0.0312,1.875,0.0625,1.875,0.0938,1.875,0.0938,1.9375,0.0625,1.9375,0.0625,1.9375,0.0625,1.875,0.0938,1.875,0.125,1.875,0.125,1.9375,0.0938,1.9375,0.0938,1.9375,0.0938,1.875,0.125,1.875,0.1562,1.875,0.1562,1.9375,0.125,1.9375,0.125,1.9375,0.125,1.875,0.1562,1.875,0.1875,1.875,0.1875,1.9375,0.1562,1.9375,0.1562,1.9375,0.1562,1.875,0.1875,1.875,0.2187,1.875,0.2187,1.9375,0.1875,1.9375,0.1875,1.9375,0.1875,1.875,0.2187,1.875,0.25,1.875,0.25,1.9375,0.2187,1.9375,0.2187,1.9375,0.2187,1.875,0.25,1.875,0.2812,1.875,0.2812,1.9375,0.25,1.9375,0.25,1.9375,0.25,1.875,0.2812,1.875,0.3125,1.875,0.3125,1.9375,0.2812,1.9375,0.2812,1.9375,0.2812,1.875,0.3125,1.875,0.3437,1.875,0.3437,1.9375,0.3125,1.9375,0.3125,1.9375,0.3125,1.875,0.3437,1.875,0.375,1.875,0.375,1.9375,0.3437,1.9375,0.3437,1.9375,0.3437,1.875,0.375,1.875,0.4062,1.875,0.4062,1.9375,0.375,1.9375,0.375,1.9375,0.375,1.875,0.4062,1.875,0.4375,1.875,0.4375,1.9375,0.4062,1.9375,0.4062,1.9375,0.4062,1.875,0.4375,1.875,0.4688,1.875,0.4688,1.9375,0.4375,1.9375,0.4375,1.9375,0.4375,1.875,0.4688,1.875,0.5,1.875,0.5,1.9375,0.4688,1.9375,0.4688,1.9375,0.4688,1.875,0.5,1.875,0.0312,1.8125,0.0312,1.875,0.0,1.875,0.0,1.875,0.0,1.8125,0.0312,1.8125,0.0625,1.8125,0.0625,1.875,0.0312,1.875,0.0312,1.875,0.0312,1.8125,0.0625,1.8125,0.0938,1.8125,0.0938,1.875,0.0625,1.875,0.0625,1.875,0.0625,1.8125,0.0938,1.8125,0.125,1.8125,0.125,1.875,0.0938,1.875,0.0938,1.875,0.0938,1.8125,0.125,1.8125,0.1562,1.8125,0.1562,1.875,0.125,1.875,0.125,1.875,0.125,1.8125,0.1562,1.8125,0.1875,1.8125,0.1875,1.875,0.1562,1.875,0.1562,1.875,0.1562,1.8125,0.1875,1.8125,0.2187,1.8125,0.2187,1.875,0.1875,1.875,0.1875,1.875,0.1875,1.8125,0.2187,1.8125,0.25,1.8125,0.25,1.875,0.2187,1.875,0.2187,1.875,0.2187,1.8125,0.25,1.8125,0.2812,1.8125,0.2812,1.875,0.25,1.875,0.25,1.875,0.25,1.8125,0.2812,1.8125,0.3125,1.8125,0.3125,1.875,0.2812,1.875,0.2812,1.875,0.2812,1.8125,0.3125,1.8125,0.3437,1.8125,0.3437,1.875,0.3125,1.875,0.3125,1.875,0.3125,1.8125,0.3437,1.8125,0.375,1.8125,0.375,1.875,0.3437,1.875,0.3437,1.875,0.3437,1.8125,0.375,1.8125,0.4062,1.8125,0.4062,1.875,0.375,1.875,0.375,1.875,0.375,1.8125,0.4062,1.8125,0.4375,1.8125,0.4375,1.875,0.4062,1.875,0.4062,1.875,0.4062,1.8125,0.4375,1.8125,0.4688,1.8125,0.4688,1.875,0.4375,1.875,0.4375,1.875,0.4375,1.8125,0.4688,1.8125,0.5,1.8125,0.5,1.875,0.4688,1.875,0.4688,1.875,0.4688,1.8125,0.5,1.8125,0.0312,1.75,0.0312,1.8125,0.0,1.8125,0.0,1.8125,0.0,1.75,0.0312,1.75,0.0625,1.75,0.0625,1.8125,0.0312,1.8125,0.0312,1.8125,0.0312,1.75,0.0625,1.75,0.0938,1.75,0.0938,1.8125,0.0625,1.8125,0.0625,1.8125,0.0625,1.75,0.0938,1.75,0.125,1.75,0.125,1.8125,0.0938,1.8125,0.0938,1.8125,0.0938,1.75,0.125,1.75,0.1562,1.75,0.1562,1.8125,0.125,1.8125,0.125,1.8125,0.125,1.75,0.1562,1.75,0.1875,1.75,0.1875,1.8125,0.1562,1.8125,0.1562,1.8125,0.1562,1.75,0.1875,1.75,0.2187,1.75,0.2187,1.8125,0.1875,1.8125,0.1875,1.8125,0.1875,1.75,0.2187,1.75,0.25,1.75,0.25,1.8125,0.2187,1.8125,0.2187,1.8125,0.2187,1.75,0.25,1.75,0.2812,1.75,0.2812,1.8125,0.25,1.8125,0.25,1.8125,0.25,1.75,0.2812,1.75,0.3125,1.75,0.3125,1.8125,0.2812,1.8125,0.2812,1.8125,0.2812,1.75,0.3125,1.75,0.3437,1.75,0.3437,1.8125,0.3125,1.8125,0.3125,1.8125,0.3125,1.75,0.3437,1.75,0.375,1.75,0.375,1.8125,0.3437,1.8125,0.3437,1.8125,0.3437,1.75,0.375,1.75,0.4062,1.75,0.4062,1.8125,0.375,1.8125,0.375,1.8125,0.375,1.75,0.4062,1.75,0.4375,1.75,0.4375,1.8125,0.4062,1.8125,0.4062,1.8125,0.4062,1.75,0.4375,1.75,0.4688,1.75,0.4688,1.8125,0.4375,1.8125,0.4375,1.8125,0.4375,1.75,0.4688,1.75,0.5,1.75,0.5,1.8125,0.4688,1.8125,0.4688,1.8125,0.4688,1.75,0.5,1.75,0.0312,1.6875,0.0312,1.75,0.0,1.75,0.0,1.75,0.0,1.6875,0.0312,1.6875,0.0625,1.6875,0.0625,1.75,0.0312,1.75,0.0312,1.75,0.0312,1.6875,0.0625,1.6875,0.0938,1.6875,0.0938,1.75,0.0625,1.75,0.0625,1.75,0.0625,1.6875,0.0938,1.6875,0.125,1.6875,0.125,1.75,0.0938,1.75,0.0938,1.75,0.0938,1.6875,0.125,1.6875,0.1562,1.6875,0.1562,1.75,0.125,1.75,0.125,1.75,0.125,1.6875,0.1562,1.6875,0.1875,1.6875,0.1875,1.75,0.1562,1.75,0.1562,1.75,0.1562,1.6875,0.1875,1.6875,0.2187,1.6875,0.2187,1.75,0.1875,1.75,0.1875,1.75,0.1875,1.6875,0.2187,1.6875,0.25,1.6875,0.25,1.75,0.2187,1.75,0.2187,1.75,0.2187,1.6875,0.25,1.6875,0.2812,1.6875,0.2812,1.75,0.25,1.75,0.25,1.75,0.25,1.6875,0.2812,1.6875,0.3125,1.6875,0.3125,1.75,0.2812,1.75,0.2812,1.75,0.2812,1.6875,0.3125,1.6875,0.3437,1.6875,0.3437,1.75,0.3125,1.75,0.3125,1.75,0.3125,1.6875,0.3437,1.6875,0.375,1.6875,0.375,1.75,0.3437,1.75,0.3437,1.75,0.3437,1.6875,0.375,1.6875,0.4062,1.6875,0.4062,1.75,0.375,1.75,0.375,1.75,0.375,1.6875,0.4062,1.6875,0.4375,1.6875,0.4375,1.75,0.4062,1.75,0.4062,1.75,0.4062,1.6875,0.4375,1.6875,0.4688,1.6875,0.4688,1.75,0.4375,1.75,0.4375,1.75,0.4375,1.6875,0.4688,1.6875,0.5,1.6875,0.5,1.75,0.4688,1.75,0.4688,1.75,0.4688,1.6875,0.5,1.6875,0.0312,1.625,0.0312,1.6875,0.0,1.6875,0.0,1.6875,0.0,1.625,0.0312,1.625,0.0625,1.625,0.0625,1.6875,0.0312,1.6875,0.0312,1.6875,0.0312,1.625,0.0625,1.625,0.0938,1.625,0.0938,1.6875,0.0625,1.6875,0.0625,1.6875,0.0625,1.625,0.0938,1.625,0.125,1.625,0.125,1.6875,0.0938,1.6875,0.0938,1.6875,0.0938,1.625,0.125,1.625,0.1562,1.625,0.1562,1.6875,0.125,1.6875,0.125,1.6875,0.125,1.625,0.1562,1.625,0.1875,1.625,0.1875,1.6875,0.1562,1.6875,0.1562,1.6875,0.1562,1.625,0.1875,1.625,0.2187,1.625,0.2187,1.6875,0.1875,1.6875,0.1875,1.6875,0.1875,1.625,0.2187,1.625,0.25,1.625,0.25,1.6875,0.2187,1.6875,0.2187,1.6875,0.2187,1.625,0.25,1.625,0.2812,1.625,0.2812,1.6875,0.25,1.6875,0.25,1.6875,0.25,1.625,0.2812,1.625,0.3125,1.625,0.3125,1.6875,0.2812,1.6875,0.2812,1.6875,0.2812,1.625,0.3125,1.625,0.3437,1.625,0.3437,1.6875,0.3125,1.6875,0.3125,1.6875,0.3125,1.625,0.3437,1.625,0.375,1.625,0.375,1.6875,0.3437,1.6875,0.3437,1.6875,0.3437,1.625,0.375,1.625,0.4062,1.625,0.4062,1.6875,0.375,1.6875,0.375,1.6875,0.375,1.625,0.4062,1.625,0.4375,1.625,0.4375,1.6875,0.4062,1.6875,0.4062,1.6875,0.4062,1.625,0.4375,1.625,0.4688,1.625,0.4688,1.6875,0.4375,1.6875,0.4375,1.6875,0.4375,1.625,0.4688,1.625,0.5,1.625,0.5,1.6875,0.4688,1.6875,0.4688,1.6875,0.4688,1.625,0.5,1.625,0.0312,1.5625,0.0312,1.625,0.0,1.625,0.0,1.625,0.0,1.5625,0.0312,1.5625,0.0625,1.5625,0.0625,1.625,0.0312,1.625,0.0312,1.625,0.0312,1.5625,0.0625,1.5625,0.0938,1.5625,0.0938,1.625,0.0625,1.625,0.0625,1.625,0.0625,1.5625,0.0938,1.5625,0.125,1.5625,0.125,1.625,0.0938,1.625,0.0938,1.625,0.0938,1.5625,0.125,1.5625,0.1562,1.5625,0.1562,1.625,0.125,1.625,0.125,1.625,0.125,1.5625,0.1562,1.5625,0.1875,1.5625,0.1875,1.625,0.1562,1.625,0.1562,1.625,0.1562,1.5625,0.1875,1.5625,0.2187,1.5625,0.2187,1.625,0.1875,1.625,0.1875,1.625,0.1875,1.5625,0.2187,1.5625,0.25,1.5625,0.25,1.625,0.2187,1.625,0.2187,1.625,0.2187,1.5625,0.25,1.5625,0.2812,1.5625,0.2812,1.625,0.25,1.625,0.25,1.625,0.25,1.5625,0.2812,1.5625,0.3125,1.5625,0.3125,1.625,0.2812,1.625,0.2812,1.625,0.2812,1.5625,0.3125,1.5625,0.3437,1.5625,0.3437,1.625,0.3125,1.625,0.3125,1.625,0.3125,1.5625,0.3437,1.5625,0.375,1.5625,0.375,1.625,0.3437,1.625,0.3437,1.625,0.3437,1.5625,0.375,1.5625,0.4062,1.5625,0.4062,1.625,0.375,1.625,0.375,1.625,0.375,1.5625,0.4062,1.5625,0.4375,1.5625,0.4375,1.625,0.4062,1.625,0.4062,1.625,0.4062,1.5625,0.4375,1.5625,0.4688,1.5625,0.4688,1.625,0.4375,1.625,0.4375,1.625,0.4375,1.5625,0.4688,1.5625,0.5,1.5625,0.5,1.625,0.4688,1.625,0.4688,1.625,0.4688,1.5625,0.5,1.5625,0.0312,1.5,0.0312,1.5625,0.0,1.5625,0.0,1.5625,0.0,1.5,0.0312,1.5,0.0625,1.5,0.0625,1.5625,0.0312,1.5625,0.0312,1.5625,0.0312,1.5,0.0625,1.5,0.0938,1.5,0.0938,1.5625,0.0625,1.5625,0.0625,1.5625,0.0625,1.5,0.0938,1.5,0.125,1.5,0.125,1.5625,0.0938,1.5625,0.0938,1.5625,0.0938,1.5,0.125,1.5,0.1562,1.5,0.1562,1.5625,0.125,1.5625,0.125,1.5625,0.125,1.5,0.1562,1.5,0.1875,1.5,0.1875,1.5625,0.1562,1.5625,0.1562,1.5625,0.1562,1.5,0.1875,1.5,0.2187,1.5,0.2187,1.5625,0.1875,1.5625,0.1875,1.5625,0.1875,1.5,0.2187,1.5,0.25,1.5,0.25,1.5625,0.2187,1.5625,0.2187,1.5625,0.2187,1.5,0.25,1.5,0.2812,1.5,0.2812,1.5625,0.25,1.5625,0.25,1.5625,0.25,1.5,0.2812,1.5,0.3125,1.5,0.3125,1.5625,0.2812,1.5625,0.2812,1.5625,0.2812,1.5,0.3125,1.5,0.3437,1.5,0.3437,1.5625,0.3125,1.5625,0.3125,1.5625,0.3125,1.5,0.3437,1.5,0.375,1.5,0.375,1.5625,0.3437,1.5625,0.3437,1.5625,0.3437,1.5,0.375,1.5,0.4062,1.5,0.4062,1.5625,0.375,1.5625,0.375,1.5625,0.375,1.5,0.4062,1.5,0.4375,1.5,0.4375,1.5625,0.4062,1.5625,0.4062,1.5625,0.4062,1.5,0.4375,1.5,0.4688,1.5,0.4688,1.5625,0.4375,1.5625,0.4375,1.5625,0.4375,1.5,0.4688,1.5,0.5,1.5,0.5,1.5625,0.4688,1.5625,0.4688,1.5625,0.4688,1.5,0.5,1.5,0.0312,1.4375,0.0312,1.5,0.0,1.5,0.0,1.5,0.0,1.4375,0.0312,1.4375,0.0625,1.4375,0.0625,1.5,0.0312,1.5,0.0312,1.5,0.0312,1.4375,0.0625,1.4375,0.0938,1.4375,0.0938,1.5,0.0625,1.5,0.0625,1.5,0.0625,1.4375,0.0938,1.4375,0.125,1.4375,0.125,1.5,0.0938,1.5,0.0938,1.5,0.0938,1.4375,0.125,1.4375,0.1562,1.4375,0.1562,1.5,0.125,1.5,0.125,1.5,0.125,1.4375,0.1562,1.4375,0.1875,1.4375,0.1875,1.5,0.1562,1.5,0.1562,1.5,0.1562,1.4375,0.1875,1.4375,0.2187,1.4375,0.2187,1.5,0.1875,1.5,0.1875,1.5,0.1875,1.4375,0.2187,1.4375,0.25,1.4375,0.25,1.5,0.2187,1.5,0.2187,1.5,0.2187,1.4375,0.25,1.4375,0.2812,1.4375,0.2812,1.5,0.25,1.5,0.25,1.5,0.25,1.4375,0.2812,1.4375,0.3125,1.4375,0.3125,1.5,0.2812,1.5,0.2812,1.5,0.2812,1.4375,0.3125,1.4375,0.3437,1.4375,0.3437,1.5,0.3125,1.5,0.3125,1.5,0.3125,1.4375,0.3437,1.4375,0.375,1.4375,0.375,1.5,0.3437,1.5,0.3437,1.5,0.3437,1.4375,0.375,1.4375,0.4062,1.4375,0.4062,1.5,0.375,1.5,0.375,1.5,0.375,1.4375,0.4062,1.4375,0.4375,1.4375,0.4375,1.5,0.4062,1.5,0.4062,1.5,0.4062,1.4375,0.4375,1.4375,0.4688,1.4375,0.4688,1.5,0.4375,1.5,0.4375,1.5,0.4375,1.4375,0.4688,1.4375,0.5,1.4375,0.5,1.5,0.4688,1.5,0.4688,1.5,0.4688,1.4375,0.5,1.4375,0.0312,1.375,0.0312,1.4375,0.0,1.4375,0.0,1.4375,0.0,1.375,0.0312,1.375,0.0625,1.375,0.0625,1.4375,0.0312,1.4375,0.0312,1.4375,0.0312,1.375,0.0625,1.375,0.0938,1.375,0.0938,1.4375,0.0625,1.4375,0.0625,1.4375,0.0625,1.375,0.0938,1.375,0.125,1.375,0.125,1.4375,0.0938,1.4375,0.0938,1.4375,0.0938,1.375,0.125,1.375,0.1562,1.375,0.1562,1.4375,0.125,1.4375,0.125,1.4375,0.125,1.375,0.1562,1.375,0.1875,1.375,0.1875,1.4375,0.1562,1.4375,0.1562,1.4375,0.1562,1.375,0.1875,1.375,0.2187,1.375,0.2187,1.4375,0.1875,1.4375,0.1875,1.4375,0.1875,1.375,0.2187,1.375,0.25,1.375,0.25,1.4375,0.2187,1.4375,0.2187,1.4375,0.2187,1.375,0.25,1.375,0.2812,1.375,0.2812,1.4375,0.25,1.4375,0.25,1.4375,0.25,1.375,0.2812,1.375,0.3125,1.375,0.3125,1.4375,0.2812,1.4375,0.2812,1.4375,0.2812,1.375,0.3125,1.375,0.3437,1.375,0.3437,1.4375,0.3125,1.4375,0.3125,1.4375,0.3125,1.375,0.3437,1.375,0.375,1.375,0.375,1.4375,0.3437,1.4375,0.3437,1.4375,0.3437,1.375,0.375,1.375,0.4062,1.375,0.4062,1.4375,0.375,1.4375,0.375,1.4375,0.375,1.375,0.4062,1.375,0.4375,1.375,0.4375,1.4375,0.4062,1.4375,0.4062,1.4375,0.4062,1.375,0.4375,1.375,0.4688,1.375,0.4688,1.4375,0.4375,1.4375,0.4375,1.4375,0.4375,1.375,0.4688,1.375,0.5,1.375,0.5,1.4375,0.4688,1.4375,0.4688,1.4375,0.4688,1.375,0.5,1.375,0.0312,1.3125,0.0312,1.375,0.0,1.375,0.0,1.375,0.0,1.3125,0.0312,1.3125,0.0625,1.3125,0.0625,1.375,0.0312,1.375,0.0312,1.375,0.0312,1.3125,0.0625,1.3125,0.0938,1.3125,0.0938,1.375,0.0625,1.375,0.0625,1.375,0.0625,1.3125,0.0938,1.3125,0.125,1.3125,0.125,1.375,0.0938,1.375,0.0938,1.375,0.0938,1.3125,0.125,1.3125,0.1562,1.3125,0.1562,1.375,0.125,1.375,0.125,1.375,0.125,1.3125,0.1562,1.3125,0.1875,1.3125,0.1875,1.375,0.1562,1.375,0.1562,1.375,0.1562,1.3125,0.1875,1.3125,0.2187,1.3125,0.2187,1.375,0.1875,1.375,0.1875,1.375,0.1875,1.3125,0.2187,1.3125,0.25,1.3125,0.25,1.375,0.2187,1.375,0.2187,1.375,0.2187,1.3125,0.25,1.3125,0.2812,1.3125,0.2812,1.375,0.25,1.375,0.25,1.375,0.25,1.3125,0.2812,1.3125,0.3125,1.3125,0.3125,1.375,0.2812,1.375,0.2812,1.375,0.2812,1.3125,0.3125,1.3125,0.3437,1.3125,0.3437,1.375,0.3125,1.375,0.3125,1.375,0.3125,1.3125,0.3437,1.3125,0.375,1.3125,0.375,1.375,0.3437,1.375,0.3437,1.375,0.3437,1.3125,0.375,1.3125,0.4062,1.3125,0.4062,1.375,0.375,1.375,0.375,1.375,0.375,1.3125,0.4062,1.3125,0.4375,1.3125,0.4375,1.375,0.4062,1.375,0.4062,1.375,0.4062,1.3125,0.4375,1.3125,0.4688,1.3125,0.4688,1.375,0.4375,1.375,0.4375,1.375,0.4375,1.3125,0.4688,1.3125,0.5,1.3125,0.5,1.375,0.4688,1.375,0.4688,1.375,0.4688,1.3125,0.5,1.3125,0.0312,1.25,0.0312,1.3125,0.0,1.3125,0.0,1.3125,0.0,1.25,0.0312,1.25,0.0625,1.25,0.0625,1.3125,0.0312,1.3125,0.0312,1.3125,0.0312,1.25,0.0625,1.25,0.0938,1.25,0.0938,1.3125,0.0625,1.3125,0.0625,1.3125,0.0625,1.25,0.0938,1.25,0.125,1.25,0.125,1.3125,0.0938,1.3125,0.0938,1.3125,0.0938,1.25,0.125,1.25,0.1562,1.25,0.1562,1.3125,0.125,1.3125,0.125,1.3125,0.125,1.25,0.1562,1.25,0.1875,1.25,0.1875,1.3125,0.1562,1.3125,0.1562,1.3125,0.1562,1.25,0.1875,1.25,0.2187,1.25,0.2187,1.3125,0.1875,1.3125,0.1875,1.3125,0.1875,1.25,0.2187,1.25,0.25,1.25,0.25,1.3125,0.2187,1.3125,0.2187,1.3125,0.2187,1.25,0.25,1.25,0.2812,1.25,0.2812,1.3125,0.25,1.3125,0.25,1.3125,0.25,1.25,0.2812,1.25,0.3125,1.25,0.3125,1.3125,0.2812,1.3125,0.2812,1.3125,0.2812,1.25,0.3125,1.25,0.3437,1.25,0.3437,1.3125,0.3125,1.3125,0.3125,1.3125,0.3125,1.25,0.3437,1.25,0.375,1.25,0.375,1.3125,0.3437,1.3125,0.3437,1.3125,0.3437,1.25,0.375,1.25,0.4062,1.25,0.4062,1.3125,0.375,1.3125,0.375,1.3125,0.375,1.25,0.4062,1.25,0.4375,1.25,0.4375,1.3125,0.4062,1.3125,0.4062,1.3125,0.4062,1.25,0.4375,1.25,0.4688,1.25,0.4688,1.3125,0.4375,1.3125,0.4375,1.3125,0.4375,1.25,0.4688,1.25,0.5,1.25,0.5,1.3125,0.4688,1.3125,0.4688,1.3125,0.4688,1.25,0.5,1.25,0.0312,1.1875,0.0312,1.25,0.0,1.25,0.0,1.25,0.0,1.1875,0.0312,1.1875,0.0625,1.1875,0.0625,1.25,0.0312,1.25,0.0312,1.25,0.0312,1.1875,0.0625,1.1875,0.0938,1.1875,0.0938,1.25,0.0625,1.25,0.0625,1.25,0.0625,1.1875,0.0938,1.1875,0.125,1.1875,0.125,1.25,0.0938,1.25,0.0938,1.25,0.0938,1.1875,0.125,1.1875,0.1562,1.1875,0.1562,1.25,0.125,1.25,0.125,1.25,0.125,1.1875,0.1562,1.1875,0.1875,1.1875,0.1875,1.25,0.1562,1.25,0.1562,1.25,0.1562,1.1875,0.1875,1.1875,0.2187,1.1875,0.2187,1.25,0.1875,1.25,0.1875,1.25,0.1875,1.1875,0.2187,1.1875,0.25,1.1875,0.25,1.25,0.2187,1.25,0.2187,1.25,0.2187,1.1875,0.25,1.1875,0.2812,1.1875,0.2812,1.25,0.25,1.25,0.25,1.25,0.25,1.1875,0.2812,1.1875,0.3125,1.1875,0.3125,1.25,0.2812,1.25,0.2812,1.25,0.2812,1.1875,0.3125,1.1875,0.3437,1.1875,0.3437,1.25,0.3125,1.25,0.3125,1.25,0.3125,1.1875,0.3437,1.1875,0.375,1.1875,0.375,1.25,0.3437,1.25,0.3437,1.25,0.3437,1.1875,0.375,1.1875,0.4062,1.1875,0.4062,1.25,0.375,1.25,0.375,1.25,0.375,1.1875,0.4062,1.1875,0.4375,1.1875,0.4375,1.25,0.4062,1.25,0.4062,1.25,0.4062,1.1875,0.4375,1.1875,0.4688,1.1875,0.4688,1.25,0.4375,1.25,0.4375,1.25,0.4375,1.1875,0.4688,1.1875,0.5,1.1875,0.5,1.25,0.4688,1.25,0.4688,1.25,0.4688,1.1875,0.5,1.1875,0.0312,1.125,0.0312,1.1875,0.0,1.1875,0.0,1.1875,0.0,1.125,0.0312,1.125,0.0625,1.125,0.0625,1.1875,0.0312,1.1875,0.0312,1.1875,0.0312,1.125,0.0625,1.125,0.0938,1.125,0.0938,1.1875,0.0625,1.1875,0.0625,1.1875,0.0625,1.125,0.0938,1.125,0.125,1.125,0.125,1.1875,0.0938,1.1875,0.0938,1.1875,0.0938,1.125,0.125,1.125,0.1562,1.125,0.1562,1.1875,0.125,1.1875,0.125,1.1875,0.125,1.125,0.1562,1.125,0.1875,1.125,0.1875,1.1875,0.1562,1.1875,0.1562,1.1875,0.1562,1.125,0.1875,1.125,0.2187,1.125,0.2187,1.1875,0.1875,1.1875,0.1875,1.1875,0.1875,1.125,0.2187,1.125,0.25,1.125,0.25,1.1875,0.2187,1.1875,0.2187,1.1875,0.2187,1.125,0.25,1.125,0.2812,1.125,0.2812,1.1875,0.25,1.1875,0.25,1.1875,0.25,1.125,0.2812,1.125,0.3125,1.125,0.3125,1.1875,0.2812,1.1875,0.2812,1.1875,0.2812,1.125,0.3125,1.125,0.3437,1.125,0.3437,1.1875,0.3125,1.1875,0.3125,1.1875,0.3125,1.125,0.3437,1.125,0.375,1.125,0.375,1.1875,0.3437,1.1875,0.3437,1.1875,0.3437,1.125,0.375,1.125,0.4062,1.125,0.4062,1.1875,0.375,1.1875,0.375,1.1875,0.375,1.125,0.4062,1.125,0.4375,1.125,0.4375,1.1875,0.4062,1.1875,0.4062,1.1875,0.4062,1.125,0.4375,1.125,0.4688,1.125,0.4688,1.1875,0.4375,1.1875,0.4375,1.1875,0.4375,1.125,0.4688,1.125,0.5,1.125,0.5,1.1875,0.4688,1.1875,0.4688,1.1875,0.4688,1.125,0.5,1.125,0.0312,1.0625,0.0312,1.125,0.0,1.125,0.0,1.125,0.0,1.0625,0.0312,1.0625,0.0625,1.0625,0.0625,1.125,0.0312,1.125,0.0312,1.125,0.0312,1.0625,0.0625,1.0625,0.0938,1.0625,0.0938,1.125,0.0625,1.125,0.0625,1.125,0.0625,1.0625,0.0938,1.0625,0.125,1.0625,0.125,1.125,0.0938,1.125,0.0938,1.125,0.0938,1.0625,0.125,1.0625,0.1562,1.0625,0.1562,1.125,0.125,1.125,0.125,1.125,0.125,1.0625,0.1562,1.0625,0.1875,1.0625,0.1875,1.125,0.1562,1.125,0.1562,1.125,0.1562,1.0625,0.1875,1.0625,0.2187,1.0625,0.2187,1.125,0.1875,1.125,0.1875,1.125,0.1875,1.0625,0.2187,1.0625,0.25,1.0625,0.25,1.125,0.2187,1.125,0.2187,1.125,0.2187,1.0625,0.25,1.0625,0.2812,1.0625,0.2812,1.125,0.25,1.125,0.25,1.125,0.25,1.0625,0.2812,1.0625,0.3125,1.0625,0.3125,1.125,0.2812,1.125,0.2812,1.125,0.2812,1.0625,0.3125,1.0625,0.3437,1.0625,0.3437,1.125,0.3125,1.125,0.3125,1.125,0.3125,1.0625,0.3437,1.0625,0.375,1.0625,0.375,1.125,0.3437,1.125,0.3437,1.125,0.3437,1.0625,0.375,1.0625,0.4062,1.0625,0.4062,1.125,0.375,1.125,0.375,1.125,0.375,1.0625,0.4062,1.0625,0.4375,1.0625,0.4375,1.125,0.4062,1.125,0.4062,1.125,0.4062,1.0625,0.4375,1.0625,0.4688,1.0625,0.4688,1.125,0.4375,1.125,0.4375,1.125,0.4375,1.0625,0.4688,1.0625,0.5,1.0625,0.5,1.125,0.4688,1.125,0.4688,1.125,0.4688,1.0625,0.5,1.0625,0.0,1.0,0.0312,1.0625,0.0,1.0625,0.0312,1.0,0.0625,1.0625,0.0312,1.0625,0.0625,1.0,0.0938,1.0625,0.0625,1.0625,0.0938,1.0,0.125,1.0625,0.0938,1.0625,0.125,1.0,0.1562,1.0625,0.125,1.0625,0.1562,1.0,0.1875,1.0625,0.1562,1.0625,0.1875,1.0,0.2187,1.0625,0.1875,1.0625,0.2187,1.0,0.25,1.0625,0.2187,1.0625,0.25,1.0,0.2812,1.0625,0.25,1.0625,0.2812,1.0,0.3125,1.0625,0.2812,1.0625,0.3125,1.0,0.3437,1.0625,0.3125,1.0625,0.3437,1.0,0.375,1.0625,0.3437,1.0625,0.375,1.0,0.4062,1.0625,0.375,1.0625,0.4062,1.0,0.4375,1.0625,0.4062,1.0625,0.4375,1.0,0.4688,1.0625,0.4375,1.0625,0.4688,1.0,0.5,1.0625,0.4688,1.0625],"uvs2":null,"colors":null,"hasVertexAlpha":false,"matricesIndices":null,"matricesWeights":null,"matricesIndicesExtra":null,"matricesWeightsExtra":null,"indices":[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],"receiveShadows":true,"infiniteDistance":false,"billboardMode":0,"visibility":1.0,"subMeshes":[{"materialIndex":0,"verticesStart":0,"verticesCount":1440,"indexStart":0,"indexCount":1440}],"instances":null,"skeletonId":-1,"numBoneInfluencers":4,"applyFog":true,"lodMeshIds":null,"lodDistances":null,"lodCoverages":null,"rotation":null,"scaling":[1.0,1.0,1.0],"rotationQuaternion":[0.0,0.0,0.0,1.0],"actions":null,"checkCollisions":false,"pickable":false,"showBoundingBox":false,"showSubMeshesBoundingBox":false,"alphaIndex":1000,"physicsImpostor":0,"physicsMass":0.0,"physicsFriction":0.0,"physicsRestitution":0.0,"name":"PhysicalMeshBackfaceCullingOff","id":"45199754-0176-4e65-9db8-9fed0b6b2cb6","parentId":null,"position":[3.0,0.0,3.5634],"animations":[],"autoAnimate":true,"autoAnimateFrom":0,"autoAnimateTo":100,"autoAnimateLoop":true,"metadata":null},{"materialId":"1818f3d2-86fa-404a-acb4-ea9efd9704dd","isEnabled":true,"isVisible":true,"positions":[0.0,1.0,0.0,0.0,0.9808,0.1951,-0.0381,0.9808,0.1913,0.0,1.0,0.0,-0.0381,0.9808,0.1913,-0.0747,0.9808,0.1802,0.0,1.0,0.0,-0.0747,0.9808,0.1802,-0.1084,0.9808,0.1622,0.0,1.0,0.0,-0.1084,0.9808,0.1622,-0.1379,0.9808,0.1379,0.0,1.0,0.0,-0.1379,0.9808,0.1379,-0.1622,0.9808,0.1084,0.0,1.0,0.0,-0.1622,0.9808,0.1084,-0.1802,0.9808,0.0747,0.0,1.0,0.0,-0.1802,0.9808,0.0747,-0.1913,0.9808,0.0381,0.0,1.0,0.0,-0.1913,0.9808,0.0381,-0.1951,0.9808,0.0,0.0,1.0,0.0,-0.1951,0.9808,0.0,-0.1913,0.9808,-0.0381,0.0,1.0,0.0,-0.1913,0.9808,-0.0381,-0.1802,0.9808,-0.0747,0.0,1.0,0.0,-0.1802,0.9808,-0.0747,-0.1622,0.9808,-0.1084,0.0,1.0,0.0,-0.1622,0.9808,-0.1084,-0.1379,0.9808,-0.1379,0.0,1.0,0.0,-0.1379,0.9808,-0.1379,-0.1084,0.9808,-0.1622,0.0,1.0,0.0,-0.1084,0.9808,-0.1622,-0.0747,0.9808,-0.1802,0.0,1.0,0.0,-0.0747,0.9808,-0.1802,-0.0381,0.9808,-0.1913,0.0,1.0,0.0,-0.0381,0.9808,-0.1913,0.0,0.9808,-0.1951,-0.0747,0.9239,0.3753,-0.0381,0.9808,0.1913,0.0,0.9808,0.1951,0.0,0.9808,0.1951,0.0,0.9239,0.3827,-0.0747,0.9239,0.3753,-0.1464,0.9239,0.3536,-0.0747,0.9808,0.1802,-0.0381,0.9808,0.1913,-0.0381,0.9808,0.1913,-0.0747,0.9239,0.3753,-0.1464,0.9239,0.3536,-0.2126,0.9239,0.3182,-0.1084,0.9808,0.1622,-0.0747,0.9808,0.1802,-0.0747,0.9808,0.1802,-0.1464,0.9239,0.3536,-0.2126,0.9239,0.3182,-0.2706,0.9239,0.2706,-0.1379,0.9808,0.1379,-0.1084,0.9808,0.1622,-0.1084,0.9808,0.1622,-0.2126,0.9239,0.3182,-0.2706,0.9239,0.2706,-0.3182,0.9239,0.2126,-0.1622,0.9808,0.1084,-0.1379,0.9808,0.1379,-0.1379,0.9808,0.1379,-0.2706,0.9239,0.2706,-0.3182,0.9239,0.2126,-0.3536,0.9239,0.1464,-0.1802,0.9808,0.0747,-0.1622,0.9808,0.1084,-0.1622,0.9808,0.1084,-0.3182,0.9239,0.2126,-0.3536,0.9239,0.1464,-0.3753,0.9239,0.0747,-0.1913,0.9808,0.0381,-0.1802,0.9808,0.0747,-0.1802,0.9808,0.0747,-0.3536,0.9239,0.1464,-0.3753,0.9239,0.0747,-0.3827,0.9239,0.0,-0.1951,0.9808,0.0,-0.1913,0.9808,0.0381,-0.1913,0.9808,0.0381,-0.3753,0.9239,0.0747,-0.3827,0.9239,0.0,-0.3753,0.9239,-0.0747,-0.1913,0.9808,-0.0381,-0.1951,0.9808,0.0,-0.1951,0.9808,0.0,-0.3827,0.9239,0.0,-0.3753,0.9239,-0.0747,-0.3536,0.9239,-0.1464,-0.1802,0.9808,-0.0747,-0.1913,0.9808,-0.0381,-0.1913,0.9808,-0.0381,-0.3753,0.9239,-0.0747,-0.3536,0.9239,-0.1464,-0.3182,0.9239,-0.2126,-0.1622,0.9808,-0.1084,-0.1802,0.9808,-0.0747,-0.1802,0.9808,-0.0747,-0.3536,0.9239,-0.1464,-0.3182,0.9239,-0.2126,-0.2706,0.9239,-0.2706,-0.1379,0.9808,-0.1379,-0.1622,0.9808,-0.1084,-0.1622,0.9808,-0.1084,-0.3182,0.9239,-0.2126,-0.2706,0.9239,-0.2706,-0.2126,0.9239,-0.3182,-0.1084,0.9808,-0.1622,-0.1379,0.9808,-0.1379,-0.1379,0.9808,-0.1379,-0.2706,0.9239,-0.2706,-0.2126,0.9239,-0.3182,-0.1464,0.9239,-0.3536,-0.0747,0.9808,-0.1802,-0.1084,0.9808,-0.1622,-0.1084,0.9808,-0.1622,-0.2126,0.9239,-0.3182,-0.1464,0.9239,-0.3536,-0.0747,0.9239,-0.3753,-0.0381,0.9808,-0.1913,-0.0747,0.9808,-0.1802,-0.0747,0.9808,-0.1802,-0.1464,0.9239,-0.3536,-0.0747,0.9239,-0.3753,0.0,0.9239,-0.3827,0.0,0.9808,-0.1951,-0.0381,0.9808,-0.1913,-0.0381,0.9808,-0.1913,-0.0747,0.9239,-0.3753,0.0,0.9239,-0.3827,-0.1084,0.8315,0.5449,-0.0747,0.9239,0.3753,0.0,0.9239,0.3827,0.0,0.9239,0.3827,0.0,0.8315,0.5556,-0.1084,0.8315,0.5449,-0.2126,0.8315,0.5133,-0.1464,0.9239,0.3536,-0.0747,0.9239,0.3753,-0.0747,0.9239,0.3753,-0.1084,0.8315,0.5449,-0.2126,0.8315,0.5133,-0.3087,0.8315,0.4619,-0.2126,0.9239,0.3182,-0.1464,0.9239,0.3536,-0.1464,0.9239,0.3536,-0.2126,0.8315,0.5133,-0.3087,0.8315,0.4619,-0.3928,0.8315,0.3928,-0.2706,0.9239,0.2706,-0.2126,0.9239,0.3182,-0.2126,0.9239,0.3182,-0.3087,0.8315,0.4619,-0.3928,0.8315,0.3928,-0.4619,0.8315,0.3087,-0.3182,0.9239,0.2126,-0.2706,0.9239,0.2706,-0.2706,0.9239,0.2706,-0.3928,0.8315,0.3928,-0.4619,0.8315,0.3087,-0.5133,0.8315,0.2126,-0.3536,0.9239,0.1464,-0.3182,0.9239,0.2126,-0.3182,0.9239,0.2126,-0.4619,0.8315,0.3087,-0.5133,0.8315,0.2126,-0.5449,0.8315,0.1084,-0.3753,0.9239,0.0747,-0.3536,0.9239,0.1464,-0.3536,0.9239,0.1464,-0.5133,0.8315,0.2126,-0.5449,0.8315,0.1084,-0.5556,0.8315,0.0,-0.3827,0.9239,0.0,-0.3753,0.9239,0.0747,-0.3753,0.9239,0.0747,-0.5449,0.8315,0.1084,-0.5556,0.8315,0.0,-0.5449,0.8315,-0.1084,-0.3753,0.9239,-0.0747,-0.3827,0.9239,0.0,-0.3827,0.9239,0.0,-0.5556,0.8315,0.0,-0.5449,0.8315,-0.1084,-0.5133,0.8315,-0.2126,-0.3536,0.9239,-0.1464,-0.3753,0.9239,-0.0747,-0.3753,0.9239,-0.0747,-0.5449,0.8315,-0.1084,-0.5133,0.8315,-0.2126,-0.4619,0.8315,-0.3087,-0.3182,0.9239,-0.2126,-0.3536,0.9239,-0.1464,-0.3536,0.9239,-0.1464,-0.5133,0.8315,-0.2126,-0.4619,0.8315,-0.3087,-0.3928,0.8315,-0.3928,-0.2706,0.9239,-0.2706,-0.3182,0.9239,-0.2126,-0.3182,0.9239,-0.2126,-0.4619,0.8315,-0.3087,-0.3928,0.8315,-0.3928,-0.3087,0.8315,-0.4619,-0.2126,0.9239,-0.3182,-0.2706,0.9239,-0.2706,-0.2706,0.9239,-0.2706,-0.3928,0.8315,-0.3928,-0.3087,0.8315,-0.4619,-0.2126,0.8315,-0.5133,-0.1464,0.9239,-0.3536,-0.2126,0.9239,-0.3182,-0.2126,0.9239,-0.3182,-0.3087,0.8315,-0.4619,-0.2126,0.8315,-0.5133,-0.1084,0.8315,-0.5449,-0.0747,0.9239,-0.3753,-0.1464,0.9239,-0.3536,-0.1464,0.9239,-0.3536,-0.2126,0.8315,-0.5133,-0.1084,0.8315,-0.5449,0.0,0.8315,-0.5556,0.0,0.9239,-0.3827,-0.0747,0.9239,-0.3753,-0.0747,0.9239,-0.3753,-0.1084,0.8315,-0.5449,0.0,0.8315,-0.5556,-0.1379,0.7071,0.6935,-0.1084,0.8315,0.5449,0.0,0.8315,0.5556,0.0,0.8315,0.5556,0.0,0.7071,0.7071,-0.1379,0.7071,0.6935,-0.2706,0.7071,0.6533,-0.2126,0.8315,0.5133,-0.1084,0.8315,0.5449,-0.1084,0.8315,0.5449,-0.1379,0.7071,0.6935,-0.2706,0.7071,0.6533,-0.3928,0.7071,0.5879,-0.3087,0.8315,0.4619,-0.2126,0.8315,0.5133,-0.2126,0.8315,0.5133,-0.2706,0.7071,0.6533,-0.3928,0.7071,0.5879,-0.5,0.7071,0.5,-0.3928,0.8315,0.3928,-0.3087,0.8315,0.4619,-0.3087,0.8315,0.4619,-0.3928,0.7071,0.5879,-0.5,0.7071,0.5,-0.5879,0.7071,0.3928,-0.4619,0.8315,0.3087,-0.3928,0.8315,0.3928,-0.3928,0.8315,0.3928,-0.5,0.7071,0.5,-0.5879,0.7071,0.3928,-0.6533,0.7071,0.2706,-0.5133,0.8315,0.2126,-0.4619,0.8315,0.3087,-0.4619,0.8315,0.3087,-0.5879,0.7071,0.3928,-0.6533,0.7071,0.2706,-0.6935,0.7071,0.1379,-0.5449,0.8315,0.1084,-0.5133,0.8315,0.2126,-0.5133,0.8315,0.2126,-0.6533,0.7071,0.2706,-0.6935,0.7071,0.1379,-0.7071,0.7071,0.0,-0.5556,0.8315,0.0,-0.5449,0.8315,0.1084,-0.5449,0.8315,0.1084,-0.6935,0.7071,0.1379,-0.7071,0.7071,0.0,-0.6935,0.7071,-0.1379,-0.5449,0.8315,-0.1084,-0.5556,0.8315,0.0,-0.5556,0.8315,0.0,-0.7071,0.7071,0.0,-0.6935,0.7071,-0.1379,-0.6533,0.7071,-0.2706,-0.5133,0.8315,-0.2126,-0.5449,0.8315,-0.1084,-0.5449,0.8315,-0.1084,-0.6935,0.7071,-0.1379,-0.6533,0.7071,-0.2706,-0.5879,0.7071,-0.3928,-0.4619,0.8315,-0.3087,-0.5133,0.8315,-0.2126,-0.5133,0.8315,-0.2126,-0.6533,0.7071,-0.2706,-0.5879,0.7071,-0.3928,-0.5,0.7071,-0.5,-0.3928,0.8315,-0.3928,-0.4619,0.8315,-0.3087,-0.4619,0.8315,-0.3087,-0.5879,0.7071,-0.3928,-0.5,0.7071,-0.5,-0.3928,0.7071,-0.5879,-0.3087,0.8315,-0.4619,-0.3928,0.8315,-0.3928,-0.3928,0.8315,-0.3928,-0.5,0.7071,-0.5,-0.3928,0.7071,-0.5879,-0.2706,0.7071,-0.6533,-0.2126,0.8315,-0.5133,-0.3087,0.8315,-0.4619,-0.3087,0.8315,-0.4619,-0.3928,0.7071,-0.5879,-0.2706,0.7071,-0.6533,-0.1379,0.7071,-0.6935,-0.1084,0.8315,-0.5449,-0.2126,0.8315,-0.5133,-0.2126,0.8315,-0.5133,-0.2706,0.7071,-0.6533,-0.1379,0.7071,-0.6935,0.0,0.7071,-0.7071,0.0,0.8315,-0.5556,-0.1084,0.8315,-0.5449,-0.1084,0.8315,-0.5449,-0.1379,0.7071,-0.6935,0.0,0.7071,-0.7071,-0.1622,0.5556,0.8155,-0.1379,0.7071,0.6935,0.0,0.7071,0.7071,0.0,0.7071,0.7071,0.0,0.5556,0.8315,-0.1622,0.5556,0.8155,-0.3182,0.5556,0.7682,-0.2706,0.7071,0.6533,-0.1379,0.7071,0.6935,-0.1379,0.7071,0.6935,-0.1622,0.5556,0.8155,-0.3182,0.5556,0.7682,-0.4619,0.5556,0.6913,-0.3928,0.7071,0.5879,-0.2706,0.7071,0.6533,-0.2706,0.7071,0.6533,-0.3182,0.5556,0.7682,-0.4619,0.5556,0.6913,-0.5879,0.5556,0.5879,-0.5,0.7071,0.5,-0.3928,0.7071,0.5879,-0.3928,0.7071,0.5879,-0.4619,0.5556,0.6913,-0.5879,0.5556,0.5879,-0.6913,0.5556,0.4619,-0.5879,0.7071,0.3928,-0.5,0.7071,0.5,-0.5,0.7071,0.5,-0.5879,0.5556,0.5879,-0.6913,0.5556,0.4619,-0.7682,0.5556,0.3182,-0.6533,0.7071,0.2706,-0.5879,0.7071,0.3928,-0.5879,0.7071,0.3928,-0.6913,0.5556,0.4619,-0.7682,0.5556,0.3182,-0.8155,0.5556,0.1622,-0.6935,0.7071,0.1379,-0.6533,0.7071,0.2706,-0.6533,0.7071,0.2706,-0.7682,0.5556,0.3182,-0.8155,0.5556,0.1622,-0.8315,0.5556,0.0,-0.7071,0.7071,0.0,-0.6935,0.7071,0.1379,-0.6935,0.7071,0.1379,-0.8155,0.5556,0.1622,-0.8315,0.5556,0.0,-0.8155,0.5556,-0.1622,-0.6935,0.7071,-0.1379,-0.7071,0.7071,0.0,-0.7071,0.7071,0.0,-0.8315,0.5556,0.0,-0.8155,0.5556,-0.1622,-0.7682,0.5556,-0.3182,-0.6533,0.7071,-0.2706,-0.6935,0.7071,-0.1379,-0.6935,0.7071,-0.1379,-0.8155,0.5556,-0.1622,-0.7682,0.5556,-0.3182,-0.6913,0.5556,-0.4619,-0.5879,0.7071,-0.3928,-0.6533,0.7071,-0.2706,-0.6533,0.7071,-0.2706,-0.7682,0.5556,-0.3182,-0.6913,0.5556,-0.4619,-0.5879,0.5556,-0.5879,-0.5,0.7071,-0.5,-0.5879,0.7071,-0.3928,-0.5879,0.7071,-0.3928,-0.6913,0.5556,-0.4619,-0.5879,0.5556,-0.5879,-0.4619,0.5556,-0.6913,-0.3928,0.7071,-0.5879,-0.5,0.7071,-0.5,-0.5,0.7071,-0.5,-0.5879,0.5556,-0.5879,-0.4619,0.5556,-0.6913,-0.3182,0.5556,-0.7682,-0.2706,0.7071,-0.6533,-0.3928,0.7071,-0.5879,-0.3928,0.7071,-0.5879,-0.4619,0.5556,-0.6913,-0.3182,0.5556,-0.7682,-0.1622,0.5556,-0.8155,-0.1379,0.7071,-0.6935,-0.2706,0.7071,-0.6533,-0.2706,0.7071,-0.6533,-0.3182,0.5556,-0.7682,-0.1622,0.5556,-0.8155,0.0,0.5556,-0.8315,0.0,0.7071,-0.7071,-0.1379,0.7071,-0.6935,-0.1379,0.7071,-0.6935,-0.1622,0.5556,-0.8155,0.0,0.5556,-0.8315,-0.1802,0.3827,0.9061,-0.1622,0.5556,0.8155,0.0,0.5556,0.8315,0.0,0.5556,0.8315,0.0,0.3827,0.9239,-0.1802,0.3827,0.9061,-0.3536,0.3827,0.8536,-0.3182,0.5556,0.7682,-0.1622,0.5556,0.8155,-0.1622,0.5556,0.8155,-0.1802,0.3827,0.9061,-0.3536,0.3827,0.8536,-0.5133,0.3827,0.7682,-0.4619,0.5556,0.6913,-0.3182,0.5556,0.7682,-0.3182,0.5556,0.7682,-0.3536,0.3827,0.8536,-0.5133,0.3827,0.7682,-0.6533,0.3827,0.6533,-0.5879,0.5556,0.5879,-0.4619,0.5556,0.6913,-0.4619,0.5556,0.6913,-0.5133,0.3827,0.7682,-0.6533,0.3827,0.6533,-0.7682,0.3827,0.5133,-0.6913,0.5556,0.4619,-0.5879,0.5556,0.5879,-0.5879,0.5556,0.5879,-0.6533,0.3827,0.6533,-0.7682,0.3827,0.5133,-0.8536,0.3827,0.3536,-0.7682,0.5556,0.3182,-0.6913,0.5556,0.4619,-0.6913,0.5556,0.4619,-0.7682,0.3827,0.5133,-0.8536,0.3827,0.3536,-0.9061,0.3827,0.1802,-0.8155,0.5556,0.1622,-0.7682,0.5556,0.3182,-0.7682,0.5556,0.3182,-0.8536,0.3827,0.3536,-0.9061,0.3827,0.1802,-0.9239,0.3827,0.0,-0.8315,0.5556,0.0,-0.8155,0.5556,0.1622,-0.8155,0.5556,0.1622,-0.9061,0.3827,0.1802,-0.9239,0.3827,0.0,-0.9061,0.3827,-0.1802,-0.8155,0.5556,-0.1622,-0.8315,0.5556,0.0,-0.8315,0.5556,0.0,-0.9239,0.3827,0.0,-0.9061,0.3827,-0.1802,-0.8536,0.3827,-0.3536,-0.7682,0.5556,-0.3182,-0.8155,0.5556,-0.1622,-0.8155,0.5556,-0.1622,-0.9061,0.3827,-0.1802,-0.8536,0.3827,-0.3536,-0.7682,0.3827,-0.5133,-0.6913,0.5556,-0.4619,-0.7682,0.5556,-0.3182,-0.7682,0.5556,-0.3182,-0.8536,0.3827,-0.3536,-0.7682,0.3827,-0.5133,-0.6533,0.3827,-0.6533,-0.5879,0.5556,-0.5879,-0.6913,0.5556,-0.4619,-0.6913,0.5556,-0.4619,-0.7682,0.3827,-0.5133,-0.6533,0.3827,-0.6533,-0.5133,0.3827,-0.7682,-0.4619,0.5556,-0.6913,-0.5879,0.5556,-0.5879,-0.5879,0.5556,-0.5879,-0.6533,0.3827,-0.6533,-0.5133,0.3827,-0.7682,-0.3536,0.3827,-0.8536,-0.3182,0.5556,-0.7682,-0.4619,0.5556,-0.6913,-0.4619,0.5556,-0.6913,-0.5133,0.3827,-0.7682,-0.3536,0.3827,-0.8536,-0.1802,0.3827,-0.9061,-0.1622,0.5556,-0.8155,-0.3182,0.5556,-0.7682,-0.3182,0.5556,-0.7682,-0.3536,0.3827,-0.8536,-0.1802,0.3827,-0.9061,0.0,0.3827,-0.9239,0.0,0.5556,-0.8315,-0.1622,0.5556,-0.8155,-0.1622,0.5556,-0.8155,-0.1802,0.3827,-0.9061,0.0,0.3827,-0.9239,-0.1913,0.1951,0.9619,-0.1802,0.3827,0.9061,0.0,0.3827,0.9239,0.0,0.3827,0.9239,0.0,0.1951,0.9808,-0.1913,0.1951,0.9619,-0.3753,0.1951,0.9061,-0.3536,0.3827,0.8536,-0.1802,0.3827,0.9061,-0.1802,0.3827,0.9061,-0.1913,0.1951,0.9619,-0.3753,0.1951,0.9061,-0.5449,0.1951,0.8155,-0.5133,0.3827,0.7682,-0.3536,0.3827,0.8536,-0.3536,0.3827,0.8536,-0.3753,0.1951,0.9061,-0.5449,0.1951,0.8155,-0.6935,0.1951,0.6935,-0.6533,0.3827,0.6533,-0.5133,0.3827,0.7682,-0.5133,0.3827,0.7682,-0.5449,0.1951,0.8155,-0.6935,0.1951,0.6935,-0.8155,0.1951,0.5449,-0.7682,0.3827,0.5133,-0.6533,0.3827,0.6533,-0.6533,0.3827,0.6533,-0.6935,0.1951,0.6935,-0.8155,0.1951,0.5449,-0.9061,0.1951,0.3753,-0.8536,0.3827,0.3536,-0.7682,0.3827,0.5133,-0.7682,0.3827,0.5133,-0.8155,0.1951,0.5449,-0.9061,0.1951,0.3753,-0.9619,0.1951,0.1913,-0.9061,0.3827,0.1802,-0.8536,0.3827,0.3536,-0.8536,0.3827,0.3536,-0.9061,0.1951,0.3753,-0.9619,0.1951,0.1913,-0.9808,0.1951,0.0,-0.9239,0.3827,0.0,-0.9061,0.3827,0.1802,-0.9061,0.3827,0.1802,-0.9619,0.1951,0.1913,-0.9808,0.1951,0.0,-0.9619,0.1951,-0.1913,-0.9061,0.3827,-0.1802,-0.9239,0.3827,0.0,-0.9239,0.3827,0.0,-0.9808,0.1951,0.0,-0.9619,0.1951,-0.1913,-0.9061,0.1951,-0.3753,-0.8536,0.3827,-0.3536,-0.9061,0.3827,-0.1802,-0.9061,0.3827,-0.1802,-0.9619,0.1951,-0.1913,-0.9061,0.1951,-0.3753,-0.8155,0.1951,-0.5449,-0.7682,0.3827,-0.5133,-0.8536,0.3827,-0.3536,-0.8536,0.3827,-0.3536,-0.9061,0.1951,-0.3753,-0.8155,0.1951,-0.5449,-0.6935,0.1951,-0.6935,-0.6533,0.3827,-0.6533,-0.7682,0.3827,-0.5133,-0.7682,0.3827,-0.5133,-0.8155,0.1951,-0.5449,-0.6935,0.1951,-0.6935,-0.5449,0.1951,-0.8155,-0.5133,0.3827,-0.7682,-0.6533,0.3827,-0.6533,-0.6533,0.3827,-0.6533,-0.6935,0.1951,-0.6935,-0.5449,0.1951,-0.8155,-0.3753,0.1951,-0.9061,-0.3536,0.3827,-0.8536,-0.5133,0.3827,-0.7682,-0.5133,0.3827,-0.7682,-0.5449,0.1951,-0.8155,-0.3753,0.1951,-0.9061,-0.1913,0.1951,-0.9619,-0.1802,0.3827,-0.9061,-0.3536,0.3827,-0.8536,-0.3536,0.3827,-0.8536,-0.3753,0.1951,-0.9061,-0.1913,0.1951,-0.9619,0.0,0.1951,-0.9808,0.0,0.3827,-0.9239,-0.1802,0.3827,-0.9061,-0.1802,0.3827,-0.9061,-0.1913,0.1951,-0.9619,0.0,0.1951,-0.9808,-0.1951,0.0,0.9808,-0.1913,0.1951,0.9619,0.0,0.1951,0.9808,0.0,0.1951,0.9808,0.0,0.0,1.0,-0.1951,0.0,0.9808,-0.3827,0.0,0.9239,-0.3753,0.1951,0.9061,-0.1913,0.1951,0.9619,-0.1913,0.1951,0.9619,-0.1951,0.0,0.9808,-0.3827,0.0,0.9239,-0.5556,0.0,0.8315,-0.5449,0.1951,0.8155,-0.3753,0.1951,0.9061,-0.3753,0.1951,0.9061,-0.3827,0.0,0.9239,-0.5556,0.0,0.8315,-0.7071,0.0,0.7071,-0.6935,0.1951,0.6935,-0.5449,0.1951,0.8155,-0.5449,0.1951,0.8155,-0.5556,0.0,0.8315,-0.7071,0.0,0.7071,-0.8315,0.0,0.5556,-0.8155,0.1951,0.5449,-0.6935,0.1951,0.6935,-0.6935,0.1951,0.6935,-0.7071,0.0,0.7071,-0.8315,0.0,0.5556,-0.9239,0.0,0.3827,-0.9061,0.1951,0.3753,-0.8155,0.1951,0.5449,-0.8155,0.1951,0.5449,-0.8315,0.0,0.5556,-0.9239,0.0,0.3827,-0.9808,0.0,0.1951,-0.9619,0.1951,0.1913,-0.9061,0.1951,0.3753,-0.9061,0.1951,0.3753,-0.9239,0.0,0.3827,-0.9808,0.0,0.1951,-1.0,0.0,0.0,-0.9808,0.1951,0.0,-0.9619,0.1951,0.1913,-0.9619,0.1951,0.1913,-0.9808,0.0,0.1951,-1.0,0.0,0.0,-0.9808,0.0,-0.1951,-0.9619,0.1951,-0.1913,-0.9808,0.1951,0.0,-0.9808,0.1951,0.0,-1.0,0.0,0.0,-0.9808,0.0,-0.1951,-0.9239,0.0,-0.3827,-0.9061,0.1951,-0.3753,-0.9619,0.1951,-0.1913,-0.9619,0.1951,-0.1913,-0.9808,0.0,-0.1951,-0.9239,0.0,-0.3827,-0.8315,0.0,-0.5556,-0.8155,0.1951,-0.5449,-0.9061,0.1951,-0.3753,-0.9061,0.1951,-0.3753,-0.9239,0.0,-0.3827,-0.8315,0.0,-0.5556,-0.7071,0.0,-0.7071,-0.6935,0.1951,-0.6935,-0.8155,0.1951,-0.5449,-0.8155,0.1951,-0.5449,-0.8315,0.0,-0.5556,-0.7071,0.0,-0.7071,-0.5556,0.0,-0.8315,-0.5449,0.1951,-0.8155,-0.6935,0.1951,-0.6935,-0.6935,0.1951,-0.6935,-0.7071,0.0,-0.7071,-0.5556,0.0,-0.8315,-0.3827,0.0,-0.9239,-0.3753,0.1951,-0.9061,-0.5449,0.1951,-0.8155,-0.5449,0.1951,-0.8155,-0.5556,0.0,-0.8315,-0.3827,0.0,-0.9239,-0.1951,0.0,-0.9808,-0.1913,0.1951,-0.9619,-0.3753,0.1951,-0.9061,-0.3753,0.1951,-0.9061,-0.3827,0.0,-0.9239,-0.1951,0.0,-0.9808,0.0,0.0,-1.0,0.0,0.1951,-0.9808,-0.1913,0.1951,-0.9619,-0.1913,0.1951,-0.9619,-0.1951,0.0,-0.9808,0.0,0.0,-1.0,-0.1913,-0.1951,0.9619,-0.1951,0.0,0.9808,0.0,0.0,1.0,0.0,0.0,1.0,0.0,-0.1951,0.9808,-0.1913,-0.1951,0.9619,-0.3753,-0.1951,0.9061,-0.3827,0.0,0.9239,-0.1951,0.0,0.9808,-0.1951,0.0,0.9808,-0.1913,-0.1951,0.9619,-0.3753,-0.1951,0.9061,-0.5449,-0.1951,0.8155,-0.5556,0.0,0.8315,-0.3827,0.0,0.9239,-0.3827,0.0,0.9239,-0.3753,-0.1951,0.9061,-0.5449,-0.1951,0.8155,-0.6935,-0.1951,0.6935,-0.7071,0.0,0.7071,-0.5556,0.0,0.8315,-0.5556,0.0,0.8315,-0.5449,-0.1951,0.8155,-0.6935,-0.1951,0.6935,-0.8155,-0.1951,0.5449,-0.8315,0.0,0.5556,-0.7071,0.0,0.7071,-0.7071,0.0,0.7071,-0.6935,-0.1951,0.6935,-0.8155,-0.1951,0.5449,-0.9061,-0.1951,0.3753,-0.9239,0.0,0.3827,-0.8315,0.0,0.5556,-0.8315,0.0,0.5556,-0.8155,-0.1951,0.5449,-0.9061,-0.1951,0.3753,-0.9619,-0.1951,0.1913,-0.9808,0.0,0.1951,-0.9239,0.0,0.3827,-0.9239,0.0,0.3827,-0.9061,-0.1951,0.3753,-0.9619,-0.1951,0.1913,-0.9808,-0.1951,0.0,-1.0,0.0,0.0,-0.9808,0.0,0.1951,-0.9808,0.0,0.1951,-0.9619,-0.1951,0.1913,-0.9808,-0.1951,0.0,-0.9619,-0.1951,-0.1913,-0.9808,0.0,-0.1951,-1.0,0.0,0.0,-1.0,0.0,0.0,-0.9808,-0.1951,0.0,-0.9619,-0.1951,-0.1913,-0.9061,-0.1951,-0.3753,-0.9239,0.0,-0.3827,-0.9808,0.0,-0.1951,-0.9808,0.0,-0.1951,-0.9619,-0.1951,-0.1913,-0.9061,-0.1951,-0.3753,-0.8155,-0.1951,-0.5449,-0.8315,0.0,-0.5556,-0.9239,0.0,-0.3827,-0.9239,0.0,-0.3827,-0.9061,-0.1951,-0.3753,-0.8155,-0.1951,-0.5449,-0.6935,-0.1951,-0.6935,-0.7071,0.0,-0.7071,-0.8315,0.0,-0.5556,-0.8315,0.0,-0.5556,-0.8155,-0.1951,-0.5449,-0.6935,-0.1951,-0.6935,-0.5449,-0.1951,-0.8155,-0.5556,0.0,-0.8315,-0.7071,0.0,-0.7071,-0.7071,0.0,-0.7071,-0.6935,-0.1951,-0.6935,-0.5449,-0.1951,-0.8155,-0.3753,-0.1951,-0.9061,-0.3827,0.0,-0.9239,-0.5556,0.0,-0.8315,-0.5556,0.0,-0.8315,-0.5449,-0.1951,-0.8155,-0.3753,-0.1951,-0.9061,-0.1913,-0.1951,-0.9619,-0.1951,0.0,-0.9808,-0.3827,0.0,-0.9239,-0.3827,0.0,-0.9239,-0.3753,-0.1951,-0.9061,-0.1913,-0.1951,-0.9619,0.0,-0.1951,-0.9808,0.0,0.0,-1.0,-0.1951,0.0,-0.9808,-0.1951,0.0,-0.9808,-0.1913,-0.1951,-0.9619,0.0,-0.1951,-0.9808,-0.1802,-0.3827,0.9061,-0.1913,-0.1951,0.9619,0.0,-0.1951,0.9808,0.0,-0.1951,0.9808,0.0,-0.3827,0.9239,-0.1802,-0.3827,0.9061,-0.3536,-0.3827,0.8536,-0.3753,-0.1951,0.9061,-0.1913,-0.1951,0.9619,-0.1913,-0.1951,0.9619,-0.1802,-0.3827,0.9061,-0.3536,-0.3827,0.8536,-0.5133,-0.3827,0.7682,-0.5449,-0.1951,0.8155,-0.3753,-0.1951,0.9061,-0.3753,-0.1951,0.9061,-0.3536,-0.3827,0.8536,-0.5133,-0.3827,0.7682,-0.6533,-0.3827,0.6533,-0.6935,-0.1951,0.6935,-0.5449,-0.1951,0.8155,-0.5449,-0.1951,0.8155,-0.5133,-0.3827,0.7682,-0.6533,-0.3827,0.6533,-0.7682,-0.3827,0.5133,-0.8155,-0.1951,0.5449,-0.6935,-0.1951,0.6935,-0.6935,-0.1951,0.6935,-0.6533,-0.3827,0.6533,-0.7682,-0.3827,0.5133,-0.8536,-0.3827,0.3536,-0.9061,-0.1951,0.3753,-0.8155,-0.1951,0.5449,-0.8155,-0.1951,0.5449,-0.7682,-0.3827,0.5133,-0.8536,-0.3827,0.3536,-0.9061,-0.3827,0.1802,-0.9619,-0.1951,0.1913,-0.9061,-0.1951,0.3753,-0.9061,-0.1951,0.3753,-0.8536,-0.3827,0.3536,-0.9061,-0.3827,0.1802,-0.9239,-0.3827,0.0,-0.9808,-0.1951,0.0,-0.9619,-0.1951,0.1913,-0.9619,-0.1951,0.1913,-0.9061,-0.3827,0.1802,-0.9239,-0.3827,0.0,-0.9061,-0.3827,-0.1802,-0.9619,-0.1951,-0.1913,-0.9808,-0.1951,0.0,-0.9808,-0.1951,0.0,-0.9239,-0.3827,0.0,-0.9061,-0.3827,-0.1802,-0.8536,-0.3827,-0.3536,-0.9061,-0.1951,-0.3753,-0.9619,-0.1951,-0.1913,-0.9619,-0.1951,-0.1913,-0.9061,-0.3827,-0.1802,-0.8536,-0.3827,-0.3536,-0.7682,-0.3827,-0.5133,-0.8155,-0.1951,-0.5449,-0.9061,-0.1951,-0.3753,-0.9061,-0.1951,-0.3753,-0.8536,-0.3827,-0.3536,-0.7682,-0.3827,-0.5133,-0.6533,-0.3827,-0.6533,-0.6935,-0.1951,-0.6935,-0.8155,-0.1951,-0.5449,-0.8155,-0.1951,-0.5449,-0.7682,-0.3827,-0.5133,-0.6533,-0.3827,-0.6533,-0.5133,-0.3827,-0.7682,-0.5449,-0.1951,-0.8155,-0.6935,-0.1951,-0.6935,-0.6935,-0.1951,-0.6935,-0.6533,-0.3827,-0.6533,-0.5133,-0.3827,-0.7682,-0.3536,-0.3827,-0.8536,-0.3753,-0.1951,-0.9061,-0.5449,-0.1951,-0.8155,-0.5449,-0.1951,-0.8155,-0.5133,-0.3827,-0.7682,-0.3536,-0.3827,-0.8536,-0.1802,-0.3827,-0.9061,-0.1913,-0.1951,-0.9619,-0.3753,-0.1951,-0.9061,-0.3753,-0.1951,-0.9061,-0.3536,-0.3827,-0.8536,-0.1802,-0.3827,-0.9061,0.0,-0.3827,-0.9239,0.0,-0.1951,-0.9808,-0.1913,-0.1951,-0.9619,-0.1913,-0.1951,-0.9619,-0.1802,-0.3827,-0.9061,0.0,-0.3827,-0.9239,-0.1622,-0.5556,0.8155,-0.1802,-0.3827,0.9061,0.0,-0.3827,0.9239,0.0,-0.3827,0.9239,0.0,-0.5556,0.8315,-0.1622,-0.5556,0.8155,-0.3182,-0.5556,0.7682,-0.3536,-0.3827,0.8536,-0.1802,-0.3827,0.9061,-0.1802,-0.3827,0.9061,-0.1622,-0.5556,0.8155,-0.3182,-0.5556,0.7682,-0.4619,-0.5556,0.6913,-0.5133,-0.3827,0.7682,-0.3536,-0.3827,0.8536,-0.3536,-0.3827,0.8536,-0.3182,-0.5556,0.7682,-0.4619,-0.5556,0.6913,-0.5879,-0.5556,0.5879,-0.6533,-0.3827,0.6533,-0.5133,-0.3827,0.7682,-0.5133,-0.3827,0.7682,-0.4619,-0.5556,0.6913,-0.5879,-0.5556,0.5879,-0.6913,-0.5556,0.4619,-0.7682,-0.3827,0.5133,-0.6533,-0.3827,0.6533,-0.6533,-0.3827,0.6533,-0.5879,-0.5556,0.5879,-0.6913,-0.5556,0.4619,-0.7682,-0.5556,0.3182,-0.8536,-0.3827,0.3536,-0.7682,-0.3827,0.5133,-0.7682,-0.3827,0.5133,-0.6913,-0.5556,0.4619,-0.7682,-0.5556,0.3182,-0.8155,-0.5556,0.1622,-0.9061,-0.3827,0.1802,-0.8536,-0.3827,0.3536,-0.8536,-0.3827,0.3536,-0.7682,-0.5556,0.3182,-0.8155,-0.5556,0.1622,-0.8315,-0.5556,0.0,-0.9239,-0.3827,0.0,-0.9061,-0.3827,0.1802,-0.9061,-0.3827,0.1802,-0.8155,-0.5556,0.1622,-0.8315,-0.5556,0.0,-0.8155,-0.5556,-0.1622,-0.9061,-0.3827,-0.1802,-0.9239,-0.3827,0.0,-0.9239,-0.3827,0.0,-0.8315,-0.5556,0.0,-0.8155,-0.5556,-0.1622,-0.7682,-0.5556,-0.3182,-0.8536,-0.3827,-0.3536,-0.9061,-0.3827,-0.1802,-0.9061,-0.3827,-0.1802,-0.8155,-0.5556,-0.1622,-0.7682,-0.5556,-0.3182,-0.6913,-0.5556,-0.4619,-0.7682,-0.3827,-0.5133,-0.8536,-0.3827,-0.3536,-0.8536,-0.3827,-0.3536,-0.7682,-0.5556,-0.3182,-0.6913,-0.5556,-0.4619,-0.5879,-0.5556,-0.5879,-0.6533,-0.3827,-0.6533,-0.7682,-0.3827,-0.5133,-0.7682,-0.3827,-0.5133,-0.6913,-0.5556,-0.4619,-0.5879,-0.5556,-0.5879,-0.4619,-0.5556,-0.6913,-0.5133,-0.3827,-0.7682,-0.6533,-0.3827,-0.6533,-0.6533,-0.3827,-0.6533,-0.5879,-0.5556,-0.5879,-0.4619,-0.5556,-0.6913,-0.3182,-0.5556,-0.7682,-0.3536,-0.3827,-0.8536,-0.5133,-0.3827,-0.7682,-0.5133,-0.3827,-0.7682,-0.4619,-0.5556,-0.6913,-0.3182,-0.5556,-0.7682,-0.1622,-0.5556,-0.8155,-0.1802,-0.3827,-0.9061,-0.3536,-0.3827,-0.8536,-0.3536,-0.3827,-0.8536,-0.3182,-0.5556,-0.7682,-0.1622,-0.5556,-0.8155,0.0,-0.5556,-0.8315,0.0,-0.3827,-0.9239,-0.1802,-0.3827,-0.9061,-0.1802,-0.3827,-0.9061,-0.1622,-0.5556,-0.8155,0.0,-0.5556,-0.8315,-0.1379,-0.7071,0.6935,-0.1622,-0.5556,0.8155,0.0,-0.5556,0.8315,0.0,-0.5556,0.8315,0.0,-0.7071,0.7071,-0.1379,-0.7071,0.6935,-0.2706,-0.7071,0.6533,-0.3182,-0.5556,0.7682,-0.1622,-0.5556,0.8155,-0.1622,-0.5556,0.8155,-0.1379,-0.7071,0.6935,-0.2706,-0.7071,0.6533,-0.3928,-0.7071,0.5879,-0.4619,-0.5556,0.6913,-0.3182,-0.5556,0.7682,-0.3182,-0.5556,0.7682,-0.2706,-0.7071,0.6533,-0.3928,-0.7071,0.5879,-0.5,-0.7071,0.5,-0.5879,-0.5556,0.5879,-0.4619,-0.5556,0.6913,-0.4619,-0.5556,0.6913,-0.3928,-0.7071,0.5879,-0.5,-0.7071,0.5,-0.5879,-0.7071,0.3928,-0.6913,-0.5556,0.4619,-0.5879,-0.5556,0.5879,-0.5879,-0.5556,0.5879,-0.5,-0.7071,0.5,-0.5879,-0.7071,0.3928,-0.6533,-0.7071,0.2706,-0.7682,-0.5556,0.3182,-0.6913,-0.5556,0.4619,-0.6913,-0.5556,0.4619,-0.5879,-0.7071,0.3928,-0.6533,-0.7071,0.2706,-0.6935,-0.7071,0.1379,-0.8155,-0.5556,0.1622,-0.7682,-0.5556,0.3182,-0.7682,-0.5556,0.3182,-0.6533,-0.7071,0.2706,-0.6935,-0.7071,0.1379,-0.7071,-0.7071,0.0,-0.8315,-0.5556,0.0,-0.8155,-0.5556,0.1622,-0.8155,-0.5556,0.1622,-0.6935,-0.7071,0.1379,-0.7071,-0.7071,0.0,-0.6935,-0.7071,-0.1379,-0.8155,-0.5556,-0.1622,-0.8315,-0.5556,0.0,-0.8315,-0.5556,0.0,-0.7071,-0.7071,0.0,-0.6935,-0.7071,-0.1379,-0.6533,-0.7071,-0.2706,-0.7682,-0.5556,-0.3182,-0.8155,-0.5556,-0.1622,-0.8155,-0.5556,-0.1622,-0.6935,-0.7071,-0.1379,-0.6533,-0.7071,-0.2706,-0.5879,-0.7071,-0.3928,-0.6913,-0.5556,-0.4619,-0.7682,-0.5556,-0.3182,-0.7682,-0.5556,-0.3182,-0.6533,-0.7071,-0.2706,-0.5879,-0.7071,-0.3928,-0.5,-0.7071,-0.5,-0.5879,-0.5556,-0.5879,-0.6913,-0.5556,-0.4619,-0.6913,-0.5556,-0.4619,-0.5879,-0.7071,-0.3928,-0.5,-0.7071,-0.5,-0.3928,-0.7071,-0.5879,-0.4619,-0.5556,-0.6913,-0.5879,-0.5556,-0.5879,-0.5879,-0.5556,-0.5879,-0.5,-0.7071,-0.5,-0.3928,-0.7071,-0.5879,-0.2706,-0.7071,-0.6533,-0.3182,-0.5556,-0.7682,-0.4619,-0.5556,-0.6913,-0.4619,-0.5556,-0.6913,-0.3928,-0.7071,-0.5879,-0.2706,-0.7071,-0.6533,-0.1379,-0.7071,-0.6935,-0.1622,-0.5556,-0.8155,-0.3182,-0.5556,-0.7682,-0.3182,-0.5556,-0.7682,-0.2706,-0.7071,-0.6533,-0.1379,-0.7071,-0.6935,0.0,-0.7071,-0.7071,0.0,-0.5556,-0.8315,-0.1622,-0.5556,-0.8155,-0.1622,-0.5556,-0.8155,-0.1379,-0.7071,-0.6935,0.0,-0.7071,-0.7071,-0.1084,-0.8315,0.5449,-0.1379,-0.7071,0.6935,0.0,-0.7071,0.7071,0.0,-0.7071,0.7071,0.0,-0.8315,0.5556,-0.1084,-0.8315,0.5449,-0.2126,-0.8315,0.5133,-0.2706,-0.7071,0.6533,-0.1379,-0.7071,0.6935,-0.1379,-0.7071,0.6935,-0.1084,-0.8315,0.5449,-0.2126,-0.8315,0.5133,-0.3087,-0.8315,0.4619,-0.3928,-0.7071,0.5879,-0.2706,-0.7071,0.6533,-0.2706,-0.7071,0.6533,-0.2126,-0.8315,0.5133,-0.3087,-0.8315,0.4619,-0.3928,-0.8315,0.3928,-0.5,-0.7071,0.5,-0.3928,-0.7071,0.5879,-0.3928,-0.7071,0.5879,-0.3087,-0.8315,0.4619,-0.3928,-0.8315,0.3928,-0.4619,-0.8315,0.3087,-0.5879,-0.7071,0.3928,-0.5,-0.7071,0.5,-0.5,-0.7071,0.5,-0.3928,-0.8315,0.3928,-0.4619,-0.8315,0.3087,-0.5133,-0.8315,0.2126,-0.6533,-0.7071,0.2706,-0.5879,-0.7071,0.3928,-0.5879,-0.7071,0.3928,-0.4619,-0.8315,0.3087,-0.5133,-0.8315,0.2126,-0.5449,-0.8315,0.1084,-0.6935,-0.7071,0.1379,-0.6533,-0.7071,0.2706,-0.6533,-0.7071,0.2706,-0.5133,-0.8315,0.2126,-0.5449,-0.8315,0.1084,-0.5556,-0.8315,0.0,-0.7071,-0.7071,0.0,-0.6935,-0.7071,0.1379,-0.6935,-0.7071,0.1379,-0.5449,-0.8315,0.1084,-0.5556,-0.8315,0.0,-0.5449,-0.8315,-0.1084,-0.6935,-0.7071,-0.1379,-0.7071,-0.7071,0.0,-0.7071,-0.7071,0.0,-0.5556,-0.8315,0.0,-0.5449,-0.8315,-0.1084,-0.5133,-0.8315,-0.2126,-0.6533,-0.7071,-0.2706,-0.6935,-0.7071,-0.1379,-0.6935,-0.7071,-0.1379,-0.5449,-0.8315,-0.1084,-0.5133,-0.8315,-0.2126,-0.4619,-0.8315,-0.3087,-0.5879,-0.7071,-0.3928,-0.6533,-0.7071,-0.2706,-0.6533,-0.7071,-0.2706,-0.5133,-0.8315,-0.2126,-0.4619,-0.8315,-0.3087,-0.3928,-0.8315,-0.3928,-0.5,-0.7071,-0.5,-0.5879,-0.7071,-0.3928,-0.5879,-0.7071,-0.3928,-0.4619,-0.8315,-0.3087,-0.3928,-0.8315,-0.3928,-0.3087,-0.8315,-0.4619,-0.3928,-0.7071,-0.5879,-0.5,-0.7071,-0.5,-0.5,-0.7071,-0.5,-0.3928,-0.8315,-0.3928,-0.3087,-0.8315,-0.4619,-0.2126,-0.8315,-0.5133,-0.2706,-0.7071,-0.6533,-0.3928,-0.7071,-0.5879,-0.3928,-0.7071,-0.5879,-0.3087,-0.8315,-0.4619,-0.2126,-0.8315,-0.5133,-0.1084,-0.8315,-0.5449,-0.1379,-0.7071,-0.6935,-0.2706,-0.7071,-0.6533,-0.2706,-0.7071,-0.6533,-0.2126,-0.8315,-0.5133,-0.1084,-0.8315,-0.5449,0.0,-0.8315,-0.5556,0.0,-0.7071,-0.7071,-0.1379,-0.7071,-0.6935,-0.1379,-0.7071,-0.6935,-0.1084,-0.8315,-0.5449,0.0,-0.8315,-0.5556,-0.0747,-0.9239,0.3753,-0.1084,-0.8315,0.5449,0.0,-0.8315,0.5556,0.0,-0.8315,0.5556,0.0,-0.9239,0.3827,-0.0747,-0.9239,0.3753,-0.1464,-0.9239,0.3536,-0.2126,-0.8315,0.5133,-0.1084,-0.8315,0.5449,-0.1084,-0.8315,0.5449,-0.0747,-0.9239,0.3753,-0.1464,-0.9239,0.3536,-0.2126,-0.9239,0.3182,-0.3087,-0.8315,0.4619,-0.2126,-0.8315,0.5133,-0.2126,-0.8315,0.5133,-0.1464,-0.9239,0.3536,-0.2126,-0.9239,0.3182,-0.2706,-0.9239,0.2706,-0.3928,-0.8315,0.3928,-0.3087,-0.8315,0.4619,-0.3087,-0.8315,0.4619,-0.2126,-0.9239,0.3182,-0.2706,-0.9239,0.2706,-0.3182,-0.9239,0.2126,-0.4619,-0.8315,0.3087,-0.3928,-0.8315,0.3928,-0.3928,-0.8315,0.3928,-0.2706,-0.9239,0.2706,-0.3182,-0.9239,0.2126,-0.3536,-0.9239,0.1464,-0.5133,-0.8315,0.2126,-0.4619,-0.8315,0.3087,-0.4619,-0.8315,0.3087,-0.3182,-0.9239,0.2126,-0.3536,-0.9239,0.1464,-0.3753,-0.9239,0.0747,-0.5449,-0.8315,0.1084,-0.5133,-0.8315,0.2126,-0.5133,-0.8315,0.2126,-0.3536,-0.9239,0.1464,-0.3753,-0.9239,0.0747,-0.3827,-0.9239,0.0,-0.5556,-0.8315,0.0,-0.5449,-0.8315,0.1084,-0.5449,-0.8315,0.1084,-0.3753,-0.9239,0.0747,-0.3827,-0.9239,0.0,-0.3753,-0.9239,-0.0747,-0.5449,-0.8315,-0.1084,-0.5556,-0.8315,0.0,-0.5556,-0.8315,0.0,-0.3827,-0.9239,0.0,-0.3753,-0.9239,-0.0747,-0.3536,-0.9239,-0.1464,-0.5133,-0.8315,-0.2126,-0.5449,-0.8315,-0.1084,-0.5449,-0.8315,-0.1084,-0.3753,-0.9239,-0.0747,-0.3536,-0.9239,-0.1464,-0.3182,-0.9239,-0.2126,-0.4619,-0.8315,-0.3087,-0.5133,-0.8315,-0.2126,-0.5133,-0.8315,-0.2126,-0.3536,-0.9239,-0.1464,-0.3182,-0.9239,-0.2126,-0.2706,-0.9239,-0.2706,-0.3928,-0.8315,-0.3928,-0.4619,-0.8315,-0.3087,-0.4619,-0.8315,-0.3087,-0.3182,-0.9239,-0.2126,-0.2706,-0.9239,-0.2706,-0.2126,-0.9239,-0.3182,-0.3087,-0.8315,-0.4619,-0.3928,-0.8315,-0.3928,-0.3928,-0.8315,-0.3928,-0.2706,-0.9239,-0.2706,-0.2126,-0.9239,-0.3182,-0.1464,-0.9239,-0.3536,-0.2126,-0.8315,-0.5133,-0.3087,-0.8315,-0.4619,-0.3087,-0.8315,-0.4619,-0.2126,-0.9239,-0.3182,-0.1464,-0.9239,-0.3536,-0.0747,-0.9239,-0.3753,-0.1084,-0.8315,-0.5449,-0.2126,-0.8315,-0.5133,-0.2126,-0.8315,-0.5133,-0.1464,-0.9239,-0.3536,-0.0747,-0.9239,-0.3753,0.0,-0.9239,-0.3827,0.0,-0.8315,-0.5556,-0.1084,-0.8315,-0.5449,-0.1084,-0.8315,-0.5449,-0.0747,-0.9239,-0.3753,0.0,-0.9239,-0.3827,-0.0381,-0.9808,0.1913,-0.0747,-0.9239,0.3753,0.0,-0.9239,0.3827,0.0,-0.9239,0.3827,0.0,-0.9808,0.1951,-0.0381,-0.9808,0.1913,-0.0747,-0.9808,0.1802,-0.1464,-0.9239,0.3536,-0.0747,-0.9239,0.3753,-0.0747,-0.9239,0.3753,-0.0381,-0.9808,0.1913,-0.0747,-0.9808,0.1802,-0.1084,-0.9808,0.1622,-0.2126,-0.9239,0.3182,-0.1464,-0.9239,0.3536,-0.1464,-0.9239,0.3536,-0.0747,-0.9808,0.1802,-0.1084,-0.9808,0.1622,-0.1379,-0.9808,0.1379,-0.2706,-0.9239,0.2706,-0.2126,-0.9239,0.3182,-0.2126,-0.9239,0.3182,-0.1084,-0.9808,0.1622,-0.1379,-0.9808,0.1379,-0.1622,-0.9808,0.1084,-0.3182,-0.9239,0.2126,-0.2706,-0.9239,0.2706,-0.2706,-0.9239,0.2706,-0.1379,-0.9808,0.1379,-0.1622,-0.9808,0.1084,-0.1802,-0.9808,0.0747,-0.3536,-0.9239,0.1464,-0.3182,-0.9239,0.2126,-0.3182,-0.9239,0.2126,-0.1622,-0.9808,0.1084,-0.1802,-0.9808,0.0747,-0.1913,-0.9808,0.0381,-0.3753,-0.9239,0.0747,-0.3536,-0.9239,0.1464,-0.3536,-0.9239,0.1464,-0.1802,-0.9808,0.0747,-0.1913,-0.9808,0.0381,-0.1951,-0.9808,0.0,-0.3827,-0.9239,0.0,-0.3753,-0.9239,0.0747,-0.3753,-0.9239,0.0747,-0.1913,-0.9808,0.0381,-0.1951,-0.9808,0.0,-0.1913,-0.9808,-0.0381,-0.3753,-0.9239,-0.0747,-0.3827,-0.9239,0.0,-0.3827,-0.9239,0.0,-0.1951,-0.9808,0.0,-0.1913,-0.9808,-0.0381,-0.1802,-0.9808,-0.0747,-0.3536,-0.9239,-0.1464,-0.3753,-0.9239,-0.0747,-0.3753,-0.9239,-0.0747,-0.1913,-0.9808,-0.0381,-0.1802,-0.9808,-0.0747,-0.1622,-0.9808,-0.1084,-0.3182,-0.9239,-0.2126,-0.3536,-0.9239,-0.1464,-0.3536,-0.9239,-0.1464,-0.1802,-0.9808,-0.0747,-0.1622,-0.9808,-0.1084,-0.1379,-0.9808,-0.1379,-0.2706,-0.9239,-0.2706,-0.3182,-0.9239,-0.2126,-0.3182,-0.9239,-0.2126,-0.1622,-0.9808,-0.1084,-0.1379,-0.9808,-0.1379,-0.1084,-0.9808,-0.1622,-0.2126,-0.9239,-0.3182,-0.2706,-0.9239,-0.2706,-0.2706,-0.9239,-0.2706,-0.1379,-0.9808,-0.1379,-0.1084,-0.9808,-0.1622,-0.0747,-0.9808,-0.1802,-0.1464,-0.9239,-0.3536,-0.2126,-0.9239,-0.3182,-0.2126,-0.9239,-0.3182,-0.1084,-0.9808,-0.1622,-0.0747,-0.9808,-0.1802,-0.0381,-0.9808,-0.1913,-0.0747,-0.9239,-0.3753,-0.1464,-0.9239,-0.3536,-0.1464,-0.9239,-0.3536,-0.0747,-0.9808,-0.1802,-0.0381,-0.9808,-0.1913,0.0,-0.9808,-0.1951,0.0,-0.9239,-0.3827,-0.0747,-0.9239,-0.3753,-0.0747,-0.9239,-0.3753,-0.0381,-0.9808,-0.1913,0.0,-0.9808,-0.1951,0.0,-1.0,0.0,-0.0381,-0.9808,0.1913,0.0,-0.9808,0.1951,0.0,-1.0,0.0,-0.0747,-0.9808,0.1802,-0.0381,-0.9808,0.1913,0.0,-1.0,0.0,-0.1084,-0.9808,0.1622,-0.0747,-0.9808,0.1802,0.0,-1.0,0.0,-0.1379,-0.9808,0.1379,-0.1084,-0.9808,0.1622,0.0,-1.0,0.0,-0.1622,-0.9808,0.1084,-0.1379,-0.9808,0.1379,0.0,-1.0,0.0,-0.1802,-0.9808,0.0747,-0.1622,-0.9808,0.1084,0.0,-1.0,0.0,-0.1913,-0.9808,0.0381,-0.1802,-0.9808,0.0747,0.0,-1.0,0.0,-0.1951,-0.9808,0.0,-0.1913,-0.9808,0.0381,0.0,-1.0,0.0,-0.1913,-0.9808,-0.0381,-0.1951,-0.9808,0.0,0.0,-1.0,0.0,-0.1802,-0.9808,-0.0747,-0.1913,-0.9808,-0.0381,0.0,-1.0,0.0,-0.1622,-0.9808,-0.1084,-0.1802,-0.9808,-0.0747,0.0,-1.0,0.0,-0.1379,-0.9808,-0.1379,-0.1622,-0.9808,-0.1084,0.0,-1.0,0.0,-0.1084,-0.9808,-0.1622,-0.1379,-0.9808,-0.1379,0.0,-1.0,0.0,-0.0747,-0.9808,-0.1802,-0.1084,-0.9808,-0.1622,0.0,-1.0,0.0,-0.0381,-0.9808,-0.1913,-0.0747,-0.9808,-0.1802,0.0,-1.0,0.0,0.0,-0.9808,-0.1951,-0.0381,-0.9808,-0.1913],"normals":[-0.063,0.998,0.0,-0.0198,0.9794,0.2009,-0.0392,0.9796,0.1971,-0.063,0.998,0.0,-0.0392,0.9796,0.1971,-0.0769,0.9796,0.1857,-0.063,0.998,0.0,-0.0769,0.9796,0.1857,-0.1117,0.9796,0.1671,-0.063,0.998,0.0,-0.1117,0.9796,0.1671,-0.1421,0.9796,0.1421,-0.063,0.998,0.0,-0.1421,0.9796,0.1421,-0.1671,0.9796,0.1117,-0.063,0.998,0.0,-0.1671,0.9796,0.1117,-0.1857,0.9796,0.0769,-0.063,0.998,0.0,-0.1857,0.9796,0.0769,-0.1971,0.9796,0.0392,-0.063,0.998,0.0,-0.1971,0.9796,0.0392,-0.201,0.9796,0.0,-0.063,0.998,0.0,-0.201,0.9796,0.0,-0.1971,0.9796,-0.0392,-0.063,0.998,0.0,-0.1971,0.9796,-0.0392,-0.1857,0.9796,-0.0769,-0.063,0.998,0.0,-0.1857,0.9796,-0.0769,-0.1671,0.9796,-0.1117,-0.063,0.998,0.0,-0.1671,0.9796,-0.1117,-0.1421,0.9796,-0.1421,-0.063,0.998,0.0,-0.1421,0.9796,-0.1421,-0.1117,0.9796,-0.1671,-0.063,0.998,0.0,-0.1117,0.9796,-0.1671,-0.0769,0.9796,-0.1857,-0.063,0.998,0.0,-0.0769,0.9796,-0.1857,-0.0392,0.9796,-0.1971,-0.063,0.998,0.0,-0.0392,0.9796,-0.1971,-0.0198,0.9794,-0.2009,-0.0757,0.9217,0.3804,-0.0392,0.9796,0.1971,-0.0198,0.9794,0.2009,-0.0198,0.9794,0.2009,-0.0382,0.921,0.3876,-0.0757,0.9217,0.3804,-0.1484,0.9217,0.3584,-0.0769,0.9796,0.1857,-0.0392,0.9796,0.1971,-0.0392,0.9796,0.1971,-0.0757,0.9217,0.3804,-0.1484,0.9217,0.3584,-0.2155,0.9217,0.3225,-0.1117,0.9796,0.1671,-0.0769,0.9796,0.1857,-0.0769,0.9796,0.1857,-0.1484,0.9217,0.3584,-0.2155,0.9217,0.3225,-0.2743,0.9217,0.2743,-0.1421,0.9796,0.1421,-0.1117,0.9796,0.1671,-0.1117,0.9796,0.1671,-0.2155,0.9217,0.3225,-0.2743,0.9217,0.2743,-0.3225,0.9217,0.2155,-0.1671,0.9796,0.1117,-0.1421,0.9796,0.1421,-0.1421,0.9796,0.1421,-0.2743,0.9217,0.2743,-0.3225,0.9217,0.2155,-0.3584,0.9217,0.1484,-0.1857,0.9796,0.0769,-0.1671,0.9796,0.1117,-0.1671,0.9796,0.1117,-0.3225,0.9217,0.2155,-0.3584,0.9217,0.1484,-0.3804,0.9217,0.0757,-0.1971,0.9796,0.0392,-0.1857,0.9796,0.0769,-0.1857,0.9796,0.0769,-0.3584,0.9217,0.1484,-0.3804,0.9217,0.0757,-0.3879,0.9217,0.0,-0.201,0.9796,0.0,-0.1971,0.9796,0.0392,-0.1971,0.9796,0.0392,-0.3804,0.9217,0.0757,-0.3879,0.9217,0.0,-0.3804,0.9217,-0.0757,-0.1971,0.9796,-0.0392,-0.201,0.9796,0.0,-0.201,0.9796,0.0,-0.3879,0.9217,0.0,-0.3804,0.9217,-0.0757,-0.3584,0.9217,-0.1484,-0.1857,0.9796,-0.0769,-0.1971,0.9796,-0.0392,-0.1971,0.9796,-0.0392,-0.3804,0.9217,-0.0757,-0.3584,0.9217,-0.1484,-0.3225,0.9217,-0.2155,-0.1671,0.9796,-0.1117,-0.1857,0.9796,-0.0769,-0.1857,0.9796,-0.0769,-0.3584,0.9217,-0.1484,-0.3225,0.9217,-0.2155,-0.2743,0.9217,-0.2743,-0.1421,0.9796,-0.1421,-0.1671,0.9796,-0.1117,-0.1671,0.9796,-0.1117,-0.3225,0.9217,-0.2155,-0.2743,0.9217,-0.2743,-0.2155,0.9217,-0.3225,-0.1117,0.9796,-0.1671,-0.1421,0.9796,-0.1421,-0.1421,0.9796,-0.1421,-0.2743,0.9217,-0.2743,-0.2155,0.9217,-0.3225,-0.1484,0.9217,-0.3584,-0.0769,0.9796,-0.1857,-0.1117,0.9796,-0.1671,-0.1117,0.9796,-0.1671,-0.2155,0.9217,-0.3225,-0.1484,0.9217,-0.3584,-0.0757,0.9217,-0.3804,-0.0392,0.9796,-0.1971,-0.0769,0.9796,-0.1857,-0.0769,0.9796,-0.1857,-0.1484,0.9217,-0.3584,-0.0757,0.9217,-0.3804,-0.0382,0.921,-0.3876,-0.0198,0.9794,-0.2009,-0.0392,0.9796,-0.1971,-0.0392,0.9796,-0.1971,-0.0757,0.9217,-0.3804,-0.0382,0.921,-0.3876,-0.1092,0.8286,0.549,-0.0757,0.9217,0.3804,-0.0382,0.921,0.3876,-0.0382,0.921,0.3876,-0.055,0.8274,0.5589,-0.1092,0.8286,0.549,-0.2142,0.8286,0.5172,-0.1484,0.9217,0.3584,-0.0757,0.9217,0.3804,-0.0757,0.9217,0.3804,-0.1092,0.8286,0.549,-0.2142,0.8286,0.5172,-0.311,0.8286,0.4654,-0.2155,0.9217,0.3225,-0.1484,0.9217,0.3584,-0.1484,0.9217,0.3584,-0.2142,0.8286,0.5172,-0.311,0.8286,0.4654,-0.3958,0.8286,0.3958,-0.2743,0.9217,0.2743,-0.2155,0.9217,0.3225,-0.2155,0.9217,0.3225,-0.311,0.8286,0.4654,-0.3958,0.8286,0.3958,-0.4654,0.8286,0.311,-0.3225,0.9217,0.2155,-0.2743,0.9217,0.2743,-0.2743,0.9217,0.2743,-0.3958,0.8286,0.3958,-0.4654,0.8286,0.311,-0.5172,0.8286,0.2142,-0.3584,0.9217,0.1484,-0.3225,0.9217,0.2155,-0.3225,0.9217,0.2155,-0.4654,0.8286,0.311,-0.5172,0.8286,0.2142,-0.549,0.8286,0.1092,-0.3804,0.9217,0.0757,-0.3584,0.9217,0.1484,-0.3584,0.9217,0.1484,-0.5172,0.8286,0.2142,-0.549,0.8286,0.1092,-0.5598,0.8286,0.0,-0.3879,0.9217,0.0,-0.3804,0.9217,0.0757,-0.3804,0.9217,0.0757,-0.549,0.8286,0.1092,-0.5598,0.8286,0.0,-0.549,0.8286,-0.1092,-0.3804,0.9217,-0.0757,-0.3879,0.9217,0.0,-0.3879,0.9217,0.0,-0.5598,0.8286,0.0,-0.549,0.8286,-0.1092,-0.5172,0.8286,-0.2142,-0.3584,0.9217,-0.1484,-0.3804,0.9217,-0.0757,-0.3804,0.9217,-0.0757,-0.549,0.8286,-0.1092,-0.5172,0.8286,-0.2142,-0.4654,0.8286,-0.311,-0.3225,0.9217,-0.2155,-0.3584,0.9217,-0.1484,-0.3584,0.9217,-0.1484,-0.5172,0.8286,-0.2142,-0.4654,0.8286,-0.311,-0.3958,0.8286,-0.3958,-0.2743,0.9217,-0.2743,-0.3225,0.9217,-0.2155,-0.3225,0.9217,-0.2155,-0.4654,0.8286,-0.311,-0.3958,0.8286,-0.3958,-0.311,0.8286,-0.4654,-0.2155,0.9217,-0.3225,-0.2743,0.9217,-0.2743,-0.2743,0.9217,-0.2743,-0.3958,0.8286,-0.3958,-0.311,0.8286,-0.4654,-0.2142,0.8286,-0.5172,-0.1484,0.9217,-0.3584,-0.2155,0.9217,-0.3225,-0.2155,0.9217,-0.3225,-0.311,0.8286,-0.4654,-0.2142,0.8286,-0.5172,-0.1092,0.8286,-0.549,-0.0757,0.9217,-0.3804,-0.1484,0.9217,-0.3584,-0.1484,0.9217,-0.3584,-0.2142,0.8286,-0.5172,-0.1092,0.8286,-0.549,-0.055,0.8274,-0.5589,-0.0382,0.921,-0.3876,-0.0757,0.9217,-0.3804,-0.0757,0.9217,-0.3804,-0.1092,0.8286,-0.549,-0.055,0.8274,-0.5589,-0.1385,0.7041,0.6965,-0.1092,0.8286,0.549,-0.055,0.8274,0.5589,-0.055,0.8274,0.5589,-0.0698,0.7023,0.7084,-0.1385,0.7041,0.6965,-0.2718,0.7041,0.6561,-0.2142,0.8286,0.5172,-0.1092,0.8286,0.549,-0.1092,0.8286,0.549,-0.1385,0.7041,0.6965,-0.2718,0.7041,0.6561,-0.3945,0.7041,0.5905,-0.311,0.8286,0.4654,-0.2142,0.8286,0.5172,-0.2142,0.8286,0.5172,-0.2718,0.7041,0.6561,-0.3945,0.7041,0.5905,-0.5021,0.7041,0.5021,-0.3958,0.8286,0.3958,-0.311,0.8286,0.4654,-0.311,0.8286,0.4654,-0.3945,0.7041,0.5905,-0.5021,0.7041,0.5021,-0.5905,0.7041,0.3945,-0.4654,0.8286,0.311,-0.3958,0.8286,0.3958,-0.3958,0.8286,0.3958,-0.5021,0.7041,0.5021,-0.5905,0.7041,0.3945,-0.6561,0.7041,0.2718,-0.5172,0.8286,0.2142,-0.4654,0.8286,0.311,-0.4654,0.8286,0.311,-0.5905,0.7041,0.3945,-0.6561,0.7041,0.2718,-0.6965,0.7041,0.1385,-0.549,0.8286,0.1092,-0.5172,0.8286,0.2142,-0.5172,0.8286,0.2142,-0.6561,0.7041,0.2718,-0.6965,0.7041,0.1385,-0.7101,0.7041,0.0,-0.5598,0.8286,0.0,-0.549,0.8286,0.1092,-0.549,0.8286,0.1092,-0.6965,0.7041,0.1385,-0.7101,0.7041,0.0,-0.6965,0.7041,-0.1385,-0.549,0.8286,-0.1092,-0.5598,0.8286,0.0,-0.5598,0.8286,0.0,-0.7101,0.7041,0.0,-0.6965,0.7041,-0.1385,-0.6561,0.7041,-0.2718,-0.5172,0.8286,-0.2142,-0.549,0.8286,-0.1092,-0.549,0.8286,-0.1092,-0.6965,0.7041,-0.1385,-0.6561,0.7041,-0.2718,-0.5905,0.7041,-0.3945,-0.4654,0.8286,-0.311,-0.5172,0.8286,-0.2142,-0.5172,0.8286,-0.2142,-0.6561,0.7041,-0.2718,-0.5905,0.7041,-0.3945,-0.5021,0.7041,-0.5021,-0.3958,0.8286,-0.3958,-0.4654,0.8286,-0.311,-0.4654,0.8286,-0.311,-0.5905,0.7041,-0.3945,-0.5021,0.7041,-0.5021,-0.3945,0.7041,-0.5905,-0.311,0.8286,-0.4654,-0.3958,0.8286,-0.3958,-0.3958,0.8286,-0.3958,-0.5021,0.7041,-0.5021,-0.3945,0.7041,-0.5905,-0.2718,0.7041,-0.6561,-0.2142,0.8286,-0.5172,-0.311,0.8286,-0.4654,-0.311,0.8286,-0.4654,-0.3945,0.7041,-0.5905,-0.2718,0.7041,-0.6561,-0.1385,0.7041,-0.6965,-0.1092,0.8286,-0.549,-0.2142,0.8286,-0.5172,-0.2142,0.8286,-0.5172,-0.2718,0.7041,-0.6561,-0.1385,0.7041,-0.6965,-0.0698,0.7023,-0.7084,-0.055,0.8274,-0.5589,-0.1092,0.8286,-0.549,-0.1092,0.8286,-0.549,-0.1385,0.7041,-0.6965,-0.0698,0.7023,-0.7084,-0.1626,0.5528,0.8173,-0.1385,0.7041,0.6965,-0.0698,0.7023,0.7084,-0.0698,0.7023,0.7084,-0.0818,0.5509,0.8305,-0.1626,0.5528,0.8173,-0.3189,0.5528,0.7699,-0.2718,0.7041,0.6561,-0.1385,0.7041,0.6965,-0.1385,0.7041,0.6965,-0.1626,0.5528,0.8173,-0.3189,0.5528,0.7699,-0.463,0.5528,0.6929,-0.3945,0.7041,0.5905,-0.2718,0.7041,0.6561,-0.2718,0.7041,0.6561,-0.3189,0.5528,0.7699,-0.463,0.5528,0.6929,-0.5893,0.5528,0.5893,-0.5021,0.7041,0.5021,-0.3945,0.7041,0.5905,-0.3945,0.7041,0.5905,-0.463,0.5528,0.6929,-0.5893,0.5528,0.5893,-0.6929,0.5528,0.463,-0.5905,0.7041,0.3945,-0.5021,0.7041,0.5021,-0.5021,0.7041,0.5021,-0.5893,0.5528,0.5893,-0.6929,0.5528,0.463,-0.7699,0.5528,0.3189,-0.6561,0.7041,0.2718,-0.5905,0.7041,0.3945,-0.5905,0.7041,0.3945,-0.6929,0.5528,0.463,-0.7699,0.5528,0.3189,-0.8173,0.5528,0.1626,-0.6965,0.7041,0.1385,-0.6561,0.7041,0.2718,-0.6561,0.7041,0.2718,-0.7699,0.5528,0.3189,-0.8173,0.5528,0.1626,-0.8333,0.5528,0.0,-0.7101,0.7041,0.0,-0.6965,0.7041,0.1385,-0.6965,0.7041,0.1385,-0.8173,0.5528,0.1626,-0.8333,0.5528,0.0,-0.8173,0.5528,-0.1626,-0.6965,0.7041,-0.1385,-0.7101,0.7041,0.0,-0.7101,0.7041,0.0,-0.8333,0.5528,0.0,-0.8173,0.5528,-0.1626,-0.7699,0.5528,-0.3189,-0.6561,0.7041,-0.2718,-0.6965,0.7041,-0.1385,-0.6965,0.7041,-0.1385,-0.8173,0.5528,-0.1626,-0.7699,0.5528,-0.3189,-0.6929,0.5528,-0.463,-0.5905,0.7041,-0.3945,-0.6561,0.7041,-0.2718,-0.6561,0.7041,-0.2718,-0.7699,0.5528,-0.3189,-0.6929,0.5528,-0.463,-0.5893,0.5528,-0.5893,-0.5021,0.7041,-0.5021,-0.5905,0.7041,-0.3945,-0.5905,0.7041,-0.3945,-0.6929,0.5528,-0.463,-0.5893,0.5528,-0.5893,-0.463,0.5528,-0.6929,-0.3945,0.7041,-0.5905,-0.5021,0.7041,-0.5021,-0.5021,0.7041,-0.5021,-0.5893,0.5528,-0.5893,-0.463,0.5528,-0.6929,-0.3189,0.5528,-0.7699,-0.2718,0.7041,-0.6561,-0.3945,0.7041,-0.5905,-0.3945,0.7041,-0.5905,-0.463,0.5528,-0.6929,-0.3189,0.5528,-0.7699,-0.1626,0.5528,-0.8173,-0.1385,0.7041,-0.6965,-0.2718,0.7041,-0.6561,-0.2718,0.7041,-0.6561,-0.3189,0.5528,-0.7699,-0.1626,0.5528,-0.8173,-0.0818,0.5509,-0.8305,-0.0698,0.7023,-0.7084,-0.1385,0.7041,-0.6965,-0.1385,0.7041,-0.6965,-0.1626,0.5528,-0.8173,-0.0818,0.5509,-0.8305,-0.1804,0.3805,0.907,-0.1626,0.5528,0.8173,-0.0818,0.5509,0.8305,-0.0818,0.5509,0.8305,-0.0907,0.379,0.921,-0.1804,0.3805,0.907,-0.3539,0.3805,0.8544,-0.3189,0.5528,0.7699,-0.1626,0.5528,0.8173,-0.1626,0.5528,0.8173,-0.1804,0.3805,0.907,-0.3539,0.3805,0.8544,-0.5138,0.3805,0.7689,-0.463,0.5528,0.6929,-0.3189,0.5528,0.7699,-0.3189,0.5528,0.7699,-0.3539,0.3805,0.8544,-0.5138,0.3805,0.7689,-0.6539,0.3805,0.6539,-0.5893,0.5528,0.5893,-0.463,0.5528,0.6929,-0.463,0.5528,0.6929,-0.5138,0.3805,0.7689,-0.6539,0.3805,0.6539,-0.7689,0.3805,0.5138,-0.6929,0.5528,0.463,-0.5893,0.5528,0.5893,-0.5893,0.5528,0.5893,-0.6539,0.3805,0.6539,-0.7689,0.3805,0.5138,-0.8544,0.3805,0.3539,-0.7699,0.5528,0.3189,-0.6929,0.5528,0.463,-0.6929,0.5528,0.463,-0.7689,0.3805,0.5138,-0.8544,0.3805,0.3539,-0.907,0.3805,0.1804,-0.8173,0.5528,0.1626,-0.7699,0.5528,0.3189,-0.7699,0.5528,0.3189,-0.8544,0.3805,0.3539,-0.907,0.3805,0.1804,-0.9248,0.3805,0.0,-0.8333,0.5528,0.0,-0.8173,0.5528,0.1626,-0.8173,0.5528,0.1626,-0.907,0.3805,0.1804,-0.9248,0.3805,0.0,-0.907,0.3805,-0.1804,-0.8173,0.5528,-0.1626,-0.8333,0.5528,0.0,-0.8333,0.5528,0.0,-0.9248,0.3805,0.0,-0.907,0.3805,-0.1804,-0.8544,0.3805,-0.3539,-0.7699,0.5528,-0.3189,-0.8173,0.5528,-0.1626,-0.8173,0.5528,-0.1626,-0.907,0.3805,-0.1804,-0.8544,0.3805,-0.3539,-0.7689,0.3805,-0.5138,-0.6929,0.5528,-0.463,-0.7699,0.5528,-0.3189,-0.7699,0.5528,-0.3189,-0.8544,0.3805,-0.3539,-0.7689,0.3805,-0.5138,-0.6539,0.3805,-0.6539,-0.5893,0.5528,-0.5893,-0.6929,0.5528,-0.463,-0.6929,0.5528,-0.463,-0.7689,0.3805,-0.5138,-0.6539,0.3805,-0.6539,-0.5138,0.3805,-0.7689,-0.463,0.5528,-0.6929,-0.5893,0.5528,-0.5893,-0.5893,0.5528,-0.5893,-0.6539,0.3805,-0.6539,-0.5138,0.3805,-0.7689,-0.3539,0.3805,-0.8544,-0.3189,0.5528,-0.7699,-0.463,0.5528,-0.6929,-0.463,0.5528,-0.6929,-0.5138,0.3805,-0.7689,-0.3539,0.3805,-0.8544,-0.1804,0.3805,-0.907,-0.1626,0.5528,-0.8173,-0.3189,0.5528,-0.7699,-0.3189,0.5528,-0.7699,-0.3539,0.3805,-0.8544,-0.1804,0.3805,-0.907,-0.0907,0.379,-0.921,-0.0818,0.5509,-0.8305,-0.1626,0.5528,-0.8173,-0.1626,0.5528,-0.8173,-0.1804,0.3805,-0.907,-0.0907,0.379,-0.921,-0.1914,0.1939,0.9622,-0.1804,0.3805,0.907,-0.0907,0.379,0.921,-0.0907,0.379,0.921,-0.0962,0.193,0.9765,-0.1914,0.1939,0.9622,-0.3754,0.1939,0.9063,-0.3539,0.3805,0.8544,-0.1804,0.3805,0.907,-0.1804,0.3805,0.907,-0.1914,0.1939,0.9622,-0.3754,0.1939,0.9063,-0.545,0.1939,0.8157,-0.5138,0.3805,0.7689,-0.3539,0.3805,0.8544,-0.3539,0.3805,0.8544,-0.3754,0.1939,0.9063,-0.545,0.1939,0.8157,-0.6937,0.1939,0.6937,-0.6539,0.3805,0.6539,-0.5138,0.3805,0.7689,-0.5138,0.3805,0.7689,-0.545,0.1939,0.8157,-0.6937,0.1939,0.6937,-0.8157,0.1939,0.545,-0.7689,0.3805,0.5138,-0.6539,0.3805,0.6539,-0.6539,0.3805,0.6539,-0.6937,0.1939,0.6937,-0.8157,0.1939,0.545,-0.9063,0.1939,0.3754,-0.8544,0.3805,0.3539,-0.7689,0.3805,0.5138,-0.7689,0.3805,0.5138,-0.8157,0.1939,0.545,-0.9063,0.1939,0.3754,-0.9622,0.1939,0.1914,-0.907,0.3805,0.1804,-0.8544,0.3805,0.3539,-0.8544,0.3805,0.3539,-0.9063,0.1939,0.3754,-0.9622,0.1939,0.1914,-0.981,0.1939,0.0,-0.9248,0.3805,0.0,-0.907,0.3805,0.1804,-0.907,0.3805,0.1804,-0.9622,0.1939,0.1914,-0.981,0.1939,0.0,-0.9622,0.1939,-0.1914,-0.907,0.3805,-0.1804,-0.9248,0.3805,0.0,-0.9248,0.3805,0.0,-0.981,0.1939,0.0,-0.9622,0.1939,-0.1914,-0.9063,0.1939,-0.3754,-0.8544,0.3805,-0.3539,-0.907,0.3805,-0.1804,-0.907,0.3805,-0.1804,-0.9622,0.1939,-0.1914,-0.9063,0.1939,-0.3754,-0.8157,0.1939,-0.545,-0.7689,0.3805,-0.5138,-0.8544,0.3805,-0.3539,-0.8544,0.3805,-0.3539,-0.9063,0.1939,-0.3754,-0.8157,0.1939,-0.545,-0.6937,0.1939,-0.6937,-0.6539,0.3805,-0.6539,-0.7689,0.3805,-0.5138,-0.7689,0.3805,-0.5138,-0.8157,0.1939,-0.545,-0.6937,0.1939,-0.6937,-0.545,0.1939,-0.8157,-0.5138,0.3805,-0.7689,-0.6539,0.3805,-0.6539,-0.6539,0.3805,-0.6539,-0.6937,0.1939,-0.6937,-0.545,0.1939,-0.8157,-0.3754,0.1939,-0.9063,-0.3539,0.3805,-0.8544,-0.5138,0.3805,-0.7689,-0.5138,0.3805,-0.7689,-0.545,0.1939,-0.8157,-0.3754,0.1939,-0.9063,-0.1914,0.1939,-0.9622,-0.1804,0.3805,-0.907,-0.3539,0.3805,-0.8544,-0.3539,0.3805,-0.8544,-0.3754,0.1939,-0.9063,-0.1914,0.1939,-0.9622,-0.0962,0.193,-0.9765,-0.0907,0.379,-0.921,-0.1804,0.3805,-0.907,-0.1804,0.3805,-0.907,-0.1914,0.1939,-0.9622,-0.0962,0.193,-0.9765,-0.1951,0.0,0.9808,-0.1914,0.1939,0.9622,-0.0962,0.193,0.9765,-0.0962,0.193,0.9765,-0.098,0.0,0.9952,-0.1951,0.0,0.9808,-0.3827,0.0,0.9239,-0.3754,0.1939,0.9063,-0.1914,0.1939,0.9622,-0.1914,0.1939,0.9622,-0.1951,0.0,0.9808,-0.3827,0.0,0.9239,-0.5556,0.0,0.8315,-0.545,0.1939,0.8157,-0.3754,0.1939,0.9063,-0.3754,0.1939,0.9063,-0.3827,0.0,0.9239,-0.5556,0.0,0.8315,-0.7071,0.0,0.7071,-0.6937,0.1939,0.6937,-0.545,0.1939,0.8157,-0.545,0.1939,0.8157,-0.5556,0.0,0.8315,-0.7071,0.0,0.7071,-0.8315,0.0,0.5556,-0.8157,0.1939,0.545,-0.6937,0.1939,0.6937,-0.6937,0.1939,0.6937,-0.7071,0.0,0.7071,-0.8315,0.0,0.5556,-0.9239,0.0,0.3827,-0.9063,0.1939,0.3754,-0.8157,0.1939,0.545,-0.8157,0.1939,0.545,-0.8315,0.0,0.5556,-0.9239,0.0,0.3827,-0.9808,0.0,0.1951,-0.9622,0.1939,0.1914,-0.9063,0.1939,0.3754,-0.9063,0.1939,0.3754,-0.9239,0.0,0.3827,-0.9808,0.0,0.1951,-1.0,0.0,0.0,-0.981,0.1939,0.0,-0.9622,0.1939,0.1914,-0.9622,0.1939,0.1914,-0.9808,0.0,0.1951,-1.0,0.0,0.0,-0.9808,0.0,-0.1951,-0.9622,0.1939,-0.1914,-0.981,0.1939,0.0,-0.981,0.1939,0.0,-1.0,0.0,0.0,-0.9808,0.0,-0.1951,-0.9239,0.0,-0.3827,-0.9063,0.1939,-0.3754,-0.9622,0.1939,-0.1914,-0.9622,0.1939,-0.1914,-0.9808,0.0,-0.1951,-0.9239,0.0,-0.3827,-0.8315,0.0,-0.5556,-0.8157,0.1939,-0.545,-0.9063,0.1939,-0.3754,-0.9063,0.1939,-0.3754,-0.9239,0.0,-0.3827,-0.8315,0.0,-0.5556,-0.7071,0.0,-0.7071,-0.6937,0.1939,-0.6937,-0.8157,0.1939,-0.545,-0.8157,0.1939,-0.545,-0.8315,0.0,-0.5556,-0.7071,0.0,-0.7071,-0.5556,0.0,-0.8315,-0.545,0.1939,-0.8157,-0.6937,0.1939,-0.6937,-0.6937,0.1939,-0.6937,-0.7071,0.0,-0.7071,-0.5556,0.0,-0.8315,-0.3827,0.0,-0.9239,-0.3754,0.1939,-0.9063,-0.545,0.1939,-0.8157,-0.545,0.1939,-0.8157,-0.5556,0.0,-0.8315,-0.3827,0.0,-0.9239,-0.1951,0.0,-0.9808,-0.1914,0.1939,-0.9622,-0.3754,0.1939,-0.9063,-0.3754,0.1939,-0.9063,-0.3827,0.0,-0.9239,-0.1951,0.0,-0.9808,-0.098,0.0,-0.9952,-0.0962,0.193,-0.9765,-0.1914,0.1939,-0.9622,-0.1914,0.1939,-0.9622,-0.1951,0.0,-0.9808,-0.098,0.0,-0.9952,-0.1914,-0.1939,0.9622,-0.1951,0.0,0.9808,-0.098,0.0,0.9952,-0.098,0.0,0.9952,-0.0962,-0.193,0.9765,-0.1914,-0.1939,0.9622,-0.3754,-0.1939,0.9063,-0.3827,0.0,0.9239,-0.1951,0.0,0.9808,-0.1951,0.0,0.9808,-0.1914,-0.1939,0.9622,-0.3754,-0.1939,0.9063,-0.545,-0.1939,0.8157,-0.5556,0.0,0.8315,-0.3827,0.0,0.9239,-0.3827,0.0,0.9239,-0.3754,-0.1939,0.9063,-0.545,-0.1939,0.8157,-0.6937,-0.1939,0.6937,-0.7071,0.0,0.7071,-0.5556,0.0,0.8315,-0.5556,0.0,0.8315,-0.545,-0.1939,0.8157,-0.6937,-0.1939,0.6937,-0.8157,-0.1939,0.545,-0.8315,0.0,0.5556,-0.7071,0.0,0.7071,-0.7071,0.0,0.7071,-0.6937,-0.1939,0.6937,-0.8157,-0.1939,0.545,-0.9063,-0.1939,0.3754,-0.9239,0.0,0.3827,-0.8315,0.0,0.5556,-0.8315,0.0,0.5556,-0.8157,-0.1939,0.545,-0.9063,-0.1939,0.3754,-0.9622,-0.1939,0.1914,-0.9808,0.0,0.1951,-0.9239,0.0,0.3827,-0.9239,0.0,0.3827,-0.9063,-0.1939,0.3754,-0.9622,-0.1939,0.1914,-0.981,-0.1939,0.0,-1.0,0.0,0.0,-0.9808,0.0,0.1951,-0.9808,0.0,0.1951,-0.9622,-0.1939,0.1914,-0.981,-0.1939,0.0,-0.9622,-0.1939,-0.1914,-0.9808,0.0,-0.1951,-1.0,0.0,0.0,-1.0,0.0,0.0,-0.981,-0.1939,0.0,-0.9622,-0.1939,-0.1914,-0.9063,-0.1939,-0.3754,-0.9239,0.0,-0.3827,-0.9808,0.0,-0.1951,-0.9808,0.0,-0.1951,-0.9622,-0.1939,-0.1914,-0.9063,-0.1939,-0.3754,-0.8157,-0.1939,-0.545,-0.8315,0.0,-0.5556,-0.9239,0.0,-0.3827,-0.9239,0.0,-0.3827,-0.9063,-0.1939,-0.3754,-0.8157,-0.1939,-0.545,-0.6937,-0.1939,-0.6937,-0.7071,0.0,-0.7071,-0.8315,0.0,-0.5556,-0.8315,0.0,-0.5556,-0.8157,-0.1939,-0.545,-0.6937,-0.1939,-0.6937,-0.545,-0.1939,-0.8157,-0.5556,0.0,-0.8315,-0.7071,0.0,-0.7071,-0.7071,0.0,-0.7071,-0.6937,-0.1939,-0.6937,-0.545,-0.1939,-0.8157,-0.3754,-0.1939,-0.9063,-0.3827,0.0,-0.9239,-0.5556,0.0,-0.8315,-0.5556,0.0,-0.8315,-0.545,-0.1939,-0.8157,-0.3754,-0.1939,-0.9063,-0.1914,-0.1939,-0.9622,-0.1951,0.0,-0.9808,-0.3827,0.0,-0.9239,-0.3827,0.0,-0.9239,-0.3754,-0.1939,-0.9063,-0.1914,-0.1939,-0.9622,-0.0962,-0.193,-0.9765,-0.098,0.0,-0.9952,-0.1951,0.0,-0.9808,-0.1951,0.0,-0.9808,-0.1914,-0.1939,-0.9622,-0.0962,-0.193,-0.9765,-0.1804,-0.3805,0.907,-0.1914,-0.1939,0.9622,-0.0962,-0.193,0.9765,-0.0962,-0.193,0.9765,-0.0907,-0.379,0.921,-0.1804,-0.3805,0.907,-0.3539,-0.3805,0.8544,-0.3754,-0.1939,0.9063,-0.1914,-0.1939,0.9622,-0.1914,-0.1939,0.9622,-0.1804,-0.3805,0.907,-0.3539,-0.3805,0.8544,-0.5138,-0.3805,0.7689,-0.545,-0.1939,0.8157,-0.3754,-0.1939,0.9063,-0.3754,-0.1939,0.9063,-0.3539,-0.3805,0.8544,-0.5138,-0.3805,0.7689,-0.6539,-0.3805,0.6539,-0.6937,-0.1939,0.6937,-0.545,-0.1939,0.8157,-0.545,-0.1939,0.8157,-0.5138,-0.3805,0.7689,-0.6539,-0.3805,0.6539,-0.7689,-0.3805,0.5138,-0.8157,-0.1939,0.545,-0.6937,-0.1939,0.6937,-0.6937,-0.1939,0.6937,-0.6539,-0.3805,0.6539,-0.7689,-0.3805,0.5138,-0.8544,-0.3805,0.3539,-0.9063,-0.1939,0.3754,-0.8157,-0.1939,0.545,-0.8157,-0.1939,0.545,-0.7689,-0.3805,0.5138,-0.8544,-0.3805,0.3539,-0.907,-0.3805,0.1804,-0.9622,-0.1939,0.1914,-0.9063,-0.1939,0.3754,-0.9063,-0.1939,0.3754,-0.8544,-0.3805,0.3539,-0.907,-0.3805,0.1804,-0.9248,-0.3805,0.0,-0.981,-0.1939,0.0,-0.9622,-0.1939,0.1914,-0.9622,-0.1939,0.1914,-0.907,-0.3805,0.1804,-0.9248,-0.3805,0.0,-0.907,-0.3805,-0.1804,-0.9622,-0.1939,-0.1914,-0.981,-0.1939,0.0,-0.981,-0.1939,0.0,-0.9248,-0.3805,0.0,-0.907,-0.3805,-0.1804,-0.8544,-0.3805,-0.3539,-0.9063,-0.1939,-0.3754,-0.9622,-0.1939,-0.1914,-0.9622,-0.1939,-0.1914,-0.907,-0.3805,-0.1804,-0.8544,-0.3805,-0.3539,-0.7689,-0.3805,-0.5138,-0.8157,-0.1939,-0.545,-0.9063,-0.1939,-0.3754,-0.9063,-0.1939,-0.3754,-0.8544,-0.3805,-0.3539,-0.7689,-0.3805,-0.5138,-0.6539,-0.3805,-0.6539,-0.6937,-0.1939,-0.6937,-0.8157,-0.1939,-0.545,-0.8157,-0.1939,-0.545,-0.7689,-0.3805,-0.5138,-0.6539,-0.3805,-0.6539,-0.5138,-0.3805,-0.7689,-0.545,-0.1939,-0.8157,-0.6937,-0.1939,-0.6937,-0.6937,-0.1939,-0.6937,-0.6539,-0.3805,-0.6539,-0.5138,-0.3805,-0.7689,-0.3539,-0.3805,-0.8544,-0.3754,-0.1939,-0.9063,-0.545,-0.1939,-0.8157,-0.545,-0.1939,-0.8157,-0.5138,-0.3805,-0.7689,-0.3539,-0.3805,-0.8544,-0.1804,-0.3805,-0.907,-0.1914,-0.1939,-0.9622,-0.3754,-0.1939,-0.9063,-0.3754,-0.1939,-0.9063,-0.3539,-0.3805,-0.8544,-0.1804,-0.3805,-0.907,-0.0907,-0.379,-0.921,-0.0962,-0.193,-0.9765,-0.1914,-0.1939,-0.9622,-0.1914,-0.1939,-0.9622,-0.1804,-0.3805,-0.907,-0.0907,-0.379,-0.921,-0.1626,-0.5528,0.8173,-0.1804,-0.3805,0.907,-0.0907,-0.379,0.921,-0.0907,-0.379,0.921,-0.0818,-0.5509,0.8305,-0.1626,-0.5528,0.8173,-0.3189,-0.5528,0.7699,-0.3539,-0.3805,0.8544,-0.1804,-0.3805,0.907,-0.1804,-0.3805,0.907,-0.1626,-0.5528,0.8173,-0.3189,-0.5528,0.7699,-0.463,-0.5528,0.6929,-0.5138,-0.3805,0.7689,-0.3539,-0.3805,0.8544,-0.3539,-0.3805,0.8544,-0.3189,-0.5528,0.7699,-0.463,-0.5528,0.6929,-0.5893,-0.5528,0.5893,-0.6539,-0.3805,0.6539,-0.5138,-0.3805,0.7689,-0.5138,-0.3805,0.7689,-0.463,-0.5528,0.6929,-0.5893,-0.5528,0.5893,-0.6929,-0.5528,0.463,-0.7689,-0.3805,0.5138,-0.6539,-0.3805,0.6539,-0.6539,-0.3805,0.6539,-0.5893,-0.5528,0.5893,-0.6929,-0.5528,0.463,-0.7699,-0.5528,0.3189,-0.8544,-0.3805,0.3539,-0.7689,-0.3805,0.5138,-0.7689,-0.3805,0.5138,-0.6929,-0.5528,0.463,-0.7699,-0.5528,0.3189,-0.8173,-0.5528,0.1626,-0.907,-0.3805,0.1804,-0.8544,-0.3805,0.3539,-0.8544,-0.3805,0.3539,-0.7699,-0.5528,0.3189,-0.8173,-0.5528,0.1626,-0.8333,-0.5528,0.0,-0.9248,-0.3805,0.0,-0.907,-0.3805,0.1804,-0.907,-0.3805,0.1804,-0.8173,-0.5528,0.1626,-0.8333,-0.5528,0.0,-0.8173,-0.5528,-0.1626,-0.907,-0.3805,-0.1804,-0.9248,-0.3805,0.0,-0.9248,-0.3805,0.0,-0.8333,-0.5528,0.0,-0.8173,-0.5528,-0.1626,-0.7699,-0.5528,-0.3189,-0.8544,-0.3805,-0.3539,-0.907,-0.3805,-0.1804,-0.907,-0.3805,-0.1804,-0.8173,-0.5528,-0.1626,-0.7699,-0.5528,-0.3189,-0.6929,-0.5528,-0.463,-0.7689,-0.3805,-0.5138,-0.8544,-0.3805,-0.3539,-0.8544,-0.3805,-0.3539,-0.7699,-0.5528,-0.3189,-0.6929,-0.5528,-0.463,-0.5893,-0.5528,-0.5893,-0.6539,-0.3805,-0.6539,-0.7689,-0.3805,-0.5138,-0.7689,-0.3805,-0.5138,-0.6929,-0.5528,-0.463,-0.5893,-0.5528,-0.5893,-0.463,-0.5528,-0.6929,-0.5138,-0.3805,-0.7689,-0.6539,-0.3805,-0.6539,-0.6539,-0.3805,-0.6539,-0.5893,-0.5528,-0.5893,-0.463,-0.5528,-0.6929,-0.3189,-0.5528,-0.7699,-0.3539,-0.3805,-0.8544,-0.5138,-0.3805,-0.7689,-0.5138,-0.3805,-0.7689,-0.463,-0.5528,-0.6929,-0.3189,-0.5528,-0.7699,-0.1626,-0.5528,-0.8173,-0.1804,-0.3805,-0.907,-0.3539,-0.3805,-0.8544,-0.3539,-0.3805,-0.8544,-0.3189,-0.5528,-0.7699,-0.1626,-0.5528,-0.8173,-0.0818,-0.5509,-0.8305,-0.0907,-0.379,-0.921,-0.1804,-0.3805,-0.907,-0.1804,-0.3805,-0.907,-0.1626,-0.5528,-0.8173,-0.0818,-0.5509,-0.8305,-0.1385,-0.7041,0.6965,-0.1626,-0.5528,0.8173,-0.0818,-0.5509,0.8305,-0.0818,-0.5509,0.8305,-0.0698,-0.7023,0.7084,-0.1385,-0.7041,0.6965,-0.2718,-0.7041,0.6561,-0.3189,-0.5528,0.7699,-0.1626,-0.5528,0.8173,-0.1626,-0.5528,0.8173,-0.1385,-0.7041,0.6965,-0.2718,-0.7041,0.6561,-0.3945,-0.7041,0.5905,-0.463,-0.5528,0.6929,-0.3189,-0.5528,0.7699,-0.3189,-0.5528,0.7699,-0.2718,-0.7041,0.6561,-0.3945,-0.7041,0.5905,-0.5021,-0.7041,0.5021,-0.5893,-0.5528,0.5893,-0.463,-0.5528,0.6929,-0.463,-0.5528,0.6929,-0.3945,-0.7041,0.5905,-0.5021,-0.7041,0.5021,-0.5905,-0.7041,0.3945,-0.6929,-0.5528,0.463,-0.5893,-0.5528,0.5893,-0.5893,-0.5528,0.5893,-0.5021,-0.7041,0.5021,-0.5905,-0.7041,0.3945,-0.6561,-0.7041,0.2718,-0.7699,-0.5528,0.3189,-0.6929,-0.5528,0.463,-0.6929,-0.5528,0.463,-0.5905,-0.7041,0.3945,-0.6561,-0.7041,0.2718,-0.6965,-0.7041,0.1385,-0.8173,-0.5528,0.1626,-0.7699,-0.5528,0.3189,-0.7699,-0.5528,0.3189,-0.6561,-0.7041,0.2718,-0.6965,-0.7041,0.1385,-0.7101,-0.7041,0.0,-0.8333,-0.5528,0.0,-0.8173,-0.5528,0.1626,-0.8173,-0.5528,0.1626,-0.6965,-0.7041,0.1385,-0.7101,-0.7041,0.0,-0.6965,-0.7041,-0.1385,-0.8173,-0.5528,-0.1626,-0.8333,-0.5528,0.0,-0.8333,-0.5528,0.0,-0.7101,-0.7041,0.0,-0.6965,-0.7041,-0.1385,-0.6561,-0.7041,-0.2718,-0.7699,-0.5528,-0.3189,-0.8173,-0.5528,-0.1626,-0.8173,-0.5528,-0.1626,-0.6965,-0.7041,-0.1385,-0.6561,-0.7041,-0.2718,-0.5905,-0.7041,-0.3945,-0.6929,-0.5528,-0.463,-0.7699,-0.5528,-0.3189,-0.7699,-0.5528,-0.3189,-0.6561,-0.7041,-0.2718,-0.5905,-0.7041,-0.3945,-0.5021,-0.7041,-0.5021,-0.5893,-0.5528,-0.5893,-0.6929,-0.5528,-0.463,-0.6929,-0.5528,-0.463,-0.5905,-0.7041,-0.3945,-0.5021,-0.7041,-0.5021,-0.3945,-0.7041,-0.5905,-0.463,-0.5528,-0.6929,-0.5893,-0.5528,-0.5893,-0.5893,-0.5528,-0.5893,-0.5021,-0.7041,-0.5021,-0.3945,-0.7041,-0.5905,-0.2718,-0.7041,-0.6561,-0.3189,-0.5528,-0.7699,-0.463,-0.5528,-0.6929,-0.463,-0.5528,-0.6929,-0.3945,-0.7041,-0.5905,-0.2718,-0.7041,-0.6561,-0.1385,-0.7041,-0.6965,-0.1626,-0.5528,-0.8173,-0.3189,-0.5528,-0.7699,-0.3189,-0.5528,-0.7699,-0.2718,-0.7041,-0.6561,-0.1385,-0.7041,-0.6965,-0.0698,-0.7023,-0.7084,-0.0818,-0.5509,-0.8305,-0.1626,-0.5528,-0.8173,-0.1626,-0.5528,-0.8173,-0.1385,-0.7041,-0.6965,-0.0698,-0.7023,-0.7084,-0.1092,-0.8286,0.549,-0.1385,-0.7041,0.6965,-0.0698,-0.7023,0.7084,-0.0698,-0.7023,0.7084,-0.055,-0.8274,0.5589,-0.1092,-0.8286,0.549,-0.2142,-0.8286,0.5172,-0.2718,-0.7041,0.6561,-0.1385,-0.7041,0.6965,-0.1385,-0.7041,0.6965,-0.1092,-0.8286,0.549,-0.2142,-0.8286,0.5172,-0.311,-0.8286,0.4654,-0.3945,-0.7041,0.5905,-0.2718,-0.7041,0.6561,-0.2718,-0.7041,0.6561,-0.2142,-0.8286,0.5172,-0.311,-0.8286,0.4654,-0.3958,-0.8286,0.3958,-0.5021,-0.7041,0.5021,-0.3945,-0.7041,0.5905,-0.3945,-0.7041,0.5905,-0.311,-0.8286,0.4654,-0.3958,-0.8286,0.3958,-0.4654,-0.8286,0.311,-0.5905,-0.7041,0.3945,-0.5021,-0.7041,0.5021,-0.5021,-0.7041,0.5021,-0.3958,-0.8286,0.3958,-0.4654,-0.8286,0.311,-0.5172,-0.8286,0.2142,-0.6561,-0.7041,0.2718,-0.5905,-0.7041,0.3945,-0.5905,-0.7041,0.3945,-0.4654,-0.8286,0.311,-0.5172,-0.8286,0.2142,-0.549,-0.8286,0.1092,-0.6965,-0.7041,0.1385,-0.6561,-0.7041,0.2718,-0.6561,-0.7041,0.2718,-0.5172,-0.8286,0.2142,-0.549,-0.8286,0.1092,-0.5598,-0.8286,0.0,-0.7101,-0.7041,0.0,-0.6965,-0.7041,0.1385,-0.6965,-0.7041,0.1385,-0.549,-0.8286,0.1092,-0.5598,-0.8286,0.0,-0.549,-0.8286,-0.1092,-0.6965,-0.7041,-0.1385,-0.7101,-0.7041,0.0,-0.7101,-0.7041,0.0,-0.5598,-0.8286,0.0,-0.549,-0.8286,-0.1092,-0.5172,-0.8286,-0.2142,-0.6561,-0.7041,-0.2718,-0.6965,-0.7041,-0.1385,-0.6965,-0.7041,-0.1385,-0.549,-0.8286,-0.1092,-0.5172,-0.8286,-0.2142,-0.4654,-0.8286,-0.311,-0.5905,-0.7041,-0.3945,-0.6561,-0.7041,-0.2718,-0.6561,-0.7041,-0.2718,-0.5172,-0.8286,-0.2142,-0.4654,-0.8286,-0.311,-0.3958,-0.8286,-0.3958,-0.5021,-0.7041,-0.5021,-0.5905,-0.7041,-0.3945,-0.5905,-0.7041,-0.3945,-0.4654,-0.8286,-0.311,-0.3958,-0.8286,-0.3958,-0.311,-0.8286,-0.4654,-0.3945,-0.7041,-0.5905,-0.5021,-0.7041,-0.5021,-0.5021,-0.7041,-0.5021,-0.3958,-0.8286,-0.3958,-0.311,-0.8286,-0.4654,-0.2142,-0.8286,-0.5172,-0.2718,-0.7041,-0.6561,-0.3945,-0.7041,-0.5905,-0.3945,-0.7041,-0.5905,-0.311,-0.8286,-0.4654,-0.2142,-0.8286,-0.5172,-0.1092,-0.8286,-0.549,-0.1385,-0.7041,-0.6965,-0.2718,-0.7041,-0.6561,-0.2718,-0.7041,-0.6561,-0.2142,-0.8286,-0.5172,-0.1092,-0.8286,-0.549,-0.055,-0.8274,-0.5589,-0.0698,-0.7023,-0.7084,-0.1385,-0.7041,-0.6965,-0.1385,-0.7041,-0.6965,-0.1092,-0.8286,-0.549,-0.055,-0.8274,-0.5589,-0.0757,-0.9217,0.3804,-0.1092,-0.8286,0.549,-0.055,-0.8274,0.5589,-0.055,-0.8274,0.5589,-0.0382,-0.921,0.3876,-0.0757,-0.9217,0.3804,-0.1484,-0.9217,0.3584,-0.2142,-0.8286,0.5172,-0.1092,-0.8286,0.549,-0.1092,-0.8286,0.549,-0.0757,-0.9217,0.3804,-0.1484,-0.9217,0.3584,-0.2155,-0.9217,0.3225,-0.311,-0.8286,0.4654,-0.2142,-0.8286,0.5172,-0.2142,-0.8286,0.5172,-0.1484,-0.9217,0.3584,-0.2155,-0.9217,0.3225,-0.2743,-0.9217,0.2743,-0.3958,-0.8286,0.3958,-0.311,-0.8286,0.4654,-0.311,-0.8286,0.4654,-0.2155,-0.9217,0.3225,-0.2743,-0.9217,0.2743,-0.3225,-0.9217,0.2155,-0.4654,-0.8286,0.311,-0.3958,-0.8286,0.3958,-0.3958,-0.8286,0.3958,-0.2743,-0.9217,0.2743,-0.3225,-0.9217,0.2155,-0.3584,-0.9217,0.1484,-0.5172,-0.8286,0.2142,-0.4654,-0.8286,0.311,-0.4654,-0.8286,0.311,-0.3225,-0.9217,0.2155,-0.3584,-0.9217,0.1484,-0.3804,-0.9217,0.0757,-0.549,-0.8286,0.1092,-0.5172,-0.8286,0.2142,-0.5172,-0.8286,0.2142,-0.3584,-0.9217,0.1484,-0.3804,-0.9217,0.0757,-0.3879,-0.9217,0.0,-0.5598,-0.8286,0.0,-0.549,-0.8286,0.1092,-0.549,-0.8286,0.1092,-0.3804,-0.9217,0.0757,-0.3879,-0.9217,0.0,-0.3804,-0.9217,-0.0757,-0.549,-0.8286,-0.1092,-0.5598,-0.8286,0.0,-0.5598,-0.8286,0.0,-0.3879,-0.9217,0.0,-0.3804,-0.9217,-0.0757,-0.3584,-0.9217,-0.1484,-0.5172,-0.8286,-0.2142,-0.549,-0.8286,-0.1092,-0.549,-0.8286,-0.1092,-0.3804,-0.9217,-0.0757,-0.3584,-0.9217,-0.1484,-0.3225,-0.9217,-0.2155,-0.4654,-0.8286,-0.311,-0.5172,-0.8286,-0.2142,-0.5172,-0.8286,-0.2142,-0.3584,-0.9217,-0.1484,-0.3225,-0.9217,-0.2155,-0.2743,-0.9217,-0.2743,-0.3958,-0.8286,-0.3958,-0.4654,-0.8286,-0.311,-0.4654,-0.8286,-0.311,-0.3225,-0.9217,-0.2155,-0.2743,-0.9217,-0.2743,-0.2155,-0.9217,-0.3225,-0.311,-0.8286,-0.4654,-0.3958,-0.8286,-0.3958,-0.3958,-0.8286,-0.3958,-0.2743,-0.9217,-0.2743,-0.2155,-0.9217,-0.3225,-0.1484,-0.9217,-0.3584,-0.2142,-0.8286,-0.5172,-0.311,-0.8286,-0.4654,-0.311,-0.8286,-0.4654,-0.2155,-0.9217,-0.3225,-0.1484,-0.9217,-0.3584,-0.0757,-0.9217,-0.3804,-0.1092,-0.8286,-0.549,-0.2142,-0.8286,-0.5172,-0.2142,-0.8286,-0.5172,-0.1484,-0.9217,-0.3584,-0.0757,-0.9217,-0.3804,-0.0382,-0.921,-0.3876,-0.055,-0.8274,-0.5589,-0.1092,-0.8286,-0.549,-0.1092,-0.8286,-0.549,-0.0757,-0.9217,-0.3804,-0.0382,-0.921,-0.3876,-0.0392,-0.9796,0.1971,-0.0757,-0.9217,0.3804,-0.0382,-0.921,0.3876,-0.0382,-0.921,0.3876,-0.0198,-0.9794,0.2009,-0.0392,-0.9796,0.1971,-0.0769,-0.9796,0.1857,-0.1484,-0.9217,0.3584,-0.0757,-0.9217,0.3804,-0.0757,-0.9217,0.3804,-0.0392,-0.9796,0.1971,-0.0769,-0.9796,0.1857,-0.1117,-0.9796,0.1671,-0.2155,-0.9217,0.3225,-0.1484,-0.9217,0.3584,-0.1484,-0.9217,0.3584,-0.0769,-0.9796,0.1857,-0.1117,-0.9796,0.1671,-0.1421,-0.9796,0.1421,-0.2743,-0.9217,0.2743,-0.2155,-0.9217,0.3225,-0.2155,-0.9217,0.3225,-0.1117,-0.9796,0.1671,-0.1421,-0.9796,0.1421,-0.1671,-0.9796,0.1117,-0.3225,-0.9217,0.2155,-0.2743,-0.9217,0.2743,-0.2743,-0.9217,0.2743,-0.1421,-0.9796,0.1421,-0.1671,-0.9796,0.1117,-0.1857,-0.9796,0.0769,-0.3584,-0.9217,0.1484,-0.3225,-0.9217,0.2155,-0.3225,-0.9217,0.2155,-0.1671,-0.9796,0.1117,-0.1857,-0.9796,0.0769,-0.1971,-0.9796,0.0392,-0.3804,-0.9217,0.0757,-0.3584,-0.9217,0.1484,-0.3584,-0.9217,0.1484,-0.1857,-0.9796,0.0769,-0.1971,-0.9796,0.0392,-0.201,-0.9796,0.0,-0.3879,-0.9217,0.0,-0.3804,-0.9217,0.0757,-0.3804,-0.9217,0.0757,-0.1971,-0.9796,0.0392,-0.201,-0.9796,0.0,-0.1971,-0.9796,-0.0392,-0.3804,-0.9217,-0.0757,-0.3879,-0.9217,0.0,-0.3879,-0.9217,0.0,-0.201,-0.9796,0.0,-0.1971,-0.9796,-0.0392,-0.1857,-0.9796,-0.0769,-0.3584,-0.9217,-0.1484,-0.3804,-0.9217,-0.0757,-0.3804,-0.9217,-0.0757,-0.1971,-0.9796,-0.0392,-0.1857,-0.9796,-0.0769,-0.1671,-0.9796,-0.1117,-0.3225,-0.9217,-0.2155,-0.3584,-0.9217,-0.1484,-0.3584,-0.9217,-0.1484,-0.1857,-0.9796,-0.0769,-0.1671,-0.9796,-0.1117,-0.1421,-0.9796,-0.1421,-0.2743,-0.9217,-0.2743,-0.3225,-0.9217,-0.2155,-0.3225,-0.9217,-0.2155,-0.1671,-0.9796,-0.1117,-0.1421,-0.9796,-0.1421,-0.1117,-0.9796,-0.1671,-0.2155,-0.9217,-0.3225,-0.2743,-0.9217,-0.2743,-0.2743,-0.9217,-0.2743,-0.1421,-0.9796,-0.1421,-0.1117,-0.9796,-0.1671,-0.0769,-0.9796,-0.1857,-0.1484,-0.9217,-0.3584,-0.2155,-0.9217,-0.3225,-0.2155,-0.9217,-0.3225,-0.1117,-0.9796,-0.1671,-0.0769,-0.9796,-0.1857,-0.0392,-0.9796,-0.1971,-0.0757,-0.9217,-0.3804,-0.1484,-0.9217,-0.3584,-0.1484,-0.9217,-0.3584,-0.0769,-0.9796,-0.1857,-0.0392,-0.9796,-0.1971,-0.0198,-0.9794,-0.2009,-0.0382,-0.921,-0.3876,-0.0757,-0.9217,-0.3804,-0.0757,-0.9217,-0.3804,-0.0392,-0.9796,-0.1971,-0.0198,-0.9794,-0.2009,-0.063,-0.998,0.0,-0.0392,-0.9796,0.1971,-0.0198,-0.9794,0.2009,-0.063,-0.998,0.0,-0.0769,-0.9796,0.1857,-0.0392,-0.9796,0.1971,-0.063,-0.998,0.0,-0.1117,-0.9796,0.1671,-0.0769,-0.9796,0.1857,-0.063,-0.998,0.0,-0.1421,-0.9796,0.1421,-0.1117,-0.9796,0.1671,-0.063,-0.998,0.0,-0.1671,-0.9796,0.1117,-0.1421,-0.9796,0.1421,-0.063,-0.998,0.0,-0.1857,-0.9796,0.0769,-0.1671,-0.9796,0.1117,-0.063,-0.998,0.0,-0.1971,-0.9796,0.0392,-0.1857,-0.9796,0.0769,-0.063,-0.998,0.0,-0.201,-0.9796,0.0,-0.1971,-0.9796,0.0392,-0.063,-0.998,0.0,-0.1971,-0.9796,-0.0392,-0.201,-0.9796,0.0,-0.063,-0.998,0.0,-0.1857,-0.9796,-0.0769,-0.1971,-0.9796,-0.0392,-0.063,-0.998,0.0,-0.1671,-0.9796,-0.1117,-0.1857,-0.9796,-0.0769,-0.063,-0.998,0.0,-0.1421,-0.9796,-0.1421,-0.1671,-0.9796,-0.1117,-0.063,-0.998,0.0,-0.1117,-0.9796,-0.1671,-0.1421,-0.9796,-0.1421,-0.063,-0.998,0.0,-0.0769,-0.9796,-0.1857,-0.1117,-0.9796,-0.1671,-0.063,-0.998,0.0,-0.0392,-0.9796,-0.1971,-0.0769,-0.9796,-0.1857,-0.063,-0.998,0.0,-0.0198,-0.9794,-0.2009,-0.0392,-0.9796,-0.1971],"tangents":null,"uvs":[0.0,2.0,0.0,1.9375,0.0312,1.9375,0.0312,2.0,0.0312,1.9375,0.0625,1.9375,0.0625,2.0,0.0625,1.9375,0.0938,1.9375,0.0938,2.0,0.0938,1.9375,0.125,1.9375,0.125,2.0,0.125,1.9375,0.1562,1.9375,0.1562,2.0,0.1562,1.9375,0.1875,1.9375,0.1875,2.0,0.1875,1.9375,0.2187,1.9375,0.2187,2.0,0.2187,1.9375,0.25,1.9375,0.25,2.0,0.25,1.9375,0.2812,1.9375,0.2812,2.0,0.2812,1.9375,0.3125,1.9375,0.3125,2.0,0.3125,1.9375,0.3437,1.9375,0.3437,2.0,0.3437,1.9375,0.375,1.9375,0.375,2.0,0.375,1.9375,0.4062,1.9375,0.4062,2.0,0.4062,1.9375,0.4375,1.9375,0.4375,2.0,0.4375,1.9375,0.4688,1.9375,0.4688,2.0,0.4688,1.9375,0.5,1.9375,0.0312,1.875,0.0312,1.9375,0.0,1.9375,0.0,1.9375,0.0,1.875,0.0312,1.875,0.0625,1.875,0.0625,1.9375,0.0312,1.9375,0.0312,1.9375,0.0312,1.875,0.0625,1.875,0.0938,1.875,0.0938,1.9375,0.0625,1.9375,0.0625,1.9375,0.0625,1.875,0.0938,1.875,0.125,1.875,0.125,1.9375,0.0938,1.9375,0.0938,1.9375,0.0938,1.875,0.125,1.875,0.1562,1.875,0.1562,1.9375,0.125,1.9375,0.125,1.9375,0.125,1.875,0.1562,1.875,0.1875,1.875,0.1875,1.9375,0.1562,1.9375,0.1562,1.9375,0.1562,1.875,0.1875,1.875,0.2187,1.875,0.2187,1.9375,0.1875,1.9375,0.1875,1.9375,0.1875,1.875,0.2187,1.875,0.25,1.875,0.25,1.9375,0.2187,1.9375,0.2187,1.9375,0.2187,1.875,0.25,1.875,0.2812,1.875,0.2812,1.9375,0.25,1.9375,0.25,1.9375,0.25,1.875,0.2812,1.875,0.3125,1.875,0.3125,1.9375,0.2812,1.9375,0.2812,1.9375,0.2812,1.875,0.3125,1.875,0.3437,1.875,0.3437,1.9375,0.3125,1.9375,0.3125,1.9375,0.3125,1.875,0.3437,1.875,0.375,1.875,0.375,1.9375,0.3437,1.9375,0.3437,1.9375,0.3437,1.875,0.375,1.875,0.4062,1.875,0.4062,1.9375,0.375,1.9375,0.375,1.9375,0.375,1.875,0.4062,1.875,0.4375,1.875,0.4375,1.9375,0.4062,1.9375,0.4062,1.9375,0.4062,1.875,0.4375,1.875,0.4688,1.875,0.4688,1.9375,0.4375,1.9375,0.4375,1.9375,0.4375,1.875,0.4688,1.875,0.5,1.875,0.5,1.9375,0.4688,1.9375,0.4688,1.9375,0.4688,1.875,0.5,1.875,0.0312,1.8125,0.0312,1.875,0.0,1.875,0.0,1.875,0.0,1.8125,0.0312,1.8125,0.0625,1.8125,0.0625,1.875,0.0312,1.875,0.0312,1.875,0.0312,1.8125,0.0625,1.8125,0.0938,1.8125,0.0938,1.875,0.0625,1.875,0.0625,1.875,0.0625,1.8125,0.0938,1.8125,0.125,1.8125,0.125,1.875,0.0938,1.875,0.0938,1.875,0.0938,1.8125,0.125,1.8125,0.1562,1.8125,0.1562,1.875,0.125,1.875,0.125,1.875,0.125,1.8125,0.1562,1.8125,0.1875,1.8125,0.1875,1.875,0.1562,1.875,0.1562,1.875,0.1562,1.8125,0.1875,1.8125,0.2187,1.8125,0.2187,1.875,0.1875,1.875,0.1875,1.875,0.1875,1.8125,0.2187,1.8125,0.25,1.8125,0.25,1.875,0.2187,1.875,0.2187,1.875,0.2187,1.8125,0.25,1.8125,0.2812,1.8125,0.2812,1.875,0.25,1.875,0.25,1.875,0.25,1.8125,0.2812,1.8125,0.3125,1.8125,0.3125,1.875,0.2812,1.875,0.2812,1.875,0.2812,1.8125,0.3125,1.8125,0.3437,1.8125,0.3437,1.875,0.3125,1.875,0.3125,1.875,0.3125,1.8125,0.3437,1.8125,0.375,1.8125,0.375,1.875,0.3437,1.875,0.3437,1.875,0.3437,1.8125,0.375,1.8125,0.4062,1.8125,0.4062,1.875,0.375,1.875,0.375,1.875,0.375,1.8125,0.4062,1.8125,0.4375,1.8125,0.4375,1.875,0.4062,1.875,0.4062,1.875,0.4062,1.8125,0.4375,1.8125,0.4688,1.8125,0.4688,1.875,0.4375,1.875,0.4375,1.875,0.4375,1.8125,0.4688,1.8125,0.5,1.8125,0.5,1.875,0.4688,1.875,0.4688,1.875,0.4688,1.8125,0.5,1.8125,0.0312,1.75,0.0312,1.8125,0.0,1.8125,0.0,1.8125,0.0,1.75,0.0312,1.75,0.0625,1.75,0.0625,1.8125,0.0312,1.8125,0.0312,1.8125,0.0312,1.75,0.0625,1.75,0.0938,1.75,0.0938,1.8125,0.0625,1.8125,0.0625,1.8125,0.0625,1.75,0.0938,1.75,0.125,1.75,0.125,1.8125,0.0938,1.8125,0.0938,1.8125,0.0938,1.75,0.125,1.75,0.1562,1.75,0.1562,1.8125,0.125,1.8125,0.125,1.8125,0.125,1.75,0.1562,1.75,0.1875,1.75,0.1875,1.8125,0.1562,1.8125,0.1562,1.8125,0.1562,1.75,0.1875,1.75,0.2187,1.75,0.2187,1.8125,0.1875,1.8125,0.1875,1.8125,0.1875,1.75,0.2187,1.75,0.25,1.75,0.25,1.8125,0.2187,1.8125,0.2187,1.8125,0.2187,1.75,0.25,1.75,0.2812,1.75,0.2812,1.8125,0.25,1.8125,0.25,1.8125,0.25,1.75,0.2812,1.75,0.3125,1.75,0.3125,1.8125,0.2812,1.8125,0.2812,1.8125,0.2812,1.75,0.3125,1.75,0.3437,1.75,0.3437,1.8125,0.3125,1.8125,0.3125,1.8125,0.3125,1.75,0.3437,1.75,0.375,1.75,0.375,1.8125,0.3437,1.8125,0.3437,1.8125,0.3437,1.75,0.375,1.75,0.4062,1.75,0.4062,1.8125,0.375,1.8125,0.375,1.8125,0.375,1.75,0.4062,1.75,0.4375,1.75,0.4375,1.8125,0.4062,1.8125,0.4062,1.8125,0.4062,1.75,0.4375,1.75,0.4688,1.75,0.4688,1.8125,0.4375,1.8125,0.4375,1.8125,0.4375,1.75,0.4688,1.75,0.5,1.75,0.5,1.8125,0.4688,1.8125,0.4688,1.8125,0.4688,1.75,0.5,1.75,0.0312,1.6875,0.0312,1.75,0.0,1.75,0.0,1.75,0.0,1.6875,0.0312,1.6875,0.0625,1.6875,0.0625,1.75,0.0312,1.75,0.0312,1.75,0.0312,1.6875,0.0625,1.6875,0.0938,1.6875,0.0938,1.75,0.0625,1.75,0.0625,1.75,0.0625,1.6875,0.0938,1.6875,0.125,1.6875,0.125,1.75,0.0938,1.75,0.0938,1.75,0.0938,1.6875,0.125,1.6875,0.1562,1.6875,0.1562,1.75,0.125,1.75,0.125,1.75,0.125,1.6875,0.1562,1.6875,0.1875,1.6875,0.1875,1.75,0.1562,1.75,0.1562,1.75,0.1562,1.6875,0.1875,1.6875,0.2187,1.6875,0.2187,1.75,0.1875,1.75,0.1875,1.75,0.1875,1.6875,0.2187,1.6875,0.25,1.6875,0.25,1.75,0.2187,1.75,0.2187,1.75,0.2187,1.6875,0.25,1.6875,0.2812,1.6875,0.2812,1.75,0.25,1.75,0.25,1.75,0.25,1.6875,0.2812,1.6875,0.3125,1.6875,0.3125,1.75,0.2812,1.75,0.2812,1.75,0.2812,1.6875,0.3125,1.6875,0.3437,1.6875,0.3437,1.75,0.3125,1.75,0.3125,1.75,0.3125,1.6875,0.3437,1.6875,0.375,1.6875,0.375,1.75,0.3437,1.75,0.3437,1.75,0.3437,1.6875,0.375,1.6875,0.4062,1.6875,0.4062,1.75,0.375,1.75,0.375,1.75,0.375,1.6875,0.4062,1.6875,0.4375,1.6875,0.4375,1.75,0.4062,1.75,0.4062,1.75,0.4062,1.6875,0.4375,1.6875,0.4688,1.6875,0.4688,1.75,0.4375,1.75,0.4375,1.75,0.4375,1.6875,0.4688,1.6875,0.5,1.6875,0.5,1.75,0.4688,1.75,0.4688,1.75,0.4688,1.6875,0.5,1.6875,0.0312,1.625,0.0312,1.6875,0.0,1.6875,0.0,1.6875,0.0,1.625,0.0312,1.625,0.0625,1.625,0.0625,1.6875,0.0312,1.6875,0.0312,1.6875,0.0312,1.625,0.0625,1.625,0.0938,1.625,0.0938,1.6875,0.0625,1.6875,0.0625,1.6875,0.0625,1.625,0.0938,1.625,0.125,1.625,0.125,1.6875,0.0938,1.6875,0.0938,1.6875,0.0938,1.625,0.125,1.625,0.1562,1.625,0.1562,1.6875,0.125,1.6875,0.125,1.6875,0.125,1.625,0.1562,1.625,0.1875,1.625,0.1875,1.6875,0.1562,1.6875,0.1562,1.6875,0.1562,1.625,0.1875,1.625,0.2187,1.625,0.2187,1.6875,0.1875,1.6875,0.1875,1.6875,0.1875,1.625,0.2187,1.625,0.25,1.625,0.25,1.6875,0.2187,1.6875,0.2187,1.6875,0.2187,1.625,0.25,1.625,0.2812,1.625,0.2812,1.6875,0.25,1.6875,0.25,1.6875,0.25,1.625,0.2812,1.625,0.3125,1.625,0.3125,1.6875,0.2812,1.6875,0.2812,1.6875,0.2812,1.625,0.3125,1.625,0.3437,1.625,0.3437,1.6875,0.3125,1.6875,0.3125,1.6875,0.3125,1.625,0.3437,1.625,0.375,1.625,0.375,1.6875,0.3437,1.6875,0.3437,1.6875,0.3437,1.625,0.375,1.625,0.4062,1.625,0.4062,1.6875,0.375,1.6875,0.375,1.6875,0.375,1.625,0.4062,1.625,0.4375,1.625,0.4375,1.6875,0.4062,1.6875,0.4062,1.6875,0.4062,1.625,0.4375,1.625,0.4688,1.625,0.4688,1.6875,0.4375,1.6875,0.4375,1.6875,0.4375,1.625,0.4688,1.625,0.5,1.625,0.5,1.6875,0.4688,1.6875,0.4688,1.6875,0.4688,1.625,0.5,1.625,0.0312,1.5625,0.0312,1.625,0.0,1.625,0.0,1.625,0.0,1.5625,0.0312,1.5625,0.0625,1.5625,0.0625,1.625,0.0312,1.625,0.0312,1.625,0.0312,1.5625,0.0625,1.5625,0.0938,1.5625,0.0938,1.625,0.0625,1.625,0.0625,1.625,0.0625,1.5625,0.0938,1.5625,0.125,1.5625,0.125,1.625,0.0938,1.625,0.0938,1.625,0.0938,1.5625,0.125,1.5625,0.1562,1.5625,0.1562,1.625,0.125,1.625,0.125,1.625,0.125,1.5625,0.1562,1.5625,0.1875,1.5625,0.1875,1.625,0.1562,1.625,0.1562,1.625,0.1562,1.5625,0.1875,1.5625,0.2187,1.5625,0.2187,1.625,0.1875,1.625,0.1875,1.625,0.1875,1.5625,0.2187,1.5625,0.25,1.5625,0.25,1.625,0.2187,1.625,0.2187,1.625,0.2187,1.5625,0.25,1.5625,0.2812,1.5625,0.2812,1.625,0.25,1.625,0.25,1.625,0.25,1.5625,0.2812,1.5625,0.3125,1.5625,0.3125,1.625,0.2812,1.625,0.2812,1.625,0.2812,1.5625,0.3125,1.5625,0.3437,1.5625,0.3437,1.625,0.3125,1.625,0.3125,1.625,0.3125,1.5625,0.3437,1.5625,0.375,1.5625,0.375,1.625,0.3437,1.625,0.3437,1.625,0.3437,1.5625,0.375,1.5625,0.4062,1.5625,0.4062,1.625,0.375,1.625,0.375,1.625,0.375,1.5625,0.4062,1.5625,0.4375,1.5625,0.4375,1.625,0.4062,1.625,0.4062,1.625,0.4062,1.5625,0.4375,1.5625,0.4688,1.5625,0.4688,1.625,0.4375,1.625,0.4375,1.625,0.4375,1.5625,0.4688,1.5625,0.5,1.5625,0.5,1.625,0.4688,1.625,0.4688,1.625,0.4688,1.5625,0.5,1.5625,0.0312,1.5,0.0312,1.5625,0.0,1.5625,0.0,1.5625,0.0,1.5,0.0312,1.5,0.0625,1.5,0.0625,1.5625,0.0312,1.5625,0.0312,1.5625,0.0312,1.5,0.0625,1.5,0.0938,1.5,0.0938,1.5625,0.0625,1.5625,0.0625,1.5625,0.0625,1.5,0.0938,1.5,0.125,1.5,0.125,1.5625,0.0938,1.5625,0.0938,1.5625,0.0938,1.5,0.125,1.5,0.1562,1.5,0.1562,1.5625,0.125,1.5625,0.125,1.5625,0.125,1.5,0.1562,1.5,0.1875,1.5,0.1875,1.5625,0.1562,1.5625,0.1562,1.5625,0.1562,1.5,0.1875,1.5,0.2187,1.5,0.2187,1.5625,0.1875,1.5625,0.1875,1.5625,0.1875,1.5,0.2187,1.5,0.25,1.5,0.25,1.5625,0.2187,1.5625,0.2187,1.5625,0.2187,1.5,0.25,1.5,0.2812,1.5,0.2812,1.5625,0.25,1.5625,0.25,1.5625,0.25,1.5,0.2812,1.5,0.3125,1.5,0.3125,1.5625,0.2812,1.5625,0.2812,1.5625,0.2812,1.5,0.3125,1.5,0.3437,1.5,0.3437,1.5625,0.3125,1.5625,0.3125,1.5625,0.3125,1.5,0.3437,1.5,0.375,1.5,0.375,1.5625,0.3437,1.5625,0.3437,1.5625,0.3437,1.5,0.375,1.5,0.4062,1.5,0.4062,1.5625,0.375,1.5625,0.375,1.5625,0.375,1.5,0.4062,1.5,0.4375,1.5,0.4375,1.5625,0.4062,1.5625,0.4062,1.5625,0.4062,1.5,0.4375,1.5,0.4688,1.5,0.4688,1.5625,0.4375,1.5625,0.4375,1.5625,0.4375,1.5,0.4688,1.5,0.5,1.5,0.5,1.5625,0.4688,1.5625,0.4688,1.5625,0.4688,1.5,0.5,1.5,0.0312,1.4375,0.0312,1.5,0.0,1.5,0.0,1.5,0.0,1.4375,0.0312,1.4375,0.0625,1.4375,0.0625,1.5,0.0312,1.5,0.0312,1.5,0.0312,1.4375,0.0625,1.4375,0.0938,1.4375,0.0938,1.5,0.0625,1.5,0.0625,1.5,0.0625,1.4375,0.0938,1.4375,0.125,1.4375,0.125,1.5,0.0938,1.5,0.0938,1.5,0.0938,1.4375,0.125,1.4375,0.1562,1.4375,0.1562,1.5,0.125,1.5,0.125,1.5,0.125,1.4375,0.1562,1.4375,0.1875,1.4375,0.1875,1.5,0.1562,1.5,0.1562,1.5,0.1562,1.4375,0.1875,1.4375,0.2187,1.4375,0.2187,1.5,0.1875,1.5,0.1875,1.5,0.1875,1.4375,0.2187,1.4375,0.25,1.4375,0.25,1.5,0.2187,1.5,0.2187,1.5,0.2187,1.4375,0.25,1.4375,0.2812,1.4375,0.2812,1.5,0.25,1.5,0.25,1.5,0.25,1.4375,0.2812,1.4375,0.3125,1.4375,0.3125,1.5,0.2812,1.5,0.2812,1.5,0.2812,1.4375,0.3125,1.4375,0.3437,1.4375,0.3437,1.5,0.3125,1.5,0.3125,1.5,0.3125,1.4375,0.3437,1.4375,0.375,1.4375,0.375,1.5,0.3437,1.5,0.3437,1.5,0.3437,1.4375,0.375,1.4375,0.4062,1.4375,0.4062,1.5,0.375,1.5,0.375,1.5,0.375,1.4375,0.4062,1.4375,0.4375,1.4375,0.4375,1.5,0.4062,1.5,0.4062,1.5,0.4062,1.4375,0.4375,1.4375,0.4688,1.4375,0.4688,1.5,0.4375,1.5,0.4375,1.5,0.4375,1.4375,0.4688,1.4375,0.5,1.4375,0.5,1.5,0.4688,1.5,0.4688,1.5,0.4688,1.4375,0.5,1.4375,0.0312,1.375,0.0312,1.4375,0.0,1.4375,0.0,1.4375,0.0,1.375,0.0312,1.375,0.0625,1.375,0.0625,1.4375,0.0312,1.4375,0.0312,1.4375,0.0312,1.375,0.0625,1.375,0.0938,1.375,0.0938,1.4375,0.0625,1.4375,0.0625,1.4375,0.0625,1.375,0.0938,1.375,0.125,1.375,0.125,1.4375,0.0938,1.4375,0.0938,1.4375,0.0938,1.375,0.125,1.375,0.1562,1.375,0.1562,1.4375,0.125,1.4375,0.125,1.4375,0.125,1.375,0.1562,1.375,0.1875,1.375,0.1875,1.4375,0.1562,1.4375,0.1562,1.4375,0.1562,1.375,0.1875,1.375,0.2187,1.375,0.2187,1.4375,0.1875,1.4375,0.1875,1.4375,0.1875,1.375,0.2187,1.375,0.25,1.375,0.25,1.4375,0.2187,1.4375,0.2187,1.4375,0.2187,1.375,0.25,1.375,0.2812,1.375,0.2812,1.4375,0.25,1.4375,0.25,1.4375,0.25,1.375,0.2812,1.375,0.3125,1.375,0.3125,1.4375,0.2812,1.4375,0.2812,1.4375,0.2812,1.375,0.3125,1.375,0.3437,1.375,0.3437,1.4375,0.3125,1.4375,0.3125,1.4375,0.3125,1.375,0.3437,1.375,0.375,1.375,0.375,1.4375,0.3437,1.4375,0.3437,1.4375,0.3437,1.375,0.375,1.375,0.4062,1.375,0.4062,1.4375,0.375,1.4375,0.375,1.4375,0.375,1.375,0.4062,1.375,0.4375,1.375,0.4375,1.4375,0.4062,1.4375,0.4062,1.4375,0.4062,1.375,0.4375,1.375,0.4688,1.375,0.4688,1.4375,0.4375,1.4375,0.4375,1.4375,0.4375,1.375,0.4688,1.375,0.5,1.375,0.5,1.4375,0.4688,1.4375,0.4688,1.4375,0.4688,1.375,0.5,1.375,0.0312,1.3125,0.0312,1.375,0.0,1.375,0.0,1.375,0.0,1.3125,0.0312,1.3125,0.0625,1.3125,0.0625,1.375,0.0312,1.375,0.0312,1.375,0.0312,1.3125,0.0625,1.3125,0.0938,1.3125,0.0938,1.375,0.0625,1.375,0.0625,1.375,0.0625,1.3125,0.0938,1.3125,0.125,1.3125,0.125,1.375,0.0938,1.375,0.0938,1.375,0.0938,1.3125,0.125,1.3125,0.1562,1.3125,0.1562,1.375,0.125,1.375,0.125,1.375,0.125,1.3125,0.1562,1.3125,0.1875,1.3125,0.1875,1.375,0.1562,1.375,0.1562,1.375,0.1562,1.3125,0.1875,1.3125,0.2187,1.3125,0.2187,1.375,0.1875,1.375,0.1875,1.375,0.1875,1.3125,0.2187,1.3125,0.25,1.3125,0.25,1.375,0.2187,1.375,0.2187,1.375,0.2187,1.3125,0.25,1.3125,0.2812,1.3125,0.2812,1.375,0.25,1.375,0.25,1.375,0.25,1.3125,0.2812,1.3125,0.3125,1.3125,0.3125,1.375,0.2812,1.375,0.2812,1.375,0.2812,1.3125,0.3125,1.3125,0.3437,1.3125,0.3437,1.375,0.3125,1.375,0.3125,1.375,0.3125,1.3125,0.3437,1.3125,0.375,1.3125,0.375,1.375,0.3437,1.375,0.3437,1.375,0.3437,1.3125,0.375,1.3125,0.4062,1.3125,0.4062,1.375,0.375,1.375,0.375,1.375,0.375,1.3125,0.4062,1.3125,0.4375,1.3125,0.4375,1.375,0.4062,1.375,0.4062,1.375,0.4062,1.3125,0.4375,1.3125,0.4688,1.3125,0.4688,1.375,0.4375,1.375,0.4375,1.375,0.4375,1.3125,0.4688,1.3125,0.5,1.3125,0.5,1.375,0.4688,1.375,0.4688,1.375,0.4688,1.3125,0.5,1.3125,0.0312,1.25,0.0312,1.3125,0.0,1.3125,0.0,1.3125,0.0,1.25,0.0312,1.25,0.0625,1.25,0.0625,1.3125,0.0312,1.3125,0.0312,1.3125,0.0312,1.25,0.0625,1.25,0.0938,1.25,0.0938,1.3125,0.0625,1.3125,0.0625,1.3125,0.0625,1.25,0.0938,1.25,0.125,1.25,0.125,1.3125,0.0938,1.3125,0.0938,1.3125,0.0938,1.25,0.125,1.25,0.1562,1.25,0.1562,1.3125,0.125,1.3125,0.125,1.3125,0.125,1.25,0.1562,1.25,0.1875,1.25,0.1875,1.3125,0.1562,1.3125,0.1562,1.3125,0.1562,1.25,0.1875,1.25,0.2187,1.25,0.2187,1.3125,0.1875,1.3125,0.1875,1.3125,0.1875,1.25,0.2187,1.25,0.25,1.25,0.25,1.3125,0.2187,1.3125,0.2187,1.3125,0.2187,1.25,0.25,1.25,0.2812,1.25,0.2812,1.3125,0.25,1.3125,0.25,1.3125,0.25,1.25,0.2812,1.25,0.3125,1.25,0.3125,1.3125,0.2812,1.3125,0.2812,1.3125,0.2812,1.25,0.3125,1.25,0.3437,1.25,0.3437,1.3125,0.3125,1.3125,0.3125,1.3125,0.3125,1.25,0.3437,1.25,0.375,1.25,0.375,1.3125,0.3437,1.3125,0.3437,1.3125,0.3437,1.25,0.375,1.25,0.4062,1.25,0.4062,1.3125,0.375,1.3125,0.375,1.3125,0.375,1.25,0.4062,1.25,0.4375,1.25,0.4375,1.3125,0.4062,1.3125,0.4062,1.3125,0.4062,1.25,0.4375,1.25,0.4688,1.25,0.4688,1.3125,0.4375,1.3125,0.4375,1.3125,0.4375,1.25,0.4688,1.25,0.5,1.25,0.5,1.3125,0.4688,1.3125,0.4688,1.3125,0.4688,1.25,0.5,1.25,0.0312,1.1875,0.0312,1.25,0.0,1.25,0.0,1.25,0.0,1.1875,0.0312,1.1875,0.0625,1.1875,0.0625,1.25,0.0312,1.25,0.0312,1.25,0.0312,1.1875,0.0625,1.1875,0.0938,1.1875,0.0938,1.25,0.0625,1.25,0.0625,1.25,0.0625,1.1875,0.0938,1.1875,0.125,1.1875,0.125,1.25,0.0938,1.25,0.0938,1.25,0.0938,1.1875,0.125,1.1875,0.1562,1.1875,0.1562,1.25,0.125,1.25,0.125,1.25,0.125,1.1875,0.1562,1.1875,0.1875,1.1875,0.1875,1.25,0.1562,1.25,0.1562,1.25,0.1562,1.1875,0.1875,1.1875,0.2187,1.1875,0.2187,1.25,0.1875,1.25,0.1875,1.25,0.1875,1.1875,0.2187,1.1875,0.25,1.1875,0.25,1.25,0.2187,1.25,0.2187,1.25,0.2187,1.1875,0.25,1.1875,0.2812,1.1875,0.2812,1.25,0.25,1.25,0.25,1.25,0.25,1.1875,0.2812,1.1875,0.3125,1.1875,0.3125,1.25,0.2812,1.25,0.2812,1.25,0.2812,1.1875,0.3125,1.1875,0.3437,1.1875,0.3437,1.25,0.3125,1.25,0.3125,1.25,0.3125,1.1875,0.3437,1.1875,0.375,1.1875,0.375,1.25,0.3437,1.25,0.3437,1.25,0.3437,1.1875,0.375,1.1875,0.4062,1.1875,0.4062,1.25,0.375,1.25,0.375,1.25,0.375,1.1875,0.4062,1.1875,0.4375,1.1875,0.4375,1.25,0.4062,1.25,0.4062,1.25,0.4062,1.1875,0.4375,1.1875,0.4688,1.1875,0.4688,1.25,0.4375,1.25,0.4375,1.25,0.4375,1.1875,0.4688,1.1875,0.5,1.1875,0.5,1.25,0.4688,1.25,0.4688,1.25,0.4688,1.1875,0.5,1.1875,0.0312,1.125,0.0312,1.1875,0.0,1.1875,0.0,1.1875,0.0,1.125,0.0312,1.125,0.0625,1.125,0.0625,1.1875,0.0312,1.1875,0.0312,1.1875,0.0312,1.125,0.0625,1.125,0.0938,1.125,0.0938,1.1875,0.0625,1.1875,0.0625,1.1875,0.0625,1.125,0.0938,1.125,0.125,1.125,0.125,1.1875,0.0938,1.1875,0.0938,1.1875,0.0938,1.125,0.125,1.125,0.1562,1.125,0.1562,1.1875,0.125,1.1875,0.125,1.1875,0.125,1.125,0.1562,1.125,0.1875,1.125,0.1875,1.1875,0.1562,1.1875,0.1562,1.1875,0.1562,1.125,0.1875,1.125,0.2187,1.125,0.2187,1.1875,0.1875,1.1875,0.1875,1.1875,0.1875,1.125,0.2187,1.125,0.25,1.125,0.25,1.1875,0.2187,1.1875,0.2187,1.1875,0.2187,1.125,0.25,1.125,0.2812,1.125,0.2812,1.1875,0.25,1.1875,0.25,1.1875,0.25,1.125,0.2812,1.125,0.3125,1.125,0.3125,1.1875,0.2812,1.1875,0.2812,1.1875,0.2812,1.125,0.3125,1.125,0.3437,1.125,0.3437,1.1875,0.3125,1.1875,0.3125,1.1875,0.3125,1.125,0.3437,1.125,0.375,1.125,0.375,1.1875,0.3437,1.1875,0.3437,1.1875,0.3437,1.125,0.375,1.125,0.4062,1.125,0.4062,1.1875,0.375,1.1875,0.375,1.1875,0.375,1.125,0.4062,1.125,0.4375,1.125,0.4375,1.1875,0.4062,1.1875,0.4062,1.1875,0.4062,1.125,0.4375,1.125,0.4688,1.125,0.4688,1.1875,0.4375,1.1875,0.4375,1.1875,0.4375,1.125,0.4688,1.125,0.5,1.125,0.5,1.1875,0.4688,1.1875,0.4688,1.1875,0.4688,1.125,0.5,1.125,0.0312,1.0625,0.0312,1.125,0.0,1.125,0.0,1.125,0.0,1.0625,0.0312,1.0625,0.0625,1.0625,0.0625,1.125,0.0312,1.125,0.0312,1.125,0.0312,1.0625,0.0625,1.0625,0.0938,1.0625,0.0938,1.125,0.0625,1.125,0.0625,1.125,0.0625,1.0625,0.0938,1.0625,0.125,1.0625,0.125,1.125,0.0938,1.125,0.0938,1.125,0.0938,1.0625,0.125,1.0625,0.1562,1.0625,0.1562,1.125,0.125,1.125,0.125,1.125,0.125,1.0625,0.1562,1.0625,0.1875,1.0625,0.1875,1.125,0.1562,1.125,0.1562,1.125,0.1562,1.0625,0.1875,1.0625,0.2187,1.0625,0.2187,1.125,0.1875,1.125,0.1875,1.125,0.1875,1.0625,0.2187,1.0625,0.25,1.0625,0.25,1.125,0.2187,1.125,0.2187,1.125,0.2187,1.0625,0.25,1.0625,0.2812,1.0625,0.2812,1.125,0.25,1.125,0.25,1.125,0.25,1.0625,0.2812,1.0625,0.3125,1.0625,0.3125,1.125,0.2812,1.125,0.2812,1.125,0.2812,1.0625,0.3125,1.0625,0.3437,1.0625,0.3437,1.125,0.3125,1.125,0.3125,1.125,0.3125,1.0625,0.3437,1.0625,0.375,1.0625,0.375,1.125,0.3437,1.125,0.3437,1.125,0.3437,1.0625,0.375,1.0625,0.4062,1.0625,0.4062,1.125,0.375,1.125,0.375,1.125,0.375,1.0625,0.4062,1.0625,0.4375,1.0625,0.4375,1.125,0.4062,1.125,0.4062,1.125,0.4062,1.0625,0.4375,1.0625,0.4688,1.0625,0.4688,1.125,0.4375,1.125,0.4375,1.125,0.4375,1.0625,0.4688,1.0625,0.5,1.0625,0.5,1.125,0.4688,1.125,0.4688,1.125,0.4688,1.0625,0.5,1.0625,0.0,1.0,0.0312,1.0625,0.0,1.0625,0.0312,1.0,0.0625,1.0625,0.0312,1.0625,0.0625,1.0,0.0938,1.0625,0.0625,1.0625,0.0938,1.0,0.125,1.0625,0.0938,1.0625,0.125,1.0,0.1562,1.0625,0.125,1.0625,0.1562,1.0,0.1875,1.0625,0.1562,1.0625,0.1875,1.0,0.2187,1.0625,0.1875,1.0625,0.2187,1.0,0.25,1.0625,0.2187,1.0625,0.25,1.0,0.2812,1.0625,0.25,1.0625,0.2812,1.0,0.3125,1.0625,0.2812,1.0625,0.3125,1.0,0.3437,1.0625,0.3125,1.0625,0.3437,1.0,0.375,1.0625,0.3437,1.0625,0.375,1.0,0.4062,1.0625,0.375,1.0625,0.4062,1.0,0.4375,1.0625,0.4062,1.0625,0.4375,1.0,0.4688,1.0625,0.4375,1.0625,0.4688,1.0,0.5,1.0625,0.4688,1.0625],"uvs2":null,"colors":null,"hasVertexAlpha":false,"matricesIndices":null,"matricesWeights":null,"matricesIndicesExtra":null,"matricesWeightsExtra":null,"indices":[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],"receiveShadows":true,"infiniteDistance":false,"billboardMode":0,"visibility":1.0,"subMeshes":[{"materialIndex":0,"verticesStart":0,"verticesCount":1440,"indexStart":0,"indexCount":1440}],"instances":null,"skeletonId":-1,"numBoneInfluencers":4,"applyFog":true,"lodMeshIds":null,"lodDistances":null,"lodCoverages":null,"rotation":null,"scaling":[1.0,1.0,1.0],"rotationQuaternion":[0.0,0.0,0.0,1.0],"actions":null,"checkCollisions":false,"pickable":false,"showBoundingBox":false,"showSubMeshesBoundingBox":false,"alphaIndex":1000,"physicsImpostor":0,"physicsMass":0.0,"physicsFriction":0.0,"physicsRestitution":0.0,"name":"StandardArnoldMeshBackfaceCullingOff","id":"63d05efd-162c-4665-80c9-0f6f57c365e7","parentId":null,"position":[6.0,0.0,3.5634],"animations":[],"autoAnimate":true,"autoAnimateFrom":0,"autoAnimateTo":100,"autoAnimateLoop":true,"metadata":null},{"materialId":"33a534cc-7051-4436-ab46-be390bf32da3","isEnabled":true,"isVisible":true,"positions":[0.0,1.0,0.0,0.0,0.9808,0.1951,-0.0381,0.9808,0.1913,0.0,1.0,0.0,-0.0381,0.9808,0.1913,-0.0747,0.9808,0.1802,0.0,1.0,0.0,-0.0747,0.9808,0.1802,-0.1084,0.9808,0.1622,0.0,1.0,0.0,-0.1084,0.9808,0.1622,-0.1379,0.9808,0.1379,0.0,1.0,0.0,-0.1379,0.9808,0.1379,-0.1622,0.9808,0.1084,0.0,1.0,0.0,-0.1622,0.9808,0.1084,-0.1802,0.9808,0.0747,0.0,1.0,0.0,-0.1802,0.9808,0.0747,-0.1913,0.9808,0.0381,0.0,1.0,0.0,-0.1913,0.9808,0.0381,-0.1951,0.9808,0.0,0.0,1.0,0.0,-0.1951,0.9808,0.0,-0.1913,0.9808,-0.0381,0.0,1.0,0.0,-0.1913,0.9808,-0.0381,-0.1802,0.9808,-0.0747,0.0,1.0,0.0,-0.1802,0.9808,-0.0747,-0.1622,0.9808,-0.1084,0.0,1.0,0.0,-0.1622,0.9808,-0.1084,-0.1379,0.9808,-0.1379,0.0,1.0,0.0,-0.1379,0.9808,-0.1379,-0.1084,0.9808,-0.1622,0.0,1.0,0.0,-0.1084,0.9808,-0.1622,-0.0747,0.9808,-0.1802,0.0,1.0,0.0,-0.0747,0.9808,-0.1802,-0.0381,0.9808,-0.1913,0.0,1.0,0.0,-0.0381,0.9808,-0.1913,0.0,0.9808,-0.1951,-0.0747,0.9239,0.3753,-0.0381,0.9808,0.1913,0.0,0.9808,0.1951,0.0,0.9808,0.1951,0.0,0.9239,0.3827,-0.0747,0.9239,0.3753,-0.1464,0.9239,0.3536,-0.0747,0.9808,0.1802,-0.0381,0.9808,0.1913,-0.0381,0.9808,0.1913,-0.0747,0.9239,0.3753,-0.1464,0.9239,0.3536,-0.2126,0.9239,0.3182,-0.1084,0.9808,0.1622,-0.0747,0.9808,0.1802,-0.0747,0.9808,0.1802,-0.1464,0.9239,0.3536,-0.2126,0.9239,0.3182,-0.2706,0.9239,0.2706,-0.1379,0.9808,0.1379,-0.1084,0.9808,0.1622,-0.1084,0.9808,0.1622,-0.2126,0.9239,0.3182,-0.2706,0.9239,0.2706,-0.3182,0.9239,0.2126,-0.1622,0.9808,0.1084,-0.1379,0.9808,0.1379,-0.1379,0.9808,0.1379,-0.2706,0.9239,0.2706,-0.3182,0.9239,0.2126,-0.3536,0.9239,0.1464,-0.1802,0.9808,0.0747,-0.1622,0.9808,0.1084,-0.1622,0.9808,0.1084,-0.3182,0.9239,0.2126,-0.3536,0.9239,0.1464,-0.3753,0.9239,0.0747,-0.1913,0.9808,0.0381,-0.1802,0.9808,0.0747,-0.1802,0.9808,0.0747,-0.3536,0.9239,0.1464,-0.3753,0.9239,0.0747,-0.3827,0.9239,0.0,-0.1951,0.9808,0.0,-0.1913,0.9808,0.0381,-0.1913,0.9808,0.0381,-0.3753,0.9239,0.0747,-0.3827,0.9239,0.0,-0.3753,0.9239,-0.0747,-0.1913,0.9808,-0.0381,-0.1951,0.9808,0.0,-0.1951,0.9808,0.0,-0.3827,0.9239,0.0,-0.3753,0.9239,-0.0747,-0.3536,0.9239,-0.1464,-0.1802,0.9808,-0.0747,-0.1913,0.9808,-0.0381,-0.1913,0.9808,-0.0381,-0.3753,0.9239,-0.0747,-0.3536,0.9239,-0.1464,-0.3182,0.9239,-0.2126,-0.1622,0.9808,-0.1084,-0.1802,0.9808,-0.0747,-0.1802,0.9808,-0.0747,-0.3536,0.9239,-0.1464,-0.3182,0.9239,-0.2126,-0.2706,0.9239,-0.2706,-0.1379,0.9808,-0.1379,-0.1622,0.9808,-0.1084,-0.1622,0.9808,-0.1084,-0.3182,0.9239,-0.2126,-0.2706,0.9239,-0.2706,-0.2126,0.9239,-0.3182,-0.1084,0.9808,-0.1622,-0.1379,0.9808,-0.1379,-0.1379,0.9808,-0.1379,-0.2706,0.9239,-0.2706,-0.2126,0.9239,-0.3182,-0.1464,0.9239,-0.3536,-0.0747,0.9808,-0.1802,-0.1084,0.9808,-0.1622,-0.1084,0.9808,-0.1622,-0.2126,0.9239,-0.3182,-0.1464,0.9239,-0.3536,-0.0747,0.9239,-0.3753,-0.0381,0.9808,-0.1913,-0.0747,0.9808,-0.1802,-0.0747,0.9808,-0.1802,-0.1464,0.9239,-0.3536,-0.0747,0.9239,-0.3753,0.0,0.9239,-0.3827,0.0,0.9808,-0.1951,-0.0381,0.9808,-0.1913,-0.0381,0.9808,-0.1913,-0.0747,0.9239,-0.3753,0.0,0.9239,-0.3827,-0.1084,0.8315,0.5449,-0.0747,0.9239,0.3753,0.0,0.9239,0.3827,0.0,0.9239,0.3827,0.0,0.8315,0.5556,-0.1084,0.8315,0.5449,-0.2126,0.8315,0.5133,-0.1464,0.9239,0.3536,-0.0747,0.9239,0.3753,-0.0747,0.9239,0.3753,-0.1084,0.8315,0.5449,-0.2126,0.8315,0.5133,-0.3087,0.8315,0.4619,-0.2126,0.9239,0.3182,-0.1464,0.9239,0.3536,-0.1464,0.9239,0.3536,-0.2126,0.8315,0.5133,-0.3087,0.8315,0.4619,-0.3928,0.8315,0.3928,-0.2706,0.9239,0.2706,-0.2126,0.9239,0.3182,-0.2126,0.9239,0.3182,-0.3087,0.8315,0.4619,-0.3928,0.8315,0.3928,-0.4619,0.8315,0.3087,-0.3182,0.9239,0.2126,-0.2706,0.9239,0.2706,-0.2706,0.9239,0.2706,-0.3928,0.8315,0.3928,-0.4619,0.8315,0.3087,-0.5133,0.8315,0.2126,-0.3536,0.9239,0.1464,-0.3182,0.9239,0.2126,-0.3182,0.9239,0.2126,-0.4619,0.8315,0.3087,-0.5133,0.8315,0.2126,-0.5449,0.8315,0.1084,-0.3753,0.9239,0.0747,-0.3536,0.9239,0.1464,-0.3536,0.9239,0.1464,-0.5133,0.8315,0.2126,-0.5449,0.8315,0.1084,-0.5556,0.8315,0.0,-0.3827,0.9239,0.0,-0.3753,0.9239,0.0747,-0.3753,0.9239,0.0747,-0.5449,0.8315,0.1084,-0.5556,0.8315,0.0,-0.5449,0.8315,-0.1084,-0.3753,0.9239,-0.0747,-0.3827,0.9239,0.0,-0.3827,0.9239,0.0,-0.5556,0.8315,0.0,-0.5449,0.8315,-0.1084,-0.5133,0.8315,-0.2126,-0.3536,0.9239,-0.1464,-0.3753,0.9239,-0.0747,-0.3753,0.9239,-0.0747,-0.5449,0.8315,-0.1084,-0.5133,0.8315,-0.2126,-0.4619,0.8315,-0.3087,-0.3182,0.9239,-0.2126,-0.3536,0.9239,-0.1464,-0.3536,0.9239,-0.1464,-0.5133,0.8315,-0.2126,-0.4619,0.8315,-0.3087,-0.3928,0.8315,-0.3928,-0.2706,0.9239,-0.2706,-0.3182,0.9239,-0.2126,-0.3182,0.9239,-0.2126,-0.4619,0.8315,-0.3087,-0.3928,0.8315,-0.3928,-0.3087,0.8315,-0.4619,-0.2126,0.9239,-0.3182,-0.2706,0.9239,-0.2706,-0.2706,0.9239,-0.2706,-0.3928,0.8315,-0.3928,-0.3087,0.8315,-0.4619,-0.2126,0.8315,-0.5133,-0.1464,0.9239,-0.3536,-0.2126,0.9239,-0.3182,-0.2126,0.9239,-0.3182,-0.3087,0.8315,-0.4619,-0.2126,0.8315,-0.5133,-0.1084,0.8315,-0.5449,-0.0747,0.9239,-0.3753,-0.1464,0.9239,-0.3536,-0.1464,0.9239,-0.3536,-0.2126,0.8315,-0.5133,-0.1084,0.8315,-0.5449,0.0,0.8315,-0.5556,0.0,0.9239,-0.3827,-0.0747,0.9239,-0.3753,-0.0747,0.9239,-0.3753,-0.1084,0.8315,-0.5449,0.0,0.8315,-0.5556,-0.1379,0.7071,0.6935,-0.1084,0.8315,0.5449,0.0,0.8315,0.5556,0.0,0.8315,0.5556,0.0,0.7071,0.7071,-0.1379,0.7071,0.6935,-0.2706,0.7071,0.6533,-0.2126,0.8315,0.5133,-0.1084,0.8315,0.5449,-0.1084,0.8315,0.5449,-0.1379,0.7071,0.6935,-0.2706,0.7071,0.6533,-0.3928,0.7071,0.5879,-0.3087,0.8315,0.4619,-0.2126,0.8315,0.5133,-0.2126,0.8315,0.5133,-0.2706,0.7071,0.6533,-0.3928,0.7071,0.5879,-0.5,0.7071,0.5,-0.3928,0.8315,0.3928,-0.3087,0.8315,0.4619,-0.3087,0.8315,0.4619,-0.3928,0.7071,0.5879,-0.5,0.7071,0.5,-0.5879,0.7071,0.3928,-0.4619,0.8315,0.3087,-0.3928,0.8315,0.3928,-0.3928,0.8315,0.3928,-0.5,0.7071,0.5,-0.5879,0.7071,0.3928,-0.6533,0.7071,0.2706,-0.5133,0.8315,0.2126,-0.4619,0.8315,0.3087,-0.4619,0.8315,0.3087,-0.5879,0.7071,0.3928,-0.6533,0.7071,0.2706,-0.6935,0.7071,0.1379,-0.5449,0.8315,0.1084,-0.5133,0.8315,0.2126,-0.5133,0.8315,0.2126,-0.6533,0.7071,0.2706,-0.6935,0.7071,0.1379,-0.7071,0.7071,0.0,-0.5556,0.8315,0.0,-0.5449,0.8315,0.1084,-0.5449,0.8315,0.1084,-0.6935,0.7071,0.1379,-0.7071,0.7071,0.0,-0.6935,0.7071,-0.1379,-0.5449,0.8315,-0.1084,-0.5556,0.8315,0.0,-0.5556,0.8315,0.0,-0.7071,0.7071,0.0,-0.6935,0.7071,-0.1379,-0.6533,0.7071,-0.2706,-0.5133,0.8315,-0.2126,-0.5449,0.8315,-0.1084,-0.5449,0.8315,-0.1084,-0.6935,0.7071,-0.1379,-0.6533,0.7071,-0.2706,-0.5879,0.7071,-0.3928,-0.4619,0.8315,-0.3087,-0.5133,0.8315,-0.2126,-0.5133,0.8315,-0.2126,-0.6533,0.7071,-0.2706,-0.5879,0.7071,-0.3928,-0.5,0.7071,-0.5,-0.3928,0.8315,-0.3928,-0.4619,0.8315,-0.3087,-0.4619,0.8315,-0.3087,-0.5879,0.7071,-0.3928,-0.5,0.7071,-0.5,-0.3928,0.7071,-0.5879,-0.3087,0.8315,-0.4619,-0.3928,0.8315,-0.3928,-0.3928,0.8315,-0.3928,-0.5,0.7071,-0.5,-0.3928,0.7071,-0.5879,-0.2706,0.7071,-0.6533,-0.2126,0.8315,-0.5133,-0.3087,0.8315,-0.4619,-0.3087,0.8315,-0.4619,-0.3928,0.7071,-0.5879,-0.2706,0.7071,-0.6533,-0.1379,0.7071,-0.6935,-0.1084,0.8315,-0.5449,-0.2126,0.8315,-0.5133,-0.2126,0.8315,-0.5133,-0.2706,0.7071,-0.6533,-0.1379,0.7071,-0.6935,0.0,0.7071,-0.7071,0.0,0.8315,-0.5556,-0.1084,0.8315,-0.5449,-0.1084,0.8315,-0.5449,-0.1379,0.7071,-0.6935,0.0,0.7071,-0.7071,-0.1622,0.5556,0.8155,-0.1379,0.7071,0.6935,0.0,0.7071,0.7071,0.0,0.7071,0.7071,0.0,0.5556,0.8315,-0.1622,0.5556,0.8155,-0.3182,0.5556,0.7682,-0.2706,0.7071,0.6533,-0.1379,0.7071,0.6935,-0.1379,0.7071,0.6935,-0.1622,0.5556,0.8155,-0.3182,0.5556,0.7682,-0.4619,0.5556,0.6913,-0.3928,0.7071,0.5879,-0.2706,0.7071,0.6533,-0.2706,0.7071,0.6533,-0.3182,0.5556,0.7682,-0.4619,0.5556,0.6913,-0.5879,0.5556,0.5879,-0.5,0.7071,0.5,-0.3928,0.7071,0.5879,-0.3928,0.7071,0.5879,-0.4619,0.5556,0.6913,-0.5879,0.5556,0.5879,-0.6913,0.5556,0.4619,-0.5879,0.7071,0.3928,-0.5,0.7071,0.5,-0.5,0.7071,0.5,-0.5879,0.5556,0.5879,-0.6913,0.5556,0.4619,-0.7682,0.5556,0.3182,-0.6533,0.7071,0.2706,-0.5879,0.7071,0.3928,-0.5879,0.7071,0.3928,-0.6913,0.5556,0.4619,-0.7682,0.5556,0.3182,-0.8155,0.5556,0.1622,-0.6935,0.7071,0.1379,-0.6533,0.7071,0.2706,-0.6533,0.7071,0.2706,-0.7682,0.5556,0.3182,-0.8155,0.5556,0.1622,-0.8315,0.5556,0.0,-0.7071,0.7071,0.0,-0.6935,0.7071,0.1379,-0.6935,0.7071,0.1379,-0.8155,0.5556,0.1622,-0.8315,0.5556,0.0,-0.8155,0.5556,-0.1622,-0.6935,0.7071,-0.1379,-0.7071,0.7071,0.0,-0.7071,0.7071,0.0,-0.8315,0.5556,0.0,-0.8155,0.5556,-0.1622,-0.7682,0.5556,-0.3182,-0.6533,0.7071,-0.2706,-0.6935,0.7071,-0.1379,-0.6935,0.7071,-0.1379,-0.8155,0.5556,-0.1622,-0.7682,0.5556,-0.3182,-0.6913,0.5556,-0.4619,-0.5879,0.7071,-0.3928,-0.6533,0.7071,-0.2706,-0.6533,0.7071,-0.2706,-0.7682,0.5556,-0.3182,-0.6913,0.5556,-0.4619,-0.5879,0.5556,-0.5879,-0.5,0.7071,-0.5,-0.5879,0.7071,-0.3928,-0.5879,0.7071,-0.3928,-0.6913,0.5556,-0.4619,-0.5879,0.5556,-0.5879,-0.4619,0.5556,-0.6913,-0.3928,0.7071,-0.5879,-0.5,0.7071,-0.5,-0.5,0.7071,-0.5,-0.5879,0.5556,-0.5879,-0.4619,0.5556,-0.6913,-0.3182,0.5556,-0.7682,-0.2706,0.7071,-0.6533,-0.3928,0.7071,-0.5879,-0.3928,0.7071,-0.5879,-0.4619,0.5556,-0.6913,-0.3182,0.5556,-0.7682,-0.1622,0.5556,-0.8155,-0.1379,0.7071,-0.6935,-0.2706,0.7071,-0.6533,-0.2706,0.7071,-0.6533,-0.3182,0.5556,-0.7682,-0.1622,0.5556,-0.8155,0.0,0.5556,-0.8315,0.0,0.7071,-0.7071,-0.1379,0.7071,-0.6935,-0.1379,0.7071,-0.6935,-0.1622,0.5556,-0.8155,0.0,0.5556,-0.8315,-0.1802,0.3827,0.9061,-0.1622,0.5556,0.8155,0.0,0.5556,0.8315,0.0,0.5556,0.8315,0.0,0.3827,0.9239,-0.1802,0.3827,0.9061,-0.3536,0.3827,0.8536,-0.3182,0.5556,0.7682,-0.1622,0.5556,0.8155,-0.1622,0.5556,0.8155,-0.1802,0.3827,0.9061,-0.3536,0.3827,0.8536,-0.5133,0.3827,0.7682,-0.4619,0.5556,0.6913,-0.3182,0.5556,0.7682,-0.3182,0.5556,0.7682,-0.3536,0.3827,0.8536,-0.5133,0.3827,0.7682,-0.6533,0.3827,0.6533,-0.5879,0.5556,0.5879,-0.4619,0.5556,0.6913,-0.4619,0.5556,0.6913,-0.5133,0.3827,0.7682,-0.6533,0.3827,0.6533,-0.7682,0.3827,0.5133,-0.6913,0.5556,0.4619,-0.5879,0.5556,0.5879,-0.5879,0.5556,0.5879,-0.6533,0.3827,0.6533,-0.7682,0.3827,0.5133,-0.8536,0.3827,0.3536,-0.7682,0.5556,0.3182,-0.6913,0.5556,0.4619,-0.6913,0.5556,0.4619,-0.7682,0.3827,0.5133,-0.8536,0.3827,0.3536,-0.9061,0.3827,0.1802,-0.8155,0.5556,0.1622,-0.7682,0.5556,0.3182,-0.7682,0.5556,0.3182,-0.8536,0.3827,0.3536,-0.9061,0.3827,0.1802,-0.9239,0.3827,0.0,-0.8315,0.5556,0.0,-0.8155,0.5556,0.1622,-0.8155,0.5556,0.1622,-0.9061,0.3827,0.1802,-0.9239,0.3827,0.0,-0.9061,0.3827,-0.1802,-0.8155,0.5556,-0.1622,-0.8315,0.5556,0.0,-0.8315,0.5556,0.0,-0.9239,0.3827,0.0,-0.9061,0.3827,-0.1802,-0.8536,0.3827,-0.3536,-0.7682,0.5556,-0.3182,-0.8155,0.5556,-0.1622,-0.8155,0.5556,-0.1622,-0.9061,0.3827,-0.1802,-0.8536,0.3827,-0.3536,-0.7682,0.3827,-0.5133,-0.6913,0.5556,-0.4619,-0.7682,0.5556,-0.3182,-0.7682,0.5556,-0.3182,-0.8536,0.3827,-0.3536,-0.7682,0.3827,-0.5133,-0.6533,0.3827,-0.6533,-0.5879,0.5556,-0.5879,-0.6913,0.5556,-0.4619,-0.6913,0.5556,-0.4619,-0.7682,0.3827,-0.5133,-0.6533,0.3827,-0.6533,-0.5133,0.3827,-0.7682,-0.4619,0.5556,-0.6913,-0.5879,0.5556,-0.5879,-0.5879,0.5556,-0.5879,-0.6533,0.3827,-0.6533,-0.5133,0.3827,-0.7682,-0.3536,0.3827,-0.8536,-0.3182,0.5556,-0.7682,-0.4619,0.5556,-0.6913,-0.4619,0.5556,-0.6913,-0.5133,0.3827,-0.7682,-0.3536,0.3827,-0.8536,-0.1802,0.3827,-0.9061,-0.1622,0.5556,-0.8155,-0.3182,0.5556,-0.7682,-0.3182,0.5556,-0.7682,-0.3536,0.3827,-0.8536,-0.1802,0.3827,-0.9061,0.0,0.3827,-0.9239,0.0,0.5556,-0.8315,-0.1622,0.5556,-0.8155,-0.1622,0.5556,-0.8155,-0.1802,0.3827,-0.9061,0.0,0.3827,-0.9239,-0.1913,0.1951,0.9619,-0.1802,0.3827,0.9061,0.0,0.3827,0.9239,0.0,0.3827,0.9239,0.0,0.1951,0.9808,-0.1913,0.1951,0.9619,-0.3753,0.1951,0.9061,-0.3536,0.3827,0.8536,-0.1802,0.3827,0.9061,-0.1802,0.3827,0.9061,-0.1913,0.1951,0.9619,-0.3753,0.1951,0.9061,-0.5449,0.1951,0.8155,-0.5133,0.3827,0.7682,-0.3536,0.3827,0.8536,-0.3536,0.3827,0.8536,-0.3753,0.1951,0.9061,-0.5449,0.1951,0.8155,-0.6935,0.1951,0.6935,-0.6533,0.3827,0.6533,-0.5133,0.3827,0.7682,-0.5133,0.3827,0.7682,-0.5449,0.1951,0.8155,-0.6935,0.1951,0.6935,-0.8155,0.1951,0.5449,-0.7682,0.3827,0.5133,-0.6533,0.3827,0.6533,-0.6533,0.3827,0.6533,-0.6935,0.1951,0.6935,-0.8155,0.1951,0.5449,-0.9061,0.1951,0.3753,-0.8536,0.3827,0.3536,-0.7682,0.3827,0.5133,-0.7682,0.3827,0.5133,-0.8155,0.1951,0.5449,-0.9061,0.1951,0.3753,-0.9619,0.1951,0.1913,-0.9061,0.3827,0.1802,-0.8536,0.3827,0.3536,-0.8536,0.3827,0.3536,-0.9061,0.1951,0.3753,-0.9619,0.1951,0.1913,-0.9808,0.1951,0.0,-0.9239,0.3827,0.0,-0.9061,0.3827,0.1802,-0.9061,0.3827,0.1802,-0.9619,0.1951,0.1913,-0.9808,0.1951,0.0,-0.9619,0.1951,-0.1913,-0.9061,0.3827,-0.1802,-0.9239,0.3827,0.0,-0.9239,0.3827,0.0,-0.9808,0.1951,0.0,-0.9619,0.1951,-0.1913,-0.9061,0.1951,-0.3753,-0.8536,0.3827,-0.3536,-0.9061,0.3827,-0.1802,-0.9061,0.3827,-0.1802,-0.9619,0.1951,-0.1913,-0.9061,0.1951,-0.3753,-0.8155,0.1951,-0.5449,-0.7682,0.3827,-0.5133,-0.8536,0.3827,-0.3536,-0.8536,0.3827,-0.3536,-0.9061,0.1951,-0.3753,-0.8155,0.1951,-0.5449,-0.6935,0.1951,-0.6935,-0.6533,0.3827,-0.6533,-0.7682,0.3827,-0.5133,-0.7682,0.3827,-0.5133,-0.8155,0.1951,-0.5449,-0.6935,0.1951,-0.6935,-0.5449,0.1951,-0.8155,-0.5133,0.3827,-0.7682,-0.6533,0.3827,-0.6533,-0.6533,0.3827,-0.6533,-0.6935,0.1951,-0.6935,-0.5449,0.1951,-0.8155,-0.3753,0.1951,-0.9061,-0.3536,0.3827,-0.8536,-0.5133,0.3827,-0.7682,-0.5133,0.3827,-0.7682,-0.5449,0.1951,-0.8155,-0.3753,0.1951,-0.9061,-0.1913,0.1951,-0.9619,-0.1802,0.3827,-0.9061,-0.3536,0.3827,-0.8536,-0.3536,0.3827,-0.8536,-0.3753,0.1951,-0.9061,-0.1913,0.1951,-0.9619,0.0,0.1951,-0.9808,0.0,0.3827,-0.9239,-0.1802,0.3827,-0.9061,-0.1802,0.3827,-0.9061,-0.1913,0.1951,-0.9619,0.0,0.1951,-0.9808,-0.1951,0.0,0.9808,-0.1913,0.1951,0.9619,0.0,0.1951,0.9808,0.0,0.1951,0.9808,0.0,0.0,1.0,-0.1951,0.0,0.9808,-0.3827,0.0,0.9239,-0.3753,0.1951,0.9061,-0.1913,0.1951,0.9619,-0.1913,0.1951,0.9619,-0.1951,0.0,0.9808,-0.3827,0.0,0.9239,-0.5556,0.0,0.8315,-0.5449,0.1951,0.8155,-0.3753,0.1951,0.9061,-0.3753,0.1951,0.9061,-0.3827,0.0,0.9239,-0.5556,0.0,0.8315,-0.7071,0.0,0.7071,-0.6935,0.1951,0.6935,-0.5449,0.1951,0.8155,-0.5449,0.1951,0.8155,-0.5556,0.0,0.8315,-0.7071,0.0,0.7071,-0.8315,0.0,0.5556,-0.8155,0.1951,0.5449,-0.6935,0.1951,0.6935,-0.6935,0.1951,0.6935,-0.7071,0.0,0.7071,-0.8315,0.0,0.5556,-0.9239,0.0,0.3827,-0.9061,0.1951,0.3753,-0.8155,0.1951,0.5449,-0.8155,0.1951,0.5449,-0.8315,0.0,0.5556,-0.9239,0.0,0.3827,-0.9808,0.0,0.1951,-0.9619,0.1951,0.1913,-0.9061,0.1951,0.3753,-0.9061,0.1951,0.3753,-0.9239,0.0,0.3827,-0.9808,0.0,0.1951,-1.0,0.0,0.0,-0.9808,0.1951,0.0,-0.9619,0.1951,0.1913,-0.9619,0.1951,0.1913,-0.9808,0.0,0.1951,-1.0,0.0,0.0,-0.9808,0.0,-0.1951,-0.9619,0.1951,-0.1913,-0.9808,0.1951,0.0,-0.9808,0.1951,0.0,-1.0,0.0,0.0,-0.9808,0.0,-0.1951,-0.9239,0.0,-0.3827,-0.9061,0.1951,-0.3753,-0.9619,0.1951,-0.1913,-0.9619,0.1951,-0.1913,-0.9808,0.0,-0.1951,-0.9239,0.0,-0.3827,-0.8315,0.0,-0.5556,-0.8155,0.1951,-0.5449,-0.9061,0.1951,-0.3753,-0.9061,0.1951,-0.3753,-0.9239,0.0,-0.3827,-0.8315,0.0,-0.5556,-0.7071,0.0,-0.7071,-0.6935,0.1951,-0.6935,-0.8155,0.1951,-0.5449,-0.8155,0.1951,-0.5449,-0.8315,0.0,-0.5556,-0.7071,0.0,-0.7071,-0.5556,0.0,-0.8315,-0.5449,0.1951,-0.8155,-0.6935,0.1951,-0.6935,-0.6935,0.1951,-0.6935,-0.7071,0.0,-0.7071,-0.5556,0.0,-0.8315,-0.3827,0.0,-0.9239,-0.3753,0.1951,-0.9061,-0.5449,0.1951,-0.8155,-0.5449,0.1951,-0.8155,-0.5556,0.0,-0.8315,-0.3827,0.0,-0.9239,-0.1951,0.0,-0.9808,-0.1913,0.1951,-0.9619,-0.3753,0.1951,-0.9061,-0.3753,0.1951,-0.9061,-0.3827,0.0,-0.9239,-0.1951,0.0,-0.9808,0.0,0.0,-1.0,0.0,0.1951,-0.9808,-0.1913,0.1951,-0.9619,-0.1913,0.1951,-0.9619,-0.1951,0.0,-0.9808,0.0,0.0,-1.0,-0.1913,-0.1951,0.9619,-0.1951,0.0,0.9808,0.0,0.0,1.0,0.0,0.0,1.0,0.0,-0.1951,0.9808,-0.1913,-0.1951,0.9619,-0.3753,-0.1951,0.9061,-0.3827,0.0,0.9239,-0.1951,0.0,0.9808,-0.1951,0.0,0.9808,-0.1913,-0.1951,0.9619,-0.3753,-0.1951,0.9061,-0.5449,-0.1951,0.8155,-0.5556,0.0,0.8315,-0.3827,0.0,0.9239,-0.3827,0.0,0.9239,-0.3753,-0.1951,0.9061,-0.5449,-0.1951,0.8155,-0.6935,-0.1951,0.6935,-0.7071,0.0,0.7071,-0.5556,0.0,0.8315,-0.5556,0.0,0.8315,-0.5449,-0.1951,0.8155,-0.6935,-0.1951,0.6935,-0.8155,-0.1951,0.5449,-0.8315,0.0,0.5556,-0.7071,0.0,0.7071,-0.7071,0.0,0.7071,-0.6935,-0.1951,0.6935,-0.8155,-0.1951,0.5449,-0.9061,-0.1951,0.3753,-0.9239,0.0,0.3827,-0.8315,0.0,0.5556,-0.8315,0.0,0.5556,-0.8155,-0.1951,0.5449,-0.9061,-0.1951,0.3753,-0.9619,-0.1951,0.1913,-0.9808,0.0,0.1951,-0.9239,0.0,0.3827,-0.9239,0.0,0.3827,-0.9061,-0.1951,0.3753,-0.9619,-0.1951,0.1913,-0.9808,-0.1951,0.0,-1.0,0.0,0.0,-0.9808,0.0,0.1951,-0.9808,0.0,0.1951,-0.9619,-0.1951,0.1913,-0.9808,-0.1951,0.0,-0.9619,-0.1951,-0.1913,-0.9808,0.0,-0.1951,-1.0,0.0,0.0,-1.0,0.0,0.0,-0.9808,-0.1951,0.0,-0.9619,-0.1951,-0.1913,-0.9061,-0.1951,-0.3753,-0.9239,0.0,-0.3827,-0.9808,0.0,-0.1951,-0.9808,0.0,-0.1951,-0.9619,-0.1951,-0.1913,-0.9061,-0.1951,-0.3753,-0.8155,-0.1951,-0.5449,-0.8315,0.0,-0.5556,-0.9239,0.0,-0.3827,-0.9239,0.0,-0.3827,-0.9061,-0.1951,-0.3753,-0.8155,-0.1951,-0.5449,-0.6935,-0.1951,-0.6935,-0.7071,0.0,-0.7071,-0.8315,0.0,-0.5556,-0.8315,0.0,-0.5556,-0.8155,-0.1951,-0.5449,-0.6935,-0.1951,-0.6935,-0.5449,-0.1951,-0.8155,-0.5556,0.0,-0.8315,-0.7071,0.0,-0.7071,-0.7071,0.0,-0.7071,-0.6935,-0.1951,-0.6935,-0.5449,-0.1951,-0.8155,-0.3753,-0.1951,-0.9061,-0.3827,0.0,-0.9239,-0.5556,0.0,-0.8315,-0.5556,0.0,-0.8315,-0.5449,-0.1951,-0.8155,-0.3753,-0.1951,-0.9061,-0.1913,-0.1951,-0.9619,-0.1951,0.0,-0.9808,-0.3827,0.0,-0.9239,-0.3827,0.0,-0.9239,-0.3753,-0.1951,-0.9061,-0.1913,-0.1951,-0.9619,0.0,-0.1951,-0.9808,0.0,0.0,-1.0,-0.1951,0.0,-0.9808,-0.1951,0.0,-0.9808,-0.1913,-0.1951,-0.9619,0.0,-0.1951,-0.9808,-0.1802,-0.3827,0.9061,-0.1913,-0.1951,0.9619,0.0,-0.1951,0.9808,0.0,-0.1951,0.9808,0.0,-0.3827,0.9239,-0.1802,-0.3827,0.9061,-0.3536,-0.3827,0.8536,-0.3753,-0.1951,0.9061,-0.1913,-0.1951,0.9619,-0.1913,-0.1951,0.9619,-0.1802,-0.3827,0.9061,-0.3536,-0.3827,0.8536,-0.5133,-0.3827,0.7682,-0.5449,-0.1951,0.8155,-0.3753,-0.1951,0.9061,-0.3753,-0.1951,0.9061,-0.3536,-0.3827,0.8536,-0.5133,-0.3827,0.7682,-0.6533,-0.3827,0.6533,-0.6935,-0.1951,0.6935,-0.5449,-0.1951,0.8155,-0.5449,-0.1951,0.8155,-0.5133,-0.3827,0.7682,-0.6533,-0.3827,0.6533,-0.7682,-0.3827,0.5133,-0.8155,-0.1951,0.5449,-0.6935,-0.1951,0.6935,-0.6935,-0.1951,0.6935,-0.6533,-0.3827,0.6533,-0.7682,-0.3827,0.5133,-0.8536,-0.3827,0.3536,-0.9061,-0.1951,0.3753,-0.8155,-0.1951,0.5449,-0.8155,-0.1951,0.5449,-0.7682,-0.3827,0.5133,-0.8536,-0.3827,0.3536,-0.9061,-0.3827,0.1802,-0.9619,-0.1951,0.1913,-0.9061,-0.1951,0.3753,-0.9061,-0.1951,0.3753,-0.8536,-0.3827,0.3536,-0.9061,-0.3827,0.1802,-0.9239,-0.3827,0.0,-0.9808,-0.1951,0.0,-0.9619,-0.1951,0.1913,-0.9619,-0.1951,0.1913,-0.9061,-0.3827,0.1802,-0.9239,-0.3827,0.0,-0.9061,-0.3827,-0.1802,-0.9619,-0.1951,-0.1913,-0.9808,-0.1951,0.0,-0.9808,-0.1951,0.0,-0.9239,-0.3827,0.0,-0.9061,-0.3827,-0.1802,-0.8536,-0.3827,-0.3536,-0.9061,-0.1951,-0.3753,-0.9619,-0.1951,-0.1913,-0.9619,-0.1951,-0.1913,-0.9061,-0.3827,-0.1802,-0.8536,-0.3827,-0.3536,-0.7682,-0.3827,-0.5133,-0.8155,-0.1951,-0.5449,-0.9061,-0.1951,-0.3753,-0.9061,-0.1951,-0.3753,-0.8536,-0.3827,-0.3536,-0.7682,-0.3827,-0.5133,-0.6533,-0.3827,-0.6533,-0.6935,-0.1951,-0.6935,-0.8155,-0.1951,-0.5449,-0.8155,-0.1951,-0.5449,-0.7682,-0.3827,-0.5133,-0.6533,-0.3827,-0.6533,-0.5133,-0.3827,-0.7682,-0.5449,-0.1951,-0.8155,-0.6935,-0.1951,-0.6935,-0.6935,-0.1951,-0.6935,-0.6533,-0.3827,-0.6533,-0.5133,-0.3827,-0.7682,-0.3536,-0.3827,-0.8536,-0.3753,-0.1951,-0.9061,-0.5449,-0.1951,-0.8155,-0.5449,-0.1951,-0.8155,-0.5133,-0.3827,-0.7682,-0.3536,-0.3827,-0.8536,-0.1802,-0.3827,-0.9061,-0.1913,-0.1951,-0.9619,-0.3753,-0.1951,-0.9061,-0.3753,-0.1951,-0.9061,-0.3536,-0.3827,-0.8536,-0.1802,-0.3827,-0.9061,0.0,-0.3827,-0.9239,0.0,-0.1951,-0.9808,-0.1913,-0.1951,-0.9619,-0.1913,-0.1951,-0.9619,-0.1802,-0.3827,-0.9061,0.0,-0.3827,-0.9239,-0.1622,-0.5556,0.8155,-0.1802,-0.3827,0.9061,0.0,-0.3827,0.9239,0.0,-0.3827,0.9239,0.0,-0.5556,0.8315,-0.1622,-0.5556,0.8155,-0.3182,-0.5556,0.7682,-0.3536,-0.3827,0.8536,-0.1802,-0.3827,0.9061,-0.1802,-0.3827,0.9061,-0.1622,-0.5556,0.8155,-0.3182,-0.5556,0.7682,-0.4619,-0.5556,0.6913,-0.5133,-0.3827,0.7682,-0.3536,-0.3827,0.8536,-0.3536,-0.3827,0.8536,-0.3182,-0.5556,0.7682,-0.4619,-0.5556,0.6913,-0.5879,-0.5556,0.5879,-0.6533,-0.3827,0.6533,-0.5133,-0.3827,0.7682,-0.5133,-0.3827,0.7682,-0.4619,-0.5556,0.6913,-0.5879,-0.5556,0.5879,-0.6913,-0.5556,0.4619,-0.7682,-0.3827,0.5133,-0.6533,-0.3827,0.6533,-0.6533,-0.3827,0.6533,-0.5879,-0.5556,0.5879,-0.6913,-0.5556,0.4619,-0.7682,-0.5556,0.3182,-0.8536,-0.3827,0.3536,-0.7682,-0.3827,0.5133,-0.7682,-0.3827,0.5133,-0.6913,-0.5556,0.4619,-0.7682,-0.5556,0.3182,-0.8155,-0.5556,0.1622,-0.9061,-0.3827,0.1802,-0.8536,-0.3827,0.3536,-0.8536,-0.3827,0.3536,-0.7682,-0.5556,0.3182,-0.8155,-0.5556,0.1622,-0.8315,-0.5556,0.0,-0.9239,-0.3827,0.0,-0.9061,-0.3827,0.1802,-0.9061,-0.3827,0.1802,-0.8155,-0.5556,0.1622,-0.8315,-0.5556,0.0,-0.8155,-0.5556,-0.1622,-0.9061,-0.3827,-0.1802,-0.9239,-0.3827,0.0,-0.9239,-0.3827,0.0,-0.8315,-0.5556,0.0,-0.8155,-0.5556,-0.1622,-0.7682,-0.5556,-0.3182,-0.8536,-0.3827,-0.3536,-0.9061,-0.3827,-0.1802,-0.9061,-0.3827,-0.1802,-0.8155,-0.5556,-0.1622,-0.7682,-0.5556,-0.3182,-0.6913,-0.5556,-0.4619,-0.7682,-0.3827,-0.5133,-0.8536,-0.3827,-0.3536,-0.8536,-0.3827,-0.3536,-0.7682,-0.5556,-0.3182,-0.6913,-0.5556,-0.4619,-0.5879,-0.5556,-0.5879,-0.6533,-0.3827,-0.6533,-0.7682,-0.3827,-0.5133,-0.7682,-0.3827,-0.5133,-0.6913,-0.5556,-0.4619,-0.5879,-0.5556,-0.5879,-0.4619,-0.5556,-0.6913,-0.5133,-0.3827,-0.7682,-0.6533,-0.3827,-0.6533,-0.6533,-0.3827,-0.6533,-0.5879,-0.5556,-0.5879,-0.4619,-0.5556,-0.6913,-0.3182,-0.5556,-0.7682,-0.3536,-0.3827,-0.8536,-0.5133,-0.3827,-0.7682,-0.5133,-0.3827,-0.7682,-0.4619,-0.5556,-0.6913,-0.3182,-0.5556,-0.7682,-0.1622,-0.5556,-0.8155,-0.1802,-0.3827,-0.9061,-0.3536,-0.3827,-0.8536,-0.3536,-0.3827,-0.8536,-0.3182,-0.5556,-0.7682,-0.1622,-0.5556,-0.8155,0.0,-0.5556,-0.8315,0.0,-0.3827,-0.9239,-0.1802,-0.3827,-0.9061,-0.1802,-0.3827,-0.9061,-0.1622,-0.5556,-0.8155,0.0,-0.5556,-0.8315,-0.1379,-0.7071,0.6935,-0.1622,-0.5556,0.8155,0.0,-0.5556,0.8315,0.0,-0.5556,0.8315,0.0,-0.7071,0.7071,-0.1379,-0.7071,0.6935,-0.2706,-0.7071,0.6533,-0.3182,-0.5556,0.7682,-0.1622,-0.5556,0.8155,-0.1622,-0.5556,0.8155,-0.1379,-0.7071,0.6935,-0.2706,-0.7071,0.6533,-0.3928,-0.7071,0.5879,-0.4619,-0.5556,0.6913,-0.3182,-0.5556,0.7682,-0.3182,-0.5556,0.7682,-0.2706,-0.7071,0.6533,-0.3928,-0.7071,0.5879,-0.5,-0.7071,0.5,-0.5879,-0.5556,0.5879,-0.4619,-0.5556,0.6913,-0.4619,-0.5556,0.6913,-0.3928,-0.7071,0.5879,-0.5,-0.7071,0.5,-0.5879,-0.7071,0.3928,-0.6913,-0.5556,0.4619,-0.5879,-0.5556,0.5879,-0.5879,-0.5556,0.5879,-0.5,-0.7071,0.5,-0.5879,-0.7071,0.3928,-0.6533,-0.7071,0.2706,-0.7682,-0.5556,0.3182,-0.6913,-0.5556,0.4619,-0.6913,-0.5556,0.4619,-0.5879,-0.7071,0.3928,-0.6533,-0.7071,0.2706,-0.6935,-0.7071,0.1379,-0.8155,-0.5556,0.1622,-0.7682,-0.5556,0.3182,-0.7682,-0.5556,0.3182,-0.6533,-0.7071,0.2706,-0.6935,-0.7071,0.1379,-0.7071,-0.7071,0.0,-0.8315,-0.5556,0.0,-0.8155,-0.5556,0.1622,-0.8155,-0.5556,0.1622,-0.6935,-0.7071,0.1379,-0.7071,-0.7071,0.0,-0.6935,-0.7071,-0.1379,-0.8155,-0.5556,-0.1622,-0.8315,-0.5556,0.0,-0.8315,-0.5556,0.0,-0.7071,-0.7071,0.0,-0.6935,-0.7071,-0.1379,-0.6533,-0.7071,-0.2706,-0.7682,-0.5556,-0.3182,-0.8155,-0.5556,-0.1622,-0.8155,-0.5556,-0.1622,-0.6935,-0.7071,-0.1379,-0.6533,-0.7071,-0.2706,-0.5879,-0.7071,-0.3928,-0.6913,-0.5556,-0.4619,-0.7682,-0.5556,-0.3182,-0.7682,-0.5556,-0.3182,-0.6533,-0.7071,-0.2706,-0.5879,-0.7071,-0.3928,-0.5,-0.7071,-0.5,-0.5879,-0.5556,-0.5879,-0.6913,-0.5556,-0.4619,-0.6913,-0.5556,-0.4619,-0.5879,-0.7071,-0.3928,-0.5,-0.7071,-0.5,-0.3928,-0.7071,-0.5879,-0.4619,-0.5556,-0.6913,-0.5879,-0.5556,-0.5879,-0.5879,-0.5556,-0.5879,-0.5,-0.7071,-0.5,-0.3928,-0.7071,-0.5879,-0.2706,-0.7071,-0.6533,-0.3182,-0.5556,-0.7682,-0.4619,-0.5556,-0.6913,-0.4619,-0.5556,-0.6913,-0.3928,-0.7071,-0.5879,-0.2706,-0.7071,-0.6533,-0.1379,-0.7071,-0.6935,-0.1622,-0.5556,-0.8155,-0.3182,-0.5556,-0.7682,-0.3182,-0.5556,-0.7682,-0.2706,-0.7071,-0.6533,-0.1379,-0.7071,-0.6935,0.0,-0.7071,-0.7071,0.0,-0.5556,-0.8315,-0.1622,-0.5556,-0.8155,-0.1622,-0.5556,-0.8155,-0.1379,-0.7071,-0.6935,0.0,-0.7071,-0.7071,-0.1084,-0.8315,0.5449,-0.1379,-0.7071,0.6935,0.0,-0.7071,0.7071,0.0,-0.7071,0.7071,0.0,-0.8315,0.5556,-0.1084,-0.8315,0.5449,-0.2126,-0.8315,0.5133,-0.2706,-0.7071,0.6533,-0.1379,-0.7071,0.6935,-0.1379,-0.7071,0.6935,-0.1084,-0.8315,0.5449,-0.2126,-0.8315,0.5133,-0.3087,-0.8315,0.4619,-0.3928,-0.7071,0.5879,-0.2706,-0.7071,0.6533,-0.2706,-0.7071,0.6533,-0.2126,-0.8315,0.5133,-0.3087,-0.8315,0.4619,-0.3928,-0.8315,0.3928,-0.5,-0.7071,0.5,-0.3928,-0.7071,0.5879,-0.3928,-0.7071,0.5879,-0.3087,-0.8315,0.4619,-0.3928,-0.8315,0.3928,-0.4619,-0.8315,0.3087,-0.5879,-0.7071,0.3928,-0.5,-0.7071,0.5,-0.5,-0.7071,0.5,-0.3928,-0.8315,0.3928,-0.4619,-0.8315,0.3087,-0.5133,-0.8315,0.2126,-0.6533,-0.7071,0.2706,-0.5879,-0.7071,0.3928,-0.5879,-0.7071,0.3928,-0.4619,-0.8315,0.3087,-0.5133,-0.8315,0.2126,-0.5449,-0.8315,0.1084,-0.6935,-0.7071,0.1379,-0.6533,-0.7071,0.2706,-0.6533,-0.7071,0.2706,-0.5133,-0.8315,0.2126,-0.5449,-0.8315,0.1084,-0.5556,-0.8315,0.0,-0.7071,-0.7071,0.0,-0.6935,-0.7071,0.1379,-0.6935,-0.7071,0.1379,-0.5449,-0.8315,0.1084,-0.5556,-0.8315,0.0,-0.5449,-0.8315,-0.1084,-0.6935,-0.7071,-0.1379,-0.7071,-0.7071,0.0,-0.7071,-0.7071,0.0,-0.5556,-0.8315,0.0,-0.5449,-0.8315,-0.1084,-0.5133,-0.8315,-0.2126,-0.6533,-0.7071,-0.2706,-0.6935,-0.7071,-0.1379,-0.6935,-0.7071,-0.1379,-0.5449,-0.8315,-0.1084,-0.5133,-0.8315,-0.2126,-0.4619,-0.8315,-0.3087,-0.5879,-0.7071,-0.3928,-0.6533,-0.7071,-0.2706,-0.6533,-0.7071,-0.2706,-0.5133,-0.8315,-0.2126,-0.4619,-0.8315,-0.3087,-0.3928,-0.8315,-0.3928,-0.5,-0.7071,-0.5,-0.5879,-0.7071,-0.3928,-0.5879,-0.7071,-0.3928,-0.4619,-0.8315,-0.3087,-0.3928,-0.8315,-0.3928,-0.3087,-0.8315,-0.4619,-0.3928,-0.7071,-0.5879,-0.5,-0.7071,-0.5,-0.5,-0.7071,-0.5,-0.3928,-0.8315,-0.3928,-0.3087,-0.8315,-0.4619,-0.2126,-0.8315,-0.5133,-0.2706,-0.7071,-0.6533,-0.3928,-0.7071,-0.5879,-0.3928,-0.7071,-0.5879,-0.3087,-0.8315,-0.4619,-0.2126,-0.8315,-0.5133,-0.1084,-0.8315,-0.5449,-0.1379,-0.7071,-0.6935,-0.2706,-0.7071,-0.6533,-0.2706,-0.7071,-0.6533,-0.2126,-0.8315,-0.5133,-0.1084,-0.8315,-0.5449,0.0,-0.8315,-0.5556,0.0,-0.7071,-0.7071,-0.1379,-0.7071,-0.6935,-0.1379,-0.7071,-0.6935,-0.1084,-0.8315,-0.5449,0.0,-0.8315,-0.5556,-0.0747,-0.9239,0.3753,-0.1084,-0.8315,0.5449,0.0,-0.8315,0.5556,0.0,-0.8315,0.5556,0.0,-0.9239,0.3827,-0.0747,-0.9239,0.3753,-0.1464,-0.9239,0.3536,-0.2126,-0.8315,0.5133,-0.1084,-0.8315,0.5449,-0.1084,-0.8315,0.5449,-0.0747,-0.9239,0.3753,-0.1464,-0.9239,0.3536,-0.2126,-0.9239,0.3182,-0.3087,-0.8315,0.4619,-0.2126,-0.8315,0.5133,-0.2126,-0.8315,0.5133,-0.1464,-0.9239,0.3536,-0.2126,-0.9239,0.3182,-0.2706,-0.9239,0.2706,-0.3928,-0.8315,0.3928,-0.3087,-0.8315,0.4619,-0.3087,-0.8315,0.4619,-0.2126,-0.9239,0.3182,-0.2706,-0.9239,0.2706,-0.3182,-0.9239,0.2126,-0.4619,-0.8315,0.3087,-0.3928,-0.8315,0.3928,-0.3928,-0.8315,0.3928,-0.2706,-0.9239,0.2706,-0.3182,-0.9239,0.2126,-0.3536,-0.9239,0.1464,-0.5133,-0.8315,0.2126,-0.4619,-0.8315,0.3087,-0.4619,-0.8315,0.3087,-0.3182,-0.9239,0.2126,-0.3536,-0.9239,0.1464,-0.3753,-0.9239,0.0747,-0.5449,-0.8315,0.1084,-0.5133,-0.8315,0.2126,-0.5133,-0.8315,0.2126,-0.3536,-0.9239,0.1464,-0.3753,-0.9239,0.0747,-0.3827,-0.9239,0.0,-0.5556,-0.8315,0.0,-0.5449,-0.8315,0.1084,-0.5449,-0.8315,0.1084,-0.3753,-0.9239,0.0747,-0.3827,-0.9239,0.0,-0.3753,-0.9239,-0.0747,-0.5449,-0.8315,-0.1084,-0.5556,-0.8315,0.0,-0.5556,-0.8315,0.0,-0.3827,-0.9239,0.0,-0.3753,-0.9239,-0.0747,-0.3536,-0.9239,-0.1464,-0.5133,-0.8315,-0.2126,-0.5449,-0.8315,-0.1084,-0.5449,-0.8315,-0.1084,-0.3753,-0.9239,-0.0747,-0.3536,-0.9239,-0.1464,-0.3182,-0.9239,-0.2126,-0.4619,-0.8315,-0.3087,-0.5133,-0.8315,-0.2126,-0.5133,-0.8315,-0.2126,-0.3536,-0.9239,-0.1464,-0.3182,-0.9239,-0.2126,-0.2706,-0.9239,-0.2706,-0.3928,-0.8315,-0.3928,-0.4619,-0.8315,-0.3087,-0.4619,-0.8315,-0.3087,-0.3182,-0.9239,-0.2126,-0.2706,-0.9239,-0.2706,-0.2126,-0.9239,-0.3182,-0.3087,-0.8315,-0.4619,-0.3928,-0.8315,-0.3928,-0.3928,-0.8315,-0.3928,-0.2706,-0.9239,-0.2706,-0.2126,-0.9239,-0.3182,-0.1464,-0.9239,-0.3536,-0.2126,-0.8315,-0.5133,-0.3087,-0.8315,-0.4619,-0.3087,-0.8315,-0.4619,-0.2126,-0.9239,-0.3182,-0.1464,-0.9239,-0.3536,-0.0747,-0.9239,-0.3753,-0.1084,-0.8315,-0.5449,-0.2126,-0.8315,-0.5133,-0.2126,-0.8315,-0.5133,-0.1464,-0.9239,-0.3536,-0.0747,-0.9239,-0.3753,0.0,-0.9239,-0.3827,0.0,-0.8315,-0.5556,-0.1084,-0.8315,-0.5449,-0.1084,-0.8315,-0.5449,-0.0747,-0.9239,-0.3753,0.0,-0.9239,-0.3827,-0.0381,-0.9808,0.1913,-0.0747,-0.9239,0.3753,0.0,-0.9239,0.3827,0.0,-0.9239,0.3827,0.0,-0.9808,0.1951,-0.0381,-0.9808,0.1913,-0.0747,-0.9808,0.1802,-0.1464,-0.9239,0.3536,-0.0747,-0.9239,0.3753,-0.0747,-0.9239,0.3753,-0.0381,-0.9808,0.1913,-0.0747,-0.9808,0.1802,-0.1084,-0.9808,0.1622,-0.2126,-0.9239,0.3182,-0.1464,-0.9239,0.3536,-0.1464,-0.9239,0.3536,-0.0747,-0.9808,0.1802,-0.1084,-0.9808,0.1622,-0.1379,-0.9808,0.1379,-0.2706,-0.9239,0.2706,-0.2126,-0.9239,0.3182,-0.2126,-0.9239,0.3182,-0.1084,-0.9808,0.1622,-0.1379,-0.9808,0.1379,-0.1622,-0.9808,0.1084,-0.3182,-0.9239,0.2126,-0.2706,-0.9239,0.2706,-0.2706,-0.9239,0.2706,-0.1379,-0.9808,0.1379,-0.1622,-0.9808,0.1084,-0.1802,-0.9808,0.0747,-0.3536,-0.9239,0.1464,-0.3182,-0.9239,0.2126,-0.3182,-0.9239,0.2126,-0.1622,-0.9808,0.1084,-0.1802,-0.9808,0.0747,-0.1913,-0.9808,0.0381,-0.3753,-0.9239,0.0747,-0.3536,-0.9239,0.1464,-0.3536,-0.9239,0.1464,-0.1802,-0.9808,0.0747,-0.1913,-0.9808,0.0381,-0.1951,-0.9808,0.0,-0.3827,-0.9239,0.0,-0.3753,-0.9239,0.0747,-0.3753,-0.9239,0.0747,-0.1913,-0.9808,0.0381,-0.1951,-0.9808,0.0,-0.1913,-0.9808,-0.0381,-0.3753,-0.9239,-0.0747,-0.3827,-0.9239,0.0,-0.3827,-0.9239,0.0,-0.1951,-0.9808,0.0,-0.1913,-0.9808,-0.0381,-0.1802,-0.9808,-0.0747,-0.3536,-0.9239,-0.1464,-0.3753,-0.9239,-0.0747,-0.3753,-0.9239,-0.0747,-0.1913,-0.9808,-0.0381,-0.1802,-0.9808,-0.0747,-0.1622,-0.9808,-0.1084,-0.3182,-0.9239,-0.2126,-0.3536,-0.9239,-0.1464,-0.3536,-0.9239,-0.1464,-0.1802,-0.9808,-0.0747,-0.1622,-0.9808,-0.1084,-0.1379,-0.9808,-0.1379,-0.2706,-0.9239,-0.2706,-0.3182,-0.9239,-0.2126,-0.3182,-0.9239,-0.2126,-0.1622,-0.9808,-0.1084,-0.1379,-0.9808,-0.1379,-0.1084,-0.9808,-0.1622,-0.2126,-0.9239,-0.3182,-0.2706,-0.9239,-0.2706,-0.2706,-0.9239,-0.2706,-0.1379,-0.9808,-0.1379,-0.1084,-0.9808,-0.1622,-0.0747,-0.9808,-0.1802,-0.1464,-0.9239,-0.3536,-0.2126,-0.9239,-0.3182,-0.2126,-0.9239,-0.3182,-0.1084,-0.9808,-0.1622,-0.0747,-0.9808,-0.1802,-0.0381,-0.9808,-0.1913,-0.0747,-0.9239,-0.3753,-0.1464,-0.9239,-0.3536,-0.1464,-0.9239,-0.3536,-0.0747,-0.9808,-0.1802,-0.0381,-0.9808,-0.1913,0.0,-0.9808,-0.1951,0.0,-0.9239,-0.3827,-0.0747,-0.9239,-0.3753,-0.0747,-0.9239,-0.3753,-0.0381,-0.9808,-0.1913,0.0,-0.9808,-0.1951,0.0,-1.0,0.0,-0.0381,-0.9808,0.1913,0.0,-0.9808,0.1951,0.0,-1.0,0.0,-0.0747,-0.9808,0.1802,-0.0381,-0.9808,0.1913,0.0,-1.0,0.0,-0.1084,-0.9808,0.1622,-0.0747,-0.9808,0.1802,0.0,-1.0,0.0,-0.1379,-0.9808,0.1379,-0.1084,-0.9808,0.1622,0.0,-1.0,0.0,-0.1622,-0.9808,0.1084,-0.1379,-0.9808,0.1379,0.0,-1.0,0.0,-0.1802,-0.9808,0.0747,-0.1622,-0.9808,0.1084,0.0,-1.0,0.0,-0.1913,-0.9808,0.0381,-0.1802,-0.9808,0.0747,0.0,-1.0,0.0,-0.1951,-0.9808,0.0,-0.1913,-0.9808,0.0381,0.0,-1.0,0.0,-0.1913,-0.9808,-0.0381,-0.1951,-0.9808,0.0,0.0,-1.0,0.0,-0.1802,-0.9808,-0.0747,-0.1913,-0.9808,-0.0381,0.0,-1.0,0.0,-0.1622,-0.9808,-0.1084,-0.1802,-0.9808,-0.0747,0.0,-1.0,0.0,-0.1379,-0.9808,-0.1379,-0.1622,-0.9808,-0.1084,0.0,-1.0,0.0,-0.1084,-0.9808,-0.1622,-0.1379,-0.9808,-0.1379,0.0,-1.0,0.0,-0.0747,-0.9808,-0.1802,-0.1084,-0.9808,-0.1622,0.0,-1.0,0.0,-0.0381,-0.9808,-0.1913,-0.0747,-0.9808,-0.1802,0.0,-1.0,0.0,0.0,-0.9808,-0.1951,-0.0381,-0.9808,-0.1913],"normals":[-0.063,0.998,0.0,-0.0198,0.9794,0.2009,-0.0392,0.9796,0.1971,-0.063,0.998,0.0,-0.0392,0.9796,0.1971,-0.0769,0.9796,0.1857,-0.063,0.998,0.0,-0.0769,0.9796,0.1857,-0.1117,0.9796,0.1671,-0.063,0.998,0.0,-0.1117,0.9796,0.1671,-0.1421,0.9796,0.1421,-0.063,0.998,0.0,-0.1421,0.9796,0.1421,-0.1671,0.9796,0.1117,-0.063,0.998,0.0,-0.1671,0.9796,0.1117,-0.1857,0.9796,0.0769,-0.063,0.998,0.0,-0.1857,0.9796,0.0769,-0.1971,0.9796,0.0392,-0.063,0.998,0.0,-0.1971,0.9796,0.0392,-0.201,0.9796,0.0,-0.063,0.998,0.0,-0.201,0.9796,0.0,-0.1971,0.9796,-0.0392,-0.063,0.998,0.0,-0.1971,0.9796,-0.0392,-0.1857,0.9796,-0.0769,-0.063,0.998,0.0,-0.1857,0.9796,-0.0769,-0.1671,0.9796,-0.1117,-0.063,0.998,0.0,-0.1671,0.9796,-0.1117,-0.1421,0.9796,-0.1421,-0.063,0.998,0.0,-0.1421,0.9796,-0.1421,-0.1117,0.9796,-0.1671,-0.063,0.998,0.0,-0.1117,0.9796,-0.1671,-0.0769,0.9796,-0.1857,-0.063,0.998,0.0,-0.0769,0.9796,-0.1857,-0.0392,0.9796,-0.1971,-0.063,0.998,0.0,-0.0392,0.9796,-0.1971,-0.0198,0.9794,-0.2009,-0.0757,0.9217,0.3804,-0.0392,0.9796,0.1971,-0.0198,0.9794,0.2009,-0.0198,0.9794,0.2009,-0.0382,0.921,0.3876,-0.0757,0.9217,0.3804,-0.1484,0.9217,0.3584,-0.0769,0.9796,0.1857,-0.0392,0.9796,0.1971,-0.0392,0.9796,0.1971,-0.0757,0.9217,0.3804,-0.1484,0.9217,0.3584,-0.2155,0.9217,0.3225,-0.1117,0.9796,0.1671,-0.0769,0.9796,0.1857,-0.0769,0.9796,0.1857,-0.1484,0.9217,0.3584,-0.2155,0.9217,0.3225,-0.2743,0.9217,0.2743,-0.1421,0.9796,0.1421,-0.1117,0.9796,0.1671,-0.1117,0.9796,0.1671,-0.2155,0.9217,0.3225,-0.2743,0.9217,0.2743,-0.3225,0.9217,0.2155,-0.1671,0.9796,0.1117,-0.1421,0.9796,0.1421,-0.1421,0.9796,0.1421,-0.2743,0.9217,0.2743,-0.3225,0.9217,0.2155,-0.3584,0.9217,0.1484,-0.1857,0.9796,0.0769,-0.1671,0.9796,0.1117,-0.1671,0.9796,0.1117,-0.3225,0.9217,0.2155,-0.3584,0.9217,0.1484,-0.3804,0.9217,0.0757,-0.1971,0.9796,0.0392,-0.1857,0.9796,0.0769,-0.1857,0.9796,0.0769,-0.3584,0.9217,0.1484,-0.3804,0.9217,0.0757,-0.3879,0.9217,0.0,-0.201,0.9796,0.0,-0.1971,0.9796,0.0392,-0.1971,0.9796,0.0392,-0.3804,0.9217,0.0757,-0.3879,0.9217,0.0,-0.3804,0.9217,-0.0757,-0.1971,0.9796,-0.0392,-0.201,0.9796,0.0,-0.201,0.9796,0.0,-0.3879,0.9217,0.0,-0.3804,0.9217,-0.0757,-0.3584,0.9217,-0.1484,-0.1857,0.9796,-0.0769,-0.1971,0.9796,-0.0392,-0.1971,0.9796,-0.0392,-0.3804,0.9217,-0.0757,-0.3584,0.9217,-0.1484,-0.3225,0.9217,-0.2155,-0.1671,0.9796,-0.1117,-0.1857,0.9796,-0.0769,-0.1857,0.9796,-0.0769,-0.3584,0.9217,-0.1484,-0.3225,0.9217,-0.2155,-0.2743,0.9217,-0.2743,-0.1421,0.9796,-0.1421,-0.1671,0.9796,-0.1117,-0.1671,0.9796,-0.1117,-0.3225,0.9217,-0.2155,-0.2743,0.9217,-0.2743,-0.2155,0.9217,-0.3225,-0.1117,0.9796,-0.1671,-0.1421,0.9796,-0.1421,-0.1421,0.9796,-0.1421,-0.2743,0.9217,-0.2743,-0.2155,0.9217,-0.3225,-0.1484,0.9217,-0.3584,-0.0769,0.9796,-0.1857,-0.1117,0.9796,-0.1671,-0.1117,0.9796,-0.1671,-0.2155,0.9217,-0.3225,-0.1484,0.9217,-0.3584,-0.0757,0.9217,-0.3804,-0.0392,0.9796,-0.1971,-0.0769,0.9796,-0.1857,-0.0769,0.9796,-0.1857,-0.1484,0.9217,-0.3584,-0.0757,0.9217,-0.3804,-0.0382,0.921,-0.3876,-0.0198,0.9794,-0.2009,-0.0392,0.9796,-0.1971,-0.0392,0.9796,-0.1971,-0.0757,0.9217,-0.3804,-0.0382,0.921,-0.3876,-0.1092,0.8286,0.549,-0.0757,0.9217,0.3804,-0.0382,0.921,0.3876,-0.0382,0.921,0.3876,-0.055,0.8274,0.5589,-0.1092,0.8286,0.549,-0.2142,0.8286,0.5172,-0.1484,0.9217,0.3584,-0.0757,0.9217,0.3804,-0.0757,0.9217,0.3804,-0.1092,0.8286,0.549,-0.2142,0.8286,0.5172,-0.311,0.8286,0.4654,-0.2155,0.9217,0.3225,-0.1484,0.9217,0.3584,-0.1484,0.9217,0.3584,-0.2142,0.8286,0.5172,-0.311,0.8286,0.4654,-0.3958,0.8286,0.3958,-0.2743,0.9217,0.2743,-0.2155,0.9217,0.3225,-0.2155,0.9217,0.3225,-0.311,0.8286,0.4654,-0.3958,0.8286,0.3958,-0.4654,0.8286,0.311,-0.3225,0.9217,0.2155,-0.2743,0.9217,0.2743,-0.2743,0.9217,0.2743,-0.3958,0.8286,0.3958,-0.4654,0.8286,0.311,-0.5172,0.8286,0.2142,-0.3584,0.9217,0.1484,-0.3225,0.9217,0.2155,-0.3225,0.9217,0.2155,-0.4654,0.8286,0.311,-0.5172,0.8286,0.2142,-0.549,0.8286,0.1092,-0.3804,0.9217,0.0757,-0.3584,0.9217,0.1484,-0.3584,0.9217,0.1484,-0.5172,0.8286,0.2142,-0.549,0.8286,0.1092,-0.5598,0.8286,0.0,-0.3879,0.9217,0.0,-0.3804,0.9217,0.0757,-0.3804,0.9217,0.0757,-0.549,0.8286,0.1092,-0.5598,0.8286,0.0,-0.549,0.8286,-0.1092,-0.3804,0.9217,-0.0757,-0.3879,0.9217,0.0,-0.3879,0.9217,0.0,-0.5598,0.8286,0.0,-0.549,0.8286,-0.1092,-0.5172,0.8286,-0.2142,-0.3584,0.9217,-0.1484,-0.3804,0.9217,-0.0757,-0.3804,0.9217,-0.0757,-0.549,0.8286,-0.1092,-0.5172,0.8286,-0.2142,-0.4654,0.8286,-0.311,-0.3225,0.9217,-0.2155,-0.3584,0.9217,-0.1484,-0.3584,0.9217,-0.1484,-0.5172,0.8286,-0.2142,-0.4654,0.8286,-0.311,-0.3958,0.8286,-0.3958,-0.2743,0.9217,-0.2743,-0.3225,0.9217,-0.2155,-0.3225,0.9217,-0.2155,-0.4654,0.8286,-0.311,-0.3958,0.8286,-0.3958,-0.311,0.8286,-0.4654,-0.2155,0.9217,-0.3225,-0.2743,0.9217,-0.2743,-0.2743,0.9217,-0.2743,-0.3958,0.8286,-0.3958,-0.311,0.8286,-0.4654,-0.2142,0.8286,-0.5172,-0.1484,0.9217,-0.3584,-0.2155,0.9217,-0.3225,-0.2155,0.9217,-0.3225,-0.311,0.8286,-0.4654,-0.2142,0.8286,-0.5172,-0.1092,0.8286,-0.549,-0.0757,0.9217,-0.3804,-0.1484,0.9217,-0.3584,-0.1484,0.9217,-0.3584,-0.2142,0.8286,-0.5172,-0.1092,0.8286,-0.549,-0.055,0.8274,-0.5589,-0.0382,0.921,-0.3876,-0.0757,0.9217,-0.3804,-0.0757,0.9217,-0.3804,-0.1092,0.8286,-0.549,-0.055,0.8274,-0.5589,-0.1385,0.7041,0.6965,-0.1092,0.8286,0.549,-0.055,0.8274,0.5589,-0.055,0.8274,0.5589,-0.0698,0.7023,0.7084,-0.1385,0.7041,0.6965,-0.2718,0.7041,0.6561,-0.2142,0.8286,0.5172,-0.1092,0.8286,0.549,-0.1092,0.8286,0.549,-0.1385,0.7041,0.6965,-0.2718,0.7041,0.6561,-0.3945,0.7041,0.5905,-0.311,0.8286,0.4654,-0.2142,0.8286,0.5172,-0.2142,0.8286,0.5172,-0.2718,0.7041,0.6561,-0.3945,0.7041,0.5905,-0.5021,0.7041,0.5021,-0.3958,0.8286,0.3958,-0.311,0.8286,0.4654,-0.311,0.8286,0.4654,-0.3945,0.7041,0.5905,-0.5021,0.7041,0.5021,-0.5905,0.7041,0.3945,-0.4654,0.8286,0.311,-0.3958,0.8286,0.3958,-0.3958,0.8286,0.3958,-0.5021,0.7041,0.5021,-0.5905,0.7041,0.3945,-0.6561,0.7041,0.2718,-0.5172,0.8286,0.2142,-0.4654,0.8286,0.311,-0.4654,0.8286,0.311,-0.5905,0.7041,0.3945,-0.6561,0.7041,0.2718,-0.6965,0.7041,0.1385,-0.549,0.8286,0.1092,-0.5172,0.8286,0.2142,-0.5172,0.8286,0.2142,-0.6561,0.7041,0.2718,-0.6965,0.7041,0.1385,-0.7101,0.7041,0.0,-0.5598,0.8286,0.0,-0.549,0.8286,0.1092,-0.549,0.8286,0.1092,-0.6965,0.7041,0.1385,-0.7101,0.7041,0.0,-0.6965,0.7041,-0.1385,-0.549,0.8286,-0.1092,-0.5598,0.8286,0.0,-0.5598,0.8286,0.0,-0.7101,0.7041,0.0,-0.6965,0.7041,-0.1385,-0.6561,0.7041,-0.2718,-0.5172,0.8286,-0.2142,-0.549,0.8286,-0.1092,-0.549,0.8286,-0.1092,-0.6965,0.7041,-0.1385,-0.6561,0.7041,-0.2718,-0.5905,0.7041,-0.3945,-0.4654,0.8286,-0.311,-0.5172,0.8286,-0.2142,-0.5172,0.8286,-0.2142,-0.6561,0.7041,-0.2718,-0.5905,0.7041,-0.3945,-0.5021,0.7041,-0.5021,-0.3958,0.8286,-0.3958,-0.4654,0.8286,-0.311,-0.4654,0.8286,-0.311,-0.5905,0.7041,-0.3945,-0.5021,0.7041,-0.5021,-0.3945,0.7041,-0.5905,-0.311,0.8286,-0.4654,-0.3958,0.8286,-0.3958,-0.3958,0.8286,-0.3958,-0.5021,0.7041,-0.5021,-0.3945,0.7041,-0.5905,-0.2718,0.7041,-0.6561,-0.2142,0.8286,-0.5172,-0.311,0.8286,-0.4654,-0.311,0.8286,-0.4654,-0.3945,0.7041,-0.5905,-0.2718,0.7041,-0.6561,-0.1385,0.7041,-0.6965,-0.1092,0.8286,-0.549,-0.2142,0.8286,-0.5172,-0.2142,0.8286,-0.5172,-0.2718,0.7041,-0.6561,-0.1385,0.7041,-0.6965,-0.0698,0.7023,-0.7084,-0.055,0.8274,-0.5589,-0.1092,0.8286,-0.549,-0.1092,0.8286,-0.549,-0.1385,0.7041,-0.6965,-0.0698,0.7023,-0.7084,-0.1626,0.5528,0.8173,-0.1385,0.7041,0.6965,-0.0698,0.7023,0.7084,-0.0698,0.7023,0.7084,-0.0818,0.5509,0.8305,-0.1626,0.5528,0.8173,-0.3189,0.5528,0.7699,-0.2718,0.7041,0.6561,-0.1385,0.7041,0.6965,-0.1385,0.7041,0.6965,-0.1626,0.5528,0.8173,-0.3189,0.5528,0.7699,-0.463,0.5528,0.6929,-0.3945,0.7041,0.5905,-0.2718,0.7041,0.6561,-0.2718,0.7041,0.6561,-0.3189,0.5528,0.7699,-0.463,0.5528,0.6929,-0.5893,0.5528,0.5893,-0.5021,0.7041,0.5021,-0.3945,0.7041,0.5905,-0.3945,0.7041,0.5905,-0.463,0.5528,0.6929,-0.5893,0.5528,0.5893,-0.6929,0.5528,0.463,-0.5905,0.7041,0.3945,-0.5021,0.7041,0.5021,-0.5021,0.7041,0.5021,-0.5893,0.5528,0.5893,-0.6929,0.5528,0.463,-0.7699,0.5528,0.3189,-0.6561,0.7041,0.2718,-0.5905,0.7041,0.3945,-0.5905,0.7041,0.3945,-0.6929,0.5528,0.463,-0.7699,0.5528,0.3189,-0.8173,0.5528,0.1626,-0.6965,0.7041,0.1385,-0.6561,0.7041,0.2718,-0.6561,0.7041,0.2718,-0.7699,0.5528,0.3189,-0.8173,0.5528,0.1626,-0.8333,0.5528,0.0,-0.7101,0.7041,0.0,-0.6965,0.7041,0.1385,-0.6965,0.7041,0.1385,-0.8173,0.5528,0.1626,-0.8333,0.5528,0.0,-0.8173,0.5528,-0.1626,-0.6965,0.7041,-0.1385,-0.7101,0.7041,0.0,-0.7101,0.7041,0.0,-0.8333,0.5528,0.0,-0.8173,0.5528,-0.1626,-0.7699,0.5528,-0.3189,-0.6561,0.7041,-0.2718,-0.6965,0.7041,-0.1385,-0.6965,0.7041,-0.1385,-0.8173,0.5528,-0.1626,-0.7699,0.5528,-0.3189,-0.6929,0.5528,-0.463,-0.5905,0.7041,-0.3945,-0.6561,0.7041,-0.2718,-0.6561,0.7041,-0.2718,-0.7699,0.5528,-0.3189,-0.6929,0.5528,-0.463,-0.5893,0.5528,-0.5893,-0.5021,0.7041,-0.5021,-0.5905,0.7041,-0.3945,-0.5905,0.7041,-0.3945,-0.6929,0.5528,-0.463,-0.5893,0.5528,-0.5893,-0.463,0.5528,-0.6929,-0.3945,0.7041,-0.5905,-0.5021,0.7041,-0.5021,-0.5021,0.7041,-0.5021,-0.5893,0.5528,-0.5893,-0.463,0.5528,-0.6929,-0.3189,0.5528,-0.7699,-0.2718,0.7041,-0.6561,-0.3945,0.7041,-0.5905,-0.3945,0.7041,-0.5905,-0.463,0.5528,-0.6929,-0.3189,0.5528,-0.7699,-0.1626,0.5528,-0.8173,-0.1385,0.7041,-0.6965,-0.2718,0.7041,-0.6561,-0.2718,0.7041,-0.6561,-0.3189,0.5528,-0.7699,-0.1626,0.5528,-0.8173,-0.0818,0.5509,-0.8305,-0.0698,0.7023,-0.7084,-0.1385,0.7041,-0.6965,-0.1385,0.7041,-0.6965,-0.1626,0.5528,-0.8173,-0.0818,0.5509,-0.8305,-0.1804,0.3805,0.907,-0.1626,0.5528,0.8173,-0.0818,0.5509,0.8305,-0.0818,0.5509,0.8305,-0.0907,0.379,0.921,-0.1804,0.3805,0.907,-0.3539,0.3805,0.8544,-0.3189,0.5528,0.7699,-0.1626,0.5528,0.8173,-0.1626,0.5528,0.8173,-0.1804,0.3805,0.907,-0.3539,0.3805,0.8544,-0.5138,0.3805,0.7689,-0.463,0.5528,0.6929,-0.3189,0.5528,0.7699,-0.3189,0.5528,0.7699,-0.3539,0.3805,0.8544,-0.5138,0.3805,0.7689,-0.6539,0.3805,0.6539,-0.5893,0.5528,0.5893,-0.463,0.5528,0.6929,-0.463,0.5528,0.6929,-0.5138,0.3805,0.7689,-0.6539,0.3805,0.6539,-0.7689,0.3805,0.5138,-0.6929,0.5528,0.463,-0.5893,0.5528,0.5893,-0.5893,0.5528,0.5893,-0.6539,0.3805,0.6539,-0.7689,0.3805,0.5138,-0.8544,0.3805,0.3539,-0.7699,0.5528,0.3189,-0.6929,0.5528,0.463,-0.6929,0.5528,0.463,-0.7689,0.3805,0.5138,-0.8544,0.3805,0.3539,-0.907,0.3805,0.1804,-0.8173,0.5528,0.1626,-0.7699,0.5528,0.3189,-0.7699,0.5528,0.3189,-0.8544,0.3805,0.3539,-0.907,0.3805,0.1804,-0.9248,0.3805,0.0,-0.8333,0.5528,0.0,-0.8173,0.5528,0.1626,-0.8173,0.5528,0.1626,-0.907,0.3805,0.1804,-0.9248,0.3805,0.0,-0.907,0.3805,-0.1804,-0.8173,0.5528,-0.1626,-0.8333,0.5528,0.0,-0.8333,0.5528,0.0,-0.9248,0.3805,0.0,-0.907,0.3805,-0.1804,-0.8544,0.3805,-0.3539,-0.7699,0.5528,-0.3189,-0.8173,0.5528,-0.1626,-0.8173,0.5528,-0.1626,-0.907,0.3805,-0.1804,-0.8544,0.3805,-0.3539,-0.7689,0.3805,-0.5138,-0.6929,0.5528,-0.463,-0.7699,0.5528,-0.3189,-0.7699,0.5528,-0.3189,-0.8544,0.3805,-0.3539,-0.7689,0.3805,-0.5138,-0.6539,0.3805,-0.6539,-0.5893,0.5528,-0.5893,-0.6929,0.5528,-0.463,-0.6929,0.5528,-0.463,-0.7689,0.3805,-0.5138,-0.6539,0.3805,-0.6539,-0.5138,0.3805,-0.7689,-0.463,0.5528,-0.6929,-0.5893,0.5528,-0.5893,-0.5893,0.5528,-0.5893,-0.6539,0.3805,-0.6539,-0.5138,0.3805,-0.7689,-0.3539,0.3805,-0.8544,-0.3189,0.5528,-0.7699,-0.463,0.5528,-0.6929,-0.463,0.5528,-0.6929,-0.5138,0.3805,-0.7689,-0.3539,0.3805,-0.8544,-0.1804,0.3805,-0.907,-0.1626,0.5528,-0.8173,-0.3189,0.5528,-0.7699,-0.3189,0.5528,-0.7699,-0.3539,0.3805,-0.8544,-0.1804,0.3805,-0.907,-0.0907,0.379,-0.921,-0.0818,0.5509,-0.8305,-0.1626,0.5528,-0.8173,-0.1626,0.5528,-0.8173,-0.1804,0.3805,-0.907,-0.0907,0.379,-0.921,-0.1914,0.1939,0.9622,-0.1804,0.3805,0.907,-0.0907,0.379,0.921,-0.0907,0.379,0.921,-0.0962,0.193,0.9765,-0.1914,0.1939,0.9622,-0.3754,0.1939,0.9063,-0.3539,0.3805,0.8544,-0.1804,0.3805,0.907,-0.1804,0.3805,0.907,-0.1914,0.1939,0.9622,-0.3754,0.1939,0.9063,-0.545,0.1939,0.8157,-0.5138,0.3805,0.7689,-0.3539,0.3805,0.8544,-0.3539,0.3805,0.8544,-0.3754,0.1939,0.9063,-0.545,0.1939,0.8157,-0.6937,0.1939,0.6937,-0.6539,0.3805,0.6539,-0.5138,0.3805,0.7689,-0.5138,0.3805,0.7689,-0.545,0.1939,0.8157,-0.6937,0.1939,0.6937,-0.8157,0.1939,0.545,-0.7689,0.3805,0.5138,-0.6539,0.3805,0.6539,-0.6539,0.3805,0.6539,-0.6937,0.1939,0.6937,-0.8157,0.1939,0.545,-0.9063,0.1939,0.3754,-0.8544,0.3805,0.3539,-0.7689,0.3805,0.5138,-0.7689,0.3805,0.5138,-0.8157,0.1939,0.545,-0.9063,0.1939,0.3754,-0.9622,0.1939,0.1914,-0.907,0.3805,0.1804,-0.8544,0.3805,0.3539,-0.8544,0.3805,0.3539,-0.9063,0.1939,0.3754,-0.9622,0.1939,0.1914,-0.981,0.1939,0.0,-0.9248,0.3805,0.0,-0.907,0.3805,0.1804,-0.907,0.3805,0.1804,-0.9622,0.1939,0.1914,-0.981,0.1939,0.0,-0.9622,0.1939,-0.1914,-0.907,0.3805,-0.1804,-0.9248,0.3805,0.0,-0.9248,0.3805,0.0,-0.981,0.1939,0.0,-0.9622,0.1939,-0.1914,-0.9063,0.1939,-0.3754,-0.8544,0.3805,-0.3539,-0.907,0.3805,-0.1804,-0.907,0.3805,-0.1804,-0.9622,0.1939,-0.1914,-0.9063,0.1939,-0.3754,-0.8157,0.1939,-0.545,-0.7689,0.3805,-0.5138,-0.8544,0.3805,-0.3539,-0.8544,0.3805,-0.3539,-0.9063,0.1939,-0.3754,-0.8157,0.1939,-0.545,-0.6937,0.1939,-0.6937,-0.6539,0.3805,-0.6539,-0.7689,0.3805,-0.5138,-0.7689,0.3805,-0.5138,-0.8157,0.1939,-0.545,-0.6937,0.1939,-0.6937,-0.545,0.1939,-0.8157,-0.5138,0.3805,-0.7689,-0.6539,0.3805,-0.6539,-0.6539,0.3805,-0.6539,-0.6937,0.1939,-0.6937,-0.545,0.1939,-0.8157,-0.3754,0.1939,-0.9063,-0.3539,0.3805,-0.8544,-0.5138,0.3805,-0.7689,-0.5138,0.3805,-0.7689,-0.545,0.1939,-0.8157,-0.3754,0.1939,-0.9063,-0.1914,0.1939,-0.9622,-0.1804,0.3805,-0.907,-0.3539,0.3805,-0.8544,-0.3539,0.3805,-0.8544,-0.3754,0.1939,-0.9063,-0.1914,0.1939,-0.9622,-0.0962,0.193,-0.9765,-0.0907,0.379,-0.921,-0.1804,0.3805,-0.907,-0.1804,0.3805,-0.907,-0.1914,0.1939,-0.9622,-0.0962,0.193,-0.9765,-0.1951,0.0,0.9808,-0.1914,0.1939,0.9622,-0.0962,0.193,0.9765,-0.0962,0.193,0.9765,-0.098,0.0,0.9952,-0.1951,0.0,0.9808,-0.3827,0.0,0.9239,-0.3754,0.1939,0.9063,-0.1914,0.1939,0.9622,-0.1914,0.1939,0.9622,-0.1951,0.0,0.9808,-0.3827,0.0,0.9239,-0.5556,0.0,0.8315,-0.545,0.1939,0.8157,-0.3754,0.1939,0.9063,-0.3754,0.1939,0.9063,-0.3827,0.0,0.9239,-0.5556,0.0,0.8315,-0.7071,0.0,0.7071,-0.6937,0.1939,0.6937,-0.545,0.1939,0.8157,-0.545,0.1939,0.8157,-0.5556,0.0,0.8315,-0.7071,0.0,0.7071,-0.8315,0.0,0.5556,-0.8157,0.1939,0.545,-0.6937,0.1939,0.6937,-0.6937,0.1939,0.6937,-0.7071,0.0,0.7071,-0.8315,0.0,0.5556,-0.9239,0.0,0.3827,-0.9063,0.1939,0.3754,-0.8157,0.1939,0.545,-0.8157,0.1939,0.545,-0.8315,0.0,0.5556,-0.9239,0.0,0.3827,-0.9808,0.0,0.1951,-0.9622,0.1939,0.1914,-0.9063,0.1939,0.3754,-0.9063,0.1939,0.3754,-0.9239,0.0,0.3827,-0.9808,0.0,0.1951,-1.0,0.0,0.0,-0.981,0.1939,0.0,-0.9622,0.1939,0.1914,-0.9622,0.1939,0.1914,-0.9808,0.0,0.1951,-1.0,0.0,0.0,-0.9808,0.0,-0.1951,-0.9622,0.1939,-0.1914,-0.981,0.1939,0.0,-0.981,0.1939,0.0,-1.0,0.0,0.0,-0.9808,0.0,-0.1951,-0.9239,0.0,-0.3827,-0.9063,0.1939,-0.3754,-0.9622,0.1939,-0.1914,-0.9622,0.1939,-0.1914,-0.9808,0.0,-0.1951,-0.9239,0.0,-0.3827,-0.8315,0.0,-0.5556,-0.8157,0.1939,-0.545,-0.9063,0.1939,-0.3754,-0.9063,0.1939,-0.3754,-0.9239,0.0,-0.3827,-0.8315,0.0,-0.5556,-0.7071,0.0,-0.7071,-0.6937,0.1939,-0.6937,-0.8157,0.1939,-0.545,-0.8157,0.1939,-0.545,-0.8315,0.0,-0.5556,-0.7071,0.0,-0.7071,-0.5556,0.0,-0.8315,-0.545,0.1939,-0.8157,-0.6937,0.1939,-0.6937,-0.6937,0.1939,-0.6937,-0.7071,0.0,-0.7071,-0.5556,0.0,-0.8315,-0.3827,0.0,-0.9239,-0.3754,0.1939,-0.9063,-0.545,0.1939,-0.8157,-0.545,0.1939,-0.8157,-0.5556,0.0,-0.8315,-0.3827,0.0,-0.9239,-0.1951,0.0,-0.9808,-0.1914,0.1939,-0.9622,-0.3754,0.1939,-0.9063,-0.3754,0.1939,-0.9063,-0.3827,0.0,-0.9239,-0.1951,0.0,-0.9808,-0.098,0.0,-0.9952,-0.0962,0.193,-0.9765,-0.1914,0.1939,-0.9622,-0.1914,0.1939,-0.9622,-0.1951,0.0,-0.9808,-0.098,0.0,-0.9952,-0.1914,-0.1939,0.9622,-0.1951,0.0,0.9808,-0.098,0.0,0.9952,-0.098,0.0,0.9952,-0.0962,-0.193,0.9765,-0.1914,-0.1939,0.9622,-0.3754,-0.1939,0.9063,-0.3827,0.0,0.9239,-0.1951,0.0,0.9808,-0.1951,0.0,0.9808,-0.1914,-0.1939,0.9622,-0.3754,-0.1939,0.9063,-0.545,-0.1939,0.8157,-0.5556,0.0,0.8315,-0.3827,0.0,0.9239,-0.3827,0.0,0.9239,-0.3754,-0.1939,0.9063,-0.545,-0.1939,0.8157,-0.6937,-0.1939,0.6937,-0.7071,0.0,0.7071,-0.5556,0.0,0.8315,-0.5556,0.0,0.8315,-0.545,-0.1939,0.8157,-0.6937,-0.1939,0.6937,-0.8157,-0.1939,0.545,-0.8315,0.0,0.5556,-0.7071,0.0,0.7071,-0.7071,0.0,0.7071,-0.6937,-0.1939,0.6937,-0.8157,-0.1939,0.545,-0.9063,-0.1939,0.3754,-0.9239,0.0,0.3827,-0.8315,0.0,0.5556,-0.8315,0.0,0.5556,-0.8157,-0.1939,0.545,-0.9063,-0.1939,0.3754,-0.9622,-0.1939,0.1914,-0.9808,0.0,0.1951,-0.9239,0.0,0.3827,-0.9239,0.0,0.3827,-0.9063,-0.1939,0.3754,-0.9622,-0.1939,0.1914,-0.981,-0.1939,0.0,-1.0,0.0,0.0,-0.9808,0.0,0.1951,-0.9808,0.0,0.1951,-0.9622,-0.1939,0.1914,-0.981,-0.1939,0.0,-0.9622,-0.1939,-0.1914,-0.9808,0.0,-0.1951,-1.0,0.0,0.0,-1.0,0.0,0.0,-0.981,-0.1939,0.0,-0.9622,-0.1939,-0.1914,-0.9063,-0.1939,-0.3754,-0.9239,0.0,-0.3827,-0.9808,0.0,-0.1951,-0.9808,0.0,-0.1951,-0.9622,-0.1939,-0.1914,-0.9063,-0.1939,-0.3754,-0.8157,-0.1939,-0.545,-0.8315,0.0,-0.5556,-0.9239,0.0,-0.3827,-0.9239,0.0,-0.3827,-0.9063,-0.1939,-0.3754,-0.8157,-0.1939,-0.545,-0.6937,-0.1939,-0.6937,-0.7071,0.0,-0.7071,-0.8315,0.0,-0.5556,-0.8315,0.0,-0.5556,-0.8157,-0.1939,-0.545,-0.6937,-0.1939,-0.6937,-0.545,-0.1939,-0.8157,-0.5556,0.0,-0.8315,-0.7071,0.0,-0.7071,-0.7071,0.0,-0.7071,-0.6937,-0.1939,-0.6937,-0.545,-0.1939,-0.8157,-0.3754,-0.1939,-0.9063,-0.3827,0.0,-0.9239,-0.5556,0.0,-0.8315,-0.5556,0.0,-0.8315,-0.545,-0.1939,-0.8157,-0.3754,-0.1939,-0.9063,-0.1914,-0.1939,-0.9622,-0.1951,0.0,-0.9808,-0.3827,0.0,-0.9239,-0.3827,0.0,-0.9239,-0.3754,-0.1939,-0.9063,-0.1914,-0.1939,-0.9622,-0.0962,-0.193,-0.9765,-0.098,0.0,-0.9952,-0.1951,0.0,-0.9808,-0.1951,0.0,-0.9808,-0.1914,-0.1939,-0.9622,-0.0962,-0.193,-0.9765,-0.1804,-0.3805,0.907,-0.1914,-0.1939,0.9622,-0.0962,-0.193,0.9765,-0.0962,-0.193,0.9765,-0.0907,-0.379,0.921,-0.1804,-0.3805,0.907,-0.3539,-0.3805,0.8544,-0.3754,-0.1939,0.9063,-0.1914,-0.1939,0.9622,-0.1914,-0.1939,0.9622,-0.1804,-0.3805,0.907,-0.3539,-0.3805,0.8544,-0.5138,-0.3805,0.7689,-0.545,-0.1939,0.8157,-0.3754,-0.1939,0.9063,-0.3754,-0.1939,0.9063,-0.3539,-0.3805,0.8544,-0.5138,-0.3805,0.7689,-0.6539,-0.3805,0.6539,-0.6937,-0.1939,0.6937,-0.545,-0.1939,0.8157,-0.545,-0.1939,0.8157,-0.5138,-0.3805,0.7689,-0.6539,-0.3805,0.6539,-0.7689,-0.3805,0.5138,-0.8157,-0.1939,0.545,-0.6937,-0.1939,0.6937,-0.6937,-0.1939,0.6937,-0.6539,-0.3805,0.6539,-0.7689,-0.3805,0.5138,-0.8544,-0.3805,0.3539,-0.9063,-0.1939,0.3754,-0.8157,-0.1939,0.545,-0.8157,-0.1939,0.545,-0.7689,-0.3805,0.5138,-0.8544,-0.3805,0.3539,-0.907,-0.3805,0.1804,-0.9622,-0.1939,0.1914,-0.9063,-0.1939,0.3754,-0.9063,-0.1939,0.3754,-0.8544,-0.3805,0.3539,-0.907,-0.3805,0.1804,-0.9248,-0.3805,0.0,-0.981,-0.1939,0.0,-0.9622,-0.1939,0.1914,-0.9622,-0.1939,0.1914,-0.907,-0.3805,0.1804,-0.9248,-0.3805,0.0,-0.907,-0.3805,-0.1804,-0.9622,-0.1939,-0.1914,-0.981,-0.1939,0.0,-0.981,-0.1939,0.0,-0.9248,-0.3805,0.0,-0.907,-0.3805,-0.1804,-0.8544,-0.3805,-0.3539,-0.9063,-0.1939,-0.3754,-0.9622,-0.1939,-0.1914,-0.9622,-0.1939,-0.1914,-0.907,-0.3805,-0.1804,-0.8544,-0.3805,-0.3539,-0.7689,-0.3805,-0.5138,-0.8157,-0.1939,-0.545,-0.9063,-0.1939,-0.3754,-0.9063,-0.1939,-0.3754,-0.8544,-0.3805,-0.3539,-0.7689,-0.3805,-0.5138,-0.6539,-0.3805,-0.6539,-0.6937,-0.1939,-0.6937,-0.8157,-0.1939,-0.545,-0.8157,-0.1939,-0.545,-0.7689,-0.3805,-0.5138,-0.6539,-0.3805,-0.6539,-0.5138,-0.3805,-0.7689,-0.545,-0.1939,-0.8157,-0.6937,-0.1939,-0.6937,-0.6937,-0.1939,-0.6937,-0.6539,-0.3805,-0.6539,-0.5138,-0.3805,-0.7689,-0.3539,-0.3805,-0.8544,-0.3754,-0.1939,-0.9063,-0.545,-0.1939,-0.8157,-0.545,-0.1939,-0.8157,-0.5138,-0.3805,-0.7689,-0.3539,-0.3805,-0.8544,-0.1804,-0.3805,-0.907,-0.1914,-0.1939,-0.9622,-0.3754,-0.1939,-0.9063,-0.3754,-0.1939,-0.9063,-0.3539,-0.3805,-0.8544,-0.1804,-0.3805,-0.907,-0.0907,-0.379,-0.921,-0.0962,-0.193,-0.9765,-0.1914,-0.1939,-0.9622,-0.1914,-0.1939,-0.9622,-0.1804,-0.3805,-0.907,-0.0907,-0.379,-0.921,-0.1626,-0.5528,0.8173,-0.1804,-0.3805,0.907,-0.0907,-0.379,0.921,-0.0907,-0.379,0.921,-0.0818,-0.5509,0.8305,-0.1626,-0.5528,0.8173,-0.3189,-0.5528,0.7699,-0.3539,-0.3805,0.8544,-0.1804,-0.3805,0.907,-0.1804,-0.3805,0.907,-0.1626,-0.5528,0.8173,-0.3189,-0.5528,0.7699,-0.463,-0.5528,0.6929,-0.5138,-0.3805,0.7689,-0.3539,-0.3805,0.8544,-0.3539,-0.3805,0.8544,-0.3189,-0.5528,0.7699,-0.463,-0.5528,0.6929,-0.5893,-0.5528,0.5893,-0.6539,-0.3805,0.6539,-0.5138,-0.3805,0.7689,-0.5138,-0.3805,0.7689,-0.463,-0.5528,0.6929,-0.5893,-0.5528,0.5893,-0.6929,-0.5528,0.463,-0.7689,-0.3805,0.5138,-0.6539,-0.3805,0.6539,-0.6539,-0.3805,0.6539,-0.5893,-0.5528,0.5893,-0.6929,-0.5528,0.463,-0.7699,-0.5528,0.3189,-0.8544,-0.3805,0.3539,-0.7689,-0.3805,0.5138,-0.7689,-0.3805,0.5138,-0.6929,-0.5528,0.463,-0.7699,-0.5528,0.3189,-0.8173,-0.5528,0.1626,-0.907,-0.3805,0.1804,-0.8544,-0.3805,0.3539,-0.8544,-0.3805,0.3539,-0.7699,-0.5528,0.3189,-0.8173,-0.5528,0.1626,-0.8333,-0.5528,0.0,-0.9248,-0.3805,0.0,-0.907,-0.3805,0.1804,-0.907,-0.3805,0.1804,-0.8173,-0.5528,0.1626,-0.8333,-0.5528,0.0,-0.8173,-0.5528,-0.1626,-0.907,-0.3805,-0.1804,-0.9248,-0.3805,0.0,-0.9248,-0.3805,0.0,-0.8333,-0.5528,0.0,-0.8173,-0.5528,-0.1626,-0.7699,-0.5528,-0.3189,-0.8544,-0.3805,-0.3539,-0.907,-0.3805,-0.1804,-0.907,-0.3805,-0.1804,-0.8173,-0.5528,-0.1626,-0.7699,-0.5528,-0.3189,-0.6929,-0.5528,-0.463,-0.7689,-0.3805,-0.5138,-0.8544,-0.3805,-0.3539,-0.8544,-0.3805,-0.3539,-0.7699,-0.5528,-0.3189,-0.6929,-0.5528,-0.463,-0.5893,-0.5528,-0.5893,-0.6539,-0.3805,-0.6539,-0.7689,-0.3805,-0.5138,-0.7689,-0.3805,-0.5138,-0.6929,-0.5528,-0.463,-0.5893,-0.5528,-0.5893,-0.463,-0.5528,-0.6929,-0.5138,-0.3805,-0.7689,-0.6539,-0.3805,-0.6539,-0.6539,-0.3805,-0.6539,-0.5893,-0.5528,-0.5893,-0.463,-0.5528,-0.6929,-0.3189,-0.5528,-0.7699,-0.3539,-0.3805,-0.8544,-0.5138,-0.3805,-0.7689,-0.5138,-0.3805,-0.7689,-0.463,-0.5528,-0.6929,-0.3189,-0.5528,-0.7699,-0.1626,-0.5528,-0.8173,-0.1804,-0.3805,-0.907,-0.3539,-0.3805,-0.8544,-0.3539,-0.3805,-0.8544,-0.3189,-0.5528,-0.7699,-0.1626,-0.5528,-0.8173,-0.0818,-0.5509,-0.8305,-0.0907,-0.379,-0.921,-0.1804,-0.3805,-0.907,-0.1804,-0.3805,-0.907,-0.1626,-0.5528,-0.8173,-0.0818,-0.5509,-0.8305,-0.1385,-0.7041,0.6965,-0.1626,-0.5528,0.8173,-0.0818,-0.5509,0.8305,-0.0818,-0.5509,0.8305,-0.0698,-0.7023,0.7084,-0.1385,-0.7041,0.6965,-0.2718,-0.7041,0.6561,-0.3189,-0.5528,0.7699,-0.1626,-0.5528,0.8173,-0.1626,-0.5528,0.8173,-0.1385,-0.7041,0.6965,-0.2718,-0.7041,0.6561,-0.3945,-0.7041,0.5905,-0.463,-0.5528,0.6929,-0.3189,-0.5528,0.7699,-0.3189,-0.5528,0.7699,-0.2718,-0.7041,0.6561,-0.3945,-0.7041,0.5905,-0.5021,-0.7041,0.5021,-0.5893,-0.5528,0.5893,-0.463,-0.5528,0.6929,-0.463,-0.5528,0.6929,-0.3945,-0.7041,0.5905,-0.5021,-0.7041,0.5021,-0.5905,-0.7041,0.3945,-0.6929,-0.5528,0.463,-0.5893,-0.5528,0.5893,-0.5893,-0.5528,0.5893,-0.5021,-0.7041,0.5021,-0.5905,-0.7041,0.3945,-0.6561,-0.7041,0.2718,-0.7699,-0.5528,0.3189,-0.6929,-0.5528,0.463,-0.6929,-0.5528,0.463,-0.5905,-0.7041,0.3945,-0.6561,-0.7041,0.2718,-0.6965,-0.7041,0.1385,-0.8173,-0.5528,0.1626,-0.7699,-0.5528,0.3189,-0.7699,-0.5528,0.3189,-0.6561,-0.7041,0.2718,-0.6965,-0.7041,0.1385,-0.7101,-0.7041,0.0,-0.8333,-0.5528,0.0,-0.8173,-0.5528,0.1626,-0.8173,-0.5528,0.1626,-0.6965,-0.7041,0.1385,-0.7101,-0.7041,0.0,-0.6965,-0.7041,-0.1385,-0.8173,-0.5528,-0.1626,-0.8333,-0.5528,0.0,-0.8333,-0.5528,0.0,-0.7101,-0.7041,0.0,-0.6965,-0.7041,-0.1385,-0.6561,-0.7041,-0.2718,-0.7699,-0.5528,-0.3189,-0.8173,-0.5528,-0.1626,-0.8173,-0.5528,-0.1626,-0.6965,-0.7041,-0.1385,-0.6561,-0.7041,-0.2718,-0.5905,-0.7041,-0.3945,-0.6929,-0.5528,-0.463,-0.7699,-0.5528,-0.3189,-0.7699,-0.5528,-0.3189,-0.6561,-0.7041,-0.2718,-0.5905,-0.7041,-0.3945,-0.5021,-0.7041,-0.5021,-0.5893,-0.5528,-0.5893,-0.6929,-0.5528,-0.463,-0.6929,-0.5528,-0.463,-0.5905,-0.7041,-0.3945,-0.5021,-0.7041,-0.5021,-0.3945,-0.7041,-0.5905,-0.463,-0.5528,-0.6929,-0.5893,-0.5528,-0.5893,-0.5893,-0.5528,-0.5893,-0.5021,-0.7041,-0.5021,-0.3945,-0.7041,-0.5905,-0.2718,-0.7041,-0.6561,-0.3189,-0.5528,-0.7699,-0.463,-0.5528,-0.6929,-0.463,-0.5528,-0.6929,-0.3945,-0.7041,-0.5905,-0.2718,-0.7041,-0.6561,-0.1385,-0.7041,-0.6965,-0.1626,-0.5528,-0.8173,-0.3189,-0.5528,-0.7699,-0.3189,-0.5528,-0.7699,-0.2718,-0.7041,-0.6561,-0.1385,-0.7041,-0.6965,-0.0698,-0.7023,-0.7084,-0.0818,-0.5509,-0.8305,-0.1626,-0.5528,-0.8173,-0.1626,-0.5528,-0.8173,-0.1385,-0.7041,-0.6965,-0.0698,-0.7023,-0.7084,-0.1092,-0.8286,0.549,-0.1385,-0.7041,0.6965,-0.0698,-0.7023,0.7084,-0.0698,-0.7023,0.7084,-0.055,-0.8274,0.5589,-0.1092,-0.8286,0.549,-0.2142,-0.8286,0.5172,-0.2718,-0.7041,0.6561,-0.1385,-0.7041,0.6965,-0.1385,-0.7041,0.6965,-0.1092,-0.8286,0.549,-0.2142,-0.8286,0.5172,-0.311,-0.8286,0.4654,-0.3945,-0.7041,0.5905,-0.2718,-0.7041,0.6561,-0.2718,-0.7041,0.6561,-0.2142,-0.8286,0.5172,-0.311,-0.8286,0.4654,-0.3958,-0.8286,0.3958,-0.5021,-0.7041,0.5021,-0.3945,-0.7041,0.5905,-0.3945,-0.7041,0.5905,-0.311,-0.8286,0.4654,-0.3958,-0.8286,0.3958,-0.4654,-0.8286,0.311,-0.5905,-0.7041,0.3945,-0.5021,-0.7041,0.5021,-0.5021,-0.7041,0.5021,-0.3958,-0.8286,0.3958,-0.4654,-0.8286,0.311,-0.5172,-0.8286,0.2142,-0.6561,-0.7041,0.2718,-0.5905,-0.7041,0.3945,-0.5905,-0.7041,0.3945,-0.4654,-0.8286,0.311,-0.5172,-0.8286,0.2142,-0.549,-0.8286,0.1092,-0.6965,-0.7041,0.1385,-0.6561,-0.7041,0.2718,-0.6561,-0.7041,0.2718,-0.5172,-0.8286,0.2142,-0.549,-0.8286,0.1092,-0.5598,-0.8286,0.0,-0.7101,-0.7041,0.0,-0.6965,-0.7041,0.1385,-0.6965,-0.7041,0.1385,-0.549,-0.8286,0.1092,-0.5598,-0.8286,0.0,-0.549,-0.8286,-0.1092,-0.6965,-0.7041,-0.1385,-0.7101,-0.7041,0.0,-0.7101,-0.7041,0.0,-0.5598,-0.8286,0.0,-0.549,-0.8286,-0.1092,-0.5172,-0.8286,-0.2142,-0.6561,-0.7041,-0.2718,-0.6965,-0.7041,-0.1385,-0.6965,-0.7041,-0.1385,-0.549,-0.8286,-0.1092,-0.5172,-0.8286,-0.2142,-0.4654,-0.8286,-0.311,-0.5905,-0.7041,-0.3945,-0.6561,-0.7041,-0.2718,-0.6561,-0.7041,-0.2718,-0.5172,-0.8286,-0.2142,-0.4654,-0.8286,-0.311,-0.3958,-0.8286,-0.3958,-0.5021,-0.7041,-0.5021,-0.5905,-0.7041,-0.3945,-0.5905,-0.7041,-0.3945,-0.4654,-0.8286,-0.311,-0.3958,-0.8286,-0.3958,-0.311,-0.8286,-0.4654,-0.3945,-0.7041,-0.5905,-0.5021,-0.7041,-0.5021,-0.5021,-0.7041,-0.5021,-0.3958,-0.8286,-0.3958,-0.311,-0.8286,-0.4654,-0.2142,-0.8286,-0.5172,-0.2718,-0.7041,-0.6561,-0.3945,-0.7041,-0.5905,-0.3945,-0.7041,-0.5905,-0.311,-0.8286,-0.4654,-0.2142,-0.8286,-0.5172,-0.1092,-0.8286,-0.549,-0.1385,-0.7041,-0.6965,-0.2718,-0.7041,-0.6561,-0.2718,-0.7041,-0.6561,-0.2142,-0.8286,-0.5172,-0.1092,-0.8286,-0.549,-0.055,-0.8274,-0.5589,-0.0698,-0.7023,-0.7084,-0.1385,-0.7041,-0.6965,-0.1385,-0.7041,-0.6965,-0.1092,-0.8286,-0.549,-0.055,-0.8274,-0.5589,-0.0757,-0.9217,0.3804,-0.1092,-0.8286,0.549,-0.055,-0.8274,0.5589,-0.055,-0.8274,0.5589,-0.0382,-0.921,0.3876,-0.0757,-0.9217,0.3804,-0.1484,-0.9217,0.3584,-0.2142,-0.8286,0.5172,-0.1092,-0.8286,0.549,-0.1092,-0.8286,0.549,-0.0757,-0.9217,0.3804,-0.1484,-0.9217,0.3584,-0.2155,-0.9217,0.3225,-0.311,-0.8286,0.4654,-0.2142,-0.8286,0.5172,-0.2142,-0.8286,0.5172,-0.1484,-0.9217,0.3584,-0.2155,-0.9217,0.3225,-0.2743,-0.9217,0.2743,-0.3958,-0.8286,0.3958,-0.311,-0.8286,0.4654,-0.311,-0.8286,0.4654,-0.2155,-0.9217,0.3225,-0.2743,-0.9217,0.2743,-0.3225,-0.9217,0.2155,-0.4654,-0.8286,0.311,-0.3958,-0.8286,0.3958,-0.3958,-0.8286,0.3958,-0.2743,-0.9217,0.2743,-0.3225,-0.9217,0.2155,-0.3584,-0.9217,0.1484,-0.5172,-0.8286,0.2142,-0.4654,-0.8286,0.311,-0.4654,-0.8286,0.311,-0.3225,-0.9217,0.2155,-0.3584,-0.9217,0.1484,-0.3804,-0.9217,0.0757,-0.549,-0.8286,0.1092,-0.5172,-0.8286,0.2142,-0.5172,-0.8286,0.2142,-0.3584,-0.9217,0.1484,-0.3804,-0.9217,0.0757,-0.3879,-0.9217,0.0,-0.5598,-0.8286,0.0,-0.549,-0.8286,0.1092,-0.549,-0.8286,0.1092,-0.3804,-0.9217,0.0757,-0.3879,-0.9217,0.0,-0.3804,-0.9217,-0.0757,-0.549,-0.8286,-0.1092,-0.5598,-0.8286,0.0,-0.5598,-0.8286,0.0,-0.3879,-0.9217,0.0,-0.3804,-0.9217,-0.0757,-0.3584,-0.9217,-0.1484,-0.5172,-0.8286,-0.2142,-0.549,-0.8286,-0.1092,-0.549,-0.8286,-0.1092,-0.3804,-0.9217,-0.0757,-0.3584,-0.9217,-0.1484,-0.3225,-0.9217,-0.2155,-0.4654,-0.8286,-0.311,-0.5172,-0.8286,-0.2142,-0.5172,-0.8286,-0.2142,-0.3584,-0.9217,-0.1484,-0.3225,-0.9217,-0.2155,-0.2743,-0.9217,-0.2743,-0.3958,-0.8286,-0.3958,-0.4654,-0.8286,-0.311,-0.4654,-0.8286,-0.311,-0.3225,-0.9217,-0.2155,-0.2743,-0.9217,-0.2743,-0.2155,-0.9217,-0.3225,-0.311,-0.8286,-0.4654,-0.3958,-0.8286,-0.3958,-0.3958,-0.8286,-0.3958,-0.2743,-0.9217,-0.2743,-0.2155,-0.9217,-0.3225,-0.1484,-0.9217,-0.3584,-0.2142,-0.8286,-0.5172,-0.311,-0.8286,-0.4654,-0.311,-0.8286,-0.4654,-0.2155,-0.9217,-0.3225,-0.1484,-0.9217,-0.3584,-0.0757,-0.9217,-0.3804,-0.1092,-0.8286,-0.549,-0.2142,-0.8286,-0.5172,-0.2142,-0.8286,-0.5172,-0.1484,-0.9217,-0.3584,-0.0757,-0.9217,-0.3804,-0.0382,-0.921,-0.3876,-0.055,-0.8274,-0.5589,-0.1092,-0.8286,-0.549,-0.1092,-0.8286,-0.549,-0.0757,-0.9217,-0.3804,-0.0382,-0.921,-0.3876,-0.0392,-0.9796,0.1971,-0.0757,-0.9217,0.3804,-0.0382,-0.921,0.3876,-0.0382,-0.921,0.3876,-0.0198,-0.9794,0.2009,-0.0392,-0.9796,0.1971,-0.0769,-0.9796,0.1857,-0.1484,-0.9217,0.3584,-0.0757,-0.9217,0.3804,-0.0757,-0.9217,0.3804,-0.0392,-0.9796,0.1971,-0.0769,-0.9796,0.1857,-0.1117,-0.9796,0.1671,-0.2155,-0.9217,0.3225,-0.1484,-0.9217,0.3584,-0.1484,-0.9217,0.3584,-0.0769,-0.9796,0.1857,-0.1117,-0.9796,0.1671,-0.1421,-0.9796,0.1421,-0.2743,-0.9217,0.2743,-0.2155,-0.9217,0.3225,-0.2155,-0.9217,0.3225,-0.1117,-0.9796,0.1671,-0.1421,-0.9796,0.1421,-0.1671,-0.9796,0.1117,-0.3225,-0.9217,0.2155,-0.2743,-0.9217,0.2743,-0.2743,-0.9217,0.2743,-0.1421,-0.9796,0.1421,-0.1671,-0.9796,0.1117,-0.1857,-0.9796,0.0769,-0.3584,-0.9217,0.1484,-0.3225,-0.9217,0.2155,-0.3225,-0.9217,0.2155,-0.1671,-0.9796,0.1117,-0.1857,-0.9796,0.0769,-0.1971,-0.9796,0.0392,-0.3804,-0.9217,0.0757,-0.3584,-0.9217,0.1484,-0.3584,-0.9217,0.1484,-0.1857,-0.9796,0.0769,-0.1971,-0.9796,0.0392,-0.201,-0.9796,0.0,-0.3879,-0.9217,0.0,-0.3804,-0.9217,0.0757,-0.3804,-0.9217,0.0757,-0.1971,-0.9796,0.0392,-0.201,-0.9796,0.0,-0.1971,-0.9796,-0.0392,-0.3804,-0.9217,-0.0757,-0.3879,-0.9217,0.0,-0.3879,-0.9217,0.0,-0.201,-0.9796,0.0,-0.1971,-0.9796,-0.0392,-0.1857,-0.9796,-0.0769,-0.3584,-0.9217,-0.1484,-0.3804,-0.9217,-0.0757,-0.3804,-0.9217,-0.0757,-0.1971,-0.9796,-0.0392,-0.1857,-0.9796,-0.0769,-0.1671,-0.9796,-0.1117,-0.3225,-0.9217,-0.2155,-0.3584,-0.9217,-0.1484,-0.3584,-0.9217,-0.1484,-0.1857,-0.9796,-0.0769,-0.1671,-0.9796,-0.1117,-0.1421,-0.9796,-0.1421,-0.2743,-0.9217,-0.2743,-0.3225,-0.9217,-0.2155,-0.3225,-0.9217,-0.2155,-0.1671,-0.9796,-0.1117,-0.1421,-0.9796,-0.1421,-0.1117,-0.9796,-0.1671,-0.2155,-0.9217,-0.3225,-0.2743,-0.9217,-0.2743,-0.2743,-0.9217,-0.2743,-0.1421,-0.9796,-0.1421,-0.1117,-0.9796,-0.1671,-0.0769,-0.9796,-0.1857,-0.1484,-0.9217,-0.3584,-0.2155,-0.9217,-0.3225,-0.2155,-0.9217,-0.3225,-0.1117,-0.9796,-0.1671,-0.0769,-0.9796,-0.1857,-0.0392,-0.9796,-0.1971,-0.0757,-0.9217,-0.3804,-0.1484,-0.9217,-0.3584,-0.1484,-0.9217,-0.3584,-0.0769,-0.9796,-0.1857,-0.0392,-0.9796,-0.1971,-0.0198,-0.9794,-0.2009,-0.0382,-0.921,-0.3876,-0.0757,-0.9217,-0.3804,-0.0757,-0.9217,-0.3804,-0.0392,-0.9796,-0.1971,-0.0198,-0.9794,-0.2009,-0.063,-0.998,0.0,-0.0392,-0.9796,0.1971,-0.0198,-0.9794,0.2009,-0.063,-0.998,0.0,-0.0769,-0.9796,0.1857,-0.0392,-0.9796,0.1971,-0.063,-0.998,0.0,-0.1117,-0.9796,0.1671,-0.0769,-0.9796,0.1857,-0.063,-0.998,0.0,-0.1421,-0.9796,0.1421,-0.1117,-0.9796,0.1671,-0.063,-0.998,0.0,-0.1671,-0.9796,0.1117,-0.1421,-0.9796,0.1421,-0.063,-0.998,0.0,-0.1857,-0.9796,0.0769,-0.1671,-0.9796,0.1117,-0.063,-0.998,0.0,-0.1971,-0.9796,0.0392,-0.1857,-0.9796,0.0769,-0.063,-0.998,0.0,-0.201,-0.9796,0.0,-0.1971,-0.9796,0.0392,-0.063,-0.998,0.0,-0.1971,-0.9796,-0.0392,-0.201,-0.9796,0.0,-0.063,-0.998,0.0,-0.1857,-0.9796,-0.0769,-0.1971,-0.9796,-0.0392,-0.063,-0.998,0.0,-0.1671,-0.9796,-0.1117,-0.1857,-0.9796,-0.0769,-0.063,-0.998,0.0,-0.1421,-0.9796,-0.1421,-0.1671,-0.9796,-0.1117,-0.063,-0.998,0.0,-0.1117,-0.9796,-0.1671,-0.1421,-0.9796,-0.1421,-0.063,-0.998,0.0,-0.0769,-0.9796,-0.1857,-0.1117,-0.9796,-0.1671,-0.063,-0.998,0.0,-0.0392,-0.9796,-0.1971,-0.0769,-0.9796,-0.1857,-0.063,-0.998,0.0,-0.0198,-0.9794,-0.2009,-0.0392,-0.9796,-0.1971],"tangents":null,"uvs":[0.0,2.0,0.0,1.9375,0.0312,1.9375,0.0312,2.0,0.0312,1.9375,0.0625,1.9375,0.0625,2.0,0.0625,1.9375,0.0938,1.9375,0.0938,2.0,0.0938,1.9375,0.125,1.9375,0.125,2.0,0.125,1.9375,0.1562,1.9375,0.1562,2.0,0.1562,1.9375,0.1875,1.9375,0.1875,2.0,0.1875,1.9375,0.2187,1.9375,0.2187,2.0,0.2187,1.9375,0.25,1.9375,0.25,2.0,0.25,1.9375,0.2812,1.9375,0.2812,2.0,0.2812,1.9375,0.3125,1.9375,0.3125,2.0,0.3125,1.9375,0.3437,1.9375,0.3437,2.0,0.3437,1.9375,0.375,1.9375,0.375,2.0,0.375,1.9375,0.4062,1.9375,0.4062,2.0,0.4062,1.9375,0.4375,1.9375,0.4375,2.0,0.4375,1.9375,0.4688,1.9375,0.4688,2.0,0.4688,1.9375,0.5,1.9375,0.0312,1.875,0.0312,1.9375,0.0,1.9375,0.0,1.9375,0.0,1.875,0.0312,1.875,0.0625,1.875,0.0625,1.9375,0.0312,1.9375,0.0312,1.9375,0.0312,1.875,0.0625,1.875,0.0938,1.875,0.0938,1.9375,0.0625,1.9375,0.0625,1.9375,0.0625,1.875,0.0938,1.875,0.125,1.875,0.125,1.9375,0.0938,1.9375,0.0938,1.9375,0.0938,1.875,0.125,1.875,0.1562,1.875,0.1562,1.9375,0.125,1.9375,0.125,1.9375,0.125,1.875,0.1562,1.875,0.1875,1.875,0.1875,1.9375,0.1562,1.9375,0.1562,1.9375,0.1562,1.875,0.1875,1.875,0.2187,1.875,0.2187,1.9375,0.1875,1.9375,0.1875,1.9375,0.1875,1.875,0.2187,1.875,0.25,1.875,0.25,1.9375,0.2187,1.9375,0.2187,1.9375,0.2187,1.875,0.25,1.875,0.2812,1.875,0.2812,1.9375,0.25,1.9375,0.25,1.9375,0.25,1.875,0.2812,1.875,0.3125,1.875,0.3125,1.9375,0.2812,1.9375,0.2812,1.9375,0.2812,1.875,0.3125,1.875,0.3437,1.875,0.3437,1.9375,0.3125,1.9375,0.3125,1.9375,0.3125,1.875,0.3437,1.875,0.375,1.875,0.375,1.9375,0.3437,1.9375,0.3437,1.9375,0.3437,1.875,0.375,1.875,0.4062,1.875,0.4062,1.9375,0.375,1.9375,0.375,1.9375,0.375,1.875,0.4062,1.875,0.4375,1.875,0.4375,1.9375,0.4062,1.9375,0.4062,1.9375,0.4062,1.875,0.4375,1.875,0.4688,1.875,0.4688,1.9375,0.4375,1.9375,0.4375,1.9375,0.4375,1.875,0.4688,1.875,0.5,1.875,0.5,1.9375,0.4688,1.9375,0.4688,1.9375,0.4688,1.875,0.5,1.875,0.0312,1.8125,0.0312,1.875,0.0,1.875,0.0,1.875,0.0,1.8125,0.0312,1.8125,0.0625,1.8125,0.0625,1.875,0.0312,1.875,0.0312,1.875,0.0312,1.8125,0.0625,1.8125,0.0938,1.8125,0.0938,1.875,0.0625,1.875,0.0625,1.875,0.0625,1.8125,0.0938,1.8125,0.125,1.8125,0.125,1.875,0.0938,1.875,0.0938,1.875,0.0938,1.8125,0.125,1.8125,0.1562,1.8125,0.1562,1.875,0.125,1.875,0.125,1.875,0.125,1.8125,0.1562,1.8125,0.1875,1.8125,0.1875,1.875,0.1562,1.875,0.1562,1.875,0.1562,1.8125,0.1875,1.8125,0.2187,1.8125,0.2187,1.875,0.1875,1.875,0.1875,1.875,0.1875,1.8125,0.2187,1.8125,0.25,1.8125,0.25,1.875,0.2187,1.875,0.2187,1.875,0.2187,1.8125,0.25,1.8125,0.2812,1.8125,0.2812,1.875,0.25,1.875,0.25,1.875,0.25,1.8125,0.2812,1.8125,0.3125,1.8125,0.3125,1.875,0.2812,1.875,0.2812,1.875,0.2812,1.8125,0.3125,1.8125,0.3437,1.8125,0.3437,1.875,0.3125,1.875,0.3125,1.875,0.3125,1.8125,0.3437,1.8125,0.375,1.8125,0.375,1.875,0.3437,1.875,0.3437,1.875,0.3437,1.8125,0.375,1.8125,0.4062,1.8125,0.4062,1.875,0.375,1.875,0.375,1.875,0.375,1.8125,0.4062,1.8125,0.4375,1.8125,0.4375,1.875,0.4062,1.875,0.4062,1.875,0.4062,1.8125,0.4375,1.8125,0.4688,1.8125,0.4688,1.875,0.4375,1.875,0.4375,1.875,0.4375,1.8125,0.4688,1.8125,0.5,1.8125,0.5,1.875,0.4688,1.875,0.4688,1.875,0.4688,1.8125,0.5,1.8125,0.0312,1.75,0.0312,1.8125,0.0,1.8125,0.0,1.8125,0.0,1.75,0.0312,1.75,0.0625,1.75,0.0625,1.8125,0.0312,1.8125,0.0312,1.8125,0.0312,1.75,0.0625,1.75,0.0938,1.75,0.0938,1.8125,0.0625,1.8125,0.0625,1.8125,0.0625,1.75,0.0938,1.75,0.125,1.75,0.125,1.8125,0.0938,1.8125,0.0938,1.8125,0.0938,1.75,0.125,1.75,0.1562,1.75,0.1562,1.8125,0.125,1.8125,0.125,1.8125,0.125,1.75,0.1562,1.75,0.1875,1.75,0.1875,1.8125,0.1562,1.8125,0.1562,1.8125,0.1562,1.75,0.1875,1.75,0.2187,1.75,0.2187,1.8125,0.1875,1.8125,0.1875,1.8125,0.1875,1.75,0.2187,1.75,0.25,1.75,0.25,1.8125,0.2187,1.8125,0.2187,1.8125,0.2187,1.75,0.25,1.75,0.2812,1.75,0.2812,1.8125,0.25,1.8125,0.25,1.8125,0.25,1.75,0.2812,1.75,0.3125,1.75,0.3125,1.8125,0.2812,1.8125,0.2812,1.8125,0.2812,1.75,0.3125,1.75,0.3437,1.75,0.3437,1.8125,0.3125,1.8125,0.3125,1.8125,0.3125,1.75,0.3437,1.75,0.375,1.75,0.375,1.8125,0.3437,1.8125,0.3437,1.8125,0.3437,1.75,0.375,1.75,0.4062,1.75,0.4062,1.8125,0.375,1.8125,0.375,1.8125,0.375,1.75,0.4062,1.75,0.4375,1.75,0.4375,1.8125,0.4062,1.8125,0.4062,1.8125,0.4062,1.75,0.4375,1.75,0.4688,1.75,0.4688,1.8125,0.4375,1.8125,0.4375,1.8125,0.4375,1.75,0.4688,1.75,0.5,1.75,0.5,1.8125,0.4688,1.8125,0.4688,1.8125,0.4688,1.75,0.5,1.75,0.0312,1.6875,0.0312,1.75,0.0,1.75,0.0,1.75,0.0,1.6875,0.0312,1.6875,0.0625,1.6875,0.0625,1.75,0.0312,1.75,0.0312,1.75,0.0312,1.6875,0.0625,1.6875,0.0938,1.6875,0.0938,1.75,0.0625,1.75,0.0625,1.75,0.0625,1.6875,0.0938,1.6875,0.125,1.6875,0.125,1.75,0.0938,1.75,0.0938,1.75,0.0938,1.6875,0.125,1.6875,0.1562,1.6875,0.1562,1.75,0.125,1.75,0.125,1.75,0.125,1.6875,0.1562,1.6875,0.1875,1.6875,0.1875,1.75,0.1562,1.75,0.1562,1.75,0.1562,1.6875,0.1875,1.6875,0.2187,1.6875,0.2187,1.75,0.1875,1.75,0.1875,1.75,0.1875,1.6875,0.2187,1.6875,0.25,1.6875,0.25,1.75,0.2187,1.75,0.2187,1.75,0.2187,1.6875,0.25,1.6875,0.2812,1.6875,0.2812,1.75,0.25,1.75,0.25,1.75,0.25,1.6875,0.2812,1.6875,0.3125,1.6875,0.3125,1.75,0.2812,1.75,0.2812,1.75,0.2812,1.6875,0.3125,1.6875,0.3437,1.6875,0.3437,1.75,0.3125,1.75,0.3125,1.75,0.3125,1.6875,0.3437,1.6875,0.375,1.6875,0.375,1.75,0.3437,1.75,0.3437,1.75,0.3437,1.6875,0.375,1.6875,0.4062,1.6875,0.4062,1.75,0.375,1.75,0.375,1.75,0.375,1.6875,0.4062,1.6875,0.4375,1.6875,0.4375,1.75,0.4062,1.75,0.4062,1.75,0.4062,1.6875,0.4375,1.6875,0.4688,1.6875,0.4688,1.75,0.4375,1.75,0.4375,1.75,0.4375,1.6875,0.4688,1.6875,0.5,1.6875,0.5,1.75,0.4688,1.75,0.4688,1.75,0.4688,1.6875,0.5,1.6875,0.0312,1.625,0.0312,1.6875,0.0,1.6875,0.0,1.6875,0.0,1.625,0.0312,1.625,0.0625,1.625,0.0625,1.6875,0.0312,1.6875,0.0312,1.6875,0.0312,1.625,0.0625,1.625,0.0938,1.625,0.0938,1.6875,0.0625,1.6875,0.0625,1.6875,0.0625,1.625,0.0938,1.625,0.125,1.625,0.125,1.6875,0.0938,1.6875,0.0938,1.6875,0.0938,1.625,0.125,1.625,0.1562,1.625,0.1562,1.6875,0.125,1.6875,0.125,1.6875,0.125,1.625,0.1562,1.625,0.1875,1.625,0.1875,1.6875,0.1562,1.6875,0.1562,1.6875,0.1562,1.625,0.1875,1.625,0.2187,1.625,0.2187,1.6875,0.1875,1.6875,0.1875,1.6875,0.1875,1.625,0.2187,1.625,0.25,1.625,0.25,1.6875,0.2187,1.6875,0.2187,1.6875,0.2187,1.625,0.25,1.625,0.2812,1.625,0.2812,1.6875,0.25,1.6875,0.25,1.6875,0.25,1.625,0.2812,1.625,0.3125,1.625,0.3125,1.6875,0.2812,1.6875,0.2812,1.6875,0.2812,1.625,0.3125,1.625,0.3437,1.625,0.3437,1.6875,0.3125,1.6875,0.3125,1.6875,0.3125,1.625,0.3437,1.625,0.375,1.625,0.375,1.6875,0.3437,1.6875,0.3437,1.6875,0.3437,1.625,0.375,1.625,0.4062,1.625,0.4062,1.6875,0.375,1.6875,0.375,1.6875,0.375,1.625,0.4062,1.625,0.4375,1.625,0.4375,1.6875,0.4062,1.6875,0.4062,1.6875,0.4062,1.625,0.4375,1.625,0.4688,1.625,0.4688,1.6875,0.4375,1.6875,0.4375,1.6875,0.4375,1.625,0.4688,1.625,0.5,1.625,0.5,1.6875,0.4688,1.6875,0.4688,1.6875,0.4688,1.625,0.5,1.625,0.0312,1.5625,0.0312,1.625,0.0,1.625,0.0,1.625,0.0,1.5625,0.0312,1.5625,0.0625,1.5625,0.0625,1.625,0.0312,1.625,0.0312,1.625,0.0312,1.5625,0.0625,1.5625,0.0938,1.5625,0.0938,1.625,0.0625,1.625,0.0625,1.625,0.0625,1.5625,0.0938,1.5625,0.125,1.5625,0.125,1.625,0.0938,1.625,0.0938,1.625,0.0938,1.5625,0.125,1.5625,0.1562,1.5625,0.1562,1.625,0.125,1.625,0.125,1.625,0.125,1.5625,0.1562,1.5625,0.1875,1.5625,0.1875,1.625,0.1562,1.625,0.1562,1.625,0.1562,1.5625,0.1875,1.5625,0.2187,1.5625,0.2187,1.625,0.1875,1.625,0.1875,1.625,0.1875,1.5625,0.2187,1.5625,0.25,1.5625,0.25,1.625,0.2187,1.625,0.2187,1.625,0.2187,1.5625,0.25,1.5625,0.2812,1.5625,0.2812,1.625,0.25,1.625,0.25,1.625,0.25,1.5625,0.2812,1.5625,0.3125,1.5625,0.3125,1.625,0.2812,1.625,0.2812,1.625,0.2812,1.5625,0.3125,1.5625,0.3437,1.5625,0.3437,1.625,0.3125,1.625,0.3125,1.625,0.3125,1.5625,0.3437,1.5625,0.375,1.5625,0.375,1.625,0.3437,1.625,0.3437,1.625,0.3437,1.5625,0.375,1.5625,0.4062,1.5625,0.4062,1.625,0.375,1.625,0.375,1.625,0.375,1.5625,0.4062,1.5625,0.4375,1.5625,0.4375,1.625,0.4062,1.625,0.4062,1.625,0.4062,1.5625,0.4375,1.5625,0.4688,1.5625,0.4688,1.625,0.4375,1.625,0.4375,1.625,0.4375,1.5625,0.4688,1.5625,0.5,1.5625,0.5,1.625,0.4688,1.625,0.4688,1.625,0.4688,1.5625,0.5,1.5625,0.0312,1.5,0.0312,1.5625,0.0,1.5625,0.0,1.5625,0.0,1.5,0.0312,1.5,0.0625,1.5,0.0625,1.5625,0.0312,1.5625,0.0312,1.5625,0.0312,1.5,0.0625,1.5,0.0938,1.5,0.0938,1.5625,0.0625,1.5625,0.0625,1.5625,0.0625,1.5,0.0938,1.5,0.125,1.5,0.125,1.5625,0.0938,1.5625,0.0938,1.5625,0.0938,1.5,0.125,1.5,0.1562,1.5,0.1562,1.5625,0.125,1.5625,0.125,1.5625,0.125,1.5,0.1562,1.5,0.1875,1.5,0.1875,1.5625,0.1562,1.5625,0.1562,1.5625,0.1562,1.5,0.1875,1.5,0.2187,1.5,0.2187,1.5625,0.1875,1.5625,0.1875,1.5625,0.1875,1.5,0.2187,1.5,0.25,1.5,0.25,1.5625,0.2187,1.5625,0.2187,1.5625,0.2187,1.5,0.25,1.5,0.2812,1.5,0.2812,1.5625,0.25,1.5625,0.25,1.5625,0.25,1.5,0.2812,1.5,0.3125,1.5,0.3125,1.5625,0.2812,1.5625,0.2812,1.5625,0.2812,1.5,0.3125,1.5,0.3437,1.5,0.3437,1.5625,0.3125,1.5625,0.3125,1.5625,0.3125,1.5,0.3437,1.5,0.375,1.5,0.375,1.5625,0.3437,1.5625,0.3437,1.5625,0.3437,1.5,0.375,1.5,0.4062,1.5,0.4062,1.5625,0.375,1.5625,0.375,1.5625,0.375,1.5,0.4062,1.5,0.4375,1.5,0.4375,1.5625,0.4062,1.5625,0.4062,1.5625,0.4062,1.5,0.4375,1.5,0.4688,1.5,0.4688,1.5625,0.4375,1.5625,0.4375,1.5625,0.4375,1.5,0.4688,1.5,0.5,1.5,0.5,1.5625,0.4688,1.5625,0.4688,1.5625,0.4688,1.5,0.5,1.5,0.0312,1.4375,0.0312,1.5,0.0,1.5,0.0,1.5,0.0,1.4375,0.0312,1.4375,0.0625,1.4375,0.0625,1.5,0.0312,1.5,0.0312,1.5,0.0312,1.4375,0.0625,1.4375,0.0938,1.4375,0.0938,1.5,0.0625,1.5,0.0625,1.5,0.0625,1.4375,0.0938,1.4375,0.125,1.4375,0.125,1.5,0.0938,1.5,0.0938,1.5,0.0938,1.4375,0.125,1.4375,0.1562,1.4375,0.1562,1.5,0.125,1.5,0.125,1.5,0.125,1.4375,0.1562,1.4375,0.1875,1.4375,0.1875,1.5,0.1562,1.5,0.1562,1.5,0.1562,1.4375,0.1875,1.4375,0.2187,1.4375,0.2187,1.5,0.1875,1.5,0.1875,1.5,0.1875,1.4375,0.2187,1.4375,0.25,1.4375,0.25,1.5,0.2187,1.5,0.2187,1.5,0.2187,1.4375,0.25,1.4375,0.2812,1.4375,0.2812,1.5,0.25,1.5,0.25,1.5,0.25,1.4375,0.2812,1.4375,0.3125,1.4375,0.3125,1.5,0.2812,1.5,0.2812,1.5,0.2812,1.4375,0.3125,1.4375,0.3437,1.4375,0.3437,1.5,0.3125,1.5,0.3125,1.5,0.3125,1.4375,0.3437,1.4375,0.375,1.4375,0.375,1.5,0.3437,1.5,0.3437,1.5,0.3437,1.4375,0.375,1.4375,0.4062,1.4375,0.4062,1.5,0.375,1.5,0.375,1.5,0.375,1.4375,0.4062,1.4375,0.4375,1.4375,0.4375,1.5,0.4062,1.5,0.4062,1.5,0.4062,1.4375,0.4375,1.4375,0.4688,1.4375,0.4688,1.5,0.4375,1.5,0.4375,1.5,0.4375,1.4375,0.4688,1.4375,0.5,1.4375,0.5,1.5,0.4688,1.5,0.4688,1.5,0.4688,1.4375,0.5,1.4375,0.0312,1.375,0.0312,1.4375,0.0,1.4375,0.0,1.4375,0.0,1.375,0.0312,1.375,0.0625,1.375,0.0625,1.4375,0.0312,1.4375,0.0312,1.4375,0.0312,1.375,0.0625,1.375,0.0938,1.375,0.0938,1.4375,0.0625,1.4375,0.0625,1.4375,0.0625,1.375,0.0938,1.375,0.125,1.375,0.125,1.4375,0.0938,1.4375,0.0938,1.4375,0.0938,1.375,0.125,1.375,0.1562,1.375,0.1562,1.4375,0.125,1.4375,0.125,1.4375,0.125,1.375,0.1562,1.375,0.1875,1.375,0.1875,1.4375,0.1562,1.4375,0.1562,1.4375,0.1562,1.375,0.1875,1.375,0.2187,1.375,0.2187,1.4375,0.1875,1.4375,0.1875,1.4375,0.1875,1.375,0.2187,1.375,0.25,1.375,0.25,1.4375,0.2187,1.4375,0.2187,1.4375,0.2187,1.375,0.25,1.375,0.2812,1.375,0.2812,1.4375,0.25,1.4375,0.25,1.4375,0.25,1.375,0.2812,1.375,0.3125,1.375,0.3125,1.4375,0.2812,1.4375,0.2812,1.4375,0.2812,1.375,0.3125,1.375,0.3437,1.375,0.3437,1.4375,0.3125,1.4375,0.3125,1.4375,0.3125,1.375,0.3437,1.375,0.375,1.375,0.375,1.4375,0.3437,1.4375,0.3437,1.4375,0.3437,1.375,0.375,1.375,0.4062,1.375,0.4062,1.4375,0.375,1.4375,0.375,1.4375,0.375,1.375,0.4062,1.375,0.4375,1.375,0.4375,1.4375,0.4062,1.4375,0.4062,1.4375,0.4062,1.375,0.4375,1.375,0.4688,1.375,0.4688,1.4375,0.4375,1.4375,0.4375,1.4375,0.4375,1.375,0.4688,1.375,0.5,1.375,0.5,1.4375,0.4688,1.4375,0.4688,1.4375,0.4688,1.375,0.5,1.375,0.0312,1.3125,0.0312,1.375,0.0,1.375,0.0,1.375,0.0,1.3125,0.0312,1.3125,0.0625,1.3125,0.0625,1.375,0.0312,1.375,0.0312,1.375,0.0312,1.3125,0.0625,1.3125,0.0938,1.3125,0.0938,1.375,0.0625,1.375,0.0625,1.375,0.0625,1.3125,0.0938,1.3125,0.125,1.3125,0.125,1.375,0.0938,1.375,0.0938,1.375,0.0938,1.3125,0.125,1.3125,0.1562,1.3125,0.1562,1.375,0.125,1.375,0.125,1.375,0.125,1.3125,0.1562,1.3125,0.1875,1.3125,0.1875,1.375,0.1562,1.375,0.1562,1.375,0.1562,1.3125,0.1875,1.3125,0.2187,1.3125,0.2187,1.375,0.1875,1.375,0.1875,1.375,0.1875,1.3125,0.2187,1.3125,0.25,1.3125,0.25,1.375,0.2187,1.375,0.2187,1.375,0.2187,1.3125,0.25,1.3125,0.2812,1.3125,0.2812,1.375,0.25,1.375,0.25,1.375,0.25,1.3125,0.2812,1.3125,0.3125,1.3125,0.3125,1.375,0.2812,1.375,0.2812,1.375,0.2812,1.3125,0.3125,1.3125,0.3437,1.3125,0.3437,1.375,0.3125,1.375,0.3125,1.375,0.3125,1.3125,0.3437,1.3125,0.375,1.3125,0.375,1.375,0.3437,1.375,0.3437,1.375,0.3437,1.3125,0.375,1.3125,0.4062,1.3125,0.4062,1.375,0.375,1.375,0.375,1.375,0.375,1.3125,0.4062,1.3125,0.4375,1.3125,0.4375,1.375,0.4062,1.375,0.4062,1.375,0.4062,1.3125,0.4375,1.3125,0.4688,1.3125,0.4688,1.375,0.4375,1.375,0.4375,1.375,0.4375,1.3125,0.4688,1.3125,0.5,1.3125,0.5,1.375,0.4688,1.375,0.4688,1.375,0.4688,1.3125,0.5,1.3125,0.0312,1.25,0.0312,1.3125,0.0,1.3125,0.0,1.3125,0.0,1.25,0.0312,1.25,0.0625,1.25,0.0625,1.3125,0.0312,1.3125,0.0312,1.3125,0.0312,1.25,0.0625,1.25,0.0938,1.25,0.0938,1.3125,0.0625,1.3125,0.0625,1.3125,0.0625,1.25,0.0938,1.25,0.125,1.25,0.125,1.3125,0.0938,1.3125,0.0938,1.3125,0.0938,1.25,0.125,1.25,0.1562,1.25,0.1562,1.3125,0.125,1.3125,0.125,1.3125,0.125,1.25,0.1562,1.25,0.1875,1.25,0.1875,1.3125,0.1562,1.3125,0.1562,1.3125,0.1562,1.25,0.1875,1.25,0.2187,1.25,0.2187,1.3125,0.1875,1.3125,0.1875,1.3125,0.1875,1.25,0.2187,1.25,0.25,1.25,0.25,1.3125,0.2187,1.3125,0.2187,1.3125,0.2187,1.25,0.25,1.25,0.2812,1.25,0.2812,1.3125,0.25,1.3125,0.25,1.3125,0.25,1.25,0.2812,1.25,0.3125,1.25,0.3125,1.3125,0.2812,1.3125,0.2812,1.3125,0.2812,1.25,0.3125,1.25,0.3437,1.25,0.3437,1.3125,0.3125,1.3125,0.3125,1.3125,0.3125,1.25,0.3437,1.25,0.375,1.25,0.375,1.3125,0.3437,1.3125,0.3437,1.3125,0.3437,1.25,0.375,1.25,0.4062,1.25,0.4062,1.3125,0.375,1.3125,0.375,1.3125,0.375,1.25,0.4062,1.25,0.4375,1.25,0.4375,1.3125,0.4062,1.3125,0.4062,1.3125,0.4062,1.25,0.4375,1.25,0.4688,1.25,0.4688,1.3125,0.4375,1.3125,0.4375,1.3125,0.4375,1.25,0.4688,1.25,0.5,1.25,0.5,1.3125,0.4688,1.3125,0.4688,1.3125,0.4688,1.25,0.5,1.25,0.0312,1.1875,0.0312,1.25,0.0,1.25,0.0,1.25,0.0,1.1875,0.0312,1.1875,0.0625,1.1875,0.0625,1.25,0.0312,1.25,0.0312,1.25,0.0312,1.1875,0.0625,1.1875,0.0938,1.1875,0.0938,1.25,0.0625,1.25,0.0625,1.25,0.0625,1.1875,0.0938,1.1875,0.125,1.1875,0.125,1.25,0.0938,1.25,0.0938,1.25,0.0938,1.1875,0.125,1.1875,0.1562,1.1875,0.1562,1.25,0.125,1.25,0.125,1.25,0.125,1.1875,0.1562,1.1875,0.1875,1.1875,0.1875,1.25,0.1562,1.25,0.1562,1.25,0.1562,1.1875,0.1875,1.1875,0.2187,1.1875,0.2187,1.25,0.1875,1.25,0.1875,1.25,0.1875,1.1875,0.2187,1.1875,0.25,1.1875,0.25,1.25,0.2187,1.25,0.2187,1.25,0.2187,1.1875,0.25,1.1875,0.2812,1.1875,0.2812,1.25,0.25,1.25,0.25,1.25,0.25,1.1875,0.2812,1.1875,0.3125,1.1875,0.3125,1.25,0.2812,1.25,0.2812,1.25,0.2812,1.1875,0.3125,1.1875,0.3437,1.1875,0.3437,1.25,0.3125,1.25,0.3125,1.25,0.3125,1.1875,0.3437,1.1875,0.375,1.1875,0.375,1.25,0.3437,1.25,0.3437,1.25,0.3437,1.1875,0.375,1.1875,0.4062,1.1875,0.4062,1.25,0.375,1.25,0.375,1.25,0.375,1.1875,0.4062,1.1875,0.4375,1.1875,0.4375,1.25,0.4062,1.25,0.4062,1.25,0.4062,1.1875,0.4375,1.1875,0.4688,1.1875,0.4688,1.25,0.4375,1.25,0.4375,1.25,0.4375,1.1875,0.4688,1.1875,0.5,1.1875,0.5,1.25,0.4688,1.25,0.4688,1.25,0.4688,1.1875,0.5,1.1875,0.0312,1.125,0.0312,1.1875,0.0,1.1875,0.0,1.1875,0.0,1.125,0.0312,1.125,0.0625,1.125,0.0625,1.1875,0.0312,1.1875,0.0312,1.1875,0.0312,1.125,0.0625,1.125,0.0938,1.125,0.0938,1.1875,0.0625,1.1875,0.0625,1.1875,0.0625,1.125,0.0938,1.125,0.125,1.125,0.125,1.1875,0.0938,1.1875,0.0938,1.1875,0.0938,1.125,0.125,1.125,0.1562,1.125,0.1562,1.1875,0.125,1.1875,0.125,1.1875,0.125,1.125,0.1562,1.125,0.1875,1.125,0.1875,1.1875,0.1562,1.1875,0.1562,1.1875,0.1562,1.125,0.1875,1.125,0.2187,1.125,0.2187,1.1875,0.1875,1.1875,0.1875,1.1875,0.1875,1.125,0.2187,1.125,0.25,1.125,0.25,1.1875,0.2187,1.1875,0.2187,1.1875,0.2187,1.125,0.25,1.125,0.2812,1.125,0.2812,1.1875,0.25,1.1875,0.25,1.1875,0.25,1.125,0.2812,1.125,0.3125,1.125,0.3125,1.1875,0.2812,1.1875,0.2812,1.1875,0.2812,1.125,0.3125,1.125,0.3437,1.125,0.3437,1.1875,0.3125,1.1875,0.3125,1.1875,0.3125,1.125,0.3437,1.125,0.375,1.125,0.375,1.1875,0.3437,1.1875,0.3437,1.1875,0.3437,1.125,0.375,1.125,0.4062,1.125,0.4062,1.1875,0.375,1.1875,0.375,1.1875,0.375,1.125,0.4062,1.125,0.4375,1.125,0.4375,1.1875,0.4062,1.1875,0.4062,1.1875,0.4062,1.125,0.4375,1.125,0.4688,1.125,0.4688,1.1875,0.4375,1.1875,0.4375,1.1875,0.4375,1.125,0.4688,1.125,0.5,1.125,0.5,1.1875,0.4688,1.1875,0.4688,1.1875,0.4688,1.125,0.5,1.125,0.0312,1.0625,0.0312,1.125,0.0,1.125,0.0,1.125,0.0,1.0625,0.0312,1.0625,0.0625,1.0625,0.0625,1.125,0.0312,1.125,0.0312,1.125,0.0312,1.0625,0.0625,1.0625,0.0938,1.0625,0.0938,1.125,0.0625,1.125,0.0625,1.125,0.0625,1.0625,0.0938,1.0625,0.125,1.0625,0.125,1.125,0.0938,1.125,0.0938,1.125,0.0938,1.0625,0.125,1.0625,0.1562,1.0625,0.1562,1.125,0.125,1.125,0.125,1.125,0.125,1.0625,0.1562,1.0625,0.1875,1.0625,0.1875,1.125,0.1562,1.125,0.1562,1.125,0.1562,1.0625,0.1875,1.0625,0.2187,1.0625,0.2187,1.125,0.1875,1.125,0.1875,1.125,0.1875,1.0625,0.2187,1.0625,0.25,1.0625,0.25,1.125,0.2187,1.125,0.2187,1.125,0.2187,1.0625,0.25,1.0625,0.2812,1.0625,0.2812,1.125,0.25,1.125,0.25,1.125,0.25,1.0625,0.2812,1.0625,0.3125,1.0625,0.3125,1.125,0.2812,1.125,0.2812,1.125,0.2812,1.0625,0.3125,1.0625,0.3437,1.0625,0.3437,1.125,0.3125,1.125,0.3125,1.125,0.3125,1.0625,0.3437,1.0625,0.375,1.0625,0.375,1.125,0.3437,1.125,0.3437,1.125,0.3437,1.0625,0.375,1.0625,0.4062,1.0625,0.4062,1.125,0.375,1.125,0.375,1.125,0.375,1.0625,0.4062,1.0625,0.4375,1.0625,0.4375,1.125,0.4062,1.125,0.4062,1.125,0.4062,1.0625,0.4375,1.0625,0.4688,1.0625,0.4688,1.125,0.4375,1.125,0.4375,1.125,0.4375,1.0625,0.4688,1.0625,0.5,1.0625,0.5,1.125,0.4688,1.125,0.4688,1.125,0.4688,1.0625,0.5,1.0625,0.0,1.0,0.0312,1.0625,0.0,1.0625,0.0312,1.0,0.0625,1.0625,0.0312,1.0625,0.0625,1.0,0.0938,1.0625,0.0625,1.0625,0.0938,1.0,0.125,1.0625,0.0938,1.0625,0.125,1.0,0.1562,1.0625,0.125,1.0625,0.1562,1.0,0.1875,1.0625,0.1562,1.0625,0.1875,1.0,0.2187,1.0625,0.1875,1.0625,0.2187,1.0,0.25,1.0625,0.2187,1.0625,0.25,1.0,0.2812,1.0625,0.25,1.0625,0.2812,1.0,0.3125,1.0625,0.2812,1.0625,0.3125,1.0,0.3437,1.0625,0.3125,1.0625,0.3437,1.0,0.375,1.0625,0.3437,1.0625,0.375,1.0,0.4062,1.0625,0.375,1.0625,0.4062,1.0,0.4375,1.0625,0.4062,1.0625,0.4375,1.0,0.4688,1.0625,0.4375,1.0625,0.4688,1.0,0.5,1.0625,0.4688,1.0625],"uvs2":null,"colors":null,"hasVertexAlpha":false,"matricesIndices":null,"matricesWeights":null,"matricesIndicesExtra":null,"matricesWeightsExtra":null,"indices":[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],"receiveShadows":true,"infiniteDistance":false,"billboardMode":0,"visibility":1.0,"subMeshes":[{"materialIndex":0,"verticesStart":0,"verticesCount":1440,"indexStart":0,"indexCount":1440}],"instances":null,"skeletonId":-1,"numBoneInfluencers":4,"applyFog":true,"lodMeshIds":null,"lodDistances":null,"lodCoverages":null,"rotation":null,"scaling":[1.0,1.0,1.0],"rotationQuaternion":[0.0,0.0,0.0,1.0],"actions":null,"checkCollisions":false,"pickable":false,"showBoundingBox":false,"showSubMeshesBoundingBox":false,"alphaIndex":1000,"physicsImpostor":0,"physicsMass":0.0,"physicsFriction":0.0,"physicsRestitution":0.0,"name":"StandardMeshBackfaceCullingOff","id":"9049b33e-9de9-4a70-9f78-e32ffdb325f9","parentId":null,"position":[0.0,0.0,3.5634],"animations":[],"autoAnimate":true,"autoAnimateFrom":0,"autoAnimateTo":100,"autoAnimateLoop":true,"metadata":null}],"sounds":[],"materials":[{"customType":"BABYLON.StandardMaterial","ambient":[1.0,0.0,0.0],"diffuse":[1.0,0.0,0.0],"specular":[0.0,0.0,0.0],"emissive":[0.0,0.0,0.0],"specularPower":25.6,"diffuseTexture":null,"diffuseFresnelParameters":null,"ambientTexture":null,"opacityTexture":null,"opacityFresnelParameters":null,"reflectionTexture":null,"reflectionFresnelParameters":null,"emissiveTexture":null,"lightmapTexture":null,"useLightmapAsShadowmap":false,"emissiveFresnelParameters":null,"specularTexture":null,"bumpTexture":null,"useSpecularOverAlpha":true,"disableLighting":false,"useEmissiveAsIllumination":false,"linkEmissiveWithDiffuse":true,"twoSidedLighting":false,"useGlossinessFromSpecularMapAlpha":false,"name":"StandardMaterialBackfaceCullingOn","id":"814decf0-a4ea-454e-a404-277528478ef5","backFaceCulling":true,"wireframe":false,"alpha":1.0,"alphaMode":2,"maxSimultaneousLights":4,"metadata":{}},{"customType":"BABYLON.PBRMetallicRoughnessMaterial","baseColor":[0.0,1.0,0.0],"baseTexture":null,"metallic":0.0,"roughness":0.0,"metallicRoughnessTexture":null,"disableLighting":false,"invertNormalMapX":false,"invertNormalMapY":false,"normalTexture":null,"emissive":[0.0,0.0,0.0],"emissiveTexture":null,"occlusionStrength":1.0,"occlusionTexture":null,"transparencyMode":0,"doubleSided":false,"clearCoat":{"isEnabled":false,"intensity":1.0,"roughness":0.0,"indexOfRefraction":1.5,"texture":null,"bumpTexture":null,"isTintEnabled":false,"tintColor":[1.0,1.0,1.0],"tintThickness":1.0,"tintTexture":null},"name":"PhysicalMaterialBackfaceCullingOn","id":"e8d366dc-9a25-4d46-80f2-60a95ec88505","backFaceCulling":true,"wireframe":false,"alpha":1.0,"alphaMode":2,"maxSimultaneousLights":4,"metadata":{}},{"customType":"BABYLON.PBRMetallicRoughnessMaterial","baseColor":[0.0,0.0,0.8],"baseTexture":null,"metallic":0.0,"roughness":0.1,"metallicRoughnessTexture":null,"disableLighting":false,"invertNormalMapX":false,"invertNormalMapY":false,"normalTexture":null,"emissive":[0.0,0.0,0.0],"emissiveTexture":null,"occlusionStrength":1.0,"occlusionTexture":null,"transparencyMode":0,"doubleSided":false,"clearCoat":{"isEnabled":false,"intensity":1.0,"roughness":0.0,"indexOfRefraction":1.5,"texture":null,"bumpTexture":null,"isTintEnabled":false,"tintColor":[1.0,1.0,1.0],"tintThickness":1.0,"tintTexture":null},"name":"StandardSurfaceMaterialBackfaceCullingOn","id":"e632063b-b9bd-4d8e-adbc-a67b63bdfad2","backFaceCulling":true,"wireframe":false,"alpha":1.0,"alphaMode":2,"maxSimultaneousLights":4,"metadata":{}},{"customType":"BABYLON.PBRMetallicRoughnessMaterial","baseColor":[0.0,1.0,0.0],"baseTexture":null,"metallic":0.0,"roughness":0.0,"metallicRoughnessTexture":null,"disableLighting":false,"invertNormalMapX":false,"invertNormalMapY":false,"normalTexture":null,"emissive":[0.0,0.0,0.0],"emissiveTexture":null,"occlusionStrength":1.0,"occlusionTexture":null,"transparencyMode":0,"doubleSided":true,"clearCoat":{"isEnabled":false,"intensity":1.0,"roughness":0.0,"indexOfRefraction":1.5,"texture":null,"bumpTexture":null,"isTintEnabled":false,"tintColor":[1.0,1.0,1.0],"tintThickness":1.0,"tintTexture":null},"name":"PhysicalMaterialBackfaceCullingOff","id":"0361c87e-7860-4b66-9bc3-cfa98d8f3667","backFaceCulling":false,"wireframe":false,"alpha":1.0,"alphaMode":2,"maxSimultaneousLights":4,"metadata":{}},{"customType":"BABYLON.PBRMetallicRoughnessMaterial","baseColor":[0.0,0.0,0.8],"baseTexture":null,"metallic":0.0,"roughness":0.1,"metallicRoughnessTexture":null,"disableLighting":false,"invertNormalMapX":false,"invertNormalMapY":false,"normalTexture":null,"emissive":[0.0,0.0,0.0],"emissiveTexture":null,"occlusionStrength":1.0,"occlusionTexture":null,"transparencyMode":0,"doubleSided":true,"clearCoat":{"isEnabled":false,"intensity":1.0,"roughness":0.0,"indexOfRefraction":1.5,"texture":null,"bumpTexture":null,"isTintEnabled":false,"tintColor":[1.0,1.0,1.0],"tintThickness":1.0,"tintTexture":null},"name":"StandardSurfaceMaterialBackfaceCullingOff","id":"1818f3d2-86fa-404a-acb4-ea9efd9704dd","backFaceCulling":false,"wireframe":false,"alpha":1.0,"alphaMode":2,"maxSimultaneousLights":4,"metadata":{}},{"customType":"BABYLON.StandardMaterial","ambient":[1.0,0.0,0.0],"diffuse":[1.0,0.0,0.0],"specular":[0.0,0.0,0.0],"emissive":[0.0,0.0,0.0],"specularPower":25.6,"diffuseTexture":null,"diffuseFresnelParameters":null,"ambientTexture":null,"opacityTexture":null,"opacityFresnelParameters":null,"reflectionTexture":null,"reflectionFresnelParameters":null,"emissiveTexture":null,"lightmapTexture":null,"useLightmapAsShadowmap":false,"emissiveFresnelParameters":null,"specularTexture":null,"bumpTexture":null,"useSpecularOverAlpha":true,"disableLighting":false,"useEmissiveAsIllumination":false,"linkEmissiveWithDiffuse":true,"twoSidedLighting":false,"useGlossinessFromSpecularMapAlpha":false,"name":"StandardMaterialBackfaceCullingOff","id":"33a534cc-7051-4436-ab46-be390bf32da3","backFaceCulling":false,"wireframe":false,"alpha":1.0,"alphaMode":2,"maxSimultaneousLights":4,"metadata":{}}],"multiMaterials":[],"particleSystems":null,"lensFlareSystems":null,"shadowGenerators":[],"skeletons":[],"actions":null,"metadata":null,"workerCollisions":false}
\ No newline at end of file
diff --git a/3ds Max/Samples/babylon/BabylonMaterialAttributes/Default.babylon b/3ds Max/Samples/babylon/BabylonMaterialAttributes/Default.babylon
new file mode 100644
index 00000000..b285a0f8
--- /dev/null
+++ b/3ds Max/Samples/babylon/BabylonMaterialAttributes/Default.babylon
@@ -0,0 +1 @@
+{"producer":{"name":"3dsmax","version":"2019","exporter_version":"1.5.0","file":"Default.babylon"},"autoClear":true,"clearColor":[0.0,0.0,0.0],"ambientColor":[0.0,0.0,0.0],"fogMode":0,"fogColor":null,"fogStart":0.0,"fogEnd":0.0,"fogDensity":0.0,"gravity":[0.0,0.0,0.0],"physicsEngine":null,"physicsEnabled":false,"physicsGravity":null,"lights":[{"direction":[0.0,1.0,0.0],"type":3,"diffuse":[1.0,1.0,1.0],"specular":[1.0,1.0,1.0],"intensity":1.0,"range":3.40282347E+38,"exponent":0.0,"angle":0.0,"groundColor":[0.0,0.0,0.0],"excludedMeshesIds":null,"includedOnlyMeshesIds":null,"lightmapMode":null,"falloffType":null,"name":"Default light","id":"9f964ef5-306f-4bff-9820-a8c78a7b9763","parentId":null,"position":[0.0,0.0,0.0],"animations":null,"autoAnimate":false,"autoAnimateFrom":0,"autoAnimateTo":0,"autoAnimateLoop":false,"metadata":null}],"meshes":[{"materialId":"814decf0-a4ea-454e-a404-277528478ef5","isEnabled":true,"isVisible":true,"positions":[0.0,1.0,0.0,0.0,0.9808,0.1951,-0.0381,0.9808,0.1913,0.0,1.0,0.0,-0.0381,0.9808,0.1913,-0.0747,0.9808,0.1802,0.0,1.0,0.0,-0.0747,0.9808,0.1802,-0.1084,0.9808,0.1622,0.0,1.0,0.0,-0.1084,0.9808,0.1622,-0.1379,0.9808,0.1379,0.0,1.0,0.0,-0.1379,0.9808,0.1379,-0.1622,0.9808,0.1084,0.0,1.0,0.0,-0.1622,0.9808,0.1084,-0.1802,0.9808,0.0747,0.0,1.0,0.0,-0.1802,0.9808,0.0747,-0.1913,0.9808,0.0381,0.0,1.0,0.0,-0.1913,0.9808,0.0381,-0.1951,0.9808,0.0,0.0,1.0,0.0,-0.1951,0.9808,0.0,-0.1913,0.9808,-0.0381,0.0,1.0,0.0,-0.1913,0.9808,-0.0381,-0.1802,0.9808,-0.0747,0.0,1.0,0.0,-0.1802,0.9808,-0.0747,-0.1622,0.9808,-0.1084,0.0,1.0,0.0,-0.1622,0.9808,-0.1084,-0.1379,0.9808,-0.1379,0.0,1.0,0.0,-0.1379,0.9808,-0.1379,-0.1084,0.9808,-0.1622,0.0,1.0,0.0,-0.1084,0.9808,-0.1622,-0.0747,0.9808,-0.1802,0.0,1.0,0.0,-0.0747,0.9808,-0.1802,-0.0381,0.9808,-0.1913,0.0,1.0,0.0,-0.0381,0.9808,-0.1913,0.0,0.9808,-0.1951,0.0,1.0,0.0,0.0,0.9808,-0.1951,0.0381,0.9808,-0.1913,0.0,1.0,0.0,0.0381,0.9808,-0.1913,0.0747,0.9808,-0.1802,0.0,1.0,0.0,0.0747,0.9808,-0.1802,0.1084,0.9808,-0.1622,0.0,1.0,0.0,0.1084,0.9808,-0.1622,0.1379,0.9808,-0.1379,0.0,1.0,0.0,0.1379,0.9808,-0.1379,0.1622,0.9808,-0.1084,0.0,1.0,0.0,0.1622,0.9808,-0.1084,0.1802,0.9808,-0.0747,0.0,1.0,0.0,0.1802,0.9808,-0.0747,0.1913,0.9808,-0.0381,0.0,1.0,0.0,0.1913,0.9808,-0.0381,0.1951,0.9808,0.0,0.0,1.0,0.0,0.1951,0.9808,0.0,0.1913,0.9808,0.0381,0.0,1.0,0.0,0.1913,0.9808,0.0381,0.1802,0.9808,0.0747,0.0,1.0,0.0,0.1802,0.9808,0.0747,0.1622,0.9808,0.1084,0.0,1.0,0.0,0.1622,0.9808,0.1084,0.1379,0.9808,0.1379,0.0,1.0,0.0,0.1379,0.9808,0.1379,0.1084,0.9808,0.1622,0.0,1.0,0.0,0.1084,0.9808,0.1622,0.0747,0.9808,0.1802,0.0,1.0,0.0,0.0747,0.9808,0.1802,0.0381,0.9808,0.1913,0.0,1.0,0.0,0.0381,0.9808,0.1913,0.0,0.9808,0.1951,0.0,0.9808,0.1951,0.0,0.9239,0.3827,-0.0747,0.9239,0.3753,0.0,0.9808,0.1951,-0.0747,0.9239,0.3753,-0.0381,0.9808,0.1913,-0.0381,0.9808,0.1913,-0.0747,0.9239,0.3753,-0.1464,0.9239,0.3536,-0.0381,0.9808,0.1913,-0.1464,0.9239,0.3536,-0.0747,0.9808,0.1802,-0.0747,0.9808,0.1802,-0.1464,0.9239,0.3536,-0.2126,0.9239,0.3182,-0.0747,0.9808,0.1802,-0.2126,0.9239,0.3182,-0.1084,0.9808,0.1622,-0.1084,0.9808,0.1622,-0.2126,0.9239,0.3182,-0.2706,0.9239,0.2706,-0.1084,0.9808,0.1622,-0.2706,0.9239,0.2706,-0.1379,0.9808,0.1379,-0.1379,0.9808,0.1379,-0.2706,0.9239,0.2706,-0.3182,0.9239,0.2126,-0.1379,0.9808,0.1379,-0.3182,0.9239,0.2126,-0.1622,0.9808,0.1084,-0.1622,0.9808,0.1084,-0.3182,0.9239,0.2126,-0.3536,0.9239,0.1464,-0.1622,0.9808,0.1084,-0.3536,0.9239,0.1464,-0.1802,0.9808,0.0747,-0.1802,0.9808,0.0747,-0.3536,0.9239,0.1464,-0.3753,0.9239,0.0747,-0.1802,0.9808,0.0747,-0.3753,0.9239,0.0747,-0.1913,0.9808,0.0381,-0.1913,0.9808,0.0381,-0.3753,0.9239,0.0747,-0.3827,0.9239,0.0,-0.1913,0.9808,0.0381,-0.3827,0.9239,0.0,-0.1951,0.9808,0.0,-0.1951,0.9808,0.0,-0.3827,0.9239,0.0,-0.3753,0.9239,-0.0747,-0.1951,0.9808,0.0,-0.3753,0.9239,-0.0747,-0.1913,0.9808,-0.0381,-0.1913,0.9808,-0.0381,-0.3753,0.9239,-0.0747,-0.3536,0.9239,-0.1464,-0.1913,0.9808,-0.0381,-0.3536,0.9239,-0.1464,-0.1802,0.9808,-0.0747,-0.1802,0.9808,-0.0747,-0.3536,0.9239,-0.1464,-0.3182,0.9239,-0.2126,-0.1802,0.9808,-0.0747,-0.3182,0.9239,-0.2126,-0.1622,0.9808,-0.1084,-0.1622,0.9808,-0.1084,-0.3182,0.9239,-0.2126,-0.2706,0.9239,-0.2706,-0.1622,0.9808,-0.1084,-0.2706,0.9239,-0.2706,-0.1379,0.9808,-0.1379,-0.1379,0.9808,-0.1379,-0.2706,0.9239,-0.2706,-0.2126,0.9239,-0.3182,-0.1379,0.9808,-0.1379,-0.2126,0.9239,-0.3182,-0.1084,0.9808,-0.1622,-0.1084,0.9808,-0.1622,-0.2126,0.9239,-0.3182,-0.1464,0.9239,-0.3536,-0.1084,0.9808,-0.1622,-0.1464,0.9239,-0.3536,-0.0747,0.9808,-0.1802,-0.0747,0.9808,-0.1802,-0.1464,0.9239,-0.3536,-0.0747,0.9239,-0.3753,-0.0747,0.9808,-0.1802,-0.0747,0.9239,-0.3753,-0.0381,0.9808,-0.1913,-0.0381,0.9808,-0.1913,-0.0747,0.9239,-0.3753,0.0,0.9239,-0.3827,-0.0381,0.9808,-0.1913,0.0,0.9239,-0.3827,0.0,0.9808,-0.1951,0.0,0.9808,-0.1951,0.0,0.9239,-0.3827,0.0747,0.9239,-0.3753,0.0,0.9808,-0.1951,0.0747,0.9239,-0.3753,0.0381,0.9808,-0.1913,0.0381,0.9808,-0.1913,0.0747,0.9239,-0.3753,0.1464,0.9239,-0.3536,0.0381,0.9808,-0.1913,0.1464,0.9239,-0.3536,0.0747,0.9808,-0.1802,0.0747,0.9808,-0.1802,0.1464,0.9239,-0.3536,0.2126,0.9239,-0.3182,0.0747,0.9808,-0.1802,0.2126,0.9239,-0.3182,0.1084,0.9808,-0.1622,0.1084,0.9808,-0.1622,0.2126,0.9239,-0.3182,0.2706,0.9239,-0.2706,0.1084,0.9808,-0.1622,0.2706,0.9239,-0.2706,0.1379,0.9808,-0.1379,0.1379,0.9808,-0.1379,0.2706,0.9239,-0.2706,0.3182,0.9239,-0.2126,0.1379,0.9808,-0.1379,0.3182,0.9239,-0.2126,0.1622,0.9808,-0.1084,0.1622,0.9808,-0.1084,0.3182,0.9239,-0.2126,0.3536,0.9239,-0.1464,0.1622,0.9808,-0.1084,0.3536,0.9239,-0.1464,0.1802,0.9808,-0.0747,0.1802,0.9808,-0.0747,0.3536,0.9239,-0.1464,0.3753,0.9239,-0.0747,0.1802,0.9808,-0.0747,0.3753,0.9239,-0.0747,0.1913,0.9808,-0.0381,0.1913,0.9808,-0.0381,0.3753,0.9239,-0.0747,0.3827,0.9239,0.0,0.1913,0.9808,-0.0381,0.3827,0.9239,0.0,0.1951,0.9808,0.0,0.1951,0.9808,0.0,0.3827,0.9239,0.0,0.3753,0.9239,0.0747,0.1951,0.9808,0.0,0.3753,0.9239,0.0747,0.1913,0.9808,0.0381,0.1913,0.9808,0.0381,0.3753,0.9239,0.0747,0.3536,0.9239,0.1464,0.1913,0.9808,0.0381,0.3536,0.9239,0.1464,0.1802,0.9808,0.0747,0.1802,0.9808,0.0747,0.3536,0.9239,0.1464,0.3182,0.9239,0.2126,0.1802,0.9808,0.0747,0.3182,0.9239,0.2126,0.1622,0.9808,0.1084,0.1622,0.9808,0.1084,0.3182,0.9239,0.2126,0.2706,0.9239,0.2706,0.1622,0.9808,0.1084,0.2706,0.9239,0.2706,0.1379,0.9808,0.1379,0.1379,0.9808,0.1379,0.2706,0.9239,0.2706,0.2126,0.9239,0.3182,0.1379,0.9808,0.1379,0.2126,0.9239,0.3182,0.1084,0.9808,0.1622,0.1084,0.9808,0.1622,0.2126,0.9239,0.3182,0.1464,0.9239,0.3536,0.1084,0.9808,0.1622,0.1464,0.9239,0.3536,0.0747,0.9808,0.1802,0.0747,0.9808,0.1802,0.1464,0.9239,0.3536,0.0747,0.9239,0.3753,0.0747,0.9808,0.1802,0.0747,0.9239,0.3753,0.0381,0.9808,0.1913,0.0381,0.9808,0.1913,0.0747,0.9239,0.3753,0.0,0.9239,0.3827,0.0381,0.9808,0.1913,0.0,0.9239,0.3827,0.0,0.9808,0.1951,0.0,0.9239,0.3827,0.0,0.8315,0.5556,-0.1084,0.8315,0.5449,0.0,0.9239,0.3827,-0.1084,0.8315,0.5449,-0.0747,0.9239,0.3753,-0.0747,0.9239,0.3753,-0.1084,0.8315,0.5449,-0.2126,0.8315,0.5133,-0.0747,0.9239,0.3753,-0.2126,0.8315,0.5133,-0.1464,0.9239,0.3536,-0.1464,0.9239,0.3536,-0.2126,0.8315,0.5133,-0.3087,0.8315,0.4619,-0.1464,0.9239,0.3536,-0.3087,0.8315,0.4619,-0.2126,0.9239,0.3182,-0.2126,0.9239,0.3182,-0.3087,0.8315,0.4619,-0.3928,0.8315,0.3928,-0.2126,0.9239,0.3182,-0.3928,0.8315,0.3928,-0.2706,0.9239,0.2706,-0.2706,0.9239,0.2706,-0.3928,0.8315,0.3928,-0.4619,0.8315,0.3087,-0.2706,0.9239,0.2706,-0.4619,0.8315,0.3087,-0.3182,0.9239,0.2126,-0.3182,0.9239,0.2126,-0.4619,0.8315,0.3087,-0.5133,0.8315,0.2126,-0.3182,0.9239,0.2126,-0.5133,0.8315,0.2126,-0.3536,0.9239,0.1464,-0.3536,0.9239,0.1464,-0.5133,0.8315,0.2126,-0.5449,0.8315,0.1084,-0.3536,0.9239,0.1464,-0.5449,0.8315,0.1084,-0.3753,0.9239,0.0747,-0.3753,0.9239,0.0747,-0.5449,0.8315,0.1084,-0.5556,0.8315,0.0,-0.3753,0.9239,0.0747,-0.5556,0.8315,0.0,-0.3827,0.9239,0.0,-0.3827,0.9239,0.0,-0.5556,0.8315,0.0,-0.5449,0.8315,-0.1084,-0.3827,0.9239,0.0,-0.5449,0.8315,-0.1084,-0.3753,0.9239,-0.0747,-0.3753,0.9239,-0.0747,-0.5449,0.8315,-0.1084,-0.5133,0.8315,-0.2126,-0.3753,0.9239,-0.0747,-0.5133,0.8315,-0.2126,-0.3536,0.9239,-0.1464,-0.3536,0.9239,-0.1464,-0.5133,0.8315,-0.2126,-0.4619,0.8315,-0.3087,-0.3536,0.9239,-0.1464,-0.4619,0.8315,-0.3087,-0.3182,0.9239,-0.2126,-0.3182,0.9239,-0.2126,-0.4619,0.8315,-0.3087,-0.3928,0.8315,-0.3928,-0.3182,0.9239,-0.2126,-0.3928,0.8315,-0.3928,-0.2706,0.9239,-0.2706,-0.2706,0.9239,-0.2706,-0.3928,0.8315,-0.3928,-0.3087,0.8315,-0.4619,-0.2706,0.9239,-0.2706,-0.3087,0.8315,-0.4619,-0.2126,0.9239,-0.3182,-0.2126,0.9239,-0.3182,-0.3087,0.8315,-0.4619,-0.2126,0.8315,-0.5133,-0.2126,0.9239,-0.3182,-0.2126,0.8315,-0.5133,-0.1464,0.9239,-0.3536,-0.1464,0.9239,-0.3536,-0.2126,0.8315,-0.5133,-0.1084,0.8315,-0.5449,-0.1464,0.9239,-0.3536,-0.1084,0.8315,-0.5449,-0.0747,0.9239,-0.3753,-0.0747,0.9239,-0.3753,-0.1084,0.8315,-0.5449,0.0,0.8315,-0.5556,-0.0747,0.9239,-0.3753,0.0,0.8315,-0.5556,0.0,0.9239,-0.3827,0.0,0.9239,-0.3827,0.0,0.8315,-0.5556,0.1084,0.8315,-0.5449,0.0,0.9239,-0.3827,0.1084,0.8315,-0.5449,0.0747,0.9239,-0.3753,0.0747,0.9239,-0.3753,0.1084,0.8315,-0.5449,0.2126,0.8315,-0.5133,0.0747,0.9239,-0.3753,0.2126,0.8315,-0.5133,0.1464,0.9239,-0.3536,0.1464,0.9239,-0.3536,0.2126,0.8315,-0.5133,0.3087,0.8315,-0.4619,0.1464,0.9239,-0.3536,0.3087,0.8315,-0.4619,0.2126,0.9239,-0.3182,0.2126,0.9239,-0.3182,0.3087,0.8315,-0.4619,0.3928,0.8315,-0.3928,0.2126,0.9239,-0.3182,0.3928,0.8315,-0.3928,0.2706,0.9239,-0.2706,0.2706,0.9239,-0.2706,0.3928,0.8315,-0.3928,0.4619,0.8315,-0.3087,0.2706,0.9239,-0.2706,0.4619,0.8315,-0.3087,0.3182,0.9239,-0.2126,0.3182,0.9239,-0.2126,0.4619,0.8315,-0.3087,0.5133,0.8315,-0.2126,0.3182,0.9239,-0.2126,0.5133,0.8315,-0.2126,0.3536,0.9239,-0.1464,0.3536,0.9239,-0.1464,0.5133,0.8315,-0.2126,0.5449,0.8315,-0.1084,0.3536,0.9239,-0.1464,0.5449,0.8315,-0.1084,0.3753,0.9239,-0.0747,0.3753,0.9239,-0.0747,0.5449,0.8315,-0.1084,0.5556,0.8315,0.0,0.3753,0.9239,-0.0747,0.5556,0.8315,0.0,0.3827,0.9239,0.0,0.3827,0.9239,0.0,0.5556,0.8315,0.0,0.5449,0.8315,0.1084,0.3827,0.9239,0.0,0.5449,0.8315,0.1084,0.3753,0.9239,0.0747,0.3753,0.9239,0.0747,0.5449,0.8315,0.1084,0.5133,0.8315,0.2126,0.3753,0.9239,0.0747,0.5133,0.8315,0.2126,0.3536,0.9239,0.1464,0.3536,0.9239,0.1464,0.5133,0.8315,0.2126,0.4619,0.8315,0.3087,0.3536,0.9239,0.1464,0.4619,0.8315,0.3087,0.3182,0.9239,0.2126,0.3182,0.9239,0.2126,0.4619,0.8315,0.3087,0.3928,0.8315,0.3928,0.3182,0.9239,0.2126,0.3928,0.8315,0.3928,0.2706,0.9239,0.2706,0.2706,0.9239,0.2706,0.3928,0.8315,0.3928,0.3087,0.8315,0.4619,0.2706,0.9239,0.2706,0.3087,0.8315,0.4619,0.2126,0.9239,0.3182,0.2126,0.9239,0.3182,0.3087,0.8315,0.4619,0.2126,0.8315,0.5133,0.2126,0.9239,0.3182,0.2126,0.8315,0.5133,0.1464,0.9239,0.3536,0.1464,0.9239,0.3536,0.2126,0.8315,0.5133,0.1084,0.8315,0.5449,0.1464,0.9239,0.3536,0.1084,0.8315,0.5449,0.0747,0.9239,0.3753,0.0747,0.9239,0.3753,0.1084,0.8315,0.5449,0.0,0.8315,0.5556,0.0747,0.9239,0.3753,0.0,0.8315,0.5556,0.0,0.9239,0.3827,0.0,0.8315,0.5556,0.0,0.7071,0.7071,-0.1379,0.7071,0.6935,0.0,0.8315,0.5556,-0.1379,0.7071,0.6935,-0.1084,0.8315,0.5449,-0.1084,0.8315,0.5449,-0.1379,0.7071,0.6935,-0.2706,0.7071,0.6533,-0.1084,0.8315,0.5449,-0.2706,0.7071,0.6533,-0.2126,0.8315,0.5133,-0.2126,0.8315,0.5133,-0.2706,0.7071,0.6533,-0.3928,0.7071,0.5879,-0.2126,0.8315,0.5133,-0.3928,0.7071,0.5879,-0.3087,0.8315,0.4619,-0.3087,0.8315,0.4619,-0.3928,0.7071,0.5879,-0.5,0.7071,0.5,-0.3087,0.8315,0.4619,-0.5,0.7071,0.5,-0.3928,0.8315,0.3928,-0.3928,0.8315,0.3928,-0.5,0.7071,0.5,-0.5879,0.7071,0.3928,-0.3928,0.8315,0.3928,-0.5879,0.7071,0.3928,-0.4619,0.8315,0.3087,-0.4619,0.8315,0.3087,-0.5879,0.7071,0.3928,-0.6533,0.7071,0.2706,-0.4619,0.8315,0.3087,-0.6533,0.7071,0.2706,-0.5133,0.8315,0.2126,-0.5133,0.8315,0.2126,-0.6533,0.7071,0.2706,-0.6935,0.7071,0.1379,-0.5133,0.8315,0.2126,-0.6935,0.7071,0.1379,-0.5449,0.8315,0.1084,-0.5449,0.8315,0.1084,-0.6935,0.7071,0.1379,-0.7071,0.7071,0.0,-0.5449,0.8315,0.1084,-0.7071,0.7071,0.0,-0.5556,0.8315,0.0,-0.5556,0.8315,0.0,-0.7071,0.7071,0.0,-0.6935,0.7071,-0.1379,-0.5556,0.8315,0.0,-0.6935,0.7071,-0.1379,-0.5449,0.8315,-0.1084,-0.5449,0.8315,-0.1084,-0.6935,0.7071,-0.1379,-0.6533,0.7071,-0.2706,-0.5449,0.8315,-0.1084,-0.6533,0.7071,-0.2706,-0.5133,0.8315,-0.2126,-0.5133,0.8315,-0.2126,-0.6533,0.7071,-0.2706,-0.5879,0.7071,-0.3928,-0.5133,0.8315,-0.2126,-0.5879,0.7071,-0.3928,-0.4619,0.8315,-0.3087,-0.4619,0.8315,-0.3087,-0.5879,0.7071,-0.3928,-0.5,0.7071,-0.5,-0.4619,0.8315,-0.3087,-0.5,0.7071,-0.5,-0.3928,0.8315,-0.3928,-0.3928,0.8315,-0.3928,-0.5,0.7071,-0.5,-0.3928,0.7071,-0.5879,-0.3928,0.8315,-0.3928,-0.3928,0.7071,-0.5879,-0.3087,0.8315,-0.4619,-0.3087,0.8315,-0.4619,-0.3928,0.7071,-0.5879,-0.2706,0.7071,-0.6533,-0.3087,0.8315,-0.4619,-0.2706,0.7071,-0.6533,-0.2126,0.8315,-0.5133,-0.2126,0.8315,-0.5133,-0.2706,0.7071,-0.6533,-0.1379,0.7071,-0.6935,-0.2126,0.8315,-0.5133,-0.1379,0.7071,-0.6935,-0.1084,0.8315,-0.5449,-0.1084,0.8315,-0.5449,-0.1379,0.7071,-0.6935,0.0,0.7071,-0.7071,-0.1084,0.8315,-0.5449,0.0,0.7071,-0.7071,0.0,0.8315,-0.5556,0.0,0.8315,-0.5556,0.0,0.7071,-0.7071,0.138,0.7071,-0.6935,0.0,0.8315,-0.5556,0.138,0.7071,-0.6935,0.1084,0.8315,-0.5449,0.1084,0.8315,-0.5449,0.138,0.7071,-0.6935,0.2706,0.7071,-0.6533,0.1084,0.8315,-0.5449,0.2706,0.7071,-0.6533,0.2126,0.8315,-0.5133,0.2126,0.8315,-0.5133,0.2706,0.7071,-0.6533,0.3928,0.7071,-0.5879,0.2126,0.8315,-0.5133,0.3928,0.7071,-0.5879,0.3087,0.8315,-0.4619,0.3087,0.8315,-0.4619,0.3928,0.7071,-0.5879,0.5,0.7071,-0.5,0.3087,0.8315,-0.4619,0.5,0.7071,-0.5,0.3928,0.8315,-0.3928,0.3928,0.8315,-0.3928,0.5,0.7071,-0.5,0.5879,0.7071,-0.3928,0.3928,0.8315,-0.3928,0.5879,0.7071,-0.3928,0.4619,0.8315,-0.3087,0.4619,0.8315,-0.3087,0.5879,0.7071,-0.3928,0.6533,0.7071,-0.2706,0.4619,0.8315,-0.3087,0.6533,0.7071,-0.2706,0.5133,0.8315,-0.2126,0.5133,0.8315,-0.2126,0.6533,0.7071,-0.2706,0.6935,0.7071,-0.1379,0.5133,0.8315,-0.2126,0.6935,0.7071,-0.1379,0.5449,0.8315,-0.1084,0.5449,0.8315,-0.1084,0.6935,0.7071,-0.1379,0.7071,0.7071,0.0,0.5449,0.8315,-0.1084,0.7071,0.7071,0.0,0.5556,0.8315,0.0,0.5556,0.8315,0.0,0.7071,0.7071,0.0,0.6935,0.7071,0.138,0.5556,0.8315,0.0,0.6935,0.7071,0.138,0.5449,0.8315,0.1084,0.5449,0.8315,0.1084,0.6935,0.7071,0.138,0.6533,0.7071,0.2706,0.5449,0.8315,0.1084,0.6533,0.7071,0.2706,0.5133,0.8315,0.2126,0.5133,0.8315,0.2126,0.6533,0.7071,0.2706,0.5879,0.7071,0.3928,0.5133,0.8315,0.2126,0.5879,0.7071,0.3928,0.4619,0.8315,0.3087,0.4619,0.8315,0.3087,0.5879,0.7071,0.3928,0.5,0.7071,0.5,0.4619,0.8315,0.3087,0.5,0.7071,0.5,0.3928,0.8315,0.3928,0.3928,0.8315,0.3928,0.5,0.7071,0.5,0.3928,0.7071,0.5879,0.3928,0.8315,0.3928,0.3928,0.7071,0.5879,0.3087,0.8315,0.4619,0.3087,0.8315,0.4619,0.3928,0.7071,0.5879,0.2706,0.7071,0.6533,0.3087,0.8315,0.4619,0.2706,0.7071,0.6533,0.2126,0.8315,0.5133,0.2126,0.8315,0.5133,0.2706,0.7071,0.6533,0.1379,0.7071,0.6935,0.2126,0.8315,0.5133,0.1379,0.7071,0.6935,0.1084,0.8315,0.5449,0.1084,0.8315,0.5449,0.1379,0.7071,0.6935,0.0,0.7071,0.7071,0.1084,0.8315,0.5449,0.0,0.7071,0.7071,0.0,0.8315,0.5556,0.0,0.7071,0.7071,0.0,0.5556,0.8315,-0.1622,0.5556,0.8155,0.0,0.7071,0.7071,-0.1622,0.5556,0.8155,-0.1379,0.7071,0.6935,-0.1379,0.7071,0.6935,-0.1622,0.5556,0.8155,-0.3182,0.5556,0.7682,-0.1379,0.7071,0.6935,-0.3182,0.5556,0.7682,-0.2706,0.7071,0.6533,-0.2706,0.7071,0.6533,-0.3182,0.5556,0.7682,-0.4619,0.5556,0.6913,-0.2706,0.7071,0.6533,-0.4619,0.5556,0.6913,-0.3928,0.7071,0.5879,-0.3928,0.7071,0.5879,-0.4619,0.5556,0.6913,-0.5879,0.5556,0.5879,-0.3928,0.7071,0.5879,-0.5879,0.5556,0.5879,-0.5,0.7071,0.5,-0.5,0.7071,0.5,-0.5879,0.5556,0.5879,-0.6913,0.5556,0.4619,-0.5,0.7071,0.5,-0.6913,0.5556,0.4619,-0.5879,0.7071,0.3928,-0.5879,0.7071,0.3928,-0.6913,0.5556,0.4619,-0.7682,0.5556,0.3182,-0.5879,0.7071,0.3928,-0.7682,0.5556,0.3182,-0.6533,0.7071,0.2706,-0.6533,0.7071,0.2706,-0.7682,0.5556,0.3182,-0.8155,0.5556,0.1622,-0.6533,0.7071,0.2706,-0.8155,0.5556,0.1622,-0.6935,0.7071,0.1379,-0.6935,0.7071,0.1379,-0.8155,0.5556,0.1622,-0.8315,0.5556,0.0,-0.6935,0.7071,0.1379,-0.8315,0.5556,0.0,-0.7071,0.7071,0.0,-0.7071,0.7071,0.0,-0.8315,0.5556,0.0,-0.8155,0.5556,-0.1622,-0.7071,0.7071,0.0,-0.8155,0.5556,-0.1622,-0.6935,0.7071,-0.1379,-0.6935,0.7071,-0.1379,-0.8155,0.5556,-0.1622,-0.7682,0.5556,-0.3182,-0.6935,0.7071,-0.1379,-0.7682,0.5556,-0.3182,-0.6533,0.7071,-0.2706,-0.6533,0.7071,-0.2706,-0.7682,0.5556,-0.3182,-0.6913,0.5556,-0.4619,-0.6533,0.7071,-0.2706,-0.6913,0.5556,-0.4619,-0.5879,0.7071,-0.3928,-0.5879,0.7071,-0.3928,-0.6913,0.5556,-0.4619,-0.5879,0.5556,-0.5879,-0.5879,0.7071,-0.3928,-0.5879,0.5556,-0.5879,-0.5,0.7071,-0.5,-0.5,0.7071,-0.5,-0.5879,0.5556,-0.5879,-0.4619,0.5556,-0.6913,-0.5,0.7071,-0.5,-0.4619,0.5556,-0.6913,-0.3928,0.7071,-0.5879,-0.3928,0.7071,-0.5879,-0.4619,0.5556,-0.6913,-0.3182,0.5556,-0.7682,-0.3928,0.7071,-0.5879,-0.3182,0.5556,-0.7682,-0.2706,0.7071,-0.6533,-0.2706,0.7071,-0.6533,-0.3182,0.5556,-0.7682,-0.1622,0.5556,-0.8155,-0.2706,0.7071,-0.6533,-0.1622,0.5556,-0.8155,-0.1379,0.7071,-0.6935,-0.1379,0.7071,-0.6935,-0.1622,0.5556,-0.8155,0.0,0.5556,-0.8315,-0.1379,0.7071,-0.6935,0.0,0.5556,-0.8315,0.0,0.7071,-0.7071,0.0,0.7071,-0.7071,0.0,0.5556,-0.8315,0.1622,0.5556,-0.8155,0.0,0.7071,-0.7071,0.1622,0.5556,-0.8155,0.138,0.7071,-0.6935,0.138,0.7071,-0.6935,0.1622,0.5556,-0.8155,0.3182,0.5556,-0.7682,0.138,0.7071,-0.6935,0.3182,0.5556,-0.7682,0.2706,0.7071,-0.6533,0.2706,0.7071,-0.6533,0.3182,0.5556,-0.7682,0.4619,0.5556,-0.6913,0.2706,0.7071,-0.6533,0.4619,0.5556,-0.6913,0.3928,0.7071,-0.5879,0.3928,0.7071,-0.5879,0.4619,0.5556,-0.6913,0.5879,0.5556,-0.5879,0.3928,0.7071,-0.5879,0.5879,0.5556,-0.5879,0.5,0.7071,-0.5,0.5,0.7071,-0.5,0.5879,0.5556,-0.5879,0.6913,0.5556,-0.4619,0.5,0.7071,-0.5,0.6913,0.5556,-0.4619,0.5879,0.7071,-0.3928,0.5879,0.7071,-0.3928,0.6913,0.5556,-0.4619,0.7682,0.5556,-0.3182,0.5879,0.7071,-0.3928,0.7682,0.5556,-0.3182,0.6533,0.7071,-0.2706,0.6533,0.7071,-0.2706,0.7682,0.5556,-0.3182,0.8155,0.5556,-0.1622,0.6533,0.7071,-0.2706,0.8155,0.5556,-0.1622,0.6935,0.7071,-0.1379,0.6935,0.7071,-0.1379,0.8155,0.5556,-0.1622,0.8315,0.5556,0.0,0.6935,0.7071,-0.1379,0.8315,0.5556,0.0,0.7071,0.7071,0.0,0.7071,0.7071,0.0,0.8315,0.5556,0.0,0.8155,0.5556,0.1622,0.7071,0.7071,0.0,0.8155,0.5556,0.1622,0.6935,0.7071,0.138,0.6935,0.7071,0.138,0.8155,0.5556,0.1622,0.7682,0.5556,0.3182,0.6935,0.7071,0.138,0.7682,0.5556,0.3182,0.6533,0.7071,0.2706,0.6533,0.7071,0.2706,0.7682,0.5556,0.3182,0.6913,0.5556,0.4619,0.6533,0.7071,0.2706,0.6913,0.5556,0.4619,0.5879,0.7071,0.3928,0.5879,0.7071,0.3928,0.6913,0.5556,0.4619,0.5879,0.5556,0.5879,0.5879,0.7071,0.3928,0.5879,0.5556,0.5879,0.5,0.7071,0.5,0.5,0.7071,0.5,0.5879,0.5556,0.5879,0.4619,0.5556,0.6913,0.5,0.7071,0.5,0.4619,0.5556,0.6913,0.3928,0.7071,0.5879,0.3928,0.7071,0.5879,0.4619,0.5556,0.6913,0.3182,0.5556,0.7682,0.3928,0.7071,0.5879,0.3182,0.5556,0.7682,0.2706,0.7071,0.6533,0.2706,0.7071,0.6533,0.3182,0.5556,0.7682,0.1622,0.5556,0.8155,0.2706,0.7071,0.6533,0.1622,0.5556,0.8155,0.1379,0.7071,0.6935,0.1379,0.7071,0.6935,0.1622,0.5556,0.8155,0.0,0.5556,0.8315,0.1379,0.7071,0.6935,0.0,0.5556,0.8315,0.0,0.7071,0.7071,0.0,0.5556,0.8315,0.0,0.3827,0.9239,-0.1802,0.3827,0.9061,0.0,0.5556,0.8315,-0.1802,0.3827,0.9061,-0.1622,0.5556,0.8155,-0.1622,0.5556,0.8155,-0.1802,0.3827,0.9061,-0.3536,0.3827,0.8536,-0.1622,0.5556,0.8155,-0.3536,0.3827,0.8536,-0.3182,0.5556,0.7682,-0.3182,0.5556,0.7682,-0.3536,0.3827,0.8536,-0.5133,0.3827,0.7682,-0.3182,0.5556,0.7682,-0.5133,0.3827,0.7682,-0.4619,0.5556,0.6913,-0.4619,0.5556,0.6913,-0.5133,0.3827,0.7682,-0.6533,0.3827,0.6533,-0.4619,0.5556,0.6913,-0.6533,0.3827,0.6533,-0.5879,0.5556,0.5879,-0.5879,0.5556,0.5879,-0.6533,0.3827,0.6533,-0.7682,0.3827,0.5133,-0.5879,0.5556,0.5879,-0.7682,0.3827,0.5133,-0.6913,0.5556,0.4619,-0.6913,0.5556,0.4619,-0.7682,0.3827,0.5133,-0.8536,0.3827,0.3536,-0.6913,0.5556,0.4619,-0.8536,0.3827,0.3536,-0.7682,0.5556,0.3182,-0.7682,0.5556,0.3182,-0.8536,0.3827,0.3536,-0.9061,0.3827,0.1802,-0.7682,0.5556,0.3182,-0.9061,0.3827,0.1802,-0.8155,0.5556,0.1622,-0.8155,0.5556,0.1622,-0.9061,0.3827,0.1802,-0.9239,0.3827,0.0,-0.8155,0.5556,0.1622,-0.9239,0.3827,0.0,-0.8315,0.5556,0.0,-0.8315,0.5556,0.0,-0.9239,0.3827,0.0,-0.9061,0.3827,-0.1802,-0.8315,0.5556,0.0,-0.9061,0.3827,-0.1802,-0.8155,0.5556,-0.1622,-0.8155,0.5556,-0.1622,-0.9061,0.3827,-0.1802,-0.8536,0.3827,-0.3536,-0.8155,0.5556,-0.1622,-0.8536,0.3827,-0.3536,-0.7682,0.5556,-0.3182,-0.7682,0.5556,-0.3182,-0.8536,0.3827,-0.3536,-0.7682,0.3827,-0.5133,-0.7682,0.5556,-0.3182,-0.7682,0.3827,-0.5133,-0.6913,0.5556,-0.4619,-0.6913,0.5556,-0.4619,-0.7682,0.3827,-0.5133,-0.6533,0.3827,-0.6533,-0.6913,0.5556,-0.4619,-0.6533,0.3827,-0.6533,-0.5879,0.5556,-0.5879,-0.5879,0.5556,-0.5879,-0.6533,0.3827,-0.6533,-0.5133,0.3827,-0.7682,-0.5879,0.5556,-0.5879,-0.5133,0.3827,-0.7682,-0.4619,0.5556,-0.6913,-0.4619,0.5556,-0.6913,-0.5133,0.3827,-0.7682,-0.3536,0.3827,-0.8536,-0.4619,0.5556,-0.6913,-0.3536,0.3827,-0.8536,-0.3182,0.5556,-0.7682,-0.3182,0.5556,-0.7682,-0.3536,0.3827,-0.8536,-0.1802,0.3827,-0.9061,-0.3182,0.5556,-0.7682,-0.1802,0.3827,-0.9061,-0.1622,0.5556,-0.8155,-0.1622,0.5556,-0.8155,-0.1802,0.3827,-0.9061,0.0,0.3827,-0.9239,-0.1622,0.5556,-0.8155,0.0,0.3827,-0.9239,0.0,0.5556,-0.8315,0.0,0.5556,-0.8315,0.0,0.3827,-0.9239,0.1802,0.3827,-0.9061,0.0,0.5556,-0.8315,0.1802,0.3827,-0.9061,0.1622,0.5556,-0.8155,0.1622,0.5556,-0.8155,0.1802,0.3827,-0.9061,0.3536,0.3827,-0.8536,0.1622,0.5556,-0.8155,0.3536,0.3827,-0.8536,0.3182,0.5556,-0.7682,0.3182,0.5556,-0.7682,0.3536,0.3827,-0.8536,0.5133,0.3827,-0.7682,0.3182,0.5556,-0.7682,0.5133,0.3827,-0.7682,0.4619,0.5556,-0.6913,0.4619,0.5556,-0.6913,0.5133,0.3827,-0.7682,0.6533,0.3827,-0.6533,0.4619,0.5556,-0.6913,0.6533,0.3827,-0.6533,0.5879,0.5556,-0.5879,0.5879,0.5556,-0.5879,0.6533,0.3827,-0.6533,0.7682,0.3827,-0.5133,0.5879,0.5556,-0.5879,0.7682,0.3827,-0.5133,0.6913,0.5556,-0.4619,0.6913,0.5556,-0.4619,0.7682,0.3827,-0.5133,0.8536,0.3827,-0.3536,0.6913,0.5556,-0.4619,0.8536,0.3827,-0.3536,0.7682,0.5556,-0.3182,0.7682,0.5556,-0.3182,0.8536,0.3827,-0.3536,0.9061,0.3827,-0.1802,0.7682,0.5556,-0.3182,0.9061,0.3827,-0.1802,0.8155,0.5556,-0.1622,0.8155,0.5556,-0.1622,0.9061,0.3827,-0.1802,0.9239,0.3827,0.0,0.8155,0.5556,-0.1622,0.9239,0.3827,0.0,0.8315,0.5556,0.0,0.8315,0.5556,0.0,0.9239,0.3827,0.0,0.9061,0.3827,0.1802,0.8315,0.5556,0.0,0.9061,0.3827,0.1802,0.8155,0.5556,0.1622,0.8155,0.5556,0.1622,0.9061,0.3827,0.1802,0.8536,0.3827,0.3536,0.8155,0.5556,0.1622,0.8536,0.3827,0.3536,0.7682,0.5556,0.3182,0.7682,0.5556,0.3182,0.8536,0.3827,0.3536,0.7682,0.3827,0.5133,0.7682,0.5556,0.3182,0.7682,0.3827,0.5133,0.6913,0.5556,0.4619,0.6913,0.5556,0.4619,0.7682,0.3827,0.5133,0.6533,0.3827,0.6533,0.6913,0.5556,0.4619,0.6533,0.3827,0.6533,0.5879,0.5556,0.5879,0.5879,0.5556,0.5879,0.6533,0.3827,0.6533,0.5133,0.3827,0.7682,0.5879,0.5556,0.5879,0.5133,0.3827,0.7682,0.4619,0.5556,0.6913,0.4619,0.5556,0.6913,0.5133,0.3827,0.7682,0.3536,0.3827,0.8536,0.4619,0.5556,0.6913,0.3536,0.3827,0.8536,0.3182,0.5556,0.7682,0.3182,0.5556,0.7682,0.3536,0.3827,0.8536,0.1802,0.3827,0.9061,0.3182,0.5556,0.7682,0.1802,0.3827,0.9061,0.1622,0.5556,0.8155,0.1622,0.5556,0.8155,0.1802,0.3827,0.9061,0.0,0.3827,0.9239,0.1622,0.5556,0.8155,0.0,0.3827,0.9239,0.0,0.5556,0.8315,0.0,0.3827,0.9239,0.0,0.1951,0.9808,-0.1913,0.1951,0.9619,0.0,0.3827,0.9239,-0.1913,0.1951,0.9619,-0.1802,0.3827,0.9061,-0.1802,0.3827,0.9061,-0.1913,0.1951,0.9619,-0.3753,0.1951,0.9061,-0.1802,0.3827,0.9061,-0.3753,0.1951,0.9061,-0.3536,0.3827,0.8536,-0.3536,0.3827,0.8536,-0.3753,0.1951,0.9061,-0.5449,0.1951,0.8155,-0.3536,0.3827,0.8536,-0.5449,0.1951,0.8155,-0.5133,0.3827,0.7682,-0.5133,0.3827,0.7682,-0.5449,0.1951,0.8155,-0.6935,0.1951,0.6935,-0.5133,0.3827,0.7682,-0.6935,0.1951,0.6935,-0.6533,0.3827,0.6533,-0.6533,0.3827,0.6533,-0.6935,0.1951,0.6935,-0.8155,0.1951,0.5449,-0.6533,0.3827,0.6533,-0.8155,0.1951,0.5449,-0.7682,0.3827,0.5133,-0.7682,0.3827,0.5133,-0.8155,0.1951,0.5449,-0.9061,0.1951,0.3753,-0.7682,0.3827,0.5133,-0.9061,0.1951,0.3753,-0.8536,0.3827,0.3536,-0.8536,0.3827,0.3536,-0.9061,0.1951,0.3753,-0.9619,0.1951,0.1913,-0.8536,0.3827,0.3536,-0.9619,0.1951,0.1913,-0.9061,0.3827,0.1802,-0.9061,0.3827,0.1802,-0.9619,0.1951,0.1913,-0.9808,0.1951,0.0,-0.9061,0.3827,0.1802,-0.9808,0.1951,0.0,-0.9239,0.3827,0.0,-0.9239,0.3827,0.0,-0.9808,0.1951,0.0,-0.9619,0.1951,-0.1913,-0.9239,0.3827,0.0,-0.9619,0.1951,-0.1913,-0.9061,0.3827,-0.1802,-0.9061,0.3827,-0.1802,-0.9619,0.1951,-0.1913,-0.9061,0.1951,-0.3753,-0.9061,0.3827,-0.1802,-0.9061,0.1951,-0.3753,-0.8536,0.3827,-0.3536,-0.8536,0.3827,-0.3536,-0.9061,0.1951,-0.3753,-0.8155,0.1951,-0.5449,-0.8536,0.3827,-0.3536,-0.8155,0.1951,-0.5449,-0.7682,0.3827,-0.5133,-0.7682,0.3827,-0.5133,-0.8155,0.1951,-0.5449,-0.6935,0.1951,-0.6935,-0.7682,0.3827,-0.5133,-0.6935,0.1951,-0.6935,-0.6533,0.3827,-0.6533,-0.6533,0.3827,-0.6533,-0.6935,0.1951,-0.6935,-0.5449,0.1951,-0.8155,-0.6533,0.3827,-0.6533,-0.5449,0.1951,-0.8155,-0.5133,0.3827,-0.7682,-0.5133,0.3827,-0.7682,-0.5449,0.1951,-0.8155,-0.3753,0.1951,-0.9061,-0.5133,0.3827,-0.7682,-0.3753,0.1951,-0.9061,-0.3536,0.3827,-0.8536,-0.3536,0.3827,-0.8536,-0.3753,0.1951,-0.9061,-0.1913,0.1951,-0.9619,-0.3536,0.3827,-0.8536,-0.1913,0.1951,-0.9619,-0.1802,0.3827,-0.9061,-0.1802,0.3827,-0.9061,-0.1913,0.1951,-0.9619,0.0,0.1951,-0.9808,-0.1802,0.3827,-0.9061,0.0,0.1951,-0.9808,0.0,0.3827,-0.9239,0.0,0.3827,-0.9239,0.0,0.1951,-0.9808,0.1913,0.1951,-0.9619,0.0,0.3827,-0.9239,0.1913,0.1951,-0.9619,0.1802,0.3827,-0.9061,0.1802,0.3827,-0.9061,0.1913,0.1951,-0.9619,0.3753,0.1951,-0.9061,0.1802,0.3827,-0.9061,0.3753,0.1951,-0.9061,0.3536,0.3827,-0.8536,0.3536,0.3827,-0.8536,0.3753,0.1951,-0.9061,0.5449,0.1951,-0.8155,0.3536,0.3827,-0.8536,0.5449,0.1951,-0.8155,0.5133,0.3827,-0.7682,0.5133,0.3827,-0.7682,0.5449,0.1951,-0.8155,0.6935,0.1951,-0.6935,0.5133,0.3827,-0.7682,0.6935,0.1951,-0.6935,0.6533,0.3827,-0.6533,0.6533,0.3827,-0.6533,0.6935,0.1951,-0.6935,0.8155,0.1951,-0.5449,0.6533,0.3827,-0.6533,0.8155,0.1951,-0.5449,0.7682,0.3827,-0.5133,0.7682,0.3827,-0.5133,0.8155,0.1951,-0.5449,0.9061,0.1951,-0.3753,0.7682,0.3827,-0.5133,0.9061,0.1951,-0.3753,0.8536,0.3827,-0.3536,0.8536,0.3827,-0.3536,0.9061,0.1951,-0.3753,0.9619,0.1951,-0.1913,0.8536,0.3827,-0.3536,0.9619,0.1951,-0.1913,0.9061,0.3827,-0.1802,0.9061,0.3827,-0.1802,0.9619,0.1951,-0.1913,0.9808,0.1951,0.0,0.9061,0.3827,-0.1802,0.9808,0.1951,0.0,0.9239,0.3827,0.0,0.9239,0.3827,0.0,0.9808,0.1951,0.0,0.9619,0.1951,0.1913,0.9239,0.3827,0.0,0.9619,0.1951,0.1913,0.9061,0.3827,0.1802,0.9061,0.3827,0.1802,0.9619,0.1951,0.1913,0.9061,0.1951,0.3753,0.9061,0.3827,0.1802,0.9061,0.1951,0.3753,0.8536,0.3827,0.3536,0.8536,0.3827,0.3536,0.9061,0.1951,0.3753,0.8155,0.1951,0.5449,0.8536,0.3827,0.3536,0.8155,0.1951,0.5449,0.7682,0.3827,0.5133,0.7682,0.3827,0.5133,0.8155,0.1951,0.5449,0.6935,0.1951,0.6935,0.7682,0.3827,0.5133,0.6935,0.1951,0.6935,0.6533,0.3827,0.6533,0.6533,0.3827,0.6533,0.6935,0.1951,0.6935,0.5449,0.1951,0.8155,0.6533,0.3827,0.6533,0.5449,0.1951,0.8155,0.5133,0.3827,0.7682,0.5133,0.3827,0.7682,0.5449,0.1951,0.8155,0.3753,0.1951,0.9061,0.5133,0.3827,0.7682,0.3753,0.1951,0.9061,0.3536,0.3827,0.8536,0.3536,0.3827,0.8536,0.3753,0.1951,0.9061,0.1913,0.1951,0.9619,0.3536,0.3827,0.8536,0.1913,0.1951,0.9619,0.1802,0.3827,0.9061,0.1802,0.3827,0.9061,0.1913,0.1951,0.9619,0.0,0.1951,0.9808,0.1802,0.3827,0.9061,0.0,0.1951,0.9808,0.0,0.3827,0.9239,0.0,0.1951,0.9808,0.0,0.0,1.0,-0.1951,0.0,0.9808,0.0,0.1951,0.9808,-0.1951,0.0,0.9808,-0.1913,0.1951,0.9619,-0.1913,0.1951,0.9619,-0.1951,0.0,0.9808,-0.3827,0.0,0.9239,-0.1913,0.1951,0.9619,-0.3827,0.0,0.9239,-0.3753,0.1951,0.9061,-0.3753,0.1951,0.9061,-0.3827,0.0,0.9239,-0.5556,0.0,0.8315,-0.3753,0.1951,0.9061,-0.5556,0.0,0.8315,-0.5449,0.1951,0.8155,-0.5449,0.1951,0.8155,-0.5556,0.0,0.8315,-0.7071,0.0,0.7071,-0.5449,0.1951,0.8155,-0.7071,0.0,0.7071,-0.6935,0.1951,0.6935,-0.6935,0.1951,0.6935,-0.7071,0.0,0.7071,-0.8315,0.0,0.5556,-0.6935,0.1951,0.6935,-0.8315,0.0,0.5556,-0.8155,0.1951,0.5449,-0.8155,0.1951,0.5449,-0.8315,0.0,0.5556,-0.9239,0.0,0.3827,-0.8155,0.1951,0.5449,-0.9239,0.0,0.3827,-0.9061,0.1951,0.3753,-0.9061,0.1951,0.3753,-0.9239,0.0,0.3827,-0.9808,0.0,0.1951,-0.9061,0.1951,0.3753,-0.9808,0.0,0.1951,-0.9619,0.1951,0.1913,-0.9619,0.1951,0.1913,-0.9808,0.0,0.1951,-1.0,0.0,0.0,-0.9619,0.1951,0.1913,-1.0,0.0,0.0,-0.9808,0.1951,0.0,-0.9808,0.1951,0.0,-1.0,0.0,0.0,-0.9808,0.0,-0.1951,-0.9808,0.1951,0.0,-0.9808,0.0,-0.1951,-0.9619,0.1951,-0.1913,-0.9619,0.1951,-0.1913,-0.9808,0.0,-0.1951,-0.9239,0.0,-0.3827,-0.9619,0.1951,-0.1913,-0.9239,0.0,-0.3827,-0.9061,0.1951,-0.3753,-0.9061,0.1951,-0.3753,-0.9239,0.0,-0.3827,-0.8315,0.0,-0.5556,-0.9061,0.1951,-0.3753,-0.8315,0.0,-0.5556,-0.8155,0.1951,-0.5449,-0.8155,0.1951,-0.5449,-0.8315,0.0,-0.5556,-0.7071,0.0,-0.7071,-0.8155,0.1951,-0.5449,-0.7071,0.0,-0.7071,-0.6935,0.1951,-0.6935,-0.6935,0.1951,-0.6935,-0.7071,0.0,-0.7071,-0.5556,0.0,-0.8315,-0.6935,0.1951,-0.6935,-0.5556,0.0,-0.8315,-0.5449,0.1951,-0.8155,-0.5449,0.1951,-0.8155,-0.5556,0.0,-0.8315,-0.3827,0.0,-0.9239,-0.5449,0.1951,-0.8155,-0.3827,0.0,-0.9239,-0.3753,0.1951,-0.9061,-0.3753,0.1951,-0.9061,-0.3827,0.0,-0.9239,-0.1951,0.0,-0.9808,-0.3753,0.1951,-0.9061,-0.1951,0.0,-0.9808,-0.1913,0.1951,-0.9619,-0.1913,0.1951,-0.9619,-0.1951,0.0,-0.9808,0.0,0.0,-1.0,-0.1913,0.1951,-0.9619,0.0,0.0,-1.0,0.0,0.1951,-0.9808,0.0,0.1951,-0.9808,0.0,0.0,-1.0,0.1951,0.0,-0.9808,0.0,0.1951,-0.9808,0.1951,0.0,-0.9808,0.1913,0.1951,-0.9619,0.1913,0.1951,-0.9619,0.1951,0.0,-0.9808,0.3827,0.0,-0.9239,0.1913,0.1951,-0.9619,0.3827,0.0,-0.9239,0.3753,0.1951,-0.9061,0.3753,0.1951,-0.9061,0.3827,0.0,-0.9239,0.5556,0.0,-0.8315,0.3753,0.1951,-0.9061,0.5556,0.0,-0.8315,0.5449,0.1951,-0.8155,0.5449,0.1951,-0.8155,0.5556,0.0,-0.8315,0.7071,0.0,-0.7071,0.5449,0.1951,-0.8155,0.7071,0.0,-0.7071,0.6935,0.1951,-0.6935,0.6935,0.1951,-0.6935,0.7071,0.0,-0.7071,0.8315,0.0,-0.5556,0.6935,0.1951,-0.6935,0.8315,0.0,-0.5556,0.8155,0.1951,-0.5449,0.8155,0.1951,-0.5449,0.8315,0.0,-0.5556,0.9239,0.0,-0.3827,0.8155,0.1951,-0.5449,0.9239,0.0,-0.3827,0.9061,0.1951,-0.3753,0.9061,0.1951,-0.3753,0.9239,0.0,-0.3827,0.9808,0.0,-0.1951,0.9061,0.1951,-0.3753,0.9808,0.0,-0.1951,0.9619,0.1951,-0.1913,0.9619,0.1951,-0.1913,0.9808,0.0,-0.1951,1.0,0.0,0.0,0.9619,0.1951,-0.1913,1.0,0.0,0.0,0.9808,0.1951,0.0,0.9808,0.1951,0.0,1.0,0.0,0.0,0.9808,0.0,0.1951,0.9808,0.1951,0.0,0.9808,0.0,0.1951,0.9619,0.1951,0.1913,0.9619,0.1951,0.1913,0.9808,0.0,0.1951,0.9239,0.0,0.3827,0.9619,0.1951,0.1913,0.9239,0.0,0.3827,0.9061,0.1951,0.3753,0.9061,0.1951,0.3753,0.9239,0.0,0.3827,0.8315,0.0,0.5556,0.9061,0.1951,0.3753,0.8315,0.0,0.5556,0.8155,0.1951,0.5449,0.8155,0.1951,0.5449,0.8315,0.0,0.5556,0.7071,0.0,0.7071,0.8155,0.1951,0.5449,0.7071,0.0,0.7071,0.6935,0.1951,0.6935,0.6935,0.1951,0.6935,0.7071,0.0,0.7071,0.5556,0.0,0.8315,0.6935,0.1951,0.6935,0.5556,0.0,0.8315,0.5449,0.1951,0.8155,0.5449,0.1951,0.8155,0.5556,0.0,0.8315,0.3827,0.0,0.9239,0.5449,0.1951,0.8155,0.3827,0.0,0.9239,0.3753,0.1951,0.9061,0.3753,0.1951,0.9061,0.3827,0.0,0.9239,0.1951,0.0,0.9808,0.3753,0.1951,0.9061,0.1951,0.0,0.9808,0.1913,0.1951,0.9619,0.1913,0.1951,0.9619,0.1951,0.0,0.9808,0.0,0.0,1.0,0.1913,0.1951,0.9619,0.0,0.0,1.0,0.0,0.1951,0.9808,0.0,0.0,1.0,0.0,-0.1951,0.9808,-0.1913,-0.1951,0.9619,0.0,0.0,1.0,-0.1913,-0.1951,0.9619,-0.1951,0.0,0.9808,-0.1951,0.0,0.9808,-0.1913,-0.1951,0.9619,-0.3753,-0.1951,0.9061,-0.1951,0.0,0.9808,-0.3753,-0.1951,0.9061,-0.3827,0.0,0.9239,-0.3827,0.0,0.9239,-0.3753,-0.1951,0.9061,-0.5449,-0.1951,0.8155,-0.3827,0.0,0.9239,-0.5449,-0.1951,0.8155,-0.5556,0.0,0.8315,-0.5556,0.0,0.8315,-0.5449,-0.1951,0.8155,-0.6935,-0.1951,0.6935,-0.5556,0.0,0.8315,-0.6935,-0.1951,0.6935,-0.7071,0.0,0.7071,-0.7071,0.0,0.7071,-0.6935,-0.1951,0.6935,-0.8155,-0.1951,0.5449,-0.7071,0.0,0.7071,-0.8155,-0.1951,0.5449,-0.8315,0.0,0.5556,-0.8315,0.0,0.5556,-0.8155,-0.1951,0.5449,-0.9061,-0.1951,0.3753,-0.8315,0.0,0.5556,-0.9061,-0.1951,0.3753,-0.9239,0.0,0.3827,-0.9239,0.0,0.3827,-0.9061,-0.1951,0.3753,-0.9619,-0.1951,0.1913,-0.9239,0.0,0.3827,-0.9619,-0.1951,0.1913,-0.9808,0.0,0.1951,-0.9808,0.0,0.1951,-0.9619,-0.1951,0.1913,-0.9808,-0.1951,0.0,-0.9808,0.0,0.1951,-0.9808,-0.1951,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-0.9808,-0.1951,0.0,-0.9619,-0.1951,-0.1913,-1.0,0.0,0.0,-0.9619,-0.1951,-0.1913,-0.9808,0.0,-0.1951,-0.9808,0.0,-0.1951,-0.9619,-0.1951,-0.1913,-0.9061,-0.1951,-0.3753,-0.9808,0.0,-0.1951,-0.9061,-0.1951,-0.3753,-0.9239,0.0,-0.3827,-0.9239,0.0,-0.3827,-0.9061,-0.1951,-0.3753,-0.8155,-0.1951,-0.5449,-0.9239,0.0,-0.3827,-0.8155,-0.1951,-0.5449,-0.8315,0.0,-0.5556,-0.8315,0.0,-0.5556,-0.8155,-0.1951,-0.5449,-0.6935,-0.1951,-0.6935,-0.8315,0.0,-0.5556,-0.6935,-0.1951,-0.6935,-0.7071,0.0,-0.7071,-0.7071,0.0,-0.7071,-0.6935,-0.1951,-0.6935,-0.5449,-0.1951,-0.8155,-0.7071,0.0,-0.7071,-0.5449,-0.1951,-0.8155,-0.5556,0.0,-0.8315,-0.5556,0.0,-0.8315,-0.5449,-0.1951,-0.8155,-0.3753,-0.1951,-0.9061,-0.5556,0.0,-0.8315,-0.3753,-0.1951,-0.9061,-0.3827,0.0,-0.9239,-0.3827,0.0,-0.9239,-0.3753,-0.1951,-0.9061,-0.1913,-0.1951,-0.9619,-0.3827,0.0,-0.9239,-0.1913,-0.1951,-0.9619,-0.1951,0.0,-0.9808,-0.1951,0.0,-0.9808,-0.1913,-0.1951,-0.9619,0.0,-0.1951,-0.9808,-0.1951,0.0,-0.9808,0.0,-0.1951,-0.9808,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,-0.1951,-0.9808,0.1913,-0.1951,-0.9619,0.0,0.0,-1.0,0.1913,-0.1951,-0.9619,0.1951,0.0,-0.9808,0.1951,0.0,-0.9808,0.1913,-0.1951,-0.9619,0.3753,-0.1951,-0.9061,0.1951,0.0,-0.9808,0.3753,-0.1951,-0.9061,0.3827,0.0,-0.9239,0.3827,0.0,-0.9239,0.3753,-0.1951,-0.9061,0.5449,-0.1951,-0.8155,0.3827,0.0,-0.9239,0.5449,-0.1951,-0.8155,0.5556,0.0,-0.8315,0.5556,0.0,-0.8315,0.5449,-0.1951,-0.8155,0.6935,-0.1951,-0.6935,0.5556,0.0,-0.8315,0.6935,-0.1951,-0.6935,0.7071,0.0,-0.7071,0.7071,0.0,-0.7071,0.6935,-0.1951,-0.6935,0.8155,-0.1951,-0.5449,0.7071,0.0,-0.7071,0.8155,-0.1951,-0.5449,0.8315,0.0,-0.5556,0.8315,0.0,-0.5556,0.8155,-0.1951,-0.5449,0.9061,-0.1951,-0.3753,0.8315,0.0,-0.5556,0.9061,-0.1951,-0.3753,0.9239,0.0,-0.3827,0.9239,0.0,-0.3827,0.9061,-0.1951,-0.3753,0.9619,-0.1951,-0.1913,0.9239,0.0,-0.3827,0.9619,-0.1951,-0.1913,0.9808,0.0,-0.1951,0.9808,0.0,-0.1951,0.9619,-0.1951,-0.1913,0.9808,-0.1951,0.0,0.9808,0.0,-0.1951,0.9808,-0.1951,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.9808,-0.1951,0.0,0.9619,-0.1951,0.1913,1.0,0.0,0.0,0.9619,-0.1951,0.1913,0.9808,0.0,0.1951,0.9808,0.0,0.1951,0.9619,-0.1951,0.1913,0.9061,-0.1951,0.3753,0.9808,0.0,0.1951,0.9061,-0.1951,0.3753,0.9239,0.0,0.3827,0.9239,0.0,0.3827,0.9061,-0.1951,0.3753,0.8155,-0.1951,0.5449,0.9239,0.0,0.3827,0.8155,-0.1951,0.5449,0.8315,0.0,0.5556,0.8315,0.0,0.5556,0.8155,-0.1951,0.5449,0.6935,-0.1951,0.6935,0.8315,0.0,0.5556,0.6935,-0.1951,0.6935,0.7071,0.0,0.7071,0.7071,0.0,0.7071,0.6935,-0.1951,0.6935,0.5449,-0.1951,0.8155,0.7071,0.0,0.7071,0.5449,-0.1951,0.8155,0.5556,0.0,0.8315,0.5556,0.0,0.8315,0.5449,-0.1951,0.8155,0.3753,-0.1951,0.9061,0.5556,0.0,0.8315,0.3753,-0.1951,0.9061,0.3827,0.0,0.9239,0.3827,0.0,0.9239,0.3753,-0.1951,0.9061,0.1913,-0.1951,0.9619,0.3827,0.0,0.9239,0.1913,-0.1951,0.9619,0.1951,0.0,0.9808,0.1951,0.0,0.9808,0.1913,-0.1951,0.9619,0.0,-0.1951,0.9808,0.1951,0.0,0.9808,0.0,-0.1951,0.9808,0.0,0.0,1.0,0.0,-0.1951,0.9808,0.0,-0.3827,0.9239,-0.1802,-0.3827,0.9061,0.0,-0.1951,0.9808,-0.1802,-0.3827,0.9061,-0.1913,-0.1951,0.9619,-0.1913,-0.1951,0.9619,-0.1802,-0.3827,0.9061,-0.3536,-0.3827,0.8536,-0.1913,-0.1951,0.9619,-0.3536,-0.3827,0.8536,-0.3753,-0.1951,0.9061,-0.3753,-0.1951,0.9061,-0.3536,-0.3827,0.8536,-0.5133,-0.3827,0.7682,-0.3753,-0.1951,0.9061,-0.5133,-0.3827,0.7682,-0.5449,-0.1951,0.8155,-0.5449,-0.1951,0.8155,-0.5133,-0.3827,0.7682,-0.6533,-0.3827,0.6533,-0.5449,-0.1951,0.8155,-0.6533,-0.3827,0.6533,-0.6935,-0.1951,0.6935,-0.6935,-0.1951,0.6935,-0.6533,-0.3827,0.6533,-0.7682,-0.3827,0.5133,-0.6935,-0.1951,0.6935,-0.7682,-0.3827,0.5133,-0.8155,-0.1951,0.5449,-0.8155,-0.1951,0.5449,-0.7682,-0.3827,0.5133,-0.8536,-0.3827,0.3536,-0.8155,-0.1951,0.5449,-0.8536,-0.3827,0.3536,-0.9061,-0.1951,0.3753,-0.9061,-0.1951,0.3753,-0.8536,-0.3827,0.3536,-0.9061,-0.3827,0.1802,-0.9061,-0.1951,0.3753,-0.9061,-0.3827,0.1802,-0.9619,-0.1951,0.1913,-0.9619,-0.1951,0.1913,-0.9061,-0.3827,0.1802,-0.9239,-0.3827,0.0,-0.9619,-0.1951,0.1913,-0.9239,-0.3827,0.0,-0.9808,-0.1951,0.0,-0.9808,-0.1951,0.0,-0.9239,-0.3827,0.0,-0.9061,-0.3827,-0.1802,-0.9808,-0.1951,0.0,-0.9061,-0.3827,-0.1802,-0.9619,-0.1951,-0.1913,-0.9619,-0.1951,-0.1913,-0.9061,-0.3827,-0.1802,-0.8536,-0.3827,-0.3536,-0.9619,-0.1951,-0.1913,-0.8536,-0.3827,-0.3536,-0.9061,-0.1951,-0.3753,-0.9061,-0.1951,-0.3753,-0.8536,-0.3827,-0.3536,-0.7682,-0.3827,-0.5133,-0.9061,-0.1951,-0.3753,-0.7682,-0.3827,-0.5133,-0.8155,-0.1951,-0.5449,-0.8155,-0.1951,-0.5449,-0.7682,-0.3827,-0.5133,-0.6533,-0.3827,-0.6533,-0.8155,-0.1951,-0.5449,-0.6533,-0.3827,-0.6533,-0.6935,-0.1951,-0.6935,-0.6935,-0.1951,-0.6935,-0.6533,-0.3827,-0.6533,-0.5133,-0.3827,-0.7682,-0.6935,-0.1951,-0.6935,-0.5133,-0.3827,-0.7682,-0.5449,-0.1951,-0.8155,-0.5449,-0.1951,-0.8155,-0.5133,-0.3827,-0.7682,-0.3536,-0.3827,-0.8536,-0.5449,-0.1951,-0.8155,-0.3536,-0.3827,-0.8536,-0.3753,-0.1951,-0.9061,-0.3753,-0.1951,-0.9061,-0.3536,-0.3827,-0.8536,-0.1802,-0.3827,-0.9061,-0.3753,-0.1951,-0.9061,-0.1802,-0.3827,-0.9061,-0.1913,-0.1951,-0.9619,-0.1913,-0.1951,-0.9619,-0.1802,-0.3827,-0.9061,0.0,-0.3827,-0.9239,-0.1913,-0.1951,-0.9619,0.0,-0.3827,-0.9239,0.0,-0.1951,-0.9808,0.0,-0.1951,-0.9808,0.0,-0.3827,-0.9239,0.1802,-0.3827,-0.9061,0.0,-0.1951,-0.9808,0.1802,-0.3827,-0.9061,0.1913,-0.1951,-0.9619,0.1913,-0.1951,-0.9619,0.1802,-0.3827,-0.9061,0.3536,-0.3827,-0.8536,0.1913,-0.1951,-0.9619,0.3536,-0.3827,-0.8536,0.3753,-0.1951,-0.9061,0.3753,-0.1951,-0.9061,0.3536,-0.3827,-0.8536,0.5133,-0.3827,-0.7682,0.3753,-0.1951,-0.9061,0.5133,-0.3827,-0.7682,0.5449,-0.1951,-0.8155,0.5449,-0.1951,-0.8155,0.5133,-0.3827,-0.7682,0.6533,-0.3827,-0.6533,0.5449,-0.1951,-0.8155,0.6533,-0.3827,-0.6533,0.6935,-0.1951,-0.6935,0.6935,-0.1951,-0.6935,0.6533,-0.3827,-0.6533,0.7682,-0.3827,-0.5133,0.6935,-0.1951,-0.6935,0.7682,-0.3827,-0.5133,0.8155,-0.1951,-0.5449,0.8155,-0.1951,-0.5449,0.7682,-0.3827,-0.5133,0.8536,-0.3827,-0.3536,0.8155,-0.1951,-0.5449,0.8536,-0.3827,-0.3536,0.9061,-0.1951,-0.3753,0.9061,-0.1951,-0.3753,0.8536,-0.3827,-0.3536,0.9061,-0.3827,-0.1802,0.9061,-0.1951,-0.3753,0.9061,-0.3827,-0.1802,0.9619,-0.1951,-0.1913,0.9619,-0.1951,-0.1913,0.9061,-0.3827,-0.1802,0.9239,-0.3827,0.0,0.9619,-0.1951,-0.1913,0.9239,-0.3827,0.0,0.9808,-0.1951,0.0,0.9808,-0.1951,0.0,0.9239,-0.3827,0.0,0.9061,-0.3827,0.1802,0.9808,-0.1951,0.0,0.9061,-0.3827,0.1802,0.9619,-0.1951,0.1913,0.9619,-0.1951,0.1913,0.9061,-0.3827,0.1802,0.8536,-0.3827,0.3536,0.9619,-0.1951,0.1913,0.8536,-0.3827,0.3536,0.9061,-0.1951,0.3753,0.9061,-0.1951,0.3753,0.8536,-0.3827,0.3536,0.7682,-0.3827,0.5133,0.9061,-0.1951,0.3753,0.7682,-0.3827,0.5133,0.8155,-0.1951,0.5449,0.8155,-0.1951,0.5449,0.7682,-0.3827,0.5133,0.6533,-0.3827,0.6533,0.8155,-0.1951,0.5449,0.6533,-0.3827,0.6533,0.6935,-0.1951,0.6935,0.6935,-0.1951,0.6935,0.6533,-0.3827,0.6533,0.5133,-0.3827,0.7682,0.6935,-0.1951,0.6935,0.5133,-0.3827,0.7682,0.5449,-0.1951,0.8155,0.5449,-0.1951,0.8155,0.5133,-0.3827,0.7682,0.3536,-0.3827,0.8536,0.5449,-0.1951,0.8155,0.3536,-0.3827,0.8536,0.3753,-0.1951,0.9061,0.3753,-0.1951,0.9061,0.3536,-0.3827,0.8536,0.1802,-0.3827,0.9061,0.3753,-0.1951,0.9061,0.1802,-0.3827,0.9061,0.1913,-0.1951,0.9619,0.1913,-0.1951,0.9619,0.1802,-0.3827,0.9061,0.0,-0.3827,0.9239,0.1913,-0.1951,0.9619,0.0,-0.3827,0.9239,0.0,-0.1951,0.9808,0.0,-0.3827,0.9239,0.0,-0.5556,0.8315,-0.1622,-0.5556,0.8155,0.0,-0.3827,0.9239,-0.1622,-0.5556,0.8155,-0.1802,-0.3827,0.9061,-0.1802,-0.3827,0.9061,-0.1622,-0.5556,0.8155,-0.3182,-0.5556,0.7682,-0.1802,-0.3827,0.9061,-0.3182,-0.5556,0.7682,-0.3536,-0.3827,0.8536,-0.3536,-0.3827,0.8536,-0.3182,-0.5556,0.7682,-0.4619,-0.5556,0.6913,-0.3536,-0.3827,0.8536,-0.4619,-0.5556,0.6913,-0.5133,-0.3827,0.7682,-0.5133,-0.3827,0.7682,-0.4619,-0.5556,0.6913,-0.5879,-0.5556,0.5879,-0.5133,-0.3827,0.7682,-0.5879,-0.5556,0.5879,-0.6533,-0.3827,0.6533,-0.6533,-0.3827,0.6533,-0.5879,-0.5556,0.5879,-0.6913,-0.5556,0.4619,-0.6533,-0.3827,0.6533,-0.6913,-0.5556,0.4619,-0.7682,-0.3827,0.5133,-0.7682,-0.3827,0.5133,-0.6913,-0.5556,0.4619,-0.7682,-0.5556,0.3182,-0.7682,-0.3827,0.5133,-0.7682,-0.5556,0.3182,-0.8536,-0.3827,0.3536,-0.8536,-0.3827,0.3536,-0.7682,-0.5556,0.3182,-0.8155,-0.5556,0.1622,-0.8536,-0.3827,0.3536,-0.8155,-0.5556,0.1622,-0.9061,-0.3827,0.1802,-0.9061,-0.3827,0.1802,-0.8155,-0.5556,0.1622,-0.8315,-0.5556,0.0,-0.9061,-0.3827,0.1802,-0.8315,-0.5556,0.0,-0.9239,-0.3827,0.0,-0.9239,-0.3827,0.0,-0.8315,-0.5556,0.0,-0.8155,-0.5556,-0.1622,-0.9239,-0.3827,0.0,-0.8155,-0.5556,-0.1622,-0.9061,-0.3827,-0.1802,-0.9061,-0.3827,-0.1802,-0.8155,-0.5556,-0.1622,-0.7682,-0.5556,-0.3182,-0.9061,-0.3827,-0.1802,-0.7682,-0.5556,-0.3182,-0.8536,-0.3827,-0.3536,-0.8536,-0.3827,-0.3536,-0.7682,-0.5556,-0.3182,-0.6913,-0.5556,-0.4619,-0.8536,-0.3827,-0.3536,-0.6913,-0.5556,-0.4619,-0.7682,-0.3827,-0.5133,-0.7682,-0.3827,-0.5133,-0.6913,-0.5556,-0.4619,-0.5879,-0.5556,-0.5879,-0.7682,-0.3827,-0.5133,-0.5879,-0.5556,-0.5879,-0.6533,-0.3827,-0.6533,-0.6533,-0.3827,-0.6533,-0.5879,-0.5556,-0.5879,-0.4619,-0.5556,-0.6913,-0.6533,-0.3827,-0.6533,-0.4619,-0.5556,-0.6913,-0.5133,-0.3827,-0.7682,-0.5133,-0.3827,-0.7682,-0.4619,-0.5556,-0.6913,-0.3182,-0.5556,-0.7682,-0.5133,-0.3827,-0.7682,-0.3182,-0.5556,-0.7682,-0.3536,-0.3827,-0.8536,-0.3536,-0.3827,-0.8536,-0.3182,-0.5556,-0.7682,-0.1622,-0.5556,-0.8155,-0.3536,-0.3827,-0.8536,-0.1622,-0.5556,-0.8155,-0.1802,-0.3827,-0.9061,-0.1802,-0.3827,-0.9061,-0.1622,-0.5556,-0.8155,0.0,-0.5556,-0.8315,-0.1802,-0.3827,-0.9061,0.0,-0.5556,-0.8315,0.0,-0.3827,-0.9239,0.0,-0.3827,-0.9239,0.0,-0.5556,-0.8315,0.1622,-0.5556,-0.8155,0.0,-0.3827,-0.9239,0.1622,-0.5556,-0.8155,0.1802,-0.3827,-0.9061,0.1802,-0.3827,-0.9061,0.1622,-0.5556,-0.8155,0.3182,-0.5556,-0.7682,0.1802,-0.3827,-0.9061,0.3182,-0.5556,-0.7682,0.3536,-0.3827,-0.8536,0.3536,-0.3827,-0.8536,0.3182,-0.5556,-0.7682,0.4619,-0.5556,-0.6913,0.3536,-0.3827,-0.8536,0.4619,-0.5556,-0.6913,0.5133,-0.3827,-0.7682,0.5133,-0.3827,-0.7682,0.4619,-0.5556,-0.6913,0.5879,-0.5556,-0.5879,0.5133,-0.3827,-0.7682,0.5879,-0.5556,-0.5879,0.6533,-0.3827,-0.6533,0.6533,-0.3827,-0.6533,0.5879,-0.5556,-0.5879,0.6913,-0.5556,-0.4619,0.6533,-0.3827,-0.6533,0.6913,-0.5556,-0.4619,0.7682,-0.3827,-0.5133,0.7682,-0.3827,-0.5133,0.6913,-0.5556,-0.4619,0.7682,-0.5556,-0.3182,0.7682,-0.3827,-0.5133,0.7682,-0.5556,-0.3182,0.8536,-0.3827,-0.3536,0.8536,-0.3827,-0.3536,0.7682,-0.5556,-0.3182,0.8155,-0.5556,-0.1622,0.8536,-0.3827,-0.3536,0.8155,-0.5556,-0.1622,0.9061,-0.3827,-0.1802,0.9061,-0.3827,-0.1802,0.8155,-0.5556,-0.1622,0.8315,-0.5556,0.0,0.9061,-0.3827,-0.1802,0.8315,-0.5556,0.0,0.9239,-0.3827,0.0,0.9239,-0.3827,0.0,0.8315,-0.5556,0.0,0.8155,-0.5556,0.1622,0.9239,-0.3827,0.0,0.8155,-0.5556,0.1622,0.9061,-0.3827,0.1802,0.9061,-0.3827,0.1802,0.8155,-0.5556,0.1622,0.7682,-0.5556,0.3182,0.9061,-0.3827,0.1802,0.7682,-0.5556,0.3182,0.8536,-0.3827,0.3536,0.8536,-0.3827,0.3536,0.7682,-0.5556,0.3182,0.6913,-0.5556,0.4619,0.8536,-0.3827,0.3536,0.6913,-0.5556,0.4619,0.7682,-0.3827,0.5133,0.7682,-0.3827,0.5133,0.6913,-0.5556,0.4619,0.5879,-0.5556,0.5879,0.7682,-0.3827,0.5133,0.5879,-0.5556,0.5879,0.6533,-0.3827,0.6533,0.6533,-0.3827,0.6533,0.5879,-0.5556,0.5879,0.4619,-0.5556,0.6913,0.6533,-0.3827,0.6533,0.4619,-0.5556,0.6913,0.5133,-0.3827,0.7682,0.5133,-0.3827,0.7682,0.4619,-0.5556,0.6913,0.3182,-0.5556,0.7682,0.5133,-0.3827,0.7682,0.3182,-0.5556,0.7682,0.3536,-0.3827,0.8536,0.3536,-0.3827,0.8536,0.3182,-0.5556,0.7682,0.1622,-0.5556,0.8155,0.3536,-0.3827,0.8536,0.1622,-0.5556,0.8155,0.1802,-0.3827,0.9061,0.1802,-0.3827,0.9061,0.1622,-0.5556,0.8155,0.0,-0.5556,0.8315,0.1802,-0.3827,0.9061,0.0,-0.5556,0.8315,0.0,-0.3827,0.9239,0.0,-0.5556,0.8315,0.0,-0.7071,0.7071,-0.1379,-0.7071,0.6935,0.0,-0.5556,0.8315,-0.1379,-0.7071,0.6935,-0.1622,-0.5556,0.8155,-0.1622,-0.5556,0.8155,-0.1379,-0.7071,0.6935,-0.2706,-0.7071,0.6533,-0.1622,-0.5556,0.8155,-0.2706,-0.7071,0.6533,-0.3182,-0.5556,0.7682,-0.3182,-0.5556,0.7682,-0.2706,-0.7071,0.6533,-0.3928,-0.7071,0.5879,-0.3182,-0.5556,0.7682,-0.3928,-0.7071,0.5879,-0.4619,-0.5556,0.6913,-0.4619,-0.5556,0.6913,-0.3928,-0.7071,0.5879,-0.5,-0.7071,0.5,-0.4619,-0.5556,0.6913,-0.5,-0.7071,0.5,-0.5879,-0.5556,0.5879,-0.5879,-0.5556,0.5879,-0.5,-0.7071,0.5,-0.5879,-0.7071,0.3928,-0.5879,-0.5556,0.5879,-0.5879,-0.7071,0.3928,-0.6913,-0.5556,0.4619,-0.6913,-0.5556,0.4619,-0.5879,-0.7071,0.3928,-0.6533,-0.7071,0.2706,-0.6913,-0.5556,0.4619,-0.6533,-0.7071,0.2706,-0.7682,-0.5556,0.3182,-0.7682,-0.5556,0.3182,-0.6533,-0.7071,0.2706,-0.6935,-0.7071,0.1379,-0.7682,-0.5556,0.3182,-0.6935,-0.7071,0.1379,-0.8155,-0.5556,0.1622,-0.8155,-0.5556,0.1622,-0.6935,-0.7071,0.1379,-0.7071,-0.7071,0.0,-0.8155,-0.5556,0.1622,-0.7071,-0.7071,0.0,-0.8315,-0.5556,0.0,-0.8315,-0.5556,0.0,-0.7071,-0.7071,0.0,-0.6935,-0.7071,-0.1379,-0.8315,-0.5556,0.0,-0.6935,-0.7071,-0.1379,-0.8155,-0.5556,-0.1622,-0.8155,-0.5556,-0.1622,-0.6935,-0.7071,-0.1379,-0.6533,-0.7071,-0.2706,-0.8155,-0.5556,-0.1622,-0.6533,-0.7071,-0.2706,-0.7682,-0.5556,-0.3182,-0.7682,-0.5556,-0.3182,-0.6533,-0.7071,-0.2706,-0.5879,-0.7071,-0.3928,-0.7682,-0.5556,-0.3182,-0.5879,-0.7071,-0.3928,-0.6913,-0.5556,-0.4619,-0.6913,-0.5556,-0.4619,-0.5879,-0.7071,-0.3928,-0.5,-0.7071,-0.5,-0.6913,-0.5556,-0.4619,-0.5,-0.7071,-0.5,-0.5879,-0.5556,-0.5879,-0.5879,-0.5556,-0.5879,-0.5,-0.7071,-0.5,-0.3928,-0.7071,-0.5879,-0.5879,-0.5556,-0.5879,-0.3928,-0.7071,-0.5879,-0.4619,-0.5556,-0.6913,-0.4619,-0.5556,-0.6913,-0.3928,-0.7071,-0.5879,-0.2706,-0.7071,-0.6533,-0.4619,-0.5556,-0.6913,-0.2706,-0.7071,-0.6533,-0.3182,-0.5556,-0.7682,-0.3182,-0.5556,-0.7682,-0.2706,-0.7071,-0.6533,-0.1379,-0.7071,-0.6935,-0.3182,-0.5556,-0.7682,-0.1379,-0.7071,-0.6935,-0.1622,-0.5556,-0.8155,-0.1622,-0.5556,-0.8155,-0.1379,-0.7071,-0.6935,0.0,-0.7071,-0.7071,-0.1622,-0.5556,-0.8155,0.0,-0.7071,-0.7071,0.0,-0.5556,-0.8315,0.0,-0.5556,-0.8315,0.0,-0.7071,-0.7071,0.138,-0.7071,-0.6935,0.0,-0.5556,-0.8315,0.138,-0.7071,-0.6935,0.1622,-0.5556,-0.8155,0.1622,-0.5556,-0.8155,0.138,-0.7071,-0.6935,0.2706,-0.7071,-0.6533,0.1622,-0.5556,-0.8155,0.2706,-0.7071,-0.6533,0.3182,-0.5556,-0.7682,0.3182,-0.5556,-0.7682,0.2706,-0.7071,-0.6533,0.3928,-0.7071,-0.5879,0.3182,-0.5556,-0.7682,0.3928,-0.7071,-0.5879,0.4619,-0.5556,-0.6913,0.4619,-0.5556,-0.6913,0.3928,-0.7071,-0.5879,0.5,-0.7071,-0.5,0.4619,-0.5556,-0.6913,0.5,-0.7071,-0.5,0.5879,-0.5556,-0.5879,0.5879,-0.5556,-0.5879,0.5,-0.7071,-0.5,0.5879,-0.7071,-0.3928,0.5879,-0.5556,-0.5879,0.5879,-0.7071,-0.3928,0.6913,-0.5556,-0.4619,0.6913,-0.5556,-0.4619,0.5879,-0.7071,-0.3928,0.6533,-0.7071,-0.2706,0.6913,-0.5556,-0.4619,0.6533,-0.7071,-0.2706,0.7682,-0.5556,-0.3182,0.7682,-0.5556,-0.3182,0.6533,-0.7071,-0.2706,0.6935,-0.7071,-0.1379,0.7682,-0.5556,-0.3182,0.6935,-0.7071,-0.1379,0.8155,-0.5556,-0.1622,0.8155,-0.5556,-0.1622,0.6935,-0.7071,-0.1379,0.7071,-0.7071,0.0,0.8155,-0.5556,-0.1622,0.7071,-0.7071,0.0,0.8315,-0.5556,0.0,0.8315,-0.5556,0.0,0.7071,-0.7071,0.0,0.6935,-0.7071,0.138,0.8315,-0.5556,0.0,0.6935,-0.7071,0.138,0.8155,-0.5556,0.1622,0.8155,-0.5556,0.1622,0.6935,-0.7071,0.138,0.6533,-0.7071,0.2706,0.8155,-0.5556,0.1622,0.6533,-0.7071,0.2706,0.7682,-0.5556,0.3182,0.7682,-0.5556,0.3182,0.6533,-0.7071,0.2706,0.5879,-0.7071,0.3928,0.7682,-0.5556,0.3182,0.5879,-0.7071,0.3928,0.6913,-0.5556,0.4619,0.6913,-0.5556,0.4619,0.5879,-0.7071,0.3928,0.5,-0.7071,0.5,0.6913,-0.5556,0.4619,0.5,-0.7071,0.5,0.5879,-0.5556,0.5879,0.5879,-0.5556,0.5879,0.5,-0.7071,0.5,0.3928,-0.7071,0.5879,0.5879,-0.5556,0.5879,0.3928,-0.7071,0.5879,0.4619,-0.5556,0.6913,0.4619,-0.5556,0.6913,0.3928,-0.7071,0.5879,0.2706,-0.7071,0.6533,0.4619,-0.5556,0.6913,0.2706,-0.7071,0.6533,0.3182,-0.5556,0.7682,0.3182,-0.5556,0.7682,0.2706,-0.7071,0.6533,0.1379,-0.7071,0.6935,0.3182,-0.5556,0.7682,0.1379,-0.7071,0.6935,0.1622,-0.5556,0.8155,0.1622,-0.5556,0.8155,0.1379,-0.7071,0.6935,0.0,-0.7071,0.7071,0.1622,-0.5556,0.8155,0.0,-0.7071,0.7071,0.0,-0.5556,0.8315,0.0,-0.7071,0.7071,0.0,-0.8315,0.5556,-0.1084,-0.8315,0.5449,0.0,-0.7071,0.7071,-0.1084,-0.8315,0.5449,-0.1379,-0.7071,0.6935,-0.1379,-0.7071,0.6935,-0.1084,-0.8315,0.5449,-0.2126,-0.8315,0.5133,-0.1379,-0.7071,0.6935,-0.2126,-0.8315,0.5133,-0.2706,-0.7071,0.6533,-0.2706,-0.7071,0.6533,-0.2126,-0.8315,0.5133,-0.3087,-0.8315,0.4619,-0.2706,-0.7071,0.6533,-0.3087,-0.8315,0.4619,-0.3928,-0.7071,0.5879,-0.3928,-0.7071,0.5879,-0.3087,-0.8315,0.4619,-0.3928,-0.8315,0.3928,-0.3928,-0.7071,0.5879,-0.3928,-0.8315,0.3928,-0.5,-0.7071,0.5,-0.5,-0.7071,0.5,-0.3928,-0.8315,0.3928,-0.4619,-0.8315,0.3087,-0.5,-0.7071,0.5,-0.4619,-0.8315,0.3087,-0.5879,-0.7071,0.3928,-0.5879,-0.7071,0.3928,-0.4619,-0.8315,0.3087,-0.5133,-0.8315,0.2126,-0.5879,-0.7071,0.3928,-0.5133,-0.8315,0.2126,-0.6533,-0.7071,0.2706,-0.6533,-0.7071,0.2706,-0.5133,-0.8315,0.2126,-0.5449,-0.8315,0.1084,-0.6533,-0.7071,0.2706,-0.5449,-0.8315,0.1084,-0.6935,-0.7071,0.1379,-0.6935,-0.7071,0.1379,-0.5449,-0.8315,0.1084,-0.5556,-0.8315,0.0,-0.6935,-0.7071,0.1379,-0.5556,-0.8315,0.0,-0.7071,-0.7071,0.0,-0.7071,-0.7071,0.0,-0.5556,-0.8315,0.0,-0.5449,-0.8315,-0.1084,-0.7071,-0.7071,0.0,-0.5449,-0.8315,-0.1084,-0.6935,-0.7071,-0.1379,-0.6935,-0.7071,-0.1379,-0.5449,-0.8315,-0.1084,-0.5133,-0.8315,-0.2126,-0.6935,-0.7071,-0.1379,-0.5133,-0.8315,-0.2126,-0.6533,-0.7071,-0.2706,-0.6533,-0.7071,-0.2706,-0.5133,-0.8315,-0.2126,-0.4619,-0.8315,-0.3087,-0.6533,-0.7071,-0.2706,-0.4619,-0.8315,-0.3087,-0.5879,-0.7071,-0.3928,-0.5879,-0.7071,-0.3928,-0.4619,-0.8315,-0.3087,-0.3928,-0.8315,-0.3928,-0.5879,-0.7071,-0.3928,-0.3928,-0.8315,-0.3928,-0.5,-0.7071,-0.5,-0.5,-0.7071,-0.5,-0.3928,-0.8315,-0.3928,-0.3087,-0.8315,-0.4619,-0.5,-0.7071,-0.5,-0.3087,-0.8315,-0.4619,-0.3928,-0.7071,-0.5879,-0.3928,-0.7071,-0.5879,-0.3087,-0.8315,-0.4619,-0.2126,-0.8315,-0.5133,-0.3928,-0.7071,-0.5879,-0.2126,-0.8315,-0.5133,-0.2706,-0.7071,-0.6533,-0.2706,-0.7071,-0.6533,-0.2126,-0.8315,-0.5133,-0.1084,-0.8315,-0.5449,-0.2706,-0.7071,-0.6533,-0.1084,-0.8315,-0.5449,-0.1379,-0.7071,-0.6935,-0.1379,-0.7071,-0.6935,-0.1084,-0.8315,-0.5449,0.0,-0.8315,-0.5556,-0.1379,-0.7071,-0.6935,0.0,-0.8315,-0.5556,0.0,-0.7071,-0.7071,0.0,-0.7071,-0.7071,0.0,-0.8315,-0.5556,0.1084,-0.8315,-0.5449,0.0,-0.7071,-0.7071,0.1084,-0.8315,-0.5449,0.138,-0.7071,-0.6935,0.138,-0.7071,-0.6935,0.1084,-0.8315,-0.5449,0.2126,-0.8315,-0.5133,0.138,-0.7071,-0.6935,0.2126,-0.8315,-0.5133,0.2706,-0.7071,-0.6533,0.2706,-0.7071,-0.6533,0.2126,-0.8315,-0.5133,0.3087,-0.8315,-0.4619,0.2706,-0.7071,-0.6533,0.3087,-0.8315,-0.4619,0.3928,-0.7071,-0.5879,0.3928,-0.7071,-0.5879,0.3087,-0.8315,-0.4619,0.3928,-0.8315,-0.3928,0.3928,-0.7071,-0.5879,0.3928,-0.8315,-0.3928,0.5,-0.7071,-0.5,0.5,-0.7071,-0.5,0.3928,-0.8315,-0.3928,0.4619,-0.8315,-0.3087,0.5,-0.7071,-0.5,0.4619,-0.8315,-0.3087,0.5879,-0.7071,-0.3928,0.5879,-0.7071,-0.3928,0.4619,-0.8315,-0.3087,0.5133,-0.8315,-0.2126,0.5879,-0.7071,-0.3928,0.5133,-0.8315,-0.2126,0.6533,-0.7071,-0.2706,0.6533,-0.7071,-0.2706,0.5133,-0.8315,-0.2126,0.5449,-0.8315,-0.1084,0.6533,-0.7071,-0.2706,0.5449,-0.8315,-0.1084,0.6935,-0.7071,-0.1379,0.6935,-0.7071,-0.1379,0.5449,-0.8315,-0.1084,0.5556,-0.8315,0.0,0.6935,-0.7071,-0.1379,0.5556,-0.8315,0.0,0.7071,-0.7071,0.0,0.7071,-0.7071,0.0,0.5556,-0.8315,0.0,0.5449,-0.8315,0.1084,0.7071,-0.7071,0.0,0.5449,-0.8315,0.1084,0.6935,-0.7071,0.138,0.6935,-0.7071,0.138,0.5449,-0.8315,0.1084,0.5133,-0.8315,0.2126,0.6935,-0.7071,0.138,0.5133,-0.8315,0.2126,0.6533,-0.7071,0.2706,0.6533,-0.7071,0.2706,0.5133,-0.8315,0.2126,0.4619,-0.8315,0.3087,0.6533,-0.7071,0.2706,0.4619,-0.8315,0.3087,0.5879,-0.7071,0.3928,0.5879,-0.7071,0.3928,0.4619,-0.8315,0.3087,0.3928,-0.8315,0.3928,0.5879,-0.7071,0.3928,0.3928,-0.8315,0.3928,0.5,-0.7071,0.5,0.5,-0.7071,0.5,0.3928,-0.8315,0.3928,0.3087,-0.8315,0.4619,0.5,-0.7071,0.5,0.3087,-0.8315,0.4619,0.3928,-0.7071,0.5879,0.3928,-0.7071,0.5879,0.3087,-0.8315,0.4619,0.2126,-0.8315,0.5133,0.3928,-0.7071,0.5879,0.2126,-0.8315,0.5133,0.2706,-0.7071,0.6533,0.2706,-0.7071,0.6533,0.2126,-0.8315,0.5133,0.1084,-0.8315,0.5449,0.2706,-0.7071,0.6533,0.1084,-0.8315,0.5449,0.1379,-0.7071,0.6935,0.1379,-0.7071,0.6935,0.1084,-0.8315,0.5449,0.0,-0.8315,0.5556,0.1379,-0.7071,0.6935,0.0,-0.8315,0.5556,0.0,-0.7071,0.7071,0.0,-0.8315,0.5556,0.0,-0.9239,0.3827,-0.0747,-0.9239,0.3753,0.0,-0.8315,0.5556,-0.0747,-0.9239,0.3753,-0.1084,-0.8315,0.5449,-0.1084,-0.8315,0.5449,-0.0747,-0.9239,0.3753,-0.1464,-0.9239,0.3536,-0.1084,-0.8315,0.5449,-0.1464,-0.9239,0.3536,-0.2126,-0.8315,0.5133,-0.2126,-0.8315,0.5133,-0.1464,-0.9239,0.3536,-0.2126,-0.9239,0.3182,-0.2126,-0.8315,0.5133,-0.2126,-0.9239,0.3182,-0.3087,-0.8315,0.4619,-0.3087,-0.8315,0.4619,-0.2126,-0.9239,0.3182,-0.2706,-0.9239,0.2706,-0.3087,-0.8315,0.4619,-0.2706,-0.9239,0.2706,-0.3928,-0.8315,0.3928,-0.3928,-0.8315,0.3928,-0.2706,-0.9239,0.2706,-0.3182,-0.9239,0.2126,-0.3928,-0.8315,0.3928,-0.3182,-0.9239,0.2126,-0.4619,-0.8315,0.3087,-0.4619,-0.8315,0.3087,-0.3182,-0.9239,0.2126,-0.3536,-0.9239,0.1464,-0.4619,-0.8315,0.3087,-0.3536,-0.9239,0.1464,-0.5133,-0.8315,0.2126,-0.5133,-0.8315,0.2126,-0.3536,-0.9239,0.1464,-0.3753,-0.9239,0.0747,-0.5133,-0.8315,0.2126,-0.3753,-0.9239,0.0747,-0.5449,-0.8315,0.1084,-0.5449,-0.8315,0.1084,-0.3753,-0.9239,0.0747,-0.3827,-0.9239,0.0,-0.5449,-0.8315,0.1084,-0.3827,-0.9239,0.0,-0.5556,-0.8315,0.0,-0.5556,-0.8315,0.0,-0.3827,-0.9239,0.0,-0.3753,-0.9239,-0.0747,-0.5556,-0.8315,0.0,-0.3753,-0.9239,-0.0747,-0.5449,-0.8315,-0.1084,-0.5449,-0.8315,-0.1084,-0.3753,-0.9239,-0.0747,-0.3536,-0.9239,-0.1464,-0.5449,-0.8315,-0.1084,-0.3536,-0.9239,-0.1464,-0.5133,-0.8315,-0.2126,-0.5133,-0.8315,-0.2126,-0.3536,-0.9239,-0.1464,-0.3182,-0.9239,-0.2126,-0.5133,-0.8315,-0.2126,-0.3182,-0.9239,-0.2126,-0.4619,-0.8315,-0.3087,-0.4619,-0.8315,-0.3087,-0.3182,-0.9239,-0.2126,-0.2706,-0.9239,-0.2706,-0.4619,-0.8315,-0.3087,-0.2706,-0.9239,-0.2706,-0.3928,-0.8315,-0.3928,-0.3928,-0.8315,-0.3928,-0.2706,-0.9239,-0.2706,-0.2126,-0.9239,-0.3182,-0.3928,-0.8315,-0.3928,-0.2126,-0.9239,-0.3182,-0.3087,-0.8315,-0.4619,-0.3087,-0.8315,-0.4619,-0.2126,-0.9239,-0.3182,-0.1464,-0.9239,-0.3536,-0.3087,-0.8315,-0.4619,-0.1464,-0.9239,-0.3536,-0.2126,-0.8315,-0.5133,-0.2126,-0.8315,-0.5133,-0.1464,-0.9239,-0.3536,-0.0747,-0.9239,-0.3753,-0.2126,-0.8315,-0.5133,-0.0747,-0.9239,-0.3753,-0.1084,-0.8315,-0.5449,-0.1084,-0.8315,-0.5449,-0.0747,-0.9239,-0.3753,0.0,-0.9239,-0.3827,-0.1084,-0.8315,-0.5449,0.0,-0.9239,-0.3827,0.0,-0.8315,-0.5556,0.0,-0.8315,-0.5556,0.0,-0.9239,-0.3827,0.0747,-0.9239,-0.3753,0.0,-0.8315,-0.5556,0.0747,-0.9239,-0.3753,0.1084,-0.8315,-0.5449,0.1084,-0.8315,-0.5449,0.0747,-0.9239,-0.3753,0.1464,-0.9239,-0.3536,0.1084,-0.8315,-0.5449,0.1464,-0.9239,-0.3536,0.2126,-0.8315,-0.5133,0.2126,-0.8315,-0.5133,0.1464,-0.9239,-0.3536,0.2126,-0.9239,-0.3182,0.2126,-0.8315,-0.5133,0.2126,-0.9239,-0.3182,0.3087,-0.8315,-0.4619,0.3087,-0.8315,-0.4619,0.2126,-0.9239,-0.3182,0.2706,-0.9239,-0.2706,0.3087,-0.8315,-0.4619,0.2706,-0.9239,-0.2706,0.3928,-0.8315,-0.3928,0.3928,-0.8315,-0.3928,0.2706,-0.9239,-0.2706,0.3182,-0.9239,-0.2126,0.3928,-0.8315,-0.3928,0.3182,-0.9239,-0.2126,0.4619,-0.8315,-0.3087,0.4619,-0.8315,-0.3087,0.3182,-0.9239,-0.2126,0.3536,-0.9239,-0.1464,0.4619,-0.8315,-0.3087,0.3536,-0.9239,-0.1464,0.5133,-0.8315,-0.2126,0.5133,-0.8315,-0.2126,0.3536,-0.9239,-0.1464,0.3753,-0.9239,-0.0747,0.5133,-0.8315,-0.2126,0.3753,-0.9239,-0.0747,0.5449,-0.8315,-0.1084,0.5449,-0.8315,-0.1084,0.3753,-0.9239,-0.0747,0.3827,-0.9239,0.0,0.5449,-0.8315,-0.1084,0.3827,-0.9239,0.0,0.5556,-0.8315,0.0,0.5556,-0.8315,0.0,0.3827,-0.9239,0.0,0.3753,-0.9239,0.0747,0.5556,-0.8315,0.0,0.3753,-0.9239,0.0747,0.5449,-0.8315,0.1084,0.5449,-0.8315,0.1084,0.3753,-0.9239,0.0747,0.3536,-0.9239,0.1464,0.5449,-0.8315,0.1084,0.3536,-0.9239,0.1464,0.5133,-0.8315,0.2126,0.5133,-0.8315,0.2126,0.3536,-0.9239,0.1464,0.3182,-0.9239,0.2126,0.5133,-0.8315,0.2126,0.3182,-0.9239,0.2126,0.4619,-0.8315,0.3087,0.4619,-0.8315,0.3087,0.3182,-0.9239,0.2126,0.2706,-0.9239,0.2706,0.4619,-0.8315,0.3087,0.2706,-0.9239,0.2706,0.3928,-0.8315,0.3928,0.3928,-0.8315,0.3928,0.2706,-0.9239,0.2706,0.2126,-0.9239,0.3182,0.3928,-0.8315,0.3928,0.2126,-0.9239,0.3182,0.3087,-0.8315,0.4619,0.3087,-0.8315,0.4619,0.2126,-0.9239,0.3182,0.1464,-0.9239,0.3536,0.3087,-0.8315,0.4619,0.1464,-0.9239,0.3536,0.2126,-0.8315,0.5133,0.2126,-0.8315,0.5133,0.1464,-0.9239,0.3536,0.0747,-0.9239,0.3753,0.2126,-0.8315,0.5133,0.0747,-0.9239,0.3753,0.1084,-0.8315,0.5449,0.1084,-0.8315,0.5449,0.0747,-0.9239,0.3753,0.0,-0.9239,0.3827,0.1084,-0.8315,0.5449,0.0,-0.9239,0.3827,0.0,-0.8315,0.5556,0.0,-0.9239,0.3827,0.0,-0.9808,0.1951,-0.0381,-0.9808,0.1913,0.0,-0.9239,0.3827,-0.0381,-0.9808,0.1913,-0.0747,-0.9239,0.3753,-0.0747,-0.9239,0.3753,-0.0381,-0.9808,0.1913,-0.0747,-0.9808,0.1802,-0.0747,-0.9239,0.3753,-0.0747,-0.9808,0.1802,-0.1464,-0.9239,0.3536,-0.1464,-0.9239,0.3536,-0.0747,-0.9808,0.1802,-0.1084,-0.9808,0.1622,-0.1464,-0.9239,0.3536,-0.1084,-0.9808,0.1622,-0.2126,-0.9239,0.3182,-0.2126,-0.9239,0.3182,-0.1084,-0.9808,0.1622,-0.1379,-0.9808,0.1379,-0.2126,-0.9239,0.3182,-0.1379,-0.9808,0.1379,-0.2706,-0.9239,0.2706,-0.2706,-0.9239,0.2706,-0.1379,-0.9808,0.1379,-0.1622,-0.9808,0.1084,-0.2706,-0.9239,0.2706,-0.1622,-0.9808,0.1084,-0.3182,-0.9239,0.2126,-0.3182,-0.9239,0.2126,-0.1622,-0.9808,0.1084,-0.1802,-0.9808,0.0747,-0.3182,-0.9239,0.2126,-0.1802,-0.9808,0.0747,-0.3536,-0.9239,0.1464,-0.3536,-0.9239,0.1464,-0.1802,-0.9808,0.0747,-0.1913,-0.9808,0.0381,-0.3536,-0.9239,0.1464,-0.1913,-0.9808,0.0381,-0.3753,-0.9239,0.0747,-0.3753,-0.9239,0.0747,-0.1913,-0.9808,0.0381,-0.1951,-0.9808,0.0,-0.3753,-0.9239,0.0747,-0.1951,-0.9808,0.0,-0.3827,-0.9239,0.0,-0.3827,-0.9239,0.0,-0.1951,-0.9808,0.0,-0.1913,-0.9808,-0.0381,-0.3827,-0.9239,0.0,-0.1913,-0.9808,-0.0381,-0.3753,-0.9239,-0.0747,-0.3753,-0.9239,-0.0747,-0.1913,-0.9808,-0.0381,-0.1802,-0.9808,-0.0747,-0.3753,-0.9239,-0.0747,-0.1802,-0.9808,-0.0747,-0.3536,-0.9239,-0.1464,-0.3536,-0.9239,-0.1464,-0.1802,-0.9808,-0.0747,-0.1622,-0.9808,-0.1084,-0.3536,-0.9239,-0.1464,-0.1622,-0.9808,-0.1084,-0.3182,-0.9239,-0.2126,-0.3182,-0.9239,-0.2126,-0.1622,-0.9808,-0.1084,-0.1379,-0.9808,-0.1379,-0.3182,-0.9239,-0.2126,-0.1379,-0.9808,-0.1379,-0.2706,-0.9239,-0.2706,-0.2706,-0.9239,-0.2706,-0.1379,-0.9808,-0.1379,-0.1084,-0.9808,-0.1622,-0.2706,-0.9239,-0.2706,-0.1084,-0.9808,-0.1622,-0.2126,-0.9239,-0.3182,-0.2126,-0.9239,-0.3182,-0.1084,-0.9808,-0.1622,-0.0747,-0.9808,-0.1802,-0.2126,-0.9239,-0.3182,-0.0747,-0.9808,-0.1802,-0.1464,-0.9239,-0.3536,-0.1464,-0.9239,-0.3536,-0.0747,-0.9808,-0.1802,-0.0381,-0.9808,-0.1913,-0.1464,-0.9239,-0.3536,-0.0381,-0.9808,-0.1913,-0.0747,-0.9239,-0.3753,-0.0747,-0.9239,-0.3753,-0.0381,-0.9808,-0.1913,0.0,-0.9808,-0.1951,-0.0747,-0.9239,-0.3753,0.0,-0.9808,-0.1951,0.0,-0.9239,-0.3827,0.0,-0.9239,-0.3827,0.0,-0.9808,-0.1951,0.0381,-0.9808,-0.1913,0.0,-0.9239,-0.3827,0.0381,-0.9808,-0.1913,0.0747,-0.9239,-0.3753,0.0747,-0.9239,-0.3753,0.0381,-0.9808,-0.1913,0.0747,-0.9808,-0.1802,0.0747,-0.9239,-0.3753,0.0747,-0.9808,-0.1802,0.1464,-0.9239,-0.3536,0.1464,-0.9239,-0.3536,0.0747,-0.9808,-0.1802,0.1084,-0.9808,-0.1622,0.1464,-0.9239,-0.3536,0.1084,-0.9808,-0.1622,0.2126,-0.9239,-0.3182,0.2126,-0.9239,-0.3182,0.1084,-0.9808,-0.1622,0.1379,-0.9808,-0.1379,0.2126,-0.9239,-0.3182,0.1379,-0.9808,-0.1379,0.2706,-0.9239,-0.2706,0.2706,-0.9239,-0.2706,0.1379,-0.9808,-0.1379,0.1622,-0.9808,-0.1084,0.2706,-0.9239,-0.2706,0.1622,-0.9808,-0.1084,0.3182,-0.9239,-0.2126,0.3182,-0.9239,-0.2126,0.1622,-0.9808,-0.1084,0.1802,-0.9808,-0.0747,0.3182,-0.9239,-0.2126,0.1802,-0.9808,-0.0747,0.3536,-0.9239,-0.1464,0.3536,-0.9239,-0.1464,0.1802,-0.9808,-0.0747,0.1913,-0.9808,-0.0381,0.3536,-0.9239,-0.1464,0.1913,-0.9808,-0.0381,0.3753,-0.9239,-0.0747,0.3753,-0.9239,-0.0747,0.1913,-0.9808,-0.0381,0.1951,-0.9808,0.0,0.3753,-0.9239,-0.0747,0.1951,-0.9808,0.0,0.3827,-0.9239,0.0,0.3827,-0.9239,0.0,0.1951,-0.9808,0.0,0.1913,-0.9808,0.0381,0.3827,-0.9239,0.0,0.1913,-0.9808,0.0381,0.3753,-0.9239,0.0747,0.3753,-0.9239,0.0747,0.1913,-0.9808,0.0381,0.1802,-0.9808,0.0747,0.3753,-0.9239,0.0747,0.1802,-0.9808,0.0747,0.3536,-0.9239,0.1464,0.3536,-0.9239,0.1464,0.1802,-0.9808,0.0747,0.1622,-0.9808,0.1084,0.3536,-0.9239,0.1464,0.1622,-0.9808,0.1084,0.3182,-0.9239,0.2126,0.3182,-0.9239,0.2126,0.1622,-0.9808,0.1084,0.1379,-0.9808,0.1379,0.3182,-0.9239,0.2126,0.1379,-0.9808,0.1379,0.2706,-0.9239,0.2706,0.2706,-0.9239,0.2706,0.1379,-0.9808,0.1379,0.1084,-0.9808,0.1622,0.2706,-0.9239,0.2706,0.1084,-0.9808,0.1622,0.2126,-0.9239,0.3182,0.2126,-0.9239,0.3182,0.1084,-0.9808,0.1622,0.0747,-0.9808,0.1802,0.2126,-0.9239,0.3182,0.0747,-0.9808,0.1802,0.1464,-0.9239,0.3536,0.1464,-0.9239,0.3536,0.0747,-0.9808,0.1802,0.0381,-0.9808,0.1913,0.1464,-0.9239,0.3536,0.0381,-0.9808,0.1913,0.0747,-0.9239,0.3753,0.0747,-0.9239,0.3753,0.0381,-0.9808,0.1913,0.0,-0.9808,0.1951,0.0747,-0.9239,0.3753,0.0,-0.9808,0.1951,0.0,-0.9239,0.3827,0.0,-1.0,0.0,-0.0381,-0.9808,0.1913,0.0,-0.9808,0.1951,0.0,-1.0,0.0,-0.0747,-0.9808,0.1802,-0.0381,-0.9808,0.1913,0.0,-1.0,0.0,-0.1084,-0.9808,0.1622,-0.0747,-0.9808,0.1802,0.0,-1.0,0.0,-0.1379,-0.9808,0.1379,-0.1084,-0.9808,0.1622,0.0,-1.0,0.0,-0.1622,-0.9808,0.1084,-0.1379,-0.9808,0.1379,0.0,-1.0,0.0,-0.1802,-0.9808,0.0747,-0.1622,-0.9808,0.1084,0.0,-1.0,0.0,-0.1913,-0.9808,0.0381,-0.1802,-0.9808,0.0747,0.0,-1.0,0.0,-0.1951,-0.9808,0.0,-0.1913,-0.9808,0.0381,0.0,-1.0,0.0,-0.1913,-0.9808,-0.0381,-0.1951,-0.9808,0.0,0.0,-1.0,0.0,-0.1802,-0.9808,-0.0747,-0.1913,-0.9808,-0.0381,0.0,-1.0,0.0,-0.1622,-0.9808,-0.1084,-0.1802,-0.9808,-0.0747,0.0,-1.0,0.0,-0.1379,-0.9808,-0.1379,-0.1622,-0.9808,-0.1084,0.0,-1.0,0.0,-0.1084,-0.9808,-0.1622,-0.1379,-0.9808,-0.1379,0.0,-1.0,0.0,-0.0747,-0.9808,-0.1802,-0.1084,-0.9808,-0.1622,0.0,-1.0,0.0,-0.0381,-0.9808,-0.1913,-0.0747,-0.9808,-0.1802,0.0,-1.0,0.0,0.0,-0.9808,-0.1951,-0.0381,-0.9808,-0.1913,0.0,-1.0,0.0,0.0381,-0.9808,-0.1913,0.0,-0.9808,-0.1951,0.0,-1.0,0.0,0.0747,-0.9808,-0.1802,0.0381,-0.9808,-0.1913,0.0,-1.0,0.0,0.1084,-0.9808,-0.1622,0.0747,-0.9808,-0.1802,0.0,-1.0,0.0,0.1379,-0.9808,-0.1379,0.1084,-0.9808,-0.1622,0.0,-1.0,0.0,0.1622,-0.9808,-0.1084,0.1379,-0.9808,-0.1379,0.0,-1.0,0.0,0.1802,-0.9808,-0.0747,0.1622,-0.9808,-0.1084,0.0,-1.0,0.0,0.1913,-0.9808,-0.0381,0.1802,-0.9808,-0.0747,0.0,-1.0,0.0,0.1951,-0.9808,0.0,0.1913,-0.9808,-0.0381,0.0,-1.0,0.0,0.1913,-0.9808,0.0381,0.1951,-0.9808,0.0,0.0,-1.0,0.0,0.1802,-0.9808,0.0747,0.1913,-0.9808,0.0381,0.0,-1.0,0.0,0.1622,-0.9808,0.1084,0.1802,-0.9808,0.0747,0.0,-1.0,0.0,0.1379,-0.9808,0.1379,0.1622,-0.9808,0.1084,0.0,-1.0,0.0,0.1084,-0.9808,0.1622,0.1379,-0.9808,0.1379,0.0,-1.0,0.0,0.0747,-0.9808,0.1802,0.1084,-0.9808,0.1622,0.0,-1.0,0.0,0.0381,-0.9808,0.1913,0.0747,-0.9808,0.1802,0.0,-1.0,0.0,0.0,-0.9808,0.1951,0.0381,-0.9808,0.1913],"normals":[0.0,1.0,0.0,0.0,0.9796,0.201,-0.0392,0.9796,0.1971,0.0,1.0,0.0,-0.0392,0.9796,0.1971,-0.0769,0.9796,0.1857,0.0,1.0,0.0,-0.0769,0.9796,0.1857,-0.1117,0.9796,0.1671,0.0,1.0,0.0,-0.1117,0.9796,0.1671,-0.1421,0.9796,0.1421,0.0,1.0,0.0,-0.1421,0.9796,0.1421,-0.1671,0.9796,0.1117,0.0,1.0,0.0,-0.1671,0.9796,0.1117,-0.1857,0.9796,0.0769,0.0,1.0,0.0,-0.1857,0.9796,0.0769,-0.1971,0.9796,0.0392,0.0,1.0,0.0,-0.1971,0.9796,0.0392,-0.201,0.9796,0.0,0.0,1.0,0.0,-0.201,0.9796,0.0,-0.1971,0.9796,-0.0392,0.0,1.0,0.0,-0.1971,0.9796,-0.0392,-0.1857,0.9796,-0.0769,0.0,1.0,0.0,-0.1857,0.9796,-0.0769,-0.1671,0.9796,-0.1117,0.0,1.0,0.0,-0.1671,0.9796,-0.1117,-0.1421,0.9796,-0.1421,0.0,1.0,0.0,-0.1421,0.9796,-0.1421,-0.1117,0.9796,-0.1671,0.0,1.0,0.0,-0.1117,0.9796,-0.1671,-0.0769,0.9796,-0.1857,0.0,1.0,0.0,-0.0769,0.9796,-0.1857,-0.0392,0.9796,-0.1971,0.0,1.0,0.0,-0.0392,0.9796,-0.1971,0.0,0.9796,-0.201,0.0,1.0,0.0,0.0,0.9796,-0.201,0.0392,0.9796,-0.1971,0.0,1.0,0.0,0.0392,0.9796,-0.1971,0.0769,0.9796,-0.1857,0.0,1.0,0.0,0.0769,0.9796,-0.1857,0.1117,0.9796,-0.1671,0.0,1.0,0.0,0.1117,0.9796,-0.1671,0.1421,0.9796,-0.1421,0.0,1.0,0.0,0.1421,0.9796,-0.1421,0.1671,0.9796,-0.1117,0.0,1.0,0.0,0.1671,0.9796,-0.1117,0.1857,0.9796,-0.0769,0.0,1.0,0.0,0.1857,0.9796,-0.0769,0.1971,0.9796,-0.0392,0.0,1.0,0.0,0.1971,0.9796,-0.0392,0.201,0.9796,0.0,0.0,1.0,0.0,0.201,0.9796,0.0,0.1971,0.9796,0.0392,0.0,1.0,0.0,0.1971,0.9796,0.0392,0.1857,0.9796,0.0769,0.0,1.0,0.0,0.1857,0.9796,0.0769,0.1671,0.9796,0.1117,0.0,1.0,0.0,0.1671,0.9796,0.1117,0.1421,0.9796,0.1421,0.0,1.0,0.0,0.1421,0.9796,0.1421,0.1117,0.9796,0.1671,0.0,1.0,0.0,0.1117,0.9796,0.1671,0.0769,0.9796,0.1857,0.0,1.0,0.0,0.0769,0.9796,0.1857,0.0392,0.9796,0.1971,0.0,1.0,0.0,0.0392,0.9796,0.1971,0.0,0.9796,0.201,0.0,0.9796,0.201,0.0,0.9217,0.3879,-0.0757,0.9217,0.3804,0.0,0.9796,0.201,-0.0757,0.9217,0.3804,-0.0392,0.9796,0.1971,-0.0392,0.9796,0.1971,-0.0757,0.9217,0.3804,-0.1484,0.9217,0.3584,-0.0392,0.9796,0.1971,-0.1484,0.9217,0.3584,-0.0769,0.9796,0.1857,-0.0769,0.9796,0.1857,-0.1484,0.9217,0.3584,-0.2155,0.9217,0.3225,-0.0769,0.9796,0.1857,-0.2155,0.9217,0.3225,-0.1117,0.9796,0.1671,-0.1117,0.9796,0.1671,-0.2155,0.9217,0.3225,-0.2743,0.9217,0.2743,-0.1117,0.9796,0.1671,-0.2743,0.9217,0.2743,-0.1421,0.9796,0.1421,-0.1421,0.9796,0.1421,-0.2743,0.9217,0.2743,-0.3225,0.9217,0.2155,-0.1421,0.9796,0.1421,-0.3225,0.9217,0.2155,-0.1671,0.9796,0.1117,-0.1671,0.9796,0.1117,-0.3225,0.9217,0.2155,-0.3584,0.9217,0.1484,-0.1671,0.9796,0.1117,-0.3584,0.9217,0.1484,-0.1857,0.9796,0.0769,-0.1857,0.9796,0.0769,-0.3584,0.9217,0.1484,-0.3804,0.9217,0.0757,-0.1857,0.9796,0.0769,-0.3804,0.9217,0.0757,-0.1971,0.9796,0.0392,-0.1971,0.9796,0.0392,-0.3804,0.9217,0.0757,-0.3879,0.9217,0.0,-0.1971,0.9796,0.0392,-0.3879,0.9217,0.0,-0.201,0.9796,0.0,-0.201,0.9796,0.0,-0.3879,0.9217,0.0,-0.3804,0.9217,-0.0757,-0.201,0.9796,0.0,-0.3804,0.9217,-0.0757,-0.1971,0.9796,-0.0392,-0.1971,0.9796,-0.0392,-0.3804,0.9217,-0.0757,-0.3584,0.9217,-0.1484,-0.1971,0.9796,-0.0392,-0.3584,0.9217,-0.1484,-0.1857,0.9796,-0.0769,-0.1857,0.9796,-0.0769,-0.3584,0.9217,-0.1484,-0.3225,0.9217,-0.2155,-0.1857,0.9796,-0.0769,-0.3225,0.9217,-0.2155,-0.1671,0.9796,-0.1117,-0.1671,0.9796,-0.1117,-0.3225,0.9217,-0.2155,-0.2743,0.9217,-0.2743,-0.1671,0.9796,-0.1117,-0.2743,0.9217,-0.2743,-0.1421,0.9796,-0.1421,-0.1421,0.9796,-0.1421,-0.2743,0.9217,-0.2743,-0.2155,0.9217,-0.3225,-0.1421,0.9796,-0.1421,-0.2155,0.9217,-0.3225,-0.1117,0.9796,-0.1671,-0.1117,0.9796,-0.1671,-0.2155,0.9217,-0.3225,-0.1484,0.9217,-0.3584,-0.1117,0.9796,-0.1671,-0.1484,0.9217,-0.3584,-0.0769,0.9796,-0.1857,-0.0769,0.9796,-0.1857,-0.1484,0.9217,-0.3584,-0.0757,0.9217,-0.3804,-0.0769,0.9796,-0.1857,-0.0757,0.9217,-0.3804,-0.0392,0.9796,-0.1971,-0.0392,0.9796,-0.1971,-0.0757,0.9217,-0.3804,0.0,0.9217,-0.3879,-0.0392,0.9796,-0.1971,0.0,0.9217,-0.3879,0.0,0.9796,-0.201,0.0,0.9796,-0.201,0.0,0.9217,-0.3879,0.0757,0.9217,-0.3804,0.0,0.9796,-0.201,0.0757,0.9217,-0.3804,0.0392,0.9796,-0.1971,0.0392,0.9796,-0.1971,0.0757,0.9217,-0.3804,0.1484,0.9217,-0.3584,0.0392,0.9796,-0.1971,0.1484,0.9217,-0.3584,0.0769,0.9796,-0.1857,0.0769,0.9796,-0.1857,0.1484,0.9217,-0.3584,0.2155,0.9217,-0.3225,0.0769,0.9796,-0.1857,0.2155,0.9217,-0.3225,0.1117,0.9796,-0.1671,0.1117,0.9796,-0.1671,0.2155,0.9217,-0.3225,0.2743,0.9217,-0.2743,0.1117,0.9796,-0.1671,0.2743,0.9217,-0.2743,0.1421,0.9796,-0.1421,0.1421,0.9796,-0.1421,0.2743,0.9217,-0.2743,0.3225,0.9217,-0.2155,0.1421,0.9796,-0.1421,0.3225,0.9217,-0.2155,0.1671,0.9796,-0.1117,0.1671,0.9796,-0.1117,0.3225,0.9217,-0.2155,0.3584,0.9217,-0.1484,0.1671,0.9796,-0.1117,0.3584,0.9217,-0.1484,0.1857,0.9796,-0.0769,0.1857,0.9796,-0.0769,0.3584,0.9217,-0.1484,0.3804,0.9217,-0.0757,0.1857,0.9796,-0.0769,0.3804,0.9217,-0.0757,0.1971,0.9796,-0.0392,0.1971,0.9796,-0.0392,0.3804,0.9217,-0.0757,0.3879,0.9217,0.0,0.1971,0.9796,-0.0392,0.3879,0.9217,0.0,0.201,0.9796,0.0,0.201,0.9796,0.0,0.3879,0.9217,0.0,0.3804,0.9217,0.0757,0.201,0.9796,0.0,0.3804,0.9217,0.0757,0.1971,0.9796,0.0392,0.1971,0.9796,0.0392,0.3804,0.9217,0.0757,0.3584,0.9217,0.1484,0.1971,0.9796,0.0392,0.3584,0.9217,0.1484,0.1857,0.9796,0.0769,0.1857,0.9796,0.0769,0.3584,0.9217,0.1484,0.3225,0.9217,0.2155,0.1857,0.9796,0.0769,0.3225,0.9217,0.2155,0.1671,0.9796,0.1117,0.1671,0.9796,0.1117,0.3225,0.9217,0.2155,0.2743,0.9217,0.2743,0.1671,0.9796,0.1117,0.2743,0.9217,0.2743,0.1421,0.9796,0.1421,0.1421,0.9796,0.1421,0.2743,0.9217,0.2743,0.2155,0.9217,0.3225,0.1421,0.9796,0.1421,0.2155,0.9217,0.3225,0.1117,0.9796,0.1671,0.1117,0.9796,0.1671,0.2155,0.9217,0.3225,0.1484,0.9217,0.3584,0.1117,0.9796,0.1671,0.1484,0.9217,0.3584,0.0769,0.9796,0.1857,0.0769,0.9796,0.1857,0.1484,0.9217,0.3584,0.0757,0.9217,0.3804,0.0769,0.9796,0.1857,0.0757,0.9217,0.3804,0.0392,0.9796,0.1971,0.0392,0.9796,0.1971,0.0757,0.9217,0.3804,0.0,0.9217,0.3879,0.0392,0.9796,0.1971,0.0,0.9217,0.3879,0.0,0.9796,0.201,0.0,0.9217,0.3879,0.0,0.8286,0.5598,-0.1092,0.8286,0.549,0.0,0.9217,0.3879,-0.1092,0.8286,0.549,-0.0757,0.9217,0.3804,-0.0757,0.9217,0.3804,-0.1092,0.8286,0.549,-0.2142,0.8286,0.5172,-0.0757,0.9217,0.3804,-0.2142,0.8286,0.5172,-0.1484,0.9217,0.3584,-0.1484,0.9217,0.3584,-0.2142,0.8286,0.5172,-0.311,0.8286,0.4654,-0.1484,0.9217,0.3584,-0.311,0.8286,0.4654,-0.2155,0.9217,0.3225,-0.2155,0.9217,0.3225,-0.311,0.8286,0.4654,-0.3958,0.8286,0.3958,-0.2155,0.9217,0.3225,-0.3958,0.8286,0.3958,-0.2743,0.9217,0.2743,-0.2743,0.9217,0.2743,-0.3958,0.8286,0.3958,-0.4654,0.8286,0.311,-0.2743,0.9217,0.2743,-0.4654,0.8286,0.311,-0.3225,0.9217,0.2155,-0.3225,0.9217,0.2155,-0.4654,0.8286,0.311,-0.5172,0.8286,0.2142,-0.3225,0.9217,0.2155,-0.5172,0.8286,0.2142,-0.3584,0.9217,0.1484,-0.3584,0.9217,0.1484,-0.5172,0.8286,0.2142,-0.549,0.8286,0.1092,-0.3584,0.9217,0.1484,-0.549,0.8286,0.1092,-0.3804,0.9217,0.0757,-0.3804,0.9217,0.0757,-0.549,0.8286,0.1092,-0.5598,0.8286,0.0,-0.3804,0.9217,0.0757,-0.5598,0.8286,0.0,-0.3879,0.9217,0.0,-0.3879,0.9217,0.0,-0.5598,0.8286,0.0,-0.549,0.8286,-0.1092,-0.3879,0.9217,0.0,-0.549,0.8286,-0.1092,-0.3804,0.9217,-0.0757,-0.3804,0.9217,-0.0757,-0.549,0.8286,-0.1092,-0.5172,0.8286,-0.2142,-0.3804,0.9217,-0.0757,-0.5172,0.8286,-0.2142,-0.3584,0.9217,-0.1484,-0.3584,0.9217,-0.1484,-0.5172,0.8286,-0.2142,-0.4654,0.8286,-0.311,-0.3584,0.9217,-0.1484,-0.4654,0.8286,-0.311,-0.3225,0.9217,-0.2155,-0.3225,0.9217,-0.2155,-0.4654,0.8286,-0.311,-0.3958,0.8286,-0.3958,-0.3225,0.9217,-0.2155,-0.3958,0.8286,-0.3958,-0.2743,0.9217,-0.2743,-0.2743,0.9217,-0.2743,-0.3958,0.8286,-0.3958,-0.311,0.8286,-0.4654,-0.2743,0.9217,-0.2743,-0.311,0.8286,-0.4654,-0.2155,0.9217,-0.3225,-0.2155,0.9217,-0.3225,-0.311,0.8286,-0.4654,-0.2142,0.8286,-0.5172,-0.2155,0.9217,-0.3225,-0.2142,0.8286,-0.5172,-0.1484,0.9217,-0.3584,-0.1484,0.9217,-0.3584,-0.2142,0.8286,-0.5172,-0.1092,0.8286,-0.549,-0.1484,0.9217,-0.3584,-0.1092,0.8286,-0.549,-0.0757,0.9217,-0.3804,-0.0757,0.9217,-0.3804,-0.1092,0.8286,-0.549,0.0,0.8286,-0.5598,-0.0757,0.9217,-0.3804,0.0,0.8286,-0.5598,0.0,0.9217,-0.3879,0.0,0.9217,-0.3879,0.0,0.8286,-0.5598,0.1092,0.8286,-0.549,0.0,0.9217,-0.3879,0.1092,0.8286,-0.549,0.0757,0.9217,-0.3804,0.0757,0.9217,-0.3804,0.1092,0.8286,-0.549,0.2142,0.8286,-0.5172,0.0757,0.9217,-0.3804,0.2142,0.8286,-0.5172,0.1484,0.9217,-0.3584,0.1484,0.9217,-0.3584,0.2142,0.8286,-0.5172,0.311,0.8286,-0.4654,0.1484,0.9217,-0.3584,0.311,0.8286,-0.4654,0.2155,0.9217,-0.3225,0.2155,0.9217,-0.3225,0.311,0.8286,-0.4654,0.3958,0.8286,-0.3958,0.2155,0.9217,-0.3225,0.3958,0.8286,-0.3958,0.2743,0.9217,-0.2743,0.2743,0.9217,-0.2743,0.3958,0.8286,-0.3958,0.4654,0.8286,-0.311,0.2743,0.9217,-0.2743,0.4654,0.8286,-0.311,0.3225,0.9217,-0.2155,0.3225,0.9217,-0.2155,0.4654,0.8286,-0.311,0.5172,0.8286,-0.2142,0.3225,0.9217,-0.2155,0.5172,0.8286,-0.2142,0.3584,0.9217,-0.1484,0.3584,0.9217,-0.1484,0.5172,0.8286,-0.2142,0.549,0.8286,-0.1092,0.3584,0.9217,-0.1484,0.549,0.8286,-0.1092,0.3804,0.9217,-0.0757,0.3804,0.9217,-0.0757,0.549,0.8286,-0.1092,0.5598,0.8286,0.0,0.3804,0.9217,-0.0757,0.5598,0.8286,0.0,0.3879,0.9217,0.0,0.3879,0.9217,0.0,0.5598,0.8286,0.0,0.549,0.8286,0.1092,0.3879,0.9217,0.0,0.549,0.8286,0.1092,0.3804,0.9217,0.0757,0.3804,0.9217,0.0757,0.549,0.8286,0.1092,0.5172,0.8286,0.2142,0.3804,0.9217,0.0757,0.5172,0.8286,0.2142,0.3584,0.9217,0.1484,0.3584,0.9217,0.1484,0.5172,0.8286,0.2142,0.4654,0.8286,0.311,0.3584,0.9217,0.1484,0.4654,0.8286,0.311,0.3225,0.9217,0.2155,0.3225,0.9217,0.2155,0.4654,0.8286,0.311,0.3958,0.8286,0.3958,0.3225,0.9217,0.2155,0.3958,0.8286,0.3958,0.2743,0.9217,0.2743,0.2743,0.9217,0.2743,0.3958,0.8286,0.3958,0.311,0.8286,0.4654,0.2743,0.9217,0.2743,0.311,0.8286,0.4654,0.2155,0.9217,0.3225,0.2155,0.9217,0.3225,0.311,0.8286,0.4654,0.2142,0.8286,0.5172,0.2155,0.9217,0.3225,0.2142,0.8286,0.5172,0.1484,0.9217,0.3584,0.1484,0.9217,0.3584,0.2142,0.8286,0.5172,0.1092,0.8286,0.549,0.1484,0.9217,0.3584,0.1092,0.8286,0.549,0.0757,0.9217,0.3804,0.0757,0.9217,0.3804,0.1092,0.8286,0.549,0.0,0.8286,0.5598,0.0757,0.9217,0.3804,0.0,0.8286,0.5598,0.0,0.9217,0.3879,0.0,0.8286,0.5598,0.0,0.7041,0.7101,-0.1385,0.7041,0.6965,0.0,0.8286,0.5598,-0.1385,0.7041,0.6965,-0.1092,0.8286,0.549,-0.1092,0.8286,0.549,-0.1385,0.7041,0.6965,-0.2718,0.7041,0.6561,-0.1092,0.8286,0.549,-0.2718,0.7041,0.6561,-0.2142,0.8286,0.5172,-0.2142,0.8286,0.5172,-0.2718,0.7041,0.6561,-0.3945,0.7041,0.5905,-0.2142,0.8286,0.5172,-0.3945,0.7041,0.5905,-0.311,0.8286,0.4654,-0.311,0.8286,0.4654,-0.3945,0.7041,0.5905,-0.5021,0.7041,0.5021,-0.311,0.8286,0.4654,-0.5021,0.7041,0.5021,-0.3958,0.8286,0.3958,-0.3958,0.8286,0.3958,-0.5021,0.7041,0.5021,-0.5905,0.7041,0.3945,-0.3958,0.8286,0.3958,-0.5905,0.7041,0.3945,-0.4654,0.8286,0.311,-0.4654,0.8286,0.311,-0.5905,0.7041,0.3945,-0.6561,0.7041,0.2718,-0.4654,0.8286,0.311,-0.6561,0.7041,0.2718,-0.5172,0.8286,0.2142,-0.5172,0.8286,0.2142,-0.6561,0.7041,0.2718,-0.6965,0.7041,0.1385,-0.5172,0.8286,0.2142,-0.6965,0.7041,0.1385,-0.549,0.8286,0.1092,-0.549,0.8286,0.1092,-0.6965,0.7041,0.1385,-0.7101,0.7041,0.0,-0.549,0.8286,0.1092,-0.7101,0.7041,0.0,-0.5598,0.8286,0.0,-0.5598,0.8286,0.0,-0.7101,0.7041,0.0,-0.6965,0.7041,-0.1385,-0.5598,0.8286,0.0,-0.6965,0.7041,-0.1385,-0.549,0.8286,-0.1092,-0.549,0.8286,-0.1092,-0.6965,0.7041,-0.1385,-0.6561,0.7041,-0.2718,-0.549,0.8286,-0.1092,-0.6561,0.7041,-0.2718,-0.5172,0.8286,-0.2142,-0.5172,0.8286,-0.2142,-0.6561,0.7041,-0.2718,-0.5905,0.7041,-0.3945,-0.5172,0.8286,-0.2142,-0.5905,0.7041,-0.3945,-0.4654,0.8286,-0.311,-0.4654,0.8286,-0.311,-0.5905,0.7041,-0.3945,-0.5021,0.7041,-0.5021,-0.4654,0.8286,-0.311,-0.5021,0.7041,-0.5021,-0.3958,0.8286,-0.3958,-0.3958,0.8286,-0.3958,-0.5021,0.7041,-0.5021,-0.3945,0.7041,-0.5905,-0.3958,0.8286,-0.3958,-0.3945,0.7041,-0.5905,-0.311,0.8286,-0.4654,-0.311,0.8286,-0.4654,-0.3945,0.7041,-0.5905,-0.2718,0.7041,-0.6561,-0.311,0.8286,-0.4654,-0.2718,0.7041,-0.6561,-0.2142,0.8286,-0.5172,-0.2142,0.8286,-0.5172,-0.2718,0.7041,-0.6561,-0.1385,0.7041,-0.6965,-0.2142,0.8286,-0.5172,-0.1385,0.7041,-0.6965,-0.1092,0.8286,-0.549,-0.1092,0.8286,-0.549,-0.1385,0.7041,-0.6965,0.0,0.7041,-0.7101,-0.1092,0.8286,-0.549,0.0,0.7041,-0.7101,0.0,0.8286,-0.5598,0.0,0.8286,-0.5598,0.0,0.7041,-0.7101,0.1385,0.7041,-0.6965,0.0,0.8286,-0.5598,0.1385,0.7041,-0.6965,0.1092,0.8286,-0.549,0.1092,0.8286,-0.549,0.1385,0.7041,-0.6965,0.2718,0.7041,-0.6561,0.1092,0.8286,-0.549,0.2718,0.7041,-0.6561,0.2142,0.8286,-0.5172,0.2142,0.8286,-0.5172,0.2718,0.7041,-0.6561,0.3945,0.7041,-0.5905,0.2142,0.8286,-0.5172,0.3945,0.7041,-0.5905,0.311,0.8286,-0.4654,0.311,0.8286,-0.4654,0.3945,0.7041,-0.5905,0.5021,0.7041,-0.5021,0.311,0.8286,-0.4654,0.5021,0.7041,-0.5021,0.3958,0.8286,-0.3958,0.3958,0.8286,-0.3958,0.5021,0.7041,-0.5021,0.5905,0.7041,-0.3945,0.3958,0.8286,-0.3958,0.5905,0.7041,-0.3945,0.4654,0.8286,-0.311,0.4654,0.8286,-0.311,0.5905,0.7041,-0.3945,0.6561,0.7041,-0.2718,0.4654,0.8286,-0.311,0.6561,0.7041,-0.2718,0.5172,0.8286,-0.2142,0.5172,0.8286,-0.2142,0.6561,0.7041,-0.2718,0.6965,0.7041,-0.1385,0.5172,0.8286,-0.2142,0.6965,0.7041,-0.1385,0.549,0.8286,-0.1092,0.549,0.8286,-0.1092,0.6965,0.7041,-0.1385,0.7101,0.7041,0.0,0.549,0.8286,-0.1092,0.7101,0.7041,0.0,0.5598,0.8286,0.0,0.5598,0.8286,0.0,0.7101,0.7041,0.0,0.6965,0.7041,0.1385,0.5598,0.8286,0.0,0.6965,0.7041,0.1385,0.549,0.8286,0.1092,0.549,0.8286,0.1092,0.6965,0.7041,0.1385,0.6561,0.7041,0.2718,0.549,0.8286,0.1092,0.6561,0.7041,0.2718,0.5172,0.8286,0.2142,0.5172,0.8286,0.2142,0.6561,0.7041,0.2718,0.5905,0.7041,0.3945,0.5172,0.8286,0.2142,0.5905,0.7041,0.3945,0.4654,0.8286,0.311,0.4654,0.8286,0.311,0.5905,0.7041,0.3945,0.5021,0.7041,0.5021,0.4654,0.8286,0.311,0.5021,0.7041,0.5021,0.3958,0.8286,0.3958,0.3958,0.8286,0.3958,0.5021,0.7041,0.5021,0.3945,0.7041,0.5905,0.3958,0.8286,0.3958,0.3945,0.7041,0.5905,0.311,0.8286,0.4654,0.311,0.8286,0.4654,0.3945,0.7041,0.5905,0.2718,0.7041,0.6561,0.311,0.8286,0.4654,0.2718,0.7041,0.6561,0.2142,0.8286,0.5172,0.2142,0.8286,0.5172,0.2718,0.7041,0.6561,0.1385,0.7041,0.6965,0.2142,0.8286,0.5172,0.1385,0.7041,0.6965,0.1092,0.8286,0.549,0.1092,0.8286,0.549,0.1385,0.7041,0.6965,0.0,0.7041,0.7101,0.1092,0.8286,0.549,0.0,0.7041,0.7101,0.0,0.8286,0.5598,0.0,0.7041,0.7101,0.0,0.5528,0.8333,-0.1626,0.5528,0.8173,0.0,0.7041,0.7101,-0.1626,0.5528,0.8173,-0.1385,0.7041,0.6965,-0.1385,0.7041,0.6965,-0.1626,0.5528,0.8173,-0.3189,0.5528,0.7699,-0.1385,0.7041,0.6965,-0.3189,0.5528,0.7699,-0.2718,0.7041,0.6561,-0.2718,0.7041,0.6561,-0.3189,0.5528,0.7699,-0.463,0.5528,0.6929,-0.2718,0.7041,0.6561,-0.463,0.5528,0.6929,-0.3945,0.7041,0.5905,-0.3945,0.7041,0.5905,-0.463,0.5528,0.6929,-0.5893,0.5528,0.5893,-0.3945,0.7041,0.5905,-0.5893,0.5528,0.5893,-0.5021,0.7041,0.5021,-0.5021,0.7041,0.5021,-0.5893,0.5528,0.5893,-0.6929,0.5528,0.463,-0.5021,0.7041,0.5021,-0.6929,0.5528,0.463,-0.5905,0.7041,0.3945,-0.5905,0.7041,0.3945,-0.6929,0.5528,0.463,-0.7699,0.5528,0.3189,-0.5905,0.7041,0.3945,-0.7699,0.5528,0.3189,-0.6561,0.7041,0.2718,-0.6561,0.7041,0.2718,-0.7699,0.5528,0.3189,-0.8173,0.5528,0.1626,-0.6561,0.7041,0.2718,-0.8173,0.5528,0.1626,-0.6965,0.7041,0.1385,-0.6965,0.7041,0.1385,-0.8173,0.5528,0.1626,-0.8333,0.5528,0.0,-0.6965,0.7041,0.1385,-0.8333,0.5528,0.0,-0.7101,0.7041,0.0,-0.7101,0.7041,0.0,-0.8333,0.5528,0.0,-0.8173,0.5528,-0.1626,-0.7101,0.7041,0.0,-0.8173,0.5528,-0.1626,-0.6965,0.7041,-0.1385,-0.6965,0.7041,-0.1385,-0.8173,0.5528,-0.1626,-0.7699,0.5528,-0.3189,-0.6965,0.7041,-0.1385,-0.7699,0.5528,-0.3189,-0.6561,0.7041,-0.2718,-0.6561,0.7041,-0.2718,-0.7699,0.5528,-0.3189,-0.6929,0.5528,-0.463,-0.6561,0.7041,-0.2718,-0.6929,0.5528,-0.463,-0.5905,0.7041,-0.3945,-0.5905,0.7041,-0.3945,-0.6929,0.5528,-0.463,-0.5893,0.5528,-0.5893,-0.5905,0.7041,-0.3945,-0.5893,0.5528,-0.5893,-0.5021,0.7041,-0.5021,-0.5021,0.7041,-0.5021,-0.5893,0.5528,-0.5893,-0.463,0.5528,-0.6929,-0.5021,0.7041,-0.5021,-0.463,0.5528,-0.6929,-0.3945,0.7041,-0.5905,-0.3945,0.7041,-0.5905,-0.463,0.5528,-0.6929,-0.3189,0.5528,-0.7699,-0.3945,0.7041,-0.5905,-0.3189,0.5528,-0.7699,-0.2718,0.7041,-0.6561,-0.2718,0.7041,-0.6561,-0.3189,0.5528,-0.7699,-0.1626,0.5528,-0.8173,-0.2718,0.7041,-0.6561,-0.1626,0.5528,-0.8173,-0.1385,0.7041,-0.6965,-0.1385,0.7041,-0.6965,-0.1626,0.5528,-0.8173,0.0,0.5528,-0.8333,-0.1385,0.7041,-0.6965,0.0,0.5528,-0.8333,0.0,0.7041,-0.7101,0.0,0.7041,-0.7101,0.0,0.5528,-0.8333,0.1626,0.5528,-0.8173,0.0,0.7041,-0.7101,0.1626,0.5528,-0.8173,0.1385,0.7041,-0.6965,0.1385,0.7041,-0.6965,0.1626,0.5528,-0.8173,0.3189,0.5528,-0.7699,0.1385,0.7041,-0.6965,0.3189,0.5528,-0.7699,0.2718,0.7041,-0.6561,0.2718,0.7041,-0.6561,0.3189,0.5528,-0.7699,0.463,0.5528,-0.6929,0.2718,0.7041,-0.6561,0.463,0.5528,-0.6929,0.3945,0.7041,-0.5905,0.3945,0.7041,-0.5905,0.463,0.5528,-0.6929,0.5893,0.5528,-0.5893,0.3945,0.7041,-0.5905,0.5893,0.5528,-0.5893,0.5021,0.7041,-0.5021,0.5021,0.7041,-0.5021,0.5893,0.5528,-0.5893,0.6929,0.5528,-0.463,0.5021,0.7041,-0.5021,0.6929,0.5528,-0.463,0.5905,0.7041,-0.3945,0.5905,0.7041,-0.3945,0.6929,0.5528,-0.463,0.7699,0.5528,-0.3189,0.5905,0.7041,-0.3945,0.7699,0.5528,-0.3189,0.6561,0.7041,-0.2718,0.6561,0.7041,-0.2718,0.7699,0.5528,-0.3189,0.8173,0.5528,-0.1626,0.6561,0.7041,-0.2718,0.8173,0.5528,-0.1626,0.6965,0.7041,-0.1385,0.6965,0.7041,-0.1385,0.8173,0.5528,-0.1626,0.8333,0.5528,0.0,0.6965,0.7041,-0.1385,0.8333,0.5528,0.0,0.7101,0.7041,0.0,0.7101,0.7041,0.0,0.8333,0.5528,0.0,0.8173,0.5528,0.1626,0.7101,0.7041,0.0,0.8173,0.5528,0.1626,0.6965,0.7041,0.1385,0.6965,0.7041,0.1385,0.8173,0.5528,0.1626,0.7699,0.5528,0.3189,0.6965,0.7041,0.1385,0.7699,0.5528,0.3189,0.6561,0.7041,0.2718,0.6561,0.7041,0.2718,0.7699,0.5528,0.3189,0.6929,0.5528,0.463,0.6561,0.7041,0.2718,0.6929,0.5528,0.463,0.5905,0.7041,0.3945,0.5905,0.7041,0.3945,0.6929,0.5528,0.463,0.5893,0.5528,0.5893,0.5905,0.7041,0.3945,0.5893,0.5528,0.5893,0.5021,0.7041,0.5021,0.5021,0.7041,0.5021,0.5893,0.5528,0.5893,0.463,0.5528,0.6929,0.5021,0.7041,0.5021,0.463,0.5528,0.6929,0.3945,0.7041,0.5905,0.3945,0.7041,0.5905,0.463,0.5528,0.6929,0.3189,0.5528,0.7699,0.3945,0.7041,0.5905,0.3189,0.5528,0.7699,0.2718,0.7041,0.6561,0.2718,0.7041,0.6561,0.3189,0.5528,0.7699,0.1626,0.5528,0.8173,0.2718,0.7041,0.6561,0.1626,0.5528,0.8173,0.1385,0.7041,0.6965,0.1385,0.7041,0.6965,0.1626,0.5528,0.8173,0.0,0.5528,0.8333,0.1385,0.7041,0.6965,0.0,0.5528,0.8333,0.0,0.7041,0.7101,0.0,0.5528,0.8333,0.0,0.3805,0.9248,-0.1804,0.3805,0.907,0.0,0.5528,0.8333,-0.1804,0.3805,0.907,-0.1626,0.5528,0.8173,-0.1626,0.5528,0.8173,-0.1804,0.3805,0.907,-0.3539,0.3805,0.8544,-0.1626,0.5528,0.8173,-0.3539,0.3805,0.8544,-0.3189,0.5528,0.7699,-0.3189,0.5528,0.7699,-0.3539,0.3805,0.8544,-0.5138,0.3805,0.7689,-0.3189,0.5528,0.7699,-0.5138,0.3805,0.7689,-0.463,0.5528,0.6929,-0.463,0.5528,0.6929,-0.5138,0.3805,0.7689,-0.6539,0.3805,0.6539,-0.463,0.5528,0.6929,-0.6539,0.3805,0.6539,-0.5893,0.5528,0.5893,-0.5893,0.5528,0.5893,-0.6539,0.3805,0.6539,-0.7689,0.3805,0.5138,-0.5893,0.5528,0.5893,-0.7689,0.3805,0.5138,-0.6929,0.5528,0.463,-0.6929,0.5528,0.463,-0.7689,0.3805,0.5138,-0.8544,0.3805,0.3539,-0.6929,0.5528,0.463,-0.8544,0.3805,0.3539,-0.7699,0.5528,0.3189,-0.7699,0.5528,0.3189,-0.8544,0.3805,0.3539,-0.907,0.3805,0.1804,-0.7699,0.5528,0.3189,-0.907,0.3805,0.1804,-0.8173,0.5528,0.1626,-0.8173,0.5528,0.1626,-0.907,0.3805,0.1804,-0.9248,0.3805,0.0,-0.8173,0.5528,0.1626,-0.9248,0.3805,0.0,-0.8333,0.5528,0.0,-0.8333,0.5528,0.0,-0.9248,0.3805,0.0,-0.907,0.3805,-0.1804,-0.8333,0.5528,0.0,-0.907,0.3805,-0.1804,-0.8173,0.5528,-0.1626,-0.8173,0.5528,-0.1626,-0.907,0.3805,-0.1804,-0.8544,0.3805,-0.3539,-0.8173,0.5528,-0.1626,-0.8544,0.3805,-0.3539,-0.7699,0.5528,-0.3189,-0.7699,0.5528,-0.3189,-0.8544,0.3805,-0.3539,-0.7689,0.3805,-0.5138,-0.7699,0.5528,-0.3189,-0.7689,0.3805,-0.5138,-0.6929,0.5528,-0.463,-0.6929,0.5528,-0.463,-0.7689,0.3805,-0.5138,-0.6539,0.3805,-0.6539,-0.6929,0.5528,-0.463,-0.6539,0.3805,-0.6539,-0.5893,0.5528,-0.5893,-0.5893,0.5528,-0.5893,-0.6539,0.3805,-0.6539,-0.5138,0.3805,-0.7689,-0.5893,0.5528,-0.5893,-0.5138,0.3805,-0.7689,-0.463,0.5528,-0.6929,-0.463,0.5528,-0.6929,-0.5138,0.3805,-0.7689,-0.3539,0.3805,-0.8544,-0.463,0.5528,-0.6929,-0.3539,0.3805,-0.8544,-0.3189,0.5528,-0.7699,-0.3189,0.5528,-0.7699,-0.3539,0.3805,-0.8544,-0.1804,0.3805,-0.907,-0.3189,0.5528,-0.7699,-0.1804,0.3805,-0.907,-0.1626,0.5528,-0.8173,-0.1626,0.5528,-0.8173,-0.1804,0.3805,-0.907,0.0,0.3805,-0.9248,-0.1626,0.5528,-0.8173,0.0,0.3805,-0.9248,0.0,0.5528,-0.8333,0.0,0.5528,-0.8333,0.0,0.3805,-0.9248,0.1804,0.3805,-0.907,0.0,0.5528,-0.8333,0.1804,0.3805,-0.907,0.1626,0.5528,-0.8173,0.1626,0.5528,-0.8173,0.1804,0.3805,-0.907,0.3539,0.3805,-0.8544,0.1626,0.5528,-0.8173,0.3539,0.3805,-0.8544,0.3189,0.5528,-0.7699,0.3189,0.5528,-0.7699,0.3539,0.3805,-0.8544,0.5138,0.3805,-0.7689,0.3189,0.5528,-0.7699,0.5138,0.3805,-0.7689,0.463,0.5528,-0.6929,0.463,0.5528,-0.6929,0.5138,0.3805,-0.7689,0.6539,0.3805,-0.6539,0.463,0.5528,-0.6929,0.6539,0.3805,-0.6539,0.5893,0.5528,-0.5893,0.5893,0.5528,-0.5893,0.6539,0.3805,-0.6539,0.7689,0.3805,-0.5138,0.5893,0.5528,-0.5893,0.7689,0.3805,-0.5138,0.6929,0.5528,-0.463,0.6929,0.5528,-0.463,0.7689,0.3805,-0.5138,0.8544,0.3805,-0.3539,0.6929,0.5528,-0.463,0.8544,0.3805,-0.3539,0.7699,0.5528,-0.3189,0.7699,0.5528,-0.3189,0.8544,0.3805,-0.3539,0.907,0.3805,-0.1804,0.7699,0.5528,-0.3189,0.907,0.3805,-0.1804,0.8173,0.5528,-0.1626,0.8173,0.5528,-0.1626,0.907,0.3805,-0.1804,0.9248,0.3805,0.0,0.8173,0.5528,-0.1626,0.9248,0.3805,0.0,0.8333,0.5528,0.0,0.8333,0.5528,0.0,0.9248,0.3805,0.0,0.907,0.3805,0.1804,0.8333,0.5528,0.0,0.907,0.3805,0.1804,0.8173,0.5528,0.1626,0.8173,0.5528,0.1626,0.907,0.3805,0.1804,0.8544,0.3805,0.3539,0.8173,0.5528,0.1626,0.8544,0.3805,0.3539,0.7699,0.5528,0.3189,0.7699,0.5528,0.3189,0.8544,0.3805,0.3539,0.7689,0.3805,0.5138,0.7699,0.5528,0.3189,0.7689,0.3805,0.5138,0.6929,0.5528,0.463,0.6929,0.5528,0.463,0.7689,0.3805,0.5138,0.6539,0.3805,0.6539,0.6929,0.5528,0.463,0.6539,0.3805,0.6539,0.5893,0.5528,0.5893,0.5893,0.5528,0.5893,0.6539,0.3805,0.6539,0.5138,0.3805,0.7689,0.5893,0.5528,0.5893,0.5138,0.3805,0.7689,0.463,0.5528,0.6929,0.463,0.5528,0.6929,0.5138,0.3805,0.7689,0.3539,0.3805,0.8544,0.463,0.5528,0.6929,0.3539,0.3805,0.8544,0.3189,0.5528,0.7699,0.3189,0.5528,0.7699,0.3539,0.3805,0.8544,0.1804,0.3805,0.907,0.3189,0.5528,0.7699,0.1804,0.3805,0.907,0.1626,0.5528,0.8173,0.1626,0.5528,0.8173,0.1804,0.3805,0.907,0.0,0.3805,0.9248,0.1626,0.5528,0.8173,0.0,0.3805,0.9248,0.0,0.5528,0.8333,0.0,0.3805,0.9248,0.0,0.1939,0.981,-0.1914,0.1939,0.9622,0.0,0.3805,0.9248,-0.1914,0.1939,0.9622,-0.1804,0.3805,0.907,-0.1804,0.3805,0.907,-0.1914,0.1939,0.9622,-0.3754,0.1939,0.9063,-0.1804,0.3805,0.907,-0.3754,0.1939,0.9063,-0.3539,0.3805,0.8544,-0.3539,0.3805,0.8544,-0.3754,0.1939,0.9063,-0.545,0.1939,0.8157,-0.3539,0.3805,0.8544,-0.545,0.1939,0.8157,-0.5138,0.3805,0.7689,-0.5138,0.3805,0.7689,-0.545,0.1939,0.8157,-0.6937,0.1939,0.6937,-0.5138,0.3805,0.7689,-0.6937,0.1939,0.6937,-0.6539,0.3805,0.6539,-0.6539,0.3805,0.6539,-0.6937,0.1939,0.6937,-0.8157,0.1939,0.545,-0.6539,0.3805,0.6539,-0.8157,0.1939,0.545,-0.7689,0.3805,0.5138,-0.7689,0.3805,0.5138,-0.8157,0.1939,0.545,-0.9063,0.1939,0.3754,-0.7689,0.3805,0.5138,-0.9063,0.1939,0.3754,-0.8544,0.3805,0.3539,-0.8544,0.3805,0.3539,-0.9063,0.1939,0.3754,-0.9622,0.1939,0.1914,-0.8544,0.3805,0.3539,-0.9622,0.1939,0.1914,-0.907,0.3805,0.1804,-0.907,0.3805,0.1804,-0.9622,0.1939,0.1914,-0.981,0.1939,0.0,-0.907,0.3805,0.1804,-0.981,0.1939,0.0,-0.9248,0.3805,0.0,-0.9248,0.3805,0.0,-0.981,0.1939,0.0,-0.9622,0.1939,-0.1914,-0.9248,0.3805,0.0,-0.9622,0.1939,-0.1914,-0.907,0.3805,-0.1804,-0.907,0.3805,-0.1804,-0.9622,0.1939,-0.1914,-0.9063,0.1939,-0.3754,-0.907,0.3805,-0.1804,-0.9063,0.1939,-0.3754,-0.8544,0.3805,-0.3539,-0.8544,0.3805,-0.3539,-0.9063,0.1939,-0.3754,-0.8157,0.1939,-0.545,-0.8544,0.3805,-0.3539,-0.8157,0.1939,-0.545,-0.7689,0.3805,-0.5138,-0.7689,0.3805,-0.5138,-0.8157,0.1939,-0.545,-0.6937,0.1939,-0.6937,-0.7689,0.3805,-0.5138,-0.6937,0.1939,-0.6937,-0.6539,0.3805,-0.6539,-0.6539,0.3805,-0.6539,-0.6937,0.1939,-0.6937,-0.545,0.1939,-0.8157,-0.6539,0.3805,-0.6539,-0.545,0.1939,-0.8157,-0.5138,0.3805,-0.7689,-0.5138,0.3805,-0.7689,-0.545,0.1939,-0.8157,-0.3754,0.1939,-0.9063,-0.5138,0.3805,-0.7689,-0.3754,0.1939,-0.9063,-0.3539,0.3805,-0.8544,-0.3539,0.3805,-0.8544,-0.3754,0.1939,-0.9063,-0.1914,0.1939,-0.9622,-0.3539,0.3805,-0.8544,-0.1914,0.1939,-0.9622,-0.1804,0.3805,-0.907,-0.1804,0.3805,-0.907,-0.1914,0.1939,-0.9622,0.0,0.1939,-0.981,-0.1804,0.3805,-0.907,0.0,0.1939,-0.981,0.0,0.3805,-0.9248,0.0,0.3805,-0.9248,0.0,0.1939,-0.981,0.1914,0.1939,-0.9622,0.0,0.3805,-0.9248,0.1914,0.1939,-0.9622,0.1804,0.3805,-0.907,0.1804,0.3805,-0.907,0.1914,0.1939,-0.9622,0.3754,0.1939,-0.9063,0.1804,0.3805,-0.907,0.3754,0.1939,-0.9063,0.3539,0.3805,-0.8544,0.3539,0.3805,-0.8544,0.3754,0.1939,-0.9063,0.545,0.1939,-0.8157,0.3539,0.3805,-0.8544,0.545,0.1939,-0.8157,0.5138,0.3805,-0.7689,0.5138,0.3805,-0.7689,0.545,0.1939,-0.8157,0.6937,0.1939,-0.6937,0.5138,0.3805,-0.7689,0.6937,0.1939,-0.6937,0.6539,0.3805,-0.6539,0.6539,0.3805,-0.6539,0.6937,0.1939,-0.6937,0.8157,0.1939,-0.545,0.6539,0.3805,-0.6539,0.8157,0.1939,-0.545,0.7689,0.3805,-0.5138,0.7689,0.3805,-0.5138,0.8157,0.1939,-0.545,0.9063,0.1939,-0.3754,0.7689,0.3805,-0.5138,0.9063,0.1939,-0.3754,0.8544,0.3805,-0.3539,0.8544,0.3805,-0.3539,0.9063,0.1939,-0.3754,0.9622,0.1939,-0.1914,0.8544,0.3805,-0.3539,0.9622,0.1939,-0.1914,0.907,0.3805,-0.1804,0.907,0.3805,-0.1804,0.9622,0.1939,-0.1914,0.981,0.1939,0.0,0.907,0.3805,-0.1804,0.981,0.1939,0.0,0.9248,0.3805,0.0,0.9248,0.3805,0.0,0.981,0.1939,0.0,0.9622,0.1939,0.1914,0.9248,0.3805,0.0,0.9622,0.1939,0.1914,0.907,0.3805,0.1804,0.907,0.3805,0.1804,0.9622,0.1939,0.1914,0.9063,0.1939,0.3754,0.907,0.3805,0.1804,0.9063,0.1939,0.3754,0.8544,0.3805,0.3539,0.8544,0.3805,0.3539,0.9063,0.1939,0.3754,0.8157,0.1939,0.545,0.8544,0.3805,0.3539,0.8157,0.1939,0.545,0.7689,0.3805,0.5138,0.7689,0.3805,0.5138,0.8157,0.1939,0.545,0.6937,0.1939,0.6937,0.7689,0.3805,0.5138,0.6937,0.1939,0.6937,0.6539,0.3805,0.6539,0.6539,0.3805,0.6539,0.6937,0.1939,0.6937,0.545,0.1939,0.8157,0.6539,0.3805,0.6539,0.545,0.1939,0.8157,0.5138,0.3805,0.7689,0.5138,0.3805,0.7689,0.545,0.1939,0.8157,0.3754,0.1939,0.9063,0.5138,0.3805,0.7689,0.3754,0.1939,0.9063,0.3539,0.3805,0.8544,0.3539,0.3805,0.8544,0.3754,0.1939,0.9063,0.1914,0.1939,0.9622,0.3539,0.3805,0.8544,0.1914,0.1939,0.9622,0.1804,0.3805,0.907,0.1804,0.3805,0.907,0.1914,0.1939,0.9622,0.0,0.1939,0.981,0.1804,0.3805,0.907,0.0,0.1939,0.981,0.0,0.3805,0.9248,0.0,0.1939,0.981,0.0,0.0,1.0,-0.1951,0.0,0.9808,0.0,0.1939,0.981,-0.1951,0.0,0.9808,-0.1914,0.1939,0.9622,-0.1914,0.1939,0.9622,-0.1951,0.0,0.9808,-0.3827,0.0,0.9239,-0.1914,0.1939,0.9622,-0.3827,0.0,0.9239,-0.3754,0.1939,0.9063,-0.3754,0.1939,0.9063,-0.3827,0.0,0.9239,-0.5556,0.0,0.8315,-0.3754,0.1939,0.9063,-0.5556,0.0,0.8315,-0.545,0.1939,0.8157,-0.545,0.1939,0.8157,-0.5556,0.0,0.8315,-0.7071,0.0,0.7071,-0.545,0.1939,0.8157,-0.7071,0.0,0.7071,-0.6937,0.1939,0.6937,-0.6937,0.1939,0.6937,-0.7071,0.0,0.7071,-0.8315,0.0,0.5556,-0.6937,0.1939,0.6937,-0.8315,0.0,0.5556,-0.8157,0.1939,0.545,-0.8157,0.1939,0.545,-0.8315,0.0,0.5556,-0.9239,0.0,0.3827,-0.8157,0.1939,0.545,-0.9239,0.0,0.3827,-0.9063,0.1939,0.3754,-0.9063,0.1939,0.3754,-0.9239,0.0,0.3827,-0.9808,0.0,0.1951,-0.9063,0.1939,0.3754,-0.9808,0.0,0.1951,-0.9622,0.1939,0.1914,-0.9622,0.1939,0.1914,-0.9808,0.0,0.1951,-1.0,0.0,0.0,-0.9622,0.1939,0.1914,-1.0,0.0,0.0,-0.981,0.1939,0.0,-0.981,0.1939,0.0,-1.0,0.0,0.0,-0.9808,0.0,-0.1951,-0.981,0.1939,0.0,-0.9808,0.0,-0.1951,-0.9622,0.1939,-0.1914,-0.9622,0.1939,-0.1914,-0.9808,0.0,-0.1951,-0.9239,0.0,-0.3827,-0.9622,0.1939,-0.1914,-0.9239,0.0,-0.3827,-0.9063,0.1939,-0.3754,-0.9063,0.1939,-0.3754,-0.9239,0.0,-0.3827,-0.8315,0.0,-0.5556,-0.9063,0.1939,-0.3754,-0.8315,0.0,-0.5556,-0.8157,0.1939,-0.545,-0.8157,0.1939,-0.545,-0.8315,0.0,-0.5556,-0.7071,0.0,-0.7071,-0.8157,0.1939,-0.545,-0.7071,0.0,-0.7071,-0.6937,0.1939,-0.6937,-0.6937,0.1939,-0.6937,-0.7071,0.0,-0.7071,-0.5556,0.0,-0.8315,-0.6937,0.1939,-0.6937,-0.5556,0.0,-0.8315,-0.545,0.1939,-0.8157,-0.545,0.1939,-0.8157,-0.5556,0.0,-0.8315,-0.3827,0.0,-0.9239,-0.545,0.1939,-0.8157,-0.3827,0.0,-0.9239,-0.3754,0.1939,-0.9063,-0.3754,0.1939,-0.9063,-0.3827,0.0,-0.9239,-0.1951,0.0,-0.9808,-0.3754,0.1939,-0.9063,-0.1951,0.0,-0.9808,-0.1914,0.1939,-0.9622,-0.1914,0.1939,-0.9622,-0.1951,0.0,-0.9808,0.0,0.0,-1.0,-0.1914,0.1939,-0.9622,0.0,0.0,-1.0,0.0,0.1939,-0.981,0.0,0.1939,-0.981,0.0,0.0,-1.0,0.1951,0.0,-0.9808,0.0,0.1939,-0.981,0.1951,0.0,-0.9808,0.1914,0.1939,-0.9622,0.1914,0.1939,-0.9622,0.1951,0.0,-0.9808,0.3827,0.0,-0.9239,0.1914,0.1939,-0.9622,0.3827,0.0,-0.9239,0.3754,0.1939,-0.9063,0.3754,0.1939,-0.9063,0.3827,0.0,-0.9239,0.5556,0.0,-0.8315,0.3754,0.1939,-0.9063,0.5556,0.0,-0.8315,0.545,0.1939,-0.8157,0.545,0.1939,-0.8157,0.5556,0.0,-0.8315,0.7071,0.0,-0.7071,0.545,0.1939,-0.8157,0.7071,0.0,-0.7071,0.6937,0.1939,-0.6937,0.6937,0.1939,-0.6937,0.7071,0.0,-0.7071,0.8315,0.0,-0.5556,0.6937,0.1939,-0.6937,0.8315,0.0,-0.5556,0.8157,0.1939,-0.545,0.8157,0.1939,-0.545,0.8315,0.0,-0.5556,0.9239,0.0,-0.3827,0.8157,0.1939,-0.545,0.9239,0.0,-0.3827,0.9063,0.1939,-0.3754,0.9063,0.1939,-0.3754,0.9239,0.0,-0.3827,0.9808,0.0,-0.1951,0.9063,0.1939,-0.3754,0.9808,0.0,-0.1951,0.9622,0.1939,-0.1914,0.9622,0.1939,-0.1914,0.9808,0.0,-0.1951,1.0,0.0,0.0,0.9622,0.1939,-0.1914,1.0,0.0,0.0,0.981,0.1939,0.0,0.981,0.1939,0.0,1.0,0.0,0.0,0.9808,0.0,0.1951,0.981,0.1939,0.0,0.9808,0.0,0.1951,0.9622,0.1939,0.1914,0.9622,0.1939,0.1914,0.9808,0.0,0.1951,0.9239,0.0,0.3827,0.9622,0.1939,0.1914,0.9239,0.0,0.3827,0.9063,0.1939,0.3754,0.9063,0.1939,0.3754,0.9239,0.0,0.3827,0.8315,0.0,0.5556,0.9063,0.1939,0.3754,0.8315,0.0,0.5556,0.8157,0.1939,0.545,0.8157,0.1939,0.545,0.8315,0.0,0.5556,0.7071,0.0,0.7071,0.8157,0.1939,0.545,0.7071,0.0,0.7071,0.6937,0.1939,0.6937,0.6937,0.1939,0.6937,0.7071,0.0,0.7071,0.5556,0.0,0.8315,0.6937,0.1939,0.6937,0.5556,0.0,0.8315,0.545,0.1939,0.8157,0.545,0.1939,0.8157,0.5556,0.0,0.8315,0.3827,0.0,0.9239,0.545,0.1939,0.8157,0.3827,0.0,0.9239,0.3754,0.1939,0.9063,0.3754,0.1939,0.9063,0.3827,0.0,0.9239,0.1951,0.0,0.9808,0.3754,0.1939,0.9063,0.1951,0.0,0.9808,0.1914,0.1939,0.9622,0.1914,0.1939,0.9622,0.1951,0.0,0.9808,0.0,0.0,1.0,0.1914,0.1939,0.9622,0.0,0.0,1.0,0.0,0.1939,0.981,0.0,0.0,1.0,0.0,-0.1939,0.981,-0.1914,-0.1939,0.9622,0.0,0.0,1.0,-0.1914,-0.1939,0.9622,-0.1951,0.0,0.9808,-0.1951,0.0,0.9808,-0.1914,-0.1939,0.9622,-0.3754,-0.1939,0.9063,-0.1951,0.0,0.9808,-0.3754,-0.1939,0.9063,-0.3827,0.0,0.9239,-0.3827,0.0,0.9239,-0.3754,-0.1939,0.9063,-0.545,-0.1939,0.8157,-0.3827,0.0,0.9239,-0.545,-0.1939,0.8157,-0.5556,0.0,0.8315,-0.5556,0.0,0.8315,-0.545,-0.1939,0.8157,-0.6937,-0.1939,0.6937,-0.5556,0.0,0.8315,-0.6937,-0.1939,0.6937,-0.7071,0.0,0.7071,-0.7071,0.0,0.7071,-0.6937,-0.1939,0.6937,-0.8157,-0.1939,0.545,-0.7071,0.0,0.7071,-0.8157,-0.1939,0.545,-0.8315,0.0,0.5556,-0.8315,0.0,0.5556,-0.8157,-0.1939,0.545,-0.9063,-0.1939,0.3754,-0.8315,0.0,0.5556,-0.9063,-0.1939,0.3754,-0.9239,0.0,0.3827,-0.9239,0.0,0.3827,-0.9063,-0.1939,0.3754,-0.9622,-0.1939,0.1914,-0.9239,0.0,0.3827,-0.9622,-0.1939,0.1914,-0.9808,0.0,0.1951,-0.9808,0.0,0.1951,-0.9622,-0.1939,0.1914,-0.981,-0.1939,0.0,-0.9808,0.0,0.1951,-0.981,-0.1939,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-0.981,-0.1939,0.0,-0.9622,-0.1939,-0.1914,-1.0,0.0,0.0,-0.9622,-0.1939,-0.1914,-0.9808,0.0,-0.1951,-0.9808,0.0,-0.1951,-0.9622,-0.1939,-0.1914,-0.9063,-0.1939,-0.3754,-0.9808,0.0,-0.1951,-0.9063,-0.1939,-0.3754,-0.9239,0.0,-0.3827,-0.9239,0.0,-0.3827,-0.9063,-0.1939,-0.3754,-0.8157,-0.1939,-0.545,-0.9239,0.0,-0.3827,-0.8157,-0.1939,-0.545,-0.8315,0.0,-0.5556,-0.8315,0.0,-0.5556,-0.8157,-0.1939,-0.545,-0.6937,-0.1939,-0.6937,-0.8315,0.0,-0.5556,-0.6937,-0.1939,-0.6937,-0.7071,0.0,-0.7071,-0.7071,0.0,-0.7071,-0.6937,-0.1939,-0.6937,-0.545,-0.1939,-0.8157,-0.7071,0.0,-0.7071,-0.545,-0.1939,-0.8157,-0.5556,0.0,-0.8315,-0.5556,0.0,-0.8315,-0.545,-0.1939,-0.8157,-0.3754,-0.1939,-0.9063,-0.5556,0.0,-0.8315,-0.3754,-0.1939,-0.9063,-0.3827,0.0,-0.9239,-0.3827,0.0,-0.9239,-0.3754,-0.1939,-0.9063,-0.1914,-0.1939,-0.9622,-0.3827,0.0,-0.9239,-0.1914,-0.1939,-0.9622,-0.1951,0.0,-0.9808,-0.1951,0.0,-0.9808,-0.1914,-0.1939,-0.9622,0.0,-0.1939,-0.981,-0.1951,0.0,-0.9808,0.0,-0.1939,-0.981,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,-0.1939,-0.981,0.1914,-0.1939,-0.9622,0.0,0.0,-1.0,0.1914,-0.1939,-0.9622,0.1951,0.0,-0.9808,0.1951,0.0,-0.9808,0.1914,-0.1939,-0.9622,0.3754,-0.1939,-0.9063,0.1951,0.0,-0.9808,0.3754,-0.1939,-0.9063,0.3827,0.0,-0.9239,0.3827,0.0,-0.9239,0.3754,-0.1939,-0.9063,0.545,-0.1939,-0.8157,0.3827,0.0,-0.9239,0.545,-0.1939,-0.8157,0.5556,0.0,-0.8315,0.5556,0.0,-0.8315,0.545,-0.1939,-0.8157,0.6937,-0.1939,-0.6937,0.5556,0.0,-0.8315,0.6937,-0.1939,-0.6937,0.7071,0.0,-0.7071,0.7071,0.0,-0.7071,0.6937,-0.1939,-0.6937,0.8157,-0.1939,-0.545,0.7071,0.0,-0.7071,0.8157,-0.1939,-0.545,0.8315,0.0,-0.5556,0.8315,0.0,-0.5556,0.8157,-0.1939,-0.545,0.9063,-0.1939,-0.3754,0.8315,0.0,-0.5556,0.9063,-0.1939,-0.3754,0.9239,0.0,-0.3827,0.9239,0.0,-0.3827,0.9063,-0.1939,-0.3754,0.9622,-0.1939,-0.1914,0.9239,0.0,-0.3827,0.9622,-0.1939,-0.1914,0.9808,0.0,-0.1951,0.9808,0.0,-0.1951,0.9622,-0.1939,-0.1914,0.981,-0.1939,0.0,0.9808,0.0,-0.1951,0.981,-0.1939,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.981,-0.1939,0.0,0.9622,-0.1939,0.1914,1.0,0.0,0.0,0.9622,-0.1939,0.1914,0.9808,0.0,0.1951,0.9808,0.0,0.1951,0.9622,-0.1939,0.1914,0.9063,-0.1939,0.3754,0.9808,0.0,0.1951,0.9063,-0.1939,0.3754,0.9239,0.0,0.3827,0.9239,0.0,0.3827,0.9063,-0.1939,0.3754,0.8157,-0.1939,0.545,0.9239,0.0,0.3827,0.8157,-0.1939,0.545,0.8315,0.0,0.5556,0.8315,0.0,0.5556,0.8157,-0.1939,0.545,0.6937,-0.1939,0.6937,0.8315,0.0,0.5556,0.6937,-0.1939,0.6937,0.7071,0.0,0.7071,0.7071,0.0,0.7071,0.6937,-0.1939,0.6937,0.545,-0.1939,0.8157,0.7071,0.0,0.7071,0.545,-0.1939,0.8157,0.5556,0.0,0.8315,0.5556,0.0,0.8315,0.545,-0.1939,0.8157,0.3754,-0.1939,0.9063,0.5556,0.0,0.8315,0.3754,-0.1939,0.9063,0.3827,0.0,0.9239,0.3827,0.0,0.9239,0.3754,-0.1939,0.9063,0.1914,-0.1939,0.9622,0.3827,0.0,0.9239,0.1914,-0.1939,0.9622,0.1951,0.0,0.9808,0.1951,0.0,0.9808,0.1914,-0.1939,0.9622,0.0,-0.1939,0.981,0.1951,0.0,0.9808,0.0,-0.1939,0.981,0.0,0.0,1.0,0.0,-0.1939,0.981,0.0,-0.3805,0.9248,-0.1804,-0.3805,0.907,0.0,-0.1939,0.981,-0.1804,-0.3805,0.907,-0.1914,-0.1939,0.9622,-0.1914,-0.1939,0.9622,-0.1804,-0.3805,0.907,-0.3539,-0.3805,0.8544,-0.1914,-0.1939,0.9622,-0.3539,-0.3805,0.8544,-0.3754,-0.1939,0.9063,-0.3754,-0.1939,0.9063,-0.3539,-0.3805,0.8544,-0.5138,-0.3805,0.7689,-0.3754,-0.1939,0.9063,-0.5138,-0.3805,0.7689,-0.545,-0.1939,0.8157,-0.545,-0.1939,0.8157,-0.5138,-0.3805,0.7689,-0.6539,-0.3805,0.6539,-0.545,-0.1939,0.8157,-0.6539,-0.3805,0.6539,-0.6937,-0.1939,0.6937,-0.6937,-0.1939,0.6937,-0.6539,-0.3805,0.6539,-0.7689,-0.3805,0.5138,-0.6937,-0.1939,0.6937,-0.7689,-0.3805,0.5138,-0.8157,-0.1939,0.545,-0.8157,-0.1939,0.545,-0.7689,-0.3805,0.5138,-0.8544,-0.3805,0.3539,-0.8157,-0.1939,0.545,-0.8544,-0.3805,0.3539,-0.9063,-0.1939,0.3754,-0.9063,-0.1939,0.3754,-0.8544,-0.3805,0.3539,-0.907,-0.3805,0.1804,-0.9063,-0.1939,0.3754,-0.907,-0.3805,0.1804,-0.9622,-0.1939,0.1914,-0.9622,-0.1939,0.1914,-0.907,-0.3805,0.1804,-0.9248,-0.3805,0.0,-0.9622,-0.1939,0.1914,-0.9248,-0.3805,0.0,-0.981,-0.1939,0.0,-0.981,-0.1939,0.0,-0.9248,-0.3805,0.0,-0.907,-0.3805,-0.1804,-0.981,-0.1939,0.0,-0.907,-0.3805,-0.1804,-0.9622,-0.1939,-0.1914,-0.9622,-0.1939,-0.1914,-0.907,-0.3805,-0.1804,-0.8544,-0.3805,-0.3539,-0.9622,-0.1939,-0.1914,-0.8544,-0.3805,-0.3539,-0.9063,-0.1939,-0.3754,-0.9063,-0.1939,-0.3754,-0.8544,-0.3805,-0.3539,-0.7689,-0.3805,-0.5138,-0.9063,-0.1939,-0.3754,-0.7689,-0.3805,-0.5138,-0.8157,-0.1939,-0.545,-0.8157,-0.1939,-0.545,-0.7689,-0.3805,-0.5138,-0.6539,-0.3805,-0.6539,-0.8157,-0.1939,-0.545,-0.6539,-0.3805,-0.6539,-0.6937,-0.1939,-0.6937,-0.6937,-0.1939,-0.6937,-0.6539,-0.3805,-0.6539,-0.5138,-0.3805,-0.7689,-0.6937,-0.1939,-0.6937,-0.5138,-0.3805,-0.7689,-0.545,-0.1939,-0.8157,-0.545,-0.1939,-0.8157,-0.5138,-0.3805,-0.7689,-0.3539,-0.3805,-0.8544,-0.545,-0.1939,-0.8157,-0.3539,-0.3805,-0.8544,-0.3754,-0.1939,-0.9063,-0.3754,-0.1939,-0.9063,-0.3539,-0.3805,-0.8544,-0.1804,-0.3805,-0.907,-0.3754,-0.1939,-0.9063,-0.1804,-0.3805,-0.907,-0.1914,-0.1939,-0.9622,-0.1914,-0.1939,-0.9622,-0.1804,-0.3805,-0.907,0.0,-0.3805,-0.9248,-0.1914,-0.1939,-0.9622,0.0,-0.3805,-0.9248,0.0,-0.1939,-0.981,0.0,-0.1939,-0.981,0.0,-0.3805,-0.9248,0.1804,-0.3805,-0.907,0.0,-0.1939,-0.981,0.1804,-0.3805,-0.907,0.1914,-0.1939,-0.9622,0.1914,-0.1939,-0.9622,0.1804,-0.3805,-0.907,0.3539,-0.3805,-0.8544,0.1914,-0.1939,-0.9622,0.3539,-0.3805,-0.8544,0.3754,-0.1939,-0.9063,0.3754,-0.1939,-0.9063,0.3539,-0.3805,-0.8544,0.5138,-0.3805,-0.7689,0.3754,-0.1939,-0.9063,0.5138,-0.3805,-0.7689,0.545,-0.1939,-0.8157,0.545,-0.1939,-0.8157,0.5138,-0.3805,-0.7689,0.6539,-0.3805,-0.6539,0.545,-0.1939,-0.8157,0.6539,-0.3805,-0.6539,0.6937,-0.1939,-0.6937,0.6937,-0.1939,-0.6937,0.6539,-0.3805,-0.6539,0.7689,-0.3805,-0.5138,0.6937,-0.1939,-0.6937,0.7689,-0.3805,-0.5138,0.8157,-0.1939,-0.545,0.8157,-0.1939,-0.545,0.7689,-0.3805,-0.5138,0.8544,-0.3805,-0.3539,0.8157,-0.1939,-0.545,0.8544,-0.3805,-0.3539,0.9063,-0.1939,-0.3754,0.9063,-0.1939,-0.3754,0.8544,-0.3805,-0.3539,0.907,-0.3805,-0.1804,0.9063,-0.1939,-0.3754,0.907,-0.3805,-0.1804,0.9622,-0.1939,-0.1914,0.9622,-0.1939,-0.1914,0.907,-0.3805,-0.1804,0.9248,-0.3805,0.0,0.9622,-0.1939,-0.1914,0.9248,-0.3805,0.0,0.981,-0.1939,0.0,0.981,-0.1939,0.0,0.9248,-0.3805,0.0,0.907,-0.3805,0.1804,0.981,-0.1939,0.0,0.907,-0.3805,0.1804,0.9622,-0.1939,0.1914,0.9622,-0.1939,0.1914,0.907,-0.3805,0.1804,0.8544,-0.3805,0.3539,0.9622,-0.1939,0.1914,0.8544,-0.3805,0.3539,0.9063,-0.1939,0.3754,0.9063,-0.1939,0.3754,0.8544,-0.3805,0.3539,0.7689,-0.3805,0.5138,0.9063,-0.1939,0.3754,0.7689,-0.3805,0.5138,0.8157,-0.1939,0.545,0.8157,-0.1939,0.545,0.7689,-0.3805,0.5138,0.6539,-0.3805,0.6539,0.8157,-0.1939,0.545,0.6539,-0.3805,0.6539,0.6937,-0.1939,0.6937,0.6937,-0.1939,0.6937,0.6539,-0.3805,0.6539,0.5138,-0.3805,0.7689,0.6937,-0.1939,0.6937,0.5138,-0.3805,0.7689,0.545,-0.1939,0.8157,0.545,-0.1939,0.8157,0.5138,-0.3805,0.7689,0.3539,-0.3805,0.8544,0.545,-0.1939,0.8157,0.3539,-0.3805,0.8544,0.3754,-0.1939,0.9063,0.3754,-0.1939,0.9063,0.3539,-0.3805,0.8544,0.1804,-0.3805,0.907,0.3754,-0.1939,0.9063,0.1804,-0.3805,0.907,0.1914,-0.1939,0.9622,0.1914,-0.1939,0.9622,0.1804,-0.3805,0.907,0.0,-0.3805,0.9248,0.1914,-0.1939,0.9622,0.0,-0.3805,0.9248,0.0,-0.1939,0.981,0.0,-0.3805,0.9248,0.0,-0.5528,0.8333,-0.1626,-0.5528,0.8173,0.0,-0.3805,0.9248,-0.1626,-0.5528,0.8173,-0.1804,-0.3805,0.907,-0.1804,-0.3805,0.907,-0.1626,-0.5528,0.8173,-0.3189,-0.5528,0.7699,-0.1804,-0.3805,0.907,-0.3189,-0.5528,0.7699,-0.3539,-0.3805,0.8544,-0.3539,-0.3805,0.8544,-0.3189,-0.5528,0.7699,-0.463,-0.5528,0.6929,-0.3539,-0.3805,0.8544,-0.463,-0.5528,0.6929,-0.5138,-0.3805,0.7689,-0.5138,-0.3805,0.7689,-0.463,-0.5528,0.6929,-0.5893,-0.5528,0.5893,-0.5138,-0.3805,0.7689,-0.5893,-0.5528,0.5893,-0.6539,-0.3805,0.6539,-0.6539,-0.3805,0.6539,-0.5893,-0.5528,0.5893,-0.6929,-0.5528,0.463,-0.6539,-0.3805,0.6539,-0.6929,-0.5528,0.463,-0.7689,-0.3805,0.5138,-0.7689,-0.3805,0.5138,-0.6929,-0.5528,0.463,-0.7699,-0.5528,0.3189,-0.7689,-0.3805,0.5138,-0.7699,-0.5528,0.3189,-0.8544,-0.3805,0.3539,-0.8544,-0.3805,0.3539,-0.7699,-0.5528,0.3189,-0.8173,-0.5528,0.1626,-0.8544,-0.3805,0.3539,-0.8173,-0.5528,0.1626,-0.907,-0.3805,0.1804,-0.907,-0.3805,0.1804,-0.8173,-0.5528,0.1626,-0.8333,-0.5528,0.0,-0.907,-0.3805,0.1804,-0.8333,-0.5528,0.0,-0.9248,-0.3805,0.0,-0.9248,-0.3805,0.0,-0.8333,-0.5528,0.0,-0.8173,-0.5528,-0.1626,-0.9248,-0.3805,0.0,-0.8173,-0.5528,-0.1626,-0.907,-0.3805,-0.1804,-0.907,-0.3805,-0.1804,-0.8173,-0.5528,-0.1626,-0.7699,-0.5528,-0.3189,-0.907,-0.3805,-0.1804,-0.7699,-0.5528,-0.3189,-0.8544,-0.3805,-0.3539,-0.8544,-0.3805,-0.3539,-0.7699,-0.5528,-0.3189,-0.6929,-0.5528,-0.463,-0.8544,-0.3805,-0.3539,-0.6929,-0.5528,-0.463,-0.7689,-0.3805,-0.5138,-0.7689,-0.3805,-0.5138,-0.6929,-0.5528,-0.463,-0.5893,-0.5528,-0.5893,-0.7689,-0.3805,-0.5138,-0.5893,-0.5528,-0.5893,-0.6539,-0.3805,-0.6539,-0.6539,-0.3805,-0.6539,-0.5893,-0.5528,-0.5893,-0.463,-0.5528,-0.6929,-0.6539,-0.3805,-0.6539,-0.463,-0.5528,-0.6929,-0.5138,-0.3805,-0.7689,-0.5138,-0.3805,-0.7689,-0.463,-0.5528,-0.6929,-0.3189,-0.5528,-0.7699,-0.5138,-0.3805,-0.7689,-0.3189,-0.5528,-0.7699,-0.3539,-0.3805,-0.8544,-0.3539,-0.3805,-0.8544,-0.3189,-0.5528,-0.7699,-0.1626,-0.5528,-0.8173,-0.3539,-0.3805,-0.8544,-0.1626,-0.5528,-0.8173,-0.1804,-0.3805,-0.907,-0.1804,-0.3805,-0.907,-0.1626,-0.5528,-0.8173,0.0,-0.5528,-0.8333,-0.1804,-0.3805,-0.907,0.0,-0.5528,-0.8333,0.0,-0.3805,-0.9248,0.0,-0.3805,-0.9248,0.0,-0.5528,-0.8333,0.1626,-0.5528,-0.8173,0.0,-0.3805,-0.9248,0.1626,-0.5528,-0.8173,0.1804,-0.3805,-0.907,0.1804,-0.3805,-0.907,0.1626,-0.5528,-0.8173,0.3189,-0.5528,-0.7699,0.1804,-0.3805,-0.907,0.3189,-0.5528,-0.7699,0.3539,-0.3805,-0.8544,0.3539,-0.3805,-0.8544,0.3189,-0.5528,-0.7699,0.463,-0.5528,-0.6929,0.3539,-0.3805,-0.8544,0.463,-0.5528,-0.6929,0.5138,-0.3805,-0.7689,0.5138,-0.3805,-0.7689,0.463,-0.5528,-0.6929,0.5893,-0.5528,-0.5893,0.5138,-0.3805,-0.7689,0.5893,-0.5528,-0.5893,0.6539,-0.3805,-0.6539,0.6539,-0.3805,-0.6539,0.5893,-0.5528,-0.5893,0.6929,-0.5528,-0.463,0.6539,-0.3805,-0.6539,0.6929,-0.5528,-0.463,0.7689,-0.3805,-0.5138,0.7689,-0.3805,-0.5138,0.6929,-0.5528,-0.463,0.7699,-0.5528,-0.3189,0.7689,-0.3805,-0.5138,0.7699,-0.5528,-0.3189,0.8544,-0.3805,-0.3539,0.8544,-0.3805,-0.3539,0.7699,-0.5528,-0.3189,0.8173,-0.5528,-0.1626,0.8544,-0.3805,-0.3539,0.8173,-0.5528,-0.1626,0.907,-0.3805,-0.1804,0.907,-0.3805,-0.1804,0.8173,-0.5528,-0.1626,0.8333,-0.5528,0.0,0.907,-0.3805,-0.1804,0.8333,-0.5528,0.0,0.9248,-0.3805,0.0,0.9248,-0.3805,0.0,0.8333,-0.5528,0.0,0.8173,-0.5528,0.1626,0.9248,-0.3805,0.0,0.8173,-0.5528,0.1626,0.907,-0.3805,0.1804,0.907,-0.3805,0.1804,0.8173,-0.5528,0.1626,0.7699,-0.5528,0.3189,0.907,-0.3805,0.1804,0.7699,-0.5528,0.3189,0.8544,-0.3805,0.3539,0.8544,-0.3805,0.3539,0.7699,-0.5528,0.3189,0.6929,-0.5528,0.463,0.8544,-0.3805,0.3539,0.6929,-0.5528,0.463,0.7689,-0.3805,0.5138,0.7689,-0.3805,0.5138,0.6929,-0.5528,0.463,0.5893,-0.5528,0.5893,0.7689,-0.3805,0.5138,0.5893,-0.5528,0.5893,0.6539,-0.3805,0.6539,0.6539,-0.3805,0.6539,0.5893,-0.5528,0.5893,0.463,-0.5528,0.6929,0.6539,-0.3805,0.6539,0.463,-0.5528,0.6929,0.5138,-0.3805,0.7689,0.5138,-0.3805,0.7689,0.463,-0.5528,0.6929,0.3189,-0.5528,0.7699,0.5138,-0.3805,0.7689,0.3189,-0.5528,0.7699,0.3539,-0.3805,0.8544,0.3539,-0.3805,0.8544,0.3189,-0.5528,0.7699,0.1626,-0.5528,0.8173,0.3539,-0.3805,0.8544,0.1626,-0.5528,0.8173,0.1804,-0.3805,0.907,0.1804,-0.3805,0.907,0.1626,-0.5528,0.8173,0.0,-0.5528,0.8333,0.1804,-0.3805,0.907,0.0,-0.5528,0.8333,0.0,-0.3805,0.9248,0.0,-0.5528,0.8333,0.0,-0.7041,0.7101,-0.1385,-0.7041,0.6965,0.0,-0.5528,0.8333,-0.1385,-0.7041,0.6965,-0.1626,-0.5528,0.8173,-0.1626,-0.5528,0.8173,-0.1385,-0.7041,0.6965,-0.2718,-0.7041,0.6561,-0.1626,-0.5528,0.8173,-0.2718,-0.7041,0.6561,-0.3189,-0.5528,0.7699,-0.3189,-0.5528,0.7699,-0.2718,-0.7041,0.6561,-0.3945,-0.7041,0.5905,-0.3189,-0.5528,0.7699,-0.3945,-0.7041,0.5905,-0.463,-0.5528,0.6929,-0.463,-0.5528,0.6929,-0.3945,-0.7041,0.5905,-0.5021,-0.7041,0.5021,-0.463,-0.5528,0.6929,-0.5021,-0.7041,0.5021,-0.5893,-0.5528,0.5893,-0.5893,-0.5528,0.5893,-0.5021,-0.7041,0.5021,-0.5905,-0.7041,0.3945,-0.5893,-0.5528,0.5893,-0.5905,-0.7041,0.3945,-0.6929,-0.5528,0.463,-0.6929,-0.5528,0.463,-0.5905,-0.7041,0.3945,-0.6561,-0.7041,0.2718,-0.6929,-0.5528,0.463,-0.6561,-0.7041,0.2718,-0.7699,-0.5528,0.3189,-0.7699,-0.5528,0.3189,-0.6561,-0.7041,0.2718,-0.6965,-0.7041,0.1385,-0.7699,-0.5528,0.3189,-0.6965,-0.7041,0.1385,-0.8173,-0.5528,0.1626,-0.8173,-0.5528,0.1626,-0.6965,-0.7041,0.1385,-0.7101,-0.7041,0.0,-0.8173,-0.5528,0.1626,-0.7101,-0.7041,0.0,-0.8333,-0.5528,0.0,-0.8333,-0.5528,0.0,-0.7101,-0.7041,0.0,-0.6965,-0.7041,-0.1385,-0.8333,-0.5528,0.0,-0.6965,-0.7041,-0.1385,-0.8173,-0.5528,-0.1626,-0.8173,-0.5528,-0.1626,-0.6965,-0.7041,-0.1385,-0.6561,-0.7041,-0.2718,-0.8173,-0.5528,-0.1626,-0.6561,-0.7041,-0.2718,-0.7699,-0.5528,-0.3189,-0.7699,-0.5528,-0.3189,-0.6561,-0.7041,-0.2718,-0.5905,-0.7041,-0.3945,-0.7699,-0.5528,-0.3189,-0.5905,-0.7041,-0.3945,-0.6929,-0.5528,-0.463,-0.6929,-0.5528,-0.463,-0.5905,-0.7041,-0.3945,-0.5021,-0.7041,-0.5021,-0.6929,-0.5528,-0.463,-0.5021,-0.7041,-0.5021,-0.5893,-0.5528,-0.5893,-0.5893,-0.5528,-0.5893,-0.5021,-0.7041,-0.5021,-0.3945,-0.7041,-0.5905,-0.5893,-0.5528,-0.5893,-0.3945,-0.7041,-0.5905,-0.463,-0.5528,-0.6929,-0.463,-0.5528,-0.6929,-0.3945,-0.7041,-0.5905,-0.2718,-0.7041,-0.6561,-0.463,-0.5528,-0.6929,-0.2718,-0.7041,-0.6561,-0.3189,-0.5528,-0.7699,-0.3189,-0.5528,-0.7699,-0.2718,-0.7041,-0.6561,-0.1385,-0.7041,-0.6965,-0.3189,-0.5528,-0.7699,-0.1385,-0.7041,-0.6965,-0.1626,-0.5528,-0.8173,-0.1626,-0.5528,-0.8173,-0.1385,-0.7041,-0.6965,0.0,-0.7041,-0.7101,-0.1626,-0.5528,-0.8173,0.0,-0.7041,-0.7101,0.0,-0.5528,-0.8333,0.0,-0.5528,-0.8333,0.0,-0.7041,-0.7101,0.1385,-0.7041,-0.6965,0.0,-0.5528,-0.8333,0.1385,-0.7041,-0.6965,0.1626,-0.5528,-0.8173,0.1626,-0.5528,-0.8173,0.1385,-0.7041,-0.6965,0.2718,-0.7041,-0.6561,0.1626,-0.5528,-0.8173,0.2718,-0.7041,-0.6561,0.3189,-0.5528,-0.7699,0.3189,-0.5528,-0.7699,0.2718,-0.7041,-0.6561,0.3945,-0.7041,-0.5905,0.3189,-0.5528,-0.7699,0.3945,-0.7041,-0.5905,0.463,-0.5528,-0.6929,0.463,-0.5528,-0.6929,0.3945,-0.7041,-0.5905,0.5021,-0.7041,-0.5021,0.463,-0.5528,-0.6929,0.5021,-0.7041,-0.5021,0.5893,-0.5528,-0.5893,0.5893,-0.5528,-0.5893,0.5021,-0.7041,-0.5021,0.5905,-0.7041,-0.3945,0.5893,-0.5528,-0.5893,0.5905,-0.7041,-0.3945,0.6929,-0.5528,-0.463,0.6929,-0.5528,-0.463,0.5905,-0.7041,-0.3945,0.6561,-0.7041,-0.2718,0.6929,-0.5528,-0.463,0.6561,-0.7041,-0.2718,0.7699,-0.5528,-0.3189,0.7699,-0.5528,-0.3189,0.6561,-0.7041,-0.2718,0.6965,-0.7041,-0.1385,0.7699,-0.5528,-0.3189,0.6965,-0.7041,-0.1385,0.8173,-0.5528,-0.1626,0.8173,-0.5528,-0.1626,0.6965,-0.7041,-0.1385,0.7101,-0.7041,0.0,0.8173,-0.5528,-0.1626,0.7101,-0.7041,0.0,0.8333,-0.5528,0.0,0.8333,-0.5528,0.0,0.7101,-0.7041,0.0,0.6965,-0.7041,0.1385,0.8333,-0.5528,0.0,0.6965,-0.7041,0.1385,0.8173,-0.5528,0.1626,0.8173,-0.5528,0.1626,0.6965,-0.7041,0.1385,0.6561,-0.7041,0.2718,0.8173,-0.5528,0.1626,0.6561,-0.7041,0.2718,0.7699,-0.5528,0.3189,0.7699,-0.5528,0.3189,0.6561,-0.7041,0.2718,0.5905,-0.7041,0.3945,0.7699,-0.5528,0.3189,0.5905,-0.7041,0.3945,0.6929,-0.5528,0.463,0.6929,-0.5528,0.463,0.5905,-0.7041,0.3945,0.5021,-0.7041,0.5021,0.6929,-0.5528,0.463,0.5021,-0.7041,0.5021,0.5893,-0.5528,0.5893,0.5893,-0.5528,0.5893,0.5021,-0.7041,0.5021,0.3945,-0.7041,0.5905,0.5893,-0.5528,0.5893,0.3945,-0.7041,0.5905,0.463,-0.5528,0.6929,0.463,-0.5528,0.6929,0.3945,-0.7041,0.5905,0.2718,-0.7041,0.6561,0.463,-0.5528,0.6929,0.2718,-0.7041,0.6561,0.3189,-0.5528,0.7699,0.3189,-0.5528,0.7699,0.2718,-0.7041,0.6561,0.1385,-0.7041,0.6965,0.3189,-0.5528,0.7699,0.1385,-0.7041,0.6965,0.1626,-0.5528,0.8173,0.1626,-0.5528,0.8173,0.1385,-0.7041,0.6965,0.0,-0.7041,0.7101,0.1626,-0.5528,0.8173,0.0,-0.7041,0.7101,0.0,-0.5528,0.8333,0.0,-0.7041,0.7101,0.0,-0.8286,0.5598,-0.1092,-0.8286,0.549,0.0,-0.7041,0.7101,-0.1092,-0.8286,0.549,-0.1385,-0.7041,0.6965,-0.1385,-0.7041,0.6965,-0.1092,-0.8286,0.549,-0.2142,-0.8286,0.5172,-0.1385,-0.7041,0.6965,-0.2142,-0.8286,0.5172,-0.2718,-0.7041,0.6561,-0.2718,-0.7041,0.6561,-0.2142,-0.8286,0.5172,-0.311,-0.8286,0.4654,-0.2718,-0.7041,0.6561,-0.311,-0.8286,0.4654,-0.3945,-0.7041,0.5905,-0.3945,-0.7041,0.5905,-0.311,-0.8286,0.4654,-0.3958,-0.8286,0.3958,-0.3945,-0.7041,0.5905,-0.3958,-0.8286,0.3958,-0.5021,-0.7041,0.5021,-0.5021,-0.7041,0.5021,-0.3958,-0.8286,0.3958,-0.4654,-0.8286,0.311,-0.5021,-0.7041,0.5021,-0.4654,-0.8286,0.311,-0.5905,-0.7041,0.3945,-0.5905,-0.7041,0.3945,-0.4654,-0.8286,0.311,-0.5172,-0.8286,0.2142,-0.5905,-0.7041,0.3945,-0.5172,-0.8286,0.2142,-0.6561,-0.7041,0.2718,-0.6561,-0.7041,0.2718,-0.5172,-0.8286,0.2142,-0.549,-0.8286,0.1092,-0.6561,-0.7041,0.2718,-0.549,-0.8286,0.1092,-0.6965,-0.7041,0.1385,-0.6965,-0.7041,0.1385,-0.549,-0.8286,0.1092,-0.5598,-0.8286,0.0,-0.6965,-0.7041,0.1385,-0.5598,-0.8286,0.0,-0.7101,-0.7041,0.0,-0.7101,-0.7041,0.0,-0.5598,-0.8286,0.0,-0.549,-0.8286,-0.1092,-0.7101,-0.7041,0.0,-0.549,-0.8286,-0.1092,-0.6965,-0.7041,-0.1385,-0.6965,-0.7041,-0.1385,-0.549,-0.8286,-0.1092,-0.5172,-0.8286,-0.2142,-0.6965,-0.7041,-0.1385,-0.5172,-0.8286,-0.2142,-0.6561,-0.7041,-0.2718,-0.6561,-0.7041,-0.2718,-0.5172,-0.8286,-0.2142,-0.4654,-0.8286,-0.311,-0.6561,-0.7041,-0.2718,-0.4654,-0.8286,-0.311,-0.5905,-0.7041,-0.3945,-0.5905,-0.7041,-0.3945,-0.4654,-0.8286,-0.311,-0.3958,-0.8286,-0.3958,-0.5905,-0.7041,-0.3945,-0.3958,-0.8286,-0.3958,-0.5021,-0.7041,-0.5021,-0.5021,-0.7041,-0.5021,-0.3958,-0.8286,-0.3958,-0.311,-0.8286,-0.4654,-0.5021,-0.7041,-0.5021,-0.311,-0.8286,-0.4654,-0.3945,-0.7041,-0.5905,-0.3945,-0.7041,-0.5905,-0.311,-0.8286,-0.4654,-0.2142,-0.8286,-0.5172,-0.3945,-0.7041,-0.5905,-0.2142,-0.8286,-0.5172,-0.2718,-0.7041,-0.6561,-0.2718,-0.7041,-0.6561,-0.2142,-0.8286,-0.5172,-0.1092,-0.8286,-0.549,-0.2718,-0.7041,-0.6561,-0.1092,-0.8286,-0.549,-0.1385,-0.7041,-0.6965,-0.1385,-0.7041,-0.6965,-0.1092,-0.8286,-0.549,0.0,-0.8286,-0.5598,-0.1385,-0.7041,-0.6965,0.0,-0.8286,-0.5598,0.0,-0.7041,-0.7101,0.0,-0.7041,-0.7101,0.0,-0.8286,-0.5598,0.1092,-0.8286,-0.549,0.0,-0.7041,-0.7101,0.1092,-0.8286,-0.549,0.1385,-0.7041,-0.6965,0.1385,-0.7041,-0.6965,0.1092,-0.8286,-0.549,0.2142,-0.8286,-0.5172,0.1385,-0.7041,-0.6965,0.2142,-0.8286,-0.5172,0.2718,-0.7041,-0.6561,0.2718,-0.7041,-0.6561,0.2142,-0.8286,-0.5172,0.311,-0.8286,-0.4654,0.2718,-0.7041,-0.6561,0.311,-0.8286,-0.4654,0.3945,-0.7041,-0.5905,0.3945,-0.7041,-0.5905,0.311,-0.8286,-0.4654,0.3958,-0.8286,-0.3958,0.3945,-0.7041,-0.5905,0.3958,-0.8286,-0.3958,0.5021,-0.7041,-0.5021,0.5021,-0.7041,-0.5021,0.3958,-0.8286,-0.3958,0.4654,-0.8286,-0.311,0.5021,-0.7041,-0.5021,0.4654,-0.8286,-0.311,0.5905,-0.7041,-0.3945,0.5905,-0.7041,-0.3945,0.4654,-0.8286,-0.311,0.5172,-0.8286,-0.2142,0.5905,-0.7041,-0.3945,0.5172,-0.8286,-0.2142,0.6561,-0.7041,-0.2718,0.6561,-0.7041,-0.2718,0.5172,-0.8286,-0.2142,0.549,-0.8286,-0.1092,0.6561,-0.7041,-0.2718,0.549,-0.8286,-0.1092,0.6965,-0.7041,-0.1385,0.6965,-0.7041,-0.1385,0.549,-0.8286,-0.1092,0.5598,-0.8286,0.0,0.6965,-0.7041,-0.1385,0.5598,-0.8286,0.0,0.7101,-0.7041,0.0,0.7101,-0.7041,0.0,0.5598,-0.8286,0.0,0.549,-0.8286,0.1092,0.7101,-0.7041,0.0,0.549,-0.8286,0.1092,0.6965,-0.7041,0.1385,0.6965,-0.7041,0.1385,0.549,-0.8286,0.1092,0.5172,-0.8286,0.2142,0.6965,-0.7041,0.1385,0.5172,-0.8286,0.2142,0.6561,-0.7041,0.2718,0.6561,-0.7041,0.2718,0.5172,-0.8286,0.2142,0.4654,-0.8286,0.311,0.6561,-0.7041,0.2718,0.4654,-0.8286,0.311,0.5905,-0.7041,0.3945,0.5905,-0.7041,0.3945,0.4654,-0.8286,0.311,0.3958,-0.8286,0.3958,0.5905,-0.7041,0.3945,0.3958,-0.8286,0.3958,0.5021,-0.7041,0.5021,0.5021,-0.7041,0.5021,0.3958,-0.8286,0.3958,0.311,-0.8286,0.4654,0.5021,-0.7041,0.5021,0.311,-0.8286,0.4654,0.3945,-0.7041,0.5905,0.3945,-0.7041,0.5905,0.311,-0.8286,0.4654,0.2142,-0.8286,0.5172,0.3945,-0.7041,0.5905,0.2142,-0.8286,0.5172,0.2718,-0.7041,0.6561,0.2718,-0.7041,0.6561,0.2142,-0.8286,0.5172,0.1092,-0.8286,0.549,0.2718,-0.7041,0.6561,0.1092,-0.8286,0.549,0.1385,-0.7041,0.6965,0.1385,-0.7041,0.6965,0.1092,-0.8286,0.549,0.0,-0.8286,0.5598,0.1385,-0.7041,0.6965,0.0,-0.8286,0.5598,0.0,-0.7041,0.7101,0.0,-0.8286,0.5598,0.0,-0.9217,0.3879,-0.0757,-0.9217,0.3804,0.0,-0.8286,0.5598,-0.0757,-0.9217,0.3804,-0.1092,-0.8286,0.549,-0.1092,-0.8286,0.549,-0.0757,-0.9217,0.3804,-0.1484,-0.9217,0.3584,-0.1092,-0.8286,0.549,-0.1484,-0.9217,0.3584,-0.2142,-0.8286,0.5172,-0.2142,-0.8286,0.5172,-0.1484,-0.9217,0.3584,-0.2155,-0.9217,0.3225,-0.2142,-0.8286,0.5172,-0.2155,-0.9217,0.3225,-0.311,-0.8286,0.4654,-0.311,-0.8286,0.4654,-0.2155,-0.9217,0.3225,-0.2743,-0.9217,0.2743,-0.311,-0.8286,0.4654,-0.2743,-0.9217,0.2743,-0.3958,-0.8286,0.3958,-0.3958,-0.8286,0.3958,-0.2743,-0.9217,0.2743,-0.3225,-0.9217,0.2155,-0.3958,-0.8286,0.3958,-0.3225,-0.9217,0.2155,-0.4654,-0.8286,0.311,-0.4654,-0.8286,0.311,-0.3225,-0.9217,0.2155,-0.3584,-0.9217,0.1484,-0.4654,-0.8286,0.311,-0.3584,-0.9217,0.1484,-0.5172,-0.8286,0.2142,-0.5172,-0.8286,0.2142,-0.3584,-0.9217,0.1484,-0.3804,-0.9217,0.0757,-0.5172,-0.8286,0.2142,-0.3804,-0.9217,0.0757,-0.549,-0.8286,0.1092,-0.549,-0.8286,0.1092,-0.3804,-0.9217,0.0757,-0.3879,-0.9217,0.0,-0.549,-0.8286,0.1092,-0.3879,-0.9217,0.0,-0.5598,-0.8286,0.0,-0.5598,-0.8286,0.0,-0.3879,-0.9217,0.0,-0.3804,-0.9217,-0.0757,-0.5598,-0.8286,0.0,-0.3804,-0.9217,-0.0757,-0.549,-0.8286,-0.1092,-0.549,-0.8286,-0.1092,-0.3804,-0.9217,-0.0757,-0.3584,-0.9217,-0.1484,-0.549,-0.8286,-0.1092,-0.3584,-0.9217,-0.1484,-0.5172,-0.8286,-0.2142,-0.5172,-0.8286,-0.2142,-0.3584,-0.9217,-0.1484,-0.3225,-0.9217,-0.2155,-0.5172,-0.8286,-0.2142,-0.3225,-0.9217,-0.2155,-0.4654,-0.8286,-0.311,-0.4654,-0.8286,-0.311,-0.3225,-0.9217,-0.2155,-0.2743,-0.9217,-0.2743,-0.4654,-0.8286,-0.311,-0.2743,-0.9217,-0.2743,-0.3958,-0.8286,-0.3958,-0.3958,-0.8286,-0.3958,-0.2743,-0.9217,-0.2743,-0.2155,-0.9217,-0.3225,-0.3958,-0.8286,-0.3958,-0.2155,-0.9217,-0.3225,-0.311,-0.8286,-0.4654,-0.311,-0.8286,-0.4654,-0.2155,-0.9217,-0.3225,-0.1484,-0.9217,-0.3584,-0.311,-0.8286,-0.4654,-0.1484,-0.9217,-0.3584,-0.2142,-0.8286,-0.5172,-0.2142,-0.8286,-0.5172,-0.1484,-0.9217,-0.3584,-0.0757,-0.9217,-0.3804,-0.2142,-0.8286,-0.5172,-0.0757,-0.9217,-0.3804,-0.1092,-0.8286,-0.549,-0.1092,-0.8286,-0.549,-0.0757,-0.9217,-0.3804,0.0,-0.9217,-0.3879,-0.1092,-0.8286,-0.549,0.0,-0.9217,-0.3879,0.0,-0.8286,-0.5598,0.0,-0.8286,-0.5598,0.0,-0.9217,-0.3879,0.0757,-0.9217,-0.3804,0.0,-0.8286,-0.5598,0.0757,-0.9217,-0.3804,0.1092,-0.8286,-0.549,0.1092,-0.8286,-0.549,0.0757,-0.9217,-0.3804,0.1484,-0.9217,-0.3584,0.1092,-0.8286,-0.549,0.1484,-0.9217,-0.3584,0.2142,-0.8286,-0.5172,0.2142,-0.8286,-0.5172,0.1484,-0.9217,-0.3584,0.2155,-0.9217,-0.3225,0.2142,-0.8286,-0.5172,0.2155,-0.9217,-0.3225,0.311,-0.8286,-0.4654,0.311,-0.8286,-0.4654,0.2155,-0.9217,-0.3225,0.2743,-0.9217,-0.2743,0.311,-0.8286,-0.4654,0.2743,-0.9217,-0.2743,0.3958,-0.8286,-0.3958,0.3958,-0.8286,-0.3958,0.2743,-0.9217,-0.2743,0.3225,-0.9217,-0.2155,0.3958,-0.8286,-0.3958,0.3225,-0.9217,-0.2155,0.4654,-0.8286,-0.311,0.4654,-0.8286,-0.311,0.3225,-0.9217,-0.2155,0.3584,-0.9217,-0.1484,0.4654,-0.8286,-0.311,0.3584,-0.9217,-0.1484,0.5172,-0.8286,-0.2142,0.5172,-0.8286,-0.2142,0.3584,-0.9217,-0.1484,0.3804,-0.9217,-0.0757,0.5172,-0.8286,-0.2142,0.3804,-0.9217,-0.0757,0.549,-0.8286,-0.1092,0.549,-0.8286,-0.1092,0.3804,-0.9217,-0.0757,0.3879,-0.9217,0.0,0.549,-0.8286,-0.1092,0.3879,-0.9217,0.0,0.5598,-0.8286,0.0,0.5598,-0.8286,0.0,0.3879,-0.9217,0.0,0.3804,-0.9217,0.0757,0.5598,-0.8286,0.0,0.3804,-0.9217,0.0757,0.549,-0.8286,0.1092,0.549,-0.8286,0.1092,0.3804,-0.9217,0.0757,0.3584,-0.9217,0.1484,0.549,-0.8286,0.1092,0.3584,-0.9217,0.1484,0.5172,-0.8286,0.2142,0.5172,-0.8286,0.2142,0.3584,-0.9217,0.1484,0.3225,-0.9217,0.2155,0.5172,-0.8286,0.2142,0.3225,-0.9217,0.2155,0.4654,-0.8286,0.311,0.4654,-0.8286,0.311,0.3225,-0.9217,0.2155,0.2743,-0.9217,0.2743,0.4654,-0.8286,0.311,0.2743,-0.9217,0.2743,0.3958,-0.8286,0.3958,0.3958,-0.8286,0.3958,0.2743,-0.9217,0.2743,0.2155,-0.9217,0.3225,0.3958,-0.8286,0.3958,0.2155,-0.9217,0.3225,0.311,-0.8286,0.4654,0.311,-0.8286,0.4654,0.2155,-0.9217,0.3225,0.1484,-0.9217,0.3584,0.311,-0.8286,0.4654,0.1484,-0.9217,0.3584,0.2142,-0.8286,0.5172,0.2142,-0.8286,0.5172,0.1484,-0.9217,0.3584,0.0757,-0.9217,0.3804,0.2142,-0.8286,0.5172,0.0757,-0.9217,0.3804,0.1092,-0.8286,0.549,0.1092,-0.8286,0.549,0.0757,-0.9217,0.3804,0.0,-0.9217,0.3879,0.1092,-0.8286,0.549,0.0,-0.9217,0.3879,0.0,-0.8286,0.5598,0.0,-0.9217,0.3879,0.0,-0.9796,0.201,-0.0392,-0.9796,0.1971,0.0,-0.9217,0.3879,-0.0392,-0.9796,0.1971,-0.0757,-0.9217,0.3804,-0.0757,-0.9217,0.3804,-0.0392,-0.9796,0.1971,-0.0769,-0.9796,0.1857,-0.0757,-0.9217,0.3804,-0.0769,-0.9796,0.1857,-0.1484,-0.9217,0.3584,-0.1484,-0.9217,0.3584,-0.0769,-0.9796,0.1857,-0.1117,-0.9796,0.1671,-0.1484,-0.9217,0.3584,-0.1117,-0.9796,0.1671,-0.2155,-0.9217,0.3225,-0.2155,-0.9217,0.3225,-0.1117,-0.9796,0.1671,-0.1421,-0.9796,0.1421,-0.2155,-0.9217,0.3225,-0.1421,-0.9796,0.1421,-0.2743,-0.9217,0.2743,-0.2743,-0.9217,0.2743,-0.1421,-0.9796,0.1421,-0.1671,-0.9796,0.1117,-0.2743,-0.9217,0.2743,-0.1671,-0.9796,0.1117,-0.3225,-0.9217,0.2155,-0.3225,-0.9217,0.2155,-0.1671,-0.9796,0.1117,-0.1857,-0.9796,0.0769,-0.3225,-0.9217,0.2155,-0.1857,-0.9796,0.0769,-0.3584,-0.9217,0.1484,-0.3584,-0.9217,0.1484,-0.1857,-0.9796,0.0769,-0.1971,-0.9796,0.0392,-0.3584,-0.9217,0.1484,-0.1971,-0.9796,0.0392,-0.3804,-0.9217,0.0757,-0.3804,-0.9217,0.0757,-0.1971,-0.9796,0.0392,-0.201,-0.9796,0.0,-0.3804,-0.9217,0.0757,-0.201,-0.9796,0.0,-0.3879,-0.9217,0.0,-0.3879,-0.9217,0.0,-0.201,-0.9796,0.0,-0.1971,-0.9796,-0.0392,-0.3879,-0.9217,0.0,-0.1971,-0.9796,-0.0392,-0.3804,-0.9217,-0.0757,-0.3804,-0.9217,-0.0757,-0.1971,-0.9796,-0.0392,-0.1857,-0.9796,-0.0769,-0.3804,-0.9217,-0.0757,-0.1857,-0.9796,-0.0769,-0.3584,-0.9217,-0.1484,-0.3584,-0.9217,-0.1484,-0.1857,-0.9796,-0.0769,-0.1671,-0.9796,-0.1117,-0.3584,-0.9217,-0.1484,-0.1671,-0.9796,-0.1117,-0.3225,-0.9217,-0.2155,-0.3225,-0.9217,-0.2155,-0.1671,-0.9796,-0.1117,-0.1421,-0.9796,-0.1421,-0.3225,-0.9217,-0.2155,-0.1421,-0.9796,-0.1421,-0.2743,-0.9217,-0.2743,-0.2743,-0.9217,-0.2743,-0.1421,-0.9796,-0.1421,-0.1117,-0.9796,-0.1671,-0.2743,-0.9217,-0.2743,-0.1117,-0.9796,-0.1671,-0.2155,-0.9217,-0.3225,-0.2155,-0.9217,-0.3225,-0.1117,-0.9796,-0.1671,-0.0769,-0.9796,-0.1857,-0.2155,-0.9217,-0.3225,-0.0769,-0.9796,-0.1857,-0.1484,-0.9217,-0.3584,-0.1484,-0.9217,-0.3584,-0.0769,-0.9796,-0.1857,-0.0392,-0.9796,-0.1971,-0.1484,-0.9217,-0.3584,-0.0392,-0.9796,-0.1971,-0.0757,-0.9217,-0.3804,-0.0757,-0.9217,-0.3804,-0.0392,-0.9796,-0.1971,0.0,-0.9796,-0.201,-0.0757,-0.9217,-0.3804,0.0,-0.9796,-0.201,0.0,-0.9217,-0.3879,0.0,-0.9217,-0.3879,0.0,-0.9796,-0.201,0.0392,-0.9796,-0.1971,0.0,-0.9217,-0.3879,0.0392,-0.9796,-0.1971,0.0757,-0.9217,-0.3804,0.0757,-0.9217,-0.3804,0.0392,-0.9796,-0.1971,0.0769,-0.9796,-0.1857,0.0757,-0.9217,-0.3804,0.0769,-0.9796,-0.1857,0.1484,-0.9217,-0.3584,0.1484,-0.9217,-0.3584,0.0769,-0.9796,-0.1857,0.1117,-0.9796,-0.1671,0.1484,-0.9217,-0.3584,0.1117,-0.9796,-0.1671,0.2155,-0.9217,-0.3225,0.2155,-0.9217,-0.3225,0.1117,-0.9796,-0.1671,0.1421,-0.9796,-0.1421,0.2155,-0.9217,-0.3225,0.1421,-0.9796,-0.1421,0.2743,-0.9217,-0.2743,0.2743,-0.9217,-0.2743,0.1421,-0.9796,-0.1421,0.1671,-0.9796,-0.1117,0.2743,-0.9217,-0.2743,0.1671,-0.9796,-0.1117,0.3225,-0.9217,-0.2155,0.3225,-0.9217,-0.2155,0.1671,-0.9796,-0.1117,0.1857,-0.9796,-0.0769,0.3225,-0.9217,-0.2155,0.1857,-0.9796,-0.0769,0.3584,-0.9217,-0.1484,0.3584,-0.9217,-0.1484,0.1857,-0.9796,-0.0769,0.1971,-0.9796,-0.0392,0.3584,-0.9217,-0.1484,0.1971,-0.9796,-0.0392,0.3804,-0.9217,-0.0757,0.3804,-0.9217,-0.0757,0.1971,-0.9796,-0.0392,0.201,-0.9796,0.0,0.3804,-0.9217,-0.0757,0.201,-0.9796,0.0,0.3879,-0.9217,0.0,0.3879,-0.9217,0.0,0.201,-0.9796,0.0,0.1971,-0.9796,0.0392,0.3879,-0.9217,0.0,0.1971,-0.9796,0.0392,0.3804,-0.9217,0.0757,0.3804,-0.9217,0.0757,0.1971,-0.9796,0.0392,0.1857,-0.9796,0.0769,0.3804,-0.9217,0.0757,0.1857,-0.9796,0.0769,0.3584,-0.9217,0.1484,0.3584,-0.9217,0.1484,0.1857,-0.9796,0.0769,0.1671,-0.9796,0.1117,0.3584,-0.9217,0.1484,0.1671,-0.9796,0.1117,0.3225,-0.9217,0.2155,0.3225,-0.9217,0.2155,0.1671,-0.9796,0.1117,0.1421,-0.9796,0.1421,0.3225,-0.9217,0.2155,0.1421,-0.9796,0.1421,0.2743,-0.9217,0.2743,0.2743,-0.9217,0.2743,0.1421,-0.9796,0.1421,0.1117,-0.9796,0.1671,0.2743,-0.9217,0.2743,0.1117,-0.9796,0.1671,0.2155,-0.9217,0.3225,0.2155,-0.9217,0.3225,0.1117,-0.9796,0.1671,0.0769,-0.9796,0.1857,0.2155,-0.9217,0.3225,0.0769,-0.9796,0.1857,0.1484,-0.9217,0.3584,0.1484,-0.9217,0.3584,0.0769,-0.9796,0.1857,0.0392,-0.9796,0.1971,0.1484,-0.9217,0.3584,0.0392,-0.9796,0.1971,0.0757,-0.9217,0.3804,0.0757,-0.9217,0.3804,0.0392,-0.9796,0.1971,0.0,-0.9796,0.201,0.0757,-0.9217,0.3804,0.0,-0.9796,0.201,0.0,-0.9217,0.3879,0.0,-1.0,0.0,-0.0392,-0.9796,0.1971,0.0,-0.9796,0.201,0.0,-1.0,0.0,-0.0769,-0.9796,0.1857,-0.0392,-0.9796,0.1971,0.0,-1.0,0.0,-0.1117,-0.9796,0.1671,-0.0769,-0.9796,0.1857,0.0,-1.0,0.0,-0.1421,-0.9796,0.1421,-0.1117,-0.9796,0.1671,0.0,-1.0,0.0,-0.1671,-0.9796,0.1117,-0.1421,-0.9796,0.1421,0.0,-1.0,0.0,-0.1857,-0.9796,0.0769,-0.1671,-0.9796,0.1117,0.0,-1.0,0.0,-0.1971,-0.9796,0.0392,-0.1857,-0.9796,0.0769,0.0,-1.0,0.0,-0.201,-0.9796,0.0,-0.1971,-0.9796,0.0392,0.0,-1.0,0.0,-0.1971,-0.9796,-0.0392,-0.201,-0.9796,0.0,0.0,-1.0,0.0,-0.1857,-0.9796,-0.0769,-0.1971,-0.9796,-0.0392,0.0,-1.0,0.0,-0.1671,-0.9796,-0.1117,-0.1857,-0.9796,-0.0769,0.0,-1.0,0.0,-0.1421,-0.9796,-0.1421,-0.1671,-0.9796,-0.1117,0.0,-1.0,0.0,-0.1117,-0.9796,-0.1671,-0.1421,-0.9796,-0.1421,0.0,-1.0,0.0,-0.0769,-0.9796,-0.1857,-0.1117,-0.9796,-0.1671,0.0,-1.0,0.0,-0.0392,-0.9796,-0.1971,-0.0769,-0.9796,-0.1857,0.0,-1.0,0.0,0.0,-0.9796,-0.201,-0.0392,-0.9796,-0.1971,0.0,-1.0,0.0,0.0392,-0.9796,-0.1971,0.0,-0.9796,-0.201,0.0,-1.0,0.0,0.0769,-0.9796,-0.1857,0.0392,-0.9796,-0.1971,0.0,-1.0,0.0,0.1117,-0.9796,-0.1671,0.0769,-0.9796,-0.1857,0.0,-1.0,0.0,0.1421,-0.9796,-0.1421,0.1117,-0.9796,-0.1671,0.0,-1.0,0.0,0.1671,-0.9796,-0.1117,0.1421,-0.9796,-0.1421,0.0,-1.0,0.0,0.1857,-0.9796,-0.0769,0.1671,-0.9796,-0.1117,0.0,-1.0,0.0,0.1971,-0.9796,-0.0392,0.1857,-0.9796,-0.0769,0.0,-1.0,0.0,0.201,-0.9796,0.0,0.1971,-0.9796,-0.0392,0.0,-1.0,0.0,0.1971,-0.9796,0.0392,0.201,-0.9796,0.0,0.0,-1.0,0.0,0.1857,-0.9796,0.0769,0.1971,-0.9796,0.0392,0.0,-1.0,0.0,0.1671,-0.9796,0.1117,0.1857,-0.9796,0.0769,0.0,-1.0,0.0,0.1421,-0.9796,0.1421,0.1671,-0.9796,0.1117,0.0,-1.0,0.0,0.1117,-0.9796,0.1671,0.1421,-0.9796,0.1421,0.0,-1.0,0.0,0.0769,-0.9796,0.1857,0.1117,-0.9796,0.1671,0.0,-1.0,0.0,0.0392,-0.9796,0.1971,0.0769,-0.9796,0.1857,0.0,-1.0,0.0,0.0,-0.9796,0.201,0.0392,-0.9796,0.1971],"tangents":null,"uvs":[0.0,2.0,0.0,1.9375,0.0312,1.9375,0.0312,2.0,0.0312,1.9375,0.0625,1.9375,0.0625,2.0,0.0625,1.9375,0.0938,1.9375,0.0938,2.0,0.0938,1.9375,0.125,1.9375,0.125,2.0,0.125,1.9375,0.1562,1.9375,0.1562,2.0,0.1562,1.9375,0.1875,1.9375,0.1875,2.0,0.1875,1.9375,0.2187,1.9375,0.2187,2.0,0.2187,1.9375,0.25,1.9375,0.25,2.0,0.25,1.9375,0.2812,1.9375,0.2812,2.0,0.2812,1.9375,0.3125,1.9375,0.3125,2.0,0.3125,1.9375,0.3437,1.9375,0.3437,2.0,0.3437,1.9375,0.375,1.9375,0.375,2.0,0.375,1.9375,0.4062,1.9375,0.4062,2.0,0.4062,1.9375,0.4375,1.9375,0.4375,2.0,0.4375,1.9375,0.4688,1.9375,0.4688,2.0,0.4688,1.9375,0.5,1.9375,0.5,2.0,0.5,1.9375,0.5313,1.9375,0.5313,2.0,0.5313,1.9375,0.5625,1.9375,0.5625,2.0,0.5625,1.9375,0.5938,1.9375,0.5938,2.0,0.5938,1.9375,0.625,1.9375,0.625,2.0,0.625,1.9375,0.6563,1.9375,0.6563,2.0,0.6563,1.9375,0.6875,1.9375,0.6875,2.0,0.6875,1.9375,0.7188,1.9375,0.7188,2.0,0.7188,1.9375,0.75,1.9375,0.75,2.0,0.75,1.9375,0.7813,1.9375,0.7813,2.0,0.7813,1.9375,0.8125,1.9375,0.8125,2.0,0.8125,1.9375,0.8438,1.9375,0.8438,2.0,0.8438,1.9375,0.875,1.9375,0.875,2.0,0.875,1.9375,0.9063,1.9375,0.9063,2.0,0.9063,1.9375,0.9375,1.9375,0.9375,2.0,0.9375,1.9375,0.9688,1.9375,0.9688,2.0,0.9688,1.9375,1.0,1.9375,0.0,1.9375,0.0,1.875,0.0312,1.875,0.0,1.9375,0.0312,1.875,0.0312,1.9375,0.0312,1.9375,0.0312,1.875,0.0625,1.875,0.0312,1.9375,0.0625,1.875,0.0625,1.9375,0.0625,1.9375,0.0625,1.875,0.0938,1.875,0.0625,1.9375,0.0938,1.875,0.0938,1.9375,0.0938,1.9375,0.0938,1.875,0.125,1.875,0.0938,1.9375,0.125,1.875,0.125,1.9375,0.125,1.9375,0.125,1.875,0.1562,1.875,0.125,1.9375,0.1562,1.875,0.1562,1.9375,0.1562,1.9375,0.1562,1.875,0.1875,1.875,0.1562,1.9375,0.1875,1.875,0.1875,1.9375,0.1875,1.9375,0.1875,1.875,0.2187,1.875,0.1875,1.9375,0.2187,1.875,0.2187,1.9375,0.2187,1.9375,0.2187,1.875,0.25,1.875,0.2187,1.9375,0.25,1.875,0.25,1.9375,0.25,1.9375,0.25,1.875,0.2812,1.875,0.25,1.9375,0.2812,1.875,0.2812,1.9375,0.2812,1.9375,0.2812,1.875,0.3125,1.875,0.2812,1.9375,0.3125,1.875,0.3125,1.9375,0.3125,1.9375,0.3125,1.875,0.3437,1.875,0.3125,1.9375,0.3437,1.875,0.3437,1.9375,0.3437,1.9375,0.3437,1.875,0.375,1.875,0.3437,1.9375,0.375,1.875,0.375,1.9375,0.375,1.9375,0.375,1.875,0.4062,1.875,0.375,1.9375,0.4062,1.875,0.4062,1.9375,0.4062,1.9375,0.4062,1.875,0.4375,1.875,0.4062,1.9375,0.4375,1.875,0.4375,1.9375,0.4375,1.9375,0.4375,1.875,0.4688,1.875,0.4375,1.9375,0.4688,1.875,0.4688,1.9375,0.4688,1.9375,0.4688,1.875,0.5,1.875,0.4688,1.9375,0.5,1.875,0.5,1.9375,0.5,1.9375,0.5,1.875,0.5313,1.875,0.5,1.9375,0.5313,1.875,0.5313,1.9375,0.5313,1.9375,0.5313,1.875,0.5625,1.875,0.5313,1.9375,0.5625,1.875,0.5625,1.9375,0.5625,1.9375,0.5625,1.875,0.5938,1.875,0.5625,1.9375,0.5938,1.875,0.5938,1.9375,0.5938,1.9375,0.5938,1.875,0.625,1.875,0.5938,1.9375,0.625,1.875,0.625,1.9375,0.625,1.9375,0.625,1.875,0.6563,1.875,0.625,1.9375,0.6563,1.875,0.6563,1.9375,0.6563,1.9375,0.6563,1.875,0.6875,1.875,0.6563,1.9375,0.6875,1.875,0.6875,1.9375,0.6875,1.9375,0.6875,1.875,0.7188,1.875,0.6875,1.9375,0.7188,1.875,0.7188,1.9375,0.7188,1.9375,0.7188,1.875,0.75,1.875,0.7188,1.9375,0.75,1.875,0.75,1.9375,0.75,1.9375,0.75,1.875,0.7813,1.875,0.75,1.9375,0.7813,1.875,0.7813,1.9375,0.7813,1.9375,0.7813,1.875,0.8125,1.875,0.7813,1.9375,0.8125,1.875,0.8125,1.9375,0.8125,1.9375,0.8125,1.875,0.8438,1.875,0.8125,1.9375,0.8438,1.875,0.8438,1.9375,0.8438,1.9375,0.8438,1.875,0.875,1.875,0.8438,1.9375,0.875,1.875,0.875,1.9375,0.875,1.9375,0.875,1.875,0.9063,1.875,0.875,1.9375,0.9063,1.875,0.9063,1.9375,0.9063,1.9375,0.9063,1.875,0.9375,1.875,0.9063,1.9375,0.9375,1.875,0.9375,1.9375,0.9375,1.9375,0.9375,1.875,0.9688,1.875,0.9375,1.9375,0.9688,1.875,0.9688,1.9375,0.9688,1.9375,0.9688,1.875,1.0,1.875,0.9688,1.9375,1.0,1.875,1.0,1.9375,0.0,1.875,0.0,1.8125,0.0312,1.8125,0.0,1.875,0.0312,1.8125,0.0312,1.875,0.0312,1.875,0.0312,1.8125,0.0625,1.8125,0.0312,1.875,0.0625,1.8125,0.0625,1.875,0.0625,1.875,0.0625,1.8125,0.0938,1.8125,0.0625,1.875,0.0938,1.8125,0.0938,1.875,0.0938,1.875,0.0938,1.8125,0.125,1.8125,0.0938,1.875,0.125,1.8125,0.125,1.875,0.125,1.875,0.125,1.8125,0.1562,1.8125,0.125,1.875,0.1562,1.8125,0.1562,1.875,0.1562,1.875,0.1562,1.8125,0.1875,1.8125,0.1562,1.875,0.1875,1.8125,0.1875,1.875,0.1875,1.875,0.1875,1.8125,0.2187,1.8125,0.1875,1.875,0.2187,1.8125,0.2187,1.875,0.2187,1.875,0.2187,1.8125,0.25,1.8125,0.2187,1.875,0.25,1.8125,0.25,1.875,0.25,1.875,0.25,1.8125,0.2812,1.8125,0.25,1.875,0.2812,1.8125,0.2812,1.875,0.2812,1.875,0.2812,1.8125,0.3125,1.8125,0.2812,1.875,0.3125,1.8125,0.3125,1.875,0.3125,1.875,0.3125,1.8125,0.3437,1.8125,0.3125,1.875,0.3437,1.8125,0.3437,1.875,0.3437,1.875,0.3437,1.8125,0.375,1.8125,0.3437,1.875,0.375,1.8125,0.375,1.875,0.375,1.875,0.375,1.8125,0.4062,1.8125,0.375,1.875,0.4062,1.8125,0.4062,1.875,0.4062,1.875,0.4062,1.8125,0.4375,1.8125,0.4062,1.875,0.4375,1.8125,0.4375,1.875,0.4375,1.875,0.4375,1.8125,0.4688,1.8125,0.4375,1.875,0.4688,1.8125,0.4688,1.875,0.4688,1.875,0.4688,1.8125,0.5,1.8125,0.4688,1.875,0.5,1.8125,0.5,1.875,0.5,1.875,0.5,1.8125,0.5313,1.8125,0.5,1.875,0.5313,1.8125,0.5313,1.875,0.5313,1.875,0.5313,1.8125,0.5625,1.8125,0.5313,1.875,0.5625,1.8125,0.5625,1.875,0.5625,1.875,0.5625,1.8125,0.5938,1.8125,0.5625,1.875,0.5938,1.8125,0.5938,1.875,0.5938,1.875,0.5938,1.8125,0.625,1.8125,0.5938,1.875,0.625,1.8125,0.625,1.875,0.625,1.875,0.625,1.8125,0.6563,1.8125,0.625,1.875,0.6563,1.8125,0.6563,1.875,0.6563,1.875,0.6563,1.8125,0.6875,1.8125,0.6563,1.875,0.6875,1.8125,0.6875,1.875,0.6875,1.875,0.6875,1.8125,0.7188,1.8125,0.6875,1.875,0.7188,1.8125,0.7188,1.875,0.7188,1.875,0.7188,1.8125,0.75,1.8125,0.7188,1.875,0.75,1.8125,0.75,1.875,0.75,1.875,0.75,1.8125,0.7813,1.8125,0.75,1.875,0.7813,1.8125,0.7813,1.875,0.7813,1.875,0.7813,1.8125,0.8125,1.8125,0.7813,1.875,0.8125,1.8125,0.8125,1.875,0.8125,1.875,0.8125,1.8125,0.8438,1.8125,0.8125,1.875,0.8438,1.8125,0.8438,1.875,0.8438,1.875,0.8438,1.8125,0.875,1.8125,0.8438,1.875,0.875,1.8125,0.875,1.875,0.875,1.875,0.875,1.8125,0.9063,1.8125,0.875,1.875,0.9063,1.8125,0.9063,1.875,0.9063,1.875,0.9063,1.8125,0.9375,1.8125,0.9063,1.875,0.9375,1.8125,0.9375,1.875,0.9375,1.875,0.9375,1.8125,0.9688,1.8125,0.9375,1.875,0.9688,1.8125,0.9688,1.875,0.9688,1.875,0.9688,1.8125,1.0,1.8125,0.9688,1.875,1.0,1.8125,1.0,1.875,0.0,1.8125,0.0,1.75,0.0312,1.75,0.0,1.8125,0.0312,1.75,0.0312,1.8125,0.0312,1.8125,0.0312,1.75,0.0625,1.75,0.0312,1.8125,0.0625,1.75,0.0625,1.8125,0.0625,1.8125,0.0625,1.75,0.0938,1.75,0.0625,1.8125,0.0938,1.75,0.0938,1.8125,0.0938,1.8125,0.0938,1.75,0.125,1.75,0.0938,1.8125,0.125,1.75,0.125,1.8125,0.125,1.8125,0.125,1.75,0.1562,1.75,0.125,1.8125,0.1562,1.75,0.1562,1.8125,0.1562,1.8125,0.1562,1.75,0.1875,1.75,0.1562,1.8125,0.1875,1.75,0.1875,1.8125,0.1875,1.8125,0.1875,1.75,0.2187,1.75,0.1875,1.8125,0.2187,1.75,0.2187,1.8125,0.2187,1.8125,0.2187,1.75,0.25,1.75,0.2187,1.8125,0.25,1.75,0.25,1.8125,0.25,1.8125,0.25,1.75,0.2812,1.75,0.25,1.8125,0.2812,1.75,0.2812,1.8125,0.2812,1.8125,0.2812,1.75,0.3125,1.75,0.2812,1.8125,0.3125,1.75,0.3125,1.8125,0.3125,1.8125,0.3125,1.75,0.3437,1.75,0.3125,1.8125,0.3437,1.75,0.3437,1.8125,0.3437,1.8125,0.3437,1.75,0.375,1.75,0.3437,1.8125,0.375,1.75,0.375,1.8125,0.375,1.8125,0.375,1.75,0.4062,1.75,0.375,1.8125,0.4062,1.75,0.4062,1.8125,0.4062,1.8125,0.4062,1.75,0.4375,1.75,0.4062,1.8125,0.4375,1.75,0.4375,1.8125,0.4375,1.8125,0.4375,1.75,0.4688,1.75,0.4375,1.8125,0.4688,1.75,0.4688,1.8125,0.4688,1.8125,0.4688,1.75,0.5,1.75,0.4688,1.8125,0.5,1.75,0.5,1.8125,0.5,1.8125,0.5,1.75,0.5313,1.75,0.5,1.8125,0.5313,1.75,0.5313,1.8125,0.5313,1.8125,0.5313,1.75,0.5625,1.75,0.5313,1.8125,0.5625,1.75,0.5625,1.8125,0.5625,1.8125,0.5625,1.75,0.5938,1.75,0.5625,1.8125,0.5938,1.75,0.5938,1.8125,0.5938,1.8125,0.5938,1.75,0.625,1.75,0.5938,1.8125,0.625,1.75,0.625,1.8125,0.625,1.8125,0.625,1.75,0.6563,1.75,0.625,1.8125,0.6563,1.75,0.6563,1.8125,0.6563,1.8125,0.6563,1.75,0.6875,1.75,0.6563,1.8125,0.6875,1.75,0.6875,1.8125,0.6875,1.8125,0.6875,1.75,0.7188,1.75,0.6875,1.8125,0.7188,1.75,0.7188,1.8125,0.7188,1.8125,0.7188,1.75,0.75,1.75,0.7188,1.8125,0.75,1.75,0.75,1.8125,0.75,1.8125,0.75,1.75,0.7813,1.75,0.75,1.8125,0.7813,1.75,0.7813,1.8125,0.7813,1.8125,0.7813,1.75,0.8125,1.75,0.7813,1.8125,0.8125,1.75,0.8125,1.8125,0.8125,1.8125,0.8125,1.75,0.8438,1.75,0.8125,1.8125,0.8438,1.75,0.8438,1.8125,0.8438,1.8125,0.8438,1.75,0.875,1.75,0.8438,1.8125,0.875,1.75,0.875,1.8125,0.875,1.8125,0.875,1.75,0.9063,1.75,0.875,1.8125,0.9063,1.75,0.9063,1.8125,0.9063,1.8125,0.9063,1.75,0.9375,1.75,0.9063,1.8125,0.9375,1.75,0.9375,1.8125,0.9375,1.8125,0.9375,1.75,0.9688,1.75,0.9375,1.8125,0.9688,1.75,0.9688,1.8125,0.9688,1.8125,0.9688,1.75,1.0,1.75,0.9688,1.8125,1.0,1.75,1.0,1.8125,0.0,1.75,0.0,1.6875,0.0312,1.6875,0.0,1.75,0.0312,1.6875,0.0312,1.75,0.0312,1.75,0.0312,1.6875,0.0625,1.6875,0.0312,1.75,0.0625,1.6875,0.0625,1.75,0.0625,1.75,0.0625,1.6875,0.0938,1.6875,0.0625,1.75,0.0938,1.6875,0.0938,1.75,0.0938,1.75,0.0938,1.6875,0.125,1.6875,0.0938,1.75,0.125,1.6875,0.125,1.75,0.125,1.75,0.125,1.6875,0.1562,1.6875,0.125,1.75,0.1562,1.6875,0.1562,1.75,0.1562,1.75,0.1562,1.6875,0.1875,1.6875,0.1562,1.75,0.1875,1.6875,0.1875,1.75,0.1875,1.75,0.1875,1.6875,0.2187,1.6875,0.1875,1.75,0.2187,1.6875,0.2187,1.75,0.2187,1.75,0.2187,1.6875,0.25,1.6875,0.2187,1.75,0.25,1.6875,0.25,1.75,0.25,1.75,0.25,1.6875,0.2812,1.6875,0.25,1.75,0.2812,1.6875,0.2812,1.75,0.2812,1.75,0.2812,1.6875,0.3125,1.6875,0.2812,1.75,0.3125,1.6875,0.3125,1.75,0.3125,1.75,0.3125,1.6875,0.3437,1.6875,0.3125,1.75,0.3437,1.6875,0.3437,1.75,0.3437,1.75,0.3437,1.6875,0.375,1.6875,0.3437,1.75,0.375,1.6875,0.375,1.75,0.375,1.75,0.375,1.6875,0.4062,1.6875,0.375,1.75,0.4062,1.6875,0.4062,1.75,0.4062,1.75,0.4062,1.6875,0.4375,1.6875,0.4062,1.75,0.4375,1.6875,0.4375,1.75,0.4375,1.75,0.4375,1.6875,0.4688,1.6875,0.4375,1.75,0.4688,1.6875,0.4688,1.75,0.4688,1.75,0.4688,1.6875,0.5,1.6875,0.4688,1.75,0.5,1.6875,0.5,1.75,0.5,1.75,0.5,1.6875,0.5313,1.6875,0.5,1.75,0.5313,1.6875,0.5313,1.75,0.5313,1.75,0.5313,1.6875,0.5625,1.6875,0.5313,1.75,0.5625,1.6875,0.5625,1.75,0.5625,1.75,0.5625,1.6875,0.5938,1.6875,0.5625,1.75,0.5938,1.6875,0.5938,1.75,0.5938,1.75,0.5938,1.6875,0.625,1.6875,0.5938,1.75,0.625,1.6875,0.625,1.75,0.625,1.75,0.625,1.6875,0.6563,1.6875,0.625,1.75,0.6563,1.6875,0.6563,1.75,0.6563,1.75,0.6563,1.6875,0.6875,1.6875,0.6563,1.75,0.6875,1.6875,0.6875,1.75,0.6875,1.75,0.6875,1.6875,0.7188,1.6875,0.6875,1.75,0.7188,1.6875,0.7188,1.75,0.7188,1.75,0.7188,1.6875,0.75,1.6875,0.7188,1.75,0.75,1.6875,0.75,1.75,0.75,1.75,0.75,1.6875,0.7813,1.6875,0.75,1.75,0.7813,1.6875,0.7813,1.75,0.7813,1.75,0.7813,1.6875,0.8125,1.6875,0.7813,1.75,0.8125,1.6875,0.8125,1.75,0.8125,1.75,0.8125,1.6875,0.8438,1.6875,0.8125,1.75,0.8438,1.6875,0.8438,1.75,0.8438,1.75,0.8438,1.6875,0.875,1.6875,0.8438,1.75,0.875,1.6875,0.875,1.75,0.875,1.75,0.875,1.6875,0.9063,1.6875,0.875,1.75,0.9063,1.6875,0.9063,1.75,0.9063,1.75,0.9063,1.6875,0.9375,1.6875,0.9063,1.75,0.9375,1.6875,0.9375,1.75,0.9375,1.75,0.9375,1.6875,0.9688,1.6875,0.9375,1.75,0.9688,1.6875,0.9688,1.75,0.9688,1.75,0.9688,1.6875,1.0,1.6875,0.9688,1.75,1.0,1.6875,1.0,1.75,0.0,1.6875,0.0,1.625,0.0312,1.625,0.0,1.6875,0.0312,1.625,0.0312,1.6875,0.0312,1.6875,0.0312,1.625,0.0625,1.625,0.0312,1.6875,0.0625,1.625,0.0625,1.6875,0.0625,1.6875,0.0625,1.625,0.0938,1.625,0.0625,1.6875,0.0938,1.625,0.0938,1.6875,0.0938,1.6875,0.0938,1.625,0.125,1.625,0.0938,1.6875,0.125,1.625,0.125,1.6875,0.125,1.6875,0.125,1.625,0.1562,1.625,0.125,1.6875,0.1562,1.625,0.1562,1.6875,0.1562,1.6875,0.1562,1.625,0.1875,1.625,0.1562,1.6875,0.1875,1.625,0.1875,1.6875,0.1875,1.6875,0.1875,1.625,0.2187,1.625,0.1875,1.6875,0.2187,1.625,0.2187,1.6875,0.2187,1.6875,0.2187,1.625,0.25,1.625,0.2187,1.6875,0.25,1.625,0.25,1.6875,0.25,1.6875,0.25,1.625,0.2812,1.625,0.25,1.6875,0.2812,1.625,0.2812,1.6875,0.2812,1.6875,0.2812,1.625,0.3125,1.625,0.2812,1.6875,0.3125,1.625,0.3125,1.6875,0.3125,1.6875,0.3125,1.625,0.3437,1.625,0.3125,1.6875,0.3437,1.625,0.3437,1.6875,0.3437,1.6875,0.3437,1.625,0.375,1.625,0.3437,1.6875,0.375,1.625,0.375,1.6875,0.375,1.6875,0.375,1.625,0.4062,1.625,0.375,1.6875,0.4062,1.625,0.4062,1.6875,0.4062,1.6875,0.4062,1.625,0.4375,1.625,0.4062,1.6875,0.4375,1.625,0.4375,1.6875,0.4375,1.6875,0.4375,1.625,0.4688,1.625,0.4375,1.6875,0.4688,1.625,0.4688,1.6875,0.4688,1.6875,0.4688,1.625,0.5,1.625,0.4688,1.6875,0.5,1.625,0.5,1.6875,0.5,1.6875,0.5,1.625,0.5313,1.625,0.5,1.6875,0.5313,1.625,0.5313,1.6875,0.5313,1.6875,0.5313,1.625,0.5625,1.625,0.5313,1.6875,0.5625,1.625,0.5625,1.6875,0.5625,1.6875,0.5625,1.625,0.5938,1.625,0.5625,1.6875,0.5938,1.625,0.5938,1.6875,0.5938,1.6875,0.5938,1.625,0.625,1.625,0.5938,1.6875,0.625,1.625,0.625,1.6875,0.625,1.6875,0.625,1.625,0.6563,1.625,0.625,1.6875,0.6563,1.625,0.6563,1.6875,0.6563,1.6875,0.6563,1.625,0.6875,1.625,0.6563,1.6875,0.6875,1.625,0.6875,1.6875,0.6875,1.6875,0.6875,1.625,0.7188,1.625,0.6875,1.6875,0.7188,1.625,0.7188,1.6875,0.7188,1.6875,0.7188,1.625,0.75,1.625,0.7188,1.6875,0.75,1.625,0.75,1.6875,0.75,1.6875,0.75,1.625,0.7813,1.625,0.75,1.6875,0.7813,1.625,0.7813,1.6875,0.7813,1.6875,0.7813,1.625,0.8125,1.625,0.7813,1.6875,0.8125,1.625,0.8125,1.6875,0.8125,1.6875,0.8125,1.625,0.8438,1.625,0.8125,1.6875,0.8438,1.625,0.8438,1.6875,0.8438,1.6875,0.8438,1.625,0.875,1.625,0.8438,1.6875,0.875,1.625,0.875,1.6875,0.875,1.6875,0.875,1.625,0.9063,1.625,0.875,1.6875,0.9063,1.625,0.9063,1.6875,0.9063,1.6875,0.9063,1.625,0.9375,1.625,0.9063,1.6875,0.9375,1.625,0.9375,1.6875,0.9375,1.6875,0.9375,1.625,0.9688,1.625,0.9375,1.6875,0.9688,1.625,0.9688,1.6875,0.9688,1.6875,0.9688,1.625,1.0,1.625,0.9688,1.6875,1.0,1.625,1.0,1.6875,0.0,1.625,0.0,1.5625,0.0312,1.5625,0.0,1.625,0.0312,1.5625,0.0312,1.625,0.0312,1.625,0.0312,1.5625,0.0625,1.5625,0.0312,1.625,0.0625,1.5625,0.0625,1.625,0.0625,1.625,0.0625,1.5625,0.0938,1.5625,0.0625,1.625,0.0938,1.5625,0.0938,1.625,0.0938,1.625,0.0938,1.5625,0.125,1.5625,0.0938,1.625,0.125,1.5625,0.125,1.625,0.125,1.625,0.125,1.5625,0.1562,1.5625,0.125,1.625,0.1562,1.5625,0.1562,1.625,0.1562,1.625,0.1562,1.5625,0.1875,1.5625,0.1562,1.625,0.1875,1.5625,0.1875,1.625,0.1875,1.625,0.1875,1.5625,0.2187,1.5625,0.1875,1.625,0.2187,1.5625,0.2187,1.625,0.2187,1.625,0.2187,1.5625,0.25,1.5625,0.2187,1.625,0.25,1.5625,0.25,1.625,0.25,1.625,0.25,1.5625,0.2812,1.5625,0.25,1.625,0.2812,1.5625,0.2812,1.625,0.2812,1.625,0.2812,1.5625,0.3125,1.5625,0.2812,1.625,0.3125,1.5625,0.3125,1.625,0.3125,1.625,0.3125,1.5625,0.3437,1.5625,0.3125,1.625,0.3437,1.5625,0.3437,1.625,0.3437,1.625,0.3437,1.5625,0.375,1.5625,0.3437,1.625,0.375,1.5625,0.375,1.625,0.375,1.625,0.375,1.5625,0.4062,1.5625,0.375,1.625,0.4062,1.5625,0.4062,1.625,0.4062,1.625,0.4062,1.5625,0.4375,1.5625,0.4062,1.625,0.4375,1.5625,0.4375,1.625,0.4375,1.625,0.4375,1.5625,0.4688,1.5625,0.4375,1.625,0.4688,1.5625,0.4688,1.625,0.4688,1.625,0.4688,1.5625,0.5,1.5625,0.4688,1.625,0.5,1.5625,0.5,1.625,0.5,1.625,0.5,1.5625,0.5313,1.5625,0.5,1.625,0.5313,1.5625,0.5313,1.625,0.5313,1.625,0.5313,1.5625,0.5625,1.5625,0.5313,1.625,0.5625,1.5625,0.5625,1.625,0.5625,1.625,0.5625,1.5625,0.5938,1.5625,0.5625,1.625,0.5938,1.5625,0.5938,1.625,0.5938,1.625,0.5938,1.5625,0.625,1.5625,0.5938,1.625,0.625,1.5625,0.625,1.625,0.625,1.625,0.625,1.5625,0.6563,1.5625,0.625,1.625,0.6563,1.5625,0.6563,1.625,0.6563,1.625,0.6563,1.5625,0.6875,1.5625,0.6563,1.625,0.6875,1.5625,0.6875,1.625,0.6875,1.625,0.6875,1.5625,0.7188,1.5625,0.6875,1.625,0.7188,1.5625,0.7188,1.625,0.7188,1.625,0.7188,1.5625,0.75,1.5625,0.7188,1.625,0.75,1.5625,0.75,1.625,0.75,1.625,0.75,1.5625,0.7813,1.5625,0.75,1.625,0.7813,1.5625,0.7813,1.625,0.7813,1.625,0.7813,1.5625,0.8125,1.5625,0.7813,1.625,0.8125,1.5625,0.8125,1.625,0.8125,1.625,0.8125,1.5625,0.8438,1.5625,0.8125,1.625,0.8438,1.5625,0.8438,1.625,0.8438,1.625,0.8438,1.5625,0.875,1.5625,0.8438,1.625,0.875,1.5625,0.875,1.625,0.875,1.625,0.875,1.5625,0.9063,1.5625,0.875,1.625,0.9063,1.5625,0.9063,1.625,0.9063,1.625,0.9063,1.5625,0.9375,1.5625,0.9063,1.625,0.9375,1.5625,0.9375,1.625,0.9375,1.625,0.9375,1.5625,0.9688,1.5625,0.9375,1.625,0.9688,1.5625,0.9688,1.625,0.9688,1.625,0.9688,1.5625,1.0,1.5625,0.9688,1.625,1.0,1.5625,1.0,1.625,0.0,1.5625,0.0,1.5,0.0312,1.5,0.0,1.5625,0.0312,1.5,0.0312,1.5625,0.0312,1.5625,0.0312,1.5,0.0625,1.5,0.0312,1.5625,0.0625,1.5,0.0625,1.5625,0.0625,1.5625,0.0625,1.5,0.0938,1.5,0.0625,1.5625,0.0938,1.5,0.0938,1.5625,0.0938,1.5625,0.0938,1.5,0.125,1.5,0.0938,1.5625,0.125,1.5,0.125,1.5625,0.125,1.5625,0.125,1.5,0.1562,1.5,0.125,1.5625,0.1562,1.5,0.1562,1.5625,0.1562,1.5625,0.1562,1.5,0.1875,1.5,0.1562,1.5625,0.1875,1.5,0.1875,1.5625,0.1875,1.5625,0.1875,1.5,0.2187,1.5,0.1875,1.5625,0.2187,1.5,0.2187,1.5625,0.2187,1.5625,0.2187,1.5,0.25,1.5,0.2187,1.5625,0.25,1.5,0.25,1.5625,0.25,1.5625,0.25,1.5,0.2812,1.5,0.25,1.5625,0.2812,1.5,0.2812,1.5625,0.2812,1.5625,0.2812,1.5,0.3125,1.5,0.2812,1.5625,0.3125,1.5,0.3125,1.5625,0.3125,1.5625,0.3125,1.5,0.3437,1.5,0.3125,1.5625,0.3437,1.5,0.3437,1.5625,0.3437,1.5625,0.3437,1.5,0.375,1.5,0.3437,1.5625,0.375,1.5,0.375,1.5625,0.375,1.5625,0.375,1.5,0.4062,1.5,0.375,1.5625,0.4062,1.5,0.4062,1.5625,0.4062,1.5625,0.4062,1.5,0.4375,1.5,0.4062,1.5625,0.4375,1.5,0.4375,1.5625,0.4375,1.5625,0.4375,1.5,0.4688,1.5,0.4375,1.5625,0.4688,1.5,0.4688,1.5625,0.4688,1.5625,0.4688,1.5,0.5,1.5,0.4688,1.5625,0.5,1.5,0.5,1.5625,0.5,1.5625,0.5,1.5,0.5313,1.5,0.5,1.5625,0.5313,1.5,0.5313,1.5625,0.5313,1.5625,0.5313,1.5,0.5625,1.5,0.5313,1.5625,0.5625,1.5,0.5625,1.5625,0.5625,1.5625,0.5625,1.5,0.5938,1.5,0.5625,1.5625,0.5938,1.5,0.5938,1.5625,0.5938,1.5625,0.5938,1.5,0.625,1.5,0.5938,1.5625,0.625,1.5,0.625,1.5625,0.625,1.5625,0.625,1.5,0.6563,1.5,0.625,1.5625,0.6563,1.5,0.6563,1.5625,0.6563,1.5625,0.6563,1.5,0.6875,1.5,0.6563,1.5625,0.6875,1.5,0.6875,1.5625,0.6875,1.5625,0.6875,1.5,0.7188,1.5,0.6875,1.5625,0.7188,1.5,0.7188,1.5625,0.7188,1.5625,0.7188,1.5,0.75,1.5,0.7188,1.5625,0.75,1.5,0.75,1.5625,0.75,1.5625,0.75,1.5,0.7813,1.5,0.75,1.5625,0.7813,1.5,0.7813,1.5625,0.7813,1.5625,0.7813,1.5,0.8125,1.5,0.7813,1.5625,0.8125,1.5,0.8125,1.5625,0.8125,1.5625,0.8125,1.5,0.8438,1.5,0.8125,1.5625,0.8438,1.5,0.8438,1.5625,0.8438,1.5625,0.8438,1.5,0.875,1.5,0.8438,1.5625,0.875,1.5,0.875,1.5625,0.875,1.5625,0.875,1.5,0.9063,1.5,0.875,1.5625,0.9063,1.5,0.9063,1.5625,0.9063,1.5625,0.9063,1.5,0.9375,1.5,0.9063,1.5625,0.9375,1.5,0.9375,1.5625,0.9375,1.5625,0.9375,1.5,0.9688,1.5,0.9375,1.5625,0.9688,1.5,0.9688,1.5625,0.9688,1.5625,0.9688,1.5,1.0,1.5,0.9688,1.5625,1.0,1.5,1.0,1.5625,0.0,1.5,0.0,1.4375,0.0312,1.4375,0.0,1.5,0.0312,1.4375,0.0312,1.5,0.0312,1.5,0.0312,1.4375,0.0625,1.4375,0.0312,1.5,0.0625,1.4375,0.0625,1.5,0.0625,1.5,0.0625,1.4375,0.0938,1.4375,0.0625,1.5,0.0938,1.4375,0.0938,1.5,0.0938,1.5,0.0938,1.4375,0.125,1.4375,0.0938,1.5,0.125,1.4375,0.125,1.5,0.125,1.5,0.125,1.4375,0.1562,1.4375,0.125,1.5,0.1562,1.4375,0.1562,1.5,0.1562,1.5,0.1562,1.4375,0.1875,1.4375,0.1562,1.5,0.1875,1.4375,0.1875,1.5,0.1875,1.5,0.1875,1.4375,0.2187,1.4375,0.1875,1.5,0.2187,1.4375,0.2187,1.5,0.2187,1.5,0.2187,1.4375,0.25,1.4375,0.2187,1.5,0.25,1.4375,0.25,1.5,0.25,1.5,0.25,1.4375,0.2812,1.4375,0.25,1.5,0.2812,1.4375,0.2812,1.5,0.2812,1.5,0.2812,1.4375,0.3125,1.4375,0.2812,1.5,0.3125,1.4375,0.3125,1.5,0.3125,1.5,0.3125,1.4375,0.3437,1.4375,0.3125,1.5,0.3437,1.4375,0.3437,1.5,0.3437,1.5,0.3437,1.4375,0.375,1.4375,0.3437,1.5,0.375,1.4375,0.375,1.5,0.375,1.5,0.375,1.4375,0.4062,1.4375,0.375,1.5,0.4062,1.4375,0.4062,1.5,0.4062,1.5,0.4062,1.4375,0.4375,1.4375,0.4062,1.5,0.4375,1.4375,0.4375,1.5,0.4375,1.5,0.4375,1.4375,0.4688,1.4375,0.4375,1.5,0.4688,1.4375,0.4688,1.5,0.4688,1.5,0.4688,1.4375,0.5,1.4375,0.4688,1.5,0.5,1.4375,0.5,1.5,0.5,1.5,0.5,1.4375,0.5313,1.4375,0.5,1.5,0.5313,1.4375,0.5313,1.5,0.5313,1.5,0.5313,1.4375,0.5625,1.4375,0.5313,1.5,0.5625,1.4375,0.5625,1.5,0.5625,1.5,0.5625,1.4375,0.5938,1.4375,0.5625,1.5,0.5938,1.4375,0.5938,1.5,0.5938,1.5,0.5938,1.4375,0.625,1.4375,0.5938,1.5,0.625,1.4375,0.625,1.5,0.625,1.5,0.625,1.4375,0.6563,1.4375,0.625,1.5,0.6563,1.4375,0.6563,1.5,0.6563,1.5,0.6563,1.4375,0.6875,1.4375,0.6563,1.5,0.6875,1.4375,0.6875,1.5,0.6875,1.5,0.6875,1.4375,0.7188,1.4375,0.6875,1.5,0.7188,1.4375,0.7188,1.5,0.7188,1.5,0.7188,1.4375,0.75,1.4375,0.7188,1.5,0.75,1.4375,0.75,1.5,0.75,1.5,0.75,1.4375,0.7813,1.4375,0.75,1.5,0.7813,1.4375,0.7813,1.5,0.7813,1.5,0.7813,1.4375,0.8125,1.4375,0.7813,1.5,0.8125,1.4375,0.8125,1.5,0.8125,1.5,0.8125,1.4375,0.8438,1.4375,0.8125,1.5,0.8438,1.4375,0.8438,1.5,0.8438,1.5,0.8438,1.4375,0.875,1.4375,0.8438,1.5,0.875,1.4375,0.875,1.5,0.875,1.5,0.875,1.4375,0.9063,1.4375,0.875,1.5,0.9063,1.4375,0.9063,1.5,0.9063,1.5,0.9063,1.4375,0.9375,1.4375,0.9063,1.5,0.9375,1.4375,0.9375,1.5,0.9375,1.5,0.9375,1.4375,0.9688,1.4375,0.9375,1.5,0.9688,1.4375,0.9688,1.5,0.9688,1.5,0.9688,1.4375,1.0,1.4375,0.9688,1.5,1.0,1.4375,1.0,1.5,0.0,1.4375,0.0,1.375,0.0312,1.375,0.0,1.4375,0.0312,1.375,0.0312,1.4375,0.0312,1.4375,0.0312,1.375,0.0625,1.375,0.0312,1.4375,0.0625,1.375,0.0625,1.4375,0.0625,1.4375,0.0625,1.375,0.0938,1.375,0.0625,1.4375,0.0938,1.375,0.0938,1.4375,0.0938,1.4375,0.0938,1.375,0.125,1.375,0.0938,1.4375,0.125,1.375,0.125,1.4375,0.125,1.4375,0.125,1.375,0.1562,1.375,0.125,1.4375,0.1562,1.375,0.1562,1.4375,0.1562,1.4375,0.1562,1.375,0.1875,1.375,0.1562,1.4375,0.1875,1.375,0.1875,1.4375,0.1875,1.4375,0.1875,1.375,0.2187,1.375,0.1875,1.4375,0.2187,1.375,0.2187,1.4375,0.2187,1.4375,0.2187,1.375,0.25,1.375,0.2187,1.4375,0.25,1.375,0.25,1.4375,0.25,1.4375,0.25,1.375,0.2812,1.375,0.25,1.4375,0.2812,1.375,0.2812,1.4375,0.2812,1.4375,0.2812,1.375,0.3125,1.375,0.2812,1.4375,0.3125,1.375,0.3125,1.4375,0.3125,1.4375,0.3125,1.375,0.3437,1.375,0.3125,1.4375,0.3437,1.375,0.3437,1.4375,0.3437,1.4375,0.3437,1.375,0.375,1.375,0.3437,1.4375,0.375,1.375,0.375,1.4375,0.375,1.4375,0.375,1.375,0.4062,1.375,0.375,1.4375,0.4062,1.375,0.4062,1.4375,0.4062,1.4375,0.4062,1.375,0.4375,1.375,0.4062,1.4375,0.4375,1.375,0.4375,1.4375,0.4375,1.4375,0.4375,1.375,0.4688,1.375,0.4375,1.4375,0.4688,1.375,0.4688,1.4375,0.4688,1.4375,0.4688,1.375,0.5,1.375,0.4688,1.4375,0.5,1.375,0.5,1.4375,0.5,1.4375,0.5,1.375,0.5313,1.375,0.5,1.4375,0.5313,1.375,0.5313,1.4375,0.5313,1.4375,0.5313,1.375,0.5625,1.375,0.5313,1.4375,0.5625,1.375,0.5625,1.4375,0.5625,1.4375,0.5625,1.375,0.5938,1.375,0.5625,1.4375,0.5938,1.375,0.5938,1.4375,0.5938,1.4375,0.5938,1.375,0.625,1.375,0.5938,1.4375,0.625,1.375,0.625,1.4375,0.625,1.4375,0.625,1.375,0.6563,1.375,0.625,1.4375,0.6563,1.375,0.6563,1.4375,0.6563,1.4375,0.6563,1.375,0.6875,1.375,0.6563,1.4375,0.6875,1.375,0.6875,1.4375,0.6875,1.4375,0.6875,1.375,0.7188,1.375,0.6875,1.4375,0.7188,1.375,0.7188,1.4375,0.7188,1.4375,0.7188,1.375,0.75,1.375,0.7188,1.4375,0.75,1.375,0.75,1.4375,0.75,1.4375,0.75,1.375,0.7813,1.375,0.75,1.4375,0.7813,1.375,0.7813,1.4375,0.7813,1.4375,0.7813,1.375,0.8125,1.375,0.7813,1.4375,0.8125,1.375,0.8125,1.4375,0.8125,1.4375,0.8125,1.375,0.8438,1.375,0.8125,1.4375,0.8438,1.375,0.8438,1.4375,0.8438,1.4375,0.8438,1.375,0.875,1.375,0.8438,1.4375,0.875,1.375,0.875,1.4375,0.875,1.4375,0.875,1.375,0.9063,1.375,0.875,1.4375,0.9063,1.375,0.9063,1.4375,0.9063,1.4375,0.9063,1.375,0.9375,1.375,0.9063,1.4375,0.9375,1.375,0.9375,1.4375,0.9375,1.4375,0.9375,1.375,0.9688,1.375,0.9375,1.4375,0.9688,1.375,0.9688,1.4375,0.9688,1.4375,0.9688,1.375,1.0,1.375,0.9688,1.4375,1.0,1.375,1.0,1.4375,0.0,1.375,0.0,1.3125,0.0312,1.3125,0.0,1.375,0.0312,1.3125,0.0312,1.375,0.0312,1.375,0.0312,1.3125,0.0625,1.3125,0.0312,1.375,0.0625,1.3125,0.0625,1.375,0.0625,1.375,0.0625,1.3125,0.0938,1.3125,0.0625,1.375,0.0938,1.3125,0.0938,1.375,0.0938,1.375,0.0938,1.3125,0.125,1.3125,0.0938,1.375,0.125,1.3125,0.125,1.375,0.125,1.375,0.125,1.3125,0.1562,1.3125,0.125,1.375,0.1562,1.3125,0.1562,1.375,0.1562,1.375,0.1562,1.3125,0.1875,1.3125,0.1562,1.375,0.1875,1.3125,0.1875,1.375,0.1875,1.375,0.1875,1.3125,0.2187,1.3125,0.1875,1.375,0.2187,1.3125,0.2187,1.375,0.2187,1.375,0.2187,1.3125,0.25,1.3125,0.2187,1.375,0.25,1.3125,0.25,1.375,0.25,1.375,0.25,1.3125,0.2812,1.3125,0.25,1.375,0.2812,1.3125,0.2812,1.375,0.2812,1.375,0.2812,1.3125,0.3125,1.3125,0.2812,1.375,0.3125,1.3125,0.3125,1.375,0.3125,1.375,0.3125,1.3125,0.3437,1.3125,0.3125,1.375,0.3437,1.3125,0.3437,1.375,0.3437,1.375,0.3437,1.3125,0.375,1.3125,0.3437,1.375,0.375,1.3125,0.375,1.375,0.375,1.375,0.375,1.3125,0.4062,1.3125,0.375,1.375,0.4062,1.3125,0.4062,1.375,0.4062,1.375,0.4062,1.3125,0.4375,1.3125,0.4062,1.375,0.4375,1.3125,0.4375,1.375,0.4375,1.375,0.4375,1.3125,0.4688,1.3125,0.4375,1.375,0.4688,1.3125,0.4688,1.375,0.4688,1.375,0.4688,1.3125,0.5,1.3125,0.4688,1.375,0.5,1.3125,0.5,1.375,0.5,1.375,0.5,1.3125,0.5313,1.3125,0.5,1.375,0.5313,1.3125,0.5313,1.375,0.5313,1.375,0.5313,1.3125,0.5625,1.3125,0.5313,1.375,0.5625,1.3125,0.5625,1.375,0.5625,1.375,0.5625,1.3125,0.5938,1.3125,0.5625,1.375,0.5938,1.3125,0.5938,1.375,0.5938,1.375,0.5938,1.3125,0.625,1.3125,0.5938,1.375,0.625,1.3125,0.625,1.375,0.625,1.375,0.625,1.3125,0.6563,1.3125,0.625,1.375,0.6563,1.3125,0.6563,1.375,0.6563,1.375,0.6563,1.3125,0.6875,1.3125,0.6563,1.375,0.6875,1.3125,0.6875,1.375,0.6875,1.375,0.6875,1.3125,0.7188,1.3125,0.6875,1.375,0.7188,1.3125,0.7188,1.375,0.7188,1.375,0.7188,1.3125,0.75,1.3125,0.7188,1.375,0.75,1.3125,0.75,1.375,0.75,1.375,0.75,1.3125,0.7813,1.3125,0.75,1.375,0.7813,1.3125,0.7813,1.375,0.7813,1.375,0.7813,1.3125,0.8125,1.3125,0.7813,1.375,0.8125,1.3125,0.8125,1.375,0.8125,1.375,0.8125,1.3125,0.8438,1.3125,0.8125,1.375,0.8438,1.3125,0.8438,1.375,0.8438,1.375,0.8438,1.3125,0.875,1.3125,0.8438,1.375,0.875,1.3125,0.875,1.375,0.875,1.375,0.875,1.3125,0.9063,1.3125,0.875,1.375,0.9063,1.3125,0.9063,1.375,0.9063,1.375,0.9063,1.3125,0.9375,1.3125,0.9063,1.375,0.9375,1.3125,0.9375,1.375,0.9375,1.375,0.9375,1.3125,0.9688,1.3125,0.9375,1.375,0.9688,1.3125,0.9688,1.375,0.9688,1.375,0.9688,1.3125,1.0,1.3125,0.9688,1.375,1.0,1.3125,1.0,1.375,0.0,1.3125,0.0,1.25,0.0312,1.25,0.0,1.3125,0.0312,1.25,0.0312,1.3125,0.0312,1.3125,0.0312,1.25,0.0625,1.25,0.0312,1.3125,0.0625,1.25,0.0625,1.3125,0.0625,1.3125,0.0625,1.25,0.0938,1.25,0.0625,1.3125,0.0938,1.25,0.0938,1.3125,0.0938,1.3125,0.0938,1.25,0.125,1.25,0.0938,1.3125,0.125,1.25,0.125,1.3125,0.125,1.3125,0.125,1.25,0.1562,1.25,0.125,1.3125,0.1562,1.25,0.1562,1.3125,0.1562,1.3125,0.1562,1.25,0.1875,1.25,0.1562,1.3125,0.1875,1.25,0.1875,1.3125,0.1875,1.3125,0.1875,1.25,0.2187,1.25,0.1875,1.3125,0.2187,1.25,0.2187,1.3125,0.2187,1.3125,0.2187,1.25,0.25,1.25,0.2187,1.3125,0.25,1.25,0.25,1.3125,0.25,1.3125,0.25,1.25,0.2812,1.25,0.25,1.3125,0.2812,1.25,0.2812,1.3125,0.2812,1.3125,0.2812,1.25,0.3125,1.25,0.2812,1.3125,0.3125,1.25,0.3125,1.3125,0.3125,1.3125,0.3125,1.25,0.3437,1.25,0.3125,1.3125,0.3437,1.25,0.3437,1.3125,0.3437,1.3125,0.3437,1.25,0.375,1.25,0.3437,1.3125,0.375,1.25,0.375,1.3125,0.375,1.3125,0.375,1.25,0.4062,1.25,0.375,1.3125,0.4062,1.25,0.4062,1.3125,0.4062,1.3125,0.4062,1.25,0.4375,1.25,0.4062,1.3125,0.4375,1.25,0.4375,1.3125,0.4375,1.3125,0.4375,1.25,0.4688,1.25,0.4375,1.3125,0.4688,1.25,0.4688,1.3125,0.4688,1.3125,0.4688,1.25,0.5,1.25,0.4688,1.3125,0.5,1.25,0.5,1.3125,0.5,1.3125,0.5,1.25,0.5313,1.25,0.5,1.3125,0.5313,1.25,0.5313,1.3125,0.5313,1.3125,0.5313,1.25,0.5625,1.25,0.5313,1.3125,0.5625,1.25,0.5625,1.3125,0.5625,1.3125,0.5625,1.25,0.5938,1.25,0.5625,1.3125,0.5938,1.25,0.5938,1.3125,0.5938,1.3125,0.5938,1.25,0.625,1.25,0.5938,1.3125,0.625,1.25,0.625,1.3125,0.625,1.3125,0.625,1.25,0.6563,1.25,0.625,1.3125,0.6563,1.25,0.6563,1.3125,0.6563,1.3125,0.6563,1.25,0.6875,1.25,0.6563,1.3125,0.6875,1.25,0.6875,1.3125,0.6875,1.3125,0.6875,1.25,0.7188,1.25,0.6875,1.3125,0.7188,1.25,0.7188,1.3125,0.7188,1.3125,0.7188,1.25,0.75,1.25,0.7188,1.3125,0.75,1.25,0.75,1.3125,0.75,1.3125,0.75,1.25,0.7813,1.25,0.75,1.3125,0.7813,1.25,0.7813,1.3125,0.7813,1.3125,0.7813,1.25,0.8125,1.25,0.7813,1.3125,0.8125,1.25,0.8125,1.3125,0.8125,1.3125,0.8125,1.25,0.8438,1.25,0.8125,1.3125,0.8438,1.25,0.8438,1.3125,0.8438,1.3125,0.8438,1.25,0.875,1.25,0.8438,1.3125,0.875,1.25,0.875,1.3125,0.875,1.3125,0.875,1.25,0.9063,1.25,0.875,1.3125,0.9063,1.25,0.9063,1.3125,0.9063,1.3125,0.9063,1.25,0.9375,1.25,0.9063,1.3125,0.9375,1.25,0.9375,1.3125,0.9375,1.3125,0.9375,1.25,0.9688,1.25,0.9375,1.3125,0.9688,1.25,0.9688,1.3125,0.9688,1.3125,0.9688,1.25,1.0,1.25,0.9688,1.3125,1.0,1.25,1.0,1.3125,0.0,1.25,0.0,1.1875,0.0312,1.1875,0.0,1.25,0.0312,1.1875,0.0312,1.25,0.0312,1.25,0.0312,1.1875,0.0625,1.1875,0.0312,1.25,0.0625,1.1875,0.0625,1.25,0.0625,1.25,0.0625,1.1875,0.0938,1.1875,0.0625,1.25,0.0938,1.1875,0.0938,1.25,0.0938,1.25,0.0938,1.1875,0.125,1.1875,0.0938,1.25,0.125,1.1875,0.125,1.25,0.125,1.25,0.125,1.1875,0.1562,1.1875,0.125,1.25,0.1562,1.1875,0.1562,1.25,0.1562,1.25,0.1562,1.1875,0.1875,1.1875,0.1562,1.25,0.1875,1.1875,0.1875,1.25,0.1875,1.25,0.1875,1.1875,0.2187,1.1875,0.1875,1.25,0.2187,1.1875,0.2187,1.25,0.2187,1.25,0.2187,1.1875,0.25,1.1875,0.2187,1.25,0.25,1.1875,0.25,1.25,0.25,1.25,0.25,1.1875,0.2812,1.1875,0.25,1.25,0.2812,1.1875,0.2812,1.25,0.2812,1.25,0.2812,1.1875,0.3125,1.1875,0.2812,1.25,0.3125,1.1875,0.3125,1.25,0.3125,1.25,0.3125,1.1875,0.3437,1.1875,0.3125,1.25,0.3437,1.1875,0.3437,1.25,0.3437,1.25,0.3437,1.1875,0.375,1.1875,0.3437,1.25,0.375,1.1875,0.375,1.25,0.375,1.25,0.375,1.1875,0.4062,1.1875,0.375,1.25,0.4062,1.1875,0.4062,1.25,0.4062,1.25,0.4062,1.1875,0.4375,1.1875,0.4062,1.25,0.4375,1.1875,0.4375,1.25,0.4375,1.25,0.4375,1.1875,0.4688,1.1875,0.4375,1.25,0.4688,1.1875,0.4688,1.25,0.4688,1.25,0.4688,1.1875,0.5,1.1875,0.4688,1.25,0.5,1.1875,0.5,1.25,0.5,1.25,0.5,1.1875,0.5313,1.1875,0.5,1.25,0.5313,1.1875,0.5313,1.25,0.5313,1.25,0.5313,1.1875,0.5625,1.1875,0.5313,1.25,0.5625,1.1875,0.5625,1.25,0.5625,1.25,0.5625,1.1875,0.5938,1.1875,0.5625,1.25,0.5938,1.1875,0.5938,1.25,0.5938,1.25,0.5938,1.1875,0.625,1.1875,0.5938,1.25,0.625,1.1875,0.625,1.25,0.625,1.25,0.625,1.1875,0.6563,1.1875,0.625,1.25,0.6563,1.1875,0.6563,1.25,0.6563,1.25,0.6563,1.1875,0.6875,1.1875,0.6563,1.25,0.6875,1.1875,0.6875,1.25,0.6875,1.25,0.6875,1.1875,0.7188,1.1875,0.6875,1.25,0.7188,1.1875,0.7188,1.25,0.7188,1.25,0.7188,1.1875,0.75,1.1875,0.7188,1.25,0.75,1.1875,0.75,1.25,0.75,1.25,0.75,1.1875,0.7813,1.1875,0.75,1.25,0.7813,1.1875,0.7813,1.25,0.7813,1.25,0.7813,1.1875,0.8125,1.1875,0.7813,1.25,0.8125,1.1875,0.8125,1.25,0.8125,1.25,0.8125,1.1875,0.8438,1.1875,0.8125,1.25,0.8438,1.1875,0.8438,1.25,0.8438,1.25,0.8438,1.1875,0.875,1.1875,0.8438,1.25,0.875,1.1875,0.875,1.25,0.875,1.25,0.875,1.1875,0.9063,1.1875,0.875,1.25,0.9063,1.1875,0.9063,1.25,0.9063,1.25,0.9063,1.1875,0.9375,1.1875,0.9063,1.25,0.9375,1.1875,0.9375,1.25,0.9375,1.25,0.9375,1.1875,0.9688,1.1875,0.9375,1.25,0.9688,1.1875,0.9688,1.25,0.9688,1.25,0.9688,1.1875,1.0,1.1875,0.9688,1.25,1.0,1.1875,1.0,1.25,0.0,1.1875,0.0,1.125,0.0312,1.125,0.0,1.1875,0.0312,1.125,0.0312,1.1875,0.0312,1.1875,0.0312,1.125,0.0625,1.125,0.0312,1.1875,0.0625,1.125,0.0625,1.1875,0.0625,1.1875,0.0625,1.125,0.0938,1.125,0.0625,1.1875,0.0938,1.125,0.0938,1.1875,0.0938,1.1875,0.0938,1.125,0.125,1.125,0.0938,1.1875,0.125,1.125,0.125,1.1875,0.125,1.1875,0.125,1.125,0.1562,1.125,0.125,1.1875,0.1562,1.125,0.1562,1.1875,0.1562,1.1875,0.1562,1.125,0.1875,1.125,0.1562,1.1875,0.1875,1.125,0.1875,1.1875,0.1875,1.1875,0.1875,1.125,0.2187,1.125,0.1875,1.1875,0.2187,1.125,0.2187,1.1875,0.2187,1.1875,0.2187,1.125,0.25,1.125,0.2187,1.1875,0.25,1.125,0.25,1.1875,0.25,1.1875,0.25,1.125,0.2812,1.125,0.25,1.1875,0.2812,1.125,0.2812,1.1875,0.2812,1.1875,0.2812,1.125,0.3125,1.125,0.2812,1.1875,0.3125,1.125,0.3125,1.1875,0.3125,1.1875,0.3125,1.125,0.3437,1.125,0.3125,1.1875,0.3437,1.125,0.3437,1.1875,0.3437,1.1875,0.3437,1.125,0.375,1.125,0.3437,1.1875,0.375,1.125,0.375,1.1875,0.375,1.1875,0.375,1.125,0.4062,1.125,0.375,1.1875,0.4062,1.125,0.4062,1.1875,0.4062,1.1875,0.4062,1.125,0.4375,1.125,0.4062,1.1875,0.4375,1.125,0.4375,1.1875,0.4375,1.1875,0.4375,1.125,0.4688,1.125,0.4375,1.1875,0.4688,1.125,0.4688,1.1875,0.4688,1.1875,0.4688,1.125,0.5,1.125,0.4688,1.1875,0.5,1.125,0.5,1.1875,0.5,1.1875,0.5,1.125,0.5313,1.125,0.5,1.1875,0.5313,1.125,0.5313,1.1875,0.5313,1.1875,0.5313,1.125,0.5625,1.125,0.5313,1.1875,0.5625,1.125,0.5625,1.1875,0.5625,1.1875,0.5625,1.125,0.5938,1.125,0.5625,1.1875,0.5938,1.125,0.5938,1.1875,0.5938,1.1875,0.5938,1.125,0.625,1.125,0.5938,1.1875,0.625,1.125,0.625,1.1875,0.625,1.1875,0.625,1.125,0.6563,1.125,0.625,1.1875,0.6563,1.125,0.6563,1.1875,0.6563,1.1875,0.6563,1.125,0.6875,1.125,0.6563,1.1875,0.6875,1.125,0.6875,1.1875,0.6875,1.1875,0.6875,1.125,0.7188,1.125,0.6875,1.1875,0.7188,1.125,0.7188,1.1875,0.7188,1.1875,0.7188,1.125,0.75,1.125,0.7188,1.1875,0.75,1.125,0.75,1.1875,0.75,1.1875,0.75,1.125,0.7813,1.125,0.75,1.1875,0.7813,1.125,0.7813,1.1875,0.7813,1.1875,0.7813,1.125,0.8125,1.125,0.7813,1.1875,0.8125,1.125,0.8125,1.1875,0.8125,1.1875,0.8125,1.125,0.8438,1.125,0.8125,1.1875,0.8438,1.125,0.8438,1.1875,0.8438,1.1875,0.8438,1.125,0.875,1.125,0.8438,1.1875,0.875,1.125,0.875,1.1875,0.875,1.1875,0.875,1.125,0.9063,1.125,0.875,1.1875,0.9063,1.125,0.9063,1.1875,0.9063,1.1875,0.9063,1.125,0.9375,1.125,0.9063,1.1875,0.9375,1.125,0.9375,1.1875,0.9375,1.1875,0.9375,1.125,0.9688,1.125,0.9375,1.1875,0.9688,1.125,0.9688,1.1875,0.9688,1.1875,0.9688,1.125,1.0,1.125,0.9688,1.1875,1.0,1.125,1.0,1.1875,0.0,1.125,0.0,1.0625,0.0312,1.0625,0.0,1.125,0.0312,1.0625,0.0312,1.125,0.0312,1.125,0.0312,1.0625,0.0625,1.0625,0.0312,1.125,0.0625,1.0625,0.0625,1.125,0.0625,1.125,0.0625,1.0625,0.0938,1.0625,0.0625,1.125,0.0938,1.0625,0.0938,1.125,0.0938,1.125,0.0938,1.0625,0.125,1.0625,0.0938,1.125,0.125,1.0625,0.125,1.125,0.125,1.125,0.125,1.0625,0.1562,1.0625,0.125,1.125,0.1562,1.0625,0.1562,1.125,0.1562,1.125,0.1562,1.0625,0.1875,1.0625,0.1562,1.125,0.1875,1.0625,0.1875,1.125,0.1875,1.125,0.1875,1.0625,0.2187,1.0625,0.1875,1.125,0.2187,1.0625,0.2187,1.125,0.2187,1.125,0.2187,1.0625,0.25,1.0625,0.2187,1.125,0.25,1.0625,0.25,1.125,0.25,1.125,0.25,1.0625,0.2812,1.0625,0.25,1.125,0.2812,1.0625,0.2812,1.125,0.2812,1.125,0.2812,1.0625,0.3125,1.0625,0.2812,1.125,0.3125,1.0625,0.3125,1.125,0.3125,1.125,0.3125,1.0625,0.3437,1.0625,0.3125,1.125,0.3437,1.0625,0.3437,1.125,0.3437,1.125,0.3437,1.0625,0.375,1.0625,0.3437,1.125,0.375,1.0625,0.375,1.125,0.375,1.125,0.375,1.0625,0.4062,1.0625,0.375,1.125,0.4062,1.0625,0.4062,1.125,0.4062,1.125,0.4062,1.0625,0.4375,1.0625,0.4062,1.125,0.4375,1.0625,0.4375,1.125,0.4375,1.125,0.4375,1.0625,0.4688,1.0625,0.4375,1.125,0.4688,1.0625,0.4688,1.125,0.4688,1.125,0.4688,1.0625,0.5,1.0625,0.4688,1.125,0.5,1.0625,0.5,1.125,0.5,1.125,0.5,1.0625,0.5313,1.0625,0.5,1.125,0.5313,1.0625,0.5313,1.125,0.5313,1.125,0.5313,1.0625,0.5625,1.0625,0.5313,1.125,0.5625,1.0625,0.5625,1.125,0.5625,1.125,0.5625,1.0625,0.5938,1.0625,0.5625,1.125,0.5938,1.0625,0.5938,1.125,0.5938,1.125,0.5938,1.0625,0.625,1.0625,0.5938,1.125,0.625,1.0625,0.625,1.125,0.625,1.125,0.625,1.0625,0.6563,1.0625,0.625,1.125,0.6563,1.0625,0.6563,1.125,0.6563,1.125,0.6563,1.0625,0.6875,1.0625,0.6563,1.125,0.6875,1.0625,0.6875,1.125,0.6875,1.125,0.6875,1.0625,0.7188,1.0625,0.6875,1.125,0.7188,1.0625,0.7188,1.125,0.7188,1.125,0.7188,1.0625,0.75,1.0625,0.7188,1.125,0.75,1.0625,0.75,1.125,0.75,1.125,0.75,1.0625,0.7813,1.0625,0.75,1.125,0.7813,1.0625,0.7813,1.125,0.7813,1.125,0.7813,1.0625,0.8125,1.0625,0.7813,1.125,0.8125,1.0625,0.8125,1.125,0.8125,1.125,0.8125,1.0625,0.8438,1.0625,0.8125,1.125,0.8438,1.0625,0.8438,1.125,0.8438,1.125,0.8438,1.0625,0.875,1.0625,0.8438,1.125,0.875,1.0625,0.875,1.125,0.875,1.125,0.875,1.0625,0.9063,1.0625,0.875,1.125,0.9063,1.0625,0.9063,1.125,0.9063,1.125,0.9063,1.0625,0.9375,1.0625,0.9063,1.125,0.9375,1.0625,0.9375,1.125,0.9375,1.125,0.9375,1.0625,0.9688,1.0625,0.9375,1.125,0.9688,1.0625,0.9688,1.125,0.9688,1.125,0.9688,1.0625,1.0,1.0625,0.9688,1.125,1.0,1.0625,1.0,1.125,0.0,1.0,0.0312,1.0625,0.0,1.0625,0.0312,1.0,0.0625,1.0625,0.0312,1.0625,0.0625,1.0,0.0938,1.0625,0.0625,1.0625,0.0938,1.0,0.125,1.0625,0.0938,1.0625,0.125,1.0,0.1562,1.0625,0.125,1.0625,0.1562,1.0,0.1875,1.0625,0.1562,1.0625,0.1875,1.0,0.2187,1.0625,0.1875,1.0625,0.2187,1.0,0.25,1.0625,0.2187,1.0625,0.25,1.0,0.2812,1.0625,0.25,1.0625,0.2812,1.0,0.3125,1.0625,0.2812,1.0625,0.3125,1.0,0.3437,1.0625,0.3125,1.0625,0.3437,1.0,0.375,1.0625,0.3437,1.0625,0.375,1.0,0.4062,1.0625,0.375,1.0625,0.4062,1.0,0.4375,1.0625,0.4062,1.0625,0.4375,1.0,0.4688,1.0625,0.4375,1.0625,0.4688,1.0,0.5,1.0625,0.4688,1.0625,0.5,1.0,0.5313,1.0625,0.5,1.0625,0.5313,1.0,0.5625,1.0625,0.5313,1.0625,0.5625,1.0,0.5938,1.0625,0.5625,1.0625,0.5938,1.0,0.625,1.0625,0.5938,1.0625,0.625,1.0,0.6563,1.0625,0.625,1.0625,0.6563,1.0,0.6875,1.0625,0.6563,1.0625,0.6875,1.0,0.7188,1.0625,0.6875,1.0625,0.7188,1.0,0.75,1.0625,0.7188,1.0625,0.75,1.0,0.7813,1.0625,0.75,1.0625,0.7813,1.0,0.8125,1.0625,0.7813,1.0625,0.8125,1.0,0.8438,1.0625,0.8125,1.0625,0.8438,1.0,0.875,1.0625,0.8438,1.0625,0.875,1.0,0.9063,1.0625,0.875,1.0625,0.9063,1.0,0.9375,1.0625,0.9063,1.0625,0.9375,1.0,0.9688,1.0625,0.9375,1.0625,0.9688,1.0,1.0,1.0625,0.9688,1.0625],"uvs2":null,"colors":null,"hasVertexAlpha":false,"matricesIndices":null,"matricesWeights":null,"matricesIndicesExtra":null,"matricesWeightsExtra":null,"indices":[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,1984,1985,1986,1987,1988,1989,1990,1991,1992,1993,1994,1995,1996,1997,1998,1999,2000,2001,2002,2003,2004,2005,2006,2007,2008,2009,2010,2011,2012,2013,2014,2015,2016,2017,2018,2019,2020,2021,2022,2023,2024,2025,2026,2027,2028,2029,2030,2031,2032,2033,2034,2035,2036,2037,2038,2039,2040,2041,2042,2043,2044,2045,2046,2047,2048,2049,2050,2051,2052,2053,2054,2055,2056,2057,2058,2059,2060,2061,2062,2063,2064,2065,2066,2067,2068,2069,2070,2071,2072,2073,2074,2075,2076,2077,2078,2079,2080,2081,2082,2083,2084,2085,2086,2087,2088,2089,2090,2091,2092,2093,2094,2095,2096,2097,2098,2099,2100,2101,2102,2103,2104,2105,2106,2107,2108,2109,2110,2111,2112,2113,2114,2115,2116,2117,2118,2119,2120,2121,2122,2123,2124,2125,2126,2127,2128,2129,2130,2131,2132,2133,2134,2135,2136,2137,2138,2139,2140,2141,2142,2143,2144,2145,2146,2147,2148,2149,2150,2151,2152,2153,2154,2155,2156,2157,2158,2159,2160,2161,2162,2163,2164,2165,2166,2167,2168,2169,2170,2171,2172,2173,2174,2175,2176,2177,2178,2179,2180,2181,2182,2183,2184,2185,2186,2187,2188,2189,2190,2191,2192,2193,2194,2195,2196,2197,2198,2199,2200,2201,2202,2203,2204,2205,2206,2207,2208,2209,2210,2211,2212,2213,2214,2215,2216,2217,2218,2219,2220,2221,2222,2223,2224,2225,2226,2227,2228,2229,2230,2231,2232,2233,2234,2235,2236,2237,2238,2239,2240,2241,2242,2243,2244,2245,2246,2247,2248,2249,2250,2251,2252,2253,2254,2255,2256,2257,2258,2259,2260,2261,2262,2263,2264,2265,2266,2267,2268,2269,2270,2271,2272,2273,2274,2275,2276,2277,2278,2279,2280,2281,2282,2283,2284,2285,2286,2287,2288,2289,2290,2291,2292,2293,2294,2295,2296,2297,2298,2299,2300,2301,2302,2303,2304,2305,2306,2307,2308,2309,2310,2311,2312,2313,2314,2315,2316,2317,2318,2319,2320,2321,2322,2323,2324,2325,2326,2327,2328,2329,2330,2331,2332,2333,2334,2335,2336,2337,2338,2339,2340,2341,2342,2343,2344,2345,2346,2347,2348,2349,2350,2351,2352,2353,2354,2355,2356,2357,2358,2359,2360,2361,2362,2363,2364,2365,2366,2367,2368,2369,2370,2371,2372,2373,2374,2375,2376,2377,2378,2379,2380,2381,2382,2383,2384,2385,2386,2387,2388,2389,2390,2391,2392,2393,2394,2395,2396,2397,2398,2399,2400,2401,2402,2403,2404,2405,2406,2407,2408,2409,2410,2411,2412,2413,2414,2415,2416,2417,2418,2419,2420,2421,2422,2423,2424,2425,2426,2427,2428,2429,2430,2431,2432,2433,2434,2435,2436,2437,2438,2439,2440,2441,2442,2443,2444,2445,2446,2447,2448,2449,2450,2451,2452,2453,2454,2455,2456,2457,2458,2459,2460,2461,2462,2463,2464,2465,2466,2467,2468,2469,2470,2471,2472,2473,2474,2475,2476,2477,2478,2479,2480,2481,2482,2483,2484,2485,2486,2487,2488,2489,2490,2491,2492,2493,2494,2495,2496,2497,2498,2499,2500,2501,2502,2503,2504,2505,2506,2507,2508,2509,2510,2511,2512,2513,2514,2515,2516,2517,2518,2519,2520,2521,2522,2523,2524,2525,2526,2527,2528,2529,2530,2531,2532,2533,2534,2535,2536,2537,2538,2539,2540,2541,2542,2543,2544,2545,2546,2547,2548,2549,2550,2551,2552,2553,2554,2555,2556,2557,2558,2559,2560,2561,2562,2563,2564,2565,2566,2567,2568,2569,2570,2571,2572,2573,2574,2575,2576,2577,2578,2579,2580,2581,2582,2583,2584,2585,2586,2587,2588,2589,2590,2591,2592,2593,2594,2595,2596,2597,2598,2599,2600,2601,2602,2603,2604,2605,2606,2607,2608,2609,2610,2611,2612,2613,2614,2615,2616,2617,2618,2619,2620,2621,2622,2623,2624,2625,2626,2627,2628,2629,2630,2631,2632,2633,2634,2635,2636,2637,2638,2639,2640,2641,2642,2643,2644,2645,2646,2647,2648,2649,2650,2651,2652,2653,2654,2655,2656,2657,2658,2659,2660,2661,2662,2663,2664,2665,2666,2667,2668,2669,2670,2671,2672,2673,2674,2675,2676,2677,2678,2679,2680,2681,2682,2683,2684,2685,2686,2687,2688,2689,2690,2691,2692,2693,2694,2695,2696,2697,2698,2699,2700,2701,2702,2703,2704,2705,2706,2707,2708,2709,2710,2711,2712,2713,2714,2715,2716,2717,2718,2719,2720,2721,2722,2723,2724,2725,2726,2727,2728,2729,2730,2731,2732,2733,2734,2735,2736,2737,2738,2739,2740,2741,2742,2743,2744,2745,2746,2747,2748,2749,2750,2751,2752,2753,2754,2755,2756,2757,2758,2759,2760,2761,2762,2763,2764,2765,2766,2767,2768,2769,2770,2771,2772,2773,2774,2775,2776,2777,2778,2779,2780,2781,2782,2783,2784,2785,2786,2787,2788,2789,2790,2791,2792,2793,2794,2795,2796,2797,2798,2799,2800,2801,2802,2803,2804,2805,2806,2807,2808,2809,2810,2811,2812,2813,2814,2815,2816,2817,2818,2819,2820,2821,2822,2823,2824,2825,2826,2827,2828,2829,2830,2831,2832,2833,2834,2835,2836,2837,2838,2839,2840,2841,2842,2843,2844,2845,2846,2847,2848,2849,2850,2851,2852,2853,2854,2855,2856,2857,2858,2859,2860,2861,2862,2863,2864,2865,2866,2867,2868,2869,2870,2871,2872,2873,2874,2875,2876,2877,2878,2879],"receiveShadows":true,"infiniteDistance":false,"billboardMode":0,"visibility":1.0,"subMeshes":[{"materialIndex":0,"verticesStart":0,"verticesCount":2880,"indexStart":0,"indexCount":2880}],"instances":null,"skeletonId":-1,"numBoneInfluencers":4,"applyFog":true,"lodMeshIds":null,"lodDistances":null,"lodCoverages":null,"rotation":null,"scaling":[1.0,1.0,1.0],"rotationQuaternion":[0.0,0.0,0.0,1.0],"actions":null,"checkCollisions":false,"pickable":false,"showBoundingBox":false,"showSubMeshesBoundingBox":false,"alphaIndex":1000,"physicsImpostor":0,"physicsMass":0.0,"physicsFriction":0.0,"physicsRestitution":0.0,"name":"StandardMesh","id":"113f2dbc-dce1-4faa-be71-35277504433b","parentId":null,"position":[0.0,0.0,0.0],"animations":[],"autoAnimate":true,"autoAnimateFrom":0,"autoAnimateTo":100,"autoAnimateLoop":true,"metadata":null},{"materialId":"e8d366dc-9a25-4d46-80f2-60a95ec88505","isEnabled":true,"isVisible":true,"positions":[0.0,1.0,0.0,0.0,0.9808,0.1951,-0.0381,0.9808,0.1913,0.0,1.0,0.0,-0.0381,0.9808,0.1913,-0.0747,0.9808,0.1802,0.0,1.0,0.0,-0.0747,0.9808,0.1802,-0.1084,0.9808,0.1622,0.0,1.0,0.0,-0.1084,0.9808,0.1622,-0.1379,0.9808,0.1379,0.0,1.0,0.0,-0.1379,0.9808,0.1379,-0.1622,0.9808,0.1084,0.0,1.0,0.0,-0.1622,0.9808,0.1084,-0.1802,0.9808,0.0747,0.0,1.0,0.0,-0.1802,0.9808,0.0747,-0.1913,0.9808,0.0381,0.0,1.0,0.0,-0.1913,0.9808,0.0381,-0.1951,0.9808,0.0,0.0,1.0,0.0,-0.1951,0.9808,0.0,-0.1913,0.9808,-0.0381,0.0,1.0,0.0,-0.1913,0.9808,-0.0381,-0.1802,0.9808,-0.0747,0.0,1.0,0.0,-0.1802,0.9808,-0.0747,-0.1622,0.9808,-0.1084,0.0,1.0,0.0,-0.1622,0.9808,-0.1084,-0.1379,0.9808,-0.1379,0.0,1.0,0.0,-0.1379,0.9808,-0.1379,-0.1084,0.9808,-0.1622,0.0,1.0,0.0,-0.1084,0.9808,-0.1622,-0.0747,0.9808,-0.1802,0.0,1.0,0.0,-0.0747,0.9808,-0.1802,-0.0381,0.9808,-0.1913,0.0,1.0,0.0,-0.0381,0.9808,-0.1913,0.0,0.9808,-0.1951,0.0,1.0,0.0,0.0,0.9808,-0.1951,0.0381,0.9808,-0.1913,0.0,1.0,0.0,0.0381,0.9808,-0.1913,0.0747,0.9808,-0.1802,0.0,1.0,0.0,0.0747,0.9808,-0.1802,0.1084,0.9808,-0.1622,0.0,1.0,0.0,0.1084,0.9808,-0.1622,0.1379,0.9808,-0.1379,0.0,1.0,0.0,0.1379,0.9808,-0.1379,0.1622,0.9808,-0.1084,0.0,1.0,0.0,0.1622,0.9808,-0.1084,0.1802,0.9808,-0.0747,0.0,1.0,0.0,0.1802,0.9808,-0.0747,0.1913,0.9808,-0.0381,0.0,1.0,0.0,0.1913,0.9808,-0.0381,0.1951,0.9808,0.0,0.0,1.0,0.0,0.1951,0.9808,0.0,0.1913,0.9808,0.0381,0.0,1.0,0.0,0.1913,0.9808,0.0381,0.1802,0.9808,0.0747,0.0,1.0,0.0,0.1802,0.9808,0.0747,0.1622,0.9808,0.1084,0.0,1.0,0.0,0.1622,0.9808,0.1084,0.1379,0.9808,0.1379,0.0,1.0,0.0,0.1379,0.9808,0.1379,0.1084,0.9808,0.1622,0.0,1.0,0.0,0.1084,0.9808,0.1622,0.0747,0.9808,0.1802,0.0,1.0,0.0,0.0747,0.9808,0.1802,0.0381,0.9808,0.1913,0.0,1.0,0.0,0.0381,0.9808,0.1913,0.0,0.9808,0.1951,0.0,0.9808,0.1951,0.0,0.9239,0.3827,-0.0747,0.9239,0.3753,0.0,0.9808,0.1951,-0.0747,0.9239,0.3753,-0.0381,0.9808,0.1913,-0.0381,0.9808,0.1913,-0.0747,0.9239,0.3753,-0.1464,0.9239,0.3536,-0.0381,0.9808,0.1913,-0.1464,0.9239,0.3536,-0.0747,0.9808,0.1802,-0.0747,0.9808,0.1802,-0.1464,0.9239,0.3536,-0.2126,0.9239,0.3182,-0.0747,0.9808,0.1802,-0.2126,0.9239,0.3182,-0.1084,0.9808,0.1622,-0.1084,0.9808,0.1622,-0.2126,0.9239,0.3182,-0.2706,0.9239,0.2706,-0.1084,0.9808,0.1622,-0.2706,0.9239,0.2706,-0.1379,0.9808,0.1379,-0.1379,0.9808,0.1379,-0.2706,0.9239,0.2706,-0.3182,0.9239,0.2126,-0.1379,0.9808,0.1379,-0.3182,0.9239,0.2126,-0.1622,0.9808,0.1084,-0.1622,0.9808,0.1084,-0.3182,0.9239,0.2126,-0.3536,0.9239,0.1464,-0.1622,0.9808,0.1084,-0.3536,0.9239,0.1464,-0.1802,0.9808,0.0747,-0.1802,0.9808,0.0747,-0.3536,0.9239,0.1464,-0.3753,0.9239,0.0747,-0.1802,0.9808,0.0747,-0.3753,0.9239,0.0747,-0.1913,0.9808,0.0381,-0.1913,0.9808,0.0381,-0.3753,0.9239,0.0747,-0.3827,0.9239,0.0,-0.1913,0.9808,0.0381,-0.3827,0.9239,0.0,-0.1951,0.9808,0.0,-0.1951,0.9808,0.0,-0.3827,0.9239,0.0,-0.3753,0.9239,-0.0747,-0.1951,0.9808,0.0,-0.3753,0.9239,-0.0747,-0.1913,0.9808,-0.0381,-0.1913,0.9808,-0.0381,-0.3753,0.9239,-0.0747,-0.3536,0.9239,-0.1464,-0.1913,0.9808,-0.0381,-0.3536,0.9239,-0.1464,-0.1802,0.9808,-0.0747,-0.1802,0.9808,-0.0747,-0.3536,0.9239,-0.1464,-0.3182,0.9239,-0.2126,-0.1802,0.9808,-0.0747,-0.3182,0.9239,-0.2126,-0.1622,0.9808,-0.1084,-0.1622,0.9808,-0.1084,-0.3182,0.9239,-0.2126,-0.2706,0.9239,-0.2706,-0.1622,0.9808,-0.1084,-0.2706,0.9239,-0.2706,-0.1379,0.9808,-0.1379,-0.1379,0.9808,-0.1379,-0.2706,0.9239,-0.2706,-0.2126,0.9239,-0.3182,-0.1379,0.9808,-0.1379,-0.2126,0.9239,-0.3182,-0.1084,0.9808,-0.1622,-0.1084,0.9808,-0.1622,-0.2126,0.9239,-0.3182,-0.1464,0.9239,-0.3536,-0.1084,0.9808,-0.1622,-0.1464,0.9239,-0.3536,-0.0747,0.9808,-0.1802,-0.0747,0.9808,-0.1802,-0.1464,0.9239,-0.3536,-0.0747,0.9239,-0.3753,-0.0747,0.9808,-0.1802,-0.0747,0.9239,-0.3753,-0.0381,0.9808,-0.1913,-0.0381,0.9808,-0.1913,-0.0747,0.9239,-0.3753,0.0,0.9239,-0.3827,-0.0381,0.9808,-0.1913,0.0,0.9239,-0.3827,0.0,0.9808,-0.1951,0.0,0.9808,-0.1951,0.0,0.9239,-0.3827,0.0747,0.9239,-0.3753,0.0,0.9808,-0.1951,0.0747,0.9239,-0.3753,0.0381,0.9808,-0.1913,0.0381,0.9808,-0.1913,0.0747,0.9239,-0.3753,0.1464,0.9239,-0.3536,0.0381,0.9808,-0.1913,0.1464,0.9239,-0.3536,0.0747,0.9808,-0.1802,0.0747,0.9808,-0.1802,0.1464,0.9239,-0.3536,0.2126,0.9239,-0.3182,0.0747,0.9808,-0.1802,0.2126,0.9239,-0.3182,0.1084,0.9808,-0.1622,0.1084,0.9808,-0.1622,0.2126,0.9239,-0.3182,0.2706,0.9239,-0.2706,0.1084,0.9808,-0.1622,0.2706,0.9239,-0.2706,0.1379,0.9808,-0.1379,0.1379,0.9808,-0.1379,0.2706,0.9239,-0.2706,0.3182,0.9239,-0.2126,0.1379,0.9808,-0.1379,0.3182,0.9239,-0.2126,0.1622,0.9808,-0.1084,0.1622,0.9808,-0.1084,0.3182,0.9239,-0.2126,0.3536,0.9239,-0.1464,0.1622,0.9808,-0.1084,0.3536,0.9239,-0.1464,0.1802,0.9808,-0.0747,0.1802,0.9808,-0.0747,0.3536,0.9239,-0.1464,0.3753,0.9239,-0.0747,0.1802,0.9808,-0.0747,0.3753,0.9239,-0.0747,0.1913,0.9808,-0.0381,0.1913,0.9808,-0.0381,0.3753,0.9239,-0.0747,0.3827,0.9239,0.0,0.1913,0.9808,-0.0381,0.3827,0.9239,0.0,0.1951,0.9808,0.0,0.1951,0.9808,0.0,0.3827,0.9239,0.0,0.3753,0.9239,0.0747,0.1951,0.9808,0.0,0.3753,0.9239,0.0747,0.1913,0.9808,0.0381,0.1913,0.9808,0.0381,0.3753,0.9239,0.0747,0.3536,0.9239,0.1464,0.1913,0.9808,0.0381,0.3536,0.9239,0.1464,0.1802,0.9808,0.0747,0.1802,0.9808,0.0747,0.3536,0.9239,0.1464,0.3182,0.9239,0.2126,0.1802,0.9808,0.0747,0.3182,0.9239,0.2126,0.1622,0.9808,0.1084,0.1622,0.9808,0.1084,0.3182,0.9239,0.2126,0.2706,0.9239,0.2706,0.1622,0.9808,0.1084,0.2706,0.9239,0.2706,0.1379,0.9808,0.1379,0.1379,0.9808,0.1379,0.2706,0.9239,0.2706,0.2126,0.9239,0.3182,0.1379,0.9808,0.1379,0.2126,0.9239,0.3182,0.1084,0.9808,0.1622,0.1084,0.9808,0.1622,0.2126,0.9239,0.3182,0.1464,0.9239,0.3536,0.1084,0.9808,0.1622,0.1464,0.9239,0.3536,0.0747,0.9808,0.1802,0.0747,0.9808,0.1802,0.1464,0.9239,0.3536,0.0747,0.9239,0.3753,0.0747,0.9808,0.1802,0.0747,0.9239,0.3753,0.0381,0.9808,0.1913,0.0381,0.9808,0.1913,0.0747,0.9239,0.3753,0.0,0.9239,0.3827,0.0381,0.9808,0.1913,0.0,0.9239,0.3827,0.0,0.9808,0.1951,0.0,0.9239,0.3827,0.0,0.8315,0.5556,-0.1084,0.8315,0.5449,0.0,0.9239,0.3827,-0.1084,0.8315,0.5449,-0.0747,0.9239,0.3753,-0.0747,0.9239,0.3753,-0.1084,0.8315,0.5449,-0.2126,0.8315,0.5133,-0.0747,0.9239,0.3753,-0.2126,0.8315,0.5133,-0.1464,0.9239,0.3536,-0.1464,0.9239,0.3536,-0.2126,0.8315,0.5133,-0.3087,0.8315,0.4619,-0.1464,0.9239,0.3536,-0.3087,0.8315,0.4619,-0.2126,0.9239,0.3182,-0.2126,0.9239,0.3182,-0.3087,0.8315,0.4619,-0.3928,0.8315,0.3928,-0.2126,0.9239,0.3182,-0.3928,0.8315,0.3928,-0.2706,0.9239,0.2706,-0.2706,0.9239,0.2706,-0.3928,0.8315,0.3928,-0.4619,0.8315,0.3087,-0.2706,0.9239,0.2706,-0.4619,0.8315,0.3087,-0.3182,0.9239,0.2126,-0.3182,0.9239,0.2126,-0.4619,0.8315,0.3087,-0.5133,0.8315,0.2126,-0.3182,0.9239,0.2126,-0.5133,0.8315,0.2126,-0.3536,0.9239,0.1464,-0.3536,0.9239,0.1464,-0.5133,0.8315,0.2126,-0.5449,0.8315,0.1084,-0.3536,0.9239,0.1464,-0.5449,0.8315,0.1084,-0.3753,0.9239,0.0747,-0.3753,0.9239,0.0747,-0.5449,0.8315,0.1084,-0.5556,0.8315,0.0,-0.3753,0.9239,0.0747,-0.5556,0.8315,0.0,-0.3827,0.9239,0.0,-0.3827,0.9239,0.0,-0.5556,0.8315,0.0,-0.5449,0.8315,-0.1084,-0.3827,0.9239,0.0,-0.5449,0.8315,-0.1084,-0.3753,0.9239,-0.0747,-0.3753,0.9239,-0.0747,-0.5449,0.8315,-0.1084,-0.5133,0.8315,-0.2126,-0.3753,0.9239,-0.0747,-0.5133,0.8315,-0.2126,-0.3536,0.9239,-0.1464,-0.3536,0.9239,-0.1464,-0.5133,0.8315,-0.2126,-0.4619,0.8315,-0.3087,-0.3536,0.9239,-0.1464,-0.4619,0.8315,-0.3087,-0.3182,0.9239,-0.2126,-0.3182,0.9239,-0.2126,-0.4619,0.8315,-0.3087,-0.3928,0.8315,-0.3928,-0.3182,0.9239,-0.2126,-0.3928,0.8315,-0.3928,-0.2706,0.9239,-0.2706,-0.2706,0.9239,-0.2706,-0.3928,0.8315,-0.3928,-0.3087,0.8315,-0.4619,-0.2706,0.9239,-0.2706,-0.3087,0.8315,-0.4619,-0.2126,0.9239,-0.3182,-0.2126,0.9239,-0.3182,-0.3087,0.8315,-0.4619,-0.2126,0.8315,-0.5133,-0.2126,0.9239,-0.3182,-0.2126,0.8315,-0.5133,-0.1464,0.9239,-0.3536,-0.1464,0.9239,-0.3536,-0.2126,0.8315,-0.5133,-0.1084,0.8315,-0.5449,-0.1464,0.9239,-0.3536,-0.1084,0.8315,-0.5449,-0.0747,0.9239,-0.3753,-0.0747,0.9239,-0.3753,-0.1084,0.8315,-0.5449,0.0,0.8315,-0.5556,-0.0747,0.9239,-0.3753,0.0,0.8315,-0.5556,0.0,0.9239,-0.3827,0.0,0.9239,-0.3827,0.0,0.8315,-0.5556,0.1084,0.8315,-0.5449,0.0,0.9239,-0.3827,0.1084,0.8315,-0.5449,0.0747,0.9239,-0.3753,0.0747,0.9239,-0.3753,0.1084,0.8315,-0.5449,0.2126,0.8315,-0.5133,0.0747,0.9239,-0.3753,0.2126,0.8315,-0.5133,0.1464,0.9239,-0.3536,0.1464,0.9239,-0.3536,0.2126,0.8315,-0.5133,0.3087,0.8315,-0.4619,0.1464,0.9239,-0.3536,0.3087,0.8315,-0.4619,0.2126,0.9239,-0.3182,0.2126,0.9239,-0.3182,0.3087,0.8315,-0.4619,0.3928,0.8315,-0.3928,0.2126,0.9239,-0.3182,0.3928,0.8315,-0.3928,0.2706,0.9239,-0.2706,0.2706,0.9239,-0.2706,0.3928,0.8315,-0.3928,0.4619,0.8315,-0.3087,0.2706,0.9239,-0.2706,0.4619,0.8315,-0.3087,0.3182,0.9239,-0.2126,0.3182,0.9239,-0.2126,0.4619,0.8315,-0.3087,0.5133,0.8315,-0.2126,0.3182,0.9239,-0.2126,0.5133,0.8315,-0.2126,0.3536,0.9239,-0.1464,0.3536,0.9239,-0.1464,0.5133,0.8315,-0.2126,0.5449,0.8315,-0.1084,0.3536,0.9239,-0.1464,0.5449,0.8315,-0.1084,0.3753,0.9239,-0.0747,0.3753,0.9239,-0.0747,0.5449,0.8315,-0.1084,0.5556,0.8315,0.0,0.3753,0.9239,-0.0747,0.5556,0.8315,0.0,0.3827,0.9239,0.0,0.3827,0.9239,0.0,0.5556,0.8315,0.0,0.5449,0.8315,0.1084,0.3827,0.9239,0.0,0.5449,0.8315,0.1084,0.3753,0.9239,0.0747,0.3753,0.9239,0.0747,0.5449,0.8315,0.1084,0.5133,0.8315,0.2126,0.3753,0.9239,0.0747,0.5133,0.8315,0.2126,0.3536,0.9239,0.1464,0.3536,0.9239,0.1464,0.5133,0.8315,0.2126,0.4619,0.8315,0.3087,0.3536,0.9239,0.1464,0.4619,0.8315,0.3087,0.3182,0.9239,0.2126,0.3182,0.9239,0.2126,0.4619,0.8315,0.3087,0.3928,0.8315,0.3928,0.3182,0.9239,0.2126,0.3928,0.8315,0.3928,0.2706,0.9239,0.2706,0.2706,0.9239,0.2706,0.3928,0.8315,0.3928,0.3087,0.8315,0.4619,0.2706,0.9239,0.2706,0.3087,0.8315,0.4619,0.2126,0.9239,0.3182,0.2126,0.9239,0.3182,0.3087,0.8315,0.4619,0.2126,0.8315,0.5133,0.2126,0.9239,0.3182,0.2126,0.8315,0.5133,0.1464,0.9239,0.3536,0.1464,0.9239,0.3536,0.2126,0.8315,0.5133,0.1084,0.8315,0.5449,0.1464,0.9239,0.3536,0.1084,0.8315,0.5449,0.0747,0.9239,0.3753,0.0747,0.9239,0.3753,0.1084,0.8315,0.5449,0.0,0.8315,0.5556,0.0747,0.9239,0.3753,0.0,0.8315,0.5556,0.0,0.9239,0.3827,0.0,0.8315,0.5556,0.0,0.7071,0.7071,-0.1379,0.7071,0.6935,0.0,0.8315,0.5556,-0.1379,0.7071,0.6935,-0.1084,0.8315,0.5449,-0.1084,0.8315,0.5449,-0.1379,0.7071,0.6935,-0.2706,0.7071,0.6533,-0.1084,0.8315,0.5449,-0.2706,0.7071,0.6533,-0.2126,0.8315,0.5133,-0.2126,0.8315,0.5133,-0.2706,0.7071,0.6533,-0.3928,0.7071,0.5879,-0.2126,0.8315,0.5133,-0.3928,0.7071,0.5879,-0.3087,0.8315,0.4619,-0.3087,0.8315,0.4619,-0.3928,0.7071,0.5879,-0.5,0.7071,0.5,-0.3087,0.8315,0.4619,-0.5,0.7071,0.5,-0.3928,0.8315,0.3928,-0.3928,0.8315,0.3928,-0.5,0.7071,0.5,-0.5879,0.7071,0.3928,-0.3928,0.8315,0.3928,-0.5879,0.7071,0.3928,-0.4619,0.8315,0.3087,-0.4619,0.8315,0.3087,-0.5879,0.7071,0.3928,-0.6533,0.7071,0.2706,-0.4619,0.8315,0.3087,-0.6533,0.7071,0.2706,-0.5133,0.8315,0.2126,-0.5133,0.8315,0.2126,-0.6533,0.7071,0.2706,-0.6935,0.7071,0.1379,-0.5133,0.8315,0.2126,-0.6935,0.7071,0.1379,-0.5449,0.8315,0.1084,-0.5449,0.8315,0.1084,-0.6935,0.7071,0.1379,-0.7071,0.7071,0.0,-0.5449,0.8315,0.1084,-0.7071,0.7071,0.0,-0.5556,0.8315,0.0,-0.5556,0.8315,0.0,-0.7071,0.7071,0.0,-0.6935,0.7071,-0.1379,-0.5556,0.8315,0.0,-0.6935,0.7071,-0.1379,-0.5449,0.8315,-0.1084,-0.5449,0.8315,-0.1084,-0.6935,0.7071,-0.1379,-0.6533,0.7071,-0.2706,-0.5449,0.8315,-0.1084,-0.6533,0.7071,-0.2706,-0.5133,0.8315,-0.2126,-0.5133,0.8315,-0.2126,-0.6533,0.7071,-0.2706,-0.5879,0.7071,-0.3928,-0.5133,0.8315,-0.2126,-0.5879,0.7071,-0.3928,-0.4619,0.8315,-0.3087,-0.4619,0.8315,-0.3087,-0.5879,0.7071,-0.3928,-0.5,0.7071,-0.5,-0.4619,0.8315,-0.3087,-0.5,0.7071,-0.5,-0.3928,0.8315,-0.3928,-0.3928,0.8315,-0.3928,-0.5,0.7071,-0.5,-0.3928,0.7071,-0.5879,-0.3928,0.8315,-0.3928,-0.3928,0.7071,-0.5879,-0.3087,0.8315,-0.4619,-0.3087,0.8315,-0.4619,-0.3928,0.7071,-0.5879,-0.2706,0.7071,-0.6533,-0.3087,0.8315,-0.4619,-0.2706,0.7071,-0.6533,-0.2126,0.8315,-0.5133,-0.2126,0.8315,-0.5133,-0.2706,0.7071,-0.6533,-0.1379,0.7071,-0.6935,-0.2126,0.8315,-0.5133,-0.1379,0.7071,-0.6935,-0.1084,0.8315,-0.5449,-0.1084,0.8315,-0.5449,-0.1379,0.7071,-0.6935,0.0,0.7071,-0.7071,-0.1084,0.8315,-0.5449,0.0,0.7071,-0.7071,0.0,0.8315,-0.5556,0.0,0.8315,-0.5556,0.0,0.7071,-0.7071,0.138,0.7071,-0.6935,0.0,0.8315,-0.5556,0.138,0.7071,-0.6935,0.1084,0.8315,-0.5449,0.1084,0.8315,-0.5449,0.138,0.7071,-0.6935,0.2706,0.7071,-0.6533,0.1084,0.8315,-0.5449,0.2706,0.7071,-0.6533,0.2126,0.8315,-0.5133,0.2126,0.8315,-0.5133,0.2706,0.7071,-0.6533,0.3928,0.7071,-0.5879,0.2126,0.8315,-0.5133,0.3928,0.7071,-0.5879,0.3087,0.8315,-0.4619,0.3087,0.8315,-0.4619,0.3928,0.7071,-0.5879,0.5,0.7071,-0.5,0.3087,0.8315,-0.4619,0.5,0.7071,-0.5,0.3928,0.8315,-0.3928,0.3928,0.8315,-0.3928,0.5,0.7071,-0.5,0.5879,0.7071,-0.3928,0.3928,0.8315,-0.3928,0.5879,0.7071,-0.3928,0.4619,0.8315,-0.3087,0.4619,0.8315,-0.3087,0.5879,0.7071,-0.3928,0.6533,0.7071,-0.2706,0.4619,0.8315,-0.3087,0.6533,0.7071,-0.2706,0.5133,0.8315,-0.2126,0.5133,0.8315,-0.2126,0.6533,0.7071,-0.2706,0.6935,0.7071,-0.1379,0.5133,0.8315,-0.2126,0.6935,0.7071,-0.1379,0.5449,0.8315,-0.1084,0.5449,0.8315,-0.1084,0.6935,0.7071,-0.1379,0.7071,0.7071,0.0,0.5449,0.8315,-0.1084,0.7071,0.7071,0.0,0.5556,0.8315,0.0,0.5556,0.8315,0.0,0.7071,0.7071,0.0,0.6935,0.7071,0.138,0.5556,0.8315,0.0,0.6935,0.7071,0.138,0.5449,0.8315,0.1084,0.5449,0.8315,0.1084,0.6935,0.7071,0.138,0.6533,0.7071,0.2706,0.5449,0.8315,0.1084,0.6533,0.7071,0.2706,0.5133,0.8315,0.2126,0.5133,0.8315,0.2126,0.6533,0.7071,0.2706,0.5879,0.7071,0.3928,0.5133,0.8315,0.2126,0.5879,0.7071,0.3928,0.4619,0.8315,0.3087,0.4619,0.8315,0.3087,0.5879,0.7071,0.3928,0.5,0.7071,0.5,0.4619,0.8315,0.3087,0.5,0.7071,0.5,0.3928,0.8315,0.3928,0.3928,0.8315,0.3928,0.5,0.7071,0.5,0.3928,0.7071,0.5879,0.3928,0.8315,0.3928,0.3928,0.7071,0.5879,0.3087,0.8315,0.4619,0.3087,0.8315,0.4619,0.3928,0.7071,0.5879,0.2706,0.7071,0.6533,0.3087,0.8315,0.4619,0.2706,0.7071,0.6533,0.2126,0.8315,0.5133,0.2126,0.8315,0.5133,0.2706,0.7071,0.6533,0.1379,0.7071,0.6935,0.2126,0.8315,0.5133,0.1379,0.7071,0.6935,0.1084,0.8315,0.5449,0.1084,0.8315,0.5449,0.1379,0.7071,0.6935,0.0,0.7071,0.7071,0.1084,0.8315,0.5449,0.0,0.7071,0.7071,0.0,0.8315,0.5556,0.0,0.7071,0.7071,0.0,0.5556,0.8315,-0.1622,0.5556,0.8155,0.0,0.7071,0.7071,-0.1622,0.5556,0.8155,-0.1379,0.7071,0.6935,-0.1379,0.7071,0.6935,-0.1622,0.5556,0.8155,-0.3182,0.5556,0.7682,-0.1379,0.7071,0.6935,-0.3182,0.5556,0.7682,-0.2706,0.7071,0.6533,-0.2706,0.7071,0.6533,-0.3182,0.5556,0.7682,-0.4619,0.5556,0.6913,-0.2706,0.7071,0.6533,-0.4619,0.5556,0.6913,-0.3928,0.7071,0.5879,-0.3928,0.7071,0.5879,-0.4619,0.5556,0.6913,-0.5879,0.5556,0.5879,-0.3928,0.7071,0.5879,-0.5879,0.5556,0.5879,-0.5,0.7071,0.5,-0.5,0.7071,0.5,-0.5879,0.5556,0.5879,-0.6913,0.5556,0.4619,-0.5,0.7071,0.5,-0.6913,0.5556,0.4619,-0.5879,0.7071,0.3928,-0.5879,0.7071,0.3928,-0.6913,0.5556,0.4619,-0.7682,0.5556,0.3182,-0.5879,0.7071,0.3928,-0.7682,0.5556,0.3182,-0.6533,0.7071,0.2706,-0.6533,0.7071,0.2706,-0.7682,0.5556,0.3182,-0.8155,0.5556,0.1622,-0.6533,0.7071,0.2706,-0.8155,0.5556,0.1622,-0.6935,0.7071,0.1379,-0.6935,0.7071,0.1379,-0.8155,0.5556,0.1622,-0.8315,0.5556,0.0,-0.6935,0.7071,0.1379,-0.8315,0.5556,0.0,-0.7071,0.7071,0.0,-0.7071,0.7071,0.0,-0.8315,0.5556,0.0,-0.8155,0.5556,-0.1622,-0.7071,0.7071,0.0,-0.8155,0.5556,-0.1622,-0.6935,0.7071,-0.1379,-0.6935,0.7071,-0.1379,-0.8155,0.5556,-0.1622,-0.7682,0.5556,-0.3182,-0.6935,0.7071,-0.1379,-0.7682,0.5556,-0.3182,-0.6533,0.7071,-0.2706,-0.6533,0.7071,-0.2706,-0.7682,0.5556,-0.3182,-0.6913,0.5556,-0.4619,-0.6533,0.7071,-0.2706,-0.6913,0.5556,-0.4619,-0.5879,0.7071,-0.3928,-0.5879,0.7071,-0.3928,-0.6913,0.5556,-0.4619,-0.5879,0.5556,-0.5879,-0.5879,0.7071,-0.3928,-0.5879,0.5556,-0.5879,-0.5,0.7071,-0.5,-0.5,0.7071,-0.5,-0.5879,0.5556,-0.5879,-0.4619,0.5556,-0.6913,-0.5,0.7071,-0.5,-0.4619,0.5556,-0.6913,-0.3928,0.7071,-0.5879,-0.3928,0.7071,-0.5879,-0.4619,0.5556,-0.6913,-0.3182,0.5556,-0.7682,-0.3928,0.7071,-0.5879,-0.3182,0.5556,-0.7682,-0.2706,0.7071,-0.6533,-0.2706,0.7071,-0.6533,-0.3182,0.5556,-0.7682,-0.1622,0.5556,-0.8155,-0.2706,0.7071,-0.6533,-0.1622,0.5556,-0.8155,-0.1379,0.7071,-0.6935,-0.1379,0.7071,-0.6935,-0.1622,0.5556,-0.8155,0.0,0.5556,-0.8315,-0.1379,0.7071,-0.6935,0.0,0.5556,-0.8315,0.0,0.7071,-0.7071,0.0,0.7071,-0.7071,0.0,0.5556,-0.8315,0.1622,0.5556,-0.8155,0.0,0.7071,-0.7071,0.1622,0.5556,-0.8155,0.138,0.7071,-0.6935,0.138,0.7071,-0.6935,0.1622,0.5556,-0.8155,0.3182,0.5556,-0.7682,0.138,0.7071,-0.6935,0.3182,0.5556,-0.7682,0.2706,0.7071,-0.6533,0.2706,0.7071,-0.6533,0.3182,0.5556,-0.7682,0.4619,0.5556,-0.6913,0.2706,0.7071,-0.6533,0.4619,0.5556,-0.6913,0.3928,0.7071,-0.5879,0.3928,0.7071,-0.5879,0.4619,0.5556,-0.6913,0.5879,0.5556,-0.5879,0.3928,0.7071,-0.5879,0.5879,0.5556,-0.5879,0.5,0.7071,-0.5,0.5,0.7071,-0.5,0.5879,0.5556,-0.5879,0.6913,0.5556,-0.4619,0.5,0.7071,-0.5,0.6913,0.5556,-0.4619,0.5879,0.7071,-0.3928,0.5879,0.7071,-0.3928,0.6913,0.5556,-0.4619,0.7682,0.5556,-0.3182,0.5879,0.7071,-0.3928,0.7682,0.5556,-0.3182,0.6533,0.7071,-0.2706,0.6533,0.7071,-0.2706,0.7682,0.5556,-0.3182,0.8155,0.5556,-0.1622,0.6533,0.7071,-0.2706,0.8155,0.5556,-0.1622,0.6935,0.7071,-0.1379,0.6935,0.7071,-0.1379,0.8155,0.5556,-0.1622,0.8315,0.5556,0.0,0.6935,0.7071,-0.1379,0.8315,0.5556,0.0,0.7071,0.7071,0.0,0.7071,0.7071,0.0,0.8315,0.5556,0.0,0.8155,0.5556,0.1622,0.7071,0.7071,0.0,0.8155,0.5556,0.1622,0.6935,0.7071,0.138,0.6935,0.7071,0.138,0.8155,0.5556,0.1622,0.7682,0.5556,0.3182,0.6935,0.7071,0.138,0.7682,0.5556,0.3182,0.6533,0.7071,0.2706,0.6533,0.7071,0.2706,0.7682,0.5556,0.3182,0.6913,0.5556,0.4619,0.6533,0.7071,0.2706,0.6913,0.5556,0.4619,0.5879,0.7071,0.3928,0.5879,0.7071,0.3928,0.6913,0.5556,0.4619,0.5879,0.5556,0.5879,0.5879,0.7071,0.3928,0.5879,0.5556,0.5879,0.5,0.7071,0.5,0.5,0.7071,0.5,0.5879,0.5556,0.5879,0.4619,0.5556,0.6913,0.5,0.7071,0.5,0.4619,0.5556,0.6913,0.3928,0.7071,0.5879,0.3928,0.7071,0.5879,0.4619,0.5556,0.6913,0.3182,0.5556,0.7682,0.3928,0.7071,0.5879,0.3182,0.5556,0.7682,0.2706,0.7071,0.6533,0.2706,0.7071,0.6533,0.3182,0.5556,0.7682,0.1622,0.5556,0.8155,0.2706,0.7071,0.6533,0.1622,0.5556,0.8155,0.1379,0.7071,0.6935,0.1379,0.7071,0.6935,0.1622,0.5556,0.8155,0.0,0.5556,0.8315,0.1379,0.7071,0.6935,0.0,0.5556,0.8315,0.0,0.7071,0.7071,0.0,0.5556,0.8315,0.0,0.3827,0.9239,-0.1802,0.3827,0.9061,0.0,0.5556,0.8315,-0.1802,0.3827,0.9061,-0.1622,0.5556,0.8155,-0.1622,0.5556,0.8155,-0.1802,0.3827,0.9061,-0.3536,0.3827,0.8536,-0.1622,0.5556,0.8155,-0.3536,0.3827,0.8536,-0.3182,0.5556,0.7682,-0.3182,0.5556,0.7682,-0.3536,0.3827,0.8536,-0.5133,0.3827,0.7682,-0.3182,0.5556,0.7682,-0.5133,0.3827,0.7682,-0.4619,0.5556,0.6913,-0.4619,0.5556,0.6913,-0.5133,0.3827,0.7682,-0.6533,0.3827,0.6533,-0.4619,0.5556,0.6913,-0.6533,0.3827,0.6533,-0.5879,0.5556,0.5879,-0.5879,0.5556,0.5879,-0.6533,0.3827,0.6533,-0.7682,0.3827,0.5133,-0.5879,0.5556,0.5879,-0.7682,0.3827,0.5133,-0.6913,0.5556,0.4619,-0.6913,0.5556,0.4619,-0.7682,0.3827,0.5133,-0.8536,0.3827,0.3536,-0.6913,0.5556,0.4619,-0.8536,0.3827,0.3536,-0.7682,0.5556,0.3182,-0.7682,0.5556,0.3182,-0.8536,0.3827,0.3536,-0.9061,0.3827,0.1802,-0.7682,0.5556,0.3182,-0.9061,0.3827,0.1802,-0.8155,0.5556,0.1622,-0.8155,0.5556,0.1622,-0.9061,0.3827,0.1802,-0.9239,0.3827,0.0,-0.8155,0.5556,0.1622,-0.9239,0.3827,0.0,-0.8315,0.5556,0.0,-0.8315,0.5556,0.0,-0.9239,0.3827,0.0,-0.9061,0.3827,-0.1802,-0.8315,0.5556,0.0,-0.9061,0.3827,-0.1802,-0.8155,0.5556,-0.1622,-0.8155,0.5556,-0.1622,-0.9061,0.3827,-0.1802,-0.8536,0.3827,-0.3536,-0.8155,0.5556,-0.1622,-0.8536,0.3827,-0.3536,-0.7682,0.5556,-0.3182,-0.7682,0.5556,-0.3182,-0.8536,0.3827,-0.3536,-0.7682,0.3827,-0.5133,-0.7682,0.5556,-0.3182,-0.7682,0.3827,-0.5133,-0.6913,0.5556,-0.4619,-0.6913,0.5556,-0.4619,-0.7682,0.3827,-0.5133,-0.6533,0.3827,-0.6533,-0.6913,0.5556,-0.4619,-0.6533,0.3827,-0.6533,-0.5879,0.5556,-0.5879,-0.5879,0.5556,-0.5879,-0.6533,0.3827,-0.6533,-0.5133,0.3827,-0.7682,-0.5879,0.5556,-0.5879,-0.5133,0.3827,-0.7682,-0.4619,0.5556,-0.6913,-0.4619,0.5556,-0.6913,-0.5133,0.3827,-0.7682,-0.3536,0.3827,-0.8536,-0.4619,0.5556,-0.6913,-0.3536,0.3827,-0.8536,-0.3182,0.5556,-0.7682,-0.3182,0.5556,-0.7682,-0.3536,0.3827,-0.8536,-0.1802,0.3827,-0.9061,-0.3182,0.5556,-0.7682,-0.1802,0.3827,-0.9061,-0.1622,0.5556,-0.8155,-0.1622,0.5556,-0.8155,-0.1802,0.3827,-0.9061,0.0,0.3827,-0.9239,-0.1622,0.5556,-0.8155,0.0,0.3827,-0.9239,0.0,0.5556,-0.8315,0.0,0.5556,-0.8315,0.0,0.3827,-0.9239,0.1802,0.3827,-0.9061,0.0,0.5556,-0.8315,0.1802,0.3827,-0.9061,0.1622,0.5556,-0.8155,0.1622,0.5556,-0.8155,0.1802,0.3827,-0.9061,0.3536,0.3827,-0.8536,0.1622,0.5556,-0.8155,0.3536,0.3827,-0.8536,0.3182,0.5556,-0.7682,0.3182,0.5556,-0.7682,0.3536,0.3827,-0.8536,0.5133,0.3827,-0.7682,0.3182,0.5556,-0.7682,0.5133,0.3827,-0.7682,0.4619,0.5556,-0.6913,0.4619,0.5556,-0.6913,0.5133,0.3827,-0.7682,0.6533,0.3827,-0.6533,0.4619,0.5556,-0.6913,0.6533,0.3827,-0.6533,0.5879,0.5556,-0.5879,0.5879,0.5556,-0.5879,0.6533,0.3827,-0.6533,0.7682,0.3827,-0.5133,0.5879,0.5556,-0.5879,0.7682,0.3827,-0.5133,0.6913,0.5556,-0.4619,0.6913,0.5556,-0.4619,0.7682,0.3827,-0.5133,0.8536,0.3827,-0.3536,0.6913,0.5556,-0.4619,0.8536,0.3827,-0.3536,0.7682,0.5556,-0.3182,0.7682,0.5556,-0.3182,0.8536,0.3827,-0.3536,0.9061,0.3827,-0.1802,0.7682,0.5556,-0.3182,0.9061,0.3827,-0.1802,0.8155,0.5556,-0.1622,0.8155,0.5556,-0.1622,0.9061,0.3827,-0.1802,0.9239,0.3827,0.0,0.8155,0.5556,-0.1622,0.9239,0.3827,0.0,0.8315,0.5556,0.0,0.8315,0.5556,0.0,0.9239,0.3827,0.0,0.9061,0.3827,0.1802,0.8315,0.5556,0.0,0.9061,0.3827,0.1802,0.8155,0.5556,0.1622,0.8155,0.5556,0.1622,0.9061,0.3827,0.1802,0.8536,0.3827,0.3536,0.8155,0.5556,0.1622,0.8536,0.3827,0.3536,0.7682,0.5556,0.3182,0.7682,0.5556,0.3182,0.8536,0.3827,0.3536,0.7682,0.3827,0.5133,0.7682,0.5556,0.3182,0.7682,0.3827,0.5133,0.6913,0.5556,0.4619,0.6913,0.5556,0.4619,0.7682,0.3827,0.5133,0.6533,0.3827,0.6533,0.6913,0.5556,0.4619,0.6533,0.3827,0.6533,0.5879,0.5556,0.5879,0.5879,0.5556,0.5879,0.6533,0.3827,0.6533,0.5133,0.3827,0.7682,0.5879,0.5556,0.5879,0.5133,0.3827,0.7682,0.4619,0.5556,0.6913,0.4619,0.5556,0.6913,0.5133,0.3827,0.7682,0.3536,0.3827,0.8536,0.4619,0.5556,0.6913,0.3536,0.3827,0.8536,0.3182,0.5556,0.7682,0.3182,0.5556,0.7682,0.3536,0.3827,0.8536,0.1802,0.3827,0.9061,0.3182,0.5556,0.7682,0.1802,0.3827,0.9061,0.1622,0.5556,0.8155,0.1622,0.5556,0.8155,0.1802,0.3827,0.9061,0.0,0.3827,0.9239,0.1622,0.5556,0.8155,0.0,0.3827,0.9239,0.0,0.5556,0.8315,0.0,0.3827,0.9239,0.0,0.1951,0.9808,-0.1913,0.1951,0.9619,0.0,0.3827,0.9239,-0.1913,0.1951,0.9619,-0.1802,0.3827,0.9061,-0.1802,0.3827,0.9061,-0.1913,0.1951,0.9619,-0.3753,0.1951,0.9061,-0.1802,0.3827,0.9061,-0.3753,0.1951,0.9061,-0.3536,0.3827,0.8536,-0.3536,0.3827,0.8536,-0.3753,0.1951,0.9061,-0.5449,0.1951,0.8155,-0.3536,0.3827,0.8536,-0.5449,0.1951,0.8155,-0.5133,0.3827,0.7682,-0.5133,0.3827,0.7682,-0.5449,0.1951,0.8155,-0.6935,0.1951,0.6935,-0.5133,0.3827,0.7682,-0.6935,0.1951,0.6935,-0.6533,0.3827,0.6533,-0.6533,0.3827,0.6533,-0.6935,0.1951,0.6935,-0.8155,0.1951,0.5449,-0.6533,0.3827,0.6533,-0.8155,0.1951,0.5449,-0.7682,0.3827,0.5133,-0.7682,0.3827,0.5133,-0.8155,0.1951,0.5449,-0.9061,0.1951,0.3753,-0.7682,0.3827,0.5133,-0.9061,0.1951,0.3753,-0.8536,0.3827,0.3536,-0.8536,0.3827,0.3536,-0.9061,0.1951,0.3753,-0.9619,0.1951,0.1913,-0.8536,0.3827,0.3536,-0.9619,0.1951,0.1913,-0.9061,0.3827,0.1802,-0.9061,0.3827,0.1802,-0.9619,0.1951,0.1913,-0.9808,0.1951,0.0,-0.9061,0.3827,0.1802,-0.9808,0.1951,0.0,-0.9239,0.3827,0.0,-0.9239,0.3827,0.0,-0.9808,0.1951,0.0,-0.9619,0.1951,-0.1913,-0.9239,0.3827,0.0,-0.9619,0.1951,-0.1913,-0.9061,0.3827,-0.1802,-0.9061,0.3827,-0.1802,-0.9619,0.1951,-0.1913,-0.9061,0.1951,-0.3753,-0.9061,0.3827,-0.1802,-0.9061,0.1951,-0.3753,-0.8536,0.3827,-0.3536,-0.8536,0.3827,-0.3536,-0.9061,0.1951,-0.3753,-0.8155,0.1951,-0.5449,-0.8536,0.3827,-0.3536,-0.8155,0.1951,-0.5449,-0.7682,0.3827,-0.5133,-0.7682,0.3827,-0.5133,-0.8155,0.1951,-0.5449,-0.6935,0.1951,-0.6935,-0.7682,0.3827,-0.5133,-0.6935,0.1951,-0.6935,-0.6533,0.3827,-0.6533,-0.6533,0.3827,-0.6533,-0.6935,0.1951,-0.6935,-0.5449,0.1951,-0.8155,-0.6533,0.3827,-0.6533,-0.5449,0.1951,-0.8155,-0.5133,0.3827,-0.7682,-0.5133,0.3827,-0.7682,-0.5449,0.1951,-0.8155,-0.3753,0.1951,-0.9061,-0.5133,0.3827,-0.7682,-0.3753,0.1951,-0.9061,-0.3536,0.3827,-0.8536,-0.3536,0.3827,-0.8536,-0.3753,0.1951,-0.9061,-0.1913,0.1951,-0.9619,-0.3536,0.3827,-0.8536,-0.1913,0.1951,-0.9619,-0.1802,0.3827,-0.9061,-0.1802,0.3827,-0.9061,-0.1913,0.1951,-0.9619,0.0,0.1951,-0.9808,-0.1802,0.3827,-0.9061,0.0,0.1951,-0.9808,0.0,0.3827,-0.9239,0.0,0.3827,-0.9239,0.0,0.1951,-0.9808,0.1913,0.1951,-0.9619,0.0,0.3827,-0.9239,0.1913,0.1951,-0.9619,0.1802,0.3827,-0.9061,0.1802,0.3827,-0.9061,0.1913,0.1951,-0.9619,0.3753,0.1951,-0.9061,0.1802,0.3827,-0.9061,0.3753,0.1951,-0.9061,0.3536,0.3827,-0.8536,0.3536,0.3827,-0.8536,0.3753,0.1951,-0.9061,0.5449,0.1951,-0.8155,0.3536,0.3827,-0.8536,0.5449,0.1951,-0.8155,0.5133,0.3827,-0.7682,0.5133,0.3827,-0.7682,0.5449,0.1951,-0.8155,0.6935,0.1951,-0.6935,0.5133,0.3827,-0.7682,0.6935,0.1951,-0.6935,0.6533,0.3827,-0.6533,0.6533,0.3827,-0.6533,0.6935,0.1951,-0.6935,0.8155,0.1951,-0.5449,0.6533,0.3827,-0.6533,0.8155,0.1951,-0.5449,0.7682,0.3827,-0.5133,0.7682,0.3827,-0.5133,0.8155,0.1951,-0.5449,0.9061,0.1951,-0.3753,0.7682,0.3827,-0.5133,0.9061,0.1951,-0.3753,0.8536,0.3827,-0.3536,0.8536,0.3827,-0.3536,0.9061,0.1951,-0.3753,0.9619,0.1951,-0.1913,0.8536,0.3827,-0.3536,0.9619,0.1951,-0.1913,0.9061,0.3827,-0.1802,0.9061,0.3827,-0.1802,0.9619,0.1951,-0.1913,0.9808,0.1951,0.0,0.9061,0.3827,-0.1802,0.9808,0.1951,0.0,0.9239,0.3827,0.0,0.9239,0.3827,0.0,0.9808,0.1951,0.0,0.9619,0.1951,0.1913,0.9239,0.3827,0.0,0.9619,0.1951,0.1913,0.9061,0.3827,0.1802,0.9061,0.3827,0.1802,0.9619,0.1951,0.1913,0.9061,0.1951,0.3753,0.9061,0.3827,0.1802,0.9061,0.1951,0.3753,0.8536,0.3827,0.3536,0.8536,0.3827,0.3536,0.9061,0.1951,0.3753,0.8155,0.1951,0.5449,0.8536,0.3827,0.3536,0.8155,0.1951,0.5449,0.7682,0.3827,0.5133,0.7682,0.3827,0.5133,0.8155,0.1951,0.5449,0.6935,0.1951,0.6935,0.7682,0.3827,0.5133,0.6935,0.1951,0.6935,0.6533,0.3827,0.6533,0.6533,0.3827,0.6533,0.6935,0.1951,0.6935,0.5449,0.1951,0.8155,0.6533,0.3827,0.6533,0.5449,0.1951,0.8155,0.5133,0.3827,0.7682,0.5133,0.3827,0.7682,0.5449,0.1951,0.8155,0.3753,0.1951,0.9061,0.5133,0.3827,0.7682,0.3753,0.1951,0.9061,0.3536,0.3827,0.8536,0.3536,0.3827,0.8536,0.3753,0.1951,0.9061,0.1913,0.1951,0.9619,0.3536,0.3827,0.8536,0.1913,0.1951,0.9619,0.1802,0.3827,0.9061,0.1802,0.3827,0.9061,0.1913,0.1951,0.9619,0.0,0.1951,0.9808,0.1802,0.3827,0.9061,0.0,0.1951,0.9808,0.0,0.3827,0.9239,0.0,0.1951,0.9808,0.0,0.0,1.0,-0.1951,0.0,0.9808,0.0,0.1951,0.9808,-0.1951,0.0,0.9808,-0.1913,0.1951,0.9619,-0.1913,0.1951,0.9619,-0.1951,0.0,0.9808,-0.3827,0.0,0.9239,-0.1913,0.1951,0.9619,-0.3827,0.0,0.9239,-0.3753,0.1951,0.9061,-0.3753,0.1951,0.9061,-0.3827,0.0,0.9239,-0.5556,0.0,0.8315,-0.3753,0.1951,0.9061,-0.5556,0.0,0.8315,-0.5449,0.1951,0.8155,-0.5449,0.1951,0.8155,-0.5556,0.0,0.8315,-0.7071,0.0,0.7071,-0.5449,0.1951,0.8155,-0.7071,0.0,0.7071,-0.6935,0.1951,0.6935,-0.6935,0.1951,0.6935,-0.7071,0.0,0.7071,-0.8315,0.0,0.5556,-0.6935,0.1951,0.6935,-0.8315,0.0,0.5556,-0.8155,0.1951,0.5449,-0.8155,0.1951,0.5449,-0.8315,0.0,0.5556,-0.9239,0.0,0.3827,-0.8155,0.1951,0.5449,-0.9239,0.0,0.3827,-0.9061,0.1951,0.3753,-0.9061,0.1951,0.3753,-0.9239,0.0,0.3827,-0.9808,0.0,0.1951,-0.9061,0.1951,0.3753,-0.9808,0.0,0.1951,-0.9619,0.1951,0.1913,-0.9619,0.1951,0.1913,-0.9808,0.0,0.1951,-1.0,0.0,0.0,-0.9619,0.1951,0.1913,-1.0,0.0,0.0,-0.9808,0.1951,0.0,-0.9808,0.1951,0.0,-1.0,0.0,0.0,-0.9808,0.0,-0.1951,-0.9808,0.1951,0.0,-0.9808,0.0,-0.1951,-0.9619,0.1951,-0.1913,-0.9619,0.1951,-0.1913,-0.9808,0.0,-0.1951,-0.9239,0.0,-0.3827,-0.9619,0.1951,-0.1913,-0.9239,0.0,-0.3827,-0.9061,0.1951,-0.3753,-0.9061,0.1951,-0.3753,-0.9239,0.0,-0.3827,-0.8315,0.0,-0.5556,-0.9061,0.1951,-0.3753,-0.8315,0.0,-0.5556,-0.8155,0.1951,-0.5449,-0.8155,0.1951,-0.5449,-0.8315,0.0,-0.5556,-0.7071,0.0,-0.7071,-0.8155,0.1951,-0.5449,-0.7071,0.0,-0.7071,-0.6935,0.1951,-0.6935,-0.6935,0.1951,-0.6935,-0.7071,0.0,-0.7071,-0.5556,0.0,-0.8315,-0.6935,0.1951,-0.6935,-0.5556,0.0,-0.8315,-0.5449,0.1951,-0.8155,-0.5449,0.1951,-0.8155,-0.5556,0.0,-0.8315,-0.3827,0.0,-0.9239,-0.5449,0.1951,-0.8155,-0.3827,0.0,-0.9239,-0.3753,0.1951,-0.9061,-0.3753,0.1951,-0.9061,-0.3827,0.0,-0.9239,-0.1951,0.0,-0.9808,-0.3753,0.1951,-0.9061,-0.1951,0.0,-0.9808,-0.1913,0.1951,-0.9619,-0.1913,0.1951,-0.9619,-0.1951,0.0,-0.9808,0.0,0.0,-1.0,-0.1913,0.1951,-0.9619,0.0,0.0,-1.0,0.0,0.1951,-0.9808,0.0,0.1951,-0.9808,0.0,0.0,-1.0,0.1951,0.0,-0.9808,0.0,0.1951,-0.9808,0.1951,0.0,-0.9808,0.1913,0.1951,-0.9619,0.1913,0.1951,-0.9619,0.1951,0.0,-0.9808,0.3827,0.0,-0.9239,0.1913,0.1951,-0.9619,0.3827,0.0,-0.9239,0.3753,0.1951,-0.9061,0.3753,0.1951,-0.9061,0.3827,0.0,-0.9239,0.5556,0.0,-0.8315,0.3753,0.1951,-0.9061,0.5556,0.0,-0.8315,0.5449,0.1951,-0.8155,0.5449,0.1951,-0.8155,0.5556,0.0,-0.8315,0.7071,0.0,-0.7071,0.5449,0.1951,-0.8155,0.7071,0.0,-0.7071,0.6935,0.1951,-0.6935,0.6935,0.1951,-0.6935,0.7071,0.0,-0.7071,0.8315,0.0,-0.5556,0.6935,0.1951,-0.6935,0.8315,0.0,-0.5556,0.8155,0.1951,-0.5449,0.8155,0.1951,-0.5449,0.8315,0.0,-0.5556,0.9239,0.0,-0.3827,0.8155,0.1951,-0.5449,0.9239,0.0,-0.3827,0.9061,0.1951,-0.3753,0.9061,0.1951,-0.3753,0.9239,0.0,-0.3827,0.9808,0.0,-0.1951,0.9061,0.1951,-0.3753,0.9808,0.0,-0.1951,0.9619,0.1951,-0.1913,0.9619,0.1951,-0.1913,0.9808,0.0,-0.1951,1.0,0.0,0.0,0.9619,0.1951,-0.1913,1.0,0.0,0.0,0.9808,0.1951,0.0,0.9808,0.1951,0.0,1.0,0.0,0.0,0.9808,0.0,0.1951,0.9808,0.1951,0.0,0.9808,0.0,0.1951,0.9619,0.1951,0.1913,0.9619,0.1951,0.1913,0.9808,0.0,0.1951,0.9239,0.0,0.3827,0.9619,0.1951,0.1913,0.9239,0.0,0.3827,0.9061,0.1951,0.3753,0.9061,0.1951,0.3753,0.9239,0.0,0.3827,0.8315,0.0,0.5556,0.9061,0.1951,0.3753,0.8315,0.0,0.5556,0.8155,0.1951,0.5449,0.8155,0.1951,0.5449,0.8315,0.0,0.5556,0.7071,0.0,0.7071,0.8155,0.1951,0.5449,0.7071,0.0,0.7071,0.6935,0.1951,0.6935,0.6935,0.1951,0.6935,0.7071,0.0,0.7071,0.5556,0.0,0.8315,0.6935,0.1951,0.6935,0.5556,0.0,0.8315,0.5449,0.1951,0.8155,0.5449,0.1951,0.8155,0.5556,0.0,0.8315,0.3827,0.0,0.9239,0.5449,0.1951,0.8155,0.3827,0.0,0.9239,0.3753,0.1951,0.9061,0.3753,0.1951,0.9061,0.3827,0.0,0.9239,0.1951,0.0,0.9808,0.3753,0.1951,0.9061,0.1951,0.0,0.9808,0.1913,0.1951,0.9619,0.1913,0.1951,0.9619,0.1951,0.0,0.9808,0.0,0.0,1.0,0.1913,0.1951,0.9619,0.0,0.0,1.0,0.0,0.1951,0.9808,0.0,0.0,1.0,0.0,-0.1951,0.9808,-0.1913,-0.1951,0.9619,0.0,0.0,1.0,-0.1913,-0.1951,0.9619,-0.1951,0.0,0.9808,-0.1951,0.0,0.9808,-0.1913,-0.1951,0.9619,-0.3753,-0.1951,0.9061,-0.1951,0.0,0.9808,-0.3753,-0.1951,0.9061,-0.3827,0.0,0.9239,-0.3827,0.0,0.9239,-0.3753,-0.1951,0.9061,-0.5449,-0.1951,0.8155,-0.3827,0.0,0.9239,-0.5449,-0.1951,0.8155,-0.5556,0.0,0.8315,-0.5556,0.0,0.8315,-0.5449,-0.1951,0.8155,-0.6935,-0.1951,0.6935,-0.5556,0.0,0.8315,-0.6935,-0.1951,0.6935,-0.7071,0.0,0.7071,-0.7071,0.0,0.7071,-0.6935,-0.1951,0.6935,-0.8155,-0.1951,0.5449,-0.7071,0.0,0.7071,-0.8155,-0.1951,0.5449,-0.8315,0.0,0.5556,-0.8315,0.0,0.5556,-0.8155,-0.1951,0.5449,-0.9061,-0.1951,0.3753,-0.8315,0.0,0.5556,-0.9061,-0.1951,0.3753,-0.9239,0.0,0.3827,-0.9239,0.0,0.3827,-0.9061,-0.1951,0.3753,-0.9619,-0.1951,0.1913,-0.9239,0.0,0.3827,-0.9619,-0.1951,0.1913,-0.9808,0.0,0.1951,-0.9808,0.0,0.1951,-0.9619,-0.1951,0.1913,-0.9808,-0.1951,0.0,-0.9808,0.0,0.1951,-0.9808,-0.1951,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-0.9808,-0.1951,0.0,-0.9619,-0.1951,-0.1913,-1.0,0.0,0.0,-0.9619,-0.1951,-0.1913,-0.9808,0.0,-0.1951,-0.9808,0.0,-0.1951,-0.9619,-0.1951,-0.1913,-0.9061,-0.1951,-0.3753,-0.9808,0.0,-0.1951,-0.9061,-0.1951,-0.3753,-0.9239,0.0,-0.3827,-0.9239,0.0,-0.3827,-0.9061,-0.1951,-0.3753,-0.8155,-0.1951,-0.5449,-0.9239,0.0,-0.3827,-0.8155,-0.1951,-0.5449,-0.8315,0.0,-0.5556,-0.8315,0.0,-0.5556,-0.8155,-0.1951,-0.5449,-0.6935,-0.1951,-0.6935,-0.8315,0.0,-0.5556,-0.6935,-0.1951,-0.6935,-0.7071,0.0,-0.7071,-0.7071,0.0,-0.7071,-0.6935,-0.1951,-0.6935,-0.5449,-0.1951,-0.8155,-0.7071,0.0,-0.7071,-0.5449,-0.1951,-0.8155,-0.5556,0.0,-0.8315,-0.5556,0.0,-0.8315,-0.5449,-0.1951,-0.8155,-0.3753,-0.1951,-0.9061,-0.5556,0.0,-0.8315,-0.3753,-0.1951,-0.9061,-0.3827,0.0,-0.9239,-0.3827,0.0,-0.9239,-0.3753,-0.1951,-0.9061,-0.1913,-0.1951,-0.9619,-0.3827,0.0,-0.9239,-0.1913,-0.1951,-0.9619,-0.1951,0.0,-0.9808,-0.1951,0.0,-0.9808,-0.1913,-0.1951,-0.9619,0.0,-0.1951,-0.9808,-0.1951,0.0,-0.9808,0.0,-0.1951,-0.9808,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,-0.1951,-0.9808,0.1913,-0.1951,-0.9619,0.0,0.0,-1.0,0.1913,-0.1951,-0.9619,0.1951,0.0,-0.9808,0.1951,0.0,-0.9808,0.1913,-0.1951,-0.9619,0.3753,-0.1951,-0.9061,0.1951,0.0,-0.9808,0.3753,-0.1951,-0.9061,0.3827,0.0,-0.9239,0.3827,0.0,-0.9239,0.3753,-0.1951,-0.9061,0.5449,-0.1951,-0.8155,0.3827,0.0,-0.9239,0.5449,-0.1951,-0.8155,0.5556,0.0,-0.8315,0.5556,0.0,-0.8315,0.5449,-0.1951,-0.8155,0.6935,-0.1951,-0.6935,0.5556,0.0,-0.8315,0.6935,-0.1951,-0.6935,0.7071,0.0,-0.7071,0.7071,0.0,-0.7071,0.6935,-0.1951,-0.6935,0.8155,-0.1951,-0.5449,0.7071,0.0,-0.7071,0.8155,-0.1951,-0.5449,0.8315,0.0,-0.5556,0.8315,0.0,-0.5556,0.8155,-0.1951,-0.5449,0.9061,-0.1951,-0.3753,0.8315,0.0,-0.5556,0.9061,-0.1951,-0.3753,0.9239,0.0,-0.3827,0.9239,0.0,-0.3827,0.9061,-0.1951,-0.3753,0.9619,-0.1951,-0.1913,0.9239,0.0,-0.3827,0.9619,-0.1951,-0.1913,0.9808,0.0,-0.1951,0.9808,0.0,-0.1951,0.9619,-0.1951,-0.1913,0.9808,-0.1951,0.0,0.9808,0.0,-0.1951,0.9808,-0.1951,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.9808,-0.1951,0.0,0.9619,-0.1951,0.1913,1.0,0.0,0.0,0.9619,-0.1951,0.1913,0.9808,0.0,0.1951,0.9808,0.0,0.1951,0.9619,-0.1951,0.1913,0.9061,-0.1951,0.3753,0.9808,0.0,0.1951,0.9061,-0.1951,0.3753,0.9239,0.0,0.3827,0.9239,0.0,0.3827,0.9061,-0.1951,0.3753,0.8155,-0.1951,0.5449,0.9239,0.0,0.3827,0.8155,-0.1951,0.5449,0.8315,0.0,0.5556,0.8315,0.0,0.5556,0.8155,-0.1951,0.5449,0.6935,-0.1951,0.6935,0.8315,0.0,0.5556,0.6935,-0.1951,0.6935,0.7071,0.0,0.7071,0.7071,0.0,0.7071,0.6935,-0.1951,0.6935,0.5449,-0.1951,0.8155,0.7071,0.0,0.7071,0.5449,-0.1951,0.8155,0.5556,0.0,0.8315,0.5556,0.0,0.8315,0.5449,-0.1951,0.8155,0.3753,-0.1951,0.9061,0.5556,0.0,0.8315,0.3753,-0.1951,0.9061,0.3827,0.0,0.9239,0.3827,0.0,0.9239,0.3753,-0.1951,0.9061,0.1913,-0.1951,0.9619,0.3827,0.0,0.9239,0.1913,-0.1951,0.9619,0.1951,0.0,0.9808,0.1951,0.0,0.9808,0.1913,-0.1951,0.9619,0.0,-0.1951,0.9808,0.1951,0.0,0.9808,0.0,-0.1951,0.9808,0.0,0.0,1.0,0.0,-0.1951,0.9808,0.0,-0.3827,0.9239,-0.1802,-0.3827,0.9061,0.0,-0.1951,0.9808,-0.1802,-0.3827,0.9061,-0.1913,-0.1951,0.9619,-0.1913,-0.1951,0.9619,-0.1802,-0.3827,0.9061,-0.3536,-0.3827,0.8536,-0.1913,-0.1951,0.9619,-0.3536,-0.3827,0.8536,-0.3753,-0.1951,0.9061,-0.3753,-0.1951,0.9061,-0.3536,-0.3827,0.8536,-0.5133,-0.3827,0.7682,-0.3753,-0.1951,0.9061,-0.5133,-0.3827,0.7682,-0.5449,-0.1951,0.8155,-0.5449,-0.1951,0.8155,-0.5133,-0.3827,0.7682,-0.6533,-0.3827,0.6533,-0.5449,-0.1951,0.8155,-0.6533,-0.3827,0.6533,-0.6935,-0.1951,0.6935,-0.6935,-0.1951,0.6935,-0.6533,-0.3827,0.6533,-0.7682,-0.3827,0.5133,-0.6935,-0.1951,0.6935,-0.7682,-0.3827,0.5133,-0.8155,-0.1951,0.5449,-0.8155,-0.1951,0.5449,-0.7682,-0.3827,0.5133,-0.8536,-0.3827,0.3536,-0.8155,-0.1951,0.5449,-0.8536,-0.3827,0.3536,-0.9061,-0.1951,0.3753,-0.9061,-0.1951,0.3753,-0.8536,-0.3827,0.3536,-0.9061,-0.3827,0.1802,-0.9061,-0.1951,0.3753,-0.9061,-0.3827,0.1802,-0.9619,-0.1951,0.1913,-0.9619,-0.1951,0.1913,-0.9061,-0.3827,0.1802,-0.9239,-0.3827,0.0,-0.9619,-0.1951,0.1913,-0.9239,-0.3827,0.0,-0.9808,-0.1951,0.0,-0.9808,-0.1951,0.0,-0.9239,-0.3827,0.0,-0.9061,-0.3827,-0.1802,-0.9808,-0.1951,0.0,-0.9061,-0.3827,-0.1802,-0.9619,-0.1951,-0.1913,-0.9619,-0.1951,-0.1913,-0.9061,-0.3827,-0.1802,-0.8536,-0.3827,-0.3536,-0.9619,-0.1951,-0.1913,-0.8536,-0.3827,-0.3536,-0.9061,-0.1951,-0.3753,-0.9061,-0.1951,-0.3753,-0.8536,-0.3827,-0.3536,-0.7682,-0.3827,-0.5133,-0.9061,-0.1951,-0.3753,-0.7682,-0.3827,-0.5133,-0.8155,-0.1951,-0.5449,-0.8155,-0.1951,-0.5449,-0.7682,-0.3827,-0.5133,-0.6533,-0.3827,-0.6533,-0.8155,-0.1951,-0.5449,-0.6533,-0.3827,-0.6533,-0.6935,-0.1951,-0.6935,-0.6935,-0.1951,-0.6935,-0.6533,-0.3827,-0.6533,-0.5133,-0.3827,-0.7682,-0.6935,-0.1951,-0.6935,-0.5133,-0.3827,-0.7682,-0.5449,-0.1951,-0.8155,-0.5449,-0.1951,-0.8155,-0.5133,-0.3827,-0.7682,-0.3536,-0.3827,-0.8536,-0.5449,-0.1951,-0.8155,-0.3536,-0.3827,-0.8536,-0.3753,-0.1951,-0.9061,-0.3753,-0.1951,-0.9061,-0.3536,-0.3827,-0.8536,-0.1802,-0.3827,-0.9061,-0.3753,-0.1951,-0.9061,-0.1802,-0.3827,-0.9061,-0.1913,-0.1951,-0.9619,-0.1913,-0.1951,-0.9619,-0.1802,-0.3827,-0.9061,0.0,-0.3827,-0.9239,-0.1913,-0.1951,-0.9619,0.0,-0.3827,-0.9239,0.0,-0.1951,-0.9808,0.0,-0.1951,-0.9808,0.0,-0.3827,-0.9239,0.1802,-0.3827,-0.9061,0.0,-0.1951,-0.9808,0.1802,-0.3827,-0.9061,0.1913,-0.1951,-0.9619,0.1913,-0.1951,-0.9619,0.1802,-0.3827,-0.9061,0.3536,-0.3827,-0.8536,0.1913,-0.1951,-0.9619,0.3536,-0.3827,-0.8536,0.3753,-0.1951,-0.9061,0.3753,-0.1951,-0.9061,0.3536,-0.3827,-0.8536,0.5133,-0.3827,-0.7682,0.3753,-0.1951,-0.9061,0.5133,-0.3827,-0.7682,0.5449,-0.1951,-0.8155,0.5449,-0.1951,-0.8155,0.5133,-0.3827,-0.7682,0.6533,-0.3827,-0.6533,0.5449,-0.1951,-0.8155,0.6533,-0.3827,-0.6533,0.6935,-0.1951,-0.6935,0.6935,-0.1951,-0.6935,0.6533,-0.3827,-0.6533,0.7682,-0.3827,-0.5133,0.6935,-0.1951,-0.6935,0.7682,-0.3827,-0.5133,0.8155,-0.1951,-0.5449,0.8155,-0.1951,-0.5449,0.7682,-0.3827,-0.5133,0.8536,-0.3827,-0.3536,0.8155,-0.1951,-0.5449,0.8536,-0.3827,-0.3536,0.9061,-0.1951,-0.3753,0.9061,-0.1951,-0.3753,0.8536,-0.3827,-0.3536,0.9061,-0.3827,-0.1802,0.9061,-0.1951,-0.3753,0.9061,-0.3827,-0.1802,0.9619,-0.1951,-0.1913,0.9619,-0.1951,-0.1913,0.9061,-0.3827,-0.1802,0.9239,-0.3827,0.0,0.9619,-0.1951,-0.1913,0.9239,-0.3827,0.0,0.9808,-0.1951,0.0,0.9808,-0.1951,0.0,0.9239,-0.3827,0.0,0.9061,-0.3827,0.1802,0.9808,-0.1951,0.0,0.9061,-0.3827,0.1802,0.9619,-0.1951,0.1913,0.9619,-0.1951,0.1913,0.9061,-0.3827,0.1802,0.8536,-0.3827,0.3536,0.9619,-0.1951,0.1913,0.8536,-0.3827,0.3536,0.9061,-0.1951,0.3753,0.9061,-0.1951,0.3753,0.8536,-0.3827,0.3536,0.7682,-0.3827,0.5133,0.9061,-0.1951,0.3753,0.7682,-0.3827,0.5133,0.8155,-0.1951,0.5449,0.8155,-0.1951,0.5449,0.7682,-0.3827,0.5133,0.6533,-0.3827,0.6533,0.8155,-0.1951,0.5449,0.6533,-0.3827,0.6533,0.6935,-0.1951,0.6935,0.6935,-0.1951,0.6935,0.6533,-0.3827,0.6533,0.5133,-0.3827,0.7682,0.6935,-0.1951,0.6935,0.5133,-0.3827,0.7682,0.5449,-0.1951,0.8155,0.5449,-0.1951,0.8155,0.5133,-0.3827,0.7682,0.3536,-0.3827,0.8536,0.5449,-0.1951,0.8155,0.3536,-0.3827,0.8536,0.3753,-0.1951,0.9061,0.3753,-0.1951,0.9061,0.3536,-0.3827,0.8536,0.1802,-0.3827,0.9061,0.3753,-0.1951,0.9061,0.1802,-0.3827,0.9061,0.1913,-0.1951,0.9619,0.1913,-0.1951,0.9619,0.1802,-0.3827,0.9061,0.0,-0.3827,0.9239,0.1913,-0.1951,0.9619,0.0,-0.3827,0.9239,0.0,-0.1951,0.9808,0.0,-0.3827,0.9239,0.0,-0.5556,0.8315,-0.1622,-0.5556,0.8155,0.0,-0.3827,0.9239,-0.1622,-0.5556,0.8155,-0.1802,-0.3827,0.9061,-0.1802,-0.3827,0.9061,-0.1622,-0.5556,0.8155,-0.3182,-0.5556,0.7682,-0.1802,-0.3827,0.9061,-0.3182,-0.5556,0.7682,-0.3536,-0.3827,0.8536,-0.3536,-0.3827,0.8536,-0.3182,-0.5556,0.7682,-0.4619,-0.5556,0.6913,-0.3536,-0.3827,0.8536,-0.4619,-0.5556,0.6913,-0.5133,-0.3827,0.7682,-0.5133,-0.3827,0.7682,-0.4619,-0.5556,0.6913,-0.5879,-0.5556,0.5879,-0.5133,-0.3827,0.7682,-0.5879,-0.5556,0.5879,-0.6533,-0.3827,0.6533,-0.6533,-0.3827,0.6533,-0.5879,-0.5556,0.5879,-0.6913,-0.5556,0.4619,-0.6533,-0.3827,0.6533,-0.6913,-0.5556,0.4619,-0.7682,-0.3827,0.5133,-0.7682,-0.3827,0.5133,-0.6913,-0.5556,0.4619,-0.7682,-0.5556,0.3182,-0.7682,-0.3827,0.5133,-0.7682,-0.5556,0.3182,-0.8536,-0.3827,0.3536,-0.8536,-0.3827,0.3536,-0.7682,-0.5556,0.3182,-0.8155,-0.5556,0.1622,-0.8536,-0.3827,0.3536,-0.8155,-0.5556,0.1622,-0.9061,-0.3827,0.1802,-0.9061,-0.3827,0.1802,-0.8155,-0.5556,0.1622,-0.8315,-0.5556,0.0,-0.9061,-0.3827,0.1802,-0.8315,-0.5556,0.0,-0.9239,-0.3827,0.0,-0.9239,-0.3827,0.0,-0.8315,-0.5556,0.0,-0.8155,-0.5556,-0.1622,-0.9239,-0.3827,0.0,-0.8155,-0.5556,-0.1622,-0.9061,-0.3827,-0.1802,-0.9061,-0.3827,-0.1802,-0.8155,-0.5556,-0.1622,-0.7682,-0.5556,-0.3182,-0.9061,-0.3827,-0.1802,-0.7682,-0.5556,-0.3182,-0.8536,-0.3827,-0.3536,-0.8536,-0.3827,-0.3536,-0.7682,-0.5556,-0.3182,-0.6913,-0.5556,-0.4619,-0.8536,-0.3827,-0.3536,-0.6913,-0.5556,-0.4619,-0.7682,-0.3827,-0.5133,-0.7682,-0.3827,-0.5133,-0.6913,-0.5556,-0.4619,-0.5879,-0.5556,-0.5879,-0.7682,-0.3827,-0.5133,-0.5879,-0.5556,-0.5879,-0.6533,-0.3827,-0.6533,-0.6533,-0.3827,-0.6533,-0.5879,-0.5556,-0.5879,-0.4619,-0.5556,-0.6913,-0.6533,-0.3827,-0.6533,-0.4619,-0.5556,-0.6913,-0.5133,-0.3827,-0.7682,-0.5133,-0.3827,-0.7682,-0.4619,-0.5556,-0.6913,-0.3182,-0.5556,-0.7682,-0.5133,-0.3827,-0.7682,-0.3182,-0.5556,-0.7682,-0.3536,-0.3827,-0.8536,-0.3536,-0.3827,-0.8536,-0.3182,-0.5556,-0.7682,-0.1622,-0.5556,-0.8155,-0.3536,-0.3827,-0.8536,-0.1622,-0.5556,-0.8155,-0.1802,-0.3827,-0.9061,-0.1802,-0.3827,-0.9061,-0.1622,-0.5556,-0.8155,0.0,-0.5556,-0.8315,-0.1802,-0.3827,-0.9061,0.0,-0.5556,-0.8315,0.0,-0.3827,-0.9239,0.0,-0.3827,-0.9239,0.0,-0.5556,-0.8315,0.1622,-0.5556,-0.8155,0.0,-0.3827,-0.9239,0.1622,-0.5556,-0.8155,0.1802,-0.3827,-0.9061,0.1802,-0.3827,-0.9061,0.1622,-0.5556,-0.8155,0.3182,-0.5556,-0.7682,0.1802,-0.3827,-0.9061,0.3182,-0.5556,-0.7682,0.3536,-0.3827,-0.8536,0.3536,-0.3827,-0.8536,0.3182,-0.5556,-0.7682,0.4619,-0.5556,-0.6913,0.3536,-0.3827,-0.8536,0.4619,-0.5556,-0.6913,0.5133,-0.3827,-0.7682,0.5133,-0.3827,-0.7682,0.4619,-0.5556,-0.6913,0.5879,-0.5556,-0.5879,0.5133,-0.3827,-0.7682,0.5879,-0.5556,-0.5879,0.6533,-0.3827,-0.6533,0.6533,-0.3827,-0.6533,0.5879,-0.5556,-0.5879,0.6913,-0.5556,-0.4619,0.6533,-0.3827,-0.6533,0.6913,-0.5556,-0.4619,0.7682,-0.3827,-0.5133,0.7682,-0.3827,-0.5133,0.6913,-0.5556,-0.4619,0.7682,-0.5556,-0.3182,0.7682,-0.3827,-0.5133,0.7682,-0.5556,-0.3182,0.8536,-0.3827,-0.3536,0.8536,-0.3827,-0.3536,0.7682,-0.5556,-0.3182,0.8155,-0.5556,-0.1622,0.8536,-0.3827,-0.3536,0.8155,-0.5556,-0.1622,0.9061,-0.3827,-0.1802,0.9061,-0.3827,-0.1802,0.8155,-0.5556,-0.1622,0.8315,-0.5556,0.0,0.9061,-0.3827,-0.1802,0.8315,-0.5556,0.0,0.9239,-0.3827,0.0,0.9239,-0.3827,0.0,0.8315,-0.5556,0.0,0.8155,-0.5556,0.1622,0.9239,-0.3827,0.0,0.8155,-0.5556,0.1622,0.9061,-0.3827,0.1802,0.9061,-0.3827,0.1802,0.8155,-0.5556,0.1622,0.7682,-0.5556,0.3182,0.9061,-0.3827,0.1802,0.7682,-0.5556,0.3182,0.8536,-0.3827,0.3536,0.8536,-0.3827,0.3536,0.7682,-0.5556,0.3182,0.6913,-0.5556,0.4619,0.8536,-0.3827,0.3536,0.6913,-0.5556,0.4619,0.7682,-0.3827,0.5133,0.7682,-0.3827,0.5133,0.6913,-0.5556,0.4619,0.5879,-0.5556,0.5879,0.7682,-0.3827,0.5133,0.5879,-0.5556,0.5879,0.6533,-0.3827,0.6533,0.6533,-0.3827,0.6533,0.5879,-0.5556,0.5879,0.4619,-0.5556,0.6913,0.6533,-0.3827,0.6533,0.4619,-0.5556,0.6913,0.5133,-0.3827,0.7682,0.5133,-0.3827,0.7682,0.4619,-0.5556,0.6913,0.3182,-0.5556,0.7682,0.5133,-0.3827,0.7682,0.3182,-0.5556,0.7682,0.3536,-0.3827,0.8536,0.3536,-0.3827,0.8536,0.3182,-0.5556,0.7682,0.1622,-0.5556,0.8155,0.3536,-0.3827,0.8536,0.1622,-0.5556,0.8155,0.1802,-0.3827,0.9061,0.1802,-0.3827,0.9061,0.1622,-0.5556,0.8155,0.0,-0.5556,0.8315,0.1802,-0.3827,0.9061,0.0,-0.5556,0.8315,0.0,-0.3827,0.9239,0.0,-0.5556,0.8315,0.0,-0.7071,0.7071,-0.1379,-0.7071,0.6935,0.0,-0.5556,0.8315,-0.1379,-0.7071,0.6935,-0.1622,-0.5556,0.8155,-0.1622,-0.5556,0.8155,-0.1379,-0.7071,0.6935,-0.2706,-0.7071,0.6533,-0.1622,-0.5556,0.8155,-0.2706,-0.7071,0.6533,-0.3182,-0.5556,0.7682,-0.3182,-0.5556,0.7682,-0.2706,-0.7071,0.6533,-0.3928,-0.7071,0.5879,-0.3182,-0.5556,0.7682,-0.3928,-0.7071,0.5879,-0.4619,-0.5556,0.6913,-0.4619,-0.5556,0.6913,-0.3928,-0.7071,0.5879,-0.5,-0.7071,0.5,-0.4619,-0.5556,0.6913,-0.5,-0.7071,0.5,-0.5879,-0.5556,0.5879,-0.5879,-0.5556,0.5879,-0.5,-0.7071,0.5,-0.5879,-0.7071,0.3928,-0.5879,-0.5556,0.5879,-0.5879,-0.7071,0.3928,-0.6913,-0.5556,0.4619,-0.6913,-0.5556,0.4619,-0.5879,-0.7071,0.3928,-0.6533,-0.7071,0.2706,-0.6913,-0.5556,0.4619,-0.6533,-0.7071,0.2706,-0.7682,-0.5556,0.3182,-0.7682,-0.5556,0.3182,-0.6533,-0.7071,0.2706,-0.6935,-0.7071,0.1379,-0.7682,-0.5556,0.3182,-0.6935,-0.7071,0.1379,-0.8155,-0.5556,0.1622,-0.8155,-0.5556,0.1622,-0.6935,-0.7071,0.1379,-0.7071,-0.7071,0.0,-0.8155,-0.5556,0.1622,-0.7071,-0.7071,0.0,-0.8315,-0.5556,0.0,-0.8315,-0.5556,0.0,-0.7071,-0.7071,0.0,-0.6935,-0.7071,-0.1379,-0.8315,-0.5556,0.0,-0.6935,-0.7071,-0.1379,-0.8155,-0.5556,-0.1622,-0.8155,-0.5556,-0.1622,-0.6935,-0.7071,-0.1379,-0.6533,-0.7071,-0.2706,-0.8155,-0.5556,-0.1622,-0.6533,-0.7071,-0.2706,-0.7682,-0.5556,-0.3182,-0.7682,-0.5556,-0.3182,-0.6533,-0.7071,-0.2706,-0.5879,-0.7071,-0.3928,-0.7682,-0.5556,-0.3182,-0.5879,-0.7071,-0.3928,-0.6913,-0.5556,-0.4619,-0.6913,-0.5556,-0.4619,-0.5879,-0.7071,-0.3928,-0.5,-0.7071,-0.5,-0.6913,-0.5556,-0.4619,-0.5,-0.7071,-0.5,-0.5879,-0.5556,-0.5879,-0.5879,-0.5556,-0.5879,-0.5,-0.7071,-0.5,-0.3928,-0.7071,-0.5879,-0.5879,-0.5556,-0.5879,-0.3928,-0.7071,-0.5879,-0.4619,-0.5556,-0.6913,-0.4619,-0.5556,-0.6913,-0.3928,-0.7071,-0.5879,-0.2706,-0.7071,-0.6533,-0.4619,-0.5556,-0.6913,-0.2706,-0.7071,-0.6533,-0.3182,-0.5556,-0.7682,-0.3182,-0.5556,-0.7682,-0.2706,-0.7071,-0.6533,-0.1379,-0.7071,-0.6935,-0.3182,-0.5556,-0.7682,-0.1379,-0.7071,-0.6935,-0.1622,-0.5556,-0.8155,-0.1622,-0.5556,-0.8155,-0.1379,-0.7071,-0.6935,0.0,-0.7071,-0.7071,-0.1622,-0.5556,-0.8155,0.0,-0.7071,-0.7071,0.0,-0.5556,-0.8315,0.0,-0.5556,-0.8315,0.0,-0.7071,-0.7071,0.138,-0.7071,-0.6935,0.0,-0.5556,-0.8315,0.138,-0.7071,-0.6935,0.1622,-0.5556,-0.8155,0.1622,-0.5556,-0.8155,0.138,-0.7071,-0.6935,0.2706,-0.7071,-0.6533,0.1622,-0.5556,-0.8155,0.2706,-0.7071,-0.6533,0.3182,-0.5556,-0.7682,0.3182,-0.5556,-0.7682,0.2706,-0.7071,-0.6533,0.3928,-0.7071,-0.5879,0.3182,-0.5556,-0.7682,0.3928,-0.7071,-0.5879,0.4619,-0.5556,-0.6913,0.4619,-0.5556,-0.6913,0.3928,-0.7071,-0.5879,0.5,-0.7071,-0.5,0.4619,-0.5556,-0.6913,0.5,-0.7071,-0.5,0.5879,-0.5556,-0.5879,0.5879,-0.5556,-0.5879,0.5,-0.7071,-0.5,0.5879,-0.7071,-0.3928,0.5879,-0.5556,-0.5879,0.5879,-0.7071,-0.3928,0.6913,-0.5556,-0.4619,0.6913,-0.5556,-0.4619,0.5879,-0.7071,-0.3928,0.6533,-0.7071,-0.2706,0.6913,-0.5556,-0.4619,0.6533,-0.7071,-0.2706,0.7682,-0.5556,-0.3182,0.7682,-0.5556,-0.3182,0.6533,-0.7071,-0.2706,0.6935,-0.7071,-0.1379,0.7682,-0.5556,-0.3182,0.6935,-0.7071,-0.1379,0.8155,-0.5556,-0.1622,0.8155,-0.5556,-0.1622,0.6935,-0.7071,-0.1379,0.7071,-0.7071,0.0,0.8155,-0.5556,-0.1622,0.7071,-0.7071,0.0,0.8315,-0.5556,0.0,0.8315,-0.5556,0.0,0.7071,-0.7071,0.0,0.6935,-0.7071,0.138,0.8315,-0.5556,0.0,0.6935,-0.7071,0.138,0.8155,-0.5556,0.1622,0.8155,-0.5556,0.1622,0.6935,-0.7071,0.138,0.6533,-0.7071,0.2706,0.8155,-0.5556,0.1622,0.6533,-0.7071,0.2706,0.7682,-0.5556,0.3182,0.7682,-0.5556,0.3182,0.6533,-0.7071,0.2706,0.5879,-0.7071,0.3928,0.7682,-0.5556,0.3182,0.5879,-0.7071,0.3928,0.6913,-0.5556,0.4619,0.6913,-0.5556,0.4619,0.5879,-0.7071,0.3928,0.5,-0.7071,0.5,0.6913,-0.5556,0.4619,0.5,-0.7071,0.5,0.5879,-0.5556,0.5879,0.5879,-0.5556,0.5879,0.5,-0.7071,0.5,0.3928,-0.7071,0.5879,0.5879,-0.5556,0.5879,0.3928,-0.7071,0.5879,0.4619,-0.5556,0.6913,0.4619,-0.5556,0.6913,0.3928,-0.7071,0.5879,0.2706,-0.7071,0.6533,0.4619,-0.5556,0.6913,0.2706,-0.7071,0.6533,0.3182,-0.5556,0.7682,0.3182,-0.5556,0.7682,0.2706,-0.7071,0.6533,0.1379,-0.7071,0.6935,0.3182,-0.5556,0.7682,0.1379,-0.7071,0.6935,0.1622,-0.5556,0.8155,0.1622,-0.5556,0.8155,0.1379,-0.7071,0.6935,0.0,-0.7071,0.7071,0.1622,-0.5556,0.8155,0.0,-0.7071,0.7071,0.0,-0.5556,0.8315,0.0,-0.7071,0.7071,0.0,-0.8315,0.5556,-0.1084,-0.8315,0.5449,0.0,-0.7071,0.7071,-0.1084,-0.8315,0.5449,-0.1379,-0.7071,0.6935,-0.1379,-0.7071,0.6935,-0.1084,-0.8315,0.5449,-0.2126,-0.8315,0.5133,-0.1379,-0.7071,0.6935,-0.2126,-0.8315,0.5133,-0.2706,-0.7071,0.6533,-0.2706,-0.7071,0.6533,-0.2126,-0.8315,0.5133,-0.3087,-0.8315,0.4619,-0.2706,-0.7071,0.6533,-0.3087,-0.8315,0.4619,-0.3928,-0.7071,0.5879,-0.3928,-0.7071,0.5879,-0.3087,-0.8315,0.4619,-0.3928,-0.8315,0.3928,-0.3928,-0.7071,0.5879,-0.3928,-0.8315,0.3928,-0.5,-0.7071,0.5,-0.5,-0.7071,0.5,-0.3928,-0.8315,0.3928,-0.4619,-0.8315,0.3087,-0.5,-0.7071,0.5,-0.4619,-0.8315,0.3087,-0.5879,-0.7071,0.3928,-0.5879,-0.7071,0.3928,-0.4619,-0.8315,0.3087,-0.5133,-0.8315,0.2126,-0.5879,-0.7071,0.3928,-0.5133,-0.8315,0.2126,-0.6533,-0.7071,0.2706,-0.6533,-0.7071,0.2706,-0.5133,-0.8315,0.2126,-0.5449,-0.8315,0.1084,-0.6533,-0.7071,0.2706,-0.5449,-0.8315,0.1084,-0.6935,-0.7071,0.1379,-0.6935,-0.7071,0.1379,-0.5449,-0.8315,0.1084,-0.5556,-0.8315,0.0,-0.6935,-0.7071,0.1379,-0.5556,-0.8315,0.0,-0.7071,-0.7071,0.0,-0.7071,-0.7071,0.0,-0.5556,-0.8315,0.0,-0.5449,-0.8315,-0.1084,-0.7071,-0.7071,0.0,-0.5449,-0.8315,-0.1084,-0.6935,-0.7071,-0.1379,-0.6935,-0.7071,-0.1379,-0.5449,-0.8315,-0.1084,-0.5133,-0.8315,-0.2126,-0.6935,-0.7071,-0.1379,-0.5133,-0.8315,-0.2126,-0.6533,-0.7071,-0.2706,-0.6533,-0.7071,-0.2706,-0.5133,-0.8315,-0.2126,-0.4619,-0.8315,-0.3087,-0.6533,-0.7071,-0.2706,-0.4619,-0.8315,-0.3087,-0.5879,-0.7071,-0.3928,-0.5879,-0.7071,-0.3928,-0.4619,-0.8315,-0.3087,-0.3928,-0.8315,-0.3928,-0.5879,-0.7071,-0.3928,-0.3928,-0.8315,-0.3928,-0.5,-0.7071,-0.5,-0.5,-0.7071,-0.5,-0.3928,-0.8315,-0.3928,-0.3087,-0.8315,-0.4619,-0.5,-0.7071,-0.5,-0.3087,-0.8315,-0.4619,-0.3928,-0.7071,-0.5879,-0.3928,-0.7071,-0.5879,-0.3087,-0.8315,-0.4619,-0.2126,-0.8315,-0.5133,-0.3928,-0.7071,-0.5879,-0.2126,-0.8315,-0.5133,-0.2706,-0.7071,-0.6533,-0.2706,-0.7071,-0.6533,-0.2126,-0.8315,-0.5133,-0.1084,-0.8315,-0.5449,-0.2706,-0.7071,-0.6533,-0.1084,-0.8315,-0.5449,-0.1379,-0.7071,-0.6935,-0.1379,-0.7071,-0.6935,-0.1084,-0.8315,-0.5449,0.0,-0.8315,-0.5556,-0.1379,-0.7071,-0.6935,0.0,-0.8315,-0.5556,0.0,-0.7071,-0.7071,0.0,-0.7071,-0.7071,0.0,-0.8315,-0.5556,0.1084,-0.8315,-0.5449,0.0,-0.7071,-0.7071,0.1084,-0.8315,-0.5449,0.138,-0.7071,-0.6935,0.138,-0.7071,-0.6935,0.1084,-0.8315,-0.5449,0.2126,-0.8315,-0.5133,0.138,-0.7071,-0.6935,0.2126,-0.8315,-0.5133,0.2706,-0.7071,-0.6533,0.2706,-0.7071,-0.6533,0.2126,-0.8315,-0.5133,0.3087,-0.8315,-0.4619,0.2706,-0.7071,-0.6533,0.3087,-0.8315,-0.4619,0.3928,-0.7071,-0.5879,0.3928,-0.7071,-0.5879,0.3087,-0.8315,-0.4619,0.3928,-0.8315,-0.3928,0.3928,-0.7071,-0.5879,0.3928,-0.8315,-0.3928,0.5,-0.7071,-0.5,0.5,-0.7071,-0.5,0.3928,-0.8315,-0.3928,0.4619,-0.8315,-0.3087,0.5,-0.7071,-0.5,0.4619,-0.8315,-0.3087,0.5879,-0.7071,-0.3928,0.5879,-0.7071,-0.3928,0.4619,-0.8315,-0.3087,0.5133,-0.8315,-0.2126,0.5879,-0.7071,-0.3928,0.5133,-0.8315,-0.2126,0.6533,-0.7071,-0.2706,0.6533,-0.7071,-0.2706,0.5133,-0.8315,-0.2126,0.5449,-0.8315,-0.1084,0.6533,-0.7071,-0.2706,0.5449,-0.8315,-0.1084,0.6935,-0.7071,-0.1379,0.6935,-0.7071,-0.1379,0.5449,-0.8315,-0.1084,0.5556,-0.8315,0.0,0.6935,-0.7071,-0.1379,0.5556,-0.8315,0.0,0.7071,-0.7071,0.0,0.7071,-0.7071,0.0,0.5556,-0.8315,0.0,0.5449,-0.8315,0.1084,0.7071,-0.7071,0.0,0.5449,-0.8315,0.1084,0.6935,-0.7071,0.138,0.6935,-0.7071,0.138,0.5449,-0.8315,0.1084,0.5133,-0.8315,0.2126,0.6935,-0.7071,0.138,0.5133,-0.8315,0.2126,0.6533,-0.7071,0.2706,0.6533,-0.7071,0.2706,0.5133,-0.8315,0.2126,0.4619,-0.8315,0.3087,0.6533,-0.7071,0.2706,0.4619,-0.8315,0.3087,0.5879,-0.7071,0.3928,0.5879,-0.7071,0.3928,0.4619,-0.8315,0.3087,0.3928,-0.8315,0.3928,0.5879,-0.7071,0.3928,0.3928,-0.8315,0.3928,0.5,-0.7071,0.5,0.5,-0.7071,0.5,0.3928,-0.8315,0.3928,0.3087,-0.8315,0.4619,0.5,-0.7071,0.5,0.3087,-0.8315,0.4619,0.3928,-0.7071,0.5879,0.3928,-0.7071,0.5879,0.3087,-0.8315,0.4619,0.2126,-0.8315,0.5133,0.3928,-0.7071,0.5879,0.2126,-0.8315,0.5133,0.2706,-0.7071,0.6533,0.2706,-0.7071,0.6533,0.2126,-0.8315,0.5133,0.1084,-0.8315,0.5449,0.2706,-0.7071,0.6533,0.1084,-0.8315,0.5449,0.1379,-0.7071,0.6935,0.1379,-0.7071,0.6935,0.1084,-0.8315,0.5449,0.0,-0.8315,0.5556,0.1379,-0.7071,0.6935,0.0,-0.8315,0.5556,0.0,-0.7071,0.7071,0.0,-0.8315,0.5556,0.0,-0.9239,0.3827,-0.0747,-0.9239,0.3753,0.0,-0.8315,0.5556,-0.0747,-0.9239,0.3753,-0.1084,-0.8315,0.5449,-0.1084,-0.8315,0.5449,-0.0747,-0.9239,0.3753,-0.1464,-0.9239,0.3536,-0.1084,-0.8315,0.5449,-0.1464,-0.9239,0.3536,-0.2126,-0.8315,0.5133,-0.2126,-0.8315,0.5133,-0.1464,-0.9239,0.3536,-0.2126,-0.9239,0.3182,-0.2126,-0.8315,0.5133,-0.2126,-0.9239,0.3182,-0.3087,-0.8315,0.4619,-0.3087,-0.8315,0.4619,-0.2126,-0.9239,0.3182,-0.2706,-0.9239,0.2706,-0.3087,-0.8315,0.4619,-0.2706,-0.9239,0.2706,-0.3928,-0.8315,0.3928,-0.3928,-0.8315,0.3928,-0.2706,-0.9239,0.2706,-0.3182,-0.9239,0.2126,-0.3928,-0.8315,0.3928,-0.3182,-0.9239,0.2126,-0.4619,-0.8315,0.3087,-0.4619,-0.8315,0.3087,-0.3182,-0.9239,0.2126,-0.3536,-0.9239,0.1464,-0.4619,-0.8315,0.3087,-0.3536,-0.9239,0.1464,-0.5133,-0.8315,0.2126,-0.5133,-0.8315,0.2126,-0.3536,-0.9239,0.1464,-0.3753,-0.9239,0.0747,-0.5133,-0.8315,0.2126,-0.3753,-0.9239,0.0747,-0.5449,-0.8315,0.1084,-0.5449,-0.8315,0.1084,-0.3753,-0.9239,0.0747,-0.3827,-0.9239,0.0,-0.5449,-0.8315,0.1084,-0.3827,-0.9239,0.0,-0.5556,-0.8315,0.0,-0.5556,-0.8315,0.0,-0.3827,-0.9239,0.0,-0.3753,-0.9239,-0.0747,-0.5556,-0.8315,0.0,-0.3753,-0.9239,-0.0747,-0.5449,-0.8315,-0.1084,-0.5449,-0.8315,-0.1084,-0.3753,-0.9239,-0.0747,-0.3536,-0.9239,-0.1464,-0.5449,-0.8315,-0.1084,-0.3536,-0.9239,-0.1464,-0.5133,-0.8315,-0.2126,-0.5133,-0.8315,-0.2126,-0.3536,-0.9239,-0.1464,-0.3182,-0.9239,-0.2126,-0.5133,-0.8315,-0.2126,-0.3182,-0.9239,-0.2126,-0.4619,-0.8315,-0.3087,-0.4619,-0.8315,-0.3087,-0.3182,-0.9239,-0.2126,-0.2706,-0.9239,-0.2706,-0.4619,-0.8315,-0.3087,-0.2706,-0.9239,-0.2706,-0.3928,-0.8315,-0.3928,-0.3928,-0.8315,-0.3928,-0.2706,-0.9239,-0.2706,-0.2126,-0.9239,-0.3182,-0.3928,-0.8315,-0.3928,-0.2126,-0.9239,-0.3182,-0.3087,-0.8315,-0.4619,-0.3087,-0.8315,-0.4619,-0.2126,-0.9239,-0.3182,-0.1464,-0.9239,-0.3536,-0.3087,-0.8315,-0.4619,-0.1464,-0.9239,-0.3536,-0.2126,-0.8315,-0.5133,-0.2126,-0.8315,-0.5133,-0.1464,-0.9239,-0.3536,-0.0747,-0.9239,-0.3753,-0.2126,-0.8315,-0.5133,-0.0747,-0.9239,-0.3753,-0.1084,-0.8315,-0.5449,-0.1084,-0.8315,-0.5449,-0.0747,-0.9239,-0.3753,0.0,-0.9239,-0.3827,-0.1084,-0.8315,-0.5449,0.0,-0.9239,-0.3827,0.0,-0.8315,-0.5556,0.0,-0.8315,-0.5556,0.0,-0.9239,-0.3827,0.0747,-0.9239,-0.3753,0.0,-0.8315,-0.5556,0.0747,-0.9239,-0.3753,0.1084,-0.8315,-0.5449,0.1084,-0.8315,-0.5449,0.0747,-0.9239,-0.3753,0.1464,-0.9239,-0.3536,0.1084,-0.8315,-0.5449,0.1464,-0.9239,-0.3536,0.2126,-0.8315,-0.5133,0.2126,-0.8315,-0.5133,0.1464,-0.9239,-0.3536,0.2126,-0.9239,-0.3182,0.2126,-0.8315,-0.5133,0.2126,-0.9239,-0.3182,0.3087,-0.8315,-0.4619,0.3087,-0.8315,-0.4619,0.2126,-0.9239,-0.3182,0.2706,-0.9239,-0.2706,0.3087,-0.8315,-0.4619,0.2706,-0.9239,-0.2706,0.3928,-0.8315,-0.3928,0.3928,-0.8315,-0.3928,0.2706,-0.9239,-0.2706,0.3182,-0.9239,-0.2126,0.3928,-0.8315,-0.3928,0.3182,-0.9239,-0.2126,0.4619,-0.8315,-0.3087,0.4619,-0.8315,-0.3087,0.3182,-0.9239,-0.2126,0.3536,-0.9239,-0.1464,0.4619,-0.8315,-0.3087,0.3536,-0.9239,-0.1464,0.5133,-0.8315,-0.2126,0.5133,-0.8315,-0.2126,0.3536,-0.9239,-0.1464,0.3753,-0.9239,-0.0747,0.5133,-0.8315,-0.2126,0.3753,-0.9239,-0.0747,0.5449,-0.8315,-0.1084,0.5449,-0.8315,-0.1084,0.3753,-0.9239,-0.0747,0.3827,-0.9239,0.0,0.5449,-0.8315,-0.1084,0.3827,-0.9239,0.0,0.5556,-0.8315,0.0,0.5556,-0.8315,0.0,0.3827,-0.9239,0.0,0.3753,-0.9239,0.0747,0.5556,-0.8315,0.0,0.3753,-0.9239,0.0747,0.5449,-0.8315,0.1084,0.5449,-0.8315,0.1084,0.3753,-0.9239,0.0747,0.3536,-0.9239,0.1464,0.5449,-0.8315,0.1084,0.3536,-0.9239,0.1464,0.5133,-0.8315,0.2126,0.5133,-0.8315,0.2126,0.3536,-0.9239,0.1464,0.3182,-0.9239,0.2126,0.5133,-0.8315,0.2126,0.3182,-0.9239,0.2126,0.4619,-0.8315,0.3087,0.4619,-0.8315,0.3087,0.3182,-0.9239,0.2126,0.2706,-0.9239,0.2706,0.4619,-0.8315,0.3087,0.2706,-0.9239,0.2706,0.3928,-0.8315,0.3928,0.3928,-0.8315,0.3928,0.2706,-0.9239,0.2706,0.2126,-0.9239,0.3182,0.3928,-0.8315,0.3928,0.2126,-0.9239,0.3182,0.3087,-0.8315,0.4619,0.3087,-0.8315,0.4619,0.2126,-0.9239,0.3182,0.1464,-0.9239,0.3536,0.3087,-0.8315,0.4619,0.1464,-0.9239,0.3536,0.2126,-0.8315,0.5133,0.2126,-0.8315,0.5133,0.1464,-0.9239,0.3536,0.0747,-0.9239,0.3753,0.2126,-0.8315,0.5133,0.0747,-0.9239,0.3753,0.1084,-0.8315,0.5449,0.1084,-0.8315,0.5449,0.0747,-0.9239,0.3753,0.0,-0.9239,0.3827,0.1084,-0.8315,0.5449,0.0,-0.9239,0.3827,0.0,-0.8315,0.5556,0.0,-0.9239,0.3827,0.0,-0.9808,0.1951,-0.0381,-0.9808,0.1913,0.0,-0.9239,0.3827,-0.0381,-0.9808,0.1913,-0.0747,-0.9239,0.3753,-0.0747,-0.9239,0.3753,-0.0381,-0.9808,0.1913,-0.0747,-0.9808,0.1802,-0.0747,-0.9239,0.3753,-0.0747,-0.9808,0.1802,-0.1464,-0.9239,0.3536,-0.1464,-0.9239,0.3536,-0.0747,-0.9808,0.1802,-0.1084,-0.9808,0.1622,-0.1464,-0.9239,0.3536,-0.1084,-0.9808,0.1622,-0.2126,-0.9239,0.3182,-0.2126,-0.9239,0.3182,-0.1084,-0.9808,0.1622,-0.1379,-0.9808,0.1379,-0.2126,-0.9239,0.3182,-0.1379,-0.9808,0.1379,-0.2706,-0.9239,0.2706,-0.2706,-0.9239,0.2706,-0.1379,-0.9808,0.1379,-0.1622,-0.9808,0.1084,-0.2706,-0.9239,0.2706,-0.1622,-0.9808,0.1084,-0.3182,-0.9239,0.2126,-0.3182,-0.9239,0.2126,-0.1622,-0.9808,0.1084,-0.1802,-0.9808,0.0747,-0.3182,-0.9239,0.2126,-0.1802,-0.9808,0.0747,-0.3536,-0.9239,0.1464,-0.3536,-0.9239,0.1464,-0.1802,-0.9808,0.0747,-0.1913,-0.9808,0.0381,-0.3536,-0.9239,0.1464,-0.1913,-0.9808,0.0381,-0.3753,-0.9239,0.0747,-0.3753,-0.9239,0.0747,-0.1913,-0.9808,0.0381,-0.1951,-0.9808,0.0,-0.3753,-0.9239,0.0747,-0.1951,-0.9808,0.0,-0.3827,-0.9239,0.0,-0.3827,-0.9239,0.0,-0.1951,-0.9808,0.0,-0.1913,-0.9808,-0.0381,-0.3827,-0.9239,0.0,-0.1913,-0.9808,-0.0381,-0.3753,-0.9239,-0.0747,-0.3753,-0.9239,-0.0747,-0.1913,-0.9808,-0.0381,-0.1802,-0.9808,-0.0747,-0.3753,-0.9239,-0.0747,-0.1802,-0.9808,-0.0747,-0.3536,-0.9239,-0.1464,-0.3536,-0.9239,-0.1464,-0.1802,-0.9808,-0.0747,-0.1622,-0.9808,-0.1084,-0.3536,-0.9239,-0.1464,-0.1622,-0.9808,-0.1084,-0.3182,-0.9239,-0.2126,-0.3182,-0.9239,-0.2126,-0.1622,-0.9808,-0.1084,-0.1379,-0.9808,-0.1379,-0.3182,-0.9239,-0.2126,-0.1379,-0.9808,-0.1379,-0.2706,-0.9239,-0.2706,-0.2706,-0.9239,-0.2706,-0.1379,-0.9808,-0.1379,-0.1084,-0.9808,-0.1622,-0.2706,-0.9239,-0.2706,-0.1084,-0.9808,-0.1622,-0.2126,-0.9239,-0.3182,-0.2126,-0.9239,-0.3182,-0.1084,-0.9808,-0.1622,-0.0747,-0.9808,-0.1802,-0.2126,-0.9239,-0.3182,-0.0747,-0.9808,-0.1802,-0.1464,-0.9239,-0.3536,-0.1464,-0.9239,-0.3536,-0.0747,-0.9808,-0.1802,-0.0381,-0.9808,-0.1913,-0.1464,-0.9239,-0.3536,-0.0381,-0.9808,-0.1913,-0.0747,-0.9239,-0.3753,-0.0747,-0.9239,-0.3753,-0.0381,-0.9808,-0.1913,0.0,-0.9808,-0.1951,-0.0747,-0.9239,-0.3753,0.0,-0.9808,-0.1951,0.0,-0.9239,-0.3827,0.0,-0.9239,-0.3827,0.0,-0.9808,-0.1951,0.0381,-0.9808,-0.1913,0.0,-0.9239,-0.3827,0.0381,-0.9808,-0.1913,0.0747,-0.9239,-0.3753,0.0747,-0.9239,-0.3753,0.0381,-0.9808,-0.1913,0.0747,-0.9808,-0.1802,0.0747,-0.9239,-0.3753,0.0747,-0.9808,-0.1802,0.1464,-0.9239,-0.3536,0.1464,-0.9239,-0.3536,0.0747,-0.9808,-0.1802,0.1084,-0.9808,-0.1622,0.1464,-0.9239,-0.3536,0.1084,-0.9808,-0.1622,0.2126,-0.9239,-0.3182,0.2126,-0.9239,-0.3182,0.1084,-0.9808,-0.1622,0.1379,-0.9808,-0.1379,0.2126,-0.9239,-0.3182,0.1379,-0.9808,-0.1379,0.2706,-0.9239,-0.2706,0.2706,-0.9239,-0.2706,0.1379,-0.9808,-0.1379,0.1622,-0.9808,-0.1084,0.2706,-0.9239,-0.2706,0.1622,-0.9808,-0.1084,0.3182,-0.9239,-0.2126,0.3182,-0.9239,-0.2126,0.1622,-0.9808,-0.1084,0.1802,-0.9808,-0.0747,0.3182,-0.9239,-0.2126,0.1802,-0.9808,-0.0747,0.3536,-0.9239,-0.1464,0.3536,-0.9239,-0.1464,0.1802,-0.9808,-0.0747,0.1913,-0.9808,-0.0381,0.3536,-0.9239,-0.1464,0.1913,-0.9808,-0.0381,0.3753,-0.9239,-0.0747,0.3753,-0.9239,-0.0747,0.1913,-0.9808,-0.0381,0.1951,-0.9808,0.0,0.3753,-0.9239,-0.0747,0.1951,-0.9808,0.0,0.3827,-0.9239,0.0,0.3827,-0.9239,0.0,0.1951,-0.9808,0.0,0.1913,-0.9808,0.0381,0.3827,-0.9239,0.0,0.1913,-0.9808,0.0381,0.3753,-0.9239,0.0747,0.3753,-0.9239,0.0747,0.1913,-0.9808,0.0381,0.1802,-0.9808,0.0747,0.3753,-0.9239,0.0747,0.1802,-0.9808,0.0747,0.3536,-0.9239,0.1464,0.3536,-0.9239,0.1464,0.1802,-0.9808,0.0747,0.1622,-0.9808,0.1084,0.3536,-0.9239,0.1464,0.1622,-0.9808,0.1084,0.3182,-0.9239,0.2126,0.3182,-0.9239,0.2126,0.1622,-0.9808,0.1084,0.1379,-0.9808,0.1379,0.3182,-0.9239,0.2126,0.1379,-0.9808,0.1379,0.2706,-0.9239,0.2706,0.2706,-0.9239,0.2706,0.1379,-0.9808,0.1379,0.1084,-0.9808,0.1622,0.2706,-0.9239,0.2706,0.1084,-0.9808,0.1622,0.2126,-0.9239,0.3182,0.2126,-0.9239,0.3182,0.1084,-0.9808,0.1622,0.0747,-0.9808,0.1802,0.2126,-0.9239,0.3182,0.0747,-0.9808,0.1802,0.1464,-0.9239,0.3536,0.1464,-0.9239,0.3536,0.0747,-0.9808,0.1802,0.0381,-0.9808,0.1913,0.1464,-0.9239,0.3536,0.0381,-0.9808,0.1913,0.0747,-0.9239,0.3753,0.0747,-0.9239,0.3753,0.0381,-0.9808,0.1913,0.0,-0.9808,0.1951,0.0747,-0.9239,0.3753,0.0,-0.9808,0.1951,0.0,-0.9239,0.3827,0.0,-1.0,0.0,-0.0381,-0.9808,0.1913,0.0,-0.9808,0.1951,0.0,-1.0,0.0,-0.0747,-0.9808,0.1802,-0.0381,-0.9808,0.1913,0.0,-1.0,0.0,-0.1084,-0.9808,0.1622,-0.0747,-0.9808,0.1802,0.0,-1.0,0.0,-0.1379,-0.9808,0.1379,-0.1084,-0.9808,0.1622,0.0,-1.0,0.0,-0.1622,-0.9808,0.1084,-0.1379,-0.9808,0.1379,0.0,-1.0,0.0,-0.1802,-0.9808,0.0747,-0.1622,-0.9808,0.1084,0.0,-1.0,0.0,-0.1913,-0.9808,0.0381,-0.1802,-0.9808,0.0747,0.0,-1.0,0.0,-0.1951,-0.9808,0.0,-0.1913,-0.9808,0.0381,0.0,-1.0,0.0,-0.1913,-0.9808,-0.0381,-0.1951,-0.9808,0.0,0.0,-1.0,0.0,-0.1802,-0.9808,-0.0747,-0.1913,-0.9808,-0.0381,0.0,-1.0,0.0,-0.1622,-0.9808,-0.1084,-0.1802,-0.9808,-0.0747,0.0,-1.0,0.0,-0.1379,-0.9808,-0.1379,-0.1622,-0.9808,-0.1084,0.0,-1.0,0.0,-0.1084,-0.9808,-0.1622,-0.1379,-0.9808,-0.1379,0.0,-1.0,0.0,-0.0747,-0.9808,-0.1802,-0.1084,-0.9808,-0.1622,0.0,-1.0,0.0,-0.0381,-0.9808,-0.1913,-0.0747,-0.9808,-0.1802,0.0,-1.0,0.0,0.0,-0.9808,-0.1951,-0.0381,-0.9808,-0.1913,0.0,-1.0,0.0,0.0381,-0.9808,-0.1913,0.0,-0.9808,-0.1951,0.0,-1.0,0.0,0.0747,-0.9808,-0.1802,0.0381,-0.9808,-0.1913,0.0,-1.0,0.0,0.1084,-0.9808,-0.1622,0.0747,-0.9808,-0.1802,0.0,-1.0,0.0,0.1379,-0.9808,-0.1379,0.1084,-0.9808,-0.1622,0.0,-1.0,0.0,0.1622,-0.9808,-0.1084,0.1379,-0.9808,-0.1379,0.0,-1.0,0.0,0.1802,-0.9808,-0.0747,0.1622,-0.9808,-0.1084,0.0,-1.0,0.0,0.1913,-0.9808,-0.0381,0.1802,-0.9808,-0.0747,0.0,-1.0,0.0,0.1951,-0.9808,0.0,0.1913,-0.9808,-0.0381,0.0,-1.0,0.0,0.1913,-0.9808,0.0381,0.1951,-0.9808,0.0,0.0,-1.0,0.0,0.1802,-0.9808,0.0747,0.1913,-0.9808,0.0381,0.0,-1.0,0.0,0.1622,-0.9808,0.1084,0.1802,-0.9808,0.0747,0.0,-1.0,0.0,0.1379,-0.9808,0.1379,0.1622,-0.9808,0.1084,0.0,-1.0,0.0,0.1084,-0.9808,0.1622,0.1379,-0.9808,0.1379,0.0,-1.0,0.0,0.0747,-0.9808,0.1802,0.1084,-0.9808,0.1622,0.0,-1.0,0.0,0.0381,-0.9808,0.1913,0.0747,-0.9808,0.1802,0.0,-1.0,0.0,0.0,-0.9808,0.1951,0.0381,-0.9808,0.1913],"normals":[0.0,1.0,0.0,0.0,0.9796,0.201,-0.0392,0.9796,0.1971,0.0,1.0,0.0,-0.0392,0.9796,0.1971,-0.0769,0.9796,0.1857,0.0,1.0,0.0,-0.0769,0.9796,0.1857,-0.1117,0.9796,0.1671,0.0,1.0,0.0,-0.1117,0.9796,0.1671,-0.1421,0.9796,0.1421,0.0,1.0,0.0,-0.1421,0.9796,0.1421,-0.1671,0.9796,0.1117,0.0,1.0,0.0,-0.1671,0.9796,0.1117,-0.1857,0.9796,0.0769,0.0,1.0,0.0,-0.1857,0.9796,0.0769,-0.1971,0.9796,0.0392,0.0,1.0,0.0,-0.1971,0.9796,0.0392,-0.201,0.9796,0.0,0.0,1.0,0.0,-0.201,0.9796,0.0,-0.1971,0.9796,-0.0392,0.0,1.0,0.0,-0.1971,0.9796,-0.0392,-0.1857,0.9796,-0.0769,0.0,1.0,0.0,-0.1857,0.9796,-0.0769,-0.1671,0.9796,-0.1117,0.0,1.0,0.0,-0.1671,0.9796,-0.1117,-0.1421,0.9796,-0.1421,0.0,1.0,0.0,-0.1421,0.9796,-0.1421,-0.1117,0.9796,-0.1671,0.0,1.0,0.0,-0.1117,0.9796,-0.1671,-0.0769,0.9796,-0.1857,0.0,1.0,0.0,-0.0769,0.9796,-0.1857,-0.0392,0.9796,-0.1971,0.0,1.0,0.0,-0.0392,0.9796,-0.1971,0.0,0.9796,-0.201,0.0,1.0,0.0,0.0,0.9796,-0.201,0.0392,0.9796,-0.1971,0.0,1.0,0.0,0.0392,0.9796,-0.1971,0.0769,0.9796,-0.1857,0.0,1.0,0.0,0.0769,0.9796,-0.1857,0.1117,0.9796,-0.1671,0.0,1.0,0.0,0.1117,0.9796,-0.1671,0.1421,0.9796,-0.1421,0.0,1.0,0.0,0.1421,0.9796,-0.1421,0.1671,0.9796,-0.1117,0.0,1.0,0.0,0.1671,0.9796,-0.1117,0.1857,0.9796,-0.0769,0.0,1.0,0.0,0.1857,0.9796,-0.0769,0.1971,0.9796,-0.0392,0.0,1.0,0.0,0.1971,0.9796,-0.0392,0.201,0.9796,0.0,0.0,1.0,0.0,0.201,0.9796,0.0,0.1971,0.9796,0.0392,0.0,1.0,0.0,0.1971,0.9796,0.0392,0.1857,0.9796,0.0769,0.0,1.0,0.0,0.1857,0.9796,0.0769,0.1671,0.9796,0.1117,0.0,1.0,0.0,0.1671,0.9796,0.1117,0.1421,0.9796,0.1421,0.0,1.0,0.0,0.1421,0.9796,0.1421,0.1117,0.9796,0.1671,0.0,1.0,0.0,0.1117,0.9796,0.1671,0.0769,0.9796,0.1857,0.0,1.0,0.0,0.0769,0.9796,0.1857,0.0392,0.9796,0.1971,0.0,1.0,0.0,0.0392,0.9796,0.1971,0.0,0.9796,0.201,0.0,0.9796,0.201,0.0,0.9217,0.3879,-0.0757,0.9217,0.3804,0.0,0.9796,0.201,-0.0757,0.9217,0.3804,-0.0392,0.9796,0.1971,-0.0392,0.9796,0.1971,-0.0757,0.9217,0.3804,-0.1484,0.9217,0.3584,-0.0392,0.9796,0.1971,-0.1484,0.9217,0.3584,-0.0769,0.9796,0.1857,-0.0769,0.9796,0.1857,-0.1484,0.9217,0.3584,-0.2155,0.9217,0.3225,-0.0769,0.9796,0.1857,-0.2155,0.9217,0.3225,-0.1117,0.9796,0.1671,-0.1117,0.9796,0.1671,-0.2155,0.9217,0.3225,-0.2743,0.9217,0.2743,-0.1117,0.9796,0.1671,-0.2743,0.9217,0.2743,-0.1421,0.9796,0.1421,-0.1421,0.9796,0.1421,-0.2743,0.9217,0.2743,-0.3225,0.9217,0.2155,-0.1421,0.9796,0.1421,-0.3225,0.9217,0.2155,-0.1671,0.9796,0.1117,-0.1671,0.9796,0.1117,-0.3225,0.9217,0.2155,-0.3584,0.9217,0.1484,-0.1671,0.9796,0.1117,-0.3584,0.9217,0.1484,-0.1857,0.9796,0.0769,-0.1857,0.9796,0.0769,-0.3584,0.9217,0.1484,-0.3804,0.9217,0.0757,-0.1857,0.9796,0.0769,-0.3804,0.9217,0.0757,-0.1971,0.9796,0.0392,-0.1971,0.9796,0.0392,-0.3804,0.9217,0.0757,-0.3879,0.9217,0.0,-0.1971,0.9796,0.0392,-0.3879,0.9217,0.0,-0.201,0.9796,0.0,-0.201,0.9796,0.0,-0.3879,0.9217,0.0,-0.3804,0.9217,-0.0757,-0.201,0.9796,0.0,-0.3804,0.9217,-0.0757,-0.1971,0.9796,-0.0392,-0.1971,0.9796,-0.0392,-0.3804,0.9217,-0.0757,-0.3584,0.9217,-0.1484,-0.1971,0.9796,-0.0392,-0.3584,0.9217,-0.1484,-0.1857,0.9796,-0.0769,-0.1857,0.9796,-0.0769,-0.3584,0.9217,-0.1484,-0.3225,0.9217,-0.2155,-0.1857,0.9796,-0.0769,-0.3225,0.9217,-0.2155,-0.1671,0.9796,-0.1117,-0.1671,0.9796,-0.1117,-0.3225,0.9217,-0.2155,-0.2743,0.9217,-0.2743,-0.1671,0.9796,-0.1117,-0.2743,0.9217,-0.2743,-0.1421,0.9796,-0.1421,-0.1421,0.9796,-0.1421,-0.2743,0.9217,-0.2743,-0.2155,0.9217,-0.3225,-0.1421,0.9796,-0.1421,-0.2155,0.9217,-0.3225,-0.1117,0.9796,-0.1671,-0.1117,0.9796,-0.1671,-0.2155,0.9217,-0.3225,-0.1484,0.9217,-0.3584,-0.1117,0.9796,-0.1671,-0.1484,0.9217,-0.3584,-0.0769,0.9796,-0.1857,-0.0769,0.9796,-0.1857,-0.1484,0.9217,-0.3584,-0.0757,0.9217,-0.3804,-0.0769,0.9796,-0.1857,-0.0757,0.9217,-0.3804,-0.0392,0.9796,-0.1971,-0.0392,0.9796,-0.1971,-0.0757,0.9217,-0.3804,0.0,0.9217,-0.3879,-0.0392,0.9796,-0.1971,0.0,0.9217,-0.3879,0.0,0.9796,-0.201,0.0,0.9796,-0.201,0.0,0.9217,-0.3879,0.0757,0.9217,-0.3804,0.0,0.9796,-0.201,0.0757,0.9217,-0.3804,0.0392,0.9796,-0.1971,0.0392,0.9796,-0.1971,0.0757,0.9217,-0.3804,0.1484,0.9217,-0.3584,0.0392,0.9796,-0.1971,0.1484,0.9217,-0.3584,0.0769,0.9796,-0.1857,0.0769,0.9796,-0.1857,0.1484,0.9217,-0.3584,0.2155,0.9217,-0.3225,0.0769,0.9796,-0.1857,0.2155,0.9217,-0.3225,0.1117,0.9796,-0.1671,0.1117,0.9796,-0.1671,0.2155,0.9217,-0.3225,0.2743,0.9217,-0.2743,0.1117,0.9796,-0.1671,0.2743,0.9217,-0.2743,0.1421,0.9796,-0.1421,0.1421,0.9796,-0.1421,0.2743,0.9217,-0.2743,0.3225,0.9217,-0.2155,0.1421,0.9796,-0.1421,0.3225,0.9217,-0.2155,0.1671,0.9796,-0.1117,0.1671,0.9796,-0.1117,0.3225,0.9217,-0.2155,0.3584,0.9217,-0.1484,0.1671,0.9796,-0.1117,0.3584,0.9217,-0.1484,0.1857,0.9796,-0.0769,0.1857,0.9796,-0.0769,0.3584,0.9217,-0.1484,0.3804,0.9217,-0.0757,0.1857,0.9796,-0.0769,0.3804,0.9217,-0.0757,0.1971,0.9796,-0.0392,0.1971,0.9796,-0.0392,0.3804,0.9217,-0.0757,0.3879,0.9217,0.0,0.1971,0.9796,-0.0392,0.3879,0.9217,0.0,0.201,0.9796,0.0,0.201,0.9796,0.0,0.3879,0.9217,0.0,0.3804,0.9217,0.0757,0.201,0.9796,0.0,0.3804,0.9217,0.0757,0.1971,0.9796,0.0392,0.1971,0.9796,0.0392,0.3804,0.9217,0.0757,0.3584,0.9217,0.1484,0.1971,0.9796,0.0392,0.3584,0.9217,0.1484,0.1857,0.9796,0.0769,0.1857,0.9796,0.0769,0.3584,0.9217,0.1484,0.3225,0.9217,0.2155,0.1857,0.9796,0.0769,0.3225,0.9217,0.2155,0.1671,0.9796,0.1117,0.1671,0.9796,0.1117,0.3225,0.9217,0.2155,0.2743,0.9217,0.2743,0.1671,0.9796,0.1117,0.2743,0.9217,0.2743,0.1421,0.9796,0.1421,0.1421,0.9796,0.1421,0.2743,0.9217,0.2743,0.2155,0.9217,0.3225,0.1421,0.9796,0.1421,0.2155,0.9217,0.3225,0.1117,0.9796,0.1671,0.1117,0.9796,0.1671,0.2155,0.9217,0.3225,0.1484,0.9217,0.3584,0.1117,0.9796,0.1671,0.1484,0.9217,0.3584,0.0769,0.9796,0.1857,0.0769,0.9796,0.1857,0.1484,0.9217,0.3584,0.0757,0.9217,0.3804,0.0769,0.9796,0.1857,0.0757,0.9217,0.3804,0.0392,0.9796,0.1971,0.0392,0.9796,0.1971,0.0757,0.9217,0.3804,0.0,0.9217,0.3879,0.0392,0.9796,0.1971,0.0,0.9217,0.3879,0.0,0.9796,0.201,0.0,0.9217,0.3879,0.0,0.8286,0.5598,-0.1092,0.8286,0.549,0.0,0.9217,0.3879,-0.1092,0.8286,0.549,-0.0757,0.9217,0.3804,-0.0757,0.9217,0.3804,-0.1092,0.8286,0.549,-0.2142,0.8286,0.5172,-0.0757,0.9217,0.3804,-0.2142,0.8286,0.5172,-0.1484,0.9217,0.3584,-0.1484,0.9217,0.3584,-0.2142,0.8286,0.5172,-0.311,0.8286,0.4654,-0.1484,0.9217,0.3584,-0.311,0.8286,0.4654,-0.2155,0.9217,0.3225,-0.2155,0.9217,0.3225,-0.311,0.8286,0.4654,-0.3958,0.8286,0.3958,-0.2155,0.9217,0.3225,-0.3958,0.8286,0.3958,-0.2743,0.9217,0.2743,-0.2743,0.9217,0.2743,-0.3958,0.8286,0.3958,-0.4654,0.8286,0.311,-0.2743,0.9217,0.2743,-0.4654,0.8286,0.311,-0.3225,0.9217,0.2155,-0.3225,0.9217,0.2155,-0.4654,0.8286,0.311,-0.5172,0.8286,0.2142,-0.3225,0.9217,0.2155,-0.5172,0.8286,0.2142,-0.3584,0.9217,0.1484,-0.3584,0.9217,0.1484,-0.5172,0.8286,0.2142,-0.549,0.8286,0.1092,-0.3584,0.9217,0.1484,-0.549,0.8286,0.1092,-0.3804,0.9217,0.0757,-0.3804,0.9217,0.0757,-0.549,0.8286,0.1092,-0.5598,0.8286,0.0,-0.3804,0.9217,0.0757,-0.5598,0.8286,0.0,-0.3879,0.9217,0.0,-0.3879,0.9217,0.0,-0.5598,0.8286,0.0,-0.549,0.8286,-0.1092,-0.3879,0.9217,0.0,-0.549,0.8286,-0.1092,-0.3804,0.9217,-0.0757,-0.3804,0.9217,-0.0757,-0.549,0.8286,-0.1092,-0.5172,0.8286,-0.2142,-0.3804,0.9217,-0.0757,-0.5172,0.8286,-0.2142,-0.3584,0.9217,-0.1484,-0.3584,0.9217,-0.1484,-0.5172,0.8286,-0.2142,-0.4654,0.8286,-0.311,-0.3584,0.9217,-0.1484,-0.4654,0.8286,-0.311,-0.3225,0.9217,-0.2155,-0.3225,0.9217,-0.2155,-0.4654,0.8286,-0.311,-0.3958,0.8286,-0.3958,-0.3225,0.9217,-0.2155,-0.3958,0.8286,-0.3958,-0.2743,0.9217,-0.2743,-0.2743,0.9217,-0.2743,-0.3958,0.8286,-0.3958,-0.311,0.8286,-0.4654,-0.2743,0.9217,-0.2743,-0.311,0.8286,-0.4654,-0.2155,0.9217,-0.3225,-0.2155,0.9217,-0.3225,-0.311,0.8286,-0.4654,-0.2142,0.8286,-0.5172,-0.2155,0.9217,-0.3225,-0.2142,0.8286,-0.5172,-0.1484,0.9217,-0.3584,-0.1484,0.9217,-0.3584,-0.2142,0.8286,-0.5172,-0.1092,0.8286,-0.549,-0.1484,0.9217,-0.3584,-0.1092,0.8286,-0.549,-0.0757,0.9217,-0.3804,-0.0757,0.9217,-0.3804,-0.1092,0.8286,-0.549,0.0,0.8286,-0.5598,-0.0757,0.9217,-0.3804,0.0,0.8286,-0.5598,0.0,0.9217,-0.3879,0.0,0.9217,-0.3879,0.0,0.8286,-0.5598,0.1092,0.8286,-0.549,0.0,0.9217,-0.3879,0.1092,0.8286,-0.549,0.0757,0.9217,-0.3804,0.0757,0.9217,-0.3804,0.1092,0.8286,-0.549,0.2142,0.8286,-0.5172,0.0757,0.9217,-0.3804,0.2142,0.8286,-0.5172,0.1484,0.9217,-0.3584,0.1484,0.9217,-0.3584,0.2142,0.8286,-0.5172,0.311,0.8286,-0.4654,0.1484,0.9217,-0.3584,0.311,0.8286,-0.4654,0.2155,0.9217,-0.3225,0.2155,0.9217,-0.3225,0.311,0.8286,-0.4654,0.3958,0.8286,-0.3958,0.2155,0.9217,-0.3225,0.3958,0.8286,-0.3958,0.2743,0.9217,-0.2743,0.2743,0.9217,-0.2743,0.3958,0.8286,-0.3958,0.4654,0.8286,-0.311,0.2743,0.9217,-0.2743,0.4654,0.8286,-0.311,0.3225,0.9217,-0.2155,0.3225,0.9217,-0.2155,0.4654,0.8286,-0.311,0.5172,0.8286,-0.2142,0.3225,0.9217,-0.2155,0.5172,0.8286,-0.2142,0.3584,0.9217,-0.1484,0.3584,0.9217,-0.1484,0.5172,0.8286,-0.2142,0.549,0.8286,-0.1092,0.3584,0.9217,-0.1484,0.549,0.8286,-0.1092,0.3804,0.9217,-0.0757,0.3804,0.9217,-0.0757,0.549,0.8286,-0.1092,0.5598,0.8286,0.0,0.3804,0.9217,-0.0757,0.5598,0.8286,0.0,0.3879,0.9217,0.0,0.3879,0.9217,0.0,0.5598,0.8286,0.0,0.549,0.8286,0.1092,0.3879,0.9217,0.0,0.549,0.8286,0.1092,0.3804,0.9217,0.0757,0.3804,0.9217,0.0757,0.549,0.8286,0.1092,0.5172,0.8286,0.2142,0.3804,0.9217,0.0757,0.5172,0.8286,0.2142,0.3584,0.9217,0.1484,0.3584,0.9217,0.1484,0.5172,0.8286,0.2142,0.4654,0.8286,0.311,0.3584,0.9217,0.1484,0.4654,0.8286,0.311,0.3225,0.9217,0.2155,0.3225,0.9217,0.2155,0.4654,0.8286,0.311,0.3958,0.8286,0.3958,0.3225,0.9217,0.2155,0.3958,0.8286,0.3958,0.2743,0.9217,0.2743,0.2743,0.9217,0.2743,0.3958,0.8286,0.3958,0.311,0.8286,0.4654,0.2743,0.9217,0.2743,0.311,0.8286,0.4654,0.2155,0.9217,0.3225,0.2155,0.9217,0.3225,0.311,0.8286,0.4654,0.2142,0.8286,0.5172,0.2155,0.9217,0.3225,0.2142,0.8286,0.5172,0.1484,0.9217,0.3584,0.1484,0.9217,0.3584,0.2142,0.8286,0.5172,0.1092,0.8286,0.549,0.1484,0.9217,0.3584,0.1092,0.8286,0.549,0.0757,0.9217,0.3804,0.0757,0.9217,0.3804,0.1092,0.8286,0.549,0.0,0.8286,0.5598,0.0757,0.9217,0.3804,0.0,0.8286,0.5598,0.0,0.9217,0.3879,0.0,0.8286,0.5598,0.0,0.7041,0.7101,-0.1385,0.7041,0.6965,0.0,0.8286,0.5598,-0.1385,0.7041,0.6965,-0.1092,0.8286,0.549,-0.1092,0.8286,0.549,-0.1385,0.7041,0.6965,-0.2718,0.7041,0.6561,-0.1092,0.8286,0.549,-0.2718,0.7041,0.6561,-0.2142,0.8286,0.5172,-0.2142,0.8286,0.5172,-0.2718,0.7041,0.6561,-0.3945,0.7041,0.5905,-0.2142,0.8286,0.5172,-0.3945,0.7041,0.5905,-0.311,0.8286,0.4654,-0.311,0.8286,0.4654,-0.3945,0.7041,0.5905,-0.5021,0.7041,0.5021,-0.311,0.8286,0.4654,-0.5021,0.7041,0.5021,-0.3958,0.8286,0.3958,-0.3958,0.8286,0.3958,-0.5021,0.7041,0.5021,-0.5905,0.7041,0.3945,-0.3958,0.8286,0.3958,-0.5905,0.7041,0.3945,-0.4654,0.8286,0.311,-0.4654,0.8286,0.311,-0.5905,0.7041,0.3945,-0.6561,0.7041,0.2718,-0.4654,0.8286,0.311,-0.6561,0.7041,0.2718,-0.5172,0.8286,0.2142,-0.5172,0.8286,0.2142,-0.6561,0.7041,0.2718,-0.6965,0.7041,0.1385,-0.5172,0.8286,0.2142,-0.6965,0.7041,0.1385,-0.549,0.8286,0.1092,-0.549,0.8286,0.1092,-0.6965,0.7041,0.1385,-0.7101,0.7041,0.0,-0.549,0.8286,0.1092,-0.7101,0.7041,0.0,-0.5598,0.8286,0.0,-0.5598,0.8286,0.0,-0.7101,0.7041,0.0,-0.6965,0.7041,-0.1385,-0.5598,0.8286,0.0,-0.6965,0.7041,-0.1385,-0.549,0.8286,-0.1092,-0.549,0.8286,-0.1092,-0.6965,0.7041,-0.1385,-0.6561,0.7041,-0.2718,-0.549,0.8286,-0.1092,-0.6561,0.7041,-0.2718,-0.5172,0.8286,-0.2142,-0.5172,0.8286,-0.2142,-0.6561,0.7041,-0.2718,-0.5905,0.7041,-0.3945,-0.5172,0.8286,-0.2142,-0.5905,0.7041,-0.3945,-0.4654,0.8286,-0.311,-0.4654,0.8286,-0.311,-0.5905,0.7041,-0.3945,-0.5021,0.7041,-0.5021,-0.4654,0.8286,-0.311,-0.5021,0.7041,-0.5021,-0.3958,0.8286,-0.3958,-0.3958,0.8286,-0.3958,-0.5021,0.7041,-0.5021,-0.3945,0.7041,-0.5905,-0.3958,0.8286,-0.3958,-0.3945,0.7041,-0.5905,-0.311,0.8286,-0.4654,-0.311,0.8286,-0.4654,-0.3945,0.7041,-0.5905,-0.2718,0.7041,-0.6561,-0.311,0.8286,-0.4654,-0.2718,0.7041,-0.6561,-0.2142,0.8286,-0.5172,-0.2142,0.8286,-0.5172,-0.2718,0.7041,-0.6561,-0.1385,0.7041,-0.6965,-0.2142,0.8286,-0.5172,-0.1385,0.7041,-0.6965,-0.1092,0.8286,-0.549,-0.1092,0.8286,-0.549,-0.1385,0.7041,-0.6965,0.0,0.7041,-0.7101,-0.1092,0.8286,-0.549,0.0,0.7041,-0.7101,0.0,0.8286,-0.5598,0.0,0.8286,-0.5598,0.0,0.7041,-0.7101,0.1385,0.7041,-0.6965,0.0,0.8286,-0.5598,0.1385,0.7041,-0.6965,0.1092,0.8286,-0.549,0.1092,0.8286,-0.549,0.1385,0.7041,-0.6965,0.2718,0.7041,-0.6561,0.1092,0.8286,-0.549,0.2718,0.7041,-0.6561,0.2142,0.8286,-0.5172,0.2142,0.8286,-0.5172,0.2718,0.7041,-0.6561,0.3945,0.7041,-0.5905,0.2142,0.8286,-0.5172,0.3945,0.7041,-0.5905,0.311,0.8286,-0.4654,0.311,0.8286,-0.4654,0.3945,0.7041,-0.5905,0.5021,0.7041,-0.5021,0.311,0.8286,-0.4654,0.5021,0.7041,-0.5021,0.3958,0.8286,-0.3958,0.3958,0.8286,-0.3958,0.5021,0.7041,-0.5021,0.5905,0.7041,-0.3945,0.3958,0.8286,-0.3958,0.5905,0.7041,-0.3945,0.4654,0.8286,-0.311,0.4654,0.8286,-0.311,0.5905,0.7041,-0.3945,0.6561,0.7041,-0.2718,0.4654,0.8286,-0.311,0.6561,0.7041,-0.2718,0.5172,0.8286,-0.2142,0.5172,0.8286,-0.2142,0.6561,0.7041,-0.2718,0.6965,0.7041,-0.1385,0.5172,0.8286,-0.2142,0.6965,0.7041,-0.1385,0.549,0.8286,-0.1092,0.549,0.8286,-0.1092,0.6965,0.7041,-0.1385,0.7101,0.7041,0.0,0.549,0.8286,-0.1092,0.7101,0.7041,0.0,0.5598,0.8286,0.0,0.5598,0.8286,0.0,0.7101,0.7041,0.0,0.6965,0.7041,0.1385,0.5598,0.8286,0.0,0.6965,0.7041,0.1385,0.549,0.8286,0.1092,0.549,0.8286,0.1092,0.6965,0.7041,0.1385,0.6561,0.7041,0.2718,0.549,0.8286,0.1092,0.6561,0.7041,0.2718,0.5172,0.8286,0.2142,0.5172,0.8286,0.2142,0.6561,0.7041,0.2718,0.5905,0.7041,0.3945,0.5172,0.8286,0.2142,0.5905,0.7041,0.3945,0.4654,0.8286,0.311,0.4654,0.8286,0.311,0.5905,0.7041,0.3945,0.5021,0.7041,0.5021,0.4654,0.8286,0.311,0.5021,0.7041,0.5021,0.3958,0.8286,0.3958,0.3958,0.8286,0.3958,0.5021,0.7041,0.5021,0.3945,0.7041,0.5905,0.3958,0.8286,0.3958,0.3945,0.7041,0.5905,0.311,0.8286,0.4654,0.311,0.8286,0.4654,0.3945,0.7041,0.5905,0.2718,0.7041,0.6561,0.311,0.8286,0.4654,0.2718,0.7041,0.6561,0.2142,0.8286,0.5172,0.2142,0.8286,0.5172,0.2718,0.7041,0.6561,0.1385,0.7041,0.6965,0.2142,0.8286,0.5172,0.1385,0.7041,0.6965,0.1092,0.8286,0.549,0.1092,0.8286,0.549,0.1385,0.7041,0.6965,0.0,0.7041,0.7101,0.1092,0.8286,0.549,0.0,0.7041,0.7101,0.0,0.8286,0.5598,0.0,0.7041,0.7101,0.0,0.5528,0.8333,-0.1626,0.5528,0.8173,0.0,0.7041,0.7101,-0.1626,0.5528,0.8173,-0.1385,0.7041,0.6965,-0.1385,0.7041,0.6965,-0.1626,0.5528,0.8173,-0.3189,0.5528,0.7699,-0.1385,0.7041,0.6965,-0.3189,0.5528,0.7699,-0.2718,0.7041,0.6561,-0.2718,0.7041,0.6561,-0.3189,0.5528,0.7699,-0.463,0.5528,0.6929,-0.2718,0.7041,0.6561,-0.463,0.5528,0.6929,-0.3945,0.7041,0.5905,-0.3945,0.7041,0.5905,-0.463,0.5528,0.6929,-0.5893,0.5528,0.5893,-0.3945,0.7041,0.5905,-0.5893,0.5528,0.5893,-0.5021,0.7041,0.5021,-0.5021,0.7041,0.5021,-0.5893,0.5528,0.5893,-0.6929,0.5528,0.463,-0.5021,0.7041,0.5021,-0.6929,0.5528,0.463,-0.5905,0.7041,0.3945,-0.5905,0.7041,0.3945,-0.6929,0.5528,0.463,-0.7699,0.5528,0.3189,-0.5905,0.7041,0.3945,-0.7699,0.5528,0.3189,-0.6561,0.7041,0.2718,-0.6561,0.7041,0.2718,-0.7699,0.5528,0.3189,-0.8173,0.5528,0.1626,-0.6561,0.7041,0.2718,-0.8173,0.5528,0.1626,-0.6965,0.7041,0.1385,-0.6965,0.7041,0.1385,-0.8173,0.5528,0.1626,-0.8333,0.5528,0.0,-0.6965,0.7041,0.1385,-0.8333,0.5528,0.0,-0.7101,0.7041,0.0,-0.7101,0.7041,0.0,-0.8333,0.5528,0.0,-0.8173,0.5528,-0.1626,-0.7101,0.7041,0.0,-0.8173,0.5528,-0.1626,-0.6965,0.7041,-0.1385,-0.6965,0.7041,-0.1385,-0.8173,0.5528,-0.1626,-0.7699,0.5528,-0.3189,-0.6965,0.7041,-0.1385,-0.7699,0.5528,-0.3189,-0.6561,0.7041,-0.2718,-0.6561,0.7041,-0.2718,-0.7699,0.5528,-0.3189,-0.6929,0.5528,-0.463,-0.6561,0.7041,-0.2718,-0.6929,0.5528,-0.463,-0.5905,0.7041,-0.3945,-0.5905,0.7041,-0.3945,-0.6929,0.5528,-0.463,-0.5893,0.5528,-0.5893,-0.5905,0.7041,-0.3945,-0.5893,0.5528,-0.5893,-0.5021,0.7041,-0.5021,-0.5021,0.7041,-0.5021,-0.5893,0.5528,-0.5893,-0.463,0.5528,-0.6929,-0.5021,0.7041,-0.5021,-0.463,0.5528,-0.6929,-0.3945,0.7041,-0.5905,-0.3945,0.7041,-0.5905,-0.463,0.5528,-0.6929,-0.3189,0.5528,-0.7699,-0.3945,0.7041,-0.5905,-0.3189,0.5528,-0.7699,-0.2718,0.7041,-0.6561,-0.2718,0.7041,-0.6561,-0.3189,0.5528,-0.7699,-0.1626,0.5528,-0.8173,-0.2718,0.7041,-0.6561,-0.1626,0.5528,-0.8173,-0.1385,0.7041,-0.6965,-0.1385,0.7041,-0.6965,-0.1626,0.5528,-0.8173,0.0,0.5528,-0.8333,-0.1385,0.7041,-0.6965,0.0,0.5528,-0.8333,0.0,0.7041,-0.7101,0.0,0.7041,-0.7101,0.0,0.5528,-0.8333,0.1626,0.5528,-0.8173,0.0,0.7041,-0.7101,0.1626,0.5528,-0.8173,0.1385,0.7041,-0.6965,0.1385,0.7041,-0.6965,0.1626,0.5528,-0.8173,0.3189,0.5528,-0.7699,0.1385,0.7041,-0.6965,0.3189,0.5528,-0.7699,0.2718,0.7041,-0.6561,0.2718,0.7041,-0.6561,0.3189,0.5528,-0.7699,0.463,0.5528,-0.6929,0.2718,0.7041,-0.6561,0.463,0.5528,-0.6929,0.3945,0.7041,-0.5905,0.3945,0.7041,-0.5905,0.463,0.5528,-0.6929,0.5893,0.5528,-0.5893,0.3945,0.7041,-0.5905,0.5893,0.5528,-0.5893,0.5021,0.7041,-0.5021,0.5021,0.7041,-0.5021,0.5893,0.5528,-0.5893,0.6929,0.5528,-0.463,0.5021,0.7041,-0.5021,0.6929,0.5528,-0.463,0.5905,0.7041,-0.3945,0.5905,0.7041,-0.3945,0.6929,0.5528,-0.463,0.7699,0.5528,-0.3189,0.5905,0.7041,-0.3945,0.7699,0.5528,-0.3189,0.6561,0.7041,-0.2718,0.6561,0.7041,-0.2718,0.7699,0.5528,-0.3189,0.8173,0.5528,-0.1626,0.6561,0.7041,-0.2718,0.8173,0.5528,-0.1626,0.6965,0.7041,-0.1385,0.6965,0.7041,-0.1385,0.8173,0.5528,-0.1626,0.8333,0.5528,0.0,0.6965,0.7041,-0.1385,0.8333,0.5528,0.0,0.7101,0.7041,0.0,0.7101,0.7041,0.0,0.8333,0.5528,0.0,0.8173,0.5528,0.1626,0.7101,0.7041,0.0,0.8173,0.5528,0.1626,0.6965,0.7041,0.1385,0.6965,0.7041,0.1385,0.8173,0.5528,0.1626,0.7699,0.5528,0.3189,0.6965,0.7041,0.1385,0.7699,0.5528,0.3189,0.6561,0.7041,0.2718,0.6561,0.7041,0.2718,0.7699,0.5528,0.3189,0.6929,0.5528,0.463,0.6561,0.7041,0.2718,0.6929,0.5528,0.463,0.5905,0.7041,0.3945,0.5905,0.7041,0.3945,0.6929,0.5528,0.463,0.5893,0.5528,0.5893,0.5905,0.7041,0.3945,0.5893,0.5528,0.5893,0.5021,0.7041,0.5021,0.5021,0.7041,0.5021,0.5893,0.5528,0.5893,0.463,0.5528,0.6929,0.5021,0.7041,0.5021,0.463,0.5528,0.6929,0.3945,0.7041,0.5905,0.3945,0.7041,0.5905,0.463,0.5528,0.6929,0.3189,0.5528,0.7699,0.3945,0.7041,0.5905,0.3189,0.5528,0.7699,0.2718,0.7041,0.6561,0.2718,0.7041,0.6561,0.3189,0.5528,0.7699,0.1626,0.5528,0.8173,0.2718,0.7041,0.6561,0.1626,0.5528,0.8173,0.1385,0.7041,0.6965,0.1385,0.7041,0.6965,0.1626,0.5528,0.8173,0.0,0.5528,0.8333,0.1385,0.7041,0.6965,0.0,0.5528,0.8333,0.0,0.7041,0.7101,0.0,0.5528,0.8333,0.0,0.3805,0.9248,-0.1804,0.3805,0.907,0.0,0.5528,0.8333,-0.1804,0.3805,0.907,-0.1626,0.5528,0.8173,-0.1626,0.5528,0.8173,-0.1804,0.3805,0.907,-0.3539,0.3805,0.8544,-0.1626,0.5528,0.8173,-0.3539,0.3805,0.8544,-0.3189,0.5528,0.7699,-0.3189,0.5528,0.7699,-0.3539,0.3805,0.8544,-0.5138,0.3805,0.7689,-0.3189,0.5528,0.7699,-0.5138,0.3805,0.7689,-0.463,0.5528,0.6929,-0.463,0.5528,0.6929,-0.5138,0.3805,0.7689,-0.6539,0.3805,0.6539,-0.463,0.5528,0.6929,-0.6539,0.3805,0.6539,-0.5893,0.5528,0.5893,-0.5893,0.5528,0.5893,-0.6539,0.3805,0.6539,-0.7689,0.3805,0.5138,-0.5893,0.5528,0.5893,-0.7689,0.3805,0.5138,-0.6929,0.5528,0.463,-0.6929,0.5528,0.463,-0.7689,0.3805,0.5138,-0.8544,0.3805,0.3539,-0.6929,0.5528,0.463,-0.8544,0.3805,0.3539,-0.7699,0.5528,0.3189,-0.7699,0.5528,0.3189,-0.8544,0.3805,0.3539,-0.907,0.3805,0.1804,-0.7699,0.5528,0.3189,-0.907,0.3805,0.1804,-0.8173,0.5528,0.1626,-0.8173,0.5528,0.1626,-0.907,0.3805,0.1804,-0.9248,0.3805,0.0,-0.8173,0.5528,0.1626,-0.9248,0.3805,0.0,-0.8333,0.5528,0.0,-0.8333,0.5528,0.0,-0.9248,0.3805,0.0,-0.907,0.3805,-0.1804,-0.8333,0.5528,0.0,-0.907,0.3805,-0.1804,-0.8173,0.5528,-0.1626,-0.8173,0.5528,-0.1626,-0.907,0.3805,-0.1804,-0.8544,0.3805,-0.3539,-0.8173,0.5528,-0.1626,-0.8544,0.3805,-0.3539,-0.7699,0.5528,-0.3189,-0.7699,0.5528,-0.3189,-0.8544,0.3805,-0.3539,-0.7689,0.3805,-0.5138,-0.7699,0.5528,-0.3189,-0.7689,0.3805,-0.5138,-0.6929,0.5528,-0.463,-0.6929,0.5528,-0.463,-0.7689,0.3805,-0.5138,-0.6539,0.3805,-0.6539,-0.6929,0.5528,-0.463,-0.6539,0.3805,-0.6539,-0.5893,0.5528,-0.5893,-0.5893,0.5528,-0.5893,-0.6539,0.3805,-0.6539,-0.5138,0.3805,-0.7689,-0.5893,0.5528,-0.5893,-0.5138,0.3805,-0.7689,-0.463,0.5528,-0.6929,-0.463,0.5528,-0.6929,-0.5138,0.3805,-0.7689,-0.3539,0.3805,-0.8544,-0.463,0.5528,-0.6929,-0.3539,0.3805,-0.8544,-0.3189,0.5528,-0.7699,-0.3189,0.5528,-0.7699,-0.3539,0.3805,-0.8544,-0.1804,0.3805,-0.907,-0.3189,0.5528,-0.7699,-0.1804,0.3805,-0.907,-0.1626,0.5528,-0.8173,-0.1626,0.5528,-0.8173,-0.1804,0.3805,-0.907,0.0,0.3805,-0.9248,-0.1626,0.5528,-0.8173,0.0,0.3805,-0.9248,0.0,0.5528,-0.8333,0.0,0.5528,-0.8333,0.0,0.3805,-0.9248,0.1804,0.3805,-0.907,0.0,0.5528,-0.8333,0.1804,0.3805,-0.907,0.1626,0.5528,-0.8173,0.1626,0.5528,-0.8173,0.1804,0.3805,-0.907,0.3539,0.3805,-0.8544,0.1626,0.5528,-0.8173,0.3539,0.3805,-0.8544,0.3189,0.5528,-0.7699,0.3189,0.5528,-0.7699,0.3539,0.3805,-0.8544,0.5138,0.3805,-0.7689,0.3189,0.5528,-0.7699,0.5138,0.3805,-0.7689,0.463,0.5528,-0.6929,0.463,0.5528,-0.6929,0.5138,0.3805,-0.7689,0.6539,0.3805,-0.6539,0.463,0.5528,-0.6929,0.6539,0.3805,-0.6539,0.5893,0.5528,-0.5893,0.5893,0.5528,-0.5893,0.6539,0.3805,-0.6539,0.7689,0.3805,-0.5138,0.5893,0.5528,-0.5893,0.7689,0.3805,-0.5138,0.6929,0.5528,-0.463,0.6929,0.5528,-0.463,0.7689,0.3805,-0.5138,0.8544,0.3805,-0.3539,0.6929,0.5528,-0.463,0.8544,0.3805,-0.3539,0.7699,0.5528,-0.3189,0.7699,0.5528,-0.3189,0.8544,0.3805,-0.3539,0.907,0.3805,-0.1804,0.7699,0.5528,-0.3189,0.907,0.3805,-0.1804,0.8173,0.5528,-0.1626,0.8173,0.5528,-0.1626,0.907,0.3805,-0.1804,0.9248,0.3805,0.0,0.8173,0.5528,-0.1626,0.9248,0.3805,0.0,0.8333,0.5528,0.0,0.8333,0.5528,0.0,0.9248,0.3805,0.0,0.907,0.3805,0.1804,0.8333,0.5528,0.0,0.907,0.3805,0.1804,0.8173,0.5528,0.1626,0.8173,0.5528,0.1626,0.907,0.3805,0.1804,0.8544,0.3805,0.3539,0.8173,0.5528,0.1626,0.8544,0.3805,0.3539,0.7699,0.5528,0.3189,0.7699,0.5528,0.3189,0.8544,0.3805,0.3539,0.7689,0.3805,0.5138,0.7699,0.5528,0.3189,0.7689,0.3805,0.5138,0.6929,0.5528,0.463,0.6929,0.5528,0.463,0.7689,0.3805,0.5138,0.6539,0.3805,0.6539,0.6929,0.5528,0.463,0.6539,0.3805,0.6539,0.5893,0.5528,0.5893,0.5893,0.5528,0.5893,0.6539,0.3805,0.6539,0.5138,0.3805,0.7689,0.5893,0.5528,0.5893,0.5138,0.3805,0.7689,0.463,0.5528,0.6929,0.463,0.5528,0.6929,0.5138,0.3805,0.7689,0.3539,0.3805,0.8544,0.463,0.5528,0.6929,0.3539,0.3805,0.8544,0.3189,0.5528,0.7699,0.3189,0.5528,0.7699,0.3539,0.3805,0.8544,0.1804,0.3805,0.907,0.3189,0.5528,0.7699,0.1804,0.3805,0.907,0.1626,0.5528,0.8173,0.1626,0.5528,0.8173,0.1804,0.3805,0.907,0.0,0.3805,0.9248,0.1626,0.5528,0.8173,0.0,0.3805,0.9248,0.0,0.5528,0.8333,0.0,0.3805,0.9248,0.0,0.1939,0.981,-0.1914,0.1939,0.9622,0.0,0.3805,0.9248,-0.1914,0.1939,0.9622,-0.1804,0.3805,0.907,-0.1804,0.3805,0.907,-0.1914,0.1939,0.9622,-0.3754,0.1939,0.9063,-0.1804,0.3805,0.907,-0.3754,0.1939,0.9063,-0.3539,0.3805,0.8544,-0.3539,0.3805,0.8544,-0.3754,0.1939,0.9063,-0.545,0.1939,0.8157,-0.3539,0.3805,0.8544,-0.545,0.1939,0.8157,-0.5138,0.3805,0.7689,-0.5138,0.3805,0.7689,-0.545,0.1939,0.8157,-0.6937,0.1939,0.6937,-0.5138,0.3805,0.7689,-0.6937,0.1939,0.6937,-0.6539,0.3805,0.6539,-0.6539,0.3805,0.6539,-0.6937,0.1939,0.6937,-0.8157,0.1939,0.545,-0.6539,0.3805,0.6539,-0.8157,0.1939,0.545,-0.7689,0.3805,0.5138,-0.7689,0.3805,0.5138,-0.8157,0.1939,0.545,-0.9063,0.1939,0.3754,-0.7689,0.3805,0.5138,-0.9063,0.1939,0.3754,-0.8544,0.3805,0.3539,-0.8544,0.3805,0.3539,-0.9063,0.1939,0.3754,-0.9622,0.1939,0.1914,-0.8544,0.3805,0.3539,-0.9622,0.1939,0.1914,-0.907,0.3805,0.1804,-0.907,0.3805,0.1804,-0.9622,0.1939,0.1914,-0.981,0.1939,0.0,-0.907,0.3805,0.1804,-0.981,0.1939,0.0,-0.9248,0.3805,0.0,-0.9248,0.3805,0.0,-0.981,0.1939,0.0,-0.9622,0.1939,-0.1914,-0.9248,0.3805,0.0,-0.9622,0.1939,-0.1914,-0.907,0.3805,-0.1804,-0.907,0.3805,-0.1804,-0.9622,0.1939,-0.1914,-0.9063,0.1939,-0.3754,-0.907,0.3805,-0.1804,-0.9063,0.1939,-0.3754,-0.8544,0.3805,-0.3539,-0.8544,0.3805,-0.3539,-0.9063,0.1939,-0.3754,-0.8157,0.1939,-0.545,-0.8544,0.3805,-0.3539,-0.8157,0.1939,-0.545,-0.7689,0.3805,-0.5138,-0.7689,0.3805,-0.5138,-0.8157,0.1939,-0.545,-0.6937,0.1939,-0.6937,-0.7689,0.3805,-0.5138,-0.6937,0.1939,-0.6937,-0.6539,0.3805,-0.6539,-0.6539,0.3805,-0.6539,-0.6937,0.1939,-0.6937,-0.545,0.1939,-0.8157,-0.6539,0.3805,-0.6539,-0.545,0.1939,-0.8157,-0.5138,0.3805,-0.7689,-0.5138,0.3805,-0.7689,-0.545,0.1939,-0.8157,-0.3754,0.1939,-0.9063,-0.5138,0.3805,-0.7689,-0.3754,0.1939,-0.9063,-0.3539,0.3805,-0.8544,-0.3539,0.3805,-0.8544,-0.3754,0.1939,-0.9063,-0.1914,0.1939,-0.9622,-0.3539,0.3805,-0.8544,-0.1914,0.1939,-0.9622,-0.1804,0.3805,-0.907,-0.1804,0.3805,-0.907,-0.1914,0.1939,-0.9622,0.0,0.1939,-0.981,-0.1804,0.3805,-0.907,0.0,0.1939,-0.981,0.0,0.3805,-0.9248,0.0,0.3805,-0.9248,0.0,0.1939,-0.981,0.1914,0.1939,-0.9622,0.0,0.3805,-0.9248,0.1914,0.1939,-0.9622,0.1804,0.3805,-0.907,0.1804,0.3805,-0.907,0.1914,0.1939,-0.9622,0.3754,0.1939,-0.9063,0.1804,0.3805,-0.907,0.3754,0.1939,-0.9063,0.3539,0.3805,-0.8544,0.3539,0.3805,-0.8544,0.3754,0.1939,-0.9063,0.545,0.1939,-0.8157,0.3539,0.3805,-0.8544,0.545,0.1939,-0.8157,0.5138,0.3805,-0.7689,0.5138,0.3805,-0.7689,0.545,0.1939,-0.8157,0.6937,0.1939,-0.6937,0.5138,0.3805,-0.7689,0.6937,0.1939,-0.6937,0.6539,0.3805,-0.6539,0.6539,0.3805,-0.6539,0.6937,0.1939,-0.6937,0.8157,0.1939,-0.545,0.6539,0.3805,-0.6539,0.8157,0.1939,-0.545,0.7689,0.3805,-0.5138,0.7689,0.3805,-0.5138,0.8157,0.1939,-0.545,0.9063,0.1939,-0.3754,0.7689,0.3805,-0.5138,0.9063,0.1939,-0.3754,0.8544,0.3805,-0.3539,0.8544,0.3805,-0.3539,0.9063,0.1939,-0.3754,0.9622,0.1939,-0.1914,0.8544,0.3805,-0.3539,0.9622,0.1939,-0.1914,0.907,0.3805,-0.1804,0.907,0.3805,-0.1804,0.9622,0.1939,-0.1914,0.981,0.1939,0.0,0.907,0.3805,-0.1804,0.981,0.1939,0.0,0.9248,0.3805,0.0,0.9248,0.3805,0.0,0.981,0.1939,0.0,0.9622,0.1939,0.1914,0.9248,0.3805,0.0,0.9622,0.1939,0.1914,0.907,0.3805,0.1804,0.907,0.3805,0.1804,0.9622,0.1939,0.1914,0.9063,0.1939,0.3754,0.907,0.3805,0.1804,0.9063,0.1939,0.3754,0.8544,0.3805,0.3539,0.8544,0.3805,0.3539,0.9063,0.1939,0.3754,0.8157,0.1939,0.545,0.8544,0.3805,0.3539,0.8157,0.1939,0.545,0.7689,0.3805,0.5138,0.7689,0.3805,0.5138,0.8157,0.1939,0.545,0.6937,0.1939,0.6937,0.7689,0.3805,0.5138,0.6937,0.1939,0.6937,0.6539,0.3805,0.6539,0.6539,0.3805,0.6539,0.6937,0.1939,0.6937,0.545,0.1939,0.8157,0.6539,0.3805,0.6539,0.545,0.1939,0.8157,0.5138,0.3805,0.7689,0.5138,0.3805,0.7689,0.545,0.1939,0.8157,0.3754,0.1939,0.9063,0.5138,0.3805,0.7689,0.3754,0.1939,0.9063,0.3539,0.3805,0.8544,0.3539,0.3805,0.8544,0.3754,0.1939,0.9063,0.1914,0.1939,0.9622,0.3539,0.3805,0.8544,0.1914,0.1939,0.9622,0.1804,0.3805,0.907,0.1804,0.3805,0.907,0.1914,0.1939,0.9622,0.0,0.1939,0.981,0.1804,0.3805,0.907,0.0,0.1939,0.981,0.0,0.3805,0.9248,0.0,0.1939,0.981,0.0,0.0,1.0,-0.1951,0.0,0.9808,0.0,0.1939,0.981,-0.1951,0.0,0.9808,-0.1914,0.1939,0.9622,-0.1914,0.1939,0.9622,-0.1951,0.0,0.9808,-0.3827,0.0,0.9239,-0.1914,0.1939,0.9622,-0.3827,0.0,0.9239,-0.3754,0.1939,0.9063,-0.3754,0.1939,0.9063,-0.3827,0.0,0.9239,-0.5556,0.0,0.8315,-0.3754,0.1939,0.9063,-0.5556,0.0,0.8315,-0.545,0.1939,0.8157,-0.545,0.1939,0.8157,-0.5556,0.0,0.8315,-0.7071,0.0,0.7071,-0.545,0.1939,0.8157,-0.7071,0.0,0.7071,-0.6937,0.1939,0.6937,-0.6937,0.1939,0.6937,-0.7071,0.0,0.7071,-0.8315,0.0,0.5556,-0.6937,0.1939,0.6937,-0.8315,0.0,0.5556,-0.8157,0.1939,0.545,-0.8157,0.1939,0.545,-0.8315,0.0,0.5556,-0.9239,0.0,0.3827,-0.8157,0.1939,0.545,-0.9239,0.0,0.3827,-0.9063,0.1939,0.3754,-0.9063,0.1939,0.3754,-0.9239,0.0,0.3827,-0.9808,0.0,0.1951,-0.9063,0.1939,0.3754,-0.9808,0.0,0.1951,-0.9622,0.1939,0.1914,-0.9622,0.1939,0.1914,-0.9808,0.0,0.1951,-1.0,0.0,0.0,-0.9622,0.1939,0.1914,-1.0,0.0,0.0,-0.981,0.1939,0.0,-0.981,0.1939,0.0,-1.0,0.0,0.0,-0.9808,0.0,-0.1951,-0.981,0.1939,0.0,-0.9808,0.0,-0.1951,-0.9622,0.1939,-0.1914,-0.9622,0.1939,-0.1914,-0.9808,0.0,-0.1951,-0.9239,0.0,-0.3827,-0.9622,0.1939,-0.1914,-0.9239,0.0,-0.3827,-0.9063,0.1939,-0.3754,-0.9063,0.1939,-0.3754,-0.9239,0.0,-0.3827,-0.8315,0.0,-0.5556,-0.9063,0.1939,-0.3754,-0.8315,0.0,-0.5556,-0.8157,0.1939,-0.545,-0.8157,0.1939,-0.545,-0.8315,0.0,-0.5556,-0.7071,0.0,-0.7071,-0.8157,0.1939,-0.545,-0.7071,0.0,-0.7071,-0.6937,0.1939,-0.6937,-0.6937,0.1939,-0.6937,-0.7071,0.0,-0.7071,-0.5556,0.0,-0.8315,-0.6937,0.1939,-0.6937,-0.5556,0.0,-0.8315,-0.545,0.1939,-0.8157,-0.545,0.1939,-0.8157,-0.5556,0.0,-0.8315,-0.3827,0.0,-0.9239,-0.545,0.1939,-0.8157,-0.3827,0.0,-0.9239,-0.3754,0.1939,-0.9063,-0.3754,0.1939,-0.9063,-0.3827,0.0,-0.9239,-0.1951,0.0,-0.9808,-0.3754,0.1939,-0.9063,-0.1951,0.0,-0.9808,-0.1914,0.1939,-0.9622,-0.1914,0.1939,-0.9622,-0.1951,0.0,-0.9808,0.0,0.0,-1.0,-0.1914,0.1939,-0.9622,0.0,0.0,-1.0,0.0,0.1939,-0.981,0.0,0.1939,-0.981,0.0,0.0,-1.0,0.1951,0.0,-0.9808,0.0,0.1939,-0.981,0.1951,0.0,-0.9808,0.1914,0.1939,-0.9622,0.1914,0.1939,-0.9622,0.1951,0.0,-0.9808,0.3827,0.0,-0.9239,0.1914,0.1939,-0.9622,0.3827,0.0,-0.9239,0.3754,0.1939,-0.9063,0.3754,0.1939,-0.9063,0.3827,0.0,-0.9239,0.5556,0.0,-0.8315,0.3754,0.1939,-0.9063,0.5556,0.0,-0.8315,0.545,0.1939,-0.8157,0.545,0.1939,-0.8157,0.5556,0.0,-0.8315,0.7071,0.0,-0.7071,0.545,0.1939,-0.8157,0.7071,0.0,-0.7071,0.6937,0.1939,-0.6937,0.6937,0.1939,-0.6937,0.7071,0.0,-0.7071,0.8315,0.0,-0.5556,0.6937,0.1939,-0.6937,0.8315,0.0,-0.5556,0.8157,0.1939,-0.545,0.8157,0.1939,-0.545,0.8315,0.0,-0.5556,0.9239,0.0,-0.3827,0.8157,0.1939,-0.545,0.9239,0.0,-0.3827,0.9063,0.1939,-0.3754,0.9063,0.1939,-0.3754,0.9239,0.0,-0.3827,0.9808,0.0,-0.1951,0.9063,0.1939,-0.3754,0.9808,0.0,-0.1951,0.9622,0.1939,-0.1914,0.9622,0.1939,-0.1914,0.9808,0.0,-0.1951,1.0,0.0,0.0,0.9622,0.1939,-0.1914,1.0,0.0,0.0,0.981,0.1939,0.0,0.981,0.1939,0.0,1.0,0.0,0.0,0.9808,0.0,0.1951,0.981,0.1939,0.0,0.9808,0.0,0.1951,0.9622,0.1939,0.1914,0.9622,0.1939,0.1914,0.9808,0.0,0.1951,0.9239,0.0,0.3827,0.9622,0.1939,0.1914,0.9239,0.0,0.3827,0.9063,0.1939,0.3754,0.9063,0.1939,0.3754,0.9239,0.0,0.3827,0.8315,0.0,0.5556,0.9063,0.1939,0.3754,0.8315,0.0,0.5556,0.8157,0.1939,0.545,0.8157,0.1939,0.545,0.8315,0.0,0.5556,0.7071,0.0,0.7071,0.8157,0.1939,0.545,0.7071,0.0,0.7071,0.6937,0.1939,0.6937,0.6937,0.1939,0.6937,0.7071,0.0,0.7071,0.5556,0.0,0.8315,0.6937,0.1939,0.6937,0.5556,0.0,0.8315,0.545,0.1939,0.8157,0.545,0.1939,0.8157,0.5556,0.0,0.8315,0.3827,0.0,0.9239,0.545,0.1939,0.8157,0.3827,0.0,0.9239,0.3754,0.1939,0.9063,0.3754,0.1939,0.9063,0.3827,0.0,0.9239,0.1951,0.0,0.9808,0.3754,0.1939,0.9063,0.1951,0.0,0.9808,0.1914,0.1939,0.9622,0.1914,0.1939,0.9622,0.1951,0.0,0.9808,0.0,0.0,1.0,0.1914,0.1939,0.9622,0.0,0.0,1.0,0.0,0.1939,0.981,0.0,0.0,1.0,0.0,-0.1939,0.981,-0.1914,-0.1939,0.9622,0.0,0.0,1.0,-0.1914,-0.1939,0.9622,-0.1951,0.0,0.9808,-0.1951,0.0,0.9808,-0.1914,-0.1939,0.9622,-0.3754,-0.1939,0.9063,-0.1951,0.0,0.9808,-0.3754,-0.1939,0.9063,-0.3827,0.0,0.9239,-0.3827,0.0,0.9239,-0.3754,-0.1939,0.9063,-0.545,-0.1939,0.8157,-0.3827,0.0,0.9239,-0.545,-0.1939,0.8157,-0.5556,0.0,0.8315,-0.5556,0.0,0.8315,-0.545,-0.1939,0.8157,-0.6937,-0.1939,0.6937,-0.5556,0.0,0.8315,-0.6937,-0.1939,0.6937,-0.7071,0.0,0.7071,-0.7071,0.0,0.7071,-0.6937,-0.1939,0.6937,-0.8157,-0.1939,0.545,-0.7071,0.0,0.7071,-0.8157,-0.1939,0.545,-0.8315,0.0,0.5556,-0.8315,0.0,0.5556,-0.8157,-0.1939,0.545,-0.9063,-0.1939,0.3754,-0.8315,0.0,0.5556,-0.9063,-0.1939,0.3754,-0.9239,0.0,0.3827,-0.9239,0.0,0.3827,-0.9063,-0.1939,0.3754,-0.9622,-0.1939,0.1914,-0.9239,0.0,0.3827,-0.9622,-0.1939,0.1914,-0.9808,0.0,0.1951,-0.9808,0.0,0.1951,-0.9622,-0.1939,0.1914,-0.981,-0.1939,0.0,-0.9808,0.0,0.1951,-0.981,-0.1939,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-0.981,-0.1939,0.0,-0.9622,-0.1939,-0.1914,-1.0,0.0,0.0,-0.9622,-0.1939,-0.1914,-0.9808,0.0,-0.1951,-0.9808,0.0,-0.1951,-0.9622,-0.1939,-0.1914,-0.9063,-0.1939,-0.3754,-0.9808,0.0,-0.1951,-0.9063,-0.1939,-0.3754,-0.9239,0.0,-0.3827,-0.9239,0.0,-0.3827,-0.9063,-0.1939,-0.3754,-0.8157,-0.1939,-0.545,-0.9239,0.0,-0.3827,-0.8157,-0.1939,-0.545,-0.8315,0.0,-0.5556,-0.8315,0.0,-0.5556,-0.8157,-0.1939,-0.545,-0.6937,-0.1939,-0.6937,-0.8315,0.0,-0.5556,-0.6937,-0.1939,-0.6937,-0.7071,0.0,-0.7071,-0.7071,0.0,-0.7071,-0.6937,-0.1939,-0.6937,-0.545,-0.1939,-0.8157,-0.7071,0.0,-0.7071,-0.545,-0.1939,-0.8157,-0.5556,0.0,-0.8315,-0.5556,0.0,-0.8315,-0.545,-0.1939,-0.8157,-0.3754,-0.1939,-0.9063,-0.5556,0.0,-0.8315,-0.3754,-0.1939,-0.9063,-0.3827,0.0,-0.9239,-0.3827,0.0,-0.9239,-0.3754,-0.1939,-0.9063,-0.1914,-0.1939,-0.9622,-0.3827,0.0,-0.9239,-0.1914,-0.1939,-0.9622,-0.1951,0.0,-0.9808,-0.1951,0.0,-0.9808,-0.1914,-0.1939,-0.9622,0.0,-0.1939,-0.981,-0.1951,0.0,-0.9808,0.0,-0.1939,-0.981,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,-0.1939,-0.981,0.1914,-0.1939,-0.9622,0.0,0.0,-1.0,0.1914,-0.1939,-0.9622,0.1951,0.0,-0.9808,0.1951,0.0,-0.9808,0.1914,-0.1939,-0.9622,0.3754,-0.1939,-0.9063,0.1951,0.0,-0.9808,0.3754,-0.1939,-0.9063,0.3827,0.0,-0.9239,0.3827,0.0,-0.9239,0.3754,-0.1939,-0.9063,0.545,-0.1939,-0.8157,0.3827,0.0,-0.9239,0.545,-0.1939,-0.8157,0.5556,0.0,-0.8315,0.5556,0.0,-0.8315,0.545,-0.1939,-0.8157,0.6937,-0.1939,-0.6937,0.5556,0.0,-0.8315,0.6937,-0.1939,-0.6937,0.7071,0.0,-0.7071,0.7071,0.0,-0.7071,0.6937,-0.1939,-0.6937,0.8157,-0.1939,-0.545,0.7071,0.0,-0.7071,0.8157,-0.1939,-0.545,0.8315,0.0,-0.5556,0.8315,0.0,-0.5556,0.8157,-0.1939,-0.545,0.9063,-0.1939,-0.3754,0.8315,0.0,-0.5556,0.9063,-0.1939,-0.3754,0.9239,0.0,-0.3827,0.9239,0.0,-0.3827,0.9063,-0.1939,-0.3754,0.9622,-0.1939,-0.1914,0.9239,0.0,-0.3827,0.9622,-0.1939,-0.1914,0.9808,0.0,-0.1951,0.9808,0.0,-0.1951,0.9622,-0.1939,-0.1914,0.981,-0.1939,0.0,0.9808,0.0,-0.1951,0.981,-0.1939,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.981,-0.1939,0.0,0.9622,-0.1939,0.1914,1.0,0.0,0.0,0.9622,-0.1939,0.1914,0.9808,0.0,0.1951,0.9808,0.0,0.1951,0.9622,-0.1939,0.1914,0.9063,-0.1939,0.3754,0.9808,0.0,0.1951,0.9063,-0.1939,0.3754,0.9239,0.0,0.3827,0.9239,0.0,0.3827,0.9063,-0.1939,0.3754,0.8157,-0.1939,0.545,0.9239,0.0,0.3827,0.8157,-0.1939,0.545,0.8315,0.0,0.5556,0.8315,0.0,0.5556,0.8157,-0.1939,0.545,0.6937,-0.1939,0.6937,0.8315,0.0,0.5556,0.6937,-0.1939,0.6937,0.7071,0.0,0.7071,0.7071,0.0,0.7071,0.6937,-0.1939,0.6937,0.545,-0.1939,0.8157,0.7071,0.0,0.7071,0.545,-0.1939,0.8157,0.5556,0.0,0.8315,0.5556,0.0,0.8315,0.545,-0.1939,0.8157,0.3754,-0.1939,0.9063,0.5556,0.0,0.8315,0.3754,-0.1939,0.9063,0.3827,0.0,0.9239,0.3827,0.0,0.9239,0.3754,-0.1939,0.9063,0.1914,-0.1939,0.9622,0.3827,0.0,0.9239,0.1914,-0.1939,0.9622,0.1951,0.0,0.9808,0.1951,0.0,0.9808,0.1914,-0.1939,0.9622,0.0,-0.1939,0.981,0.1951,0.0,0.9808,0.0,-0.1939,0.981,0.0,0.0,1.0,0.0,-0.1939,0.981,0.0,-0.3805,0.9248,-0.1804,-0.3805,0.907,0.0,-0.1939,0.981,-0.1804,-0.3805,0.907,-0.1914,-0.1939,0.9622,-0.1914,-0.1939,0.9622,-0.1804,-0.3805,0.907,-0.3539,-0.3805,0.8544,-0.1914,-0.1939,0.9622,-0.3539,-0.3805,0.8544,-0.3754,-0.1939,0.9063,-0.3754,-0.1939,0.9063,-0.3539,-0.3805,0.8544,-0.5138,-0.3805,0.7689,-0.3754,-0.1939,0.9063,-0.5138,-0.3805,0.7689,-0.545,-0.1939,0.8157,-0.545,-0.1939,0.8157,-0.5138,-0.3805,0.7689,-0.6539,-0.3805,0.6539,-0.545,-0.1939,0.8157,-0.6539,-0.3805,0.6539,-0.6937,-0.1939,0.6937,-0.6937,-0.1939,0.6937,-0.6539,-0.3805,0.6539,-0.7689,-0.3805,0.5138,-0.6937,-0.1939,0.6937,-0.7689,-0.3805,0.5138,-0.8157,-0.1939,0.545,-0.8157,-0.1939,0.545,-0.7689,-0.3805,0.5138,-0.8544,-0.3805,0.3539,-0.8157,-0.1939,0.545,-0.8544,-0.3805,0.3539,-0.9063,-0.1939,0.3754,-0.9063,-0.1939,0.3754,-0.8544,-0.3805,0.3539,-0.907,-0.3805,0.1804,-0.9063,-0.1939,0.3754,-0.907,-0.3805,0.1804,-0.9622,-0.1939,0.1914,-0.9622,-0.1939,0.1914,-0.907,-0.3805,0.1804,-0.9248,-0.3805,0.0,-0.9622,-0.1939,0.1914,-0.9248,-0.3805,0.0,-0.981,-0.1939,0.0,-0.981,-0.1939,0.0,-0.9248,-0.3805,0.0,-0.907,-0.3805,-0.1804,-0.981,-0.1939,0.0,-0.907,-0.3805,-0.1804,-0.9622,-0.1939,-0.1914,-0.9622,-0.1939,-0.1914,-0.907,-0.3805,-0.1804,-0.8544,-0.3805,-0.3539,-0.9622,-0.1939,-0.1914,-0.8544,-0.3805,-0.3539,-0.9063,-0.1939,-0.3754,-0.9063,-0.1939,-0.3754,-0.8544,-0.3805,-0.3539,-0.7689,-0.3805,-0.5138,-0.9063,-0.1939,-0.3754,-0.7689,-0.3805,-0.5138,-0.8157,-0.1939,-0.545,-0.8157,-0.1939,-0.545,-0.7689,-0.3805,-0.5138,-0.6539,-0.3805,-0.6539,-0.8157,-0.1939,-0.545,-0.6539,-0.3805,-0.6539,-0.6937,-0.1939,-0.6937,-0.6937,-0.1939,-0.6937,-0.6539,-0.3805,-0.6539,-0.5138,-0.3805,-0.7689,-0.6937,-0.1939,-0.6937,-0.5138,-0.3805,-0.7689,-0.545,-0.1939,-0.8157,-0.545,-0.1939,-0.8157,-0.5138,-0.3805,-0.7689,-0.3539,-0.3805,-0.8544,-0.545,-0.1939,-0.8157,-0.3539,-0.3805,-0.8544,-0.3754,-0.1939,-0.9063,-0.3754,-0.1939,-0.9063,-0.3539,-0.3805,-0.8544,-0.1804,-0.3805,-0.907,-0.3754,-0.1939,-0.9063,-0.1804,-0.3805,-0.907,-0.1914,-0.1939,-0.9622,-0.1914,-0.1939,-0.9622,-0.1804,-0.3805,-0.907,0.0,-0.3805,-0.9248,-0.1914,-0.1939,-0.9622,0.0,-0.3805,-0.9248,0.0,-0.1939,-0.981,0.0,-0.1939,-0.981,0.0,-0.3805,-0.9248,0.1804,-0.3805,-0.907,0.0,-0.1939,-0.981,0.1804,-0.3805,-0.907,0.1914,-0.1939,-0.9622,0.1914,-0.1939,-0.9622,0.1804,-0.3805,-0.907,0.3539,-0.3805,-0.8544,0.1914,-0.1939,-0.9622,0.3539,-0.3805,-0.8544,0.3754,-0.1939,-0.9063,0.3754,-0.1939,-0.9063,0.3539,-0.3805,-0.8544,0.5138,-0.3805,-0.7689,0.3754,-0.1939,-0.9063,0.5138,-0.3805,-0.7689,0.545,-0.1939,-0.8157,0.545,-0.1939,-0.8157,0.5138,-0.3805,-0.7689,0.6539,-0.3805,-0.6539,0.545,-0.1939,-0.8157,0.6539,-0.3805,-0.6539,0.6937,-0.1939,-0.6937,0.6937,-0.1939,-0.6937,0.6539,-0.3805,-0.6539,0.7689,-0.3805,-0.5138,0.6937,-0.1939,-0.6937,0.7689,-0.3805,-0.5138,0.8157,-0.1939,-0.545,0.8157,-0.1939,-0.545,0.7689,-0.3805,-0.5138,0.8544,-0.3805,-0.3539,0.8157,-0.1939,-0.545,0.8544,-0.3805,-0.3539,0.9063,-0.1939,-0.3754,0.9063,-0.1939,-0.3754,0.8544,-0.3805,-0.3539,0.907,-0.3805,-0.1804,0.9063,-0.1939,-0.3754,0.907,-0.3805,-0.1804,0.9622,-0.1939,-0.1914,0.9622,-0.1939,-0.1914,0.907,-0.3805,-0.1804,0.9248,-0.3805,0.0,0.9622,-0.1939,-0.1914,0.9248,-0.3805,0.0,0.981,-0.1939,0.0,0.981,-0.1939,0.0,0.9248,-0.3805,0.0,0.907,-0.3805,0.1804,0.981,-0.1939,0.0,0.907,-0.3805,0.1804,0.9622,-0.1939,0.1914,0.9622,-0.1939,0.1914,0.907,-0.3805,0.1804,0.8544,-0.3805,0.3539,0.9622,-0.1939,0.1914,0.8544,-0.3805,0.3539,0.9063,-0.1939,0.3754,0.9063,-0.1939,0.3754,0.8544,-0.3805,0.3539,0.7689,-0.3805,0.5138,0.9063,-0.1939,0.3754,0.7689,-0.3805,0.5138,0.8157,-0.1939,0.545,0.8157,-0.1939,0.545,0.7689,-0.3805,0.5138,0.6539,-0.3805,0.6539,0.8157,-0.1939,0.545,0.6539,-0.3805,0.6539,0.6937,-0.1939,0.6937,0.6937,-0.1939,0.6937,0.6539,-0.3805,0.6539,0.5138,-0.3805,0.7689,0.6937,-0.1939,0.6937,0.5138,-0.3805,0.7689,0.545,-0.1939,0.8157,0.545,-0.1939,0.8157,0.5138,-0.3805,0.7689,0.3539,-0.3805,0.8544,0.545,-0.1939,0.8157,0.3539,-0.3805,0.8544,0.3754,-0.1939,0.9063,0.3754,-0.1939,0.9063,0.3539,-0.3805,0.8544,0.1804,-0.3805,0.907,0.3754,-0.1939,0.9063,0.1804,-0.3805,0.907,0.1914,-0.1939,0.9622,0.1914,-0.1939,0.9622,0.1804,-0.3805,0.907,0.0,-0.3805,0.9248,0.1914,-0.1939,0.9622,0.0,-0.3805,0.9248,0.0,-0.1939,0.981,0.0,-0.3805,0.9248,0.0,-0.5528,0.8333,-0.1626,-0.5528,0.8173,0.0,-0.3805,0.9248,-0.1626,-0.5528,0.8173,-0.1804,-0.3805,0.907,-0.1804,-0.3805,0.907,-0.1626,-0.5528,0.8173,-0.3189,-0.5528,0.7699,-0.1804,-0.3805,0.907,-0.3189,-0.5528,0.7699,-0.3539,-0.3805,0.8544,-0.3539,-0.3805,0.8544,-0.3189,-0.5528,0.7699,-0.463,-0.5528,0.6929,-0.3539,-0.3805,0.8544,-0.463,-0.5528,0.6929,-0.5138,-0.3805,0.7689,-0.5138,-0.3805,0.7689,-0.463,-0.5528,0.6929,-0.5893,-0.5528,0.5893,-0.5138,-0.3805,0.7689,-0.5893,-0.5528,0.5893,-0.6539,-0.3805,0.6539,-0.6539,-0.3805,0.6539,-0.5893,-0.5528,0.5893,-0.6929,-0.5528,0.463,-0.6539,-0.3805,0.6539,-0.6929,-0.5528,0.463,-0.7689,-0.3805,0.5138,-0.7689,-0.3805,0.5138,-0.6929,-0.5528,0.463,-0.7699,-0.5528,0.3189,-0.7689,-0.3805,0.5138,-0.7699,-0.5528,0.3189,-0.8544,-0.3805,0.3539,-0.8544,-0.3805,0.3539,-0.7699,-0.5528,0.3189,-0.8173,-0.5528,0.1626,-0.8544,-0.3805,0.3539,-0.8173,-0.5528,0.1626,-0.907,-0.3805,0.1804,-0.907,-0.3805,0.1804,-0.8173,-0.5528,0.1626,-0.8333,-0.5528,0.0,-0.907,-0.3805,0.1804,-0.8333,-0.5528,0.0,-0.9248,-0.3805,0.0,-0.9248,-0.3805,0.0,-0.8333,-0.5528,0.0,-0.8173,-0.5528,-0.1626,-0.9248,-0.3805,0.0,-0.8173,-0.5528,-0.1626,-0.907,-0.3805,-0.1804,-0.907,-0.3805,-0.1804,-0.8173,-0.5528,-0.1626,-0.7699,-0.5528,-0.3189,-0.907,-0.3805,-0.1804,-0.7699,-0.5528,-0.3189,-0.8544,-0.3805,-0.3539,-0.8544,-0.3805,-0.3539,-0.7699,-0.5528,-0.3189,-0.6929,-0.5528,-0.463,-0.8544,-0.3805,-0.3539,-0.6929,-0.5528,-0.463,-0.7689,-0.3805,-0.5138,-0.7689,-0.3805,-0.5138,-0.6929,-0.5528,-0.463,-0.5893,-0.5528,-0.5893,-0.7689,-0.3805,-0.5138,-0.5893,-0.5528,-0.5893,-0.6539,-0.3805,-0.6539,-0.6539,-0.3805,-0.6539,-0.5893,-0.5528,-0.5893,-0.463,-0.5528,-0.6929,-0.6539,-0.3805,-0.6539,-0.463,-0.5528,-0.6929,-0.5138,-0.3805,-0.7689,-0.5138,-0.3805,-0.7689,-0.463,-0.5528,-0.6929,-0.3189,-0.5528,-0.7699,-0.5138,-0.3805,-0.7689,-0.3189,-0.5528,-0.7699,-0.3539,-0.3805,-0.8544,-0.3539,-0.3805,-0.8544,-0.3189,-0.5528,-0.7699,-0.1626,-0.5528,-0.8173,-0.3539,-0.3805,-0.8544,-0.1626,-0.5528,-0.8173,-0.1804,-0.3805,-0.907,-0.1804,-0.3805,-0.907,-0.1626,-0.5528,-0.8173,0.0,-0.5528,-0.8333,-0.1804,-0.3805,-0.907,0.0,-0.5528,-0.8333,0.0,-0.3805,-0.9248,0.0,-0.3805,-0.9248,0.0,-0.5528,-0.8333,0.1626,-0.5528,-0.8173,0.0,-0.3805,-0.9248,0.1626,-0.5528,-0.8173,0.1804,-0.3805,-0.907,0.1804,-0.3805,-0.907,0.1626,-0.5528,-0.8173,0.3189,-0.5528,-0.7699,0.1804,-0.3805,-0.907,0.3189,-0.5528,-0.7699,0.3539,-0.3805,-0.8544,0.3539,-0.3805,-0.8544,0.3189,-0.5528,-0.7699,0.463,-0.5528,-0.6929,0.3539,-0.3805,-0.8544,0.463,-0.5528,-0.6929,0.5138,-0.3805,-0.7689,0.5138,-0.3805,-0.7689,0.463,-0.5528,-0.6929,0.5893,-0.5528,-0.5893,0.5138,-0.3805,-0.7689,0.5893,-0.5528,-0.5893,0.6539,-0.3805,-0.6539,0.6539,-0.3805,-0.6539,0.5893,-0.5528,-0.5893,0.6929,-0.5528,-0.463,0.6539,-0.3805,-0.6539,0.6929,-0.5528,-0.463,0.7689,-0.3805,-0.5138,0.7689,-0.3805,-0.5138,0.6929,-0.5528,-0.463,0.7699,-0.5528,-0.3189,0.7689,-0.3805,-0.5138,0.7699,-0.5528,-0.3189,0.8544,-0.3805,-0.3539,0.8544,-0.3805,-0.3539,0.7699,-0.5528,-0.3189,0.8173,-0.5528,-0.1626,0.8544,-0.3805,-0.3539,0.8173,-0.5528,-0.1626,0.907,-0.3805,-0.1804,0.907,-0.3805,-0.1804,0.8173,-0.5528,-0.1626,0.8333,-0.5528,0.0,0.907,-0.3805,-0.1804,0.8333,-0.5528,0.0,0.9248,-0.3805,0.0,0.9248,-0.3805,0.0,0.8333,-0.5528,0.0,0.8173,-0.5528,0.1626,0.9248,-0.3805,0.0,0.8173,-0.5528,0.1626,0.907,-0.3805,0.1804,0.907,-0.3805,0.1804,0.8173,-0.5528,0.1626,0.7699,-0.5528,0.3189,0.907,-0.3805,0.1804,0.7699,-0.5528,0.3189,0.8544,-0.3805,0.3539,0.8544,-0.3805,0.3539,0.7699,-0.5528,0.3189,0.6929,-0.5528,0.463,0.8544,-0.3805,0.3539,0.6929,-0.5528,0.463,0.7689,-0.3805,0.5138,0.7689,-0.3805,0.5138,0.6929,-0.5528,0.463,0.5893,-0.5528,0.5893,0.7689,-0.3805,0.5138,0.5893,-0.5528,0.5893,0.6539,-0.3805,0.6539,0.6539,-0.3805,0.6539,0.5893,-0.5528,0.5893,0.463,-0.5528,0.6929,0.6539,-0.3805,0.6539,0.463,-0.5528,0.6929,0.5138,-0.3805,0.7689,0.5138,-0.3805,0.7689,0.463,-0.5528,0.6929,0.3189,-0.5528,0.7699,0.5138,-0.3805,0.7689,0.3189,-0.5528,0.7699,0.3539,-0.3805,0.8544,0.3539,-0.3805,0.8544,0.3189,-0.5528,0.7699,0.1626,-0.5528,0.8173,0.3539,-0.3805,0.8544,0.1626,-0.5528,0.8173,0.1804,-0.3805,0.907,0.1804,-0.3805,0.907,0.1626,-0.5528,0.8173,0.0,-0.5528,0.8333,0.1804,-0.3805,0.907,0.0,-0.5528,0.8333,0.0,-0.3805,0.9248,0.0,-0.5528,0.8333,0.0,-0.7041,0.7101,-0.1385,-0.7041,0.6965,0.0,-0.5528,0.8333,-0.1385,-0.7041,0.6965,-0.1626,-0.5528,0.8173,-0.1626,-0.5528,0.8173,-0.1385,-0.7041,0.6965,-0.2718,-0.7041,0.6561,-0.1626,-0.5528,0.8173,-0.2718,-0.7041,0.6561,-0.3189,-0.5528,0.7699,-0.3189,-0.5528,0.7699,-0.2718,-0.7041,0.6561,-0.3945,-0.7041,0.5905,-0.3189,-0.5528,0.7699,-0.3945,-0.7041,0.5905,-0.463,-0.5528,0.6929,-0.463,-0.5528,0.6929,-0.3945,-0.7041,0.5905,-0.5021,-0.7041,0.5021,-0.463,-0.5528,0.6929,-0.5021,-0.7041,0.5021,-0.5893,-0.5528,0.5893,-0.5893,-0.5528,0.5893,-0.5021,-0.7041,0.5021,-0.5905,-0.7041,0.3945,-0.5893,-0.5528,0.5893,-0.5905,-0.7041,0.3945,-0.6929,-0.5528,0.463,-0.6929,-0.5528,0.463,-0.5905,-0.7041,0.3945,-0.6561,-0.7041,0.2718,-0.6929,-0.5528,0.463,-0.6561,-0.7041,0.2718,-0.7699,-0.5528,0.3189,-0.7699,-0.5528,0.3189,-0.6561,-0.7041,0.2718,-0.6965,-0.7041,0.1385,-0.7699,-0.5528,0.3189,-0.6965,-0.7041,0.1385,-0.8173,-0.5528,0.1626,-0.8173,-0.5528,0.1626,-0.6965,-0.7041,0.1385,-0.7101,-0.7041,0.0,-0.8173,-0.5528,0.1626,-0.7101,-0.7041,0.0,-0.8333,-0.5528,0.0,-0.8333,-0.5528,0.0,-0.7101,-0.7041,0.0,-0.6965,-0.7041,-0.1385,-0.8333,-0.5528,0.0,-0.6965,-0.7041,-0.1385,-0.8173,-0.5528,-0.1626,-0.8173,-0.5528,-0.1626,-0.6965,-0.7041,-0.1385,-0.6561,-0.7041,-0.2718,-0.8173,-0.5528,-0.1626,-0.6561,-0.7041,-0.2718,-0.7699,-0.5528,-0.3189,-0.7699,-0.5528,-0.3189,-0.6561,-0.7041,-0.2718,-0.5905,-0.7041,-0.3945,-0.7699,-0.5528,-0.3189,-0.5905,-0.7041,-0.3945,-0.6929,-0.5528,-0.463,-0.6929,-0.5528,-0.463,-0.5905,-0.7041,-0.3945,-0.5021,-0.7041,-0.5021,-0.6929,-0.5528,-0.463,-0.5021,-0.7041,-0.5021,-0.5893,-0.5528,-0.5893,-0.5893,-0.5528,-0.5893,-0.5021,-0.7041,-0.5021,-0.3945,-0.7041,-0.5905,-0.5893,-0.5528,-0.5893,-0.3945,-0.7041,-0.5905,-0.463,-0.5528,-0.6929,-0.463,-0.5528,-0.6929,-0.3945,-0.7041,-0.5905,-0.2718,-0.7041,-0.6561,-0.463,-0.5528,-0.6929,-0.2718,-0.7041,-0.6561,-0.3189,-0.5528,-0.7699,-0.3189,-0.5528,-0.7699,-0.2718,-0.7041,-0.6561,-0.1385,-0.7041,-0.6965,-0.3189,-0.5528,-0.7699,-0.1385,-0.7041,-0.6965,-0.1626,-0.5528,-0.8173,-0.1626,-0.5528,-0.8173,-0.1385,-0.7041,-0.6965,0.0,-0.7041,-0.7101,-0.1626,-0.5528,-0.8173,0.0,-0.7041,-0.7101,0.0,-0.5528,-0.8333,0.0,-0.5528,-0.8333,0.0,-0.7041,-0.7101,0.1385,-0.7041,-0.6965,0.0,-0.5528,-0.8333,0.1385,-0.7041,-0.6965,0.1626,-0.5528,-0.8173,0.1626,-0.5528,-0.8173,0.1385,-0.7041,-0.6965,0.2718,-0.7041,-0.6561,0.1626,-0.5528,-0.8173,0.2718,-0.7041,-0.6561,0.3189,-0.5528,-0.7699,0.3189,-0.5528,-0.7699,0.2718,-0.7041,-0.6561,0.3945,-0.7041,-0.5905,0.3189,-0.5528,-0.7699,0.3945,-0.7041,-0.5905,0.463,-0.5528,-0.6929,0.463,-0.5528,-0.6929,0.3945,-0.7041,-0.5905,0.5021,-0.7041,-0.5021,0.463,-0.5528,-0.6929,0.5021,-0.7041,-0.5021,0.5893,-0.5528,-0.5893,0.5893,-0.5528,-0.5893,0.5021,-0.7041,-0.5021,0.5905,-0.7041,-0.3945,0.5893,-0.5528,-0.5893,0.5905,-0.7041,-0.3945,0.6929,-0.5528,-0.463,0.6929,-0.5528,-0.463,0.5905,-0.7041,-0.3945,0.6561,-0.7041,-0.2718,0.6929,-0.5528,-0.463,0.6561,-0.7041,-0.2718,0.7699,-0.5528,-0.3189,0.7699,-0.5528,-0.3189,0.6561,-0.7041,-0.2718,0.6965,-0.7041,-0.1385,0.7699,-0.5528,-0.3189,0.6965,-0.7041,-0.1385,0.8173,-0.5528,-0.1626,0.8173,-0.5528,-0.1626,0.6965,-0.7041,-0.1385,0.7101,-0.7041,0.0,0.8173,-0.5528,-0.1626,0.7101,-0.7041,0.0,0.8333,-0.5528,0.0,0.8333,-0.5528,0.0,0.7101,-0.7041,0.0,0.6965,-0.7041,0.1385,0.8333,-0.5528,0.0,0.6965,-0.7041,0.1385,0.8173,-0.5528,0.1626,0.8173,-0.5528,0.1626,0.6965,-0.7041,0.1385,0.6561,-0.7041,0.2718,0.8173,-0.5528,0.1626,0.6561,-0.7041,0.2718,0.7699,-0.5528,0.3189,0.7699,-0.5528,0.3189,0.6561,-0.7041,0.2718,0.5905,-0.7041,0.3945,0.7699,-0.5528,0.3189,0.5905,-0.7041,0.3945,0.6929,-0.5528,0.463,0.6929,-0.5528,0.463,0.5905,-0.7041,0.3945,0.5021,-0.7041,0.5021,0.6929,-0.5528,0.463,0.5021,-0.7041,0.5021,0.5893,-0.5528,0.5893,0.5893,-0.5528,0.5893,0.5021,-0.7041,0.5021,0.3945,-0.7041,0.5905,0.5893,-0.5528,0.5893,0.3945,-0.7041,0.5905,0.463,-0.5528,0.6929,0.463,-0.5528,0.6929,0.3945,-0.7041,0.5905,0.2718,-0.7041,0.6561,0.463,-0.5528,0.6929,0.2718,-0.7041,0.6561,0.3189,-0.5528,0.7699,0.3189,-0.5528,0.7699,0.2718,-0.7041,0.6561,0.1385,-0.7041,0.6965,0.3189,-0.5528,0.7699,0.1385,-0.7041,0.6965,0.1626,-0.5528,0.8173,0.1626,-0.5528,0.8173,0.1385,-0.7041,0.6965,0.0,-0.7041,0.7101,0.1626,-0.5528,0.8173,0.0,-0.7041,0.7101,0.0,-0.5528,0.8333,0.0,-0.7041,0.7101,0.0,-0.8286,0.5598,-0.1092,-0.8286,0.549,0.0,-0.7041,0.7101,-0.1092,-0.8286,0.549,-0.1385,-0.7041,0.6965,-0.1385,-0.7041,0.6965,-0.1092,-0.8286,0.549,-0.2142,-0.8286,0.5172,-0.1385,-0.7041,0.6965,-0.2142,-0.8286,0.5172,-0.2718,-0.7041,0.6561,-0.2718,-0.7041,0.6561,-0.2142,-0.8286,0.5172,-0.311,-0.8286,0.4654,-0.2718,-0.7041,0.6561,-0.311,-0.8286,0.4654,-0.3945,-0.7041,0.5905,-0.3945,-0.7041,0.5905,-0.311,-0.8286,0.4654,-0.3958,-0.8286,0.3958,-0.3945,-0.7041,0.5905,-0.3958,-0.8286,0.3958,-0.5021,-0.7041,0.5021,-0.5021,-0.7041,0.5021,-0.3958,-0.8286,0.3958,-0.4654,-0.8286,0.311,-0.5021,-0.7041,0.5021,-0.4654,-0.8286,0.311,-0.5905,-0.7041,0.3945,-0.5905,-0.7041,0.3945,-0.4654,-0.8286,0.311,-0.5172,-0.8286,0.2142,-0.5905,-0.7041,0.3945,-0.5172,-0.8286,0.2142,-0.6561,-0.7041,0.2718,-0.6561,-0.7041,0.2718,-0.5172,-0.8286,0.2142,-0.549,-0.8286,0.1092,-0.6561,-0.7041,0.2718,-0.549,-0.8286,0.1092,-0.6965,-0.7041,0.1385,-0.6965,-0.7041,0.1385,-0.549,-0.8286,0.1092,-0.5598,-0.8286,0.0,-0.6965,-0.7041,0.1385,-0.5598,-0.8286,0.0,-0.7101,-0.7041,0.0,-0.7101,-0.7041,0.0,-0.5598,-0.8286,0.0,-0.549,-0.8286,-0.1092,-0.7101,-0.7041,0.0,-0.549,-0.8286,-0.1092,-0.6965,-0.7041,-0.1385,-0.6965,-0.7041,-0.1385,-0.549,-0.8286,-0.1092,-0.5172,-0.8286,-0.2142,-0.6965,-0.7041,-0.1385,-0.5172,-0.8286,-0.2142,-0.6561,-0.7041,-0.2718,-0.6561,-0.7041,-0.2718,-0.5172,-0.8286,-0.2142,-0.4654,-0.8286,-0.311,-0.6561,-0.7041,-0.2718,-0.4654,-0.8286,-0.311,-0.5905,-0.7041,-0.3945,-0.5905,-0.7041,-0.3945,-0.4654,-0.8286,-0.311,-0.3958,-0.8286,-0.3958,-0.5905,-0.7041,-0.3945,-0.3958,-0.8286,-0.3958,-0.5021,-0.7041,-0.5021,-0.5021,-0.7041,-0.5021,-0.3958,-0.8286,-0.3958,-0.311,-0.8286,-0.4654,-0.5021,-0.7041,-0.5021,-0.311,-0.8286,-0.4654,-0.3945,-0.7041,-0.5905,-0.3945,-0.7041,-0.5905,-0.311,-0.8286,-0.4654,-0.2142,-0.8286,-0.5172,-0.3945,-0.7041,-0.5905,-0.2142,-0.8286,-0.5172,-0.2718,-0.7041,-0.6561,-0.2718,-0.7041,-0.6561,-0.2142,-0.8286,-0.5172,-0.1092,-0.8286,-0.549,-0.2718,-0.7041,-0.6561,-0.1092,-0.8286,-0.549,-0.1385,-0.7041,-0.6965,-0.1385,-0.7041,-0.6965,-0.1092,-0.8286,-0.549,0.0,-0.8286,-0.5598,-0.1385,-0.7041,-0.6965,0.0,-0.8286,-0.5598,0.0,-0.7041,-0.7101,0.0,-0.7041,-0.7101,0.0,-0.8286,-0.5598,0.1092,-0.8286,-0.549,0.0,-0.7041,-0.7101,0.1092,-0.8286,-0.549,0.1385,-0.7041,-0.6965,0.1385,-0.7041,-0.6965,0.1092,-0.8286,-0.549,0.2142,-0.8286,-0.5172,0.1385,-0.7041,-0.6965,0.2142,-0.8286,-0.5172,0.2718,-0.7041,-0.6561,0.2718,-0.7041,-0.6561,0.2142,-0.8286,-0.5172,0.311,-0.8286,-0.4654,0.2718,-0.7041,-0.6561,0.311,-0.8286,-0.4654,0.3945,-0.7041,-0.5905,0.3945,-0.7041,-0.5905,0.311,-0.8286,-0.4654,0.3958,-0.8286,-0.3958,0.3945,-0.7041,-0.5905,0.3958,-0.8286,-0.3958,0.5021,-0.7041,-0.5021,0.5021,-0.7041,-0.5021,0.3958,-0.8286,-0.3958,0.4654,-0.8286,-0.311,0.5021,-0.7041,-0.5021,0.4654,-0.8286,-0.311,0.5905,-0.7041,-0.3945,0.5905,-0.7041,-0.3945,0.4654,-0.8286,-0.311,0.5172,-0.8286,-0.2142,0.5905,-0.7041,-0.3945,0.5172,-0.8286,-0.2142,0.6561,-0.7041,-0.2718,0.6561,-0.7041,-0.2718,0.5172,-0.8286,-0.2142,0.549,-0.8286,-0.1092,0.6561,-0.7041,-0.2718,0.549,-0.8286,-0.1092,0.6965,-0.7041,-0.1385,0.6965,-0.7041,-0.1385,0.549,-0.8286,-0.1092,0.5598,-0.8286,0.0,0.6965,-0.7041,-0.1385,0.5598,-0.8286,0.0,0.7101,-0.7041,0.0,0.7101,-0.7041,0.0,0.5598,-0.8286,0.0,0.549,-0.8286,0.1092,0.7101,-0.7041,0.0,0.549,-0.8286,0.1092,0.6965,-0.7041,0.1385,0.6965,-0.7041,0.1385,0.549,-0.8286,0.1092,0.5172,-0.8286,0.2142,0.6965,-0.7041,0.1385,0.5172,-0.8286,0.2142,0.6561,-0.7041,0.2718,0.6561,-0.7041,0.2718,0.5172,-0.8286,0.2142,0.4654,-0.8286,0.311,0.6561,-0.7041,0.2718,0.4654,-0.8286,0.311,0.5905,-0.7041,0.3945,0.5905,-0.7041,0.3945,0.4654,-0.8286,0.311,0.3958,-0.8286,0.3958,0.5905,-0.7041,0.3945,0.3958,-0.8286,0.3958,0.5021,-0.7041,0.5021,0.5021,-0.7041,0.5021,0.3958,-0.8286,0.3958,0.311,-0.8286,0.4654,0.5021,-0.7041,0.5021,0.311,-0.8286,0.4654,0.3945,-0.7041,0.5905,0.3945,-0.7041,0.5905,0.311,-0.8286,0.4654,0.2142,-0.8286,0.5172,0.3945,-0.7041,0.5905,0.2142,-0.8286,0.5172,0.2718,-0.7041,0.6561,0.2718,-0.7041,0.6561,0.2142,-0.8286,0.5172,0.1092,-0.8286,0.549,0.2718,-0.7041,0.6561,0.1092,-0.8286,0.549,0.1385,-0.7041,0.6965,0.1385,-0.7041,0.6965,0.1092,-0.8286,0.549,0.0,-0.8286,0.5598,0.1385,-0.7041,0.6965,0.0,-0.8286,0.5598,0.0,-0.7041,0.7101,0.0,-0.8286,0.5598,0.0,-0.9217,0.3879,-0.0757,-0.9217,0.3804,0.0,-0.8286,0.5598,-0.0757,-0.9217,0.3804,-0.1092,-0.8286,0.549,-0.1092,-0.8286,0.549,-0.0757,-0.9217,0.3804,-0.1484,-0.9217,0.3584,-0.1092,-0.8286,0.549,-0.1484,-0.9217,0.3584,-0.2142,-0.8286,0.5172,-0.2142,-0.8286,0.5172,-0.1484,-0.9217,0.3584,-0.2155,-0.9217,0.3225,-0.2142,-0.8286,0.5172,-0.2155,-0.9217,0.3225,-0.311,-0.8286,0.4654,-0.311,-0.8286,0.4654,-0.2155,-0.9217,0.3225,-0.2743,-0.9217,0.2743,-0.311,-0.8286,0.4654,-0.2743,-0.9217,0.2743,-0.3958,-0.8286,0.3958,-0.3958,-0.8286,0.3958,-0.2743,-0.9217,0.2743,-0.3225,-0.9217,0.2155,-0.3958,-0.8286,0.3958,-0.3225,-0.9217,0.2155,-0.4654,-0.8286,0.311,-0.4654,-0.8286,0.311,-0.3225,-0.9217,0.2155,-0.3584,-0.9217,0.1484,-0.4654,-0.8286,0.311,-0.3584,-0.9217,0.1484,-0.5172,-0.8286,0.2142,-0.5172,-0.8286,0.2142,-0.3584,-0.9217,0.1484,-0.3804,-0.9217,0.0757,-0.5172,-0.8286,0.2142,-0.3804,-0.9217,0.0757,-0.549,-0.8286,0.1092,-0.549,-0.8286,0.1092,-0.3804,-0.9217,0.0757,-0.3879,-0.9217,0.0,-0.549,-0.8286,0.1092,-0.3879,-0.9217,0.0,-0.5598,-0.8286,0.0,-0.5598,-0.8286,0.0,-0.3879,-0.9217,0.0,-0.3804,-0.9217,-0.0757,-0.5598,-0.8286,0.0,-0.3804,-0.9217,-0.0757,-0.549,-0.8286,-0.1092,-0.549,-0.8286,-0.1092,-0.3804,-0.9217,-0.0757,-0.3584,-0.9217,-0.1484,-0.549,-0.8286,-0.1092,-0.3584,-0.9217,-0.1484,-0.5172,-0.8286,-0.2142,-0.5172,-0.8286,-0.2142,-0.3584,-0.9217,-0.1484,-0.3225,-0.9217,-0.2155,-0.5172,-0.8286,-0.2142,-0.3225,-0.9217,-0.2155,-0.4654,-0.8286,-0.311,-0.4654,-0.8286,-0.311,-0.3225,-0.9217,-0.2155,-0.2743,-0.9217,-0.2743,-0.4654,-0.8286,-0.311,-0.2743,-0.9217,-0.2743,-0.3958,-0.8286,-0.3958,-0.3958,-0.8286,-0.3958,-0.2743,-0.9217,-0.2743,-0.2155,-0.9217,-0.3225,-0.3958,-0.8286,-0.3958,-0.2155,-0.9217,-0.3225,-0.311,-0.8286,-0.4654,-0.311,-0.8286,-0.4654,-0.2155,-0.9217,-0.3225,-0.1484,-0.9217,-0.3584,-0.311,-0.8286,-0.4654,-0.1484,-0.9217,-0.3584,-0.2142,-0.8286,-0.5172,-0.2142,-0.8286,-0.5172,-0.1484,-0.9217,-0.3584,-0.0757,-0.9217,-0.3804,-0.2142,-0.8286,-0.5172,-0.0757,-0.9217,-0.3804,-0.1092,-0.8286,-0.549,-0.1092,-0.8286,-0.549,-0.0757,-0.9217,-0.3804,0.0,-0.9217,-0.3879,-0.1092,-0.8286,-0.549,0.0,-0.9217,-0.3879,0.0,-0.8286,-0.5598,0.0,-0.8286,-0.5598,0.0,-0.9217,-0.3879,0.0757,-0.9217,-0.3804,0.0,-0.8286,-0.5598,0.0757,-0.9217,-0.3804,0.1092,-0.8286,-0.549,0.1092,-0.8286,-0.549,0.0757,-0.9217,-0.3804,0.1484,-0.9217,-0.3584,0.1092,-0.8286,-0.549,0.1484,-0.9217,-0.3584,0.2142,-0.8286,-0.5172,0.2142,-0.8286,-0.5172,0.1484,-0.9217,-0.3584,0.2155,-0.9217,-0.3225,0.2142,-0.8286,-0.5172,0.2155,-0.9217,-0.3225,0.311,-0.8286,-0.4654,0.311,-0.8286,-0.4654,0.2155,-0.9217,-0.3225,0.2743,-0.9217,-0.2743,0.311,-0.8286,-0.4654,0.2743,-0.9217,-0.2743,0.3958,-0.8286,-0.3958,0.3958,-0.8286,-0.3958,0.2743,-0.9217,-0.2743,0.3225,-0.9217,-0.2155,0.3958,-0.8286,-0.3958,0.3225,-0.9217,-0.2155,0.4654,-0.8286,-0.311,0.4654,-0.8286,-0.311,0.3225,-0.9217,-0.2155,0.3584,-0.9217,-0.1484,0.4654,-0.8286,-0.311,0.3584,-0.9217,-0.1484,0.5172,-0.8286,-0.2142,0.5172,-0.8286,-0.2142,0.3584,-0.9217,-0.1484,0.3804,-0.9217,-0.0757,0.5172,-0.8286,-0.2142,0.3804,-0.9217,-0.0757,0.549,-0.8286,-0.1092,0.549,-0.8286,-0.1092,0.3804,-0.9217,-0.0757,0.3879,-0.9217,0.0,0.549,-0.8286,-0.1092,0.3879,-0.9217,0.0,0.5598,-0.8286,0.0,0.5598,-0.8286,0.0,0.3879,-0.9217,0.0,0.3804,-0.9217,0.0757,0.5598,-0.8286,0.0,0.3804,-0.9217,0.0757,0.549,-0.8286,0.1092,0.549,-0.8286,0.1092,0.3804,-0.9217,0.0757,0.3584,-0.9217,0.1484,0.549,-0.8286,0.1092,0.3584,-0.9217,0.1484,0.5172,-0.8286,0.2142,0.5172,-0.8286,0.2142,0.3584,-0.9217,0.1484,0.3225,-0.9217,0.2155,0.5172,-0.8286,0.2142,0.3225,-0.9217,0.2155,0.4654,-0.8286,0.311,0.4654,-0.8286,0.311,0.3225,-0.9217,0.2155,0.2743,-0.9217,0.2743,0.4654,-0.8286,0.311,0.2743,-0.9217,0.2743,0.3958,-0.8286,0.3958,0.3958,-0.8286,0.3958,0.2743,-0.9217,0.2743,0.2155,-0.9217,0.3225,0.3958,-0.8286,0.3958,0.2155,-0.9217,0.3225,0.311,-0.8286,0.4654,0.311,-0.8286,0.4654,0.2155,-0.9217,0.3225,0.1484,-0.9217,0.3584,0.311,-0.8286,0.4654,0.1484,-0.9217,0.3584,0.2142,-0.8286,0.5172,0.2142,-0.8286,0.5172,0.1484,-0.9217,0.3584,0.0757,-0.9217,0.3804,0.2142,-0.8286,0.5172,0.0757,-0.9217,0.3804,0.1092,-0.8286,0.549,0.1092,-0.8286,0.549,0.0757,-0.9217,0.3804,0.0,-0.9217,0.3879,0.1092,-0.8286,0.549,0.0,-0.9217,0.3879,0.0,-0.8286,0.5598,0.0,-0.9217,0.3879,0.0,-0.9796,0.201,-0.0392,-0.9796,0.1971,0.0,-0.9217,0.3879,-0.0392,-0.9796,0.1971,-0.0757,-0.9217,0.3804,-0.0757,-0.9217,0.3804,-0.0392,-0.9796,0.1971,-0.0769,-0.9796,0.1857,-0.0757,-0.9217,0.3804,-0.0769,-0.9796,0.1857,-0.1484,-0.9217,0.3584,-0.1484,-0.9217,0.3584,-0.0769,-0.9796,0.1857,-0.1117,-0.9796,0.1671,-0.1484,-0.9217,0.3584,-0.1117,-0.9796,0.1671,-0.2155,-0.9217,0.3225,-0.2155,-0.9217,0.3225,-0.1117,-0.9796,0.1671,-0.1421,-0.9796,0.1421,-0.2155,-0.9217,0.3225,-0.1421,-0.9796,0.1421,-0.2743,-0.9217,0.2743,-0.2743,-0.9217,0.2743,-0.1421,-0.9796,0.1421,-0.1671,-0.9796,0.1117,-0.2743,-0.9217,0.2743,-0.1671,-0.9796,0.1117,-0.3225,-0.9217,0.2155,-0.3225,-0.9217,0.2155,-0.1671,-0.9796,0.1117,-0.1857,-0.9796,0.0769,-0.3225,-0.9217,0.2155,-0.1857,-0.9796,0.0769,-0.3584,-0.9217,0.1484,-0.3584,-0.9217,0.1484,-0.1857,-0.9796,0.0769,-0.1971,-0.9796,0.0392,-0.3584,-0.9217,0.1484,-0.1971,-0.9796,0.0392,-0.3804,-0.9217,0.0757,-0.3804,-0.9217,0.0757,-0.1971,-0.9796,0.0392,-0.201,-0.9796,0.0,-0.3804,-0.9217,0.0757,-0.201,-0.9796,0.0,-0.3879,-0.9217,0.0,-0.3879,-0.9217,0.0,-0.201,-0.9796,0.0,-0.1971,-0.9796,-0.0392,-0.3879,-0.9217,0.0,-0.1971,-0.9796,-0.0392,-0.3804,-0.9217,-0.0757,-0.3804,-0.9217,-0.0757,-0.1971,-0.9796,-0.0392,-0.1857,-0.9796,-0.0769,-0.3804,-0.9217,-0.0757,-0.1857,-0.9796,-0.0769,-0.3584,-0.9217,-0.1484,-0.3584,-0.9217,-0.1484,-0.1857,-0.9796,-0.0769,-0.1671,-0.9796,-0.1117,-0.3584,-0.9217,-0.1484,-0.1671,-0.9796,-0.1117,-0.3225,-0.9217,-0.2155,-0.3225,-0.9217,-0.2155,-0.1671,-0.9796,-0.1117,-0.1421,-0.9796,-0.1421,-0.3225,-0.9217,-0.2155,-0.1421,-0.9796,-0.1421,-0.2743,-0.9217,-0.2743,-0.2743,-0.9217,-0.2743,-0.1421,-0.9796,-0.1421,-0.1117,-0.9796,-0.1671,-0.2743,-0.9217,-0.2743,-0.1117,-0.9796,-0.1671,-0.2155,-0.9217,-0.3225,-0.2155,-0.9217,-0.3225,-0.1117,-0.9796,-0.1671,-0.0769,-0.9796,-0.1857,-0.2155,-0.9217,-0.3225,-0.0769,-0.9796,-0.1857,-0.1484,-0.9217,-0.3584,-0.1484,-0.9217,-0.3584,-0.0769,-0.9796,-0.1857,-0.0392,-0.9796,-0.1971,-0.1484,-0.9217,-0.3584,-0.0392,-0.9796,-0.1971,-0.0757,-0.9217,-0.3804,-0.0757,-0.9217,-0.3804,-0.0392,-0.9796,-0.1971,0.0,-0.9796,-0.201,-0.0757,-0.9217,-0.3804,0.0,-0.9796,-0.201,0.0,-0.9217,-0.3879,0.0,-0.9217,-0.3879,0.0,-0.9796,-0.201,0.0392,-0.9796,-0.1971,0.0,-0.9217,-0.3879,0.0392,-0.9796,-0.1971,0.0757,-0.9217,-0.3804,0.0757,-0.9217,-0.3804,0.0392,-0.9796,-0.1971,0.0769,-0.9796,-0.1857,0.0757,-0.9217,-0.3804,0.0769,-0.9796,-0.1857,0.1484,-0.9217,-0.3584,0.1484,-0.9217,-0.3584,0.0769,-0.9796,-0.1857,0.1117,-0.9796,-0.1671,0.1484,-0.9217,-0.3584,0.1117,-0.9796,-0.1671,0.2155,-0.9217,-0.3225,0.2155,-0.9217,-0.3225,0.1117,-0.9796,-0.1671,0.1421,-0.9796,-0.1421,0.2155,-0.9217,-0.3225,0.1421,-0.9796,-0.1421,0.2743,-0.9217,-0.2743,0.2743,-0.9217,-0.2743,0.1421,-0.9796,-0.1421,0.1671,-0.9796,-0.1117,0.2743,-0.9217,-0.2743,0.1671,-0.9796,-0.1117,0.3225,-0.9217,-0.2155,0.3225,-0.9217,-0.2155,0.1671,-0.9796,-0.1117,0.1857,-0.9796,-0.0769,0.3225,-0.9217,-0.2155,0.1857,-0.9796,-0.0769,0.3584,-0.9217,-0.1484,0.3584,-0.9217,-0.1484,0.1857,-0.9796,-0.0769,0.1971,-0.9796,-0.0392,0.3584,-0.9217,-0.1484,0.1971,-0.9796,-0.0392,0.3804,-0.9217,-0.0757,0.3804,-0.9217,-0.0757,0.1971,-0.9796,-0.0392,0.201,-0.9796,0.0,0.3804,-0.9217,-0.0757,0.201,-0.9796,0.0,0.3879,-0.9217,0.0,0.3879,-0.9217,0.0,0.201,-0.9796,0.0,0.1971,-0.9796,0.0392,0.3879,-0.9217,0.0,0.1971,-0.9796,0.0392,0.3804,-0.9217,0.0757,0.3804,-0.9217,0.0757,0.1971,-0.9796,0.0392,0.1857,-0.9796,0.0769,0.3804,-0.9217,0.0757,0.1857,-0.9796,0.0769,0.3584,-0.9217,0.1484,0.3584,-0.9217,0.1484,0.1857,-0.9796,0.0769,0.1671,-0.9796,0.1117,0.3584,-0.9217,0.1484,0.1671,-0.9796,0.1117,0.3225,-0.9217,0.2155,0.3225,-0.9217,0.2155,0.1671,-0.9796,0.1117,0.1421,-0.9796,0.1421,0.3225,-0.9217,0.2155,0.1421,-0.9796,0.1421,0.2743,-0.9217,0.2743,0.2743,-0.9217,0.2743,0.1421,-0.9796,0.1421,0.1117,-0.9796,0.1671,0.2743,-0.9217,0.2743,0.1117,-0.9796,0.1671,0.2155,-0.9217,0.3225,0.2155,-0.9217,0.3225,0.1117,-0.9796,0.1671,0.0769,-0.9796,0.1857,0.2155,-0.9217,0.3225,0.0769,-0.9796,0.1857,0.1484,-0.9217,0.3584,0.1484,-0.9217,0.3584,0.0769,-0.9796,0.1857,0.0392,-0.9796,0.1971,0.1484,-0.9217,0.3584,0.0392,-0.9796,0.1971,0.0757,-0.9217,0.3804,0.0757,-0.9217,0.3804,0.0392,-0.9796,0.1971,0.0,-0.9796,0.201,0.0757,-0.9217,0.3804,0.0,-0.9796,0.201,0.0,-0.9217,0.3879,0.0,-1.0,0.0,-0.0392,-0.9796,0.1971,0.0,-0.9796,0.201,0.0,-1.0,0.0,-0.0769,-0.9796,0.1857,-0.0392,-0.9796,0.1971,0.0,-1.0,0.0,-0.1117,-0.9796,0.1671,-0.0769,-0.9796,0.1857,0.0,-1.0,0.0,-0.1421,-0.9796,0.1421,-0.1117,-0.9796,0.1671,0.0,-1.0,0.0,-0.1671,-0.9796,0.1117,-0.1421,-0.9796,0.1421,0.0,-1.0,0.0,-0.1857,-0.9796,0.0769,-0.1671,-0.9796,0.1117,0.0,-1.0,0.0,-0.1971,-0.9796,0.0392,-0.1857,-0.9796,0.0769,0.0,-1.0,0.0,-0.201,-0.9796,0.0,-0.1971,-0.9796,0.0392,0.0,-1.0,0.0,-0.1971,-0.9796,-0.0392,-0.201,-0.9796,0.0,0.0,-1.0,0.0,-0.1857,-0.9796,-0.0769,-0.1971,-0.9796,-0.0392,0.0,-1.0,0.0,-0.1671,-0.9796,-0.1117,-0.1857,-0.9796,-0.0769,0.0,-1.0,0.0,-0.1421,-0.9796,-0.1421,-0.1671,-0.9796,-0.1117,0.0,-1.0,0.0,-0.1117,-0.9796,-0.1671,-0.1421,-0.9796,-0.1421,0.0,-1.0,0.0,-0.0769,-0.9796,-0.1857,-0.1117,-0.9796,-0.1671,0.0,-1.0,0.0,-0.0392,-0.9796,-0.1971,-0.0769,-0.9796,-0.1857,0.0,-1.0,0.0,0.0,-0.9796,-0.201,-0.0392,-0.9796,-0.1971,0.0,-1.0,0.0,0.0392,-0.9796,-0.1971,0.0,-0.9796,-0.201,0.0,-1.0,0.0,0.0769,-0.9796,-0.1857,0.0392,-0.9796,-0.1971,0.0,-1.0,0.0,0.1117,-0.9796,-0.1671,0.0769,-0.9796,-0.1857,0.0,-1.0,0.0,0.1421,-0.9796,-0.1421,0.1117,-0.9796,-0.1671,0.0,-1.0,0.0,0.1671,-0.9796,-0.1117,0.1421,-0.9796,-0.1421,0.0,-1.0,0.0,0.1857,-0.9796,-0.0769,0.1671,-0.9796,-0.1117,0.0,-1.0,0.0,0.1971,-0.9796,-0.0392,0.1857,-0.9796,-0.0769,0.0,-1.0,0.0,0.201,-0.9796,0.0,0.1971,-0.9796,-0.0392,0.0,-1.0,0.0,0.1971,-0.9796,0.0392,0.201,-0.9796,0.0,0.0,-1.0,0.0,0.1857,-0.9796,0.0769,0.1971,-0.9796,0.0392,0.0,-1.0,0.0,0.1671,-0.9796,0.1117,0.1857,-0.9796,0.0769,0.0,-1.0,0.0,0.1421,-0.9796,0.1421,0.1671,-0.9796,0.1117,0.0,-1.0,0.0,0.1117,-0.9796,0.1671,0.1421,-0.9796,0.1421,0.0,-1.0,0.0,0.0769,-0.9796,0.1857,0.1117,-0.9796,0.1671,0.0,-1.0,0.0,0.0392,-0.9796,0.1971,0.0769,-0.9796,0.1857,0.0,-1.0,0.0,0.0,-0.9796,0.201,0.0392,-0.9796,0.1971],"tangents":null,"uvs":[0.0,2.0,0.0,1.9375,0.0312,1.9375,0.0312,2.0,0.0312,1.9375,0.0625,1.9375,0.0625,2.0,0.0625,1.9375,0.0938,1.9375,0.0938,2.0,0.0938,1.9375,0.125,1.9375,0.125,2.0,0.125,1.9375,0.1562,1.9375,0.1562,2.0,0.1562,1.9375,0.1875,1.9375,0.1875,2.0,0.1875,1.9375,0.2187,1.9375,0.2187,2.0,0.2187,1.9375,0.25,1.9375,0.25,2.0,0.25,1.9375,0.2812,1.9375,0.2812,2.0,0.2812,1.9375,0.3125,1.9375,0.3125,2.0,0.3125,1.9375,0.3437,1.9375,0.3437,2.0,0.3437,1.9375,0.375,1.9375,0.375,2.0,0.375,1.9375,0.4062,1.9375,0.4062,2.0,0.4062,1.9375,0.4375,1.9375,0.4375,2.0,0.4375,1.9375,0.4688,1.9375,0.4688,2.0,0.4688,1.9375,0.5,1.9375,0.5,2.0,0.5,1.9375,0.5313,1.9375,0.5313,2.0,0.5313,1.9375,0.5625,1.9375,0.5625,2.0,0.5625,1.9375,0.5938,1.9375,0.5938,2.0,0.5938,1.9375,0.625,1.9375,0.625,2.0,0.625,1.9375,0.6563,1.9375,0.6563,2.0,0.6563,1.9375,0.6875,1.9375,0.6875,2.0,0.6875,1.9375,0.7188,1.9375,0.7188,2.0,0.7188,1.9375,0.75,1.9375,0.75,2.0,0.75,1.9375,0.7813,1.9375,0.7813,2.0,0.7813,1.9375,0.8125,1.9375,0.8125,2.0,0.8125,1.9375,0.8438,1.9375,0.8438,2.0,0.8438,1.9375,0.875,1.9375,0.875,2.0,0.875,1.9375,0.9063,1.9375,0.9063,2.0,0.9063,1.9375,0.9375,1.9375,0.9375,2.0,0.9375,1.9375,0.9688,1.9375,0.9688,2.0,0.9688,1.9375,1.0,1.9375,0.0,1.9375,0.0,1.875,0.0312,1.875,0.0,1.9375,0.0312,1.875,0.0312,1.9375,0.0312,1.9375,0.0312,1.875,0.0625,1.875,0.0312,1.9375,0.0625,1.875,0.0625,1.9375,0.0625,1.9375,0.0625,1.875,0.0938,1.875,0.0625,1.9375,0.0938,1.875,0.0938,1.9375,0.0938,1.9375,0.0938,1.875,0.125,1.875,0.0938,1.9375,0.125,1.875,0.125,1.9375,0.125,1.9375,0.125,1.875,0.1562,1.875,0.125,1.9375,0.1562,1.875,0.1562,1.9375,0.1562,1.9375,0.1562,1.875,0.1875,1.875,0.1562,1.9375,0.1875,1.875,0.1875,1.9375,0.1875,1.9375,0.1875,1.875,0.2187,1.875,0.1875,1.9375,0.2187,1.875,0.2187,1.9375,0.2187,1.9375,0.2187,1.875,0.25,1.875,0.2187,1.9375,0.25,1.875,0.25,1.9375,0.25,1.9375,0.25,1.875,0.2812,1.875,0.25,1.9375,0.2812,1.875,0.2812,1.9375,0.2812,1.9375,0.2812,1.875,0.3125,1.875,0.2812,1.9375,0.3125,1.875,0.3125,1.9375,0.3125,1.9375,0.3125,1.875,0.3437,1.875,0.3125,1.9375,0.3437,1.875,0.3437,1.9375,0.3437,1.9375,0.3437,1.875,0.375,1.875,0.3437,1.9375,0.375,1.875,0.375,1.9375,0.375,1.9375,0.375,1.875,0.4062,1.875,0.375,1.9375,0.4062,1.875,0.4062,1.9375,0.4062,1.9375,0.4062,1.875,0.4375,1.875,0.4062,1.9375,0.4375,1.875,0.4375,1.9375,0.4375,1.9375,0.4375,1.875,0.4688,1.875,0.4375,1.9375,0.4688,1.875,0.4688,1.9375,0.4688,1.9375,0.4688,1.875,0.5,1.875,0.4688,1.9375,0.5,1.875,0.5,1.9375,0.5,1.9375,0.5,1.875,0.5313,1.875,0.5,1.9375,0.5313,1.875,0.5313,1.9375,0.5313,1.9375,0.5313,1.875,0.5625,1.875,0.5313,1.9375,0.5625,1.875,0.5625,1.9375,0.5625,1.9375,0.5625,1.875,0.5938,1.875,0.5625,1.9375,0.5938,1.875,0.5938,1.9375,0.5938,1.9375,0.5938,1.875,0.625,1.875,0.5938,1.9375,0.625,1.875,0.625,1.9375,0.625,1.9375,0.625,1.875,0.6563,1.875,0.625,1.9375,0.6563,1.875,0.6563,1.9375,0.6563,1.9375,0.6563,1.875,0.6875,1.875,0.6563,1.9375,0.6875,1.875,0.6875,1.9375,0.6875,1.9375,0.6875,1.875,0.7188,1.875,0.6875,1.9375,0.7188,1.875,0.7188,1.9375,0.7188,1.9375,0.7188,1.875,0.75,1.875,0.7188,1.9375,0.75,1.875,0.75,1.9375,0.75,1.9375,0.75,1.875,0.7813,1.875,0.75,1.9375,0.7813,1.875,0.7813,1.9375,0.7813,1.9375,0.7813,1.875,0.8125,1.875,0.7813,1.9375,0.8125,1.875,0.8125,1.9375,0.8125,1.9375,0.8125,1.875,0.8438,1.875,0.8125,1.9375,0.8438,1.875,0.8438,1.9375,0.8438,1.9375,0.8438,1.875,0.875,1.875,0.8438,1.9375,0.875,1.875,0.875,1.9375,0.875,1.9375,0.875,1.875,0.9063,1.875,0.875,1.9375,0.9063,1.875,0.9063,1.9375,0.9063,1.9375,0.9063,1.875,0.9375,1.875,0.9063,1.9375,0.9375,1.875,0.9375,1.9375,0.9375,1.9375,0.9375,1.875,0.9688,1.875,0.9375,1.9375,0.9688,1.875,0.9688,1.9375,0.9688,1.9375,0.9688,1.875,1.0,1.875,0.9688,1.9375,1.0,1.875,1.0,1.9375,0.0,1.875,0.0,1.8125,0.0312,1.8125,0.0,1.875,0.0312,1.8125,0.0312,1.875,0.0312,1.875,0.0312,1.8125,0.0625,1.8125,0.0312,1.875,0.0625,1.8125,0.0625,1.875,0.0625,1.875,0.0625,1.8125,0.0938,1.8125,0.0625,1.875,0.0938,1.8125,0.0938,1.875,0.0938,1.875,0.0938,1.8125,0.125,1.8125,0.0938,1.875,0.125,1.8125,0.125,1.875,0.125,1.875,0.125,1.8125,0.1562,1.8125,0.125,1.875,0.1562,1.8125,0.1562,1.875,0.1562,1.875,0.1562,1.8125,0.1875,1.8125,0.1562,1.875,0.1875,1.8125,0.1875,1.875,0.1875,1.875,0.1875,1.8125,0.2187,1.8125,0.1875,1.875,0.2187,1.8125,0.2187,1.875,0.2187,1.875,0.2187,1.8125,0.25,1.8125,0.2187,1.875,0.25,1.8125,0.25,1.875,0.25,1.875,0.25,1.8125,0.2812,1.8125,0.25,1.875,0.2812,1.8125,0.2812,1.875,0.2812,1.875,0.2812,1.8125,0.3125,1.8125,0.2812,1.875,0.3125,1.8125,0.3125,1.875,0.3125,1.875,0.3125,1.8125,0.3437,1.8125,0.3125,1.875,0.3437,1.8125,0.3437,1.875,0.3437,1.875,0.3437,1.8125,0.375,1.8125,0.3437,1.875,0.375,1.8125,0.375,1.875,0.375,1.875,0.375,1.8125,0.4062,1.8125,0.375,1.875,0.4062,1.8125,0.4062,1.875,0.4062,1.875,0.4062,1.8125,0.4375,1.8125,0.4062,1.875,0.4375,1.8125,0.4375,1.875,0.4375,1.875,0.4375,1.8125,0.4688,1.8125,0.4375,1.875,0.4688,1.8125,0.4688,1.875,0.4688,1.875,0.4688,1.8125,0.5,1.8125,0.4688,1.875,0.5,1.8125,0.5,1.875,0.5,1.875,0.5,1.8125,0.5313,1.8125,0.5,1.875,0.5313,1.8125,0.5313,1.875,0.5313,1.875,0.5313,1.8125,0.5625,1.8125,0.5313,1.875,0.5625,1.8125,0.5625,1.875,0.5625,1.875,0.5625,1.8125,0.5938,1.8125,0.5625,1.875,0.5938,1.8125,0.5938,1.875,0.5938,1.875,0.5938,1.8125,0.625,1.8125,0.5938,1.875,0.625,1.8125,0.625,1.875,0.625,1.875,0.625,1.8125,0.6563,1.8125,0.625,1.875,0.6563,1.8125,0.6563,1.875,0.6563,1.875,0.6563,1.8125,0.6875,1.8125,0.6563,1.875,0.6875,1.8125,0.6875,1.875,0.6875,1.875,0.6875,1.8125,0.7188,1.8125,0.6875,1.875,0.7188,1.8125,0.7188,1.875,0.7188,1.875,0.7188,1.8125,0.75,1.8125,0.7188,1.875,0.75,1.8125,0.75,1.875,0.75,1.875,0.75,1.8125,0.7813,1.8125,0.75,1.875,0.7813,1.8125,0.7813,1.875,0.7813,1.875,0.7813,1.8125,0.8125,1.8125,0.7813,1.875,0.8125,1.8125,0.8125,1.875,0.8125,1.875,0.8125,1.8125,0.8438,1.8125,0.8125,1.875,0.8438,1.8125,0.8438,1.875,0.8438,1.875,0.8438,1.8125,0.875,1.8125,0.8438,1.875,0.875,1.8125,0.875,1.875,0.875,1.875,0.875,1.8125,0.9063,1.8125,0.875,1.875,0.9063,1.8125,0.9063,1.875,0.9063,1.875,0.9063,1.8125,0.9375,1.8125,0.9063,1.875,0.9375,1.8125,0.9375,1.875,0.9375,1.875,0.9375,1.8125,0.9688,1.8125,0.9375,1.875,0.9688,1.8125,0.9688,1.875,0.9688,1.875,0.9688,1.8125,1.0,1.8125,0.9688,1.875,1.0,1.8125,1.0,1.875,0.0,1.8125,0.0,1.75,0.0312,1.75,0.0,1.8125,0.0312,1.75,0.0312,1.8125,0.0312,1.8125,0.0312,1.75,0.0625,1.75,0.0312,1.8125,0.0625,1.75,0.0625,1.8125,0.0625,1.8125,0.0625,1.75,0.0938,1.75,0.0625,1.8125,0.0938,1.75,0.0938,1.8125,0.0938,1.8125,0.0938,1.75,0.125,1.75,0.0938,1.8125,0.125,1.75,0.125,1.8125,0.125,1.8125,0.125,1.75,0.1562,1.75,0.125,1.8125,0.1562,1.75,0.1562,1.8125,0.1562,1.8125,0.1562,1.75,0.1875,1.75,0.1562,1.8125,0.1875,1.75,0.1875,1.8125,0.1875,1.8125,0.1875,1.75,0.2187,1.75,0.1875,1.8125,0.2187,1.75,0.2187,1.8125,0.2187,1.8125,0.2187,1.75,0.25,1.75,0.2187,1.8125,0.25,1.75,0.25,1.8125,0.25,1.8125,0.25,1.75,0.2812,1.75,0.25,1.8125,0.2812,1.75,0.2812,1.8125,0.2812,1.8125,0.2812,1.75,0.3125,1.75,0.2812,1.8125,0.3125,1.75,0.3125,1.8125,0.3125,1.8125,0.3125,1.75,0.3437,1.75,0.3125,1.8125,0.3437,1.75,0.3437,1.8125,0.3437,1.8125,0.3437,1.75,0.375,1.75,0.3437,1.8125,0.375,1.75,0.375,1.8125,0.375,1.8125,0.375,1.75,0.4062,1.75,0.375,1.8125,0.4062,1.75,0.4062,1.8125,0.4062,1.8125,0.4062,1.75,0.4375,1.75,0.4062,1.8125,0.4375,1.75,0.4375,1.8125,0.4375,1.8125,0.4375,1.75,0.4688,1.75,0.4375,1.8125,0.4688,1.75,0.4688,1.8125,0.4688,1.8125,0.4688,1.75,0.5,1.75,0.4688,1.8125,0.5,1.75,0.5,1.8125,0.5,1.8125,0.5,1.75,0.5313,1.75,0.5,1.8125,0.5313,1.75,0.5313,1.8125,0.5313,1.8125,0.5313,1.75,0.5625,1.75,0.5313,1.8125,0.5625,1.75,0.5625,1.8125,0.5625,1.8125,0.5625,1.75,0.5938,1.75,0.5625,1.8125,0.5938,1.75,0.5938,1.8125,0.5938,1.8125,0.5938,1.75,0.625,1.75,0.5938,1.8125,0.625,1.75,0.625,1.8125,0.625,1.8125,0.625,1.75,0.6563,1.75,0.625,1.8125,0.6563,1.75,0.6563,1.8125,0.6563,1.8125,0.6563,1.75,0.6875,1.75,0.6563,1.8125,0.6875,1.75,0.6875,1.8125,0.6875,1.8125,0.6875,1.75,0.7188,1.75,0.6875,1.8125,0.7188,1.75,0.7188,1.8125,0.7188,1.8125,0.7188,1.75,0.75,1.75,0.7188,1.8125,0.75,1.75,0.75,1.8125,0.75,1.8125,0.75,1.75,0.7813,1.75,0.75,1.8125,0.7813,1.75,0.7813,1.8125,0.7813,1.8125,0.7813,1.75,0.8125,1.75,0.7813,1.8125,0.8125,1.75,0.8125,1.8125,0.8125,1.8125,0.8125,1.75,0.8438,1.75,0.8125,1.8125,0.8438,1.75,0.8438,1.8125,0.8438,1.8125,0.8438,1.75,0.875,1.75,0.8438,1.8125,0.875,1.75,0.875,1.8125,0.875,1.8125,0.875,1.75,0.9063,1.75,0.875,1.8125,0.9063,1.75,0.9063,1.8125,0.9063,1.8125,0.9063,1.75,0.9375,1.75,0.9063,1.8125,0.9375,1.75,0.9375,1.8125,0.9375,1.8125,0.9375,1.75,0.9688,1.75,0.9375,1.8125,0.9688,1.75,0.9688,1.8125,0.9688,1.8125,0.9688,1.75,1.0,1.75,0.9688,1.8125,1.0,1.75,1.0,1.8125,0.0,1.75,0.0,1.6875,0.0312,1.6875,0.0,1.75,0.0312,1.6875,0.0312,1.75,0.0312,1.75,0.0312,1.6875,0.0625,1.6875,0.0312,1.75,0.0625,1.6875,0.0625,1.75,0.0625,1.75,0.0625,1.6875,0.0938,1.6875,0.0625,1.75,0.0938,1.6875,0.0938,1.75,0.0938,1.75,0.0938,1.6875,0.125,1.6875,0.0938,1.75,0.125,1.6875,0.125,1.75,0.125,1.75,0.125,1.6875,0.1562,1.6875,0.125,1.75,0.1562,1.6875,0.1562,1.75,0.1562,1.75,0.1562,1.6875,0.1875,1.6875,0.1562,1.75,0.1875,1.6875,0.1875,1.75,0.1875,1.75,0.1875,1.6875,0.2187,1.6875,0.1875,1.75,0.2187,1.6875,0.2187,1.75,0.2187,1.75,0.2187,1.6875,0.25,1.6875,0.2187,1.75,0.25,1.6875,0.25,1.75,0.25,1.75,0.25,1.6875,0.2812,1.6875,0.25,1.75,0.2812,1.6875,0.2812,1.75,0.2812,1.75,0.2812,1.6875,0.3125,1.6875,0.2812,1.75,0.3125,1.6875,0.3125,1.75,0.3125,1.75,0.3125,1.6875,0.3437,1.6875,0.3125,1.75,0.3437,1.6875,0.3437,1.75,0.3437,1.75,0.3437,1.6875,0.375,1.6875,0.3437,1.75,0.375,1.6875,0.375,1.75,0.375,1.75,0.375,1.6875,0.4062,1.6875,0.375,1.75,0.4062,1.6875,0.4062,1.75,0.4062,1.75,0.4062,1.6875,0.4375,1.6875,0.4062,1.75,0.4375,1.6875,0.4375,1.75,0.4375,1.75,0.4375,1.6875,0.4688,1.6875,0.4375,1.75,0.4688,1.6875,0.4688,1.75,0.4688,1.75,0.4688,1.6875,0.5,1.6875,0.4688,1.75,0.5,1.6875,0.5,1.75,0.5,1.75,0.5,1.6875,0.5313,1.6875,0.5,1.75,0.5313,1.6875,0.5313,1.75,0.5313,1.75,0.5313,1.6875,0.5625,1.6875,0.5313,1.75,0.5625,1.6875,0.5625,1.75,0.5625,1.75,0.5625,1.6875,0.5938,1.6875,0.5625,1.75,0.5938,1.6875,0.5938,1.75,0.5938,1.75,0.5938,1.6875,0.625,1.6875,0.5938,1.75,0.625,1.6875,0.625,1.75,0.625,1.75,0.625,1.6875,0.6563,1.6875,0.625,1.75,0.6563,1.6875,0.6563,1.75,0.6563,1.75,0.6563,1.6875,0.6875,1.6875,0.6563,1.75,0.6875,1.6875,0.6875,1.75,0.6875,1.75,0.6875,1.6875,0.7188,1.6875,0.6875,1.75,0.7188,1.6875,0.7188,1.75,0.7188,1.75,0.7188,1.6875,0.75,1.6875,0.7188,1.75,0.75,1.6875,0.75,1.75,0.75,1.75,0.75,1.6875,0.7813,1.6875,0.75,1.75,0.7813,1.6875,0.7813,1.75,0.7813,1.75,0.7813,1.6875,0.8125,1.6875,0.7813,1.75,0.8125,1.6875,0.8125,1.75,0.8125,1.75,0.8125,1.6875,0.8438,1.6875,0.8125,1.75,0.8438,1.6875,0.8438,1.75,0.8438,1.75,0.8438,1.6875,0.875,1.6875,0.8438,1.75,0.875,1.6875,0.875,1.75,0.875,1.75,0.875,1.6875,0.9063,1.6875,0.875,1.75,0.9063,1.6875,0.9063,1.75,0.9063,1.75,0.9063,1.6875,0.9375,1.6875,0.9063,1.75,0.9375,1.6875,0.9375,1.75,0.9375,1.75,0.9375,1.6875,0.9688,1.6875,0.9375,1.75,0.9688,1.6875,0.9688,1.75,0.9688,1.75,0.9688,1.6875,1.0,1.6875,0.9688,1.75,1.0,1.6875,1.0,1.75,0.0,1.6875,0.0,1.625,0.0312,1.625,0.0,1.6875,0.0312,1.625,0.0312,1.6875,0.0312,1.6875,0.0312,1.625,0.0625,1.625,0.0312,1.6875,0.0625,1.625,0.0625,1.6875,0.0625,1.6875,0.0625,1.625,0.0938,1.625,0.0625,1.6875,0.0938,1.625,0.0938,1.6875,0.0938,1.6875,0.0938,1.625,0.125,1.625,0.0938,1.6875,0.125,1.625,0.125,1.6875,0.125,1.6875,0.125,1.625,0.1562,1.625,0.125,1.6875,0.1562,1.625,0.1562,1.6875,0.1562,1.6875,0.1562,1.625,0.1875,1.625,0.1562,1.6875,0.1875,1.625,0.1875,1.6875,0.1875,1.6875,0.1875,1.625,0.2187,1.625,0.1875,1.6875,0.2187,1.625,0.2187,1.6875,0.2187,1.6875,0.2187,1.625,0.25,1.625,0.2187,1.6875,0.25,1.625,0.25,1.6875,0.25,1.6875,0.25,1.625,0.2812,1.625,0.25,1.6875,0.2812,1.625,0.2812,1.6875,0.2812,1.6875,0.2812,1.625,0.3125,1.625,0.2812,1.6875,0.3125,1.625,0.3125,1.6875,0.3125,1.6875,0.3125,1.625,0.3437,1.625,0.3125,1.6875,0.3437,1.625,0.3437,1.6875,0.3437,1.6875,0.3437,1.625,0.375,1.625,0.3437,1.6875,0.375,1.625,0.375,1.6875,0.375,1.6875,0.375,1.625,0.4062,1.625,0.375,1.6875,0.4062,1.625,0.4062,1.6875,0.4062,1.6875,0.4062,1.625,0.4375,1.625,0.4062,1.6875,0.4375,1.625,0.4375,1.6875,0.4375,1.6875,0.4375,1.625,0.4688,1.625,0.4375,1.6875,0.4688,1.625,0.4688,1.6875,0.4688,1.6875,0.4688,1.625,0.5,1.625,0.4688,1.6875,0.5,1.625,0.5,1.6875,0.5,1.6875,0.5,1.625,0.5313,1.625,0.5,1.6875,0.5313,1.625,0.5313,1.6875,0.5313,1.6875,0.5313,1.625,0.5625,1.625,0.5313,1.6875,0.5625,1.625,0.5625,1.6875,0.5625,1.6875,0.5625,1.625,0.5938,1.625,0.5625,1.6875,0.5938,1.625,0.5938,1.6875,0.5938,1.6875,0.5938,1.625,0.625,1.625,0.5938,1.6875,0.625,1.625,0.625,1.6875,0.625,1.6875,0.625,1.625,0.6563,1.625,0.625,1.6875,0.6563,1.625,0.6563,1.6875,0.6563,1.6875,0.6563,1.625,0.6875,1.625,0.6563,1.6875,0.6875,1.625,0.6875,1.6875,0.6875,1.6875,0.6875,1.625,0.7188,1.625,0.6875,1.6875,0.7188,1.625,0.7188,1.6875,0.7188,1.6875,0.7188,1.625,0.75,1.625,0.7188,1.6875,0.75,1.625,0.75,1.6875,0.75,1.6875,0.75,1.625,0.7813,1.625,0.75,1.6875,0.7813,1.625,0.7813,1.6875,0.7813,1.6875,0.7813,1.625,0.8125,1.625,0.7813,1.6875,0.8125,1.625,0.8125,1.6875,0.8125,1.6875,0.8125,1.625,0.8438,1.625,0.8125,1.6875,0.8438,1.625,0.8438,1.6875,0.8438,1.6875,0.8438,1.625,0.875,1.625,0.8438,1.6875,0.875,1.625,0.875,1.6875,0.875,1.6875,0.875,1.625,0.9063,1.625,0.875,1.6875,0.9063,1.625,0.9063,1.6875,0.9063,1.6875,0.9063,1.625,0.9375,1.625,0.9063,1.6875,0.9375,1.625,0.9375,1.6875,0.9375,1.6875,0.9375,1.625,0.9688,1.625,0.9375,1.6875,0.9688,1.625,0.9688,1.6875,0.9688,1.6875,0.9688,1.625,1.0,1.625,0.9688,1.6875,1.0,1.625,1.0,1.6875,0.0,1.625,0.0,1.5625,0.0312,1.5625,0.0,1.625,0.0312,1.5625,0.0312,1.625,0.0312,1.625,0.0312,1.5625,0.0625,1.5625,0.0312,1.625,0.0625,1.5625,0.0625,1.625,0.0625,1.625,0.0625,1.5625,0.0938,1.5625,0.0625,1.625,0.0938,1.5625,0.0938,1.625,0.0938,1.625,0.0938,1.5625,0.125,1.5625,0.0938,1.625,0.125,1.5625,0.125,1.625,0.125,1.625,0.125,1.5625,0.1562,1.5625,0.125,1.625,0.1562,1.5625,0.1562,1.625,0.1562,1.625,0.1562,1.5625,0.1875,1.5625,0.1562,1.625,0.1875,1.5625,0.1875,1.625,0.1875,1.625,0.1875,1.5625,0.2187,1.5625,0.1875,1.625,0.2187,1.5625,0.2187,1.625,0.2187,1.625,0.2187,1.5625,0.25,1.5625,0.2187,1.625,0.25,1.5625,0.25,1.625,0.25,1.625,0.25,1.5625,0.2812,1.5625,0.25,1.625,0.2812,1.5625,0.2812,1.625,0.2812,1.625,0.2812,1.5625,0.3125,1.5625,0.2812,1.625,0.3125,1.5625,0.3125,1.625,0.3125,1.625,0.3125,1.5625,0.3437,1.5625,0.3125,1.625,0.3437,1.5625,0.3437,1.625,0.3437,1.625,0.3437,1.5625,0.375,1.5625,0.3437,1.625,0.375,1.5625,0.375,1.625,0.375,1.625,0.375,1.5625,0.4062,1.5625,0.375,1.625,0.4062,1.5625,0.4062,1.625,0.4062,1.625,0.4062,1.5625,0.4375,1.5625,0.4062,1.625,0.4375,1.5625,0.4375,1.625,0.4375,1.625,0.4375,1.5625,0.4688,1.5625,0.4375,1.625,0.4688,1.5625,0.4688,1.625,0.4688,1.625,0.4688,1.5625,0.5,1.5625,0.4688,1.625,0.5,1.5625,0.5,1.625,0.5,1.625,0.5,1.5625,0.5313,1.5625,0.5,1.625,0.5313,1.5625,0.5313,1.625,0.5313,1.625,0.5313,1.5625,0.5625,1.5625,0.5313,1.625,0.5625,1.5625,0.5625,1.625,0.5625,1.625,0.5625,1.5625,0.5938,1.5625,0.5625,1.625,0.5938,1.5625,0.5938,1.625,0.5938,1.625,0.5938,1.5625,0.625,1.5625,0.5938,1.625,0.625,1.5625,0.625,1.625,0.625,1.625,0.625,1.5625,0.6563,1.5625,0.625,1.625,0.6563,1.5625,0.6563,1.625,0.6563,1.625,0.6563,1.5625,0.6875,1.5625,0.6563,1.625,0.6875,1.5625,0.6875,1.625,0.6875,1.625,0.6875,1.5625,0.7188,1.5625,0.6875,1.625,0.7188,1.5625,0.7188,1.625,0.7188,1.625,0.7188,1.5625,0.75,1.5625,0.7188,1.625,0.75,1.5625,0.75,1.625,0.75,1.625,0.75,1.5625,0.7813,1.5625,0.75,1.625,0.7813,1.5625,0.7813,1.625,0.7813,1.625,0.7813,1.5625,0.8125,1.5625,0.7813,1.625,0.8125,1.5625,0.8125,1.625,0.8125,1.625,0.8125,1.5625,0.8438,1.5625,0.8125,1.625,0.8438,1.5625,0.8438,1.625,0.8438,1.625,0.8438,1.5625,0.875,1.5625,0.8438,1.625,0.875,1.5625,0.875,1.625,0.875,1.625,0.875,1.5625,0.9063,1.5625,0.875,1.625,0.9063,1.5625,0.9063,1.625,0.9063,1.625,0.9063,1.5625,0.9375,1.5625,0.9063,1.625,0.9375,1.5625,0.9375,1.625,0.9375,1.625,0.9375,1.5625,0.9688,1.5625,0.9375,1.625,0.9688,1.5625,0.9688,1.625,0.9688,1.625,0.9688,1.5625,1.0,1.5625,0.9688,1.625,1.0,1.5625,1.0,1.625,0.0,1.5625,0.0,1.5,0.0312,1.5,0.0,1.5625,0.0312,1.5,0.0312,1.5625,0.0312,1.5625,0.0312,1.5,0.0625,1.5,0.0312,1.5625,0.0625,1.5,0.0625,1.5625,0.0625,1.5625,0.0625,1.5,0.0938,1.5,0.0625,1.5625,0.0938,1.5,0.0938,1.5625,0.0938,1.5625,0.0938,1.5,0.125,1.5,0.0938,1.5625,0.125,1.5,0.125,1.5625,0.125,1.5625,0.125,1.5,0.1562,1.5,0.125,1.5625,0.1562,1.5,0.1562,1.5625,0.1562,1.5625,0.1562,1.5,0.1875,1.5,0.1562,1.5625,0.1875,1.5,0.1875,1.5625,0.1875,1.5625,0.1875,1.5,0.2187,1.5,0.1875,1.5625,0.2187,1.5,0.2187,1.5625,0.2187,1.5625,0.2187,1.5,0.25,1.5,0.2187,1.5625,0.25,1.5,0.25,1.5625,0.25,1.5625,0.25,1.5,0.2812,1.5,0.25,1.5625,0.2812,1.5,0.2812,1.5625,0.2812,1.5625,0.2812,1.5,0.3125,1.5,0.2812,1.5625,0.3125,1.5,0.3125,1.5625,0.3125,1.5625,0.3125,1.5,0.3437,1.5,0.3125,1.5625,0.3437,1.5,0.3437,1.5625,0.3437,1.5625,0.3437,1.5,0.375,1.5,0.3437,1.5625,0.375,1.5,0.375,1.5625,0.375,1.5625,0.375,1.5,0.4062,1.5,0.375,1.5625,0.4062,1.5,0.4062,1.5625,0.4062,1.5625,0.4062,1.5,0.4375,1.5,0.4062,1.5625,0.4375,1.5,0.4375,1.5625,0.4375,1.5625,0.4375,1.5,0.4688,1.5,0.4375,1.5625,0.4688,1.5,0.4688,1.5625,0.4688,1.5625,0.4688,1.5,0.5,1.5,0.4688,1.5625,0.5,1.5,0.5,1.5625,0.5,1.5625,0.5,1.5,0.5313,1.5,0.5,1.5625,0.5313,1.5,0.5313,1.5625,0.5313,1.5625,0.5313,1.5,0.5625,1.5,0.5313,1.5625,0.5625,1.5,0.5625,1.5625,0.5625,1.5625,0.5625,1.5,0.5938,1.5,0.5625,1.5625,0.5938,1.5,0.5938,1.5625,0.5938,1.5625,0.5938,1.5,0.625,1.5,0.5938,1.5625,0.625,1.5,0.625,1.5625,0.625,1.5625,0.625,1.5,0.6563,1.5,0.625,1.5625,0.6563,1.5,0.6563,1.5625,0.6563,1.5625,0.6563,1.5,0.6875,1.5,0.6563,1.5625,0.6875,1.5,0.6875,1.5625,0.6875,1.5625,0.6875,1.5,0.7188,1.5,0.6875,1.5625,0.7188,1.5,0.7188,1.5625,0.7188,1.5625,0.7188,1.5,0.75,1.5,0.7188,1.5625,0.75,1.5,0.75,1.5625,0.75,1.5625,0.75,1.5,0.7813,1.5,0.75,1.5625,0.7813,1.5,0.7813,1.5625,0.7813,1.5625,0.7813,1.5,0.8125,1.5,0.7813,1.5625,0.8125,1.5,0.8125,1.5625,0.8125,1.5625,0.8125,1.5,0.8438,1.5,0.8125,1.5625,0.8438,1.5,0.8438,1.5625,0.8438,1.5625,0.8438,1.5,0.875,1.5,0.8438,1.5625,0.875,1.5,0.875,1.5625,0.875,1.5625,0.875,1.5,0.9063,1.5,0.875,1.5625,0.9063,1.5,0.9063,1.5625,0.9063,1.5625,0.9063,1.5,0.9375,1.5,0.9063,1.5625,0.9375,1.5,0.9375,1.5625,0.9375,1.5625,0.9375,1.5,0.9688,1.5,0.9375,1.5625,0.9688,1.5,0.9688,1.5625,0.9688,1.5625,0.9688,1.5,1.0,1.5,0.9688,1.5625,1.0,1.5,1.0,1.5625,0.0,1.5,0.0,1.4375,0.0312,1.4375,0.0,1.5,0.0312,1.4375,0.0312,1.5,0.0312,1.5,0.0312,1.4375,0.0625,1.4375,0.0312,1.5,0.0625,1.4375,0.0625,1.5,0.0625,1.5,0.0625,1.4375,0.0938,1.4375,0.0625,1.5,0.0938,1.4375,0.0938,1.5,0.0938,1.5,0.0938,1.4375,0.125,1.4375,0.0938,1.5,0.125,1.4375,0.125,1.5,0.125,1.5,0.125,1.4375,0.1562,1.4375,0.125,1.5,0.1562,1.4375,0.1562,1.5,0.1562,1.5,0.1562,1.4375,0.1875,1.4375,0.1562,1.5,0.1875,1.4375,0.1875,1.5,0.1875,1.5,0.1875,1.4375,0.2187,1.4375,0.1875,1.5,0.2187,1.4375,0.2187,1.5,0.2187,1.5,0.2187,1.4375,0.25,1.4375,0.2187,1.5,0.25,1.4375,0.25,1.5,0.25,1.5,0.25,1.4375,0.2812,1.4375,0.25,1.5,0.2812,1.4375,0.2812,1.5,0.2812,1.5,0.2812,1.4375,0.3125,1.4375,0.2812,1.5,0.3125,1.4375,0.3125,1.5,0.3125,1.5,0.3125,1.4375,0.3437,1.4375,0.3125,1.5,0.3437,1.4375,0.3437,1.5,0.3437,1.5,0.3437,1.4375,0.375,1.4375,0.3437,1.5,0.375,1.4375,0.375,1.5,0.375,1.5,0.375,1.4375,0.4062,1.4375,0.375,1.5,0.4062,1.4375,0.4062,1.5,0.4062,1.5,0.4062,1.4375,0.4375,1.4375,0.4062,1.5,0.4375,1.4375,0.4375,1.5,0.4375,1.5,0.4375,1.4375,0.4688,1.4375,0.4375,1.5,0.4688,1.4375,0.4688,1.5,0.4688,1.5,0.4688,1.4375,0.5,1.4375,0.4688,1.5,0.5,1.4375,0.5,1.5,0.5,1.5,0.5,1.4375,0.5313,1.4375,0.5,1.5,0.5313,1.4375,0.5313,1.5,0.5313,1.5,0.5313,1.4375,0.5625,1.4375,0.5313,1.5,0.5625,1.4375,0.5625,1.5,0.5625,1.5,0.5625,1.4375,0.5938,1.4375,0.5625,1.5,0.5938,1.4375,0.5938,1.5,0.5938,1.5,0.5938,1.4375,0.625,1.4375,0.5938,1.5,0.625,1.4375,0.625,1.5,0.625,1.5,0.625,1.4375,0.6563,1.4375,0.625,1.5,0.6563,1.4375,0.6563,1.5,0.6563,1.5,0.6563,1.4375,0.6875,1.4375,0.6563,1.5,0.6875,1.4375,0.6875,1.5,0.6875,1.5,0.6875,1.4375,0.7188,1.4375,0.6875,1.5,0.7188,1.4375,0.7188,1.5,0.7188,1.5,0.7188,1.4375,0.75,1.4375,0.7188,1.5,0.75,1.4375,0.75,1.5,0.75,1.5,0.75,1.4375,0.7813,1.4375,0.75,1.5,0.7813,1.4375,0.7813,1.5,0.7813,1.5,0.7813,1.4375,0.8125,1.4375,0.7813,1.5,0.8125,1.4375,0.8125,1.5,0.8125,1.5,0.8125,1.4375,0.8438,1.4375,0.8125,1.5,0.8438,1.4375,0.8438,1.5,0.8438,1.5,0.8438,1.4375,0.875,1.4375,0.8438,1.5,0.875,1.4375,0.875,1.5,0.875,1.5,0.875,1.4375,0.9063,1.4375,0.875,1.5,0.9063,1.4375,0.9063,1.5,0.9063,1.5,0.9063,1.4375,0.9375,1.4375,0.9063,1.5,0.9375,1.4375,0.9375,1.5,0.9375,1.5,0.9375,1.4375,0.9688,1.4375,0.9375,1.5,0.9688,1.4375,0.9688,1.5,0.9688,1.5,0.9688,1.4375,1.0,1.4375,0.9688,1.5,1.0,1.4375,1.0,1.5,0.0,1.4375,0.0,1.375,0.0312,1.375,0.0,1.4375,0.0312,1.375,0.0312,1.4375,0.0312,1.4375,0.0312,1.375,0.0625,1.375,0.0312,1.4375,0.0625,1.375,0.0625,1.4375,0.0625,1.4375,0.0625,1.375,0.0938,1.375,0.0625,1.4375,0.0938,1.375,0.0938,1.4375,0.0938,1.4375,0.0938,1.375,0.125,1.375,0.0938,1.4375,0.125,1.375,0.125,1.4375,0.125,1.4375,0.125,1.375,0.1562,1.375,0.125,1.4375,0.1562,1.375,0.1562,1.4375,0.1562,1.4375,0.1562,1.375,0.1875,1.375,0.1562,1.4375,0.1875,1.375,0.1875,1.4375,0.1875,1.4375,0.1875,1.375,0.2187,1.375,0.1875,1.4375,0.2187,1.375,0.2187,1.4375,0.2187,1.4375,0.2187,1.375,0.25,1.375,0.2187,1.4375,0.25,1.375,0.25,1.4375,0.25,1.4375,0.25,1.375,0.2812,1.375,0.25,1.4375,0.2812,1.375,0.2812,1.4375,0.2812,1.4375,0.2812,1.375,0.3125,1.375,0.2812,1.4375,0.3125,1.375,0.3125,1.4375,0.3125,1.4375,0.3125,1.375,0.3437,1.375,0.3125,1.4375,0.3437,1.375,0.3437,1.4375,0.3437,1.4375,0.3437,1.375,0.375,1.375,0.3437,1.4375,0.375,1.375,0.375,1.4375,0.375,1.4375,0.375,1.375,0.4062,1.375,0.375,1.4375,0.4062,1.375,0.4062,1.4375,0.4062,1.4375,0.4062,1.375,0.4375,1.375,0.4062,1.4375,0.4375,1.375,0.4375,1.4375,0.4375,1.4375,0.4375,1.375,0.4688,1.375,0.4375,1.4375,0.4688,1.375,0.4688,1.4375,0.4688,1.4375,0.4688,1.375,0.5,1.375,0.4688,1.4375,0.5,1.375,0.5,1.4375,0.5,1.4375,0.5,1.375,0.5313,1.375,0.5,1.4375,0.5313,1.375,0.5313,1.4375,0.5313,1.4375,0.5313,1.375,0.5625,1.375,0.5313,1.4375,0.5625,1.375,0.5625,1.4375,0.5625,1.4375,0.5625,1.375,0.5938,1.375,0.5625,1.4375,0.5938,1.375,0.5938,1.4375,0.5938,1.4375,0.5938,1.375,0.625,1.375,0.5938,1.4375,0.625,1.375,0.625,1.4375,0.625,1.4375,0.625,1.375,0.6563,1.375,0.625,1.4375,0.6563,1.375,0.6563,1.4375,0.6563,1.4375,0.6563,1.375,0.6875,1.375,0.6563,1.4375,0.6875,1.375,0.6875,1.4375,0.6875,1.4375,0.6875,1.375,0.7188,1.375,0.6875,1.4375,0.7188,1.375,0.7188,1.4375,0.7188,1.4375,0.7188,1.375,0.75,1.375,0.7188,1.4375,0.75,1.375,0.75,1.4375,0.75,1.4375,0.75,1.375,0.7813,1.375,0.75,1.4375,0.7813,1.375,0.7813,1.4375,0.7813,1.4375,0.7813,1.375,0.8125,1.375,0.7813,1.4375,0.8125,1.375,0.8125,1.4375,0.8125,1.4375,0.8125,1.375,0.8438,1.375,0.8125,1.4375,0.8438,1.375,0.8438,1.4375,0.8438,1.4375,0.8438,1.375,0.875,1.375,0.8438,1.4375,0.875,1.375,0.875,1.4375,0.875,1.4375,0.875,1.375,0.9063,1.375,0.875,1.4375,0.9063,1.375,0.9063,1.4375,0.9063,1.4375,0.9063,1.375,0.9375,1.375,0.9063,1.4375,0.9375,1.375,0.9375,1.4375,0.9375,1.4375,0.9375,1.375,0.9688,1.375,0.9375,1.4375,0.9688,1.375,0.9688,1.4375,0.9688,1.4375,0.9688,1.375,1.0,1.375,0.9688,1.4375,1.0,1.375,1.0,1.4375,0.0,1.375,0.0,1.3125,0.0312,1.3125,0.0,1.375,0.0312,1.3125,0.0312,1.375,0.0312,1.375,0.0312,1.3125,0.0625,1.3125,0.0312,1.375,0.0625,1.3125,0.0625,1.375,0.0625,1.375,0.0625,1.3125,0.0938,1.3125,0.0625,1.375,0.0938,1.3125,0.0938,1.375,0.0938,1.375,0.0938,1.3125,0.125,1.3125,0.0938,1.375,0.125,1.3125,0.125,1.375,0.125,1.375,0.125,1.3125,0.1562,1.3125,0.125,1.375,0.1562,1.3125,0.1562,1.375,0.1562,1.375,0.1562,1.3125,0.1875,1.3125,0.1562,1.375,0.1875,1.3125,0.1875,1.375,0.1875,1.375,0.1875,1.3125,0.2187,1.3125,0.1875,1.375,0.2187,1.3125,0.2187,1.375,0.2187,1.375,0.2187,1.3125,0.25,1.3125,0.2187,1.375,0.25,1.3125,0.25,1.375,0.25,1.375,0.25,1.3125,0.2812,1.3125,0.25,1.375,0.2812,1.3125,0.2812,1.375,0.2812,1.375,0.2812,1.3125,0.3125,1.3125,0.2812,1.375,0.3125,1.3125,0.3125,1.375,0.3125,1.375,0.3125,1.3125,0.3437,1.3125,0.3125,1.375,0.3437,1.3125,0.3437,1.375,0.3437,1.375,0.3437,1.3125,0.375,1.3125,0.3437,1.375,0.375,1.3125,0.375,1.375,0.375,1.375,0.375,1.3125,0.4062,1.3125,0.375,1.375,0.4062,1.3125,0.4062,1.375,0.4062,1.375,0.4062,1.3125,0.4375,1.3125,0.4062,1.375,0.4375,1.3125,0.4375,1.375,0.4375,1.375,0.4375,1.3125,0.4688,1.3125,0.4375,1.375,0.4688,1.3125,0.4688,1.375,0.4688,1.375,0.4688,1.3125,0.5,1.3125,0.4688,1.375,0.5,1.3125,0.5,1.375,0.5,1.375,0.5,1.3125,0.5313,1.3125,0.5,1.375,0.5313,1.3125,0.5313,1.375,0.5313,1.375,0.5313,1.3125,0.5625,1.3125,0.5313,1.375,0.5625,1.3125,0.5625,1.375,0.5625,1.375,0.5625,1.3125,0.5938,1.3125,0.5625,1.375,0.5938,1.3125,0.5938,1.375,0.5938,1.375,0.5938,1.3125,0.625,1.3125,0.5938,1.375,0.625,1.3125,0.625,1.375,0.625,1.375,0.625,1.3125,0.6563,1.3125,0.625,1.375,0.6563,1.3125,0.6563,1.375,0.6563,1.375,0.6563,1.3125,0.6875,1.3125,0.6563,1.375,0.6875,1.3125,0.6875,1.375,0.6875,1.375,0.6875,1.3125,0.7188,1.3125,0.6875,1.375,0.7188,1.3125,0.7188,1.375,0.7188,1.375,0.7188,1.3125,0.75,1.3125,0.7188,1.375,0.75,1.3125,0.75,1.375,0.75,1.375,0.75,1.3125,0.7813,1.3125,0.75,1.375,0.7813,1.3125,0.7813,1.375,0.7813,1.375,0.7813,1.3125,0.8125,1.3125,0.7813,1.375,0.8125,1.3125,0.8125,1.375,0.8125,1.375,0.8125,1.3125,0.8438,1.3125,0.8125,1.375,0.8438,1.3125,0.8438,1.375,0.8438,1.375,0.8438,1.3125,0.875,1.3125,0.8438,1.375,0.875,1.3125,0.875,1.375,0.875,1.375,0.875,1.3125,0.9063,1.3125,0.875,1.375,0.9063,1.3125,0.9063,1.375,0.9063,1.375,0.9063,1.3125,0.9375,1.3125,0.9063,1.375,0.9375,1.3125,0.9375,1.375,0.9375,1.375,0.9375,1.3125,0.9688,1.3125,0.9375,1.375,0.9688,1.3125,0.9688,1.375,0.9688,1.375,0.9688,1.3125,1.0,1.3125,0.9688,1.375,1.0,1.3125,1.0,1.375,0.0,1.3125,0.0,1.25,0.0312,1.25,0.0,1.3125,0.0312,1.25,0.0312,1.3125,0.0312,1.3125,0.0312,1.25,0.0625,1.25,0.0312,1.3125,0.0625,1.25,0.0625,1.3125,0.0625,1.3125,0.0625,1.25,0.0938,1.25,0.0625,1.3125,0.0938,1.25,0.0938,1.3125,0.0938,1.3125,0.0938,1.25,0.125,1.25,0.0938,1.3125,0.125,1.25,0.125,1.3125,0.125,1.3125,0.125,1.25,0.1562,1.25,0.125,1.3125,0.1562,1.25,0.1562,1.3125,0.1562,1.3125,0.1562,1.25,0.1875,1.25,0.1562,1.3125,0.1875,1.25,0.1875,1.3125,0.1875,1.3125,0.1875,1.25,0.2187,1.25,0.1875,1.3125,0.2187,1.25,0.2187,1.3125,0.2187,1.3125,0.2187,1.25,0.25,1.25,0.2187,1.3125,0.25,1.25,0.25,1.3125,0.25,1.3125,0.25,1.25,0.2812,1.25,0.25,1.3125,0.2812,1.25,0.2812,1.3125,0.2812,1.3125,0.2812,1.25,0.3125,1.25,0.2812,1.3125,0.3125,1.25,0.3125,1.3125,0.3125,1.3125,0.3125,1.25,0.3437,1.25,0.3125,1.3125,0.3437,1.25,0.3437,1.3125,0.3437,1.3125,0.3437,1.25,0.375,1.25,0.3437,1.3125,0.375,1.25,0.375,1.3125,0.375,1.3125,0.375,1.25,0.4062,1.25,0.375,1.3125,0.4062,1.25,0.4062,1.3125,0.4062,1.3125,0.4062,1.25,0.4375,1.25,0.4062,1.3125,0.4375,1.25,0.4375,1.3125,0.4375,1.3125,0.4375,1.25,0.4688,1.25,0.4375,1.3125,0.4688,1.25,0.4688,1.3125,0.4688,1.3125,0.4688,1.25,0.5,1.25,0.4688,1.3125,0.5,1.25,0.5,1.3125,0.5,1.3125,0.5,1.25,0.5313,1.25,0.5,1.3125,0.5313,1.25,0.5313,1.3125,0.5313,1.3125,0.5313,1.25,0.5625,1.25,0.5313,1.3125,0.5625,1.25,0.5625,1.3125,0.5625,1.3125,0.5625,1.25,0.5938,1.25,0.5625,1.3125,0.5938,1.25,0.5938,1.3125,0.5938,1.3125,0.5938,1.25,0.625,1.25,0.5938,1.3125,0.625,1.25,0.625,1.3125,0.625,1.3125,0.625,1.25,0.6563,1.25,0.625,1.3125,0.6563,1.25,0.6563,1.3125,0.6563,1.3125,0.6563,1.25,0.6875,1.25,0.6563,1.3125,0.6875,1.25,0.6875,1.3125,0.6875,1.3125,0.6875,1.25,0.7188,1.25,0.6875,1.3125,0.7188,1.25,0.7188,1.3125,0.7188,1.3125,0.7188,1.25,0.75,1.25,0.7188,1.3125,0.75,1.25,0.75,1.3125,0.75,1.3125,0.75,1.25,0.7813,1.25,0.75,1.3125,0.7813,1.25,0.7813,1.3125,0.7813,1.3125,0.7813,1.25,0.8125,1.25,0.7813,1.3125,0.8125,1.25,0.8125,1.3125,0.8125,1.3125,0.8125,1.25,0.8438,1.25,0.8125,1.3125,0.8438,1.25,0.8438,1.3125,0.8438,1.3125,0.8438,1.25,0.875,1.25,0.8438,1.3125,0.875,1.25,0.875,1.3125,0.875,1.3125,0.875,1.25,0.9063,1.25,0.875,1.3125,0.9063,1.25,0.9063,1.3125,0.9063,1.3125,0.9063,1.25,0.9375,1.25,0.9063,1.3125,0.9375,1.25,0.9375,1.3125,0.9375,1.3125,0.9375,1.25,0.9688,1.25,0.9375,1.3125,0.9688,1.25,0.9688,1.3125,0.9688,1.3125,0.9688,1.25,1.0,1.25,0.9688,1.3125,1.0,1.25,1.0,1.3125,0.0,1.25,0.0,1.1875,0.0312,1.1875,0.0,1.25,0.0312,1.1875,0.0312,1.25,0.0312,1.25,0.0312,1.1875,0.0625,1.1875,0.0312,1.25,0.0625,1.1875,0.0625,1.25,0.0625,1.25,0.0625,1.1875,0.0938,1.1875,0.0625,1.25,0.0938,1.1875,0.0938,1.25,0.0938,1.25,0.0938,1.1875,0.125,1.1875,0.0938,1.25,0.125,1.1875,0.125,1.25,0.125,1.25,0.125,1.1875,0.1562,1.1875,0.125,1.25,0.1562,1.1875,0.1562,1.25,0.1562,1.25,0.1562,1.1875,0.1875,1.1875,0.1562,1.25,0.1875,1.1875,0.1875,1.25,0.1875,1.25,0.1875,1.1875,0.2187,1.1875,0.1875,1.25,0.2187,1.1875,0.2187,1.25,0.2187,1.25,0.2187,1.1875,0.25,1.1875,0.2187,1.25,0.25,1.1875,0.25,1.25,0.25,1.25,0.25,1.1875,0.2812,1.1875,0.25,1.25,0.2812,1.1875,0.2812,1.25,0.2812,1.25,0.2812,1.1875,0.3125,1.1875,0.2812,1.25,0.3125,1.1875,0.3125,1.25,0.3125,1.25,0.3125,1.1875,0.3437,1.1875,0.3125,1.25,0.3437,1.1875,0.3437,1.25,0.3437,1.25,0.3437,1.1875,0.375,1.1875,0.3437,1.25,0.375,1.1875,0.375,1.25,0.375,1.25,0.375,1.1875,0.4062,1.1875,0.375,1.25,0.4062,1.1875,0.4062,1.25,0.4062,1.25,0.4062,1.1875,0.4375,1.1875,0.4062,1.25,0.4375,1.1875,0.4375,1.25,0.4375,1.25,0.4375,1.1875,0.4688,1.1875,0.4375,1.25,0.4688,1.1875,0.4688,1.25,0.4688,1.25,0.4688,1.1875,0.5,1.1875,0.4688,1.25,0.5,1.1875,0.5,1.25,0.5,1.25,0.5,1.1875,0.5313,1.1875,0.5,1.25,0.5313,1.1875,0.5313,1.25,0.5313,1.25,0.5313,1.1875,0.5625,1.1875,0.5313,1.25,0.5625,1.1875,0.5625,1.25,0.5625,1.25,0.5625,1.1875,0.5938,1.1875,0.5625,1.25,0.5938,1.1875,0.5938,1.25,0.5938,1.25,0.5938,1.1875,0.625,1.1875,0.5938,1.25,0.625,1.1875,0.625,1.25,0.625,1.25,0.625,1.1875,0.6563,1.1875,0.625,1.25,0.6563,1.1875,0.6563,1.25,0.6563,1.25,0.6563,1.1875,0.6875,1.1875,0.6563,1.25,0.6875,1.1875,0.6875,1.25,0.6875,1.25,0.6875,1.1875,0.7188,1.1875,0.6875,1.25,0.7188,1.1875,0.7188,1.25,0.7188,1.25,0.7188,1.1875,0.75,1.1875,0.7188,1.25,0.75,1.1875,0.75,1.25,0.75,1.25,0.75,1.1875,0.7813,1.1875,0.75,1.25,0.7813,1.1875,0.7813,1.25,0.7813,1.25,0.7813,1.1875,0.8125,1.1875,0.7813,1.25,0.8125,1.1875,0.8125,1.25,0.8125,1.25,0.8125,1.1875,0.8438,1.1875,0.8125,1.25,0.8438,1.1875,0.8438,1.25,0.8438,1.25,0.8438,1.1875,0.875,1.1875,0.8438,1.25,0.875,1.1875,0.875,1.25,0.875,1.25,0.875,1.1875,0.9063,1.1875,0.875,1.25,0.9063,1.1875,0.9063,1.25,0.9063,1.25,0.9063,1.1875,0.9375,1.1875,0.9063,1.25,0.9375,1.1875,0.9375,1.25,0.9375,1.25,0.9375,1.1875,0.9688,1.1875,0.9375,1.25,0.9688,1.1875,0.9688,1.25,0.9688,1.25,0.9688,1.1875,1.0,1.1875,0.9688,1.25,1.0,1.1875,1.0,1.25,0.0,1.1875,0.0,1.125,0.0312,1.125,0.0,1.1875,0.0312,1.125,0.0312,1.1875,0.0312,1.1875,0.0312,1.125,0.0625,1.125,0.0312,1.1875,0.0625,1.125,0.0625,1.1875,0.0625,1.1875,0.0625,1.125,0.0938,1.125,0.0625,1.1875,0.0938,1.125,0.0938,1.1875,0.0938,1.1875,0.0938,1.125,0.125,1.125,0.0938,1.1875,0.125,1.125,0.125,1.1875,0.125,1.1875,0.125,1.125,0.1562,1.125,0.125,1.1875,0.1562,1.125,0.1562,1.1875,0.1562,1.1875,0.1562,1.125,0.1875,1.125,0.1562,1.1875,0.1875,1.125,0.1875,1.1875,0.1875,1.1875,0.1875,1.125,0.2187,1.125,0.1875,1.1875,0.2187,1.125,0.2187,1.1875,0.2187,1.1875,0.2187,1.125,0.25,1.125,0.2187,1.1875,0.25,1.125,0.25,1.1875,0.25,1.1875,0.25,1.125,0.2812,1.125,0.25,1.1875,0.2812,1.125,0.2812,1.1875,0.2812,1.1875,0.2812,1.125,0.3125,1.125,0.2812,1.1875,0.3125,1.125,0.3125,1.1875,0.3125,1.1875,0.3125,1.125,0.3437,1.125,0.3125,1.1875,0.3437,1.125,0.3437,1.1875,0.3437,1.1875,0.3437,1.125,0.375,1.125,0.3437,1.1875,0.375,1.125,0.375,1.1875,0.375,1.1875,0.375,1.125,0.4062,1.125,0.375,1.1875,0.4062,1.125,0.4062,1.1875,0.4062,1.1875,0.4062,1.125,0.4375,1.125,0.4062,1.1875,0.4375,1.125,0.4375,1.1875,0.4375,1.1875,0.4375,1.125,0.4688,1.125,0.4375,1.1875,0.4688,1.125,0.4688,1.1875,0.4688,1.1875,0.4688,1.125,0.5,1.125,0.4688,1.1875,0.5,1.125,0.5,1.1875,0.5,1.1875,0.5,1.125,0.5313,1.125,0.5,1.1875,0.5313,1.125,0.5313,1.1875,0.5313,1.1875,0.5313,1.125,0.5625,1.125,0.5313,1.1875,0.5625,1.125,0.5625,1.1875,0.5625,1.1875,0.5625,1.125,0.5938,1.125,0.5625,1.1875,0.5938,1.125,0.5938,1.1875,0.5938,1.1875,0.5938,1.125,0.625,1.125,0.5938,1.1875,0.625,1.125,0.625,1.1875,0.625,1.1875,0.625,1.125,0.6563,1.125,0.625,1.1875,0.6563,1.125,0.6563,1.1875,0.6563,1.1875,0.6563,1.125,0.6875,1.125,0.6563,1.1875,0.6875,1.125,0.6875,1.1875,0.6875,1.1875,0.6875,1.125,0.7188,1.125,0.6875,1.1875,0.7188,1.125,0.7188,1.1875,0.7188,1.1875,0.7188,1.125,0.75,1.125,0.7188,1.1875,0.75,1.125,0.75,1.1875,0.75,1.1875,0.75,1.125,0.7813,1.125,0.75,1.1875,0.7813,1.125,0.7813,1.1875,0.7813,1.1875,0.7813,1.125,0.8125,1.125,0.7813,1.1875,0.8125,1.125,0.8125,1.1875,0.8125,1.1875,0.8125,1.125,0.8438,1.125,0.8125,1.1875,0.8438,1.125,0.8438,1.1875,0.8438,1.1875,0.8438,1.125,0.875,1.125,0.8438,1.1875,0.875,1.125,0.875,1.1875,0.875,1.1875,0.875,1.125,0.9063,1.125,0.875,1.1875,0.9063,1.125,0.9063,1.1875,0.9063,1.1875,0.9063,1.125,0.9375,1.125,0.9063,1.1875,0.9375,1.125,0.9375,1.1875,0.9375,1.1875,0.9375,1.125,0.9688,1.125,0.9375,1.1875,0.9688,1.125,0.9688,1.1875,0.9688,1.1875,0.9688,1.125,1.0,1.125,0.9688,1.1875,1.0,1.125,1.0,1.1875,0.0,1.125,0.0,1.0625,0.0312,1.0625,0.0,1.125,0.0312,1.0625,0.0312,1.125,0.0312,1.125,0.0312,1.0625,0.0625,1.0625,0.0312,1.125,0.0625,1.0625,0.0625,1.125,0.0625,1.125,0.0625,1.0625,0.0938,1.0625,0.0625,1.125,0.0938,1.0625,0.0938,1.125,0.0938,1.125,0.0938,1.0625,0.125,1.0625,0.0938,1.125,0.125,1.0625,0.125,1.125,0.125,1.125,0.125,1.0625,0.1562,1.0625,0.125,1.125,0.1562,1.0625,0.1562,1.125,0.1562,1.125,0.1562,1.0625,0.1875,1.0625,0.1562,1.125,0.1875,1.0625,0.1875,1.125,0.1875,1.125,0.1875,1.0625,0.2187,1.0625,0.1875,1.125,0.2187,1.0625,0.2187,1.125,0.2187,1.125,0.2187,1.0625,0.25,1.0625,0.2187,1.125,0.25,1.0625,0.25,1.125,0.25,1.125,0.25,1.0625,0.2812,1.0625,0.25,1.125,0.2812,1.0625,0.2812,1.125,0.2812,1.125,0.2812,1.0625,0.3125,1.0625,0.2812,1.125,0.3125,1.0625,0.3125,1.125,0.3125,1.125,0.3125,1.0625,0.3437,1.0625,0.3125,1.125,0.3437,1.0625,0.3437,1.125,0.3437,1.125,0.3437,1.0625,0.375,1.0625,0.3437,1.125,0.375,1.0625,0.375,1.125,0.375,1.125,0.375,1.0625,0.4062,1.0625,0.375,1.125,0.4062,1.0625,0.4062,1.125,0.4062,1.125,0.4062,1.0625,0.4375,1.0625,0.4062,1.125,0.4375,1.0625,0.4375,1.125,0.4375,1.125,0.4375,1.0625,0.4688,1.0625,0.4375,1.125,0.4688,1.0625,0.4688,1.125,0.4688,1.125,0.4688,1.0625,0.5,1.0625,0.4688,1.125,0.5,1.0625,0.5,1.125,0.5,1.125,0.5,1.0625,0.5313,1.0625,0.5,1.125,0.5313,1.0625,0.5313,1.125,0.5313,1.125,0.5313,1.0625,0.5625,1.0625,0.5313,1.125,0.5625,1.0625,0.5625,1.125,0.5625,1.125,0.5625,1.0625,0.5938,1.0625,0.5625,1.125,0.5938,1.0625,0.5938,1.125,0.5938,1.125,0.5938,1.0625,0.625,1.0625,0.5938,1.125,0.625,1.0625,0.625,1.125,0.625,1.125,0.625,1.0625,0.6563,1.0625,0.625,1.125,0.6563,1.0625,0.6563,1.125,0.6563,1.125,0.6563,1.0625,0.6875,1.0625,0.6563,1.125,0.6875,1.0625,0.6875,1.125,0.6875,1.125,0.6875,1.0625,0.7188,1.0625,0.6875,1.125,0.7188,1.0625,0.7188,1.125,0.7188,1.125,0.7188,1.0625,0.75,1.0625,0.7188,1.125,0.75,1.0625,0.75,1.125,0.75,1.125,0.75,1.0625,0.7813,1.0625,0.75,1.125,0.7813,1.0625,0.7813,1.125,0.7813,1.125,0.7813,1.0625,0.8125,1.0625,0.7813,1.125,0.8125,1.0625,0.8125,1.125,0.8125,1.125,0.8125,1.0625,0.8438,1.0625,0.8125,1.125,0.8438,1.0625,0.8438,1.125,0.8438,1.125,0.8438,1.0625,0.875,1.0625,0.8438,1.125,0.875,1.0625,0.875,1.125,0.875,1.125,0.875,1.0625,0.9063,1.0625,0.875,1.125,0.9063,1.0625,0.9063,1.125,0.9063,1.125,0.9063,1.0625,0.9375,1.0625,0.9063,1.125,0.9375,1.0625,0.9375,1.125,0.9375,1.125,0.9375,1.0625,0.9688,1.0625,0.9375,1.125,0.9688,1.0625,0.9688,1.125,0.9688,1.125,0.9688,1.0625,1.0,1.0625,0.9688,1.125,1.0,1.0625,1.0,1.125,0.0,1.0,0.0312,1.0625,0.0,1.0625,0.0312,1.0,0.0625,1.0625,0.0312,1.0625,0.0625,1.0,0.0938,1.0625,0.0625,1.0625,0.0938,1.0,0.125,1.0625,0.0938,1.0625,0.125,1.0,0.1562,1.0625,0.125,1.0625,0.1562,1.0,0.1875,1.0625,0.1562,1.0625,0.1875,1.0,0.2187,1.0625,0.1875,1.0625,0.2187,1.0,0.25,1.0625,0.2187,1.0625,0.25,1.0,0.2812,1.0625,0.25,1.0625,0.2812,1.0,0.3125,1.0625,0.2812,1.0625,0.3125,1.0,0.3437,1.0625,0.3125,1.0625,0.3437,1.0,0.375,1.0625,0.3437,1.0625,0.375,1.0,0.4062,1.0625,0.375,1.0625,0.4062,1.0,0.4375,1.0625,0.4062,1.0625,0.4375,1.0,0.4688,1.0625,0.4375,1.0625,0.4688,1.0,0.5,1.0625,0.4688,1.0625,0.5,1.0,0.5313,1.0625,0.5,1.0625,0.5313,1.0,0.5625,1.0625,0.5313,1.0625,0.5625,1.0,0.5938,1.0625,0.5625,1.0625,0.5938,1.0,0.625,1.0625,0.5938,1.0625,0.625,1.0,0.6563,1.0625,0.625,1.0625,0.6563,1.0,0.6875,1.0625,0.6563,1.0625,0.6875,1.0,0.7188,1.0625,0.6875,1.0625,0.7188,1.0,0.75,1.0625,0.7188,1.0625,0.75,1.0,0.7813,1.0625,0.75,1.0625,0.7813,1.0,0.8125,1.0625,0.7813,1.0625,0.8125,1.0,0.8438,1.0625,0.8125,1.0625,0.8438,1.0,0.875,1.0625,0.8438,1.0625,0.875,1.0,0.9063,1.0625,0.875,1.0625,0.9063,1.0,0.9375,1.0625,0.9063,1.0625,0.9375,1.0,0.9688,1.0625,0.9375,1.0625,0.9688,1.0,1.0,1.0625,0.9688,1.0625],"uvs2":null,"colors":null,"hasVertexAlpha":false,"matricesIndices":null,"matricesWeights":null,"matricesIndicesExtra":null,"matricesWeightsExtra":null,"indices":[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,1984,1985,1986,1987,1988,1989,1990,1991,1992,1993,1994,1995,1996,1997,1998,1999,2000,2001,2002,2003,2004,2005,2006,2007,2008,2009,2010,2011,2012,2013,2014,2015,2016,2017,2018,2019,2020,2021,2022,2023,2024,2025,2026,2027,2028,2029,2030,2031,2032,2033,2034,2035,2036,2037,2038,2039,2040,2041,2042,2043,2044,2045,2046,2047,2048,2049,2050,2051,2052,2053,2054,2055,2056,2057,2058,2059,2060,2061,2062,2063,2064,2065,2066,2067,2068,2069,2070,2071,2072,2073,2074,2075,2076,2077,2078,2079,2080,2081,2082,2083,2084,2085,2086,2087,2088,2089,2090,2091,2092,2093,2094,2095,2096,2097,2098,2099,2100,2101,2102,2103,2104,2105,2106,2107,2108,2109,2110,2111,2112,2113,2114,2115,2116,2117,2118,2119,2120,2121,2122,2123,2124,2125,2126,2127,2128,2129,2130,2131,2132,2133,2134,2135,2136,2137,2138,2139,2140,2141,2142,2143,2144,2145,2146,2147,2148,2149,2150,2151,2152,2153,2154,2155,2156,2157,2158,2159,2160,2161,2162,2163,2164,2165,2166,2167,2168,2169,2170,2171,2172,2173,2174,2175,2176,2177,2178,2179,2180,2181,2182,2183,2184,2185,2186,2187,2188,2189,2190,2191,2192,2193,2194,2195,2196,2197,2198,2199,2200,2201,2202,2203,2204,2205,2206,2207,2208,2209,2210,2211,2212,2213,2214,2215,2216,2217,2218,2219,2220,2221,2222,2223,2224,2225,2226,2227,2228,2229,2230,2231,2232,2233,2234,2235,2236,2237,2238,2239,2240,2241,2242,2243,2244,2245,2246,2247,2248,2249,2250,2251,2252,2253,2254,2255,2256,2257,2258,2259,2260,2261,2262,2263,2264,2265,2266,2267,2268,2269,2270,2271,2272,2273,2274,2275,2276,2277,2278,2279,2280,2281,2282,2283,2284,2285,2286,2287,2288,2289,2290,2291,2292,2293,2294,2295,2296,2297,2298,2299,2300,2301,2302,2303,2304,2305,2306,2307,2308,2309,2310,2311,2312,2313,2314,2315,2316,2317,2318,2319,2320,2321,2322,2323,2324,2325,2326,2327,2328,2329,2330,2331,2332,2333,2334,2335,2336,2337,2338,2339,2340,2341,2342,2343,2344,2345,2346,2347,2348,2349,2350,2351,2352,2353,2354,2355,2356,2357,2358,2359,2360,2361,2362,2363,2364,2365,2366,2367,2368,2369,2370,2371,2372,2373,2374,2375,2376,2377,2378,2379,2380,2381,2382,2383,2384,2385,2386,2387,2388,2389,2390,2391,2392,2393,2394,2395,2396,2397,2398,2399,2400,2401,2402,2403,2404,2405,2406,2407,2408,2409,2410,2411,2412,2413,2414,2415,2416,2417,2418,2419,2420,2421,2422,2423,2424,2425,2426,2427,2428,2429,2430,2431,2432,2433,2434,2435,2436,2437,2438,2439,2440,2441,2442,2443,2444,2445,2446,2447,2448,2449,2450,2451,2452,2453,2454,2455,2456,2457,2458,2459,2460,2461,2462,2463,2464,2465,2466,2467,2468,2469,2470,2471,2472,2473,2474,2475,2476,2477,2478,2479,2480,2481,2482,2483,2484,2485,2486,2487,2488,2489,2490,2491,2492,2493,2494,2495,2496,2497,2498,2499,2500,2501,2502,2503,2504,2505,2506,2507,2508,2509,2510,2511,2512,2513,2514,2515,2516,2517,2518,2519,2520,2521,2522,2523,2524,2525,2526,2527,2528,2529,2530,2531,2532,2533,2534,2535,2536,2537,2538,2539,2540,2541,2542,2543,2544,2545,2546,2547,2548,2549,2550,2551,2552,2553,2554,2555,2556,2557,2558,2559,2560,2561,2562,2563,2564,2565,2566,2567,2568,2569,2570,2571,2572,2573,2574,2575,2576,2577,2578,2579,2580,2581,2582,2583,2584,2585,2586,2587,2588,2589,2590,2591,2592,2593,2594,2595,2596,2597,2598,2599,2600,2601,2602,2603,2604,2605,2606,2607,2608,2609,2610,2611,2612,2613,2614,2615,2616,2617,2618,2619,2620,2621,2622,2623,2624,2625,2626,2627,2628,2629,2630,2631,2632,2633,2634,2635,2636,2637,2638,2639,2640,2641,2642,2643,2644,2645,2646,2647,2648,2649,2650,2651,2652,2653,2654,2655,2656,2657,2658,2659,2660,2661,2662,2663,2664,2665,2666,2667,2668,2669,2670,2671,2672,2673,2674,2675,2676,2677,2678,2679,2680,2681,2682,2683,2684,2685,2686,2687,2688,2689,2690,2691,2692,2693,2694,2695,2696,2697,2698,2699,2700,2701,2702,2703,2704,2705,2706,2707,2708,2709,2710,2711,2712,2713,2714,2715,2716,2717,2718,2719,2720,2721,2722,2723,2724,2725,2726,2727,2728,2729,2730,2731,2732,2733,2734,2735,2736,2737,2738,2739,2740,2741,2742,2743,2744,2745,2746,2747,2748,2749,2750,2751,2752,2753,2754,2755,2756,2757,2758,2759,2760,2761,2762,2763,2764,2765,2766,2767,2768,2769,2770,2771,2772,2773,2774,2775,2776,2777,2778,2779,2780,2781,2782,2783,2784,2785,2786,2787,2788,2789,2790,2791,2792,2793,2794,2795,2796,2797,2798,2799,2800,2801,2802,2803,2804,2805,2806,2807,2808,2809,2810,2811,2812,2813,2814,2815,2816,2817,2818,2819,2820,2821,2822,2823,2824,2825,2826,2827,2828,2829,2830,2831,2832,2833,2834,2835,2836,2837,2838,2839,2840,2841,2842,2843,2844,2845,2846,2847,2848,2849,2850,2851,2852,2853,2854,2855,2856,2857,2858,2859,2860,2861,2862,2863,2864,2865,2866,2867,2868,2869,2870,2871,2872,2873,2874,2875,2876,2877,2878,2879],"receiveShadows":true,"infiniteDistance":false,"billboardMode":0,"visibility":1.0,"subMeshes":[{"materialIndex":0,"verticesStart":0,"verticesCount":2880,"indexStart":0,"indexCount":2880}],"instances":null,"skeletonId":-1,"numBoneInfluencers":4,"applyFog":true,"lodMeshIds":null,"lodDistances":null,"lodCoverages":null,"rotation":null,"scaling":[1.0,1.0,1.0],"rotationQuaternion":[0.0,0.0,0.0,1.0],"actions":null,"checkCollisions":false,"pickable":false,"showBoundingBox":false,"showSubMeshesBoundingBox":false,"alphaIndex":1000,"physicsImpostor":0,"physicsMass":0.0,"physicsFriction":0.0,"physicsRestitution":0.0,"name":"PhysicalMesh","id":"311381f0-8487-4fc5-89fa-7d01dfda5e2f","parentId":null,"position":[3.0,0.0,0.0],"animations":[],"autoAnimate":true,"autoAnimateFrom":0,"autoAnimateTo":100,"autoAnimateLoop":true,"metadata":null},{"materialId":"c2525260-7da1-4c5d-a743-37cc6b14cfd0","isEnabled":true,"isVisible":true,"positions":[0.0,1.0,0.0,0.0,0.9808,0.1951,-0.0381,0.9808,0.1913,0.0,1.0,0.0,-0.0381,0.9808,0.1913,-0.0747,0.9808,0.1802,0.0,1.0,0.0,-0.0747,0.9808,0.1802,-0.1084,0.9808,0.1622,0.0,1.0,0.0,-0.1084,0.9808,0.1622,-0.1379,0.9808,0.1379,0.0,1.0,0.0,-0.1379,0.9808,0.1379,-0.1622,0.9808,0.1084,0.0,1.0,0.0,-0.1622,0.9808,0.1084,-0.1802,0.9808,0.0747,0.0,1.0,0.0,-0.1802,0.9808,0.0747,-0.1913,0.9808,0.0381,0.0,1.0,0.0,-0.1913,0.9808,0.0381,-0.1951,0.9808,0.0,0.0,1.0,0.0,-0.1951,0.9808,0.0,-0.1913,0.9808,-0.0381,0.0,1.0,0.0,-0.1913,0.9808,-0.0381,-0.1802,0.9808,-0.0747,0.0,1.0,0.0,-0.1802,0.9808,-0.0747,-0.1622,0.9808,-0.1084,0.0,1.0,0.0,-0.1622,0.9808,-0.1084,-0.1379,0.9808,-0.1379,0.0,1.0,0.0,-0.1379,0.9808,-0.1379,-0.1084,0.9808,-0.1622,0.0,1.0,0.0,-0.1084,0.9808,-0.1622,-0.0747,0.9808,-0.1802,0.0,1.0,0.0,-0.0747,0.9808,-0.1802,-0.0381,0.9808,-0.1913,0.0,1.0,0.0,-0.0381,0.9808,-0.1913,0.0,0.9808,-0.1951,0.0,1.0,0.0,0.0,0.9808,-0.1951,0.0381,0.9808,-0.1913,0.0,1.0,0.0,0.0381,0.9808,-0.1913,0.0747,0.9808,-0.1802,0.0,1.0,0.0,0.0747,0.9808,-0.1802,0.1084,0.9808,-0.1622,0.0,1.0,0.0,0.1084,0.9808,-0.1622,0.1379,0.9808,-0.1379,0.0,1.0,0.0,0.1379,0.9808,-0.1379,0.1622,0.9808,-0.1084,0.0,1.0,0.0,0.1622,0.9808,-0.1084,0.1802,0.9808,-0.0747,0.0,1.0,0.0,0.1802,0.9808,-0.0747,0.1913,0.9808,-0.0381,0.0,1.0,0.0,0.1913,0.9808,-0.0381,0.1951,0.9808,0.0,0.0,1.0,0.0,0.1951,0.9808,0.0,0.1913,0.9808,0.0381,0.0,1.0,0.0,0.1913,0.9808,0.0381,0.1802,0.9808,0.0747,0.0,1.0,0.0,0.1802,0.9808,0.0747,0.1622,0.9808,0.1084,0.0,1.0,0.0,0.1622,0.9808,0.1084,0.1379,0.9808,0.1379,0.0,1.0,0.0,0.1379,0.9808,0.1379,0.1084,0.9808,0.1622,0.0,1.0,0.0,0.1084,0.9808,0.1622,0.0747,0.9808,0.1802,0.0,1.0,0.0,0.0747,0.9808,0.1802,0.0381,0.9808,0.1913,0.0,1.0,0.0,0.0381,0.9808,0.1913,0.0,0.9808,0.1951,0.0,0.9808,0.1951,0.0,0.9239,0.3827,-0.0747,0.9239,0.3753,0.0,0.9808,0.1951,-0.0747,0.9239,0.3753,-0.0381,0.9808,0.1913,-0.0381,0.9808,0.1913,-0.0747,0.9239,0.3753,-0.1464,0.9239,0.3536,-0.0381,0.9808,0.1913,-0.1464,0.9239,0.3536,-0.0747,0.9808,0.1802,-0.0747,0.9808,0.1802,-0.1464,0.9239,0.3536,-0.2126,0.9239,0.3182,-0.0747,0.9808,0.1802,-0.2126,0.9239,0.3182,-0.1084,0.9808,0.1622,-0.1084,0.9808,0.1622,-0.2126,0.9239,0.3182,-0.2706,0.9239,0.2706,-0.1084,0.9808,0.1622,-0.2706,0.9239,0.2706,-0.1379,0.9808,0.1379,-0.1379,0.9808,0.1379,-0.2706,0.9239,0.2706,-0.3182,0.9239,0.2126,-0.1379,0.9808,0.1379,-0.3182,0.9239,0.2126,-0.1622,0.9808,0.1084,-0.1622,0.9808,0.1084,-0.3182,0.9239,0.2126,-0.3536,0.9239,0.1464,-0.1622,0.9808,0.1084,-0.3536,0.9239,0.1464,-0.1802,0.9808,0.0747,-0.1802,0.9808,0.0747,-0.3536,0.9239,0.1464,-0.3753,0.9239,0.0747,-0.1802,0.9808,0.0747,-0.3753,0.9239,0.0747,-0.1913,0.9808,0.0381,-0.1913,0.9808,0.0381,-0.3753,0.9239,0.0747,-0.3827,0.9239,0.0,-0.1913,0.9808,0.0381,-0.3827,0.9239,0.0,-0.1951,0.9808,0.0,-0.1951,0.9808,0.0,-0.3827,0.9239,0.0,-0.3753,0.9239,-0.0747,-0.1951,0.9808,0.0,-0.3753,0.9239,-0.0747,-0.1913,0.9808,-0.0381,-0.1913,0.9808,-0.0381,-0.3753,0.9239,-0.0747,-0.3536,0.9239,-0.1464,-0.1913,0.9808,-0.0381,-0.3536,0.9239,-0.1464,-0.1802,0.9808,-0.0747,-0.1802,0.9808,-0.0747,-0.3536,0.9239,-0.1464,-0.3182,0.9239,-0.2126,-0.1802,0.9808,-0.0747,-0.3182,0.9239,-0.2126,-0.1622,0.9808,-0.1084,-0.1622,0.9808,-0.1084,-0.3182,0.9239,-0.2126,-0.2706,0.9239,-0.2706,-0.1622,0.9808,-0.1084,-0.2706,0.9239,-0.2706,-0.1379,0.9808,-0.1379,-0.1379,0.9808,-0.1379,-0.2706,0.9239,-0.2706,-0.2126,0.9239,-0.3182,-0.1379,0.9808,-0.1379,-0.2126,0.9239,-0.3182,-0.1084,0.9808,-0.1622,-0.1084,0.9808,-0.1622,-0.2126,0.9239,-0.3182,-0.1464,0.9239,-0.3536,-0.1084,0.9808,-0.1622,-0.1464,0.9239,-0.3536,-0.0747,0.9808,-0.1802,-0.0747,0.9808,-0.1802,-0.1464,0.9239,-0.3536,-0.0747,0.9239,-0.3753,-0.0747,0.9808,-0.1802,-0.0747,0.9239,-0.3753,-0.0381,0.9808,-0.1913,-0.0381,0.9808,-0.1913,-0.0747,0.9239,-0.3753,0.0,0.9239,-0.3827,-0.0381,0.9808,-0.1913,0.0,0.9239,-0.3827,0.0,0.9808,-0.1951,0.0,0.9808,-0.1951,0.0,0.9239,-0.3827,0.0747,0.9239,-0.3753,0.0,0.9808,-0.1951,0.0747,0.9239,-0.3753,0.0381,0.9808,-0.1913,0.0381,0.9808,-0.1913,0.0747,0.9239,-0.3753,0.1464,0.9239,-0.3536,0.0381,0.9808,-0.1913,0.1464,0.9239,-0.3536,0.0747,0.9808,-0.1802,0.0747,0.9808,-0.1802,0.1464,0.9239,-0.3536,0.2126,0.9239,-0.3182,0.0747,0.9808,-0.1802,0.2126,0.9239,-0.3182,0.1084,0.9808,-0.1622,0.1084,0.9808,-0.1622,0.2126,0.9239,-0.3182,0.2706,0.9239,-0.2706,0.1084,0.9808,-0.1622,0.2706,0.9239,-0.2706,0.1379,0.9808,-0.1379,0.1379,0.9808,-0.1379,0.2706,0.9239,-0.2706,0.3182,0.9239,-0.2126,0.1379,0.9808,-0.1379,0.3182,0.9239,-0.2126,0.1622,0.9808,-0.1084,0.1622,0.9808,-0.1084,0.3182,0.9239,-0.2126,0.3536,0.9239,-0.1464,0.1622,0.9808,-0.1084,0.3536,0.9239,-0.1464,0.1802,0.9808,-0.0747,0.1802,0.9808,-0.0747,0.3536,0.9239,-0.1464,0.3753,0.9239,-0.0747,0.1802,0.9808,-0.0747,0.3753,0.9239,-0.0747,0.1913,0.9808,-0.0381,0.1913,0.9808,-0.0381,0.3753,0.9239,-0.0747,0.3827,0.9239,0.0,0.1913,0.9808,-0.0381,0.3827,0.9239,0.0,0.1951,0.9808,0.0,0.1951,0.9808,0.0,0.3827,0.9239,0.0,0.3753,0.9239,0.0747,0.1951,0.9808,0.0,0.3753,0.9239,0.0747,0.1913,0.9808,0.0381,0.1913,0.9808,0.0381,0.3753,0.9239,0.0747,0.3536,0.9239,0.1464,0.1913,0.9808,0.0381,0.3536,0.9239,0.1464,0.1802,0.9808,0.0747,0.1802,0.9808,0.0747,0.3536,0.9239,0.1464,0.3182,0.9239,0.2126,0.1802,0.9808,0.0747,0.3182,0.9239,0.2126,0.1622,0.9808,0.1084,0.1622,0.9808,0.1084,0.3182,0.9239,0.2126,0.2706,0.9239,0.2706,0.1622,0.9808,0.1084,0.2706,0.9239,0.2706,0.1379,0.9808,0.1379,0.1379,0.9808,0.1379,0.2706,0.9239,0.2706,0.2126,0.9239,0.3182,0.1379,0.9808,0.1379,0.2126,0.9239,0.3182,0.1084,0.9808,0.1622,0.1084,0.9808,0.1622,0.2126,0.9239,0.3182,0.1464,0.9239,0.3536,0.1084,0.9808,0.1622,0.1464,0.9239,0.3536,0.0747,0.9808,0.1802,0.0747,0.9808,0.1802,0.1464,0.9239,0.3536,0.0747,0.9239,0.3753,0.0747,0.9808,0.1802,0.0747,0.9239,0.3753,0.0381,0.9808,0.1913,0.0381,0.9808,0.1913,0.0747,0.9239,0.3753,0.0,0.9239,0.3827,0.0381,0.9808,0.1913,0.0,0.9239,0.3827,0.0,0.9808,0.1951,0.0,0.9239,0.3827,0.0,0.8315,0.5556,-0.1084,0.8315,0.5449,0.0,0.9239,0.3827,-0.1084,0.8315,0.5449,-0.0747,0.9239,0.3753,-0.0747,0.9239,0.3753,-0.1084,0.8315,0.5449,-0.2126,0.8315,0.5133,-0.0747,0.9239,0.3753,-0.2126,0.8315,0.5133,-0.1464,0.9239,0.3536,-0.1464,0.9239,0.3536,-0.2126,0.8315,0.5133,-0.3087,0.8315,0.4619,-0.1464,0.9239,0.3536,-0.3087,0.8315,0.4619,-0.2126,0.9239,0.3182,-0.2126,0.9239,0.3182,-0.3087,0.8315,0.4619,-0.3928,0.8315,0.3928,-0.2126,0.9239,0.3182,-0.3928,0.8315,0.3928,-0.2706,0.9239,0.2706,-0.2706,0.9239,0.2706,-0.3928,0.8315,0.3928,-0.4619,0.8315,0.3087,-0.2706,0.9239,0.2706,-0.4619,0.8315,0.3087,-0.3182,0.9239,0.2126,-0.3182,0.9239,0.2126,-0.4619,0.8315,0.3087,-0.5133,0.8315,0.2126,-0.3182,0.9239,0.2126,-0.5133,0.8315,0.2126,-0.3536,0.9239,0.1464,-0.3536,0.9239,0.1464,-0.5133,0.8315,0.2126,-0.5449,0.8315,0.1084,-0.3536,0.9239,0.1464,-0.5449,0.8315,0.1084,-0.3753,0.9239,0.0747,-0.3753,0.9239,0.0747,-0.5449,0.8315,0.1084,-0.5556,0.8315,0.0,-0.3753,0.9239,0.0747,-0.5556,0.8315,0.0,-0.3827,0.9239,0.0,-0.3827,0.9239,0.0,-0.5556,0.8315,0.0,-0.5449,0.8315,-0.1084,-0.3827,0.9239,0.0,-0.5449,0.8315,-0.1084,-0.3753,0.9239,-0.0747,-0.3753,0.9239,-0.0747,-0.5449,0.8315,-0.1084,-0.5133,0.8315,-0.2126,-0.3753,0.9239,-0.0747,-0.5133,0.8315,-0.2126,-0.3536,0.9239,-0.1464,-0.3536,0.9239,-0.1464,-0.5133,0.8315,-0.2126,-0.4619,0.8315,-0.3087,-0.3536,0.9239,-0.1464,-0.4619,0.8315,-0.3087,-0.3182,0.9239,-0.2126,-0.3182,0.9239,-0.2126,-0.4619,0.8315,-0.3087,-0.3928,0.8315,-0.3928,-0.3182,0.9239,-0.2126,-0.3928,0.8315,-0.3928,-0.2706,0.9239,-0.2706,-0.2706,0.9239,-0.2706,-0.3928,0.8315,-0.3928,-0.3087,0.8315,-0.4619,-0.2706,0.9239,-0.2706,-0.3087,0.8315,-0.4619,-0.2126,0.9239,-0.3182,-0.2126,0.9239,-0.3182,-0.3087,0.8315,-0.4619,-0.2126,0.8315,-0.5133,-0.2126,0.9239,-0.3182,-0.2126,0.8315,-0.5133,-0.1464,0.9239,-0.3536,-0.1464,0.9239,-0.3536,-0.2126,0.8315,-0.5133,-0.1084,0.8315,-0.5449,-0.1464,0.9239,-0.3536,-0.1084,0.8315,-0.5449,-0.0747,0.9239,-0.3753,-0.0747,0.9239,-0.3753,-0.1084,0.8315,-0.5449,0.0,0.8315,-0.5556,-0.0747,0.9239,-0.3753,0.0,0.8315,-0.5556,0.0,0.9239,-0.3827,0.0,0.9239,-0.3827,0.0,0.8315,-0.5556,0.1084,0.8315,-0.5449,0.0,0.9239,-0.3827,0.1084,0.8315,-0.5449,0.0747,0.9239,-0.3753,0.0747,0.9239,-0.3753,0.1084,0.8315,-0.5449,0.2126,0.8315,-0.5133,0.0747,0.9239,-0.3753,0.2126,0.8315,-0.5133,0.1464,0.9239,-0.3536,0.1464,0.9239,-0.3536,0.2126,0.8315,-0.5133,0.3087,0.8315,-0.4619,0.1464,0.9239,-0.3536,0.3087,0.8315,-0.4619,0.2126,0.9239,-0.3182,0.2126,0.9239,-0.3182,0.3087,0.8315,-0.4619,0.3928,0.8315,-0.3928,0.2126,0.9239,-0.3182,0.3928,0.8315,-0.3928,0.2706,0.9239,-0.2706,0.2706,0.9239,-0.2706,0.3928,0.8315,-0.3928,0.4619,0.8315,-0.3087,0.2706,0.9239,-0.2706,0.4619,0.8315,-0.3087,0.3182,0.9239,-0.2126,0.3182,0.9239,-0.2126,0.4619,0.8315,-0.3087,0.5133,0.8315,-0.2126,0.3182,0.9239,-0.2126,0.5133,0.8315,-0.2126,0.3536,0.9239,-0.1464,0.3536,0.9239,-0.1464,0.5133,0.8315,-0.2126,0.5449,0.8315,-0.1084,0.3536,0.9239,-0.1464,0.5449,0.8315,-0.1084,0.3753,0.9239,-0.0747,0.3753,0.9239,-0.0747,0.5449,0.8315,-0.1084,0.5556,0.8315,0.0,0.3753,0.9239,-0.0747,0.5556,0.8315,0.0,0.3827,0.9239,0.0,0.3827,0.9239,0.0,0.5556,0.8315,0.0,0.5449,0.8315,0.1084,0.3827,0.9239,0.0,0.5449,0.8315,0.1084,0.3753,0.9239,0.0747,0.3753,0.9239,0.0747,0.5449,0.8315,0.1084,0.5133,0.8315,0.2126,0.3753,0.9239,0.0747,0.5133,0.8315,0.2126,0.3536,0.9239,0.1464,0.3536,0.9239,0.1464,0.5133,0.8315,0.2126,0.4619,0.8315,0.3087,0.3536,0.9239,0.1464,0.4619,0.8315,0.3087,0.3182,0.9239,0.2126,0.3182,0.9239,0.2126,0.4619,0.8315,0.3087,0.3928,0.8315,0.3928,0.3182,0.9239,0.2126,0.3928,0.8315,0.3928,0.2706,0.9239,0.2706,0.2706,0.9239,0.2706,0.3928,0.8315,0.3928,0.3087,0.8315,0.4619,0.2706,0.9239,0.2706,0.3087,0.8315,0.4619,0.2126,0.9239,0.3182,0.2126,0.9239,0.3182,0.3087,0.8315,0.4619,0.2126,0.8315,0.5133,0.2126,0.9239,0.3182,0.2126,0.8315,0.5133,0.1464,0.9239,0.3536,0.1464,0.9239,0.3536,0.2126,0.8315,0.5133,0.1084,0.8315,0.5449,0.1464,0.9239,0.3536,0.1084,0.8315,0.5449,0.0747,0.9239,0.3753,0.0747,0.9239,0.3753,0.1084,0.8315,0.5449,0.0,0.8315,0.5556,0.0747,0.9239,0.3753,0.0,0.8315,0.5556,0.0,0.9239,0.3827,0.0,0.8315,0.5556,0.0,0.7071,0.7071,-0.1379,0.7071,0.6935,0.0,0.8315,0.5556,-0.1379,0.7071,0.6935,-0.1084,0.8315,0.5449,-0.1084,0.8315,0.5449,-0.1379,0.7071,0.6935,-0.2706,0.7071,0.6533,-0.1084,0.8315,0.5449,-0.2706,0.7071,0.6533,-0.2126,0.8315,0.5133,-0.2126,0.8315,0.5133,-0.2706,0.7071,0.6533,-0.3928,0.7071,0.5879,-0.2126,0.8315,0.5133,-0.3928,0.7071,0.5879,-0.3087,0.8315,0.4619,-0.3087,0.8315,0.4619,-0.3928,0.7071,0.5879,-0.5,0.7071,0.5,-0.3087,0.8315,0.4619,-0.5,0.7071,0.5,-0.3928,0.8315,0.3928,-0.3928,0.8315,0.3928,-0.5,0.7071,0.5,-0.5879,0.7071,0.3928,-0.3928,0.8315,0.3928,-0.5879,0.7071,0.3928,-0.4619,0.8315,0.3087,-0.4619,0.8315,0.3087,-0.5879,0.7071,0.3928,-0.6533,0.7071,0.2706,-0.4619,0.8315,0.3087,-0.6533,0.7071,0.2706,-0.5133,0.8315,0.2126,-0.5133,0.8315,0.2126,-0.6533,0.7071,0.2706,-0.6935,0.7071,0.1379,-0.5133,0.8315,0.2126,-0.6935,0.7071,0.1379,-0.5449,0.8315,0.1084,-0.5449,0.8315,0.1084,-0.6935,0.7071,0.1379,-0.7071,0.7071,0.0,-0.5449,0.8315,0.1084,-0.7071,0.7071,0.0,-0.5556,0.8315,0.0,-0.5556,0.8315,0.0,-0.7071,0.7071,0.0,-0.6935,0.7071,-0.1379,-0.5556,0.8315,0.0,-0.6935,0.7071,-0.1379,-0.5449,0.8315,-0.1084,-0.5449,0.8315,-0.1084,-0.6935,0.7071,-0.1379,-0.6533,0.7071,-0.2706,-0.5449,0.8315,-0.1084,-0.6533,0.7071,-0.2706,-0.5133,0.8315,-0.2126,-0.5133,0.8315,-0.2126,-0.6533,0.7071,-0.2706,-0.5879,0.7071,-0.3928,-0.5133,0.8315,-0.2126,-0.5879,0.7071,-0.3928,-0.4619,0.8315,-0.3087,-0.4619,0.8315,-0.3087,-0.5879,0.7071,-0.3928,-0.5,0.7071,-0.5,-0.4619,0.8315,-0.3087,-0.5,0.7071,-0.5,-0.3928,0.8315,-0.3928,-0.3928,0.8315,-0.3928,-0.5,0.7071,-0.5,-0.3928,0.7071,-0.5879,-0.3928,0.8315,-0.3928,-0.3928,0.7071,-0.5879,-0.3087,0.8315,-0.4619,-0.3087,0.8315,-0.4619,-0.3928,0.7071,-0.5879,-0.2706,0.7071,-0.6533,-0.3087,0.8315,-0.4619,-0.2706,0.7071,-0.6533,-0.2126,0.8315,-0.5133,-0.2126,0.8315,-0.5133,-0.2706,0.7071,-0.6533,-0.1379,0.7071,-0.6935,-0.2126,0.8315,-0.5133,-0.1379,0.7071,-0.6935,-0.1084,0.8315,-0.5449,-0.1084,0.8315,-0.5449,-0.1379,0.7071,-0.6935,0.0,0.7071,-0.7071,-0.1084,0.8315,-0.5449,0.0,0.7071,-0.7071,0.0,0.8315,-0.5556,0.0,0.8315,-0.5556,0.0,0.7071,-0.7071,0.138,0.7071,-0.6935,0.0,0.8315,-0.5556,0.138,0.7071,-0.6935,0.1084,0.8315,-0.5449,0.1084,0.8315,-0.5449,0.138,0.7071,-0.6935,0.2706,0.7071,-0.6533,0.1084,0.8315,-0.5449,0.2706,0.7071,-0.6533,0.2126,0.8315,-0.5133,0.2126,0.8315,-0.5133,0.2706,0.7071,-0.6533,0.3928,0.7071,-0.5879,0.2126,0.8315,-0.5133,0.3928,0.7071,-0.5879,0.3087,0.8315,-0.4619,0.3087,0.8315,-0.4619,0.3928,0.7071,-0.5879,0.5,0.7071,-0.5,0.3087,0.8315,-0.4619,0.5,0.7071,-0.5,0.3928,0.8315,-0.3928,0.3928,0.8315,-0.3928,0.5,0.7071,-0.5,0.5879,0.7071,-0.3928,0.3928,0.8315,-0.3928,0.5879,0.7071,-0.3928,0.4619,0.8315,-0.3087,0.4619,0.8315,-0.3087,0.5879,0.7071,-0.3928,0.6533,0.7071,-0.2706,0.4619,0.8315,-0.3087,0.6533,0.7071,-0.2706,0.5133,0.8315,-0.2126,0.5133,0.8315,-0.2126,0.6533,0.7071,-0.2706,0.6935,0.7071,-0.1379,0.5133,0.8315,-0.2126,0.6935,0.7071,-0.1379,0.5449,0.8315,-0.1084,0.5449,0.8315,-0.1084,0.6935,0.7071,-0.1379,0.7071,0.7071,0.0,0.5449,0.8315,-0.1084,0.7071,0.7071,0.0,0.5556,0.8315,0.0,0.5556,0.8315,0.0,0.7071,0.7071,0.0,0.6935,0.7071,0.138,0.5556,0.8315,0.0,0.6935,0.7071,0.138,0.5449,0.8315,0.1084,0.5449,0.8315,0.1084,0.6935,0.7071,0.138,0.6533,0.7071,0.2706,0.5449,0.8315,0.1084,0.6533,0.7071,0.2706,0.5133,0.8315,0.2126,0.5133,0.8315,0.2126,0.6533,0.7071,0.2706,0.5879,0.7071,0.3928,0.5133,0.8315,0.2126,0.5879,0.7071,0.3928,0.4619,0.8315,0.3087,0.4619,0.8315,0.3087,0.5879,0.7071,0.3928,0.5,0.7071,0.5,0.4619,0.8315,0.3087,0.5,0.7071,0.5,0.3928,0.8315,0.3928,0.3928,0.8315,0.3928,0.5,0.7071,0.5,0.3928,0.7071,0.5879,0.3928,0.8315,0.3928,0.3928,0.7071,0.5879,0.3087,0.8315,0.4619,0.3087,0.8315,0.4619,0.3928,0.7071,0.5879,0.2706,0.7071,0.6533,0.3087,0.8315,0.4619,0.2706,0.7071,0.6533,0.2126,0.8315,0.5133,0.2126,0.8315,0.5133,0.2706,0.7071,0.6533,0.1379,0.7071,0.6935,0.2126,0.8315,0.5133,0.1379,0.7071,0.6935,0.1084,0.8315,0.5449,0.1084,0.8315,0.5449,0.1379,0.7071,0.6935,0.0,0.7071,0.7071,0.1084,0.8315,0.5449,0.0,0.7071,0.7071,0.0,0.8315,0.5556,0.0,0.7071,0.7071,0.0,0.5556,0.8315,-0.1622,0.5556,0.8155,0.0,0.7071,0.7071,-0.1622,0.5556,0.8155,-0.1379,0.7071,0.6935,-0.1379,0.7071,0.6935,-0.1622,0.5556,0.8155,-0.3182,0.5556,0.7682,-0.1379,0.7071,0.6935,-0.3182,0.5556,0.7682,-0.2706,0.7071,0.6533,-0.2706,0.7071,0.6533,-0.3182,0.5556,0.7682,-0.4619,0.5556,0.6913,-0.2706,0.7071,0.6533,-0.4619,0.5556,0.6913,-0.3928,0.7071,0.5879,-0.3928,0.7071,0.5879,-0.4619,0.5556,0.6913,-0.5879,0.5556,0.5879,-0.3928,0.7071,0.5879,-0.5879,0.5556,0.5879,-0.5,0.7071,0.5,-0.5,0.7071,0.5,-0.5879,0.5556,0.5879,-0.6913,0.5556,0.4619,-0.5,0.7071,0.5,-0.6913,0.5556,0.4619,-0.5879,0.7071,0.3928,-0.5879,0.7071,0.3928,-0.6913,0.5556,0.4619,-0.7682,0.5556,0.3182,-0.5879,0.7071,0.3928,-0.7682,0.5556,0.3182,-0.6533,0.7071,0.2706,-0.6533,0.7071,0.2706,-0.7682,0.5556,0.3182,-0.8155,0.5556,0.1622,-0.6533,0.7071,0.2706,-0.8155,0.5556,0.1622,-0.6935,0.7071,0.1379,-0.6935,0.7071,0.1379,-0.8155,0.5556,0.1622,-0.8315,0.5556,0.0,-0.6935,0.7071,0.1379,-0.8315,0.5556,0.0,-0.7071,0.7071,0.0,-0.7071,0.7071,0.0,-0.8315,0.5556,0.0,-0.8155,0.5556,-0.1622,-0.7071,0.7071,0.0,-0.8155,0.5556,-0.1622,-0.6935,0.7071,-0.1379,-0.6935,0.7071,-0.1379,-0.8155,0.5556,-0.1622,-0.7682,0.5556,-0.3182,-0.6935,0.7071,-0.1379,-0.7682,0.5556,-0.3182,-0.6533,0.7071,-0.2706,-0.6533,0.7071,-0.2706,-0.7682,0.5556,-0.3182,-0.6913,0.5556,-0.4619,-0.6533,0.7071,-0.2706,-0.6913,0.5556,-0.4619,-0.5879,0.7071,-0.3928,-0.5879,0.7071,-0.3928,-0.6913,0.5556,-0.4619,-0.5879,0.5556,-0.5879,-0.5879,0.7071,-0.3928,-0.5879,0.5556,-0.5879,-0.5,0.7071,-0.5,-0.5,0.7071,-0.5,-0.5879,0.5556,-0.5879,-0.4619,0.5556,-0.6913,-0.5,0.7071,-0.5,-0.4619,0.5556,-0.6913,-0.3928,0.7071,-0.5879,-0.3928,0.7071,-0.5879,-0.4619,0.5556,-0.6913,-0.3182,0.5556,-0.7682,-0.3928,0.7071,-0.5879,-0.3182,0.5556,-0.7682,-0.2706,0.7071,-0.6533,-0.2706,0.7071,-0.6533,-0.3182,0.5556,-0.7682,-0.1622,0.5556,-0.8155,-0.2706,0.7071,-0.6533,-0.1622,0.5556,-0.8155,-0.1379,0.7071,-0.6935,-0.1379,0.7071,-0.6935,-0.1622,0.5556,-0.8155,0.0,0.5556,-0.8315,-0.1379,0.7071,-0.6935,0.0,0.5556,-0.8315,0.0,0.7071,-0.7071,0.0,0.7071,-0.7071,0.0,0.5556,-0.8315,0.1622,0.5556,-0.8155,0.0,0.7071,-0.7071,0.1622,0.5556,-0.8155,0.138,0.7071,-0.6935,0.138,0.7071,-0.6935,0.1622,0.5556,-0.8155,0.3182,0.5556,-0.7682,0.138,0.7071,-0.6935,0.3182,0.5556,-0.7682,0.2706,0.7071,-0.6533,0.2706,0.7071,-0.6533,0.3182,0.5556,-0.7682,0.4619,0.5556,-0.6913,0.2706,0.7071,-0.6533,0.4619,0.5556,-0.6913,0.3928,0.7071,-0.5879,0.3928,0.7071,-0.5879,0.4619,0.5556,-0.6913,0.5879,0.5556,-0.5879,0.3928,0.7071,-0.5879,0.5879,0.5556,-0.5879,0.5,0.7071,-0.5,0.5,0.7071,-0.5,0.5879,0.5556,-0.5879,0.6913,0.5556,-0.4619,0.5,0.7071,-0.5,0.6913,0.5556,-0.4619,0.5879,0.7071,-0.3928,0.5879,0.7071,-0.3928,0.6913,0.5556,-0.4619,0.7682,0.5556,-0.3182,0.5879,0.7071,-0.3928,0.7682,0.5556,-0.3182,0.6533,0.7071,-0.2706,0.6533,0.7071,-0.2706,0.7682,0.5556,-0.3182,0.8155,0.5556,-0.1622,0.6533,0.7071,-0.2706,0.8155,0.5556,-0.1622,0.6935,0.7071,-0.1379,0.6935,0.7071,-0.1379,0.8155,0.5556,-0.1622,0.8315,0.5556,0.0,0.6935,0.7071,-0.1379,0.8315,0.5556,0.0,0.7071,0.7071,0.0,0.7071,0.7071,0.0,0.8315,0.5556,0.0,0.8155,0.5556,0.1622,0.7071,0.7071,0.0,0.8155,0.5556,0.1622,0.6935,0.7071,0.138,0.6935,0.7071,0.138,0.8155,0.5556,0.1622,0.7682,0.5556,0.3182,0.6935,0.7071,0.138,0.7682,0.5556,0.3182,0.6533,0.7071,0.2706,0.6533,0.7071,0.2706,0.7682,0.5556,0.3182,0.6913,0.5556,0.4619,0.6533,0.7071,0.2706,0.6913,0.5556,0.4619,0.5879,0.7071,0.3928,0.5879,0.7071,0.3928,0.6913,0.5556,0.4619,0.5879,0.5556,0.5879,0.5879,0.7071,0.3928,0.5879,0.5556,0.5879,0.5,0.7071,0.5,0.5,0.7071,0.5,0.5879,0.5556,0.5879,0.4619,0.5556,0.6913,0.5,0.7071,0.5,0.4619,0.5556,0.6913,0.3928,0.7071,0.5879,0.3928,0.7071,0.5879,0.4619,0.5556,0.6913,0.3182,0.5556,0.7682,0.3928,0.7071,0.5879,0.3182,0.5556,0.7682,0.2706,0.7071,0.6533,0.2706,0.7071,0.6533,0.3182,0.5556,0.7682,0.1622,0.5556,0.8155,0.2706,0.7071,0.6533,0.1622,0.5556,0.8155,0.1379,0.7071,0.6935,0.1379,0.7071,0.6935,0.1622,0.5556,0.8155,0.0,0.5556,0.8315,0.1379,0.7071,0.6935,0.0,0.5556,0.8315,0.0,0.7071,0.7071,0.0,0.5556,0.8315,0.0,0.3827,0.9239,-0.1802,0.3827,0.9061,0.0,0.5556,0.8315,-0.1802,0.3827,0.9061,-0.1622,0.5556,0.8155,-0.1622,0.5556,0.8155,-0.1802,0.3827,0.9061,-0.3536,0.3827,0.8536,-0.1622,0.5556,0.8155,-0.3536,0.3827,0.8536,-0.3182,0.5556,0.7682,-0.3182,0.5556,0.7682,-0.3536,0.3827,0.8536,-0.5133,0.3827,0.7682,-0.3182,0.5556,0.7682,-0.5133,0.3827,0.7682,-0.4619,0.5556,0.6913,-0.4619,0.5556,0.6913,-0.5133,0.3827,0.7682,-0.6533,0.3827,0.6533,-0.4619,0.5556,0.6913,-0.6533,0.3827,0.6533,-0.5879,0.5556,0.5879,-0.5879,0.5556,0.5879,-0.6533,0.3827,0.6533,-0.7682,0.3827,0.5133,-0.5879,0.5556,0.5879,-0.7682,0.3827,0.5133,-0.6913,0.5556,0.4619,-0.6913,0.5556,0.4619,-0.7682,0.3827,0.5133,-0.8536,0.3827,0.3536,-0.6913,0.5556,0.4619,-0.8536,0.3827,0.3536,-0.7682,0.5556,0.3182,-0.7682,0.5556,0.3182,-0.8536,0.3827,0.3536,-0.9061,0.3827,0.1802,-0.7682,0.5556,0.3182,-0.9061,0.3827,0.1802,-0.8155,0.5556,0.1622,-0.8155,0.5556,0.1622,-0.9061,0.3827,0.1802,-0.9239,0.3827,0.0,-0.8155,0.5556,0.1622,-0.9239,0.3827,0.0,-0.8315,0.5556,0.0,-0.8315,0.5556,0.0,-0.9239,0.3827,0.0,-0.9061,0.3827,-0.1802,-0.8315,0.5556,0.0,-0.9061,0.3827,-0.1802,-0.8155,0.5556,-0.1622,-0.8155,0.5556,-0.1622,-0.9061,0.3827,-0.1802,-0.8536,0.3827,-0.3536,-0.8155,0.5556,-0.1622,-0.8536,0.3827,-0.3536,-0.7682,0.5556,-0.3182,-0.7682,0.5556,-0.3182,-0.8536,0.3827,-0.3536,-0.7682,0.3827,-0.5133,-0.7682,0.5556,-0.3182,-0.7682,0.3827,-0.5133,-0.6913,0.5556,-0.4619,-0.6913,0.5556,-0.4619,-0.7682,0.3827,-0.5133,-0.6533,0.3827,-0.6533,-0.6913,0.5556,-0.4619,-0.6533,0.3827,-0.6533,-0.5879,0.5556,-0.5879,-0.5879,0.5556,-0.5879,-0.6533,0.3827,-0.6533,-0.5133,0.3827,-0.7682,-0.5879,0.5556,-0.5879,-0.5133,0.3827,-0.7682,-0.4619,0.5556,-0.6913,-0.4619,0.5556,-0.6913,-0.5133,0.3827,-0.7682,-0.3536,0.3827,-0.8536,-0.4619,0.5556,-0.6913,-0.3536,0.3827,-0.8536,-0.3182,0.5556,-0.7682,-0.3182,0.5556,-0.7682,-0.3536,0.3827,-0.8536,-0.1802,0.3827,-0.9061,-0.3182,0.5556,-0.7682,-0.1802,0.3827,-0.9061,-0.1622,0.5556,-0.8155,-0.1622,0.5556,-0.8155,-0.1802,0.3827,-0.9061,0.0,0.3827,-0.9239,-0.1622,0.5556,-0.8155,0.0,0.3827,-0.9239,0.0,0.5556,-0.8315,0.0,0.5556,-0.8315,0.0,0.3827,-0.9239,0.1802,0.3827,-0.9061,0.0,0.5556,-0.8315,0.1802,0.3827,-0.9061,0.1622,0.5556,-0.8155,0.1622,0.5556,-0.8155,0.1802,0.3827,-0.9061,0.3536,0.3827,-0.8536,0.1622,0.5556,-0.8155,0.3536,0.3827,-0.8536,0.3182,0.5556,-0.7682,0.3182,0.5556,-0.7682,0.3536,0.3827,-0.8536,0.5133,0.3827,-0.7682,0.3182,0.5556,-0.7682,0.5133,0.3827,-0.7682,0.4619,0.5556,-0.6913,0.4619,0.5556,-0.6913,0.5133,0.3827,-0.7682,0.6533,0.3827,-0.6533,0.4619,0.5556,-0.6913,0.6533,0.3827,-0.6533,0.5879,0.5556,-0.5879,0.5879,0.5556,-0.5879,0.6533,0.3827,-0.6533,0.7682,0.3827,-0.5133,0.5879,0.5556,-0.5879,0.7682,0.3827,-0.5133,0.6913,0.5556,-0.4619,0.6913,0.5556,-0.4619,0.7682,0.3827,-0.5133,0.8536,0.3827,-0.3536,0.6913,0.5556,-0.4619,0.8536,0.3827,-0.3536,0.7682,0.5556,-0.3182,0.7682,0.5556,-0.3182,0.8536,0.3827,-0.3536,0.9061,0.3827,-0.1802,0.7682,0.5556,-0.3182,0.9061,0.3827,-0.1802,0.8155,0.5556,-0.1622,0.8155,0.5556,-0.1622,0.9061,0.3827,-0.1802,0.9239,0.3827,0.0,0.8155,0.5556,-0.1622,0.9239,0.3827,0.0,0.8315,0.5556,0.0,0.8315,0.5556,0.0,0.9239,0.3827,0.0,0.9061,0.3827,0.1802,0.8315,0.5556,0.0,0.9061,0.3827,0.1802,0.8155,0.5556,0.1622,0.8155,0.5556,0.1622,0.9061,0.3827,0.1802,0.8536,0.3827,0.3536,0.8155,0.5556,0.1622,0.8536,0.3827,0.3536,0.7682,0.5556,0.3182,0.7682,0.5556,0.3182,0.8536,0.3827,0.3536,0.7682,0.3827,0.5133,0.7682,0.5556,0.3182,0.7682,0.3827,0.5133,0.6913,0.5556,0.4619,0.6913,0.5556,0.4619,0.7682,0.3827,0.5133,0.6533,0.3827,0.6533,0.6913,0.5556,0.4619,0.6533,0.3827,0.6533,0.5879,0.5556,0.5879,0.5879,0.5556,0.5879,0.6533,0.3827,0.6533,0.5133,0.3827,0.7682,0.5879,0.5556,0.5879,0.5133,0.3827,0.7682,0.4619,0.5556,0.6913,0.4619,0.5556,0.6913,0.5133,0.3827,0.7682,0.3536,0.3827,0.8536,0.4619,0.5556,0.6913,0.3536,0.3827,0.8536,0.3182,0.5556,0.7682,0.3182,0.5556,0.7682,0.3536,0.3827,0.8536,0.1802,0.3827,0.9061,0.3182,0.5556,0.7682,0.1802,0.3827,0.9061,0.1622,0.5556,0.8155,0.1622,0.5556,0.8155,0.1802,0.3827,0.9061,0.0,0.3827,0.9239,0.1622,0.5556,0.8155,0.0,0.3827,0.9239,0.0,0.5556,0.8315,0.0,0.3827,0.9239,0.0,0.1951,0.9808,-0.1913,0.1951,0.9619,0.0,0.3827,0.9239,-0.1913,0.1951,0.9619,-0.1802,0.3827,0.9061,-0.1802,0.3827,0.9061,-0.1913,0.1951,0.9619,-0.3753,0.1951,0.9061,-0.1802,0.3827,0.9061,-0.3753,0.1951,0.9061,-0.3536,0.3827,0.8536,-0.3536,0.3827,0.8536,-0.3753,0.1951,0.9061,-0.5449,0.1951,0.8155,-0.3536,0.3827,0.8536,-0.5449,0.1951,0.8155,-0.5133,0.3827,0.7682,-0.5133,0.3827,0.7682,-0.5449,0.1951,0.8155,-0.6935,0.1951,0.6935,-0.5133,0.3827,0.7682,-0.6935,0.1951,0.6935,-0.6533,0.3827,0.6533,-0.6533,0.3827,0.6533,-0.6935,0.1951,0.6935,-0.8155,0.1951,0.5449,-0.6533,0.3827,0.6533,-0.8155,0.1951,0.5449,-0.7682,0.3827,0.5133,-0.7682,0.3827,0.5133,-0.8155,0.1951,0.5449,-0.9061,0.1951,0.3753,-0.7682,0.3827,0.5133,-0.9061,0.1951,0.3753,-0.8536,0.3827,0.3536,-0.8536,0.3827,0.3536,-0.9061,0.1951,0.3753,-0.9619,0.1951,0.1913,-0.8536,0.3827,0.3536,-0.9619,0.1951,0.1913,-0.9061,0.3827,0.1802,-0.9061,0.3827,0.1802,-0.9619,0.1951,0.1913,-0.9808,0.1951,0.0,-0.9061,0.3827,0.1802,-0.9808,0.1951,0.0,-0.9239,0.3827,0.0,-0.9239,0.3827,0.0,-0.9808,0.1951,0.0,-0.9619,0.1951,-0.1913,-0.9239,0.3827,0.0,-0.9619,0.1951,-0.1913,-0.9061,0.3827,-0.1802,-0.9061,0.3827,-0.1802,-0.9619,0.1951,-0.1913,-0.9061,0.1951,-0.3753,-0.9061,0.3827,-0.1802,-0.9061,0.1951,-0.3753,-0.8536,0.3827,-0.3536,-0.8536,0.3827,-0.3536,-0.9061,0.1951,-0.3753,-0.8155,0.1951,-0.5449,-0.8536,0.3827,-0.3536,-0.8155,0.1951,-0.5449,-0.7682,0.3827,-0.5133,-0.7682,0.3827,-0.5133,-0.8155,0.1951,-0.5449,-0.6935,0.1951,-0.6935,-0.7682,0.3827,-0.5133,-0.6935,0.1951,-0.6935,-0.6533,0.3827,-0.6533,-0.6533,0.3827,-0.6533,-0.6935,0.1951,-0.6935,-0.5449,0.1951,-0.8155,-0.6533,0.3827,-0.6533,-0.5449,0.1951,-0.8155,-0.5133,0.3827,-0.7682,-0.5133,0.3827,-0.7682,-0.5449,0.1951,-0.8155,-0.3753,0.1951,-0.9061,-0.5133,0.3827,-0.7682,-0.3753,0.1951,-0.9061,-0.3536,0.3827,-0.8536,-0.3536,0.3827,-0.8536,-0.3753,0.1951,-0.9061,-0.1913,0.1951,-0.9619,-0.3536,0.3827,-0.8536,-0.1913,0.1951,-0.9619,-0.1802,0.3827,-0.9061,-0.1802,0.3827,-0.9061,-0.1913,0.1951,-0.9619,0.0,0.1951,-0.9808,-0.1802,0.3827,-0.9061,0.0,0.1951,-0.9808,0.0,0.3827,-0.9239,0.0,0.3827,-0.9239,0.0,0.1951,-0.9808,0.1913,0.1951,-0.9619,0.0,0.3827,-0.9239,0.1913,0.1951,-0.9619,0.1802,0.3827,-0.9061,0.1802,0.3827,-0.9061,0.1913,0.1951,-0.9619,0.3753,0.1951,-0.9061,0.1802,0.3827,-0.9061,0.3753,0.1951,-0.9061,0.3536,0.3827,-0.8536,0.3536,0.3827,-0.8536,0.3753,0.1951,-0.9061,0.5449,0.1951,-0.8155,0.3536,0.3827,-0.8536,0.5449,0.1951,-0.8155,0.5133,0.3827,-0.7682,0.5133,0.3827,-0.7682,0.5449,0.1951,-0.8155,0.6935,0.1951,-0.6935,0.5133,0.3827,-0.7682,0.6935,0.1951,-0.6935,0.6533,0.3827,-0.6533,0.6533,0.3827,-0.6533,0.6935,0.1951,-0.6935,0.8155,0.1951,-0.5449,0.6533,0.3827,-0.6533,0.8155,0.1951,-0.5449,0.7682,0.3827,-0.5133,0.7682,0.3827,-0.5133,0.8155,0.1951,-0.5449,0.9061,0.1951,-0.3753,0.7682,0.3827,-0.5133,0.9061,0.1951,-0.3753,0.8536,0.3827,-0.3536,0.8536,0.3827,-0.3536,0.9061,0.1951,-0.3753,0.9619,0.1951,-0.1913,0.8536,0.3827,-0.3536,0.9619,0.1951,-0.1913,0.9061,0.3827,-0.1802,0.9061,0.3827,-0.1802,0.9619,0.1951,-0.1913,0.9808,0.1951,0.0,0.9061,0.3827,-0.1802,0.9808,0.1951,0.0,0.9239,0.3827,0.0,0.9239,0.3827,0.0,0.9808,0.1951,0.0,0.9619,0.1951,0.1913,0.9239,0.3827,0.0,0.9619,0.1951,0.1913,0.9061,0.3827,0.1802,0.9061,0.3827,0.1802,0.9619,0.1951,0.1913,0.9061,0.1951,0.3753,0.9061,0.3827,0.1802,0.9061,0.1951,0.3753,0.8536,0.3827,0.3536,0.8536,0.3827,0.3536,0.9061,0.1951,0.3753,0.8155,0.1951,0.5449,0.8536,0.3827,0.3536,0.8155,0.1951,0.5449,0.7682,0.3827,0.5133,0.7682,0.3827,0.5133,0.8155,0.1951,0.5449,0.6935,0.1951,0.6935,0.7682,0.3827,0.5133,0.6935,0.1951,0.6935,0.6533,0.3827,0.6533,0.6533,0.3827,0.6533,0.6935,0.1951,0.6935,0.5449,0.1951,0.8155,0.6533,0.3827,0.6533,0.5449,0.1951,0.8155,0.5133,0.3827,0.7682,0.5133,0.3827,0.7682,0.5449,0.1951,0.8155,0.3753,0.1951,0.9061,0.5133,0.3827,0.7682,0.3753,0.1951,0.9061,0.3536,0.3827,0.8536,0.3536,0.3827,0.8536,0.3753,0.1951,0.9061,0.1913,0.1951,0.9619,0.3536,0.3827,0.8536,0.1913,0.1951,0.9619,0.1802,0.3827,0.9061,0.1802,0.3827,0.9061,0.1913,0.1951,0.9619,0.0,0.1951,0.9808,0.1802,0.3827,0.9061,0.0,0.1951,0.9808,0.0,0.3827,0.9239,0.0,0.1951,0.9808,0.0,0.0,1.0,-0.1951,0.0,0.9808,0.0,0.1951,0.9808,-0.1951,0.0,0.9808,-0.1913,0.1951,0.9619,-0.1913,0.1951,0.9619,-0.1951,0.0,0.9808,-0.3827,0.0,0.9239,-0.1913,0.1951,0.9619,-0.3827,0.0,0.9239,-0.3753,0.1951,0.9061,-0.3753,0.1951,0.9061,-0.3827,0.0,0.9239,-0.5556,0.0,0.8315,-0.3753,0.1951,0.9061,-0.5556,0.0,0.8315,-0.5449,0.1951,0.8155,-0.5449,0.1951,0.8155,-0.5556,0.0,0.8315,-0.7071,0.0,0.7071,-0.5449,0.1951,0.8155,-0.7071,0.0,0.7071,-0.6935,0.1951,0.6935,-0.6935,0.1951,0.6935,-0.7071,0.0,0.7071,-0.8315,0.0,0.5556,-0.6935,0.1951,0.6935,-0.8315,0.0,0.5556,-0.8155,0.1951,0.5449,-0.8155,0.1951,0.5449,-0.8315,0.0,0.5556,-0.9239,0.0,0.3827,-0.8155,0.1951,0.5449,-0.9239,0.0,0.3827,-0.9061,0.1951,0.3753,-0.9061,0.1951,0.3753,-0.9239,0.0,0.3827,-0.9808,0.0,0.1951,-0.9061,0.1951,0.3753,-0.9808,0.0,0.1951,-0.9619,0.1951,0.1913,-0.9619,0.1951,0.1913,-0.9808,0.0,0.1951,-1.0,0.0,0.0,-0.9619,0.1951,0.1913,-1.0,0.0,0.0,-0.9808,0.1951,0.0,-0.9808,0.1951,0.0,-1.0,0.0,0.0,-0.9808,0.0,-0.1951,-0.9808,0.1951,0.0,-0.9808,0.0,-0.1951,-0.9619,0.1951,-0.1913,-0.9619,0.1951,-0.1913,-0.9808,0.0,-0.1951,-0.9239,0.0,-0.3827,-0.9619,0.1951,-0.1913,-0.9239,0.0,-0.3827,-0.9061,0.1951,-0.3753,-0.9061,0.1951,-0.3753,-0.9239,0.0,-0.3827,-0.8315,0.0,-0.5556,-0.9061,0.1951,-0.3753,-0.8315,0.0,-0.5556,-0.8155,0.1951,-0.5449,-0.8155,0.1951,-0.5449,-0.8315,0.0,-0.5556,-0.7071,0.0,-0.7071,-0.8155,0.1951,-0.5449,-0.7071,0.0,-0.7071,-0.6935,0.1951,-0.6935,-0.6935,0.1951,-0.6935,-0.7071,0.0,-0.7071,-0.5556,0.0,-0.8315,-0.6935,0.1951,-0.6935,-0.5556,0.0,-0.8315,-0.5449,0.1951,-0.8155,-0.5449,0.1951,-0.8155,-0.5556,0.0,-0.8315,-0.3827,0.0,-0.9239,-0.5449,0.1951,-0.8155,-0.3827,0.0,-0.9239,-0.3753,0.1951,-0.9061,-0.3753,0.1951,-0.9061,-0.3827,0.0,-0.9239,-0.1951,0.0,-0.9808,-0.3753,0.1951,-0.9061,-0.1951,0.0,-0.9808,-0.1913,0.1951,-0.9619,-0.1913,0.1951,-0.9619,-0.1951,0.0,-0.9808,0.0,0.0,-1.0,-0.1913,0.1951,-0.9619,0.0,0.0,-1.0,0.0,0.1951,-0.9808,0.0,0.1951,-0.9808,0.0,0.0,-1.0,0.1951,0.0,-0.9808,0.0,0.1951,-0.9808,0.1951,0.0,-0.9808,0.1913,0.1951,-0.9619,0.1913,0.1951,-0.9619,0.1951,0.0,-0.9808,0.3827,0.0,-0.9239,0.1913,0.1951,-0.9619,0.3827,0.0,-0.9239,0.3753,0.1951,-0.9061,0.3753,0.1951,-0.9061,0.3827,0.0,-0.9239,0.5556,0.0,-0.8315,0.3753,0.1951,-0.9061,0.5556,0.0,-0.8315,0.5449,0.1951,-0.8155,0.5449,0.1951,-0.8155,0.5556,0.0,-0.8315,0.7071,0.0,-0.7071,0.5449,0.1951,-0.8155,0.7071,0.0,-0.7071,0.6935,0.1951,-0.6935,0.6935,0.1951,-0.6935,0.7071,0.0,-0.7071,0.8315,0.0,-0.5556,0.6935,0.1951,-0.6935,0.8315,0.0,-0.5556,0.8155,0.1951,-0.5449,0.8155,0.1951,-0.5449,0.8315,0.0,-0.5556,0.9239,0.0,-0.3827,0.8155,0.1951,-0.5449,0.9239,0.0,-0.3827,0.9061,0.1951,-0.3753,0.9061,0.1951,-0.3753,0.9239,0.0,-0.3827,0.9808,0.0,-0.1951,0.9061,0.1951,-0.3753,0.9808,0.0,-0.1951,0.9619,0.1951,-0.1913,0.9619,0.1951,-0.1913,0.9808,0.0,-0.1951,1.0,0.0,0.0,0.9619,0.1951,-0.1913,1.0,0.0,0.0,0.9808,0.1951,0.0,0.9808,0.1951,0.0,1.0,0.0,0.0,0.9808,0.0,0.1951,0.9808,0.1951,0.0,0.9808,0.0,0.1951,0.9619,0.1951,0.1913,0.9619,0.1951,0.1913,0.9808,0.0,0.1951,0.9239,0.0,0.3827,0.9619,0.1951,0.1913,0.9239,0.0,0.3827,0.9061,0.1951,0.3753,0.9061,0.1951,0.3753,0.9239,0.0,0.3827,0.8315,0.0,0.5556,0.9061,0.1951,0.3753,0.8315,0.0,0.5556,0.8155,0.1951,0.5449,0.8155,0.1951,0.5449,0.8315,0.0,0.5556,0.7071,0.0,0.7071,0.8155,0.1951,0.5449,0.7071,0.0,0.7071,0.6935,0.1951,0.6935,0.6935,0.1951,0.6935,0.7071,0.0,0.7071,0.5556,0.0,0.8315,0.6935,0.1951,0.6935,0.5556,0.0,0.8315,0.5449,0.1951,0.8155,0.5449,0.1951,0.8155,0.5556,0.0,0.8315,0.3827,0.0,0.9239,0.5449,0.1951,0.8155,0.3827,0.0,0.9239,0.3753,0.1951,0.9061,0.3753,0.1951,0.9061,0.3827,0.0,0.9239,0.1951,0.0,0.9808,0.3753,0.1951,0.9061,0.1951,0.0,0.9808,0.1913,0.1951,0.9619,0.1913,0.1951,0.9619,0.1951,0.0,0.9808,0.0,0.0,1.0,0.1913,0.1951,0.9619,0.0,0.0,1.0,0.0,0.1951,0.9808,0.0,0.0,1.0,0.0,-0.1951,0.9808,-0.1913,-0.1951,0.9619,0.0,0.0,1.0,-0.1913,-0.1951,0.9619,-0.1951,0.0,0.9808,-0.1951,0.0,0.9808,-0.1913,-0.1951,0.9619,-0.3753,-0.1951,0.9061,-0.1951,0.0,0.9808,-0.3753,-0.1951,0.9061,-0.3827,0.0,0.9239,-0.3827,0.0,0.9239,-0.3753,-0.1951,0.9061,-0.5449,-0.1951,0.8155,-0.3827,0.0,0.9239,-0.5449,-0.1951,0.8155,-0.5556,0.0,0.8315,-0.5556,0.0,0.8315,-0.5449,-0.1951,0.8155,-0.6935,-0.1951,0.6935,-0.5556,0.0,0.8315,-0.6935,-0.1951,0.6935,-0.7071,0.0,0.7071,-0.7071,0.0,0.7071,-0.6935,-0.1951,0.6935,-0.8155,-0.1951,0.5449,-0.7071,0.0,0.7071,-0.8155,-0.1951,0.5449,-0.8315,0.0,0.5556,-0.8315,0.0,0.5556,-0.8155,-0.1951,0.5449,-0.9061,-0.1951,0.3753,-0.8315,0.0,0.5556,-0.9061,-0.1951,0.3753,-0.9239,0.0,0.3827,-0.9239,0.0,0.3827,-0.9061,-0.1951,0.3753,-0.9619,-0.1951,0.1913,-0.9239,0.0,0.3827,-0.9619,-0.1951,0.1913,-0.9808,0.0,0.1951,-0.9808,0.0,0.1951,-0.9619,-0.1951,0.1913,-0.9808,-0.1951,0.0,-0.9808,0.0,0.1951,-0.9808,-0.1951,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-0.9808,-0.1951,0.0,-0.9619,-0.1951,-0.1913,-1.0,0.0,0.0,-0.9619,-0.1951,-0.1913,-0.9808,0.0,-0.1951,-0.9808,0.0,-0.1951,-0.9619,-0.1951,-0.1913,-0.9061,-0.1951,-0.3753,-0.9808,0.0,-0.1951,-0.9061,-0.1951,-0.3753,-0.9239,0.0,-0.3827,-0.9239,0.0,-0.3827,-0.9061,-0.1951,-0.3753,-0.8155,-0.1951,-0.5449,-0.9239,0.0,-0.3827,-0.8155,-0.1951,-0.5449,-0.8315,0.0,-0.5556,-0.8315,0.0,-0.5556,-0.8155,-0.1951,-0.5449,-0.6935,-0.1951,-0.6935,-0.8315,0.0,-0.5556,-0.6935,-0.1951,-0.6935,-0.7071,0.0,-0.7071,-0.7071,0.0,-0.7071,-0.6935,-0.1951,-0.6935,-0.5449,-0.1951,-0.8155,-0.7071,0.0,-0.7071,-0.5449,-0.1951,-0.8155,-0.5556,0.0,-0.8315,-0.5556,0.0,-0.8315,-0.5449,-0.1951,-0.8155,-0.3753,-0.1951,-0.9061,-0.5556,0.0,-0.8315,-0.3753,-0.1951,-0.9061,-0.3827,0.0,-0.9239,-0.3827,0.0,-0.9239,-0.3753,-0.1951,-0.9061,-0.1913,-0.1951,-0.9619,-0.3827,0.0,-0.9239,-0.1913,-0.1951,-0.9619,-0.1951,0.0,-0.9808,-0.1951,0.0,-0.9808,-0.1913,-0.1951,-0.9619,0.0,-0.1951,-0.9808,-0.1951,0.0,-0.9808,0.0,-0.1951,-0.9808,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,-0.1951,-0.9808,0.1913,-0.1951,-0.9619,0.0,0.0,-1.0,0.1913,-0.1951,-0.9619,0.1951,0.0,-0.9808,0.1951,0.0,-0.9808,0.1913,-0.1951,-0.9619,0.3753,-0.1951,-0.9061,0.1951,0.0,-0.9808,0.3753,-0.1951,-0.9061,0.3827,0.0,-0.9239,0.3827,0.0,-0.9239,0.3753,-0.1951,-0.9061,0.5449,-0.1951,-0.8155,0.3827,0.0,-0.9239,0.5449,-0.1951,-0.8155,0.5556,0.0,-0.8315,0.5556,0.0,-0.8315,0.5449,-0.1951,-0.8155,0.6935,-0.1951,-0.6935,0.5556,0.0,-0.8315,0.6935,-0.1951,-0.6935,0.7071,0.0,-0.7071,0.7071,0.0,-0.7071,0.6935,-0.1951,-0.6935,0.8155,-0.1951,-0.5449,0.7071,0.0,-0.7071,0.8155,-0.1951,-0.5449,0.8315,0.0,-0.5556,0.8315,0.0,-0.5556,0.8155,-0.1951,-0.5449,0.9061,-0.1951,-0.3753,0.8315,0.0,-0.5556,0.9061,-0.1951,-0.3753,0.9239,0.0,-0.3827,0.9239,0.0,-0.3827,0.9061,-0.1951,-0.3753,0.9619,-0.1951,-0.1913,0.9239,0.0,-0.3827,0.9619,-0.1951,-0.1913,0.9808,0.0,-0.1951,0.9808,0.0,-0.1951,0.9619,-0.1951,-0.1913,0.9808,-0.1951,0.0,0.9808,0.0,-0.1951,0.9808,-0.1951,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.9808,-0.1951,0.0,0.9619,-0.1951,0.1913,1.0,0.0,0.0,0.9619,-0.1951,0.1913,0.9808,0.0,0.1951,0.9808,0.0,0.1951,0.9619,-0.1951,0.1913,0.9061,-0.1951,0.3753,0.9808,0.0,0.1951,0.9061,-0.1951,0.3753,0.9239,0.0,0.3827,0.9239,0.0,0.3827,0.9061,-0.1951,0.3753,0.8155,-0.1951,0.5449,0.9239,0.0,0.3827,0.8155,-0.1951,0.5449,0.8315,0.0,0.5556,0.8315,0.0,0.5556,0.8155,-0.1951,0.5449,0.6935,-0.1951,0.6935,0.8315,0.0,0.5556,0.6935,-0.1951,0.6935,0.7071,0.0,0.7071,0.7071,0.0,0.7071,0.6935,-0.1951,0.6935,0.5449,-0.1951,0.8155,0.7071,0.0,0.7071,0.5449,-0.1951,0.8155,0.5556,0.0,0.8315,0.5556,0.0,0.8315,0.5449,-0.1951,0.8155,0.3753,-0.1951,0.9061,0.5556,0.0,0.8315,0.3753,-0.1951,0.9061,0.3827,0.0,0.9239,0.3827,0.0,0.9239,0.3753,-0.1951,0.9061,0.1913,-0.1951,0.9619,0.3827,0.0,0.9239,0.1913,-0.1951,0.9619,0.1951,0.0,0.9808,0.1951,0.0,0.9808,0.1913,-0.1951,0.9619,0.0,-0.1951,0.9808,0.1951,0.0,0.9808,0.0,-0.1951,0.9808,0.0,0.0,1.0,0.0,-0.1951,0.9808,0.0,-0.3827,0.9239,-0.1802,-0.3827,0.9061,0.0,-0.1951,0.9808,-0.1802,-0.3827,0.9061,-0.1913,-0.1951,0.9619,-0.1913,-0.1951,0.9619,-0.1802,-0.3827,0.9061,-0.3536,-0.3827,0.8536,-0.1913,-0.1951,0.9619,-0.3536,-0.3827,0.8536,-0.3753,-0.1951,0.9061,-0.3753,-0.1951,0.9061,-0.3536,-0.3827,0.8536,-0.5133,-0.3827,0.7682,-0.3753,-0.1951,0.9061,-0.5133,-0.3827,0.7682,-0.5449,-0.1951,0.8155,-0.5449,-0.1951,0.8155,-0.5133,-0.3827,0.7682,-0.6533,-0.3827,0.6533,-0.5449,-0.1951,0.8155,-0.6533,-0.3827,0.6533,-0.6935,-0.1951,0.6935,-0.6935,-0.1951,0.6935,-0.6533,-0.3827,0.6533,-0.7682,-0.3827,0.5133,-0.6935,-0.1951,0.6935,-0.7682,-0.3827,0.5133,-0.8155,-0.1951,0.5449,-0.8155,-0.1951,0.5449,-0.7682,-0.3827,0.5133,-0.8536,-0.3827,0.3536,-0.8155,-0.1951,0.5449,-0.8536,-0.3827,0.3536,-0.9061,-0.1951,0.3753,-0.9061,-0.1951,0.3753,-0.8536,-0.3827,0.3536,-0.9061,-0.3827,0.1802,-0.9061,-0.1951,0.3753,-0.9061,-0.3827,0.1802,-0.9619,-0.1951,0.1913,-0.9619,-0.1951,0.1913,-0.9061,-0.3827,0.1802,-0.9239,-0.3827,0.0,-0.9619,-0.1951,0.1913,-0.9239,-0.3827,0.0,-0.9808,-0.1951,0.0,-0.9808,-0.1951,0.0,-0.9239,-0.3827,0.0,-0.9061,-0.3827,-0.1802,-0.9808,-0.1951,0.0,-0.9061,-0.3827,-0.1802,-0.9619,-0.1951,-0.1913,-0.9619,-0.1951,-0.1913,-0.9061,-0.3827,-0.1802,-0.8536,-0.3827,-0.3536,-0.9619,-0.1951,-0.1913,-0.8536,-0.3827,-0.3536,-0.9061,-0.1951,-0.3753,-0.9061,-0.1951,-0.3753,-0.8536,-0.3827,-0.3536,-0.7682,-0.3827,-0.5133,-0.9061,-0.1951,-0.3753,-0.7682,-0.3827,-0.5133,-0.8155,-0.1951,-0.5449,-0.8155,-0.1951,-0.5449,-0.7682,-0.3827,-0.5133,-0.6533,-0.3827,-0.6533,-0.8155,-0.1951,-0.5449,-0.6533,-0.3827,-0.6533,-0.6935,-0.1951,-0.6935,-0.6935,-0.1951,-0.6935,-0.6533,-0.3827,-0.6533,-0.5133,-0.3827,-0.7682,-0.6935,-0.1951,-0.6935,-0.5133,-0.3827,-0.7682,-0.5449,-0.1951,-0.8155,-0.5449,-0.1951,-0.8155,-0.5133,-0.3827,-0.7682,-0.3536,-0.3827,-0.8536,-0.5449,-0.1951,-0.8155,-0.3536,-0.3827,-0.8536,-0.3753,-0.1951,-0.9061,-0.3753,-0.1951,-0.9061,-0.3536,-0.3827,-0.8536,-0.1802,-0.3827,-0.9061,-0.3753,-0.1951,-0.9061,-0.1802,-0.3827,-0.9061,-0.1913,-0.1951,-0.9619,-0.1913,-0.1951,-0.9619,-0.1802,-0.3827,-0.9061,0.0,-0.3827,-0.9239,-0.1913,-0.1951,-0.9619,0.0,-0.3827,-0.9239,0.0,-0.1951,-0.9808,0.0,-0.1951,-0.9808,0.0,-0.3827,-0.9239,0.1802,-0.3827,-0.9061,0.0,-0.1951,-0.9808,0.1802,-0.3827,-0.9061,0.1913,-0.1951,-0.9619,0.1913,-0.1951,-0.9619,0.1802,-0.3827,-0.9061,0.3536,-0.3827,-0.8536,0.1913,-0.1951,-0.9619,0.3536,-0.3827,-0.8536,0.3753,-0.1951,-0.9061,0.3753,-0.1951,-0.9061,0.3536,-0.3827,-0.8536,0.5133,-0.3827,-0.7682,0.3753,-0.1951,-0.9061,0.5133,-0.3827,-0.7682,0.5449,-0.1951,-0.8155,0.5449,-0.1951,-0.8155,0.5133,-0.3827,-0.7682,0.6533,-0.3827,-0.6533,0.5449,-0.1951,-0.8155,0.6533,-0.3827,-0.6533,0.6935,-0.1951,-0.6935,0.6935,-0.1951,-0.6935,0.6533,-0.3827,-0.6533,0.7682,-0.3827,-0.5133,0.6935,-0.1951,-0.6935,0.7682,-0.3827,-0.5133,0.8155,-0.1951,-0.5449,0.8155,-0.1951,-0.5449,0.7682,-0.3827,-0.5133,0.8536,-0.3827,-0.3536,0.8155,-0.1951,-0.5449,0.8536,-0.3827,-0.3536,0.9061,-0.1951,-0.3753,0.9061,-0.1951,-0.3753,0.8536,-0.3827,-0.3536,0.9061,-0.3827,-0.1802,0.9061,-0.1951,-0.3753,0.9061,-0.3827,-0.1802,0.9619,-0.1951,-0.1913,0.9619,-0.1951,-0.1913,0.9061,-0.3827,-0.1802,0.9239,-0.3827,0.0,0.9619,-0.1951,-0.1913,0.9239,-0.3827,0.0,0.9808,-0.1951,0.0,0.9808,-0.1951,0.0,0.9239,-0.3827,0.0,0.9061,-0.3827,0.1802,0.9808,-0.1951,0.0,0.9061,-0.3827,0.1802,0.9619,-0.1951,0.1913,0.9619,-0.1951,0.1913,0.9061,-0.3827,0.1802,0.8536,-0.3827,0.3536,0.9619,-0.1951,0.1913,0.8536,-0.3827,0.3536,0.9061,-0.1951,0.3753,0.9061,-0.1951,0.3753,0.8536,-0.3827,0.3536,0.7682,-0.3827,0.5133,0.9061,-0.1951,0.3753,0.7682,-0.3827,0.5133,0.8155,-0.1951,0.5449,0.8155,-0.1951,0.5449,0.7682,-0.3827,0.5133,0.6533,-0.3827,0.6533,0.8155,-0.1951,0.5449,0.6533,-0.3827,0.6533,0.6935,-0.1951,0.6935,0.6935,-0.1951,0.6935,0.6533,-0.3827,0.6533,0.5133,-0.3827,0.7682,0.6935,-0.1951,0.6935,0.5133,-0.3827,0.7682,0.5449,-0.1951,0.8155,0.5449,-0.1951,0.8155,0.5133,-0.3827,0.7682,0.3536,-0.3827,0.8536,0.5449,-0.1951,0.8155,0.3536,-0.3827,0.8536,0.3753,-0.1951,0.9061,0.3753,-0.1951,0.9061,0.3536,-0.3827,0.8536,0.1802,-0.3827,0.9061,0.3753,-0.1951,0.9061,0.1802,-0.3827,0.9061,0.1913,-0.1951,0.9619,0.1913,-0.1951,0.9619,0.1802,-0.3827,0.9061,0.0,-0.3827,0.9239,0.1913,-0.1951,0.9619,0.0,-0.3827,0.9239,0.0,-0.1951,0.9808,0.0,-0.3827,0.9239,0.0,-0.5556,0.8315,-0.1622,-0.5556,0.8155,0.0,-0.3827,0.9239,-0.1622,-0.5556,0.8155,-0.1802,-0.3827,0.9061,-0.1802,-0.3827,0.9061,-0.1622,-0.5556,0.8155,-0.3182,-0.5556,0.7682,-0.1802,-0.3827,0.9061,-0.3182,-0.5556,0.7682,-0.3536,-0.3827,0.8536,-0.3536,-0.3827,0.8536,-0.3182,-0.5556,0.7682,-0.4619,-0.5556,0.6913,-0.3536,-0.3827,0.8536,-0.4619,-0.5556,0.6913,-0.5133,-0.3827,0.7682,-0.5133,-0.3827,0.7682,-0.4619,-0.5556,0.6913,-0.5879,-0.5556,0.5879,-0.5133,-0.3827,0.7682,-0.5879,-0.5556,0.5879,-0.6533,-0.3827,0.6533,-0.6533,-0.3827,0.6533,-0.5879,-0.5556,0.5879,-0.6913,-0.5556,0.4619,-0.6533,-0.3827,0.6533,-0.6913,-0.5556,0.4619,-0.7682,-0.3827,0.5133,-0.7682,-0.3827,0.5133,-0.6913,-0.5556,0.4619,-0.7682,-0.5556,0.3182,-0.7682,-0.3827,0.5133,-0.7682,-0.5556,0.3182,-0.8536,-0.3827,0.3536,-0.8536,-0.3827,0.3536,-0.7682,-0.5556,0.3182,-0.8155,-0.5556,0.1622,-0.8536,-0.3827,0.3536,-0.8155,-0.5556,0.1622,-0.9061,-0.3827,0.1802,-0.9061,-0.3827,0.1802,-0.8155,-0.5556,0.1622,-0.8315,-0.5556,0.0,-0.9061,-0.3827,0.1802,-0.8315,-0.5556,0.0,-0.9239,-0.3827,0.0,-0.9239,-0.3827,0.0,-0.8315,-0.5556,0.0,-0.8155,-0.5556,-0.1622,-0.9239,-0.3827,0.0,-0.8155,-0.5556,-0.1622,-0.9061,-0.3827,-0.1802,-0.9061,-0.3827,-0.1802,-0.8155,-0.5556,-0.1622,-0.7682,-0.5556,-0.3182,-0.9061,-0.3827,-0.1802,-0.7682,-0.5556,-0.3182,-0.8536,-0.3827,-0.3536,-0.8536,-0.3827,-0.3536,-0.7682,-0.5556,-0.3182,-0.6913,-0.5556,-0.4619,-0.8536,-0.3827,-0.3536,-0.6913,-0.5556,-0.4619,-0.7682,-0.3827,-0.5133,-0.7682,-0.3827,-0.5133,-0.6913,-0.5556,-0.4619,-0.5879,-0.5556,-0.5879,-0.7682,-0.3827,-0.5133,-0.5879,-0.5556,-0.5879,-0.6533,-0.3827,-0.6533,-0.6533,-0.3827,-0.6533,-0.5879,-0.5556,-0.5879,-0.4619,-0.5556,-0.6913,-0.6533,-0.3827,-0.6533,-0.4619,-0.5556,-0.6913,-0.5133,-0.3827,-0.7682,-0.5133,-0.3827,-0.7682,-0.4619,-0.5556,-0.6913,-0.3182,-0.5556,-0.7682,-0.5133,-0.3827,-0.7682,-0.3182,-0.5556,-0.7682,-0.3536,-0.3827,-0.8536,-0.3536,-0.3827,-0.8536,-0.3182,-0.5556,-0.7682,-0.1622,-0.5556,-0.8155,-0.3536,-0.3827,-0.8536,-0.1622,-0.5556,-0.8155,-0.1802,-0.3827,-0.9061,-0.1802,-0.3827,-0.9061,-0.1622,-0.5556,-0.8155,0.0,-0.5556,-0.8315,-0.1802,-0.3827,-0.9061,0.0,-0.5556,-0.8315,0.0,-0.3827,-0.9239,0.0,-0.3827,-0.9239,0.0,-0.5556,-0.8315,0.1622,-0.5556,-0.8155,0.0,-0.3827,-0.9239,0.1622,-0.5556,-0.8155,0.1802,-0.3827,-0.9061,0.1802,-0.3827,-0.9061,0.1622,-0.5556,-0.8155,0.3182,-0.5556,-0.7682,0.1802,-0.3827,-0.9061,0.3182,-0.5556,-0.7682,0.3536,-0.3827,-0.8536,0.3536,-0.3827,-0.8536,0.3182,-0.5556,-0.7682,0.4619,-0.5556,-0.6913,0.3536,-0.3827,-0.8536,0.4619,-0.5556,-0.6913,0.5133,-0.3827,-0.7682,0.5133,-0.3827,-0.7682,0.4619,-0.5556,-0.6913,0.5879,-0.5556,-0.5879,0.5133,-0.3827,-0.7682,0.5879,-0.5556,-0.5879,0.6533,-0.3827,-0.6533,0.6533,-0.3827,-0.6533,0.5879,-0.5556,-0.5879,0.6913,-0.5556,-0.4619,0.6533,-0.3827,-0.6533,0.6913,-0.5556,-0.4619,0.7682,-0.3827,-0.5133,0.7682,-0.3827,-0.5133,0.6913,-0.5556,-0.4619,0.7682,-0.5556,-0.3182,0.7682,-0.3827,-0.5133,0.7682,-0.5556,-0.3182,0.8536,-0.3827,-0.3536,0.8536,-0.3827,-0.3536,0.7682,-0.5556,-0.3182,0.8155,-0.5556,-0.1622,0.8536,-0.3827,-0.3536,0.8155,-0.5556,-0.1622,0.9061,-0.3827,-0.1802,0.9061,-0.3827,-0.1802,0.8155,-0.5556,-0.1622,0.8315,-0.5556,0.0,0.9061,-0.3827,-0.1802,0.8315,-0.5556,0.0,0.9239,-0.3827,0.0,0.9239,-0.3827,0.0,0.8315,-0.5556,0.0,0.8155,-0.5556,0.1622,0.9239,-0.3827,0.0,0.8155,-0.5556,0.1622,0.9061,-0.3827,0.1802,0.9061,-0.3827,0.1802,0.8155,-0.5556,0.1622,0.7682,-0.5556,0.3182,0.9061,-0.3827,0.1802,0.7682,-0.5556,0.3182,0.8536,-0.3827,0.3536,0.8536,-0.3827,0.3536,0.7682,-0.5556,0.3182,0.6913,-0.5556,0.4619,0.8536,-0.3827,0.3536,0.6913,-0.5556,0.4619,0.7682,-0.3827,0.5133,0.7682,-0.3827,0.5133,0.6913,-0.5556,0.4619,0.5879,-0.5556,0.5879,0.7682,-0.3827,0.5133,0.5879,-0.5556,0.5879,0.6533,-0.3827,0.6533,0.6533,-0.3827,0.6533,0.5879,-0.5556,0.5879,0.4619,-0.5556,0.6913,0.6533,-0.3827,0.6533,0.4619,-0.5556,0.6913,0.5133,-0.3827,0.7682,0.5133,-0.3827,0.7682,0.4619,-0.5556,0.6913,0.3182,-0.5556,0.7682,0.5133,-0.3827,0.7682,0.3182,-0.5556,0.7682,0.3536,-0.3827,0.8536,0.3536,-0.3827,0.8536,0.3182,-0.5556,0.7682,0.1622,-0.5556,0.8155,0.3536,-0.3827,0.8536,0.1622,-0.5556,0.8155,0.1802,-0.3827,0.9061,0.1802,-0.3827,0.9061,0.1622,-0.5556,0.8155,0.0,-0.5556,0.8315,0.1802,-0.3827,0.9061,0.0,-0.5556,0.8315,0.0,-0.3827,0.9239,0.0,-0.5556,0.8315,0.0,-0.7071,0.7071,-0.1379,-0.7071,0.6935,0.0,-0.5556,0.8315,-0.1379,-0.7071,0.6935,-0.1622,-0.5556,0.8155,-0.1622,-0.5556,0.8155,-0.1379,-0.7071,0.6935,-0.2706,-0.7071,0.6533,-0.1622,-0.5556,0.8155,-0.2706,-0.7071,0.6533,-0.3182,-0.5556,0.7682,-0.3182,-0.5556,0.7682,-0.2706,-0.7071,0.6533,-0.3928,-0.7071,0.5879,-0.3182,-0.5556,0.7682,-0.3928,-0.7071,0.5879,-0.4619,-0.5556,0.6913,-0.4619,-0.5556,0.6913,-0.3928,-0.7071,0.5879,-0.5,-0.7071,0.5,-0.4619,-0.5556,0.6913,-0.5,-0.7071,0.5,-0.5879,-0.5556,0.5879,-0.5879,-0.5556,0.5879,-0.5,-0.7071,0.5,-0.5879,-0.7071,0.3928,-0.5879,-0.5556,0.5879,-0.5879,-0.7071,0.3928,-0.6913,-0.5556,0.4619,-0.6913,-0.5556,0.4619,-0.5879,-0.7071,0.3928,-0.6533,-0.7071,0.2706,-0.6913,-0.5556,0.4619,-0.6533,-0.7071,0.2706,-0.7682,-0.5556,0.3182,-0.7682,-0.5556,0.3182,-0.6533,-0.7071,0.2706,-0.6935,-0.7071,0.1379,-0.7682,-0.5556,0.3182,-0.6935,-0.7071,0.1379,-0.8155,-0.5556,0.1622,-0.8155,-0.5556,0.1622,-0.6935,-0.7071,0.1379,-0.7071,-0.7071,0.0,-0.8155,-0.5556,0.1622,-0.7071,-0.7071,0.0,-0.8315,-0.5556,0.0,-0.8315,-0.5556,0.0,-0.7071,-0.7071,0.0,-0.6935,-0.7071,-0.1379,-0.8315,-0.5556,0.0,-0.6935,-0.7071,-0.1379,-0.8155,-0.5556,-0.1622,-0.8155,-0.5556,-0.1622,-0.6935,-0.7071,-0.1379,-0.6533,-0.7071,-0.2706,-0.8155,-0.5556,-0.1622,-0.6533,-0.7071,-0.2706,-0.7682,-0.5556,-0.3182,-0.7682,-0.5556,-0.3182,-0.6533,-0.7071,-0.2706,-0.5879,-0.7071,-0.3928,-0.7682,-0.5556,-0.3182,-0.5879,-0.7071,-0.3928,-0.6913,-0.5556,-0.4619,-0.6913,-0.5556,-0.4619,-0.5879,-0.7071,-0.3928,-0.5,-0.7071,-0.5,-0.6913,-0.5556,-0.4619,-0.5,-0.7071,-0.5,-0.5879,-0.5556,-0.5879,-0.5879,-0.5556,-0.5879,-0.5,-0.7071,-0.5,-0.3928,-0.7071,-0.5879,-0.5879,-0.5556,-0.5879,-0.3928,-0.7071,-0.5879,-0.4619,-0.5556,-0.6913,-0.4619,-0.5556,-0.6913,-0.3928,-0.7071,-0.5879,-0.2706,-0.7071,-0.6533,-0.4619,-0.5556,-0.6913,-0.2706,-0.7071,-0.6533,-0.3182,-0.5556,-0.7682,-0.3182,-0.5556,-0.7682,-0.2706,-0.7071,-0.6533,-0.1379,-0.7071,-0.6935,-0.3182,-0.5556,-0.7682,-0.1379,-0.7071,-0.6935,-0.1622,-0.5556,-0.8155,-0.1622,-0.5556,-0.8155,-0.1379,-0.7071,-0.6935,0.0,-0.7071,-0.7071,-0.1622,-0.5556,-0.8155,0.0,-0.7071,-0.7071,0.0,-0.5556,-0.8315,0.0,-0.5556,-0.8315,0.0,-0.7071,-0.7071,0.138,-0.7071,-0.6935,0.0,-0.5556,-0.8315,0.138,-0.7071,-0.6935,0.1622,-0.5556,-0.8155,0.1622,-0.5556,-0.8155,0.138,-0.7071,-0.6935,0.2706,-0.7071,-0.6533,0.1622,-0.5556,-0.8155,0.2706,-0.7071,-0.6533,0.3182,-0.5556,-0.7682,0.3182,-0.5556,-0.7682,0.2706,-0.7071,-0.6533,0.3928,-0.7071,-0.5879,0.3182,-0.5556,-0.7682,0.3928,-0.7071,-0.5879,0.4619,-0.5556,-0.6913,0.4619,-0.5556,-0.6913,0.3928,-0.7071,-0.5879,0.5,-0.7071,-0.5,0.4619,-0.5556,-0.6913,0.5,-0.7071,-0.5,0.5879,-0.5556,-0.5879,0.5879,-0.5556,-0.5879,0.5,-0.7071,-0.5,0.5879,-0.7071,-0.3928,0.5879,-0.5556,-0.5879,0.5879,-0.7071,-0.3928,0.6913,-0.5556,-0.4619,0.6913,-0.5556,-0.4619,0.5879,-0.7071,-0.3928,0.6533,-0.7071,-0.2706,0.6913,-0.5556,-0.4619,0.6533,-0.7071,-0.2706,0.7682,-0.5556,-0.3182,0.7682,-0.5556,-0.3182,0.6533,-0.7071,-0.2706,0.6935,-0.7071,-0.1379,0.7682,-0.5556,-0.3182,0.6935,-0.7071,-0.1379,0.8155,-0.5556,-0.1622,0.8155,-0.5556,-0.1622,0.6935,-0.7071,-0.1379,0.7071,-0.7071,0.0,0.8155,-0.5556,-0.1622,0.7071,-0.7071,0.0,0.8315,-0.5556,0.0,0.8315,-0.5556,0.0,0.7071,-0.7071,0.0,0.6935,-0.7071,0.138,0.8315,-0.5556,0.0,0.6935,-0.7071,0.138,0.8155,-0.5556,0.1622,0.8155,-0.5556,0.1622,0.6935,-0.7071,0.138,0.6533,-0.7071,0.2706,0.8155,-0.5556,0.1622,0.6533,-0.7071,0.2706,0.7682,-0.5556,0.3182,0.7682,-0.5556,0.3182,0.6533,-0.7071,0.2706,0.5879,-0.7071,0.3928,0.7682,-0.5556,0.3182,0.5879,-0.7071,0.3928,0.6913,-0.5556,0.4619,0.6913,-0.5556,0.4619,0.5879,-0.7071,0.3928,0.5,-0.7071,0.5,0.6913,-0.5556,0.4619,0.5,-0.7071,0.5,0.5879,-0.5556,0.5879,0.5879,-0.5556,0.5879,0.5,-0.7071,0.5,0.3928,-0.7071,0.5879,0.5879,-0.5556,0.5879,0.3928,-0.7071,0.5879,0.4619,-0.5556,0.6913,0.4619,-0.5556,0.6913,0.3928,-0.7071,0.5879,0.2706,-0.7071,0.6533,0.4619,-0.5556,0.6913,0.2706,-0.7071,0.6533,0.3182,-0.5556,0.7682,0.3182,-0.5556,0.7682,0.2706,-0.7071,0.6533,0.1379,-0.7071,0.6935,0.3182,-0.5556,0.7682,0.1379,-0.7071,0.6935,0.1622,-0.5556,0.8155,0.1622,-0.5556,0.8155,0.1379,-0.7071,0.6935,0.0,-0.7071,0.7071,0.1622,-0.5556,0.8155,0.0,-0.7071,0.7071,0.0,-0.5556,0.8315,0.0,-0.7071,0.7071,0.0,-0.8315,0.5556,-0.1084,-0.8315,0.5449,0.0,-0.7071,0.7071,-0.1084,-0.8315,0.5449,-0.1379,-0.7071,0.6935,-0.1379,-0.7071,0.6935,-0.1084,-0.8315,0.5449,-0.2126,-0.8315,0.5133,-0.1379,-0.7071,0.6935,-0.2126,-0.8315,0.5133,-0.2706,-0.7071,0.6533,-0.2706,-0.7071,0.6533,-0.2126,-0.8315,0.5133,-0.3087,-0.8315,0.4619,-0.2706,-0.7071,0.6533,-0.3087,-0.8315,0.4619,-0.3928,-0.7071,0.5879,-0.3928,-0.7071,0.5879,-0.3087,-0.8315,0.4619,-0.3928,-0.8315,0.3928,-0.3928,-0.7071,0.5879,-0.3928,-0.8315,0.3928,-0.5,-0.7071,0.5,-0.5,-0.7071,0.5,-0.3928,-0.8315,0.3928,-0.4619,-0.8315,0.3087,-0.5,-0.7071,0.5,-0.4619,-0.8315,0.3087,-0.5879,-0.7071,0.3928,-0.5879,-0.7071,0.3928,-0.4619,-0.8315,0.3087,-0.5133,-0.8315,0.2126,-0.5879,-0.7071,0.3928,-0.5133,-0.8315,0.2126,-0.6533,-0.7071,0.2706,-0.6533,-0.7071,0.2706,-0.5133,-0.8315,0.2126,-0.5449,-0.8315,0.1084,-0.6533,-0.7071,0.2706,-0.5449,-0.8315,0.1084,-0.6935,-0.7071,0.1379,-0.6935,-0.7071,0.1379,-0.5449,-0.8315,0.1084,-0.5556,-0.8315,0.0,-0.6935,-0.7071,0.1379,-0.5556,-0.8315,0.0,-0.7071,-0.7071,0.0,-0.7071,-0.7071,0.0,-0.5556,-0.8315,0.0,-0.5449,-0.8315,-0.1084,-0.7071,-0.7071,0.0,-0.5449,-0.8315,-0.1084,-0.6935,-0.7071,-0.1379,-0.6935,-0.7071,-0.1379,-0.5449,-0.8315,-0.1084,-0.5133,-0.8315,-0.2126,-0.6935,-0.7071,-0.1379,-0.5133,-0.8315,-0.2126,-0.6533,-0.7071,-0.2706,-0.6533,-0.7071,-0.2706,-0.5133,-0.8315,-0.2126,-0.4619,-0.8315,-0.3087,-0.6533,-0.7071,-0.2706,-0.4619,-0.8315,-0.3087,-0.5879,-0.7071,-0.3928,-0.5879,-0.7071,-0.3928,-0.4619,-0.8315,-0.3087,-0.3928,-0.8315,-0.3928,-0.5879,-0.7071,-0.3928,-0.3928,-0.8315,-0.3928,-0.5,-0.7071,-0.5,-0.5,-0.7071,-0.5,-0.3928,-0.8315,-0.3928,-0.3087,-0.8315,-0.4619,-0.5,-0.7071,-0.5,-0.3087,-0.8315,-0.4619,-0.3928,-0.7071,-0.5879,-0.3928,-0.7071,-0.5879,-0.3087,-0.8315,-0.4619,-0.2126,-0.8315,-0.5133,-0.3928,-0.7071,-0.5879,-0.2126,-0.8315,-0.5133,-0.2706,-0.7071,-0.6533,-0.2706,-0.7071,-0.6533,-0.2126,-0.8315,-0.5133,-0.1084,-0.8315,-0.5449,-0.2706,-0.7071,-0.6533,-0.1084,-0.8315,-0.5449,-0.1379,-0.7071,-0.6935,-0.1379,-0.7071,-0.6935,-0.1084,-0.8315,-0.5449,0.0,-0.8315,-0.5556,-0.1379,-0.7071,-0.6935,0.0,-0.8315,-0.5556,0.0,-0.7071,-0.7071,0.0,-0.7071,-0.7071,0.0,-0.8315,-0.5556,0.1084,-0.8315,-0.5449,0.0,-0.7071,-0.7071,0.1084,-0.8315,-0.5449,0.138,-0.7071,-0.6935,0.138,-0.7071,-0.6935,0.1084,-0.8315,-0.5449,0.2126,-0.8315,-0.5133,0.138,-0.7071,-0.6935,0.2126,-0.8315,-0.5133,0.2706,-0.7071,-0.6533,0.2706,-0.7071,-0.6533,0.2126,-0.8315,-0.5133,0.3087,-0.8315,-0.4619,0.2706,-0.7071,-0.6533,0.3087,-0.8315,-0.4619,0.3928,-0.7071,-0.5879,0.3928,-0.7071,-0.5879,0.3087,-0.8315,-0.4619,0.3928,-0.8315,-0.3928,0.3928,-0.7071,-0.5879,0.3928,-0.8315,-0.3928,0.5,-0.7071,-0.5,0.5,-0.7071,-0.5,0.3928,-0.8315,-0.3928,0.4619,-0.8315,-0.3087,0.5,-0.7071,-0.5,0.4619,-0.8315,-0.3087,0.5879,-0.7071,-0.3928,0.5879,-0.7071,-0.3928,0.4619,-0.8315,-0.3087,0.5133,-0.8315,-0.2126,0.5879,-0.7071,-0.3928,0.5133,-0.8315,-0.2126,0.6533,-0.7071,-0.2706,0.6533,-0.7071,-0.2706,0.5133,-0.8315,-0.2126,0.5449,-0.8315,-0.1084,0.6533,-0.7071,-0.2706,0.5449,-0.8315,-0.1084,0.6935,-0.7071,-0.1379,0.6935,-0.7071,-0.1379,0.5449,-0.8315,-0.1084,0.5556,-0.8315,0.0,0.6935,-0.7071,-0.1379,0.5556,-0.8315,0.0,0.7071,-0.7071,0.0,0.7071,-0.7071,0.0,0.5556,-0.8315,0.0,0.5449,-0.8315,0.1084,0.7071,-0.7071,0.0,0.5449,-0.8315,0.1084,0.6935,-0.7071,0.138,0.6935,-0.7071,0.138,0.5449,-0.8315,0.1084,0.5133,-0.8315,0.2126,0.6935,-0.7071,0.138,0.5133,-0.8315,0.2126,0.6533,-0.7071,0.2706,0.6533,-0.7071,0.2706,0.5133,-0.8315,0.2126,0.4619,-0.8315,0.3087,0.6533,-0.7071,0.2706,0.4619,-0.8315,0.3087,0.5879,-0.7071,0.3928,0.5879,-0.7071,0.3928,0.4619,-0.8315,0.3087,0.3928,-0.8315,0.3928,0.5879,-0.7071,0.3928,0.3928,-0.8315,0.3928,0.5,-0.7071,0.5,0.5,-0.7071,0.5,0.3928,-0.8315,0.3928,0.3087,-0.8315,0.4619,0.5,-0.7071,0.5,0.3087,-0.8315,0.4619,0.3928,-0.7071,0.5879,0.3928,-0.7071,0.5879,0.3087,-0.8315,0.4619,0.2126,-0.8315,0.5133,0.3928,-0.7071,0.5879,0.2126,-0.8315,0.5133,0.2706,-0.7071,0.6533,0.2706,-0.7071,0.6533,0.2126,-0.8315,0.5133,0.1084,-0.8315,0.5449,0.2706,-0.7071,0.6533,0.1084,-0.8315,0.5449,0.1379,-0.7071,0.6935,0.1379,-0.7071,0.6935,0.1084,-0.8315,0.5449,0.0,-0.8315,0.5556,0.1379,-0.7071,0.6935,0.0,-0.8315,0.5556,0.0,-0.7071,0.7071,0.0,-0.8315,0.5556,0.0,-0.9239,0.3827,-0.0747,-0.9239,0.3753,0.0,-0.8315,0.5556,-0.0747,-0.9239,0.3753,-0.1084,-0.8315,0.5449,-0.1084,-0.8315,0.5449,-0.0747,-0.9239,0.3753,-0.1464,-0.9239,0.3536,-0.1084,-0.8315,0.5449,-0.1464,-0.9239,0.3536,-0.2126,-0.8315,0.5133,-0.2126,-0.8315,0.5133,-0.1464,-0.9239,0.3536,-0.2126,-0.9239,0.3182,-0.2126,-0.8315,0.5133,-0.2126,-0.9239,0.3182,-0.3087,-0.8315,0.4619,-0.3087,-0.8315,0.4619,-0.2126,-0.9239,0.3182,-0.2706,-0.9239,0.2706,-0.3087,-0.8315,0.4619,-0.2706,-0.9239,0.2706,-0.3928,-0.8315,0.3928,-0.3928,-0.8315,0.3928,-0.2706,-0.9239,0.2706,-0.3182,-0.9239,0.2126,-0.3928,-0.8315,0.3928,-0.3182,-0.9239,0.2126,-0.4619,-0.8315,0.3087,-0.4619,-0.8315,0.3087,-0.3182,-0.9239,0.2126,-0.3536,-0.9239,0.1464,-0.4619,-0.8315,0.3087,-0.3536,-0.9239,0.1464,-0.5133,-0.8315,0.2126,-0.5133,-0.8315,0.2126,-0.3536,-0.9239,0.1464,-0.3753,-0.9239,0.0747,-0.5133,-0.8315,0.2126,-0.3753,-0.9239,0.0747,-0.5449,-0.8315,0.1084,-0.5449,-0.8315,0.1084,-0.3753,-0.9239,0.0747,-0.3827,-0.9239,0.0,-0.5449,-0.8315,0.1084,-0.3827,-0.9239,0.0,-0.5556,-0.8315,0.0,-0.5556,-0.8315,0.0,-0.3827,-0.9239,0.0,-0.3753,-0.9239,-0.0747,-0.5556,-0.8315,0.0,-0.3753,-0.9239,-0.0747,-0.5449,-0.8315,-0.1084,-0.5449,-0.8315,-0.1084,-0.3753,-0.9239,-0.0747,-0.3536,-0.9239,-0.1464,-0.5449,-0.8315,-0.1084,-0.3536,-0.9239,-0.1464,-0.5133,-0.8315,-0.2126,-0.5133,-0.8315,-0.2126,-0.3536,-0.9239,-0.1464,-0.3182,-0.9239,-0.2126,-0.5133,-0.8315,-0.2126,-0.3182,-0.9239,-0.2126,-0.4619,-0.8315,-0.3087,-0.4619,-0.8315,-0.3087,-0.3182,-0.9239,-0.2126,-0.2706,-0.9239,-0.2706,-0.4619,-0.8315,-0.3087,-0.2706,-0.9239,-0.2706,-0.3928,-0.8315,-0.3928,-0.3928,-0.8315,-0.3928,-0.2706,-0.9239,-0.2706,-0.2126,-0.9239,-0.3182,-0.3928,-0.8315,-0.3928,-0.2126,-0.9239,-0.3182,-0.3087,-0.8315,-0.4619,-0.3087,-0.8315,-0.4619,-0.2126,-0.9239,-0.3182,-0.1464,-0.9239,-0.3536,-0.3087,-0.8315,-0.4619,-0.1464,-0.9239,-0.3536,-0.2126,-0.8315,-0.5133,-0.2126,-0.8315,-0.5133,-0.1464,-0.9239,-0.3536,-0.0747,-0.9239,-0.3753,-0.2126,-0.8315,-0.5133,-0.0747,-0.9239,-0.3753,-0.1084,-0.8315,-0.5449,-0.1084,-0.8315,-0.5449,-0.0747,-0.9239,-0.3753,0.0,-0.9239,-0.3827,-0.1084,-0.8315,-0.5449,0.0,-0.9239,-0.3827,0.0,-0.8315,-0.5556,0.0,-0.8315,-0.5556,0.0,-0.9239,-0.3827,0.0747,-0.9239,-0.3753,0.0,-0.8315,-0.5556,0.0747,-0.9239,-0.3753,0.1084,-0.8315,-0.5449,0.1084,-0.8315,-0.5449,0.0747,-0.9239,-0.3753,0.1464,-0.9239,-0.3536,0.1084,-0.8315,-0.5449,0.1464,-0.9239,-0.3536,0.2126,-0.8315,-0.5133,0.2126,-0.8315,-0.5133,0.1464,-0.9239,-0.3536,0.2126,-0.9239,-0.3182,0.2126,-0.8315,-0.5133,0.2126,-0.9239,-0.3182,0.3087,-0.8315,-0.4619,0.3087,-0.8315,-0.4619,0.2126,-0.9239,-0.3182,0.2706,-0.9239,-0.2706,0.3087,-0.8315,-0.4619,0.2706,-0.9239,-0.2706,0.3928,-0.8315,-0.3928,0.3928,-0.8315,-0.3928,0.2706,-0.9239,-0.2706,0.3182,-0.9239,-0.2126,0.3928,-0.8315,-0.3928,0.3182,-0.9239,-0.2126,0.4619,-0.8315,-0.3087,0.4619,-0.8315,-0.3087,0.3182,-0.9239,-0.2126,0.3536,-0.9239,-0.1464,0.4619,-0.8315,-0.3087,0.3536,-0.9239,-0.1464,0.5133,-0.8315,-0.2126,0.5133,-0.8315,-0.2126,0.3536,-0.9239,-0.1464,0.3753,-0.9239,-0.0747,0.5133,-0.8315,-0.2126,0.3753,-0.9239,-0.0747,0.5449,-0.8315,-0.1084,0.5449,-0.8315,-0.1084,0.3753,-0.9239,-0.0747,0.3827,-0.9239,0.0,0.5449,-0.8315,-0.1084,0.3827,-0.9239,0.0,0.5556,-0.8315,0.0,0.5556,-0.8315,0.0,0.3827,-0.9239,0.0,0.3753,-0.9239,0.0747,0.5556,-0.8315,0.0,0.3753,-0.9239,0.0747,0.5449,-0.8315,0.1084,0.5449,-0.8315,0.1084,0.3753,-0.9239,0.0747,0.3536,-0.9239,0.1464,0.5449,-0.8315,0.1084,0.3536,-0.9239,0.1464,0.5133,-0.8315,0.2126,0.5133,-0.8315,0.2126,0.3536,-0.9239,0.1464,0.3182,-0.9239,0.2126,0.5133,-0.8315,0.2126,0.3182,-0.9239,0.2126,0.4619,-0.8315,0.3087,0.4619,-0.8315,0.3087,0.3182,-0.9239,0.2126,0.2706,-0.9239,0.2706,0.4619,-0.8315,0.3087,0.2706,-0.9239,0.2706,0.3928,-0.8315,0.3928,0.3928,-0.8315,0.3928,0.2706,-0.9239,0.2706,0.2126,-0.9239,0.3182,0.3928,-0.8315,0.3928,0.2126,-0.9239,0.3182,0.3087,-0.8315,0.4619,0.3087,-0.8315,0.4619,0.2126,-0.9239,0.3182,0.1464,-0.9239,0.3536,0.3087,-0.8315,0.4619,0.1464,-0.9239,0.3536,0.2126,-0.8315,0.5133,0.2126,-0.8315,0.5133,0.1464,-0.9239,0.3536,0.0747,-0.9239,0.3753,0.2126,-0.8315,0.5133,0.0747,-0.9239,0.3753,0.1084,-0.8315,0.5449,0.1084,-0.8315,0.5449,0.0747,-0.9239,0.3753,0.0,-0.9239,0.3827,0.1084,-0.8315,0.5449,0.0,-0.9239,0.3827,0.0,-0.8315,0.5556,0.0,-0.9239,0.3827,0.0,-0.9808,0.1951,-0.0381,-0.9808,0.1913,0.0,-0.9239,0.3827,-0.0381,-0.9808,0.1913,-0.0747,-0.9239,0.3753,-0.0747,-0.9239,0.3753,-0.0381,-0.9808,0.1913,-0.0747,-0.9808,0.1802,-0.0747,-0.9239,0.3753,-0.0747,-0.9808,0.1802,-0.1464,-0.9239,0.3536,-0.1464,-0.9239,0.3536,-0.0747,-0.9808,0.1802,-0.1084,-0.9808,0.1622,-0.1464,-0.9239,0.3536,-0.1084,-0.9808,0.1622,-0.2126,-0.9239,0.3182,-0.2126,-0.9239,0.3182,-0.1084,-0.9808,0.1622,-0.1379,-0.9808,0.1379,-0.2126,-0.9239,0.3182,-0.1379,-0.9808,0.1379,-0.2706,-0.9239,0.2706,-0.2706,-0.9239,0.2706,-0.1379,-0.9808,0.1379,-0.1622,-0.9808,0.1084,-0.2706,-0.9239,0.2706,-0.1622,-0.9808,0.1084,-0.3182,-0.9239,0.2126,-0.3182,-0.9239,0.2126,-0.1622,-0.9808,0.1084,-0.1802,-0.9808,0.0747,-0.3182,-0.9239,0.2126,-0.1802,-0.9808,0.0747,-0.3536,-0.9239,0.1464,-0.3536,-0.9239,0.1464,-0.1802,-0.9808,0.0747,-0.1913,-0.9808,0.0381,-0.3536,-0.9239,0.1464,-0.1913,-0.9808,0.0381,-0.3753,-0.9239,0.0747,-0.3753,-0.9239,0.0747,-0.1913,-0.9808,0.0381,-0.1951,-0.9808,0.0,-0.3753,-0.9239,0.0747,-0.1951,-0.9808,0.0,-0.3827,-0.9239,0.0,-0.3827,-0.9239,0.0,-0.1951,-0.9808,0.0,-0.1913,-0.9808,-0.0381,-0.3827,-0.9239,0.0,-0.1913,-0.9808,-0.0381,-0.3753,-0.9239,-0.0747,-0.3753,-0.9239,-0.0747,-0.1913,-0.9808,-0.0381,-0.1802,-0.9808,-0.0747,-0.3753,-0.9239,-0.0747,-0.1802,-0.9808,-0.0747,-0.3536,-0.9239,-0.1464,-0.3536,-0.9239,-0.1464,-0.1802,-0.9808,-0.0747,-0.1622,-0.9808,-0.1084,-0.3536,-0.9239,-0.1464,-0.1622,-0.9808,-0.1084,-0.3182,-0.9239,-0.2126,-0.3182,-0.9239,-0.2126,-0.1622,-0.9808,-0.1084,-0.1379,-0.9808,-0.1379,-0.3182,-0.9239,-0.2126,-0.1379,-0.9808,-0.1379,-0.2706,-0.9239,-0.2706,-0.2706,-0.9239,-0.2706,-0.1379,-0.9808,-0.1379,-0.1084,-0.9808,-0.1622,-0.2706,-0.9239,-0.2706,-0.1084,-0.9808,-0.1622,-0.2126,-0.9239,-0.3182,-0.2126,-0.9239,-0.3182,-0.1084,-0.9808,-0.1622,-0.0747,-0.9808,-0.1802,-0.2126,-0.9239,-0.3182,-0.0747,-0.9808,-0.1802,-0.1464,-0.9239,-0.3536,-0.1464,-0.9239,-0.3536,-0.0747,-0.9808,-0.1802,-0.0381,-0.9808,-0.1913,-0.1464,-0.9239,-0.3536,-0.0381,-0.9808,-0.1913,-0.0747,-0.9239,-0.3753,-0.0747,-0.9239,-0.3753,-0.0381,-0.9808,-0.1913,0.0,-0.9808,-0.1951,-0.0747,-0.9239,-0.3753,0.0,-0.9808,-0.1951,0.0,-0.9239,-0.3827,0.0,-0.9239,-0.3827,0.0,-0.9808,-0.1951,0.0381,-0.9808,-0.1913,0.0,-0.9239,-0.3827,0.0381,-0.9808,-0.1913,0.0747,-0.9239,-0.3753,0.0747,-0.9239,-0.3753,0.0381,-0.9808,-0.1913,0.0747,-0.9808,-0.1802,0.0747,-0.9239,-0.3753,0.0747,-0.9808,-0.1802,0.1464,-0.9239,-0.3536,0.1464,-0.9239,-0.3536,0.0747,-0.9808,-0.1802,0.1084,-0.9808,-0.1622,0.1464,-0.9239,-0.3536,0.1084,-0.9808,-0.1622,0.2126,-0.9239,-0.3182,0.2126,-0.9239,-0.3182,0.1084,-0.9808,-0.1622,0.1379,-0.9808,-0.1379,0.2126,-0.9239,-0.3182,0.1379,-0.9808,-0.1379,0.2706,-0.9239,-0.2706,0.2706,-0.9239,-0.2706,0.1379,-0.9808,-0.1379,0.1622,-0.9808,-0.1084,0.2706,-0.9239,-0.2706,0.1622,-0.9808,-0.1084,0.3182,-0.9239,-0.2126,0.3182,-0.9239,-0.2126,0.1622,-0.9808,-0.1084,0.1802,-0.9808,-0.0747,0.3182,-0.9239,-0.2126,0.1802,-0.9808,-0.0747,0.3536,-0.9239,-0.1464,0.3536,-0.9239,-0.1464,0.1802,-0.9808,-0.0747,0.1913,-0.9808,-0.0381,0.3536,-0.9239,-0.1464,0.1913,-0.9808,-0.0381,0.3753,-0.9239,-0.0747,0.3753,-0.9239,-0.0747,0.1913,-0.9808,-0.0381,0.1951,-0.9808,0.0,0.3753,-0.9239,-0.0747,0.1951,-0.9808,0.0,0.3827,-0.9239,0.0,0.3827,-0.9239,0.0,0.1951,-0.9808,0.0,0.1913,-0.9808,0.0381,0.3827,-0.9239,0.0,0.1913,-0.9808,0.0381,0.3753,-0.9239,0.0747,0.3753,-0.9239,0.0747,0.1913,-0.9808,0.0381,0.1802,-0.9808,0.0747,0.3753,-0.9239,0.0747,0.1802,-0.9808,0.0747,0.3536,-0.9239,0.1464,0.3536,-0.9239,0.1464,0.1802,-0.9808,0.0747,0.1622,-0.9808,0.1084,0.3536,-0.9239,0.1464,0.1622,-0.9808,0.1084,0.3182,-0.9239,0.2126,0.3182,-0.9239,0.2126,0.1622,-0.9808,0.1084,0.1379,-0.9808,0.1379,0.3182,-0.9239,0.2126,0.1379,-0.9808,0.1379,0.2706,-0.9239,0.2706,0.2706,-0.9239,0.2706,0.1379,-0.9808,0.1379,0.1084,-0.9808,0.1622,0.2706,-0.9239,0.2706,0.1084,-0.9808,0.1622,0.2126,-0.9239,0.3182,0.2126,-0.9239,0.3182,0.1084,-0.9808,0.1622,0.0747,-0.9808,0.1802,0.2126,-0.9239,0.3182,0.0747,-0.9808,0.1802,0.1464,-0.9239,0.3536,0.1464,-0.9239,0.3536,0.0747,-0.9808,0.1802,0.0381,-0.9808,0.1913,0.1464,-0.9239,0.3536,0.0381,-0.9808,0.1913,0.0747,-0.9239,0.3753,0.0747,-0.9239,0.3753,0.0381,-0.9808,0.1913,0.0,-0.9808,0.1951,0.0747,-0.9239,0.3753,0.0,-0.9808,0.1951,0.0,-0.9239,0.3827,0.0,-1.0,0.0,-0.0381,-0.9808,0.1913,0.0,-0.9808,0.1951,0.0,-1.0,0.0,-0.0747,-0.9808,0.1802,-0.0381,-0.9808,0.1913,0.0,-1.0,0.0,-0.1084,-0.9808,0.1622,-0.0747,-0.9808,0.1802,0.0,-1.0,0.0,-0.1379,-0.9808,0.1379,-0.1084,-0.9808,0.1622,0.0,-1.0,0.0,-0.1622,-0.9808,0.1084,-0.1379,-0.9808,0.1379,0.0,-1.0,0.0,-0.1802,-0.9808,0.0747,-0.1622,-0.9808,0.1084,0.0,-1.0,0.0,-0.1913,-0.9808,0.0381,-0.1802,-0.9808,0.0747,0.0,-1.0,0.0,-0.1951,-0.9808,0.0,-0.1913,-0.9808,0.0381,0.0,-1.0,0.0,-0.1913,-0.9808,-0.0381,-0.1951,-0.9808,0.0,0.0,-1.0,0.0,-0.1802,-0.9808,-0.0747,-0.1913,-0.9808,-0.0381,0.0,-1.0,0.0,-0.1622,-0.9808,-0.1084,-0.1802,-0.9808,-0.0747,0.0,-1.0,0.0,-0.1379,-0.9808,-0.1379,-0.1622,-0.9808,-0.1084,0.0,-1.0,0.0,-0.1084,-0.9808,-0.1622,-0.1379,-0.9808,-0.1379,0.0,-1.0,0.0,-0.0747,-0.9808,-0.1802,-0.1084,-0.9808,-0.1622,0.0,-1.0,0.0,-0.0381,-0.9808,-0.1913,-0.0747,-0.9808,-0.1802,0.0,-1.0,0.0,0.0,-0.9808,-0.1951,-0.0381,-0.9808,-0.1913,0.0,-1.0,0.0,0.0381,-0.9808,-0.1913,0.0,-0.9808,-0.1951,0.0,-1.0,0.0,0.0747,-0.9808,-0.1802,0.0381,-0.9808,-0.1913,0.0,-1.0,0.0,0.1084,-0.9808,-0.1622,0.0747,-0.9808,-0.1802,0.0,-1.0,0.0,0.1379,-0.9808,-0.1379,0.1084,-0.9808,-0.1622,0.0,-1.0,0.0,0.1622,-0.9808,-0.1084,0.1379,-0.9808,-0.1379,0.0,-1.0,0.0,0.1802,-0.9808,-0.0747,0.1622,-0.9808,-0.1084,0.0,-1.0,0.0,0.1913,-0.9808,-0.0381,0.1802,-0.9808,-0.0747,0.0,-1.0,0.0,0.1951,-0.9808,0.0,0.1913,-0.9808,-0.0381,0.0,-1.0,0.0,0.1913,-0.9808,0.0381,0.1951,-0.9808,0.0,0.0,-1.0,0.0,0.1802,-0.9808,0.0747,0.1913,-0.9808,0.0381,0.0,-1.0,0.0,0.1622,-0.9808,0.1084,0.1802,-0.9808,0.0747,0.0,-1.0,0.0,0.1379,-0.9808,0.1379,0.1622,-0.9808,0.1084,0.0,-1.0,0.0,0.1084,-0.9808,0.1622,0.1379,-0.9808,0.1379,0.0,-1.0,0.0,0.0747,-0.9808,0.1802,0.1084,-0.9808,0.1622,0.0,-1.0,0.0,0.0381,-0.9808,0.1913,0.0747,-0.9808,0.1802,0.0,-1.0,0.0,0.0,-0.9808,0.1951,0.0381,-0.9808,0.1913],"normals":[0.0,1.0,0.0,0.0,0.9796,0.201,-0.0392,0.9796,0.1971,0.0,1.0,0.0,-0.0392,0.9796,0.1971,-0.0769,0.9796,0.1857,0.0,1.0,0.0,-0.0769,0.9796,0.1857,-0.1117,0.9796,0.1671,0.0,1.0,0.0,-0.1117,0.9796,0.1671,-0.1421,0.9796,0.1421,0.0,1.0,0.0,-0.1421,0.9796,0.1421,-0.1671,0.9796,0.1117,0.0,1.0,0.0,-0.1671,0.9796,0.1117,-0.1857,0.9796,0.0769,0.0,1.0,0.0,-0.1857,0.9796,0.0769,-0.1971,0.9796,0.0392,0.0,1.0,0.0,-0.1971,0.9796,0.0392,-0.201,0.9796,0.0,0.0,1.0,0.0,-0.201,0.9796,0.0,-0.1971,0.9796,-0.0392,0.0,1.0,0.0,-0.1971,0.9796,-0.0392,-0.1857,0.9796,-0.0769,0.0,1.0,0.0,-0.1857,0.9796,-0.0769,-0.1671,0.9796,-0.1117,0.0,1.0,0.0,-0.1671,0.9796,-0.1117,-0.1421,0.9796,-0.1421,0.0,1.0,0.0,-0.1421,0.9796,-0.1421,-0.1117,0.9796,-0.1671,0.0,1.0,0.0,-0.1117,0.9796,-0.1671,-0.0769,0.9796,-0.1857,0.0,1.0,0.0,-0.0769,0.9796,-0.1857,-0.0392,0.9796,-0.1971,0.0,1.0,0.0,-0.0392,0.9796,-0.1971,0.0,0.9796,-0.201,0.0,1.0,0.0,0.0,0.9796,-0.201,0.0392,0.9796,-0.1971,0.0,1.0,0.0,0.0392,0.9796,-0.1971,0.0769,0.9796,-0.1857,0.0,1.0,0.0,0.0769,0.9796,-0.1857,0.1117,0.9796,-0.1671,0.0,1.0,0.0,0.1117,0.9796,-0.1671,0.1421,0.9796,-0.1421,0.0,1.0,0.0,0.1421,0.9796,-0.1421,0.1671,0.9796,-0.1117,0.0,1.0,0.0,0.1671,0.9796,-0.1117,0.1857,0.9796,-0.0769,0.0,1.0,0.0,0.1857,0.9796,-0.0769,0.1971,0.9796,-0.0392,0.0,1.0,0.0,0.1971,0.9796,-0.0392,0.201,0.9796,0.0,0.0,1.0,0.0,0.201,0.9796,0.0,0.1971,0.9796,0.0392,0.0,1.0,0.0,0.1971,0.9796,0.0392,0.1857,0.9796,0.0769,0.0,1.0,0.0,0.1857,0.9796,0.0769,0.1671,0.9796,0.1117,0.0,1.0,0.0,0.1671,0.9796,0.1117,0.1421,0.9796,0.1421,0.0,1.0,0.0,0.1421,0.9796,0.1421,0.1117,0.9796,0.1671,0.0,1.0,0.0,0.1117,0.9796,0.1671,0.0769,0.9796,0.1857,0.0,1.0,0.0,0.0769,0.9796,0.1857,0.0392,0.9796,0.1971,0.0,1.0,0.0,0.0392,0.9796,0.1971,0.0,0.9796,0.201,0.0,0.9796,0.201,0.0,0.9217,0.3879,-0.0757,0.9217,0.3804,0.0,0.9796,0.201,-0.0757,0.9217,0.3804,-0.0392,0.9796,0.1971,-0.0392,0.9796,0.1971,-0.0757,0.9217,0.3804,-0.1484,0.9217,0.3584,-0.0392,0.9796,0.1971,-0.1484,0.9217,0.3584,-0.0769,0.9796,0.1857,-0.0769,0.9796,0.1857,-0.1484,0.9217,0.3584,-0.2155,0.9217,0.3225,-0.0769,0.9796,0.1857,-0.2155,0.9217,0.3225,-0.1117,0.9796,0.1671,-0.1117,0.9796,0.1671,-0.2155,0.9217,0.3225,-0.2743,0.9217,0.2743,-0.1117,0.9796,0.1671,-0.2743,0.9217,0.2743,-0.1421,0.9796,0.1421,-0.1421,0.9796,0.1421,-0.2743,0.9217,0.2743,-0.3225,0.9217,0.2155,-0.1421,0.9796,0.1421,-0.3225,0.9217,0.2155,-0.1671,0.9796,0.1117,-0.1671,0.9796,0.1117,-0.3225,0.9217,0.2155,-0.3584,0.9217,0.1484,-0.1671,0.9796,0.1117,-0.3584,0.9217,0.1484,-0.1857,0.9796,0.0769,-0.1857,0.9796,0.0769,-0.3584,0.9217,0.1484,-0.3804,0.9217,0.0757,-0.1857,0.9796,0.0769,-0.3804,0.9217,0.0757,-0.1971,0.9796,0.0392,-0.1971,0.9796,0.0392,-0.3804,0.9217,0.0757,-0.3879,0.9217,0.0,-0.1971,0.9796,0.0392,-0.3879,0.9217,0.0,-0.201,0.9796,0.0,-0.201,0.9796,0.0,-0.3879,0.9217,0.0,-0.3804,0.9217,-0.0757,-0.201,0.9796,0.0,-0.3804,0.9217,-0.0757,-0.1971,0.9796,-0.0392,-0.1971,0.9796,-0.0392,-0.3804,0.9217,-0.0757,-0.3584,0.9217,-0.1484,-0.1971,0.9796,-0.0392,-0.3584,0.9217,-0.1484,-0.1857,0.9796,-0.0769,-0.1857,0.9796,-0.0769,-0.3584,0.9217,-0.1484,-0.3225,0.9217,-0.2155,-0.1857,0.9796,-0.0769,-0.3225,0.9217,-0.2155,-0.1671,0.9796,-0.1117,-0.1671,0.9796,-0.1117,-0.3225,0.9217,-0.2155,-0.2743,0.9217,-0.2743,-0.1671,0.9796,-0.1117,-0.2743,0.9217,-0.2743,-0.1421,0.9796,-0.1421,-0.1421,0.9796,-0.1421,-0.2743,0.9217,-0.2743,-0.2155,0.9217,-0.3225,-0.1421,0.9796,-0.1421,-0.2155,0.9217,-0.3225,-0.1117,0.9796,-0.1671,-0.1117,0.9796,-0.1671,-0.2155,0.9217,-0.3225,-0.1484,0.9217,-0.3584,-0.1117,0.9796,-0.1671,-0.1484,0.9217,-0.3584,-0.0769,0.9796,-0.1857,-0.0769,0.9796,-0.1857,-0.1484,0.9217,-0.3584,-0.0757,0.9217,-0.3804,-0.0769,0.9796,-0.1857,-0.0757,0.9217,-0.3804,-0.0392,0.9796,-0.1971,-0.0392,0.9796,-0.1971,-0.0757,0.9217,-0.3804,0.0,0.9217,-0.3879,-0.0392,0.9796,-0.1971,0.0,0.9217,-0.3879,0.0,0.9796,-0.201,0.0,0.9796,-0.201,0.0,0.9217,-0.3879,0.0757,0.9217,-0.3804,0.0,0.9796,-0.201,0.0757,0.9217,-0.3804,0.0392,0.9796,-0.1971,0.0392,0.9796,-0.1971,0.0757,0.9217,-0.3804,0.1484,0.9217,-0.3584,0.0392,0.9796,-0.1971,0.1484,0.9217,-0.3584,0.0769,0.9796,-0.1857,0.0769,0.9796,-0.1857,0.1484,0.9217,-0.3584,0.2155,0.9217,-0.3225,0.0769,0.9796,-0.1857,0.2155,0.9217,-0.3225,0.1117,0.9796,-0.1671,0.1117,0.9796,-0.1671,0.2155,0.9217,-0.3225,0.2743,0.9217,-0.2743,0.1117,0.9796,-0.1671,0.2743,0.9217,-0.2743,0.1421,0.9796,-0.1421,0.1421,0.9796,-0.1421,0.2743,0.9217,-0.2743,0.3225,0.9217,-0.2155,0.1421,0.9796,-0.1421,0.3225,0.9217,-0.2155,0.1671,0.9796,-0.1117,0.1671,0.9796,-0.1117,0.3225,0.9217,-0.2155,0.3584,0.9217,-0.1484,0.1671,0.9796,-0.1117,0.3584,0.9217,-0.1484,0.1857,0.9796,-0.0769,0.1857,0.9796,-0.0769,0.3584,0.9217,-0.1484,0.3804,0.9217,-0.0757,0.1857,0.9796,-0.0769,0.3804,0.9217,-0.0757,0.1971,0.9796,-0.0392,0.1971,0.9796,-0.0392,0.3804,0.9217,-0.0757,0.3879,0.9217,0.0,0.1971,0.9796,-0.0392,0.3879,0.9217,0.0,0.201,0.9796,0.0,0.201,0.9796,0.0,0.3879,0.9217,0.0,0.3804,0.9217,0.0757,0.201,0.9796,0.0,0.3804,0.9217,0.0757,0.1971,0.9796,0.0392,0.1971,0.9796,0.0392,0.3804,0.9217,0.0757,0.3584,0.9217,0.1484,0.1971,0.9796,0.0392,0.3584,0.9217,0.1484,0.1857,0.9796,0.0769,0.1857,0.9796,0.0769,0.3584,0.9217,0.1484,0.3225,0.9217,0.2155,0.1857,0.9796,0.0769,0.3225,0.9217,0.2155,0.1671,0.9796,0.1117,0.1671,0.9796,0.1117,0.3225,0.9217,0.2155,0.2743,0.9217,0.2743,0.1671,0.9796,0.1117,0.2743,0.9217,0.2743,0.1421,0.9796,0.1421,0.1421,0.9796,0.1421,0.2743,0.9217,0.2743,0.2155,0.9217,0.3225,0.1421,0.9796,0.1421,0.2155,0.9217,0.3225,0.1117,0.9796,0.1671,0.1117,0.9796,0.1671,0.2155,0.9217,0.3225,0.1484,0.9217,0.3584,0.1117,0.9796,0.1671,0.1484,0.9217,0.3584,0.0769,0.9796,0.1857,0.0769,0.9796,0.1857,0.1484,0.9217,0.3584,0.0757,0.9217,0.3804,0.0769,0.9796,0.1857,0.0757,0.9217,0.3804,0.0392,0.9796,0.1971,0.0392,0.9796,0.1971,0.0757,0.9217,0.3804,0.0,0.9217,0.3879,0.0392,0.9796,0.1971,0.0,0.9217,0.3879,0.0,0.9796,0.201,0.0,0.9217,0.3879,0.0,0.8286,0.5598,-0.1092,0.8286,0.549,0.0,0.9217,0.3879,-0.1092,0.8286,0.549,-0.0757,0.9217,0.3804,-0.0757,0.9217,0.3804,-0.1092,0.8286,0.549,-0.2142,0.8286,0.5172,-0.0757,0.9217,0.3804,-0.2142,0.8286,0.5172,-0.1484,0.9217,0.3584,-0.1484,0.9217,0.3584,-0.2142,0.8286,0.5172,-0.311,0.8286,0.4654,-0.1484,0.9217,0.3584,-0.311,0.8286,0.4654,-0.2155,0.9217,0.3225,-0.2155,0.9217,0.3225,-0.311,0.8286,0.4654,-0.3958,0.8286,0.3958,-0.2155,0.9217,0.3225,-0.3958,0.8286,0.3958,-0.2743,0.9217,0.2743,-0.2743,0.9217,0.2743,-0.3958,0.8286,0.3958,-0.4654,0.8286,0.311,-0.2743,0.9217,0.2743,-0.4654,0.8286,0.311,-0.3225,0.9217,0.2155,-0.3225,0.9217,0.2155,-0.4654,0.8286,0.311,-0.5172,0.8286,0.2142,-0.3225,0.9217,0.2155,-0.5172,0.8286,0.2142,-0.3584,0.9217,0.1484,-0.3584,0.9217,0.1484,-0.5172,0.8286,0.2142,-0.549,0.8286,0.1092,-0.3584,0.9217,0.1484,-0.549,0.8286,0.1092,-0.3804,0.9217,0.0757,-0.3804,0.9217,0.0757,-0.549,0.8286,0.1092,-0.5598,0.8286,0.0,-0.3804,0.9217,0.0757,-0.5598,0.8286,0.0,-0.3879,0.9217,0.0,-0.3879,0.9217,0.0,-0.5598,0.8286,0.0,-0.549,0.8286,-0.1092,-0.3879,0.9217,0.0,-0.549,0.8286,-0.1092,-0.3804,0.9217,-0.0757,-0.3804,0.9217,-0.0757,-0.549,0.8286,-0.1092,-0.5172,0.8286,-0.2142,-0.3804,0.9217,-0.0757,-0.5172,0.8286,-0.2142,-0.3584,0.9217,-0.1484,-0.3584,0.9217,-0.1484,-0.5172,0.8286,-0.2142,-0.4654,0.8286,-0.311,-0.3584,0.9217,-0.1484,-0.4654,0.8286,-0.311,-0.3225,0.9217,-0.2155,-0.3225,0.9217,-0.2155,-0.4654,0.8286,-0.311,-0.3958,0.8286,-0.3958,-0.3225,0.9217,-0.2155,-0.3958,0.8286,-0.3958,-0.2743,0.9217,-0.2743,-0.2743,0.9217,-0.2743,-0.3958,0.8286,-0.3958,-0.311,0.8286,-0.4654,-0.2743,0.9217,-0.2743,-0.311,0.8286,-0.4654,-0.2155,0.9217,-0.3225,-0.2155,0.9217,-0.3225,-0.311,0.8286,-0.4654,-0.2142,0.8286,-0.5172,-0.2155,0.9217,-0.3225,-0.2142,0.8286,-0.5172,-0.1484,0.9217,-0.3584,-0.1484,0.9217,-0.3584,-0.2142,0.8286,-0.5172,-0.1092,0.8286,-0.549,-0.1484,0.9217,-0.3584,-0.1092,0.8286,-0.549,-0.0757,0.9217,-0.3804,-0.0757,0.9217,-0.3804,-0.1092,0.8286,-0.549,0.0,0.8286,-0.5598,-0.0757,0.9217,-0.3804,0.0,0.8286,-0.5598,0.0,0.9217,-0.3879,0.0,0.9217,-0.3879,0.0,0.8286,-0.5598,0.1092,0.8286,-0.549,0.0,0.9217,-0.3879,0.1092,0.8286,-0.549,0.0757,0.9217,-0.3804,0.0757,0.9217,-0.3804,0.1092,0.8286,-0.549,0.2142,0.8286,-0.5172,0.0757,0.9217,-0.3804,0.2142,0.8286,-0.5172,0.1484,0.9217,-0.3584,0.1484,0.9217,-0.3584,0.2142,0.8286,-0.5172,0.311,0.8286,-0.4654,0.1484,0.9217,-0.3584,0.311,0.8286,-0.4654,0.2155,0.9217,-0.3225,0.2155,0.9217,-0.3225,0.311,0.8286,-0.4654,0.3958,0.8286,-0.3958,0.2155,0.9217,-0.3225,0.3958,0.8286,-0.3958,0.2743,0.9217,-0.2743,0.2743,0.9217,-0.2743,0.3958,0.8286,-0.3958,0.4654,0.8286,-0.311,0.2743,0.9217,-0.2743,0.4654,0.8286,-0.311,0.3225,0.9217,-0.2155,0.3225,0.9217,-0.2155,0.4654,0.8286,-0.311,0.5172,0.8286,-0.2142,0.3225,0.9217,-0.2155,0.5172,0.8286,-0.2142,0.3584,0.9217,-0.1484,0.3584,0.9217,-0.1484,0.5172,0.8286,-0.2142,0.549,0.8286,-0.1092,0.3584,0.9217,-0.1484,0.549,0.8286,-0.1092,0.3804,0.9217,-0.0757,0.3804,0.9217,-0.0757,0.549,0.8286,-0.1092,0.5598,0.8286,0.0,0.3804,0.9217,-0.0757,0.5598,0.8286,0.0,0.3879,0.9217,0.0,0.3879,0.9217,0.0,0.5598,0.8286,0.0,0.549,0.8286,0.1092,0.3879,0.9217,0.0,0.549,0.8286,0.1092,0.3804,0.9217,0.0757,0.3804,0.9217,0.0757,0.549,0.8286,0.1092,0.5172,0.8286,0.2142,0.3804,0.9217,0.0757,0.5172,0.8286,0.2142,0.3584,0.9217,0.1484,0.3584,0.9217,0.1484,0.5172,0.8286,0.2142,0.4654,0.8286,0.311,0.3584,0.9217,0.1484,0.4654,0.8286,0.311,0.3225,0.9217,0.2155,0.3225,0.9217,0.2155,0.4654,0.8286,0.311,0.3958,0.8286,0.3958,0.3225,0.9217,0.2155,0.3958,0.8286,0.3958,0.2743,0.9217,0.2743,0.2743,0.9217,0.2743,0.3958,0.8286,0.3958,0.311,0.8286,0.4654,0.2743,0.9217,0.2743,0.311,0.8286,0.4654,0.2155,0.9217,0.3225,0.2155,0.9217,0.3225,0.311,0.8286,0.4654,0.2142,0.8286,0.5172,0.2155,0.9217,0.3225,0.2142,0.8286,0.5172,0.1484,0.9217,0.3584,0.1484,0.9217,0.3584,0.2142,0.8286,0.5172,0.1092,0.8286,0.549,0.1484,0.9217,0.3584,0.1092,0.8286,0.549,0.0757,0.9217,0.3804,0.0757,0.9217,0.3804,0.1092,0.8286,0.549,0.0,0.8286,0.5598,0.0757,0.9217,0.3804,0.0,0.8286,0.5598,0.0,0.9217,0.3879,0.0,0.8286,0.5598,0.0,0.7041,0.7101,-0.1385,0.7041,0.6965,0.0,0.8286,0.5598,-0.1385,0.7041,0.6965,-0.1092,0.8286,0.549,-0.1092,0.8286,0.549,-0.1385,0.7041,0.6965,-0.2718,0.7041,0.6561,-0.1092,0.8286,0.549,-0.2718,0.7041,0.6561,-0.2142,0.8286,0.5172,-0.2142,0.8286,0.5172,-0.2718,0.7041,0.6561,-0.3945,0.7041,0.5905,-0.2142,0.8286,0.5172,-0.3945,0.7041,0.5905,-0.311,0.8286,0.4654,-0.311,0.8286,0.4654,-0.3945,0.7041,0.5905,-0.5021,0.7041,0.5021,-0.311,0.8286,0.4654,-0.5021,0.7041,0.5021,-0.3958,0.8286,0.3958,-0.3958,0.8286,0.3958,-0.5021,0.7041,0.5021,-0.5905,0.7041,0.3945,-0.3958,0.8286,0.3958,-0.5905,0.7041,0.3945,-0.4654,0.8286,0.311,-0.4654,0.8286,0.311,-0.5905,0.7041,0.3945,-0.6561,0.7041,0.2718,-0.4654,0.8286,0.311,-0.6561,0.7041,0.2718,-0.5172,0.8286,0.2142,-0.5172,0.8286,0.2142,-0.6561,0.7041,0.2718,-0.6965,0.7041,0.1385,-0.5172,0.8286,0.2142,-0.6965,0.7041,0.1385,-0.549,0.8286,0.1092,-0.549,0.8286,0.1092,-0.6965,0.7041,0.1385,-0.7101,0.7041,0.0,-0.549,0.8286,0.1092,-0.7101,0.7041,0.0,-0.5598,0.8286,0.0,-0.5598,0.8286,0.0,-0.7101,0.7041,0.0,-0.6965,0.7041,-0.1385,-0.5598,0.8286,0.0,-0.6965,0.7041,-0.1385,-0.549,0.8286,-0.1092,-0.549,0.8286,-0.1092,-0.6965,0.7041,-0.1385,-0.6561,0.7041,-0.2718,-0.549,0.8286,-0.1092,-0.6561,0.7041,-0.2718,-0.5172,0.8286,-0.2142,-0.5172,0.8286,-0.2142,-0.6561,0.7041,-0.2718,-0.5905,0.7041,-0.3945,-0.5172,0.8286,-0.2142,-0.5905,0.7041,-0.3945,-0.4654,0.8286,-0.311,-0.4654,0.8286,-0.311,-0.5905,0.7041,-0.3945,-0.5021,0.7041,-0.5021,-0.4654,0.8286,-0.311,-0.5021,0.7041,-0.5021,-0.3958,0.8286,-0.3958,-0.3958,0.8286,-0.3958,-0.5021,0.7041,-0.5021,-0.3945,0.7041,-0.5905,-0.3958,0.8286,-0.3958,-0.3945,0.7041,-0.5905,-0.311,0.8286,-0.4654,-0.311,0.8286,-0.4654,-0.3945,0.7041,-0.5905,-0.2718,0.7041,-0.6561,-0.311,0.8286,-0.4654,-0.2718,0.7041,-0.6561,-0.2142,0.8286,-0.5172,-0.2142,0.8286,-0.5172,-0.2718,0.7041,-0.6561,-0.1385,0.7041,-0.6965,-0.2142,0.8286,-0.5172,-0.1385,0.7041,-0.6965,-0.1092,0.8286,-0.549,-0.1092,0.8286,-0.549,-0.1385,0.7041,-0.6965,0.0,0.7041,-0.7101,-0.1092,0.8286,-0.549,0.0,0.7041,-0.7101,0.0,0.8286,-0.5598,0.0,0.8286,-0.5598,0.0,0.7041,-0.7101,0.1385,0.7041,-0.6965,0.0,0.8286,-0.5598,0.1385,0.7041,-0.6965,0.1092,0.8286,-0.549,0.1092,0.8286,-0.549,0.1385,0.7041,-0.6965,0.2718,0.7041,-0.6561,0.1092,0.8286,-0.549,0.2718,0.7041,-0.6561,0.2142,0.8286,-0.5172,0.2142,0.8286,-0.5172,0.2718,0.7041,-0.6561,0.3945,0.7041,-0.5905,0.2142,0.8286,-0.5172,0.3945,0.7041,-0.5905,0.311,0.8286,-0.4654,0.311,0.8286,-0.4654,0.3945,0.7041,-0.5905,0.5021,0.7041,-0.5021,0.311,0.8286,-0.4654,0.5021,0.7041,-0.5021,0.3958,0.8286,-0.3958,0.3958,0.8286,-0.3958,0.5021,0.7041,-0.5021,0.5905,0.7041,-0.3945,0.3958,0.8286,-0.3958,0.5905,0.7041,-0.3945,0.4654,0.8286,-0.311,0.4654,0.8286,-0.311,0.5905,0.7041,-0.3945,0.6561,0.7041,-0.2718,0.4654,0.8286,-0.311,0.6561,0.7041,-0.2718,0.5172,0.8286,-0.2142,0.5172,0.8286,-0.2142,0.6561,0.7041,-0.2718,0.6965,0.7041,-0.1385,0.5172,0.8286,-0.2142,0.6965,0.7041,-0.1385,0.549,0.8286,-0.1092,0.549,0.8286,-0.1092,0.6965,0.7041,-0.1385,0.7101,0.7041,0.0,0.549,0.8286,-0.1092,0.7101,0.7041,0.0,0.5598,0.8286,0.0,0.5598,0.8286,0.0,0.7101,0.7041,0.0,0.6965,0.7041,0.1385,0.5598,0.8286,0.0,0.6965,0.7041,0.1385,0.549,0.8286,0.1092,0.549,0.8286,0.1092,0.6965,0.7041,0.1385,0.6561,0.7041,0.2718,0.549,0.8286,0.1092,0.6561,0.7041,0.2718,0.5172,0.8286,0.2142,0.5172,0.8286,0.2142,0.6561,0.7041,0.2718,0.5905,0.7041,0.3945,0.5172,0.8286,0.2142,0.5905,0.7041,0.3945,0.4654,0.8286,0.311,0.4654,0.8286,0.311,0.5905,0.7041,0.3945,0.5021,0.7041,0.5021,0.4654,0.8286,0.311,0.5021,0.7041,0.5021,0.3958,0.8286,0.3958,0.3958,0.8286,0.3958,0.5021,0.7041,0.5021,0.3945,0.7041,0.5905,0.3958,0.8286,0.3958,0.3945,0.7041,0.5905,0.311,0.8286,0.4654,0.311,0.8286,0.4654,0.3945,0.7041,0.5905,0.2718,0.7041,0.6561,0.311,0.8286,0.4654,0.2718,0.7041,0.6561,0.2142,0.8286,0.5172,0.2142,0.8286,0.5172,0.2718,0.7041,0.6561,0.1385,0.7041,0.6965,0.2142,0.8286,0.5172,0.1385,0.7041,0.6965,0.1092,0.8286,0.549,0.1092,0.8286,0.549,0.1385,0.7041,0.6965,0.0,0.7041,0.7101,0.1092,0.8286,0.549,0.0,0.7041,0.7101,0.0,0.8286,0.5598,0.0,0.7041,0.7101,0.0,0.5528,0.8333,-0.1626,0.5528,0.8173,0.0,0.7041,0.7101,-0.1626,0.5528,0.8173,-0.1385,0.7041,0.6965,-0.1385,0.7041,0.6965,-0.1626,0.5528,0.8173,-0.3189,0.5528,0.7699,-0.1385,0.7041,0.6965,-0.3189,0.5528,0.7699,-0.2718,0.7041,0.6561,-0.2718,0.7041,0.6561,-0.3189,0.5528,0.7699,-0.463,0.5528,0.6929,-0.2718,0.7041,0.6561,-0.463,0.5528,0.6929,-0.3945,0.7041,0.5905,-0.3945,0.7041,0.5905,-0.463,0.5528,0.6929,-0.5893,0.5528,0.5893,-0.3945,0.7041,0.5905,-0.5893,0.5528,0.5893,-0.5021,0.7041,0.5021,-0.5021,0.7041,0.5021,-0.5893,0.5528,0.5893,-0.6929,0.5528,0.463,-0.5021,0.7041,0.5021,-0.6929,0.5528,0.463,-0.5905,0.7041,0.3945,-0.5905,0.7041,0.3945,-0.6929,0.5528,0.463,-0.7699,0.5528,0.3189,-0.5905,0.7041,0.3945,-0.7699,0.5528,0.3189,-0.6561,0.7041,0.2718,-0.6561,0.7041,0.2718,-0.7699,0.5528,0.3189,-0.8173,0.5528,0.1626,-0.6561,0.7041,0.2718,-0.8173,0.5528,0.1626,-0.6965,0.7041,0.1385,-0.6965,0.7041,0.1385,-0.8173,0.5528,0.1626,-0.8333,0.5528,0.0,-0.6965,0.7041,0.1385,-0.8333,0.5528,0.0,-0.7101,0.7041,0.0,-0.7101,0.7041,0.0,-0.8333,0.5528,0.0,-0.8173,0.5528,-0.1626,-0.7101,0.7041,0.0,-0.8173,0.5528,-0.1626,-0.6965,0.7041,-0.1385,-0.6965,0.7041,-0.1385,-0.8173,0.5528,-0.1626,-0.7699,0.5528,-0.3189,-0.6965,0.7041,-0.1385,-0.7699,0.5528,-0.3189,-0.6561,0.7041,-0.2718,-0.6561,0.7041,-0.2718,-0.7699,0.5528,-0.3189,-0.6929,0.5528,-0.463,-0.6561,0.7041,-0.2718,-0.6929,0.5528,-0.463,-0.5905,0.7041,-0.3945,-0.5905,0.7041,-0.3945,-0.6929,0.5528,-0.463,-0.5893,0.5528,-0.5893,-0.5905,0.7041,-0.3945,-0.5893,0.5528,-0.5893,-0.5021,0.7041,-0.5021,-0.5021,0.7041,-0.5021,-0.5893,0.5528,-0.5893,-0.463,0.5528,-0.6929,-0.5021,0.7041,-0.5021,-0.463,0.5528,-0.6929,-0.3945,0.7041,-0.5905,-0.3945,0.7041,-0.5905,-0.463,0.5528,-0.6929,-0.3189,0.5528,-0.7699,-0.3945,0.7041,-0.5905,-0.3189,0.5528,-0.7699,-0.2718,0.7041,-0.6561,-0.2718,0.7041,-0.6561,-0.3189,0.5528,-0.7699,-0.1626,0.5528,-0.8173,-0.2718,0.7041,-0.6561,-0.1626,0.5528,-0.8173,-0.1385,0.7041,-0.6965,-0.1385,0.7041,-0.6965,-0.1626,0.5528,-0.8173,0.0,0.5528,-0.8333,-0.1385,0.7041,-0.6965,0.0,0.5528,-0.8333,0.0,0.7041,-0.7101,0.0,0.7041,-0.7101,0.0,0.5528,-0.8333,0.1626,0.5528,-0.8173,0.0,0.7041,-0.7101,0.1626,0.5528,-0.8173,0.1385,0.7041,-0.6965,0.1385,0.7041,-0.6965,0.1626,0.5528,-0.8173,0.3189,0.5528,-0.7699,0.1385,0.7041,-0.6965,0.3189,0.5528,-0.7699,0.2718,0.7041,-0.6561,0.2718,0.7041,-0.6561,0.3189,0.5528,-0.7699,0.463,0.5528,-0.6929,0.2718,0.7041,-0.6561,0.463,0.5528,-0.6929,0.3945,0.7041,-0.5905,0.3945,0.7041,-0.5905,0.463,0.5528,-0.6929,0.5893,0.5528,-0.5893,0.3945,0.7041,-0.5905,0.5893,0.5528,-0.5893,0.5021,0.7041,-0.5021,0.5021,0.7041,-0.5021,0.5893,0.5528,-0.5893,0.6929,0.5528,-0.463,0.5021,0.7041,-0.5021,0.6929,0.5528,-0.463,0.5905,0.7041,-0.3945,0.5905,0.7041,-0.3945,0.6929,0.5528,-0.463,0.7699,0.5528,-0.3189,0.5905,0.7041,-0.3945,0.7699,0.5528,-0.3189,0.6561,0.7041,-0.2718,0.6561,0.7041,-0.2718,0.7699,0.5528,-0.3189,0.8173,0.5528,-0.1626,0.6561,0.7041,-0.2718,0.8173,0.5528,-0.1626,0.6965,0.7041,-0.1385,0.6965,0.7041,-0.1385,0.8173,0.5528,-0.1626,0.8333,0.5528,0.0,0.6965,0.7041,-0.1385,0.8333,0.5528,0.0,0.7101,0.7041,0.0,0.7101,0.7041,0.0,0.8333,0.5528,0.0,0.8173,0.5528,0.1626,0.7101,0.7041,0.0,0.8173,0.5528,0.1626,0.6965,0.7041,0.1385,0.6965,0.7041,0.1385,0.8173,0.5528,0.1626,0.7699,0.5528,0.3189,0.6965,0.7041,0.1385,0.7699,0.5528,0.3189,0.6561,0.7041,0.2718,0.6561,0.7041,0.2718,0.7699,0.5528,0.3189,0.6929,0.5528,0.463,0.6561,0.7041,0.2718,0.6929,0.5528,0.463,0.5905,0.7041,0.3945,0.5905,0.7041,0.3945,0.6929,0.5528,0.463,0.5893,0.5528,0.5893,0.5905,0.7041,0.3945,0.5893,0.5528,0.5893,0.5021,0.7041,0.5021,0.5021,0.7041,0.5021,0.5893,0.5528,0.5893,0.463,0.5528,0.6929,0.5021,0.7041,0.5021,0.463,0.5528,0.6929,0.3945,0.7041,0.5905,0.3945,0.7041,0.5905,0.463,0.5528,0.6929,0.3189,0.5528,0.7699,0.3945,0.7041,0.5905,0.3189,0.5528,0.7699,0.2718,0.7041,0.6561,0.2718,0.7041,0.6561,0.3189,0.5528,0.7699,0.1626,0.5528,0.8173,0.2718,0.7041,0.6561,0.1626,0.5528,0.8173,0.1385,0.7041,0.6965,0.1385,0.7041,0.6965,0.1626,0.5528,0.8173,0.0,0.5528,0.8333,0.1385,0.7041,0.6965,0.0,0.5528,0.8333,0.0,0.7041,0.7101,0.0,0.5528,0.8333,0.0,0.3805,0.9248,-0.1804,0.3805,0.907,0.0,0.5528,0.8333,-0.1804,0.3805,0.907,-0.1626,0.5528,0.8173,-0.1626,0.5528,0.8173,-0.1804,0.3805,0.907,-0.3539,0.3805,0.8544,-0.1626,0.5528,0.8173,-0.3539,0.3805,0.8544,-0.3189,0.5528,0.7699,-0.3189,0.5528,0.7699,-0.3539,0.3805,0.8544,-0.5138,0.3805,0.7689,-0.3189,0.5528,0.7699,-0.5138,0.3805,0.7689,-0.463,0.5528,0.6929,-0.463,0.5528,0.6929,-0.5138,0.3805,0.7689,-0.6539,0.3805,0.6539,-0.463,0.5528,0.6929,-0.6539,0.3805,0.6539,-0.5893,0.5528,0.5893,-0.5893,0.5528,0.5893,-0.6539,0.3805,0.6539,-0.7689,0.3805,0.5138,-0.5893,0.5528,0.5893,-0.7689,0.3805,0.5138,-0.6929,0.5528,0.463,-0.6929,0.5528,0.463,-0.7689,0.3805,0.5138,-0.8544,0.3805,0.3539,-0.6929,0.5528,0.463,-0.8544,0.3805,0.3539,-0.7699,0.5528,0.3189,-0.7699,0.5528,0.3189,-0.8544,0.3805,0.3539,-0.907,0.3805,0.1804,-0.7699,0.5528,0.3189,-0.907,0.3805,0.1804,-0.8173,0.5528,0.1626,-0.8173,0.5528,0.1626,-0.907,0.3805,0.1804,-0.9248,0.3805,0.0,-0.8173,0.5528,0.1626,-0.9248,0.3805,0.0,-0.8333,0.5528,0.0,-0.8333,0.5528,0.0,-0.9248,0.3805,0.0,-0.907,0.3805,-0.1804,-0.8333,0.5528,0.0,-0.907,0.3805,-0.1804,-0.8173,0.5528,-0.1626,-0.8173,0.5528,-0.1626,-0.907,0.3805,-0.1804,-0.8544,0.3805,-0.3539,-0.8173,0.5528,-0.1626,-0.8544,0.3805,-0.3539,-0.7699,0.5528,-0.3189,-0.7699,0.5528,-0.3189,-0.8544,0.3805,-0.3539,-0.7689,0.3805,-0.5138,-0.7699,0.5528,-0.3189,-0.7689,0.3805,-0.5138,-0.6929,0.5528,-0.463,-0.6929,0.5528,-0.463,-0.7689,0.3805,-0.5138,-0.6539,0.3805,-0.6539,-0.6929,0.5528,-0.463,-0.6539,0.3805,-0.6539,-0.5893,0.5528,-0.5893,-0.5893,0.5528,-0.5893,-0.6539,0.3805,-0.6539,-0.5138,0.3805,-0.7689,-0.5893,0.5528,-0.5893,-0.5138,0.3805,-0.7689,-0.463,0.5528,-0.6929,-0.463,0.5528,-0.6929,-0.5138,0.3805,-0.7689,-0.3539,0.3805,-0.8544,-0.463,0.5528,-0.6929,-0.3539,0.3805,-0.8544,-0.3189,0.5528,-0.7699,-0.3189,0.5528,-0.7699,-0.3539,0.3805,-0.8544,-0.1804,0.3805,-0.907,-0.3189,0.5528,-0.7699,-0.1804,0.3805,-0.907,-0.1626,0.5528,-0.8173,-0.1626,0.5528,-0.8173,-0.1804,0.3805,-0.907,0.0,0.3805,-0.9248,-0.1626,0.5528,-0.8173,0.0,0.3805,-0.9248,0.0,0.5528,-0.8333,0.0,0.5528,-0.8333,0.0,0.3805,-0.9248,0.1804,0.3805,-0.907,0.0,0.5528,-0.8333,0.1804,0.3805,-0.907,0.1626,0.5528,-0.8173,0.1626,0.5528,-0.8173,0.1804,0.3805,-0.907,0.3539,0.3805,-0.8544,0.1626,0.5528,-0.8173,0.3539,0.3805,-0.8544,0.3189,0.5528,-0.7699,0.3189,0.5528,-0.7699,0.3539,0.3805,-0.8544,0.5138,0.3805,-0.7689,0.3189,0.5528,-0.7699,0.5138,0.3805,-0.7689,0.463,0.5528,-0.6929,0.463,0.5528,-0.6929,0.5138,0.3805,-0.7689,0.6539,0.3805,-0.6539,0.463,0.5528,-0.6929,0.6539,0.3805,-0.6539,0.5893,0.5528,-0.5893,0.5893,0.5528,-0.5893,0.6539,0.3805,-0.6539,0.7689,0.3805,-0.5138,0.5893,0.5528,-0.5893,0.7689,0.3805,-0.5138,0.6929,0.5528,-0.463,0.6929,0.5528,-0.463,0.7689,0.3805,-0.5138,0.8544,0.3805,-0.3539,0.6929,0.5528,-0.463,0.8544,0.3805,-0.3539,0.7699,0.5528,-0.3189,0.7699,0.5528,-0.3189,0.8544,0.3805,-0.3539,0.907,0.3805,-0.1804,0.7699,0.5528,-0.3189,0.907,0.3805,-0.1804,0.8173,0.5528,-0.1626,0.8173,0.5528,-0.1626,0.907,0.3805,-0.1804,0.9248,0.3805,0.0,0.8173,0.5528,-0.1626,0.9248,0.3805,0.0,0.8333,0.5528,0.0,0.8333,0.5528,0.0,0.9248,0.3805,0.0,0.907,0.3805,0.1804,0.8333,0.5528,0.0,0.907,0.3805,0.1804,0.8173,0.5528,0.1626,0.8173,0.5528,0.1626,0.907,0.3805,0.1804,0.8544,0.3805,0.3539,0.8173,0.5528,0.1626,0.8544,0.3805,0.3539,0.7699,0.5528,0.3189,0.7699,0.5528,0.3189,0.8544,0.3805,0.3539,0.7689,0.3805,0.5138,0.7699,0.5528,0.3189,0.7689,0.3805,0.5138,0.6929,0.5528,0.463,0.6929,0.5528,0.463,0.7689,0.3805,0.5138,0.6539,0.3805,0.6539,0.6929,0.5528,0.463,0.6539,0.3805,0.6539,0.5893,0.5528,0.5893,0.5893,0.5528,0.5893,0.6539,0.3805,0.6539,0.5138,0.3805,0.7689,0.5893,0.5528,0.5893,0.5138,0.3805,0.7689,0.463,0.5528,0.6929,0.463,0.5528,0.6929,0.5138,0.3805,0.7689,0.3539,0.3805,0.8544,0.463,0.5528,0.6929,0.3539,0.3805,0.8544,0.3189,0.5528,0.7699,0.3189,0.5528,0.7699,0.3539,0.3805,0.8544,0.1804,0.3805,0.907,0.3189,0.5528,0.7699,0.1804,0.3805,0.907,0.1626,0.5528,0.8173,0.1626,0.5528,0.8173,0.1804,0.3805,0.907,0.0,0.3805,0.9248,0.1626,0.5528,0.8173,0.0,0.3805,0.9248,0.0,0.5528,0.8333,0.0,0.3805,0.9248,0.0,0.1939,0.981,-0.1914,0.1939,0.9622,0.0,0.3805,0.9248,-0.1914,0.1939,0.9622,-0.1804,0.3805,0.907,-0.1804,0.3805,0.907,-0.1914,0.1939,0.9622,-0.3754,0.1939,0.9063,-0.1804,0.3805,0.907,-0.3754,0.1939,0.9063,-0.3539,0.3805,0.8544,-0.3539,0.3805,0.8544,-0.3754,0.1939,0.9063,-0.545,0.1939,0.8157,-0.3539,0.3805,0.8544,-0.545,0.1939,0.8157,-0.5138,0.3805,0.7689,-0.5138,0.3805,0.7689,-0.545,0.1939,0.8157,-0.6937,0.1939,0.6937,-0.5138,0.3805,0.7689,-0.6937,0.1939,0.6937,-0.6539,0.3805,0.6539,-0.6539,0.3805,0.6539,-0.6937,0.1939,0.6937,-0.8157,0.1939,0.545,-0.6539,0.3805,0.6539,-0.8157,0.1939,0.545,-0.7689,0.3805,0.5138,-0.7689,0.3805,0.5138,-0.8157,0.1939,0.545,-0.9063,0.1939,0.3754,-0.7689,0.3805,0.5138,-0.9063,0.1939,0.3754,-0.8544,0.3805,0.3539,-0.8544,0.3805,0.3539,-0.9063,0.1939,0.3754,-0.9622,0.1939,0.1914,-0.8544,0.3805,0.3539,-0.9622,0.1939,0.1914,-0.907,0.3805,0.1804,-0.907,0.3805,0.1804,-0.9622,0.1939,0.1914,-0.981,0.1939,0.0,-0.907,0.3805,0.1804,-0.981,0.1939,0.0,-0.9248,0.3805,0.0,-0.9248,0.3805,0.0,-0.981,0.1939,0.0,-0.9622,0.1939,-0.1914,-0.9248,0.3805,0.0,-0.9622,0.1939,-0.1914,-0.907,0.3805,-0.1804,-0.907,0.3805,-0.1804,-0.9622,0.1939,-0.1914,-0.9063,0.1939,-0.3754,-0.907,0.3805,-0.1804,-0.9063,0.1939,-0.3754,-0.8544,0.3805,-0.3539,-0.8544,0.3805,-0.3539,-0.9063,0.1939,-0.3754,-0.8157,0.1939,-0.545,-0.8544,0.3805,-0.3539,-0.8157,0.1939,-0.545,-0.7689,0.3805,-0.5138,-0.7689,0.3805,-0.5138,-0.8157,0.1939,-0.545,-0.6937,0.1939,-0.6937,-0.7689,0.3805,-0.5138,-0.6937,0.1939,-0.6937,-0.6539,0.3805,-0.6539,-0.6539,0.3805,-0.6539,-0.6937,0.1939,-0.6937,-0.545,0.1939,-0.8157,-0.6539,0.3805,-0.6539,-0.545,0.1939,-0.8157,-0.5138,0.3805,-0.7689,-0.5138,0.3805,-0.7689,-0.545,0.1939,-0.8157,-0.3754,0.1939,-0.9063,-0.5138,0.3805,-0.7689,-0.3754,0.1939,-0.9063,-0.3539,0.3805,-0.8544,-0.3539,0.3805,-0.8544,-0.3754,0.1939,-0.9063,-0.1914,0.1939,-0.9622,-0.3539,0.3805,-0.8544,-0.1914,0.1939,-0.9622,-0.1804,0.3805,-0.907,-0.1804,0.3805,-0.907,-0.1914,0.1939,-0.9622,0.0,0.1939,-0.981,-0.1804,0.3805,-0.907,0.0,0.1939,-0.981,0.0,0.3805,-0.9248,0.0,0.3805,-0.9248,0.0,0.1939,-0.981,0.1914,0.1939,-0.9622,0.0,0.3805,-0.9248,0.1914,0.1939,-0.9622,0.1804,0.3805,-0.907,0.1804,0.3805,-0.907,0.1914,0.1939,-0.9622,0.3754,0.1939,-0.9063,0.1804,0.3805,-0.907,0.3754,0.1939,-0.9063,0.3539,0.3805,-0.8544,0.3539,0.3805,-0.8544,0.3754,0.1939,-0.9063,0.545,0.1939,-0.8157,0.3539,0.3805,-0.8544,0.545,0.1939,-0.8157,0.5138,0.3805,-0.7689,0.5138,0.3805,-0.7689,0.545,0.1939,-0.8157,0.6937,0.1939,-0.6937,0.5138,0.3805,-0.7689,0.6937,0.1939,-0.6937,0.6539,0.3805,-0.6539,0.6539,0.3805,-0.6539,0.6937,0.1939,-0.6937,0.8157,0.1939,-0.545,0.6539,0.3805,-0.6539,0.8157,0.1939,-0.545,0.7689,0.3805,-0.5138,0.7689,0.3805,-0.5138,0.8157,0.1939,-0.545,0.9063,0.1939,-0.3754,0.7689,0.3805,-0.5138,0.9063,0.1939,-0.3754,0.8544,0.3805,-0.3539,0.8544,0.3805,-0.3539,0.9063,0.1939,-0.3754,0.9622,0.1939,-0.1914,0.8544,0.3805,-0.3539,0.9622,0.1939,-0.1914,0.907,0.3805,-0.1804,0.907,0.3805,-0.1804,0.9622,0.1939,-0.1914,0.981,0.1939,0.0,0.907,0.3805,-0.1804,0.981,0.1939,0.0,0.9248,0.3805,0.0,0.9248,0.3805,0.0,0.981,0.1939,0.0,0.9622,0.1939,0.1914,0.9248,0.3805,0.0,0.9622,0.1939,0.1914,0.907,0.3805,0.1804,0.907,0.3805,0.1804,0.9622,0.1939,0.1914,0.9063,0.1939,0.3754,0.907,0.3805,0.1804,0.9063,0.1939,0.3754,0.8544,0.3805,0.3539,0.8544,0.3805,0.3539,0.9063,0.1939,0.3754,0.8157,0.1939,0.545,0.8544,0.3805,0.3539,0.8157,0.1939,0.545,0.7689,0.3805,0.5138,0.7689,0.3805,0.5138,0.8157,0.1939,0.545,0.6937,0.1939,0.6937,0.7689,0.3805,0.5138,0.6937,0.1939,0.6937,0.6539,0.3805,0.6539,0.6539,0.3805,0.6539,0.6937,0.1939,0.6937,0.545,0.1939,0.8157,0.6539,0.3805,0.6539,0.545,0.1939,0.8157,0.5138,0.3805,0.7689,0.5138,0.3805,0.7689,0.545,0.1939,0.8157,0.3754,0.1939,0.9063,0.5138,0.3805,0.7689,0.3754,0.1939,0.9063,0.3539,0.3805,0.8544,0.3539,0.3805,0.8544,0.3754,0.1939,0.9063,0.1914,0.1939,0.9622,0.3539,0.3805,0.8544,0.1914,0.1939,0.9622,0.1804,0.3805,0.907,0.1804,0.3805,0.907,0.1914,0.1939,0.9622,0.0,0.1939,0.981,0.1804,0.3805,0.907,0.0,0.1939,0.981,0.0,0.3805,0.9248,0.0,0.1939,0.981,0.0,0.0,1.0,-0.1951,0.0,0.9808,0.0,0.1939,0.981,-0.1951,0.0,0.9808,-0.1914,0.1939,0.9622,-0.1914,0.1939,0.9622,-0.1951,0.0,0.9808,-0.3827,0.0,0.9239,-0.1914,0.1939,0.9622,-0.3827,0.0,0.9239,-0.3754,0.1939,0.9063,-0.3754,0.1939,0.9063,-0.3827,0.0,0.9239,-0.5556,0.0,0.8315,-0.3754,0.1939,0.9063,-0.5556,0.0,0.8315,-0.545,0.1939,0.8157,-0.545,0.1939,0.8157,-0.5556,0.0,0.8315,-0.7071,0.0,0.7071,-0.545,0.1939,0.8157,-0.7071,0.0,0.7071,-0.6937,0.1939,0.6937,-0.6937,0.1939,0.6937,-0.7071,0.0,0.7071,-0.8315,0.0,0.5556,-0.6937,0.1939,0.6937,-0.8315,0.0,0.5556,-0.8157,0.1939,0.545,-0.8157,0.1939,0.545,-0.8315,0.0,0.5556,-0.9239,0.0,0.3827,-0.8157,0.1939,0.545,-0.9239,0.0,0.3827,-0.9063,0.1939,0.3754,-0.9063,0.1939,0.3754,-0.9239,0.0,0.3827,-0.9808,0.0,0.1951,-0.9063,0.1939,0.3754,-0.9808,0.0,0.1951,-0.9622,0.1939,0.1914,-0.9622,0.1939,0.1914,-0.9808,0.0,0.1951,-1.0,0.0,0.0,-0.9622,0.1939,0.1914,-1.0,0.0,0.0,-0.981,0.1939,0.0,-0.981,0.1939,0.0,-1.0,0.0,0.0,-0.9808,0.0,-0.1951,-0.981,0.1939,0.0,-0.9808,0.0,-0.1951,-0.9622,0.1939,-0.1914,-0.9622,0.1939,-0.1914,-0.9808,0.0,-0.1951,-0.9239,0.0,-0.3827,-0.9622,0.1939,-0.1914,-0.9239,0.0,-0.3827,-0.9063,0.1939,-0.3754,-0.9063,0.1939,-0.3754,-0.9239,0.0,-0.3827,-0.8315,0.0,-0.5556,-0.9063,0.1939,-0.3754,-0.8315,0.0,-0.5556,-0.8157,0.1939,-0.545,-0.8157,0.1939,-0.545,-0.8315,0.0,-0.5556,-0.7071,0.0,-0.7071,-0.8157,0.1939,-0.545,-0.7071,0.0,-0.7071,-0.6937,0.1939,-0.6937,-0.6937,0.1939,-0.6937,-0.7071,0.0,-0.7071,-0.5556,0.0,-0.8315,-0.6937,0.1939,-0.6937,-0.5556,0.0,-0.8315,-0.545,0.1939,-0.8157,-0.545,0.1939,-0.8157,-0.5556,0.0,-0.8315,-0.3827,0.0,-0.9239,-0.545,0.1939,-0.8157,-0.3827,0.0,-0.9239,-0.3754,0.1939,-0.9063,-0.3754,0.1939,-0.9063,-0.3827,0.0,-0.9239,-0.1951,0.0,-0.9808,-0.3754,0.1939,-0.9063,-0.1951,0.0,-0.9808,-0.1914,0.1939,-0.9622,-0.1914,0.1939,-0.9622,-0.1951,0.0,-0.9808,0.0,0.0,-1.0,-0.1914,0.1939,-0.9622,0.0,0.0,-1.0,0.0,0.1939,-0.981,0.0,0.1939,-0.981,0.0,0.0,-1.0,0.1951,0.0,-0.9808,0.0,0.1939,-0.981,0.1951,0.0,-0.9808,0.1914,0.1939,-0.9622,0.1914,0.1939,-0.9622,0.1951,0.0,-0.9808,0.3827,0.0,-0.9239,0.1914,0.1939,-0.9622,0.3827,0.0,-0.9239,0.3754,0.1939,-0.9063,0.3754,0.1939,-0.9063,0.3827,0.0,-0.9239,0.5556,0.0,-0.8315,0.3754,0.1939,-0.9063,0.5556,0.0,-0.8315,0.545,0.1939,-0.8157,0.545,0.1939,-0.8157,0.5556,0.0,-0.8315,0.7071,0.0,-0.7071,0.545,0.1939,-0.8157,0.7071,0.0,-0.7071,0.6937,0.1939,-0.6937,0.6937,0.1939,-0.6937,0.7071,0.0,-0.7071,0.8315,0.0,-0.5556,0.6937,0.1939,-0.6937,0.8315,0.0,-0.5556,0.8157,0.1939,-0.545,0.8157,0.1939,-0.545,0.8315,0.0,-0.5556,0.9239,0.0,-0.3827,0.8157,0.1939,-0.545,0.9239,0.0,-0.3827,0.9063,0.1939,-0.3754,0.9063,0.1939,-0.3754,0.9239,0.0,-0.3827,0.9808,0.0,-0.1951,0.9063,0.1939,-0.3754,0.9808,0.0,-0.1951,0.9622,0.1939,-0.1914,0.9622,0.1939,-0.1914,0.9808,0.0,-0.1951,1.0,0.0,0.0,0.9622,0.1939,-0.1914,1.0,0.0,0.0,0.981,0.1939,0.0,0.981,0.1939,0.0,1.0,0.0,0.0,0.9808,0.0,0.1951,0.981,0.1939,0.0,0.9808,0.0,0.1951,0.9622,0.1939,0.1914,0.9622,0.1939,0.1914,0.9808,0.0,0.1951,0.9239,0.0,0.3827,0.9622,0.1939,0.1914,0.9239,0.0,0.3827,0.9063,0.1939,0.3754,0.9063,0.1939,0.3754,0.9239,0.0,0.3827,0.8315,0.0,0.5556,0.9063,0.1939,0.3754,0.8315,0.0,0.5556,0.8157,0.1939,0.545,0.8157,0.1939,0.545,0.8315,0.0,0.5556,0.7071,0.0,0.7071,0.8157,0.1939,0.545,0.7071,0.0,0.7071,0.6937,0.1939,0.6937,0.6937,0.1939,0.6937,0.7071,0.0,0.7071,0.5556,0.0,0.8315,0.6937,0.1939,0.6937,0.5556,0.0,0.8315,0.545,0.1939,0.8157,0.545,0.1939,0.8157,0.5556,0.0,0.8315,0.3827,0.0,0.9239,0.545,0.1939,0.8157,0.3827,0.0,0.9239,0.3754,0.1939,0.9063,0.3754,0.1939,0.9063,0.3827,0.0,0.9239,0.1951,0.0,0.9808,0.3754,0.1939,0.9063,0.1951,0.0,0.9808,0.1914,0.1939,0.9622,0.1914,0.1939,0.9622,0.1951,0.0,0.9808,0.0,0.0,1.0,0.1914,0.1939,0.9622,0.0,0.0,1.0,0.0,0.1939,0.981,0.0,0.0,1.0,0.0,-0.1939,0.981,-0.1914,-0.1939,0.9622,0.0,0.0,1.0,-0.1914,-0.1939,0.9622,-0.1951,0.0,0.9808,-0.1951,0.0,0.9808,-0.1914,-0.1939,0.9622,-0.3754,-0.1939,0.9063,-0.1951,0.0,0.9808,-0.3754,-0.1939,0.9063,-0.3827,0.0,0.9239,-0.3827,0.0,0.9239,-0.3754,-0.1939,0.9063,-0.545,-0.1939,0.8157,-0.3827,0.0,0.9239,-0.545,-0.1939,0.8157,-0.5556,0.0,0.8315,-0.5556,0.0,0.8315,-0.545,-0.1939,0.8157,-0.6937,-0.1939,0.6937,-0.5556,0.0,0.8315,-0.6937,-0.1939,0.6937,-0.7071,0.0,0.7071,-0.7071,0.0,0.7071,-0.6937,-0.1939,0.6937,-0.8157,-0.1939,0.545,-0.7071,0.0,0.7071,-0.8157,-0.1939,0.545,-0.8315,0.0,0.5556,-0.8315,0.0,0.5556,-0.8157,-0.1939,0.545,-0.9063,-0.1939,0.3754,-0.8315,0.0,0.5556,-0.9063,-0.1939,0.3754,-0.9239,0.0,0.3827,-0.9239,0.0,0.3827,-0.9063,-0.1939,0.3754,-0.9622,-0.1939,0.1914,-0.9239,0.0,0.3827,-0.9622,-0.1939,0.1914,-0.9808,0.0,0.1951,-0.9808,0.0,0.1951,-0.9622,-0.1939,0.1914,-0.981,-0.1939,0.0,-0.9808,0.0,0.1951,-0.981,-0.1939,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-0.981,-0.1939,0.0,-0.9622,-0.1939,-0.1914,-1.0,0.0,0.0,-0.9622,-0.1939,-0.1914,-0.9808,0.0,-0.1951,-0.9808,0.0,-0.1951,-0.9622,-0.1939,-0.1914,-0.9063,-0.1939,-0.3754,-0.9808,0.0,-0.1951,-0.9063,-0.1939,-0.3754,-0.9239,0.0,-0.3827,-0.9239,0.0,-0.3827,-0.9063,-0.1939,-0.3754,-0.8157,-0.1939,-0.545,-0.9239,0.0,-0.3827,-0.8157,-0.1939,-0.545,-0.8315,0.0,-0.5556,-0.8315,0.0,-0.5556,-0.8157,-0.1939,-0.545,-0.6937,-0.1939,-0.6937,-0.8315,0.0,-0.5556,-0.6937,-0.1939,-0.6937,-0.7071,0.0,-0.7071,-0.7071,0.0,-0.7071,-0.6937,-0.1939,-0.6937,-0.545,-0.1939,-0.8157,-0.7071,0.0,-0.7071,-0.545,-0.1939,-0.8157,-0.5556,0.0,-0.8315,-0.5556,0.0,-0.8315,-0.545,-0.1939,-0.8157,-0.3754,-0.1939,-0.9063,-0.5556,0.0,-0.8315,-0.3754,-0.1939,-0.9063,-0.3827,0.0,-0.9239,-0.3827,0.0,-0.9239,-0.3754,-0.1939,-0.9063,-0.1914,-0.1939,-0.9622,-0.3827,0.0,-0.9239,-0.1914,-0.1939,-0.9622,-0.1951,0.0,-0.9808,-0.1951,0.0,-0.9808,-0.1914,-0.1939,-0.9622,0.0,-0.1939,-0.981,-0.1951,0.0,-0.9808,0.0,-0.1939,-0.981,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,-0.1939,-0.981,0.1914,-0.1939,-0.9622,0.0,0.0,-1.0,0.1914,-0.1939,-0.9622,0.1951,0.0,-0.9808,0.1951,0.0,-0.9808,0.1914,-0.1939,-0.9622,0.3754,-0.1939,-0.9063,0.1951,0.0,-0.9808,0.3754,-0.1939,-0.9063,0.3827,0.0,-0.9239,0.3827,0.0,-0.9239,0.3754,-0.1939,-0.9063,0.545,-0.1939,-0.8157,0.3827,0.0,-0.9239,0.545,-0.1939,-0.8157,0.5556,0.0,-0.8315,0.5556,0.0,-0.8315,0.545,-0.1939,-0.8157,0.6937,-0.1939,-0.6937,0.5556,0.0,-0.8315,0.6937,-0.1939,-0.6937,0.7071,0.0,-0.7071,0.7071,0.0,-0.7071,0.6937,-0.1939,-0.6937,0.8157,-0.1939,-0.545,0.7071,0.0,-0.7071,0.8157,-0.1939,-0.545,0.8315,0.0,-0.5556,0.8315,0.0,-0.5556,0.8157,-0.1939,-0.545,0.9063,-0.1939,-0.3754,0.8315,0.0,-0.5556,0.9063,-0.1939,-0.3754,0.9239,0.0,-0.3827,0.9239,0.0,-0.3827,0.9063,-0.1939,-0.3754,0.9622,-0.1939,-0.1914,0.9239,0.0,-0.3827,0.9622,-0.1939,-0.1914,0.9808,0.0,-0.1951,0.9808,0.0,-0.1951,0.9622,-0.1939,-0.1914,0.981,-0.1939,0.0,0.9808,0.0,-0.1951,0.981,-0.1939,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.981,-0.1939,0.0,0.9622,-0.1939,0.1914,1.0,0.0,0.0,0.9622,-0.1939,0.1914,0.9808,0.0,0.1951,0.9808,0.0,0.1951,0.9622,-0.1939,0.1914,0.9063,-0.1939,0.3754,0.9808,0.0,0.1951,0.9063,-0.1939,0.3754,0.9239,0.0,0.3827,0.9239,0.0,0.3827,0.9063,-0.1939,0.3754,0.8157,-0.1939,0.545,0.9239,0.0,0.3827,0.8157,-0.1939,0.545,0.8315,0.0,0.5556,0.8315,0.0,0.5556,0.8157,-0.1939,0.545,0.6937,-0.1939,0.6937,0.8315,0.0,0.5556,0.6937,-0.1939,0.6937,0.7071,0.0,0.7071,0.7071,0.0,0.7071,0.6937,-0.1939,0.6937,0.545,-0.1939,0.8157,0.7071,0.0,0.7071,0.545,-0.1939,0.8157,0.5556,0.0,0.8315,0.5556,0.0,0.8315,0.545,-0.1939,0.8157,0.3754,-0.1939,0.9063,0.5556,0.0,0.8315,0.3754,-0.1939,0.9063,0.3827,0.0,0.9239,0.3827,0.0,0.9239,0.3754,-0.1939,0.9063,0.1914,-0.1939,0.9622,0.3827,0.0,0.9239,0.1914,-0.1939,0.9622,0.1951,0.0,0.9808,0.1951,0.0,0.9808,0.1914,-0.1939,0.9622,0.0,-0.1939,0.981,0.1951,0.0,0.9808,0.0,-0.1939,0.981,0.0,0.0,1.0,0.0,-0.1939,0.981,0.0,-0.3805,0.9248,-0.1804,-0.3805,0.907,0.0,-0.1939,0.981,-0.1804,-0.3805,0.907,-0.1914,-0.1939,0.9622,-0.1914,-0.1939,0.9622,-0.1804,-0.3805,0.907,-0.3539,-0.3805,0.8544,-0.1914,-0.1939,0.9622,-0.3539,-0.3805,0.8544,-0.3754,-0.1939,0.9063,-0.3754,-0.1939,0.9063,-0.3539,-0.3805,0.8544,-0.5138,-0.3805,0.7689,-0.3754,-0.1939,0.9063,-0.5138,-0.3805,0.7689,-0.545,-0.1939,0.8157,-0.545,-0.1939,0.8157,-0.5138,-0.3805,0.7689,-0.6539,-0.3805,0.6539,-0.545,-0.1939,0.8157,-0.6539,-0.3805,0.6539,-0.6937,-0.1939,0.6937,-0.6937,-0.1939,0.6937,-0.6539,-0.3805,0.6539,-0.7689,-0.3805,0.5138,-0.6937,-0.1939,0.6937,-0.7689,-0.3805,0.5138,-0.8157,-0.1939,0.545,-0.8157,-0.1939,0.545,-0.7689,-0.3805,0.5138,-0.8544,-0.3805,0.3539,-0.8157,-0.1939,0.545,-0.8544,-0.3805,0.3539,-0.9063,-0.1939,0.3754,-0.9063,-0.1939,0.3754,-0.8544,-0.3805,0.3539,-0.907,-0.3805,0.1804,-0.9063,-0.1939,0.3754,-0.907,-0.3805,0.1804,-0.9622,-0.1939,0.1914,-0.9622,-0.1939,0.1914,-0.907,-0.3805,0.1804,-0.9248,-0.3805,0.0,-0.9622,-0.1939,0.1914,-0.9248,-0.3805,0.0,-0.981,-0.1939,0.0,-0.981,-0.1939,0.0,-0.9248,-0.3805,0.0,-0.907,-0.3805,-0.1804,-0.981,-0.1939,0.0,-0.907,-0.3805,-0.1804,-0.9622,-0.1939,-0.1914,-0.9622,-0.1939,-0.1914,-0.907,-0.3805,-0.1804,-0.8544,-0.3805,-0.3539,-0.9622,-0.1939,-0.1914,-0.8544,-0.3805,-0.3539,-0.9063,-0.1939,-0.3754,-0.9063,-0.1939,-0.3754,-0.8544,-0.3805,-0.3539,-0.7689,-0.3805,-0.5138,-0.9063,-0.1939,-0.3754,-0.7689,-0.3805,-0.5138,-0.8157,-0.1939,-0.545,-0.8157,-0.1939,-0.545,-0.7689,-0.3805,-0.5138,-0.6539,-0.3805,-0.6539,-0.8157,-0.1939,-0.545,-0.6539,-0.3805,-0.6539,-0.6937,-0.1939,-0.6937,-0.6937,-0.1939,-0.6937,-0.6539,-0.3805,-0.6539,-0.5138,-0.3805,-0.7689,-0.6937,-0.1939,-0.6937,-0.5138,-0.3805,-0.7689,-0.545,-0.1939,-0.8157,-0.545,-0.1939,-0.8157,-0.5138,-0.3805,-0.7689,-0.3539,-0.3805,-0.8544,-0.545,-0.1939,-0.8157,-0.3539,-0.3805,-0.8544,-0.3754,-0.1939,-0.9063,-0.3754,-0.1939,-0.9063,-0.3539,-0.3805,-0.8544,-0.1804,-0.3805,-0.907,-0.3754,-0.1939,-0.9063,-0.1804,-0.3805,-0.907,-0.1914,-0.1939,-0.9622,-0.1914,-0.1939,-0.9622,-0.1804,-0.3805,-0.907,0.0,-0.3805,-0.9248,-0.1914,-0.1939,-0.9622,0.0,-0.3805,-0.9248,0.0,-0.1939,-0.981,0.0,-0.1939,-0.981,0.0,-0.3805,-0.9248,0.1804,-0.3805,-0.907,0.0,-0.1939,-0.981,0.1804,-0.3805,-0.907,0.1914,-0.1939,-0.9622,0.1914,-0.1939,-0.9622,0.1804,-0.3805,-0.907,0.3539,-0.3805,-0.8544,0.1914,-0.1939,-0.9622,0.3539,-0.3805,-0.8544,0.3754,-0.1939,-0.9063,0.3754,-0.1939,-0.9063,0.3539,-0.3805,-0.8544,0.5138,-0.3805,-0.7689,0.3754,-0.1939,-0.9063,0.5138,-0.3805,-0.7689,0.545,-0.1939,-0.8157,0.545,-0.1939,-0.8157,0.5138,-0.3805,-0.7689,0.6539,-0.3805,-0.6539,0.545,-0.1939,-0.8157,0.6539,-0.3805,-0.6539,0.6937,-0.1939,-0.6937,0.6937,-0.1939,-0.6937,0.6539,-0.3805,-0.6539,0.7689,-0.3805,-0.5138,0.6937,-0.1939,-0.6937,0.7689,-0.3805,-0.5138,0.8157,-0.1939,-0.545,0.8157,-0.1939,-0.545,0.7689,-0.3805,-0.5138,0.8544,-0.3805,-0.3539,0.8157,-0.1939,-0.545,0.8544,-0.3805,-0.3539,0.9063,-0.1939,-0.3754,0.9063,-0.1939,-0.3754,0.8544,-0.3805,-0.3539,0.907,-0.3805,-0.1804,0.9063,-0.1939,-0.3754,0.907,-0.3805,-0.1804,0.9622,-0.1939,-0.1914,0.9622,-0.1939,-0.1914,0.907,-0.3805,-0.1804,0.9248,-0.3805,0.0,0.9622,-0.1939,-0.1914,0.9248,-0.3805,0.0,0.981,-0.1939,0.0,0.981,-0.1939,0.0,0.9248,-0.3805,0.0,0.907,-0.3805,0.1804,0.981,-0.1939,0.0,0.907,-0.3805,0.1804,0.9622,-0.1939,0.1914,0.9622,-0.1939,0.1914,0.907,-0.3805,0.1804,0.8544,-0.3805,0.3539,0.9622,-0.1939,0.1914,0.8544,-0.3805,0.3539,0.9063,-0.1939,0.3754,0.9063,-0.1939,0.3754,0.8544,-0.3805,0.3539,0.7689,-0.3805,0.5138,0.9063,-0.1939,0.3754,0.7689,-0.3805,0.5138,0.8157,-0.1939,0.545,0.8157,-0.1939,0.545,0.7689,-0.3805,0.5138,0.6539,-0.3805,0.6539,0.8157,-0.1939,0.545,0.6539,-0.3805,0.6539,0.6937,-0.1939,0.6937,0.6937,-0.1939,0.6937,0.6539,-0.3805,0.6539,0.5138,-0.3805,0.7689,0.6937,-0.1939,0.6937,0.5138,-0.3805,0.7689,0.545,-0.1939,0.8157,0.545,-0.1939,0.8157,0.5138,-0.3805,0.7689,0.3539,-0.3805,0.8544,0.545,-0.1939,0.8157,0.3539,-0.3805,0.8544,0.3754,-0.1939,0.9063,0.3754,-0.1939,0.9063,0.3539,-0.3805,0.8544,0.1804,-0.3805,0.907,0.3754,-0.1939,0.9063,0.1804,-0.3805,0.907,0.1914,-0.1939,0.9622,0.1914,-0.1939,0.9622,0.1804,-0.3805,0.907,0.0,-0.3805,0.9248,0.1914,-0.1939,0.9622,0.0,-0.3805,0.9248,0.0,-0.1939,0.981,0.0,-0.3805,0.9248,0.0,-0.5528,0.8333,-0.1626,-0.5528,0.8173,0.0,-0.3805,0.9248,-0.1626,-0.5528,0.8173,-0.1804,-0.3805,0.907,-0.1804,-0.3805,0.907,-0.1626,-0.5528,0.8173,-0.3189,-0.5528,0.7699,-0.1804,-0.3805,0.907,-0.3189,-0.5528,0.7699,-0.3539,-0.3805,0.8544,-0.3539,-0.3805,0.8544,-0.3189,-0.5528,0.7699,-0.463,-0.5528,0.6929,-0.3539,-0.3805,0.8544,-0.463,-0.5528,0.6929,-0.5138,-0.3805,0.7689,-0.5138,-0.3805,0.7689,-0.463,-0.5528,0.6929,-0.5893,-0.5528,0.5893,-0.5138,-0.3805,0.7689,-0.5893,-0.5528,0.5893,-0.6539,-0.3805,0.6539,-0.6539,-0.3805,0.6539,-0.5893,-0.5528,0.5893,-0.6929,-0.5528,0.463,-0.6539,-0.3805,0.6539,-0.6929,-0.5528,0.463,-0.7689,-0.3805,0.5138,-0.7689,-0.3805,0.5138,-0.6929,-0.5528,0.463,-0.7699,-0.5528,0.3189,-0.7689,-0.3805,0.5138,-0.7699,-0.5528,0.3189,-0.8544,-0.3805,0.3539,-0.8544,-0.3805,0.3539,-0.7699,-0.5528,0.3189,-0.8173,-0.5528,0.1626,-0.8544,-0.3805,0.3539,-0.8173,-0.5528,0.1626,-0.907,-0.3805,0.1804,-0.907,-0.3805,0.1804,-0.8173,-0.5528,0.1626,-0.8333,-0.5528,0.0,-0.907,-0.3805,0.1804,-0.8333,-0.5528,0.0,-0.9248,-0.3805,0.0,-0.9248,-0.3805,0.0,-0.8333,-0.5528,0.0,-0.8173,-0.5528,-0.1626,-0.9248,-0.3805,0.0,-0.8173,-0.5528,-0.1626,-0.907,-0.3805,-0.1804,-0.907,-0.3805,-0.1804,-0.8173,-0.5528,-0.1626,-0.7699,-0.5528,-0.3189,-0.907,-0.3805,-0.1804,-0.7699,-0.5528,-0.3189,-0.8544,-0.3805,-0.3539,-0.8544,-0.3805,-0.3539,-0.7699,-0.5528,-0.3189,-0.6929,-0.5528,-0.463,-0.8544,-0.3805,-0.3539,-0.6929,-0.5528,-0.463,-0.7689,-0.3805,-0.5138,-0.7689,-0.3805,-0.5138,-0.6929,-0.5528,-0.463,-0.5893,-0.5528,-0.5893,-0.7689,-0.3805,-0.5138,-0.5893,-0.5528,-0.5893,-0.6539,-0.3805,-0.6539,-0.6539,-0.3805,-0.6539,-0.5893,-0.5528,-0.5893,-0.463,-0.5528,-0.6929,-0.6539,-0.3805,-0.6539,-0.463,-0.5528,-0.6929,-0.5138,-0.3805,-0.7689,-0.5138,-0.3805,-0.7689,-0.463,-0.5528,-0.6929,-0.3189,-0.5528,-0.7699,-0.5138,-0.3805,-0.7689,-0.3189,-0.5528,-0.7699,-0.3539,-0.3805,-0.8544,-0.3539,-0.3805,-0.8544,-0.3189,-0.5528,-0.7699,-0.1626,-0.5528,-0.8173,-0.3539,-0.3805,-0.8544,-0.1626,-0.5528,-0.8173,-0.1804,-0.3805,-0.907,-0.1804,-0.3805,-0.907,-0.1626,-0.5528,-0.8173,0.0,-0.5528,-0.8333,-0.1804,-0.3805,-0.907,0.0,-0.5528,-0.8333,0.0,-0.3805,-0.9248,0.0,-0.3805,-0.9248,0.0,-0.5528,-0.8333,0.1626,-0.5528,-0.8173,0.0,-0.3805,-0.9248,0.1626,-0.5528,-0.8173,0.1804,-0.3805,-0.907,0.1804,-0.3805,-0.907,0.1626,-0.5528,-0.8173,0.3189,-0.5528,-0.7699,0.1804,-0.3805,-0.907,0.3189,-0.5528,-0.7699,0.3539,-0.3805,-0.8544,0.3539,-0.3805,-0.8544,0.3189,-0.5528,-0.7699,0.463,-0.5528,-0.6929,0.3539,-0.3805,-0.8544,0.463,-0.5528,-0.6929,0.5138,-0.3805,-0.7689,0.5138,-0.3805,-0.7689,0.463,-0.5528,-0.6929,0.5893,-0.5528,-0.5893,0.5138,-0.3805,-0.7689,0.5893,-0.5528,-0.5893,0.6539,-0.3805,-0.6539,0.6539,-0.3805,-0.6539,0.5893,-0.5528,-0.5893,0.6929,-0.5528,-0.463,0.6539,-0.3805,-0.6539,0.6929,-0.5528,-0.463,0.7689,-0.3805,-0.5138,0.7689,-0.3805,-0.5138,0.6929,-0.5528,-0.463,0.7699,-0.5528,-0.3189,0.7689,-0.3805,-0.5138,0.7699,-0.5528,-0.3189,0.8544,-0.3805,-0.3539,0.8544,-0.3805,-0.3539,0.7699,-0.5528,-0.3189,0.8173,-0.5528,-0.1626,0.8544,-0.3805,-0.3539,0.8173,-0.5528,-0.1626,0.907,-0.3805,-0.1804,0.907,-0.3805,-0.1804,0.8173,-0.5528,-0.1626,0.8333,-0.5528,0.0,0.907,-0.3805,-0.1804,0.8333,-0.5528,0.0,0.9248,-0.3805,0.0,0.9248,-0.3805,0.0,0.8333,-0.5528,0.0,0.8173,-0.5528,0.1626,0.9248,-0.3805,0.0,0.8173,-0.5528,0.1626,0.907,-0.3805,0.1804,0.907,-0.3805,0.1804,0.8173,-0.5528,0.1626,0.7699,-0.5528,0.3189,0.907,-0.3805,0.1804,0.7699,-0.5528,0.3189,0.8544,-0.3805,0.3539,0.8544,-0.3805,0.3539,0.7699,-0.5528,0.3189,0.6929,-0.5528,0.463,0.8544,-0.3805,0.3539,0.6929,-0.5528,0.463,0.7689,-0.3805,0.5138,0.7689,-0.3805,0.5138,0.6929,-0.5528,0.463,0.5893,-0.5528,0.5893,0.7689,-0.3805,0.5138,0.5893,-0.5528,0.5893,0.6539,-0.3805,0.6539,0.6539,-0.3805,0.6539,0.5893,-0.5528,0.5893,0.463,-0.5528,0.6929,0.6539,-0.3805,0.6539,0.463,-0.5528,0.6929,0.5138,-0.3805,0.7689,0.5138,-0.3805,0.7689,0.463,-0.5528,0.6929,0.3189,-0.5528,0.7699,0.5138,-0.3805,0.7689,0.3189,-0.5528,0.7699,0.3539,-0.3805,0.8544,0.3539,-0.3805,0.8544,0.3189,-0.5528,0.7699,0.1626,-0.5528,0.8173,0.3539,-0.3805,0.8544,0.1626,-0.5528,0.8173,0.1804,-0.3805,0.907,0.1804,-0.3805,0.907,0.1626,-0.5528,0.8173,0.0,-0.5528,0.8333,0.1804,-0.3805,0.907,0.0,-0.5528,0.8333,0.0,-0.3805,0.9248,0.0,-0.5528,0.8333,0.0,-0.7041,0.7101,-0.1385,-0.7041,0.6965,0.0,-0.5528,0.8333,-0.1385,-0.7041,0.6965,-0.1626,-0.5528,0.8173,-0.1626,-0.5528,0.8173,-0.1385,-0.7041,0.6965,-0.2718,-0.7041,0.6561,-0.1626,-0.5528,0.8173,-0.2718,-0.7041,0.6561,-0.3189,-0.5528,0.7699,-0.3189,-0.5528,0.7699,-0.2718,-0.7041,0.6561,-0.3945,-0.7041,0.5905,-0.3189,-0.5528,0.7699,-0.3945,-0.7041,0.5905,-0.463,-0.5528,0.6929,-0.463,-0.5528,0.6929,-0.3945,-0.7041,0.5905,-0.5021,-0.7041,0.5021,-0.463,-0.5528,0.6929,-0.5021,-0.7041,0.5021,-0.5893,-0.5528,0.5893,-0.5893,-0.5528,0.5893,-0.5021,-0.7041,0.5021,-0.5905,-0.7041,0.3945,-0.5893,-0.5528,0.5893,-0.5905,-0.7041,0.3945,-0.6929,-0.5528,0.463,-0.6929,-0.5528,0.463,-0.5905,-0.7041,0.3945,-0.6561,-0.7041,0.2718,-0.6929,-0.5528,0.463,-0.6561,-0.7041,0.2718,-0.7699,-0.5528,0.3189,-0.7699,-0.5528,0.3189,-0.6561,-0.7041,0.2718,-0.6965,-0.7041,0.1385,-0.7699,-0.5528,0.3189,-0.6965,-0.7041,0.1385,-0.8173,-0.5528,0.1626,-0.8173,-0.5528,0.1626,-0.6965,-0.7041,0.1385,-0.7101,-0.7041,0.0,-0.8173,-0.5528,0.1626,-0.7101,-0.7041,0.0,-0.8333,-0.5528,0.0,-0.8333,-0.5528,0.0,-0.7101,-0.7041,0.0,-0.6965,-0.7041,-0.1385,-0.8333,-0.5528,0.0,-0.6965,-0.7041,-0.1385,-0.8173,-0.5528,-0.1626,-0.8173,-0.5528,-0.1626,-0.6965,-0.7041,-0.1385,-0.6561,-0.7041,-0.2718,-0.8173,-0.5528,-0.1626,-0.6561,-0.7041,-0.2718,-0.7699,-0.5528,-0.3189,-0.7699,-0.5528,-0.3189,-0.6561,-0.7041,-0.2718,-0.5905,-0.7041,-0.3945,-0.7699,-0.5528,-0.3189,-0.5905,-0.7041,-0.3945,-0.6929,-0.5528,-0.463,-0.6929,-0.5528,-0.463,-0.5905,-0.7041,-0.3945,-0.5021,-0.7041,-0.5021,-0.6929,-0.5528,-0.463,-0.5021,-0.7041,-0.5021,-0.5893,-0.5528,-0.5893,-0.5893,-0.5528,-0.5893,-0.5021,-0.7041,-0.5021,-0.3945,-0.7041,-0.5905,-0.5893,-0.5528,-0.5893,-0.3945,-0.7041,-0.5905,-0.463,-0.5528,-0.6929,-0.463,-0.5528,-0.6929,-0.3945,-0.7041,-0.5905,-0.2718,-0.7041,-0.6561,-0.463,-0.5528,-0.6929,-0.2718,-0.7041,-0.6561,-0.3189,-0.5528,-0.7699,-0.3189,-0.5528,-0.7699,-0.2718,-0.7041,-0.6561,-0.1385,-0.7041,-0.6965,-0.3189,-0.5528,-0.7699,-0.1385,-0.7041,-0.6965,-0.1626,-0.5528,-0.8173,-0.1626,-0.5528,-0.8173,-0.1385,-0.7041,-0.6965,0.0,-0.7041,-0.7101,-0.1626,-0.5528,-0.8173,0.0,-0.7041,-0.7101,0.0,-0.5528,-0.8333,0.0,-0.5528,-0.8333,0.0,-0.7041,-0.7101,0.1385,-0.7041,-0.6965,0.0,-0.5528,-0.8333,0.1385,-0.7041,-0.6965,0.1626,-0.5528,-0.8173,0.1626,-0.5528,-0.8173,0.1385,-0.7041,-0.6965,0.2718,-0.7041,-0.6561,0.1626,-0.5528,-0.8173,0.2718,-0.7041,-0.6561,0.3189,-0.5528,-0.7699,0.3189,-0.5528,-0.7699,0.2718,-0.7041,-0.6561,0.3945,-0.7041,-0.5905,0.3189,-0.5528,-0.7699,0.3945,-0.7041,-0.5905,0.463,-0.5528,-0.6929,0.463,-0.5528,-0.6929,0.3945,-0.7041,-0.5905,0.5021,-0.7041,-0.5021,0.463,-0.5528,-0.6929,0.5021,-0.7041,-0.5021,0.5893,-0.5528,-0.5893,0.5893,-0.5528,-0.5893,0.5021,-0.7041,-0.5021,0.5905,-0.7041,-0.3945,0.5893,-0.5528,-0.5893,0.5905,-0.7041,-0.3945,0.6929,-0.5528,-0.463,0.6929,-0.5528,-0.463,0.5905,-0.7041,-0.3945,0.6561,-0.7041,-0.2718,0.6929,-0.5528,-0.463,0.6561,-0.7041,-0.2718,0.7699,-0.5528,-0.3189,0.7699,-0.5528,-0.3189,0.6561,-0.7041,-0.2718,0.6965,-0.7041,-0.1385,0.7699,-0.5528,-0.3189,0.6965,-0.7041,-0.1385,0.8173,-0.5528,-0.1626,0.8173,-0.5528,-0.1626,0.6965,-0.7041,-0.1385,0.7101,-0.7041,0.0,0.8173,-0.5528,-0.1626,0.7101,-0.7041,0.0,0.8333,-0.5528,0.0,0.8333,-0.5528,0.0,0.7101,-0.7041,0.0,0.6965,-0.7041,0.1385,0.8333,-0.5528,0.0,0.6965,-0.7041,0.1385,0.8173,-0.5528,0.1626,0.8173,-0.5528,0.1626,0.6965,-0.7041,0.1385,0.6561,-0.7041,0.2718,0.8173,-0.5528,0.1626,0.6561,-0.7041,0.2718,0.7699,-0.5528,0.3189,0.7699,-0.5528,0.3189,0.6561,-0.7041,0.2718,0.5905,-0.7041,0.3945,0.7699,-0.5528,0.3189,0.5905,-0.7041,0.3945,0.6929,-0.5528,0.463,0.6929,-0.5528,0.463,0.5905,-0.7041,0.3945,0.5021,-0.7041,0.5021,0.6929,-0.5528,0.463,0.5021,-0.7041,0.5021,0.5893,-0.5528,0.5893,0.5893,-0.5528,0.5893,0.5021,-0.7041,0.5021,0.3945,-0.7041,0.5905,0.5893,-0.5528,0.5893,0.3945,-0.7041,0.5905,0.463,-0.5528,0.6929,0.463,-0.5528,0.6929,0.3945,-0.7041,0.5905,0.2718,-0.7041,0.6561,0.463,-0.5528,0.6929,0.2718,-0.7041,0.6561,0.3189,-0.5528,0.7699,0.3189,-0.5528,0.7699,0.2718,-0.7041,0.6561,0.1385,-0.7041,0.6965,0.3189,-0.5528,0.7699,0.1385,-0.7041,0.6965,0.1626,-0.5528,0.8173,0.1626,-0.5528,0.8173,0.1385,-0.7041,0.6965,0.0,-0.7041,0.7101,0.1626,-0.5528,0.8173,0.0,-0.7041,0.7101,0.0,-0.5528,0.8333,0.0,-0.7041,0.7101,0.0,-0.8286,0.5598,-0.1092,-0.8286,0.549,0.0,-0.7041,0.7101,-0.1092,-0.8286,0.549,-0.1385,-0.7041,0.6965,-0.1385,-0.7041,0.6965,-0.1092,-0.8286,0.549,-0.2142,-0.8286,0.5172,-0.1385,-0.7041,0.6965,-0.2142,-0.8286,0.5172,-0.2718,-0.7041,0.6561,-0.2718,-0.7041,0.6561,-0.2142,-0.8286,0.5172,-0.311,-0.8286,0.4654,-0.2718,-0.7041,0.6561,-0.311,-0.8286,0.4654,-0.3945,-0.7041,0.5905,-0.3945,-0.7041,0.5905,-0.311,-0.8286,0.4654,-0.3958,-0.8286,0.3958,-0.3945,-0.7041,0.5905,-0.3958,-0.8286,0.3958,-0.5021,-0.7041,0.5021,-0.5021,-0.7041,0.5021,-0.3958,-0.8286,0.3958,-0.4654,-0.8286,0.311,-0.5021,-0.7041,0.5021,-0.4654,-0.8286,0.311,-0.5905,-0.7041,0.3945,-0.5905,-0.7041,0.3945,-0.4654,-0.8286,0.311,-0.5172,-0.8286,0.2142,-0.5905,-0.7041,0.3945,-0.5172,-0.8286,0.2142,-0.6561,-0.7041,0.2718,-0.6561,-0.7041,0.2718,-0.5172,-0.8286,0.2142,-0.549,-0.8286,0.1092,-0.6561,-0.7041,0.2718,-0.549,-0.8286,0.1092,-0.6965,-0.7041,0.1385,-0.6965,-0.7041,0.1385,-0.549,-0.8286,0.1092,-0.5598,-0.8286,0.0,-0.6965,-0.7041,0.1385,-0.5598,-0.8286,0.0,-0.7101,-0.7041,0.0,-0.7101,-0.7041,0.0,-0.5598,-0.8286,0.0,-0.549,-0.8286,-0.1092,-0.7101,-0.7041,0.0,-0.549,-0.8286,-0.1092,-0.6965,-0.7041,-0.1385,-0.6965,-0.7041,-0.1385,-0.549,-0.8286,-0.1092,-0.5172,-0.8286,-0.2142,-0.6965,-0.7041,-0.1385,-0.5172,-0.8286,-0.2142,-0.6561,-0.7041,-0.2718,-0.6561,-0.7041,-0.2718,-0.5172,-0.8286,-0.2142,-0.4654,-0.8286,-0.311,-0.6561,-0.7041,-0.2718,-0.4654,-0.8286,-0.311,-0.5905,-0.7041,-0.3945,-0.5905,-0.7041,-0.3945,-0.4654,-0.8286,-0.311,-0.3958,-0.8286,-0.3958,-0.5905,-0.7041,-0.3945,-0.3958,-0.8286,-0.3958,-0.5021,-0.7041,-0.5021,-0.5021,-0.7041,-0.5021,-0.3958,-0.8286,-0.3958,-0.311,-0.8286,-0.4654,-0.5021,-0.7041,-0.5021,-0.311,-0.8286,-0.4654,-0.3945,-0.7041,-0.5905,-0.3945,-0.7041,-0.5905,-0.311,-0.8286,-0.4654,-0.2142,-0.8286,-0.5172,-0.3945,-0.7041,-0.5905,-0.2142,-0.8286,-0.5172,-0.2718,-0.7041,-0.6561,-0.2718,-0.7041,-0.6561,-0.2142,-0.8286,-0.5172,-0.1092,-0.8286,-0.549,-0.2718,-0.7041,-0.6561,-0.1092,-0.8286,-0.549,-0.1385,-0.7041,-0.6965,-0.1385,-0.7041,-0.6965,-0.1092,-0.8286,-0.549,0.0,-0.8286,-0.5598,-0.1385,-0.7041,-0.6965,0.0,-0.8286,-0.5598,0.0,-0.7041,-0.7101,0.0,-0.7041,-0.7101,0.0,-0.8286,-0.5598,0.1092,-0.8286,-0.549,0.0,-0.7041,-0.7101,0.1092,-0.8286,-0.549,0.1385,-0.7041,-0.6965,0.1385,-0.7041,-0.6965,0.1092,-0.8286,-0.549,0.2142,-0.8286,-0.5172,0.1385,-0.7041,-0.6965,0.2142,-0.8286,-0.5172,0.2718,-0.7041,-0.6561,0.2718,-0.7041,-0.6561,0.2142,-0.8286,-0.5172,0.311,-0.8286,-0.4654,0.2718,-0.7041,-0.6561,0.311,-0.8286,-0.4654,0.3945,-0.7041,-0.5905,0.3945,-0.7041,-0.5905,0.311,-0.8286,-0.4654,0.3958,-0.8286,-0.3958,0.3945,-0.7041,-0.5905,0.3958,-0.8286,-0.3958,0.5021,-0.7041,-0.5021,0.5021,-0.7041,-0.5021,0.3958,-0.8286,-0.3958,0.4654,-0.8286,-0.311,0.5021,-0.7041,-0.5021,0.4654,-0.8286,-0.311,0.5905,-0.7041,-0.3945,0.5905,-0.7041,-0.3945,0.4654,-0.8286,-0.311,0.5172,-0.8286,-0.2142,0.5905,-0.7041,-0.3945,0.5172,-0.8286,-0.2142,0.6561,-0.7041,-0.2718,0.6561,-0.7041,-0.2718,0.5172,-0.8286,-0.2142,0.549,-0.8286,-0.1092,0.6561,-0.7041,-0.2718,0.549,-0.8286,-0.1092,0.6965,-0.7041,-0.1385,0.6965,-0.7041,-0.1385,0.549,-0.8286,-0.1092,0.5598,-0.8286,0.0,0.6965,-0.7041,-0.1385,0.5598,-0.8286,0.0,0.7101,-0.7041,0.0,0.7101,-0.7041,0.0,0.5598,-0.8286,0.0,0.549,-0.8286,0.1092,0.7101,-0.7041,0.0,0.549,-0.8286,0.1092,0.6965,-0.7041,0.1385,0.6965,-0.7041,0.1385,0.549,-0.8286,0.1092,0.5172,-0.8286,0.2142,0.6965,-0.7041,0.1385,0.5172,-0.8286,0.2142,0.6561,-0.7041,0.2718,0.6561,-0.7041,0.2718,0.5172,-0.8286,0.2142,0.4654,-0.8286,0.311,0.6561,-0.7041,0.2718,0.4654,-0.8286,0.311,0.5905,-0.7041,0.3945,0.5905,-0.7041,0.3945,0.4654,-0.8286,0.311,0.3958,-0.8286,0.3958,0.5905,-0.7041,0.3945,0.3958,-0.8286,0.3958,0.5021,-0.7041,0.5021,0.5021,-0.7041,0.5021,0.3958,-0.8286,0.3958,0.311,-0.8286,0.4654,0.5021,-0.7041,0.5021,0.311,-0.8286,0.4654,0.3945,-0.7041,0.5905,0.3945,-0.7041,0.5905,0.311,-0.8286,0.4654,0.2142,-0.8286,0.5172,0.3945,-0.7041,0.5905,0.2142,-0.8286,0.5172,0.2718,-0.7041,0.6561,0.2718,-0.7041,0.6561,0.2142,-0.8286,0.5172,0.1092,-0.8286,0.549,0.2718,-0.7041,0.6561,0.1092,-0.8286,0.549,0.1385,-0.7041,0.6965,0.1385,-0.7041,0.6965,0.1092,-0.8286,0.549,0.0,-0.8286,0.5598,0.1385,-0.7041,0.6965,0.0,-0.8286,0.5598,0.0,-0.7041,0.7101,0.0,-0.8286,0.5598,0.0,-0.9217,0.3879,-0.0757,-0.9217,0.3804,0.0,-0.8286,0.5598,-0.0757,-0.9217,0.3804,-0.1092,-0.8286,0.549,-0.1092,-0.8286,0.549,-0.0757,-0.9217,0.3804,-0.1484,-0.9217,0.3584,-0.1092,-0.8286,0.549,-0.1484,-0.9217,0.3584,-0.2142,-0.8286,0.5172,-0.2142,-0.8286,0.5172,-0.1484,-0.9217,0.3584,-0.2155,-0.9217,0.3225,-0.2142,-0.8286,0.5172,-0.2155,-0.9217,0.3225,-0.311,-0.8286,0.4654,-0.311,-0.8286,0.4654,-0.2155,-0.9217,0.3225,-0.2743,-0.9217,0.2743,-0.311,-0.8286,0.4654,-0.2743,-0.9217,0.2743,-0.3958,-0.8286,0.3958,-0.3958,-0.8286,0.3958,-0.2743,-0.9217,0.2743,-0.3225,-0.9217,0.2155,-0.3958,-0.8286,0.3958,-0.3225,-0.9217,0.2155,-0.4654,-0.8286,0.311,-0.4654,-0.8286,0.311,-0.3225,-0.9217,0.2155,-0.3584,-0.9217,0.1484,-0.4654,-0.8286,0.311,-0.3584,-0.9217,0.1484,-0.5172,-0.8286,0.2142,-0.5172,-0.8286,0.2142,-0.3584,-0.9217,0.1484,-0.3804,-0.9217,0.0757,-0.5172,-0.8286,0.2142,-0.3804,-0.9217,0.0757,-0.549,-0.8286,0.1092,-0.549,-0.8286,0.1092,-0.3804,-0.9217,0.0757,-0.3879,-0.9217,0.0,-0.549,-0.8286,0.1092,-0.3879,-0.9217,0.0,-0.5598,-0.8286,0.0,-0.5598,-0.8286,0.0,-0.3879,-0.9217,0.0,-0.3804,-0.9217,-0.0757,-0.5598,-0.8286,0.0,-0.3804,-0.9217,-0.0757,-0.549,-0.8286,-0.1092,-0.549,-0.8286,-0.1092,-0.3804,-0.9217,-0.0757,-0.3584,-0.9217,-0.1484,-0.549,-0.8286,-0.1092,-0.3584,-0.9217,-0.1484,-0.5172,-0.8286,-0.2142,-0.5172,-0.8286,-0.2142,-0.3584,-0.9217,-0.1484,-0.3225,-0.9217,-0.2155,-0.5172,-0.8286,-0.2142,-0.3225,-0.9217,-0.2155,-0.4654,-0.8286,-0.311,-0.4654,-0.8286,-0.311,-0.3225,-0.9217,-0.2155,-0.2743,-0.9217,-0.2743,-0.4654,-0.8286,-0.311,-0.2743,-0.9217,-0.2743,-0.3958,-0.8286,-0.3958,-0.3958,-0.8286,-0.3958,-0.2743,-0.9217,-0.2743,-0.2155,-0.9217,-0.3225,-0.3958,-0.8286,-0.3958,-0.2155,-0.9217,-0.3225,-0.311,-0.8286,-0.4654,-0.311,-0.8286,-0.4654,-0.2155,-0.9217,-0.3225,-0.1484,-0.9217,-0.3584,-0.311,-0.8286,-0.4654,-0.1484,-0.9217,-0.3584,-0.2142,-0.8286,-0.5172,-0.2142,-0.8286,-0.5172,-0.1484,-0.9217,-0.3584,-0.0757,-0.9217,-0.3804,-0.2142,-0.8286,-0.5172,-0.0757,-0.9217,-0.3804,-0.1092,-0.8286,-0.549,-0.1092,-0.8286,-0.549,-0.0757,-0.9217,-0.3804,0.0,-0.9217,-0.3879,-0.1092,-0.8286,-0.549,0.0,-0.9217,-0.3879,0.0,-0.8286,-0.5598,0.0,-0.8286,-0.5598,0.0,-0.9217,-0.3879,0.0757,-0.9217,-0.3804,0.0,-0.8286,-0.5598,0.0757,-0.9217,-0.3804,0.1092,-0.8286,-0.549,0.1092,-0.8286,-0.549,0.0757,-0.9217,-0.3804,0.1484,-0.9217,-0.3584,0.1092,-0.8286,-0.549,0.1484,-0.9217,-0.3584,0.2142,-0.8286,-0.5172,0.2142,-0.8286,-0.5172,0.1484,-0.9217,-0.3584,0.2155,-0.9217,-0.3225,0.2142,-0.8286,-0.5172,0.2155,-0.9217,-0.3225,0.311,-0.8286,-0.4654,0.311,-0.8286,-0.4654,0.2155,-0.9217,-0.3225,0.2743,-0.9217,-0.2743,0.311,-0.8286,-0.4654,0.2743,-0.9217,-0.2743,0.3958,-0.8286,-0.3958,0.3958,-0.8286,-0.3958,0.2743,-0.9217,-0.2743,0.3225,-0.9217,-0.2155,0.3958,-0.8286,-0.3958,0.3225,-0.9217,-0.2155,0.4654,-0.8286,-0.311,0.4654,-0.8286,-0.311,0.3225,-0.9217,-0.2155,0.3584,-0.9217,-0.1484,0.4654,-0.8286,-0.311,0.3584,-0.9217,-0.1484,0.5172,-0.8286,-0.2142,0.5172,-0.8286,-0.2142,0.3584,-0.9217,-0.1484,0.3804,-0.9217,-0.0757,0.5172,-0.8286,-0.2142,0.3804,-0.9217,-0.0757,0.549,-0.8286,-0.1092,0.549,-0.8286,-0.1092,0.3804,-0.9217,-0.0757,0.3879,-0.9217,0.0,0.549,-0.8286,-0.1092,0.3879,-0.9217,0.0,0.5598,-0.8286,0.0,0.5598,-0.8286,0.0,0.3879,-0.9217,0.0,0.3804,-0.9217,0.0757,0.5598,-0.8286,0.0,0.3804,-0.9217,0.0757,0.549,-0.8286,0.1092,0.549,-0.8286,0.1092,0.3804,-0.9217,0.0757,0.3584,-0.9217,0.1484,0.549,-0.8286,0.1092,0.3584,-0.9217,0.1484,0.5172,-0.8286,0.2142,0.5172,-0.8286,0.2142,0.3584,-0.9217,0.1484,0.3225,-0.9217,0.2155,0.5172,-0.8286,0.2142,0.3225,-0.9217,0.2155,0.4654,-0.8286,0.311,0.4654,-0.8286,0.311,0.3225,-0.9217,0.2155,0.2743,-0.9217,0.2743,0.4654,-0.8286,0.311,0.2743,-0.9217,0.2743,0.3958,-0.8286,0.3958,0.3958,-0.8286,0.3958,0.2743,-0.9217,0.2743,0.2155,-0.9217,0.3225,0.3958,-0.8286,0.3958,0.2155,-0.9217,0.3225,0.311,-0.8286,0.4654,0.311,-0.8286,0.4654,0.2155,-0.9217,0.3225,0.1484,-0.9217,0.3584,0.311,-0.8286,0.4654,0.1484,-0.9217,0.3584,0.2142,-0.8286,0.5172,0.2142,-0.8286,0.5172,0.1484,-0.9217,0.3584,0.0757,-0.9217,0.3804,0.2142,-0.8286,0.5172,0.0757,-0.9217,0.3804,0.1092,-0.8286,0.549,0.1092,-0.8286,0.549,0.0757,-0.9217,0.3804,0.0,-0.9217,0.3879,0.1092,-0.8286,0.549,0.0,-0.9217,0.3879,0.0,-0.8286,0.5598,0.0,-0.9217,0.3879,0.0,-0.9796,0.201,-0.0392,-0.9796,0.1971,0.0,-0.9217,0.3879,-0.0392,-0.9796,0.1971,-0.0757,-0.9217,0.3804,-0.0757,-0.9217,0.3804,-0.0392,-0.9796,0.1971,-0.0769,-0.9796,0.1857,-0.0757,-0.9217,0.3804,-0.0769,-0.9796,0.1857,-0.1484,-0.9217,0.3584,-0.1484,-0.9217,0.3584,-0.0769,-0.9796,0.1857,-0.1117,-0.9796,0.1671,-0.1484,-0.9217,0.3584,-0.1117,-0.9796,0.1671,-0.2155,-0.9217,0.3225,-0.2155,-0.9217,0.3225,-0.1117,-0.9796,0.1671,-0.1421,-0.9796,0.1421,-0.2155,-0.9217,0.3225,-0.1421,-0.9796,0.1421,-0.2743,-0.9217,0.2743,-0.2743,-0.9217,0.2743,-0.1421,-0.9796,0.1421,-0.1671,-0.9796,0.1117,-0.2743,-0.9217,0.2743,-0.1671,-0.9796,0.1117,-0.3225,-0.9217,0.2155,-0.3225,-0.9217,0.2155,-0.1671,-0.9796,0.1117,-0.1857,-0.9796,0.0769,-0.3225,-0.9217,0.2155,-0.1857,-0.9796,0.0769,-0.3584,-0.9217,0.1484,-0.3584,-0.9217,0.1484,-0.1857,-0.9796,0.0769,-0.1971,-0.9796,0.0392,-0.3584,-0.9217,0.1484,-0.1971,-0.9796,0.0392,-0.3804,-0.9217,0.0757,-0.3804,-0.9217,0.0757,-0.1971,-0.9796,0.0392,-0.201,-0.9796,0.0,-0.3804,-0.9217,0.0757,-0.201,-0.9796,0.0,-0.3879,-0.9217,0.0,-0.3879,-0.9217,0.0,-0.201,-0.9796,0.0,-0.1971,-0.9796,-0.0392,-0.3879,-0.9217,0.0,-0.1971,-0.9796,-0.0392,-0.3804,-0.9217,-0.0757,-0.3804,-0.9217,-0.0757,-0.1971,-0.9796,-0.0392,-0.1857,-0.9796,-0.0769,-0.3804,-0.9217,-0.0757,-0.1857,-0.9796,-0.0769,-0.3584,-0.9217,-0.1484,-0.3584,-0.9217,-0.1484,-0.1857,-0.9796,-0.0769,-0.1671,-0.9796,-0.1117,-0.3584,-0.9217,-0.1484,-0.1671,-0.9796,-0.1117,-0.3225,-0.9217,-0.2155,-0.3225,-0.9217,-0.2155,-0.1671,-0.9796,-0.1117,-0.1421,-0.9796,-0.1421,-0.3225,-0.9217,-0.2155,-0.1421,-0.9796,-0.1421,-0.2743,-0.9217,-0.2743,-0.2743,-0.9217,-0.2743,-0.1421,-0.9796,-0.1421,-0.1117,-0.9796,-0.1671,-0.2743,-0.9217,-0.2743,-0.1117,-0.9796,-0.1671,-0.2155,-0.9217,-0.3225,-0.2155,-0.9217,-0.3225,-0.1117,-0.9796,-0.1671,-0.0769,-0.9796,-0.1857,-0.2155,-0.9217,-0.3225,-0.0769,-0.9796,-0.1857,-0.1484,-0.9217,-0.3584,-0.1484,-0.9217,-0.3584,-0.0769,-0.9796,-0.1857,-0.0392,-0.9796,-0.1971,-0.1484,-0.9217,-0.3584,-0.0392,-0.9796,-0.1971,-0.0757,-0.9217,-0.3804,-0.0757,-0.9217,-0.3804,-0.0392,-0.9796,-0.1971,0.0,-0.9796,-0.201,-0.0757,-0.9217,-0.3804,0.0,-0.9796,-0.201,0.0,-0.9217,-0.3879,0.0,-0.9217,-0.3879,0.0,-0.9796,-0.201,0.0392,-0.9796,-0.1971,0.0,-0.9217,-0.3879,0.0392,-0.9796,-0.1971,0.0757,-0.9217,-0.3804,0.0757,-0.9217,-0.3804,0.0392,-0.9796,-0.1971,0.0769,-0.9796,-0.1857,0.0757,-0.9217,-0.3804,0.0769,-0.9796,-0.1857,0.1484,-0.9217,-0.3584,0.1484,-0.9217,-0.3584,0.0769,-0.9796,-0.1857,0.1117,-0.9796,-0.1671,0.1484,-0.9217,-0.3584,0.1117,-0.9796,-0.1671,0.2155,-0.9217,-0.3225,0.2155,-0.9217,-0.3225,0.1117,-0.9796,-0.1671,0.1421,-0.9796,-0.1421,0.2155,-0.9217,-0.3225,0.1421,-0.9796,-0.1421,0.2743,-0.9217,-0.2743,0.2743,-0.9217,-0.2743,0.1421,-0.9796,-0.1421,0.1671,-0.9796,-0.1117,0.2743,-0.9217,-0.2743,0.1671,-0.9796,-0.1117,0.3225,-0.9217,-0.2155,0.3225,-0.9217,-0.2155,0.1671,-0.9796,-0.1117,0.1857,-0.9796,-0.0769,0.3225,-0.9217,-0.2155,0.1857,-0.9796,-0.0769,0.3584,-0.9217,-0.1484,0.3584,-0.9217,-0.1484,0.1857,-0.9796,-0.0769,0.1971,-0.9796,-0.0392,0.3584,-0.9217,-0.1484,0.1971,-0.9796,-0.0392,0.3804,-0.9217,-0.0757,0.3804,-0.9217,-0.0757,0.1971,-0.9796,-0.0392,0.201,-0.9796,0.0,0.3804,-0.9217,-0.0757,0.201,-0.9796,0.0,0.3879,-0.9217,0.0,0.3879,-0.9217,0.0,0.201,-0.9796,0.0,0.1971,-0.9796,0.0392,0.3879,-0.9217,0.0,0.1971,-0.9796,0.0392,0.3804,-0.9217,0.0757,0.3804,-0.9217,0.0757,0.1971,-0.9796,0.0392,0.1857,-0.9796,0.0769,0.3804,-0.9217,0.0757,0.1857,-0.9796,0.0769,0.3584,-0.9217,0.1484,0.3584,-0.9217,0.1484,0.1857,-0.9796,0.0769,0.1671,-0.9796,0.1117,0.3584,-0.9217,0.1484,0.1671,-0.9796,0.1117,0.3225,-0.9217,0.2155,0.3225,-0.9217,0.2155,0.1671,-0.9796,0.1117,0.1421,-0.9796,0.1421,0.3225,-0.9217,0.2155,0.1421,-0.9796,0.1421,0.2743,-0.9217,0.2743,0.2743,-0.9217,0.2743,0.1421,-0.9796,0.1421,0.1117,-0.9796,0.1671,0.2743,-0.9217,0.2743,0.1117,-0.9796,0.1671,0.2155,-0.9217,0.3225,0.2155,-0.9217,0.3225,0.1117,-0.9796,0.1671,0.0769,-0.9796,0.1857,0.2155,-0.9217,0.3225,0.0769,-0.9796,0.1857,0.1484,-0.9217,0.3584,0.1484,-0.9217,0.3584,0.0769,-0.9796,0.1857,0.0392,-0.9796,0.1971,0.1484,-0.9217,0.3584,0.0392,-0.9796,0.1971,0.0757,-0.9217,0.3804,0.0757,-0.9217,0.3804,0.0392,-0.9796,0.1971,0.0,-0.9796,0.201,0.0757,-0.9217,0.3804,0.0,-0.9796,0.201,0.0,-0.9217,0.3879,0.0,-1.0,0.0,-0.0392,-0.9796,0.1971,0.0,-0.9796,0.201,0.0,-1.0,0.0,-0.0769,-0.9796,0.1857,-0.0392,-0.9796,0.1971,0.0,-1.0,0.0,-0.1117,-0.9796,0.1671,-0.0769,-0.9796,0.1857,0.0,-1.0,0.0,-0.1421,-0.9796,0.1421,-0.1117,-0.9796,0.1671,0.0,-1.0,0.0,-0.1671,-0.9796,0.1117,-0.1421,-0.9796,0.1421,0.0,-1.0,0.0,-0.1857,-0.9796,0.0769,-0.1671,-0.9796,0.1117,0.0,-1.0,0.0,-0.1971,-0.9796,0.0392,-0.1857,-0.9796,0.0769,0.0,-1.0,0.0,-0.201,-0.9796,0.0,-0.1971,-0.9796,0.0392,0.0,-1.0,0.0,-0.1971,-0.9796,-0.0392,-0.201,-0.9796,0.0,0.0,-1.0,0.0,-0.1857,-0.9796,-0.0769,-0.1971,-0.9796,-0.0392,0.0,-1.0,0.0,-0.1671,-0.9796,-0.1117,-0.1857,-0.9796,-0.0769,0.0,-1.0,0.0,-0.1421,-0.9796,-0.1421,-0.1671,-0.9796,-0.1117,0.0,-1.0,0.0,-0.1117,-0.9796,-0.1671,-0.1421,-0.9796,-0.1421,0.0,-1.0,0.0,-0.0769,-0.9796,-0.1857,-0.1117,-0.9796,-0.1671,0.0,-1.0,0.0,-0.0392,-0.9796,-0.1971,-0.0769,-0.9796,-0.1857,0.0,-1.0,0.0,0.0,-0.9796,-0.201,-0.0392,-0.9796,-0.1971,0.0,-1.0,0.0,0.0392,-0.9796,-0.1971,0.0,-0.9796,-0.201,0.0,-1.0,0.0,0.0769,-0.9796,-0.1857,0.0392,-0.9796,-0.1971,0.0,-1.0,0.0,0.1117,-0.9796,-0.1671,0.0769,-0.9796,-0.1857,0.0,-1.0,0.0,0.1421,-0.9796,-0.1421,0.1117,-0.9796,-0.1671,0.0,-1.0,0.0,0.1671,-0.9796,-0.1117,0.1421,-0.9796,-0.1421,0.0,-1.0,0.0,0.1857,-0.9796,-0.0769,0.1671,-0.9796,-0.1117,0.0,-1.0,0.0,0.1971,-0.9796,-0.0392,0.1857,-0.9796,-0.0769,0.0,-1.0,0.0,0.201,-0.9796,0.0,0.1971,-0.9796,-0.0392,0.0,-1.0,0.0,0.1971,-0.9796,0.0392,0.201,-0.9796,0.0,0.0,-1.0,0.0,0.1857,-0.9796,0.0769,0.1971,-0.9796,0.0392,0.0,-1.0,0.0,0.1671,-0.9796,0.1117,0.1857,-0.9796,0.0769,0.0,-1.0,0.0,0.1421,-0.9796,0.1421,0.1671,-0.9796,0.1117,0.0,-1.0,0.0,0.1117,-0.9796,0.1671,0.1421,-0.9796,0.1421,0.0,-1.0,0.0,0.0769,-0.9796,0.1857,0.1117,-0.9796,0.1671,0.0,-1.0,0.0,0.0392,-0.9796,0.1971,0.0769,-0.9796,0.1857,0.0,-1.0,0.0,0.0,-0.9796,0.201,0.0392,-0.9796,0.1971],"tangents":null,"uvs":[0.0,2.0,0.0,1.9375,0.0312,1.9375,0.0312,2.0,0.0312,1.9375,0.0625,1.9375,0.0625,2.0,0.0625,1.9375,0.0938,1.9375,0.0938,2.0,0.0938,1.9375,0.125,1.9375,0.125,2.0,0.125,1.9375,0.1562,1.9375,0.1562,2.0,0.1562,1.9375,0.1875,1.9375,0.1875,2.0,0.1875,1.9375,0.2187,1.9375,0.2187,2.0,0.2187,1.9375,0.25,1.9375,0.25,2.0,0.25,1.9375,0.2812,1.9375,0.2812,2.0,0.2812,1.9375,0.3125,1.9375,0.3125,2.0,0.3125,1.9375,0.3437,1.9375,0.3437,2.0,0.3437,1.9375,0.375,1.9375,0.375,2.0,0.375,1.9375,0.4062,1.9375,0.4062,2.0,0.4062,1.9375,0.4375,1.9375,0.4375,2.0,0.4375,1.9375,0.4688,1.9375,0.4688,2.0,0.4688,1.9375,0.5,1.9375,0.5,2.0,0.5,1.9375,0.5313,1.9375,0.5313,2.0,0.5313,1.9375,0.5625,1.9375,0.5625,2.0,0.5625,1.9375,0.5938,1.9375,0.5938,2.0,0.5938,1.9375,0.625,1.9375,0.625,2.0,0.625,1.9375,0.6563,1.9375,0.6563,2.0,0.6563,1.9375,0.6875,1.9375,0.6875,2.0,0.6875,1.9375,0.7188,1.9375,0.7188,2.0,0.7188,1.9375,0.75,1.9375,0.75,2.0,0.75,1.9375,0.7813,1.9375,0.7813,2.0,0.7813,1.9375,0.8125,1.9375,0.8125,2.0,0.8125,1.9375,0.8438,1.9375,0.8438,2.0,0.8438,1.9375,0.875,1.9375,0.875,2.0,0.875,1.9375,0.9063,1.9375,0.9063,2.0,0.9063,1.9375,0.9375,1.9375,0.9375,2.0,0.9375,1.9375,0.9688,1.9375,0.9688,2.0,0.9688,1.9375,1.0,1.9375,0.0,1.9375,0.0,1.875,0.0312,1.875,0.0,1.9375,0.0312,1.875,0.0312,1.9375,0.0312,1.9375,0.0312,1.875,0.0625,1.875,0.0312,1.9375,0.0625,1.875,0.0625,1.9375,0.0625,1.9375,0.0625,1.875,0.0938,1.875,0.0625,1.9375,0.0938,1.875,0.0938,1.9375,0.0938,1.9375,0.0938,1.875,0.125,1.875,0.0938,1.9375,0.125,1.875,0.125,1.9375,0.125,1.9375,0.125,1.875,0.1562,1.875,0.125,1.9375,0.1562,1.875,0.1562,1.9375,0.1562,1.9375,0.1562,1.875,0.1875,1.875,0.1562,1.9375,0.1875,1.875,0.1875,1.9375,0.1875,1.9375,0.1875,1.875,0.2187,1.875,0.1875,1.9375,0.2187,1.875,0.2187,1.9375,0.2187,1.9375,0.2187,1.875,0.25,1.875,0.2187,1.9375,0.25,1.875,0.25,1.9375,0.25,1.9375,0.25,1.875,0.2812,1.875,0.25,1.9375,0.2812,1.875,0.2812,1.9375,0.2812,1.9375,0.2812,1.875,0.3125,1.875,0.2812,1.9375,0.3125,1.875,0.3125,1.9375,0.3125,1.9375,0.3125,1.875,0.3437,1.875,0.3125,1.9375,0.3437,1.875,0.3437,1.9375,0.3437,1.9375,0.3437,1.875,0.375,1.875,0.3437,1.9375,0.375,1.875,0.375,1.9375,0.375,1.9375,0.375,1.875,0.4062,1.875,0.375,1.9375,0.4062,1.875,0.4062,1.9375,0.4062,1.9375,0.4062,1.875,0.4375,1.875,0.4062,1.9375,0.4375,1.875,0.4375,1.9375,0.4375,1.9375,0.4375,1.875,0.4688,1.875,0.4375,1.9375,0.4688,1.875,0.4688,1.9375,0.4688,1.9375,0.4688,1.875,0.5,1.875,0.4688,1.9375,0.5,1.875,0.5,1.9375,0.5,1.9375,0.5,1.875,0.5313,1.875,0.5,1.9375,0.5313,1.875,0.5313,1.9375,0.5313,1.9375,0.5313,1.875,0.5625,1.875,0.5313,1.9375,0.5625,1.875,0.5625,1.9375,0.5625,1.9375,0.5625,1.875,0.5938,1.875,0.5625,1.9375,0.5938,1.875,0.5938,1.9375,0.5938,1.9375,0.5938,1.875,0.625,1.875,0.5938,1.9375,0.625,1.875,0.625,1.9375,0.625,1.9375,0.625,1.875,0.6563,1.875,0.625,1.9375,0.6563,1.875,0.6563,1.9375,0.6563,1.9375,0.6563,1.875,0.6875,1.875,0.6563,1.9375,0.6875,1.875,0.6875,1.9375,0.6875,1.9375,0.6875,1.875,0.7188,1.875,0.6875,1.9375,0.7188,1.875,0.7188,1.9375,0.7188,1.9375,0.7188,1.875,0.75,1.875,0.7188,1.9375,0.75,1.875,0.75,1.9375,0.75,1.9375,0.75,1.875,0.7813,1.875,0.75,1.9375,0.7813,1.875,0.7813,1.9375,0.7813,1.9375,0.7813,1.875,0.8125,1.875,0.7813,1.9375,0.8125,1.875,0.8125,1.9375,0.8125,1.9375,0.8125,1.875,0.8438,1.875,0.8125,1.9375,0.8438,1.875,0.8438,1.9375,0.8438,1.9375,0.8438,1.875,0.875,1.875,0.8438,1.9375,0.875,1.875,0.875,1.9375,0.875,1.9375,0.875,1.875,0.9063,1.875,0.875,1.9375,0.9063,1.875,0.9063,1.9375,0.9063,1.9375,0.9063,1.875,0.9375,1.875,0.9063,1.9375,0.9375,1.875,0.9375,1.9375,0.9375,1.9375,0.9375,1.875,0.9688,1.875,0.9375,1.9375,0.9688,1.875,0.9688,1.9375,0.9688,1.9375,0.9688,1.875,1.0,1.875,0.9688,1.9375,1.0,1.875,1.0,1.9375,0.0,1.875,0.0,1.8125,0.0312,1.8125,0.0,1.875,0.0312,1.8125,0.0312,1.875,0.0312,1.875,0.0312,1.8125,0.0625,1.8125,0.0312,1.875,0.0625,1.8125,0.0625,1.875,0.0625,1.875,0.0625,1.8125,0.0938,1.8125,0.0625,1.875,0.0938,1.8125,0.0938,1.875,0.0938,1.875,0.0938,1.8125,0.125,1.8125,0.0938,1.875,0.125,1.8125,0.125,1.875,0.125,1.875,0.125,1.8125,0.1562,1.8125,0.125,1.875,0.1562,1.8125,0.1562,1.875,0.1562,1.875,0.1562,1.8125,0.1875,1.8125,0.1562,1.875,0.1875,1.8125,0.1875,1.875,0.1875,1.875,0.1875,1.8125,0.2187,1.8125,0.1875,1.875,0.2187,1.8125,0.2187,1.875,0.2187,1.875,0.2187,1.8125,0.25,1.8125,0.2187,1.875,0.25,1.8125,0.25,1.875,0.25,1.875,0.25,1.8125,0.2812,1.8125,0.25,1.875,0.2812,1.8125,0.2812,1.875,0.2812,1.875,0.2812,1.8125,0.3125,1.8125,0.2812,1.875,0.3125,1.8125,0.3125,1.875,0.3125,1.875,0.3125,1.8125,0.3437,1.8125,0.3125,1.875,0.3437,1.8125,0.3437,1.875,0.3437,1.875,0.3437,1.8125,0.375,1.8125,0.3437,1.875,0.375,1.8125,0.375,1.875,0.375,1.875,0.375,1.8125,0.4062,1.8125,0.375,1.875,0.4062,1.8125,0.4062,1.875,0.4062,1.875,0.4062,1.8125,0.4375,1.8125,0.4062,1.875,0.4375,1.8125,0.4375,1.875,0.4375,1.875,0.4375,1.8125,0.4688,1.8125,0.4375,1.875,0.4688,1.8125,0.4688,1.875,0.4688,1.875,0.4688,1.8125,0.5,1.8125,0.4688,1.875,0.5,1.8125,0.5,1.875,0.5,1.875,0.5,1.8125,0.5313,1.8125,0.5,1.875,0.5313,1.8125,0.5313,1.875,0.5313,1.875,0.5313,1.8125,0.5625,1.8125,0.5313,1.875,0.5625,1.8125,0.5625,1.875,0.5625,1.875,0.5625,1.8125,0.5938,1.8125,0.5625,1.875,0.5938,1.8125,0.5938,1.875,0.5938,1.875,0.5938,1.8125,0.625,1.8125,0.5938,1.875,0.625,1.8125,0.625,1.875,0.625,1.875,0.625,1.8125,0.6563,1.8125,0.625,1.875,0.6563,1.8125,0.6563,1.875,0.6563,1.875,0.6563,1.8125,0.6875,1.8125,0.6563,1.875,0.6875,1.8125,0.6875,1.875,0.6875,1.875,0.6875,1.8125,0.7188,1.8125,0.6875,1.875,0.7188,1.8125,0.7188,1.875,0.7188,1.875,0.7188,1.8125,0.75,1.8125,0.7188,1.875,0.75,1.8125,0.75,1.875,0.75,1.875,0.75,1.8125,0.7813,1.8125,0.75,1.875,0.7813,1.8125,0.7813,1.875,0.7813,1.875,0.7813,1.8125,0.8125,1.8125,0.7813,1.875,0.8125,1.8125,0.8125,1.875,0.8125,1.875,0.8125,1.8125,0.8438,1.8125,0.8125,1.875,0.8438,1.8125,0.8438,1.875,0.8438,1.875,0.8438,1.8125,0.875,1.8125,0.8438,1.875,0.875,1.8125,0.875,1.875,0.875,1.875,0.875,1.8125,0.9063,1.8125,0.875,1.875,0.9063,1.8125,0.9063,1.875,0.9063,1.875,0.9063,1.8125,0.9375,1.8125,0.9063,1.875,0.9375,1.8125,0.9375,1.875,0.9375,1.875,0.9375,1.8125,0.9688,1.8125,0.9375,1.875,0.9688,1.8125,0.9688,1.875,0.9688,1.875,0.9688,1.8125,1.0,1.8125,0.9688,1.875,1.0,1.8125,1.0,1.875,0.0,1.8125,0.0,1.75,0.0312,1.75,0.0,1.8125,0.0312,1.75,0.0312,1.8125,0.0312,1.8125,0.0312,1.75,0.0625,1.75,0.0312,1.8125,0.0625,1.75,0.0625,1.8125,0.0625,1.8125,0.0625,1.75,0.0938,1.75,0.0625,1.8125,0.0938,1.75,0.0938,1.8125,0.0938,1.8125,0.0938,1.75,0.125,1.75,0.0938,1.8125,0.125,1.75,0.125,1.8125,0.125,1.8125,0.125,1.75,0.1562,1.75,0.125,1.8125,0.1562,1.75,0.1562,1.8125,0.1562,1.8125,0.1562,1.75,0.1875,1.75,0.1562,1.8125,0.1875,1.75,0.1875,1.8125,0.1875,1.8125,0.1875,1.75,0.2187,1.75,0.1875,1.8125,0.2187,1.75,0.2187,1.8125,0.2187,1.8125,0.2187,1.75,0.25,1.75,0.2187,1.8125,0.25,1.75,0.25,1.8125,0.25,1.8125,0.25,1.75,0.2812,1.75,0.25,1.8125,0.2812,1.75,0.2812,1.8125,0.2812,1.8125,0.2812,1.75,0.3125,1.75,0.2812,1.8125,0.3125,1.75,0.3125,1.8125,0.3125,1.8125,0.3125,1.75,0.3437,1.75,0.3125,1.8125,0.3437,1.75,0.3437,1.8125,0.3437,1.8125,0.3437,1.75,0.375,1.75,0.3437,1.8125,0.375,1.75,0.375,1.8125,0.375,1.8125,0.375,1.75,0.4062,1.75,0.375,1.8125,0.4062,1.75,0.4062,1.8125,0.4062,1.8125,0.4062,1.75,0.4375,1.75,0.4062,1.8125,0.4375,1.75,0.4375,1.8125,0.4375,1.8125,0.4375,1.75,0.4688,1.75,0.4375,1.8125,0.4688,1.75,0.4688,1.8125,0.4688,1.8125,0.4688,1.75,0.5,1.75,0.4688,1.8125,0.5,1.75,0.5,1.8125,0.5,1.8125,0.5,1.75,0.5313,1.75,0.5,1.8125,0.5313,1.75,0.5313,1.8125,0.5313,1.8125,0.5313,1.75,0.5625,1.75,0.5313,1.8125,0.5625,1.75,0.5625,1.8125,0.5625,1.8125,0.5625,1.75,0.5938,1.75,0.5625,1.8125,0.5938,1.75,0.5938,1.8125,0.5938,1.8125,0.5938,1.75,0.625,1.75,0.5938,1.8125,0.625,1.75,0.625,1.8125,0.625,1.8125,0.625,1.75,0.6563,1.75,0.625,1.8125,0.6563,1.75,0.6563,1.8125,0.6563,1.8125,0.6563,1.75,0.6875,1.75,0.6563,1.8125,0.6875,1.75,0.6875,1.8125,0.6875,1.8125,0.6875,1.75,0.7188,1.75,0.6875,1.8125,0.7188,1.75,0.7188,1.8125,0.7188,1.8125,0.7188,1.75,0.75,1.75,0.7188,1.8125,0.75,1.75,0.75,1.8125,0.75,1.8125,0.75,1.75,0.7813,1.75,0.75,1.8125,0.7813,1.75,0.7813,1.8125,0.7813,1.8125,0.7813,1.75,0.8125,1.75,0.7813,1.8125,0.8125,1.75,0.8125,1.8125,0.8125,1.8125,0.8125,1.75,0.8438,1.75,0.8125,1.8125,0.8438,1.75,0.8438,1.8125,0.8438,1.8125,0.8438,1.75,0.875,1.75,0.8438,1.8125,0.875,1.75,0.875,1.8125,0.875,1.8125,0.875,1.75,0.9063,1.75,0.875,1.8125,0.9063,1.75,0.9063,1.8125,0.9063,1.8125,0.9063,1.75,0.9375,1.75,0.9063,1.8125,0.9375,1.75,0.9375,1.8125,0.9375,1.8125,0.9375,1.75,0.9688,1.75,0.9375,1.8125,0.9688,1.75,0.9688,1.8125,0.9688,1.8125,0.9688,1.75,1.0,1.75,0.9688,1.8125,1.0,1.75,1.0,1.8125,0.0,1.75,0.0,1.6875,0.0312,1.6875,0.0,1.75,0.0312,1.6875,0.0312,1.75,0.0312,1.75,0.0312,1.6875,0.0625,1.6875,0.0312,1.75,0.0625,1.6875,0.0625,1.75,0.0625,1.75,0.0625,1.6875,0.0938,1.6875,0.0625,1.75,0.0938,1.6875,0.0938,1.75,0.0938,1.75,0.0938,1.6875,0.125,1.6875,0.0938,1.75,0.125,1.6875,0.125,1.75,0.125,1.75,0.125,1.6875,0.1562,1.6875,0.125,1.75,0.1562,1.6875,0.1562,1.75,0.1562,1.75,0.1562,1.6875,0.1875,1.6875,0.1562,1.75,0.1875,1.6875,0.1875,1.75,0.1875,1.75,0.1875,1.6875,0.2187,1.6875,0.1875,1.75,0.2187,1.6875,0.2187,1.75,0.2187,1.75,0.2187,1.6875,0.25,1.6875,0.2187,1.75,0.25,1.6875,0.25,1.75,0.25,1.75,0.25,1.6875,0.2812,1.6875,0.25,1.75,0.2812,1.6875,0.2812,1.75,0.2812,1.75,0.2812,1.6875,0.3125,1.6875,0.2812,1.75,0.3125,1.6875,0.3125,1.75,0.3125,1.75,0.3125,1.6875,0.3437,1.6875,0.3125,1.75,0.3437,1.6875,0.3437,1.75,0.3437,1.75,0.3437,1.6875,0.375,1.6875,0.3437,1.75,0.375,1.6875,0.375,1.75,0.375,1.75,0.375,1.6875,0.4062,1.6875,0.375,1.75,0.4062,1.6875,0.4062,1.75,0.4062,1.75,0.4062,1.6875,0.4375,1.6875,0.4062,1.75,0.4375,1.6875,0.4375,1.75,0.4375,1.75,0.4375,1.6875,0.4688,1.6875,0.4375,1.75,0.4688,1.6875,0.4688,1.75,0.4688,1.75,0.4688,1.6875,0.5,1.6875,0.4688,1.75,0.5,1.6875,0.5,1.75,0.5,1.75,0.5,1.6875,0.5313,1.6875,0.5,1.75,0.5313,1.6875,0.5313,1.75,0.5313,1.75,0.5313,1.6875,0.5625,1.6875,0.5313,1.75,0.5625,1.6875,0.5625,1.75,0.5625,1.75,0.5625,1.6875,0.5938,1.6875,0.5625,1.75,0.5938,1.6875,0.5938,1.75,0.5938,1.75,0.5938,1.6875,0.625,1.6875,0.5938,1.75,0.625,1.6875,0.625,1.75,0.625,1.75,0.625,1.6875,0.6563,1.6875,0.625,1.75,0.6563,1.6875,0.6563,1.75,0.6563,1.75,0.6563,1.6875,0.6875,1.6875,0.6563,1.75,0.6875,1.6875,0.6875,1.75,0.6875,1.75,0.6875,1.6875,0.7188,1.6875,0.6875,1.75,0.7188,1.6875,0.7188,1.75,0.7188,1.75,0.7188,1.6875,0.75,1.6875,0.7188,1.75,0.75,1.6875,0.75,1.75,0.75,1.75,0.75,1.6875,0.7813,1.6875,0.75,1.75,0.7813,1.6875,0.7813,1.75,0.7813,1.75,0.7813,1.6875,0.8125,1.6875,0.7813,1.75,0.8125,1.6875,0.8125,1.75,0.8125,1.75,0.8125,1.6875,0.8438,1.6875,0.8125,1.75,0.8438,1.6875,0.8438,1.75,0.8438,1.75,0.8438,1.6875,0.875,1.6875,0.8438,1.75,0.875,1.6875,0.875,1.75,0.875,1.75,0.875,1.6875,0.9063,1.6875,0.875,1.75,0.9063,1.6875,0.9063,1.75,0.9063,1.75,0.9063,1.6875,0.9375,1.6875,0.9063,1.75,0.9375,1.6875,0.9375,1.75,0.9375,1.75,0.9375,1.6875,0.9688,1.6875,0.9375,1.75,0.9688,1.6875,0.9688,1.75,0.9688,1.75,0.9688,1.6875,1.0,1.6875,0.9688,1.75,1.0,1.6875,1.0,1.75,0.0,1.6875,0.0,1.625,0.0312,1.625,0.0,1.6875,0.0312,1.625,0.0312,1.6875,0.0312,1.6875,0.0312,1.625,0.0625,1.625,0.0312,1.6875,0.0625,1.625,0.0625,1.6875,0.0625,1.6875,0.0625,1.625,0.0938,1.625,0.0625,1.6875,0.0938,1.625,0.0938,1.6875,0.0938,1.6875,0.0938,1.625,0.125,1.625,0.0938,1.6875,0.125,1.625,0.125,1.6875,0.125,1.6875,0.125,1.625,0.1562,1.625,0.125,1.6875,0.1562,1.625,0.1562,1.6875,0.1562,1.6875,0.1562,1.625,0.1875,1.625,0.1562,1.6875,0.1875,1.625,0.1875,1.6875,0.1875,1.6875,0.1875,1.625,0.2187,1.625,0.1875,1.6875,0.2187,1.625,0.2187,1.6875,0.2187,1.6875,0.2187,1.625,0.25,1.625,0.2187,1.6875,0.25,1.625,0.25,1.6875,0.25,1.6875,0.25,1.625,0.2812,1.625,0.25,1.6875,0.2812,1.625,0.2812,1.6875,0.2812,1.6875,0.2812,1.625,0.3125,1.625,0.2812,1.6875,0.3125,1.625,0.3125,1.6875,0.3125,1.6875,0.3125,1.625,0.3437,1.625,0.3125,1.6875,0.3437,1.625,0.3437,1.6875,0.3437,1.6875,0.3437,1.625,0.375,1.625,0.3437,1.6875,0.375,1.625,0.375,1.6875,0.375,1.6875,0.375,1.625,0.4062,1.625,0.375,1.6875,0.4062,1.625,0.4062,1.6875,0.4062,1.6875,0.4062,1.625,0.4375,1.625,0.4062,1.6875,0.4375,1.625,0.4375,1.6875,0.4375,1.6875,0.4375,1.625,0.4688,1.625,0.4375,1.6875,0.4688,1.625,0.4688,1.6875,0.4688,1.6875,0.4688,1.625,0.5,1.625,0.4688,1.6875,0.5,1.625,0.5,1.6875,0.5,1.6875,0.5,1.625,0.5313,1.625,0.5,1.6875,0.5313,1.625,0.5313,1.6875,0.5313,1.6875,0.5313,1.625,0.5625,1.625,0.5313,1.6875,0.5625,1.625,0.5625,1.6875,0.5625,1.6875,0.5625,1.625,0.5938,1.625,0.5625,1.6875,0.5938,1.625,0.5938,1.6875,0.5938,1.6875,0.5938,1.625,0.625,1.625,0.5938,1.6875,0.625,1.625,0.625,1.6875,0.625,1.6875,0.625,1.625,0.6563,1.625,0.625,1.6875,0.6563,1.625,0.6563,1.6875,0.6563,1.6875,0.6563,1.625,0.6875,1.625,0.6563,1.6875,0.6875,1.625,0.6875,1.6875,0.6875,1.6875,0.6875,1.625,0.7188,1.625,0.6875,1.6875,0.7188,1.625,0.7188,1.6875,0.7188,1.6875,0.7188,1.625,0.75,1.625,0.7188,1.6875,0.75,1.625,0.75,1.6875,0.75,1.6875,0.75,1.625,0.7813,1.625,0.75,1.6875,0.7813,1.625,0.7813,1.6875,0.7813,1.6875,0.7813,1.625,0.8125,1.625,0.7813,1.6875,0.8125,1.625,0.8125,1.6875,0.8125,1.6875,0.8125,1.625,0.8438,1.625,0.8125,1.6875,0.8438,1.625,0.8438,1.6875,0.8438,1.6875,0.8438,1.625,0.875,1.625,0.8438,1.6875,0.875,1.625,0.875,1.6875,0.875,1.6875,0.875,1.625,0.9063,1.625,0.875,1.6875,0.9063,1.625,0.9063,1.6875,0.9063,1.6875,0.9063,1.625,0.9375,1.625,0.9063,1.6875,0.9375,1.625,0.9375,1.6875,0.9375,1.6875,0.9375,1.625,0.9688,1.625,0.9375,1.6875,0.9688,1.625,0.9688,1.6875,0.9688,1.6875,0.9688,1.625,1.0,1.625,0.9688,1.6875,1.0,1.625,1.0,1.6875,0.0,1.625,0.0,1.5625,0.0312,1.5625,0.0,1.625,0.0312,1.5625,0.0312,1.625,0.0312,1.625,0.0312,1.5625,0.0625,1.5625,0.0312,1.625,0.0625,1.5625,0.0625,1.625,0.0625,1.625,0.0625,1.5625,0.0938,1.5625,0.0625,1.625,0.0938,1.5625,0.0938,1.625,0.0938,1.625,0.0938,1.5625,0.125,1.5625,0.0938,1.625,0.125,1.5625,0.125,1.625,0.125,1.625,0.125,1.5625,0.1562,1.5625,0.125,1.625,0.1562,1.5625,0.1562,1.625,0.1562,1.625,0.1562,1.5625,0.1875,1.5625,0.1562,1.625,0.1875,1.5625,0.1875,1.625,0.1875,1.625,0.1875,1.5625,0.2187,1.5625,0.1875,1.625,0.2187,1.5625,0.2187,1.625,0.2187,1.625,0.2187,1.5625,0.25,1.5625,0.2187,1.625,0.25,1.5625,0.25,1.625,0.25,1.625,0.25,1.5625,0.2812,1.5625,0.25,1.625,0.2812,1.5625,0.2812,1.625,0.2812,1.625,0.2812,1.5625,0.3125,1.5625,0.2812,1.625,0.3125,1.5625,0.3125,1.625,0.3125,1.625,0.3125,1.5625,0.3437,1.5625,0.3125,1.625,0.3437,1.5625,0.3437,1.625,0.3437,1.625,0.3437,1.5625,0.375,1.5625,0.3437,1.625,0.375,1.5625,0.375,1.625,0.375,1.625,0.375,1.5625,0.4062,1.5625,0.375,1.625,0.4062,1.5625,0.4062,1.625,0.4062,1.625,0.4062,1.5625,0.4375,1.5625,0.4062,1.625,0.4375,1.5625,0.4375,1.625,0.4375,1.625,0.4375,1.5625,0.4688,1.5625,0.4375,1.625,0.4688,1.5625,0.4688,1.625,0.4688,1.625,0.4688,1.5625,0.5,1.5625,0.4688,1.625,0.5,1.5625,0.5,1.625,0.5,1.625,0.5,1.5625,0.5313,1.5625,0.5,1.625,0.5313,1.5625,0.5313,1.625,0.5313,1.625,0.5313,1.5625,0.5625,1.5625,0.5313,1.625,0.5625,1.5625,0.5625,1.625,0.5625,1.625,0.5625,1.5625,0.5938,1.5625,0.5625,1.625,0.5938,1.5625,0.5938,1.625,0.5938,1.625,0.5938,1.5625,0.625,1.5625,0.5938,1.625,0.625,1.5625,0.625,1.625,0.625,1.625,0.625,1.5625,0.6563,1.5625,0.625,1.625,0.6563,1.5625,0.6563,1.625,0.6563,1.625,0.6563,1.5625,0.6875,1.5625,0.6563,1.625,0.6875,1.5625,0.6875,1.625,0.6875,1.625,0.6875,1.5625,0.7188,1.5625,0.6875,1.625,0.7188,1.5625,0.7188,1.625,0.7188,1.625,0.7188,1.5625,0.75,1.5625,0.7188,1.625,0.75,1.5625,0.75,1.625,0.75,1.625,0.75,1.5625,0.7813,1.5625,0.75,1.625,0.7813,1.5625,0.7813,1.625,0.7813,1.625,0.7813,1.5625,0.8125,1.5625,0.7813,1.625,0.8125,1.5625,0.8125,1.625,0.8125,1.625,0.8125,1.5625,0.8438,1.5625,0.8125,1.625,0.8438,1.5625,0.8438,1.625,0.8438,1.625,0.8438,1.5625,0.875,1.5625,0.8438,1.625,0.875,1.5625,0.875,1.625,0.875,1.625,0.875,1.5625,0.9063,1.5625,0.875,1.625,0.9063,1.5625,0.9063,1.625,0.9063,1.625,0.9063,1.5625,0.9375,1.5625,0.9063,1.625,0.9375,1.5625,0.9375,1.625,0.9375,1.625,0.9375,1.5625,0.9688,1.5625,0.9375,1.625,0.9688,1.5625,0.9688,1.625,0.9688,1.625,0.9688,1.5625,1.0,1.5625,0.9688,1.625,1.0,1.5625,1.0,1.625,0.0,1.5625,0.0,1.5,0.0312,1.5,0.0,1.5625,0.0312,1.5,0.0312,1.5625,0.0312,1.5625,0.0312,1.5,0.0625,1.5,0.0312,1.5625,0.0625,1.5,0.0625,1.5625,0.0625,1.5625,0.0625,1.5,0.0938,1.5,0.0625,1.5625,0.0938,1.5,0.0938,1.5625,0.0938,1.5625,0.0938,1.5,0.125,1.5,0.0938,1.5625,0.125,1.5,0.125,1.5625,0.125,1.5625,0.125,1.5,0.1562,1.5,0.125,1.5625,0.1562,1.5,0.1562,1.5625,0.1562,1.5625,0.1562,1.5,0.1875,1.5,0.1562,1.5625,0.1875,1.5,0.1875,1.5625,0.1875,1.5625,0.1875,1.5,0.2187,1.5,0.1875,1.5625,0.2187,1.5,0.2187,1.5625,0.2187,1.5625,0.2187,1.5,0.25,1.5,0.2187,1.5625,0.25,1.5,0.25,1.5625,0.25,1.5625,0.25,1.5,0.2812,1.5,0.25,1.5625,0.2812,1.5,0.2812,1.5625,0.2812,1.5625,0.2812,1.5,0.3125,1.5,0.2812,1.5625,0.3125,1.5,0.3125,1.5625,0.3125,1.5625,0.3125,1.5,0.3437,1.5,0.3125,1.5625,0.3437,1.5,0.3437,1.5625,0.3437,1.5625,0.3437,1.5,0.375,1.5,0.3437,1.5625,0.375,1.5,0.375,1.5625,0.375,1.5625,0.375,1.5,0.4062,1.5,0.375,1.5625,0.4062,1.5,0.4062,1.5625,0.4062,1.5625,0.4062,1.5,0.4375,1.5,0.4062,1.5625,0.4375,1.5,0.4375,1.5625,0.4375,1.5625,0.4375,1.5,0.4688,1.5,0.4375,1.5625,0.4688,1.5,0.4688,1.5625,0.4688,1.5625,0.4688,1.5,0.5,1.5,0.4688,1.5625,0.5,1.5,0.5,1.5625,0.5,1.5625,0.5,1.5,0.5313,1.5,0.5,1.5625,0.5313,1.5,0.5313,1.5625,0.5313,1.5625,0.5313,1.5,0.5625,1.5,0.5313,1.5625,0.5625,1.5,0.5625,1.5625,0.5625,1.5625,0.5625,1.5,0.5938,1.5,0.5625,1.5625,0.5938,1.5,0.5938,1.5625,0.5938,1.5625,0.5938,1.5,0.625,1.5,0.5938,1.5625,0.625,1.5,0.625,1.5625,0.625,1.5625,0.625,1.5,0.6563,1.5,0.625,1.5625,0.6563,1.5,0.6563,1.5625,0.6563,1.5625,0.6563,1.5,0.6875,1.5,0.6563,1.5625,0.6875,1.5,0.6875,1.5625,0.6875,1.5625,0.6875,1.5,0.7188,1.5,0.6875,1.5625,0.7188,1.5,0.7188,1.5625,0.7188,1.5625,0.7188,1.5,0.75,1.5,0.7188,1.5625,0.75,1.5,0.75,1.5625,0.75,1.5625,0.75,1.5,0.7813,1.5,0.75,1.5625,0.7813,1.5,0.7813,1.5625,0.7813,1.5625,0.7813,1.5,0.8125,1.5,0.7813,1.5625,0.8125,1.5,0.8125,1.5625,0.8125,1.5625,0.8125,1.5,0.8438,1.5,0.8125,1.5625,0.8438,1.5,0.8438,1.5625,0.8438,1.5625,0.8438,1.5,0.875,1.5,0.8438,1.5625,0.875,1.5,0.875,1.5625,0.875,1.5625,0.875,1.5,0.9063,1.5,0.875,1.5625,0.9063,1.5,0.9063,1.5625,0.9063,1.5625,0.9063,1.5,0.9375,1.5,0.9063,1.5625,0.9375,1.5,0.9375,1.5625,0.9375,1.5625,0.9375,1.5,0.9688,1.5,0.9375,1.5625,0.9688,1.5,0.9688,1.5625,0.9688,1.5625,0.9688,1.5,1.0,1.5,0.9688,1.5625,1.0,1.5,1.0,1.5625,0.0,1.5,0.0,1.4375,0.0312,1.4375,0.0,1.5,0.0312,1.4375,0.0312,1.5,0.0312,1.5,0.0312,1.4375,0.0625,1.4375,0.0312,1.5,0.0625,1.4375,0.0625,1.5,0.0625,1.5,0.0625,1.4375,0.0938,1.4375,0.0625,1.5,0.0938,1.4375,0.0938,1.5,0.0938,1.5,0.0938,1.4375,0.125,1.4375,0.0938,1.5,0.125,1.4375,0.125,1.5,0.125,1.5,0.125,1.4375,0.1562,1.4375,0.125,1.5,0.1562,1.4375,0.1562,1.5,0.1562,1.5,0.1562,1.4375,0.1875,1.4375,0.1562,1.5,0.1875,1.4375,0.1875,1.5,0.1875,1.5,0.1875,1.4375,0.2187,1.4375,0.1875,1.5,0.2187,1.4375,0.2187,1.5,0.2187,1.5,0.2187,1.4375,0.25,1.4375,0.2187,1.5,0.25,1.4375,0.25,1.5,0.25,1.5,0.25,1.4375,0.2812,1.4375,0.25,1.5,0.2812,1.4375,0.2812,1.5,0.2812,1.5,0.2812,1.4375,0.3125,1.4375,0.2812,1.5,0.3125,1.4375,0.3125,1.5,0.3125,1.5,0.3125,1.4375,0.3437,1.4375,0.3125,1.5,0.3437,1.4375,0.3437,1.5,0.3437,1.5,0.3437,1.4375,0.375,1.4375,0.3437,1.5,0.375,1.4375,0.375,1.5,0.375,1.5,0.375,1.4375,0.4062,1.4375,0.375,1.5,0.4062,1.4375,0.4062,1.5,0.4062,1.5,0.4062,1.4375,0.4375,1.4375,0.4062,1.5,0.4375,1.4375,0.4375,1.5,0.4375,1.5,0.4375,1.4375,0.4688,1.4375,0.4375,1.5,0.4688,1.4375,0.4688,1.5,0.4688,1.5,0.4688,1.4375,0.5,1.4375,0.4688,1.5,0.5,1.4375,0.5,1.5,0.5,1.5,0.5,1.4375,0.5313,1.4375,0.5,1.5,0.5313,1.4375,0.5313,1.5,0.5313,1.5,0.5313,1.4375,0.5625,1.4375,0.5313,1.5,0.5625,1.4375,0.5625,1.5,0.5625,1.5,0.5625,1.4375,0.5938,1.4375,0.5625,1.5,0.5938,1.4375,0.5938,1.5,0.5938,1.5,0.5938,1.4375,0.625,1.4375,0.5938,1.5,0.625,1.4375,0.625,1.5,0.625,1.5,0.625,1.4375,0.6563,1.4375,0.625,1.5,0.6563,1.4375,0.6563,1.5,0.6563,1.5,0.6563,1.4375,0.6875,1.4375,0.6563,1.5,0.6875,1.4375,0.6875,1.5,0.6875,1.5,0.6875,1.4375,0.7188,1.4375,0.6875,1.5,0.7188,1.4375,0.7188,1.5,0.7188,1.5,0.7188,1.4375,0.75,1.4375,0.7188,1.5,0.75,1.4375,0.75,1.5,0.75,1.5,0.75,1.4375,0.7813,1.4375,0.75,1.5,0.7813,1.4375,0.7813,1.5,0.7813,1.5,0.7813,1.4375,0.8125,1.4375,0.7813,1.5,0.8125,1.4375,0.8125,1.5,0.8125,1.5,0.8125,1.4375,0.8438,1.4375,0.8125,1.5,0.8438,1.4375,0.8438,1.5,0.8438,1.5,0.8438,1.4375,0.875,1.4375,0.8438,1.5,0.875,1.4375,0.875,1.5,0.875,1.5,0.875,1.4375,0.9063,1.4375,0.875,1.5,0.9063,1.4375,0.9063,1.5,0.9063,1.5,0.9063,1.4375,0.9375,1.4375,0.9063,1.5,0.9375,1.4375,0.9375,1.5,0.9375,1.5,0.9375,1.4375,0.9688,1.4375,0.9375,1.5,0.9688,1.4375,0.9688,1.5,0.9688,1.5,0.9688,1.4375,1.0,1.4375,0.9688,1.5,1.0,1.4375,1.0,1.5,0.0,1.4375,0.0,1.375,0.0312,1.375,0.0,1.4375,0.0312,1.375,0.0312,1.4375,0.0312,1.4375,0.0312,1.375,0.0625,1.375,0.0312,1.4375,0.0625,1.375,0.0625,1.4375,0.0625,1.4375,0.0625,1.375,0.0938,1.375,0.0625,1.4375,0.0938,1.375,0.0938,1.4375,0.0938,1.4375,0.0938,1.375,0.125,1.375,0.0938,1.4375,0.125,1.375,0.125,1.4375,0.125,1.4375,0.125,1.375,0.1562,1.375,0.125,1.4375,0.1562,1.375,0.1562,1.4375,0.1562,1.4375,0.1562,1.375,0.1875,1.375,0.1562,1.4375,0.1875,1.375,0.1875,1.4375,0.1875,1.4375,0.1875,1.375,0.2187,1.375,0.1875,1.4375,0.2187,1.375,0.2187,1.4375,0.2187,1.4375,0.2187,1.375,0.25,1.375,0.2187,1.4375,0.25,1.375,0.25,1.4375,0.25,1.4375,0.25,1.375,0.2812,1.375,0.25,1.4375,0.2812,1.375,0.2812,1.4375,0.2812,1.4375,0.2812,1.375,0.3125,1.375,0.2812,1.4375,0.3125,1.375,0.3125,1.4375,0.3125,1.4375,0.3125,1.375,0.3437,1.375,0.3125,1.4375,0.3437,1.375,0.3437,1.4375,0.3437,1.4375,0.3437,1.375,0.375,1.375,0.3437,1.4375,0.375,1.375,0.375,1.4375,0.375,1.4375,0.375,1.375,0.4062,1.375,0.375,1.4375,0.4062,1.375,0.4062,1.4375,0.4062,1.4375,0.4062,1.375,0.4375,1.375,0.4062,1.4375,0.4375,1.375,0.4375,1.4375,0.4375,1.4375,0.4375,1.375,0.4688,1.375,0.4375,1.4375,0.4688,1.375,0.4688,1.4375,0.4688,1.4375,0.4688,1.375,0.5,1.375,0.4688,1.4375,0.5,1.375,0.5,1.4375,0.5,1.4375,0.5,1.375,0.5313,1.375,0.5,1.4375,0.5313,1.375,0.5313,1.4375,0.5313,1.4375,0.5313,1.375,0.5625,1.375,0.5313,1.4375,0.5625,1.375,0.5625,1.4375,0.5625,1.4375,0.5625,1.375,0.5938,1.375,0.5625,1.4375,0.5938,1.375,0.5938,1.4375,0.5938,1.4375,0.5938,1.375,0.625,1.375,0.5938,1.4375,0.625,1.375,0.625,1.4375,0.625,1.4375,0.625,1.375,0.6563,1.375,0.625,1.4375,0.6563,1.375,0.6563,1.4375,0.6563,1.4375,0.6563,1.375,0.6875,1.375,0.6563,1.4375,0.6875,1.375,0.6875,1.4375,0.6875,1.4375,0.6875,1.375,0.7188,1.375,0.6875,1.4375,0.7188,1.375,0.7188,1.4375,0.7188,1.4375,0.7188,1.375,0.75,1.375,0.7188,1.4375,0.75,1.375,0.75,1.4375,0.75,1.4375,0.75,1.375,0.7813,1.375,0.75,1.4375,0.7813,1.375,0.7813,1.4375,0.7813,1.4375,0.7813,1.375,0.8125,1.375,0.7813,1.4375,0.8125,1.375,0.8125,1.4375,0.8125,1.4375,0.8125,1.375,0.8438,1.375,0.8125,1.4375,0.8438,1.375,0.8438,1.4375,0.8438,1.4375,0.8438,1.375,0.875,1.375,0.8438,1.4375,0.875,1.375,0.875,1.4375,0.875,1.4375,0.875,1.375,0.9063,1.375,0.875,1.4375,0.9063,1.375,0.9063,1.4375,0.9063,1.4375,0.9063,1.375,0.9375,1.375,0.9063,1.4375,0.9375,1.375,0.9375,1.4375,0.9375,1.4375,0.9375,1.375,0.9688,1.375,0.9375,1.4375,0.9688,1.375,0.9688,1.4375,0.9688,1.4375,0.9688,1.375,1.0,1.375,0.9688,1.4375,1.0,1.375,1.0,1.4375,0.0,1.375,0.0,1.3125,0.0312,1.3125,0.0,1.375,0.0312,1.3125,0.0312,1.375,0.0312,1.375,0.0312,1.3125,0.0625,1.3125,0.0312,1.375,0.0625,1.3125,0.0625,1.375,0.0625,1.375,0.0625,1.3125,0.0938,1.3125,0.0625,1.375,0.0938,1.3125,0.0938,1.375,0.0938,1.375,0.0938,1.3125,0.125,1.3125,0.0938,1.375,0.125,1.3125,0.125,1.375,0.125,1.375,0.125,1.3125,0.1562,1.3125,0.125,1.375,0.1562,1.3125,0.1562,1.375,0.1562,1.375,0.1562,1.3125,0.1875,1.3125,0.1562,1.375,0.1875,1.3125,0.1875,1.375,0.1875,1.375,0.1875,1.3125,0.2187,1.3125,0.1875,1.375,0.2187,1.3125,0.2187,1.375,0.2187,1.375,0.2187,1.3125,0.25,1.3125,0.2187,1.375,0.25,1.3125,0.25,1.375,0.25,1.375,0.25,1.3125,0.2812,1.3125,0.25,1.375,0.2812,1.3125,0.2812,1.375,0.2812,1.375,0.2812,1.3125,0.3125,1.3125,0.2812,1.375,0.3125,1.3125,0.3125,1.375,0.3125,1.375,0.3125,1.3125,0.3437,1.3125,0.3125,1.375,0.3437,1.3125,0.3437,1.375,0.3437,1.375,0.3437,1.3125,0.375,1.3125,0.3437,1.375,0.375,1.3125,0.375,1.375,0.375,1.375,0.375,1.3125,0.4062,1.3125,0.375,1.375,0.4062,1.3125,0.4062,1.375,0.4062,1.375,0.4062,1.3125,0.4375,1.3125,0.4062,1.375,0.4375,1.3125,0.4375,1.375,0.4375,1.375,0.4375,1.3125,0.4688,1.3125,0.4375,1.375,0.4688,1.3125,0.4688,1.375,0.4688,1.375,0.4688,1.3125,0.5,1.3125,0.4688,1.375,0.5,1.3125,0.5,1.375,0.5,1.375,0.5,1.3125,0.5313,1.3125,0.5,1.375,0.5313,1.3125,0.5313,1.375,0.5313,1.375,0.5313,1.3125,0.5625,1.3125,0.5313,1.375,0.5625,1.3125,0.5625,1.375,0.5625,1.375,0.5625,1.3125,0.5938,1.3125,0.5625,1.375,0.5938,1.3125,0.5938,1.375,0.5938,1.375,0.5938,1.3125,0.625,1.3125,0.5938,1.375,0.625,1.3125,0.625,1.375,0.625,1.375,0.625,1.3125,0.6563,1.3125,0.625,1.375,0.6563,1.3125,0.6563,1.375,0.6563,1.375,0.6563,1.3125,0.6875,1.3125,0.6563,1.375,0.6875,1.3125,0.6875,1.375,0.6875,1.375,0.6875,1.3125,0.7188,1.3125,0.6875,1.375,0.7188,1.3125,0.7188,1.375,0.7188,1.375,0.7188,1.3125,0.75,1.3125,0.7188,1.375,0.75,1.3125,0.75,1.375,0.75,1.375,0.75,1.3125,0.7813,1.3125,0.75,1.375,0.7813,1.3125,0.7813,1.375,0.7813,1.375,0.7813,1.3125,0.8125,1.3125,0.7813,1.375,0.8125,1.3125,0.8125,1.375,0.8125,1.375,0.8125,1.3125,0.8438,1.3125,0.8125,1.375,0.8438,1.3125,0.8438,1.375,0.8438,1.375,0.8438,1.3125,0.875,1.3125,0.8438,1.375,0.875,1.3125,0.875,1.375,0.875,1.375,0.875,1.3125,0.9063,1.3125,0.875,1.375,0.9063,1.3125,0.9063,1.375,0.9063,1.375,0.9063,1.3125,0.9375,1.3125,0.9063,1.375,0.9375,1.3125,0.9375,1.375,0.9375,1.375,0.9375,1.3125,0.9688,1.3125,0.9375,1.375,0.9688,1.3125,0.9688,1.375,0.9688,1.375,0.9688,1.3125,1.0,1.3125,0.9688,1.375,1.0,1.3125,1.0,1.375,0.0,1.3125,0.0,1.25,0.0312,1.25,0.0,1.3125,0.0312,1.25,0.0312,1.3125,0.0312,1.3125,0.0312,1.25,0.0625,1.25,0.0312,1.3125,0.0625,1.25,0.0625,1.3125,0.0625,1.3125,0.0625,1.25,0.0938,1.25,0.0625,1.3125,0.0938,1.25,0.0938,1.3125,0.0938,1.3125,0.0938,1.25,0.125,1.25,0.0938,1.3125,0.125,1.25,0.125,1.3125,0.125,1.3125,0.125,1.25,0.1562,1.25,0.125,1.3125,0.1562,1.25,0.1562,1.3125,0.1562,1.3125,0.1562,1.25,0.1875,1.25,0.1562,1.3125,0.1875,1.25,0.1875,1.3125,0.1875,1.3125,0.1875,1.25,0.2187,1.25,0.1875,1.3125,0.2187,1.25,0.2187,1.3125,0.2187,1.3125,0.2187,1.25,0.25,1.25,0.2187,1.3125,0.25,1.25,0.25,1.3125,0.25,1.3125,0.25,1.25,0.2812,1.25,0.25,1.3125,0.2812,1.25,0.2812,1.3125,0.2812,1.3125,0.2812,1.25,0.3125,1.25,0.2812,1.3125,0.3125,1.25,0.3125,1.3125,0.3125,1.3125,0.3125,1.25,0.3437,1.25,0.3125,1.3125,0.3437,1.25,0.3437,1.3125,0.3437,1.3125,0.3437,1.25,0.375,1.25,0.3437,1.3125,0.375,1.25,0.375,1.3125,0.375,1.3125,0.375,1.25,0.4062,1.25,0.375,1.3125,0.4062,1.25,0.4062,1.3125,0.4062,1.3125,0.4062,1.25,0.4375,1.25,0.4062,1.3125,0.4375,1.25,0.4375,1.3125,0.4375,1.3125,0.4375,1.25,0.4688,1.25,0.4375,1.3125,0.4688,1.25,0.4688,1.3125,0.4688,1.3125,0.4688,1.25,0.5,1.25,0.4688,1.3125,0.5,1.25,0.5,1.3125,0.5,1.3125,0.5,1.25,0.5313,1.25,0.5,1.3125,0.5313,1.25,0.5313,1.3125,0.5313,1.3125,0.5313,1.25,0.5625,1.25,0.5313,1.3125,0.5625,1.25,0.5625,1.3125,0.5625,1.3125,0.5625,1.25,0.5938,1.25,0.5625,1.3125,0.5938,1.25,0.5938,1.3125,0.5938,1.3125,0.5938,1.25,0.625,1.25,0.5938,1.3125,0.625,1.25,0.625,1.3125,0.625,1.3125,0.625,1.25,0.6563,1.25,0.625,1.3125,0.6563,1.25,0.6563,1.3125,0.6563,1.3125,0.6563,1.25,0.6875,1.25,0.6563,1.3125,0.6875,1.25,0.6875,1.3125,0.6875,1.3125,0.6875,1.25,0.7188,1.25,0.6875,1.3125,0.7188,1.25,0.7188,1.3125,0.7188,1.3125,0.7188,1.25,0.75,1.25,0.7188,1.3125,0.75,1.25,0.75,1.3125,0.75,1.3125,0.75,1.25,0.7813,1.25,0.75,1.3125,0.7813,1.25,0.7813,1.3125,0.7813,1.3125,0.7813,1.25,0.8125,1.25,0.7813,1.3125,0.8125,1.25,0.8125,1.3125,0.8125,1.3125,0.8125,1.25,0.8438,1.25,0.8125,1.3125,0.8438,1.25,0.8438,1.3125,0.8438,1.3125,0.8438,1.25,0.875,1.25,0.8438,1.3125,0.875,1.25,0.875,1.3125,0.875,1.3125,0.875,1.25,0.9063,1.25,0.875,1.3125,0.9063,1.25,0.9063,1.3125,0.9063,1.3125,0.9063,1.25,0.9375,1.25,0.9063,1.3125,0.9375,1.25,0.9375,1.3125,0.9375,1.3125,0.9375,1.25,0.9688,1.25,0.9375,1.3125,0.9688,1.25,0.9688,1.3125,0.9688,1.3125,0.9688,1.25,1.0,1.25,0.9688,1.3125,1.0,1.25,1.0,1.3125,0.0,1.25,0.0,1.1875,0.0312,1.1875,0.0,1.25,0.0312,1.1875,0.0312,1.25,0.0312,1.25,0.0312,1.1875,0.0625,1.1875,0.0312,1.25,0.0625,1.1875,0.0625,1.25,0.0625,1.25,0.0625,1.1875,0.0938,1.1875,0.0625,1.25,0.0938,1.1875,0.0938,1.25,0.0938,1.25,0.0938,1.1875,0.125,1.1875,0.0938,1.25,0.125,1.1875,0.125,1.25,0.125,1.25,0.125,1.1875,0.1562,1.1875,0.125,1.25,0.1562,1.1875,0.1562,1.25,0.1562,1.25,0.1562,1.1875,0.1875,1.1875,0.1562,1.25,0.1875,1.1875,0.1875,1.25,0.1875,1.25,0.1875,1.1875,0.2187,1.1875,0.1875,1.25,0.2187,1.1875,0.2187,1.25,0.2187,1.25,0.2187,1.1875,0.25,1.1875,0.2187,1.25,0.25,1.1875,0.25,1.25,0.25,1.25,0.25,1.1875,0.2812,1.1875,0.25,1.25,0.2812,1.1875,0.2812,1.25,0.2812,1.25,0.2812,1.1875,0.3125,1.1875,0.2812,1.25,0.3125,1.1875,0.3125,1.25,0.3125,1.25,0.3125,1.1875,0.3437,1.1875,0.3125,1.25,0.3437,1.1875,0.3437,1.25,0.3437,1.25,0.3437,1.1875,0.375,1.1875,0.3437,1.25,0.375,1.1875,0.375,1.25,0.375,1.25,0.375,1.1875,0.4062,1.1875,0.375,1.25,0.4062,1.1875,0.4062,1.25,0.4062,1.25,0.4062,1.1875,0.4375,1.1875,0.4062,1.25,0.4375,1.1875,0.4375,1.25,0.4375,1.25,0.4375,1.1875,0.4688,1.1875,0.4375,1.25,0.4688,1.1875,0.4688,1.25,0.4688,1.25,0.4688,1.1875,0.5,1.1875,0.4688,1.25,0.5,1.1875,0.5,1.25,0.5,1.25,0.5,1.1875,0.5313,1.1875,0.5,1.25,0.5313,1.1875,0.5313,1.25,0.5313,1.25,0.5313,1.1875,0.5625,1.1875,0.5313,1.25,0.5625,1.1875,0.5625,1.25,0.5625,1.25,0.5625,1.1875,0.5938,1.1875,0.5625,1.25,0.5938,1.1875,0.5938,1.25,0.5938,1.25,0.5938,1.1875,0.625,1.1875,0.5938,1.25,0.625,1.1875,0.625,1.25,0.625,1.25,0.625,1.1875,0.6563,1.1875,0.625,1.25,0.6563,1.1875,0.6563,1.25,0.6563,1.25,0.6563,1.1875,0.6875,1.1875,0.6563,1.25,0.6875,1.1875,0.6875,1.25,0.6875,1.25,0.6875,1.1875,0.7188,1.1875,0.6875,1.25,0.7188,1.1875,0.7188,1.25,0.7188,1.25,0.7188,1.1875,0.75,1.1875,0.7188,1.25,0.75,1.1875,0.75,1.25,0.75,1.25,0.75,1.1875,0.7813,1.1875,0.75,1.25,0.7813,1.1875,0.7813,1.25,0.7813,1.25,0.7813,1.1875,0.8125,1.1875,0.7813,1.25,0.8125,1.1875,0.8125,1.25,0.8125,1.25,0.8125,1.1875,0.8438,1.1875,0.8125,1.25,0.8438,1.1875,0.8438,1.25,0.8438,1.25,0.8438,1.1875,0.875,1.1875,0.8438,1.25,0.875,1.1875,0.875,1.25,0.875,1.25,0.875,1.1875,0.9063,1.1875,0.875,1.25,0.9063,1.1875,0.9063,1.25,0.9063,1.25,0.9063,1.1875,0.9375,1.1875,0.9063,1.25,0.9375,1.1875,0.9375,1.25,0.9375,1.25,0.9375,1.1875,0.9688,1.1875,0.9375,1.25,0.9688,1.1875,0.9688,1.25,0.9688,1.25,0.9688,1.1875,1.0,1.1875,0.9688,1.25,1.0,1.1875,1.0,1.25,0.0,1.1875,0.0,1.125,0.0312,1.125,0.0,1.1875,0.0312,1.125,0.0312,1.1875,0.0312,1.1875,0.0312,1.125,0.0625,1.125,0.0312,1.1875,0.0625,1.125,0.0625,1.1875,0.0625,1.1875,0.0625,1.125,0.0938,1.125,0.0625,1.1875,0.0938,1.125,0.0938,1.1875,0.0938,1.1875,0.0938,1.125,0.125,1.125,0.0938,1.1875,0.125,1.125,0.125,1.1875,0.125,1.1875,0.125,1.125,0.1562,1.125,0.125,1.1875,0.1562,1.125,0.1562,1.1875,0.1562,1.1875,0.1562,1.125,0.1875,1.125,0.1562,1.1875,0.1875,1.125,0.1875,1.1875,0.1875,1.1875,0.1875,1.125,0.2187,1.125,0.1875,1.1875,0.2187,1.125,0.2187,1.1875,0.2187,1.1875,0.2187,1.125,0.25,1.125,0.2187,1.1875,0.25,1.125,0.25,1.1875,0.25,1.1875,0.25,1.125,0.2812,1.125,0.25,1.1875,0.2812,1.125,0.2812,1.1875,0.2812,1.1875,0.2812,1.125,0.3125,1.125,0.2812,1.1875,0.3125,1.125,0.3125,1.1875,0.3125,1.1875,0.3125,1.125,0.3437,1.125,0.3125,1.1875,0.3437,1.125,0.3437,1.1875,0.3437,1.1875,0.3437,1.125,0.375,1.125,0.3437,1.1875,0.375,1.125,0.375,1.1875,0.375,1.1875,0.375,1.125,0.4062,1.125,0.375,1.1875,0.4062,1.125,0.4062,1.1875,0.4062,1.1875,0.4062,1.125,0.4375,1.125,0.4062,1.1875,0.4375,1.125,0.4375,1.1875,0.4375,1.1875,0.4375,1.125,0.4688,1.125,0.4375,1.1875,0.4688,1.125,0.4688,1.1875,0.4688,1.1875,0.4688,1.125,0.5,1.125,0.4688,1.1875,0.5,1.125,0.5,1.1875,0.5,1.1875,0.5,1.125,0.5313,1.125,0.5,1.1875,0.5313,1.125,0.5313,1.1875,0.5313,1.1875,0.5313,1.125,0.5625,1.125,0.5313,1.1875,0.5625,1.125,0.5625,1.1875,0.5625,1.1875,0.5625,1.125,0.5938,1.125,0.5625,1.1875,0.5938,1.125,0.5938,1.1875,0.5938,1.1875,0.5938,1.125,0.625,1.125,0.5938,1.1875,0.625,1.125,0.625,1.1875,0.625,1.1875,0.625,1.125,0.6563,1.125,0.625,1.1875,0.6563,1.125,0.6563,1.1875,0.6563,1.1875,0.6563,1.125,0.6875,1.125,0.6563,1.1875,0.6875,1.125,0.6875,1.1875,0.6875,1.1875,0.6875,1.125,0.7188,1.125,0.6875,1.1875,0.7188,1.125,0.7188,1.1875,0.7188,1.1875,0.7188,1.125,0.75,1.125,0.7188,1.1875,0.75,1.125,0.75,1.1875,0.75,1.1875,0.75,1.125,0.7813,1.125,0.75,1.1875,0.7813,1.125,0.7813,1.1875,0.7813,1.1875,0.7813,1.125,0.8125,1.125,0.7813,1.1875,0.8125,1.125,0.8125,1.1875,0.8125,1.1875,0.8125,1.125,0.8438,1.125,0.8125,1.1875,0.8438,1.125,0.8438,1.1875,0.8438,1.1875,0.8438,1.125,0.875,1.125,0.8438,1.1875,0.875,1.125,0.875,1.1875,0.875,1.1875,0.875,1.125,0.9063,1.125,0.875,1.1875,0.9063,1.125,0.9063,1.1875,0.9063,1.1875,0.9063,1.125,0.9375,1.125,0.9063,1.1875,0.9375,1.125,0.9375,1.1875,0.9375,1.1875,0.9375,1.125,0.9688,1.125,0.9375,1.1875,0.9688,1.125,0.9688,1.1875,0.9688,1.1875,0.9688,1.125,1.0,1.125,0.9688,1.1875,1.0,1.125,1.0,1.1875,0.0,1.125,0.0,1.0625,0.0312,1.0625,0.0,1.125,0.0312,1.0625,0.0312,1.125,0.0312,1.125,0.0312,1.0625,0.0625,1.0625,0.0312,1.125,0.0625,1.0625,0.0625,1.125,0.0625,1.125,0.0625,1.0625,0.0938,1.0625,0.0625,1.125,0.0938,1.0625,0.0938,1.125,0.0938,1.125,0.0938,1.0625,0.125,1.0625,0.0938,1.125,0.125,1.0625,0.125,1.125,0.125,1.125,0.125,1.0625,0.1562,1.0625,0.125,1.125,0.1562,1.0625,0.1562,1.125,0.1562,1.125,0.1562,1.0625,0.1875,1.0625,0.1562,1.125,0.1875,1.0625,0.1875,1.125,0.1875,1.125,0.1875,1.0625,0.2187,1.0625,0.1875,1.125,0.2187,1.0625,0.2187,1.125,0.2187,1.125,0.2187,1.0625,0.25,1.0625,0.2187,1.125,0.25,1.0625,0.25,1.125,0.25,1.125,0.25,1.0625,0.2812,1.0625,0.25,1.125,0.2812,1.0625,0.2812,1.125,0.2812,1.125,0.2812,1.0625,0.3125,1.0625,0.2812,1.125,0.3125,1.0625,0.3125,1.125,0.3125,1.125,0.3125,1.0625,0.3437,1.0625,0.3125,1.125,0.3437,1.0625,0.3437,1.125,0.3437,1.125,0.3437,1.0625,0.375,1.0625,0.3437,1.125,0.375,1.0625,0.375,1.125,0.375,1.125,0.375,1.0625,0.4062,1.0625,0.375,1.125,0.4062,1.0625,0.4062,1.125,0.4062,1.125,0.4062,1.0625,0.4375,1.0625,0.4062,1.125,0.4375,1.0625,0.4375,1.125,0.4375,1.125,0.4375,1.0625,0.4688,1.0625,0.4375,1.125,0.4688,1.0625,0.4688,1.125,0.4688,1.125,0.4688,1.0625,0.5,1.0625,0.4688,1.125,0.5,1.0625,0.5,1.125,0.5,1.125,0.5,1.0625,0.5313,1.0625,0.5,1.125,0.5313,1.0625,0.5313,1.125,0.5313,1.125,0.5313,1.0625,0.5625,1.0625,0.5313,1.125,0.5625,1.0625,0.5625,1.125,0.5625,1.125,0.5625,1.0625,0.5938,1.0625,0.5625,1.125,0.5938,1.0625,0.5938,1.125,0.5938,1.125,0.5938,1.0625,0.625,1.0625,0.5938,1.125,0.625,1.0625,0.625,1.125,0.625,1.125,0.625,1.0625,0.6563,1.0625,0.625,1.125,0.6563,1.0625,0.6563,1.125,0.6563,1.125,0.6563,1.0625,0.6875,1.0625,0.6563,1.125,0.6875,1.0625,0.6875,1.125,0.6875,1.125,0.6875,1.0625,0.7188,1.0625,0.6875,1.125,0.7188,1.0625,0.7188,1.125,0.7188,1.125,0.7188,1.0625,0.75,1.0625,0.7188,1.125,0.75,1.0625,0.75,1.125,0.75,1.125,0.75,1.0625,0.7813,1.0625,0.75,1.125,0.7813,1.0625,0.7813,1.125,0.7813,1.125,0.7813,1.0625,0.8125,1.0625,0.7813,1.125,0.8125,1.0625,0.8125,1.125,0.8125,1.125,0.8125,1.0625,0.8438,1.0625,0.8125,1.125,0.8438,1.0625,0.8438,1.125,0.8438,1.125,0.8438,1.0625,0.875,1.0625,0.8438,1.125,0.875,1.0625,0.875,1.125,0.875,1.125,0.875,1.0625,0.9063,1.0625,0.875,1.125,0.9063,1.0625,0.9063,1.125,0.9063,1.125,0.9063,1.0625,0.9375,1.0625,0.9063,1.125,0.9375,1.0625,0.9375,1.125,0.9375,1.125,0.9375,1.0625,0.9688,1.0625,0.9375,1.125,0.9688,1.0625,0.9688,1.125,0.9688,1.125,0.9688,1.0625,1.0,1.0625,0.9688,1.125,1.0,1.0625,1.0,1.125,0.0,1.0,0.0312,1.0625,0.0,1.0625,0.0312,1.0,0.0625,1.0625,0.0312,1.0625,0.0625,1.0,0.0938,1.0625,0.0625,1.0625,0.0938,1.0,0.125,1.0625,0.0938,1.0625,0.125,1.0,0.1562,1.0625,0.125,1.0625,0.1562,1.0,0.1875,1.0625,0.1562,1.0625,0.1875,1.0,0.2187,1.0625,0.1875,1.0625,0.2187,1.0,0.25,1.0625,0.2187,1.0625,0.25,1.0,0.2812,1.0625,0.25,1.0625,0.2812,1.0,0.3125,1.0625,0.2812,1.0625,0.3125,1.0,0.3437,1.0625,0.3125,1.0625,0.3437,1.0,0.375,1.0625,0.3437,1.0625,0.375,1.0,0.4062,1.0625,0.375,1.0625,0.4062,1.0,0.4375,1.0625,0.4062,1.0625,0.4375,1.0,0.4688,1.0625,0.4375,1.0625,0.4688,1.0,0.5,1.0625,0.4688,1.0625,0.5,1.0,0.5313,1.0625,0.5,1.0625,0.5313,1.0,0.5625,1.0625,0.5313,1.0625,0.5625,1.0,0.5938,1.0625,0.5625,1.0625,0.5938,1.0,0.625,1.0625,0.5938,1.0625,0.625,1.0,0.6563,1.0625,0.625,1.0625,0.6563,1.0,0.6875,1.0625,0.6563,1.0625,0.6875,1.0,0.7188,1.0625,0.6875,1.0625,0.7188,1.0,0.75,1.0625,0.7188,1.0625,0.75,1.0,0.7813,1.0625,0.75,1.0625,0.7813,1.0,0.8125,1.0625,0.7813,1.0625,0.8125,1.0,0.8438,1.0625,0.8125,1.0625,0.8438,1.0,0.875,1.0625,0.8438,1.0625,0.875,1.0,0.9063,1.0625,0.875,1.0625,0.9063,1.0,0.9375,1.0625,0.9063,1.0625,0.9375,1.0,0.9688,1.0625,0.9375,1.0625,0.9688,1.0,1.0,1.0625,0.9688,1.0625],"uvs2":null,"colors":null,"hasVertexAlpha":false,"matricesIndices":null,"matricesWeights":null,"matricesIndicesExtra":null,"matricesWeightsExtra":null,"indices":[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,1984,1985,1986,1987,1988,1989,1990,1991,1992,1993,1994,1995,1996,1997,1998,1999,2000,2001,2002,2003,2004,2005,2006,2007,2008,2009,2010,2011,2012,2013,2014,2015,2016,2017,2018,2019,2020,2021,2022,2023,2024,2025,2026,2027,2028,2029,2030,2031,2032,2033,2034,2035,2036,2037,2038,2039,2040,2041,2042,2043,2044,2045,2046,2047,2048,2049,2050,2051,2052,2053,2054,2055,2056,2057,2058,2059,2060,2061,2062,2063,2064,2065,2066,2067,2068,2069,2070,2071,2072,2073,2074,2075,2076,2077,2078,2079,2080,2081,2082,2083,2084,2085,2086,2087,2088,2089,2090,2091,2092,2093,2094,2095,2096,2097,2098,2099,2100,2101,2102,2103,2104,2105,2106,2107,2108,2109,2110,2111,2112,2113,2114,2115,2116,2117,2118,2119,2120,2121,2122,2123,2124,2125,2126,2127,2128,2129,2130,2131,2132,2133,2134,2135,2136,2137,2138,2139,2140,2141,2142,2143,2144,2145,2146,2147,2148,2149,2150,2151,2152,2153,2154,2155,2156,2157,2158,2159,2160,2161,2162,2163,2164,2165,2166,2167,2168,2169,2170,2171,2172,2173,2174,2175,2176,2177,2178,2179,2180,2181,2182,2183,2184,2185,2186,2187,2188,2189,2190,2191,2192,2193,2194,2195,2196,2197,2198,2199,2200,2201,2202,2203,2204,2205,2206,2207,2208,2209,2210,2211,2212,2213,2214,2215,2216,2217,2218,2219,2220,2221,2222,2223,2224,2225,2226,2227,2228,2229,2230,2231,2232,2233,2234,2235,2236,2237,2238,2239,2240,2241,2242,2243,2244,2245,2246,2247,2248,2249,2250,2251,2252,2253,2254,2255,2256,2257,2258,2259,2260,2261,2262,2263,2264,2265,2266,2267,2268,2269,2270,2271,2272,2273,2274,2275,2276,2277,2278,2279,2280,2281,2282,2283,2284,2285,2286,2287,2288,2289,2290,2291,2292,2293,2294,2295,2296,2297,2298,2299,2300,2301,2302,2303,2304,2305,2306,2307,2308,2309,2310,2311,2312,2313,2314,2315,2316,2317,2318,2319,2320,2321,2322,2323,2324,2325,2326,2327,2328,2329,2330,2331,2332,2333,2334,2335,2336,2337,2338,2339,2340,2341,2342,2343,2344,2345,2346,2347,2348,2349,2350,2351,2352,2353,2354,2355,2356,2357,2358,2359,2360,2361,2362,2363,2364,2365,2366,2367,2368,2369,2370,2371,2372,2373,2374,2375,2376,2377,2378,2379,2380,2381,2382,2383,2384,2385,2386,2387,2388,2389,2390,2391,2392,2393,2394,2395,2396,2397,2398,2399,2400,2401,2402,2403,2404,2405,2406,2407,2408,2409,2410,2411,2412,2413,2414,2415,2416,2417,2418,2419,2420,2421,2422,2423,2424,2425,2426,2427,2428,2429,2430,2431,2432,2433,2434,2435,2436,2437,2438,2439,2440,2441,2442,2443,2444,2445,2446,2447,2448,2449,2450,2451,2452,2453,2454,2455,2456,2457,2458,2459,2460,2461,2462,2463,2464,2465,2466,2467,2468,2469,2470,2471,2472,2473,2474,2475,2476,2477,2478,2479,2480,2481,2482,2483,2484,2485,2486,2487,2488,2489,2490,2491,2492,2493,2494,2495,2496,2497,2498,2499,2500,2501,2502,2503,2504,2505,2506,2507,2508,2509,2510,2511,2512,2513,2514,2515,2516,2517,2518,2519,2520,2521,2522,2523,2524,2525,2526,2527,2528,2529,2530,2531,2532,2533,2534,2535,2536,2537,2538,2539,2540,2541,2542,2543,2544,2545,2546,2547,2548,2549,2550,2551,2552,2553,2554,2555,2556,2557,2558,2559,2560,2561,2562,2563,2564,2565,2566,2567,2568,2569,2570,2571,2572,2573,2574,2575,2576,2577,2578,2579,2580,2581,2582,2583,2584,2585,2586,2587,2588,2589,2590,2591,2592,2593,2594,2595,2596,2597,2598,2599,2600,2601,2602,2603,2604,2605,2606,2607,2608,2609,2610,2611,2612,2613,2614,2615,2616,2617,2618,2619,2620,2621,2622,2623,2624,2625,2626,2627,2628,2629,2630,2631,2632,2633,2634,2635,2636,2637,2638,2639,2640,2641,2642,2643,2644,2645,2646,2647,2648,2649,2650,2651,2652,2653,2654,2655,2656,2657,2658,2659,2660,2661,2662,2663,2664,2665,2666,2667,2668,2669,2670,2671,2672,2673,2674,2675,2676,2677,2678,2679,2680,2681,2682,2683,2684,2685,2686,2687,2688,2689,2690,2691,2692,2693,2694,2695,2696,2697,2698,2699,2700,2701,2702,2703,2704,2705,2706,2707,2708,2709,2710,2711,2712,2713,2714,2715,2716,2717,2718,2719,2720,2721,2722,2723,2724,2725,2726,2727,2728,2729,2730,2731,2732,2733,2734,2735,2736,2737,2738,2739,2740,2741,2742,2743,2744,2745,2746,2747,2748,2749,2750,2751,2752,2753,2754,2755,2756,2757,2758,2759,2760,2761,2762,2763,2764,2765,2766,2767,2768,2769,2770,2771,2772,2773,2774,2775,2776,2777,2778,2779,2780,2781,2782,2783,2784,2785,2786,2787,2788,2789,2790,2791,2792,2793,2794,2795,2796,2797,2798,2799,2800,2801,2802,2803,2804,2805,2806,2807,2808,2809,2810,2811,2812,2813,2814,2815,2816,2817,2818,2819,2820,2821,2822,2823,2824,2825,2826,2827,2828,2829,2830,2831,2832,2833,2834,2835,2836,2837,2838,2839,2840,2841,2842,2843,2844,2845,2846,2847,2848,2849,2850,2851,2852,2853,2854,2855,2856,2857,2858,2859,2860,2861,2862,2863,2864,2865,2866,2867,2868,2869,2870,2871,2872,2873,2874,2875,2876,2877,2878,2879],"receiveShadows":true,"infiniteDistance":false,"billboardMode":0,"visibility":1.0,"subMeshes":[{"materialIndex":0,"verticesStart":0,"verticesCount":2880,"indexStart":0,"indexCount":2880}],"instances":null,"skeletonId":-1,"numBoneInfluencers":4,"applyFog":true,"lodMeshIds":null,"lodDistances":null,"lodCoverages":null,"rotation":null,"scaling":[1.0,1.0,1.0],"rotationQuaternion":[0.0,0.0,0.0,1.0],"actions":null,"checkCollisions":false,"pickable":false,"showBoundingBox":false,"showSubMeshesBoundingBox":false,"alphaIndex":1000,"physicsImpostor":0,"physicsMass":0.0,"physicsFriction":0.0,"physicsRestitution":0.0,"name":"StandardArnoldMesh","id":"57bbf667-4bf9-4453-8787-dd1f8673b543","parentId":null,"position":[6.0,0.0,0.0],"animations":[],"autoAnimate":true,"autoAnimateFrom":0,"autoAnimateTo":100,"autoAnimateLoop":true,"metadata":null}],"sounds":[],"materials":[{"customType":"BABYLON.StandardMaterial","ambient":[1.0,0.0,0.0],"diffuse":[1.0,0.0,0.0],"specular":[0.0,0.0,0.0],"emissive":[0.0,0.0,0.0],"specularPower":25.6,"diffuseTexture":null,"diffuseFresnelParameters":null,"ambientTexture":null,"opacityTexture":null,"opacityFresnelParameters":null,"reflectionTexture":null,"reflectionFresnelParameters":null,"emissiveTexture":null,"lightmapTexture":null,"useLightmapAsShadowmap":false,"emissiveFresnelParameters":null,"specularTexture":null,"bumpTexture":null,"useSpecularOverAlpha":true,"disableLighting":false,"useEmissiveAsIllumination":false,"linkEmissiveWithDiffuse":true,"twoSidedLighting":false,"useGlossinessFromSpecularMapAlpha":false,"name":"StandardMaterial","id":"814decf0-a4ea-454e-a404-277528478ef5","backFaceCulling":true,"wireframe":false,"alpha":1.0,"alphaMode":2,"maxSimultaneousLights":4,"metadata":{}},{"customType":"BABYLON.PBRMetallicRoughnessMaterial","baseColor":[0.0,1.0,0.0],"baseTexture":null,"metallic":0.0,"roughness":0.0,"metallicRoughnessTexture":null,"disableLighting":false,"invertNormalMapX":false,"invertNormalMapY":false,"normalTexture":null,"emissive":[0.0,0.0,0.0],"emissiveTexture":null,"occlusionStrength":1.0,"occlusionTexture":null,"transparencyMode":0,"doubleSided":false,"clearCoat":{"isEnabled":false,"intensity":1.0,"roughness":0.0,"indexOfRefraction":1.5,"texture":null,"bumpTexture":null,"isTintEnabled":false,"tintColor":[1.0,1.0,1.0],"tintThickness":1.0,"tintTexture":null},"name":"PhysicalMaterial","id":"e8d366dc-9a25-4d46-80f2-60a95ec88505","backFaceCulling":true,"wireframe":false,"alpha":1.0,"alphaMode":2,"maxSimultaneousLights":4,"metadata":{}},{"customType":"BABYLON.PBRMetallicRoughnessMaterial","baseColor":[0.0,0.0,0.8],"baseTexture":null,"metallic":0.0,"roughness":0.1,"metallicRoughnessTexture":null,"disableLighting":false,"invertNormalMapX":false,"invertNormalMapY":false,"normalTexture":null,"emissive":[0.0,0.0,0.0],"emissiveTexture":null,"occlusionStrength":1.0,"occlusionTexture":null,"transparencyMode":0,"doubleSided":false,"clearCoat":{"isEnabled":false,"intensity":1.0,"roughness":0.0,"indexOfRefraction":1.5,"texture":null,"bumpTexture":null,"isTintEnabled":false,"tintColor":[1.0,1.0,1.0],"tintThickness":1.0,"tintTexture":null},"name":"Material #0","id":"c2525260-7da1-4c5d-a743-37cc6b14cfd0","backFaceCulling":true,"wireframe":false,"alpha":1.0,"alphaMode":2,"maxSimultaneousLights":4,"metadata":{}}],"multiMaterials":[],"particleSystems":null,"lensFlareSystems":null,"shadowGenerators":[],"skeletons":[],"actions":null,"metadata":null,"workerCollisions":false}
\ No newline at end of file
diff --git a/3ds Max/Samples/babylon/BabylonMaterialAttributes/MaxSimultaneousLights.babylon b/3ds Max/Samples/babylon/BabylonMaterialAttributes/MaxSimultaneousLights.babylon
new file mode 100644
index 00000000..b6eec321
--- /dev/null
+++ b/3ds Max/Samples/babylon/BabylonMaterialAttributes/MaxSimultaneousLights.babylon
@@ -0,0 +1 @@
+{"producer":{"name":"3dsmax","version":"2019","exporter_version":"1.5.0","file":"MaxSimultaneousLights.babylon"},"autoClear":true,"clearColor":[0.0,0.0,0.0],"ambientColor":[0.0,0.0,0.0],"fogMode":0,"fogColor":null,"fogStart":0.0,"fogEnd":0.0,"fogDensity":0.0,"gravity":[0.0,0.0,0.0],"physicsEngine":null,"physicsEnabled":false,"physicsGravity":null,"lights":[{"direction":[0.866,-0.5,0.0],"type":1,"diffuse":[1.0,1.0,1.0],"specular":[1.0,1.0,1.0],"intensity":10.0,"range":3.40282347E+38,"exponent":0.0,"angle":0.0,"groundColor":null,"excludedMeshesIds":[],"includedOnlyMeshesIds":[],"lightmapMode":null,"falloffType":null,"name":"LeftLight","id":"9bf2b32e-0791-4f83-928a-1c9d9756125d","parentId":null,"position":[-3.0,3.0,0.0],"animations":[],"autoAnimate":false,"autoAnimateFrom":0,"autoAnimateTo":0,"autoAnimateLoop":false,"metadata":null},{"direction":[-0.866,-0.5,0.0],"type":1,"diffuse":[1.0,1.0,1.0],"specular":[1.0,1.0,1.0],"intensity":10.0,"range":3.40282347E+38,"exponent":0.0,"angle":0.0,"groundColor":null,"excludedMeshesIds":[],"includedOnlyMeshesIds":[],"lightmapMode":null,"falloffType":null,"name":"RightLight","id":"a9e01e6e-c997-4c6d-bdd2-ddddfe1a870a","parentId":null,"position":[9.0,3.0,0.0],"animations":[],"autoAnimate":false,"autoAnimateFrom":0,"autoAnimateTo":0,"autoAnimateLoop":false,"metadata":null}],"meshes":[{"materialId":"814decf0-a4ea-454e-a404-277528478ef5","isEnabled":true,"isVisible":true,"positions":[0.0,1.0,0.0,0.0,0.9808,0.1951,-0.0381,0.9808,0.1913,0.0,1.0,0.0,-0.0381,0.9808,0.1913,-0.0747,0.9808,0.1802,0.0,1.0,0.0,-0.0747,0.9808,0.1802,-0.1084,0.9808,0.1622,0.0,1.0,0.0,-0.1084,0.9808,0.1622,-0.1379,0.9808,0.1379,0.0,1.0,0.0,-0.1379,0.9808,0.1379,-0.1622,0.9808,0.1084,0.0,1.0,0.0,-0.1622,0.9808,0.1084,-0.1802,0.9808,0.0747,0.0,1.0,0.0,-0.1802,0.9808,0.0747,-0.1913,0.9808,0.0381,0.0,1.0,0.0,-0.1913,0.9808,0.0381,-0.1951,0.9808,0.0,0.0,1.0,0.0,-0.1951,0.9808,0.0,-0.1913,0.9808,-0.0381,0.0,1.0,0.0,-0.1913,0.9808,-0.0381,-0.1802,0.9808,-0.0747,0.0,1.0,0.0,-0.1802,0.9808,-0.0747,-0.1622,0.9808,-0.1084,0.0,1.0,0.0,-0.1622,0.9808,-0.1084,-0.1379,0.9808,-0.1379,0.0,1.0,0.0,-0.1379,0.9808,-0.1379,-0.1084,0.9808,-0.1622,0.0,1.0,0.0,-0.1084,0.9808,-0.1622,-0.0747,0.9808,-0.1802,0.0,1.0,0.0,-0.0747,0.9808,-0.1802,-0.0381,0.9808,-0.1913,0.0,1.0,0.0,-0.0381,0.9808,-0.1913,0.0,0.9808,-0.1951,0.0,1.0,0.0,0.0,0.9808,-0.1951,0.0381,0.9808,-0.1913,0.0,1.0,0.0,0.0381,0.9808,-0.1913,0.0747,0.9808,-0.1802,0.0,1.0,0.0,0.0747,0.9808,-0.1802,0.1084,0.9808,-0.1622,0.0,1.0,0.0,0.1084,0.9808,-0.1622,0.1379,0.9808,-0.1379,0.0,1.0,0.0,0.1379,0.9808,-0.1379,0.1622,0.9808,-0.1084,0.0,1.0,0.0,0.1622,0.9808,-0.1084,0.1802,0.9808,-0.0747,0.0,1.0,0.0,0.1802,0.9808,-0.0747,0.1913,0.9808,-0.0381,0.0,1.0,0.0,0.1913,0.9808,-0.0381,0.1951,0.9808,0.0,0.0,1.0,0.0,0.1951,0.9808,0.0,0.1913,0.9808,0.0381,0.0,1.0,0.0,0.1913,0.9808,0.0381,0.1802,0.9808,0.0747,0.0,1.0,0.0,0.1802,0.9808,0.0747,0.1622,0.9808,0.1084,0.0,1.0,0.0,0.1622,0.9808,0.1084,0.1379,0.9808,0.1379,0.0,1.0,0.0,0.1379,0.9808,0.1379,0.1084,0.9808,0.1622,0.0,1.0,0.0,0.1084,0.9808,0.1622,0.0747,0.9808,0.1802,0.0,1.0,0.0,0.0747,0.9808,0.1802,0.0381,0.9808,0.1913,0.0,1.0,0.0,0.0381,0.9808,0.1913,0.0,0.9808,0.1951,0.0,0.9808,0.1951,0.0,0.9239,0.3827,-0.0747,0.9239,0.3753,0.0,0.9808,0.1951,-0.0747,0.9239,0.3753,-0.0381,0.9808,0.1913,-0.0381,0.9808,0.1913,-0.0747,0.9239,0.3753,-0.1464,0.9239,0.3536,-0.0381,0.9808,0.1913,-0.1464,0.9239,0.3536,-0.0747,0.9808,0.1802,-0.0747,0.9808,0.1802,-0.1464,0.9239,0.3536,-0.2126,0.9239,0.3182,-0.0747,0.9808,0.1802,-0.2126,0.9239,0.3182,-0.1084,0.9808,0.1622,-0.1084,0.9808,0.1622,-0.2126,0.9239,0.3182,-0.2706,0.9239,0.2706,-0.1084,0.9808,0.1622,-0.2706,0.9239,0.2706,-0.1379,0.9808,0.1379,-0.1379,0.9808,0.1379,-0.2706,0.9239,0.2706,-0.3182,0.9239,0.2126,-0.1379,0.9808,0.1379,-0.3182,0.9239,0.2126,-0.1622,0.9808,0.1084,-0.1622,0.9808,0.1084,-0.3182,0.9239,0.2126,-0.3536,0.9239,0.1464,-0.1622,0.9808,0.1084,-0.3536,0.9239,0.1464,-0.1802,0.9808,0.0747,-0.1802,0.9808,0.0747,-0.3536,0.9239,0.1464,-0.3753,0.9239,0.0747,-0.1802,0.9808,0.0747,-0.3753,0.9239,0.0747,-0.1913,0.9808,0.0381,-0.1913,0.9808,0.0381,-0.3753,0.9239,0.0747,-0.3827,0.9239,0.0,-0.1913,0.9808,0.0381,-0.3827,0.9239,0.0,-0.1951,0.9808,0.0,-0.1951,0.9808,0.0,-0.3827,0.9239,0.0,-0.3753,0.9239,-0.0747,-0.1951,0.9808,0.0,-0.3753,0.9239,-0.0747,-0.1913,0.9808,-0.0381,-0.1913,0.9808,-0.0381,-0.3753,0.9239,-0.0747,-0.3536,0.9239,-0.1464,-0.1913,0.9808,-0.0381,-0.3536,0.9239,-0.1464,-0.1802,0.9808,-0.0747,-0.1802,0.9808,-0.0747,-0.3536,0.9239,-0.1464,-0.3182,0.9239,-0.2126,-0.1802,0.9808,-0.0747,-0.3182,0.9239,-0.2126,-0.1622,0.9808,-0.1084,-0.1622,0.9808,-0.1084,-0.3182,0.9239,-0.2126,-0.2706,0.9239,-0.2706,-0.1622,0.9808,-0.1084,-0.2706,0.9239,-0.2706,-0.1379,0.9808,-0.1379,-0.1379,0.9808,-0.1379,-0.2706,0.9239,-0.2706,-0.2126,0.9239,-0.3182,-0.1379,0.9808,-0.1379,-0.2126,0.9239,-0.3182,-0.1084,0.9808,-0.1622,-0.1084,0.9808,-0.1622,-0.2126,0.9239,-0.3182,-0.1464,0.9239,-0.3536,-0.1084,0.9808,-0.1622,-0.1464,0.9239,-0.3536,-0.0747,0.9808,-0.1802,-0.0747,0.9808,-0.1802,-0.1464,0.9239,-0.3536,-0.0747,0.9239,-0.3753,-0.0747,0.9808,-0.1802,-0.0747,0.9239,-0.3753,-0.0381,0.9808,-0.1913,-0.0381,0.9808,-0.1913,-0.0747,0.9239,-0.3753,0.0,0.9239,-0.3827,-0.0381,0.9808,-0.1913,0.0,0.9239,-0.3827,0.0,0.9808,-0.1951,0.0,0.9808,-0.1951,0.0,0.9239,-0.3827,0.0747,0.9239,-0.3753,0.0,0.9808,-0.1951,0.0747,0.9239,-0.3753,0.0381,0.9808,-0.1913,0.0381,0.9808,-0.1913,0.0747,0.9239,-0.3753,0.1464,0.9239,-0.3536,0.0381,0.9808,-0.1913,0.1464,0.9239,-0.3536,0.0747,0.9808,-0.1802,0.0747,0.9808,-0.1802,0.1464,0.9239,-0.3536,0.2126,0.9239,-0.3182,0.0747,0.9808,-0.1802,0.2126,0.9239,-0.3182,0.1084,0.9808,-0.1622,0.1084,0.9808,-0.1622,0.2126,0.9239,-0.3182,0.2706,0.9239,-0.2706,0.1084,0.9808,-0.1622,0.2706,0.9239,-0.2706,0.1379,0.9808,-0.1379,0.1379,0.9808,-0.1379,0.2706,0.9239,-0.2706,0.3182,0.9239,-0.2126,0.1379,0.9808,-0.1379,0.3182,0.9239,-0.2126,0.1622,0.9808,-0.1084,0.1622,0.9808,-0.1084,0.3182,0.9239,-0.2126,0.3536,0.9239,-0.1464,0.1622,0.9808,-0.1084,0.3536,0.9239,-0.1464,0.1802,0.9808,-0.0747,0.1802,0.9808,-0.0747,0.3536,0.9239,-0.1464,0.3753,0.9239,-0.0747,0.1802,0.9808,-0.0747,0.3753,0.9239,-0.0747,0.1913,0.9808,-0.0381,0.1913,0.9808,-0.0381,0.3753,0.9239,-0.0747,0.3827,0.9239,0.0,0.1913,0.9808,-0.0381,0.3827,0.9239,0.0,0.1951,0.9808,0.0,0.1951,0.9808,0.0,0.3827,0.9239,0.0,0.3753,0.9239,0.0747,0.1951,0.9808,0.0,0.3753,0.9239,0.0747,0.1913,0.9808,0.0381,0.1913,0.9808,0.0381,0.3753,0.9239,0.0747,0.3536,0.9239,0.1464,0.1913,0.9808,0.0381,0.3536,0.9239,0.1464,0.1802,0.9808,0.0747,0.1802,0.9808,0.0747,0.3536,0.9239,0.1464,0.3182,0.9239,0.2126,0.1802,0.9808,0.0747,0.3182,0.9239,0.2126,0.1622,0.9808,0.1084,0.1622,0.9808,0.1084,0.3182,0.9239,0.2126,0.2706,0.9239,0.2706,0.1622,0.9808,0.1084,0.2706,0.9239,0.2706,0.1379,0.9808,0.1379,0.1379,0.9808,0.1379,0.2706,0.9239,0.2706,0.2126,0.9239,0.3182,0.1379,0.9808,0.1379,0.2126,0.9239,0.3182,0.1084,0.9808,0.1622,0.1084,0.9808,0.1622,0.2126,0.9239,0.3182,0.1464,0.9239,0.3536,0.1084,0.9808,0.1622,0.1464,0.9239,0.3536,0.0747,0.9808,0.1802,0.0747,0.9808,0.1802,0.1464,0.9239,0.3536,0.0747,0.9239,0.3753,0.0747,0.9808,0.1802,0.0747,0.9239,0.3753,0.0381,0.9808,0.1913,0.0381,0.9808,0.1913,0.0747,0.9239,0.3753,0.0,0.9239,0.3827,0.0381,0.9808,0.1913,0.0,0.9239,0.3827,0.0,0.9808,0.1951,0.0,0.9239,0.3827,0.0,0.8315,0.5556,-0.1084,0.8315,0.5449,0.0,0.9239,0.3827,-0.1084,0.8315,0.5449,-0.0747,0.9239,0.3753,-0.0747,0.9239,0.3753,-0.1084,0.8315,0.5449,-0.2126,0.8315,0.5133,-0.0747,0.9239,0.3753,-0.2126,0.8315,0.5133,-0.1464,0.9239,0.3536,-0.1464,0.9239,0.3536,-0.2126,0.8315,0.5133,-0.3087,0.8315,0.4619,-0.1464,0.9239,0.3536,-0.3087,0.8315,0.4619,-0.2126,0.9239,0.3182,-0.2126,0.9239,0.3182,-0.3087,0.8315,0.4619,-0.3928,0.8315,0.3928,-0.2126,0.9239,0.3182,-0.3928,0.8315,0.3928,-0.2706,0.9239,0.2706,-0.2706,0.9239,0.2706,-0.3928,0.8315,0.3928,-0.4619,0.8315,0.3087,-0.2706,0.9239,0.2706,-0.4619,0.8315,0.3087,-0.3182,0.9239,0.2126,-0.3182,0.9239,0.2126,-0.4619,0.8315,0.3087,-0.5133,0.8315,0.2126,-0.3182,0.9239,0.2126,-0.5133,0.8315,0.2126,-0.3536,0.9239,0.1464,-0.3536,0.9239,0.1464,-0.5133,0.8315,0.2126,-0.5449,0.8315,0.1084,-0.3536,0.9239,0.1464,-0.5449,0.8315,0.1084,-0.3753,0.9239,0.0747,-0.3753,0.9239,0.0747,-0.5449,0.8315,0.1084,-0.5556,0.8315,0.0,-0.3753,0.9239,0.0747,-0.5556,0.8315,0.0,-0.3827,0.9239,0.0,-0.3827,0.9239,0.0,-0.5556,0.8315,0.0,-0.5449,0.8315,-0.1084,-0.3827,0.9239,0.0,-0.5449,0.8315,-0.1084,-0.3753,0.9239,-0.0747,-0.3753,0.9239,-0.0747,-0.5449,0.8315,-0.1084,-0.5133,0.8315,-0.2126,-0.3753,0.9239,-0.0747,-0.5133,0.8315,-0.2126,-0.3536,0.9239,-0.1464,-0.3536,0.9239,-0.1464,-0.5133,0.8315,-0.2126,-0.4619,0.8315,-0.3087,-0.3536,0.9239,-0.1464,-0.4619,0.8315,-0.3087,-0.3182,0.9239,-0.2126,-0.3182,0.9239,-0.2126,-0.4619,0.8315,-0.3087,-0.3928,0.8315,-0.3928,-0.3182,0.9239,-0.2126,-0.3928,0.8315,-0.3928,-0.2706,0.9239,-0.2706,-0.2706,0.9239,-0.2706,-0.3928,0.8315,-0.3928,-0.3087,0.8315,-0.4619,-0.2706,0.9239,-0.2706,-0.3087,0.8315,-0.4619,-0.2126,0.9239,-0.3182,-0.2126,0.9239,-0.3182,-0.3087,0.8315,-0.4619,-0.2126,0.8315,-0.5133,-0.2126,0.9239,-0.3182,-0.2126,0.8315,-0.5133,-0.1464,0.9239,-0.3536,-0.1464,0.9239,-0.3536,-0.2126,0.8315,-0.5133,-0.1084,0.8315,-0.5449,-0.1464,0.9239,-0.3536,-0.1084,0.8315,-0.5449,-0.0747,0.9239,-0.3753,-0.0747,0.9239,-0.3753,-0.1084,0.8315,-0.5449,0.0,0.8315,-0.5556,-0.0747,0.9239,-0.3753,0.0,0.8315,-0.5556,0.0,0.9239,-0.3827,0.0,0.9239,-0.3827,0.0,0.8315,-0.5556,0.1084,0.8315,-0.5449,0.0,0.9239,-0.3827,0.1084,0.8315,-0.5449,0.0747,0.9239,-0.3753,0.0747,0.9239,-0.3753,0.1084,0.8315,-0.5449,0.2126,0.8315,-0.5133,0.0747,0.9239,-0.3753,0.2126,0.8315,-0.5133,0.1464,0.9239,-0.3536,0.1464,0.9239,-0.3536,0.2126,0.8315,-0.5133,0.3087,0.8315,-0.4619,0.1464,0.9239,-0.3536,0.3087,0.8315,-0.4619,0.2126,0.9239,-0.3182,0.2126,0.9239,-0.3182,0.3087,0.8315,-0.4619,0.3928,0.8315,-0.3928,0.2126,0.9239,-0.3182,0.3928,0.8315,-0.3928,0.2706,0.9239,-0.2706,0.2706,0.9239,-0.2706,0.3928,0.8315,-0.3928,0.4619,0.8315,-0.3087,0.2706,0.9239,-0.2706,0.4619,0.8315,-0.3087,0.3182,0.9239,-0.2126,0.3182,0.9239,-0.2126,0.4619,0.8315,-0.3087,0.5133,0.8315,-0.2126,0.3182,0.9239,-0.2126,0.5133,0.8315,-0.2126,0.3536,0.9239,-0.1464,0.3536,0.9239,-0.1464,0.5133,0.8315,-0.2126,0.5449,0.8315,-0.1084,0.3536,0.9239,-0.1464,0.5449,0.8315,-0.1084,0.3753,0.9239,-0.0747,0.3753,0.9239,-0.0747,0.5449,0.8315,-0.1084,0.5556,0.8315,0.0,0.3753,0.9239,-0.0747,0.5556,0.8315,0.0,0.3827,0.9239,0.0,0.3827,0.9239,0.0,0.5556,0.8315,0.0,0.5449,0.8315,0.1084,0.3827,0.9239,0.0,0.5449,0.8315,0.1084,0.3753,0.9239,0.0747,0.3753,0.9239,0.0747,0.5449,0.8315,0.1084,0.5133,0.8315,0.2126,0.3753,0.9239,0.0747,0.5133,0.8315,0.2126,0.3536,0.9239,0.1464,0.3536,0.9239,0.1464,0.5133,0.8315,0.2126,0.4619,0.8315,0.3087,0.3536,0.9239,0.1464,0.4619,0.8315,0.3087,0.3182,0.9239,0.2126,0.3182,0.9239,0.2126,0.4619,0.8315,0.3087,0.3928,0.8315,0.3928,0.3182,0.9239,0.2126,0.3928,0.8315,0.3928,0.2706,0.9239,0.2706,0.2706,0.9239,0.2706,0.3928,0.8315,0.3928,0.3087,0.8315,0.4619,0.2706,0.9239,0.2706,0.3087,0.8315,0.4619,0.2126,0.9239,0.3182,0.2126,0.9239,0.3182,0.3087,0.8315,0.4619,0.2126,0.8315,0.5133,0.2126,0.9239,0.3182,0.2126,0.8315,0.5133,0.1464,0.9239,0.3536,0.1464,0.9239,0.3536,0.2126,0.8315,0.5133,0.1084,0.8315,0.5449,0.1464,0.9239,0.3536,0.1084,0.8315,0.5449,0.0747,0.9239,0.3753,0.0747,0.9239,0.3753,0.1084,0.8315,0.5449,0.0,0.8315,0.5556,0.0747,0.9239,0.3753,0.0,0.8315,0.5556,0.0,0.9239,0.3827,0.0,0.8315,0.5556,0.0,0.7071,0.7071,-0.1379,0.7071,0.6935,0.0,0.8315,0.5556,-0.1379,0.7071,0.6935,-0.1084,0.8315,0.5449,-0.1084,0.8315,0.5449,-0.1379,0.7071,0.6935,-0.2706,0.7071,0.6533,-0.1084,0.8315,0.5449,-0.2706,0.7071,0.6533,-0.2126,0.8315,0.5133,-0.2126,0.8315,0.5133,-0.2706,0.7071,0.6533,-0.3928,0.7071,0.5879,-0.2126,0.8315,0.5133,-0.3928,0.7071,0.5879,-0.3087,0.8315,0.4619,-0.3087,0.8315,0.4619,-0.3928,0.7071,0.5879,-0.5,0.7071,0.5,-0.3087,0.8315,0.4619,-0.5,0.7071,0.5,-0.3928,0.8315,0.3928,-0.3928,0.8315,0.3928,-0.5,0.7071,0.5,-0.5879,0.7071,0.3928,-0.3928,0.8315,0.3928,-0.5879,0.7071,0.3928,-0.4619,0.8315,0.3087,-0.4619,0.8315,0.3087,-0.5879,0.7071,0.3928,-0.6533,0.7071,0.2706,-0.4619,0.8315,0.3087,-0.6533,0.7071,0.2706,-0.5133,0.8315,0.2126,-0.5133,0.8315,0.2126,-0.6533,0.7071,0.2706,-0.6935,0.7071,0.1379,-0.5133,0.8315,0.2126,-0.6935,0.7071,0.1379,-0.5449,0.8315,0.1084,-0.5449,0.8315,0.1084,-0.6935,0.7071,0.1379,-0.7071,0.7071,0.0,-0.5449,0.8315,0.1084,-0.7071,0.7071,0.0,-0.5556,0.8315,0.0,-0.5556,0.8315,0.0,-0.7071,0.7071,0.0,-0.6935,0.7071,-0.1379,-0.5556,0.8315,0.0,-0.6935,0.7071,-0.1379,-0.5449,0.8315,-0.1084,-0.5449,0.8315,-0.1084,-0.6935,0.7071,-0.1379,-0.6533,0.7071,-0.2706,-0.5449,0.8315,-0.1084,-0.6533,0.7071,-0.2706,-0.5133,0.8315,-0.2126,-0.5133,0.8315,-0.2126,-0.6533,0.7071,-0.2706,-0.5879,0.7071,-0.3928,-0.5133,0.8315,-0.2126,-0.5879,0.7071,-0.3928,-0.4619,0.8315,-0.3087,-0.4619,0.8315,-0.3087,-0.5879,0.7071,-0.3928,-0.5,0.7071,-0.5,-0.4619,0.8315,-0.3087,-0.5,0.7071,-0.5,-0.3928,0.8315,-0.3928,-0.3928,0.8315,-0.3928,-0.5,0.7071,-0.5,-0.3928,0.7071,-0.5879,-0.3928,0.8315,-0.3928,-0.3928,0.7071,-0.5879,-0.3087,0.8315,-0.4619,-0.3087,0.8315,-0.4619,-0.3928,0.7071,-0.5879,-0.2706,0.7071,-0.6533,-0.3087,0.8315,-0.4619,-0.2706,0.7071,-0.6533,-0.2126,0.8315,-0.5133,-0.2126,0.8315,-0.5133,-0.2706,0.7071,-0.6533,-0.1379,0.7071,-0.6935,-0.2126,0.8315,-0.5133,-0.1379,0.7071,-0.6935,-0.1084,0.8315,-0.5449,-0.1084,0.8315,-0.5449,-0.1379,0.7071,-0.6935,0.0,0.7071,-0.7071,-0.1084,0.8315,-0.5449,0.0,0.7071,-0.7071,0.0,0.8315,-0.5556,0.0,0.8315,-0.5556,0.0,0.7071,-0.7071,0.138,0.7071,-0.6935,0.0,0.8315,-0.5556,0.138,0.7071,-0.6935,0.1084,0.8315,-0.5449,0.1084,0.8315,-0.5449,0.138,0.7071,-0.6935,0.2706,0.7071,-0.6533,0.1084,0.8315,-0.5449,0.2706,0.7071,-0.6533,0.2126,0.8315,-0.5133,0.2126,0.8315,-0.5133,0.2706,0.7071,-0.6533,0.3928,0.7071,-0.5879,0.2126,0.8315,-0.5133,0.3928,0.7071,-0.5879,0.3087,0.8315,-0.4619,0.3087,0.8315,-0.4619,0.3928,0.7071,-0.5879,0.5,0.7071,-0.5,0.3087,0.8315,-0.4619,0.5,0.7071,-0.5,0.3928,0.8315,-0.3928,0.3928,0.8315,-0.3928,0.5,0.7071,-0.5,0.5879,0.7071,-0.3928,0.3928,0.8315,-0.3928,0.5879,0.7071,-0.3928,0.4619,0.8315,-0.3087,0.4619,0.8315,-0.3087,0.5879,0.7071,-0.3928,0.6533,0.7071,-0.2706,0.4619,0.8315,-0.3087,0.6533,0.7071,-0.2706,0.5133,0.8315,-0.2126,0.5133,0.8315,-0.2126,0.6533,0.7071,-0.2706,0.6935,0.7071,-0.1379,0.5133,0.8315,-0.2126,0.6935,0.7071,-0.1379,0.5449,0.8315,-0.1084,0.5449,0.8315,-0.1084,0.6935,0.7071,-0.1379,0.7071,0.7071,0.0,0.5449,0.8315,-0.1084,0.7071,0.7071,0.0,0.5556,0.8315,0.0,0.5556,0.8315,0.0,0.7071,0.7071,0.0,0.6935,0.7071,0.138,0.5556,0.8315,0.0,0.6935,0.7071,0.138,0.5449,0.8315,0.1084,0.5449,0.8315,0.1084,0.6935,0.7071,0.138,0.6533,0.7071,0.2706,0.5449,0.8315,0.1084,0.6533,0.7071,0.2706,0.5133,0.8315,0.2126,0.5133,0.8315,0.2126,0.6533,0.7071,0.2706,0.5879,0.7071,0.3928,0.5133,0.8315,0.2126,0.5879,0.7071,0.3928,0.4619,0.8315,0.3087,0.4619,0.8315,0.3087,0.5879,0.7071,0.3928,0.5,0.7071,0.5,0.4619,0.8315,0.3087,0.5,0.7071,0.5,0.3928,0.8315,0.3928,0.3928,0.8315,0.3928,0.5,0.7071,0.5,0.3928,0.7071,0.5879,0.3928,0.8315,0.3928,0.3928,0.7071,0.5879,0.3087,0.8315,0.4619,0.3087,0.8315,0.4619,0.3928,0.7071,0.5879,0.2706,0.7071,0.6533,0.3087,0.8315,0.4619,0.2706,0.7071,0.6533,0.2126,0.8315,0.5133,0.2126,0.8315,0.5133,0.2706,0.7071,0.6533,0.1379,0.7071,0.6935,0.2126,0.8315,0.5133,0.1379,0.7071,0.6935,0.1084,0.8315,0.5449,0.1084,0.8315,0.5449,0.1379,0.7071,0.6935,0.0,0.7071,0.7071,0.1084,0.8315,0.5449,0.0,0.7071,0.7071,0.0,0.8315,0.5556,0.0,0.7071,0.7071,0.0,0.5556,0.8315,-0.1622,0.5556,0.8155,0.0,0.7071,0.7071,-0.1622,0.5556,0.8155,-0.1379,0.7071,0.6935,-0.1379,0.7071,0.6935,-0.1622,0.5556,0.8155,-0.3182,0.5556,0.7682,-0.1379,0.7071,0.6935,-0.3182,0.5556,0.7682,-0.2706,0.7071,0.6533,-0.2706,0.7071,0.6533,-0.3182,0.5556,0.7682,-0.4619,0.5556,0.6913,-0.2706,0.7071,0.6533,-0.4619,0.5556,0.6913,-0.3928,0.7071,0.5879,-0.3928,0.7071,0.5879,-0.4619,0.5556,0.6913,-0.5879,0.5556,0.5879,-0.3928,0.7071,0.5879,-0.5879,0.5556,0.5879,-0.5,0.7071,0.5,-0.5,0.7071,0.5,-0.5879,0.5556,0.5879,-0.6913,0.5556,0.4619,-0.5,0.7071,0.5,-0.6913,0.5556,0.4619,-0.5879,0.7071,0.3928,-0.5879,0.7071,0.3928,-0.6913,0.5556,0.4619,-0.7682,0.5556,0.3182,-0.5879,0.7071,0.3928,-0.7682,0.5556,0.3182,-0.6533,0.7071,0.2706,-0.6533,0.7071,0.2706,-0.7682,0.5556,0.3182,-0.8155,0.5556,0.1622,-0.6533,0.7071,0.2706,-0.8155,0.5556,0.1622,-0.6935,0.7071,0.1379,-0.6935,0.7071,0.1379,-0.8155,0.5556,0.1622,-0.8315,0.5556,0.0,-0.6935,0.7071,0.1379,-0.8315,0.5556,0.0,-0.7071,0.7071,0.0,-0.7071,0.7071,0.0,-0.8315,0.5556,0.0,-0.8155,0.5556,-0.1622,-0.7071,0.7071,0.0,-0.8155,0.5556,-0.1622,-0.6935,0.7071,-0.1379,-0.6935,0.7071,-0.1379,-0.8155,0.5556,-0.1622,-0.7682,0.5556,-0.3182,-0.6935,0.7071,-0.1379,-0.7682,0.5556,-0.3182,-0.6533,0.7071,-0.2706,-0.6533,0.7071,-0.2706,-0.7682,0.5556,-0.3182,-0.6913,0.5556,-0.4619,-0.6533,0.7071,-0.2706,-0.6913,0.5556,-0.4619,-0.5879,0.7071,-0.3928,-0.5879,0.7071,-0.3928,-0.6913,0.5556,-0.4619,-0.5879,0.5556,-0.5879,-0.5879,0.7071,-0.3928,-0.5879,0.5556,-0.5879,-0.5,0.7071,-0.5,-0.5,0.7071,-0.5,-0.5879,0.5556,-0.5879,-0.4619,0.5556,-0.6913,-0.5,0.7071,-0.5,-0.4619,0.5556,-0.6913,-0.3928,0.7071,-0.5879,-0.3928,0.7071,-0.5879,-0.4619,0.5556,-0.6913,-0.3182,0.5556,-0.7682,-0.3928,0.7071,-0.5879,-0.3182,0.5556,-0.7682,-0.2706,0.7071,-0.6533,-0.2706,0.7071,-0.6533,-0.3182,0.5556,-0.7682,-0.1622,0.5556,-0.8155,-0.2706,0.7071,-0.6533,-0.1622,0.5556,-0.8155,-0.1379,0.7071,-0.6935,-0.1379,0.7071,-0.6935,-0.1622,0.5556,-0.8155,0.0,0.5556,-0.8315,-0.1379,0.7071,-0.6935,0.0,0.5556,-0.8315,0.0,0.7071,-0.7071,0.0,0.7071,-0.7071,0.0,0.5556,-0.8315,0.1622,0.5556,-0.8155,0.0,0.7071,-0.7071,0.1622,0.5556,-0.8155,0.138,0.7071,-0.6935,0.138,0.7071,-0.6935,0.1622,0.5556,-0.8155,0.3182,0.5556,-0.7682,0.138,0.7071,-0.6935,0.3182,0.5556,-0.7682,0.2706,0.7071,-0.6533,0.2706,0.7071,-0.6533,0.3182,0.5556,-0.7682,0.4619,0.5556,-0.6913,0.2706,0.7071,-0.6533,0.4619,0.5556,-0.6913,0.3928,0.7071,-0.5879,0.3928,0.7071,-0.5879,0.4619,0.5556,-0.6913,0.5879,0.5556,-0.5879,0.3928,0.7071,-0.5879,0.5879,0.5556,-0.5879,0.5,0.7071,-0.5,0.5,0.7071,-0.5,0.5879,0.5556,-0.5879,0.6913,0.5556,-0.4619,0.5,0.7071,-0.5,0.6913,0.5556,-0.4619,0.5879,0.7071,-0.3928,0.5879,0.7071,-0.3928,0.6913,0.5556,-0.4619,0.7682,0.5556,-0.3182,0.5879,0.7071,-0.3928,0.7682,0.5556,-0.3182,0.6533,0.7071,-0.2706,0.6533,0.7071,-0.2706,0.7682,0.5556,-0.3182,0.8155,0.5556,-0.1622,0.6533,0.7071,-0.2706,0.8155,0.5556,-0.1622,0.6935,0.7071,-0.1379,0.6935,0.7071,-0.1379,0.8155,0.5556,-0.1622,0.8315,0.5556,0.0,0.6935,0.7071,-0.1379,0.8315,0.5556,0.0,0.7071,0.7071,0.0,0.7071,0.7071,0.0,0.8315,0.5556,0.0,0.8155,0.5556,0.1622,0.7071,0.7071,0.0,0.8155,0.5556,0.1622,0.6935,0.7071,0.138,0.6935,0.7071,0.138,0.8155,0.5556,0.1622,0.7682,0.5556,0.3182,0.6935,0.7071,0.138,0.7682,0.5556,0.3182,0.6533,0.7071,0.2706,0.6533,0.7071,0.2706,0.7682,0.5556,0.3182,0.6913,0.5556,0.4619,0.6533,0.7071,0.2706,0.6913,0.5556,0.4619,0.5879,0.7071,0.3928,0.5879,0.7071,0.3928,0.6913,0.5556,0.4619,0.5879,0.5556,0.5879,0.5879,0.7071,0.3928,0.5879,0.5556,0.5879,0.5,0.7071,0.5,0.5,0.7071,0.5,0.5879,0.5556,0.5879,0.4619,0.5556,0.6913,0.5,0.7071,0.5,0.4619,0.5556,0.6913,0.3928,0.7071,0.5879,0.3928,0.7071,0.5879,0.4619,0.5556,0.6913,0.3182,0.5556,0.7682,0.3928,0.7071,0.5879,0.3182,0.5556,0.7682,0.2706,0.7071,0.6533,0.2706,0.7071,0.6533,0.3182,0.5556,0.7682,0.1622,0.5556,0.8155,0.2706,0.7071,0.6533,0.1622,0.5556,0.8155,0.1379,0.7071,0.6935,0.1379,0.7071,0.6935,0.1622,0.5556,0.8155,0.0,0.5556,0.8315,0.1379,0.7071,0.6935,0.0,0.5556,0.8315,0.0,0.7071,0.7071,0.0,0.5556,0.8315,0.0,0.3827,0.9239,-0.1802,0.3827,0.9061,0.0,0.5556,0.8315,-0.1802,0.3827,0.9061,-0.1622,0.5556,0.8155,-0.1622,0.5556,0.8155,-0.1802,0.3827,0.9061,-0.3536,0.3827,0.8536,-0.1622,0.5556,0.8155,-0.3536,0.3827,0.8536,-0.3182,0.5556,0.7682,-0.3182,0.5556,0.7682,-0.3536,0.3827,0.8536,-0.5133,0.3827,0.7682,-0.3182,0.5556,0.7682,-0.5133,0.3827,0.7682,-0.4619,0.5556,0.6913,-0.4619,0.5556,0.6913,-0.5133,0.3827,0.7682,-0.6533,0.3827,0.6533,-0.4619,0.5556,0.6913,-0.6533,0.3827,0.6533,-0.5879,0.5556,0.5879,-0.5879,0.5556,0.5879,-0.6533,0.3827,0.6533,-0.7682,0.3827,0.5133,-0.5879,0.5556,0.5879,-0.7682,0.3827,0.5133,-0.6913,0.5556,0.4619,-0.6913,0.5556,0.4619,-0.7682,0.3827,0.5133,-0.8536,0.3827,0.3536,-0.6913,0.5556,0.4619,-0.8536,0.3827,0.3536,-0.7682,0.5556,0.3182,-0.7682,0.5556,0.3182,-0.8536,0.3827,0.3536,-0.9061,0.3827,0.1802,-0.7682,0.5556,0.3182,-0.9061,0.3827,0.1802,-0.8155,0.5556,0.1622,-0.8155,0.5556,0.1622,-0.9061,0.3827,0.1802,-0.9239,0.3827,0.0,-0.8155,0.5556,0.1622,-0.9239,0.3827,0.0,-0.8315,0.5556,0.0,-0.8315,0.5556,0.0,-0.9239,0.3827,0.0,-0.9061,0.3827,-0.1802,-0.8315,0.5556,0.0,-0.9061,0.3827,-0.1802,-0.8155,0.5556,-0.1622,-0.8155,0.5556,-0.1622,-0.9061,0.3827,-0.1802,-0.8536,0.3827,-0.3536,-0.8155,0.5556,-0.1622,-0.8536,0.3827,-0.3536,-0.7682,0.5556,-0.3182,-0.7682,0.5556,-0.3182,-0.8536,0.3827,-0.3536,-0.7682,0.3827,-0.5133,-0.7682,0.5556,-0.3182,-0.7682,0.3827,-0.5133,-0.6913,0.5556,-0.4619,-0.6913,0.5556,-0.4619,-0.7682,0.3827,-0.5133,-0.6533,0.3827,-0.6533,-0.6913,0.5556,-0.4619,-0.6533,0.3827,-0.6533,-0.5879,0.5556,-0.5879,-0.5879,0.5556,-0.5879,-0.6533,0.3827,-0.6533,-0.5133,0.3827,-0.7682,-0.5879,0.5556,-0.5879,-0.5133,0.3827,-0.7682,-0.4619,0.5556,-0.6913,-0.4619,0.5556,-0.6913,-0.5133,0.3827,-0.7682,-0.3536,0.3827,-0.8536,-0.4619,0.5556,-0.6913,-0.3536,0.3827,-0.8536,-0.3182,0.5556,-0.7682,-0.3182,0.5556,-0.7682,-0.3536,0.3827,-0.8536,-0.1802,0.3827,-0.9061,-0.3182,0.5556,-0.7682,-0.1802,0.3827,-0.9061,-0.1622,0.5556,-0.8155,-0.1622,0.5556,-0.8155,-0.1802,0.3827,-0.9061,0.0,0.3827,-0.9239,-0.1622,0.5556,-0.8155,0.0,0.3827,-0.9239,0.0,0.5556,-0.8315,0.0,0.5556,-0.8315,0.0,0.3827,-0.9239,0.1802,0.3827,-0.9061,0.0,0.5556,-0.8315,0.1802,0.3827,-0.9061,0.1622,0.5556,-0.8155,0.1622,0.5556,-0.8155,0.1802,0.3827,-0.9061,0.3536,0.3827,-0.8536,0.1622,0.5556,-0.8155,0.3536,0.3827,-0.8536,0.3182,0.5556,-0.7682,0.3182,0.5556,-0.7682,0.3536,0.3827,-0.8536,0.5133,0.3827,-0.7682,0.3182,0.5556,-0.7682,0.5133,0.3827,-0.7682,0.4619,0.5556,-0.6913,0.4619,0.5556,-0.6913,0.5133,0.3827,-0.7682,0.6533,0.3827,-0.6533,0.4619,0.5556,-0.6913,0.6533,0.3827,-0.6533,0.5879,0.5556,-0.5879,0.5879,0.5556,-0.5879,0.6533,0.3827,-0.6533,0.7682,0.3827,-0.5133,0.5879,0.5556,-0.5879,0.7682,0.3827,-0.5133,0.6913,0.5556,-0.4619,0.6913,0.5556,-0.4619,0.7682,0.3827,-0.5133,0.8536,0.3827,-0.3536,0.6913,0.5556,-0.4619,0.8536,0.3827,-0.3536,0.7682,0.5556,-0.3182,0.7682,0.5556,-0.3182,0.8536,0.3827,-0.3536,0.9061,0.3827,-0.1802,0.7682,0.5556,-0.3182,0.9061,0.3827,-0.1802,0.8155,0.5556,-0.1622,0.8155,0.5556,-0.1622,0.9061,0.3827,-0.1802,0.9239,0.3827,0.0,0.8155,0.5556,-0.1622,0.9239,0.3827,0.0,0.8315,0.5556,0.0,0.8315,0.5556,0.0,0.9239,0.3827,0.0,0.9061,0.3827,0.1802,0.8315,0.5556,0.0,0.9061,0.3827,0.1802,0.8155,0.5556,0.1622,0.8155,0.5556,0.1622,0.9061,0.3827,0.1802,0.8536,0.3827,0.3536,0.8155,0.5556,0.1622,0.8536,0.3827,0.3536,0.7682,0.5556,0.3182,0.7682,0.5556,0.3182,0.8536,0.3827,0.3536,0.7682,0.3827,0.5133,0.7682,0.5556,0.3182,0.7682,0.3827,0.5133,0.6913,0.5556,0.4619,0.6913,0.5556,0.4619,0.7682,0.3827,0.5133,0.6533,0.3827,0.6533,0.6913,0.5556,0.4619,0.6533,0.3827,0.6533,0.5879,0.5556,0.5879,0.5879,0.5556,0.5879,0.6533,0.3827,0.6533,0.5133,0.3827,0.7682,0.5879,0.5556,0.5879,0.5133,0.3827,0.7682,0.4619,0.5556,0.6913,0.4619,0.5556,0.6913,0.5133,0.3827,0.7682,0.3536,0.3827,0.8536,0.4619,0.5556,0.6913,0.3536,0.3827,0.8536,0.3182,0.5556,0.7682,0.3182,0.5556,0.7682,0.3536,0.3827,0.8536,0.1802,0.3827,0.9061,0.3182,0.5556,0.7682,0.1802,0.3827,0.9061,0.1622,0.5556,0.8155,0.1622,0.5556,0.8155,0.1802,0.3827,0.9061,0.0,0.3827,0.9239,0.1622,0.5556,0.8155,0.0,0.3827,0.9239,0.0,0.5556,0.8315,0.0,0.3827,0.9239,0.0,0.1951,0.9808,-0.1913,0.1951,0.9619,0.0,0.3827,0.9239,-0.1913,0.1951,0.9619,-0.1802,0.3827,0.9061,-0.1802,0.3827,0.9061,-0.1913,0.1951,0.9619,-0.3753,0.1951,0.9061,-0.1802,0.3827,0.9061,-0.3753,0.1951,0.9061,-0.3536,0.3827,0.8536,-0.3536,0.3827,0.8536,-0.3753,0.1951,0.9061,-0.5449,0.1951,0.8155,-0.3536,0.3827,0.8536,-0.5449,0.1951,0.8155,-0.5133,0.3827,0.7682,-0.5133,0.3827,0.7682,-0.5449,0.1951,0.8155,-0.6935,0.1951,0.6935,-0.5133,0.3827,0.7682,-0.6935,0.1951,0.6935,-0.6533,0.3827,0.6533,-0.6533,0.3827,0.6533,-0.6935,0.1951,0.6935,-0.8155,0.1951,0.5449,-0.6533,0.3827,0.6533,-0.8155,0.1951,0.5449,-0.7682,0.3827,0.5133,-0.7682,0.3827,0.5133,-0.8155,0.1951,0.5449,-0.9061,0.1951,0.3753,-0.7682,0.3827,0.5133,-0.9061,0.1951,0.3753,-0.8536,0.3827,0.3536,-0.8536,0.3827,0.3536,-0.9061,0.1951,0.3753,-0.9619,0.1951,0.1913,-0.8536,0.3827,0.3536,-0.9619,0.1951,0.1913,-0.9061,0.3827,0.1802,-0.9061,0.3827,0.1802,-0.9619,0.1951,0.1913,-0.9808,0.1951,0.0,-0.9061,0.3827,0.1802,-0.9808,0.1951,0.0,-0.9239,0.3827,0.0,-0.9239,0.3827,0.0,-0.9808,0.1951,0.0,-0.9619,0.1951,-0.1913,-0.9239,0.3827,0.0,-0.9619,0.1951,-0.1913,-0.9061,0.3827,-0.1802,-0.9061,0.3827,-0.1802,-0.9619,0.1951,-0.1913,-0.9061,0.1951,-0.3753,-0.9061,0.3827,-0.1802,-0.9061,0.1951,-0.3753,-0.8536,0.3827,-0.3536,-0.8536,0.3827,-0.3536,-0.9061,0.1951,-0.3753,-0.8155,0.1951,-0.5449,-0.8536,0.3827,-0.3536,-0.8155,0.1951,-0.5449,-0.7682,0.3827,-0.5133,-0.7682,0.3827,-0.5133,-0.8155,0.1951,-0.5449,-0.6935,0.1951,-0.6935,-0.7682,0.3827,-0.5133,-0.6935,0.1951,-0.6935,-0.6533,0.3827,-0.6533,-0.6533,0.3827,-0.6533,-0.6935,0.1951,-0.6935,-0.5449,0.1951,-0.8155,-0.6533,0.3827,-0.6533,-0.5449,0.1951,-0.8155,-0.5133,0.3827,-0.7682,-0.5133,0.3827,-0.7682,-0.5449,0.1951,-0.8155,-0.3753,0.1951,-0.9061,-0.5133,0.3827,-0.7682,-0.3753,0.1951,-0.9061,-0.3536,0.3827,-0.8536,-0.3536,0.3827,-0.8536,-0.3753,0.1951,-0.9061,-0.1913,0.1951,-0.9619,-0.3536,0.3827,-0.8536,-0.1913,0.1951,-0.9619,-0.1802,0.3827,-0.9061,-0.1802,0.3827,-0.9061,-0.1913,0.1951,-0.9619,0.0,0.1951,-0.9808,-0.1802,0.3827,-0.9061,0.0,0.1951,-0.9808,0.0,0.3827,-0.9239,0.0,0.3827,-0.9239,0.0,0.1951,-0.9808,0.1913,0.1951,-0.9619,0.0,0.3827,-0.9239,0.1913,0.1951,-0.9619,0.1802,0.3827,-0.9061,0.1802,0.3827,-0.9061,0.1913,0.1951,-0.9619,0.3753,0.1951,-0.9061,0.1802,0.3827,-0.9061,0.3753,0.1951,-0.9061,0.3536,0.3827,-0.8536,0.3536,0.3827,-0.8536,0.3753,0.1951,-0.9061,0.5449,0.1951,-0.8155,0.3536,0.3827,-0.8536,0.5449,0.1951,-0.8155,0.5133,0.3827,-0.7682,0.5133,0.3827,-0.7682,0.5449,0.1951,-0.8155,0.6935,0.1951,-0.6935,0.5133,0.3827,-0.7682,0.6935,0.1951,-0.6935,0.6533,0.3827,-0.6533,0.6533,0.3827,-0.6533,0.6935,0.1951,-0.6935,0.8155,0.1951,-0.5449,0.6533,0.3827,-0.6533,0.8155,0.1951,-0.5449,0.7682,0.3827,-0.5133,0.7682,0.3827,-0.5133,0.8155,0.1951,-0.5449,0.9061,0.1951,-0.3753,0.7682,0.3827,-0.5133,0.9061,0.1951,-0.3753,0.8536,0.3827,-0.3536,0.8536,0.3827,-0.3536,0.9061,0.1951,-0.3753,0.9619,0.1951,-0.1913,0.8536,0.3827,-0.3536,0.9619,0.1951,-0.1913,0.9061,0.3827,-0.1802,0.9061,0.3827,-0.1802,0.9619,0.1951,-0.1913,0.9808,0.1951,0.0,0.9061,0.3827,-0.1802,0.9808,0.1951,0.0,0.9239,0.3827,0.0,0.9239,0.3827,0.0,0.9808,0.1951,0.0,0.9619,0.1951,0.1913,0.9239,0.3827,0.0,0.9619,0.1951,0.1913,0.9061,0.3827,0.1802,0.9061,0.3827,0.1802,0.9619,0.1951,0.1913,0.9061,0.1951,0.3753,0.9061,0.3827,0.1802,0.9061,0.1951,0.3753,0.8536,0.3827,0.3536,0.8536,0.3827,0.3536,0.9061,0.1951,0.3753,0.8155,0.1951,0.5449,0.8536,0.3827,0.3536,0.8155,0.1951,0.5449,0.7682,0.3827,0.5133,0.7682,0.3827,0.5133,0.8155,0.1951,0.5449,0.6935,0.1951,0.6935,0.7682,0.3827,0.5133,0.6935,0.1951,0.6935,0.6533,0.3827,0.6533,0.6533,0.3827,0.6533,0.6935,0.1951,0.6935,0.5449,0.1951,0.8155,0.6533,0.3827,0.6533,0.5449,0.1951,0.8155,0.5133,0.3827,0.7682,0.5133,0.3827,0.7682,0.5449,0.1951,0.8155,0.3753,0.1951,0.9061,0.5133,0.3827,0.7682,0.3753,0.1951,0.9061,0.3536,0.3827,0.8536,0.3536,0.3827,0.8536,0.3753,0.1951,0.9061,0.1913,0.1951,0.9619,0.3536,0.3827,0.8536,0.1913,0.1951,0.9619,0.1802,0.3827,0.9061,0.1802,0.3827,0.9061,0.1913,0.1951,0.9619,0.0,0.1951,0.9808,0.1802,0.3827,0.9061,0.0,0.1951,0.9808,0.0,0.3827,0.9239,0.0,0.1951,0.9808,0.0,0.0,1.0,-0.1951,0.0,0.9808,0.0,0.1951,0.9808,-0.1951,0.0,0.9808,-0.1913,0.1951,0.9619,-0.1913,0.1951,0.9619,-0.1951,0.0,0.9808,-0.3827,0.0,0.9239,-0.1913,0.1951,0.9619,-0.3827,0.0,0.9239,-0.3753,0.1951,0.9061,-0.3753,0.1951,0.9061,-0.3827,0.0,0.9239,-0.5556,0.0,0.8315,-0.3753,0.1951,0.9061,-0.5556,0.0,0.8315,-0.5449,0.1951,0.8155,-0.5449,0.1951,0.8155,-0.5556,0.0,0.8315,-0.7071,0.0,0.7071,-0.5449,0.1951,0.8155,-0.7071,0.0,0.7071,-0.6935,0.1951,0.6935,-0.6935,0.1951,0.6935,-0.7071,0.0,0.7071,-0.8315,0.0,0.5556,-0.6935,0.1951,0.6935,-0.8315,0.0,0.5556,-0.8155,0.1951,0.5449,-0.8155,0.1951,0.5449,-0.8315,0.0,0.5556,-0.9239,0.0,0.3827,-0.8155,0.1951,0.5449,-0.9239,0.0,0.3827,-0.9061,0.1951,0.3753,-0.9061,0.1951,0.3753,-0.9239,0.0,0.3827,-0.9808,0.0,0.1951,-0.9061,0.1951,0.3753,-0.9808,0.0,0.1951,-0.9619,0.1951,0.1913,-0.9619,0.1951,0.1913,-0.9808,0.0,0.1951,-1.0,0.0,0.0,-0.9619,0.1951,0.1913,-1.0,0.0,0.0,-0.9808,0.1951,0.0,-0.9808,0.1951,0.0,-1.0,0.0,0.0,-0.9808,0.0,-0.1951,-0.9808,0.1951,0.0,-0.9808,0.0,-0.1951,-0.9619,0.1951,-0.1913,-0.9619,0.1951,-0.1913,-0.9808,0.0,-0.1951,-0.9239,0.0,-0.3827,-0.9619,0.1951,-0.1913,-0.9239,0.0,-0.3827,-0.9061,0.1951,-0.3753,-0.9061,0.1951,-0.3753,-0.9239,0.0,-0.3827,-0.8315,0.0,-0.5556,-0.9061,0.1951,-0.3753,-0.8315,0.0,-0.5556,-0.8155,0.1951,-0.5449,-0.8155,0.1951,-0.5449,-0.8315,0.0,-0.5556,-0.7071,0.0,-0.7071,-0.8155,0.1951,-0.5449,-0.7071,0.0,-0.7071,-0.6935,0.1951,-0.6935,-0.6935,0.1951,-0.6935,-0.7071,0.0,-0.7071,-0.5556,0.0,-0.8315,-0.6935,0.1951,-0.6935,-0.5556,0.0,-0.8315,-0.5449,0.1951,-0.8155,-0.5449,0.1951,-0.8155,-0.5556,0.0,-0.8315,-0.3827,0.0,-0.9239,-0.5449,0.1951,-0.8155,-0.3827,0.0,-0.9239,-0.3753,0.1951,-0.9061,-0.3753,0.1951,-0.9061,-0.3827,0.0,-0.9239,-0.1951,0.0,-0.9808,-0.3753,0.1951,-0.9061,-0.1951,0.0,-0.9808,-0.1913,0.1951,-0.9619,-0.1913,0.1951,-0.9619,-0.1951,0.0,-0.9808,0.0,0.0,-1.0,-0.1913,0.1951,-0.9619,0.0,0.0,-1.0,0.0,0.1951,-0.9808,0.0,0.1951,-0.9808,0.0,0.0,-1.0,0.1951,0.0,-0.9808,0.0,0.1951,-0.9808,0.1951,0.0,-0.9808,0.1913,0.1951,-0.9619,0.1913,0.1951,-0.9619,0.1951,0.0,-0.9808,0.3827,0.0,-0.9239,0.1913,0.1951,-0.9619,0.3827,0.0,-0.9239,0.3753,0.1951,-0.9061,0.3753,0.1951,-0.9061,0.3827,0.0,-0.9239,0.5556,0.0,-0.8315,0.3753,0.1951,-0.9061,0.5556,0.0,-0.8315,0.5449,0.1951,-0.8155,0.5449,0.1951,-0.8155,0.5556,0.0,-0.8315,0.7071,0.0,-0.7071,0.5449,0.1951,-0.8155,0.7071,0.0,-0.7071,0.6935,0.1951,-0.6935,0.6935,0.1951,-0.6935,0.7071,0.0,-0.7071,0.8315,0.0,-0.5556,0.6935,0.1951,-0.6935,0.8315,0.0,-0.5556,0.8155,0.1951,-0.5449,0.8155,0.1951,-0.5449,0.8315,0.0,-0.5556,0.9239,0.0,-0.3827,0.8155,0.1951,-0.5449,0.9239,0.0,-0.3827,0.9061,0.1951,-0.3753,0.9061,0.1951,-0.3753,0.9239,0.0,-0.3827,0.9808,0.0,-0.1951,0.9061,0.1951,-0.3753,0.9808,0.0,-0.1951,0.9619,0.1951,-0.1913,0.9619,0.1951,-0.1913,0.9808,0.0,-0.1951,1.0,0.0,0.0,0.9619,0.1951,-0.1913,1.0,0.0,0.0,0.9808,0.1951,0.0,0.9808,0.1951,0.0,1.0,0.0,0.0,0.9808,0.0,0.1951,0.9808,0.1951,0.0,0.9808,0.0,0.1951,0.9619,0.1951,0.1913,0.9619,0.1951,0.1913,0.9808,0.0,0.1951,0.9239,0.0,0.3827,0.9619,0.1951,0.1913,0.9239,0.0,0.3827,0.9061,0.1951,0.3753,0.9061,0.1951,0.3753,0.9239,0.0,0.3827,0.8315,0.0,0.5556,0.9061,0.1951,0.3753,0.8315,0.0,0.5556,0.8155,0.1951,0.5449,0.8155,0.1951,0.5449,0.8315,0.0,0.5556,0.7071,0.0,0.7071,0.8155,0.1951,0.5449,0.7071,0.0,0.7071,0.6935,0.1951,0.6935,0.6935,0.1951,0.6935,0.7071,0.0,0.7071,0.5556,0.0,0.8315,0.6935,0.1951,0.6935,0.5556,0.0,0.8315,0.5449,0.1951,0.8155,0.5449,0.1951,0.8155,0.5556,0.0,0.8315,0.3827,0.0,0.9239,0.5449,0.1951,0.8155,0.3827,0.0,0.9239,0.3753,0.1951,0.9061,0.3753,0.1951,0.9061,0.3827,0.0,0.9239,0.1951,0.0,0.9808,0.3753,0.1951,0.9061,0.1951,0.0,0.9808,0.1913,0.1951,0.9619,0.1913,0.1951,0.9619,0.1951,0.0,0.9808,0.0,0.0,1.0,0.1913,0.1951,0.9619,0.0,0.0,1.0,0.0,0.1951,0.9808,0.0,0.0,1.0,0.0,-0.1951,0.9808,-0.1913,-0.1951,0.9619,0.0,0.0,1.0,-0.1913,-0.1951,0.9619,-0.1951,0.0,0.9808,-0.1951,0.0,0.9808,-0.1913,-0.1951,0.9619,-0.3753,-0.1951,0.9061,-0.1951,0.0,0.9808,-0.3753,-0.1951,0.9061,-0.3827,0.0,0.9239,-0.3827,0.0,0.9239,-0.3753,-0.1951,0.9061,-0.5449,-0.1951,0.8155,-0.3827,0.0,0.9239,-0.5449,-0.1951,0.8155,-0.5556,0.0,0.8315,-0.5556,0.0,0.8315,-0.5449,-0.1951,0.8155,-0.6935,-0.1951,0.6935,-0.5556,0.0,0.8315,-0.6935,-0.1951,0.6935,-0.7071,0.0,0.7071,-0.7071,0.0,0.7071,-0.6935,-0.1951,0.6935,-0.8155,-0.1951,0.5449,-0.7071,0.0,0.7071,-0.8155,-0.1951,0.5449,-0.8315,0.0,0.5556,-0.8315,0.0,0.5556,-0.8155,-0.1951,0.5449,-0.9061,-0.1951,0.3753,-0.8315,0.0,0.5556,-0.9061,-0.1951,0.3753,-0.9239,0.0,0.3827,-0.9239,0.0,0.3827,-0.9061,-0.1951,0.3753,-0.9619,-0.1951,0.1913,-0.9239,0.0,0.3827,-0.9619,-0.1951,0.1913,-0.9808,0.0,0.1951,-0.9808,0.0,0.1951,-0.9619,-0.1951,0.1913,-0.9808,-0.1951,0.0,-0.9808,0.0,0.1951,-0.9808,-0.1951,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-0.9808,-0.1951,0.0,-0.9619,-0.1951,-0.1913,-1.0,0.0,0.0,-0.9619,-0.1951,-0.1913,-0.9808,0.0,-0.1951,-0.9808,0.0,-0.1951,-0.9619,-0.1951,-0.1913,-0.9061,-0.1951,-0.3753,-0.9808,0.0,-0.1951,-0.9061,-0.1951,-0.3753,-0.9239,0.0,-0.3827,-0.9239,0.0,-0.3827,-0.9061,-0.1951,-0.3753,-0.8155,-0.1951,-0.5449,-0.9239,0.0,-0.3827,-0.8155,-0.1951,-0.5449,-0.8315,0.0,-0.5556,-0.8315,0.0,-0.5556,-0.8155,-0.1951,-0.5449,-0.6935,-0.1951,-0.6935,-0.8315,0.0,-0.5556,-0.6935,-0.1951,-0.6935,-0.7071,0.0,-0.7071,-0.7071,0.0,-0.7071,-0.6935,-0.1951,-0.6935,-0.5449,-0.1951,-0.8155,-0.7071,0.0,-0.7071,-0.5449,-0.1951,-0.8155,-0.5556,0.0,-0.8315,-0.5556,0.0,-0.8315,-0.5449,-0.1951,-0.8155,-0.3753,-0.1951,-0.9061,-0.5556,0.0,-0.8315,-0.3753,-0.1951,-0.9061,-0.3827,0.0,-0.9239,-0.3827,0.0,-0.9239,-0.3753,-0.1951,-0.9061,-0.1913,-0.1951,-0.9619,-0.3827,0.0,-0.9239,-0.1913,-0.1951,-0.9619,-0.1951,0.0,-0.9808,-0.1951,0.0,-0.9808,-0.1913,-0.1951,-0.9619,0.0,-0.1951,-0.9808,-0.1951,0.0,-0.9808,0.0,-0.1951,-0.9808,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,-0.1951,-0.9808,0.1913,-0.1951,-0.9619,0.0,0.0,-1.0,0.1913,-0.1951,-0.9619,0.1951,0.0,-0.9808,0.1951,0.0,-0.9808,0.1913,-0.1951,-0.9619,0.3753,-0.1951,-0.9061,0.1951,0.0,-0.9808,0.3753,-0.1951,-0.9061,0.3827,0.0,-0.9239,0.3827,0.0,-0.9239,0.3753,-0.1951,-0.9061,0.5449,-0.1951,-0.8155,0.3827,0.0,-0.9239,0.5449,-0.1951,-0.8155,0.5556,0.0,-0.8315,0.5556,0.0,-0.8315,0.5449,-0.1951,-0.8155,0.6935,-0.1951,-0.6935,0.5556,0.0,-0.8315,0.6935,-0.1951,-0.6935,0.7071,0.0,-0.7071,0.7071,0.0,-0.7071,0.6935,-0.1951,-0.6935,0.8155,-0.1951,-0.5449,0.7071,0.0,-0.7071,0.8155,-0.1951,-0.5449,0.8315,0.0,-0.5556,0.8315,0.0,-0.5556,0.8155,-0.1951,-0.5449,0.9061,-0.1951,-0.3753,0.8315,0.0,-0.5556,0.9061,-0.1951,-0.3753,0.9239,0.0,-0.3827,0.9239,0.0,-0.3827,0.9061,-0.1951,-0.3753,0.9619,-0.1951,-0.1913,0.9239,0.0,-0.3827,0.9619,-0.1951,-0.1913,0.9808,0.0,-0.1951,0.9808,0.0,-0.1951,0.9619,-0.1951,-0.1913,0.9808,-0.1951,0.0,0.9808,0.0,-0.1951,0.9808,-0.1951,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.9808,-0.1951,0.0,0.9619,-0.1951,0.1913,1.0,0.0,0.0,0.9619,-0.1951,0.1913,0.9808,0.0,0.1951,0.9808,0.0,0.1951,0.9619,-0.1951,0.1913,0.9061,-0.1951,0.3753,0.9808,0.0,0.1951,0.9061,-0.1951,0.3753,0.9239,0.0,0.3827,0.9239,0.0,0.3827,0.9061,-0.1951,0.3753,0.8155,-0.1951,0.5449,0.9239,0.0,0.3827,0.8155,-0.1951,0.5449,0.8315,0.0,0.5556,0.8315,0.0,0.5556,0.8155,-0.1951,0.5449,0.6935,-0.1951,0.6935,0.8315,0.0,0.5556,0.6935,-0.1951,0.6935,0.7071,0.0,0.7071,0.7071,0.0,0.7071,0.6935,-0.1951,0.6935,0.5449,-0.1951,0.8155,0.7071,0.0,0.7071,0.5449,-0.1951,0.8155,0.5556,0.0,0.8315,0.5556,0.0,0.8315,0.5449,-0.1951,0.8155,0.3753,-0.1951,0.9061,0.5556,0.0,0.8315,0.3753,-0.1951,0.9061,0.3827,0.0,0.9239,0.3827,0.0,0.9239,0.3753,-0.1951,0.9061,0.1913,-0.1951,0.9619,0.3827,0.0,0.9239,0.1913,-0.1951,0.9619,0.1951,0.0,0.9808,0.1951,0.0,0.9808,0.1913,-0.1951,0.9619,0.0,-0.1951,0.9808,0.1951,0.0,0.9808,0.0,-0.1951,0.9808,0.0,0.0,1.0,0.0,-0.1951,0.9808,0.0,-0.3827,0.9239,-0.1802,-0.3827,0.9061,0.0,-0.1951,0.9808,-0.1802,-0.3827,0.9061,-0.1913,-0.1951,0.9619,-0.1913,-0.1951,0.9619,-0.1802,-0.3827,0.9061,-0.3536,-0.3827,0.8536,-0.1913,-0.1951,0.9619,-0.3536,-0.3827,0.8536,-0.3753,-0.1951,0.9061,-0.3753,-0.1951,0.9061,-0.3536,-0.3827,0.8536,-0.5133,-0.3827,0.7682,-0.3753,-0.1951,0.9061,-0.5133,-0.3827,0.7682,-0.5449,-0.1951,0.8155,-0.5449,-0.1951,0.8155,-0.5133,-0.3827,0.7682,-0.6533,-0.3827,0.6533,-0.5449,-0.1951,0.8155,-0.6533,-0.3827,0.6533,-0.6935,-0.1951,0.6935,-0.6935,-0.1951,0.6935,-0.6533,-0.3827,0.6533,-0.7682,-0.3827,0.5133,-0.6935,-0.1951,0.6935,-0.7682,-0.3827,0.5133,-0.8155,-0.1951,0.5449,-0.8155,-0.1951,0.5449,-0.7682,-0.3827,0.5133,-0.8536,-0.3827,0.3536,-0.8155,-0.1951,0.5449,-0.8536,-0.3827,0.3536,-0.9061,-0.1951,0.3753,-0.9061,-0.1951,0.3753,-0.8536,-0.3827,0.3536,-0.9061,-0.3827,0.1802,-0.9061,-0.1951,0.3753,-0.9061,-0.3827,0.1802,-0.9619,-0.1951,0.1913,-0.9619,-0.1951,0.1913,-0.9061,-0.3827,0.1802,-0.9239,-0.3827,0.0,-0.9619,-0.1951,0.1913,-0.9239,-0.3827,0.0,-0.9808,-0.1951,0.0,-0.9808,-0.1951,0.0,-0.9239,-0.3827,0.0,-0.9061,-0.3827,-0.1802,-0.9808,-0.1951,0.0,-0.9061,-0.3827,-0.1802,-0.9619,-0.1951,-0.1913,-0.9619,-0.1951,-0.1913,-0.9061,-0.3827,-0.1802,-0.8536,-0.3827,-0.3536,-0.9619,-0.1951,-0.1913,-0.8536,-0.3827,-0.3536,-0.9061,-0.1951,-0.3753,-0.9061,-0.1951,-0.3753,-0.8536,-0.3827,-0.3536,-0.7682,-0.3827,-0.5133,-0.9061,-0.1951,-0.3753,-0.7682,-0.3827,-0.5133,-0.8155,-0.1951,-0.5449,-0.8155,-0.1951,-0.5449,-0.7682,-0.3827,-0.5133,-0.6533,-0.3827,-0.6533,-0.8155,-0.1951,-0.5449,-0.6533,-0.3827,-0.6533,-0.6935,-0.1951,-0.6935,-0.6935,-0.1951,-0.6935,-0.6533,-0.3827,-0.6533,-0.5133,-0.3827,-0.7682,-0.6935,-0.1951,-0.6935,-0.5133,-0.3827,-0.7682,-0.5449,-0.1951,-0.8155,-0.5449,-0.1951,-0.8155,-0.5133,-0.3827,-0.7682,-0.3536,-0.3827,-0.8536,-0.5449,-0.1951,-0.8155,-0.3536,-0.3827,-0.8536,-0.3753,-0.1951,-0.9061,-0.3753,-0.1951,-0.9061,-0.3536,-0.3827,-0.8536,-0.1802,-0.3827,-0.9061,-0.3753,-0.1951,-0.9061,-0.1802,-0.3827,-0.9061,-0.1913,-0.1951,-0.9619,-0.1913,-0.1951,-0.9619,-0.1802,-0.3827,-0.9061,0.0,-0.3827,-0.9239,-0.1913,-0.1951,-0.9619,0.0,-0.3827,-0.9239,0.0,-0.1951,-0.9808,0.0,-0.1951,-0.9808,0.0,-0.3827,-0.9239,0.1802,-0.3827,-0.9061,0.0,-0.1951,-0.9808,0.1802,-0.3827,-0.9061,0.1913,-0.1951,-0.9619,0.1913,-0.1951,-0.9619,0.1802,-0.3827,-0.9061,0.3536,-0.3827,-0.8536,0.1913,-0.1951,-0.9619,0.3536,-0.3827,-0.8536,0.3753,-0.1951,-0.9061,0.3753,-0.1951,-0.9061,0.3536,-0.3827,-0.8536,0.5133,-0.3827,-0.7682,0.3753,-0.1951,-0.9061,0.5133,-0.3827,-0.7682,0.5449,-0.1951,-0.8155,0.5449,-0.1951,-0.8155,0.5133,-0.3827,-0.7682,0.6533,-0.3827,-0.6533,0.5449,-0.1951,-0.8155,0.6533,-0.3827,-0.6533,0.6935,-0.1951,-0.6935,0.6935,-0.1951,-0.6935,0.6533,-0.3827,-0.6533,0.7682,-0.3827,-0.5133,0.6935,-0.1951,-0.6935,0.7682,-0.3827,-0.5133,0.8155,-0.1951,-0.5449,0.8155,-0.1951,-0.5449,0.7682,-0.3827,-0.5133,0.8536,-0.3827,-0.3536,0.8155,-0.1951,-0.5449,0.8536,-0.3827,-0.3536,0.9061,-0.1951,-0.3753,0.9061,-0.1951,-0.3753,0.8536,-0.3827,-0.3536,0.9061,-0.3827,-0.1802,0.9061,-0.1951,-0.3753,0.9061,-0.3827,-0.1802,0.9619,-0.1951,-0.1913,0.9619,-0.1951,-0.1913,0.9061,-0.3827,-0.1802,0.9239,-0.3827,0.0,0.9619,-0.1951,-0.1913,0.9239,-0.3827,0.0,0.9808,-0.1951,0.0,0.9808,-0.1951,0.0,0.9239,-0.3827,0.0,0.9061,-0.3827,0.1802,0.9808,-0.1951,0.0,0.9061,-0.3827,0.1802,0.9619,-0.1951,0.1913,0.9619,-0.1951,0.1913,0.9061,-0.3827,0.1802,0.8536,-0.3827,0.3536,0.9619,-0.1951,0.1913,0.8536,-0.3827,0.3536,0.9061,-0.1951,0.3753,0.9061,-0.1951,0.3753,0.8536,-0.3827,0.3536,0.7682,-0.3827,0.5133,0.9061,-0.1951,0.3753,0.7682,-0.3827,0.5133,0.8155,-0.1951,0.5449,0.8155,-0.1951,0.5449,0.7682,-0.3827,0.5133,0.6533,-0.3827,0.6533,0.8155,-0.1951,0.5449,0.6533,-0.3827,0.6533,0.6935,-0.1951,0.6935,0.6935,-0.1951,0.6935,0.6533,-0.3827,0.6533,0.5133,-0.3827,0.7682,0.6935,-0.1951,0.6935,0.5133,-0.3827,0.7682,0.5449,-0.1951,0.8155,0.5449,-0.1951,0.8155,0.5133,-0.3827,0.7682,0.3536,-0.3827,0.8536,0.5449,-0.1951,0.8155,0.3536,-0.3827,0.8536,0.3753,-0.1951,0.9061,0.3753,-0.1951,0.9061,0.3536,-0.3827,0.8536,0.1802,-0.3827,0.9061,0.3753,-0.1951,0.9061,0.1802,-0.3827,0.9061,0.1913,-0.1951,0.9619,0.1913,-0.1951,0.9619,0.1802,-0.3827,0.9061,0.0,-0.3827,0.9239,0.1913,-0.1951,0.9619,0.0,-0.3827,0.9239,0.0,-0.1951,0.9808,0.0,-0.3827,0.9239,0.0,-0.5556,0.8315,-0.1622,-0.5556,0.8155,0.0,-0.3827,0.9239,-0.1622,-0.5556,0.8155,-0.1802,-0.3827,0.9061,-0.1802,-0.3827,0.9061,-0.1622,-0.5556,0.8155,-0.3182,-0.5556,0.7682,-0.1802,-0.3827,0.9061,-0.3182,-0.5556,0.7682,-0.3536,-0.3827,0.8536,-0.3536,-0.3827,0.8536,-0.3182,-0.5556,0.7682,-0.4619,-0.5556,0.6913,-0.3536,-0.3827,0.8536,-0.4619,-0.5556,0.6913,-0.5133,-0.3827,0.7682,-0.5133,-0.3827,0.7682,-0.4619,-0.5556,0.6913,-0.5879,-0.5556,0.5879,-0.5133,-0.3827,0.7682,-0.5879,-0.5556,0.5879,-0.6533,-0.3827,0.6533,-0.6533,-0.3827,0.6533,-0.5879,-0.5556,0.5879,-0.6913,-0.5556,0.4619,-0.6533,-0.3827,0.6533,-0.6913,-0.5556,0.4619,-0.7682,-0.3827,0.5133,-0.7682,-0.3827,0.5133,-0.6913,-0.5556,0.4619,-0.7682,-0.5556,0.3182,-0.7682,-0.3827,0.5133,-0.7682,-0.5556,0.3182,-0.8536,-0.3827,0.3536,-0.8536,-0.3827,0.3536,-0.7682,-0.5556,0.3182,-0.8155,-0.5556,0.1622,-0.8536,-0.3827,0.3536,-0.8155,-0.5556,0.1622,-0.9061,-0.3827,0.1802,-0.9061,-0.3827,0.1802,-0.8155,-0.5556,0.1622,-0.8315,-0.5556,0.0,-0.9061,-0.3827,0.1802,-0.8315,-0.5556,0.0,-0.9239,-0.3827,0.0,-0.9239,-0.3827,0.0,-0.8315,-0.5556,0.0,-0.8155,-0.5556,-0.1622,-0.9239,-0.3827,0.0,-0.8155,-0.5556,-0.1622,-0.9061,-0.3827,-0.1802,-0.9061,-0.3827,-0.1802,-0.8155,-0.5556,-0.1622,-0.7682,-0.5556,-0.3182,-0.9061,-0.3827,-0.1802,-0.7682,-0.5556,-0.3182,-0.8536,-0.3827,-0.3536,-0.8536,-0.3827,-0.3536,-0.7682,-0.5556,-0.3182,-0.6913,-0.5556,-0.4619,-0.8536,-0.3827,-0.3536,-0.6913,-0.5556,-0.4619,-0.7682,-0.3827,-0.5133,-0.7682,-0.3827,-0.5133,-0.6913,-0.5556,-0.4619,-0.5879,-0.5556,-0.5879,-0.7682,-0.3827,-0.5133,-0.5879,-0.5556,-0.5879,-0.6533,-0.3827,-0.6533,-0.6533,-0.3827,-0.6533,-0.5879,-0.5556,-0.5879,-0.4619,-0.5556,-0.6913,-0.6533,-0.3827,-0.6533,-0.4619,-0.5556,-0.6913,-0.5133,-0.3827,-0.7682,-0.5133,-0.3827,-0.7682,-0.4619,-0.5556,-0.6913,-0.3182,-0.5556,-0.7682,-0.5133,-0.3827,-0.7682,-0.3182,-0.5556,-0.7682,-0.3536,-0.3827,-0.8536,-0.3536,-0.3827,-0.8536,-0.3182,-0.5556,-0.7682,-0.1622,-0.5556,-0.8155,-0.3536,-0.3827,-0.8536,-0.1622,-0.5556,-0.8155,-0.1802,-0.3827,-0.9061,-0.1802,-0.3827,-0.9061,-0.1622,-0.5556,-0.8155,0.0,-0.5556,-0.8315,-0.1802,-0.3827,-0.9061,0.0,-0.5556,-0.8315,0.0,-0.3827,-0.9239,0.0,-0.3827,-0.9239,0.0,-0.5556,-0.8315,0.1622,-0.5556,-0.8155,0.0,-0.3827,-0.9239,0.1622,-0.5556,-0.8155,0.1802,-0.3827,-0.9061,0.1802,-0.3827,-0.9061,0.1622,-0.5556,-0.8155,0.3182,-0.5556,-0.7682,0.1802,-0.3827,-0.9061,0.3182,-0.5556,-0.7682,0.3536,-0.3827,-0.8536,0.3536,-0.3827,-0.8536,0.3182,-0.5556,-0.7682,0.4619,-0.5556,-0.6913,0.3536,-0.3827,-0.8536,0.4619,-0.5556,-0.6913,0.5133,-0.3827,-0.7682,0.5133,-0.3827,-0.7682,0.4619,-0.5556,-0.6913,0.5879,-0.5556,-0.5879,0.5133,-0.3827,-0.7682,0.5879,-0.5556,-0.5879,0.6533,-0.3827,-0.6533,0.6533,-0.3827,-0.6533,0.5879,-0.5556,-0.5879,0.6913,-0.5556,-0.4619,0.6533,-0.3827,-0.6533,0.6913,-0.5556,-0.4619,0.7682,-0.3827,-0.5133,0.7682,-0.3827,-0.5133,0.6913,-0.5556,-0.4619,0.7682,-0.5556,-0.3182,0.7682,-0.3827,-0.5133,0.7682,-0.5556,-0.3182,0.8536,-0.3827,-0.3536,0.8536,-0.3827,-0.3536,0.7682,-0.5556,-0.3182,0.8155,-0.5556,-0.1622,0.8536,-0.3827,-0.3536,0.8155,-0.5556,-0.1622,0.9061,-0.3827,-0.1802,0.9061,-0.3827,-0.1802,0.8155,-0.5556,-0.1622,0.8315,-0.5556,0.0,0.9061,-0.3827,-0.1802,0.8315,-0.5556,0.0,0.9239,-0.3827,0.0,0.9239,-0.3827,0.0,0.8315,-0.5556,0.0,0.8155,-0.5556,0.1622,0.9239,-0.3827,0.0,0.8155,-0.5556,0.1622,0.9061,-0.3827,0.1802,0.9061,-0.3827,0.1802,0.8155,-0.5556,0.1622,0.7682,-0.5556,0.3182,0.9061,-0.3827,0.1802,0.7682,-0.5556,0.3182,0.8536,-0.3827,0.3536,0.8536,-0.3827,0.3536,0.7682,-0.5556,0.3182,0.6913,-0.5556,0.4619,0.8536,-0.3827,0.3536,0.6913,-0.5556,0.4619,0.7682,-0.3827,0.5133,0.7682,-0.3827,0.5133,0.6913,-0.5556,0.4619,0.5879,-0.5556,0.5879,0.7682,-0.3827,0.5133,0.5879,-0.5556,0.5879,0.6533,-0.3827,0.6533,0.6533,-0.3827,0.6533,0.5879,-0.5556,0.5879,0.4619,-0.5556,0.6913,0.6533,-0.3827,0.6533,0.4619,-0.5556,0.6913,0.5133,-0.3827,0.7682,0.5133,-0.3827,0.7682,0.4619,-0.5556,0.6913,0.3182,-0.5556,0.7682,0.5133,-0.3827,0.7682,0.3182,-0.5556,0.7682,0.3536,-0.3827,0.8536,0.3536,-0.3827,0.8536,0.3182,-0.5556,0.7682,0.1622,-0.5556,0.8155,0.3536,-0.3827,0.8536,0.1622,-0.5556,0.8155,0.1802,-0.3827,0.9061,0.1802,-0.3827,0.9061,0.1622,-0.5556,0.8155,0.0,-0.5556,0.8315,0.1802,-0.3827,0.9061,0.0,-0.5556,0.8315,0.0,-0.3827,0.9239,0.0,-0.5556,0.8315,0.0,-0.7071,0.7071,-0.1379,-0.7071,0.6935,0.0,-0.5556,0.8315,-0.1379,-0.7071,0.6935,-0.1622,-0.5556,0.8155,-0.1622,-0.5556,0.8155,-0.1379,-0.7071,0.6935,-0.2706,-0.7071,0.6533,-0.1622,-0.5556,0.8155,-0.2706,-0.7071,0.6533,-0.3182,-0.5556,0.7682,-0.3182,-0.5556,0.7682,-0.2706,-0.7071,0.6533,-0.3928,-0.7071,0.5879,-0.3182,-0.5556,0.7682,-0.3928,-0.7071,0.5879,-0.4619,-0.5556,0.6913,-0.4619,-0.5556,0.6913,-0.3928,-0.7071,0.5879,-0.5,-0.7071,0.5,-0.4619,-0.5556,0.6913,-0.5,-0.7071,0.5,-0.5879,-0.5556,0.5879,-0.5879,-0.5556,0.5879,-0.5,-0.7071,0.5,-0.5879,-0.7071,0.3928,-0.5879,-0.5556,0.5879,-0.5879,-0.7071,0.3928,-0.6913,-0.5556,0.4619,-0.6913,-0.5556,0.4619,-0.5879,-0.7071,0.3928,-0.6533,-0.7071,0.2706,-0.6913,-0.5556,0.4619,-0.6533,-0.7071,0.2706,-0.7682,-0.5556,0.3182,-0.7682,-0.5556,0.3182,-0.6533,-0.7071,0.2706,-0.6935,-0.7071,0.1379,-0.7682,-0.5556,0.3182,-0.6935,-0.7071,0.1379,-0.8155,-0.5556,0.1622,-0.8155,-0.5556,0.1622,-0.6935,-0.7071,0.1379,-0.7071,-0.7071,0.0,-0.8155,-0.5556,0.1622,-0.7071,-0.7071,0.0,-0.8315,-0.5556,0.0,-0.8315,-0.5556,0.0,-0.7071,-0.7071,0.0,-0.6935,-0.7071,-0.1379,-0.8315,-0.5556,0.0,-0.6935,-0.7071,-0.1379,-0.8155,-0.5556,-0.1622,-0.8155,-0.5556,-0.1622,-0.6935,-0.7071,-0.1379,-0.6533,-0.7071,-0.2706,-0.8155,-0.5556,-0.1622,-0.6533,-0.7071,-0.2706,-0.7682,-0.5556,-0.3182,-0.7682,-0.5556,-0.3182,-0.6533,-0.7071,-0.2706,-0.5879,-0.7071,-0.3928,-0.7682,-0.5556,-0.3182,-0.5879,-0.7071,-0.3928,-0.6913,-0.5556,-0.4619,-0.6913,-0.5556,-0.4619,-0.5879,-0.7071,-0.3928,-0.5,-0.7071,-0.5,-0.6913,-0.5556,-0.4619,-0.5,-0.7071,-0.5,-0.5879,-0.5556,-0.5879,-0.5879,-0.5556,-0.5879,-0.5,-0.7071,-0.5,-0.3928,-0.7071,-0.5879,-0.5879,-0.5556,-0.5879,-0.3928,-0.7071,-0.5879,-0.4619,-0.5556,-0.6913,-0.4619,-0.5556,-0.6913,-0.3928,-0.7071,-0.5879,-0.2706,-0.7071,-0.6533,-0.4619,-0.5556,-0.6913,-0.2706,-0.7071,-0.6533,-0.3182,-0.5556,-0.7682,-0.3182,-0.5556,-0.7682,-0.2706,-0.7071,-0.6533,-0.1379,-0.7071,-0.6935,-0.3182,-0.5556,-0.7682,-0.1379,-0.7071,-0.6935,-0.1622,-0.5556,-0.8155,-0.1622,-0.5556,-0.8155,-0.1379,-0.7071,-0.6935,0.0,-0.7071,-0.7071,-0.1622,-0.5556,-0.8155,0.0,-0.7071,-0.7071,0.0,-0.5556,-0.8315,0.0,-0.5556,-0.8315,0.0,-0.7071,-0.7071,0.138,-0.7071,-0.6935,0.0,-0.5556,-0.8315,0.138,-0.7071,-0.6935,0.1622,-0.5556,-0.8155,0.1622,-0.5556,-0.8155,0.138,-0.7071,-0.6935,0.2706,-0.7071,-0.6533,0.1622,-0.5556,-0.8155,0.2706,-0.7071,-0.6533,0.3182,-0.5556,-0.7682,0.3182,-0.5556,-0.7682,0.2706,-0.7071,-0.6533,0.3928,-0.7071,-0.5879,0.3182,-0.5556,-0.7682,0.3928,-0.7071,-0.5879,0.4619,-0.5556,-0.6913,0.4619,-0.5556,-0.6913,0.3928,-0.7071,-0.5879,0.5,-0.7071,-0.5,0.4619,-0.5556,-0.6913,0.5,-0.7071,-0.5,0.5879,-0.5556,-0.5879,0.5879,-0.5556,-0.5879,0.5,-0.7071,-0.5,0.5879,-0.7071,-0.3928,0.5879,-0.5556,-0.5879,0.5879,-0.7071,-0.3928,0.6913,-0.5556,-0.4619,0.6913,-0.5556,-0.4619,0.5879,-0.7071,-0.3928,0.6533,-0.7071,-0.2706,0.6913,-0.5556,-0.4619,0.6533,-0.7071,-0.2706,0.7682,-0.5556,-0.3182,0.7682,-0.5556,-0.3182,0.6533,-0.7071,-0.2706,0.6935,-0.7071,-0.1379,0.7682,-0.5556,-0.3182,0.6935,-0.7071,-0.1379,0.8155,-0.5556,-0.1622,0.8155,-0.5556,-0.1622,0.6935,-0.7071,-0.1379,0.7071,-0.7071,0.0,0.8155,-0.5556,-0.1622,0.7071,-0.7071,0.0,0.8315,-0.5556,0.0,0.8315,-0.5556,0.0,0.7071,-0.7071,0.0,0.6935,-0.7071,0.138,0.8315,-0.5556,0.0,0.6935,-0.7071,0.138,0.8155,-0.5556,0.1622,0.8155,-0.5556,0.1622,0.6935,-0.7071,0.138,0.6533,-0.7071,0.2706,0.8155,-0.5556,0.1622,0.6533,-0.7071,0.2706,0.7682,-0.5556,0.3182,0.7682,-0.5556,0.3182,0.6533,-0.7071,0.2706,0.5879,-0.7071,0.3928,0.7682,-0.5556,0.3182,0.5879,-0.7071,0.3928,0.6913,-0.5556,0.4619,0.6913,-0.5556,0.4619,0.5879,-0.7071,0.3928,0.5,-0.7071,0.5,0.6913,-0.5556,0.4619,0.5,-0.7071,0.5,0.5879,-0.5556,0.5879,0.5879,-0.5556,0.5879,0.5,-0.7071,0.5,0.3928,-0.7071,0.5879,0.5879,-0.5556,0.5879,0.3928,-0.7071,0.5879,0.4619,-0.5556,0.6913,0.4619,-0.5556,0.6913,0.3928,-0.7071,0.5879,0.2706,-0.7071,0.6533,0.4619,-0.5556,0.6913,0.2706,-0.7071,0.6533,0.3182,-0.5556,0.7682,0.3182,-0.5556,0.7682,0.2706,-0.7071,0.6533,0.1379,-0.7071,0.6935,0.3182,-0.5556,0.7682,0.1379,-0.7071,0.6935,0.1622,-0.5556,0.8155,0.1622,-0.5556,0.8155,0.1379,-0.7071,0.6935,0.0,-0.7071,0.7071,0.1622,-0.5556,0.8155,0.0,-0.7071,0.7071,0.0,-0.5556,0.8315,0.0,-0.7071,0.7071,0.0,-0.8315,0.5556,-0.1084,-0.8315,0.5449,0.0,-0.7071,0.7071,-0.1084,-0.8315,0.5449,-0.1379,-0.7071,0.6935,-0.1379,-0.7071,0.6935,-0.1084,-0.8315,0.5449,-0.2126,-0.8315,0.5133,-0.1379,-0.7071,0.6935,-0.2126,-0.8315,0.5133,-0.2706,-0.7071,0.6533,-0.2706,-0.7071,0.6533,-0.2126,-0.8315,0.5133,-0.3087,-0.8315,0.4619,-0.2706,-0.7071,0.6533,-0.3087,-0.8315,0.4619,-0.3928,-0.7071,0.5879,-0.3928,-0.7071,0.5879,-0.3087,-0.8315,0.4619,-0.3928,-0.8315,0.3928,-0.3928,-0.7071,0.5879,-0.3928,-0.8315,0.3928,-0.5,-0.7071,0.5,-0.5,-0.7071,0.5,-0.3928,-0.8315,0.3928,-0.4619,-0.8315,0.3087,-0.5,-0.7071,0.5,-0.4619,-0.8315,0.3087,-0.5879,-0.7071,0.3928,-0.5879,-0.7071,0.3928,-0.4619,-0.8315,0.3087,-0.5133,-0.8315,0.2126,-0.5879,-0.7071,0.3928,-0.5133,-0.8315,0.2126,-0.6533,-0.7071,0.2706,-0.6533,-0.7071,0.2706,-0.5133,-0.8315,0.2126,-0.5449,-0.8315,0.1084,-0.6533,-0.7071,0.2706,-0.5449,-0.8315,0.1084,-0.6935,-0.7071,0.1379,-0.6935,-0.7071,0.1379,-0.5449,-0.8315,0.1084,-0.5556,-0.8315,0.0,-0.6935,-0.7071,0.1379,-0.5556,-0.8315,0.0,-0.7071,-0.7071,0.0,-0.7071,-0.7071,0.0,-0.5556,-0.8315,0.0,-0.5449,-0.8315,-0.1084,-0.7071,-0.7071,0.0,-0.5449,-0.8315,-0.1084,-0.6935,-0.7071,-0.1379,-0.6935,-0.7071,-0.1379,-0.5449,-0.8315,-0.1084,-0.5133,-0.8315,-0.2126,-0.6935,-0.7071,-0.1379,-0.5133,-0.8315,-0.2126,-0.6533,-0.7071,-0.2706,-0.6533,-0.7071,-0.2706,-0.5133,-0.8315,-0.2126,-0.4619,-0.8315,-0.3087,-0.6533,-0.7071,-0.2706,-0.4619,-0.8315,-0.3087,-0.5879,-0.7071,-0.3928,-0.5879,-0.7071,-0.3928,-0.4619,-0.8315,-0.3087,-0.3928,-0.8315,-0.3928,-0.5879,-0.7071,-0.3928,-0.3928,-0.8315,-0.3928,-0.5,-0.7071,-0.5,-0.5,-0.7071,-0.5,-0.3928,-0.8315,-0.3928,-0.3087,-0.8315,-0.4619,-0.5,-0.7071,-0.5,-0.3087,-0.8315,-0.4619,-0.3928,-0.7071,-0.5879,-0.3928,-0.7071,-0.5879,-0.3087,-0.8315,-0.4619,-0.2126,-0.8315,-0.5133,-0.3928,-0.7071,-0.5879,-0.2126,-0.8315,-0.5133,-0.2706,-0.7071,-0.6533,-0.2706,-0.7071,-0.6533,-0.2126,-0.8315,-0.5133,-0.1084,-0.8315,-0.5449,-0.2706,-0.7071,-0.6533,-0.1084,-0.8315,-0.5449,-0.1379,-0.7071,-0.6935,-0.1379,-0.7071,-0.6935,-0.1084,-0.8315,-0.5449,0.0,-0.8315,-0.5556,-0.1379,-0.7071,-0.6935,0.0,-0.8315,-0.5556,0.0,-0.7071,-0.7071,0.0,-0.7071,-0.7071,0.0,-0.8315,-0.5556,0.1084,-0.8315,-0.5449,0.0,-0.7071,-0.7071,0.1084,-0.8315,-0.5449,0.138,-0.7071,-0.6935,0.138,-0.7071,-0.6935,0.1084,-0.8315,-0.5449,0.2126,-0.8315,-0.5133,0.138,-0.7071,-0.6935,0.2126,-0.8315,-0.5133,0.2706,-0.7071,-0.6533,0.2706,-0.7071,-0.6533,0.2126,-0.8315,-0.5133,0.3087,-0.8315,-0.4619,0.2706,-0.7071,-0.6533,0.3087,-0.8315,-0.4619,0.3928,-0.7071,-0.5879,0.3928,-0.7071,-0.5879,0.3087,-0.8315,-0.4619,0.3928,-0.8315,-0.3928,0.3928,-0.7071,-0.5879,0.3928,-0.8315,-0.3928,0.5,-0.7071,-0.5,0.5,-0.7071,-0.5,0.3928,-0.8315,-0.3928,0.4619,-0.8315,-0.3087,0.5,-0.7071,-0.5,0.4619,-0.8315,-0.3087,0.5879,-0.7071,-0.3928,0.5879,-0.7071,-0.3928,0.4619,-0.8315,-0.3087,0.5133,-0.8315,-0.2126,0.5879,-0.7071,-0.3928,0.5133,-0.8315,-0.2126,0.6533,-0.7071,-0.2706,0.6533,-0.7071,-0.2706,0.5133,-0.8315,-0.2126,0.5449,-0.8315,-0.1084,0.6533,-0.7071,-0.2706,0.5449,-0.8315,-0.1084,0.6935,-0.7071,-0.1379,0.6935,-0.7071,-0.1379,0.5449,-0.8315,-0.1084,0.5556,-0.8315,0.0,0.6935,-0.7071,-0.1379,0.5556,-0.8315,0.0,0.7071,-0.7071,0.0,0.7071,-0.7071,0.0,0.5556,-0.8315,0.0,0.5449,-0.8315,0.1084,0.7071,-0.7071,0.0,0.5449,-0.8315,0.1084,0.6935,-0.7071,0.138,0.6935,-0.7071,0.138,0.5449,-0.8315,0.1084,0.5133,-0.8315,0.2126,0.6935,-0.7071,0.138,0.5133,-0.8315,0.2126,0.6533,-0.7071,0.2706,0.6533,-0.7071,0.2706,0.5133,-0.8315,0.2126,0.4619,-0.8315,0.3087,0.6533,-0.7071,0.2706,0.4619,-0.8315,0.3087,0.5879,-0.7071,0.3928,0.5879,-0.7071,0.3928,0.4619,-0.8315,0.3087,0.3928,-0.8315,0.3928,0.5879,-0.7071,0.3928,0.3928,-0.8315,0.3928,0.5,-0.7071,0.5,0.5,-0.7071,0.5,0.3928,-0.8315,0.3928,0.3087,-0.8315,0.4619,0.5,-0.7071,0.5,0.3087,-0.8315,0.4619,0.3928,-0.7071,0.5879,0.3928,-0.7071,0.5879,0.3087,-0.8315,0.4619,0.2126,-0.8315,0.5133,0.3928,-0.7071,0.5879,0.2126,-0.8315,0.5133,0.2706,-0.7071,0.6533,0.2706,-0.7071,0.6533,0.2126,-0.8315,0.5133,0.1084,-0.8315,0.5449,0.2706,-0.7071,0.6533,0.1084,-0.8315,0.5449,0.1379,-0.7071,0.6935,0.1379,-0.7071,0.6935,0.1084,-0.8315,0.5449,0.0,-0.8315,0.5556,0.1379,-0.7071,0.6935,0.0,-0.8315,0.5556,0.0,-0.7071,0.7071,0.0,-0.8315,0.5556,0.0,-0.9239,0.3827,-0.0747,-0.9239,0.3753,0.0,-0.8315,0.5556,-0.0747,-0.9239,0.3753,-0.1084,-0.8315,0.5449,-0.1084,-0.8315,0.5449,-0.0747,-0.9239,0.3753,-0.1464,-0.9239,0.3536,-0.1084,-0.8315,0.5449,-0.1464,-0.9239,0.3536,-0.2126,-0.8315,0.5133,-0.2126,-0.8315,0.5133,-0.1464,-0.9239,0.3536,-0.2126,-0.9239,0.3182,-0.2126,-0.8315,0.5133,-0.2126,-0.9239,0.3182,-0.3087,-0.8315,0.4619,-0.3087,-0.8315,0.4619,-0.2126,-0.9239,0.3182,-0.2706,-0.9239,0.2706,-0.3087,-0.8315,0.4619,-0.2706,-0.9239,0.2706,-0.3928,-0.8315,0.3928,-0.3928,-0.8315,0.3928,-0.2706,-0.9239,0.2706,-0.3182,-0.9239,0.2126,-0.3928,-0.8315,0.3928,-0.3182,-0.9239,0.2126,-0.4619,-0.8315,0.3087,-0.4619,-0.8315,0.3087,-0.3182,-0.9239,0.2126,-0.3536,-0.9239,0.1464,-0.4619,-0.8315,0.3087,-0.3536,-0.9239,0.1464,-0.5133,-0.8315,0.2126,-0.5133,-0.8315,0.2126,-0.3536,-0.9239,0.1464,-0.3753,-0.9239,0.0747,-0.5133,-0.8315,0.2126,-0.3753,-0.9239,0.0747,-0.5449,-0.8315,0.1084,-0.5449,-0.8315,0.1084,-0.3753,-0.9239,0.0747,-0.3827,-0.9239,0.0,-0.5449,-0.8315,0.1084,-0.3827,-0.9239,0.0,-0.5556,-0.8315,0.0,-0.5556,-0.8315,0.0,-0.3827,-0.9239,0.0,-0.3753,-0.9239,-0.0747,-0.5556,-0.8315,0.0,-0.3753,-0.9239,-0.0747,-0.5449,-0.8315,-0.1084,-0.5449,-0.8315,-0.1084,-0.3753,-0.9239,-0.0747,-0.3536,-0.9239,-0.1464,-0.5449,-0.8315,-0.1084,-0.3536,-0.9239,-0.1464,-0.5133,-0.8315,-0.2126,-0.5133,-0.8315,-0.2126,-0.3536,-0.9239,-0.1464,-0.3182,-0.9239,-0.2126,-0.5133,-0.8315,-0.2126,-0.3182,-0.9239,-0.2126,-0.4619,-0.8315,-0.3087,-0.4619,-0.8315,-0.3087,-0.3182,-0.9239,-0.2126,-0.2706,-0.9239,-0.2706,-0.4619,-0.8315,-0.3087,-0.2706,-0.9239,-0.2706,-0.3928,-0.8315,-0.3928,-0.3928,-0.8315,-0.3928,-0.2706,-0.9239,-0.2706,-0.2126,-0.9239,-0.3182,-0.3928,-0.8315,-0.3928,-0.2126,-0.9239,-0.3182,-0.3087,-0.8315,-0.4619,-0.3087,-0.8315,-0.4619,-0.2126,-0.9239,-0.3182,-0.1464,-0.9239,-0.3536,-0.3087,-0.8315,-0.4619,-0.1464,-0.9239,-0.3536,-0.2126,-0.8315,-0.5133,-0.2126,-0.8315,-0.5133,-0.1464,-0.9239,-0.3536,-0.0747,-0.9239,-0.3753,-0.2126,-0.8315,-0.5133,-0.0747,-0.9239,-0.3753,-0.1084,-0.8315,-0.5449,-0.1084,-0.8315,-0.5449,-0.0747,-0.9239,-0.3753,0.0,-0.9239,-0.3827,-0.1084,-0.8315,-0.5449,0.0,-0.9239,-0.3827,0.0,-0.8315,-0.5556,0.0,-0.8315,-0.5556,0.0,-0.9239,-0.3827,0.0747,-0.9239,-0.3753,0.0,-0.8315,-0.5556,0.0747,-0.9239,-0.3753,0.1084,-0.8315,-0.5449,0.1084,-0.8315,-0.5449,0.0747,-0.9239,-0.3753,0.1464,-0.9239,-0.3536,0.1084,-0.8315,-0.5449,0.1464,-0.9239,-0.3536,0.2126,-0.8315,-0.5133,0.2126,-0.8315,-0.5133,0.1464,-0.9239,-0.3536,0.2126,-0.9239,-0.3182,0.2126,-0.8315,-0.5133,0.2126,-0.9239,-0.3182,0.3087,-0.8315,-0.4619,0.3087,-0.8315,-0.4619,0.2126,-0.9239,-0.3182,0.2706,-0.9239,-0.2706,0.3087,-0.8315,-0.4619,0.2706,-0.9239,-0.2706,0.3928,-0.8315,-0.3928,0.3928,-0.8315,-0.3928,0.2706,-0.9239,-0.2706,0.3182,-0.9239,-0.2126,0.3928,-0.8315,-0.3928,0.3182,-0.9239,-0.2126,0.4619,-0.8315,-0.3087,0.4619,-0.8315,-0.3087,0.3182,-0.9239,-0.2126,0.3536,-0.9239,-0.1464,0.4619,-0.8315,-0.3087,0.3536,-0.9239,-0.1464,0.5133,-0.8315,-0.2126,0.5133,-0.8315,-0.2126,0.3536,-0.9239,-0.1464,0.3753,-0.9239,-0.0747,0.5133,-0.8315,-0.2126,0.3753,-0.9239,-0.0747,0.5449,-0.8315,-0.1084,0.5449,-0.8315,-0.1084,0.3753,-0.9239,-0.0747,0.3827,-0.9239,0.0,0.5449,-0.8315,-0.1084,0.3827,-0.9239,0.0,0.5556,-0.8315,0.0,0.5556,-0.8315,0.0,0.3827,-0.9239,0.0,0.3753,-0.9239,0.0747,0.5556,-0.8315,0.0,0.3753,-0.9239,0.0747,0.5449,-0.8315,0.1084,0.5449,-0.8315,0.1084,0.3753,-0.9239,0.0747,0.3536,-0.9239,0.1464,0.5449,-0.8315,0.1084,0.3536,-0.9239,0.1464,0.5133,-0.8315,0.2126,0.5133,-0.8315,0.2126,0.3536,-0.9239,0.1464,0.3182,-0.9239,0.2126,0.5133,-0.8315,0.2126,0.3182,-0.9239,0.2126,0.4619,-0.8315,0.3087,0.4619,-0.8315,0.3087,0.3182,-0.9239,0.2126,0.2706,-0.9239,0.2706,0.4619,-0.8315,0.3087,0.2706,-0.9239,0.2706,0.3928,-0.8315,0.3928,0.3928,-0.8315,0.3928,0.2706,-0.9239,0.2706,0.2126,-0.9239,0.3182,0.3928,-0.8315,0.3928,0.2126,-0.9239,0.3182,0.3087,-0.8315,0.4619,0.3087,-0.8315,0.4619,0.2126,-0.9239,0.3182,0.1464,-0.9239,0.3536,0.3087,-0.8315,0.4619,0.1464,-0.9239,0.3536,0.2126,-0.8315,0.5133,0.2126,-0.8315,0.5133,0.1464,-0.9239,0.3536,0.0747,-0.9239,0.3753,0.2126,-0.8315,0.5133,0.0747,-0.9239,0.3753,0.1084,-0.8315,0.5449,0.1084,-0.8315,0.5449,0.0747,-0.9239,0.3753,0.0,-0.9239,0.3827,0.1084,-0.8315,0.5449,0.0,-0.9239,0.3827,0.0,-0.8315,0.5556,0.0,-0.9239,0.3827,0.0,-0.9808,0.1951,-0.0381,-0.9808,0.1913,0.0,-0.9239,0.3827,-0.0381,-0.9808,0.1913,-0.0747,-0.9239,0.3753,-0.0747,-0.9239,0.3753,-0.0381,-0.9808,0.1913,-0.0747,-0.9808,0.1802,-0.0747,-0.9239,0.3753,-0.0747,-0.9808,0.1802,-0.1464,-0.9239,0.3536,-0.1464,-0.9239,0.3536,-0.0747,-0.9808,0.1802,-0.1084,-0.9808,0.1622,-0.1464,-0.9239,0.3536,-0.1084,-0.9808,0.1622,-0.2126,-0.9239,0.3182,-0.2126,-0.9239,0.3182,-0.1084,-0.9808,0.1622,-0.1379,-0.9808,0.1379,-0.2126,-0.9239,0.3182,-0.1379,-0.9808,0.1379,-0.2706,-0.9239,0.2706,-0.2706,-0.9239,0.2706,-0.1379,-0.9808,0.1379,-0.1622,-0.9808,0.1084,-0.2706,-0.9239,0.2706,-0.1622,-0.9808,0.1084,-0.3182,-0.9239,0.2126,-0.3182,-0.9239,0.2126,-0.1622,-0.9808,0.1084,-0.1802,-0.9808,0.0747,-0.3182,-0.9239,0.2126,-0.1802,-0.9808,0.0747,-0.3536,-0.9239,0.1464,-0.3536,-0.9239,0.1464,-0.1802,-0.9808,0.0747,-0.1913,-0.9808,0.0381,-0.3536,-0.9239,0.1464,-0.1913,-0.9808,0.0381,-0.3753,-0.9239,0.0747,-0.3753,-0.9239,0.0747,-0.1913,-0.9808,0.0381,-0.1951,-0.9808,0.0,-0.3753,-0.9239,0.0747,-0.1951,-0.9808,0.0,-0.3827,-0.9239,0.0,-0.3827,-0.9239,0.0,-0.1951,-0.9808,0.0,-0.1913,-0.9808,-0.0381,-0.3827,-0.9239,0.0,-0.1913,-0.9808,-0.0381,-0.3753,-0.9239,-0.0747,-0.3753,-0.9239,-0.0747,-0.1913,-0.9808,-0.0381,-0.1802,-0.9808,-0.0747,-0.3753,-0.9239,-0.0747,-0.1802,-0.9808,-0.0747,-0.3536,-0.9239,-0.1464,-0.3536,-0.9239,-0.1464,-0.1802,-0.9808,-0.0747,-0.1622,-0.9808,-0.1084,-0.3536,-0.9239,-0.1464,-0.1622,-0.9808,-0.1084,-0.3182,-0.9239,-0.2126,-0.3182,-0.9239,-0.2126,-0.1622,-0.9808,-0.1084,-0.1379,-0.9808,-0.1379,-0.3182,-0.9239,-0.2126,-0.1379,-0.9808,-0.1379,-0.2706,-0.9239,-0.2706,-0.2706,-0.9239,-0.2706,-0.1379,-0.9808,-0.1379,-0.1084,-0.9808,-0.1622,-0.2706,-0.9239,-0.2706,-0.1084,-0.9808,-0.1622,-0.2126,-0.9239,-0.3182,-0.2126,-0.9239,-0.3182,-0.1084,-0.9808,-0.1622,-0.0747,-0.9808,-0.1802,-0.2126,-0.9239,-0.3182,-0.0747,-0.9808,-0.1802,-0.1464,-0.9239,-0.3536,-0.1464,-0.9239,-0.3536,-0.0747,-0.9808,-0.1802,-0.0381,-0.9808,-0.1913,-0.1464,-0.9239,-0.3536,-0.0381,-0.9808,-0.1913,-0.0747,-0.9239,-0.3753,-0.0747,-0.9239,-0.3753,-0.0381,-0.9808,-0.1913,0.0,-0.9808,-0.1951,-0.0747,-0.9239,-0.3753,0.0,-0.9808,-0.1951,0.0,-0.9239,-0.3827,0.0,-0.9239,-0.3827,0.0,-0.9808,-0.1951,0.0381,-0.9808,-0.1913,0.0,-0.9239,-0.3827,0.0381,-0.9808,-0.1913,0.0747,-0.9239,-0.3753,0.0747,-0.9239,-0.3753,0.0381,-0.9808,-0.1913,0.0747,-0.9808,-0.1802,0.0747,-0.9239,-0.3753,0.0747,-0.9808,-0.1802,0.1464,-0.9239,-0.3536,0.1464,-0.9239,-0.3536,0.0747,-0.9808,-0.1802,0.1084,-0.9808,-0.1622,0.1464,-0.9239,-0.3536,0.1084,-0.9808,-0.1622,0.2126,-0.9239,-0.3182,0.2126,-0.9239,-0.3182,0.1084,-0.9808,-0.1622,0.1379,-0.9808,-0.1379,0.2126,-0.9239,-0.3182,0.1379,-0.9808,-0.1379,0.2706,-0.9239,-0.2706,0.2706,-0.9239,-0.2706,0.1379,-0.9808,-0.1379,0.1622,-0.9808,-0.1084,0.2706,-0.9239,-0.2706,0.1622,-0.9808,-0.1084,0.3182,-0.9239,-0.2126,0.3182,-0.9239,-0.2126,0.1622,-0.9808,-0.1084,0.1802,-0.9808,-0.0747,0.3182,-0.9239,-0.2126,0.1802,-0.9808,-0.0747,0.3536,-0.9239,-0.1464,0.3536,-0.9239,-0.1464,0.1802,-0.9808,-0.0747,0.1913,-0.9808,-0.0381,0.3536,-0.9239,-0.1464,0.1913,-0.9808,-0.0381,0.3753,-0.9239,-0.0747,0.3753,-0.9239,-0.0747,0.1913,-0.9808,-0.0381,0.1951,-0.9808,0.0,0.3753,-0.9239,-0.0747,0.1951,-0.9808,0.0,0.3827,-0.9239,0.0,0.3827,-0.9239,0.0,0.1951,-0.9808,0.0,0.1913,-0.9808,0.0381,0.3827,-0.9239,0.0,0.1913,-0.9808,0.0381,0.3753,-0.9239,0.0747,0.3753,-0.9239,0.0747,0.1913,-0.9808,0.0381,0.1802,-0.9808,0.0747,0.3753,-0.9239,0.0747,0.1802,-0.9808,0.0747,0.3536,-0.9239,0.1464,0.3536,-0.9239,0.1464,0.1802,-0.9808,0.0747,0.1622,-0.9808,0.1084,0.3536,-0.9239,0.1464,0.1622,-0.9808,0.1084,0.3182,-0.9239,0.2126,0.3182,-0.9239,0.2126,0.1622,-0.9808,0.1084,0.1379,-0.9808,0.1379,0.3182,-0.9239,0.2126,0.1379,-0.9808,0.1379,0.2706,-0.9239,0.2706,0.2706,-0.9239,0.2706,0.1379,-0.9808,0.1379,0.1084,-0.9808,0.1622,0.2706,-0.9239,0.2706,0.1084,-0.9808,0.1622,0.2126,-0.9239,0.3182,0.2126,-0.9239,0.3182,0.1084,-0.9808,0.1622,0.0747,-0.9808,0.1802,0.2126,-0.9239,0.3182,0.0747,-0.9808,0.1802,0.1464,-0.9239,0.3536,0.1464,-0.9239,0.3536,0.0747,-0.9808,0.1802,0.0381,-0.9808,0.1913,0.1464,-0.9239,0.3536,0.0381,-0.9808,0.1913,0.0747,-0.9239,0.3753,0.0747,-0.9239,0.3753,0.0381,-0.9808,0.1913,0.0,-0.9808,0.1951,0.0747,-0.9239,0.3753,0.0,-0.9808,0.1951,0.0,-0.9239,0.3827,0.0,-1.0,0.0,-0.0381,-0.9808,0.1913,0.0,-0.9808,0.1951,0.0,-1.0,0.0,-0.0747,-0.9808,0.1802,-0.0381,-0.9808,0.1913,0.0,-1.0,0.0,-0.1084,-0.9808,0.1622,-0.0747,-0.9808,0.1802,0.0,-1.0,0.0,-0.1379,-0.9808,0.1379,-0.1084,-0.9808,0.1622,0.0,-1.0,0.0,-0.1622,-0.9808,0.1084,-0.1379,-0.9808,0.1379,0.0,-1.0,0.0,-0.1802,-0.9808,0.0747,-0.1622,-0.9808,0.1084,0.0,-1.0,0.0,-0.1913,-0.9808,0.0381,-0.1802,-0.9808,0.0747,0.0,-1.0,0.0,-0.1951,-0.9808,0.0,-0.1913,-0.9808,0.0381,0.0,-1.0,0.0,-0.1913,-0.9808,-0.0381,-0.1951,-0.9808,0.0,0.0,-1.0,0.0,-0.1802,-0.9808,-0.0747,-0.1913,-0.9808,-0.0381,0.0,-1.0,0.0,-0.1622,-0.9808,-0.1084,-0.1802,-0.9808,-0.0747,0.0,-1.0,0.0,-0.1379,-0.9808,-0.1379,-0.1622,-0.9808,-0.1084,0.0,-1.0,0.0,-0.1084,-0.9808,-0.1622,-0.1379,-0.9808,-0.1379,0.0,-1.0,0.0,-0.0747,-0.9808,-0.1802,-0.1084,-0.9808,-0.1622,0.0,-1.0,0.0,-0.0381,-0.9808,-0.1913,-0.0747,-0.9808,-0.1802,0.0,-1.0,0.0,0.0,-0.9808,-0.1951,-0.0381,-0.9808,-0.1913,0.0,-1.0,0.0,0.0381,-0.9808,-0.1913,0.0,-0.9808,-0.1951,0.0,-1.0,0.0,0.0747,-0.9808,-0.1802,0.0381,-0.9808,-0.1913,0.0,-1.0,0.0,0.1084,-0.9808,-0.1622,0.0747,-0.9808,-0.1802,0.0,-1.0,0.0,0.1379,-0.9808,-0.1379,0.1084,-0.9808,-0.1622,0.0,-1.0,0.0,0.1622,-0.9808,-0.1084,0.1379,-0.9808,-0.1379,0.0,-1.0,0.0,0.1802,-0.9808,-0.0747,0.1622,-0.9808,-0.1084,0.0,-1.0,0.0,0.1913,-0.9808,-0.0381,0.1802,-0.9808,-0.0747,0.0,-1.0,0.0,0.1951,-0.9808,0.0,0.1913,-0.9808,-0.0381,0.0,-1.0,0.0,0.1913,-0.9808,0.0381,0.1951,-0.9808,0.0,0.0,-1.0,0.0,0.1802,-0.9808,0.0747,0.1913,-0.9808,0.0381,0.0,-1.0,0.0,0.1622,-0.9808,0.1084,0.1802,-0.9808,0.0747,0.0,-1.0,0.0,0.1379,-0.9808,0.1379,0.1622,-0.9808,0.1084,0.0,-1.0,0.0,0.1084,-0.9808,0.1622,0.1379,-0.9808,0.1379,0.0,-1.0,0.0,0.0747,-0.9808,0.1802,0.1084,-0.9808,0.1622,0.0,-1.0,0.0,0.0381,-0.9808,0.1913,0.0747,-0.9808,0.1802,0.0,-1.0,0.0,0.0,-0.9808,0.1951,0.0381,-0.9808,0.1913],"normals":[0.0,1.0,0.0,0.0,0.9796,0.201,-0.0392,0.9796,0.1971,0.0,1.0,0.0,-0.0392,0.9796,0.1971,-0.0769,0.9796,0.1857,0.0,1.0,0.0,-0.0769,0.9796,0.1857,-0.1117,0.9796,0.1671,0.0,1.0,0.0,-0.1117,0.9796,0.1671,-0.1421,0.9796,0.1421,0.0,1.0,0.0,-0.1421,0.9796,0.1421,-0.1671,0.9796,0.1117,0.0,1.0,0.0,-0.1671,0.9796,0.1117,-0.1857,0.9796,0.0769,0.0,1.0,0.0,-0.1857,0.9796,0.0769,-0.1971,0.9796,0.0392,0.0,1.0,0.0,-0.1971,0.9796,0.0392,-0.201,0.9796,0.0,0.0,1.0,0.0,-0.201,0.9796,0.0,-0.1971,0.9796,-0.0392,0.0,1.0,0.0,-0.1971,0.9796,-0.0392,-0.1857,0.9796,-0.0769,0.0,1.0,0.0,-0.1857,0.9796,-0.0769,-0.1671,0.9796,-0.1117,0.0,1.0,0.0,-0.1671,0.9796,-0.1117,-0.1421,0.9796,-0.1421,0.0,1.0,0.0,-0.1421,0.9796,-0.1421,-0.1117,0.9796,-0.1671,0.0,1.0,0.0,-0.1117,0.9796,-0.1671,-0.0769,0.9796,-0.1857,0.0,1.0,0.0,-0.0769,0.9796,-0.1857,-0.0392,0.9796,-0.1971,0.0,1.0,0.0,-0.0392,0.9796,-0.1971,0.0,0.9796,-0.201,0.0,1.0,0.0,0.0,0.9796,-0.201,0.0392,0.9796,-0.1971,0.0,1.0,0.0,0.0392,0.9796,-0.1971,0.0769,0.9796,-0.1857,0.0,1.0,0.0,0.0769,0.9796,-0.1857,0.1117,0.9796,-0.1671,0.0,1.0,0.0,0.1117,0.9796,-0.1671,0.1421,0.9796,-0.1421,0.0,1.0,0.0,0.1421,0.9796,-0.1421,0.1671,0.9796,-0.1117,0.0,1.0,0.0,0.1671,0.9796,-0.1117,0.1857,0.9796,-0.0769,0.0,1.0,0.0,0.1857,0.9796,-0.0769,0.1971,0.9796,-0.0392,0.0,1.0,0.0,0.1971,0.9796,-0.0392,0.201,0.9796,0.0,0.0,1.0,0.0,0.201,0.9796,0.0,0.1971,0.9796,0.0392,0.0,1.0,0.0,0.1971,0.9796,0.0392,0.1857,0.9796,0.0769,0.0,1.0,0.0,0.1857,0.9796,0.0769,0.1671,0.9796,0.1117,0.0,1.0,0.0,0.1671,0.9796,0.1117,0.1421,0.9796,0.1421,0.0,1.0,0.0,0.1421,0.9796,0.1421,0.1117,0.9796,0.1671,0.0,1.0,0.0,0.1117,0.9796,0.1671,0.0769,0.9796,0.1857,0.0,1.0,0.0,0.0769,0.9796,0.1857,0.0392,0.9796,0.1971,0.0,1.0,0.0,0.0392,0.9796,0.1971,0.0,0.9796,0.201,0.0,0.9796,0.201,0.0,0.9217,0.3879,-0.0757,0.9217,0.3804,0.0,0.9796,0.201,-0.0757,0.9217,0.3804,-0.0392,0.9796,0.1971,-0.0392,0.9796,0.1971,-0.0757,0.9217,0.3804,-0.1484,0.9217,0.3584,-0.0392,0.9796,0.1971,-0.1484,0.9217,0.3584,-0.0769,0.9796,0.1857,-0.0769,0.9796,0.1857,-0.1484,0.9217,0.3584,-0.2155,0.9217,0.3225,-0.0769,0.9796,0.1857,-0.2155,0.9217,0.3225,-0.1117,0.9796,0.1671,-0.1117,0.9796,0.1671,-0.2155,0.9217,0.3225,-0.2743,0.9217,0.2743,-0.1117,0.9796,0.1671,-0.2743,0.9217,0.2743,-0.1421,0.9796,0.1421,-0.1421,0.9796,0.1421,-0.2743,0.9217,0.2743,-0.3225,0.9217,0.2155,-0.1421,0.9796,0.1421,-0.3225,0.9217,0.2155,-0.1671,0.9796,0.1117,-0.1671,0.9796,0.1117,-0.3225,0.9217,0.2155,-0.3584,0.9217,0.1484,-0.1671,0.9796,0.1117,-0.3584,0.9217,0.1484,-0.1857,0.9796,0.0769,-0.1857,0.9796,0.0769,-0.3584,0.9217,0.1484,-0.3804,0.9217,0.0757,-0.1857,0.9796,0.0769,-0.3804,0.9217,0.0757,-0.1971,0.9796,0.0392,-0.1971,0.9796,0.0392,-0.3804,0.9217,0.0757,-0.3879,0.9217,0.0,-0.1971,0.9796,0.0392,-0.3879,0.9217,0.0,-0.201,0.9796,0.0,-0.201,0.9796,0.0,-0.3879,0.9217,0.0,-0.3804,0.9217,-0.0757,-0.201,0.9796,0.0,-0.3804,0.9217,-0.0757,-0.1971,0.9796,-0.0392,-0.1971,0.9796,-0.0392,-0.3804,0.9217,-0.0757,-0.3584,0.9217,-0.1484,-0.1971,0.9796,-0.0392,-0.3584,0.9217,-0.1484,-0.1857,0.9796,-0.0769,-0.1857,0.9796,-0.0769,-0.3584,0.9217,-0.1484,-0.3225,0.9217,-0.2155,-0.1857,0.9796,-0.0769,-0.3225,0.9217,-0.2155,-0.1671,0.9796,-0.1117,-0.1671,0.9796,-0.1117,-0.3225,0.9217,-0.2155,-0.2743,0.9217,-0.2743,-0.1671,0.9796,-0.1117,-0.2743,0.9217,-0.2743,-0.1421,0.9796,-0.1421,-0.1421,0.9796,-0.1421,-0.2743,0.9217,-0.2743,-0.2155,0.9217,-0.3225,-0.1421,0.9796,-0.1421,-0.2155,0.9217,-0.3225,-0.1117,0.9796,-0.1671,-0.1117,0.9796,-0.1671,-0.2155,0.9217,-0.3225,-0.1484,0.9217,-0.3584,-0.1117,0.9796,-0.1671,-0.1484,0.9217,-0.3584,-0.0769,0.9796,-0.1857,-0.0769,0.9796,-0.1857,-0.1484,0.9217,-0.3584,-0.0757,0.9217,-0.3804,-0.0769,0.9796,-0.1857,-0.0757,0.9217,-0.3804,-0.0392,0.9796,-0.1971,-0.0392,0.9796,-0.1971,-0.0757,0.9217,-0.3804,0.0,0.9217,-0.3879,-0.0392,0.9796,-0.1971,0.0,0.9217,-0.3879,0.0,0.9796,-0.201,0.0,0.9796,-0.201,0.0,0.9217,-0.3879,0.0757,0.9217,-0.3804,0.0,0.9796,-0.201,0.0757,0.9217,-0.3804,0.0392,0.9796,-0.1971,0.0392,0.9796,-0.1971,0.0757,0.9217,-0.3804,0.1484,0.9217,-0.3584,0.0392,0.9796,-0.1971,0.1484,0.9217,-0.3584,0.0769,0.9796,-0.1857,0.0769,0.9796,-0.1857,0.1484,0.9217,-0.3584,0.2155,0.9217,-0.3225,0.0769,0.9796,-0.1857,0.2155,0.9217,-0.3225,0.1117,0.9796,-0.1671,0.1117,0.9796,-0.1671,0.2155,0.9217,-0.3225,0.2743,0.9217,-0.2743,0.1117,0.9796,-0.1671,0.2743,0.9217,-0.2743,0.1421,0.9796,-0.1421,0.1421,0.9796,-0.1421,0.2743,0.9217,-0.2743,0.3225,0.9217,-0.2155,0.1421,0.9796,-0.1421,0.3225,0.9217,-0.2155,0.1671,0.9796,-0.1117,0.1671,0.9796,-0.1117,0.3225,0.9217,-0.2155,0.3584,0.9217,-0.1484,0.1671,0.9796,-0.1117,0.3584,0.9217,-0.1484,0.1857,0.9796,-0.0769,0.1857,0.9796,-0.0769,0.3584,0.9217,-0.1484,0.3804,0.9217,-0.0757,0.1857,0.9796,-0.0769,0.3804,0.9217,-0.0757,0.1971,0.9796,-0.0392,0.1971,0.9796,-0.0392,0.3804,0.9217,-0.0757,0.3879,0.9217,0.0,0.1971,0.9796,-0.0392,0.3879,0.9217,0.0,0.201,0.9796,0.0,0.201,0.9796,0.0,0.3879,0.9217,0.0,0.3804,0.9217,0.0757,0.201,0.9796,0.0,0.3804,0.9217,0.0757,0.1971,0.9796,0.0392,0.1971,0.9796,0.0392,0.3804,0.9217,0.0757,0.3584,0.9217,0.1484,0.1971,0.9796,0.0392,0.3584,0.9217,0.1484,0.1857,0.9796,0.0769,0.1857,0.9796,0.0769,0.3584,0.9217,0.1484,0.3225,0.9217,0.2155,0.1857,0.9796,0.0769,0.3225,0.9217,0.2155,0.1671,0.9796,0.1117,0.1671,0.9796,0.1117,0.3225,0.9217,0.2155,0.2743,0.9217,0.2743,0.1671,0.9796,0.1117,0.2743,0.9217,0.2743,0.1421,0.9796,0.1421,0.1421,0.9796,0.1421,0.2743,0.9217,0.2743,0.2155,0.9217,0.3225,0.1421,0.9796,0.1421,0.2155,0.9217,0.3225,0.1117,0.9796,0.1671,0.1117,0.9796,0.1671,0.2155,0.9217,0.3225,0.1484,0.9217,0.3584,0.1117,0.9796,0.1671,0.1484,0.9217,0.3584,0.0769,0.9796,0.1857,0.0769,0.9796,0.1857,0.1484,0.9217,0.3584,0.0757,0.9217,0.3804,0.0769,0.9796,0.1857,0.0757,0.9217,0.3804,0.0392,0.9796,0.1971,0.0392,0.9796,0.1971,0.0757,0.9217,0.3804,0.0,0.9217,0.3879,0.0392,0.9796,0.1971,0.0,0.9217,0.3879,0.0,0.9796,0.201,0.0,0.9217,0.3879,0.0,0.8286,0.5598,-0.1092,0.8286,0.549,0.0,0.9217,0.3879,-0.1092,0.8286,0.549,-0.0757,0.9217,0.3804,-0.0757,0.9217,0.3804,-0.1092,0.8286,0.549,-0.2142,0.8286,0.5172,-0.0757,0.9217,0.3804,-0.2142,0.8286,0.5172,-0.1484,0.9217,0.3584,-0.1484,0.9217,0.3584,-0.2142,0.8286,0.5172,-0.311,0.8286,0.4654,-0.1484,0.9217,0.3584,-0.311,0.8286,0.4654,-0.2155,0.9217,0.3225,-0.2155,0.9217,0.3225,-0.311,0.8286,0.4654,-0.3958,0.8286,0.3958,-0.2155,0.9217,0.3225,-0.3958,0.8286,0.3958,-0.2743,0.9217,0.2743,-0.2743,0.9217,0.2743,-0.3958,0.8286,0.3958,-0.4654,0.8286,0.311,-0.2743,0.9217,0.2743,-0.4654,0.8286,0.311,-0.3225,0.9217,0.2155,-0.3225,0.9217,0.2155,-0.4654,0.8286,0.311,-0.5172,0.8286,0.2142,-0.3225,0.9217,0.2155,-0.5172,0.8286,0.2142,-0.3584,0.9217,0.1484,-0.3584,0.9217,0.1484,-0.5172,0.8286,0.2142,-0.549,0.8286,0.1092,-0.3584,0.9217,0.1484,-0.549,0.8286,0.1092,-0.3804,0.9217,0.0757,-0.3804,0.9217,0.0757,-0.549,0.8286,0.1092,-0.5598,0.8286,0.0,-0.3804,0.9217,0.0757,-0.5598,0.8286,0.0,-0.3879,0.9217,0.0,-0.3879,0.9217,0.0,-0.5598,0.8286,0.0,-0.549,0.8286,-0.1092,-0.3879,0.9217,0.0,-0.549,0.8286,-0.1092,-0.3804,0.9217,-0.0757,-0.3804,0.9217,-0.0757,-0.549,0.8286,-0.1092,-0.5172,0.8286,-0.2142,-0.3804,0.9217,-0.0757,-0.5172,0.8286,-0.2142,-0.3584,0.9217,-0.1484,-0.3584,0.9217,-0.1484,-0.5172,0.8286,-0.2142,-0.4654,0.8286,-0.311,-0.3584,0.9217,-0.1484,-0.4654,0.8286,-0.311,-0.3225,0.9217,-0.2155,-0.3225,0.9217,-0.2155,-0.4654,0.8286,-0.311,-0.3958,0.8286,-0.3958,-0.3225,0.9217,-0.2155,-0.3958,0.8286,-0.3958,-0.2743,0.9217,-0.2743,-0.2743,0.9217,-0.2743,-0.3958,0.8286,-0.3958,-0.311,0.8286,-0.4654,-0.2743,0.9217,-0.2743,-0.311,0.8286,-0.4654,-0.2155,0.9217,-0.3225,-0.2155,0.9217,-0.3225,-0.311,0.8286,-0.4654,-0.2142,0.8286,-0.5172,-0.2155,0.9217,-0.3225,-0.2142,0.8286,-0.5172,-0.1484,0.9217,-0.3584,-0.1484,0.9217,-0.3584,-0.2142,0.8286,-0.5172,-0.1092,0.8286,-0.549,-0.1484,0.9217,-0.3584,-0.1092,0.8286,-0.549,-0.0757,0.9217,-0.3804,-0.0757,0.9217,-0.3804,-0.1092,0.8286,-0.549,0.0,0.8286,-0.5598,-0.0757,0.9217,-0.3804,0.0,0.8286,-0.5598,0.0,0.9217,-0.3879,0.0,0.9217,-0.3879,0.0,0.8286,-0.5598,0.1092,0.8286,-0.549,0.0,0.9217,-0.3879,0.1092,0.8286,-0.549,0.0757,0.9217,-0.3804,0.0757,0.9217,-0.3804,0.1092,0.8286,-0.549,0.2142,0.8286,-0.5172,0.0757,0.9217,-0.3804,0.2142,0.8286,-0.5172,0.1484,0.9217,-0.3584,0.1484,0.9217,-0.3584,0.2142,0.8286,-0.5172,0.311,0.8286,-0.4654,0.1484,0.9217,-0.3584,0.311,0.8286,-0.4654,0.2155,0.9217,-0.3225,0.2155,0.9217,-0.3225,0.311,0.8286,-0.4654,0.3958,0.8286,-0.3958,0.2155,0.9217,-0.3225,0.3958,0.8286,-0.3958,0.2743,0.9217,-0.2743,0.2743,0.9217,-0.2743,0.3958,0.8286,-0.3958,0.4654,0.8286,-0.311,0.2743,0.9217,-0.2743,0.4654,0.8286,-0.311,0.3225,0.9217,-0.2155,0.3225,0.9217,-0.2155,0.4654,0.8286,-0.311,0.5172,0.8286,-0.2142,0.3225,0.9217,-0.2155,0.5172,0.8286,-0.2142,0.3584,0.9217,-0.1484,0.3584,0.9217,-0.1484,0.5172,0.8286,-0.2142,0.549,0.8286,-0.1092,0.3584,0.9217,-0.1484,0.549,0.8286,-0.1092,0.3804,0.9217,-0.0757,0.3804,0.9217,-0.0757,0.549,0.8286,-0.1092,0.5598,0.8286,0.0,0.3804,0.9217,-0.0757,0.5598,0.8286,0.0,0.3879,0.9217,0.0,0.3879,0.9217,0.0,0.5598,0.8286,0.0,0.549,0.8286,0.1092,0.3879,0.9217,0.0,0.549,0.8286,0.1092,0.3804,0.9217,0.0757,0.3804,0.9217,0.0757,0.549,0.8286,0.1092,0.5172,0.8286,0.2142,0.3804,0.9217,0.0757,0.5172,0.8286,0.2142,0.3584,0.9217,0.1484,0.3584,0.9217,0.1484,0.5172,0.8286,0.2142,0.4654,0.8286,0.311,0.3584,0.9217,0.1484,0.4654,0.8286,0.311,0.3225,0.9217,0.2155,0.3225,0.9217,0.2155,0.4654,0.8286,0.311,0.3958,0.8286,0.3958,0.3225,0.9217,0.2155,0.3958,0.8286,0.3958,0.2743,0.9217,0.2743,0.2743,0.9217,0.2743,0.3958,0.8286,0.3958,0.311,0.8286,0.4654,0.2743,0.9217,0.2743,0.311,0.8286,0.4654,0.2155,0.9217,0.3225,0.2155,0.9217,0.3225,0.311,0.8286,0.4654,0.2142,0.8286,0.5172,0.2155,0.9217,0.3225,0.2142,0.8286,0.5172,0.1484,0.9217,0.3584,0.1484,0.9217,0.3584,0.2142,0.8286,0.5172,0.1092,0.8286,0.549,0.1484,0.9217,0.3584,0.1092,0.8286,0.549,0.0757,0.9217,0.3804,0.0757,0.9217,0.3804,0.1092,0.8286,0.549,0.0,0.8286,0.5598,0.0757,0.9217,0.3804,0.0,0.8286,0.5598,0.0,0.9217,0.3879,0.0,0.8286,0.5598,0.0,0.7041,0.7101,-0.1385,0.7041,0.6965,0.0,0.8286,0.5598,-0.1385,0.7041,0.6965,-0.1092,0.8286,0.549,-0.1092,0.8286,0.549,-0.1385,0.7041,0.6965,-0.2718,0.7041,0.6561,-0.1092,0.8286,0.549,-0.2718,0.7041,0.6561,-0.2142,0.8286,0.5172,-0.2142,0.8286,0.5172,-0.2718,0.7041,0.6561,-0.3945,0.7041,0.5905,-0.2142,0.8286,0.5172,-0.3945,0.7041,0.5905,-0.311,0.8286,0.4654,-0.311,0.8286,0.4654,-0.3945,0.7041,0.5905,-0.5021,0.7041,0.5021,-0.311,0.8286,0.4654,-0.5021,0.7041,0.5021,-0.3958,0.8286,0.3958,-0.3958,0.8286,0.3958,-0.5021,0.7041,0.5021,-0.5905,0.7041,0.3945,-0.3958,0.8286,0.3958,-0.5905,0.7041,0.3945,-0.4654,0.8286,0.311,-0.4654,0.8286,0.311,-0.5905,0.7041,0.3945,-0.6561,0.7041,0.2718,-0.4654,0.8286,0.311,-0.6561,0.7041,0.2718,-0.5172,0.8286,0.2142,-0.5172,0.8286,0.2142,-0.6561,0.7041,0.2718,-0.6965,0.7041,0.1385,-0.5172,0.8286,0.2142,-0.6965,0.7041,0.1385,-0.549,0.8286,0.1092,-0.549,0.8286,0.1092,-0.6965,0.7041,0.1385,-0.7101,0.7041,0.0,-0.549,0.8286,0.1092,-0.7101,0.7041,0.0,-0.5598,0.8286,0.0,-0.5598,0.8286,0.0,-0.7101,0.7041,0.0,-0.6965,0.7041,-0.1385,-0.5598,0.8286,0.0,-0.6965,0.7041,-0.1385,-0.549,0.8286,-0.1092,-0.549,0.8286,-0.1092,-0.6965,0.7041,-0.1385,-0.6561,0.7041,-0.2718,-0.549,0.8286,-0.1092,-0.6561,0.7041,-0.2718,-0.5172,0.8286,-0.2142,-0.5172,0.8286,-0.2142,-0.6561,0.7041,-0.2718,-0.5905,0.7041,-0.3945,-0.5172,0.8286,-0.2142,-0.5905,0.7041,-0.3945,-0.4654,0.8286,-0.311,-0.4654,0.8286,-0.311,-0.5905,0.7041,-0.3945,-0.5021,0.7041,-0.5021,-0.4654,0.8286,-0.311,-0.5021,0.7041,-0.5021,-0.3958,0.8286,-0.3958,-0.3958,0.8286,-0.3958,-0.5021,0.7041,-0.5021,-0.3945,0.7041,-0.5905,-0.3958,0.8286,-0.3958,-0.3945,0.7041,-0.5905,-0.311,0.8286,-0.4654,-0.311,0.8286,-0.4654,-0.3945,0.7041,-0.5905,-0.2718,0.7041,-0.6561,-0.311,0.8286,-0.4654,-0.2718,0.7041,-0.6561,-0.2142,0.8286,-0.5172,-0.2142,0.8286,-0.5172,-0.2718,0.7041,-0.6561,-0.1385,0.7041,-0.6965,-0.2142,0.8286,-0.5172,-0.1385,0.7041,-0.6965,-0.1092,0.8286,-0.549,-0.1092,0.8286,-0.549,-0.1385,0.7041,-0.6965,0.0,0.7041,-0.7101,-0.1092,0.8286,-0.549,0.0,0.7041,-0.7101,0.0,0.8286,-0.5598,0.0,0.8286,-0.5598,0.0,0.7041,-0.7101,0.1385,0.7041,-0.6965,0.0,0.8286,-0.5598,0.1385,0.7041,-0.6965,0.1092,0.8286,-0.549,0.1092,0.8286,-0.549,0.1385,0.7041,-0.6965,0.2718,0.7041,-0.6561,0.1092,0.8286,-0.549,0.2718,0.7041,-0.6561,0.2142,0.8286,-0.5172,0.2142,0.8286,-0.5172,0.2718,0.7041,-0.6561,0.3945,0.7041,-0.5905,0.2142,0.8286,-0.5172,0.3945,0.7041,-0.5905,0.311,0.8286,-0.4654,0.311,0.8286,-0.4654,0.3945,0.7041,-0.5905,0.5021,0.7041,-0.5021,0.311,0.8286,-0.4654,0.5021,0.7041,-0.5021,0.3958,0.8286,-0.3958,0.3958,0.8286,-0.3958,0.5021,0.7041,-0.5021,0.5905,0.7041,-0.3945,0.3958,0.8286,-0.3958,0.5905,0.7041,-0.3945,0.4654,0.8286,-0.311,0.4654,0.8286,-0.311,0.5905,0.7041,-0.3945,0.6561,0.7041,-0.2718,0.4654,0.8286,-0.311,0.6561,0.7041,-0.2718,0.5172,0.8286,-0.2142,0.5172,0.8286,-0.2142,0.6561,0.7041,-0.2718,0.6965,0.7041,-0.1385,0.5172,0.8286,-0.2142,0.6965,0.7041,-0.1385,0.549,0.8286,-0.1092,0.549,0.8286,-0.1092,0.6965,0.7041,-0.1385,0.7101,0.7041,0.0,0.549,0.8286,-0.1092,0.7101,0.7041,0.0,0.5598,0.8286,0.0,0.5598,0.8286,0.0,0.7101,0.7041,0.0,0.6965,0.7041,0.1385,0.5598,0.8286,0.0,0.6965,0.7041,0.1385,0.549,0.8286,0.1092,0.549,0.8286,0.1092,0.6965,0.7041,0.1385,0.6561,0.7041,0.2718,0.549,0.8286,0.1092,0.6561,0.7041,0.2718,0.5172,0.8286,0.2142,0.5172,0.8286,0.2142,0.6561,0.7041,0.2718,0.5905,0.7041,0.3945,0.5172,0.8286,0.2142,0.5905,0.7041,0.3945,0.4654,0.8286,0.311,0.4654,0.8286,0.311,0.5905,0.7041,0.3945,0.5021,0.7041,0.5021,0.4654,0.8286,0.311,0.5021,0.7041,0.5021,0.3958,0.8286,0.3958,0.3958,0.8286,0.3958,0.5021,0.7041,0.5021,0.3945,0.7041,0.5905,0.3958,0.8286,0.3958,0.3945,0.7041,0.5905,0.311,0.8286,0.4654,0.311,0.8286,0.4654,0.3945,0.7041,0.5905,0.2718,0.7041,0.6561,0.311,0.8286,0.4654,0.2718,0.7041,0.6561,0.2142,0.8286,0.5172,0.2142,0.8286,0.5172,0.2718,0.7041,0.6561,0.1385,0.7041,0.6965,0.2142,0.8286,0.5172,0.1385,0.7041,0.6965,0.1092,0.8286,0.549,0.1092,0.8286,0.549,0.1385,0.7041,0.6965,0.0,0.7041,0.7101,0.1092,0.8286,0.549,0.0,0.7041,0.7101,0.0,0.8286,0.5598,0.0,0.7041,0.7101,0.0,0.5528,0.8333,-0.1626,0.5528,0.8173,0.0,0.7041,0.7101,-0.1626,0.5528,0.8173,-0.1385,0.7041,0.6965,-0.1385,0.7041,0.6965,-0.1626,0.5528,0.8173,-0.3189,0.5528,0.7699,-0.1385,0.7041,0.6965,-0.3189,0.5528,0.7699,-0.2718,0.7041,0.6561,-0.2718,0.7041,0.6561,-0.3189,0.5528,0.7699,-0.463,0.5528,0.6929,-0.2718,0.7041,0.6561,-0.463,0.5528,0.6929,-0.3945,0.7041,0.5905,-0.3945,0.7041,0.5905,-0.463,0.5528,0.6929,-0.5893,0.5528,0.5893,-0.3945,0.7041,0.5905,-0.5893,0.5528,0.5893,-0.5021,0.7041,0.5021,-0.5021,0.7041,0.5021,-0.5893,0.5528,0.5893,-0.6929,0.5528,0.463,-0.5021,0.7041,0.5021,-0.6929,0.5528,0.463,-0.5905,0.7041,0.3945,-0.5905,0.7041,0.3945,-0.6929,0.5528,0.463,-0.7699,0.5528,0.3189,-0.5905,0.7041,0.3945,-0.7699,0.5528,0.3189,-0.6561,0.7041,0.2718,-0.6561,0.7041,0.2718,-0.7699,0.5528,0.3189,-0.8173,0.5528,0.1626,-0.6561,0.7041,0.2718,-0.8173,0.5528,0.1626,-0.6965,0.7041,0.1385,-0.6965,0.7041,0.1385,-0.8173,0.5528,0.1626,-0.8333,0.5528,0.0,-0.6965,0.7041,0.1385,-0.8333,0.5528,0.0,-0.7101,0.7041,0.0,-0.7101,0.7041,0.0,-0.8333,0.5528,0.0,-0.8173,0.5528,-0.1626,-0.7101,0.7041,0.0,-0.8173,0.5528,-0.1626,-0.6965,0.7041,-0.1385,-0.6965,0.7041,-0.1385,-0.8173,0.5528,-0.1626,-0.7699,0.5528,-0.3189,-0.6965,0.7041,-0.1385,-0.7699,0.5528,-0.3189,-0.6561,0.7041,-0.2718,-0.6561,0.7041,-0.2718,-0.7699,0.5528,-0.3189,-0.6929,0.5528,-0.463,-0.6561,0.7041,-0.2718,-0.6929,0.5528,-0.463,-0.5905,0.7041,-0.3945,-0.5905,0.7041,-0.3945,-0.6929,0.5528,-0.463,-0.5893,0.5528,-0.5893,-0.5905,0.7041,-0.3945,-0.5893,0.5528,-0.5893,-0.5021,0.7041,-0.5021,-0.5021,0.7041,-0.5021,-0.5893,0.5528,-0.5893,-0.463,0.5528,-0.6929,-0.5021,0.7041,-0.5021,-0.463,0.5528,-0.6929,-0.3945,0.7041,-0.5905,-0.3945,0.7041,-0.5905,-0.463,0.5528,-0.6929,-0.3189,0.5528,-0.7699,-0.3945,0.7041,-0.5905,-0.3189,0.5528,-0.7699,-0.2718,0.7041,-0.6561,-0.2718,0.7041,-0.6561,-0.3189,0.5528,-0.7699,-0.1626,0.5528,-0.8173,-0.2718,0.7041,-0.6561,-0.1626,0.5528,-0.8173,-0.1385,0.7041,-0.6965,-0.1385,0.7041,-0.6965,-0.1626,0.5528,-0.8173,0.0,0.5528,-0.8333,-0.1385,0.7041,-0.6965,0.0,0.5528,-0.8333,0.0,0.7041,-0.7101,0.0,0.7041,-0.7101,0.0,0.5528,-0.8333,0.1626,0.5528,-0.8173,0.0,0.7041,-0.7101,0.1626,0.5528,-0.8173,0.1385,0.7041,-0.6965,0.1385,0.7041,-0.6965,0.1626,0.5528,-0.8173,0.3189,0.5528,-0.7699,0.1385,0.7041,-0.6965,0.3189,0.5528,-0.7699,0.2718,0.7041,-0.6561,0.2718,0.7041,-0.6561,0.3189,0.5528,-0.7699,0.463,0.5528,-0.6929,0.2718,0.7041,-0.6561,0.463,0.5528,-0.6929,0.3945,0.7041,-0.5905,0.3945,0.7041,-0.5905,0.463,0.5528,-0.6929,0.5893,0.5528,-0.5893,0.3945,0.7041,-0.5905,0.5893,0.5528,-0.5893,0.5021,0.7041,-0.5021,0.5021,0.7041,-0.5021,0.5893,0.5528,-0.5893,0.6929,0.5528,-0.463,0.5021,0.7041,-0.5021,0.6929,0.5528,-0.463,0.5905,0.7041,-0.3945,0.5905,0.7041,-0.3945,0.6929,0.5528,-0.463,0.7699,0.5528,-0.3189,0.5905,0.7041,-0.3945,0.7699,0.5528,-0.3189,0.6561,0.7041,-0.2718,0.6561,0.7041,-0.2718,0.7699,0.5528,-0.3189,0.8173,0.5528,-0.1626,0.6561,0.7041,-0.2718,0.8173,0.5528,-0.1626,0.6965,0.7041,-0.1385,0.6965,0.7041,-0.1385,0.8173,0.5528,-0.1626,0.8333,0.5528,0.0,0.6965,0.7041,-0.1385,0.8333,0.5528,0.0,0.7101,0.7041,0.0,0.7101,0.7041,0.0,0.8333,0.5528,0.0,0.8173,0.5528,0.1626,0.7101,0.7041,0.0,0.8173,0.5528,0.1626,0.6965,0.7041,0.1385,0.6965,0.7041,0.1385,0.8173,0.5528,0.1626,0.7699,0.5528,0.3189,0.6965,0.7041,0.1385,0.7699,0.5528,0.3189,0.6561,0.7041,0.2718,0.6561,0.7041,0.2718,0.7699,0.5528,0.3189,0.6929,0.5528,0.463,0.6561,0.7041,0.2718,0.6929,0.5528,0.463,0.5905,0.7041,0.3945,0.5905,0.7041,0.3945,0.6929,0.5528,0.463,0.5893,0.5528,0.5893,0.5905,0.7041,0.3945,0.5893,0.5528,0.5893,0.5021,0.7041,0.5021,0.5021,0.7041,0.5021,0.5893,0.5528,0.5893,0.463,0.5528,0.6929,0.5021,0.7041,0.5021,0.463,0.5528,0.6929,0.3945,0.7041,0.5905,0.3945,0.7041,0.5905,0.463,0.5528,0.6929,0.3189,0.5528,0.7699,0.3945,0.7041,0.5905,0.3189,0.5528,0.7699,0.2718,0.7041,0.6561,0.2718,0.7041,0.6561,0.3189,0.5528,0.7699,0.1626,0.5528,0.8173,0.2718,0.7041,0.6561,0.1626,0.5528,0.8173,0.1385,0.7041,0.6965,0.1385,0.7041,0.6965,0.1626,0.5528,0.8173,0.0,0.5528,0.8333,0.1385,0.7041,0.6965,0.0,0.5528,0.8333,0.0,0.7041,0.7101,0.0,0.5528,0.8333,0.0,0.3805,0.9248,-0.1804,0.3805,0.907,0.0,0.5528,0.8333,-0.1804,0.3805,0.907,-0.1626,0.5528,0.8173,-0.1626,0.5528,0.8173,-0.1804,0.3805,0.907,-0.3539,0.3805,0.8544,-0.1626,0.5528,0.8173,-0.3539,0.3805,0.8544,-0.3189,0.5528,0.7699,-0.3189,0.5528,0.7699,-0.3539,0.3805,0.8544,-0.5138,0.3805,0.7689,-0.3189,0.5528,0.7699,-0.5138,0.3805,0.7689,-0.463,0.5528,0.6929,-0.463,0.5528,0.6929,-0.5138,0.3805,0.7689,-0.6539,0.3805,0.6539,-0.463,0.5528,0.6929,-0.6539,0.3805,0.6539,-0.5893,0.5528,0.5893,-0.5893,0.5528,0.5893,-0.6539,0.3805,0.6539,-0.7689,0.3805,0.5138,-0.5893,0.5528,0.5893,-0.7689,0.3805,0.5138,-0.6929,0.5528,0.463,-0.6929,0.5528,0.463,-0.7689,0.3805,0.5138,-0.8544,0.3805,0.3539,-0.6929,0.5528,0.463,-0.8544,0.3805,0.3539,-0.7699,0.5528,0.3189,-0.7699,0.5528,0.3189,-0.8544,0.3805,0.3539,-0.907,0.3805,0.1804,-0.7699,0.5528,0.3189,-0.907,0.3805,0.1804,-0.8173,0.5528,0.1626,-0.8173,0.5528,0.1626,-0.907,0.3805,0.1804,-0.9248,0.3805,0.0,-0.8173,0.5528,0.1626,-0.9248,0.3805,0.0,-0.8333,0.5528,0.0,-0.8333,0.5528,0.0,-0.9248,0.3805,0.0,-0.907,0.3805,-0.1804,-0.8333,0.5528,0.0,-0.907,0.3805,-0.1804,-0.8173,0.5528,-0.1626,-0.8173,0.5528,-0.1626,-0.907,0.3805,-0.1804,-0.8544,0.3805,-0.3539,-0.8173,0.5528,-0.1626,-0.8544,0.3805,-0.3539,-0.7699,0.5528,-0.3189,-0.7699,0.5528,-0.3189,-0.8544,0.3805,-0.3539,-0.7689,0.3805,-0.5138,-0.7699,0.5528,-0.3189,-0.7689,0.3805,-0.5138,-0.6929,0.5528,-0.463,-0.6929,0.5528,-0.463,-0.7689,0.3805,-0.5138,-0.6539,0.3805,-0.6539,-0.6929,0.5528,-0.463,-0.6539,0.3805,-0.6539,-0.5893,0.5528,-0.5893,-0.5893,0.5528,-0.5893,-0.6539,0.3805,-0.6539,-0.5138,0.3805,-0.7689,-0.5893,0.5528,-0.5893,-0.5138,0.3805,-0.7689,-0.463,0.5528,-0.6929,-0.463,0.5528,-0.6929,-0.5138,0.3805,-0.7689,-0.3539,0.3805,-0.8544,-0.463,0.5528,-0.6929,-0.3539,0.3805,-0.8544,-0.3189,0.5528,-0.7699,-0.3189,0.5528,-0.7699,-0.3539,0.3805,-0.8544,-0.1804,0.3805,-0.907,-0.3189,0.5528,-0.7699,-0.1804,0.3805,-0.907,-0.1626,0.5528,-0.8173,-0.1626,0.5528,-0.8173,-0.1804,0.3805,-0.907,0.0,0.3805,-0.9248,-0.1626,0.5528,-0.8173,0.0,0.3805,-0.9248,0.0,0.5528,-0.8333,0.0,0.5528,-0.8333,0.0,0.3805,-0.9248,0.1804,0.3805,-0.907,0.0,0.5528,-0.8333,0.1804,0.3805,-0.907,0.1626,0.5528,-0.8173,0.1626,0.5528,-0.8173,0.1804,0.3805,-0.907,0.3539,0.3805,-0.8544,0.1626,0.5528,-0.8173,0.3539,0.3805,-0.8544,0.3189,0.5528,-0.7699,0.3189,0.5528,-0.7699,0.3539,0.3805,-0.8544,0.5138,0.3805,-0.7689,0.3189,0.5528,-0.7699,0.5138,0.3805,-0.7689,0.463,0.5528,-0.6929,0.463,0.5528,-0.6929,0.5138,0.3805,-0.7689,0.6539,0.3805,-0.6539,0.463,0.5528,-0.6929,0.6539,0.3805,-0.6539,0.5893,0.5528,-0.5893,0.5893,0.5528,-0.5893,0.6539,0.3805,-0.6539,0.7689,0.3805,-0.5138,0.5893,0.5528,-0.5893,0.7689,0.3805,-0.5138,0.6929,0.5528,-0.463,0.6929,0.5528,-0.463,0.7689,0.3805,-0.5138,0.8544,0.3805,-0.3539,0.6929,0.5528,-0.463,0.8544,0.3805,-0.3539,0.7699,0.5528,-0.3189,0.7699,0.5528,-0.3189,0.8544,0.3805,-0.3539,0.907,0.3805,-0.1804,0.7699,0.5528,-0.3189,0.907,0.3805,-0.1804,0.8173,0.5528,-0.1626,0.8173,0.5528,-0.1626,0.907,0.3805,-0.1804,0.9248,0.3805,0.0,0.8173,0.5528,-0.1626,0.9248,0.3805,0.0,0.8333,0.5528,0.0,0.8333,0.5528,0.0,0.9248,0.3805,0.0,0.907,0.3805,0.1804,0.8333,0.5528,0.0,0.907,0.3805,0.1804,0.8173,0.5528,0.1626,0.8173,0.5528,0.1626,0.907,0.3805,0.1804,0.8544,0.3805,0.3539,0.8173,0.5528,0.1626,0.8544,0.3805,0.3539,0.7699,0.5528,0.3189,0.7699,0.5528,0.3189,0.8544,0.3805,0.3539,0.7689,0.3805,0.5138,0.7699,0.5528,0.3189,0.7689,0.3805,0.5138,0.6929,0.5528,0.463,0.6929,0.5528,0.463,0.7689,0.3805,0.5138,0.6539,0.3805,0.6539,0.6929,0.5528,0.463,0.6539,0.3805,0.6539,0.5893,0.5528,0.5893,0.5893,0.5528,0.5893,0.6539,0.3805,0.6539,0.5138,0.3805,0.7689,0.5893,0.5528,0.5893,0.5138,0.3805,0.7689,0.463,0.5528,0.6929,0.463,0.5528,0.6929,0.5138,0.3805,0.7689,0.3539,0.3805,0.8544,0.463,0.5528,0.6929,0.3539,0.3805,0.8544,0.3189,0.5528,0.7699,0.3189,0.5528,0.7699,0.3539,0.3805,0.8544,0.1804,0.3805,0.907,0.3189,0.5528,0.7699,0.1804,0.3805,0.907,0.1626,0.5528,0.8173,0.1626,0.5528,0.8173,0.1804,0.3805,0.907,0.0,0.3805,0.9248,0.1626,0.5528,0.8173,0.0,0.3805,0.9248,0.0,0.5528,0.8333,0.0,0.3805,0.9248,0.0,0.1939,0.981,-0.1914,0.1939,0.9622,0.0,0.3805,0.9248,-0.1914,0.1939,0.9622,-0.1804,0.3805,0.907,-0.1804,0.3805,0.907,-0.1914,0.1939,0.9622,-0.3754,0.1939,0.9063,-0.1804,0.3805,0.907,-0.3754,0.1939,0.9063,-0.3539,0.3805,0.8544,-0.3539,0.3805,0.8544,-0.3754,0.1939,0.9063,-0.545,0.1939,0.8157,-0.3539,0.3805,0.8544,-0.545,0.1939,0.8157,-0.5138,0.3805,0.7689,-0.5138,0.3805,0.7689,-0.545,0.1939,0.8157,-0.6937,0.1939,0.6937,-0.5138,0.3805,0.7689,-0.6937,0.1939,0.6937,-0.6539,0.3805,0.6539,-0.6539,0.3805,0.6539,-0.6937,0.1939,0.6937,-0.8157,0.1939,0.545,-0.6539,0.3805,0.6539,-0.8157,0.1939,0.545,-0.7689,0.3805,0.5138,-0.7689,0.3805,0.5138,-0.8157,0.1939,0.545,-0.9063,0.1939,0.3754,-0.7689,0.3805,0.5138,-0.9063,0.1939,0.3754,-0.8544,0.3805,0.3539,-0.8544,0.3805,0.3539,-0.9063,0.1939,0.3754,-0.9622,0.1939,0.1914,-0.8544,0.3805,0.3539,-0.9622,0.1939,0.1914,-0.907,0.3805,0.1804,-0.907,0.3805,0.1804,-0.9622,0.1939,0.1914,-0.981,0.1939,0.0,-0.907,0.3805,0.1804,-0.981,0.1939,0.0,-0.9248,0.3805,0.0,-0.9248,0.3805,0.0,-0.981,0.1939,0.0,-0.9622,0.1939,-0.1914,-0.9248,0.3805,0.0,-0.9622,0.1939,-0.1914,-0.907,0.3805,-0.1804,-0.907,0.3805,-0.1804,-0.9622,0.1939,-0.1914,-0.9063,0.1939,-0.3754,-0.907,0.3805,-0.1804,-0.9063,0.1939,-0.3754,-0.8544,0.3805,-0.3539,-0.8544,0.3805,-0.3539,-0.9063,0.1939,-0.3754,-0.8157,0.1939,-0.545,-0.8544,0.3805,-0.3539,-0.8157,0.1939,-0.545,-0.7689,0.3805,-0.5138,-0.7689,0.3805,-0.5138,-0.8157,0.1939,-0.545,-0.6937,0.1939,-0.6937,-0.7689,0.3805,-0.5138,-0.6937,0.1939,-0.6937,-0.6539,0.3805,-0.6539,-0.6539,0.3805,-0.6539,-0.6937,0.1939,-0.6937,-0.545,0.1939,-0.8157,-0.6539,0.3805,-0.6539,-0.545,0.1939,-0.8157,-0.5138,0.3805,-0.7689,-0.5138,0.3805,-0.7689,-0.545,0.1939,-0.8157,-0.3754,0.1939,-0.9063,-0.5138,0.3805,-0.7689,-0.3754,0.1939,-0.9063,-0.3539,0.3805,-0.8544,-0.3539,0.3805,-0.8544,-0.3754,0.1939,-0.9063,-0.1914,0.1939,-0.9622,-0.3539,0.3805,-0.8544,-0.1914,0.1939,-0.9622,-0.1804,0.3805,-0.907,-0.1804,0.3805,-0.907,-0.1914,0.1939,-0.9622,0.0,0.1939,-0.981,-0.1804,0.3805,-0.907,0.0,0.1939,-0.981,0.0,0.3805,-0.9248,0.0,0.3805,-0.9248,0.0,0.1939,-0.981,0.1914,0.1939,-0.9622,0.0,0.3805,-0.9248,0.1914,0.1939,-0.9622,0.1804,0.3805,-0.907,0.1804,0.3805,-0.907,0.1914,0.1939,-0.9622,0.3754,0.1939,-0.9063,0.1804,0.3805,-0.907,0.3754,0.1939,-0.9063,0.3539,0.3805,-0.8544,0.3539,0.3805,-0.8544,0.3754,0.1939,-0.9063,0.545,0.1939,-0.8157,0.3539,0.3805,-0.8544,0.545,0.1939,-0.8157,0.5138,0.3805,-0.7689,0.5138,0.3805,-0.7689,0.545,0.1939,-0.8157,0.6937,0.1939,-0.6937,0.5138,0.3805,-0.7689,0.6937,0.1939,-0.6937,0.6539,0.3805,-0.6539,0.6539,0.3805,-0.6539,0.6937,0.1939,-0.6937,0.8157,0.1939,-0.545,0.6539,0.3805,-0.6539,0.8157,0.1939,-0.545,0.7689,0.3805,-0.5138,0.7689,0.3805,-0.5138,0.8157,0.1939,-0.545,0.9063,0.1939,-0.3754,0.7689,0.3805,-0.5138,0.9063,0.1939,-0.3754,0.8544,0.3805,-0.3539,0.8544,0.3805,-0.3539,0.9063,0.1939,-0.3754,0.9622,0.1939,-0.1914,0.8544,0.3805,-0.3539,0.9622,0.1939,-0.1914,0.907,0.3805,-0.1804,0.907,0.3805,-0.1804,0.9622,0.1939,-0.1914,0.981,0.1939,0.0,0.907,0.3805,-0.1804,0.981,0.1939,0.0,0.9248,0.3805,0.0,0.9248,0.3805,0.0,0.981,0.1939,0.0,0.9622,0.1939,0.1914,0.9248,0.3805,0.0,0.9622,0.1939,0.1914,0.907,0.3805,0.1804,0.907,0.3805,0.1804,0.9622,0.1939,0.1914,0.9063,0.1939,0.3754,0.907,0.3805,0.1804,0.9063,0.1939,0.3754,0.8544,0.3805,0.3539,0.8544,0.3805,0.3539,0.9063,0.1939,0.3754,0.8157,0.1939,0.545,0.8544,0.3805,0.3539,0.8157,0.1939,0.545,0.7689,0.3805,0.5138,0.7689,0.3805,0.5138,0.8157,0.1939,0.545,0.6937,0.1939,0.6937,0.7689,0.3805,0.5138,0.6937,0.1939,0.6937,0.6539,0.3805,0.6539,0.6539,0.3805,0.6539,0.6937,0.1939,0.6937,0.545,0.1939,0.8157,0.6539,0.3805,0.6539,0.545,0.1939,0.8157,0.5138,0.3805,0.7689,0.5138,0.3805,0.7689,0.545,0.1939,0.8157,0.3754,0.1939,0.9063,0.5138,0.3805,0.7689,0.3754,0.1939,0.9063,0.3539,0.3805,0.8544,0.3539,0.3805,0.8544,0.3754,0.1939,0.9063,0.1914,0.1939,0.9622,0.3539,0.3805,0.8544,0.1914,0.1939,0.9622,0.1804,0.3805,0.907,0.1804,0.3805,0.907,0.1914,0.1939,0.9622,0.0,0.1939,0.981,0.1804,0.3805,0.907,0.0,0.1939,0.981,0.0,0.3805,0.9248,0.0,0.1939,0.981,0.0,0.0,1.0,-0.1951,0.0,0.9808,0.0,0.1939,0.981,-0.1951,0.0,0.9808,-0.1914,0.1939,0.9622,-0.1914,0.1939,0.9622,-0.1951,0.0,0.9808,-0.3827,0.0,0.9239,-0.1914,0.1939,0.9622,-0.3827,0.0,0.9239,-0.3754,0.1939,0.9063,-0.3754,0.1939,0.9063,-0.3827,0.0,0.9239,-0.5556,0.0,0.8315,-0.3754,0.1939,0.9063,-0.5556,0.0,0.8315,-0.545,0.1939,0.8157,-0.545,0.1939,0.8157,-0.5556,0.0,0.8315,-0.7071,0.0,0.7071,-0.545,0.1939,0.8157,-0.7071,0.0,0.7071,-0.6937,0.1939,0.6937,-0.6937,0.1939,0.6937,-0.7071,0.0,0.7071,-0.8315,0.0,0.5556,-0.6937,0.1939,0.6937,-0.8315,0.0,0.5556,-0.8157,0.1939,0.545,-0.8157,0.1939,0.545,-0.8315,0.0,0.5556,-0.9239,0.0,0.3827,-0.8157,0.1939,0.545,-0.9239,0.0,0.3827,-0.9063,0.1939,0.3754,-0.9063,0.1939,0.3754,-0.9239,0.0,0.3827,-0.9808,0.0,0.1951,-0.9063,0.1939,0.3754,-0.9808,0.0,0.1951,-0.9622,0.1939,0.1914,-0.9622,0.1939,0.1914,-0.9808,0.0,0.1951,-1.0,0.0,0.0,-0.9622,0.1939,0.1914,-1.0,0.0,0.0,-0.981,0.1939,0.0,-0.981,0.1939,0.0,-1.0,0.0,0.0,-0.9808,0.0,-0.1951,-0.981,0.1939,0.0,-0.9808,0.0,-0.1951,-0.9622,0.1939,-0.1914,-0.9622,0.1939,-0.1914,-0.9808,0.0,-0.1951,-0.9239,0.0,-0.3827,-0.9622,0.1939,-0.1914,-0.9239,0.0,-0.3827,-0.9063,0.1939,-0.3754,-0.9063,0.1939,-0.3754,-0.9239,0.0,-0.3827,-0.8315,0.0,-0.5556,-0.9063,0.1939,-0.3754,-0.8315,0.0,-0.5556,-0.8157,0.1939,-0.545,-0.8157,0.1939,-0.545,-0.8315,0.0,-0.5556,-0.7071,0.0,-0.7071,-0.8157,0.1939,-0.545,-0.7071,0.0,-0.7071,-0.6937,0.1939,-0.6937,-0.6937,0.1939,-0.6937,-0.7071,0.0,-0.7071,-0.5556,0.0,-0.8315,-0.6937,0.1939,-0.6937,-0.5556,0.0,-0.8315,-0.545,0.1939,-0.8157,-0.545,0.1939,-0.8157,-0.5556,0.0,-0.8315,-0.3827,0.0,-0.9239,-0.545,0.1939,-0.8157,-0.3827,0.0,-0.9239,-0.3754,0.1939,-0.9063,-0.3754,0.1939,-0.9063,-0.3827,0.0,-0.9239,-0.1951,0.0,-0.9808,-0.3754,0.1939,-0.9063,-0.1951,0.0,-0.9808,-0.1914,0.1939,-0.9622,-0.1914,0.1939,-0.9622,-0.1951,0.0,-0.9808,0.0,0.0,-1.0,-0.1914,0.1939,-0.9622,0.0,0.0,-1.0,0.0,0.1939,-0.981,0.0,0.1939,-0.981,0.0,0.0,-1.0,0.1951,0.0,-0.9808,0.0,0.1939,-0.981,0.1951,0.0,-0.9808,0.1914,0.1939,-0.9622,0.1914,0.1939,-0.9622,0.1951,0.0,-0.9808,0.3827,0.0,-0.9239,0.1914,0.1939,-0.9622,0.3827,0.0,-0.9239,0.3754,0.1939,-0.9063,0.3754,0.1939,-0.9063,0.3827,0.0,-0.9239,0.5556,0.0,-0.8315,0.3754,0.1939,-0.9063,0.5556,0.0,-0.8315,0.545,0.1939,-0.8157,0.545,0.1939,-0.8157,0.5556,0.0,-0.8315,0.7071,0.0,-0.7071,0.545,0.1939,-0.8157,0.7071,0.0,-0.7071,0.6937,0.1939,-0.6937,0.6937,0.1939,-0.6937,0.7071,0.0,-0.7071,0.8315,0.0,-0.5556,0.6937,0.1939,-0.6937,0.8315,0.0,-0.5556,0.8157,0.1939,-0.545,0.8157,0.1939,-0.545,0.8315,0.0,-0.5556,0.9239,0.0,-0.3827,0.8157,0.1939,-0.545,0.9239,0.0,-0.3827,0.9063,0.1939,-0.3754,0.9063,0.1939,-0.3754,0.9239,0.0,-0.3827,0.9808,0.0,-0.1951,0.9063,0.1939,-0.3754,0.9808,0.0,-0.1951,0.9622,0.1939,-0.1914,0.9622,0.1939,-0.1914,0.9808,0.0,-0.1951,1.0,0.0,0.0,0.9622,0.1939,-0.1914,1.0,0.0,0.0,0.981,0.1939,0.0,0.981,0.1939,0.0,1.0,0.0,0.0,0.9808,0.0,0.1951,0.981,0.1939,0.0,0.9808,0.0,0.1951,0.9622,0.1939,0.1914,0.9622,0.1939,0.1914,0.9808,0.0,0.1951,0.9239,0.0,0.3827,0.9622,0.1939,0.1914,0.9239,0.0,0.3827,0.9063,0.1939,0.3754,0.9063,0.1939,0.3754,0.9239,0.0,0.3827,0.8315,0.0,0.5556,0.9063,0.1939,0.3754,0.8315,0.0,0.5556,0.8157,0.1939,0.545,0.8157,0.1939,0.545,0.8315,0.0,0.5556,0.7071,0.0,0.7071,0.8157,0.1939,0.545,0.7071,0.0,0.7071,0.6937,0.1939,0.6937,0.6937,0.1939,0.6937,0.7071,0.0,0.7071,0.5556,0.0,0.8315,0.6937,0.1939,0.6937,0.5556,0.0,0.8315,0.545,0.1939,0.8157,0.545,0.1939,0.8157,0.5556,0.0,0.8315,0.3827,0.0,0.9239,0.545,0.1939,0.8157,0.3827,0.0,0.9239,0.3754,0.1939,0.9063,0.3754,0.1939,0.9063,0.3827,0.0,0.9239,0.1951,0.0,0.9808,0.3754,0.1939,0.9063,0.1951,0.0,0.9808,0.1914,0.1939,0.9622,0.1914,0.1939,0.9622,0.1951,0.0,0.9808,0.0,0.0,1.0,0.1914,0.1939,0.9622,0.0,0.0,1.0,0.0,0.1939,0.981,0.0,0.0,1.0,0.0,-0.1939,0.981,-0.1914,-0.1939,0.9622,0.0,0.0,1.0,-0.1914,-0.1939,0.9622,-0.1951,0.0,0.9808,-0.1951,0.0,0.9808,-0.1914,-0.1939,0.9622,-0.3754,-0.1939,0.9063,-0.1951,0.0,0.9808,-0.3754,-0.1939,0.9063,-0.3827,0.0,0.9239,-0.3827,0.0,0.9239,-0.3754,-0.1939,0.9063,-0.545,-0.1939,0.8157,-0.3827,0.0,0.9239,-0.545,-0.1939,0.8157,-0.5556,0.0,0.8315,-0.5556,0.0,0.8315,-0.545,-0.1939,0.8157,-0.6937,-0.1939,0.6937,-0.5556,0.0,0.8315,-0.6937,-0.1939,0.6937,-0.7071,0.0,0.7071,-0.7071,0.0,0.7071,-0.6937,-0.1939,0.6937,-0.8157,-0.1939,0.545,-0.7071,0.0,0.7071,-0.8157,-0.1939,0.545,-0.8315,0.0,0.5556,-0.8315,0.0,0.5556,-0.8157,-0.1939,0.545,-0.9063,-0.1939,0.3754,-0.8315,0.0,0.5556,-0.9063,-0.1939,0.3754,-0.9239,0.0,0.3827,-0.9239,0.0,0.3827,-0.9063,-0.1939,0.3754,-0.9622,-0.1939,0.1914,-0.9239,0.0,0.3827,-0.9622,-0.1939,0.1914,-0.9808,0.0,0.1951,-0.9808,0.0,0.1951,-0.9622,-0.1939,0.1914,-0.981,-0.1939,0.0,-0.9808,0.0,0.1951,-0.981,-0.1939,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-0.981,-0.1939,0.0,-0.9622,-0.1939,-0.1914,-1.0,0.0,0.0,-0.9622,-0.1939,-0.1914,-0.9808,0.0,-0.1951,-0.9808,0.0,-0.1951,-0.9622,-0.1939,-0.1914,-0.9063,-0.1939,-0.3754,-0.9808,0.0,-0.1951,-0.9063,-0.1939,-0.3754,-0.9239,0.0,-0.3827,-0.9239,0.0,-0.3827,-0.9063,-0.1939,-0.3754,-0.8157,-0.1939,-0.545,-0.9239,0.0,-0.3827,-0.8157,-0.1939,-0.545,-0.8315,0.0,-0.5556,-0.8315,0.0,-0.5556,-0.8157,-0.1939,-0.545,-0.6937,-0.1939,-0.6937,-0.8315,0.0,-0.5556,-0.6937,-0.1939,-0.6937,-0.7071,0.0,-0.7071,-0.7071,0.0,-0.7071,-0.6937,-0.1939,-0.6937,-0.545,-0.1939,-0.8157,-0.7071,0.0,-0.7071,-0.545,-0.1939,-0.8157,-0.5556,0.0,-0.8315,-0.5556,0.0,-0.8315,-0.545,-0.1939,-0.8157,-0.3754,-0.1939,-0.9063,-0.5556,0.0,-0.8315,-0.3754,-0.1939,-0.9063,-0.3827,0.0,-0.9239,-0.3827,0.0,-0.9239,-0.3754,-0.1939,-0.9063,-0.1914,-0.1939,-0.9622,-0.3827,0.0,-0.9239,-0.1914,-0.1939,-0.9622,-0.1951,0.0,-0.9808,-0.1951,0.0,-0.9808,-0.1914,-0.1939,-0.9622,0.0,-0.1939,-0.981,-0.1951,0.0,-0.9808,0.0,-0.1939,-0.981,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,-0.1939,-0.981,0.1914,-0.1939,-0.9622,0.0,0.0,-1.0,0.1914,-0.1939,-0.9622,0.1951,0.0,-0.9808,0.1951,0.0,-0.9808,0.1914,-0.1939,-0.9622,0.3754,-0.1939,-0.9063,0.1951,0.0,-0.9808,0.3754,-0.1939,-0.9063,0.3827,0.0,-0.9239,0.3827,0.0,-0.9239,0.3754,-0.1939,-0.9063,0.545,-0.1939,-0.8157,0.3827,0.0,-0.9239,0.545,-0.1939,-0.8157,0.5556,0.0,-0.8315,0.5556,0.0,-0.8315,0.545,-0.1939,-0.8157,0.6937,-0.1939,-0.6937,0.5556,0.0,-0.8315,0.6937,-0.1939,-0.6937,0.7071,0.0,-0.7071,0.7071,0.0,-0.7071,0.6937,-0.1939,-0.6937,0.8157,-0.1939,-0.545,0.7071,0.0,-0.7071,0.8157,-0.1939,-0.545,0.8315,0.0,-0.5556,0.8315,0.0,-0.5556,0.8157,-0.1939,-0.545,0.9063,-0.1939,-0.3754,0.8315,0.0,-0.5556,0.9063,-0.1939,-0.3754,0.9239,0.0,-0.3827,0.9239,0.0,-0.3827,0.9063,-0.1939,-0.3754,0.9622,-0.1939,-0.1914,0.9239,0.0,-0.3827,0.9622,-0.1939,-0.1914,0.9808,0.0,-0.1951,0.9808,0.0,-0.1951,0.9622,-0.1939,-0.1914,0.981,-0.1939,0.0,0.9808,0.0,-0.1951,0.981,-0.1939,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.981,-0.1939,0.0,0.9622,-0.1939,0.1914,1.0,0.0,0.0,0.9622,-0.1939,0.1914,0.9808,0.0,0.1951,0.9808,0.0,0.1951,0.9622,-0.1939,0.1914,0.9063,-0.1939,0.3754,0.9808,0.0,0.1951,0.9063,-0.1939,0.3754,0.9239,0.0,0.3827,0.9239,0.0,0.3827,0.9063,-0.1939,0.3754,0.8157,-0.1939,0.545,0.9239,0.0,0.3827,0.8157,-0.1939,0.545,0.8315,0.0,0.5556,0.8315,0.0,0.5556,0.8157,-0.1939,0.545,0.6937,-0.1939,0.6937,0.8315,0.0,0.5556,0.6937,-0.1939,0.6937,0.7071,0.0,0.7071,0.7071,0.0,0.7071,0.6937,-0.1939,0.6937,0.545,-0.1939,0.8157,0.7071,0.0,0.7071,0.545,-0.1939,0.8157,0.5556,0.0,0.8315,0.5556,0.0,0.8315,0.545,-0.1939,0.8157,0.3754,-0.1939,0.9063,0.5556,0.0,0.8315,0.3754,-0.1939,0.9063,0.3827,0.0,0.9239,0.3827,0.0,0.9239,0.3754,-0.1939,0.9063,0.1914,-0.1939,0.9622,0.3827,0.0,0.9239,0.1914,-0.1939,0.9622,0.1951,0.0,0.9808,0.1951,0.0,0.9808,0.1914,-0.1939,0.9622,0.0,-0.1939,0.981,0.1951,0.0,0.9808,0.0,-0.1939,0.981,0.0,0.0,1.0,0.0,-0.1939,0.981,0.0,-0.3805,0.9248,-0.1804,-0.3805,0.907,0.0,-0.1939,0.981,-0.1804,-0.3805,0.907,-0.1914,-0.1939,0.9622,-0.1914,-0.1939,0.9622,-0.1804,-0.3805,0.907,-0.3539,-0.3805,0.8544,-0.1914,-0.1939,0.9622,-0.3539,-0.3805,0.8544,-0.3754,-0.1939,0.9063,-0.3754,-0.1939,0.9063,-0.3539,-0.3805,0.8544,-0.5138,-0.3805,0.7689,-0.3754,-0.1939,0.9063,-0.5138,-0.3805,0.7689,-0.545,-0.1939,0.8157,-0.545,-0.1939,0.8157,-0.5138,-0.3805,0.7689,-0.6539,-0.3805,0.6539,-0.545,-0.1939,0.8157,-0.6539,-0.3805,0.6539,-0.6937,-0.1939,0.6937,-0.6937,-0.1939,0.6937,-0.6539,-0.3805,0.6539,-0.7689,-0.3805,0.5138,-0.6937,-0.1939,0.6937,-0.7689,-0.3805,0.5138,-0.8157,-0.1939,0.545,-0.8157,-0.1939,0.545,-0.7689,-0.3805,0.5138,-0.8544,-0.3805,0.3539,-0.8157,-0.1939,0.545,-0.8544,-0.3805,0.3539,-0.9063,-0.1939,0.3754,-0.9063,-0.1939,0.3754,-0.8544,-0.3805,0.3539,-0.907,-0.3805,0.1804,-0.9063,-0.1939,0.3754,-0.907,-0.3805,0.1804,-0.9622,-0.1939,0.1914,-0.9622,-0.1939,0.1914,-0.907,-0.3805,0.1804,-0.9248,-0.3805,0.0,-0.9622,-0.1939,0.1914,-0.9248,-0.3805,0.0,-0.981,-0.1939,0.0,-0.981,-0.1939,0.0,-0.9248,-0.3805,0.0,-0.907,-0.3805,-0.1804,-0.981,-0.1939,0.0,-0.907,-0.3805,-0.1804,-0.9622,-0.1939,-0.1914,-0.9622,-0.1939,-0.1914,-0.907,-0.3805,-0.1804,-0.8544,-0.3805,-0.3539,-0.9622,-0.1939,-0.1914,-0.8544,-0.3805,-0.3539,-0.9063,-0.1939,-0.3754,-0.9063,-0.1939,-0.3754,-0.8544,-0.3805,-0.3539,-0.7689,-0.3805,-0.5138,-0.9063,-0.1939,-0.3754,-0.7689,-0.3805,-0.5138,-0.8157,-0.1939,-0.545,-0.8157,-0.1939,-0.545,-0.7689,-0.3805,-0.5138,-0.6539,-0.3805,-0.6539,-0.8157,-0.1939,-0.545,-0.6539,-0.3805,-0.6539,-0.6937,-0.1939,-0.6937,-0.6937,-0.1939,-0.6937,-0.6539,-0.3805,-0.6539,-0.5138,-0.3805,-0.7689,-0.6937,-0.1939,-0.6937,-0.5138,-0.3805,-0.7689,-0.545,-0.1939,-0.8157,-0.545,-0.1939,-0.8157,-0.5138,-0.3805,-0.7689,-0.3539,-0.3805,-0.8544,-0.545,-0.1939,-0.8157,-0.3539,-0.3805,-0.8544,-0.3754,-0.1939,-0.9063,-0.3754,-0.1939,-0.9063,-0.3539,-0.3805,-0.8544,-0.1804,-0.3805,-0.907,-0.3754,-0.1939,-0.9063,-0.1804,-0.3805,-0.907,-0.1914,-0.1939,-0.9622,-0.1914,-0.1939,-0.9622,-0.1804,-0.3805,-0.907,0.0,-0.3805,-0.9248,-0.1914,-0.1939,-0.9622,0.0,-0.3805,-0.9248,0.0,-0.1939,-0.981,0.0,-0.1939,-0.981,0.0,-0.3805,-0.9248,0.1804,-0.3805,-0.907,0.0,-0.1939,-0.981,0.1804,-0.3805,-0.907,0.1914,-0.1939,-0.9622,0.1914,-0.1939,-0.9622,0.1804,-0.3805,-0.907,0.3539,-0.3805,-0.8544,0.1914,-0.1939,-0.9622,0.3539,-0.3805,-0.8544,0.3754,-0.1939,-0.9063,0.3754,-0.1939,-0.9063,0.3539,-0.3805,-0.8544,0.5138,-0.3805,-0.7689,0.3754,-0.1939,-0.9063,0.5138,-0.3805,-0.7689,0.545,-0.1939,-0.8157,0.545,-0.1939,-0.8157,0.5138,-0.3805,-0.7689,0.6539,-0.3805,-0.6539,0.545,-0.1939,-0.8157,0.6539,-0.3805,-0.6539,0.6937,-0.1939,-0.6937,0.6937,-0.1939,-0.6937,0.6539,-0.3805,-0.6539,0.7689,-0.3805,-0.5138,0.6937,-0.1939,-0.6937,0.7689,-0.3805,-0.5138,0.8157,-0.1939,-0.545,0.8157,-0.1939,-0.545,0.7689,-0.3805,-0.5138,0.8544,-0.3805,-0.3539,0.8157,-0.1939,-0.545,0.8544,-0.3805,-0.3539,0.9063,-0.1939,-0.3754,0.9063,-0.1939,-0.3754,0.8544,-0.3805,-0.3539,0.907,-0.3805,-0.1804,0.9063,-0.1939,-0.3754,0.907,-0.3805,-0.1804,0.9622,-0.1939,-0.1914,0.9622,-0.1939,-0.1914,0.907,-0.3805,-0.1804,0.9248,-0.3805,0.0,0.9622,-0.1939,-0.1914,0.9248,-0.3805,0.0,0.981,-0.1939,0.0,0.981,-0.1939,0.0,0.9248,-0.3805,0.0,0.907,-0.3805,0.1804,0.981,-0.1939,0.0,0.907,-0.3805,0.1804,0.9622,-0.1939,0.1914,0.9622,-0.1939,0.1914,0.907,-0.3805,0.1804,0.8544,-0.3805,0.3539,0.9622,-0.1939,0.1914,0.8544,-0.3805,0.3539,0.9063,-0.1939,0.3754,0.9063,-0.1939,0.3754,0.8544,-0.3805,0.3539,0.7689,-0.3805,0.5138,0.9063,-0.1939,0.3754,0.7689,-0.3805,0.5138,0.8157,-0.1939,0.545,0.8157,-0.1939,0.545,0.7689,-0.3805,0.5138,0.6539,-0.3805,0.6539,0.8157,-0.1939,0.545,0.6539,-0.3805,0.6539,0.6937,-0.1939,0.6937,0.6937,-0.1939,0.6937,0.6539,-0.3805,0.6539,0.5138,-0.3805,0.7689,0.6937,-0.1939,0.6937,0.5138,-0.3805,0.7689,0.545,-0.1939,0.8157,0.545,-0.1939,0.8157,0.5138,-0.3805,0.7689,0.3539,-0.3805,0.8544,0.545,-0.1939,0.8157,0.3539,-0.3805,0.8544,0.3754,-0.1939,0.9063,0.3754,-0.1939,0.9063,0.3539,-0.3805,0.8544,0.1804,-0.3805,0.907,0.3754,-0.1939,0.9063,0.1804,-0.3805,0.907,0.1914,-0.1939,0.9622,0.1914,-0.1939,0.9622,0.1804,-0.3805,0.907,0.0,-0.3805,0.9248,0.1914,-0.1939,0.9622,0.0,-0.3805,0.9248,0.0,-0.1939,0.981,0.0,-0.3805,0.9248,0.0,-0.5528,0.8333,-0.1626,-0.5528,0.8173,0.0,-0.3805,0.9248,-0.1626,-0.5528,0.8173,-0.1804,-0.3805,0.907,-0.1804,-0.3805,0.907,-0.1626,-0.5528,0.8173,-0.3189,-0.5528,0.7699,-0.1804,-0.3805,0.907,-0.3189,-0.5528,0.7699,-0.3539,-0.3805,0.8544,-0.3539,-0.3805,0.8544,-0.3189,-0.5528,0.7699,-0.463,-0.5528,0.6929,-0.3539,-0.3805,0.8544,-0.463,-0.5528,0.6929,-0.5138,-0.3805,0.7689,-0.5138,-0.3805,0.7689,-0.463,-0.5528,0.6929,-0.5893,-0.5528,0.5893,-0.5138,-0.3805,0.7689,-0.5893,-0.5528,0.5893,-0.6539,-0.3805,0.6539,-0.6539,-0.3805,0.6539,-0.5893,-0.5528,0.5893,-0.6929,-0.5528,0.463,-0.6539,-0.3805,0.6539,-0.6929,-0.5528,0.463,-0.7689,-0.3805,0.5138,-0.7689,-0.3805,0.5138,-0.6929,-0.5528,0.463,-0.7699,-0.5528,0.3189,-0.7689,-0.3805,0.5138,-0.7699,-0.5528,0.3189,-0.8544,-0.3805,0.3539,-0.8544,-0.3805,0.3539,-0.7699,-0.5528,0.3189,-0.8173,-0.5528,0.1626,-0.8544,-0.3805,0.3539,-0.8173,-0.5528,0.1626,-0.907,-0.3805,0.1804,-0.907,-0.3805,0.1804,-0.8173,-0.5528,0.1626,-0.8333,-0.5528,0.0,-0.907,-0.3805,0.1804,-0.8333,-0.5528,0.0,-0.9248,-0.3805,0.0,-0.9248,-0.3805,0.0,-0.8333,-0.5528,0.0,-0.8173,-0.5528,-0.1626,-0.9248,-0.3805,0.0,-0.8173,-0.5528,-0.1626,-0.907,-0.3805,-0.1804,-0.907,-0.3805,-0.1804,-0.8173,-0.5528,-0.1626,-0.7699,-0.5528,-0.3189,-0.907,-0.3805,-0.1804,-0.7699,-0.5528,-0.3189,-0.8544,-0.3805,-0.3539,-0.8544,-0.3805,-0.3539,-0.7699,-0.5528,-0.3189,-0.6929,-0.5528,-0.463,-0.8544,-0.3805,-0.3539,-0.6929,-0.5528,-0.463,-0.7689,-0.3805,-0.5138,-0.7689,-0.3805,-0.5138,-0.6929,-0.5528,-0.463,-0.5893,-0.5528,-0.5893,-0.7689,-0.3805,-0.5138,-0.5893,-0.5528,-0.5893,-0.6539,-0.3805,-0.6539,-0.6539,-0.3805,-0.6539,-0.5893,-0.5528,-0.5893,-0.463,-0.5528,-0.6929,-0.6539,-0.3805,-0.6539,-0.463,-0.5528,-0.6929,-0.5138,-0.3805,-0.7689,-0.5138,-0.3805,-0.7689,-0.463,-0.5528,-0.6929,-0.3189,-0.5528,-0.7699,-0.5138,-0.3805,-0.7689,-0.3189,-0.5528,-0.7699,-0.3539,-0.3805,-0.8544,-0.3539,-0.3805,-0.8544,-0.3189,-0.5528,-0.7699,-0.1626,-0.5528,-0.8173,-0.3539,-0.3805,-0.8544,-0.1626,-0.5528,-0.8173,-0.1804,-0.3805,-0.907,-0.1804,-0.3805,-0.907,-0.1626,-0.5528,-0.8173,0.0,-0.5528,-0.8333,-0.1804,-0.3805,-0.907,0.0,-0.5528,-0.8333,0.0,-0.3805,-0.9248,0.0,-0.3805,-0.9248,0.0,-0.5528,-0.8333,0.1626,-0.5528,-0.8173,0.0,-0.3805,-0.9248,0.1626,-0.5528,-0.8173,0.1804,-0.3805,-0.907,0.1804,-0.3805,-0.907,0.1626,-0.5528,-0.8173,0.3189,-0.5528,-0.7699,0.1804,-0.3805,-0.907,0.3189,-0.5528,-0.7699,0.3539,-0.3805,-0.8544,0.3539,-0.3805,-0.8544,0.3189,-0.5528,-0.7699,0.463,-0.5528,-0.6929,0.3539,-0.3805,-0.8544,0.463,-0.5528,-0.6929,0.5138,-0.3805,-0.7689,0.5138,-0.3805,-0.7689,0.463,-0.5528,-0.6929,0.5893,-0.5528,-0.5893,0.5138,-0.3805,-0.7689,0.5893,-0.5528,-0.5893,0.6539,-0.3805,-0.6539,0.6539,-0.3805,-0.6539,0.5893,-0.5528,-0.5893,0.6929,-0.5528,-0.463,0.6539,-0.3805,-0.6539,0.6929,-0.5528,-0.463,0.7689,-0.3805,-0.5138,0.7689,-0.3805,-0.5138,0.6929,-0.5528,-0.463,0.7699,-0.5528,-0.3189,0.7689,-0.3805,-0.5138,0.7699,-0.5528,-0.3189,0.8544,-0.3805,-0.3539,0.8544,-0.3805,-0.3539,0.7699,-0.5528,-0.3189,0.8173,-0.5528,-0.1626,0.8544,-0.3805,-0.3539,0.8173,-0.5528,-0.1626,0.907,-0.3805,-0.1804,0.907,-0.3805,-0.1804,0.8173,-0.5528,-0.1626,0.8333,-0.5528,0.0,0.907,-0.3805,-0.1804,0.8333,-0.5528,0.0,0.9248,-0.3805,0.0,0.9248,-0.3805,0.0,0.8333,-0.5528,0.0,0.8173,-0.5528,0.1626,0.9248,-0.3805,0.0,0.8173,-0.5528,0.1626,0.907,-0.3805,0.1804,0.907,-0.3805,0.1804,0.8173,-0.5528,0.1626,0.7699,-0.5528,0.3189,0.907,-0.3805,0.1804,0.7699,-0.5528,0.3189,0.8544,-0.3805,0.3539,0.8544,-0.3805,0.3539,0.7699,-0.5528,0.3189,0.6929,-0.5528,0.463,0.8544,-0.3805,0.3539,0.6929,-0.5528,0.463,0.7689,-0.3805,0.5138,0.7689,-0.3805,0.5138,0.6929,-0.5528,0.463,0.5893,-0.5528,0.5893,0.7689,-0.3805,0.5138,0.5893,-0.5528,0.5893,0.6539,-0.3805,0.6539,0.6539,-0.3805,0.6539,0.5893,-0.5528,0.5893,0.463,-0.5528,0.6929,0.6539,-0.3805,0.6539,0.463,-0.5528,0.6929,0.5138,-0.3805,0.7689,0.5138,-0.3805,0.7689,0.463,-0.5528,0.6929,0.3189,-0.5528,0.7699,0.5138,-0.3805,0.7689,0.3189,-0.5528,0.7699,0.3539,-0.3805,0.8544,0.3539,-0.3805,0.8544,0.3189,-0.5528,0.7699,0.1626,-0.5528,0.8173,0.3539,-0.3805,0.8544,0.1626,-0.5528,0.8173,0.1804,-0.3805,0.907,0.1804,-0.3805,0.907,0.1626,-0.5528,0.8173,0.0,-0.5528,0.8333,0.1804,-0.3805,0.907,0.0,-0.5528,0.8333,0.0,-0.3805,0.9248,0.0,-0.5528,0.8333,0.0,-0.7041,0.7101,-0.1385,-0.7041,0.6965,0.0,-0.5528,0.8333,-0.1385,-0.7041,0.6965,-0.1626,-0.5528,0.8173,-0.1626,-0.5528,0.8173,-0.1385,-0.7041,0.6965,-0.2718,-0.7041,0.6561,-0.1626,-0.5528,0.8173,-0.2718,-0.7041,0.6561,-0.3189,-0.5528,0.7699,-0.3189,-0.5528,0.7699,-0.2718,-0.7041,0.6561,-0.3945,-0.7041,0.5905,-0.3189,-0.5528,0.7699,-0.3945,-0.7041,0.5905,-0.463,-0.5528,0.6929,-0.463,-0.5528,0.6929,-0.3945,-0.7041,0.5905,-0.5021,-0.7041,0.5021,-0.463,-0.5528,0.6929,-0.5021,-0.7041,0.5021,-0.5893,-0.5528,0.5893,-0.5893,-0.5528,0.5893,-0.5021,-0.7041,0.5021,-0.5905,-0.7041,0.3945,-0.5893,-0.5528,0.5893,-0.5905,-0.7041,0.3945,-0.6929,-0.5528,0.463,-0.6929,-0.5528,0.463,-0.5905,-0.7041,0.3945,-0.6561,-0.7041,0.2718,-0.6929,-0.5528,0.463,-0.6561,-0.7041,0.2718,-0.7699,-0.5528,0.3189,-0.7699,-0.5528,0.3189,-0.6561,-0.7041,0.2718,-0.6965,-0.7041,0.1385,-0.7699,-0.5528,0.3189,-0.6965,-0.7041,0.1385,-0.8173,-0.5528,0.1626,-0.8173,-0.5528,0.1626,-0.6965,-0.7041,0.1385,-0.7101,-0.7041,0.0,-0.8173,-0.5528,0.1626,-0.7101,-0.7041,0.0,-0.8333,-0.5528,0.0,-0.8333,-0.5528,0.0,-0.7101,-0.7041,0.0,-0.6965,-0.7041,-0.1385,-0.8333,-0.5528,0.0,-0.6965,-0.7041,-0.1385,-0.8173,-0.5528,-0.1626,-0.8173,-0.5528,-0.1626,-0.6965,-0.7041,-0.1385,-0.6561,-0.7041,-0.2718,-0.8173,-0.5528,-0.1626,-0.6561,-0.7041,-0.2718,-0.7699,-0.5528,-0.3189,-0.7699,-0.5528,-0.3189,-0.6561,-0.7041,-0.2718,-0.5905,-0.7041,-0.3945,-0.7699,-0.5528,-0.3189,-0.5905,-0.7041,-0.3945,-0.6929,-0.5528,-0.463,-0.6929,-0.5528,-0.463,-0.5905,-0.7041,-0.3945,-0.5021,-0.7041,-0.5021,-0.6929,-0.5528,-0.463,-0.5021,-0.7041,-0.5021,-0.5893,-0.5528,-0.5893,-0.5893,-0.5528,-0.5893,-0.5021,-0.7041,-0.5021,-0.3945,-0.7041,-0.5905,-0.5893,-0.5528,-0.5893,-0.3945,-0.7041,-0.5905,-0.463,-0.5528,-0.6929,-0.463,-0.5528,-0.6929,-0.3945,-0.7041,-0.5905,-0.2718,-0.7041,-0.6561,-0.463,-0.5528,-0.6929,-0.2718,-0.7041,-0.6561,-0.3189,-0.5528,-0.7699,-0.3189,-0.5528,-0.7699,-0.2718,-0.7041,-0.6561,-0.1385,-0.7041,-0.6965,-0.3189,-0.5528,-0.7699,-0.1385,-0.7041,-0.6965,-0.1626,-0.5528,-0.8173,-0.1626,-0.5528,-0.8173,-0.1385,-0.7041,-0.6965,0.0,-0.7041,-0.7101,-0.1626,-0.5528,-0.8173,0.0,-0.7041,-0.7101,0.0,-0.5528,-0.8333,0.0,-0.5528,-0.8333,0.0,-0.7041,-0.7101,0.1385,-0.7041,-0.6965,0.0,-0.5528,-0.8333,0.1385,-0.7041,-0.6965,0.1626,-0.5528,-0.8173,0.1626,-0.5528,-0.8173,0.1385,-0.7041,-0.6965,0.2718,-0.7041,-0.6561,0.1626,-0.5528,-0.8173,0.2718,-0.7041,-0.6561,0.3189,-0.5528,-0.7699,0.3189,-0.5528,-0.7699,0.2718,-0.7041,-0.6561,0.3945,-0.7041,-0.5905,0.3189,-0.5528,-0.7699,0.3945,-0.7041,-0.5905,0.463,-0.5528,-0.6929,0.463,-0.5528,-0.6929,0.3945,-0.7041,-0.5905,0.5021,-0.7041,-0.5021,0.463,-0.5528,-0.6929,0.5021,-0.7041,-0.5021,0.5893,-0.5528,-0.5893,0.5893,-0.5528,-0.5893,0.5021,-0.7041,-0.5021,0.5905,-0.7041,-0.3945,0.5893,-0.5528,-0.5893,0.5905,-0.7041,-0.3945,0.6929,-0.5528,-0.463,0.6929,-0.5528,-0.463,0.5905,-0.7041,-0.3945,0.6561,-0.7041,-0.2718,0.6929,-0.5528,-0.463,0.6561,-0.7041,-0.2718,0.7699,-0.5528,-0.3189,0.7699,-0.5528,-0.3189,0.6561,-0.7041,-0.2718,0.6965,-0.7041,-0.1385,0.7699,-0.5528,-0.3189,0.6965,-0.7041,-0.1385,0.8173,-0.5528,-0.1626,0.8173,-0.5528,-0.1626,0.6965,-0.7041,-0.1385,0.7101,-0.7041,0.0,0.8173,-0.5528,-0.1626,0.7101,-0.7041,0.0,0.8333,-0.5528,0.0,0.8333,-0.5528,0.0,0.7101,-0.7041,0.0,0.6965,-0.7041,0.1385,0.8333,-0.5528,0.0,0.6965,-0.7041,0.1385,0.8173,-0.5528,0.1626,0.8173,-0.5528,0.1626,0.6965,-0.7041,0.1385,0.6561,-0.7041,0.2718,0.8173,-0.5528,0.1626,0.6561,-0.7041,0.2718,0.7699,-0.5528,0.3189,0.7699,-0.5528,0.3189,0.6561,-0.7041,0.2718,0.5905,-0.7041,0.3945,0.7699,-0.5528,0.3189,0.5905,-0.7041,0.3945,0.6929,-0.5528,0.463,0.6929,-0.5528,0.463,0.5905,-0.7041,0.3945,0.5021,-0.7041,0.5021,0.6929,-0.5528,0.463,0.5021,-0.7041,0.5021,0.5893,-0.5528,0.5893,0.5893,-0.5528,0.5893,0.5021,-0.7041,0.5021,0.3945,-0.7041,0.5905,0.5893,-0.5528,0.5893,0.3945,-0.7041,0.5905,0.463,-0.5528,0.6929,0.463,-0.5528,0.6929,0.3945,-0.7041,0.5905,0.2718,-0.7041,0.6561,0.463,-0.5528,0.6929,0.2718,-0.7041,0.6561,0.3189,-0.5528,0.7699,0.3189,-0.5528,0.7699,0.2718,-0.7041,0.6561,0.1385,-0.7041,0.6965,0.3189,-0.5528,0.7699,0.1385,-0.7041,0.6965,0.1626,-0.5528,0.8173,0.1626,-0.5528,0.8173,0.1385,-0.7041,0.6965,0.0,-0.7041,0.7101,0.1626,-0.5528,0.8173,0.0,-0.7041,0.7101,0.0,-0.5528,0.8333,0.0,-0.7041,0.7101,0.0,-0.8286,0.5598,-0.1092,-0.8286,0.549,0.0,-0.7041,0.7101,-0.1092,-0.8286,0.549,-0.1385,-0.7041,0.6965,-0.1385,-0.7041,0.6965,-0.1092,-0.8286,0.549,-0.2142,-0.8286,0.5172,-0.1385,-0.7041,0.6965,-0.2142,-0.8286,0.5172,-0.2718,-0.7041,0.6561,-0.2718,-0.7041,0.6561,-0.2142,-0.8286,0.5172,-0.311,-0.8286,0.4654,-0.2718,-0.7041,0.6561,-0.311,-0.8286,0.4654,-0.3945,-0.7041,0.5905,-0.3945,-0.7041,0.5905,-0.311,-0.8286,0.4654,-0.3958,-0.8286,0.3958,-0.3945,-0.7041,0.5905,-0.3958,-0.8286,0.3958,-0.5021,-0.7041,0.5021,-0.5021,-0.7041,0.5021,-0.3958,-0.8286,0.3958,-0.4654,-0.8286,0.311,-0.5021,-0.7041,0.5021,-0.4654,-0.8286,0.311,-0.5905,-0.7041,0.3945,-0.5905,-0.7041,0.3945,-0.4654,-0.8286,0.311,-0.5172,-0.8286,0.2142,-0.5905,-0.7041,0.3945,-0.5172,-0.8286,0.2142,-0.6561,-0.7041,0.2718,-0.6561,-0.7041,0.2718,-0.5172,-0.8286,0.2142,-0.549,-0.8286,0.1092,-0.6561,-0.7041,0.2718,-0.549,-0.8286,0.1092,-0.6965,-0.7041,0.1385,-0.6965,-0.7041,0.1385,-0.549,-0.8286,0.1092,-0.5598,-0.8286,0.0,-0.6965,-0.7041,0.1385,-0.5598,-0.8286,0.0,-0.7101,-0.7041,0.0,-0.7101,-0.7041,0.0,-0.5598,-0.8286,0.0,-0.549,-0.8286,-0.1092,-0.7101,-0.7041,0.0,-0.549,-0.8286,-0.1092,-0.6965,-0.7041,-0.1385,-0.6965,-0.7041,-0.1385,-0.549,-0.8286,-0.1092,-0.5172,-0.8286,-0.2142,-0.6965,-0.7041,-0.1385,-0.5172,-0.8286,-0.2142,-0.6561,-0.7041,-0.2718,-0.6561,-0.7041,-0.2718,-0.5172,-0.8286,-0.2142,-0.4654,-0.8286,-0.311,-0.6561,-0.7041,-0.2718,-0.4654,-0.8286,-0.311,-0.5905,-0.7041,-0.3945,-0.5905,-0.7041,-0.3945,-0.4654,-0.8286,-0.311,-0.3958,-0.8286,-0.3958,-0.5905,-0.7041,-0.3945,-0.3958,-0.8286,-0.3958,-0.5021,-0.7041,-0.5021,-0.5021,-0.7041,-0.5021,-0.3958,-0.8286,-0.3958,-0.311,-0.8286,-0.4654,-0.5021,-0.7041,-0.5021,-0.311,-0.8286,-0.4654,-0.3945,-0.7041,-0.5905,-0.3945,-0.7041,-0.5905,-0.311,-0.8286,-0.4654,-0.2142,-0.8286,-0.5172,-0.3945,-0.7041,-0.5905,-0.2142,-0.8286,-0.5172,-0.2718,-0.7041,-0.6561,-0.2718,-0.7041,-0.6561,-0.2142,-0.8286,-0.5172,-0.1092,-0.8286,-0.549,-0.2718,-0.7041,-0.6561,-0.1092,-0.8286,-0.549,-0.1385,-0.7041,-0.6965,-0.1385,-0.7041,-0.6965,-0.1092,-0.8286,-0.549,0.0,-0.8286,-0.5598,-0.1385,-0.7041,-0.6965,0.0,-0.8286,-0.5598,0.0,-0.7041,-0.7101,0.0,-0.7041,-0.7101,0.0,-0.8286,-0.5598,0.1092,-0.8286,-0.549,0.0,-0.7041,-0.7101,0.1092,-0.8286,-0.549,0.1385,-0.7041,-0.6965,0.1385,-0.7041,-0.6965,0.1092,-0.8286,-0.549,0.2142,-0.8286,-0.5172,0.1385,-0.7041,-0.6965,0.2142,-0.8286,-0.5172,0.2718,-0.7041,-0.6561,0.2718,-0.7041,-0.6561,0.2142,-0.8286,-0.5172,0.311,-0.8286,-0.4654,0.2718,-0.7041,-0.6561,0.311,-0.8286,-0.4654,0.3945,-0.7041,-0.5905,0.3945,-0.7041,-0.5905,0.311,-0.8286,-0.4654,0.3958,-0.8286,-0.3958,0.3945,-0.7041,-0.5905,0.3958,-0.8286,-0.3958,0.5021,-0.7041,-0.5021,0.5021,-0.7041,-0.5021,0.3958,-0.8286,-0.3958,0.4654,-0.8286,-0.311,0.5021,-0.7041,-0.5021,0.4654,-0.8286,-0.311,0.5905,-0.7041,-0.3945,0.5905,-0.7041,-0.3945,0.4654,-0.8286,-0.311,0.5172,-0.8286,-0.2142,0.5905,-0.7041,-0.3945,0.5172,-0.8286,-0.2142,0.6561,-0.7041,-0.2718,0.6561,-0.7041,-0.2718,0.5172,-0.8286,-0.2142,0.549,-0.8286,-0.1092,0.6561,-0.7041,-0.2718,0.549,-0.8286,-0.1092,0.6965,-0.7041,-0.1385,0.6965,-0.7041,-0.1385,0.549,-0.8286,-0.1092,0.5598,-0.8286,0.0,0.6965,-0.7041,-0.1385,0.5598,-0.8286,0.0,0.7101,-0.7041,0.0,0.7101,-0.7041,0.0,0.5598,-0.8286,0.0,0.549,-0.8286,0.1092,0.7101,-0.7041,0.0,0.549,-0.8286,0.1092,0.6965,-0.7041,0.1385,0.6965,-0.7041,0.1385,0.549,-0.8286,0.1092,0.5172,-0.8286,0.2142,0.6965,-0.7041,0.1385,0.5172,-0.8286,0.2142,0.6561,-0.7041,0.2718,0.6561,-0.7041,0.2718,0.5172,-0.8286,0.2142,0.4654,-0.8286,0.311,0.6561,-0.7041,0.2718,0.4654,-0.8286,0.311,0.5905,-0.7041,0.3945,0.5905,-0.7041,0.3945,0.4654,-0.8286,0.311,0.3958,-0.8286,0.3958,0.5905,-0.7041,0.3945,0.3958,-0.8286,0.3958,0.5021,-0.7041,0.5021,0.5021,-0.7041,0.5021,0.3958,-0.8286,0.3958,0.311,-0.8286,0.4654,0.5021,-0.7041,0.5021,0.311,-0.8286,0.4654,0.3945,-0.7041,0.5905,0.3945,-0.7041,0.5905,0.311,-0.8286,0.4654,0.2142,-0.8286,0.5172,0.3945,-0.7041,0.5905,0.2142,-0.8286,0.5172,0.2718,-0.7041,0.6561,0.2718,-0.7041,0.6561,0.2142,-0.8286,0.5172,0.1092,-0.8286,0.549,0.2718,-0.7041,0.6561,0.1092,-0.8286,0.549,0.1385,-0.7041,0.6965,0.1385,-0.7041,0.6965,0.1092,-0.8286,0.549,0.0,-0.8286,0.5598,0.1385,-0.7041,0.6965,0.0,-0.8286,0.5598,0.0,-0.7041,0.7101,0.0,-0.8286,0.5598,0.0,-0.9217,0.3879,-0.0757,-0.9217,0.3804,0.0,-0.8286,0.5598,-0.0757,-0.9217,0.3804,-0.1092,-0.8286,0.549,-0.1092,-0.8286,0.549,-0.0757,-0.9217,0.3804,-0.1484,-0.9217,0.3584,-0.1092,-0.8286,0.549,-0.1484,-0.9217,0.3584,-0.2142,-0.8286,0.5172,-0.2142,-0.8286,0.5172,-0.1484,-0.9217,0.3584,-0.2155,-0.9217,0.3225,-0.2142,-0.8286,0.5172,-0.2155,-0.9217,0.3225,-0.311,-0.8286,0.4654,-0.311,-0.8286,0.4654,-0.2155,-0.9217,0.3225,-0.2743,-0.9217,0.2743,-0.311,-0.8286,0.4654,-0.2743,-0.9217,0.2743,-0.3958,-0.8286,0.3958,-0.3958,-0.8286,0.3958,-0.2743,-0.9217,0.2743,-0.3225,-0.9217,0.2155,-0.3958,-0.8286,0.3958,-0.3225,-0.9217,0.2155,-0.4654,-0.8286,0.311,-0.4654,-0.8286,0.311,-0.3225,-0.9217,0.2155,-0.3584,-0.9217,0.1484,-0.4654,-0.8286,0.311,-0.3584,-0.9217,0.1484,-0.5172,-0.8286,0.2142,-0.5172,-0.8286,0.2142,-0.3584,-0.9217,0.1484,-0.3804,-0.9217,0.0757,-0.5172,-0.8286,0.2142,-0.3804,-0.9217,0.0757,-0.549,-0.8286,0.1092,-0.549,-0.8286,0.1092,-0.3804,-0.9217,0.0757,-0.3879,-0.9217,0.0,-0.549,-0.8286,0.1092,-0.3879,-0.9217,0.0,-0.5598,-0.8286,0.0,-0.5598,-0.8286,0.0,-0.3879,-0.9217,0.0,-0.3804,-0.9217,-0.0757,-0.5598,-0.8286,0.0,-0.3804,-0.9217,-0.0757,-0.549,-0.8286,-0.1092,-0.549,-0.8286,-0.1092,-0.3804,-0.9217,-0.0757,-0.3584,-0.9217,-0.1484,-0.549,-0.8286,-0.1092,-0.3584,-0.9217,-0.1484,-0.5172,-0.8286,-0.2142,-0.5172,-0.8286,-0.2142,-0.3584,-0.9217,-0.1484,-0.3225,-0.9217,-0.2155,-0.5172,-0.8286,-0.2142,-0.3225,-0.9217,-0.2155,-0.4654,-0.8286,-0.311,-0.4654,-0.8286,-0.311,-0.3225,-0.9217,-0.2155,-0.2743,-0.9217,-0.2743,-0.4654,-0.8286,-0.311,-0.2743,-0.9217,-0.2743,-0.3958,-0.8286,-0.3958,-0.3958,-0.8286,-0.3958,-0.2743,-0.9217,-0.2743,-0.2155,-0.9217,-0.3225,-0.3958,-0.8286,-0.3958,-0.2155,-0.9217,-0.3225,-0.311,-0.8286,-0.4654,-0.311,-0.8286,-0.4654,-0.2155,-0.9217,-0.3225,-0.1484,-0.9217,-0.3584,-0.311,-0.8286,-0.4654,-0.1484,-0.9217,-0.3584,-0.2142,-0.8286,-0.5172,-0.2142,-0.8286,-0.5172,-0.1484,-0.9217,-0.3584,-0.0757,-0.9217,-0.3804,-0.2142,-0.8286,-0.5172,-0.0757,-0.9217,-0.3804,-0.1092,-0.8286,-0.549,-0.1092,-0.8286,-0.549,-0.0757,-0.9217,-0.3804,0.0,-0.9217,-0.3879,-0.1092,-0.8286,-0.549,0.0,-0.9217,-0.3879,0.0,-0.8286,-0.5598,0.0,-0.8286,-0.5598,0.0,-0.9217,-0.3879,0.0757,-0.9217,-0.3804,0.0,-0.8286,-0.5598,0.0757,-0.9217,-0.3804,0.1092,-0.8286,-0.549,0.1092,-0.8286,-0.549,0.0757,-0.9217,-0.3804,0.1484,-0.9217,-0.3584,0.1092,-0.8286,-0.549,0.1484,-0.9217,-0.3584,0.2142,-0.8286,-0.5172,0.2142,-0.8286,-0.5172,0.1484,-0.9217,-0.3584,0.2155,-0.9217,-0.3225,0.2142,-0.8286,-0.5172,0.2155,-0.9217,-0.3225,0.311,-0.8286,-0.4654,0.311,-0.8286,-0.4654,0.2155,-0.9217,-0.3225,0.2743,-0.9217,-0.2743,0.311,-0.8286,-0.4654,0.2743,-0.9217,-0.2743,0.3958,-0.8286,-0.3958,0.3958,-0.8286,-0.3958,0.2743,-0.9217,-0.2743,0.3225,-0.9217,-0.2155,0.3958,-0.8286,-0.3958,0.3225,-0.9217,-0.2155,0.4654,-0.8286,-0.311,0.4654,-0.8286,-0.311,0.3225,-0.9217,-0.2155,0.3584,-0.9217,-0.1484,0.4654,-0.8286,-0.311,0.3584,-0.9217,-0.1484,0.5172,-0.8286,-0.2142,0.5172,-0.8286,-0.2142,0.3584,-0.9217,-0.1484,0.3804,-0.9217,-0.0757,0.5172,-0.8286,-0.2142,0.3804,-0.9217,-0.0757,0.549,-0.8286,-0.1092,0.549,-0.8286,-0.1092,0.3804,-0.9217,-0.0757,0.3879,-0.9217,0.0,0.549,-0.8286,-0.1092,0.3879,-0.9217,0.0,0.5598,-0.8286,0.0,0.5598,-0.8286,0.0,0.3879,-0.9217,0.0,0.3804,-0.9217,0.0757,0.5598,-0.8286,0.0,0.3804,-0.9217,0.0757,0.549,-0.8286,0.1092,0.549,-0.8286,0.1092,0.3804,-0.9217,0.0757,0.3584,-0.9217,0.1484,0.549,-0.8286,0.1092,0.3584,-0.9217,0.1484,0.5172,-0.8286,0.2142,0.5172,-0.8286,0.2142,0.3584,-0.9217,0.1484,0.3225,-0.9217,0.2155,0.5172,-0.8286,0.2142,0.3225,-0.9217,0.2155,0.4654,-0.8286,0.311,0.4654,-0.8286,0.311,0.3225,-0.9217,0.2155,0.2743,-0.9217,0.2743,0.4654,-0.8286,0.311,0.2743,-0.9217,0.2743,0.3958,-0.8286,0.3958,0.3958,-0.8286,0.3958,0.2743,-0.9217,0.2743,0.2155,-0.9217,0.3225,0.3958,-0.8286,0.3958,0.2155,-0.9217,0.3225,0.311,-0.8286,0.4654,0.311,-0.8286,0.4654,0.2155,-0.9217,0.3225,0.1484,-0.9217,0.3584,0.311,-0.8286,0.4654,0.1484,-0.9217,0.3584,0.2142,-0.8286,0.5172,0.2142,-0.8286,0.5172,0.1484,-0.9217,0.3584,0.0757,-0.9217,0.3804,0.2142,-0.8286,0.5172,0.0757,-0.9217,0.3804,0.1092,-0.8286,0.549,0.1092,-0.8286,0.549,0.0757,-0.9217,0.3804,0.0,-0.9217,0.3879,0.1092,-0.8286,0.549,0.0,-0.9217,0.3879,0.0,-0.8286,0.5598,0.0,-0.9217,0.3879,0.0,-0.9796,0.201,-0.0392,-0.9796,0.1971,0.0,-0.9217,0.3879,-0.0392,-0.9796,0.1971,-0.0757,-0.9217,0.3804,-0.0757,-0.9217,0.3804,-0.0392,-0.9796,0.1971,-0.0769,-0.9796,0.1857,-0.0757,-0.9217,0.3804,-0.0769,-0.9796,0.1857,-0.1484,-0.9217,0.3584,-0.1484,-0.9217,0.3584,-0.0769,-0.9796,0.1857,-0.1117,-0.9796,0.1671,-0.1484,-0.9217,0.3584,-0.1117,-0.9796,0.1671,-0.2155,-0.9217,0.3225,-0.2155,-0.9217,0.3225,-0.1117,-0.9796,0.1671,-0.1421,-0.9796,0.1421,-0.2155,-0.9217,0.3225,-0.1421,-0.9796,0.1421,-0.2743,-0.9217,0.2743,-0.2743,-0.9217,0.2743,-0.1421,-0.9796,0.1421,-0.1671,-0.9796,0.1117,-0.2743,-0.9217,0.2743,-0.1671,-0.9796,0.1117,-0.3225,-0.9217,0.2155,-0.3225,-0.9217,0.2155,-0.1671,-0.9796,0.1117,-0.1857,-0.9796,0.0769,-0.3225,-0.9217,0.2155,-0.1857,-0.9796,0.0769,-0.3584,-0.9217,0.1484,-0.3584,-0.9217,0.1484,-0.1857,-0.9796,0.0769,-0.1971,-0.9796,0.0392,-0.3584,-0.9217,0.1484,-0.1971,-0.9796,0.0392,-0.3804,-0.9217,0.0757,-0.3804,-0.9217,0.0757,-0.1971,-0.9796,0.0392,-0.201,-0.9796,0.0,-0.3804,-0.9217,0.0757,-0.201,-0.9796,0.0,-0.3879,-0.9217,0.0,-0.3879,-0.9217,0.0,-0.201,-0.9796,0.0,-0.1971,-0.9796,-0.0392,-0.3879,-0.9217,0.0,-0.1971,-0.9796,-0.0392,-0.3804,-0.9217,-0.0757,-0.3804,-0.9217,-0.0757,-0.1971,-0.9796,-0.0392,-0.1857,-0.9796,-0.0769,-0.3804,-0.9217,-0.0757,-0.1857,-0.9796,-0.0769,-0.3584,-0.9217,-0.1484,-0.3584,-0.9217,-0.1484,-0.1857,-0.9796,-0.0769,-0.1671,-0.9796,-0.1117,-0.3584,-0.9217,-0.1484,-0.1671,-0.9796,-0.1117,-0.3225,-0.9217,-0.2155,-0.3225,-0.9217,-0.2155,-0.1671,-0.9796,-0.1117,-0.1421,-0.9796,-0.1421,-0.3225,-0.9217,-0.2155,-0.1421,-0.9796,-0.1421,-0.2743,-0.9217,-0.2743,-0.2743,-0.9217,-0.2743,-0.1421,-0.9796,-0.1421,-0.1117,-0.9796,-0.1671,-0.2743,-0.9217,-0.2743,-0.1117,-0.9796,-0.1671,-0.2155,-0.9217,-0.3225,-0.2155,-0.9217,-0.3225,-0.1117,-0.9796,-0.1671,-0.0769,-0.9796,-0.1857,-0.2155,-0.9217,-0.3225,-0.0769,-0.9796,-0.1857,-0.1484,-0.9217,-0.3584,-0.1484,-0.9217,-0.3584,-0.0769,-0.9796,-0.1857,-0.0392,-0.9796,-0.1971,-0.1484,-0.9217,-0.3584,-0.0392,-0.9796,-0.1971,-0.0757,-0.9217,-0.3804,-0.0757,-0.9217,-0.3804,-0.0392,-0.9796,-0.1971,0.0,-0.9796,-0.201,-0.0757,-0.9217,-0.3804,0.0,-0.9796,-0.201,0.0,-0.9217,-0.3879,0.0,-0.9217,-0.3879,0.0,-0.9796,-0.201,0.0392,-0.9796,-0.1971,0.0,-0.9217,-0.3879,0.0392,-0.9796,-0.1971,0.0757,-0.9217,-0.3804,0.0757,-0.9217,-0.3804,0.0392,-0.9796,-0.1971,0.0769,-0.9796,-0.1857,0.0757,-0.9217,-0.3804,0.0769,-0.9796,-0.1857,0.1484,-0.9217,-0.3584,0.1484,-0.9217,-0.3584,0.0769,-0.9796,-0.1857,0.1117,-0.9796,-0.1671,0.1484,-0.9217,-0.3584,0.1117,-0.9796,-0.1671,0.2155,-0.9217,-0.3225,0.2155,-0.9217,-0.3225,0.1117,-0.9796,-0.1671,0.1421,-0.9796,-0.1421,0.2155,-0.9217,-0.3225,0.1421,-0.9796,-0.1421,0.2743,-0.9217,-0.2743,0.2743,-0.9217,-0.2743,0.1421,-0.9796,-0.1421,0.1671,-0.9796,-0.1117,0.2743,-0.9217,-0.2743,0.1671,-0.9796,-0.1117,0.3225,-0.9217,-0.2155,0.3225,-0.9217,-0.2155,0.1671,-0.9796,-0.1117,0.1857,-0.9796,-0.0769,0.3225,-0.9217,-0.2155,0.1857,-0.9796,-0.0769,0.3584,-0.9217,-0.1484,0.3584,-0.9217,-0.1484,0.1857,-0.9796,-0.0769,0.1971,-0.9796,-0.0392,0.3584,-0.9217,-0.1484,0.1971,-0.9796,-0.0392,0.3804,-0.9217,-0.0757,0.3804,-0.9217,-0.0757,0.1971,-0.9796,-0.0392,0.201,-0.9796,0.0,0.3804,-0.9217,-0.0757,0.201,-0.9796,0.0,0.3879,-0.9217,0.0,0.3879,-0.9217,0.0,0.201,-0.9796,0.0,0.1971,-0.9796,0.0392,0.3879,-0.9217,0.0,0.1971,-0.9796,0.0392,0.3804,-0.9217,0.0757,0.3804,-0.9217,0.0757,0.1971,-0.9796,0.0392,0.1857,-0.9796,0.0769,0.3804,-0.9217,0.0757,0.1857,-0.9796,0.0769,0.3584,-0.9217,0.1484,0.3584,-0.9217,0.1484,0.1857,-0.9796,0.0769,0.1671,-0.9796,0.1117,0.3584,-0.9217,0.1484,0.1671,-0.9796,0.1117,0.3225,-0.9217,0.2155,0.3225,-0.9217,0.2155,0.1671,-0.9796,0.1117,0.1421,-0.9796,0.1421,0.3225,-0.9217,0.2155,0.1421,-0.9796,0.1421,0.2743,-0.9217,0.2743,0.2743,-0.9217,0.2743,0.1421,-0.9796,0.1421,0.1117,-0.9796,0.1671,0.2743,-0.9217,0.2743,0.1117,-0.9796,0.1671,0.2155,-0.9217,0.3225,0.2155,-0.9217,0.3225,0.1117,-0.9796,0.1671,0.0769,-0.9796,0.1857,0.2155,-0.9217,0.3225,0.0769,-0.9796,0.1857,0.1484,-0.9217,0.3584,0.1484,-0.9217,0.3584,0.0769,-0.9796,0.1857,0.0392,-0.9796,0.1971,0.1484,-0.9217,0.3584,0.0392,-0.9796,0.1971,0.0757,-0.9217,0.3804,0.0757,-0.9217,0.3804,0.0392,-0.9796,0.1971,0.0,-0.9796,0.201,0.0757,-0.9217,0.3804,0.0,-0.9796,0.201,0.0,-0.9217,0.3879,0.0,-1.0,0.0,-0.0392,-0.9796,0.1971,0.0,-0.9796,0.201,0.0,-1.0,0.0,-0.0769,-0.9796,0.1857,-0.0392,-0.9796,0.1971,0.0,-1.0,0.0,-0.1117,-0.9796,0.1671,-0.0769,-0.9796,0.1857,0.0,-1.0,0.0,-0.1421,-0.9796,0.1421,-0.1117,-0.9796,0.1671,0.0,-1.0,0.0,-0.1671,-0.9796,0.1117,-0.1421,-0.9796,0.1421,0.0,-1.0,0.0,-0.1857,-0.9796,0.0769,-0.1671,-0.9796,0.1117,0.0,-1.0,0.0,-0.1971,-0.9796,0.0392,-0.1857,-0.9796,0.0769,0.0,-1.0,0.0,-0.201,-0.9796,0.0,-0.1971,-0.9796,0.0392,0.0,-1.0,0.0,-0.1971,-0.9796,-0.0392,-0.201,-0.9796,0.0,0.0,-1.0,0.0,-0.1857,-0.9796,-0.0769,-0.1971,-0.9796,-0.0392,0.0,-1.0,0.0,-0.1671,-0.9796,-0.1117,-0.1857,-0.9796,-0.0769,0.0,-1.0,0.0,-0.1421,-0.9796,-0.1421,-0.1671,-0.9796,-0.1117,0.0,-1.0,0.0,-0.1117,-0.9796,-0.1671,-0.1421,-0.9796,-0.1421,0.0,-1.0,0.0,-0.0769,-0.9796,-0.1857,-0.1117,-0.9796,-0.1671,0.0,-1.0,0.0,-0.0392,-0.9796,-0.1971,-0.0769,-0.9796,-0.1857,0.0,-1.0,0.0,0.0,-0.9796,-0.201,-0.0392,-0.9796,-0.1971,0.0,-1.0,0.0,0.0392,-0.9796,-0.1971,0.0,-0.9796,-0.201,0.0,-1.0,0.0,0.0769,-0.9796,-0.1857,0.0392,-0.9796,-0.1971,0.0,-1.0,0.0,0.1117,-0.9796,-0.1671,0.0769,-0.9796,-0.1857,0.0,-1.0,0.0,0.1421,-0.9796,-0.1421,0.1117,-0.9796,-0.1671,0.0,-1.0,0.0,0.1671,-0.9796,-0.1117,0.1421,-0.9796,-0.1421,0.0,-1.0,0.0,0.1857,-0.9796,-0.0769,0.1671,-0.9796,-0.1117,0.0,-1.0,0.0,0.1971,-0.9796,-0.0392,0.1857,-0.9796,-0.0769,0.0,-1.0,0.0,0.201,-0.9796,0.0,0.1971,-0.9796,-0.0392,0.0,-1.0,0.0,0.1971,-0.9796,0.0392,0.201,-0.9796,0.0,0.0,-1.0,0.0,0.1857,-0.9796,0.0769,0.1971,-0.9796,0.0392,0.0,-1.0,0.0,0.1671,-0.9796,0.1117,0.1857,-0.9796,0.0769,0.0,-1.0,0.0,0.1421,-0.9796,0.1421,0.1671,-0.9796,0.1117,0.0,-1.0,0.0,0.1117,-0.9796,0.1671,0.1421,-0.9796,0.1421,0.0,-1.0,0.0,0.0769,-0.9796,0.1857,0.1117,-0.9796,0.1671,0.0,-1.0,0.0,0.0392,-0.9796,0.1971,0.0769,-0.9796,0.1857,0.0,-1.0,0.0,0.0,-0.9796,0.201,0.0392,-0.9796,0.1971],"tangents":null,"uvs":[0.0,2.0,0.0,1.9375,0.0312,1.9375,0.0312,2.0,0.0312,1.9375,0.0625,1.9375,0.0625,2.0,0.0625,1.9375,0.0938,1.9375,0.0938,2.0,0.0938,1.9375,0.125,1.9375,0.125,2.0,0.125,1.9375,0.1562,1.9375,0.1562,2.0,0.1562,1.9375,0.1875,1.9375,0.1875,2.0,0.1875,1.9375,0.2187,1.9375,0.2187,2.0,0.2187,1.9375,0.25,1.9375,0.25,2.0,0.25,1.9375,0.2812,1.9375,0.2812,2.0,0.2812,1.9375,0.3125,1.9375,0.3125,2.0,0.3125,1.9375,0.3437,1.9375,0.3437,2.0,0.3437,1.9375,0.375,1.9375,0.375,2.0,0.375,1.9375,0.4062,1.9375,0.4062,2.0,0.4062,1.9375,0.4375,1.9375,0.4375,2.0,0.4375,1.9375,0.4688,1.9375,0.4688,2.0,0.4688,1.9375,0.5,1.9375,0.5,2.0,0.5,1.9375,0.5313,1.9375,0.5313,2.0,0.5313,1.9375,0.5625,1.9375,0.5625,2.0,0.5625,1.9375,0.5938,1.9375,0.5938,2.0,0.5938,1.9375,0.625,1.9375,0.625,2.0,0.625,1.9375,0.6563,1.9375,0.6563,2.0,0.6563,1.9375,0.6875,1.9375,0.6875,2.0,0.6875,1.9375,0.7188,1.9375,0.7188,2.0,0.7188,1.9375,0.75,1.9375,0.75,2.0,0.75,1.9375,0.7813,1.9375,0.7813,2.0,0.7813,1.9375,0.8125,1.9375,0.8125,2.0,0.8125,1.9375,0.8438,1.9375,0.8438,2.0,0.8438,1.9375,0.875,1.9375,0.875,2.0,0.875,1.9375,0.9063,1.9375,0.9063,2.0,0.9063,1.9375,0.9375,1.9375,0.9375,2.0,0.9375,1.9375,0.9688,1.9375,0.9688,2.0,0.9688,1.9375,1.0,1.9375,0.0,1.9375,0.0,1.875,0.0312,1.875,0.0,1.9375,0.0312,1.875,0.0312,1.9375,0.0312,1.9375,0.0312,1.875,0.0625,1.875,0.0312,1.9375,0.0625,1.875,0.0625,1.9375,0.0625,1.9375,0.0625,1.875,0.0938,1.875,0.0625,1.9375,0.0938,1.875,0.0938,1.9375,0.0938,1.9375,0.0938,1.875,0.125,1.875,0.0938,1.9375,0.125,1.875,0.125,1.9375,0.125,1.9375,0.125,1.875,0.1562,1.875,0.125,1.9375,0.1562,1.875,0.1562,1.9375,0.1562,1.9375,0.1562,1.875,0.1875,1.875,0.1562,1.9375,0.1875,1.875,0.1875,1.9375,0.1875,1.9375,0.1875,1.875,0.2187,1.875,0.1875,1.9375,0.2187,1.875,0.2187,1.9375,0.2187,1.9375,0.2187,1.875,0.25,1.875,0.2187,1.9375,0.25,1.875,0.25,1.9375,0.25,1.9375,0.25,1.875,0.2812,1.875,0.25,1.9375,0.2812,1.875,0.2812,1.9375,0.2812,1.9375,0.2812,1.875,0.3125,1.875,0.2812,1.9375,0.3125,1.875,0.3125,1.9375,0.3125,1.9375,0.3125,1.875,0.3437,1.875,0.3125,1.9375,0.3437,1.875,0.3437,1.9375,0.3437,1.9375,0.3437,1.875,0.375,1.875,0.3437,1.9375,0.375,1.875,0.375,1.9375,0.375,1.9375,0.375,1.875,0.4062,1.875,0.375,1.9375,0.4062,1.875,0.4062,1.9375,0.4062,1.9375,0.4062,1.875,0.4375,1.875,0.4062,1.9375,0.4375,1.875,0.4375,1.9375,0.4375,1.9375,0.4375,1.875,0.4688,1.875,0.4375,1.9375,0.4688,1.875,0.4688,1.9375,0.4688,1.9375,0.4688,1.875,0.5,1.875,0.4688,1.9375,0.5,1.875,0.5,1.9375,0.5,1.9375,0.5,1.875,0.5313,1.875,0.5,1.9375,0.5313,1.875,0.5313,1.9375,0.5313,1.9375,0.5313,1.875,0.5625,1.875,0.5313,1.9375,0.5625,1.875,0.5625,1.9375,0.5625,1.9375,0.5625,1.875,0.5938,1.875,0.5625,1.9375,0.5938,1.875,0.5938,1.9375,0.5938,1.9375,0.5938,1.875,0.625,1.875,0.5938,1.9375,0.625,1.875,0.625,1.9375,0.625,1.9375,0.625,1.875,0.6563,1.875,0.625,1.9375,0.6563,1.875,0.6563,1.9375,0.6563,1.9375,0.6563,1.875,0.6875,1.875,0.6563,1.9375,0.6875,1.875,0.6875,1.9375,0.6875,1.9375,0.6875,1.875,0.7188,1.875,0.6875,1.9375,0.7188,1.875,0.7188,1.9375,0.7188,1.9375,0.7188,1.875,0.75,1.875,0.7188,1.9375,0.75,1.875,0.75,1.9375,0.75,1.9375,0.75,1.875,0.7813,1.875,0.75,1.9375,0.7813,1.875,0.7813,1.9375,0.7813,1.9375,0.7813,1.875,0.8125,1.875,0.7813,1.9375,0.8125,1.875,0.8125,1.9375,0.8125,1.9375,0.8125,1.875,0.8438,1.875,0.8125,1.9375,0.8438,1.875,0.8438,1.9375,0.8438,1.9375,0.8438,1.875,0.875,1.875,0.8438,1.9375,0.875,1.875,0.875,1.9375,0.875,1.9375,0.875,1.875,0.9063,1.875,0.875,1.9375,0.9063,1.875,0.9063,1.9375,0.9063,1.9375,0.9063,1.875,0.9375,1.875,0.9063,1.9375,0.9375,1.875,0.9375,1.9375,0.9375,1.9375,0.9375,1.875,0.9688,1.875,0.9375,1.9375,0.9688,1.875,0.9688,1.9375,0.9688,1.9375,0.9688,1.875,1.0,1.875,0.9688,1.9375,1.0,1.875,1.0,1.9375,0.0,1.875,0.0,1.8125,0.0312,1.8125,0.0,1.875,0.0312,1.8125,0.0312,1.875,0.0312,1.875,0.0312,1.8125,0.0625,1.8125,0.0312,1.875,0.0625,1.8125,0.0625,1.875,0.0625,1.875,0.0625,1.8125,0.0938,1.8125,0.0625,1.875,0.0938,1.8125,0.0938,1.875,0.0938,1.875,0.0938,1.8125,0.125,1.8125,0.0938,1.875,0.125,1.8125,0.125,1.875,0.125,1.875,0.125,1.8125,0.1562,1.8125,0.125,1.875,0.1562,1.8125,0.1562,1.875,0.1562,1.875,0.1562,1.8125,0.1875,1.8125,0.1562,1.875,0.1875,1.8125,0.1875,1.875,0.1875,1.875,0.1875,1.8125,0.2187,1.8125,0.1875,1.875,0.2187,1.8125,0.2187,1.875,0.2187,1.875,0.2187,1.8125,0.25,1.8125,0.2187,1.875,0.25,1.8125,0.25,1.875,0.25,1.875,0.25,1.8125,0.2812,1.8125,0.25,1.875,0.2812,1.8125,0.2812,1.875,0.2812,1.875,0.2812,1.8125,0.3125,1.8125,0.2812,1.875,0.3125,1.8125,0.3125,1.875,0.3125,1.875,0.3125,1.8125,0.3437,1.8125,0.3125,1.875,0.3437,1.8125,0.3437,1.875,0.3437,1.875,0.3437,1.8125,0.375,1.8125,0.3437,1.875,0.375,1.8125,0.375,1.875,0.375,1.875,0.375,1.8125,0.4062,1.8125,0.375,1.875,0.4062,1.8125,0.4062,1.875,0.4062,1.875,0.4062,1.8125,0.4375,1.8125,0.4062,1.875,0.4375,1.8125,0.4375,1.875,0.4375,1.875,0.4375,1.8125,0.4688,1.8125,0.4375,1.875,0.4688,1.8125,0.4688,1.875,0.4688,1.875,0.4688,1.8125,0.5,1.8125,0.4688,1.875,0.5,1.8125,0.5,1.875,0.5,1.875,0.5,1.8125,0.5313,1.8125,0.5,1.875,0.5313,1.8125,0.5313,1.875,0.5313,1.875,0.5313,1.8125,0.5625,1.8125,0.5313,1.875,0.5625,1.8125,0.5625,1.875,0.5625,1.875,0.5625,1.8125,0.5938,1.8125,0.5625,1.875,0.5938,1.8125,0.5938,1.875,0.5938,1.875,0.5938,1.8125,0.625,1.8125,0.5938,1.875,0.625,1.8125,0.625,1.875,0.625,1.875,0.625,1.8125,0.6563,1.8125,0.625,1.875,0.6563,1.8125,0.6563,1.875,0.6563,1.875,0.6563,1.8125,0.6875,1.8125,0.6563,1.875,0.6875,1.8125,0.6875,1.875,0.6875,1.875,0.6875,1.8125,0.7188,1.8125,0.6875,1.875,0.7188,1.8125,0.7188,1.875,0.7188,1.875,0.7188,1.8125,0.75,1.8125,0.7188,1.875,0.75,1.8125,0.75,1.875,0.75,1.875,0.75,1.8125,0.7813,1.8125,0.75,1.875,0.7813,1.8125,0.7813,1.875,0.7813,1.875,0.7813,1.8125,0.8125,1.8125,0.7813,1.875,0.8125,1.8125,0.8125,1.875,0.8125,1.875,0.8125,1.8125,0.8438,1.8125,0.8125,1.875,0.8438,1.8125,0.8438,1.875,0.8438,1.875,0.8438,1.8125,0.875,1.8125,0.8438,1.875,0.875,1.8125,0.875,1.875,0.875,1.875,0.875,1.8125,0.9063,1.8125,0.875,1.875,0.9063,1.8125,0.9063,1.875,0.9063,1.875,0.9063,1.8125,0.9375,1.8125,0.9063,1.875,0.9375,1.8125,0.9375,1.875,0.9375,1.875,0.9375,1.8125,0.9688,1.8125,0.9375,1.875,0.9688,1.8125,0.9688,1.875,0.9688,1.875,0.9688,1.8125,1.0,1.8125,0.9688,1.875,1.0,1.8125,1.0,1.875,0.0,1.8125,0.0,1.75,0.0312,1.75,0.0,1.8125,0.0312,1.75,0.0312,1.8125,0.0312,1.8125,0.0312,1.75,0.0625,1.75,0.0312,1.8125,0.0625,1.75,0.0625,1.8125,0.0625,1.8125,0.0625,1.75,0.0938,1.75,0.0625,1.8125,0.0938,1.75,0.0938,1.8125,0.0938,1.8125,0.0938,1.75,0.125,1.75,0.0938,1.8125,0.125,1.75,0.125,1.8125,0.125,1.8125,0.125,1.75,0.1562,1.75,0.125,1.8125,0.1562,1.75,0.1562,1.8125,0.1562,1.8125,0.1562,1.75,0.1875,1.75,0.1562,1.8125,0.1875,1.75,0.1875,1.8125,0.1875,1.8125,0.1875,1.75,0.2187,1.75,0.1875,1.8125,0.2187,1.75,0.2187,1.8125,0.2187,1.8125,0.2187,1.75,0.25,1.75,0.2187,1.8125,0.25,1.75,0.25,1.8125,0.25,1.8125,0.25,1.75,0.2812,1.75,0.25,1.8125,0.2812,1.75,0.2812,1.8125,0.2812,1.8125,0.2812,1.75,0.3125,1.75,0.2812,1.8125,0.3125,1.75,0.3125,1.8125,0.3125,1.8125,0.3125,1.75,0.3437,1.75,0.3125,1.8125,0.3437,1.75,0.3437,1.8125,0.3437,1.8125,0.3437,1.75,0.375,1.75,0.3437,1.8125,0.375,1.75,0.375,1.8125,0.375,1.8125,0.375,1.75,0.4062,1.75,0.375,1.8125,0.4062,1.75,0.4062,1.8125,0.4062,1.8125,0.4062,1.75,0.4375,1.75,0.4062,1.8125,0.4375,1.75,0.4375,1.8125,0.4375,1.8125,0.4375,1.75,0.4688,1.75,0.4375,1.8125,0.4688,1.75,0.4688,1.8125,0.4688,1.8125,0.4688,1.75,0.5,1.75,0.4688,1.8125,0.5,1.75,0.5,1.8125,0.5,1.8125,0.5,1.75,0.5313,1.75,0.5,1.8125,0.5313,1.75,0.5313,1.8125,0.5313,1.8125,0.5313,1.75,0.5625,1.75,0.5313,1.8125,0.5625,1.75,0.5625,1.8125,0.5625,1.8125,0.5625,1.75,0.5938,1.75,0.5625,1.8125,0.5938,1.75,0.5938,1.8125,0.5938,1.8125,0.5938,1.75,0.625,1.75,0.5938,1.8125,0.625,1.75,0.625,1.8125,0.625,1.8125,0.625,1.75,0.6563,1.75,0.625,1.8125,0.6563,1.75,0.6563,1.8125,0.6563,1.8125,0.6563,1.75,0.6875,1.75,0.6563,1.8125,0.6875,1.75,0.6875,1.8125,0.6875,1.8125,0.6875,1.75,0.7188,1.75,0.6875,1.8125,0.7188,1.75,0.7188,1.8125,0.7188,1.8125,0.7188,1.75,0.75,1.75,0.7188,1.8125,0.75,1.75,0.75,1.8125,0.75,1.8125,0.75,1.75,0.7813,1.75,0.75,1.8125,0.7813,1.75,0.7813,1.8125,0.7813,1.8125,0.7813,1.75,0.8125,1.75,0.7813,1.8125,0.8125,1.75,0.8125,1.8125,0.8125,1.8125,0.8125,1.75,0.8438,1.75,0.8125,1.8125,0.8438,1.75,0.8438,1.8125,0.8438,1.8125,0.8438,1.75,0.875,1.75,0.8438,1.8125,0.875,1.75,0.875,1.8125,0.875,1.8125,0.875,1.75,0.9063,1.75,0.875,1.8125,0.9063,1.75,0.9063,1.8125,0.9063,1.8125,0.9063,1.75,0.9375,1.75,0.9063,1.8125,0.9375,1.75,0.9375,1.8125,0.9375,1.8125,0.9375,1.75,0.9688,1.75,0.9375,1.8125,0.9688,1.75,0.9688,1.8125,0.9688,1.8125,0.9688,1.75,1.0,1.75,0.9688,1.8125,1.0,1.75,1.0,1.8125,0.0,1.75,0.0,1.6875,0.0312,1.6875,0.0,1.75,0.0312,1.6875,0.0312,1.75,0.0312,1.75,0.0312,1.6875,0.0625,1.6875,0.0312,1.75,0.0625,1.6875,0.0625,1.75,0.0625,1.75,0.0625,1.6875,0.0938,1.6875,0.0625,1.75,0.0938,1.6875,0.0938,1.75,0.0938,1.75,0.0938,1.6875,0.125,1.6875,0.0938,1.75,0.125,1.6875,0.125,1.75,0.125,1.75,0.125,1.6875,0.1562,1.6875,0.125,1.75,0.1562,1.6875,0.1562,1.75,0.1562,1.75,0.1562,1.6875,0.1875,1.6875,0.1562,1.75,0.1875,1.6875,0.1875,1.75,0.1875,1.75,0.1875,1.6875,0.2187,1.6875,0.1875,1.75,0.2187,1.6875,0.2187,1.75,0.2187,1.75,0.2187,1.6875,0.25,1.6875,0.2187,1.75,0.25,1.6875,0.25,1.75,0.25,1.75,0.25,1.6875,0.2812,1.6875,0.25,1.75,0.2812,1.6875,0.2812,1.75,0.2812,1.75,0.2812,1.6875,0.3125,1.6875,0.2812,1.75,0.3125,1.6875,0.3125,1.75,0.3125,1.75,0.3125,1.6875,0.3437,1.6875,0.3125,1.75,0.3437,1.6875,0.3437,1.75,0.3437,1.75,0.3437,1.6875,0.375,1.6875,0.3437,1.75,0.375,1.6875,0.375,1.75,0.375,1.75,0.375,1.6875,0.4062,1.6875,0.375,1.75,0.4062,1.6875,0.4062,1.75,0.4062,1.75,0.4062,1.6875,0.4375,1.6875,0.4062,1.75,0.4375,1.6875,0.4375,1.75,0.4375,1.75,0.4375,1.6875,0.4688,1.6875,0.4375,1.75,0.4688,1.6875,0.4688,1.75,0.4688,1.75,0.4688,1.6875,0.5,1.6875,0.4688,1.75,0.5,1.6875,0.5,1.75,0.5,1.75,0.5,1.6875,0.5313,1.6875,0.5,1.75,0.5313,1.6875,0.5313,1.75,0.5313,1.75,0.5313,1.6875,0.5625,1.6875,0.5313,1.75,0.5625,1.6875,0.5625,1.75,0.5625,1.75,0.5625,1.6875,0.5938,1.6875,0.5625,1.75,0.5938,1.6875,0.5938,1.75,0.5938,1.75,0.5938,1.6875,0.625,1.6875,0.5938,1.75,0.625,1.6875,0.625,1.75,0.625,1.75,0.625,1.6875,0.6563,1.6875,0.625,1.75,0.6563,1.6875,0.6563,1.75,0.6563,1.75,0.6563,1.6875,0.6875,1.6875,0.6563,1.75,0.6875,1.6875,0.6875,1.75,0.6875,1.75,0.6875,1.6875,0.7188,1.6875,0.6875,1.75,0.7188,1.6875,0.7188,1.75,0.7188,1.75,0.7188,1.6875,0.75,1.6875,0.7188,1.75,0.75,1.6875,0.75,1.75,0.75,1.75,0.75,1.6875,0.7813,1.6875,0.75,1.75,0.7813,1.6875,0.7813,1.75,0.7813,1.75,0.7813,1.6875,0.8125,1.6875,0.7813,1.75,0.8125,1.6875,0.8125,1.75,0.8125,1.75,0.8125,1.6875,0.8438,1.6875,0.8125,1.75,0.8438,1.6875,0.8438,1.75,0.8438,1.75,0.8438,1.6875,0.875,1.6875,0.8438,1.75,0.875,1.6875,0.875,1.75,0.875,1.75,0.875,1.6875,0.9063,1.6875,0.875,1.75,0.9063,1.6875,0.9063,1.75,0.9063,1.75,0.9063,1.6875,0.9375,1.6875,0.9063,1.75,0.9375,1.6875,0.9375,1.75,0.9375,1.75,0.9375,1.6875,0.9688,1.6875,0.9375,1.75,0.9688,1.6875,0.9688,1.75,0.9688,1.75,0.9688,1.6875,1.0,1.6875,0.9688,1.75,1.0,1.6875,1.0,1.75,0.0,1.6875,0.0,1.625,0.0312,1.625,0.0,1.6875,0.0312,1.625,0.0312,1.6875,0.0312,1.6875,0.0312,1.625,0.0625,1.625,0.0312,1.6875,0.0625,1.625,0.0625,1.6875,0.0625,1.6875,0.0625,1.625,0.0938,1.625,0.0625,1.6875,0.0938,1.625,0.0938,1.6875,0.0938,1.6875,0.0938,1.625,0.125,1.625,0.0938,1.6875,0.125,1.625,0.125,1.6875,0.125,1.6875,0.125,1.625,0.1562,1.625,0.125,1.6875,0.1562,1.625,0.1562,1.6875,0.1562,1.6875,0.1562,1.625,0.1875,1.625,0.1562,1.6875,0.1875,1.625,0.1875,1.6875,0.1875,1.6875,0.1875,1.625,0.2187,1.625,0.1875,1.6875,0.2187,1.625,0.2187,1.6875,0.2187,1.6875,0.2187,1.625,0.25,1.625,0.2187,1.6875,0.25,1.625,0.25,1.6875,0.25,1.6875,0.25,1.625,0.2812,1.625,0.25,1.6875,0.2812,1.625,0.2812,1.6875,0.2812,1.6875,0.2812,1.625,0.3125,1.625,0.2812,1.6875,0.3125,1.625,0.3125,1.6875,0.3125,1.6875,0.3125,1.625,0.3437,1.625,0.3125,1.6875,0.3437,1.625,0.3437,1.6875,0.3437,1.6875,0.3437,1.625,0.375,1.625,0.3437,1.6875,0.375,1.625,0.375,1.6875,0.375,1.6875,0.375,1.625,0.4062,1.625,0.375,1.6875,0.4062,1.625,0.4062,1.6875,0.4062,1.6875,0.4062,1.625,0.4375,1.625,0.4062,1.6875,0.4375,1.625,0.4375,1.6875,0.4375,1.6875,0.4375,1.625,0.4688,1.625,0.4375,1.6875,0.4688,1.625,0.4688,1.6875,0.4688,1.6875,0.4688,1.625,0.5,1.625,0.4688,1.6875,0.5,1.625,0.5,1.6875,0.5,1.6875,0.5,1.625,0.5313,1.625,0.5,1.6875,0.5313,1.625,0.5313,1.6875,0.5313,1.6875,0.5313,1.625,0.5625,1.625,0.5313,1.6875,0.5625,1.625,0.5625,1.6875,0.5625,1.6875,0.5625,1.625,0.5938,1.625,0.5625,1.6875,0.5938,1.625,0.5938,1.6875,0.5938,1.6875,0.5938,1.625,0.625,1.625,0.5938,1.6875,0.625,1.625,0.625,1.6875,0.625,1.6875,0.625,1.625,0.6563,1.625,0.625,1.6875,0.6563,1.625,0.6563,1.6875,0.6563,1.6875,0.6563,1.625,0.6875,1.625,0.6563,1.6875,0.6875,1.625,0.6875,1.6875,0.6875,1.6875,0.6875,1.625,0.7188,1.625,0.6875,1.6875,0.7188,1.625,0.7188,1.6875,0.7188,1.6875,0.7188,1.625,0.75,1.625,0.7188,1.6875,0.75,1.625,0.75,1.6875,0.75,1.6875,0.75,1.625,0.7813,1.625,0.75,1.6875,0.7813,1.625,0.7813,1.6875,0.7813,1.6875,0.7813,1.625,0.8125,1.625,0.7813,1.6875,0.8125,1.625,0.8125,1.6875,0.8125,1.6875,0.8125,1.625,0.8438,1.625,0.8125,1.6875,0.8438,1.625,0.8438,1.6875,0.8438,1.6875,0.8438,1.625,0.875,1.625,0.8438,1.6875,0.875,1.625,0.875,1.6875,0.875,1.6875,0.875,1.625,0.9063,1.625,0.875,1.6875,0.9063,1.625,0.9063,1.6875,0.9063,1.6875,0.9063,1.625,0.9375,1.625,0.9063,1.6875,0.9375,1.625,0.9375,1.6875,0.9375,1.6875,0.9375,1.625,0.9688,1.625,0.9375,1.6875,0.9688,1.625,0.9688,1.6875,0.9688,1.6875,0.9688,1.625,1.0,1.625,0.9688,1.6875,1.0,1.625,1.0,1.6875,0.0,1.625,0.0,1.5625,0.0312,1.5625,0.0,1.625,0.0312,1.5625,0.0312,1.625,0.0312,1.625,0.0312,1.5625,0.0625,1.5625,0.0312,1.625,0.0625,1.5625,0.0625,1.625,0.0625,1.625,0.0625,1.5625,0.0938,1.5625,0.0625,1.625,0.0938,1.5625,0.0938,1.625,0.0938,1.625,0.0938,1.5625,0.125,1.5625,0.0938,1.625,0.125,1.5625,0.125,1.625,0.125,1.625,0.125,1.5625,0.1562,1.5625,0.125,1.625,0.1562,1.5625,0.1562,1.625,0.1562,1.625,0.1562,1.5625,0.1875,1.5625,0.1562,1.625,0.1875,1.5625,0.1875,1.625,0.1875,1.625,0.1875,1.5625,0.2187,1.5625,0.1875,1.625,0.2187,1.5625,0.2187,1.625,0.2187,1.625,0.2187,1.5625,0.25,1.5625,0.2187,1.625,0.25,1.5625,0.25,1.625,0.25,1.625,0.25,1.5625,0.2812,1.5625,0.25,1.625,0.2812,1.5625,0.2812,1.625,0.2812,1.625,0.2812,1.5625,0.3125,1.5625,0.2812,1.625,0.3125,1.5625,0.3125,1.625,0.3125,1.625,0.3125,1.5625,0.3437,1.5625,0.3125,1.625,0.3437,1.5625,0.3437,1.625,0.3437,1.625,0.3437,1.5625,0.375,1.5625,0.3437,1.625,0.375,1.5625,0.375,1.625,0.375,1.625,0.375,1.5625,0.4062,1.5625,0.375,1.625,0.4062,1.5625,0.4062,1.625,0.4062,1.625,0.4062,1.5625,0.4375,1.5625,0.4062,1.625,0.4375,1.5625,0.4375,1.625,0.4375,1.625,0.4375,1.5625,0.4688,1.5625,0.4375,1.625,0.4688,1.5625,0.4688,1.625,0.4688,1.625,0.4688,1.5625,0.5,1.5625,0.4688,1.625,0.5,1.5625,0.5,1.625,0.5,1.625,0.5,1.5625,0.5313,1.5625,0.5,1.625,0.5313,1.5625,0.5313,1.625,0.5313,1.625,0.5313,1.5625,0.5625,1.5625,0.5313,1.625,0.5625,1.5625,0.5625,1.625,0.5625,1.625,0.5625,1.5625,0.5938,1.5625,0.5625,1.625,0.5938,1.5625,0.5938,1.625,0.5938,1.625,0.5938,1.5625,0.625,1.5625,0.5938,1.625,0.625,1.5625,0.625,1.625,0.625,1.625,0.625,1.5625,0.6563,1.5625,0.625,1.625,0.6563,1.5625,0.6563,1.625,0.6563,1.625,0.6563,1.5625,0.6875,1.5625,0.6563,1.625,0.6875,1.5625,0.6875,1.625,0.6875,1.625,0.6875,1.5625,0.7188,1.5625,0.6875,1.625,0.7188,1.5625,0.7188,1.625,0.7188,1.625,0.7188,1.5625,0.75,1.5625,0.7188,1.625,0.75,1.5625,0.75,1.625,0.75,1.625,0.75,1.5625,0.7813,1.5625,0.75,1.625,0.7813,1.5625,0.7813,1.625,0.7813,1.625,0.7813,1.5625,0.8125,1.5625,0.7813,1.625,0.8125,1.5625,0.8125,1.625,0.8125,1.625,0.8125,1.5625,0.8438,1.5625,0.8125,1.625,0.8438,1.5625,0.8438,1.625,0.8438,1.625,0.8438,1.5625,0.875,1.5625,0.8438,1.625,0.875,1.5625,0.875,1.625,0.875,1.625,0.875,1.5625,0.9063,1.5625,0.875,1.625,0.9063,1.5625,0.9063,1.625,0.9063,1.625,0.9063,1.5625,0.9375,1.5625,0.9063,1.625,0.9375,1.5625,0.9375,1.625,0.9375,1.625,0.9375,1.5625,0.9688,1.5625,0.9375,1.625,0.9688,1.5625,0.9688,1.625,0.9688,1.625,0.9688,1.5625,1.0,1.5625,0.9688,1.625,1.0,1.5625,1.0,1.625,0.0,1.5625,0.0,1.5,0.0312,1.5,0.0,1.5625,0.0312,1.5,0.0312,1.5625,0.0312,1.5625,0.0312,1.5,0.0625,1.5,0.0312,1.5625,0.0625,1.5,0.0625,1.5625,0.0625,1.5625,0.0625,1.5,0.0938,1.5,0.0625,1.5625,0.0938,1.5,0.0938,1.5625,0.0938,1.5625,0.0938,1.5,0.125,1.5,0.0938,1.5625,0.125,1.5,0.125,1.5625,0.125,1.5625,0.125,1.5,0.1562,1.5,0.125,1.5625,0.1562,1.5,0.1562,1.5625,0.1562,1.5625,0.1562,1.5,0.1875,1.5,0.1562,1.5625,0.1875,1.5,0.1875,1.5625,0.1875,1.5625,0.1875,1.5,0.2187,1.5,0.1875,1.5625,0.2187,1.5,0.2187,1.5625,0.2187,1.5625,0.2187,1.5,0.25,1.5,0.2187,1.5625,0.25,1.5,0.25,1.5625,0.25,1.5625,0.25,1.5,0.2812,1.5,0.25,1.5625,0.2812,1.5,0.2812,1.5625,0.2812,1.5625,0.2812,1.5,0.3125,1.5,0.2812,1.5625,0.3125,1.5,0.3125,1.5625,0.3125,1.5625,0.3125,1.5,0.3437,1.5,0.3125,1.5625,0.3437,1.5,0.3437,1.5625,0.3437,1.5625,0.3437,1.5,0.375,1.5,0.3437,1.5625,0.375,1.5,0.375,1.5625,0.375,1.5625,0.375,1.5,0.4062,1.5,0.375,1.5625,0.4062,1.5,0.4062,1.5625,0.4062,1.5625,0.4062,1.5,0.4375,1.5,0.4062,1.5625,0.4375,1.5,0.4375,1.5625,0.4375,1.5625,0.4375,1.5,0.4688,1.5,0.4375,1.5625,0.4688,1.5,0.4688,1.5625,0.4688,1.5625,0.4688,1.5,0.5,1.5,0.4688,1.5625,0.5,1.5,0.5,1.5625,0.5,1.5625,0.5,1.5,0.5313,1.5,0.5,1.5625,0.5313,1.5,0.5313,1.5625,0.5313,1.5625,0.5313,1.5,0.5625,1.5,0.5313,1.5625,0.5625,1.5,0.5625,1.5625,0.5625,1.5625,0.5625,1.5,0.5938,1.5,0.5625,1.5625,0.5938,1.5,0.5938,1.5625,0.5938,1.5625,0.5938,1.5,0.625,1.5,0.5938,1.5625,0.625,1.5,0.625,1.5625,0.625,1.5625,0.625,1.5,0.6563,1.5,0.625,1.5625,0.6563,1.5,0.6563,1.5625,0.6563,1.5625,0.6563,1.5,0.6875,1.5,0.6563,1.5625,0.6875,1.5,0.6875,1.5625,0.6875,1.5625,0.6875,1.5,0.7188,1.5,0.6875,1.5625,0.7188,1.5,0.7188,1.5625,0.7188,1.5625,0.7188,1.5,0.75,1.5,0.7188,1.5625,0.75,1.5,0.75,1.5625,0.75,1.5625,0.75,1.5,0.7813,1.5,0.75,1.5625,0.7813,1.5,0.7813,1.5625,0.7813,1.5625,0.7813,1.5,0.8125,1.5,0.7813,1.5625,0.8125,1.5,0.8125,1.5625,0.8125,1.5625,0.8125,1.5,0.8438,1.5,0.8125,1.5625,0.8438,1.5,0.8438,1.5625,0.8438,1.5625,0.8438,1.5,0.875,1.5,0.8438,1.5625,0.875,1.5,0.875,1.5625,0.875,1.5625,0.875,1.5,0.9063,1.5,0.875,1.5625,0.9063,1.5,0.9063,1.5625,0.9063,1.5625,0.9063,1.5,0.9375,1.5,0.9063,1.5625,0.9375,1.5,0.9375,1.5625,0.9375,1.5625,0.9375,1.5,0.9688,1.5,0.9375,1.5625,0.9688,1.5,0.9688,1.5625,0.9688,1.5625,0.9688,1.5,1.0,1.5,0.9688,1.5625,1.0,1.5,1.0,1.5625,0.0,1.5,0.0,1.4375,0.0312,1.4375,0.0,1.5,0.0312,1.4375,0.0312,1.5,0.0312,1.5,0.0312,1.4375,0.0625,1.4375,0.0312,1.5,0.0625,1.4375,0.0625,1.5,0.0625,1.5,0.0625,1.4375,0.0938,1.4375,0.0625,1.5,0.0938,1.4375,0.0938,1.5,0.0938,1.5,0.0938,1.4375,0.125,1.4375,0.0938,1.5,0.125,1.4375,0.125,1.5,0.125,1.5,0.125,1.4375,0.1562,1.4375,0.125,1.5,0.1562,1.4375,0.1562,1.5,0.1562,1.5,0.1562,1.4375,0.1875,1.4375,0.1562,1.5,0.1875,1.4375,0.1875,1.5,0.1875,1.5,0.1875,1.4375,0.2187,1.4375,0.1875,1.5,0.2187,1.4375,0.2187,1.5,0.2187,1.5,0.2187,1.4375,0.25,1.4375,0.2187,1.5,0.25,1.4375,0.25,1.5,0.25,1.5,0.25,1.4375,0.2812,1.4375,0.25,1.5,0.2812,1.4375,0.2812,1.5,0.2812,1.5,0.2812,1.4375,0.3125,1.4375,0.2812,1.5,0.3125,1.4375,0.3125,1.5,0.3125,1.5,0.3125,1.4375,0.3437,1.4375,0.3125,1.5,0.3437,1.4375,0.3437,1.5,0.3437,1.5,0.3437,1.4375,0.375,1.4375,0.3437,1.5,0.375,1.4375,0.375,1.5,0.375,1.5,0.375,1.4375,0.4062,1.4375,0.375,1.5,0.4062,1.4375,0.4062,1.5,0.4062,1.5,0.4062,1.4375,0.4375,1.4375,0.4062,1.5,0.4375,1.4375,0.4375,1.5,0.4375,1.5,0.4375,1.4375,0.4688,1.4375,0.4375,1.5,0.4688,1.4375,0.4688,1.5,0.4688,1.5,0.4688,1.4375,0.5,1.4375,0.4688,1.5,0.5,1.4375,0.5,1.5,0.5,1.5,0.5,1.4375,0.5313,1.4375,0.5,1.5,0.5313,1.4375,0.5313,1.5,0.5313,1.5,0.5313,1.4375,0.5625,1.4375,0.5313,1.5,0.5625,1.4375,0.5625,1.5,0.5625,1.5,0.5625,1.4375,0.5938,1.4375,0.5625,1.5,0.5938,1.4375,0.5938,1.5,0.5938,1.5,0.5938,1.4375,0.625,1.4375,0.5938,1.5,0.625,1.4375,0.625,1.5,0.625,1.5,0.625,1.4375,0.6563,1.4375,0.625,1.5,0.6563,1.4375,0.6563,1.5,0.6563,1.5,0.6563,1.4375,0.6875,1.4375,0.6563,1.5,0.6875,1.4375,0.6875,1.5,0.6875,1.5,0.6875,1.4375,0.7188,1.4375,0.6875,1.5,0.7188,1.4375,0.7188,1.5,0.7188,1.5,0.7188,1.4375,0.75,1.4375,0.7188,1.5,0.75,1.4375,0.75,1.5,0.75,1.5,0.75,1.4375,0.7813,1.4375,0.75,1.5,0.7813,1.4375,0.7813,1.5,0.7813,1.5,0.7813,1.4375,0.8125,1.4375,0.7813,1.5,0.8125,1.4375,0.8125,1.5,0.8125,1.5,0.8125,1.4375,0.8438,1.4375,0.8125,1.5,0.8438,1.4375,0.8438,1.5,0.8438,1.5,0.8438,1.4375,0.875,1.4375,0.8438,1.5,0.875,1.4375,0.875,1.5,0.875,1.5,0.875,1.4375,0.9063,1.4375,0.875,1.5,0.9063,1.4375,0.9063,1.5,0.9063,1.5,0.9063,1.4375,0.9375,1.4375,0.9063,1.5,0.9375,1.4375,0.9375,1.5,0.9375,1.5,0.9375,1.4375,0.9688,1.4375,0.9375,1.5,0.9688,1.4375,0.9688,1.5,0.9688,1.5,0.9688,1.4375,1.0,1.4375,0.9688,1.5,1.0,1.4375,1.0,1.5,0.0,1.4375,0.0,1.375,0.0312,1.375,0.0,1.4375,0.0312,1.375,0.0312,1.4375,0.0312,1.4375,0.0312,1.375,0.0625,1.375,0.0312,1.4375,0.0625,1.375,0.0625,1.4375,0.0625,1.4375,0.0625,1.375,0.0938,1.375,0.0625,1.4375,0.0938,1.375,0.0938,1.4375,0.0938,1.4375,0.0938,1.375,0.125,1.375,0.0938,1.4375,0.125,1.375,0.125,1.4375,0.125,1.4375,0.125,1.375,0.1562,1.375,0.125,1.4375,0.1562,1.375,0.1562,1.4375,0.1562,1.4375,0.1562,1.375,0.1875,1.375,0.1562,1.4375,0.1875,1.375,0.1875,1.4375,0.1875,1.4375,0.1875,1.375,0.2187,1.375,0.1875,1.4375,0.2187,1.375,0.2187,1.4375,0.2187,1.4375,0.2187,1.375,0.25,1.375,0.2187,1.4375,0.25,1.375,0.25,1.4375,0.25,1.4375,0.25,1.375,0.2812,1.375,0.25,1.4375,0.2812,1.375,0.2812,1.4375,0.2812,1.4375,0.2812,1.375,0.3125,1.375,0.2812,1.4375,0.3125,1.375,0.3125,1.4375,0.3125,1.4375,0.3125,1.375,0.3437,1.375,0.3125,1.4375,0.3437,1.375,0.3437,1.4375,0.3437,1.4375,0.3437,1.375,0.375,1.375,0.3437,1.4375,0.375,1.375,0.375,1.4375,0.375,1.4375,0.375,1.375,0.4062,1.375,0.375,1.4375,0.4062,1.375,0.4062,1.4375,0.4062,1.4375,0.4062,1.375,0.4375,1.375,0.4062,1.4375,0.4375,1.375,0.4375,1.4375,0.4375,1.4375,0.4375,1.375,0.4688,1.375,0.4375,1.4375,0.4688,1.375,0.4688,1.4375,0.4688,1.4375,0.4688,1.375,0.5,1.375,0.4688,1.4375,0.5,1.375,0.5,1.4375,0.5,1.4375,0.5,1.375,0.5313,1.375,0.5,1.4375,0.5313,1.375,0.5313,1.4375,0.5313,1.4375,0.5313,1.375,0.5625,1.375,0.5313,1.4375,0.5625,1.375,0.5625,1.4375,0.5625,1.4375,0.5625,1.375,0.5938,1.375,0.5625,1.4375,0.5938,1.375,0.5938,1.4375,0.5938,1.4375,0.5938,1.375,0.625,1.375,0.5938,1.4375,0.625,1.375,0.625,1.4375,0.625,1.4375,0.625,1.375,0.6563,1.375,0.625,1.4375,0.6563,1.375,0.6563,1.4375,0.6563,1.4375,0.6563,1.375,0.6875,1.375,0.6563,1.4375,0.6875,1.375,0.6875,1.4375,0.6875,1.4375,0.6875,1.375,0.7188,1.375,0.6875,1.4375,0.7188,1.375,0.7188,1.4375,0.7188,1.4375,0.7188,1.375,0.75,1.375,0.7188,1.4375,0.75,1.375,0.75,1.4375,0.75,1.4375,0.75,1.375,0.7813,1.375,0.75,1.4375,0.7813,1.375,0.7813,1.4375,0.7813,1.4375,0.7813,1.375,0.8125,1.375,0.7813,1.4375,0.8125,1.375,0.8125,1.4375,0.8125,1.4375,0.8125,1.375,0.8438,1.375,0.8125,1.4375,0.8438,1.375,0.8438,1.4375,0.8438,1.4375,0.8438,1.375,0.875,1.375,0.8438,1.4375,0.875,1.375,0.875,1.4375,0.875,1.4375,0.875,1.375,0.9063,1.375,0.875,1.4375,0.9063,1.375,0.9063,1.4375,0.9063,1.4375,0.9063,1.375,0.9375,1.375,0.9063,1.4375,0.9375,1.375,0.9375,1.4375,0.9375,1.4375,0.9375,1.375,0.9688,1.375,0.9375,1.4375,0.9688,1.375,0.9688,1.4375,0.9688,1.4375,0.9688,1.375,1.0,1.375,0.9688,1.4375,1.0,1.375,1.0,1.4375,0.0,1.375,0.0,1.3125,0.0312,1.3125,0.0,1.375,0.0312,1.3125,0.0312,1.375,0.0312,1.375,0.0312,1.3125,0.0625,1.3125,0.0312,1.375,0.0625,1.3125,0.0625,1.375,0.0625,1.375,0.0625,1.3125,0.0938,1.3125,0.0625,1.375,0.0938,1.3125,0.0938,1.375,0.0938,1.375,0.0938,1.3125,0.125,1.3125,0.0938,1.375,0.125,1.3125,0.125,1.375,0.125,1.375,0.125,1.3125,0.1562,1.3125,0.125,1.375,0.1562,1.3125,0.1562,1.375,0.1562,1.375,0.1562,1.3125,0.1875,1.3125,0.1562,1.375,0.1875,1.3125,0.1875,1.375,0.1875,1.375,0.1875,1.3125,0.2187,1.3125,0.1875,1.375,0.2187,1.3125,0.2187,1.375,0.2187,1.375,0.2187,1.3125,0.25,1.3125,0.2187,1.375,0.25,1.3125,0.25,1.375,0.25,1.375,0.25,1.3125,0.2812,1.3125,0.25,1.375,0.2812,1.3125,0.2812,1.375,0.2812,1.375,0.2812,1.3125,0.3125,1.3125,0.2812,1.375,0.3125,1.3125,0.3125,1.375,0.3125,1.375,0.3125,1.3125,0.3437,1.3125,0.3125,1.375,0.3437,1.3125,0.3437,1.375,0.3437,1.375,0.3437,1.3125,0.375,1.3125,0.3437,1.375,0.375,1.3125,0.375,1.375,0.375,1.375,0.375,1.3125,0.4062,1.3125,0.375,1.375,0.4062,1.3125,0.4062,1.375,0.4062,1.375,0.4062,1.3125,0.4375,1.3125,0.4062,1.375,0.4375,1.3125,0.4375,1.375,0.4375,1.375,0.4375,1.3125,0.4688,1.3125,0.4375,1.375,0.4688,1.3125,0.4688,1.375,0.4688,1.375,0.4688,1.3125,0.5,1.3125,0.4688,1.375,0.5,1.3125,0.5,1.375,0.5,1.375,0.5,1.3125,0.5313,1.3125,0.5,1.375,0.5313,1.3125,0.5313,1.375,0.5313,1.375,0.5313,1.3125,0.5625,1.3125,0.5313,1.375,0.5625,1.3125,0.5625,1.375,0.5625,1.375,0.5625,1.3125,0.5938,1.3125,0.5625,1.375,0.5938,1.3125,0.5938,1.375,0.5938,1.375,0.5938,1.3125,0.625,1.3125,0.5938,1.375,0.625,1.3125,0.625,1.375,0.625,1.375,0.625,1.3125,0.6563,1.3125,0.625,1.375,0.6563,1.3125,0.6563,1.375,0.6563,1.375,0.6563,1.3125,0.6875,1.3125,0.6563,1.375,0.6875,1.3125,0.6875,1.375,0.6875,1.375,0.6875,1.3125,0.7188,1.3125,0.6875,1.375,0.7188,1.3125,0.7188,1.375,0.7188,1.375,0.7188,1.3125,0.75,1.3125,0.7188,1.375,0.75,1.3125,0.75,1.375,0.75,1.375,0.75,1.3125,0.7813,1.3125,0.75,1.375,0.7813,1.3125,0.7813,1.375,0.7813,1.375,0.7813,1.3125,0.8125,1.3125,0.7813,1.375,0.8125,1.3125,0.8125,1.375,0.8125,1.375,0.8125,1.3125,0.8438,1.3125,0.8125,1.375,0.8438,1.3125,0.8438,1.375,0.8438,1.375,0.8438,1.3125,0.875,1.3125,0.8438,1.375,0.875,1.3125,0.875,1.375,0.875,1.375,0.875,1.3125,0.9063,1.3125,0.875,1.375,0.9063,1.3125,0.9063,1.375,0.9063,1.375,0.9063,1.3125,0.9375,1.3125,0.9063,1.375,0.9375,1.3125,0.9375,1.375,0.9375,1.375,0.9375,1.3125,0.9688,1.3125,0.9375,1.375,0.9688,1.3125,0.9688,1.375,0.9688,1.375,0.9688,1.3125,1.0,1.3125,0.9688,1.375,1.0,1.3125,1.0,1.375,0.0,1.3125,0.0,1.25,0.0312,1.25,0.0,1.3125,0.0312,1.25,0.0312,1.3125,0.0312,1.3125,0.0312,1.25,0.0625,1.25,0.0312,1.3125,0.0625,1.25,0.0625,1.3125,0.0625,1.3125,0.0625,1.25,0.0938,1.25,0.0625,1.3125,0.0938,1.25,0.0938,1.3125,0.0938,1.3125,0.0938,1.25,0.125,1.25,0.0938,1.3125,0.125,1.25,0.125,1.3125,0.125,1.3125,0.125,1.25,0.1562,1.25,0.125,1.3125,0.1562,1.25,0.1562,1.3125,0.1562,1.3125,0.1562,1.25,0.1875,1.25,0.1562,1.3125,0.1875,1.25,0.1875,1.3125,0.1875,1.3125,0.1875,1.25,0.2187,1.25,0.1875,1.3125,0.2187,1.25,0.2187,1.3125,0.2187,1.3125,0.2187,1.25,0.25,1.25,0.2187,1.3125,0.25,1.25,0.25,1.3125,0.25,1.3125,0.25,1.25,0.2812,1.25,0.25,1.3125,0.2812,1.25,0.2812,1.3125,0.2812,1.3125,0.2812,1.25,0.3125,1.25,0.2812,1.3125,0.3125,1.25,0.3125,1.3125,0.3125,1.3125,0.3125,1.25,0.3437,1.25,0.3125,1.3125,0.3437,1.25,0.3437,1.3125,0.3437,1.3125,0.3437,1.25,0.375,1.25,0.3437,1.3125,0.375,1.25,0.375,1.3125,0.375,1.3125,0.375,1.25,0.4062,1.25,0.375,1.3125,0.4062,1.25,0.4062,1.3125,0.4062,1.3125,0.4062,1.25,0.4375,1.25,0.4062,1.3125,0.4375,1.25,0.4375,1.3125,0.4375,1.3125,0.4375,1.25,0.4688,1.25,0.4375,1.3125,0.4688,1.25,0.4688,1.3125,0.4688,1.3125,0.4688,1.25,0.5,1.25,0.4688,1.3125,0.5,1.25,0.5,1.3125,0.5,1.3125,0.5,1.25,0.5313,1.25,0.5,1.3125,0.5313,1.25,0.5313,1.3125,0.5313,1.3125,0.5313,1.25,0.5625,1.25,0.5313,1.3125,0.5625,1.25,0.5625,1.3125,0.5625,1.3125,0.5625,1.25,0.5938,1.25,0.5625,1.3125,0.5938,1.25,0.5938,1.3125,0.5938,1.3125,0.5938,1.25,0.625,1.25,0.5938,1.3125,0.625,1.25,0.625,1.3125,0.625,1.3125,0.625,1.25,0.6563,1.25,0.625,1.3125,0.6563,1.25,0.6563,1.3125,0.6563,1.3125,0.6563,1.25,0.6875,1.25,0.6563,1.3125,0.6875,1.25,0.6875,1.3125,0.6875,1.3125,0.6875,1.25,0.7188,1.25,0.6875,1.3125,0.7188,1.25,0.7188,1.3125,0.7188,1.3125,0.7188,1.25,0.75,1.25,0.7188,1.3125,0.75,1.25,0.75,1.3125,0.75,1.3125,0.75,1.25,0.7813,1.25,0.75,1.3125,0.7813,1.25,0.7813,1.3125,0.7813,1.3125,0.7813,1.25,0.8125,1.25,0.7813,1.3125,0.8125,1.25,0.8125,1.3125,0.8125,1.3125,0.8125,1.25,0.8438,1.25,0.8125,1.3125,0.8438,1.25,0.8438,1.3125,0.8438,1.3125,0.8438,1.25,0.875,1.25,0.8438,1.3125,0.875,1.25,0.875,1.3125,0.875,1.3125,0.875,1.25,0.9063,1.25,0.875,1.3125,0.9063,1.25,0.9063,1.3125,0.9063,1.3125,0.9063,1.25,0.9375,1.25,0.9063,1.3125,0.9375,1.25,0.9375,1.3125,0.9375,1.3125,0.9375,1.25,0.9688,1.25,0.9375,1.3125,0.9688,1.25,0.9688,1.3125,0.9688,1.3125,0.9688,1.25,1.0,1.25,0.9688,1.3125,1.0,1.25,1.0,1.3125,0.0,1.25,0.0,1.1875,0.0312,1.1875,0.0,1.25,0.0312,1.1875,0.0312,1.25,0.0312,1.25,0.0312,1.1875,0.0625,1.1875,0.0312,1.25,0.0625,1.1875,0.0625,1.25,0.0625,1.25,0.0625,1.1875,0.0938,1.1875,0.0625,1.25,0.0938,1.1875,0.0938,1.25,0.0938,1.25,0.0938,1.1875,0.125,1.1875,0.0938,1.25,0.125,1.1875,0.125,1.25,0.125,1.25,0.125,1.1875,0.1562,1.1875,0.125,1.25,0.1562,1.1875,0.1562,1.25,0.1562,1.25,0.1562,1.1875,0.1875,1.1875,0.1562,1.25,0.1875,1.1875,0.1875,1.25,0.1875,1.25,0.1875,1.1875,0.2187,1.1875,0.1875,1.25,0.2187,1.1875,0.2187,1.25,0.2187,1.25,0.2187,1.1875,0.25,1.1875,0.2187,1.25,0.25,1.1875,0.25,1.25,0.25,1.25,0.25,1.1875,0.2812,1.1875,0.25,1.25,0.2812,1.1875,0.2812,1.25,0.2812,1.25,0.2812,1.1875,0.3125,1.1875,0.2812,1.25,0.3125,1.1875,0.3125,1.25,0.3125,1.25,0.3125,1.1875,0.3437,1.1875,0.3125,1.25,0.3437,1.1875,0.3437,1.25,0.3437,1.25,0.3437,1.1875,0.375,1.1875,0.3437,1.25,0.375,1.1875,0.375,1.25,0.375,1.25,0.375,1.1875,0.4062,1.1875,0.375,1.25,0.4062,1.1875,0.4062,1.25,0.4062,1.25,0.4062,1.1875,0.4375,1.1875,0.4062,1.25,0.4375,1.1875,0.4375,1.25,0.4375,1.25,0.4375,1.1875,0.4688,1.1875,0.4375,1.25,0.4688,1.1875,0.4688,1.25,0.4688,1.25,0.4688,1.1875,0.5,1.1875,0.4688,1.25,0.5,1.1875,0.5,1.25,0.5,1.25,0.5,1.1875,0.5313,1.1875,0.5,1.25,0.5313,1.1875,0.5313,1.25,0.5313,1.25,0.5313,1.1875,0.5625,1.1875,0.5313,1.25,0.5625,1.1875,0.5625,1.25,0.5625,1.25,0.5625,1.1875,0.5938,1.1875,0.5625,1.25,0.5938,1.1875,0.5938,1.25,0.5938,1.25,0.5938,1.1875,0.625,1.1875,0.5938,1.25,0.625,1.1875,0.625,1.25,0.625,1.25,0.625,1.1875,0.6563,1.1875,0.625,1.25,0.6563,1.1875,0.6563,1.25,0.6563,1.25,0.6563,1.1875,0.6875,1.1875,0.6563,1.25,0.6875,1.1875,0.6875,1.25,0.6875,1.25,0.6875,1.1875,0.7188,1.1875,0.6875,1.25,0.7188,1.1875,0.7188,1.25,0.7188,1.25,0.7188,1.1875,0.75,1.1875,0.7188,1.25,0.75,1.1875,0.75,1.25,0.75,1.25,0.75,1.1875,0.7813,1.1875,0.75,1.25,0.7813,1.1875,0.7813,1.25,0.7813,1.25,0.7813,1.1875,0.8125,1.1875,0.7813,1.25,0.8125,1.1875,0.8125,1.25,0.8125,1.25,0.8125,1.1875,0.8438,1.1875,0.8125,1.25,0.8438,1.1875,0.8438,1.25,0.8438,1.25,0.8438,1.1875,0.875,1.1875,0.8438,1.25,0.875,1.1875,0.875,1.25,0.875,1.25,0.875,1.1875,0.9063,1.1875,0.875,1.25,0.9063,1.1875,0.9063,1.25,0.9063,1.25,0.9063,1.1875,0.9375,1.1875,0.9063,1.25,0.9375,1.1875,0.9375,1.25,0.9375,1.25,0.9375,1.1875,0.9688,1.1875,0.9375,1.25,0.9688,1.1875,0.9688,1.25,0.9688,1.25,0.9688,1.1875,1.0,1.1875,0.9688,1.25,1.0,1.1875,1.0,1.25,0.0,1.1875,0.0,1.125,0.0312,1.125,0.0,1.1875,0.0312,1.125,0.0312,1.1875,0.0312,1.1875,0.0312,1.125,0.0625,1.125,0.0312,1.1875,0.0625,1.125,0.0625,1.1875,0.0625,1.1875,0.0625,1.125,0.0938,1.125,0.0625,1.1875,0.0938,1.125,0.0938,1.1875,0.0938,1.1875,0.0938,1.125,0.125,1.125,0.0938,1.1875,0.125,1.125,0.125,1.1875,0.125,1.1875,0.125,1.125,0.1562,1.125,0.125,1.1875,0.1562,1.125,0.1562,1.1875,0.1562,1.1875,0.1562,1.125,0.1875,1.125,0.1562,1.1875,0.1875,1.125,0.1875,1.1875,0.1875,1.1875,0.1875,1.125,0.2187,1.125,0.1875,1.1875,0.2187,1.125,0.2187,1.1875,0.2187,1.1875,0.2187,1.125,0.25,1.125,0.2187,1.1875,0.25,1.125,0.25,1.1875,0.25,1.1875,0.25,1.125,0.2812,1.125,0.25,1.1875,0.2812,1.125,0.2812,1.1875,0.2812,1.1875,0.2812,1.125,0.3125,1.125,0.2812,1.1875,0.3125,1.125,0.3125,1.1875,0.3125,1.1875,0.3125,1.125,0.3437,1.125,0.3125,1.1875,0.3437,1.125,0.3437,1.1875,0.3437,1.1875,0.3437,1.125,0.375,1.125,0.3437,1.1875,0.375,1.125,0.375,1.1875,0.375,1.1875,0.375,1.125,0.4062,1.125,0.375,1.1875,0.4062,1.125,0.4062,1.1875,0.4062,1.1875,0.4062,1.125,0.4375,1.125,0.4062,1.1875,0.4375,1.125,0.4375,1.1875,0.4375,1.1875,0.4375,1.125,0.4688,1.125,0.4375,1.1875,0.4688,1.125,0.4688,1.1875,0.4688,1.1875,0.4688,1.125,0.5,1.125,0.4688,1.1875,0.5,1.125,0.5,1.1875,0.5,1.1875,0.5,1.125,0.5313,1.125,0.5,1.1875,0.5313,1.125,0.5313,1.1875,0.5313,1.1875,0.5313,1.125,0.5625,1.125,0.5313,1.1875,0.5625,1.125,0.5625,1.1875,0.5625,1.1875,0.5625,1.125,0.5938,1.125,0.5625,1.1875,0.5938,1.125,0.5938,1.1875,0.5938,1.1875,0.5938,1.125,0.625,1.125,0.5938,1.1875,0.625,1.125,0.625,1.1875,0.625,1.1875,0.625,1.125,0.6563,1.125,0.625,1.1875,0.6563,1.125,0.6563,1.1875,0.6563,1.1875,0.6563,1.125,0.6875,1.125,0.6563,1.1875,0.6875,1.125,0.6875,1.1875,0.6875,1.1875,0.6875,1.125,0.7188,1.125,0.6875,1.1875,0.7188,1.125,0.7188,1.1875,0.7188,1.1875,0.7188,1.125,0.75,1.125,0.7188,1.1875,0.75,1.125,0.75,1.1875,0.75,1.1875,0.75,1.125,0.7813,1.125,0.75,1.1875,0.7813,1.125,0.7813,1.1875,0.7813,1.1875,0.7813,1.125,0.8125,1.125,0.7813,1.1875,0.8125,1.125,0.8125,1.1875,0.8125,1.1875,0.8125,1.125,0.8438,1.125,0.8125,1.1875,0.8438,1.125,0.8438,1.1875,0.8438,1.1875,0.8438,1.125,0.875,1.125,0.8438,1.1875,0.875,1.125,0.875,1.1875,0.875,1.1875,0.875,1.125,0.9063,1.125,0.875,1.1875,0.9063,1.125,0.9063,1.1875,0.9063,1.1875,0.9063,1.125,0.9375,1.125,0.9063,1.1875,0.9375,1.125,0.9375,1.1875,0.9375,1.1875,0.9375,1.125,0.9688,1.125,0.9375,1.1875,0.9688,1.125,0.9688,1.1875,0.9688,1.1875,0.9688,1.125,1.0,1.125,0.9688,1.1875,1.0,1.125,1.0,1.1875,0.0,1.125,0.0,1.0625,0.0312,1.0625,0.0,1.125,0.0312,1.0625,0.0312,1.125,0.0312,1.125,0.0312,1.0625,0.0625,1.0625,0.0312,1.125,0.0625,1.0625,0.0625,1.125,0.0625,1.125,0.0625,1.0625,0.0938,1.0625,0.0625,1.125,0.0938,1.0625,0.0938,1.125,0.0938,1.125,0.0938,1.0625,0.125,1.0625,0.0938,1.125,0.125,1.0625,0.125,1.125,0.125,1.125,0.125,1.0625,0.1562,1.0625,0.125,1.125,0.1562,1.0625,0.1562,1.125,0.1562,1.125,0.1562,1.0625,0.1875,1.0625,0.1562,1.125,0.1875,1.0625,0.1875,1.125,0.1875,1.125,0.1875,1.0625,0.2187,1.0625,0.1875,1.125,0.2187,1.0625,0.2187,1.125,0.2187,1.125,0.2187,1.0625,0.25,1.0625,0.2187,1.125,0.25,1.0625,0.25,1.125,0.25,1.125,0.25,1.0625,0.2812,1.0625,0.25,1.125,0.2812,1.0625,0.2812,1.125,0.2812,1.125,0.2812,1.0625,0.3125,1.0625,0.2812,1.125,0.3125,1.0625,0.3125,1.125,0.3125,1.125,0.3125,1.0625,0.3437,1.0625,0.3125,1.125,0.3437,1.0625,0.3437,1.125,0.3437,1.125,0.3437,1.0625,0.375,1.0625,0.3437,1.125,0.375,1.0625,0.375,1.125,0.375,1.125,0.375,1.0625,0.4062,1.0625,0.375,1.125,0.4062,1.0625,0.4062,1.125,0.4062,1.125,0.4062,1.0625,0.4375,1.0625,0.4062,1.125,0.4375,1.0625,0.4375,1.125,0.4375,1.125,0.4375,1.0625,0.4688,1.0625,0.4375,1.125,0.4688,1.0625,0.4688,1.125,0.4688,1.125,0.4688,1.0625,0.5,1.0625,0.4688,1.125,0.5,1.0625,0.5,1.125,0.5,1.125,0.5,1.0625,0.5313,1.0625,0.5,1.125,0.5313,1.0625,0.5313,1.125,0.5313,1.125,0.5313,1.0625,0.5625,1.0625,0.5313,1.125,0.5625,1.0625,0.5625,1.125,0.5625,1.125,0.5625,1.0625,0.5938,1.0625,0.5625,1.125,0.5938,1.0625,0.5938,1.125,0.5938,1.125,0.5938,1.0625,0.625,1.0625,0.5938,1.125,0.625,1.0625,0.625,1.125,0.625,1.125,0.625,1.0625,0.6563,1.0625,0.625,1.125,0.6563,1.0625,0.6563,1.125,0.6563,1.125,0.6563,1.0625,0.6875,1.0625,0.6563,1.125,0.6875,1.0625,0.6875,1.125,0.6875,1.125,0.6875,1.0625,0.7188,1.0625,0.6875,1.125,0.7188,1.0625,0.7188,1.125,0.7188,1.125,0.7188,1.0625,0.75,1.0625,0.7188,1.125,0.75,1.0625,0.75,1.125,0.75,1.125,0.75,1.0625,0.7813,1.0625,0.75,1.125,0.7813,1.0625,0.7813,1.125,0.7813,1.125,0.7813,1.0625,0.8125,1.0625,0.7813,1.125,0.8125,1.0625,0.8125,1.125,0.8125,1.125,0.8125,1.0625,0.8438,1.0625,0.8125,1.125,0.8438,1.0625,0.8438,1.125,0.8438,1.125,0.8438,1.0625,0.875,1.0625,0.8438,1.125,0.875,1.0625,0.875,1.125,0.875,1.125,0.875,1.0625,0.9063,1.0625,0.875,1.125,0.9063,1.0625,0.9063,1.125,0.9063,1.125,0.9063,1.0625,0.9375,1.0625,0.9063,1.125,0.9375,1.0625,0.9375,1.125,0.9375,1.125,0.9375,1.0625,0.9688,1.0625,0.9375,1.125,0.9688,1.0625,0.9688,1.125,0.9688,1.125,0.9688,1.0625,1.0,1.0625,0.9688,1.125,1.0,1.0625,1.0,1.125,0.0,1.0,0.0312,1.0625,0.0,1.0625,0.0312,1.0,0.0625,1.0625,0.0312,1.0625,0.0625,1.0,0.0938,1.0625,0.0625,1.0625,0.0938,1.0,0.125,1.0625,0.0938,1.0625,0.125,1.0,0.1562,1.0625,0.125,1.0625,0.1562,1.0,0.1875,1.0625,0.1562,1.0625,0.1875,1.0,0.2187,1.0625,0.1875,1.0625,0.2187,1.0,0.25,1.0625,0.2187,1.0625,0.25,1.0,0.2812,1.0625,0.25,1.0625,0.2812,1.0,0.3125,1.0625,0.2812,1.0625,0.3125,1.0,0.3437,1.0625,0.3125,1.0625,0.3437,1.0,0.375,1.0625,0.3437,1.0625,0.375,1.0,0.4062,1.0625,0.375,1.0625,0.4062,1.0,0.4375,1.0625,0.4062,1.0625,0.4375,1.0,0.4688,1.0625,0.4375,1.0625,0.4688,1.0,0.5,1.0625,0.4688,1.0625,0.5,1.0,0.5313,1.0625,0.5,1.0625,0.5313,1.0,0.5625,1.0625,0.5313,1.0625,0.5625,1.0,0.5938,1.0625,0.5625,1.0625,0.5938,1.0,0.625,1.0625,0.5938,1.0625,0.625,1.0,0.6563,1.0625,0.625,1.0625,0.6563,1.0,0.6875,1.0625,0.6563,1.0625,0.6875,1.0,0.7188,1.0625,0.6875,1.0625,0.7188,1.0,0.75,1.0625,0.7188,1.0625,0.75,1.0,0.7813,1.0625,0.75,1.0625,0.7813,1.0,0.8125,1.0625,0.7813,1.0625,0.8125,1.0,0.8438,1.0625,0.8125,1.0625,0.8438,1.0,0.875,1.0625,0.8438,1.0625,0.875,1.0,0.9063,1.0625,0.875,1.0625,0.9063,1.0,0.9375,1.0625,0.9063,1.0625,0.9375,1.0,0.9688,1.0625,0.9375,1.0625,0.9688,1.0,1.0,1.0625,0.9688,1.0625],"uvs2":null,"colors":null,"hasVertexAlpha":false,"matricesIndices":null,"matricesWeights":null,"matricesIndicesExtra":null,"matricesWeightsExtra":null,"indices":[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,1984,1985,1986,1987,1988,1989,1990,1991,1992,1993,1994,1995,1996,1997,1998,1999,2000,2001,2002,2003,2004,2005,2006,2007,2008,2009,2010,2011,2012,2013,2014,2015,2016,2017,2018,2019,2020,2021,2022,2023,2024,2025,2026,2027,2028,2029,2030,2031,2032,2033,2034,2035,2036,2037,2038,2039,2040,2041,2042,2043,2044,2045,2046,2047,2048,2049,2050,2051,2052,2053,2054,2055,2056,2057,2058,2059,2060,2061,2062,2063,2064,2065,2066,2067,2068,2069,2070,2071,2072,2073,2074,2075,2076,2077,2078,2079,2080,2081,2082,2083,2084,2085,2086,2087,2088,2089,2090,2091,2092,2093,2094,2095,2096,2097,2098,2099,2100,2101,2102,2103,2104,2105,2106,2107,2108,2109,2110,2111,2112,2113,2114,2115,2116,2117,2118,2119,2120,2121,2122,2123,2124,2125,2126,2127,2128,2129,2130,2131,2132,2133,2134,2135,2136,2137,2138,2139,2140,2141,2142,2143,2144,2145,2146,2147,2148,2149,2150,2151,2152,2153,2154,2155,2156,2157,2158,2159,2160,2161,2162,2163,2164,2165,2166,2167,2168,2169,2170,2171,2172,2173,2174,2175,2176,2177,2178,2179,2180,2181,2182,2183,2184,2185,2186,2187,2188,2189,2190,2191,2192,2193,2194,2195,2196,2197,2198,2199,2200,2201,2202,2203,2204,2205,2206,2207,2208,2209,2210,2211,2212,2213,2214,2215,2216,2217,2218,2219,2220,2221,2222,2223,2224,2225,2226,2227,2228,2229,2230,2231,2232,2233,2234,2235,2236,2237,2238,2239,2240,2241,2242,2243,2244,2245,2246,2247,2248,2249,2250,2251,2252,2253,2254,2255,2256,2257,2258,2259,2260,2261,2262,2263,2264,2265,2266,2267,2268,2269,2270,2271,2272,2273,2274,2275,2276,2277,2278,2279,2280,2281,2282,2283,2284,2285,2286,2287,2288,2289,2290,2291,2292,2293,2294,2295,2296,2297,2298,2299,2300,2301,2302,2303,2304,2305,2306,2307,2308,2309,2310,2311,2312,2313,2314,2315,2316,2317,2318,2319,2320,2321,2322,2323,2324,2325,2326,2327,2328,2329,2330,2331,2332,2333,2334,2335,2336,2337,2338,2339,2340,2341,2342,2343,2344,2345,2346,2347,2348,2349,2350,2351,2352,2353,2354,2355,2356,2357,2358,2359,2360,2361,2362,2363,2364,2365,2366,2367,2368,2369,2370,2371,2372,2373,2374,2375,2376,2377,2378,2379,2380,2381,2382,2383,2384,2385,2386,2387,2388,2389,2390,2391,2392,2393,2394,2395,2396,2397,2398,2399,2400,2401,2402,2403,2404,2405,2406,2407,2408,2409,2410,2411,2412,2413,2414,2415,2416,2417,2418,2419,2420,2421,2422,2423,2424,2425,2426,2427,2428,2429,2430,2431,2432,2433,2434,2435,2436,2437,2438,2439,2440,2441,2442,2443,2444,2445,2446,2447,2448,2449,2450,2451,2452,2453,2454,2455,2456,2457,2458,2459,2460,2461,2462,2463,2464,2465,2466,2467,2468,2469,2470,2471,2472,2473,2474,2475,2476,2477,2478,2479,2480,2481,2482,2483,2484,2485,2486,2487,2488,2489,2490,2491,2492,2493,2494,2495,2496,2497,2498,2499,2500,2501,2502,2503,2504,2505,2506,2507,2508,2509,2510,2511,2512,2513,2514,2515,2516,2517,2518,2519,2520,2521,2522,2523,2524,2525,2526,2527,2528,2529,2530,2531,2532,2533,2534,2535,2536,2537,2538,2539,2540,2541,2542,2543,2544,2545,2546,2547,2548,2549,2550,2551,2552,2553,2554,2555,2556,2557,2558,2559,2560,2561,2562,2563,2564,2565,2566,2567,2568,2569,2570,2571,2572,2573,2574,2575,2576,2577,2578,2579,2580,2581,2582,2583,2584,2585,2586,2587,2588,2589,2590,2591,2592,2593,2594,2595,2596,2597,2598,2599,2600,2601,2602,2603,2604,2605,2606,2607,2608,2609,2610,2611,2612,2613,2614,2615,2616,2617,2618,2619,2620,2621,2622,2623,2624,2625,2626,2627,2628,2629,2630,2631,2632,2633,2634,2635,2636,2637,2638,2639,2640,2641,2642,2643,2644,2645,2646,2647,2648,2649,2650,2651,2652,2653,2654,2655,2656,2657,2658,2659,2660,2661,2662,2663,2664,2665,2666,2667,2668,2669,2670,2671,2672,2673,2674,2675,2676,2677,2678,2679,2680,2681,2682,2683,2684,2685,2686,2687,2688,2689,2690,2691,2692,2693,2694,2695,2696,2697,2698,2699,2700,2701,2702,2703,2704,2705,2706,2707,2708,2709,2710,2711,2712,2713,2714,2715,2716,2717,2718,2719,2720,2721,2722,2723,2724,2725,2726,2727,2728,2729,2730,2731,2732,2733,2734,2735,2736,2737,2738,2739,2740,2741,2742,2743,2744,2745,2746,2747,2748,2749,2750,2751,2752,2753,2754,2755,2756,2757,2758,2759,2760,2761,2762,2763,2764,2765,2766,2767,2768,2769,2770,2771,2772,2773,2774,2775,2776,2777,2778,2779,2780,2781,2782,2783,2784,2785,2786,2787,2788,2789,2790,2791,2792,2793,2794,2795,2796,2797,2798,2799,2800,2801,2802,2803,2804,2805,2806,2807,2808,2809,2810,2811,2812,2813,2814,2815,2816,2817,2818,2819,2820,2821,2822,2823,2824,2825,2826,2827,2828,2829,2830,2831,2832,2833,2834,2835,2836,2837,2838,2839,2840,2841,2842,2843,2844,2845,2846,2847,2848,2849,2850,2851,2852,2853,2854,2855,2856,2857,2858,2859,2860,2861,2862,2863,2864,2865,2866,2867,2868,2869,2870,2871,2872,2873,2874,2875,2876,2877,2878,2879],"receiveShadows":true,"infiniteDistance":false,"billboardMode":0,"visibility":1.0,"subMeshes":[{"materialIndex":0,"verticesStart":0,"verticesCount":2880,"indexStart":0,"indexCount":2880}],"instances":null,"skeletonId":-1,"numBoneInfluencers":4,"applyFog":true,"lodMeshIds":null,"lodDistances":null,"lodCoverages":null,"rotation":null,"scaling":[1.0,1.0,1.0],"rotationQuaternion":[0.0,0.0,0.0,1.0],"actions":null,"checkCollisions":false,"pickable":false,"showBoundingBox":false,"showSubMeshesBoundingBox":false,"alphaIndex":1000,"physicsImpostor":0,"physicsMass":0.0,"physicsFriction":0.0,"physicsRestitution":0.0,"name":"StandardMeshMaxLight_1","id":"113f2dbc-dce1-4faa-be71-35277504433b","parentId":null,"position":[0.0,0.0,0.0],"animations":[],"autoAnimate":true,"autoAnimateFrom":0,"autoAnimateTo":100,"autoAnimateLoop":true,"metadata":null},{"materialId":"e8d366dc-9a25-4d46-80f2-60a95ec88505","isEnabled":true,"isVisible":true,"positions":[0.0,1.0,0.0,0.0,0.9808,0.1951,-0.0381,0.9808,0.1913,0.0,1.0,0.0,-0.0381,0.9808,0.1913,-0.0747,0.9808,0.1802,0.0,1.0,0.0,-0.0747,0.9808,0.1802,-0.1084,0.9808,0.1622,0.0,1.0,0.0,-0.1084,0.9808,0.1622,-0.1379,0.9808,0.1379,0.0,1.0,0.0,-0.1379,0.9808,0.1379,-0.1622,0.9808,0.1084,0.0,1.0,0.0,-0.1622,0.9808,0.1084,-0.1802,0.9808,0.0747,0.0,1.0,0.0,-0.1802,0.9808,0.0747,-0.1913,0.9808,0.0381,0.0,1.0,0.0,-0.1913,0.9808,0.0381,-0.1951,0.9808,0.0,0.0,1.0,0.0,-0.1951,0.9808,0.0,-0.1913,0.9808,-0.0381,0.0,1.0,0.0,-0.1913,0.9808,-0.0381,-0.1802,0.9808,-0.0747,0.0,1.0,0.0,-0.1802,0.9808,-0.0747,-0.1622,0.9808,-0.1084,0.0,1.0,0.0,-0.1622,0.9808,-0.1084,-0.1379,0.9808,-0.1379,0.0,1.0,0.0,-0.1379,0.9808,-0.1379,-0.1084,0.9808,-0.1622,0.0,1.0,0.0,-0.1084,0.9808,-0.1622,-0.0747,0.9808,-0.1802,0.0,1.0,0.0,-0.0747,0.9808,-0.1802,-0.0381,0.9808,-0.1913,0.0,1.0,0.0,-0.0381,0.9808,-0.1913,0.0,0.9808,-0.1951,0.0,1.0,0.0,0.0,0.9808,-0.1951,0.0381,0.9808,-0.1913,0.0,1.0,0.0,0.0381,0.9808,-0.1913,0.0747,0.9808,-0.1802,0.0,1.0,0.0,0.0747,0.9808,-0.1802,0.1084,0.9808,-0.1622,0.0,1.0,0.0,0.1084,0.9808,-0.1622,0.1379,0.9808,-0.1379,0.0,1.0,0.0,0.1379,0.9808,-0.1379,0.1622,0.9808,-0.1084,0.0,1.0,0.0,0.1622,0.9808,-0.1084,0.1802,0.9808,-0.0747,0.0,1.0,0.0,0.1802,0.9808,-0.0747,0.1913,0.9808,-0.0381,0.0,1.0,0.0,0.1913,0.9808,-0.0381,0.1951,0.9808,0.0,0.0,1.0,0.0,0.1951,0.9808,0.0,0.1913,0.9808,0.0381,0.0,1.0,0.0,0.1913,0.9808,0.0381,0.1802,0.9808,0.0747,0.0,1.0,0.0,0.1802,0.9808,0.0747,0.1622,0.9808,0.1084,0.0,1.0,0.0,0.1622,0.9808,0.1084,0.1379,0.9808,0.1379,0.0,1.0,0.0,0.1379,0.9808,0.1379,0.1084,0.9808,0.1622,0.0,1.0,0.0,0.1084,0.9808,0.1622,0.0747,0.9808,0.1802,0.0,1.0,0.0,0.0747,0.9808,0.1802,0.0381,0.9808,0.1913,0.0,1.0,0.0,0.0381,0.9808,0.1913,0.0,0.9808,0.1951,0.0,0.9808,0.1951,0.0,0.9239,0.3827,-0.0747,0.9239,0.3753,0.0,0.9808,0.1951,-0.0747,0.9239,0.3753,-0.0381,0.9808,0.1913,-0.0381,0.9808,0.1913,-0.0747,0.9239,0.3753,-0.1464,0.9239,0.3536,-0.0381,0.9808,0.1913,-0.1464,0.9239,0.3536,-0.0747,0.9808,0.1802,-0.0747,0.9808,0.1802,-0.1464,0.9239,0.3536,-0.2126,0.9239,0.3182,-0.0747,0.9808,0.1802,-0.2126,0.9239,0.3182,-0.1084,0.9808,0.1622,-0.1084,0.9808,0.1622,-0.2126,0.9239,0.3182,-0.2706,0.9239,0.2706,-0.1084,0.9808,0.1622,-0.2706,0.9239,0.2706,-0.1379,0.9808,0.1379,-0.1379,0.9808,0.1379,-0.2706,0.9239,0.2706,-0.3182,0.9239,0.2126,-0.1379,0.9808,0.1379,-0.3182,0.9239,0.2126,-0.1622,0.9808,0.1084,-0.1622,0.9808,0.1084,-0.3182,0.9239,0.2126,-0.3536,0.9239,0.1464,-0.1622,0.9808,0.1084,-0.3536,0.9239,0.1464,-0.1802,0.9808,0.0747,-0.1802,0.9808,0.0747,-0.3536,0.9239,0.1464,-0.3753,0.9239,0.0747,-0.1802,0.9808,0.0747,-0.3753,0.9239,0.0747,-0.1913,0.9808,0.0381,-0.1913,0.9808,0.0381,-0.3753,0.9239,0.0747,-0.3827,0.9239,0.0,-0.1913,0.9808,0.0381,-0.3827,0.9239,0.0,-0.1951,0.9808,0.0,-0.1951,0.9808,0.0,-0.3827,0.9239,0.0,-0.3753,0.9239,-0.0747,-0.1951,0.9808,0.0,-0.3753,0.9239,-0.0747,-0.1913,0.9808,-0.0381,-0.1913,0.9808,-0.0381,-0.3753,0.9239,-0.0747,-0.3536,0.9239,-0.1464,-0.1913,0.9808,-0.0381,-0.3536,0.9239,-0.1464,-0.1802,0.9808,-0.0747,-0.1802,0.9808,-0.0747,-0.3536,0.9239,-0.1464,-0.3182,0.9239,-0.2126,-0.1802,0.9808,-0.0747,-0.3182,0.9239,-0.2126,-0.1622,0.9808,-0.1084,-0.1622,0.9808,-0.1084,-0.3182,0.9239,-0.2126,-0.2706,0.9239,-0.2706,-0.1622,0.9808,-0.1084,-0.2706,0.9239,-0.2706,-0.1379,0.9808,-0.1379,-0.1379,0.9808,-0.1379,-0.2706,0.9239,-0.2706,-0.2126,0.9239,-0.3182,-0.1379,0.9808,-0.1379,-0.2126,0.9239,-0.3182,-0.1084,0.9808,-0.1622,-0.1084,0.9808,-0.1622,-0.2126,0.9239,-0.3182,-0.1464,0.9239,-0.3536,-0.1084,0.9808,-0.1622,-0.1464,0.9239,-0.3536,-0.0747,0.9808,-0.1802,-0.0747,0.9808,-0.1802,-0.1464,0.9239,-0.3536,-0.0747,0.9239,-0.3753,-0.0747,0.9808,-0.1802,-0.0747,0.9239,-0.3753,-0.0381,0.9808,-0.1913,-0.0381,0.9808,-0.1913,-0.0747,0.9239,-0.3753,0.0,0.9239,-0.3827,-0.0381,0.9808,-0.1913,0.0,0.9239,-0.3827,0.0,0.9808,-0.1951,0.0,0.9808,-0.1951,0.0,0.9239,-0.3827,0.0747,0.9239,-0.3753,0.0,0.9808,-0.1951,0.0747,0.9239,-0.3753,0.0381,0.9808,-0.1913,0.0381,0.9808,-0.1913,0.0747,0.9239,-0.3753,0.1464,0.9239,-0.3536,0.0381,0.9808,-0.1913,0.1464,0.9239,-0.3536,0.0747,0.9808,-0.1802,0.0747,0.9808,-0.1802,0.1464,0.9239,-0.3536,0.2126,0.9239,-0.3182,0.0747,0.9808,-0.1802,0.2126,0.9239,-0.3182,0.1084,0.9808,-0.1622,0.1084,0.9808,-0.1622,0.2126,0.9239,-0.3182,0.2706,0.9239,-0.2706,0.1084,0.9808,-0.1622,0.2706,0.9239,-0.2706,0.1379,0.9808,-0.1379,0.1379,0.9808,-0.1379,0.2706,0.9239,-0.2706,0.3182,0.9239,-0.2126,0.1379,0.9808,-0.1379,0.3182,0.9239,-0.2126,0.1622,0.9808,-0.1084,0.1622,0.9808,-0.1084,0.3182,0.9239,-0.2126,0.3536,0.9239,-0.1464,0.1622,0.9808,-0.1084,0.3536,0.9239,-0.1464,0.1802,0.9808,-0.0747,0.1802,0.9808,-0.0747,0.3536,0.9239,-0.1464,0.3753,0.9239,-0.0747,0.1802,0.9808,-0.0747,0.3753,0.9239,-0.0747,0.1913,0.9808,-0.0381,0.1913,0.9808,-0.0381,0.3753,0.9239,-0.0747,0.3827,0.9239,0.0,0.1913,0.9808,-0.0381,0.3827,0.9239,0.0,0.1951,0.9808,0.0,0.1951,0.9808,0.0,0.3827,0.9239,0.0,0.3753,0.9239,0.0747,0.1951,0.9808,0.0,0.3753,0.9239,0.0747,0.1913,0.9808,0.0381,0.1913,0.9808,0.0381,0.3753,0.9239,0.0747,0.3536,0.9239,0.1464,0.1913,0.9808,0.0381,0.3536,0.9239,0.1464,0.1802,0.9808,0.0747,0.1802,0.9808,0.0747,0.3536,0.9239,0.1464,0.3182,0.9239,0.2126,0.1802,0.9808,0.0747,0.3182,0.9239,0.2126,0.1622,0.9808,0.1084,0.1622,0.9808,0.1084,0.3182,0.9239,0.2126,0.2706,0.9239,0.2706,0.1622,0.9808,0.1084,0.2706,0.9239,0.2706,0.1379,0.9808,0.1379,0.1379,0.9808,0.1379,0.2706,0.9239,0.2706,0.2126,0.9239,0.3182,0.1379,0.9808,0.1379,0.2126,0.9239,0.3182,0.1084,0.9808,0.1622,0.1084,0.9808,0.1622,0.2126,0.9239,0.3182,0.1464,0.9239,0.3536,0.1084,0.9808,0.1622,0.1464,0.9239,0.3536,0.0747,0.9808,0.1802,0.0747,0.9808,0.1802,0.1464,0.9239,0.3536,0.0747,0.9239,0.3753,0.0747,0.9808,0.1802,0.0747,0.9239,0.3753,0.0381,0.9808,0.1913,0.0381,0.9808,0.1913,0.0747,0.9239,0.3753,0.0,0.9239,0.3827,0.0381,0.9808,0.1913,0.0,0.9239,0.3827,0.0,0.9808,0.1951,0.0,0.9239,0.3827,0.0,0.8315,0.5556,-0.1084,0.8315,0.5449,0.0,0.9239,0.3827,-0.1084,0.8315,0.5449,-0.0747,0.9239,0.3753,-0.0747,0.9239,0.3753,-0.1084,0.8315,0.5449,-0.2126,0.8315,0.5133,-0.0747,0.9239,0.3753,-0.2126,0.8315,0.5133,-0.1464,0.9239,0.3536,-0.1464,0.9239,0.3536,-0.2126,0.8315,0.5133,-0.3087,0.8315,0.4619,-0.1464,0.9239,0.3536,-0.3087,0.8315,0.4619,-0.2126,0.9239,0.3182,-0.2126,0.9239,0.3182,-0.3087,0.8315,0.4619,-0.3928,0.8315,0.3928,-0.2126,0.9239,0.3182,-0.3928,0.8315,0.3928,-0.2706,0.9239,0.2706,-0.2706,0.9239,0.2706,-0.3928,0.8315,0.3928,-0.4619,0.8315,0.3087,-0.2706,0.9239,0.2706,-0.4619,0.8315,0.3087,-0.3182,0.9239,0.2126,-0.3182,0.9239,0.2126,-0.4619,0.8315,0.3087,-0.5133,0.8315,0.2126,-0.3182,0.9239,0.2126,-0.5133,0.8315,0.2126,-0.3536,0.9239,0.1464,-0.3536,0.9239,0.1464,-0.5133,0.8315,0.2126,-0.5449,0.8315,0.1084,-0.3536,0.9239,0.1464,-0.5449,0.8315,0.1084,-0.3753,0.9239,0.0747,-0.3753,0.9239,0.0747,-0.5449,0.8315,0.1084,-0.5556,0.8315,0.0,-0.3753,0.9239,0.0747,-0.5556,0.8315,0.0,-0.3827,0.9239,0.0,-0.3827,0.9239,0.0,-0.5556,0.8315,0.0,-0.5449,0.8315,-0.1084,-0.3827,0.9239,0.0,-0.5449,0.8315,-0.1084,-0.3753,0.9239,-0.0747,-0.3753,0.9239,-0.0747,-0.5449,0.8315,-0.1084,-0.5133,0.8315,-0.2126,-0.3753,0.9239,-0.0747,-0.5133,0.8315,-0.2126,-0.3536,0.9239,-0.1464,-0.3536,0.9239,-0.1464,-0.5133,0.8315,-0.2126,-0.4619,0.8315,-0.3087,-0.3536,0.9239,-0.1464,-0.4619,0.8315,-0.3087,-0.3182,0.9239,-0.2126,-0.3182,0.9239,-0.2126,-0.4619,0.8315,-0.3087,-0.3928,0.8315,-0.3928,-0.3182,0.9239,-0.2126,-0.3928,0.8315,-0.3928,-0.2706,0.9239,-0.2706,-0.2706,0.9239,-0.2706,-0.3928,0.8315,-0.3928,-0.3087,0.8315,-0.4619,-0.2706,0.9239,-0.2706,-0.3087,0.8315,-0.4619,-0.2126,0.9239,-0.3182,-0.2126,0.9239,-0.3182,-0.3087,0.8315,-0.4619,-0.2126,0.8315,-0.5133,-0.2126,0.9239,-0.3182,-0.2126,0.8315,-0.5133,-0.1464,0.9239,-0.3536,-0.1464,0.9239,-0.3536,-0.2126,0.8315,-0.5133,-0.1084,0.8315,-0.5449,-0.1464,0.9239,-0.3536,-0.1084,0.8315,-0.5449,-0.0747,0.9239,-0.3753,-0.0747,0.9239,-0.3753,-0.1084,0.8315,-0.5449,0.0,0.8315,-0.5556,-0.0747,0.9239,-0.3753,0.0,0.8315,-0.5556,0.0,0.9239,-0.3827,0.0,0.9239,-0.3827,0.0,0.8315,-0.5556,0.1084,0.8315,-0.5449,0.0,0.9239,-0.3827,0.1084,0.8315,-0.5449,0.0747,0.9239,-0.3753,0.0747,0.9239,-0.3753,0.1084,0.8315,-0.5449,0.2126,0.8315,-0.5133,0.0747,0.9239,-0.3753,0.2126,0.8315,-0.5133,0.1464,0.9239,-0.3536,0.1464,0.9239,-0.3536,0.2126,0.8315,-0.5133,0.3087,0.8315,-0.4619,0.1464,0.9239,-0.3536,0.3087,0.8315,-0.4619,0.2126,0.9239,-0.3182,0.2126,0.9239,-0.3182,0.3087,0.8315,-0.4619,0.3928,0.8315,-0.3928,0.2126,0.9239,-0.3182,0.3928,0.8315,-0.3928,0.2706,0.9239,-0.2706,0.2706,0.9239,-0.2706,0.3928,0.8315,-0.3928,0.4619,0.8315,-0.3087,0.2706,0.9239,-0.2706,0.4619,0.8315,-0.3087,0.3182,0.9239,-0.2126,0.3182,0.9239,-0.2126,0.4619,0.8315,-0.3087,0.5133,0.8315,-0.2126,0.3182,0.9239,-0.2126,0.5133,0.8315,-0.2126,0.3536,0.9239,-0.1464,0.3536,0.9239,-0.1464,0.5133,0.8315,-0.2126,0.5449,0.8315,-0.1084,0.3536,0.9239,-0.1464,0.5449,0.8315,-0.1084,0.3753,0.9239,-0.0747,0.3753,0.9239,-0.0747,0.5449,0.8315,-0.1084,0.5556,0.8315,0.0,0.3753,0.9239,-0.0747,0.5556,0.8315,0.0,0.3827,0.9239,0.0,0.3827,0.9239,0.0,0.5556,0.8315,0.0,0.5449,0.8315,0.1084,0.3827,0.9239,0.0,0.5449,0.8315,0.1084,0.3753,0.9239,0.0747,0.3753,0.9239,0.0747,0.5449,0.8315,0.1084,0.5133,0.8315,0.2126,0.3753,0.9239,0.0747,0.5133,0.8315,0.2126,0.3536,0.9239,0.1464,0.3536,0.9239,0.1464,0.5133,0.8315,0.2126,0.4619,0.8315,0.3087,0.3536,0.9239,0.1464,0.4619,0.8315,0.3087,0.3182,0.9239,0.2126,0.3182,0.9239,0.2126,0.4619,0.8315,0.3087,0.3928,0.8315,0.3928,0.3182,0.9239,0.2126,0.3928,0.8315,0.3928,0.2706,0.9239,0.2706,0.2706,0.9239,0.2706,0.3928,0.8315,0.3928,0.3087,0.8315,0.4619,0.2706,0.9239,0.2706,0.3087,0.8315,0.4619,0.2126,0.9239,0.3182,0.2126,0.9239,0.3182,0.3087,0.8315,0.4619,0.2126,0.8315,0.5133,0.2126,0.9239,0.3182,0.2126,0.8315,0.5133,0.1464,0.9239,0.3536,0.1464,0.9239,0.3536,0.2126,0.8315,0.5133,0.1084,0.8315,0.5449,0.1464,0.9239,0.3536,0.1084,0.8315,0.5449,0.0747,0.9239,0.3753,0.0747,0.9239,0.3753,0.1084,0.8315,0.5449,0.0,0.8315,0.5556,0.0747,0.9239,0.3753,0.0,0.8315,0.5556,0.0,0.9239,0.3827,0.0,0.8315,0.5556,0.0,0.7071,0.7071,-0.1379,0.7071,0.6935,0.0,0.8315,0.5556,-0.1379,0.7071,0.6935,-0.1084,0.8315,0.5449,-0.1084,0.8315,0.5449,-0.1379,0.7071,0.6935,-0.2706,0.7071,0.6533,-0.1084,0.8315,0.5449,-0.2706,0.7071,0.6533,-0.2126,0.8315,0.5133,-0.2126,0.8315,0.5133,-0.2706,0.7071,0.6533,-0.3928,0.7071,0.5879,-0.2126,0.8315,0.5133,-0.3928,0.7071,0.5879,-0.3087,0.8315,0.4619,-0.3087,0.8315,0.4619,-0.3928,0.7071,0.5879,-0.5,0.7071,0.5,-0.3087,0.8315,0.4619,-0.5,0.7071,0.5,-0.3928,0.8315,0.3928,-0.3928,0.8315,0.3928,-0.5,0.7071,0.5,-0.5879,0.7071,0.3928,-0.3928,0.8315,0.3928,-0.5879,0.7071,0.3928,-0.4619,0.8315,0.3087,-0.4619,0.8315,0.3087,-0.5879,0.7071,0.3928,-0.6533,0.7071,0.2706,-0.4619,0.8315,0.3087,-0.6533,0.7071,0.2706,-0.5133,0.8315,0.2126,-0.5133,0.8315,0.2126,-0.6533,0.7071,0.2706,-0.6935,0.7071,0.1379,-0.5133,0.8315,0.2126,-0.6935,0.7071,0.1379,-0.5449,0.8315,0.1084,-0.5449,0.8315,0.1084,-0.6935,0.7071,0.1379,-0.7071,0.7071,0.0,-0.5449,0.8315,0.1084,-0.7071,0.7071,0.0,-0.5556,0.8315,0.0,-0.5556,0.8315,0.0,-0.7071,0.7071,0.0,-0.6935,0.7071,-0.1379,-0.5556,0.8315,0.0,-0.6935,0.7071,-0.1379,-0.5449,0.8315,-0.1084,-0.5449,0.8315,-0.1084,-0.6935,0.7071,-0.1379,-0.6533,0.7071,-0.2706,-0.5449,0.8315,-0.1084,-0.6533,0.7071,-0.2706,-0.5133,0.8315,-0.2126,-0.5133,0.8315,-0.2126,-0.6533,0.7071,-0.2706,-0.5879,0.7071,-0.3928,-0.5133,0.8315,-0.2126,-0.5879,0.7071,-0.3928,-0.4619,0.8315,-0.3087,-0.4619,0.8315,-0.3087,-0.5879,0.7071,-0.3928,-0.5,0.7071,-0.5,-0.4619,0.8315,-0.3087,-0.5,0.7071,-0.5,-0.3928,0.8315,-0.3928,-0.3928,0.8315,-0.3928,-0.5,0.7071,-0.5,-0.3928,0.7071,-0.5879,-0.3928,0.8315,-0.3928,-0.3928,0.7071,-0.5879,-0.3087,0.8315,-0.4619,-0.3087,0.8315,-0.4619,-0.3928,0.7071,-0.5879,-0.2706,0.7071,-0.6533,-0.3087,0.8315,-0.4619,-0.2706,0.7071,-0.6533,-0.2126,0.8315,-0.5133,-0.2126,0.8315,-0.5133,-0.2706,0.7071,-0.6533,-0.1379,0.7071,-0.6935,-0.2126,0.8315,-0.5133,-0.1379,0.7071,-0.6935,-0.1084,0.8315,-0.5449,-0.1084,0.8315,-0.5449,-0.1379,0.7071,-0.6935,0.0,0.7071,-0.7071,-0.1084,0.8315,-0.5449,0.0,0.7071,-0.7071,0.0,0.8315,-0.5556,0.0,0.8315,-0.5556,0.0,0.7071,-0.7071,0.138,0.7071,-0.6935,0.0,0.8315,-0.5556,0.138,0.7071,-0.6935,0.1084,0.8315,-0.5449,0.1084,0.8315,-0.5449,0.138,0.7071,-0.6935,0.2706,0.7071,-0.6533,0.1084,0.8315,-0.5449,0.2706,0.7071,-0.6533,0.2126,0.8315,-0.5133,0.2126,0.8315,-0.5133,0.2706,0.7071,-0.6533,0.3928,0.7071,-0.5879,0.2126,0.8315,-0.5133,0.3928,0.7071,-0.5879,0.3087,0.8315,-0.4619,0.3087,0.8315,-0.4619,0.3928,0.7071,-0.5879,0.5,0.7071,-0.5,0.3087,0.8315,-0.4619,0.5,0.7071,-0.5,0.3928,0.8315,-0.3928,0.3928,0.8315,-0.3928,0.5,0.7071,-0.5,0.5879,0.7071,-0.3928,0.3928,0.8315,-0.3928,0.5879,0.7071,-0.3928,0.4619,0.8315,-0.3087,0.4619,0.8315,-0.3087,0.5879,0.7071,-0.3928,0.6533,0.7071,-0.2706,0.4619,0.8315,-0.3087,0.6533,0.7071,-0.2706,0.5133,0.8315,-0.2126,0.5133,0.8315,-0.2126,0.6533,0.7071,-0.2706,0.6935,0.7071,-0.1379,0.5133,0.8315,-0.2126,0.6935,0.7071,-0.1379,0.5449,0.8315,-0.1084,0.5449,0.8315,-0.1084,0.6935,0.7071,-0.1379,0.7071,0.7071,0.0,0.5449,0.8315,-0.1084,0.7071,0.7071,0.0,0.5556,0.8315,0.0,0.5556,0.8315,0.0,0.7071,0.7071,0.0,0.6935,0.7071,0.138,0.5556,0.8315,0.0,0.6935,0.7071,0.138,0.5449,0.8315,0.1084,0.5449,0.8315,0.1084,0.6935,0.7071,0.138,0.6533,0.7071,0.2706,0.5449,0.8315,0.1084,0.6533,0.7071,0.2706,0.5133,0.8315,0.2126,0.5133,0.8315,0.2126,0.6533,0.7071,0.2706,0.5879,0.7071,0.3928,0.5133,0.8315,0.2126,0.5879,0.7071,0.3928,0.4619,0.8315,0.3087,0.4619,0.8315,0.3087,0.5879,0.7071,0.3928,0.5,0.7071,0.5,0.4619,0.8315,0.3087,0.5,0.7071,0.5,0.3928,0.8315,0.3928,0.3928,0.8315,0.3928,0.5,0.7071,0.5,0.3928,0.7071,0.5879,0.3928,0.8315,0.3928,0.3928,0.7071,0.5879,0.3087,0.8315,0.4619,0.3087,0.8315,0.4619,0.3928,0.7071,0.5879,0.2706,0.7071,0.6533,0.3087,0.8315,0.4619,0.2706,0.7071,0.6533,0.2126,0.8315,0.5133,0.2126,0.8315,0.5133,0.2706,0.7071,0.6533,0.1379,0.7071,0.6935,0.2126,0.8315,0.5133,0.1379,0.7071,0.6935,0.1084,0.8315,0.5449,0.1084,0.8315,0.5449,0.1379,0.7071,0.6935,0.0,0.7071,0.7071,0.1084,0.8315,0.5449,0.0,0.7071,0.7071,0.0,0.8315,0.5556,0.0,0.7071,0.7071,0.0,0.5556,0.8315,-0.1622,0.5556,0.8155,0.0,0.7071,0.7071,-0.1622,0.5556,0.8155,-0.1379,0.7071,0.6935,-0.1379,0.7071,0.6935,-0.1622,0.5556,0.8155,-0.3182,0.5556,0.7682,-0.1379,0.7071,0.6935,-0.3182,0.5556,0.7682,-0.2706,0.7071,0.6533,-0.2706,0.7071,0.6533,-0.3182,0.5556,0.7682,-0.4619,0.5556,0.6913,-0.2706,0.7071,0.6533,-0.4619,0.5556,0.6913,-0.3928,0.7071,0.5879,-0.3928,0.7071,0.5879,-0.4619,0.5556,0.6913,-0.5879,0.5556,0.5879,-0.3928,0.7071,0.5879,-0.5879,0.5556,0.5879,-0.5,0.7071,0.5,-0.5,0.7071,0.5,-0.5879,0.5556,0.5879,-0.6913,0.5556,0.4619,-0.5,0.7071,0.5,-0.6913,0.5556,0.4619,-0.5879,0.7071,0.3928,-0.5879,0.7071,0.3928,-0.6913,0.5556,0.4619,-0.7682,0.5556,0.3182,-0.5879,0.7071,0.3928,-0.7682,0.5556,0.3182,-0.6533,0.7071,0.2706,-0.6533,0.7071,0.2706,-0.7682,0.5556,0.3182,-0.8155,0.5556,0.1622,-0.6533,0.7071,0.2706,-0.8155,0.5556,0.1622,-0.6935,0.7071,0.1379,-0.6935,0.7071,0.1379,-0.8155,0.5556,0.1622,-0.8315,0.5556,0.0,-0.6935,0.7071,0.1379,-0.8315,0.5556,0.0,-0.7071,0.7071,0.0,-0.7071,0.7071,0.0,-0.8315,0.5556,0.0,-0.8155,0.5556,-0.1622,-0.7071,0.7071,0.0,-0.8155,0.5556,-0.1622,-0.6935,0.7071,-0.1379,-0.6935,0.7071,-0.1379,-0.8155,0.5556,-0.1622,-0.7682,0.5556,-0.3182,-0.6935,0.7071,-0.1379,-0.7682,0.5556,-0.3182,-0.6533,0.7071,-0.2706,-0.6533,0.7071,-0.2706,-0.7682,0.5556,-0.3182,-0.6913,0.5556,-0.4619,-0.6533,0.7071,-0.2706,-0.6913,0.5556,-0.4619,-0.5879,0.7071,-0.3928,-0.5879,0.7071,-0.3928,-0.6913,0.5556,-0.4619,-0.5879,0.5556,-0.5879,-0.5879,0.7071,-0.3928,-0.5879,0.5556,-0.5879,-0.5,0.7071,-0.5,-0.5,0.7071,-0.5,-0.5879,0.5556,-0.5879,-0.4619,0.5556,-0.6913,-0.5,0.7071,-0.5,-0.4619,0.5556,-0.6913,-0.3928,0.7071,-0.5879,-0.3928,0.7071,-0.5879,-0.4619,0.5556,-0.6913,-0.3182,0.5556,-0.7682,-0.3928,0.7071,-0.5879,-0.3182,0.5556,-0.7682,-0.2706,0.7071,-0.6533,-0.2706,0.7071,-0.6533,-0.3182,0.5556,-0.7682,-0.1622,0.5556,-0.8155,-0.2706,0.7071,-0.6533,-0.1622,0.5556,-0.8155,-0.1379,0.7071,-0.6935,-0.1379,0.7071,-0.6935,-0.1622,0.5556,-0.8155,0.0,0.5556,-0.8315,-0.1379,0.7071,-0.6935,0.0,0.5556,-0.8315,0.0,0.7071,-0.7071,0.0,0.7071,-0.7071,0.0,0.5556,-0.8315,0.1622,0.5556,-0.8155,0.0,0.7071,-0.7071,0.1622,0.5556,-0.8155,0.138,0.7071,-0.6935,0.138,0.7071,-0.6935,0.1622,0.5556,-0.8155,0.3182,0.5556,-0.7682,0.138,0.7071,-0.6935,0.3182,0.5556,-0.7682,0.2706,0.7071,-0.6533,0.2706,0.7071,-0.6533,0.3182,0.5556,-0.7682,0.4619,0.5556,-0.6913,0.2706,0.7071,-0.6533,0.4619,0.5556,-0.6913,0.3928,0.7071,-0.5879,0.3928,0.7071,-0.5879,0.4619,0.5556,-0.6913,0.5879,0.5556,-0.5879,0.3928,0.7071,-0.5879,0.5879,0.5556,-0.5879,0.5,0.7071,-0.5,0.5,0.7071,-0.5,0.5879,0.5556,-0.5879,0.6913,0.5556,-0.4619,0.5,0.7071,-0.5,0.6913,0.5556,-0.4619,0.5879,0.7071,-0.3928,0.5879,0.7071,-0.3928,0.6913,0.5556,-0.4619,0.7682,0.5556,-0.3182,0.5879,0.7071,-0.3928,0.7682,0.5556,-0.3182,0.6533,0.7071,-0.2706,0.6533,0.7071,-0.2706,0.7682,0.5556,-0.3182,0.8155,0.5556,-0.1622,0.6533,0.7071,-0.2706,0.8155,0.5556,-0.1622,0.6935,0.7071,-0.1379,0.6935,0.7071,-0.1379,0.8155,0.5556,-0.1622,0.8315,0.5556,0.0,0.6935,0.7071,-0.1379,0.8315,0.5556,0.0,0.7071,0.7071,0.0,0.7071,0.7071,0.0,0.8315,0.5556,0.0,0.8155,0.5556,0.1622,0.7071,0.7071,0.0,0.8155,0.5556,0.1622,0.6935,0.7071,0.138,0.6935,0.7071,0.138,0.8155,0.5556,0.1622,0.7682,0.5556,0.3182,0.6935,0.7071,0.138,0.7682,0.5556,0.3182,0.6533,0.7071,0.2706,0.6533,0.7071,0.2706,0.7682,0.5556,0.3182,0.6913,0.5556,0.4619,0.6533,0.7071,0.2706,0.6913,0.5556,0.4619,0.5879,0.7071,0.3928,0.5879,0.7071,0.3928,0.6913,0.5556,0.4619,0.5879,0.5556,0.5879,0.5879,0.7071,0.3928,0.5879,0.5556,0.5879,0.5,0.7071,0.5,0.5,0.7071,0.5,0.5879,0.5556,0.5879,0.4619,0.5556,0.6913,0.5,0.7071,0.5,0.4619,0.5556,0.6913,0.3928,0.7071,0.5879,0.3928,0.7071,0.5879,0.4619,0.5556,0.6913,0.3182,0.5556,0.7682,0.3928,0.7071,0.5879,0.3182,0.5556,0.7682,0.2706,0.7071,0.6533,0.2706,0.7071,0.6533,0.3182,0.5556,0.7682,0.1622,0.5556,0.8155,0.2706,0.7071,0.6533,0.1622,0.5556,0.8155,0.1379,0.7071,0.6935,0.1379,0.7071,0.6935,0.1622,0.5556,0.8155,0.0,0.5556,0.8315,0.1379,0.7071,0.6935,0.0,0.5556,0.8315,0.0,0.7071,0.7071,0.0,0.5556,0.8315,0.0,0.3827,0.9239,-0.1802,0.3827,0.9061,0.0,0.5556,0.8315,-0.1802,0.3827,0.9061,-0.1622,0.5556,0.8155,-0.1622,0.5556,0.8155,-0.1802,0.3827,0.9061,-0.3536,0.3827,0.8536,-0.1622,0.5556,0.8155,-0.3536,0.3827,0.8536,-0.3182,0.5556,0.7682,-0.3182,0.5556,0.7682,-0.3536,0.3827,0.8536,-0.5133,0.3827,0.7682,-0.3182,0.5556,0.7682,-0.5133,0.3827,0.7682,-0.4619,0.5556,0.6913,-0.4619,0.5556,0.6913,-0.5133,0.3827,0.7682,-0.6533,0.3827,0.6533,-0.4619,0.5556,0.6913,-0.6533,0.3827,0.6533,-0.5879,0.5556,0.5879,-0.5879,0.5556,0.5879,-0.6533,0.3827,0.6533,-0.7682,0.3827,0.5133,-0.5879,0.5556,0.5879,-0.7682,0.3827,0.5133,-0.6913,0.5556,0.4619,-0.6913,0.5556,0.4619,-0.7682,0.3827,0.5133,-0.8536,0.3827,0.3536,-0.6913,0.5556,0.4619,-0.8536,0.3827,0.3536,-0.7682,0.5556,0.3182,-0.7682,0.5556,0.3182,-0.8536,0.3827,0.3536,-0.9061,0.3827,0.1802,-0.7682,0.5556,0.3182,-0.9061,0.3827,0.1802,-0.8155,0.5556,0.1622,-0.8155,0.5556,0.1622,-0.9061,0.3827,0.1802,-0.9239,0.3827,0.0,-0.8155,0.5556,0.1622,-0.9239,0.3827,0.0,-0.8315,0.5556,0.0,-0.8315,0.5556,0.0,-0.9239,0.3827,0.0,-0.9061,0.3827,-0.1802,-0.8315,0.5556,0.0,-0.9061,0.3827,-0.1802,-0.8155,0.5556,-0.1622,-0.8155,0.5556,-0.1622,-0.9061,0.3827,-0.1802,-0.8536,0.3827,-0.3536,-0.8155,0.5556,-0.1622,-0.8536,0.3827,-0.3536,-0.7682,0.5556,-0.3182,-0.7682,0.5556,-0.3182,-0.8536,0.3827,-0.3536,-0.7682,0.3827,-0.5133,-0.7682,0.5556,-0.3182,-0.7682,0.3827,-0.5133,-0.6913,0.5556,-0.4619,-0.6913,0.5556,-0.4619,-0.7682,0.3827,-0.5133,-0.6533,0.3827,-0.6533,-0.6913,0.5556,-0.4619,-0.6533,0.3827,-0.6533,-0.5879,0.5556,-0.5879,-0.5879,0.5556,-0.5879,-0.6533,0.3827,-0.6533,-0.5133,0.3827,-0.7682,-0.5879,0.5556,-0.5879,-0.5133,0.3827,-0.7682,-0.4619,0.5556,-0.6913,-0.4619,0.5556,-0.6913,-0.5133,0.3827,-0.7682,-0.3536,0.3827,-0.8536,-0.4619,0.5556,-0.6913,-0.3536,0.3827,-0.8536,-0.3182,0.5556,-0.7682,-0.3182,0.5556,-0.7682,-0.3536,0.3827,-0.8536,-0.1802,0.3827,-0.9061,-0.3182,0.5556,-0.7682,-0.1802,0.3827,-0.9061,-0.1622,0.5556,-0.8155,-0.1622,0.5556,-0.8155,-0.1802,0.3827,-0.9061,0.0,0.3827,-0.9239,-0.1622,0.5556,-0.8155,0.0,0.3827,-0.9239,0.0,0.5556,-0.8315,0.0,0.5556,-0.8315,0.0,0.3827,-0.9239,0.1802,0.3827,-0.9061,0.0,0.5556,-0.8315,0.1802,0.3827,-0.9061,0.1622,0.5556,-0.8155,0.1622,0.5556,-0.8155,0.1802,0.3827,-0.9061,0.3536,0.3827,-0.8536,0.1622,0.5556,-0.8155,0.3536,0.3827,-0.8536,0.3182,0.5556,-0.7682,0.3182,0.5556,-0.7682,0.3536,0.3827,-0.8536,0.5133,0.3827,-0.7682,0.3182,0.5556,-0.7682,0.5133,0.3827,-0.7682,0.4619,0.5556,-0.6913,0.4619,0.5556,-0.6913,0.5133,0.3827,-0.7682,0.6533,0.3827,-0.6533,0.4619,0.5556,-0.6913,0.6533,0.3827,-0.6533,0.5879,0.5556,-0.5879,0.5879,0.5556,-0.5879,0.6533,0.3827,-0.6533,0.7682,0.3827,-0.5133,0.5879,0.5556,-0.5879,0.7682,0.3827,-0.5133,0.6913,0.5556,-0.4619,0.6913,0.5556,-0.4619,0.7682,0.3827,-0.5133,0.8536,0.3827,-0.3536,0.6913,0.5556,-0.4619,0.8536,0.3827,-0.3536,0.7682,0.5556,-0.3182,0.7682,0.5556,-0.3182,0.8536,0.3827,-0.3536,0.9061,0.3827,-0.1802,0.7682,0.5556,-0.3182,0.9061,0.3827,-0.1802,0.8155,0.5556,-0.1622,0.8155,0.5556,-0.1622,0.9061,0.3827,-0.1802,0.9239,0.3827,0.0,0.8155,0.5556,-0.1622,0.9239,0.3827,0.0,0.8315,0.5556,0.0,0.8315,0.5556,0.0,0.9239,0.3827,0.0,0.9061,0.3827,0.1802,0.8315,0.5556,0.0,0.9061,0.3827,0.1802,0.8155,0.5556,0.1622,0.8155,0.5556,0.1622,0.9061,0.3827,0.1802,0.8536,0.3827,0.3536,0.8155,0.5556,0.1622,0.8536,0.3827,0.3536,0.7682,0.5556,0.3182,0.7682,0.5556,0.3182,0.8536,0.3827,0.3536,0.7682,0.3827,0.5133,0.7682,0.5556,0.3182,0.7682,0.3827,0.5133,0.6913,0.5556,0.4619,0.6913,0.5556,0.4619,0.7682,0.3827,0.5133,0.6533,0.3827,0.6533,0.6913,0.5556,0.4619,0.6533,0.3827,0.6533,0.5879,0.5556,0.5879,0.5879,0.5556,0.5879,0.6533,0.3827,0.6533,0.5133,0.3827,0.7682,0.5879,0.5556,0.5879,0.5133,0.3827,0.7682,0.4619,0.5556,0.6913,0.4619,0.5556,0.6913,0.5133,0.3827,0.7682,0.3536,0.3827,0.8536,0.4619,0.5556,0.6913,0.3536,0.3827,0.8536,0.3182,0.5556,0.7682,0.3182,0.5556,0.7682,0.3536,0.3827,0.8536,0.1802,0.3827,0.9061,0.3182,0.5556,0.7682,0.1802,0.3827,0.9061,0.1622,0.5556,0.8155,0.1622,0.5556,0.8155,0.1802,0.3827,0.9061,0.0,0.3827,0.9239,0.1622,0.5556,0.8155,0.0,0.3827,0.9239,0.0,0.5556,0.8315,0.0,0.3827,0.9239,0.0,0.1951,0.9808,-0.1913,0.1951,0.9619,0.0,0.3827,0.9239,-0.1913,0.1951,0.9619,-0.1802,0.3827,0.9061,-0.1802,0.3827,0.9061,-0.1913,0.1951,0.9619,-0.3753,0.1951,0.9061,-0.1802,0.3827,0.9061,-0.3753,0.1951,0.9061,-0.3536,0.3827,0.8536,-0.3536,0.3827,0.8536,-0.3753,0.1951,0.9061,-0.5449,0.1951,0.8155,-0.3536,0.3827,0.8536,-0.5449,0.1951,0.8155,-0.5133,0.3827,0.7682,-0.5133,0.3827,0.7682,-0.5449,0.1951,0.8155,-0.6935,0.1951,0.6935,-0.5133,0.3827,0.7682,-0.6935,0.1951,0.6935,-0.6533,0.3827,0.6533,-0.6533,0.3827,0.6533,-0.6935,0.1951,0.6935,-0.8155,0.1951,0.5449,-0.6533,0.3827,0.6533,-0.8155,0.1951,0.5449,-0.7682,0.3827,0.5133,-0.7682,0.3827,0.5133,-0.8155,0.1951,0.5449,-0.9061,0.1951,0.3753,-0.7682,0.3827,0.5133,-0.9061,0.1951,0.3753,-0.8536,0.3827,0.3536,-0.8536,0.3827,0.3536,-0.9061,0.1951,0.3753,-0.9619,0.1951,0.1913,-0.8536,0.3827,0.3536,-0.9619,0.1951,0.1913,-0.9061,0.3827,0.1802,-0.9061,0.3827,0.1802,-0.9619,0.1951,0.1913,-0.9808,0.1951,0.0,-0.9061,0.3827,0.1802,-0.9808,0.1951,0.0,-0.9239,0.3827,0.0,-0.9239,0.3827,0.0,-0.9808,0.1951,0.0,-0.9619,0.1951,-0.1913,-0.9239,0.3827,0.0,-0.9619,0.1951,-0.1913,-0.9061,0.3827,-0.1802,-0.9061,0.3827,-0.1802,-0.9619,0.1951,-0.1913,-0.9061,0.1951,-0.3753,-0.9061,0.3827,-0.1802,-0.9061,0.1951,-0.3753,-0.8536,0.3827,-0.3536,-0.8536,0.3827,-0.3536,-0.9061,0.1951,-0.3753,-0.8155,0.1951,-0.5449,-0.8536,0.3827,-0.3536,-0.8155,0.1951,-0.5449,-0.7682,0.3827,-0.5133,-0.7682,0.3827,-0.5133,-0.8155,0.1951,-0.5449,-0.6935,0.1951,-0.6935,-0.7682,0.3827,-0.5133,-0.6935,0.1951,-0.6935,-0.6533,0.3827,-0.6533,-0.6533,0.3827,-0.6533,-0.6935,0.1951,-0.6935,-0.5449,0.1951,-0.8155,-0.6533,0.3827,-0.6533,-0.5449,0.1951,-0.8155,-0.5133,0.3827,-0.7682,-0.5133,0.3827,-0.7682,-0.5449,0.1951,-0.8155,-0.3753,0.1951,-0.9061,-0.5133,0.3827,-0.7682,-0.3753,0.1951,-0.9061,-0.3536,0.3827,-0.8536,-0.3536,0.3827,-0.8536,-0.3753,0.1951,-0.9061,-0.1913,0.1951,-0.9619,-0.3536,0.3827,-0.8536,-0.1913,0.1951,-0.9619,-0.1802,0.3827,-0.9061,-0.1802,0.3827,-0.9061,-0.1913,0.1951,-0.9619,0.0,0.1951,-0.9808,-0.1802,0.3827,-0.9061,0.0,0.1951,-0.9808,0.0,0.3827,-0.9239,0.0,0.3827,-0.9239,0.0,0.1951,-0.9808,0.1913,0.1951,-0.9619,0.0,0.3827,-0.9239,0.1913,0.1951,-0.9619,0.1802,0.3827,-0.9061,0.1802,0.3827,-0.9061,0.1913,0.1951,-0.9619,0.3753,0.1951,-0.9061,0.1802,0.3827,-0.9061,0.3753,0.1951,-0.9061,0.3536,0.3827,-0.8536,0.3536,0.3827,-0.8536,0.3753,0.1951,-0.9061,0.5449,0.1951,-0.8155,0.3536,0.3827,-0.8536,0.5449,0.1951,-0.8155,0.5133,0.3827,-0.7682,0.5133,0.3827,-0.7682,0.5449,0.1951,-0.8155,0.6935,0.1951,-0.6935,0.5133,0.3827,-0.7682,0.6935,0.1951,-0.6935,0.6533,0.3827,-0.6533,0.6533,0.3827,-0.6533,0.6935,0.1951,-0.6935,0.8155,0.1951,-0.5449,0.6533,0.3827,-0.6533,0.8155,0.1951,-0.5449,0.7682,0.3827,-0.5133,0.7682,0.3827,-0.5133,0.8155,0.1951,-0.5449,0.9061,0.1951,-0.3753,0.7682,0.3827,-0.5133,0.9061,0.1951,-0.3753,0.8536,0.3827,-0.3536,0.8536,0.3827,-0.3536,0.9061,0.1951,-0.3753,0.9619,0.1951,-0.1913,0.8536,0.3827,-0.3536,0.9619,0.1951,-0.1913,0.9061,0.3827,-0.1802,0.9061,0.3827,-0.1802,0.9619,0.1951,-0.1913,0.9808,0.1951,0.0,0.9061,0.3827,-0.1802,0.9808,0.1951,0.0,0.9239,0.3827,0.0,0.9239,0.3827,0.0,0.9808,0.1951,0.0,0.9619,0.1951,0.1913,0.9239,0.3827,0.0,0.9619,0.1951,0.1913,0.9061,0.3827,0.1802,0.9061,0.3827,0.1802,0.9619,0.1951,0.1913,0.9061,0.1951,0.3753,0.9061,0.3827,0.1802,0.9061,0.1951,0.3753,0.8536,0.3827,0.3536,0.8536,0.3827,0.3536,0.9061,0.1951,0.3753,0.8155,0.1951,0.5449,0.8536,0.3827,0.3536,0.8155,0.1951,0.5449,0.7682,0.3827,0.5133,0.7682,0.3827,0.5133,0.8155,0.1951,0.5449,0.6935,0.1951,0.6935,0.7682,0.3827,0.5133,0.6935,0.1951,0.6935,0.6533,0.3827,0.6533,0.6533,0.3827,0.6533,0.6935,0.1951,0.6935,0.5449,0.1951,0.8155,0.6533,0.3827,0.6533,0.5449,0.1951,0.8155,0.5133,0.3827,0.7682,0.5133,0.3827,0.7682,0.5449,0.1951,0.8155,0.3753,0.1951,0.9061,0.5133,0.3827,0.7682,0.3753,0.1951,0.9061,0.3536,0.3827,0.8536,0.3536,0.3827,0.8536,0.3753,0.1951,0.9061,0.1913,0.1951,0.9619,0.3536,0.3827,0.8536,0.1913,0.1951,0.9619,0.1802,0.3827,0.9061,0.1802,0.3827,0.9061,0.1913,0.1951,0.9619,0.0,0.1951,0.9808,0.1802,0.3827,0.9061,0.0,0.1951,0.9808,0.0,0.3827,0.9239,0.0,0.1951,0.9808,0.0,0.0,1.0,-0.1951,0.0,0.9808,0.0,0.1951,0.9808,-0.1951,0.0,0.9808,-0.1913,0.1951,0.9619,-0.1913,0.1951,0.9619,-0.1951,0.0,0.9808,-0.3827,0.0,0.9239,-0.1913,0.1951,0.9619,-0.3827,0.0,0.9239,-0.3753,0.1951,0.9061,-0.3753,0.1951,0.9061,-0.3827,0.0,0.9239,-0.5556,0.0,0.8315,-0.3753,0.1951,0.9061,-0.5556,0.0,0.8315,-0.5449,0.1951,0.8155,-0.5449,0.1951,0.8155,-0.5556,0.0,0.8315,-0.7071,0.0,0.7071,-0.5449,0.1951,0.8155,-0.7071,0.0,0.7071,-0.6935,0.1951,0.6935,-0.6935,0.1951,0.6935,-0.7071,0.0,0.7071,-0.8315,0.0,0.5556,-0.6935,0.1951,0.6935,-0.8315,0.0,0.5556,-0.8155,0.1951,0.5449,-0.8155,0.1951,0.5449,-0.8315,0.0,0.5556,-0.9239,0.0,0.3827,-0.8155,0.1951,0.5449,-0.9239,0.0,0.3827,-0.9061,0.1951,0.3753,-0.9061,0.1951,0.3753,-0.9239,0.0,0.3827,-0.9808,0.0,0.1951,-0.9061,0.1951,0.3753,-0.9808,0.0,0.1951,-0.9619,0.1951,0.1913,-0.9619,0.1951,0.1913,-0.9808,0.0,0.1951,-1.0,0.0,0.0,-0.9619,0.1951,0.1913,-1.0,0.0,0.0,-0.9808,0.1951,0.0,-0.9808,0.1951,0.0,-1.0,0.0,0.0,-0.9808,0.0,-0.1951,-0.9808,0.1951,0.0,-0.9808,0.0,-0.1951,-0.9619,0.1951,-0.1913,-0.9619,0.1951,-0.1913,-0.9808,0.0,-0.1951,-0.9239,0.0,-0.3827,-0.9619,0.1951,-0.1913,-0.9239,0.0,-0.3827,-0.9061,0.1951,-0.3753,-0.9061,0.1951,-0.3753,-0.9239,0.0,-0.3827,-0.8315,0.0,-0.5556,-0.9061,0.1951,-0.3753,-0.8315,0.0,-0.5556,-0.8155,0.1951,-0.5449,-0.8155,0.1951,-0.5449,-0.8315,0.0,-0.5556,-0.7071,0.0,-0.7071,-0.8155,0.1951,-0.5449,-0.7071,0.0,-0.7071,-0.6935,0.1951,-0.6935,-0.6935,0.1951,-0.6935,-0.7071,0.0,-0.7071,-0.5556,0.0,-0.8315,-0.6935,0.1951,-0.6935,-0.5556,0.0,-0.8315,-0.5449,0.1951,-0.8155,-0.5449,0.1951,-0.8155,-0.5556,0.0,-0.8315,-0.3827,0.0,-0.9239,-0.5449,0.1951,-0.8155,-0.3827,0.0,-0.9239,-0.3753,0.1951,-0.9061,-0.3753,0.1951,-0.9061,-0.3827,0.0,-0.9239,-0.1951,0.0,-0.9808,-0.3753,0.1951,-0.9061,-0.1951,0.0,-0.9808,-0.1913,0.1951,-0.9619,-0.1913,0.1951,-0.9619,-0.1951,0.0,-0.9808,0.0,0.0,-1.0,-0.1913,0.1951,-0.9619,0.0,0.0,-1.0,0.0,0.1951,-0.9808,0.0,0.1951,-0.9808,0.0,0.0,-1.0,0.1951,0.0,-0.9808,0.0,0.1951,-0.9808,0.1951,0.0,-0.9808,0.1913,0.1951,-0.9619,0.1913,0.1951,-0.9619,0.1951,0.0,-0.9808,0.3827,0.0,-0.9239,0.1913,0.1951,-0.9619,0.3827,0.0,-0.9239,0.3753,0.1951,-0.9061,0.3753,0.1951,-0.9061,0.3827,0.0,-0.9239,0.5556,0.0,-0.8315,0.3753,0.1951,-0.9061,0.5556,0.0,-0.8315,0.5449,0.1951,-0.8155,0.5449,0.1951,-0.8155,0.5556,0.0,-0.8315,0.7071,0.0,-0.7071,0.5449,0.1951,-0.8155,0.7071,0.0,-0.7071,0.6935,0.1951,-0.6935,0.6935,0.1951,-0.6935,0.7071,0.0,-0.7071,0.8315,0.0,-0.5556,0.6935,0.1951,-0.6935,0.8315,0.0,-0.5556,0.8155,0.1951,-0.5449,0.8155,0.1951,-0.5449,0.8315,0.0,-0.5556,0.9239,0.0,-0.3827,0.8155,0.1951,-0.5449,0.9239,0.0,-0.3827,0.9061,0.1951,-0.3753,0.9061,0.1951,-0.3753,0.9239,0.0,-0.3827,0.9808,0.0,-0.1951,0.9061,0.1951,-0.3753,0.9808,0.0,-0.1951,0.9619,0.1951,-0.1913,0.9619,0.1951,-0.1913,0.9808,0.0,-0.1951,1.0,0.0,0.0,0.9619,0.1951,-0.1913,1.0,0.0,0.0,0.9808,0.1951,0.0,0.9808,0.1951,0.0,1.0,0.0,0.0,0.9808,0.0,0.1951,0.9808,0.1951,0.0,0.9808,0.0,0.1951,0.9619,0.1951,0.1913,0.9619,0.1951,0.1913,0.9808,0.0,0.1951,0.9239,0.0,0.3827,0.9619,0.1951,0.1913,0.9239,0.0,0.3827,0.9061,0.1951,0.3753,0.9061,0.1951,0.3753,0.9239,0.0,0.3827,0.8315,0.0,0.5556,0.9061,0.1951,0.3753,0.8315,0.0,0.5556,0.8155,0.1951,0.5449,0.8155,0.1951,0.5449,0.8315,0.0,0.5556,0.7071,0.0,0.7071,0.8155,0.1951,0.5449,0.7071,0.0,0.7071,0.6935,0.1951,0.6935,0.6935,0.1951,0.6935,0.7071,0.0,0.7071,0.5556,0.0,0.8315,0.6935,0.1951,0.6935,0.5556,0.0,0.8315,0.5449,0.1951,0.8155,0.5449,0.1951,0.8155,0.5556,0.0,0.8315,0.3827,0.0,0.9239,0.5449,0.1951,0.8155,0.3827,0.0,0.9239,0.3753,0.1951,0.9061,0.3753,0.1951,0.9061,0.3827,0.0,0.9239,0.1951,0.0,0.9808,0.3753,0.1951,0.9061,0.1951,0.0,0.9808,0.1913,0.1951,0.9619,0.1913,0.1951,0.9619,0.1951,0.0,0.9808,0.0,0.0,1.0,0.1913,0.1951,0.9619,0.0,0.0,1.0,0.0,0.1951,0.9808,0.0,0.0,1.0,0.0,-0.1951,0.9808,-0.1913,-0.1951,0.9619,0.0,0.0,1.0,-0.1913,-0.1951,0.9619,-0.1951,0.0,0.9808,-0.1951,0.0,0.9808,-0.1913,-0.1951,0.9619,-0.3753,-0.1951,0.9061,-0.1951,0.0,0.9808,-0.3753,-0.1951,0.9061,-0.3827,0.0,0.9239,-0.3827,0.0,0.9239,-0.3753,-0.1951,0.9061,-0.5449,-0.1951,0.8155,-0.3827,0.0,0.9239,-0.5449,-0.1951,0.8155,-0.5556,0.0,0.8315,-0.5556,0.0,0.8315,-0.5449,-0.1951,0.8155,-0.6935,-0.1951,0.6935,-0.5556,0.0,0.8315,-0.6935,-0.1951,0.6935,-0.7071,0.0,0.7071,-0.7071,0.0,0.7071,-0.6935,-0.1951,0.6935,-0.8155,-0.1951,0.5449,-0.7071,0.0,0.7071,-0.8155,-0.1951,0.5449,-0.8315,0.0,0.5556,-0.8315,0.0,0.5556,-0.8155,-0.1951,0.5449,-0.9061,-0.1951,0.3753,-0.8315,0.0,0.5556,-0.9061,-0.1951,0.3753,-0.9239,0.0,0.3827,-0.9239,0.0,0.3827,-0.9061,-0.1951,0.3753,-0.9619,-0.1951,0.1913,-0.9239,0.0,0.3827,-0.9619,-0.1951,0.1913,-0.9808,0.0,0.1951,-0.9808,0.0,0.1951,-0.9619,-0.1951,0.1913,-0.9808,-0.1951,0.0,-0.9808,0.0,0.1951,-0.9808,-0.1951,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-0.9808,-0.1951,0.0,-0.9619,-0.1951,-0.1913,-1.0,0.0,0.0,-0.9619,-0.1951,-0.1913,-0.9808,0.0,-0.1951,-0.9808,0.0,-0.1951,-0.9619,-0.1951,-0.1913,-0.9061,-0.1951,-0.3753,-0.9808,0.0,-0.1951,-0.9061,-0.1951,-0.3753,-0.9239,0.0,-0.3827,-0.9239,0.0,-0.3827,-0.9061,-0.1951,-0.3753,-0.8155,-0.1951,-0.5449,-0.9239,0.0,-0.3827,-0.8155,-0.1951,-0.5449,-0.8315,0.0,-0.5556,-0.8315,0.0,-0.5556,-0.8155,-0.1951,-0.5449,-0.6935,-0.1951,-0.6935,-0.8315,0.0,-0.5556,-0.6935,-0.1951,-0.6935,-0.7071,0.0,-0.7071,-0.7071,0.0,-0.7071,-0.6935,-0.1951,-0.6935,-0.5449,-0.1951,-0.8155,-0.7071,0.0,-0.7071,-0.5449,-0.1951,-0.8155,-0.5556,0.0,-0.8315,-0.5556,0.0,-0.8315,-0.5449,-0.1951,-0.8155,-0.3753,-0.1951,-0.9061,-0.5556,0.0,-0.8315,-0.3753,-0.1951,-0.9061,-0.3827,0.0,-0.9239,-0.3827,0.0,-0.9239,-0.3753,-0.1951,-0.9061,-0.1913,-0.1951,-0.9619,-0.3827,0.0,-0.9239,-0.1913,-0.1951,-0.9619,-0.1951,0.0,-0.9808,-0.1951,0.0,-0.9808,-0.1913,-0.1951,-0.9619,0.0,-0.1951,-0.9808,-0.1951,0.0,-0.9808,0.0,-0.1951,-0.9808,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,-0.1951,-0.9808,0.1913,-0.1951,-0.9619,0.0,0.0,-1.0,0.1913,-0.1951,-0.9619,0.1951,0.0,-0.9808,0.1951,0.0,-0.9808,0.1913,-0.1951,-0.9619,0.3753,-0.1951,-0.9061,0.1951,0.0,-0.9808,0.3753,-0.1951,-0.9061,0.3827,0.0,-0.9239,0.3827,0.0,-0.9239,0.3753,-0.1951,-0.9061,0.5449,-0.1951,-0.8155,0.3827,0.0,-0.9239,0.5449,-0.1951,-0.8155,0.5556,0.0,-0.8315,0.5556,0.0,-0.8315,0.5449,-0.1951,-0.8155,0.6935,-0.1951,-0.6935,0.5556,0.0,-0.8315,0.6935,-0.1951,-0.6935,0.7071,0.0,-0.7071,0.7071,0.0,-0.7071,0.6935,-0.1951,-0.6935,0.8155,-0.1951,-0.5449,0.7071,0.0,-0.7071,0.8155,-0.1951,-0.5449,0.8315,0.0,-0.5556,0.8315,0.0,-0.5556,0.8155,-0.1951,-0.5449,0.9061,-0.1951,-0.3753,0.8315,0.0,-0.5556,0.9061,-0.1951,-0.3753,0.9239,0.0,-0.3827,0.9239,0.0,-0.3827,0.9061,-0.1951,-0.3753,0.9619,-0.1951,-0.1913,0.9239,0.0,-0.3827,0.9619,-0.1951,-0.1913,0.9808,0.0,-0.1951,0.9808,0.0,-0.1951,0.9619,-0.1951,-0.1913,0.9808,-0.1951,0.0,0.9808,0.0,-0.1951,0.9808,-0.1951,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.9808,-0.1951,0.0,0.9619,-0.1951,0.1913,1.0,0.0,0.0,0.9619,-0.1951,0.1913,0.9808,0.0,0.1951,0.9808,0.0,0.1951,0.9619,-0.1951,0.1913,0.9061,-0.1951,0.3753,0.9808,0.0,0.1951,0.9061,-0.1951,0.3753,0.9239,0.0,0.3827,0.9239,0.0,0.3827,0.9061,-0.1951,0.3753,0.8155,-0.1951,0.5449,0.9239,0.0,0.3827,0.8155,-0.1951,0.5449,0.8315,0.0,0.5556,0.8315,0.0,0.5556,0.8155,-0.1951,0.5449,0.6935,-0.1951,0.6935,0.8315,0.0,0.5556,0.6935,-0.1951,0.6935,0.7071,0.0,0.7071,0.7071,0.0,0.7071,0.6935,-0.1951,0.6935,0.5449,-0.1951,0.8155,0.7071,0.0,0.7071,0.5449,-0.1951,0.8155,0.5556,0.0,0.8315,0.5556,0.0,0.8315,0.5449,-0.1951,0.8155,0.3753,-0.1951,0.9061,0.5556,0.0,0.8315,0.3753,-0.1951,0.9061,0.3827,0.0,0.9239,0.3827,0.0,0.9239,0.3753,-0.1951,0.9061,0.1913,-0.1951,0.9619,0.3827,0.0,0.9239,0.1913,-0.1951,0.9619,0.1951,0.0,0.9808,0.1951,0.0,0.9808,0.1913,-0.1951,0.9619,0.0,-0.1951,0.9808,0.1951,0.0,0.9808,0.0,-0.1951,0.9808,0.0,0.0,1.0,0.0,-0.1951,0.9808,0.0,-0.3827,0.9239,-0.1802,-0.3827,0.9061,0.0,-0.1951,0.9808,-0.1802,-0.3827,0.9061,-0.1913,-0.1951,0.9619,-0.1913,-0.1951,0.9619,-0.1802,-0.3827,0.9061,-0.3536,-0.3827,0.8536,-0.1913,-0.1951,0.9619,-0.3536,-0.3827,0.8536,-0.3753,-0.1951,0.9061,-0.3753,-0.1951,0.9061,-0.3536,-0.3827,0.8536,-0.5133,-0.3827,0.7682,-0.3753,-0.1951,0.9061,-0.5133,-0.3827,0.7682,-0.5449,-0.1951,0.8155,-0.5449,-0.1951,0.8155,-0.5133,-0.3827,0.7682,-0.6533,-0.3827,0.6533,-0.5449,-0.1951,0.8155,-0.6533,-0.3827,0.6533,-0.6935,-0.1951,0.6935,-0.6935,-0.1951,0.6935,-0.6533,-0.3827,0.6533,-0.7682,-0.3827,0.5133,-0.6935,-0.1951,0.6935,-0.7682,-0.3827,0.5133,-0.8155,-0.1951,0.5449,-0.8155,-0.1951,0.5449,-0.7682,-0.3827,0.5133,-0.8536,-0.3827,0.3536,-0.8155,-0.1951,0.5449,-0.8536,-0.3827,0.3536,-0.9061,-0.1951,0.3753,-0.9061,-0.1951,0.3753,-0.8536,-0.3827,0.3536,-0.9061,-0.3827,0.1802,-0.9061,-0.1951,0.3753,-0.9061,-0.3827,0.1802,-0.9619,-0.1951,0.1913,-0.9619,-0.1951,0.1913,-0.9061,-0.3827,0.1802,-0.9239,-0.3827,0.0,-0.9619,-0.1951,0.1913,-0.9239,-0.3827,0.0,-0.9808,-0.1951,0.0,-0.9808,-0.1951,0.0,-0.9239,-0.3827,0.0,-0.9061,-0.3827,-0.1802,-0.9808,-0.1951,0.0,-0.9061,-0.3827,-0.1802,-0.9619,-0.1951,-0.1913,-0.9619,-0.1951,-0.1913,-0.9061,-0.3827,-0.1802,-0.8536,-0.3827,-0.3536,-0.9619,-0.1951,-0.1913,-0.8536,-0.3827,-0.3536,-0.9061,-0.1951,-0.3753,-0.9061,-0.1951,-0.3753,-0.8536,-0.3827,-0.3536,-0.7682,-0.3827,-0.5133,-0.9061,-0.1951,-0.3753,-0.7682,-0.3827,-0.5133,-0.8155,-0.1951,-0.5449,-0.8155,-0.1951,-0.5449,-0.7682,-0.3827,-0.5133,-0.6533,-0.3827,-0.6533,-0.8155,-0.1951,-0.5449,-0.6533,-0.3827,-0.6533,-0.6935,-0.1951,-0.6935,-0.6935,-0.1951,-0.6935,-0.6533,-0.3827,-0.6533,-0.5133,-0.3827,-0.7682,-0.6935,-0.1951,-0.6935,-0.5133,-0.3827,-0.7682,-0.5449,-0.1951,-0.8155,-0.5449,-0.1951,-0.8155,-0.5133,-0.3827,-0.7682,-0.3536,-0.3827,-0.8536,-0.5449,-0.1951,-0.8155,-0.3536,-0.3827,-0.8536,-0.3753,-0.1951,-0.9061,-0.3753,-0.1951,-0.9061,-0.3536,-0.3827,-0.8536,-0.1802,-0.3827,-0.9061,-0.3753,-0.1951,-0.9061,-0.1802,-0.3827,-0.9061,-0.1913,-0.1951,-0.9619,-0.1913,-0.1951,-0.9619,-0.1802,-0.3827,-0.9061,0.0,-0.3827,-0.9239,-0.1913,-0.1951,-0.9619,0.0,-0.3827,-0.9239,0.0,-0.1951,-0.9808,0.0,-0.1951,-0.9808,0.0,-0.3827,-0.9239,0.1802,-0.3827,-0.9061,0.0,-0.1951,-0.9808,0.1802,-0.3827,-0.9061,0.1913,-0.1951,-0.9619,0.1913,-0.1951,-0.9619,0.1802,-0.3827,-0.9061,0.3536,-0.3827,-0.8536,0.1913,-0.1951,-0.9619,0.3536,-0.3827,-0.8536,0.3753,-0.1951,-0.9061,0.3753,-0.1951,-0.9061,0.3536,-0.3827,-0.8536,0.5133,-0.3827,-0.7682,0.3753,-0.1951,-0.9061,0.5133,-0.3827,-0.7682,0.5449,-0.1951,-0.8155,0.5449,-0.1951,-0.8155,0.5133,-0.3827,-0.7682,0.6533,-0.3827,-0.6533,0.5449,-0.1951,-0.8155,0.6533,-0.3827,-0.6533,0.6935,-0.1951,-0.6935,0.6935,-0.1951,-0.6935,0.6533,-0.3827,-0.6533,0.7682,-0.3827,-0.5133,0.6935,-0.1951,-0.6935,0.7682,-0.3827,-0.5133,0.8155,-0.1951,-0.5449,0.8155,-0.1951,-0.5449,0.7682,-0.3827,-0.5133,0.8536,-0.3827,-0.3536,0.8155,-0.1951,-0.5449,0.8536,-0.3827,-0.3536,0.9061,-0.1951,-0.3753,0.9061,-0.1951,-0.3753,0.8536,-0.3827,-0.3536,0.9061,-0.3827,-0.1802,0.9061,-0.1951,-0.3753,0.9061,-0.3827,-0.1802,0.9619,-0.1951,-0.1913,0.9619,-0.1951,-0.1913,0.9061,-0.3827,-0.1802,0.9239,-0.3827,0.0,0.9619,-0.1951,-0.1913,0.9239,-0.3827,0.0,0.9808,-0.1951,0.0,0.9808,-0.1951,0.0,0.9239,-0.3827,0.0,0.9061,-0.3827,0.1802,0.9808,-0.1951,0.0,0.9061,-0.3827,0.1802,0.9619,-0.1951,0.1913,0.9619,-0.1951,0.1913,0.9061,-0.3827,0.1802,0.8536,-0.3827,0.3536,0.9619,-0.1951,0.1913,0.8536,-0.3827,0.3536,0.9061,-0.1951,0.3753,0.9061,-0.1951,0.3753,0.8536,-0.3827,0.3536,0.7682,-0.3827,0.5133,0.9061,-0.1951,0.3753,0.7682,-0.3827,0.5133,0.8155,-0.1951,0.5449,0.8155,-0.1951,0.5449,0.7682,-0.3827,0.5133,0.6533,-0.3827,0.6533,0.8155,-0.1951,0.5449,0.6533,-0.3827,0.6533,0.6935,-0.1951,0.6935,0.6935,-0.1951,0.6935,0.6533,-0.3827,0.6533,0.5133,-0.3827,0.7682,0.6935,-0.1951,0.6935,0.5133,-0.3827,0.7682,0.5449,-0.1951,0.8155,0.5449,-0.1951,0.8155,0.5133,-0.3827,0.7682,0.3536,-0.3827,0.8536,0.5449,-0.1951,0.8155,0.3536,-0.3827,0.8536,0.3753,-0.1951,0.9061,0.3753,-0.1951,0.9061,0.3536,-0.3827,0.8536,0.1802,-0.3827,0.9061,0.3753,-0.1951,0.9061,0.1802,-0.3827,0.9061,0.1913,-0.1951,0.9619,0.1913,-0.1951,0.9619,0.1802,-0.3827,0.9061,0.0,-0.3827,0.9239,0.1913,-0.1951,0.9619,0.0,-0.3827,0.9239,0.0,-0.1951,0.9808,0.0,-0.3827,0.9239,0.0,-0.5556,0.8315,-0.1622,-0.5556,0.8155,0.0,-0.3827,0.9239,-0.1622,-0.5556,0.8155,-0.1802,-0.3827,0.9061,-0.1802,-0.3827,0.9061,-0.1622,-0.5556,0.8155,-0.3182,-0.5556,0.7682,-0.1802,-0.3827,0.9061,-0.3182,-0.5556,0.7682,-0.3536,-0.3827,0.8536,-0.3536,-0.3827,0.8536,-0.3182,-0.5556,0.7682,-0.4619,-0.5556,0.6913,-0.3536,-0.3827,0.8536,-0.4619,-0.5556,0.6913,-0.5133,-0.3827,0.7682,-0.5133,-0.3827,0.7682,-0.4619,-0.5556,0.6913,-0.5879,-0.5556,0.5879,-0.5133,-0.3827,0.7682,-0.5879,-0.5556,0.5879,-0.6533,-0.3827,0.6533,-0.6533,-0.3827,0.6533,-0.5879,-0.5556,0.5879,-0.6913,-0.5556,0.4619,-0.6533,-0.3827,0.6533,-0.6913,-0.5556,0.4619,-0.7682,-0.3827,0.5133,-0.7682,-0.3827,0.5133,-0.6913,-0.5556,0.4619,-0.7682,-0.5556,0.3182,-0.7682,-0.3827,0.5133,-0.7682,-0.5556,0.3182,-0.8536,-0.3827,0.3536,-0.8536,-0.3827,0.3536,-0.7682,-0.5556,0.3182,-0.8155,-0.5556,0.1622,-0.8536,-0.3827,0.3536,-0.8155,-0.5556,0.1622,-0.9061,-0.3827,0.1802,-0.9061,-0.3827,0.1802,-0.8155,-0.5556,0.1622,-0.8315,-0.5556,0.0,-0.9061,-0.3827,0.1802,-0.8315,-0.5556,0.0,-0.9239,-0.3827,0.0,-0.9239,-0.3827,0.0,-0.8315,-0.5556,0.0,-0.8155,-0.5556,-0.1622,-0.9239,-0.3827,0.0,-0.8155,-0.5556,-0.1622,-0.9061,-0.3827,-0.1802,-0.9061,-0.3827,-0.1802,-0.8155,-0.5556,-0.1622,-0.7682,-0.5556,-0.3182,-0.9061,-0.3827,-0.1802,-0.7682,-0.5556,-0.3182,-0.8536,-0.3827,-0.3536,-0.8536,-0.3827,-0.3536,-0.7682,-0.5556,-0.3182,-0.6913,-0.5556,-0.4619,-0.8536,-0.3827,-0.3536,-0.6913,-0.5556,-0.4619,-0.7682,-0.3827,-0.5133,-0.7682,-0.3827,-0.5133,-0.6913,-0.5556,-0.4619,-0.5879,-0.5556,-0.5879,-0.7682,-0.3827,-0.5133,-0.5879,-0.5556,-0.5879,-0.6533,-0.3827,-0.6533,-0.6533,-0.3827,-0.6533,-0.5879,-0.5556,-0.5879,-0.4619,-0.5556,-0.6913,-0.6533,-0.3827,-0.6533,-0.4619,-0.5556,-0.6913,-0.5133,-0.3827,-0.7682,-0.5133,-0.3827,-0.7682,-0.4619,-0.5556,-0.6913,-0.3182,-0.5556,-0.7682,-0.5133,-0.3827,-0.7682,-0.3182,-0.5556,-0.7682,-0.3536,-0.3827,-0.8536,-0.3536,-0.3827,-0.8536,-0.3182,-0.5556,-0.7682,-0.1622,-0.5556,-0.8155,-0.3536,-0.3827,-0.8536,-0.1622,-0.5556,-0.8155,-0.1802,-0.3827,-0.9061,-0.1802,-0.3827,-0.9061,-0.1622,-0.5556,-0.8155,0.0,-0.5556,-0.8315,-0.1802,-0.3827,-0.9061,0.0,-0.5556,-0.8315,0.0,-0.3827,-0.9239,0.0,-0.3827,-0.9239,0.0,-0.5556,-0.8315,0.1622,-0.5556,-0.8155,0.0,-0.3827,-0.9239,0.1622,-0.5556,-0.8155,0.1802,-0.3827,-0.9061,0.1802,-0.3827,-0.9061,0.1622,-0.5556,-0.8155,0.3182,-0.5556,-0.7682,0.1802,-0.3827,-0.9061,0.3182,-0.5556,-0.7682,0.3536,-0.3827,-0.8536,0.3536,-0.3827,-0.8536,0.3182,-0.5556,-0.7682,0.4619,-0.5556,-0.6913,0.3536,-0.3827,-0.8536,0.4619,-0.5556,-0.6913,0.5133,-0.3827,-0.7682,0.5133,-0.3827,-0.7682,0.4619,-0.5556,-0.6913,0.5879,-0.5556,-0.5879,0.5133,-0.3827,-0.7682,0.5879,-0.5556,-0.5879,0.6533,-0.3827,-0.6533,0.6533,-0.3827,-0.6533,0.5879,-0.5556,-0.5879,0.6913,-0.5556,-0.4619,0.6533,-0.3827,-0.6533,0.6913,-0.5556,-0.4619,0.7682,-0.3827,-0.5133,0.7682,-0.3827,-0.5133,0.6913,-0.5556,-0.4619,0.7682,-0.5556,-0.3182,0.7682,-0.3827,-0.5133,0.7682,-0.5556,-0.3182,0.8536,-0.3827,-0.3536,0.8536,-0.3827,-0.3536,0.7682,-0.5556,-0.3182,0.8155,-0.5556,-0.1622,0.8536,-0.3827,-0.3536,0.8155,-0.5556,-0.1622,0.9061,-0.3827,-0.1802,0.9061,-0.3827,-0.1802,0.8155,-0.5556,-0.1622,0.8315,-0.5556,0.0,0.9061,-0.3827,-0.1802,0.8315,-0.5556,0.0,0.9239,-0.3827,0.0,0.9239,-0.3827,0.0,0.8315,-0.5556,0.0,0.8155,-0.5556,0.1622,0.9239,-0.3827,0.0,0.8155,-0.5556,0.1622,0.9061,-0.3827,0.1802,0.9061,-0.3827,0.1802,0.8155,-0.5556,0.1622,0.7682,-0.5556,0.3182,0.9061,-0.3827,0.1802,0.7682,-0.5556,0.3182,0.8536,-0.3827,0.3536,0.8536,-0.3827,0.3536,0.7682,-0.5556,0.3182,0.6913,-0.5556,0.4619,0.8536,-0.3827,0.3536,0.6913,-0.5556,0.4619,0.7682,-0.3827,0.5133,0.7682,-0.3827,0.5133,0.6913,-0.5556,0.4619,0.5879,-0.5556,0.5879,0.7682,-0.3827,0.5133,0.5879,-0.5556,0.5879,0.6533,-0.3827,0.6533,0.6533,-0.3827,0.6533,0.5879,-0.5556,0.5879,0.4619,-0.5556,0.6913,0.6533,-0.3827,0.6533,0.4619,-0.5556,0.6913,0.5133,-0.3827,0.7682,0.5133,-0.3827,0.7682,0.4619,-0.5556,0.6913,0.3182,-0.5556,0.7682,0.5133,-0.3827,0.7682,0.3182,-0.5556,0.7682,0.3536,-0.3827,0.8536,0.3536,-0.3827,0.8536,0.3182,-0.5556,0.7682,0.1622,-0.5556,0.8155,0.3536,-0.3827,0.8536,0.1622,-0.5556,0.8155,0.1802,-0.3827,0.9061,0.1802,-0.3827,0.9061,0.1622,-0.5556,0.8155,0.0,-0.5556,0.8315,0.1802,-0.3827,0.9061,0.0,-0.5556,0.8315,0.0,-0.3827,0.9239,0.0,-0.5556,0.8315,0.0,-0.7071,0.7071,-0.1379,-0.7071,0.6935,0.0,-0.5556,0.8315,-0.1379,-0.7071,0.6935,-0.1622,-0.5556,0.8155,-0.1622,-0.5556,0.8155,-0.1379,-0.7071,0.6935,-0.2706,-0.7071,0.6533,-0.1622,-0.5556,0.8155,-0.2706,-0.7071,0.6533,-0.3182,-0.5556,0.7682,-0.3182,-0.5556,0.7682,-0.2706,-0.7071,0.6533,-0.3928,-0.7071,0.5879,-0.3182,-0.5556,0.7682,-0.3928,-0.7071,0.5879,-0.4619,-0.5556,0.6913,-0.4619,-0.5556,0.6913,-0.3928,-0.7071,0.5879,-0.5,-0.7071,0.5,-0.4619,-0.5556,0.6913,-0.5,-0.7071,0.5,-0.5879,-0.5556,0.5879,-0.5879,-0.5556,0.5879,-0.5,-0.7071,0.5,-0.5879,-0.7071,0.3928,-0.5879,-0.5556,0.5879,-0.5879,-0.7071,0.3928,-0.6913,-0.5556,0.4619,-0.6913,-0.5556,0.4619,-0.5879,-0.7071,0.3928,-0.6533,-0.7071,0.2706,-0.6913,-0.5556,0.4619,-0.6533,-0.7071,0.2706,-0.7682,-0.5556,0.3182,-0.7682,-0.5556,0.3182,-0.6533,-0.7071,0.2706,-0.6935,-0.7071,0.1379,-0.7682,-0.5556,0.3182,-0.6935,-0.7071,0.1379,-0.8155,-0.5556,0.1622,-0.8155,-0.5556,0.1622,-0.6935,-0.7071,0.1379,-0.7071,-0.7071,0.0,-0.8155,-0.5556,0.1622,-0.7071,-0.7071,0.0,-0.8315,-0.5556,0.0,-0.8315,-0.5556,0.0,-0.7071,-0.7071,0.0,-0.6935,-0.7071,-0.1379,-0.8315,-0.5556,0.0,-0.6935,-0.7071,-0.1379,-0.8155,-0.5556,-0.1622,-0.8155,-0.5556,-0.1622,-0.6935,-0.7071,-0.1379,-0.6533,-0.7071,-0.2706,-0.8155,-0.5556,-0.1622,-0.6533,-0.7071,-0.2706,-0.7682,-0.5556,-0.3182,-0.7682,-0.5556,-0.3182,-0.6533,-0.7071,-0.2706,-0.5879,-0.7071,-0.3928,-0.7682,-0.5556,-0.3182,-0.5879,-0.7071,-0.3928,-0.6913,-0.5556,-0.4619,-0.6913,-0.5556,-0.4619,-0.5879,-0.7071,-0.3928,-0.5,-0.7071,-0.5,-0.6913,-0.5556,-0.4619,-0.5,-0.7071,-0.5,-0.5879,-0.5556,-0.5879,-0.5879,-0.5556,-0.5879,-0.5,-0.7071,-0.5,-0.3928,-0.7071,-0.5879,-0.5879,-0.5556,-0.5879,-0.3928,-0.7071,-0.5879,-0.4619,-0.5556,-0.6913,-0.4619,-0.5556,-0.6913,-0.3928,-0.7071,-0.5879,-0.2706,-0.7071,-0.6533,-0.4619,-0.5556,-0.6913,-0.2706,-0.7071,-0.6533,-0.3182,-0.5556,-0.7682,-0.3182,-0.5556,-0.7682,-0.2706,-0.7071,-0.6533,-0.1379,-0.7071,-0.6935,-0.3182,-0.5556,-0.7682,-0.1379,-0.7071,-0.6935,-0.1622,-0.5556,-0.8155,-0.1622,-0.5556,-0.8155,-0.1379,-0.7071,-0.6935,0.0,-0.7071,-0.7071,-0.1622,-0.5556,-0.8155,0.0,-0.7071,-0.7071,0.0,-0.5556,-0.8315,0.0,-0.5556,-0.8315,0.0,-0.7071,-0.7071,0.138,-0.7071,-0.6935,0.0,-0.5556,-0.8315,0.138,-0.7071,-0.6935,0.1622,-0.5556,-0.8155,0.1622,-0.5556,-0.8155,0.138,-0.7071,-0.6935,0.2706,-0.7071,-0.6533,0.1622,-0.5556,-0.8155,0.2706,-0.7071,-0.6533,0.3182,-0.5556,-0.7682,0.3182,-0.5556,-0.7682,0.2706,-0.7071,-0.6533,0.3928,-0.7071,-0.5879,0.3182,-0.5556,-0.7682,0.3928,-0.7071,-0.5879,0.4619,-0.5556,-0.6913,0.4619,-0.5556,-0.6913,0.3928,-0.7071,-0.5879,0.5,-0.7071,-0.5,0.4619,-0.5556,-0.6913,0.5,-0.7071,-0.5,0.5879,-0.5556,-0.5879,0.5879,-0.5556,-0.5879,0.5,-0.7071,-0.5,0.5879,-0.7071,-0.3928,0.5879,-0.5556,-0.5879,0.5879,-0.7071,-0.3928,0.6913,-0.5556,-0.4619,0.6913,-0.5556,-0.4619,0.5879,-0.7071,-0.3928,0.6533,-0.7071,-0.2706,0.6913,-0.5556,-0.4619,0.6533,-0.7071,-0.2706,0.7682,-0.5556,-0.3182,0.7682,-0.5556,-0.3182,0.6533,-0.7071,-0.2706,0.6935,-0.7071,-0.1379,0.7682,-0.5556,-0.3182,0.6935,-0.7071,-0.1379,0.8155,-0.5556,-0.1622,0.8155,-0.5556,-0.1622,0.6935,-0.7071,-0.1379,0.7071,-0.7071,0.0,0.8155,-0.5556,-0.1622,0.7071,-0.7071,0.0,0.8315,-0.5556,0.0,0.8315,-0.5556,0.0,0.7071,-0.7071,0.0,0.6935,-0.7071,0.138,0.8315,-0.5556,0.0,0.6935,-0.7071,0.138,0.8155,-0.5556,0.1622,0.8155,-0.5556,0.1622,0.6935,-0.7071,0.138,0.6533,-0.7071,0.2706,0.8155,-0.5556,0.1622,0.6533,-0.7071,0.2706,0.7682,-0.5556,0.3182,0.7682,-0.5556,0.3182,0.6533,-0.7071,0.2706,0.5879,-0.7071,0.3928,0.7682,-0.5556,0.3182,0.5879,-0.7071,0.3928,0.6913,-0.5556,0.4619,0.6913,-0.5556,0.4619,0.5879,-0.7071,0.3928,0.5,-0.7071,0.5,0.6913,-0.5556,0.4619,0.5,-0.7071,0.5,0.5879,-0.5556,0.5879,0.5879,-0.5556,0.5879,0.5,-0.7071,0.5,0.3928,-0.7071,0.5879,0.5879,-0.5556,0.5879,0.3928,-0.7071,0.5879,0.4619,-0.5556,0.6913,0.4619,-0.5556,0.6913,0.3928,-0.7071,0.5879,0.2706,-0.7071,0.6533,0.4619,-0.5556,0.6913,0.2706,-0.7071,0.6533,0.3182,-0.5556,0.7682,0.3182,-0.5556,0.7682,0.2706,-0.7071,0.6533,0.1379,-0.7071,0.6935,0.3182,-0.5556,0.7682,0.1379,-0.7071,0.6935,0.1622,-0.5556,0.8155,0.1622,-0.5556,0.8155,0.1379,-0.7071,0.6935,0.0,-0.7071,0.7071,0.1622,-0.5556,0.8155,0.0,-0.7071,0.7071,0.0,-0.5556,0.8315,0.0,-0.7071,0.7071,0.0,-0.8315,0.5556,-0.1084,-0.8315,0.5449,0.0,-0.7071,0.7071,-0.1084,-0.8315,0.5449,-0.1379,-0.7071,0.6935,-0.1379,-0.7071,0.6935,-0.1084,-0.8315,0.5449,-0.2126,-0.8315,0.5133,-0.1379,-0.7071,0.6935,-0.2126,-0.8315,0.5133,-0.2706,-0.7071,0.6533,-0.2706,-0.7071,0.6533,-0.2126,-0.8315,0.5133,-0.3087,-0.8315,0.4619,-0.2706,-0.7071,0.6533,-0.3087,-0.8315,0.4619,-0.3928,-0.7071,0.5879,-0.3928,-0.7071,0.5879,-0.3087,-0.8315,0.4619,-0.3928,-0.8315,0.3928,-0.3928,-0.7071,0.5879,-0.3928,-0.8315,0.3928,-0.5,-0.7071,0.5,-0.5,-0.7071,0.5,-0.3928,-0.8315,0.3928,-0.4619,-0.8315,0.3087,-0.5,-0.7071,0.5,-0.4619,-0.8315,0.3087,-0.5879,-0.7071,0.3928,-0.5879,-0.7071,0.3928,-0.4619,-0.8315,0.3087,-0.5133,-0.8315,0.2126,-0.5879,-0.7071,0.3928,-0.5133,-0.8315,0.2126,-0.6533,-0.7071,0.2706,-0.6533,-0.7071,0.2706,-0.5133,-0.8315,0.2126,-0.5449,-0.8315,0.1084,-0.6533,-0.7071,0.2706,-0.5449,-0.8315,0.1084,-0.6935,-0.7071,0.1379,-0.6935,-0.7071,0.1379,-0.5449,-0.8315,0.1084,-0.5556,-0.8315,0.0,-0.6935,-0.7071,0.1379,-0.5556,-0.8315,0.0,-0.7071,-0.7071,0.0,-0.7071,-0.7071,0.0,-0.5556,-0.8315,0.0,-0.5449,-0.8315,-0.1084,-0.7071,-0.7071,0.0,-0.5449,-0.8315,-0.1084,-0.6935,-0.7071,-0.1379,-0.6935,-0.7071,-0.1379,-0.5449,-0.8315,-0.1084,-0.5133,-0.8315,-0.2126,-0.6935,-0.7071,-0.1379,-0.5133,-0.8315,-0.2126,-0.6533,-0.7071,-0.2706,-0.6533,-0.7071,-0.2706,-0.5133,-0.8315,-0.2126,-0.4619,-0.8315,-0.3087,-0.6533,-0.7071,-0.2706,-0.4619,-0.8315,-0.3087,-0.5879,-0.7071,-0.3928,-0.5879,-0.7071,-0.3928,-0.4619,-0.8315,-0.3087,-0.3928,-0.8315,-0.3928,-0.5879,-0.7071,-0.3928,-0.3928,-0.8315,-0.3928,-0.5,-0.7071,-0.5,-0.5,-0.7071,-0.5,-0.3928,-0.8315,-0.3928,-0.3087,-0.8315,-0.4619,-0.5,-0.7071,-0.5,-0.3087,-0.8315,-0.4619,-0.3928,-0.7071,-0.5879,-0.3928,-0.7071,-0.5879,-0.3087,-0.8315,-0.4619,-0.2126,-0.8315,-0.5133,-0.3928,-0.7071,-0.5879,-0.2126,-0.8315,-0.5133,-0.2706,-0.7071,-0.6533,-0.2706,-0.7071,-0.6533,-0.2126,-0.8315,-0.5133,-0.1084,-0.8315,-0.5449,-0.2706,-0.7071,-0.6533,-0.1084,-0.8315,-0.5449,-0.1379,-0.7071,-0.6935,-0.1379,-0.7071,-0.6935,-0.1084,-0.8315,-0.5449,0.0,-0.8315,-0.5556,-0.1379,-0.7071,-0.6935,0.0,-0.8315,-0.5556,0.0,-0.7071,-0.7071,0.0,-0.7071,-0.7071,0.0,-0.8315,-0.5556,0.1084,-0.8315,-0.5449,0.0,-0.7071,-0.7071,0.1084,-0.8315,-0.5449,0.138,-0.7071,-0.6935,0.138,-0.7071,-0.6935,0.1084,-0.8315,-0.5449,0.2126,-0.8315,-0.5133,0.138,-0.7071,-0.6935,0.2126,-0.8315,-0.5133,0.2706,-0.7071,-0.6533,0.2706,-0.7071,-0.6533,0.2126,-0.8315,-0.5133,0.3087,-0.8315,-0.4619,0.2706,-0.7071,-0.6533,0.3087,-0.8315,-0.4619,0.3928,-0.7071,-0.5879,0.3928,-0.7071,-0.5879,0.3087,-0.8315,-0.4619,0.3928,-0.8315,-0.3928,0.3928,-0.7071,-0.5879,0.3928,-0.8315,-0.3928,0.5,-0.7071,-0.5,0.5,-0.7071,-0.5,0.3928,-0.8315,-0.3928,0.4619,-0.8315,-0.3087,0.5,-0.7071,-0.5,0.4619,-0.8315,-0.3087,0.5879,-0.7071,-0.3928,0.5879,-0.7071,-0.3928,0.4619,-0.8315,-0.3087,0.5133,-0.8315,-0.2126,0.5879,-0.7071,-0.3928,0.5133,-0.8315,-0.2126,0.6533,-0.7071,-0.2706,0.6533,-0.7071,-0.2706,0.5133,-0.8315,-0.2126,0.5449,-0.8315,-0.1084,0.6533,-0.7071,-0.2706,0.5449,-0.8315,-0.1084,0.6935,-0.7071,-0.1379,0.6935,-0.7071,-0.1379,0.5449,-0.8315,-0.1084,0.5556,-0.8315,0.0,0.6935,-0.7071,-0.1379,0.5556,-0.8315,0.0,0.7071,-0.7071,0.0,0.7071,-0.7071,0.0,0.5556,-0.8315,0.0,0.5449,-0.8315,0.1084,0.7071,-0.7071,0.0,0.5449,-0.8315,0.1084,0.6935,-0.7071,0.138,0.6935,-0.7071,0.138,0.5449,-0.8315,0.1084,0.5133,-0.8315,0.2126,0.6935,-0.7071,0.138,0.5133,-0.8315,0.2126,0.6533,-0.7071,0.2706,0.6533,-0.7071,0.2706,0.5133,-0.8315,0.2126,0.4619,-0.8315,0.3087,0.6533,-0.7071,0.2706,0.4619,-0.8315,0.3087,0.5879,-0.7071,0.3928,0.5879,-0.7071,0.3928,0.4619,-0.8315,0.3087,0.3928,-0.8315,0.3928,0.5879,-0.7071,0.3928,0.3928,-0.8315,0.3928,0.5,-0.7071,0.5,0.5,-0.7071,0.5,0.3928,-0.8315,0.3928,0.3087,-0.8315,0.4619,0.5,-0.7071,0.5,0.3087,-0.8315,0.4619,0.3928,-0.7071,0.5879,0.3928,-0.7071,0.5879,0.3087,-0.8315,0.4619,0.2126,-0.8315,0.5133,0.3928,-0.7071,0.5879,0.2126,-0.8315,0.5133,0.2706,-0.7071,0.6533,0.2706,-0.7071,0.6533,0.2126,-0.8315,0.5133,0.1084,-0.8315,0.5449,0.2706,-0.7071,0.6533,0.1084,-0.8315,0.5449,0.1379,-0.7071,0.6935,0.1379,-0.7071,0.6935,0.1084,-0.8315,0.5449,0.0,-0.8315,0.5556,0.1379,-0.7071,0.6935,0.0,-0.8315,0.5556,0.0,-0.7071,0.7071,0.0,-0.8315,0.5556,0.0,-0.9239,0.3827,-0.0747,-0.9239,0.3753,0.0,-0.8315,0.5556,-0.0747,-0.9239,0.3753,-0.1084,-0.8315,0.5449,-0.1084,-0.8315,0.5449,-0.0747,-0.9239,0.3753,-0.1464,-0.9239,0.3536,-0.1084,-0.8315,0.5449,-0.1464,-0.9239,0.3536,-0.2126,-0.8315,0.5133,-0.2126,-0.8315,0.5133,-0.1464,-0.9239,0.3536,-0.2126,-0.9239,0.3182,-0.2126,-0.8315,0.5133,-0.2126,-0.9239,0.3182,-0.3087,-0.8315,0.4619,-0.3087,-0.8315,0.4619,-0.2126,-0.9239,0.3182,-0.2706,-0.9239,0.2706,-0.3087,-0.8315,0.4619,-0.2706,-0.9239,0.2706,-0.3928,-0.8315,0.3928,-0.3928,-0.8315,0.3928,-0.2706,-0.9239,0.2706,-0.3182,-0.9239,0.2126,-0.3928,-0.8315,0.3928,-0.3182,-0.9239,0.2126,-0.4619,-0.8315,0.3087,-0.4619,-0.8315,0.3087,-0.3182,-0.9239,0.2126,-0.3536,-0.9239,0.1464,-0.4619,-0.8315,0.3087,-0.3536,-0.9239,0.1464,-0.5133,-0.8315,0.2126,-0.5133,-0.8315,0.2126,-0.3536,-0.9239,0.1464,-0.3753,-0.9239,0.0747,-0.5133,-0.8315,0.2126,-0.3753,-0.9239,0.0747,-0.5449,-0.8315,0.1084,-0.5449,-0.8315,0.1084,-0.3753,-0.9239,0.0747,-0.3827,-0.9239,0.0,-0.5449,-0.8315,0.1084,-0.3827,-0.9239,0.0,-0.5556,-0.8315,0.0,-0.5556,-0.8315,0.0,-0.3827,-0.9239,0.0,-0.3753,-0.9239,-0.0747,-0.5556,-0.8315,0.0,-0.3753,-0.9239,-0.0747,-0.5449,-0.8315,-0.1084,-0.5449,-0.8315,-0.1084,-0.3753,-0.9239,-0.0747,-0.3536,-0.9239,-0.1464,-0.5449,-0.8315,-0.1084,-0.3536,-0.9239,-0.1464,-0.5133,-0.8315,-0.2126,-0.5133,-0.8315,-0.2126,-0.3536,-0.9239,-0.1464,-0.3182,-0.9239,-0.2126,-0.5133,-0.8315,-0.2126,-0.3182,-0.9239,-0.2126,-0.4619,-0.8315,-0.3087,-0.4619,-0.8315,-0.3087,-0.3182,-0.9239,-0.2126,-0.2706,-0.9239,-0.2706,-0.4619,-0.8315,-0.3087,-0.2706,-0.9239,-0.2706,-0.3928,-0.8315,-0.3928,-0.3928,-0.8315,-0.3928,-0.2706,-0.9239,-0.2706,-0.2126,-0.9239,-0.3182,-0.3928,-0.8315,-0.3928,-0.2126,-0.9239,-0.3182,-0.3087,-0.8315,-0.4619,-0.3087,-0.8315,-0.4619,-0.2126,-0.9239,-0.3182,-0.1464,-0.9239,-0.3536,-0.3087,-0.8315,-0.4619,-0.1464,-0.9239,-0.3536,-0.2126,-0.8315,-0.5133,-0.2126,-0.8315,-0.5133,-0.1464,-0.9239,-0.3536,-0.0747,-0.9239,-0.3753,-0.2126,-0.8315,-0.5133,-0.0747,-0.9239,-0.3753,-0.1084,-0.8315,-0.5449,-0.1084,-0.8315,-0.5449,-0.0747,-0.9239,-0.3753,0.0,-0.9239,-0.3827,-0.1084,-0.8315,-0.5449,0.0,-0.9239,-0.3827,0.0,-0.8315,-0.5556,0.0,-0.8315,-0.5556,0.0,-0.9239,-0.3827,0.0747,-0.9239,-0.3753,0.0,-0.8315,-0.5556,0.0747,-0.9239,-0.3753,0.1084,-0.8315,-0.5449,0.1084,-0.8315,-0.5449,0.0747,-0.9239,-0.3753,0.1464,-0.9239,-0.3536,0.1084,-0.8315,-0.5449,0.1464,-0.9239,-0.3536,0.2126,-0.8315,-0.5133,0.2126,-0.8315,-0.5133,0.1464,-0.9239,-0.3536,0.2126,-0.9239,-0.3182,0.2126,-0.8315,-0.5133,0.2126,-0.9239,-0.3182,0.3087,-0.8315,-0.4619,0.3087,-0.8315,-0.4619,0.2126,-0.9239,-0.3182,0.2706,-0.9239,-0.2706,0.3087,-0.8315,-0.4619,0.2706,-0.9239,-0.2706,0.3928,-0.8315,-0.3928,0.3928,-0.8315,-0.3928,0.2706,-0.9239,-0.2706,0.3182,-0.9239,-0.2126,0.3928,-0.8315,-0.3928,0.3182,-0.9239,-0.2126,0.4619,-0.8315,-0.3087,0.4619,-0.8315,-0.3087,0.3182,-0.9239,-0.2126,0.3536,-0.9239,-0.1464,0.4619,-0.8315,-0.3087,0.3536,-0.9239,-0.1464,0.5133,-0.8315,-0.2126,0.5133,-0.8315,-0.2126,0.3536,-0.9239,-0.1464,0.3753,-0.9239,-0.0747,0.5133,-0.8315,-0.2126,0.3753,-0.9239,-0.0747,0.5449,-0.8315,-0.1084,0.5449,-0.8315,-0.1084,0.3753,-0.9239,-0.0747,0.3827,-0.9239,0.0,0.5449,-0.8315,-0.1084,0.3827,-0.9239,0.0,0.5556,-0.8315,0.0,0.5556,-0.8315,0.0,0.3827,-0.9239,0.0,0.3753,-0.9239,0.0747,0.5556,-0.8315,0.0,0.3753,-0.9239,0.0747,0.5449,-0.8315,0.1084,0.5449,-0.8315,0.1084,0.3753,-0.9239,0.0747,0.3536,-0.9239,0.1464,0.5449,-0.8315,0.1084,0.3536,-0.9239,0.1464,0.5133,-0.8315,0.2126,0.5133,-0.8315,0.2126,0.3536,-0.9239,0.1464,0.3182,-0.9239,0.2126,0.5133,-0.8315,0.2126,0.3182,-0.9239,0.2126,0.4619,-0.8315,0.3087,0.4619,-0.8315,0.3087,0.3182,-0.9239,0.2126,0.2706,-0.9239,0.2706,0.4619,-0.8315,0.3087,0.2706,-0.9239,0.2706,0.3928,-0.8315,0.3928,0.3928,-0.8315,0.3928,0.2706,-0.9239,0.2706,0.2126,-0.9239,0.3182,0.3928,-0.8315,0.3928,0.2126,-0.9239,0.3182,0.3087,-0.8315,0.4619,0.3087,-0.8315,0.4619,0.2126,-0.9239,0.3182,0.1464,-0.9239,0.3536,0.3087,-0.8315,0.4619,0.1464,-0.9239,0.3536,0.2126,-0.8315,0.5133,0.2126,-0.8315,0.5133,0.1464,-0.9239,0.3536,0.0747,-0.9239,0.3753,0.2126,-0.8315,0.5133,0.0747,-0.9239,0.3753,0.1084,-0.8315,0.5449,0.1084,-0.8315,0.5449,0.0747,-0.9239,0.3753,0.0,-0.9239,0.3827,0.1084,-0.8315,0.5449,0.0,-0.9239,0.3827,0.0,-0.8315,0.5556,0.0,-0.9239,0.3827,0.0,-0.9808,0.1951,-0.0381,-0.9808,0.1913,0.0,-0.9239,0.3827,-0.0381,-0.9808,0.1913,-0.0747,-0.9239,0.3753,-0.0747,-0.9239,0.3753,-0.0381,-0.9808,0.1913,-0.0747,-0.9808,0.1802,-0.0747,-0.9239,0.3753,-0.0747,-0.9808,0.1802,-0.1464,-0.9239,0.3536,-0.1464,-0.9239,0.3536,-0.0747,-0.9808,0.1802,-0.1084,-0.9808,0.1622,-0.1464,-0.9239,0.3536,-0.1084,-0.9808,0.1622,-0.2126,-0.9239,0.3182,-0.2126,-0.9239,0.3182,-0.1084,-0.9808,0.1622,-0.1379,-0.9808,0.1379,-0.2126,-0.9239,0.3182,-0.1379,-0.9808,0.1379,-0.2706,-0.9239,0.2706,-0.2706,-0.9239,0.2706,-0.1379,-0.9808,0.1379,-0.1622,-0.9808,0.1084,-0.2706,-0.9239,0.2706,-0.1622,-0.9808,0.1084,-0.3182,-0.9239,0.2126,-0.3182,-0.9239,0.2126,-0.1622,-0.9808,0.1084,-0.1802,-0.9808,0.0747,-0.3182,-0.9239,0.2126,-0.1802,-0.9808,0.0747,-0.3536,-0.9239,0.1464,-0.3536,-0.9239,0.1464,-0.1802,-0.9808,0.0747,-0.1913,-0.9808,0.0381,-0.3536,-0.9239,0.1464,-0.1913,-0.9808,0.0381,-0.3753,-0.9239,0.0747,-0.3753,-0.9239,0.0747,-0.1913,-0.9808,0.0381,-0.1951,-0.9808,0.0,-0.3753,-0.9239,0.0747,-0.1951,-0.9808,0.0,-0.3827,-0.9239,0.0,-0.3827,-0.9239,0.0,-0.1951,-0.9808,0.0,-0.1913,-0.9808,-0.0381,-0.3827,-0.9239,0.0,-0.1913,-0.9808,-0.0381,-0.3753,-0.9239,-0.0747,-0.3753,-0.9239,-0.0747,-0.1913,-0.9808,-0.0381,-0.1802,-0.9808,-0.0747,-0.3753,-0.9239,-0.0747,-0.1802,-0.9808,-0.0747,-0.3536,-0.9239,-0.1464,-0.3536,-0.9239,-0.1464,-0.1802,-0.9808,-0.0747,-0.1622,-0.9808,-0.1084,-0.3536,-0.9239,-0.1464,-0.1622,-0.9808,-0.1084,-0.3182,-0.9239,-0.2126,-0.3182,-0.9239,-0.2126,-0.1622,-0.9808,-0.1084,-0.1379,-0.9808,-0.1379,-0.3182,-0.9239,-0.2126,-0.1379,-0.9808,-0.1379,-0.2706,-0.9239,-0.2706,-0.2706,-0.9239,-0.2706,-0.1379,-0.9808,-0.1379,-0.1084,-0.9808,-0.1622,-0.2706,-0.9239,-0.2706,-0.1084,-0.9808,-0.1622,-0.2126,-0.9239,-0.3182,-0.2126,-0.9239,-0.3182,-0.1084,-0.9808,-0.1622,-0.0747,-0.9808,-0.1802,-0.2126,-0.9239,-0.3182,-0.0747,-0.9808,-0.1802,-0.1464,-0.9239,-0.3536,-0.1464,-0.9239,-0.3536,-0.0747,-0.9808,-0.1802,-0.0381,-0.9808,-0.1913,-0.1464,-0.9239,-0.3536,-0.0381,-0.9808,-0.1913,-0.0747,-0.9239,-0.3753,-0.0747,-0.9239,-0.3753,-0.0381,-0.9808,-0.1913,0.0,-0.9808,-0.1951,-0.0747,-0.9239,-0.3753,0.0,-0.9808,-0.1951,0.0,-0.9239,-0.3827,0.0,-0.9239,-0.3827,0.0,-0.9808,-0.1951,0.0381,-0.9808,-0.1913,0.0,-0.9239,-0.3827,0.0381,-0.9808,-0.1913,0.0747,-0.9239,-0.3753,0.0747,-0.9239,-0.3753,0.0381,-0.9808,-0.1913,0.0747,-0.9808,-0.1802,0.0747,-0.9239,-0.3753,0.0747,-0.9808,-0.1802,0.1464,-0.9239,-0.3536,0.1464,-0.9239,-0.3536,0.0747,-0.9808,-0.1802,0.1084,-0.9808,-0.1622,0.1464,-0.9239,-0.3536,0.1084,-0.9808,-0.1622,0.2126,-0.9239,-0.3182,0.2126,-0.9239,-0.3182,0.1084,-0.9808,-0.1622,0.1379,-0.9808,-0.1379,0.2126,-0.9239,-0.3182,0.1379,-0.9808,-0.1379,0.2706,-0.9239,-0.2706,0.2706,-0.9239,-0.2706,0.1379,-0.9808,-0.1379,0.1622,-0.9808,-0.1084,0.2706,-0.9239,-0.2706,0.1622,-0.9808,-0.1084,0.3182,-0.9239,-0.2126,0.3182,-0.9239,-0.2126,0.1622,-0.9808,-0.1084,0.1802,-0.9808,-0.0747,0.3182,-0.9239,-0.2126,0.1802,-0.9808,-0.0747,0.3536,-0.9239,-0.1464,0.3536,-0.9239,-0.1464,0.1802,-0.9808,-0.0747,0.1913,-0.9808,-0.0381,0.3536,-0.9239,-0.1464,0.1913,-0.9808,-0.0381,0.3753,-0.9239,-0.0747,0.3753,-0.9239,-0.0747,0.1913,-0.9808,-0.0381,0.1951,-0.9808,0.0,0.3753,-0.9239,-0.0747,0.1951,-0.9808,0.0,0.3827,-0.9239,0.0,0.3827,-0.9239,0.0,0.1951,-0.9808,0.0,0.1913,-0.9808,0.0381,0.3827,-0.9239,0.0,0.1913,-0.9808,0.0381,0.3753,-0.9239,0.0747,0.3753,-0.9239,0.0747,0.1913,-0.9808,0.0381,0.1802,-0.9808,0.0747,0.3753,-0.9239,0.0747,0.1802,-0.9808,0.0747,0.3536,-0.9239,0.1464,0.3536,-0.9239,0.1464,0.1802,-0.9808,0.0747,0.1622,-0.9808,0.1084,0.3536,-0.9239,0.1464,0.1622,-0.9808,0.1084,0.3182,-0.9239,0.2126,0.3182,-0.9239,0.2126,0.1622,-0.9808,0.1084,0.1379,-0.9808,0.1379,0.3182,-0.9239,0.2126,0.1379,-0.9808,0.1379,0.2706,-0.9239,0.2706,0.2706,-0.9239,0.2706,0.1379,-0.9808,0.1379,0.1084,-0.9808,0.1622,0.2706,-0.9239,0.2706,0.1084,-0.9808,0.1622,0.2126,-0.9239,0.3182,0.2126,-0.9239,0.3182,0.1084,-0.9808,0.1622,0.0747,-0.9808,0.1802,0.2126,-0.9239,0.3182,0.0747,-0.9808,0.1802,0.1464,-0.9239,0.3536,0.1464,-0.9239,0.3536,0.0747,-0.9808,0.1802,0.0381,-0.9808,0.1913,0.1464,-0.9239,0.3536,0.0381,-0.9808,0.1913,0.0747,-0.9239,0.3753,0.0747,-0.9239,0.3753,0.0381,-0.9808,0.1913,0.0,-0.9808,0.1951,0.0747,-0.9239,0.3753,0.0,-0.9808,0.1951,0.0,-0.9239,0.3827,0.0,-1.0,0.0,-0.0381,-0.9808,0.1913,0.0,-0.9808,0.1951,0.0,-1.0,0.0,-0.0747,-0.9808,0.1802,-0.0381,-0.9808,0.1913,0.0,-1.0,0.0,-0.1084,-0.9808,0.1622,-0.0747,-0.9808,0.1802,0.0,-1.0,0.0,-0.1379,-0.9808,0.1379,-0.1084,-0.9808,0.1622,0.0,-1.0,0.0,-0.1622,-0.9808,0.1084,-0.1379,-0.9808,0.1379,0.0,-1.0,0.0,-0.1802,-0.9808,0.0747,-0.1622,-0.9808,0.1084,0.0,-1.0,0.0,-0.1913,-0.9808,0.0381,-0.1802,-0.9808,0.0747,0.0,-1.0,0.0,-0.1951,-0.9808,0.0,-0.1913,-0.9808,0.0381,0.0,-1.0,0.0,-0.1913,-0.9808,-0.0381,-0.1951,-0.9808,0.0,0.0,-1.0,0.0,-0.1802,-0.9808,-0.0747,-0.1913,-0.9808,-0.0381,0.0,-1.0,0.0,-0.1622,-0.9808,-0.1084,-0.1802,-0.9808,-0.0747,0.0,-1.0,0.0,-0.1379,-0.9808,-0.1379,-0.1622,-0.9808,-0.1084,0.0,-1.0,0.0,-0.1084,-0.9808,-0.1622,-0.1379,-0.9808,-0.1379,0.0,-1.0,0.0,-0.0747,-0.9808,-0.1802,-0.1084,-0.9808,-0.1622,0.0,-1.0,0.0,-0.0381,-0.9808,-0.1913,-0.0747,-0.9808,-0.1802,0.0,-1.0,0.0,0.0,-0.9808,-0.1951,-0.0381,-0.9808,-0.1913,0.0,-1.0,0.0,0.0381,-0.9808,-0.1913,0.0,-0.9808,-0.1951,0.0,-1.0,0.0,0.0747,-0.9808,-0.1802,0.0381,-0.9808,-0.1913,0.0,-1.0,0.0,0.1084,-0.9808,-0.1622,0.0747,-0.9808,-0.1802,0.0,-1.0,0.0,0.1379,-0.9808,-0.1379,0.1084,-0.9808,-0.1622,0.0,-1.0,0.0,0.1622,-0.9808,-0.1084,0.1379,-0.9808,-0.1379,0.0,-1.0,0.0,0.1802,-0.9808,-0.0747,0.1622,-0.9808,-0.1084,0.0,-1.0,0.0,0.1913,-0.9808,-0.0381,0.1802,-0.9808,-0.0747,0.0,-1.0,0.0,0.1951,-0.9808,0.0,0.1913,-0.9808,-0.0381,0.0,-1.0,0.0,0.1913,-0.9808,0.0381,0.1951,-0.9808,0.0,0.0,-1.0,0.0,0.1802,-0.9808,0.0747,0.1913,-0.9808,0.0381,0.0,-1.0,0.0,0.1622,-0.9808,0.1084,0.1802,-0.9808,0.0747,0.0,-1.0,0.0,0.1379,-0.9808,0.1379,0.1622,-0.9808,0.1084,0.0,-1.0,0.0,0.1084,-0.9808,0.1622,0.1379,-0.9808,0.1379,0.0,-1.0,0.0,0.0747,-0.9808,0.1802,0.1084,-0.9808,0.1622,0.0,-1.0,0.0,0.0381,-0.9808,0.1913,0.0747,-0.9808,0.1802,0.0,-1.0,0.0,0.0,-0.9808,0.1951,0.0381,-0.9808,0.1913],"normals":[0.0,1.0,0.0,0.0,0.9796,0.201,-0.0392,0.9796,0.1971,0.0,1.0,0.0,-0.0392,0.9796,0.1971,-0.0769,0.9796,0.1857,0.0,1.0,0.0,-0.0769,0.9796,0.1857,-0.1117,0.9796,0.1671,0.0,1.0,0.0,-0.1117,0.9796,0.1671,-0.1421,0.9796,0.1421,0.0,1.0,0.0,-0.1421,0.9796,0.1421,-0.1671,0.9796,0.1117,0.0,1.0,0.0,-0.1671,0.9796,0.1117,-0.1857,0.9796,0.0769,0.0,1.0,0.0,-0.1857,0.9796,0.0769,-0.1971,0.9796,0.0392,0.0,1.0,0.0,-0.1971,0.9796,0.0392,-0.201,0.9796,0.0,0.0,1.0,0.0,-0.201,0.9796,0.0,-0.1971,0.9796,-0.0392,0.0,1.0,0.0,-0.1971,0.9796,-0.0392,-0.1857,0.9796,-0.0769,0.0,1.0,0.0,-0.1857,0.9796,-0.0769,-0.1671,0.9796,-0.1117,0.0,1.0,0.0,-0.1671,0.9796,-0.1117,-0.1421,0.9796,-0.1421,0.0,1.0,0.0,-0.1421,0.9796,-0.1421,-0.1117,0.9796,-0.1671,0.0,1.0,0.0,-0.1117,0.9796,-0.1671,-0.0769,0.9796,-0.1857,0.0,1.0,0.0,-0.0769,0.9796,-0.1857,-0.0392,0.9796,-0.1971,0.0,1.0,0.0,-0.0392,0.9796,-0.1971,0.0,0.9796,-0.201,0.0,1.0,0.0,0.0,0.9796,-0.201,0.0392,0.9796,-0.1971,0.0,1.0,0.0,0.0392,0.9796,-0.1971,0.0769,0.9796,-0.1857,0.0,1.0,0.0,0.0769,0.9796,-0.1857,0.1117,0.9796,-0.1671,0.0,1.0,0.0,0.1117,0.9796,-0.1671,0.1421,0.9796,-0.1421,0.0,1.0,0.0,0.1421,0.9796,-0.1421,0.1671,0.9796,-0.1117,0.0,1.0,0.0,0.1671,0.9796,-0.1117,0.1857,0.9796,-0.0769,0.0,1.0,0.0,0.1857,0.9796,-0.0769,0.1971,0.9796,-0.0392,0.0,1.0,0.0,0.1971,0.9796,-0.0392,0.201,0.9796,0.0,0.0,1.0,0.0,0.201,0.9796,0.0,0.1971,0.9796,0.0392,0.0,1.0,0.0,0.1971,0.9796,0.0392,0.1857,0.9796,0.0769,0.0,1.0,0.0,0.1857,0.9796,0.0769,0.1671,0.9796,0.1117,0.0,1.0,0.0,0.1671,0.9796,0.1117,0.1421,0.9796,0.1421,0.0,1.0,0.0,0.1421,0.9796,0.1421,0.1117,0.9796,0.1671,0.0,1.0,0.0,0.1117,0.9796,0.1671,0.0769,0.9796,0.1857,0.0,1.0,0.0,0.0769,0.9796,0.1857,0.0392,0.9796,0.1971,0.0,1.0,0.0,0.0392,0.9796,0.1971,0.0,0.9796,0.201,0.0,0.9796,0.201,0.0,0.9217,0.3879,-0.0757,0.9217,0.3804,0.0,0.9796,0.201,-0.0757,0.9217,0.3804,-0.0392,0.9796,0.1971,-0.0392,0.9796,0.1971,-0.0757,0.9217,0.3804,-0.1484,0.9217,0.3584,-0.0392,0.9796,0.1971,-0.1484,0.9217,0.3584,-0.0769,0.9796,0.1857,-0.0769,0.9796,0.1857,-0.1484,0.9217,0.3584,-0.2155,0.9217,0.3225,-0.0769,0.9796,0.1857,-0.2155,0.9217,0.3225,-0.1117,0.9796,0.1671,-0.1117,0.9796,0.1671,-0.2155,0.9217,0.3225,-0.2743,0.9217,0.2743,-0.1117,0.9796,0.1671,-0.2743,0.9217,0.2743,-0.1421,0.9796,0.1421,-0.1421,0.9796,0.1421,-0.2743,0.9217,0.2743,-0.3225,0.9217,0.2155,-0.1421,0.9796,0.1421,-0.3225,0.9217,0.2155,-0.1671,0.9796,0.1117,-0.1671,0.9796,0.1117,-0.3225,0.9217,0.2155,-0.3584,0.9217,0.1484,-0.1671,0.9796,0.1117,-0.3584,0.9217,0.1484,-0.1857,0.9796,0.0769,-0.1857,0.9796,0.0769,-0.3584,0.9217,0.1484,-0.3804,0.9217,0.0757,-0.1857,0.9796,0.0769,-0.3804,0.9217,0.0757,-0.1971,0.9796,0.0392,-0.1971,0.9796,0.0392,-0.3804,0.9217,0.0757,-0.3879,0.9217,0.0,-0.1971,0.9796,0.0392,-0.3879,0.9217,0.0,-0.201,0.9796,0.0,-0.201,0.9796,0.0,-0.3879,0.9217,0.0,-0.3804,0.9217,-0.0757,-0.201,0.9796,0.0,-0.3804,0.9217,-0.0757,-0.1971,0.9796,-0.0392,-0.1971,0.9796,-0.0392,-0.3804,0.9217,-0.0757,-0.3584,0.9217,-0.1484,-0.1971,0.9796,-0.0392,-0.3584,0.9217,-0.1484,-0.1857,0.9796,-0.0769,-0.1857,0.9796,-0.0769,-0.3584,0.9217,-0.1484,-0.3225,0.9217,-0.2155,-0.1857,0.9796,-0.0769,-0.3225,0.9217,-0.2155,-0.1671,0.9796,-0.1117,-0.1671,0.9796,-0.1117,-0.3225,0.9217,-0.2155,-0.2743,0.9217,-0.2743,-0.1671,0.9796,-0.1117,-0.2743,0.9217,-0.2743,-0.1421,0.9796,-0.1421,-0.1421,0.9796,-0.1421,-0.2743,0.9217,-0.2743,-0.2155,0.9217,-0.3225,-0.1421,0.9796,-0.1421,-0.2155,0.9217,-0.3225,-0.1117,0.9796,-0.1671,-0.1117,0.9796,-0.1671,-0.2155,0.9217,-0.3225,-0.1484,0.9217,-0.3584,-0.1117,0.9796,-0.1671,-0.1484,0.9217,-0.3584,-0.0769,0.9796,-0.1857,-0.0769,0.9796,-0.1857,-0.1484,0.9217,-0.3584,-0.0757,0.9217,-0.3804,-0.0769,0.9796,-0.1857,-0.0757,0.9217,-0.3804,-0.0392,0.9796,-0.1971,-0.0392,0.9796,-0.1971,-0.0757,0.9217,-0.3804,0.0,0.9217,-0.3879,-0.0392,0.9796,-0.1971,0.0,0.9217,-0.3879,0.0,0.9796,-0.201,0.0,0.9796,-0.201,0.0,0.9217,-0.3879,0.0757,0.9217,-0.3804,0.0,0.9796,-0.201,0.0757,0.9217,-0.3804,0.0392,0.9796,-0.1971,0.0392,0.9796,-0.1971,0.0757,0.9217,-0.3804,0.1484,0.9217,-0.3584,0.0392,0.9796,-0.1971,0.1484,0.9217,-0.3584,0.0769,0.9796,-0.1857,0.0769,0.9796,-0.1857,0.1484,0.9217,-0.3584,0.2155,0.9217,-0.3225,0.0769,0.9796,-0.1857,0.2155,0.9217,-0.3225,0.1117,0.9796,-0.1671,0.1117,0.9796,-0.1671,0.2155,0.9217,-0.3225,0.2743,0.9217,-0.2743,0.1117,0.9796,-0.1671,0.2743,0.9217,-0.2743,0.1421,0.9796,-0.1421,0.1421,0.9796,-0.1421,0.2743,0.9217,-0.2743,0.3225,0.9217,-0.2155,0.1421,0.9796,-0.1421,0.3225,0.9217,-0.2155,0.1671,0.9796,-0.1117,0.1671,0.9796,-0.1117,0.3225,0.9217,-0.2155,0.3584,0.9217,-0.1484,0.1671,0.9796,-0.1117,0.3584,0.9217,-0.1484,0.1857,0.9796,-0.0769,0.1857,0.9796,-0.0769,0.3584,0.9217,-0.1484,0.3804,0.9217,-0.0757,0.1857,0.9796,-0.0769,0.3804,0.9217,-0.0757,0.1971,0.9796,-0.0392,0.1971,0.9796,-0.0392,0.3804,0.9217,-0.0757,0.3879,0.9217,0.0,0.1971,0.9796,-0.0392,0.3879,0.9217,0.0,0.201,0.9796,0.0,0.201,0.9796,0.0,0.3879,0.9217,0.0,0.3804,0.9217,0.0757,0.201,0.9796,0.0,0.3804,0.9217,0.0757,0.1971,0.9796,0.0392,0.1971,0.9796,0.0392,0.3804,0.9217,0.0757,0.3584,0.9217,0.1484,0.1971,0.9796,0.0392,0.3584,0.9217,0.1484,0.1857,0.9796,0.0769,0.1857,0.9796,0.0769,0.3584,0.9217,0.1484,0.3225,0.9217,0.2155,0.1857,0.9796,0.0769,0.3225,0.9217,0.2155,0.1671,0.9796,0.1117,0.1671,0.9796,0.1117,0.3225,0.9217,0.2155,0.2743,0.9217,0.2743,0.1671,0.9796,0.1117,0.2743,0.9217,0.2743,0.1421,0.9796,0.1421,0.1421,0.9796,0.1421,0.2743,0.9217,0.2743,0.2155,0.9217,0.3225,0.1421,0.9796,0.1421,0.2155,0.9217,0.3225,0.1117,0.9796,0.1671,0.1117,0.9796,0.1671,0.2155,0.9217,0.3225,0.1484,0.9217,0.3584,0.1117,0.9796,0.1671,0.1484,0.9217,0.3584,0.0769,0.9796,0.1857,0.0769,0.9796,0.1857,0.1484,0.9217,0.3584,0.0757,0.9217,0.3804,0.0769,0.9796,0.1857,0.0757,0.9217,0.3804,0.0392,0.9796,0.1971,0.0392,0.9796,0.1971,0.0757,0.9217,0.3804,0.0,0.9217,0.3879,0.0392,0.9796,0.1971,0.0,0.9217,0.3879,0.0,0.9796,0.201,0.0,0.9217,0.3879,0.0,0.8286,0.5598,-0.1092,0.8286,0.549,0.0,0.9217,0.3879,-0.1092,0.8286,0.549,-0.0757,0.9217,0.3804,-0.0757,0.9217,0.3804,-0.1092,0.8286,0.549,-0.2142,0.8286,0.5172,-0.0757,0.9217,0.3804,-0.2142,0.8286,0.5172,-0.1484,0.9217,0.3584,-0.1484,0.9217,0.3584,-0.2142,0.8286,0.5172,-0.311,0.8286,0.4654,-0.1484,0.9217,0.3584,-0.311,0.8286,0.4654,-0.2155,0.9217,0.3225,-0.2155,0.9217,0.3225,-0.311,0.8286,0.4654,-0.3958,0.8286,0.3958,-0.2155,0.9217,0.3225,-0.3958,0.8286,0.3958,-0.2743,0.9217,0.2743,-0.2743,0.9217,0.2743,-0.3958,0.8286,0.3958,-0.4654,0.8286,0.311,-0.2743,0.9217,0.2743,-0.4654,0.8286,0.311,-0.3225,0.9217,0.2155,-0.3225,0.9217,0.2155,-0.4654,0.8286,0.311,-0.5172,0.8286,0.2142,-0.3225,0.9217,0.2155,-0.5172,0.8286,0.2142,-0.3584,0.9217,0.1484,-0.3584,0.9217,0.1484,-0.5172,0.8286,0.2142,-0.549,0.8286,0.1092,-0.3584,0.9217,0.1484,-0.549,0.8286,0.1092,-0.3804,0.9217,0.0757,-0.3804,0.9217,0.0757,-0.549,0.8286,0.1092,-0.5598,0.8286,0.0,-0.3804,0.9217,0.0757,-0.5598,0.8286,0.0,-0.3879,0.9217,0.0,-0.3879,0.9217,0.0,-0.5598,0.8286,0.0,-0.549,0.8286,-0.1092,-0.3879,0.9217,0.0,-0.549,0.8286,-0.1092,-0.3804,0.9217,-0.0757,-0.3804,0.9217,-0.0757,-0.549,0.8286,-0.1092,-0.5172,0.8286,-0.2142,-0.3804,0.9217,-0.0757,-0.5172,0.8286,-0.2142,-0.3584,0.9217,-0.1484,-0.3584,0.9217,-0.1484,-0.5172,0.8286,-0.2142,-0.4654,0.8286,-0.311,-0.3584,0.9217,-0.1484,-0.4654,0.8286,-0.311,-0.3225,0.9217,-0.2155,-0.3225,0.9217,-0.2155,-0.4654,0.8286,-0.311,-0.3958,0.8286,-0.3958,-0.3225,0.9217,-0.2155,-0.3958,0.8286,-0.3958,-0.2743,0.9217,-0.2743,-0.2743,0.9217,-0.2743,-0.3958,0.8286,-0.3958,-0.311,0.8286,-0.4654,-0.2743,0.9217,-0.2743,-0.311,0.8286,-0.4654,-0.2155,0.9217,-0.3225,-0.2155,0.9217,-0.3225,-0.311,0.8286,-0.4654,-0.2142,0.8286,-0.5172,-0.2155,0.9217,-0.3225,-0.2142,0.8286,-0.5172,-0.1484,0.9217,-0.3584,-0.1484,0.9217,-0.3584,-0.2142,0.8286,-0.5172,-0.1092,0.8286,-0.549,-0.1484,0.9217,-0.3584,-0.1092,0.8286,-0.549,-0.0757,0.9217,-0.3804,-0.0757,0.9217,-0.3804,-0.1092,0.8286,-0.549,0.0,0.8286,-0.5598,-0.0757,0.9217,-0.3804,0.0,0.8286,-0.5598,0.0,0.9217,-0.3879,0.0,0.9217,-0.3879,0.0,0.8286,-0.5598,0.1092,0.8286,-0.549,0.0,0.9217,-0.3879,0.1092,0.8286,-0.549,0.0757,0.9217,-0.3804,0.0757,0.9217,-0.3804,0.1092,0.8286,-0.549,0.2142,0.8286,-0.5172,0.0757,0.9217,-0.3804,0.2142,0.8286,-0.5172,0.1484,0.9217,-0.3584,0.1484,0.9217,-0.3584,0.2142,0.8286,-0.5172,0.311,0.8286,-0.4654,0.1484,0.9217,-0.3584,0.311,0.8286,-0.4654,0.2155,0.9217,-0.3225,0.2155,0.9217,-0.3225,0.311,0.8286,-0.4654,0.3958,0.8286,-0.3958,0.2155,0.9217,-0.3225,0.3958,0.8286,-0.3958,0.2743,0.9217,-0.2743,0.2743,0.9217,-0.2743,0.3958,0.8286,-0.3958,0.4654,0.8286,-0.311,0.2743,0.9217,-0.2743,0.4654,0.8286,-0.311,0.3225,0.9217,-0.2155,0.3225,0.9217,-0.2155,0.4654,0.8286,-0.311,0.5172,0.8286,-0.2142,0.3225,0.9217,-0.2155,0.5172,0.8286,-0.2142,0.3584,0.9217,-0.1484,0.3584,0.9217,-0.1484,0.5172,0.8286,-0.2142,0.549,0.8286,-0.1092,0.3584,0.9217,-0.1484,0.549,0.8286,-0.1092,0.3804,0.9217,-0.0757,0.3804,0.9217,-0.0757,0.549,0.8286,-0.1092,0.5598,0.8286,0.0,0.3804,0.9217,-0.0757,0.5598,0.8286,0.0,0.3879,0.9217,0.0,0.3879,0.9217,0.0,0.5598,0.8286,0.0,0.549,0.8286,0.1092,0.3879,0.9217,0.0,0.549,0.8286,0.1092,0.3804,0.9217,0.0757,0.3804,0.9217,0.0757,0.549,0.8286,0.1092,0.5172,0.8286,0.2142,0.3804,0.9217,0.0757,0.5172,0.8286,0.2142,0.3584,0.9217,0.1484,0.3584,0.9217,0.1484,0.5172,0.8286,0.2142,0.4654,0.8286,0.311,0.3584,0.9217,0.1484,0.4654,0.8286,0.311,0.3225,0.9217,0.2155,0.3225,0.9217,0.2155,0.4654,0.8286,0.311,0.3958,0.8286,0.3958,0.3225,0.9217,0.2155,0.3958,0.8286,0.3958,0.2743,0.9217,0.2743,0.2743,0.9217,0.2743,0.3958,0.8286,0.3958,0.311,0.8286,0.4654,0.2743,0.9217,0.2743,0.311,0.8286,0.4654,0.2155,0.9217,0.3225,0.2155,0.9217,0.3225,0.311,0.8286,0.4654,0.2142,0.8286,0.5172,0.2155,0.9217,0.3225,0.2142,0.8286,0.5172,0.1484,0.9217,0.3584,0.1484,0.9217,0.3584,0.2142,0.8286,0.5172,0.1092,0.8286,0.549,0.1484,0.9217,0.3584,0.1092,0.8286,0.549,0.0757,0.9217,0.3804,0.0757,0.9217,0.3804,0.1092,0.8286,0.549,0.0,0.8286,0.5598,0.0757,0.9217,0.3804,0.0,0.8286,0.5598,0.0,0.9217,0.3879,0.0,0.8286,0.5598,0.0,0.7041,0.7101,-0.1385,0.7041,0.6965,0.0,0.8286,0.5598,-0.1385,0.7041,0.6965,-0.1092,0.8286,0.549,-0.1092,0.8286,0.549,-0.1385,0.7041,0.6965,-0.2718,0.7041,0.6561,-0.1092,0.8286,0.549,-0.2718,0.7041,0.6561,-0.2142,0.8286,0.5172,-0.2142,0.8286,0.5172,-0.2718,0.7041,0.6561,-0.3945,0.7041,0.5905,-0.2142,0.8286,0.5172,-0.3945,0.7041,0.5905,-0.311,0.8286,0.4654,-0.311,0.8286,0.4654,-0.3945,0.7041,0.5905,-0.5021,0.7041,0.5021,-0.311,0.8286,0.4654,-0.5021,0.7041,0.5021,-0.3958,0.8286,0.3958,-0.3958,0.8286,0.3958,-0.5021,0.7041,0.5021,-0.5905,0.7041,0.3945,-0.3958,0.8286,0.3958,-0.5905,0.7041,0.3945,-0.4654,0.8286,0.311,-0.4654,0.8286,0.311,-0.5905,0.7041,0.3945,-0.6561,0.7041,0.2718,-0.4654,0.8286,0.311,-0.6561,0.7041,0.2718,-0.5172,0.8286,0.2142,-0.5172,0.8286,0.2142,-0.6561,0.7041,0.2718,-0.6965,0.7041,0.1385,-0.5172,0.8286,0.2142,-0.6965,0.7041,0.1385,-0.549,0.8286,0.1092,-0.549,0.8286,0.1092,-0.6965,0.7041,0.1385,-0.7101,0.7041,0.0,-0.549,0.8286,0.1092,-0.7101,0.7041,0.0,-0.5598,0.8286,0.0,-0.5598,0.8286,0.0,-0.7101,0.7041,0.0,-0.6965,0.7041,-0.1385,-0.5598,0.8286,0.0,-0.6965,0.7041,-0.1385,-0.549,0.8286,-0.1092,-0.549,0.8286,-0.1092,-0.6965,0.7041,-0.1385,-0.6561,0.7041,-0.2718,-0.549,0.8286,-0.1092,-0.6561,0.7041,-0.2718,-0.5172,0.8286,-0.2142,-0.5172,0.8286,-0.2142,-0.6561,0.7041,-0.2718,-0.5905,0.7041,-0.3945,-0.5172,0.8286,-0.2142,-0.5905,0.7041,-0.3945,-0.4654,0.8286,-0.311,-0.4654,0.8286,-0.311,-0.5905,0.7041,-0.3945,-0.5021,0.7041,-0.5021,-0.4654,0.8286,-0.311,-0.5021,0.7041,-0.5021,-0.3958,0.8286,-0.3958,-0.3958,0.8286,-0.3958,-0.5021,0.7041,-0.5021,-0.3945,0.7041,-0.5905,-0.3958,0.8286,-0.3958,-0.3945,0.7041,-0.5905,-0.311,0.8286,-0.4654,-0.311,0.8286,-0.4654,-0.3945,0.7041,-0.5905,-0.2718,0.7041,-0.6561,-0.311,0.8286,-0.4654,-0.2718,0.7041,-0.6561,-0.2142,0.8286,-0.5172,-0.2142,0.8286,-0.5172,-0.2718,0.7041,-0.6561,-0.1385,0.7041,-0.6965,-0.2142,0.8286,-0.5172,-0.1385,0.7041,-0.6965,-0.1092,0.8286,-0.549,-0.1092,0.8286,-0.549,-0.1385,0.7041,-0.6965,0.0,0.7041,-0.7101,-0.1092,0.8286,-0.549,0.0,0.7041,-0.7101,0.0,0.8286,-0.5598,0.0,0.8286,-0.5598,0.0,0.7041,-0.7101,0.1385,0.7041,-0.6965,0.0,0.8286,-0.5598,0.1385,0.7041,-0.6965,0.1092,0.8286,-0.549,0.1092,0.8286,-0.549,0.1385,0.7041,-0.6965,0.2718,0.7041,-0.6561,0.1092,0.8286,-0.549,0.2718,0.7041,-0.6561,0.2142,0.8286,-0.5172,0.2142,0.8286,-0.5172,0.2718,0.7041,-0.6561,0.3945,0.7041,-0.5905,0.2142,0.8286,-0.5172,0.3945,0.7041,-0.5905,0.311,0.8286,-0.4654,0.311,0.8286,-0.4654,0.3945,0.7041,-0.5905,0.5021,0.7041,-0.5021,0.311,0.8286,-0.4654,0.5021,0.7041,-0.5021,0.3958,0.8286,-0.3958,0.3958,0.8286,-0.3958,0.5021,0.7041,-0.5021,0.5905,0.7041,-0.3945,0.3958,0.8286,-0.3958,0.5905,0.7041,-0.3945,0.4654,0.8286,-0.311,0.4654,0.8286,-0.311,0.5905,0.7041,-0.3945,0.6561,0.7041,-0.2718,0.4654,0.8286,-0.311,0.6561,0.7041,-0.2718,0.5172,0.8286,-0.2142,0.5172,0.8286,-0.2142,0.6561,0.7041,-0.2718,0.6965,0.7041,-0.1385,0.5172,0.8286,-0.2142,0.6965,0.7041,-0.1385,0.549,0.8286,-0.1092,0.549,0.8286,-0.1092,0.6965,0.7041,-0.1385,0.7101,0.7041,0.0,0.549,0.8286,-0.1092,0.7101,0.7041,0.0,0.5598,0.8286,0.0,0.5598,0.8286,0.0,0.7101,0.7041,0.0,0.6965,0.7041,0.1385,0.5598,0.8286,0.0,0.6965,0.7041,0.1385,0.549,0.8286,0.1092,0.549,0.8286,0.1092,0.6965,0.7041,0.1385,0.6561,0.7041,0.2718,0.549,0.8286,0.1092,0.6561,0.7041,0.2718,0.5172,0.8286,0.2142,0.5172,0.8286,0.2142,0.6561,0.7041,0.2718,0.5905,0.7041,0.3945,0.5172,0.8286,0.2142,0.5905,0.7041,0.3945,0.4654,0.8286,0.311,0.4654,0.8286,0.311,0.5905,0.7041,0.3945,0.5021,0.7041,0.5021,0.4654,0.8286,0.311,0.5021,0.7041,0.5021,0.3958,0.8286,0.3958,0.3958,0.8286,0.3958,0.5021,0.7041,0.5021,0.3945,0.7041,0.5905,0.3958,0.8286,0.3958,0.3945,0.7041,0.5905,0.311,0.8286,0.4654,0.311,0.8286,0.4654,0.3945,0.7041,0.5905,0.2718,0.7041,0.6561,0.311,0.8286,0.4654,0.2718,0.7041,0.6561,0.2142,0.8286,0.5172,0.2142,0.8286,0.5172,0.2718,0.7041,0.6561,0.1385,0.7041,0.6965,0.2142,0.8286,0.5172,0.1385,0.7041,0.6965,0.1092,0.8286,0.549,0.1092,0.8286,0.549,0.1385,0.7041,0.6965,0.0,0.7041,0.7101,0.1092,0.8286,0.549,0.0,0.7041,0.7101,0.0,0.8286,0.5598,0.0,0.7041,0.7101,0.0,0.5528,0.8333,-0.1626,0.5528,0.8173,0.0,0.7041,0.7101,-0.1626,0.5528,0.8173,-0.1385,0.7041,0.6965,-0.1385,0.7041,0.6965,-0.1626,0.5528,0.8173,-0.3189,0.5528,0.7699,-0.1385,0.7041,0.6965,-0.3189,0.5528,0.7699,-0.2718,0.7041,0.6561,-0.2718,0.7041,0.6561,-0.3189,0.5528,0.7699,-0.463,0.5528,0.6929,-0.2718,0.7041,0.6561,-0.463,0.5528,0.6929,-0.3945,0.7041,0.5905,-0.3945,0.7041,0.5905,-0.463,0.5528,0.6929,-0.5893,0.5528,0.5893,-0.3945,0.7041,0.5905,-0.5893,0.5528,0.5893,-0.5021,0.7041,0.5021,-0.5021,0.7041,0.5021,-0.5893,0.5528,0.5893,-0.6929,0.5528,0.463,-0.5021,0.7041,0.5021,-0.6929,0.5528,0.463,-0.5905,0.7041,0.3945,-0.5905,0.7041,0.3945,-0.6929,0.5528,0.463,-0.7699,0.5528,0.3189,-0.5905,0.7041,0.3945,-0.7699,0.5528,0.3189,-0.6561,0.7041,0.2718,-0.6561,0.7041,0.2718,-0.7699,0.5528,0.3189,-0.8173,0.5528,0.1626,-0.6561,0.7041,0.2718,-0.8173,0.5528,0.1626,-0.6965,0.7041,0.1385,-0.6965,0.7041,0.1385,-0.8173,0.5528,0.1626,-0.8333,0.5528,0.0,-0.6965,0.7041,0.1385,-0.8333,0.5528,0.0,-0.7101,0.7041,0.0,-0.7101,0.7041,0.0,-0.8333,0.5528,0.0,-0.8173,0.5528,-0.1626,-0.7101,0.7041,0.0,-0.8173,0.5528,-0.1626,-0.6965,0.7041,-0.1385,-0.6965,0.7041,-0.1385,-0.8173,0.5528,-0.1626,-0.7699,0.5528,-0.3189,-0.6965,0.7041,-0.1385,-0.7699,0.5528,-0.3189,-0.6561,0.7041,-0.2718,-0.6561,0.7041,-0.2718,-0.7699,0.5528,-0.3189,-0.6929,0.5528,-0.463,-0.6561,0.7041,-0.2718,-0.6929,0.5528,-0.463,-0.5905,0.7041,-0.3945,-0.5905,0.7041,-0.3945,-0.6929,0.5528,-0.463,-0.5893,0.5528,-0.5893,-0.5905,0.7041,-0.3945,-0.5893,0.5528,-0.5893,-0.5021,0.7041,-0.5021,-0.5021,0.7041,-0.5021,-0.5893,0.5528,-0.5893,-0.463,0.5528,-0.6929,-0.5021,0.7041,-0.5021,-0.463,0.5528,-0.6929,-0.3945,0.7041,-0.5905,-0.3945,0.7041,-0.5905,-0.463,0.5528,-0.6929,-0.3189,0.5528,-0.7699,-0.3945,0.7041,-0.5905,-0.3189,0.5528,-0.7699,-0.2718,0.7041,-0.6561,-0.2718,0.7041,-0.6561,-0.3189,0.5528,-0.7699,-0.1626,0.5528,-0.8173,-0.2718,0.7041,-0.6561,-0.1626,0.5528,-0.8173,-0.1385,0.7041,-0.6965,-0.1385,0.7041,-0.6965,-0.1626,0.5528,-0.8173,0.0,0.5528,-0.8333,-0.1385,0.7041,-0.6965,0.0,0.5528,-0.8333,0.0,0.7041,-0.7101,0.0,0.7041,-0.7101,0.0,0.5528,-0.8333,0.1626,0.5528,-0.8173,0.0,0.7041,-0.7101,0.1626,0.5528,-0.8173,0.1385,0.7041,-0.6965,0.1385,0.7041,-0.6965,0.1626,0.5528,-0.8173,0.3189,0.5528,-0.7699,0.1385,0.7041,-0.6965,0.3189,0.5528,-0.7699,0.2718,0.7041,-0.6561,0.2718,0.7041,-0.6561,0.3189,0.5528,-0.7699,0.463,0.5528,-0.6929,0.2718,0.7041,-0.6561,0.463,0.5528,-0.6929,0.3945,0.7041,-0.5905,0.3945,0.7041,-0.5905,0.463,0.5528,-0.6929,0.5893,0.5528,-0.5893,0.3945,0.7041,-0.5905,0.5893,0.5528,-0.5893,0.5021,0.7041,-0.5021,0.5021,0.7041,-0.5021,0.5893,0.5528,-0.5893,0.6929,0.5528,-0.463,0.5021,0.7041,-0.5021,0.6929,0.5528,-0.463,0.5905,0.7041,-0.3945,0.5905,0.7041,-0.3945,0.6929,0.5528,-0.463,0.7699,0.5528,-0.3189,0.5905,0.7041,-0.3945,0.7699,0.5528,-0.3189,0.6561,0.7041,-0.2718,0.6561,0.7041,-0.2718,0.7699,0.5528,-0.3189,0.8173,0.5528,-0.1626,0.6561,0.7041,-0.2718,0.8173,0.5528,-0.1626,0.6965,0.7041,-0.1385,0.6965,0.7041,-0.1385,0.8173,0.5528,-0.1626,0.8333,0.5528,0.0,0.6965,0.7041,-0.1385,0.8333,0.5528,0.0,0.7101,0.7041,0.0,0.7101,0.7041,0.0,0.8333,0.5528,0.0,0.8173,0.5528,0.1626,0.7101,0.7041,0.0,0.8173,0.5528,0.1626,0.6965,0.7041,0.1385,0.6965,0.7041,0.1385,0.8173,0.5528,0.1626,0.7699,0.5528,0.3189,0.6965,0.7041,0.1385,0.7699,0.5528,0.3189,0.6561,0.7041,0.2718,0.6561,0.7041,0.2718,0.7699,0.5528,0.3189,0.6929,0.5528,0.463,0.6561,0.7041,0.2718,0.6929,0.5528,0.463,0.5905,0.7041,0.3945,0.5905,0.7041,0.3945,0.6929,0.5528,0.463,0.5893,0.5528,0.5893,0.5905,0.7041,0.3945,0.5893,0.5528,0.5893,0.5021,0.7041,0.5021,0.5021,0.7041,0.5021,0.5893,0.5528,0.5893,0.463,0.5528,0.6929,0.5021,0.7041,0.5021,0.463,0.5528,0.6929,0.3945,0.7041,0.5905,0.3945,0.7041,0.5905,0.463,0.5528,0.6929,0.3189,0.5528,0.7699,0.3945,0.7041,0.5905,0.3189,0.5528,0.7699,0.2718,0.7041,0.6561,0.2718,0.7041,0.6561,0.3189,0.5528,0.7699,0.1626,0.5528,0.8173,0.2718,0.7041,0.6561,0.1626,0.5528,0.8173,0.1385,0.7041,0.6965,0.1385,0.7041,0.6965,0.1626,0.5528,0.8173,0.0,0.5528,0.8333,0.1385,0.7041,0.6965,0.0,0.5528,0.8333,0.0,0.7041,0.7101,0.0,0.5528,0.8333,0.0,0.3805,0.9248,-0.1804,0.3805,0.907,0.0,0.5528,0.8333,-0.1804,0.3805,0.907,-0.1626,0.5528,0.8173,-0.1626,0.5528,0.8173,-0.1804,0.3805,0.907,-0.3539,0.3805,0.8544,-0.1626,0.5528,0.8173,-0.3539,0.3805,0.8544,-0.3189,0.5528,0.7699,-0.3189,0.5528,0.7699,-0.3539,0.3805,0.8544,-0.5138,0.3805,0.7689,-0.3189,0.5528,0.7699,-0.5138,0.3805,0.7689,-0.463,0.5528,0.6929,-0.463,0.5528,0.6929,-0.5138,0.3805,0.7689,-0.6539,0.3805,0.6539,-0.463,0.5528,0.6929,-0.6539,0.3805,0.6539,-0.5893,0.5528,0.5893,-0.5893,0.5528,0.5893,-0.6539,0.3805,0.6539,-0.7689,0.3805,0.5138,-0.5893,0.5528,0.5893,-0.7689,0.3805,0.5138,-0.6929,0.5528,0.463,-0.6929,0.5528,0.463,-0.7689,0.3805,0.5138,-0.8544,0.3805,0.3539,-0.6929,0.5528,0.463,-0.8544,0.3805,0.3539,-0.7699,0.5528,0.3189,-0.7699,0.5528,0.3189,-0.8544,0.3805,0.3539,-0.907,0.3805,0.1804,-0.7699,0.5528,0.3189,-0.907,0.3805,0.1804,-0.8173,0.5528,0.1626,-0.8173,0.5528,0.1626,-0.907,0.3805,0.1804,-0.9248,0.3805,0.0,-0.8173,0.5528,0.1626,-0.9248,0.3805,0.0,-0.8333,0.5528,0.0,-0.8333,0.5528,0.0,-0.9248,0.3805,0.0,-0.907,0.3805,-0.1804,-0.8333,0.5528,0.0,-0.907,0.3805,-0.1804,-0.8173,0.5528,-0.1626,-0.8173,0.5528,-0.1626,-0.907,0.3805,-0.1804,-0.8544,0.3805,-0.3539,-0.8173,0.5528,-0.1626,-0.8544,0.3805,-0.3539,-0.7699,0.5528,-0.3189,-0.7699,0.5528,-0.3189,-0.8544,0.3805,-0.3539,-0.7689,0.3805,-0.5138,-0.7699,0.5528,-0.3189,-0.7689,0.3805,-0.5138,-0.6929,0.5528,-0.463,-0.6929,0.5528,-0.463,-0.7689,0.3805,-0.5138,-0.6539,0.3805,-0.6539,-0.6929,0.5528,-0.463,-0.6539,0.3805,-0.6539,-0.5893,0.5528,-0.5893,-0.5893,0.5528,-0.5893,-0.6539,0.3805,-0.6539,-0.5138,0.3805,-0.7689,-0.5893,0.5528,-0.5893,-0.5138,0.3805,-0.7689,-0.463,0.5528,-0.6929,-0.463,0.5528,-0.6929,-0.5138,0.3805,-0.7689,-0.3539,0.3805,-0.8544,-0.463,0.5528,-0.6929,-0.3539,0.3805,-0.8544,-0.3189,0.5528,-0.7699,-0.3189,0.5528,-0.7699,-0.3539,0.3805,-0.8544,-0.1804,0.3805,-0.907,-0.3189,0.5528,-0.7699,-0.1804,0.3805,-0.907,-0.1626,0.5528,-0.8173,-0.1626,0.5528,-0.8173,-0.1804,0.3805,-0.907,0.0,0.3805,-0.9248,-0.1626,0.5528,-0.8173,0.0,0.3805,-0.9248,0.0,0.5528,-0.8333,0.0,0.5528,-0.8333,0.0,0.3805,-0.9248,0.1804,0.3805,-0.907,0.0,0.5528,-0.8333,0.1804,0.3805,-0.907,0.1626,0.5528,-0.8173,0.1626,0.5528,-0.8173,0.1804,0.3805,-0.907,0.3539,0.3805,-0.8544,0.1626,0.5528,-0.8173,0.3539,0.3805,-0.8544,0.3189,0.5528,-0.7699,0.3189,0.5528,-0.7699,0.3539,0.3805,-0.8544,0.5138,0.3805,-0.7689,0.3189,0.5528,-0.7699,0.5138,0.3805,-0.7689,0.463,0.5528,-0.6929,0.463,0.5528,-0.6929,0.5138,0.3805,-0.7689,0.6539,0.3805,-0.6539,0.463,0.5528,-0.6929,0.6539,0.3805,-0.6539,0.5893,0.5528,-0.5893,0.5893,0.5528,-0.5893,0.6539,0.3805,-0.6539,0.7689,0.3805,-0.5138,0.5893,0.5528,-0.5893,0.7689,0.3805,-0.5138,0.6929,0.5528,-0.463,0.6929,0.5528,-0.463,0.7689,0.3805,-0.5138,0.8544,0.3805,-0.3539,0.6929,0.5528,-0.463,0.8544,0.3805,-0.3539,0.7699,0.5528,-0.3189,0.7699,0.5528,-0.3189,0.8544,0.3805,-0.3539,0.907,0.3805,-0.1804,0.7699,0.5528,-0.3189,0.907,0.3805,-0.1804,0.8173,0.5528,-0.1626,0.8173,0.5528,-0.1626,0.907,0.3805,-0.1804,0.9248,0.3805,0.0,0.8173,0.5528,-0.1626,0.9248,0.3805,0.0,0.8333,0.5528,0.0,0.8333,0.5528,0.0,0.9248,0.3805,0.0,0.907,0.3805,0.1804,0.8333,0.5528,0.0,0.907,0.3805,0.1804,0.8173,0.5528,0.1626,0.8173,0.5528,0.1626,0.907,0.3805,0.1804,0.8544,0.3805,0.3539,0.8173,0.5528,0.1626,0.8544,0.3805,0.3539,0.7699,0.5528,0.3189,0.7699,0.5528,0.3189,0.8544,0.3805,0.3539,0.7689,0.3805,0.5138,0.7699,0.5528,0.3189,0.7689,0.3805,0.5138,0.6929,0.5528,0.463,0.6929,0.5528,0.463,0.7689,0.3805,0.5138,0.6539,0.3805,0.6539,0.6929,0.5528,0.463,0.6539,0.3805,0.6539,0.5893,0.5528,0.5893,0.5893,0.5528,0.5893,0.6539,0.3805,0.6539,0.5138,0.3805,0.7689,0.5893,0.5528,0.5893,0.5138,0.3805,0.7689,0.463,0.5528,0.6929,0.463,0.5528,0.6929,0.5138,0.3805,0.7689,0.3539,0.3805,0.8544,0.463,0.5528,0.6929,0.3539,0.3805,0.8544,0.3189,0.5528,0.7699,0.3189,0.5528,0.7699,0.3539,0.3805,0.8544,0.1804,0.3805,0.907,0.3189,0.5528,0.7699,0.1804,0.3805,0.907,0.1626,0.5528,0.8173,0.1626,0.5528,0.8173,0.1804,0.3805,0.907,0.0,0.3805,0.9248,0.1626,0.5528,0.8173,0.0,0.3805,0.9248,0.0,0.5528,0.8333,0.0,0.3805,0.9248,0.0,0.1939,0.981,-0.1914,0.1939,0.9622,0.0,0.3805,0.9248,-0.1914,0.1939,0.9622,-0.1804,0.3805,0.907,-0.1804,0.3805,0.907,-0.1914,0.1939,0.9622,-0.3754,0.1939,0.9063,-0.1804,0.3805,0.907,-0.3754,0.1939,0.9063,-0.3539,0.3805,0.8544,-0.3539,0.3805,0.8544,-0.3754,0.1939,0.9063,-0.545,0.1939,0.8157,-0.3539,0.3805,0.8544,-0.545,0.1939,0.8157,-0.5138,0.3805,0.7689,-0.5138,0.3805,0.7689,-0.545,0.1939,0.8157,-0.6937,0.1939,0.6937,-0.5138,0.3805,0.7689,-0.6937,0.1939,0.6937,-0.6539,0.3805,0.6539,-0.6539,0.3805,0.6539,-0.6937,0.1939,0.6937,-0.8157,0.1939,0.545,-0.6539,0.3805,0.6539,-0.8157,0.1939,0.545,-0.7689,0.3805,0.5138,-0.7689,0.3805,0.5138,-0.8157,0.1939,0.545,-0.9063,0.1939,0.3754,-0.7689,0.3805,0.5138,-0.9063,0.1939,0.3754,-0.8544,0.3805,0.3539,-0.8544,0.3805,0.3539,-0.9063,0.1939,0.3754,-0.9622,0.1939,0.1914,-0.8544,0.3805,0.3539,-0.9622,0.1939,0.1914,-0.907,0.3805,0.1804,-0.907,0.3805,0.1804,-0.9622,0.1939,0.1914,-0.981,0.1939,0.0,-0.907,0.3805,0.1804,-0.981,0.1939,0.0,-0.9248,0.3805,0.0,-0.9248,0.3805,0.0,-0.981,0.1939,0.0,-0.9622,0.1939,-0.1914,-0.9248,0.3805,0.0,-0.9622,0.1939,-0.1914,-0.907,0.3805,-0.1804,-0.907,0.3805,-0.1804,-0.9622,0.1939,-0.1914,-0.9063,0.1939,-0.3754,-0.907,0.3805,-0.1804,-0.9063,0.1939,-0.3754,-0.8544,0.3805,-0.3539,-0.8544,0.3805,-0.3539,-0.9063,0.1939,-0.3754,-0.8157,0.1939,-0.545,-0.8544,0.3805,-0.3539,-0.8157,0.1939,-0.545,-0.7689,0.3805,-0.5138,-0.7689,0.3805,-0.5138,-0.8157,0.1939,-0.545,-0.6937,0.1939,-0.6937,-0.7689,0.3805,-0.5138,-0.6937,0.1939,-0.6937,-0.6539,0.3805,-0.6539,-0.6539,0.3805,-0.6539,-0.6937,0.1939,-0.6937,-0.545,0.1939,-0.8157,-0.6539,0.3805,-0.6539,-0.545,0.1939,-0.8157,-0.5138,0.3805,-0.7689,-0.5138,0.3805,-0.7689,-0.545,0.1939,-0.8157,-0.3754,0.1939,-0.9063,-0.5138,0.3805,-0.7689,-0.3754,0.1939,-0.9063,-0.3539,0.3805,-0.8544,-0.3539,0.3805,-0.8544,-0.3754,0.1939,-0.9063,-0.1914,0.1939,-0.9622,-0.3539,0.3805,-0.8544,-0.1914,0.1939,-0.9622,-0.1804,0.3805,-0.907,-0.1804,0.3805,-0.907,-0.1914,0.1939,-0.9622,0.0,0.1939,-0.981,-0.1804,0.3805,-0.907,0.0,0.1939,-0.981,0.0,0.3805,-0.9248,0.0,0.3805,-0.9248,0.0,0.1939,-0.981,0.1914,0.1939,-0.9622,0.0,0.3805,-0.9248,0.1914,0.1939,-0.9622,0.1804,0.3805,-0.907,0.1804,0.3805,-0.907,0.1914,0.1939,-0.9622,0.3754,0.1939,-0.9063,0.1804,0.3805,-0.907,0.3754,0.1939,-0.9063,0.3539,0.3805,-0.8544,0.3539,0.3805,-0.8544,0.3754,0.1939,-0.9063,0.545,0.1939,-0.8157,0.3539,0.3805,-0.8544,0.545,0.1939,-0.8157,0.5138,0.3805,-0.7689,0.5138,0.3805,-0.7689,0.545,0.1939,-0.8157,0.6937,0.1939,-0.6937,0.5138,0.3805,-0.7689,0.6937,0.1939,-0.6937,0.6539,0.3805,-0.6539,0.6539,0.3805,-0.6539,0.6937,0.1939,-0.6937,0.8157,0.1939,-0.545,0.6539,0.3805,-0.6539,0.8157,0.1939,-0.545,0.7689,0.3805,-0.5138,0.7689,0.3805,-0.5138,0.8157,0.1939,-0.545,0.9063,0.1939,-0.3754,0.7689,0.3805,-0.5138,0.9063,0.1939,-0.3754,0.8544,0.3805,-0.3539,0.8544,0.3805,-0.3539,0.9063,0.1939,-0.3754,0.9622,0.1939,-0.1914,0.8544,0.3805,-0.3539,0.9622,0.1939,-0.1914,0.907,0.3805,-0.1804,0.907,0.3805,-0.1804,0.9622,0.1939,-0.1914,0.981,0.1939,0.0,0.907,0.3805,-0.1804,0.981,0.1939,0.0,0.9248,0.3805,0.0,0.9248,0.3805,0.0,0.981,0.1939,0.0,0.9622,0.1939,0.1914,0.9248,0.3805,0.0,0.9622,0.1939,0.1914,0.907,0.3805,0.1804,0.907,0.3805,0.1804,0.9622,0.1939,0.1914,0.9063,0.1939,0.3754,0.907,0.3805,0.1804,0.9063,0.1939,0.3754,0.8544,0.3805,0.3539,0.8544,0.3805,0.3539,0.9063,0.1939,0.3754,0.8157,0.1939,0.545,0.8544,0.3805,0.3539,0.8157,0.1939,0.545,0.7689,0.3805,0.5138,0.7689,0.3805,0.5138,0.8157,0.1939,0.545,0.6937,0.1939,0.6937,0.7689,0.3805,0.5138,0.6937,0.1939,0.6937,0.6539,0.3805,0.6539,0.6539,0.3805,0.6539,0.6937,0.1939,0.6937,0.545,0.1939,0.8157,0.6539,0.3805,0.6539,0.545,0.1939,0.8157,0.5138,0.3805,0.7689,0.5138,0.3805,0.7689,0.545,0.1939,0.8157,0.3754,0.1939,0.9063,0.5138,0.3805,0.7689,0.3754,0.1939,0.9063,0.3539,0.3805,0.8544,0.3539,0.3805,0.8544,0.3754,0.1939,0.9063,0.1914,0.1939,0.9622,0.3539,0.3805,0.8544,0.1914,0.1939,0.9622,0.1804,0.3805,0.907,0.1804,0.3805,0.907,0.1914,0.1939,0.9622,0.0,0.1939,0.981,0.1804,0.3805,0.907,0.0,0.1939,0.981,0.0,0.3805,0.9248,0.0,0.1939,0.981,0.0,0.0,1.0,-0.1951,0.0,0.9808,0.0,0.1939,0.981,-0.1951,0.0,0.9808,-0.1914,0.1939,0.9622,-0.1914,0.1939,0.9622,-0.1951,0.0,0.9808,-0.3827,0.0,0.9239,-0.1914,0.1939,0.9622,-0.3827,0.0,0.9239,-0.3754,0.1939,0.9063,-0.3754,0.1939,0.9063,-0.3827,0.0,0.9239,-0.5556,0.0,0.8315,-0.3754,0.1939,0.9063,-0.5556,0.0,0.8315,-0.545,0.1939,0.8157,-0.545,0.1939,0.8157,-0.5556,0.0,0.8315,-0.7071,0.0,0.7071,-0.545,0.1939,0.8157,-0.7071,0.0,0.7071,-0.6937,0.1939,0.6937,-0.6937,0.1939,0.6937,-0.7071,0.0,0.7071,-0.8315,0.0,0.5556,-0.6937,0.1939,0.6937,-0.8315,0.0,0.5556,-0.8157,0.1939,0.545,-0.8157,0.1939,0.545,-0.8315,0.0,0.5556,-0.9239,0.0,0.3827,-0.8157,0.1939,0.545,-0.9239,0.0,0.3827,-0.9063,0.1939,0.3754,-0.9063,0.1939,0.3754,-0.9239,0.0,0.3827,-0.9808,0.0,0.1951,-0.9063,0.1939,0.3754,-0.9808,0.0,0.1951,-0.9622,0.1939,0.1914,-0.9622,0.1939,0.1914,-0.9808,0.0,0.1951,-1.0,0.0,0.0,-0.9622,0.1939,0.1914,-1.0,0.0,0.0,-0.981,0.1939,0.0,-0.981,0.1939,0.0,-1.0,0.0,0.0,-0.9808,0.0,-0.1951,-0.981,0.1939,0.0,-0.9808,0.0,-0.1951,-0.9622,0.1939,-0.1914,-0.9622,0.1939,-0.1914,-0.9808,0.0,-0.1951,-0.9239,0.0,-0.3827,-0.9622,0.1939,-0.1914,-0.9239,0.0,-0.3827,-0.9063,0.1939,-0.3754,-0.9063,0.1939,-0.3754,-0.9239,0.0,-0.3827,-0.8315,0.0,-0.5556,-0.9063,0.1939,-0.3754,-0.8315,0.0,-0.5556,-0.8157,0.1939,-0.545,-0.8157,0.1939,-0.545,-0.8315,0.0,-0.5556,-0.7071,0.0,-0.7071,-0.8157,0.1939,-0.545,-0.7071,0.0,-0.7071,-0.6937,0.1939,-0.6937,-0.6937,0.1939,-0.6937,-0.7071,0.0,-0.7071,-0.5556,0.0,-0.8315,-0.6937,0.1939,-0.6937,-0.5556,0.0,-0.8315,-0.545,0.1939,-0.8157,-0.545,0.1939,-0.8157,-0.5556,0.0,-0.8315,-0.3827,0.0,-0.9239,-0.545,0.1939,-0.8157,-0.3827,0.0,-0.9239,-0.3754,0.1939,-0.9063,-0.3754,0.1939,-0.9063,-0.3827,0.0,-0.9239,-0.1951,0.0,-0.9808,-0.3754,0.1939,-0.9063,-0.1951,0.0,-0.9808,-0.1914,0.1939,-0.9622,-0.1914,0.1939,-0.9622,-0.1951,0.0,-0.9808,0.0,0.0,-1.0,-0.1914,0.1939,-0.9622,0.0,0.0,-1.0,0.0,0.1939,-0.981,0.0,0.1939,-0.981,0.0,0.0,-1.0,0.1951,0.0,-0.9808,0.0,0.1939,-0.981,0.1951,0.0,-0.9808,0.1914,0.1939,-0.9622,0.1914,0.1939,-0.9622,0.1951,0.0,-0.9808,0.3827,0.0,-0.9239,0.1914,0.1939,-0.9622,0.3827,0.0,-0.9239,0.3754,0.1939,-0.9063,0.3754,0.1939,-0.9063,0.3827,0.0,-0.9239,0.5556,0.0,-0.8315,0.3754,0.1939,-0.9063,0.5556,0.0,-0.8315,0.545,0.1939,-0.8157,0.545,0.1939,-0.8157,0.5556,0.0,-0.8315,0.7071,0.0,-0.7071,0.545,0.1939,-0.8157,0.7071,0.0,-0.7071,0.6937,0.1939,-0.6937,0.6937,0.1939,-0.6937,0.7071,0.0,-0.7071,0.8315,0.0,-0.5556,0.6937,0.1939,-0.6937,0.8315,0.0,-0.5556,0.8157,0.1939,-0.545,0.8157,0.1939,-0.545,0.8315,0.0,-0.5556,0.9239,0.0,-0.3827,0.8157,0.1939,-0.545,0.9239,0.0,-0.3827,0.9063,0.1939,-0.3754,0.9063,0.1939,-0.3754,0.9239,0.0,-0.3827,0.9808,0.0,-0.1951,0.9063,0.1939,-0.3754,0.9808,0.0,-0.1951,0.9622,0.1939,-0.1914,0.9622,0.1939,-0.1914,0.9808,0.0,-0.1951,1.0,0.0,0.0,0.9622,0.1939,-0.1914,1.0,0.0,0.0,0.981,0.1939,0.0,0.981,0.1939,0.0,1.0,0.0,0.0,0.9808,0.0,0.1951,0.981,0.1939,0.0,0.9808,0.0,0.1951,0.9622,0.1939,0.1914,0.9622,0.1939,0.1914,0.9808,0.0,0.1951,0.9239,0.0,0.3827,0.9622,0.1939,0.1914,0.9239,0.0,0.3827,0.9063,0.1939,0.3754,0.9063,0.1939,0.3754,0.9239,0.0,0.3827,0.8315,0.0,0.5556,0.9063,0.1939,0.3754,0.8315,0.0,0.5556,0.8157,0.1939,0.545,0.8157,0.1939,0.545,0.8315,0.0,0.5556,0.7071,0.0,0.7071,0.8157,0.1939,0.545,0.7071,0.0,0.7071,0.6937,0.1939,0.6937,0.6937,0.1939,0.6937,0.7071,0.0,0.7071,0.5556,0.0,0.8315,0.6937,0.1939,0.6937,0.5556,0.0,0.8315,0.545,0.1939,0.8157,0.545,0.1939,0.8157,0.5556,0.0,0.8315,0.3827,0.0,0.9239,0.545,0.1939,0.8157,0.3827,0.0,0.9239,0.3754,0.1939,0.9063,0.3754,0.1939,0.9063,0.3827,0.0,0.9239,0.1951,0.0,0.9808,0.3754,0.1939,0.9063,0.1951,0.0,0.9808,0.1914,0.1939,0.9622,0.1914,0.1939,0.9622,0.1951,0.0,0.9808,0.0,0.0,1.0,0.1914,0.1939,0.9622,0.0,0.0,1.0,0.0,0.1939,0.981,0.0,0.0,1.0,0.0,-0.1939,0.981,-0.1914,-0.1939,0.9622,0.0,0.0,1.0,-0.1914,-0.1939,0.9622,-0.1951,0.0,0.9808,-0.1951,0.0,0.9808,-0.1914,-0.1939,0.9622,-0.3754,-0.1939,0.9063,-0.1951,0.0,0.9808,-0.3754,-0.1939,0.9063,-0.3827,0.0,0.9239,-0.3827,0.0,0.9239,-0.3754,-0.1939,0.9063,-0.545,-0.1939,0.8157,-0.3827,0.0,0.9239,-0.545,-0.1939,0.8157,-0.5556,0.0,0.8315,-0.5556,0.0,0.8315,-0.545,-0.1939,0.8157,-0.6937,-0.1939,0.6937,-0.5556,0.0,0.8315,-0.6937,-0.1939,0.6937,-0.7071,0.0,0.7071,-0.7071,0.0,0.7071,-0.6937,-0.1939,0.6937,-0.8157,-0.1939,0.545,-0.7071,0.0,0.7071,-0.8157,-0.1939,0.545,-0.8315,0.0,0.5556,-0.8315,0.0,0.5556,-0.8157,-0.1939,0.545,-0.9063,-0.1939,0.3754,-0.8315,0.0,0.5556,-0.9063,-0.1939,0.3754,-0.9239,0.0,0.3827,-0.9239,0.0,0.3827,-0.9063,-0.1939,0.3754,-0.9622,-0.1939,0.1914,-0.9239,0.0,0.3827,-0.9622,-0.1939,0.1914,-0.9808,0.0,0.1951,-0.9808,0.0,0.1951,-0.9622,-0.1939,0.1914,-0.981,-0.1939,0.0,-0.9808,0.0,0.1951,-0.981,-0.1939,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-0.981,-0.1939,0.0,-0.9622,-0.1939,-0.1914,-1.0,0.0,0.0,-0.9622,-0.1939,-0.1914,-0.9808,0.0,-0.1951,-0.9808,0.0,-0.1951,-0.9622,-0.1939,-0.1914,-0.9063,-0.1939,-0.3754,-0.9808,0.0,-0.1951,-0.9063,-0.1939,-0.3754,-0.9239,0.0,-0.3827,-0.9239,0.0,-0.3827,-0.9063,-0.1939,-0.3754,-0.8157,-0.1939,-0.545,-0.9239,0.0,-0.3827,-0.8157,-0.1939,-0.545,-0.8315,0.0,-0.5556,-0.8315,0.0,-0.5556,-0.8157,-0.1939,-0.545,-0.6937,-0.1939,-0.6937,-0.8315,0.0,-0.5556,-0.6937,-0.1939,-0.6937,-0.7071,0.0,-0.7071,-0.7071,0.0,-0.7071,-0.6937,-0.1939,-0.6937,-0.545,-0.1939,-0.8157,-0.7071,0.0,-0.7071,-0.545,-0.1939,-0.8157,-0.5556,0.0,-0.8315,-0.5556,0.0,-0.8315,-0.545,-0.1939,-0.8157,-0.3754,-0.1939,-0.9063,-0.5556,0.0,-0.8315,-0.3754,-0.1939,-0.9063,-0.3827,0.0,-0.9239,-0.3827,0.0,-0.9239,-0.3754,-0.1939,-0.9063,-0.1914,-0.1939,-0.9622,-0.3827,0.0,-0.9239,-0.1914,-0.1939,-0.9622,-0.1951,0.0,-0.9808,-0.1951,0.0,-0.9808,-0.1914,-0.1939,-0.9622,0.0,-0.1939,-0.981,-0.1951,0.0,-0.9808,0.0,-0.1939,-0.981,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,-0.1939,-0.981,0.1914,-0.1939,-0.9622,0.0,0.0,-1.0,0.1914,-0.1939,-0.9622,0.1951,0.0,-0.9808,0.1951,0.0,-0.9808,0.1914,-0.1939,-0.9622,0.3754,-0.1939,-0.9063,0.1951,0.0,-0.9808,0.3754,-0.1939,-0.9063,0.3827,0.0,-0.9239,0.3827,0.0,-0.9239,0.3754,-0.1939,-0.9063,0.545,-0.1939,-0.8157,0.3827,0.0,-0.9239,0.545,-0.1939,-0.8157,0.5556,0.0,-0.8315,0.5556,0.0,-0.8315,0.545,-0.1939,-0.8157,0.6937,-0.1939,-0.6937,0.5556,0.0,-0.8315,0.6937,-0.1939,-0.6937,0.7071,0.0,-0.7071,0.7071,0.0,-0.7071,0.6937,-0.1939,-0.6937,0.8157,-0.1939,-0.545,0.7071,0.0,-0.7071,0.8157,-0.1939,-0.545,0.8315,0.0,-0.5556,0.8315,0.0,-0.5556,0.8157,-0.1939,-0.545,0.9063,-0.1939,-0.3754,0.8315,0.0,-0.5556,0.9063,-0.1939,-0.3754,0.9239,0.0,-0.3827,0.9239,0.0,-0.3827,0.9063,-0.1939,-0.3754,0.9622,-0.1939,-0.1914,0.9239,0.0,-0.3827,0.9622,-0.1939,-0.1914,0.9808,0.0,-0.1951,0.9808,0.0,-0.1951,0.9622,-0.1939,-0.1914,0.981,-0.1939,0.0,0.9808,0.0,-0.1951,0.981,-0.1939,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.981,-0.1939,0.0,0.9622,-0.1939,0.1914,1.0,0.0,0.0,0.9622,-0.1939,0.1914,0.9808,0.0,0.1951,0.9808,0.0,0.1951,0.9622,-0.1939,0.1914,0.9063,-0.1939,0.3754,0.9808,0.0,0.1951,0.9063,-0.1939,0.3754,0.9239,0.0,0.3827,0.9239,0.0,0.3827,0.9063,-0.1939,0.3754,0.8157,-0.1939,0.545,0.9239,0.0,0.3827,0.8157,-0.1939,0.545,0.8315,0.0,0.5556,0.8315,0.0,0.5556,0.8157,-0.1939,0.545,0.6937,-0.1939,0.6937,0.8315,0.0,0.5556,0.6937,-0.1939,0.6937,0.7071,0.0,0.7071,0.7071,0.0,0.7071,0.6937,-0.1939,0.6937,0.545,-0.1939,0.8157,0.7071,0.0,0.7071,0.545,-0.1939,0.8157,0.5556,0.0,0.8315,0.5556,0.0,0.8315,0.545,-0.1939,0.8157,0.3754,-0.1939,0.9063,0.5556,0.0,0.8315,0.3754,-0.1939,0.9063,0.3827,0.0,0.9239,0.3827,0.0,0.9239,0.3754,-0.1939,0.9063,0.1914,-0.1939,0.9622,0.3827,0.0,0.9239,0.1914,-0.1939,0.9622,0.1951,0.0,0.9808,0.1951,0.0,0.9808,0.1914,-0.1939,0.9622,0.0,-0.1939,0.981,0.1951,0.0,0.9808,0.0,-0.1939,0.981,0.0,0.0,1.0,0.0,-0.1939,0.981,0.0,-0.3805,0.9248,-0.1804,-0.3805,0.907,0.0,-0.1939,0.981,-0.1804,-0.3805,0.907,-0.1914,-0.1939,0.9622,-0.1914,-0.1939,0.9622,-0.1804,-0.3805,0.907,-0.3539,-0.3805,0.8544,-0.1914,-0.1939,0.9622,-0.3539,-0.3805,0.8544,-0.3754,-0.1939,0.9063,-0.3754,-0.1939,0.9063,-0.3539,-0.3805,0.8544,-0.5138,-0.3805,0.7689,-0.3754,-0.1939,0.9063,-0.5138,-0.3805,0.7689,-0.545,-0.1939,0.8157,-0.545,-0.1939,0.8157,-0.5138,-0.3805,0.7689,-0.6539,-0.3805,0.6539,-0.545,-0.1939,0.8157,-0.6539,-0.3805,0.6539,-0.6937,-0.1939,0.6937,-0.6937,-0.1939,0.6937,-0.6539,-0.3805,0.6539,-0.7689,-0.3805,0.5138,-0.6937,-0.1939,0.6937,-0.7689,-0.3805,0.5138,-0.8157,-0.1939,0.545,-0.8157,-0.1939,0.545,-0.7689,-0.3805,0.5138,-0.8544,-0.3805,0.3539,-0.8157,-0.1939,0.545,-0.8544,-0.3805,0.3539,-0.9063,-0.1939,0.3754,-0.9063,-0.1939,0.3754,-0.8544,-0.3805,0.3539,-0.907,-0.3805,0.1804,-0.9063,-0.1939,0.3754,-0.907,-0.3805,0.1804,-0.9622,-0.1939,0.1914,-0.9622,-0.1939,0.1914,-0.907,-0.3805,0.1804,-0.9248,-0.3805,0.0,-0.9622,-0.1939,0.1914,-0.9248,-0.3805,0.0,-0.981,-0.1939,0.0,-0.981,-0.1939,0.0,-0.9248,-0.3805,0.0,-0.907,-0.3805,-0.1804,-0.981,-0.1939,0.0,-0.907,-0.3805,-0.1804,-0.9622,-0.1939,-0.1914,-0.9622,-0.1939,-0.1914,-0.907,-0.3805,-0.1804,-0.8544,-0.3805,-0.3539,-0.9622,-0.1939,-0.1914,-0.8544,-0.3805,-0.3539,-0.9063,-0.1939,-0.3754,-0.9063,-0.1939,-0.3754,-0.8544,-0.3805,-0.3539,-0.7689,-0.3805,-0.5138,-0.9063,-0.1939,-0.3754,-0.7689,-0.3805,-0.5138,-0.8157,-0.1939,-0.545,-0.8157,-0.1939,-0.545,-0.7689,-0.3805,-0.5138,-0.6539,-0.3805,-0.6539,-0.8157,-0.1939,-0.545,-0.6539,-0.3805,-0.6539,-0.6937,-0.1939,-0.6937,-0.6937,-0.1939,-0.6937,-0.6539,-0.3805,-0.6539,-0.5138,-0.3805,-0.7689,-0.6937,-0.1939,-0.6937,-0.5138,-0.3805,-0.7689,-0.545,-0.1939,-0.8157,-0.545,-0.1939,-0.8157,-0.5138,-0.3805,-0.7689,-0.3539,-0.3805,-0.8544,-0.545,-0.1939,-0.8157,-0.3539,-0.3805,-0.8544,-0.3754,-0.1939,-0.9063,-0.3754,-0.1939,-0.9063,-0.3539,-0.3805,-0.8544,-0.1804,-0.3805,-0.907,-0.3754,-0.1939,-0.9063,-0.1804,-0.3805,-0.907,-0.1914,-0.1939,-0.9622,-0.1914,-0.1939,-0.9622,-0.1804,-0.3805,-0.907,0.0,-0.3805,-0.9248,-0.1914,-0.1939,-0.9622,0.0,-0.3805,-0.9248,0.0,-0.1939,-0.981,0.0,-0.1939,-0.981,0.0,-0.3805,-0.9248,0.1804,-0.3805,-0.907,0.0,-0.1939,-0.981,0.1804,-0.3805,-0.907,0.1914,-0.1939,-0.9622,0.1914,-0.1939,-0.9622,0.1804,-0.3805,-0.907,0.3539,-0.3805,-0.8544,0.1914,-0.1939,-0.9622,0.3539,-0.3805,-0.8544,0.3754,-0.1939,-0.9063,0.3754,-0.1939,-0.9063,0.3539,-0.3805,-0.8544,0.5138,-0.3805,-0.7689,0.3754,-0.1939,-0.9063,0.5138,-0.3805,-0.7689,0.545,-0.1939,-0.8157,0.545,-0.1939,-0.8157,0.5138,-0.3805,-0.7689,0.6539,-0.3805,-0.6539,0.545,-0.1939,-0.8157,0.6539,-0.3805,-0.6539,0.6937,-0.1939,-0.6937,0.6937,-0.1939,-0.6937,0.6539,-0.3805,-0.6539,0.7689,-0.3805,-0.5138,0.6937,-0.1939,-0.6937,0.7689,-0.3805,-0.5138,0.8157,-0.1939,-0.545,0.8157,-0.1939,-0.545,0.7689,-0.3805,-0.5138,0.8544,-0.3805,-0.3539,0.8157,-0.1939,-0.545,0.8544,-0.3805,-0.3539,0.9063,-0.1939,-0.3754,0.9063,-0.1939,-0.3754,0.8544,-0.3805,-0.3539,0.907,-0.3805,-0.1804,0.9063,-0.1939,-0.3754,0.907,-0.3805,-0.1804,0.9622,-0.1939,-0.1914,0.9622,-0.1939,-0.1914,0.907,-0.3805,-0.1804,0.9248,-0.3805,0.0,0.9622,-0.1939,-0.1914,0.9248,-0.3805,0.0,0.981,-0.1939,0.0,0.981,-0.1939,0.0,0.9248,-0.3805,0.0,0.907,-0.3805,0.1804,0.981,-0.1939,0.0,0.907,-0.3805,0.1804,0.9622,-0.1939,0.1914,0.9622,-0.1939,0.1914,0.907,-0.3805,0.1804,0.8544,-0.3805,0.3539,0.9622,-0.1939,0.1914,0.8544,-0.3805,0.3539,0.9063,-0.1939,0.3754,0.9063,-0.1939,0.3754,0.8544,-0.3805,0.3539,0.7689,-0.3805,0.5138,0.9063,-0.1939,0.3754,0.7689,-0.3805,0.5138,0.8157,-0.1939,0.545,0.8157,-0.1939,0.545,0.7689,-0.3805,0.5138,0.6539,-0.3805,0.6539,0.8157,-0.1939,0.545,0.6539,-0.3805,0.6539,0.6937,-0.1939,0.6937,0.6937,-0.1939,0.6937,0.6539,-0.3805,0.6539,0.5138,-0.3805,0.7689,0.6937,-0.1939,0.6937,0.5138,-0.3805,0.7689,0.545,-0.1939,0.8157,0.545,-0.1939,0.8157,0.5138,-0.3805,0.7689,0.3539,-0.3805,0.8544,0.545,-0.1939,0.8157,0.3539,-0.3805,0.8544,0.3754,-0.1939,0.9063,0.3754,-0.1939,0.9063,0.3539,-0.3805,0.8544,0.1804,-0.3805,0.907,0.3754,-0.1939,0.9063,0.1804,-0.3805,0.907,0.1914,-0.1939,0.9622,0.1914,-0.1939,0.9622,0.1804,-0.3805,0.907,0.0,-0.3805,0.9248,0.1914,-0.1939,0.9622,0.0,-0.3805,0.9248,0.0,-0.1939,0.981,0.0,-0.3805,0.9248,0.0,-0.5528,0.8333,-0.1626,-0.5528,0.8173,0.0,-0.3805,0.9248,-0.1626,-0.5528,0.8173,-0.1804,-0.3805,0.907,-0.1804,-0.3805,0.907,-0.1626,-0.5528,0.8173,-0.3189,-0.5528,0.7699,-0.1804,-0.3805,0.907,-0.3189,-0.5528,0.7699,-0.3539,-0.3805,0.8544,-0.3539,-0.3805,0.8544,-0.3189,-0.5528,0.7699,-0.463,-0.5528,0.6929,-0.3539,-0.3805,0.8544,-0.463,-0.5528,0.6929,-0.5138,-0.3805,0.7689,-0.5138,-0.3805,0.7689,-0.463,-0.5528,0.6929,-0.5893,-0.5528,0.5893,-0.5138,-0.3805,0.7689,-0.5893,-0.5528,0.5893,-0.6539,-0.3805,0.6539,-0.6539,-0.3805,0.6539,-0.5893,-0.5528,0.5893,-0.6929,-0.5528,0.463,-0.6539,-0.3805,0.6539,-0.6929,-0.5528,0.463,-0.7689,-0.3805,0.5138,-0.7689,-0.3805,0.5138,-0.6929,-0.5528,0.463,-0.7699,-0.5528,0.3189,-0.7689,-0.3805,0.5138,-0.7699,-0.5528,0.3189,-0.8544,-0.3805,0.3539,-0.8544,-0.3805,0.3539,-0.7699,-0.5528,0.3189,-0.8173,-0.5528,0.1626,-0.8544,-0.3805,0.3539,-0.8173,-0.5528,0.1626,-0.907,-0.3805,0.1804,-0.907,-0.3805,0.1804,-0.8173,-0.5528,0.1626,-0.8333,-0.5528,0.0,-0.907,-0.3805,0.1804,-0.8333,-0.5528,0.0,-0.9248,-0.3805,0.0,-0.9248,-0.3805,0.0,-0.8333,-0.5528,0.0,-0.8173,-0.5528,-0.1626,-0.9248,-0.3805,0.0,-0.8173,-0.5528,-0.1626,-0.907,-0.3805,-0.1804,-0.907,-0.3805,-0.1804,-0.8173,-0.5528,-0.1626,-0.7699,-0.5528,-0.3189,-0.907,-0.3805,-0.1804,-0.7699,-0.5528,-0.3189,-0.8544,-0.3805,-0.3539,-0.8544,-0.3805,-0.3539,-0.7699,-0.5528,-0.3189,-0.6929,-0.5528,-0.463,-0.8544,-0.3805,-0.3539,-0.6929,-0.5528,-0.463,-0.7689,-0.3805,-0.5138,-0.7689,-0.3805,-0.5138,-0.6929,-0.5528,-0.463,-0.5893,-0.5528,-0.5893,-0.7689,-0.3805,-0.5138,-0.5893,-0.5528,-0.5893,-0.6539,-0.3805,-0.6539,-0.6539,-0.3805,-0.6539,-0.5893,-0.5528,-0.5893,-0.463,-0.5528,-0.6929,-0.6539,-0.3805,-0.6539,-0.463,-0.5528,-0.6929,-0.5138,-0.3805,-0.7689,-0.5138,-0.3805,-0.7689,-0.463,-0.5528,-0.6929,-0.3189,-0.5528,-0.7699,-0.5138,-0.3805,-0.7689,-0.3189,-0.5528,-0.7699,-0.3539,-0.3805,-0.8544,-0.3539,-0.3805,-0.8544,-0.3189,-0.5528,-0.7699,-0.1626,-0.5528,-0.8173,-0.3539,-0.3805,-0.8544,-0.1626,-0.5528,-0.8173,-0.1804,-0.3805,-0.907,-0.1804,-0.3805,-0.907,-0.1626,-0.5528,-0.8173,0.0,-0.5528,-0.8333,-0.1804,-0.3805,-0.907,0.0,-0.5528,-0.8333,0.0,-0.3805,-0.9248,0.0,-0.3805,-0.9248,0.0,-0.5528,-0.8333,0.1626,-0.5528,-0.8173,0.0,-0.3805,-0.9248,0.1626,-0.5528,-0.8173,0.1804,-0.3805,-0.907,0.1804,-0.3805,-0.907,0.1626,-0.5528,-0.8173,0.3189,-0.5528,-0.7699,0.1804,-0.3805,-0.907,0.3189,-0.5528,-0.7699,0.3539,-0.3805,-0.8544,0.3539,-0.3805,-0.8544,0.3189,-0.5528,-0.7699,0.463,-0.5528,-0.6929,0.3539,-0.3805,-0.8544,0.463,-0.5528,-0.6929,0.5138,-0.3805,-0.7689,0.5138,-0.3805,-0.7689,0.463,-0.5528,-0.6929,0.5893,-0.5528,-0.5893,0.5138,-0.3805,-0.7689,0.5893,-0.5528,-0.5893,0.6539,-0.3805,-0.6539,0.6539,-0.3805,-0.6539,0.5893,-0.5528,-0.5893,0.6929,-0.5528,-0.463,0.6539,-0.3805,-0.6539,0.6929,-0.5528,-0.463,0.7689,-0.3805,-0.5138,0.7689,-0.3805,-0.5138,0.6929,-0.5528,-0.463,0.7699,-0.5528,-0.3189,0.7689,-0.3805,-0.5138,0.7699,-0.5528,-0.3189,0.8544,-0.3805,-0.3539,0.8544,-0.3805,-0.3539,0.7699,-0.5528,-0.3189,0.8173,-0.5528,-0.1626,0.8544,-0.3805,-0.3539,0.8173,-0.5528,-0.1626,0.907,-0.3805,-0.1804,0.907,-0.3805,-0.1804,0.8173,-0.5528,-0.1626,0.8333,-0.5528,0.0,0.907,-0.3805,-0.1804,0.8333,-0.5528,0.0,0.9248,-0.3805,0.0,0.9248,-0.3805,0.0,0.8333,-0.5528,0.0,0.8173,-0.5528,0.1626,0.9248,-0.3805,0.0,0.8173,-0.5528,0.1626,0.907,-0.3805,0.1804,0.907,-0.3805,0.1804,0.8173,-0.5528,0.1626,0.7699,-0.5528,0.3189,0.907,-0.3805,0.1804,0.7699,-0.5528,0.3189,0.8544,-0.3805,0.3539,0.8544,-0.3805,0.3539,0.7699,-0.5528,0.3189,0.6929,-0.5528,0.463,0.8544,-0.3805,0.3539,0.6929,-0.5528,0.463,0.7689,-0.3805,0.5138,0.7689,-0.3805,0.5138,0.6929,-0.5528,0.463,0.5893,-0.5528,0.5893,0.7689,-0.3805,0.5138,0.5893,-0.5528,0.5893,0.6539,-0.3805,0.6539,0.6539,-0.3805,0.6539,0.5893,-0.5528,0.5893,0.463,-0.5528,0.6929,0.6539,-0.3805,0.6539,0.463,-0.5528,0.6929,0.5138,-0.3805,0.7689,0.5138,-0.3805,0.7689,0.463,-0.5528,0.6929,0.3189,-0.5528,0.7699,0.5138,-0.3805,0.7689,0.3189,-0.5528,0.7699,0.3539,-0.3805,0.8544,0.3539,-0.3805,0.8544,0.3189,-0.5528,0.7699,0.1626,-0.5528,0.8173,0.3539,-0.3805,0.8544,0.1626,-0.5528,0.8173,0.1804,-0.3805,0.907,0.1804,-0.3805,0.907,0.1626,-0.5528,0.8173,0.0,-0.5528,0.8333,0.1804,-0.3805,0.907,0.0,-0.5528,0.8333,0.0,-0.3805,0.9248,0.0,-0.5528,0.8333,0.0,-0.7041,0.7101,-0.1385,-0.7041,0.6965,0.0,-0.5528,0.8333,-0.1385,-0.7041,0.6965,-0.1626,-0.5528,0.8173,-0.1626,-0.5528,0.8173,-0.1385,-0.7041,0.6965,-0.2718,-0.7041,0.6561,-0.1626,-0.5528,0.8173,-0.2718,-0.7041,0.6561,-0.3189,-0.5528,0.7699,-0.3189,-0.5528,0.7699,-0.2718,-0.7041,0.6561,-0.3945,-0.7041,0.5905,-0.3189,-0.5528,0.7699,-0.3945,-0.7041,0.5905,-0.463,-0.5528,0.6929,-0.463,-0.5528,0.6929,-0.3945,-0.7041,0.5905,-0.5021,-0.7041,0.5021,-0.463,-0.5528,0.6929,-0.5021,-0.7041,0.5021,-0.5893,-0.5528,0.5893,-0.5893,-0.5528,0.5893,-0.5021,-0.7041,0.5021,-0.5905,-0.7041,0.3945,-0.5893,-0.5528,0.5893,-0.5905,-0.7041,0.3945,-0.6929,-0.5528,0.463,-0.6929,-0.5528,0.463,-0.5905,-0.7041,0.3945,-0.6561,-0.7041,0.2718,-0.6929,-0.5528,0.463,-0.6561,-0.7041,0.2718,-0.7699,-0.5528,0.3189,-0.7699,-0.5528,0.3189,-0.6561,-0.7041,0.2718,-0.6965,-0.7041,0.1385,-0.7699,-0.5528,0.3189,-0.6965,-0.7041,0.1385,-0.8173,-0.5528,0.1626,-0.8173,-0.5528,0.1626,-0.6965,-0.7041,0.1385,-0.7101,-0.7041,0.0,-0.8173,-0.5528,0.1626,-0.7101,-0.7041,0.0,-0.8333,-0.5528,0.0,-0.8333,-0.5528,0.0,-0.7101,-0.7041,0.0,-0.6965,-0.7041,-0.1385,-0.8333,-0.5528,0.0,-0.6965,-0.7041,-0.1385,-0.8173,-0.5528,-0.1626,-0.8173,-0.5528,-0.1626,-0.6965,-0.7041,-0.1385,-0.6561,-0.7041,-0.2718,-0.8173,-0.5528,-0.1626,-0.6561,-0.7041,-0.2718,-0.7699,-0.5528,-0.3189,-0.7699,-0.5528,-0.3189,-0.6561,-0.7041,-0.2718,-0.5905,-0.7041,-0.3945,-0.7699,-0.5528,-0.3189,-0.5905,-0.7041,-0.3945,-0.6929,-0.5528,-0.463,-0.6929,-0.5528,-0.463,-0.5905,-0.7041,-0.3945,-0.5021,-0.7041,-0.5021,-0.6929,-0.5528,-0.463,-0.5021,-0.7041,-0.5021,-0.5893,-0.5528,-0.5893,-0.5893,-0.5528,-0.5893,-0.5021,-0.7041,-0.5021,-0.3945,-0.7041,-0.5905,-0.5893,-0.5528,-0.5893,-0.3945,-0.7041,-0.5905,-0.463,-0.5528,-0.6929,-0.463,-0.5528,-0.6929,-0.3945,-0.7041,-0.5905,-0.2718,-0.7041,-0.6561,-0.463,-0.5528,-0.6929,-0.2718,-0.7041,-0.6561,-0.3189,-0.5528,-0.7699,-0.3189,-0.5528,-0.7699,-0.2718,-0.7041,-0.6561,-0.1385,-0.7041,-0.6965,-0.3189,-0.5528,-0.7699,-0.1385,-0.7041,-0.6965,-0.1626,-0.5528,-0.8173,-0.1626,-0.5528,-0.8173,-0.1385,-0.7041,-0.6965,0.0,-0.7041,-0.7101,-0.1626,-0.5528,-0.8173,0.0,-0.7041,-0.7101,0.0,-0.5528,-0.8333,0.0,-0.5528,-0.8333,0.0,-0.7041,-0.7101,0.1385,-0.7041,-0.6965,0.0,-0.5528,-0.8333,0.1385,-0.7041,-0.6965,0.1626,-0.5528,-0.8173,0.1626,-0.5528,-0.8173,0.1385,-0.7041,-0.6965,0.2718,-0.7041,-0.6561,0.1626,-0.5528,-0.8173,0.2718,-0.7041,-0.6561,0.3189,-0.5528,-0.7699,0.3189,-0.5528,-0.7699,0.2718,-0.7041,-0.6561,0.3945,-0.7041,-0.5905,0.3189,-0.5528,-0.7699,0.3945,-0.7041,-0.5905,0.463,-0.5528,-0.6929,0.463,-0.5528,-0.6929,0.3945,-0.7041,-0.5905,0.5021,-0.7041,-0.5021,0.463,-0.5528,-0.6929,0.5021,-0.7041,-0.5021,0.5893,-0.5528,-0.5893,0.5893,-0.5528,-0.5893,0.5021,-0.7041,-0.5021,0.5905,-0.7041,-0.3945,0.5893,-0.5528,-0.5893,0.5905,-0.7041,-0.3945,0.6929,-0.5528,-0.463,0.6929,-0.5528,-0.463,0.5905,-0.7041,-0.3945,0.6561,-0.7041,-0.2718,0.6929,-0.5528,-0.463,0.6561,-0.7041,-0.2718,0.7699,-0.5528,-0.3189,0.7699,-0.5528,-0.3189,0.6561,-0.7041,-0.2718,0.6965,-0.7041,-0.1385,0.7699,-0.5528,-0.3189,0.6965,-0.7041,-0.1385,0.8173,-0.5528,-0.1626,0.8173,-0.5528,-0.1626,0.6965,-0.7041,-0.1385,0.7101,-0.7041,0.0,0.8173,-0.5528,-0.1626,0.7101,-0.7041,0.0,0.8333,-0.5528,0.0,0.8333,-0.5528,0.0,0.7101,-0.7041,0.0,0.6965,-0.7041,0.1385,0.8333,-0.5528,0.0,0.6965,-0.7041,0.1385,0.8173,-0.5528,0.1626,0.8173,-0.5528,0.1626,0.6965,-0.7041,0.1385,0.6561,-0.7041,0.2718,0.8173,-0.5528,0.1626,0.6561,-0.7041,0.2718,0.7699,-0.5528,0.3189,0.7699,-0.5528,0.3189,0.6561,-0.7041,0.2718,0.5905,-0.7041,0.3945,0.7699,-0.5528,0.3189,0.5905,-0.7041,0.3945,0.6929,-0.5528,0.463,0.6929,-0.5528,0.463,0.5905,-0.7041,0.3945,0.5021,-0.7041,0.5021,0.6929,-0.5528,0.463,0.5021,-0.7041,0.5021,0.5893,-0.5528,0.5893,0.5893,-0.5528,0.5893,0.5021,-0.7041,0.5021,0.3945,-0.7041,0.5905,0.5893,-0.5528,0.5893,0.3945,-0.7041,0.5905,0.463,-0.5528,0.6929,0.463,-0.5528,0.6929,0.3945,-0.7041,0.5905,0.2718,-0.7041,0.6561,0.463,-0.5528,0.6929,0.2718,-0.7041,0.6561,0.3189,-0.5528,0.7699,0.3189,-0.5528,0.7699,0.2718,-0.7041,0.6561,0.1385,-0.7041,0.6965,0.3189,-0.5528,0.7699,0.1385,-0.7041,0.6965,0.1626,-0.5528,0.8173,0.1626,-0.5528,0.8173,0.1385,-0.7041,0.6965,0.0,-0.7041,0.7101,0.1626,-0.5528,0.8173,0.0,-0.7041,0.7101,0.0,-0.5528,0.8333,0.0,-0.7041,0.7101,0.0,-0.8286,0.5598,-0.1092,-0.8286,0.549,0.0,-0.7041,0.7101,-0.1092,-0.8286,0.549,-0.1385,-0.7041,0.6965,-0.1385,-0.7041,0.6965,-0.1092,-0.8286,0.549,-0.2142,-0.8286,0.5172,-0.1385,-0.7041,0.6965,-0.2142,-0.8286,0.5172,-0.2718,-0.7041,0.6561,-0.2718,-0.7041,0.6561,-0.2142,-0.8286,0.5172,-0.311,-0.8286,0.4654,-0.2718,-0.7041,0.6561,-0.311,-0.8286,0.4654,-0.3945,-0.7041,0.5905,-0.3945,-0.7041,0.5905,-0.311,-0.8286,0.4654,-0.3958,-0.8286,0.3958,-0.3945,-0.7041,0.5905,-0.3958,-0.8286,0.3958,-0.5021,-0.7041,0.5021,-0.5021,-0.7041,0.5021,-0.3958,-0.8286,0.3958,-0.4654,-0.8286,0.311,-0.5021,-0.7041,0.5021,-0.4654,-0.8286,0.311,-0.5905,-0.7041,0.3945,-0.5905,-0.7041,0.3945,-0.4654,-0.8286,0.311,-0.5172,-0.8286,0.2142,-0.5905,-0.7041,0.3945,-0.5172,-0.8286,0.2142,-0.6561,-0.7041,0.2718,-0.6561,-0.7041,0.2718,-0.5172,-0.8286,0.2142,-0.549,-0.8286,0.1092,-0.6561,-0.7041,0.2718,-0.549,-0.8286,0.1092,-0.6965,-0.7041,0.1385,-0.6965,-0.7041,0.1385,-0.549,-0.8286,0.1092,-0.5598,-0.8286,0.0,-0.6965,-0.7041,0.1385,-0.5598,-0.8286,0.0,-0.7101,-0.7041,0.0,-0.7101,-0.7041,0.0,-0.5598,-0.8286,0.0,-0.549,-0.8286,-0.1092,-0.7101,-0.7041,0.0,-0.549,-0.8286,-0.1092,-0.6965,-0.7041,-0.1385,-0.6965,-0.7041,-0.1385,-0.549,-0.8286,-0.1092,-0.5172,-0.8286,-0.2142,-0.6965,-0.7041,-0.1385,-0.5172,-0.8286,-0.2142,-0.6561,-0.7041,-0.2718,-0.6561,-0.7041,-0.2718,-0.5172,-0.8286,-0.2142,-0.4654,-0.8286,-0.311,-0.6561,-0.7041,-0.2718,-0.4654,-0.8286,-0.311,-0.5905,-0.7041,-0.3945,-0.5905,-0.7041,-0.3945,-0.4654,-0.8286,-0.311,-0.3958,-0.8286,-0.3958,-0.5905,-0.7041,-0.3945,-0.3958,-0.8286,-0.3958,-0.5021,-0.7041,-0.5021,-0.5021,-0.7041,-0.5021,-0.3958,-0.8286,-0.3958,-0.311,-0.8286,-0.4654,-0.5021,-0.7041,-0.5021,-0.311,-0.8286,-0.4654,-0.3945,-0.7041,-0.5905,-0.3945,-0.7041,-0.5905,-0.311,-0.8286,-0.4654,-0.2142,-0.8286,-0.5172,-0.3945,-0.7041,-0.5905,-0.2142,-0.8286,-0.5172,-0.2718,-0.7041,-0.6561,-0.2718,-0.7041,-0.6561,-0.2142,-0.8286,-0.5172,-0.1092,-0.8286,-0.549,-0.2718,-0.7041,-0.6561,-0.1092,-0.8286,-0.549,-0.1385,-0.7041,-0.6965,-0.1385,-0.7041,-0.6965,-0.1092,-0.8286,-0.549,0.0,-0.8286,-0.5598,-0.1385,-0.7041,-0.6965,0.0,-0.8286,-0.5598,0.0,-0.7041,-0.7101,0.0,-0.7041,-0.7101,0.0,-0.8286,-0.5598,0.1092,-0.8286,-0.549,0.0,-0.7041,-0.7101,0.1092,-0.8286,-0.549,0.1385,-0.7041,-0.6965,0.1385,-0.7041,-0.6965,0.1092,-0.8286,-0.549,0.2142,-0.8286,-0.5172,0.1385,-0.7041,-0.6965,0.2142,-0.8286,-0.5172,0.2718,-0.7041,-0.6561,0.2718,-0.7041,-0.6561,0.2142,-0.8286,-0.5172,0.311,-0.8286,-0.4654,0.2718,-0.7041,-0.6561,0.311,-0.8286,-0.4654,0.3945,-0.7041,-0.5905,0.3945,-0.7041,-0.5905,0.311,-0.8286,-0.4654,0.3958,-0.8286,-0.3958,0.3945,-0.7041,-0.5905,0.3958,-0.8286,-0.3958,0.5021,-0.7041,-0.5021,0.5021,-0.7041,-0.5021,0.3958,-0.8286,-0.3958,0.4654,-0.8286,-0.311,0.5021,-0.7041,-0.5021,0.4654,-0.8286,-0.311,0.5905,-0.7041,-0.3945,0.5905,-0.7041,-0.3945,0.4654,-0.8286,-0.311,0.5172,-0.8286,-0.2142,0.5905,-0.7041,-0.3945,0.5172,-0.8286,-0.2142,0.6561,-0.7041,-0.2718,0.6561,-0.7041,-0.2718,0.5172,-0.8286,-0.2142,0.549,-0.8286,-0.1092,0.6561,-0.7041,-0.2718,0.549,-0.8286,-0.1092,0.6965,-0.7041,-0.1385,0.6965,-0.7041,-0.1385,0.549,-0.8286,-0.1092,0.5598,-0.8286,0.0,0.6965,-0.7041,-0.1385,0.5598,-0.8286,0.0,0.7101,-0.7041,0.0,0.7101,-0.7041,0.0,0.5598,-0.8286,0.0,0.549,-0.8286,0.1092,0.7101,-0.7041,0.0,0.549,-0.8286,0.1092,0.6965,-0.7041,0.1385,0.6965,-0.7041,0.1385,0.549,-0.8286,0.1092,0.5172,-0.8286,0.2142,0.6965,-0.7041,0.1385,0.5172,-0.8286,0.2142,0.6561,-0.7041,0.2718,0.6561,-0.7041,0.2718,0.5172,-0.8286,0.2142,0.4654,-0.8286,0.311,0.6561,-0.7041,0.2718,0.4654,-0.8286,0.311,0.5905,-0.7041,0.3945,0.5905,-0.7041,0.3945,0.4654,-0.8286,0.311,0.3958,-0.8286,0.3958,0.5905,-0.7041,0.3945,0.3958,-0.8286,0.3958,0.5021,-0.7041,0.5021,0.5021,-0.7041,0.5021,0.3958,-0.8286,0.3958,0.311,-0.8286,0.4654,0.5021,-0.7041,0.5021,0.311,-0.8286,0.4654,0.3945,-0.7041,0.5905,0.3945,-0.7041,0.5905,0.311,-0.8286,0.4654,0.2142,-0.8286,0.5172,0.3945,-0.7041,0.5905,0.2142,-0.8286,0.5172,0.2718,-0.7041,0.6561,0.2718,-0.7041,0.6561,0.2142,-0.8286,0.5172,0.1092,-0.8286,0.549,0.2718,-0.7041,0.6561,0.1092,-0.8286,0.549,0.1385,-0.7041,0.6965,0.1385,-0.7041,0.6965,0.1092,-0.8286,0.549,0.0,-0.8286,0.5598,0.1385,-0.7041,0.6965,0.0,-0.8286,0.5598,0.0,-0.7041,0.7101,0.0,-0.8286,0.5598,0.0,-0.9217,0.3879,-0.0757,-0.9217,0.3804,0.0,-0.8286,0.5598,-0.0757,-0.9217,0.3804,-0.1092,-0.8286,0.549,-0.1092,-0.8286,0.549,-0.0757,-0.9217,0.3804,-0.1484,-0.9217,0.3584,-0.1092,-0.8286,0.549,-0.1484,-0.9217,0.3584,-0.2142,-0.8286,0.5172,-0.2142,-0.8286,0.5172,-0.1484,-0.9217,0.3584,-0.2155,-0.9217,0.3225,-0.2142,-0.8286,0.5172,-0.2155,-0.9217,0.3225,-0.311,-0.8286,0.4654,-0.311,-0.8286,0.4654,-0.2155,-0.9217,0.3225,-0.2743,-0.9217,0.2743,-0.311,-0.8286,0.4654,-0.2743,-0.9217,0.2743,-0.3958,-0.8286,0.3958,-0.3958,-0.8286,0.3958,-0.2743,-0.9217,0.2743,-0.3225,-0.9217,0.2155,-0.3958,-0.8286,0.3958,-0.3225,-0.9217,0.2155,-0.4654,-0.8286,0.311,-0.4654,-0.8286,0.311,-0.3225,-0.9217,0.2155,-0.3584,-0.9217,0.1484,-0.4654,-0.8286,0.311,-0.3584,-0.9217,0.1484,-0.5172,-0.8286,0.2142,-0.5172,-0.8286,0.2142,-0.3584,-0.9217,0.1484,-0.3804,-0.9217,0.0757,-0.5172,-0.8286,0.2142,-0.3804,-0.9217,0.0757,-0.549,-0.8286,0.1092,-0.549,-0.8286,0.1092,-0.3804,-0.9217,0.0757,-0.3879,-0.9217,0.0,-0.549,-0.8286,0.1092,-0.3879,-0.9217,0.0,-0.5598,-0.8286,0.0,-0.5598,-0.8286,0.0,-0.3879,-0.9217,0.0,-0.3804,-0.9217,-0.0757,-0.5598,-0.8286,0.0,-0.3804,-0.9217,-0.0757,-0.549,-0.8286,-0.1092,-0.549,-0.8286,-0.1092,-0.3804,-0.9217,-0.0757,-0.3584,-0.9217,-0.1484,-0.549,-0.8286,-0.1092,-0.3584,-0.9217,-0.1484,-0.5172,-0.8286,-0.2142,-0.5172,-0.8286,-0.2142,-0.3584,-0.9217,-0.1484,-0.3225,-0.9217,-0.2155,-0.5172,-0.8286,-0.2142,-0.3225,-0.9217,-0.2155,-0.4654,-0.8286,-0.311,-0.4654,-0.8286,-0.311,-0.3225,-0.9217,-0.2155,-0.2743,-0.9217,-0.2743,-0.4654,-0.8286,-0.311,-0.2743,-0.9217,-0.2743,-0.3958,-0.8286,-0.3958,-0.3958,-0.8286,-0.3958,-0.2743,-0.9217,-0.2743,-0.2155,-0.9217,-0.3225,-0.3958,-0.8286,-0.3958,-0.2155,-0.9217,-0.3225,-0.311,-0.8286,-0.4654,-0.311,-0.8286,-0.4654,-0.2155,-0.9217,-0.3225,-0.1484,-0.9217,-0.3584,-0.311,-0.8286,-0.4654,-0.1484,-0.9217,-0.3584,-0.2142,-0.8286,-0.5172,-0.2142,-0.8286,-0.5172,-0.1484,-0.9217,-0.3584,-0.0757,-0.9217,-0.3804,-0.2142,-0.8286,-0.5172,-0.0757,-0.9217,-0.3804,-0.1092,-0.8286,-0.549,-0.1092,-0.8286,-0.549,-0.0757,-0.9217,-0.3804,0.0,-0.9217,-0.3879,-0.1092,-0.8286,-0.549,0.0,-0.9217,-0.3879,0.0,-0.8286,-0.5598,0.0,-0.8286,-0.5598,0.0,-0.9217,-0.3879,0.0757,-0.9217,-0.3804,0.0,-0.8286,-0.5598,0.0757,-0.9217,-0.3804,0.1092,-0.8286,-0.549,0.1092,-0.8286,-0.549,0.0757,-0.9217,-0.3804,0.1484,-0.9217,-0.3584,0.1092,-0.8286,-0.549,0.1484,-0.9217,-0.3584,0.2142,-0.8286,-0.5172,0.2142,-0.8286,-0.5172,0.1484,-0.9217,-0.3584,0.2155,-0.9217,-0.3225,0.2142,-0.8286,-0.5172,0.2155,-0.9217,-0.3225,0.311,-0.8286,-0.4654,0.311,-0.8286,-0.4654,0.2155,-0.9217,-0.3225,0.2743,-0.9217,-0.2743,0.311,-0.8286,-0.4654,0.2743,-0.9217,-0.2743,0.3958,-0.8286,-0.3958,0.3958,-0.8286,-0.3958,0.2743,-0.9217,-0.2743,0.3225,-0.9217,-0.2155,0.3958,-0.8286,-0.3958,0.3225,-0.9217,-0.2155,0.4654,-0.8286,-0.311,0.4654,-0.8286,-0.311,0.3225,-0.9217,-0.2155,0.3584,-0.9217,-0.1484,0.4654,-0.8286,-0.311,0.3584,-0.9217,-0.1484,0.5172,-0.8286,-0.2142,0.5172,-0.8286,-0.2142,0.3584,-0.9217,-0.1484,0.3804,-0.9217,-0.0757,0.5172,-0.8286,-0.2142,0.3804,-0.9217,-0.0757,0.549,-0.8286,-0.1092,0.549,-0.8286,-0.1092,0.3804,-0.9217,-0.0757,0.3879,-0.9217,0.0,0.549,-0.8286,-0.1092,0.3879,-0.9217,0.0,0.5598,-0.8286,0.0,0.5598,-0.8286,0.0,0.3879,-0.9217,0.0,0.3804,-0.9217,0.0757,0.5598,-0.8286,0.0,0.3804,-0.9217,0.0757,0.549,-0.8286,0.1092,0.549,-0.8286,0.1092,0.3804,-0.9217,0.0757,0.3584,-0.9217,0.1484,0.549,-0.8286,0.1092,0.3584,-0.9217,0.1484,0.5172,-0.8286,0.2142,0.5172,-0.8286,0.2142,0.3584,-0.9217,0.1484,0.3225,-0.9217,0.2155,0.5172,-0.8286,0.2142,0.3225,-0.9217,0.2155,0.4654,-0.8286,0.311,0.4654,-0.8286,0.311,0.3225,-0.9217,0.2155,0.2743,-0.9217,0.2743,0.4654,-0.8286,0.311,0.2743,-0.9217,0.2743,0.3958,-0.8286,0.3958,0.3958,-0.8286,0.3958,0.2743,-0.9217,0.2743,0.2155,-0.9217,0.3225,0.3958,-0.8286,0.3958,0.2155,-0.9217,0.3225,0.311,-0.8286,0.4654,0.311,-0.8286,0.4654,0.2155,-0.9217,0.3225,0.1484,-0.9217,0.3584,0.311,-0.8286,0.4654,0.1484,-0.9217,0.3584,0.2142,-0.8286,0.5172,0.2142,-0.8286,0.5172,0.1484,-0.9217,0.3584,0.0757,-0.9217,0.3804,0.2142,-0.8286,0.5172,0.0757,-0.9217,0.3804,0.1092,-0.8286,0.549,0.1092,-0.8286,0.549,0.0757,-0.9217,0.3804,0.0,-0.9217,0.3879,0.1092,-0.8286,0.549,0.0,-0.9217,0.3879,0.0,-0.8286,0.5598,0.0,-0.9217,0.3879,0.0,-0.9796,0.201,-0.0392,-0.9796,0.1971,0.0,-0.9217,0.3879,-0.0392,-0.9796,0.1971,-0.0757,-0.9217,0.3804,-0.0757,-0.9217,0.3804,-0.0392,-0.9796,0.1971,-0.0769,-0.9796,0.1857,-0.0757,-0.9217,0.3804,-0.0769,-0.9796,0.1857,-0.1484,-0.9217,0.3584,-0.1484,-0.9217,0.3584,-0.0769,-0.9796,0.1857,-0.1117,-0.9796,0.1671,-0.1484,-0.9217,0.3584,-0.1117,-0.9796,0.1671,-0.2155,-0.9217,0.3225,-0.2155,-0.9217,0.3225,-0.1117,-0.9796,0.1671,-0.1421,-0.9796,0.1421,-0.2155,-0.9217,0.3225,-0.1421,-0.9796,0.1421,-0.2743,-0.9217,0.2743,-0.2743,-0.9217,0.2743,-0.1421,-0.9796,0.1421,-0.1671,-0.9796,0.1117,-0.2743,-0.9217,0.2743,-0.1671,-0.9796,0.1117,-0.3225,-0.9217,0.2155,-0.3225,-0.9217,0.2155,-0.1671,-0.9796,0.1117,-0.1857,-0.9796,0.0769,-0.3225,-0.9217,0.2155,-0.1857,-0.9796,0.0769,-0.3584,-0.9217,0.1484,-0.3584,-0.9217,0.1484,-0.1857,-0.9796,0.0769,-0.1971,-0.9796,0.0392,-0.3584,-0.9217,0.1484,-0.1971,-0.9796,0.0392,-0.3804,-0.9217,0.0757,-0.3804,-0.9217,0.0757,-0.1971,-0.9796,0.0392,-0.201,-0.9796,0.0,-0.3804,-0.9217,0.0757,-0.201,-0.9796,0.0,-0.3879,-0.9217,0.0,-0.3879,-0.9217,0.0,-0.201,-0.9796,0.0,-0.1971,-0.9796,-0.0392,-0.3879,-0.9217,0.0,-0.1971,-0.9796,-0.0392,-0.3804,-0.9217,-0.0757,-0.3804,-0.9217,-0.0757,-0.1971,-0.9796,-0.0392,-0.1857,-0.9796,-0.0769,-0.3804,-0.9217,-0.0757,-0.1857,-0.9796,-0.0769,-0.3584,-0.9217,-0.1484,-0.3584,-0.9217,-0.1484,-0.1857,-0.9796,-0.0769,-0.1671,-0.9796,-0.1117,-0.3584,-0.9217,-0.1484,-0.1671,-0.9796,-0.1117,-0.3225,-0.9217,-0.2155,-0.3225,-0.9217,-0.2155,-0.1671,-0.9796,-0.1117,-0.1421,-0.9796,-0.1421,-0.3225,-0.9217,-0.2155,-0.1421,-0.9796,-0.1421,-0.2743,-0.9217,-0.2743,-0.2743,-0.9217,-0.2743,-0.1421,-0.9796,-0.1421,-0.1117,-0.9796,-0.1671,-0.2743,-0.9217,-0.2743,-0.1117,-0.9796,-0.1671,-0.2155,-0.9217,-0.3225,-0.2155,-0.9217,-0.3225,-0.1117,-0.9796,-0.1671,-0.0769,-0.9796,-0.1857,-0.2155,-0.9217,-0.3225,-0.0769,-0.9796,-0.1857,-0.1484,-0.9217,-0.3584,-0.1484,-0.9217,-0.3584,-0.0769,-0.9796,-0.1857,-0.0392,-0.9796,-0.1971,-0.1484,-0.9217,-0.3584,-0.0392,-0.9796,-0.1971,-0.0757,-0.9217,-0.3804,-0.0757,-0.9217,-0.3804,-0.0392,-0.9796,-0.1971,0.0,-0.9796,-0.201,-0.0757,-0.9217,-0.3804,0.0,-0.9796,-0.201,0.0,-0.9217,-0.3879,0.0,-0.9217,-0.3879,0.0,-0.9796,-0.201,0.0392,-0.9796,-0.1971,0.0,-0.9217,-0.3879,0.0392,-0.9796,-0.1971,0.0757,-0.9217,-0.3804,0.0757,-0.9217,-0.3804,0.0392,-0.9796,-0.1971,0.0769,-0.9796,-0.1857,0.0757,-0.9217,-0.3804,0.0769,-0.9796,-0.1857,0.1484,-0.9217,-0.3584,0.1484,-0.9217,-0.3584,0.0769,-0.9796,-0.1857,0.1117,-0.9796,-0.1671,0.1484,-0.9217,-0.3584,0.1117,-0.9796,-0.1671,0.2155,-0.9217,-0.3225,0.2155,-0.9217,-0.3225,0.1117,-0.9796,-0.1671,0.1421,-0.9796,-0.1421,0.2155,-0.9217,-0.3225,0.1421,-0.9796,-0.1421,0.2743,-0.9217,-0.2743,0.2743,-0.9217,-0.2743,0.1421,-0.9796,-0.1421,0.1671,-0.9796,-0.1117,0.2743,-0.9217,-0.2743,0.1671,-0.9796,-0.1117,0.3225,-0.9217,-0.2155,0.3225,-0.9217,-0.2155,0.1671,-0.9796,-0.1117,0.1857,-0.9796,-0.0769,0.3225,-0.9217,-0.2155,0.1857,-0.9796,-0.0769,0.3584,-0.9217,-0.1484,0.3584,-0.9217,-0.1484,0.1857,-0.9796,-0.0769,0.1971,-0.9796,-0.0392,0.3584,-0.9217,-0.1484,0.1971,-0.9796,-0.0392,0.3804,-0.9217,-0.0757,0.3804,-0.9217,-0.0757,0.1971,-0.9796,-0.0392,0.201,-0.9796,0.0,0.3804,-0.9217,-0.0757,0.201,-0.9796,0.0,0.3879,-0.9217,0.0,0.3879,-0.9217,0.0,0.201,-0.9796,0.0,0.1971,-0.9796,0.0392,0.3879,-0.9217,0.0,0.1971,-0.9796,0.0392,0.3804,-0.9217,0.0757,0.3804,-0.9217,0.0757,0.1971,-0.9796,0.0392,0.1857,-0.9796,0.0769,0.3804,-0.9217,0.0757,0.1857,-0.9796,0.0769,0.3584,-0.9217,0.1484,0.3584,-0.9217,0.1484,0.1857,-0.9796,0.0769,0.1671,-0.9796,0.1117,0.3584,-0.9217,0.1484,0.1671,-0.9796,0.1117,0.3225,-0.9217,0.2155,0.3225,-0.9217,0.2155,0.1671,-0.9796,0.1117,0.1421,-0.9796,0.1421,0.3225,-0.9217,0.2155,0.1421,-0.9796,0.1421,0.2743,-0.9217,0.2743,0.2743,-0.9217,0.2743,0.1421,-0.9796,0.1421,0.1117,-0.9796,0.1671,0.2743,-0.9217,0.2743,0.1117,-0.9796,0.1671,0.2155,-0.9217,0.3225,0.2155,-0.9217,0.3225,0.1117,-0.9796,0.1671,0.0769,-0.9796,0.1857,0.2155,-0.9217,0.3225,0.0769,-0.9796,0.1857,0.1484,-0.9217,0.3584,0.1484,-0.9217,0.3584,0.0769,-0.9796,0.1857,0.0392,-0.9796,0.1971,0.1484,-0.9217,0.3584,0.0392,-0.9796,0.1971,0.0757,-0.9217,0.3804,0.0757,-0.9217,0.3804,0.0392,-0.9796,0.1971,0.0,-0.9796,0.201,0.0757,-0.9217,0.3804,0.0,-0.9796,0.201,0.0,-0.9217,0.3879,0.0,-1.0,0.0,-0.0392,-0.9796,0.1971,0.0,-0.9796,0.201,0.0,-1.0,0.0,-0.0769,-0.9796,0.1857,-0.0392,-0.9796,0.1971,0.0,-1.0,0.0,-0.1117,-0.9796,0.1671,-0.0769,-0.9796,0.1857,0.0,-1.0,0.0,-0.1421,-0.9796,0.1421,-0.1117,-0.9796,0.1671,0.0,-1.0,0.0,-0.1671,-0.9796,0.1117,-0.1421,-0.9796,0.1421,0.0,-1.0,0.0,-0.1857,-0.9796,0.0769,-0.1671,-0.9796,0.1117,0.0,-1.0,0.0,-0.1971,-0.9796,0.0392,-0.1857,-0.9796,0.0769,0.0,-1.0,0.0,-0.201,-0.9796,0.0,-0.1971,-0.9796,0.0392,0.0,-1.0,0.0,-0.1971,-0.9796,-0.0392,-0.201,-0.9796,0.0,0.0,-1.0,0.0,-0.1857,-0.9796,-0.0769,-0.1971,-0.9796,-0.0392,0.0,-1.0,0.0,-0.1671,-0.9796,-0.1117,-0.1857,-0.9796,-0.0769,0.0,-1.0,0.0,-0.1421,-0.9796,-0.1421,-0.1671,-0.9796,-0.1117,0.0,-1.0,0.0,-0.1117,-0.9796,-0.1671,-0.1421,-0.9796,-0.1421,0.0,-1.0,0.0,-0.0769,-0.9796,-0.1857,-0.1117,-0.9796,-0.1671,0.0,-1.0,0.0,-0.0392,-0.9796,-0.1971,-0.0769,-0.9796,-0.1857,0.0,-1.0,0.0,0.0,-0.9796,-0.201,-0.0392,-0.9796,-0.1971,0.0,-1.0,0.0,0.0392,-0.9796,-0.1971,0.0,-0.9796,-0.201,0.0,-1.0,0.0,0.0769,-0.9796,-0.1857,0.0392,-0.9796,-0.1971,0.0,-1.0,0.0,0.1117,-0.9796,-0.1671,0.0769,-0.9796,-0.1857,0.0,-1.0,0.0,0.1421,-0.9796,-0.1421,0.1117,-0.9796,-0.1671,0.0,-1.0,0.0,0.1671,-0.9796,-0.1117,0.1421,-0.9796,-0.1421,0.0,-1.0,0.0,0.1857,-0.9796,-0.0769,0.1671,-0.9796,-0.1117,0.0,-1.0,0.0,0.1971,-0.9796,-0.0392,0.1857,-0.9796,-0.0769,0.0,-1.0,0.0,0.201,-0.9796,0.0,0.1971,-0.9796,-0.0392,0.0,-1.0,0.0,0.1971,-0.9796,0.0392,0.201,-0.9796,0.0,0.0,-1.0,0.0,0.1857,-0.9796,0.0769,0.1971,-0.9796,0.0392,0.0,-1.0,0.0,0.1671,-0.9796,0.1117,0.1857,-0.9796,0.0769,0.0,-1.0,0.0,0.1421,-0.9796,0.1421,0.1671,-0.9796,0.1117,0.0,-1.0,0.0,0.1117,-0.9796,0.1671,0.1421,-0.9796,0.1421,0.0,-1.0,0.0,0.0769,-0.9796,0.1857,0.1117,-0.9796,0.1671,0.0,-1.0,0.0,0.0392,-0.9796,0.1971,0.0769,-0.9796,0.1857,0.0,-1.0,0.0,0.0,-0.9796,0.201,0.0392,-0.9796,0.1971],"tangents":null,"uvs":[0.0,2.0,0.0,1.9375,0.0312,1.9375,0.0312,2.0,0.0312,1.9375,0.0625,1.9375,0.0625,2.0,0.0625,1.9375,0.0938,1.9375,0.0938,2.0,0.0938,1.9375,0.125,1.9375,0.125,2.0,0.125,1.9375,0.1562,1.9375,0.1562,2.0,0.1562,1.9375,0.1875,1.9375,0.1875,2.0,0.1875,1.9375,0.2187,1.9375,0.2187,2.0,0.2187,1.9375,0.25,1.9375,0.25,2.0,0.25,1.9375,0.2812,1.9375,0.2812,2.0,0.2812,1.9375,0.3125,1.9375,0.3125,2.0,0.3125,1.9375,0.3437,1.9375,0.3437,2.0,0.3437,1.9375,0.375,1.9375,0.375,2.0,0.375,1.9375,0.4062,1.9375,0.4062,2.0,0.4062,1.9375,0.4375,1.9375,0.4375,2.0,0.4375,1.9375,0.4688,1.9375,0.4688,2.0,0.4688,1.9375,0.5,1.9375,0.5,2.0,0.5,1.9375,0.5313,1.9375,0.5313,2.0,0.5313,1.9375,0.5625,1.9375,0.5625,2.0,0.5625,1.9375,0.5938,1.9375,0.5938,2.0,0.5938,1.9375,0.625,1.9375,0.625,2.0,0.625,1.9375,0.6563,1.9375,0.6563,2.0,0.6563,1.9375,0.6875,1.9375,0.6875,2.0,0.6875,1.9375,0.7188,1.9375,0.7188,2.0,0.7188,1.9375,0.75,1.9375,0.75,2.0,0.75,1.9375,0.7813,1.9375,0.7813,2.0,0.7813,1.9375,0.8125,1.9375,0.8125,2.0,0.8125,1.9375,0.8438,1.9375,0.8438,2.0,0.8438,1.9375,0.875,1.9375,0.875,2.0,0.875,1.9375,0.9063,1.9375,0.9063,2.0,0.9063,1.9375,0.9375,1.9375,0.9375,2.0,0.9375,1.9375,0.9688,1.9375,0.9688,2.0,0.9688,1.9375,1.0,1.9375,0.0,1.9375,0.0,1.875,0.0312,1.875,0.0,1.9375,0.0312,1.875,0.0312,1.9375,0.0312,1.9375,0.0312,1.875,0.0625,1.875,0.0312,1.9375,0.0625,1.875,0.0625,1.9375,0.0625,1.9375,0.0625,1.875,0.0938,1.875,0.0625,1.9375,0.0938,1.875,0.0938,1.9375,0.0938,1.9375,0.0938,1.875,0.125,1.875,0.0938,1.9375,0.125,1.875,0.125,1.9375,0.125,1.9375,0.125,1.875,0.1562,1.875,0.125,1.9375,0.1562,1.875,0.1562,1.9375,0.1562,1.9375,0.1562,1.875,0.1875,1.875,0.1562,1.9375,0.1875,1.875,0.1875,1.9375,0.1875,1.9375,0.1875,1.875,0.2187,1.875,0.1875,1.9375,0.2187,1.875,0.2187,1.9375,0.2187,1.9375,0.2187,1.875,0.25,1.875,0.2187,1.9375,0.25,1.875,0.25,1.9375,0.25,1.9375,0.25,1.875,0.2812,1.875,0.25,1.9375,0.2812,1.875,0.2812,1.9375,0.2812,1.9375,0.2812,1.875,0.3125,1.875,0.2812,1.9375,0.3125,1.875,0.3125,1.9375,0.3125,1.9375,0.3125,1.875,0.3437,1.875,0.3125,1.9375,0.3437,1.875,0.3437,1.9375,0.3437,1.9375,0.3437,1.875,0.375,1.875,0.3437,1.9375,0.375,1.875,0.375,1.9375,0.375,1.9375,0.375,1.875,0.4062,1.875,0.375,1.9375,0.4062,1.875,0.4062,1.9375,0.4062,1.9375,0.4062,1.875,0.4375,1.875,0.4062,1.9375,0.4375,1.875,0.4375,1.9375,0.4375,1.9375,0.4375,1.875,0.4688,1.875,0.4375,1.9375,0.4688,1.875,0.4688,1.9375,0.4688,1.9375,0.4688,1.875,0.5,1.875,0.4688,1.9375,0.5,1.875,0.5,1.9375,0.5,1.9375,0.5,1.875,0.5313,1.875,0.5,1.9375,0.5313,1.875,0.5313,1.9375,0.5313,1.9375,0.5313,1.875,0.5625,1.875,0.5313,1.9375,0.5625,1.875,0.5625,1.9375,0.5625,1.9375,0.5625,1.875,0.5938,1.875,0.5625,1.9375,0.5938,1.875,0.5938,1.9375,0.5938,1.9375,0.5938,1.875,0.625,1.875,0.5938,1.9375,0.625,1.875,0.625,1.9375,0.625,1.9375,0.625,1.875,0.6563,1.875,0.625,1.9375,0.6563,1.875,0.6563,1.9375,0.6563,1.9375,0.6563,1.875,0.6875,1.875,0.6563,1.9375,0.6875,1.875,0.6875,1.9375,0.6875,1.9375,0.6875,1.875,0.7188,1.875,0.6875,1.9375,0.7188,1.875,0.7188,1.9375,0.7188,1.9375,0.7188,1.875,0.75,1.875,0.7188,1.9375,0.75,1.875,0.75,1.9375,0.75,1.9375,0.75,1.875,0.7813,1.875,0.75,1.9375,0.7813,1.875,0.7813,1.9375,0.7813,1.9375,0.7813,1.875,0.8125,1.875,0.7813,1.9375,0.8125,1.875,0.8125,1.9375,0.8125,1.9375,0.8125,1.875,0.8438,1.875,0.8125,1.9375,0.8438,1.875,0.8438,1.9375,0.8438,1.9375,0.8438,1.875,0.875,1.875,0.8438,1.9375,0.875,1.875,0.875,1.9375,0.875,1.9375,0.875,1.875,0.9063,1.875,0.875,1.9375,0.9063,1.875,0.9063,1.9375,0.9063,1.9375,0.9063,1.875,0.9375,1.875,0.9063,1.9375,0.9375,1.875,0.9375,1.9375,0.9375,1.9375,0.9375,1.875,0.9688,1.875,0.9375,1.9375,0.9688,1.875,0.9688,1.9375,0.9688,1.9375,0.9688,1.875,1.0,1.875,0.9688,1.9375,1.0,1.875,1.0,1.9375,0.0,1.875,0.0,1.8125,0.0312,1.8125,0.0,1.875,0.0312,1.8125,0.0312,1.875,0.0312,1.875,0.0312,1.8125,0.0625,1.8125,0.0312,1.875,0.0625,1.8125,0.0625,1.875,0.0625,1.875,0.0625,1.8125,0.0938,1.8125,0.0625,1.875,0.0938,1.8125,0.0938,1.875,0.0938,1.875,0.0938,1.8125,0.125,1.8125,0.0938,1.875,0.125,1.8125,0.125,1.875,0.125,1.875,0.125,1.8125,0.1562,1.8125,0.125,1.875,0.1562,1.8125,0.1562,1.875,0.1562,1.875,0.1562,1.8125,0.1875,1.8125,0.1562,1.875,0.1875,1.8125,0.1875,1.875,0.1875,1.875,0.1875,1.8125,0.2187,1.8125,0.1875,1.875,0.2187,1.8125,0.2187,1.875,0.2187,1.875,0.2187,1.8125,0.25,1.8125,0.2187,1.875,0.25,1.8125,0.25,1.875,0.25,1.875,0.25,1.8125,0.2812,1.8125,0.25,1.875,0.2812,1.8125,0.2812,1.875,0.2812,1.875,0.2812,1.8125,0.3125,1.8125,0.2812,1.875,0.3125,1.8125,0.3125,1.875,0.3125,1.875,0.3125,1.8125,0.3437,1.8125,0.3125,1.875,0.3437,1.8125,0.3437,1.875,0.3437,1.875,0.3437,1.8125,0.375,1.8125,0.3437,1.875,0.375,1.8125,0.375,1.875,0.375,1.875,0.375,1.8125,0.4062,1.8125,0.375,1.875,0.4062,1.8125,0.4062,1.875,0.4062,1.875,0.4062,1.8125,0.4375,1.8125,0.4062,1.875,0.4375,1.8125,0.4375,1.875,0.4375,1.875,0.4375,1.8125,0.4688,1.8125,0.4375,1.875,0.4688,1.8125,0.4688,1.875,0.4688,1.875,0.4688,1.8125,0.5,1.8125,0.4688,1.875,0.5,1.8125,0.5,1.875,0.5,1.875,0.5,1.8125,0.5313,1.8125,0.5,1.875,0.5313,1.8125,0.5313,1.875,0.5313,1.875,0.5313,1.8125,0.5625,1.8125,0.5313,1.875,0.5625,1.8125,0.5625,1.875,0.5625,1.875,0.5625,1.8125,0.5938,1.8125,0.5625,1.875,0.5938,1.8125,0.5938,1.875,0.5938,1.875,0.5938,1.8125,0.625,1.8125,0.5938,1.875,0.625,1.8125,0.625,1.875,0.625,1.875,0.625,1.8125,0.6563,1.8125,0.625,1.875,0.6563,1.8125,0.6563,1.875,0.6563,1.875,0.6563,1.8125,0.6875,1.8125,0.6563,1.875,0.6875,1.8125,0.6875,1.875,0.6875,1.875,0.6875,1.8125,0.7188,1.8125,0.6875,1.875,0.7188,1.8125,0.7188,1.875,0.7188,1.875,0.7188,1.8125,0.75,1.8125,0.7188,1.875,0.75,1.8125,0.75,1.875,0.75,1.875,0.75,1.8125,0.7813,1.8125,0.75,1.875,0.7813,1.8125,0.7813,1.875,0.7813,1.875,0.7813,1.8125,0.8125,1.8125,0.7813,1.875,0.8125,1.8125,0.8125,1.875,0.8125,1.875,0.8125,1.8125,0.8438,1.8125,0.8125,1.875,0.8438,1.8125,0.8438,1.875,0.8438,1.875,0.8438,1.8125,0.875,1.8125,0.8438,1.875,0.875,1.8125,0.875,1.875,0.875,1.875,0.875,1.8125,0.9063,1.8125,0.875,1.875,0.9063,1.8125,0.9063,1.875,0.9063,1.875,0.9063,1.8125,0.9375,1.8125,0.9063,1.875,0.9375,1.8125,0.9375,1.875,0.9375,1.875,0.9375,1.8125,0.9688,1.8125,0.9375,1.875,0.9688,1.8125,0.9688,1.875,0.9688,1.875,0.9688,1.8125,1.0,1.8125,0.9688,1.875,1.0,1.8125,1.0,1.875,0.0,1.8125,0.0,1.75,0.0312,1.75,0.0,1.8125,0.0312,1.75,0.0312,1.8125,0.0312,1.8125,0.0312,1.75,0.0625,1.75,0.0312,1.8125,0.0625,1.75,0.0625,1.8125,0.0625,1.8125,0.0625,1.75,0.0938,1.75,0.0625,1.8125,0.0938,1.75,0.0938,1.8125,0.0938,1.8125,0.0938,1.75,0.125,1.75,0.0938,1.8125,0.125,1.75,0.125,1.8125,0.125,1.8125,0.125,1.75,0.1562,1.75,0.125,1.8125,0.1562,1.75,0.1562,1.8125,0.1562,1.8125,0.1562,1.75,0.1875,1.75,0.1562,1.8125,0.1875,1.75,0.1875,1.8125,0.1875,1.8125,0.1875,1.75,0.2187,1.75,0.1875,1.8125,0.2187,1.75,0.2187,1.8125,0.2187,1.8125,0.2187,1.75,0.25,1.75,0.2187,1.8125,0.25,1.75,0.25,1.8125,0.25,1.8125,0.25,1.75,0.2812,1.75,0.25,1.8125,0.2812,1.75,0.2812,1.8125,0.2812,1.8125,0.2812,1.75,0.3125,1.75,0.2812,1.8125,0.3125,1.75,0.3125,1.8125,0.3125,1.8125,0.3125,1.75,0.3437,1.75,0.3125,1.8125,0.3437,1.75,0.3437,1.8125,0.3437,1.8125,0.3437,1.75,0.375,1.75,0.3437,1.8125,0.375,1.75,0.375,1.8125,0.375,1.8125,0.375,1.75,0.4062,1.75,0.375,1.8125,0.4062,1.75,0.4062,1.8125,0.4062,1.8125,0.4062,1.75,0.4375,1.75,0.4062,1.8125,0.4375,1.75,0.4375,1.8125,0.4375,1.8125,0.4375,1.75,0.4688,1.75,0.4375,1.8125,0.4688,1.75,0.4688,1.8125,0.4688,1.8125,0.4688,1.75,0.5,1.75,0.4688,1.8125,0.5,1.75,0.5,1.8125,0.5,1.8125,0.5,1.75,0.5313,1.75,0.5,1.8125,0.5313,1.75,0.5313,1.8125,0.5313,1.8125,0.5313,1.75,0.5625,1.75,0.5313,1.8125,0.5625,1.75,0.5625,1.8125,0.5625,1.8125,0.5625,1.75,0.5938,1.75,0.5625,1.8125,0.5938,1.75,0.5938,1.8125,0.5938,1.8125,0.5938,1.75,0.625,1.75,0.5938,1.8125,0.625,1.75,0.625,1.8125,0.625,1.8125,0.625,1.75,0.6563,1.75,0.625,1.8125,0.6563,1.75,0.6563,1.8125,0.6563,1.8125,0.6563,1.75,0.6875,1.75,0.6563,1.8125,0.6875,1.75,0.6875,1.8125,0.6875,1.8125,0.6875,1.75,0.7188,1.75,0.6875,1.8125,0.7188,1.75,0.7188,1.8125,0.7188,1.8125,0.7188,1.75,0.75,1.75,0.7188,1.8125,0.75,1.75,0.75,1.8125,0.75,1.8125,0.75,1.75,0.7813,1.75,0.75,1.8125,0.7813,1.75,0.7813,1.8125,0.7813,1.8125,0.7813,1.75,0.8125,1.75,0.7813,1.8125,0.8125,1.75,0.8125,1.8125,0.8125,1.8125,0.8125,1.75,0.8438,1.75,0.8125,1.8125,0.8438,1.75,0.8438,1.8125,0.8438,1.8125,0.8438,1.75,0.875,1.75,0.8438,1.8125,0.875,1.75,0.875,1.8125,0.875,1.8125,0.875,1.75,0.9063,1.75,0.875,1.8125,0.9063,1.75,0.9063,1.8125,0.9063,1.8125,0.9063,1.75,0.9375,1.75,0.9063,1.8125,0.9375,1.75,0.9375,1.8125,0.9375,1.8125,0.9375,1.75,0.9688,1.75,0.9375,1.8125,0.9688,1.75,0.9688,1.8125,0.9688,1.8125,0.9688,1.75,1.0,1.75,0.9688,1.8125,1.0,1.75,1.0,1.8125,0.0,1.75,0.0,1.6875,0.0312,1.6875,0.0,1.75,0.0312,1.6875,0.0312,1.75,0.0312,1.75,0.0312,1.6875,0.0625,1.6875,0.0312,1.75,0.0625,1.6875,0.0625,1.75,0.0625,1.75,0.0625,1.6875,0.0938,1.6875,0.0625,1.75,0.0938,1.6875,0.0938,1.75,0.0938,1.75,0.0938,1.6875,0.125,1.6875,0.0938,1.75,0.125,1.6875,0.125,1.75,0.125,1.75,0.125,1.6875,0.1562,1.6875,0.125,1.75,0.1562,1.6875,0.1562,1.75,0.1562,1.75,0.1562,1.6875,0.1875,1.6875,0.1562,1.75,0.1875,1.6875,0.1875,1.75,0.1875,1.75,0.1875,1.6875,0.2187,1.6875,0.1875,1.75,0.2187,1.6875,0.2187,1.75,0.2187,1.75,0.2187,1.6875,0.25,1.6875,0.2187,1.75,0.25,1.6875,0.25,1.75,0.25,1.75,0.25,1.6875,0.2812,1.6875,0.25,1.75,0.2812,1.6875,0.2812,1.75,0.2812,1.75,0.2812,1.6875,0.3125,1.6875,0.2812,1.75,0.3125,1.6875,0.3125,1.75,0.3125,1.75,0.3125,1.6875,0.3437,1.6875,0.3125,1.75,0.3437,1.6875,0.3437,1.75,0.3437,1.75,0.3437,1.6875,0.375,1.6875,0.3437,1.75,0.375,1.6875,0.375,1.75,0.375,1.75,0.375,1.6875,0.4062,1.6875,0.375,1.75,0.4062,1.6875,0.4062,1.75,0.4062,1.75,0.4062,1.6875,0.4375,1.6875,0.4062,1.75,0.4375,1.6875,0.4375,1.75,0.4375,1.75,0.4375,1.6875,0.4688,1.6875,0.4375,1.75,0.4688,1.6875,0.4688,1.75,0.4688,1.75,0.4688,1.6875,0.5,1.6875,0.4688,1.75,0.5,1.6875,0.5,1.75,0.5,1.75,0.5,1.6875,0.5313,1.6875,0.5,1.75,0.5313,1.6875,0.5313,1.75,0.5313,1.75,0.5313,1.6875,0.5625,1.6875,0.5313,1.75,0.5625,1.6875,0.5625,1.75,0.5625,1.75,0.5625,1.6875,0.5938,1.6875,0.5625,1.75,0.5938,1.6875,0.5938,1.75,0.5938,1.75,0.5938,1.6875,0.625,1.6875,0.5938,1.75,0.625,1.6875,0.625,1.75,0.625,1.75,0.625,1.6875,0.6563,1.6875,0.625,1.75,0.6563,1.6875,0.6563,1.75,0.6563,1.75,0.6563,1.6875,0.6875,1.6875,0.6563,1.75,0.6875,1.6875,0.6875,1.75,0.6875,1.75,0.6875,1.6875,0.7188,1.6875,0.6875,1.75,0.7188,1.6875,0.7188,1.75,0.7188,1.75,0.7188,1.6875,0.75,1.6875,0.7188,1.75,0.75,1.6875,0.75,1.75,0.75,1.75,0.75,1.6875,0.7813,1.6875,0.75,1.75,0.7813,1.6875,0.7813,1.75,0.7813,1.75,0.7813,1.6875,0.8125,1.6875,0.7813,1.75,0.8125,1.6875,0.8125,1.75,0.8125,1.75,0.8125,1.6875,0.8438,1.6875,0.8125,1.75,0.8438,1.6875,0.8438,1.75,0.8438,1.75,0.8438,1.6875,0.875,1.6875,0.8438,1.75,0.875,1.6875,0.875,1.75,0.875,1.75,0.875,1.6875,0.9063,1.6875,0.875,1.75,0.9063,1.6875,0.9063,1.75,0.9063,1.75,0.9063,1.6875,0.9375,1.6875,0.9063,1.75,0.9375,1.6875,0.9375,1.75,0.9375,1.75,0.9375,1.6875,0.9688,1.6875,0.9375,1.75,0.9688,1.6875,0.9688,1.75,0.9688,1.75,0.9688,1.6875,1.0,1.6875,0.9688,1.75,1.0,1.6875,1.0,1.75,0.0,1.6875,0.0,1.625,0.0312,1.625,0.0,1.6875,0.0312,1.625,0.0312,1.6875,0.0312,1.6875,0.0312,1.625,0.0625,1.625,0.0312,1.6875,0.0625,1.625,0.0625,1.6875,0.0625,1.6875,0.0625,1.625,0.0938,1.625,0.0625,1.6875,0.0938,1.625,0.0938,1.6875,0.0938,1.6875,0.0938,1.625,0.125,1.625,0.0938,1.6875,0.125,1.625,0.125,1.6875,0.125,1.6875,0.125,1.625,0.1562,1.625,0.125,1.6875,0.1562,1.625,0.1562,1.6875,0.1562,1.6875,0.1562,1.625,0.1875,1.625,0.1562,1.6875,0.1875,1.625,0.1875,1.6875,0.1875,1.6875,0.1875,1.625,0.2187,1.625,0.1875,1.6875,0.2187,1.625,0.2187,1.6875,0.2187,1.6875,0.2187,1.625,0.25,1.625,0.2187,1.6875,0.25,1.625,0.25,1.6875,0.25,1.6875,0.25,1.625,0.2812,1.625,0.25,1.6875,0.2812,1.625,0.2812,1.6875,0.2812,1.6875,0.2812,1.625,0.3125,1.625,0.2812,1.6875,0.3125,1.625,0.3125,1.6875,0.3125,1.6875,0.3125,1.625,0.3437,1.625,0.3125,1.6875,0.3437,1.625,0.3437,1.6875,0.3437,1.6875,0.3437,1.625,0.375,1.625,0.3437,1.6875,0.375,1.625,0.375,1.6875,0.375,1.6875,0.375,1.625,0.4062,1.625,0.375,1.6875,0.4062,1.625,0.4062,1.6875,0.4062,1.6875,0.4062,1.625,0.4375,1.625,0.4062,1.6875,0.4375,1.625,0.4375,1.6875,0.4375,1.6875,0.4375,1.625,0.4688,1.625,0.4375,1.6875,0.4688,1.625,0.4688,1.6875,0.4688,1.6875,0.4688,1.625,0.5,1.625,0.4688,1.6875,0.5,1.625,0.5,1.6875,0.5,1.6875,0.5,1.625,0.5313,1.625,0.5,1.6875,0.5313,1.625,0.5313,1.6875,0.5313,1.6875,0.5313,1.625,0.5625,1.625,0.5313,1.6875,0.5625,1.625,0.5625,1.6875,0.5625,1.6875,0.5625,1.625,0.5938,1.625,0.5625,1.6875,0.5938,1.625,0.5938,1.6875,0.5938,1.6875,0.5938,1.625,0.625,1.625,0.5938,1.6875,0.625,1.625,0.625,1.6875,0.625,1.6875,0.625,1.625,0.6563,1.625,0.625,1.6875,0.6563,1.625,0.6563,1.6875,0.6563,1.6875,0.6563,1.625,0.6875,1.625,0.6563,1.6875,0.6875,1.625,0.6875,1.6875,0.6875,1.6875,0.6875,1.625,0.7188,1.625,0.6875,1.6875,0.7188,1.625,0.7188,1.6875,0.7188,1.6875,0.7188,1.625,0.75,1.625,0.7188,1.6875,0.75,1.625,0.75,1.6875,0.75,1.6875,0.75,1.625,0.7813,1.625,0.75,1.6875,0.7813,1.625,0.7813,1.6875,0.7813,1.6875,0.7813,1.625,0.8125,1.625,0.7813,1.6875,0.8125,1.625,0.8125,1.6875,0.8125,1.6875,0.8125,1.625,0.8438,1.625,0.8125,1.6875,0.8438,1.625,0.8438,1.6875,0.8438,1.6875,0.8438,1.625,0.875,1.625,0.8438,1.6875,0.875,1.625,0.875,1.6875,0.875,1.6875,0.875,1.625,0.9063,1.625,0.875,1.6875,0.9063,1.625,0.9063,1.6875,0.9063,1.6875,0.9063,1.625,0.9375,1.625,0.9063,1.6875,0.9375,1.625,0.9375,1.6875,0.9375,1.6875,0.9375,1.625,0.9688,1.625,0.9375,1.6875,0.9688,1.625,0.9688,1.6875,0.9688,1.6875,0.9688,1.625,1.0,1.625,0.9688,1.6875,1.0,1.625,1.0,1.6875,0.0,1.625,0.0,1.5625,0.0312,1.5625,0.0,1.625,0.0312,1.5625,0.0312,1.625,0.0312,1.625,0.0312,1.5625,0.0625,1.5625,0.0312,1.625,0.0625,1.5625,0.0625,1.625,0.0625,1.625,0.0625,1.5625,0.0938,1.5625,0.0625,1.625,0.0938,1.5625,0.0938,1.625,0.0938,1.625,0.0938,1.5625,0.125,1.5625,0.0938,1.625,0.125,1.5625,0.125,1.625,0.125,1.625,0.125,1.5625,0.1562,1.5625,0.125,1.625,0.1562,1.5625,0.1562,1.625,0.1562,1.625,0.1562,1.5625,0.1875,1.5625,0.1562,1.625,0.1875,1.5625,0.1875,1.625,0.1875,1.625,0.1875,1.5625,0.2187,1.5625,0.1875,1.625,0.2187,1.5625,0.2187,1.625,0.2187,1.625,0.2187,1.5625,0.25,1.5625,0.2187,1.625,0.25,1.5625,0.25,1.625,0.25,1.625,0.25,1.5625,0.2812,1.5625,0.25,1.625,0.2812,1.5625,0.2812,1.625,0.2812,1.625,0.2812,1.5625,0.3125,1.5625,0.2812,1.625,0.3125,1.5625,0.3125,1.625,0.3125,1.625,0.3125,1.5625,0.3437,1.5625,0.3125,1.625,0.3437,1.5625,0.3437,1.625,0.3437,1.625,0.3437,1.5625,0.375,1.5625,0.3437,1.625,0.375,1.5625,0.375,1.625,0.375,1.625,0.375,1.5625,0.4062,1.5625,0.375,1.625,0.4062,1.5625,0.4062,1.625,0.4062,1.625,0.4062,1.5625,0.4375,1.5625,0.4062,1.625,0.4375,1.5625,0.4375,1.625,0.4375,1.625,0.4375,1.5625,0.4688,1.5625,0.4375,1.625,0.4688,1.5625,0.4688,1.625,0.4688,1.625,0.4688,1.5625,0.5,1.5625,0.4688,1.625,0.5,1.5625,0.5,1.625,0.5,1.625,0.5,1.5625,0.5313,1.5625,0.5,1.625,0.5313,1.5625,0.5313,1.625,0.5313,1.625,0.5313,1.5625,0.5625,1.5625,0.5313,1.625,0.5625,1.5625,0.5625,1.625,0.5625,1.625,0.5625,1.5625,0.5938,1.5625,0.5625,1.625,0.5938,1.5625,0.5938,1.625,0.5938,1.625,0.5938,1.5625,0.625,1.5625,0.5938,1.625,0.625,1.5625,0.625,1.625,0.625,1.625,0.625,1.5625,0.6563,1.5625,0.625,1.625,0.6563,1.5625,0.6563,1.625,0.6563,1.625,0.6563,1.5625,0.6875,1.5625,0.6563,1.625,0.6875,1.5625,0.6875,1.625,0.6875,1.625,0.6875,1.5625,0.7188,1.5625,0.6875,1.625,0.7188,1.5625,0.7188,1.625,0.7188,1.625,0.7188,1.5625,0.75,1.5625,0.7188,1.625,0.75,1.5625,0.75,1.625,0.75,1.625,0.75,1.5625,0.7813,1.5625,0.75,1.625,0.7813,1.5625,0.7813,1.625,0.7813,1.625,0.7813,1.5625,0.8125,1.5625,0.7813,1.625,0.8125,1.5625,0.8125,1.625,0.8125,1.625,0.8125,1.5625,0.8438,1.5625,0.8125,1.625,0.8438,1.5625,0.8438,1.625,0.8438,1.625,0.8438,1.5625,0.875,1.5625,0.8438,1.625,0.875,1.5625,0.875,1.625,0.875,1.625,0.875,1.5625,0.9063,1.5625,0.875,1.625,0.9063,1.5625,0.9063,1.625,0.9063,1.625,0.9063,1.5625,0.9375,1.5625,0.9063,1.625,0.9375,1.5625,0.9375,1.625,0.9375,1.625,0.9375,1.5625,0.9688,1.5625,0.9375,1.625,0.9688,1.5625,0.9688,1.625,0.9688,1.625,0.9688,1.5625,1.0,1.5625,0.9688,1.625,1.0,1.5625,1.0,1.625,0.0,1.5625,0.0,1.5,0.0312,1.5,0.0,1.5625,0.0312,1.5,0.0312,1.5625,0.0312,1.5625,0.0312,1.5,0.0625,1.5,0.0312,1.5625,0.0625,1.5,0.0625,1.5625,0.0625,1.5625,0.0625,1.5,0.0938,1.5,0.0625,1.5625,0.0938,1.5,0.0938,1.5625,0.0938,1.5625,0.0938,1.5,0.125,1.5,0.0938,1.5625,0.125,1.5,0.125,1.5625,0.125,1.5625,0.125,1.5,0.1562,1.5,0.125,1.5625,0.1562,1.5,0.1562,1.5625,0.1562,1.5625,0.1562,1.5,0.1875,1.5,0.1562,1.5625,0.1875,1.5,0.1875,1.5625,0.1875,1.5625,0.1875,1.5,0.2187,1.5,0.1875,1.5625,0.2187,1.5,0.2187,1.5625,0.2187,1.5625,0.2187,1.5,0.25,1.5,0.2187,1.5625,0.25,1.5,0.25,1.5625,0.25,1.5625,0.25,1.5,0.2812,1.5,0.25,1.5625,0.2812,1.5,0.2812,1.5625,0.2812,1.5625,0.2812,1.5,0.3125,1.5,0.2812,1.5625,0.3125,1.5,0.3125,1.5625,0.3125,1.5625,0.3125,1.5,0.3437,1.5,0.3125,1.5625,0.3437,1.5,0.3437,1.5625,0.3437,1.5625,0.3437,1.5,0.375,1.5,0.3437,1.5625,0.375,1.5,0.375,1.5625,0.375,1.5625,0.375,1.5,0.4062,1.5,0.375,1.5625,0.4062,1.5,0.4062,1.5625,0.4062,1.5625,0.4062,1.5,0.4375,1.5,0.4062,1.5625,0.4375,1.5,0.4375,1.5625,0.4375,1.5625,0.4375,1.5,0.4688,1.5,0.4375,1.5625,0.4688,1.5,0.4688,1.5625,0.4688,1.5625,0.4688,1.5,0.5,1.5,0.4688,1.5625,0.5,1.5,0.5,1.5625,0.5,1.5625,0.5,1.5,0.5313,1.5,0.5,1.5625,0.5313,1.5,0.5313,1.5625,0.5313,1.5625,0.5313,1.5,0.5625,1.5,0.5313,1.5625,0.5625,1.5,0.5625,1.5625,0.5625,1.5625,0.5625,1.5,0.5938,1.5,0.5625,1.5625,0.5938,1.5,0.5938,1.5625,0.5938,1.5625,0.5938,1.5,0.625,1.5,0.5938,1.5625,0.625,1.5,0.625,1.5625,0.625,1.5625,0.625,1.5,0.6563,1.5,0.625,1.5625,0.6563,1.5,0.6563,1.5625,0.6563,1.5625,0.6563,1.5,0.6875,1.5,0.6563,1.5625,0.6875,1.5,0.6875,1.5625,0.6875,1.5625,0.6875,1.5,0.7188,1.5,0.6875,1.5625,0.7188,1.5,0.7188,1.5625,0.7188,1.5625,0.7188,1.5,0.75,1.5,0.7188,1.5625,0.75,1.5,0.75,1.5625,0.75,1.5625,0.75,1.5,0.7813,1.5,0.75,1.5625,0.7813,1.5,0.7813,1.5625,0.7813,1.5625,0.7813,1.5,0.8125,1.5,0.7813,1.5625,0.8125,1.5,0.8125,1.5625,0.8125,1.5625,0.8125,1.5,0.8438,1.5,0.8125,1.5625,0.8438,1.5,0.8438,1.5625,0.8438,1.5625,0.8438,1.5,0.875,1.5,0.8438,1.5625,0.875,1.5,0.875,1.5625,0.875,1.5625,0.875,1.5,0.9063,1.5,0.875,1.5625,0.9063,1.5,0.9063,1.5625,0.9063,1.5625,0.9063,1.5,0.9375,1.5,0.9063,1.5625,0.9375,1.5,0.9375,1.5625,0.9375,1.5625,0.9375,1.5,0.9688,1.5,0.9375,1.5625,0.9688,1.5,0.9688,1.5625,0.9688,1.5625,0.9688,1.5,1.0,1.5,0.9688,1.5625,1.0,1.5,1.0,1.5625,0.0,1.5,0.0,1.4375,0.0312,1.4375,0.0,1.5,0.0312,1.4375,0.0312,1.5,0.0312,1.5,0.0312,1.4375,0.0625,1.4375,0.0312,1.5,0.0625,1.4375,0.0625,1.5,0.0625,1.5,0.0625,1.4375,0.0938,1.4375,0.0625,1.5,0.0938,1.4375,0.0938,1.5,0.0938,1.5,0.0938,1.4375,0.125,1.4375,0.0938,1.5,0.125,1.4375,0.125,1.5,0.125,1.5,0.125,1.4375,0.1562,1.4375,0.125,1.5,0.1562,1.4375,0.1562,1.5,0.1562,1.5,0.1562,1.4375,0.1875,1.4375,0.1562,1.5,0.1875,1.4375,0.1875,1.5,0.1875,1.5,0.1875,1.4375,0.2187,1.4375,0.1875,1.5,0.2187,1.4375,0.2187,1.5,0.2187,1.5,0.2187,1.4375,0.25,1.4375,0.2187,1.5,0.25,1.4375,0.25,1.5,0.25,1.5,0.25,1.4375,0.2812,1.4375,0.25,1.5,0.2812,1.4375,0.2812,1.5,0.2812,1.5,0.2812,1.4375,0.3125,1.4375,0.2812,1.5,0.3125,1.4375,0.3125,1.5,0.3125,1.5,0.3125,1.4375,0.3437,1.4375,0.3125,1.5,0.3437,1.4375,0.3437,1.5,0.3437,1.5,0.3437,1.4375,0.375,1.4375,0.3437,1.5,0.375,1.4375,0.375,1.5,0.375,1.5,0.375,1.4375,0.4062,1.4375,0.375,1.5,0.4062,1.4375,0.4062,1.5,0.4062,1.5,0.4062,1.4375,0.4375,1.4375,0.4062,1.5,0.4375,1.4375,0.4375,1.5,0.4375,1.5,0.4375,1.4375,0.4688,1.4375,0.4375,1.5,0.4688,1.4375,0.4688,1.5,0.4688,1.5,0.4688,1.4375,0.5,1.4375,0.4688,1.5,0.5,1.4375,0.5,1.5,0.5,1.5,0.5,1.4375,0.5313,1.4375,0.5,1.5,0.5313,1.4375,0.5313,1.5,0.5313,1.5,0.5313,1.4375,0.5625,1.4375,0.5313,1.5,0.5625,1.4375,0.5625,1.5,0.5625,1.5,0.5625,1.4375,0.5938,1.4375,0.5625,1.5,0.5938,1.4375,0.5938,1.5,0.5938,1.5,0.5938,1.4375,0.625,1.4375,0.5938,1.5,0.625,1.4375,0.625,1.5,0.625,1.5,0.625,1.4375,0.6563,1.4375,0.625,1.5,0.6563,1.4375,0.6563,1.5,0.6563,1.5,0.6563,1.4375,0.6875,1.4375,0.6563,1.5,0.6875,1.4375,0.6875,1.5,0.6875,1.5,0.6875,1.4375,0.7188,1.4375,0.6875,1.5,0.7188,1.4375,0.7188,1.5,0.7188,1.5,0.7188,1.4375,0.75,1.4375,0.7188,1.5,0.75,1.4375,0.75,1.5,0.75,1.5,0.75,1.4375,0.7813,1.4375,0.75,1.5,0.7813,1.4375,0.7813,1.5,0.7813,1.5,0.7813,1.4375,0.8125,1.4375,0.7813,1.5,0.8125,1.4375,0.8125,1.5,0.8125,1.5,0.8125,1.4375,0.8438,1.4375,0.8125,1.5,0.8438,1.4375,0.8438,1.5,0.8438,1.5,0.8438,1.4375,0.875,1.4375,0.8438,1.5,0.875,1.4375,0.875,1.5,0.875,1.5,0.875,1.4375,0.9063,1.4375,0.875,1.5,0.9063,1.4375,0.9063,1.5,0.9063,1.5,0.9063,1.4375,0.9375,1.4375,0.9063,1.5,0.9375,1.4375,0.9375,1.5,0.9375,1.5,0.9375,1.4375,0.9688,1.4375,0.9375,1.5,0.9688,1.4375,0.9688,1.5,0.9688,1.5,0.9688,1.4375,1.0,1.4375,0.9688,1.5,1.0,1.4375,1.0,1.5,0.0,1.4375,0.0,1.375,0.0312,1.375,0.0,1.4375,0.0312,1.375,0.0312,1.4375,0.0312,1.4375,0.0312,1.375,0.0625,1.375,0.0312,1.4375,0.0625,1.375,0.0625,1.4375,0.0625,1.4375,0.0625,1.375,0.0938,1.375,0.0625,1.4375,0.0938,1.375,0.0938,1.4375,0.0938,1.4375,0.0938,1.375,0.125,1.375,0.0938,1.4375,0.125,1.375,0.125,1.4375,0.125,1.4375,0.125,1.375,0.1562,1.375,0.125,1.4375,0.1562,1.375,0.1562,1.4375,0.1562,1.4375,0.1562,1.375,0.1875,1.375,0.1562,1.4375,0.1875,1.375,0.1875,1.4375,0.1875,1.4375,0.1875,1.375,0.2187,1.375,0.1875,1.4375,0.2187,1.375,0.2187,1.4375,0.2187,1.4375,0.2187,1.375,0.25,1.375,0.2187,1.4375,0.25,1.375,0.25,1.4375,0.25,1.4375,0.25,1.375,0.2812,1.375,0.25,1.4375,0.2812,1.375,0.2812,1.4375,0.2812,1.4375,0.2812,1.375,0.3125,1.375,0.2812,1.4375,0.3125,1.375,0.3125,1.4375,0.3125,1.4375,0.3125,1.375,0.3437,1.375,0.3125,1.4375,0.3437,1.375,0.3437,1.4375,0.3437,1.4375,0.3437,1.375,0.375,1.375,0.3437,1.4375,0.375,1.375,0.375,1.4375,0.375,1.4375,0.375,1.375,0.4062,1.375,0.375,1.4375,0.4062,1.375,0.4062,1.4375,0.4062,1.4375,0.4062,1.375,0.4375,1.375,0.4062,1.4375,0.4375,1.375,0.4375,1.4375,0.4375,1.4375,0.4375,1.375,0.4688,1.375,0.4375,1.4375,0.4688,1.375,0.4688,1.4375,0.4688,1.4375,0.4688,1.375,0.5,1.375,0.4688,1.4375,0.5,1.375,0.5,1.4375,0.5,1.4375,0.5,1.375,0.5313,1.375,0.5,1.4375,0.5313,1.375,0.5313,1.4375,0.5313,1.4375,0.5313,1.375,0.5625,1.375,0.5313,1.4375,0.5625,1.375,0.5625,1.4375,0.5625,1.4375,0.5625,1.375,0.5938,1.375,0.5625,1.4375,0.5938,1.375,0.5938,1.4375,0.5938,1.4375,0.5938,1.375,0.625,1.375,0.5938,1.4375,0.625,1.375,0.625,1.4375,0.625,1.4375,0.625,1.375,0.6563,1.375,0.625,1.4375,0.6563,1.375,0.6563,1.4375,0.6563,1.4375,0.6563,1.375,0.6875,1.375,0.6563,1.4375,0.6875,1.375,0.6875,1.4375,0.6875,1.4375,0.6875,1.375,0.7188,1.375,0.6875,1.4375,0.7188,1.375,0.7188,1.4375,0.7188,1.4375,0.7188,1.375,0.75,1.375,0.7188,1.4375,0.75,1.375,0.75,1.4375,0.75,1.4375,0.75,1.375,0.7813,1.375,0.75,1.4375,0.7813,1.375,0.7813,1.4375,0.7813,1.4375,0.7813,1.375,0.8125,1.375,0.7813,1.4375,0.8125,1.375,0.8125,1.4375,0.8125,1.4375,0.8125,1.375,0.8438,1.375,0.8125,1.4375,0.8438,1.375,0.8438,1.4375,0.8438,1.4375,0.8438,1.375,0.875,1.375,0.8438,1.4375,0.875,1.375,0.875,1.4375,0.875,1.4375,0.875,1.375,0.9063,1.375,0.875,1.4375,0.9063,1.375,0.9063,1.4375,0.9063,1.4375,0.9063,1.375,0.9375,1.375,0.9063,1.4375,0.9375,1.375,0.9375,1.4375,0.9375,1.4375,0.9375,1.375,0.9688,1.375,0.9375,1.4375,0.9688,1.375,0.9688,1.4375,0.9688,1.4375,0.9688,1.375,1.0,1.375,0.9688,1.4375,1.0,1.375,1.0,1.4375,0.0,1.375,0.0,1.3125,0.0312,1.3125,0.0,1.375,0.0312,1.3125,0.0312,1.375,0.0312,1.375,0.0312,1.3125,0.0625,1.3125,0.0312,1.375,0.0625,1.3125,0.0625,1.375,0.0625,1.375,0.0625,1.3125,0.0938,1.3125,0.0625,1.375,0.0938,1.3125,0.0938,1.375,0.0938,1.375,0.0938,1.3125,0.125,1.3125,0.0938,1.375,0.125,1.3125,0.125,1.375,0.125,1.375,0.125,1.3125,0.1562,1.3125,0.125,1.375,0.1562,1.3125,0.1562,1.375,0.1562,1.375,0.1562,1.3125,0.1875,1.3125,0.1562,1.375,0.1875,1.3125,0.1875,1.375,0.1875,1.375,0.1875,1.3125,0.2187,1.3125,0.1875,1.375,0.2187,1.3125,0.2187,1.375,0.2187,1.375,0.2187,1.3125,0.25,1.3125,0.2187,1.375,0.25,1.3125,0.25,1.375,0.25,1.375,0.25,1.3125,0.2812,1.3125,0.25,1.375,0.2812,1.3125,0.2812,1.375,0.2812,1.375,0.2812,1.3125,0.3125,1.3125,0.2812,1.375,0.3125,1.3125,0.3125,1.375,0.3125,1.375,0.3125,1.3125,0.3437,1.3125,0.3125,1.375,0.3437,1.3125,0.3437,1.375,0.3437,1.375,0.3437,1.3125,0.375,1.3125,0.3437,1.375,0.375,1.3125,0.375,1.375,0.375,1.375,0.375,1.3125,0.4062,1.3125,0.375,1.375,0.4062,1.3125,0.4062,1.375,0.4062,1.375,0.4062,1.3125,0.4375,1.3125,0.4062,1.375,0.4375,1.3125,0.4375,1.375,0.4375,1.375,0.4375,1.3125,0.4688,1.3125,0.4375,1.375,0.4688,1.3125,0.4688,1.375,0.4688,1.375,0.4688,1.3125,0.5,1.3125,0.4688,1.375,0.5,1.3125,0.5,1.375,0.5,1.375,0.5,1.3125,0.5313,1.3125,0.5,1.375,0.5313,1.3125,0.5313,1.375,0.5313,1.375,0.5313,1.3125,0.5625,1.3125,0.5313,1.375,0.5625,1.3125,0.5625,1.375,0.5625,1.375,0.5625,1.3125,0.5938,1.3125,0.5625,1.375,0.5938,1.3125,0.5938,1.375,0.5938,1.375,0.5938,1.3125,0.625,1.3125,0.5938,1.375,0.625,1.3125,0.625,1.375,0.625,1.375,0.625,1.3125,0.6563,1.3125,0.625,1.375,0.6563,1.3125,0.6563,1.375,0.6563,1.375,0.6563,1.3125,0.6875,1.3125,0.6563,1.375,0.6875,1.3125,0.6875,1.375,0.6875,1.375,0.6875,1.3125,0.7188,1.3125,0.6875,1.375,0.7188,1.3125,0.7188,1.375,0.7188,1.375,0.7188,1.3125,0.75,1.3125,0.7188,1.375,0.75,1.3125,0.75,1.375,0.75,1.375,0.75,1.3125,0.7813,1.3125,0.75,1.375,0.7813,1.3125,0.7813,1.375,0.7813,1.375,0.7813,1.3125,0.8125,1.3125,0.7813,1.375,0.8125,1.3125,0.8125,1.375,0.8125,1.375,0.8125,1.3125,0.8438,1.3125,0.8125,1.375,0.8438,1.3125,0.8438,1.375,0.8438,1.375,0.8438,1.3125,0.875,1.3125,0.8438,1.375,0.875,1.3125,0.875,1.375,0.875,1.375,0.875,1.3125,0.9063,1.3125,0.875,1.375,0.9063,1.3125,0.9063,1.375,0.9063,1.375,0.9063,1.3125,0.9375,1.3125,0.9063,1.375,0.9375,1.3125,0.9375,1.375,0.9375,1.375,0.9375,1.3125,0.9688,1.3125,0.9375,1.375,0.9688,1.3125,0.9688,1.375,0.9688,1.375,0.9688,1.3125,1.0,1.3125,0.9688,1.375,1.0,1.3125,1.0,1.375,0.0,1.3125,0.0,1.25,0.0312,1.25,0.0,1.3125,0.0312,1.25,0.0312,1.3125,0.0312,1.3125,0.0312,1.25,0.0625,1.25,0.0312,1.3125,0.0625,1.25,0.0625,1.3125,0.0625,1.3125,0.0625,1.25,0.0938,1.25,0.0625,1.3125,0.0938,1.25,0.0938,1.3125,0.0938,1.3125,0.0938,1.25,0.125,1.25,0.0938,1.3125,0.125,1.25,0.125,1.3125,0.125,1.3125,0.125,1.25,0.1562,1.25,0.125,1.3125,0.1562,1.25,0.1562,1.3125,0.1562,1.3125,0.1562,1.25,0.1875,1.25,0.1562,1.3125,0.1875,1.25,0.1875,1.3125,0.1875,1.3125,0.1875,1.25,0.2187,1.25,0.1875,1.3125,0.2187,1.25,0.2187,1.3125,0.2187,1.3125,0.2187,1.25,0.25,1.25,0.2187,1.3125,0.25,1.25,0.25,1.3125,0.25,1.3125,0.25,1.25,0.2812,1.25,0.25,1.3125,0.2812,1.25,0.2812,1.3125,0.2812,1.3125,0.2812,1.25,0.3125,1.25,0.2812,1.3125,0.3125,1.25,0.3125,1.3125,0.3125,1.3125,0.3125,1.25,0.3437,1.25,0.3125,1.3125,0.3437,1.25,0.3437,1.3125,0.3437,1.3125,0.3437,1.25,0.375,1.25,0.3437,1.3125,0.375,1.25,0.375,1.3125,0.375,1.3125,0.375,1.25,0.4062,1.25,0.375,1.3125,0.4062,1.25,0.4062,1.3125,0.4062,1.3125,0.4062,1.25,0.4375,1.25,0.4062,1.3125,0.4375,1.25,0.4375,1.3125,0.4375,1.3125,0.4375,1.25,0.4688,1.25,0.4375,1.3125,0.4688,1.25,0.4688,1.3125,0.4688,1.3125,0.4688,1.25,0.5,1.25,0.4688,1.3125,0.5,1.25,0.5,1.3125,0.5,1.3125,0.5,1.25,0.5313,1.25,0.5,1.3125,0.5313,1.25,0.5313,1.3125,0.5313,1.3125,0.5313,1.25,0.5625,1.25,0.5313,1.3125,0.5625,1.25,0.5625,1.3125,0.5625,1.3125,0.5625,1.25,0.5938,1.25,0.5625,1.3125,0.5938,1.25,0.5938,1.3125,0.5938,1.3125,0.5938,1.25,0.625,1.25,0.5938,1.3125,0.625,1.25,0.625,1.3125,0.625,1.3125,0.625,1.25,0.6563,1.25,0.625,1.3125,0.6563,1.25,0.6563,1.3125,0.6563,1.3125,0.6563,1.25,0.6875,1.25,0.6563,1.3125,0.6875,1.25,0.6875,1.3125,0.6875,1.3125,0.6875,1.25,0.7188,1.25,0.6875,1.3125,0.7188,1.25,0.7188,1.3125,0.7188,1.3125,0.7188,1.25,0.75,1.25,0.7188,1.3125,0.75,1.25,0.75,1.3125,0.75,1.3125,0.75,1.25,0.7813,1.25,0.75,1.3125,0.7813,1.25,0.7813,1.3125,0.7813,1.3125,0.7813,1.25,0.8125,1.25,0.7813,1.3125,0.8125,1.25,0.8125,1.3125,0.8125,1.3125,0.8125,1.25,0.8438,1.25,0.8125,1.3125,0.8438,1.25,0.8438,1.3125,0.8438,1.3125,0.8438,1.25,0.875,1.25,0.8438,1.3125,0.875,1.25,0.875,1.3125,0.875,1.3125,0.875,1.25,0.9063,1.25,0.875,1.3125,0.9063,1.25,0.9063,1.3125,0.9063,1.3125,0.9063,1.25,0.9375,1.25,0.9063,1.3125,0.9375,1.25,0.9375,1.3125,0.9375,1.3125,0.9375,1.25,0.9688,1.25,0.9375,1.3125,0.9688,1.25,0.9688,1.3125,0.9688,1.3125,0.9688,1.25,1.0,1.25,0.9688,1.3125,1.0,1.25,1.0,1.3125,0.0,1.25,0.0,1.1875,0.0312,1.1875,0.0,1.25,0.0312,1.1875,0.0312,1.25,0.0312,1.25,0.0312,1.1875,0.0625,1.1875,0.0312,1.25,0.0625,1.1875,0.0625,1.25,0.0625,1.25,0.0625,1.1875,0.0938,1.1875,0.0625,1.25,0.0938,1.1875,0.0938,1.25,0.0938,1.25,0.0938,1.1875,0.125,1.1875,0.0938,1.25,0.125,1.1875,0.125,1.25,0.125,1.25,0.125,1.1875,0.1562,1.1875,0.125,1.25,0.1562,1.1875,0.1562,1.25,0.1562,1.25,0.1562,1.1875,0.1875,1.1875,0.1562,1.25,0.1875,1.1875,0.1875,1.25,0.1875,1.25,0.1875,1.1875,0.2187,1.1875,0.1875,1.25,0.2187,1.1875,0.2187,1.25,0.2187,1.25,0.2187,1.1875,0.25,1.1875,0.2187,1.25,0.25,1.1875,0.25,1.25,0.25,1.25,0.25,1.1875,0.2812,1.1875,0.25,1.25,0.2812,1.1875,0.2812,1.25,0.2812,1.25,0.2812,1.1875,0.3125,1.1875,0.2812,1.25,0.3125,1.1875,0.3125,1.25,0.3125,1.25,0.3125,1.1875,0.3437,1.1875,0.3125,1.25,0.3437,1.1875,0.3437,1.25,0.3437,1.25,0.3437,1.1875,0.375,1.1875,0.3437,1.25,0.375,1.1875,0.375,1.25,0.375,1.25,0.375,1.1875,0.4062,1.1875,0.375,1.25,0.4062,1.1875,0.4062,1.25,0.4062,1.25,0.4062,1.1875,0.4375,1.1875,0.4062,1.25,0.4375,1.1875,0.4375,1.25,0.4375,1.25,0.4375,1.1875,0.4688,1.1875,0.4375,1.25,0.4688,1.1875,0.4688,1.25,0.4688,1.25,0.4688,1.1875,0.5,1.1875,0.4688,1.25,0.5,1.1875,0.5,1.25,0.5,1.25,0.5,1.1875,0.5313,1.1875,0.5,1.25,0.5313,1.1875,0.5313,1.25,0.5313,1.25,0.5313,1.1875,0.5625,1.1875,0.5313,1.25,0.5625,1.1875,0.5625,1.25,0.5625,1.25,0.5625,1.1875,0.5938,1.1875,0.5625,1.25,0.5938,1.1875,0.5938,1.25,0.5938,1.25,0.5938,1.1875,0.625,1.1875,0.5938,1.25,0.625,1.1875,0.625,1.25,0.625,1.25,0.625,1.1875,0.6563,1.1875,0.625,1.25,0.6563,1.1875,0.6563,1.25,0.6563,1.25,0.6563,1.1875,0.6875,1.1875,0.6563,1.25,0.6875,1.1875,0.6875,1.25,0.6875,1.25,0.6875,1.1875,0.7188,1.1875,0.6875,1.25,0.7188,1.1875,0.7188,1.25,0.7188,1.25,0.7188,1.1875,0.75,1.1875,0.7188,1.25,0.75,1.1875,0.75,1.25,0.75,1.25,0.75,1.1875,0.7813,1.1875,0.75,1.25,0.7813,1.1875,0.7813,1.25,0.7813,1.25,0.7813,1.1875,0.8125,1.1875,0.7813,1.25,0.8125,1.1875,0.8125,1.25,0.8125,1.25,0.8125,1.1875,0.8438,1.1875,0.8125,1.25,0.8438,1.1875,0.8438,1.25,0.8438,1.25,0.8438,1.1875,0.875,1.1875,0.8438,1.25,0.875,1.1875,0.875,1.25,0.875,1.25,0.875,1.1875,0.9063,1.1875,0.875,1.25,0.9063,1.1875,0.9063,1.25,0.9063,1.25,0.9063,1.1875,0.9375,1.1875,0.9063,1.25,0.9375,1.1875,0.9375,1.25,0.9375,1.25,0.9375,1.1875,0.9688,1.1875,0.9375,1.25,0.9688,1.1875,0.9688,1.25,0.9688,1.25,0.9688,1.1875,1.0,1.1875,0.9688,1.25,1.0,1.1875,1.0,1.25,0.0,1.1875,0.0,1.125,0.0312,1.125,0.0,1.1875,0.0312,1.125,0.0312,1.1875,0.0312,1.1875,0.0312,1.125,0.0625,1.125,0.0312,1.1875,0.0625,1.125,0.0625,1.1875,0.0625,1.1875,0.0625,1.125,0.0938,1.125,0.0625,1.1875,0.0938,1.125,0.0938,1.1875,0.0938,1.1875,0.0938,1.125,0.125,1.125,0.0938,1.1875,0.125,1.125,0.125,1.1875,0.125,1.1875,0.125,1.125,0.1562,1.125,0.125,1.1875,0.1562,1.125,0.1562,1.1875,0.1562,1.1875,0.1562,1.125,0.1875,1.125,0.1562,1.1875,0.1875,1.125,0.1875,1.1875,0.1875,1.1875,0.1875,1.125,0.2187,1.125,0.1875,1.1875,0.2187,1.125,0.2187,1.1875,0.2187,1.1875,0.2187,1.125,0.25,1.125,0.2187,1.1875,0.25,1.125,0.25,1.1875,0.25,1.1875,0.25,1.125,0.2812,1.125,0.25,1.1875,0.2812,1.125,0.2812,1.1875,0.2812,1.1875,0.2812,1.125,0.3125,1.125,0.2812,1.1875,0.3125,1.125,0.3125,1.1875,0.3125,1.1875,0.3125,1.125,0.3437,1.125,0.3125,1.1875,0.3437,1.125,0.3437,1.1875,0.3437,1.1875,0.3437,1.125,0.375,1.125,0.3437,1.1875,0.375,1.125,0.375,1.1875,0.375,1.1875,0.375,1.125,0.4062,1.125,0.375,1.1875,0.4062,1.125,0.4062,1.1875,0.4062,1.1875,0.4062,1.125,0.4375,1.125,0.4062,1.1875,0.4375,1.125,0.4375,1.1875,0.4375,1.1875,0.4375,1.125,0.4688,1.125,0.4375,1.1875,0.4688,1.125,0.4688,1.1875,0.4688,1.1875,0.4688,1.125,0.5,1.125,0.4688,1.1875,0.5,1.125,0.5,1.1875,0.5,1.1875,0.5,1.125,0.5313,1.125,0.5,1.1875,0.5313,1.125,0.5313,1.1875,0.5313,1.1875,0.5313,1.125,0.5625,1.125,0.5313,1.1875,0.5625,1.125,0.5625,1.1875,0.5625,1.1875,0.5625,1.125,0.5938,1.125,0.5625,1.1875,0.5938,1.125,0.5938,1.1875,0.5938,1.1875,0.5938,1.125,0.625,1.125,0.5938,1.1875,0.625,1.125,0.625,1.1875,0.625,1.1875,0.625,1.125,0.6563,1.125,0.625,1.1875,0.6563,1.125,0.6563,1.1875,0.6563,1.1875,0.6563,1.125,0.6875,1.125,0.6563,1.1875,0.6875,1.125,0.6875,1.1875,0.6875,1.1875,0.6875,1.125,0.7188,1.125,0.6875,1.1875,0.7188,1.125,0.7188,1.1875,0.7188,1.1875,0.7188,1.125,0.75,1.125,0.7188,1.1875,0.75,1.125,0.75,1.1875,0.75,1.1875,0.75,1.125,0.7813,1.125,0.75,1.1875,0.7813,1.125,0.7813,1.1875,0.7813,1.1875,0.7813,1.125,0.8125,1.125,0.7813,1.1875,0.8125,1.125,0.8125,1.1875,0.8125,1.1875,0.8125,1.125,0.8438,1.125,0.8125,1.1875,0.8438,1.125,0.8438,1.1875,0.8438,1.1875,0.8438,1.125,0.875,1.125,0.8438,1.1875,0.875,1.125,0.875,1.1875,0.875,1.1875,0.875,1.125,0.9063,1.125,0.875,1.1875,0.9063,1.125,0.9063,1.1875,0.9063,1.1875,0.9063,1.125,0.9375,1.125,0.9063,1.1875,0.9375,1.125,0.9375,1.1875,0.9375,1.1875,0.9375,1.125,0.9688,1.125,0.9375,1.1875,0.9688,1.125,0.9688,1.1875,0.9688,1.1875,0.9688,1.125,1.0,1.125,0.9688,1.1875,1.0,1.125,1.0,1.1875,0.0,1.125,0.0,1.0625,0.0312,1.0625,0.0,1.125,0.0312,1.0625,0.0312,1.125,0.0312,1.125,0.0312,1.0625,0.0625,1.0625,0.0312,1.125,0.0625,1.0625,0.0625,1.125,0.0625,1.125,0.0625,1.0625,0.0938,1.0625,0.0625,1.125,0.0938,1.0625,0.0938,1.125,0.0938,1.125,0.0938,1.0625,0.125,1.0625,0.0938,1.125,0.125,1.0625,0.125,1.125,0.125,1.125,0.125,1.0625,0.1562,1.0625,0.125,1.125,0.1562,1.0625,0.1562,1.125,0.1562,1.125,0.1562,1.0625,0.1875,1.0625,0.1562,1.125,0.1875,1.0625,0.1875,1.125,0.1875,1.125,0.1875,1.0625,0.2187,1.0625,0.1875,1.125,0.2187,1.0625,0.2187,1.125,0.2187,1.125,0.2187,1.0625,0.25,1.0625,0.2187,1.125,0.25,1.0625,0.25,1.125,0.25,1.125,0.25,1.0625,0.2812,1.0625,0.25,1.125,0.2812,1.0625,0.2812,1.125,0.2812,1.125,0.2812,1.0625,0.3125,1.0625,0.2812,1.125,0.3125,1.0625,0.3125,1.125,0.3125,1.125,0.3125,1.0625,0.3437,1.0625,0.3125,1.125,0.3437,1.0625,0.3437,1.125,0.3437,1.125,0.3437,1.0625,0.375,1.0625,0.3437,1.125,0.375,1.0625,0.375,1.125,0.375,1.125,0.375,1.0625,0.4062,1.0625,0.375,1.125,0.4062,1.0625,0.4062,1.125,0.4062,1.125,0.4062,1.0625,0.4375,1.0625,0.4062,1.125,0.4375,1.0625,0.4375,1.125,0.4375,1.125,0.4375,1.0625,0.4688,1.0625,0.4375,1.125,0.4688,1.0625,0.4688,1.125,0.4688,1.125,0.4688,1.0625,0.5,1.0625,0.4688,1.125,0.5,1.0625,0.5,1.125,0.5,1.125,0.5,1.0625,0.5313,1.0625,0.5,1.125,0.5313,1.0625,0.5313,1.125,0.5313,1.125,0.5313,1.0625,0.5625,1.0625,0.5313,1.125,0.5625,1.0625,0.5625,1.125,0.5625,1.125,0.5625,1.0625,0.5938,1.0625,0.5625,1.125,0.5938,1.0625,0.5938,1.125,0.5938,1.125,0.5938,1.0625,0.625,1.0625,0.5938,1.125,0.625,1.0625,0.625,1.125,0.625,1.125,0.625,1.0625,0.6563,1.0625,0.625,1.125,0.6563,1.0625,0.6563,1.125,0.6563,1.125,0.6563,1.0625,0.6875,1.0625,0.6563,1.125,0.6875,1.0625,0.6875,1.125,0.6875,1.125,0.6875,1.0625,0.7188,1.0625,0.6875,1.125,0.7188,1.0625,0.7188,1.125,0.7188,1.125,0.7188,1.0625,0.75,1.0625,0.7188,1.125,0.75,1.0625,0.75,1.125,0.75,1.125,0.75,1.0625,0.7813,1.0625,0.75,1.125,0.7813,1.0625,0.7813,1.125,0.7813,1.125,0.7813,1.0625,0.8125,1.0625,0.7813,1.125,0.8125,1.0625,0.8125,1.125,0.8125,1.125,0.8125,1.0625,0.8438,1.0625,0.8125,1.125,0.8438,1.0625,0.8438,1.125,0.8438,1.125,0.8438,1.0625,0.875,1.0625,0.8438,1.125,0.875,1.0625,0.875,1.125,0.875,1.125,0.875,1.0625,0.9063,1.0625,0.875,1.125,0.9063,1.0625,0.9063,1.125,0.9063,1.125,0.9063,1.0625,0.9375,1.0625,0.9063,1.125,0.9375,1.0625,0.9375,1.125,0.9375,1.125,0.9375,1.0625,0.9688,1.0625,0.9375,1.125,0.9688,1.0625,0.9688,1.125,0.9688,1.125,0.9688,1.0625,1.0,1.0625,0.9688,1.125,1.0,1.0625,1.0,1.125,0.0,1.0,0.0312,1.0625,0.0,1.0625,0.0312,1.0,0.0625,1.0625,0.0312,1.0625,0.0625,1.0,0.0938,1.0625,0.0625,1.0625,0.0938,1.0,0.125,1.0625,0.0938,1.0625,0.125,1.0,0.1562,1.0625,0.125,1.0625,0.1562,1.0,0.1875,1.0625,0.1562,1.0625,0.1875,1.0,0.2187,1.0625,0.1875,1.0625,0.2187,1.0,0.25,1.0625,0.2187,1.0625,0.25,1.0,0.2812,1.0625,0.25,1.0625,0.2812,1.0,0.3125,1.0625,0.2812,1.0625,0.3125,1.0,0.3437,1.0625,0.3125,1.0625,0.3437,1.0,0.375,1.0625,0.3437,1.0625,0.375,1.0,0.4062,1.0625,0.375,1.0625,0.4062,1.0,0.4375,1.0625,0.4062,1.0625,0.4375,1.0,0.4688,1.0625,0.4375,1.0625,0.4688,1.0,0.5,1.0625,0.4688,1.0625,0.5,1.0,0.5313,1.0625,0.5,1.0625,0.5313,1.0,0.5625,1.0625,0.5313,1.0625,0.5625,1.0,0.5938,1.0625,0.5625,1.0625,0.5938,1.0,0.625,1.0625,0.5938,1.0625,0.625,1.0,0.6563,1.0625,0.625,1.0625,0.6563,1.0,0.6875,1.0625,0.6563,1.0625,0.6875,1.0,0.7188,1.0625,0.6875,1.0625,0.7188,1.0,0.75,1.0625,0.7188,1.0625,0.75,1.0,0.7813,1.0625,0.75,1.0625,0.7813,1.0,0.8125,1.0625,0.7813,1.0625,0.8125,1.0,0.8438,1.0625,0.8125,1.0625,0.8438,1.0,0.875,1.0625,0.8438,1.0625,0.875,1.0,0.9063,1.0625,0.875,1.0625,0.9063,1.0,0.9375,1.0625,0.9063,1.0625,0.9375,1.0,0.9688,1.0625,0.9375,1.0625,0.9688,1.0,1.0,1.0625,0.9688,1.0625],"uvs2":null,"colors":null,"hasVertexAlpha":false,"matricesIndices":null,"matricesWeights":null,"matricesIndicesExtra":null,"matricesWeightsExtra":null,"indices":[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,1984,1985,1986,1987,1988,1989,1990,1991,1992,1993,1994,1995,1996,1997,1998,1999,2000,2001,2002,2003,2004,2005,2006,2007,2008,2009,2010,2011,2012,2013,2014,2015,2016,2017,2018,2019,2020,2021,2022,2023,2024,2025,2026,2027,2028,2029,2030,2031,2032,2033,2034,2035,2036,2037,2038,2039,2040,2041,2042,2043,2044,2045,2046,2047,2048,2049,2050,2051,2052,2053,2054,2055,2056,2057,2058,2059,2060,2061,2062,2063,2064,2065,2066,2067,2068,2069,2070,2071,2072,2073,2074,2075,2076,2077,2078,2079,2080,2081,2082,2083,2084,2085,2086,2087,2088,2089,2090,2091,2092,2093,2094,2095,2096,2097,2098,2099,2100,2101,2102,2103,2104,2105,2106,2107,2108,2109,2110,2111,2112,2113,2114,2115,2116,2117,2118,2119,2120,2121,2122,2123,2124,2125,2126,2127,2128,2129,2130,2131,2132,2133,2134,2135,2136,2137,2138,2139,2140,2141,2142,2143,2144,2145,2146,2147,2148,2149,2150,2151,2152,2153,2154,2155,2156,2157,2158,2159,2160,2161,2162,2163,2164,2165,2166,2167,2168,2169,2170,2171,2172,2173,2174,2175,2176,2177,2178,2179,2180,2181,2182,2183,2184,2185,2186,2187,2188,2189,2190,2191,2192,2193,2194,2195,2196,2197,2198,2199,2200,2201,2202,2203,2204,2205,2206,2207,2208,2209,2210,2211,2212,2213,2214,2215,2216,2217,2218,2219,2220,2221,2222,2223,2224,2225,2226,2227,2228,2229,2230,2231,2232,2233,2234,2235,2236,2237,2238,2239,2240,2241,2242,2243,2244,2245,2246,2247,2248,2249,2250,2251,2252,2253,2254,2255,2256,2257,2258,2259,2260,2261,2262,2263,2264,2265,2266,2267,2268,2269,2270,2271,2272,2273,2274,2275,2276,2277,2278,2279,2280,2281,2282,2283,2284,2285,2286,2287,2288,2289,2290,2291,2292,2293,2294,2295,2296,2297,2298,2299,2300,2301,2302,2303,2304,2305,2306,2307,2308,2309,2310,2311,2312,2313,2314,2315,2316,2317,2318,2319,2320,2321,2322,2323,2324,2325,2326,2327,2328,2329,2330,2331,2332,2333,2334,2335,2336,2337,2338,2339,2340,2341,2342,2343,2344,2345,2346,2347,2348,2349,2350,2351,2352,2353,2354,2355,2356,2357,2358,2359,2360,2361,2362,2363,2364,2365,2366,2367,2368,2369,2370,2371,2372,2373,2374,2375,2376,2377,2378,2379,2380,2381,2382,2383,2384,2385,2386,2387,2388,2389,2390,2391,2392,2393,2394,2395,2396,2397,2398,2399,2400,2401,2402,2403,2404,2405,2406,2407,2408,2409,2410,2411,2412,2413,2414,2415,2416,2417,2418,2419,2420,2421,2422,2423,2424,2425,2426,2427,2428,2429,2430,2431,2432,2433,2434,2435,2436,2437,2438,2439,2440,2441,2442,2443,2444,2445,2446,2447,2448,2449,2450,2451,2452,2453,2454,2455,2456,2457,2458,2459,2460,2461,2462,2463,2464,2465,2466,2467,2468,2469,2470,2471,2472,2473,2474,2475,2476,2477,2478,2479,2480,2481,2482,2483,2484,2485,2486,2487,2488,2489,2490,2491,2492,2493,2494,2495,2496,2497,2498,2499,2500,2501,2502,2503,2504,2505,2506,2507,2508,2509,2510,2511,2512,2513,2514,2515,2516,2517,2518,2519,2520,2521,2522,2523,2524,2525,2526,2527,2528,2529,2530,2531,2532,2533,2534,2535,2536,2537,2538,2539,2540,2541,2542,2543,2544,2545,2546,2547,2548,2549,2550,2551,2552,2553,2554,2555,2556,2557,2558,2559,2560,2561,2562,2563,2564,2565,2566,2567,2568,2569,2570,2571,2572,2573,2574,2575,2576,2577,2578,2579,2580,2581,2582,2583,2584,2585,2586,2587,2588,2589,2590,2591,2592,2593,2594,2595,2596,2597,2598,2599,2600,2601,2602,2603,2604,2605,2606,2607,2608,2609,2610,2611,2612,2613,2614,2615,2616,2617,2618,2619,2620,2621,2622,2623,2624,2625,2626,2627,2628,2629,2630,2631,2632,2633,2634,2635,2636,2637,2638,2639,2640,2641,2642,2643,2644,2645,2646,2647,2648,2649,2650,2651,2652,2653,2654,2655,2656,2657,2658,2659,2660,2661,2662,2663,2664,2665,2666,2667,2668,2669,2670,2671,2672,2673,2674,2675,2676,2677,2678,2679,2680,2681,2682,2683,2684,2685,2686,2687,2688,2689,2690,2691,2692,2693,2694,2695,2696,2697,2698,2699,2700,2701,2702,2703,2704,2705,2706,2707,2708,2709,2710,2711,2712,2713,2714,2715,2716,2717,2718,2719,2720,2721,2722,2723,2724,2725,2726,2727,2728,2729,2730,2731,2732,2733,2734,2735,2736,2737,2738,2739,2740,2741,2742,2743,2744,2745,2746,2747,2748,2749,2750,2751,2752,2753,2754,2755,2756,2757,2758,2759,2760,2761,2762,2763,2764,2765,2766,2767,2768,2769,2770,2771,2772,2773,2774,2775,2776,2777,2778,2779,2780,2781,2782,2783,2784,2785,2786,2787,2788,2789,2790,2791,2792,2793,2794,2795,2796,2797,2798,2799,2800,2801,2802,2803,2804,2805,2806,2807,2808,2809,2810,2811,2812,2813,2814,2815,2816,2817,2818,2819,2820,2821,2822,2823,2824,2825,2826,2827,2828,2829,2830,2831,2832,2833,2834,2835,2836,2837,2838,2839,2840,2841,2842,2843,2844,2845,2846,2847,2848,2849,2850,2851,2852,2853,2854,2855,2856,2857,2858,2859,2860,2861,2862,2863,2864,2865,2866,2867,2868,2869,2870,2871,2872,2873,2874,2875,2876,2877,2878,2879],"receiveShadows":true,"infiniteDistance":false,"billboardMode":0,"visibility":1.0,"subMeshes":[{"materialIndex":0,"verticesStart":0,"verticesCount":2880,"indexStart":0,"indexCount":2880}],"instances":null,"skeletonId":-1,"numBoneInfluencers":4,"applyFog":true,"lodMeshIds":null,"lodDistances":null,"lodCoverages":null,"rotation":null,"scaling":[1.0,1.0,1.0],"rotationQuaternion":[0.0,0.0,0.0,1.0],"actions":null,"checkCollisions":false,"pickable":false,"showBoundingBox":false,"showSubMeshesBoundingBox":false,"alphaIndex":1000,"physicsImpostor":0,"physicsMass":0.0,"physicsFriction":0.0,"physicsRestitution":0.0,"name":"PhysicalMeshMaxLight_1","id":"311381f0-8487-4fc5-89fa-7d01dfda5e2f","parentId":null,"position":[3.0,0.0,0.0],"animations":[],"autoAnimate":true,"autoAnimateFrom":0,"autoAnimateTo":100,"autoAnimateLoop":true,"metadata":null},{"materialId":"4a44b26e-4bbc-438e-8e5d-86c3e1a2108c","isEnabled":true,"isVisible":true,"positions":[0.0,1.0,0.0,0.0,0.9808,0.1951,-0.0381,0.9808,0.1913,0.0,1.0,0.0,-0.0381,0.9808,0.1913,-0.0747,0.9808,0.1802,0.0,1.0,0.0,-0.0747,0.9808,0.1802,-0.1084,0.9808,0.1622,0.0,1.0,0.0,-0.1084,0.9808,0.1622,-0.1379,0.9808,0.1379,0.0,1.0,0.0,-0.1379,0.9808,0.1379,-0.1622,0.9808,0.1084,0.0,1.0,0.0,-0.1622,0.9808,0.1084,-0.1802,0.9808,0.0747,0.0,1.0,0.0,-0.1802,0.9808,0.0747,-0.1913,0.9808,0.0381,0.0,1.0,0.0,-0.1913,0.9808,0.0381,-0.1951,0.9808,0.0,0.0,1.0,0.0,-0.1951,0.9808,0.0,-0.1913,0.9808,-0.0381,0.0,1.0,0.0,-0.1913,0.9808,-0.0381,-0.1802,0.9808,-0.0747,0.0,1.0,0.0,-0.1802,0.9808,-0.0747,-0.1622,0.9808,-0.1084,0.0,1.0,0.0,-0.1622,0.9808,-0.1084,-0.1379,0.9808,-0.1379,0.0,1.0,0.0,-0.1379,0.9808,-0.1379,-0.1084,0.9808,-0.1622,0.0,1.0,0.0,-0.1084,0.9808,-0.1622,-0.0747,0.9808,-0.1802,0.0,1.0,0.0,-0.0747,0.9808,-0.1802,-0.0381,0.9808,-0.1913,0.0,1.0,0.0,-0.0381,0.9808,-0.1913,0.0,0.9808,-0.1951,0.0,1.0,0.0,0.0,0.9808,-0.1951,0.0381,0.9808,-0.1913,0.0,1.0,0.0,0.0381,0.9808,-0.1913,0.0747,0.9808,-0.1802,0.0,1.0,0.0,0.0747,0.9808,-0.1802,0.1084,0.9808,-0.1622,0.0,1.0,0.0,0.1084,0.9808,-0.1622,0.1379,0.9808,-0.1379,0.0,1.0,0.0,0.1379,0.9808,-0.1379,0.1622,0.9808,-0.1084,0.0,1.0,0.0,0.1622,0.9808,-0.1084,0.1802,0.9808,-0.0747,0.0,1.0,0.0,0.1802,0.9808,-0.0747,0.1913,0.9808,-0.0381,0.0,1.0,0.0,0.1913,0.9808,-0.0381,0.1951,0.9808,0.0,0.0,1.0,0.0,0.1951,0.9808,0.0,0.1913,0.9808,0.0381,0.0,1.0,0.0,0.1913,0.9808,0.0381,0.1802,0.9808,0.0747,0.0,1.0,0.0,0.1802,0.9808,0.0747,0.1622,0.9808,0.1084,0.0,1.0,0.0,0.1622,0.9808,0.1084,0.1379,0.9808,0.1379,0.0,1.0,0.0,0.1379,0.9808,0.1379,0.1084,0.9808,0.1622,0.0,1.0,0.0,0.1084,0.9808,0.1622,0.0747,0.9808,0.1802,0.0,1.0,0.0,0.0747,0.9808,0.1802,0.0381,0.9808,0.1913,0.0,1.0,0.0,0.0381,0.9808,0.1913,0.0,0.9808,0.1951,0.0,0.9808,0.1951,0.0,0.9239,0.3827,-0.0747,0.9239,0.3753,0.0,0.9808,0.1951,-0.0747,0.9239,0.3753,-0.0381,0.9808,0.1913,-0.0381,0.9808,0.1913,-0.0747,0.9239,0.3753,-0.1464,0.9239,0.3536,-0.0381,0.9808,0.1913,-0.1464,0.9239,0.3536,-0.0747,0.9808,0.1802,-0.0747,0.9808,0.1802,-0.1464,0.9239,0.3536,-0.2126,0.9239,0.3182,-0.0747,0.9808,0.1802,-0.2126,0.9239,0.3182,-0.1084,0.9808,0.1622,-0.1084,0.9808,0.1622,-0.2126,0.9239,0.3182,-0.2706,0.9239,0.2706,-0.1084,0.9808,0.1622,-0.2706,0.9239,0.2706,-0.1379,0.9808,0.1379,-0.1379,0.9808,0.1379,-0.2706,0.9239,0.2706,-0.3182,0.9239,0.2126,-0.1379,0.9808,0.1379,-0.3182,0.9239,0.2126,-0.1622,0.9808,0.1084,-0.1622,0.9808,0.1084,-0.3182,0.9239,0.2126,-0.3536,0.9239,0.1464,-0.1622,0.9808,0.1084,-0.3536,0.9239,0.1464,-0.1802,0.9808,0.0747,-0.1802,0.9808,0.0747,-0.3536,0.9239,0.1464,-0.3753,0.9239,0.0747,-0.1802,0.9808,0.0747,-0.3753,0.9239,0.0747,-0.1913,0.9808,0.0381,-0.1913,0.9808,0.0381,-0.3753,0.9239,0.0747,-0.3827,0.9239,0.0,-0.1913,0.9808,0.0381,-0.3827,0.9239,0.0,-0.1951,0.9808,0.0,-0.1951,0.9808,0.0,-0.3827,0.9239,0.0,-0.3753,0.9239,-0.0747,-0.1951,0.9808,0.0,-0.3753,0.9239,-0.0747,-0.1913,0.9808,-0.0381,-0.1913,0.9808,-0.0381,-0.3753,0.9239,-0.0747,-0.3536,0.9239,-0.1464,-0.1913,0.9808,-0.0381,-0.3536,0.9239,-0.1464,-0.1802,0.9808,-0.0747,-0.1802,0.9808,-0.0747,-0.3536,0.9239,-0.1464,-0.3182,0.9239,-0.2126,-0.1802,0.9808,-0.0747,-0.3182,0.9239,-0.2126,-0.1622,0.9808,-0.1084,-0.1622,0.9808,-0.1084,-0.3182,0.9239,-0.2126,-0.2706,0.9239,-0.2706,-0.1622,0.9808,-0.1084,-0.2706,0.9239,-0.2706,-0.1379,0.9808,-0.1379,-0.1379,0.9808,-0.1379,-0.2706,0.9239,-0.2706,-0.2126,0.9239,-0.3182,-0.1379,0.9808,-0.1379,-0.2126,0.9239,-0.3182,-0.1084,0.9808,-0.1622,-0.1084,0.9808,-0.1622,-0.2126,0.9239,-0.3182,-0.1464,0.9239,-0.3536,-0.1084,0.9808,-0.1622,-0.1464,0.9239,-0.3536,-0.0747,0.9808,-0.1802,-0.0747,0.9808,-0.1802,-0.1464,0.9239,-0.3536,-0.0747,0.9239,-0.3753,-0.0747,0.9808,-0.1802,-0.0747,0.9239,-0.3753,-0.0381,0.9808,-0.1913,-0.0381,0.9808,-0.1913,-0.0747,0.9239,-0.3753,0.0,0.9239,-0.3827,-0.0381,0.9808,-0.1913,0.0,0.9239,-0.3827,0.0,0.9808,-0.1951,0.0,0.9808,-0.1951,0.0,0.9239,-0.3827,0.0747,0.9239,-0.3753,0.0,0.9808,-0.1951,0.0747,0.9239,-0.3753,0.0381,0.9808,-0.1913,0.0381,0.9808,-0.1913,0.0747,0.9239,-0.3753,0.1464,0.9239,-0.3536,0.0381,0.9808,-0.1913,0.1464,0.9239,-0.3536,0.0747,0.9808,-0.1802,0.0747,0.9808,-0.1802,0.1464,0.9239,-0.3536,0.2126,0.9239,-0.3182,0.0747,0.9808,-0.1802,0.2126,0.9239,-0.3182,0.1084,0.9808,-0.1622,0.1084,0.9808,-0.1622,0.2126,0.9239,-0.3182,0.2706,0.9239,-0.2706,0.1084,0.9808,-0.1622,0.2706,0.9239,-0.2706,0.1379,0.9808,-0.1379,0.1379,0.9808,-0.1379,0.2706,0.9239,-0.2706,0.3182,0.9239,-0.2126,0.1379,0.9808,-0.1379,0.3182,0.9239,-0.2126,0.1622,0.9808,-0.1084,0.1622,0.9808,-0.1084,0.3182,0.9239,-0.2126,0.3536,0.9239,-0.1464,0.1622,0.9808,-0.1084,0.3536,0.9239,-0.1464,0.1802,0.9808,-0.0747,0.1802,0.9808,-0.0747,0.3536,0.9239,-0.1464,0.3753,0.9239,-0.0747,0.1802,0.9808,-0.0747,0.3753,0.9239,-0.0747,0.1913,0.9808,-0.0381,0.1913,0.9808,-0.0381,0.3753,0.9239,-0.0747,0.3827,0.9239,0.0,0.1913,0.9808,-0.0381,0.3827,0.9239,0.0,0.1951,0.9808,0.0,0.1951,0.9808,0.0,0.3827,0.9239,0.0,0.3753,0.9239,0.0747,0.1951,0.9808,0.0,0.3753,0.9239,0.0747,0.1913,0.9808,0.0381,0.1913,0.9808,0.0381,0.3753,0.9239,0.0747,0.3536,0.9239,0.1464,0.1913,0.9808,0.0381,0.3536,0.9239,0.1464,0.1802,0.9808,0.0747,0.1802,0.9808,0.0747,0.3536,0.9239,0.1464,0.3182,0.9239,0.2126,0.1802,0.9808,0.0747,0.3182,0.9239,0.2126,0.1622,0.9808,0.1084,0.1622,0.9808,0.1084,0.3182,0.9239,0.2126,0.2706,0.9239,0.2706,0.1622,0.9808,0.1084,0.2706,0.9239,0.2706,0.1379,0.9808,0.1379,0.1379,0.9808,0.1379,0.2706,0.9239,0.2706,0.2126,0.9239,0.3182,0.1379,0.9808,0.1379,0.2126,0.9239,0.3182,0.1084,0.9808,0.1622,0.1084,0.9808,0.1622,0.2126,0.9239,0.3182,0.1464,0.9239,0.3536,0.1084,0.9808,0.1622,0.1464,0.9239,0.3536,0.0747,0.9808,0.1802,0.0747,0.9808,0.1802,0.1464,0.9239,0.3536,0.0747,0.9239,0.3753,0.0747,0.9808,0.1802,0.0747,0.9239,0.3753,0.0381,0.9808,0.1913,0.0381,0.9808,0.1913,0.0747,0.9239,0.3753,0.0,0.9239,0.3827,0.0381,0.9808,0.1913,0.0,0.9239,0.3827,0.0,0.9808,0.1951,0.0,0.9239,0.3827,0.0,0.8315,0.5556,-0.1084,0.8315,0.5449,0.0,0.9239,0.3827,-0.1084,0.8315,0.5449,-0.0747,0.9239,0.3753,-0.0747,0.9239,0.3753,-0.1084,0.8315,0.5449,-0.2126,0.8315,0.5133,-0.0747,0.9239,0.3753,-0.2126,0.8315,0.5133,-0.1464,0.9239,0.3536,-0.1464,0.9239,0.3536,-0.2126,0.8315,0.5133,-0.3087,0.8315,0.4619,-0.1464,0.9239,0.3536,-0.3087,0.8315,0.4619,-0.2126,0.9239,0.3182,-0.2126,0.9239,0.3182,-0.3087,0.8315,0.4619,-0.3928,0.8315,0.3928,-0.2126,0.9239,0.3182,-0.3928,0.8315,0.3928,-0.2706,0.9239,0.2706,-0.2706,0.9239,0.2706,-0.3928,0.8315,0.3928,-0.4619,0.8315,0.3087,-0.2706,0.9239,0.2706,-0.4619,0.8315,0.3087,-0.3182,0.9239,0.2126,-0.3182,0.9239,0.2126,-0.4619,0.8315,0.3087,-0.5133,0.8315,0.2126,-0.3182,0.9239,0.2126,-0.5133,0.8315,0.2126,-0.3536,0.9239,0.1464,-0.3536,0.9239,0.1464,-0.5133,0.8315,0.2126,-0.5449,0.8315,0.1084,-0.3536,0.9239,0.1464,-0.5449,0.8315,0.1084,-0.3753,0.9239,0.0747,-0.3753,0.9239,0.0747,-0.5449,0.8315,0.1084,-0.5556,0.8315,0.0,-0.3753,0.9239,0.0747,-0.5556,0.8315,0.0,-0.3827,0.9239,0.0,-0.3827,0.9239,0.0,-0.5556,0.8315,0.0,-0.5449,0.8315,-0.1084,-0.3827,0.9239,0.0,-0.5449,0.8315,-0.1084,-0.3753,0.9239,-0.0747,-0.3753,0.9239,-0.0747,-0.5449,0.8315,-0.1084,-0.5133,0.8315,-0.2126,-0.3753,0.9239,-0.0747,-0.5133,0.8315,-0.2126,-0.3536,0.9239,-0.1464,-0.3536,0.9239,-0.1464,-0.5133,0.8315,-0.2126,-0.4619,0.8315,-0.3087,-0.3536,0.9239,-0.1464,-0.4619,0.8315,-0.3087,-0.3182,0.9239,-0.2126,-0.3182,0.9239,-0.2126,-0.4619,0.8315,-0.3087,-0.3928,0.8315,-0.3928,-0.3182,0.9239,-0.2126,-0.3928,0.8315,-0.3928,-0.2706,0.9239,-0.2706,-0.2706,0.9239,-0.2706,-0.3928,0.8315,-0.3928,-0.3087,0.8315,-0.4619,-0.2706,0.9239,-0.2706,-0.3087,0.8315,-0.4619,-0.2126,0.9239,-0.3182,-0.2126,0.9239,-0.3182,-0.3087,0.8315,-0.4619,-0.2126,0.8315,-0.5133,-0.2126,0.9239,-0.3182,-0.2126,0.8315,-0.5133,-0.1464,0.9239,-0.3536,-0.1464,0.9239,-0.3536,-0.2126,0.8315,-0.5133,-0.1084,0.8315,-0.5449,-0.1464,0.9239,-0.3536,-0.1084,0.8315,-0.5449,-0.0747,0.9239,-0.3753,-0.0747,0.9239,-0.3753,-0.1084,0.8315,-0.5449,0.0,0.8315,-0.5556,-0.0747,0.9239,-0.3753,0.0,0.8315,-0.5556,0.0,0.9239,-0.3827,0.0,0.9239,-0.3827,0.0,0.8315,-0.5556,0.1084,0.8315,-0.5449,0.0,0.9239,-0.3827,0.1084,0.8315,-0.5449,0.0747,0.9239,-0.3753,0.0747,0.9239,-0.3753,0.1084,0.8315,-0.5449,0.2126,0.8315,-0.5133,0.0747,0.9239,-0.3753,0.2126,0.8315,-0.5133,0.1464,0.9239,-0.3536,0.1464,0.9239,-0.3536,0.2126,0.8315,-0.5133,0.3087,0.8315,-0.4619,0.1464,0.9239,-0.3536,0.3087,0.8315,-0.4619,0.2126,0.9239,-0.3182,0.2126,0.9239,-0.3182,0.3087,0.8315,-0.4619,0.3928,0.8315,-0.3928,0.2126,0.9239,-0.3182,0.3928,0.8315,-0.3928,0.2706,0.9239,-0.2706,0.2706,0.9239,-0.2706,0.3928,0.8315,-0.3928,0.4619,0.8315,-0.3087,0.2706,0.9239,-0.2706,0.4619,0.8315,-0.3087,0.3182,0.9239,-0.2126,0.3182,0.9239,-0.2126,0.4619,0.8315,-0.3087,0.5133,0.8315,-0.2126,0.3182,0.9239,-0.2126,0.5133,0.8315,-0.2126,0.3536,0.9239,-0.1464,0.3536,0.9239,-0.1464,0.5133,0.8315,-0.2126,0.5449,0.8315,-0.1084,0.3536,0.9239,-0.1464,0.5449,0.8315,-0.1084,0.3753,0.9239,-0.0747,0.3753,0.9239,-0.0747,0.5449,0.8315,-0.1084,0.5556,0.8315,0.0,0.3753,0.9239,-0.0747,0.5556,0.8315,0.0,0.3827,0.9239,0.0,0.3827,0.9239,0.0,0.5556,0.8315,0.0,0.5449,0.8315,0.1084,0.3827,0.9239,0.0,0.5449,0.8315,0.1084,0.3753,0.9239,0.0747,0.3753,0.9239,0.0747,0.5449,0.8315,0.1084,0.5133,0.8315,0.2126,0.3753,0.9239,0.0747,0.5133,0.8315,0.2126,0.3536,0.9239,0.1464,0.3536,0.9239,0.1464,0.5133,0.8315,0.2126,0.4619,0.8315,0.3087,0.3536,0.9239,0.1464,0.4619,0.8315,0.3087,0.3182,0.9239,0.2126,0.3182,0.9239,0.2126,0.4619,0.8315,0.3087,0.3928,0.8315,0.3928,0.3182,0.9239,0.2126,0.3928,0.8315,0.3928,0.2706,0.9239,0.2706,0.2706,0.9239,0.2706,0.3928,0.8315,0.3928,0.3087,0.8315,0.4619,0.2706,0.9239,0.2706,0.3087,0.8315,0.4619,0.2126,0.9239,0.3182,0.2126,0.9239,0.3182,0.3087,0.8315,0.4619,0.2126,0.8315,0.5133,0.2126,0.9239,0.3182,0.2126,0.8315,0.5133,0.1464,0.9239,0.3536,0.1464,0.9239,0.3536,0.2126,0.8315,0.5133,0.1084,0.8315,0.5449,0.1464,0.9239,0.3536,0.1084,0.8315,0.5449,0.0747,0.9239,0.3753,0.0747,0.9239,0.3753,0.1084,0.8315,0.5449,0.0,0.8315,0.5556,0.0747,0.9239,0.3753,0.0,0.8315,0.5556,0.0,0.9239,0.3827,0.0,0.8315,0.5556,0.0,0.7071,0.7071,-0.1379,0.7071,0.6935,0.0,0.8315,0.5556,-0.1379,0.7071,0.6935,-0.1084,0.8315,0.5449,-0.1084,0.8315,0.5449,-0.1379,0.7071,0.6935,-0.2706,0.7071,0.6533,-0.1084,0.8315,0.5449,-0.2706,0.7071,0.6533,-0.2126,0.8315,0.5133,-0.2126,0.8315,0.5133,-0.2706,0.7071,0.6533,-0.3928,0.7071,0.5879,-0.2126,0.8315,0.5133,-0.3928,0.7071,0.5879,-0.3087,0.8315,0.4619,-0.3087,0.8315,0.4619,-0.3928,0.7071,0.5879,-0.5,0.7071,0.5,-0.3087,0.8315,0.4619,-0.5,0.7071,0.5,-0.3928,0.8315,0.3928,-0.3928,0.8315,0.3928,-0.5,0.7071,0.5,-0.5879,0.7071,0.3928,-0.3928,0.8315,0.3928,-0.5879,0.7071,0.3928,-0.4619,0.8315,0.3087,-0.4619,0.8315,0.3087,-0.5879,0.7071,0.3928,-0.6533,0.7071,0.2706,-0.4619,0.8315,0.3087,-0.6533,0.7071,0.2706,-0.5133,0.8315,0.2126,-0.5133,0.8315,0.2126,-0.6533,0.7071,0.2706,-0.6935,0.7071,0.1379,-0.5133,0.8315,0.2126,-0.6935,0.7071,0.1379,-0.5449,0.8315,0.1084,-0.5449,0.8315,0.1084,-0.6935,0.7071,0.1379,-0.7071,0.7071,0.0,-0.5449,0.8315,0.1084,-0.7071,0.7071,0.0,-0.5556,0.8315,0.0,-0.5556,0.8315,0.0,-0.7071,0.7071,0.0,-0.6935,0.7071,-0.1379,-0.5556,0.8315,0.0,-0.6935,0.7071,-0.1379,-0.5449,0.8315,-0.1084,-0.5449,0.8315,-0.1084,-0.6935,0.7071,-0.1379,-0.6533,0.7071,-0.2706,-0.5449,0.8315,-0.1084,-0.6533,0.7071,-0.2706,-0.5133,0.8315,-0.2126,-0.5133,0.8315,-0.2126,-0.6533,0.7071,-0.2706,-0.5879,0.7071,-0.3928,-0.5133,0.8315,-0.2126,-0.5879,0.7071,-0.3928,-0.4619,0.8315,-0.3087,-0.4619,0.8315,-0.3087,-0.5879,0.7071,-0.3928,-0.5,0.7071,-0.5,-0.4619,0.8315,-0.3087,-0.5,0.7071,-0.5,-0.3928,0.8315,-0.3928,-0.3928,0.8315,-0.3928,-0.5,0.7071,-0.5,-0.3928,0.7071,-0.5879,-0.3928,0.8315,-0.3928,-0.3928,0.7071,-0.5879,-0.3087,0.8315,-0.4619,-0.3087,0.8315,-0.4619,-0.3928,0.7071,-0.5879,-0.2706,0.7071,-0.6533,-0.3087,0.8315,-0.4619,-0.2706,0.7071,-0.6533,-0.2126,0.8315,-0.5133,-0.2126,0.8315,-0.5133,-0.2706,0.7071,-0.6533,-0.1379,0.7071,-0.6935,-0.2126,0.8315,-0.5133,-0.1379,0.7071,-0.6935,-0.1084,0.8315,-0.5449,-0.1084,0.8315,-0.5449,-0.1379,0.7071,-0.6935,0.0,0.7071,-0.7071,-0.1084,0.8315,-0.5449,0.0,0.7071,-0.7071,0.0,0.8315,-0.5556,0.0,0.8315,-0.5556,0.0,0.7071,-0.7071,0.138,0.7071,-0.6935,0.0,0.8315,-0.5556,0.138,0.7071,-0.6935,0.1084,0.8315,-0.5449,0.1084,0.8315,-0.5449,0.138,0.7071,-0.6935,0.2706,0.7071,-0.6533,0.1084,0.8315,-0.5449,0.2706,0.7071,-0.6533,0.2126,0.8315,-0.5133,0.2126,0.8315,-0.5133,0.2706,0.7071,-0.6533,0.3928,0.7071,-0.5879,0.2126,0.8315,-0.5133,0.3928,0.7071,-0.5879,0.3087,0.8315,-0.4619,0.3087,0.8315,-0.4619,0.3928,0.7071,-0.5879,0.5,0.7071,-0.5,0.3087,0.8315,-0.4619,0.5,0.7071,-0.5,0.3928,0.8315,-0.3928,0.3928,0.8315,-0.3928,0.5,0.7071,-0.5,0.5879,0.7071,-0.3928,0.3928,0.8315,-0.3928,0.5879,0.7071,-0.3928,0.4619,0.8315,-0.3087,0.4619,0.8315,-0.3087,0.5879,0.7071,-0.3928,0.6533,0.7071,-0.2706,0.4619,0.8315,-0.3087,0.6533,0.7071,-0.2706,0.5133,0.8315,-0.2126,0.5133,0.8315,-0.2126,0.6533,0.7071,-0.2706,0.6935,0.7071,-0.1379,0.5133,0.8315,-0.2126,0.6935,0.7071,-0.1379,0.5449,0.8315,-0.1084,0.5449,0.8315,-0.1084,0.6935,0.7071,-0.1379,0.7071,0.7071,0.0,0.5449,0.8315,-0.1084,0.7071,0.7071,0.0,0.5556,0.8315,0.0,0.5556,0.8315,0.0,0.7071,0.7071,0.0,0.6935,0.7071,0.138,0.5556,0.8315,0.0,0.6935,0.7071,0.138,0.5449,0.8315,0.1084,0.5449,0.8315,0.1084,0.6935,0.7071,0.138,0.6533,0.7071,0.2706,0.5449,0.8315,0.1084,0.6533,0.7071,0.2706,0.5133,0.8315,0.2126,0.5133,0.8315,0.2126,0.6533,0.7071,0.2706,0.5879,0.7071,0.3928,0.5133,0.8315,0.2126,0.5879,0.7071,0.3928,0.4619,0.8315,0.3087,0.4619,0.8315,0.3087,0.5879,0.7071,0.3928,0.5,0.7071,0.5,0.4619,0.8315,0.3087,0.5,0.7071,0.5,0.3928,0.8315,0.3928,0.3928,0.8315,0.3928,0.5,0.7071,0.5,0.3928,0.7071,0.5879,0.3928,0.8315,0.3928,0.3928,0.7071,0.5879,0.3087,0.8315,0.4619,0.3087,0.8315,0.4619,0.3928,0.7071,0.5879,0.2706,0.7071,0.6533,0.3087,0.8315,0.4619,0.2706,0.7071,0.6533,0.2126,0.8315,0.5133,0.2126,0.8315,0.5133,0.2706,0.7071,0.6533,0.1379,0.7071,0.6935,0.2126,0.8315,0.5133,0.1379,0.7071,0.6935,0.1084,0.8315,0.5449,0.1084,0.8315,0.5449,0.1379,0.7071,0.6935,0.0,0.7071,0.7071,0.1084,0.8315,0.5449,0.0,0.7071,0.7071,0.0,0.8315,0.5556,0.0,0.7071,0.7071,0.0,0.5556,0.8315,-0.1622,0.5556,0.8155,0.0,0.7071,0.7071,-0.1622,0.5556,0.8155,-0.1379,0.7071,0.6935,-0.1379,0.7071,0.6935,-0.1622,0.5556,0.8155,-0.3182,0.5556,0.7682,-0.1379,0.7071,0.6935,-0.3182,0.5556,0.7682,-0.2706,0.7071,0.6533,-0.2706,0.7071,0.6533,-0.3182,0.5556,0.7682,-0.4619,0.5556,0.6913,-0.2706,0.7071,0.6533,-0.4619,0.5556,0.6913,-0.3928,0.7071,0.5879,-0.3928,0.7071,0.5879,-0.4619,0.5556,0.6913,-0.5879,0.5556,0.5879,-0.3928,0.7071,0.5879,-0.5879,0.5556,0.5879,-0.5,0.7071,0.5,-0.5,0.7071,0.5,-0.5879,0.5556,0.5879,-0.6913,0.5556,0.4619,-0.5,0.7071,0.5,-0.6913,0.5556,0.4619,-0.5879,0.7071,0.3928,-0.5879,0.7071,0.3928,-0.6913,0.5556,0.4619,-0.7682,0.5556,0.3182,-0.5879,0.7071,0.3928,-0.7682,0.5556,0.3182,-0.6533,0.7071,0.2706,-0.6533,0.7071,0.2706,-0.7682,0.5556,0.3182,-0.8155,0.5556,0.1622,-0.6533,0.7071,0.2706,-0.8155,0.5556,0.1622,-0.6935,0.7071,0.1379,-0.6935,0.7071,0.1379,-0.8155,0.5556,0.1622,-0.8315,0.5556,0.0,-0.6935,0.7071,0.1379,-0.8315,0.5556,0.0,-0.7071,0.7071,0.0,-0.7071,0.7071,0.0,-0.8315,0.5556,0.0,-0.8155,0.5556,-0.1622,-0.7071,0.7071,0.0,-0.8155,0.5556,-0.1622,-0.6935,0.7071,-0.1379,-0.6935,0.7071,-0.1379,-0.8155,0.5556,-0.1622,-0.7682,0.5556,-0.3182,-0.6935,0.7071,-0.1379,-0.7682,0.5556,-0.3182,-0.6533,0.7071,-0.2706,-0.6533,0.7071,-0.2706,-0.7682,0.5556,-0.3182,-0.6913,0.5556,-0.4619,-0.6533,0.7071,-0.2706,-0.6913,0.5556,-0.4619,-0.5879,0.7071,-0.3928,-0.5879,0.7071,-0.3928,-0.6913,0.5556,-0.4619,-0.5879,0.5556,-0.5879,-0.5879,0.7071,-0.3928,-0.5879,0.5556,-0.5879,-0.5,0.7071,-0.5,-0.5,0.7071,-0.5,-0.5879,0.5556,-0.5879,-0.4619,0.5556,-0.6913,-0.5,0.7071,-0.5,-0.4619,0.5556,-0.6913,-0.3928,0.7071,-0.5879,-0.3928,0.7071,-0.5879,-0.4619,0.5556,-0.6913,-0.3182,0.5556,-0.7682,-0.3928,0.7071,-0.5879,-0.3182,0.5556,-0.7682,-0.2706,0.7071,-0.6533,-0.2706,0.7071,-0.6533,-0.3182,0.5556,-0.7682,-0.1622,0.5556,-0.8155,-0.2706,0.7071,-0.6533,-0.1622,0.5556,-0.8155,-0.1379,0.7071,-0.6935,-0.1379,0.7071,-0.6935,-0.1622,0.5556,-0.8155,0.0,0.5556,-0.8315,-0.1379,0.7071,-0.6935,0.0,0.5556,-0.8315,0.0,0.7071,-0.7071,0.0,0.7071,-0.7071,0.0,0.5556,-0.8315,0.1622,0.5556,-0.8155,0.0,0.7071,-0.7071,0.1622,0.5556,-0.8155,0.138,0.7071,-0.6935,0.138,0.7071,-0.6935,0.1622,0.5556,-0.8155,0.3182,0.5556,-0.7682,0.138,0.7071,-0.6935,0.3182,0.5556,-0.7682,0.2706,0.7071,-0.6533,0.2706,0.7071,-0.6533,0.3182,0.5556,-0.7682,0.4619,0.5556,-0.6913,0.2706,0.7071,-0.6533,0.4619,0.5556,-0.6913,0.3928,0.7071,-0.5879,0.3928,0.7071,-0.5879,0.4619,0.5556,-0.6913,0.5879,0.5556,-0.5879,0.3928,0.7071,-0.5879,0.5879,0.5556,-0.5879,0.5,0.7071,-0.5,0.5,0.7071,-0.5,0.5879,0.5556,-0.5879,0.6913,0.5556,-0.4619,0.5,0.7071,-0.5,0.6913,0.5556,-0.4619,0.5879,0.7071,-0.3928,0.5879,0.7071,-0.3928,0.6913,0.5556,-0.4619,0.7682,0.5556,-0.3182,0.5879,0.7071,-0.3928,0.7682,0.5556,-0.3182,0.6533,0.7071,-0.2706,0.6533,0.7071,-0.2706,0.7682,0.5556,-0.3182,0.8155,0.5556,-0.1622,0.6533,0.7071,-0.2706,0.8155,0.5556,-0.1622,0.6935,0.7071,-0.1379,0.6935,0.7071,-0.1379,0.8155,0.5556,-0.1622,0.8315,0.5556,0.0,0.6935,0.7071,-0.1379,0.8315,0.5556,0.0,0.7071,0.7071,0.0,0.7071,0.7071,0.0,0.8315,0.5556,0.0,0.8155,0.5556,0.1622,0.7071,0.7071,0.0,0.8155,0.5556,0.1622,0.6935,0.7071,0.138,0.6935,0.7071,0.138,0.8155,0.5556,0.1622,0.7682,0.5556,0.3182,0.6935,0.7071,0.138,0.7682,0.5556,0.3182,0.6533,0.7071,0.2706,0.6533,0.7071,0.2706,0.7682,0.5556,0.3182,0.6913,0.5556,0.4619,0.6533,0.7071,0.2706,0.6913,0.5556,0.4619,0.5879,0.7071,0.3928,0.5879,0.7071,0.3928,0.6913,0.5556,0.4619,0.5879,0.5556,0.5879,0.5879,0.7071,0.3928,0.5879,0.5556,0.5879,0.5,0.7071,0.5,0.5,0.7071,0.5,0.5879,0.5556,0.5879,0.4619,0.5556,0.6913,0.5,0.7071,0.5,0.4619,0.5556,0.6913,0.3928,0.7071,0.5879,0.3928,0.7071,0.5879,0.4619,0.5556,0.6913,0.3182,0.5556,0.7682,0.3928,0.7071,0.5879,0.3182,0.5556,0.7682,0.2706,0.7071,0.6533,0.2706,0.7071,0.6533,0.3182,0.5556,0.7682,0.1622,0.5556,0.8155,0.2706,0.7071,0.6533,0.1622,0.5556,0.8155,0.1379,0.7071,0.6935,0.1379,0.7071,0.6935,0.1622,0.5556,0.8155,0.0,0.5556,0.8315,0.1379,0.7071,0.6935,0.0,0.5556,0.8315,0.0,0.7071,0.7071,0.0,0.5556,0.8315,0.0,0.3827,0.9239,-0.1802,0.3827,0.9061,0.0,0.5556,0.8315,-0.1802,0.3827,0.9061,-0.1622,0.5556,0.8155,-0.1622,0.5556,0.8155,-0.1802,0.3827,0.9061,-0.3536,0.3827,0.8536,-0.1622,0.5556,0.8155,-0.3536,0.3827,0.8536,-0.3182,0.5556,0.7682,-0.3182,0.5556,0.7682,-0.3536,0.3827,0.8536,-0.5133,0.3827,0.7682,-0.3182,0.5556,0.7682,-0.5133,0.3827,0.7682,-0.4619,0.5556,0.6913,-0.4619,0.5556,0.6913,-0.5133,0.3827,0.7682,-0.6533,0.3827,0.6533,-0.4619,0.5556,0.6913,-0.6533,0.3827,0.6533,-0.5879,0.5556,0.5879,-0.5879,0.5556,0.5879,-0.6533,0.3827,0.6533,-0.7682,0.3827,0.5133,-0.5879,0.5556,0.5879,-0.7682,0.3827,0.5133,-0.6913,0.5556,0.4619,-0.6913,0.5556,0.4619,-0.7682,0.3827,0.5133,-0.8536,0.3827,0.3536,-0.6913,0.5556,0.4619,-0.8536,0.3827,0.3536,-0.7682,0.5556,0.3182,-0.7682,0.5556,0.3182,-0.8536,0.3827,0.3536,-0.9061,0.3827,0.1802,-0.7682,0.5556,0.3182,-0.9061,0.3827,0.1802,-0.8155,0.5556,0.1622,-0.8155,0.5556,0.1622,-0.9061,0.3827,0.1802,-0.9239,0.3827,0.0,-0.8155,0.5556,0.1622,-0.9239,0.3827,0.0,-0.8315,0.5556,0.0,-0.8315,0.5556,0.0,-0.9239,0.3827,0.0,-0.9061,0.3827,-0.1802,-0.8315,0.5556,0.0,-0.9061,0.3827,-0.1802,-0.8155,0.5556,-0.1622,-0.8155,0.5556,-0.1622,-0.9061,0.3827,-0.1802,-0.8536,0.3827,-0.3536,-0.8155,0.5556,-0.1622,-0.8536,0.3827,-0.3536,-0.7682,0.5556,-0.3182,-0.7682,0.5556,-0.3182,-0.8536,0.3827,-0.3536,-0.7682,0.3827,-0.5133,-0.7682,0.5556,-0.3182,-0.7682,0.3827,-0.5133,-0.6913,0.5556,-0.4619,-0.6913,0.5556,-0.4619,-0.7682,0.3827,-0.5133,-0.6533,0.3827,-0.6533,-0.6913,0.5556,-0.4619,-0.6533,0.3827,-0.6533,-0.5879,0.5556,-0.5879,-0.5879,0.5556,-0.5879,-0.6533,0.3827,-0.6533,-0.5133,0.3827,-0.7682,-0.5879,0.5556,-0.5879,-0.5133,0.3827,-0.7682,-0.4619,0.5556,-0.6913,-0.4619,0.5556,-0.6913,-0.5133,0.3827,-0.7682,-0.3536,0.3827,-0.8536,-0.4619,0.5556,-0.6913,-0.3536,0.3827,-0.8536,-0.3182,0.5556,-0.7682,-0.3182,0.5556,-0.7682,-0.3536,0.3827,-0.8536,-0.1802,0.3827,-0.9061,-0.3182,0.5556,-0.7682,-0.1802,0.3827,-0.9061,-0.1622,0.5556,-0.8155,-0.1622,0.5556,-0.8155,-0.1802,0.3827,-0.9061,0.0,0.3827,-0.9239,-0.1622,0.5556,-0.8155,0.0,0.3827,-0.9239,0.0,0.5556,-0.8315,0.0,0.5556,-0.8315,0.0,0.3827,-0.9239,0.1802,0.3827,-0.9061,0.0,0.5556,-0.8315,0.1802,0.3827,-0.9061,0.1622,0.5556,-0.8155,0.1622,0.5556,-0.8155,0.1802,0.3827,-0.9061,0.3536,0.3827,-0.8536,0.1622,0.5556,-0.8155,0.3536,0.3827,-0.8536,0.3182,0.5556,-0.7682,0.3182,0.5556,-0.7682,0.3536,0.3827,-0.8536,0.5133,0.3827,-0.7682,0.3182,0.5556,-0.7682,0.5133,0.3827,-0.7682,0.4619,0.5556,-0.6913,0.4619,0.5556,-0.6913,0.5133,0.3827,-0.7682,0.6533,0.3827,-0.6533,0.4619,0.5556,-0.6913,0.6533,0.3827,-0.6533,0.5879,0.5556,-0.5879,0.5879,0.5556,-0.5879,0.6533,0.3827,-0.6533,0.7682,0.3827,-0.5133,0.5879,0.5556,-0.5879,0.7682,0.3827,-0.5133,0.6913,0.5556,-0.4619,0.6913,0.5556,-0.4619,0.7682,0.3827,-0.5133,0.8536,0.3827,-0.3536,0.6913,0.5556,-0.4619,0.8536,0.3827,-0.3536,0.7682,0.5556,-0.3182,0.7682,0.5556,-0.3182,0.8536,0.3827,-0.3536,0.9061,0.3827,-0.1802,0.7682,0.5556,-0.3182,0.9061,0.3827,-0.1802,0.8155,0.5556,-0.1622,0.8155,0.5556,-0.1622,0.9061,0.3827,-0.1802,0.9239,0.3827,0.0,0.8155,0.5556,-0.1622,0.9239,0.3827,0.0,0.8315,0.5556,0.0,0.8315,0.5556,0.0,0.9239,0.3827,0.0,0.9061,0.3827,0.1802,0.8315,0.5556,0.0,0.9061,0.3827,0.1802,0.8155,0.5556,0.1622,0.8155,0.5556,0.1622,0.9061,0.3827,0.1802,0.8536,0.3827,0.3536,0.8155,0.5556,0.1622,0.8536,0.3827,0.3536,0.7682,0.5556,0.3182,0.7682,0.5556,0.3182,0.8536,0.3827,0.3536,0.7682,0.3827,0.5133,0.7682,0.5556,0.3182,0.7682,0.3827,0.5133,0.6913,0.5556,0.4619,0.6913,0.5556,0.4619,0.7682,0.3827,0.5133,0.6533,0.3827,0.6533,0.6913,0.5556,0.4619,0.6533,0.3827,0.6533,0.5879,0.5556,0.5879,0.5879,0.5556,0.5879,0.6533,0.3827,0.6533,0.5133,0.3827,0.7682,0.5879,0.5556,0.5879,0.5133,0.3827,0.7682,0.4619,0.5556,0.6913,0.4619,0.5556,0.6913,0.5133,0.3827,0.7682,0.3536,0.3827,0.8536,0.4619,0.5556,0.6913,0.3536,0.3827,0.8536,0.3182,0.5556,0.7682,0.3182,0.5556,0.7682,0.3536,0.3827,0.8536,0.1802,0.3827,0.9061,0.3182,0.5556,0.7682,0.1802,0.3827,0.9061,0.1622,0.5556,0.8155,0.1622,0.5556,0.8155,0.1802,0.3827,0.9061,0.0,0.3827,0.9239,0.1622,0.5556,0.8155,0.0,0.3827,0.9239,0.0,0.5556,0.8315,0.0,0.3827,0.9239,0.0,0.1951,0.9808,-0.1913,0.1951,0.9619,0.0,0.3827,0.9239,-0.1913,0.1951,0.9619,-0.1802,0.3827,0.9061,-0.1802,0.3827,0.9061,-0.1913,0.1951,0.9619,-0.3753,0.1951,0.9061,-0.1802,0.3827,0.9061,-0.3753,0.1951,0.9061,-0.3536,0.3827,0.8536,-0.3536,0.3827,0.8536,-0.3753,0.1951,0.9061,-0.5449,0.1951,0.8155,-0.3536,0.3827,0.8536,-0.5449,0.1951,0.8155,-0.5133,0.3827,0.7682,-0.5133,0.3827,0.7682,-0.5449,0.1951,0.8155,-0.6935,0.1951,0.6935,-0.5133,0.3827,0.7682,-0.6935,0.1951,0.6935,-0.6533,0.3827,0.6533,-0.6533,0.3827,0.6533,-0.6935,0.1951,0.6935,-0.8155,0.1951,0.5449,-0.6533,0.3827,0.6533,-0.8155,0.1951,0.5449,-0.7682,0.3827,0.5133,-0.7682,0.3827,0.5133,-0.8155,0.1951,0.5449,-0.9061,0.1951,0.3753,-0.7682,0.3827,0.5133,-0.9061,0.1951,0.3753,-0.8536,0.3827,0.3536,-0.8536,0.3827,0.3536,-0.9061,0.1951,0.3753,-0.9619,0.1951,0.1913,-0.8536,0.3827,0.3536,-0.9619,0.1951,0.1913,-0.9061,0.3827,0.1802,-0.9061,0.3827,0.1802,-0.9619,0.1951,0.1913,-0.9808,0.1951,0.0,-0.9061,0.3827,0.1802,-0.9808,0.1951,0.0,-0.9239,0.3827,0.0,-0.9239,0.3827,0.0,-0.9808,0.1951,0.0,-0.9619,0.1951,-0.1913,-0.9239,0.3827,0.0,-0.9619,0.1951,-0.1913,-0.9061,0.3827,-0.1802,-0.9061,0.3827,-0.1802,-0.9619,0.1951,-0.1913,-0.9061,0.1951,-0.3753,-0.9061,0.3827,-0.1802,-0.9061,0.1951,-0.3753,-0.8536,0.3827,-0.3536,-0.8536,0.3827,-0.3536,-0.9061,0.1951,-0.3753,-0.8155,0.1951,-0.5449,-0.8536,0.3827,-0.3536,-0.8155,0.1951,-0.5449,-0.7682,0.3827,-0.5133,-0.7682,0.3827,-0.5133,-0.8155,0.1951,-0.5449,-0.6935,0.1951,-0.6935,-0.7682,0.3827,-0.5133,-0.6935,0.1951,-0.6935,-0.6533,0.3827,-0.6533,-0.6533,0.3827,-0.6533,-0.6935,0.1951,-0.6935,-0.5449,0.1951,-0.8155,-0.6533,0.3827,-0.6533,-0.5449,0.1951,-0.8155,-0.5133,0.3827,-0.7682,-0.5133,0.3827,-0.7682,-0.5449,0.1951,-0.8155,-0.3753,0.1951,-0.9061,-0.5133,0.3827,-0.7682,-0.3753,0.1951,-0.9061,-0.3536,0.3827,-0.8536,-0.3536,0.3827,-0.8536,-0.3753,0.1951,-0.9061,-0.1913,0.1951,-0.9619,-0.3536,0.3827,-0.8536,-0.1913,0.1951,-0.9619,-0.1802,0.3827,-0.9061,-0.1802,0.3827,-0.9061,-0.1913,0.1951,-0.9619,0.0,0.1951,-0.9808,-0.1802,0.3827,-0.9061,0.0,0.1951,-0.9808,0.0,0.3827,-0.9239,0.0,0.3827,-0.9239,0.0,0.1951,-0.9808,0.1913,0.1951,-0.9619,0.0,0.3827,-0.9239,0.1913,0.1951,-0.9619,0.1802,0.3827,-0.9061,0.1802,0.3827,-0.9061,0.1913,0.1951,-0.9619,0.3753,0.1951,-0.9061,0.1802,0.3827,-0.9061,0.3753,0.1951,-0.9061,0.3536,0.3827,-0.8536,0.3536,0.3827,-0.8536,0.3753,0.1951,-0.9061,0.5449,0.1951,-0.8155,0.3536,0.3827,-0.8536,0.5449,0.1951,-0.8155,0.5133,0.3827,-0.7682,0.5133,0.3827,-0.7682,0.5449,0.1951,-0.8155,0.6935,0.1951,-0.6935,0.5133,0.3827,-0.7682,0.6935,0.1951,-0.6935,0.6533,0.3827,-0.6533,0.6533,0.3827,-0.6533,0.6935,0.1951,-0.6935,0.8155,0.1951,-0.5449,0.6533,0.3827,-0.6533,0.8155,0.1951,-0.5449,0.7682,0.3827,-0.5133,0.7682,0.3827,-0.5133,0.8155,0.1951,-0.5449,0.9061,0.1951,-0.3753,0.7682,0.3827,-0.5133,0.9061,0.1951,-0.3753,0.8536,0.3827,-0.3536,0.8536,0.3827,-0.3536,0.9061,0.1951,-0.3753,0.9619,0.1951,-0.1913,0.8536,0.3827,-0.3536,0.9619,0.1951,-0.1913,0.9061,0.3827,-0.1802,0.9061,0.3827,-0.1802,0.9619,0.1951,-0.1913,0.9808,0.1951,0.0,0.9061,0.3827,-0.1802,0.9808,0.1951,0.0,0.9239,0.3827,0.0,0.9239,0.3827,0.0,0.9808,0.1951,0.0,0.9619,0.1951,0.1913,0.9239,0.3827,0.0,0.9619,0.1951,0.1913,0.9061,0.3827,0.1802,0.9061,0.3827,0.1802,0.9619,0.1951,0.1913,0.9061,0.1951,0.3753,0.9061,0.3827,0.1802,0.9061,0.1951,0.3753,0.8536,0.3827,0.3536,0.8536,0.3827,0.3536,0.9061,0.1951,0.3753,0.8155,0.1951,0.5449,0.8536,0.3827,0.3536,0.8155,0.1951,0.5449,0.7682,0.3827,0.5133,0.7682,0.3827,0.5133,0.8155,0.1951,0.5449,0.6935,0.1951,0.6935,0.7682,0.3827,0.5133,0.6935,0.1951,0.6935,0.6533,0.3827,0.6533,0.6533,0.3827,0.6533,0.6935,0.1951,0.6935,0.5449,0.1951,0.8155,0.6533,0.3827,0.6533,0.5449,0.1951,0.8155,0.5133,0.3827,0.7682,0.5133,0.3827,0.7682,0.5449,0.1951,0.8155,0.3753,0.1951,0.9061,0.5133,0.3827,0.7682,0.3753,0.1951,0.9061,0.3536,0.3827,0.8536,0.3536,0.3827,0.8536,0.3753,0.1951,0.9061,0.1913,0.1951,0.9619,0.3536,0.3827,0.8536,0.1913,0.1951,0.9619,0.1802,0.3827,0.9061,0.1802,0.3827,0.9061,0.1913,0.1951,0.9619,0.0,0.1951,0.9808,0.1802,0.3827,0.9061,0.0,0.1951,0.9808,0.0,0.3827,0.9239,0.0,0.1951,0.9808,0.0,0.0,1.0,-0.1951,0.0,0.9808,0.0,0.1951,0.9808,-0.1951,0.0,0.9808,-0.1913,0.1951,0.9619,-0.1913,0.1951,0.9619,-0.1951,0.0,0.9808,-0.3827,0.0,0.9239,-0.1913,0.1951,0.9619,-0.3827,0.0,0.9239,-0.3753,0.1951,0.9061,-0.3753,0.1951,0.9061,-0.3827,0.0,0.9239,-0.5556,0.0,0.8315,-0.3753,0.1951,0.9061,-0.5556,0.0,0.8315,-0.5449,0.1951,0.8155,-0.5449,0.1951,0.8155,-0.5556,0.0,0.8315,-0.7071,0.0,0.7071,-0.5449,0.1951,0.8155,-0.7071,0.0,0.7071,-0.6935,0.1951,0.6935,-0.6935,0.1951,0.6935,-0.7071,0.0,0.7071,-0.8315,0.0,0.5556,-0.6935,0.1951,0.6935,-0.8315,0.0,0.5556,-0.8155,0.1951,0.5449,-0.8155,0.1951,0.5449,-0.8315,0.0,0.5556,-0.9239,0.0,0.3827,-0.8155,0.1951,0.5449,-0.9239,0.0,0.3827,-0.9061,0.1951,0.3753,-0.9061,0.1951,0.3753,-0.9239,0.0,0.3827,-0.9808,0.0,0.1951,-0.9061,0.1951,0.3753,-0.9808,0.0,0.1951,-0.9619,0.1951,0.1913,-0.9619,0.1951,0.1913,-0.9808,0.0,0.1951,-1.0,0.0,0.0,-0.9619,0.1951,0.1913,-1.0,0.0,0.0,-0.9808,0.1951,0.0,-0.9808,0.1951,0.0,-1.0,0.0,0.0,-0.9808,0.0,-0.1951,-0.9808,0.1951,0.0,-0.9808,0.0,-0.1951,-0.9619,0.1951,-0.1913,-0.9619,0.1951,-0.1913,-0.9808,0.0,-0.1951,-0.9239,0.0,-0.3827,-0.9619,0.1951,-0.1913,-0.9239,0.0,-0.3827,-0.9061,0.1951,-0.3753,-0.9061,0.1951,-0.3753,-0.9239,0.0,-0.3827,-0.8315,0.0,-0.5556,-0.9061,0.1951,-0.3753,-0.8315,0.0,-0.5556,-0.8155,0.1951,-0.5449,-0.8155,0.1951,-0.5449,-0.8315,0.0,-0.5556,-0.7071,0.0,-0.7071,-0.8155,0.1951,-0.5449,-0.7071,0.0,-0.7071,-0.6935,0.1951,-0.6935,-0.6935,0.1951,-0.6935,-0.7071,0.0,-0.7071,-0.5556,0.0,-0.8315,-0.6935,0.1951,-0.6935,-0.5556,0.0,-0.8315,-0.5449,0.1951,-0.8155,-0.5449,0.1951,-0.8155,-0.5556,0.0,-0.8315,-0.3827,0.0,-0.9239,-0.5449,0.1951,-0.8155,-0.3827,0.0,-0.9239,-0.3753,0.1951,-0.9061,-0.3753,0.1951,-0.9061,-0.3827,0.0,-0.9239,-0.1951,0.0,-0.9808,-0.3753,0.1951,-0.9061,-0.1951,0.0,-0.9808,-0.1913,0.1951,-0.9619,-0.1913,0.1951,-0.9619,-0.1951,0.0,-0.9808,0.0,0.0,-1.0,-0.1913,0.1951,-0.9619,0.0,0.0,-1.0,0.0,0.1951,-0.9808,0.0,0.1951,-0.9808,0.0,0.0,-1.0,0.1951,0.0,-0.9808,0.0,0.1951,-0.9808,0.1951,0.0,-0.9808,0.1913,0.1951,-0.9619,0.1913,0.1951,-0.9619,0.1951,0.0,-0.9808,0.3827,0.0,-0.9239,0.1913,0.1951,-0.9619,0.3827,0.0,-0.9239,0.3753,0.1951,-0.9061,0.3753,0.1951,-0.9061,0.3827,0.0,-0.9239,0.5556,0.0,-0.8315,0.3753,0.1951,-0.9061,0.5556,0.0,-0.8315,0.5449,0.1951,-0.8155,0.5449,0.1951,-0.8155,0.5556,0.0,-0.8315,0.7071,0.0,-0.7071,0.5449,0.1951,-0.8155,0.7071,0.0,-0.7071,0.6935,0.1951,-0.6935,0.6935,0.1951,-0.6935,0.7071,0.0,-0.7071,0.8315,0.0,-0.5556,0.6935,0.1951,-0.6935,0.8315,0.0,-0.5556,0.8155,0.1951,-0.5449,0.8155,0.1951,-0.5449,0.8315,0.0,-0.5556,0.9239,0.0,-0.3827,0.8155,0.1951,-0.5449,0.9239,0.0,-0.3827,0.9061,0.1951,-0.3753,0.9061,0.1951,-0.3753,0.9239,0.0,-0.3827,0.9808,0.0,-0.1951,0.9061,0.1951,-0.3753,0.9808,0.0,-0.1951,0.9619,0.1951,-0.1913,0.9619,0.1951,-0.1913,0.9808,0.0,-0.1951,1.0,0.0,0.0,0.9619,0.1951,-0.1913,1.0,0.0,0.0,0.9808,0.1951,0.0,0.9808,0.1951,0.0,1.0,0.0,0.0,0.9808,0.0,0.1951,0.9808,0.1951,0.0,0.9808,0.0,0.1951,0.9619,0.1951,0.1913,0.9619,0.1951,0.1913,0.9808,0.0,0.1951,0.9239,0.0,0.3827,0.9619,0.1951,0.1913,0.9239,0.0,0.3827,0.9061,0.1951,0.3753,0.9061,0.1951,0.3753,0.9239,0.0,0.3827,0.8315,0.0,0.5556,0.9061,0.1951,0.3753,0.8315,0.0,0.5556,0.8155,0.1951,0.5449,0.8155,0.1951,0.5449,0.8315,0.0,0.5556,0.7071,0.0,0.7071,0.8155,0.1951,0.5449,0.7071,0.0,0.7071,0.6935,0.1951,0.6935,0.6935,0.1951,0.6935,0.7071,0.0,0.7071,0.5556,0.0,0.8315,0.6935,0.1951,0.6935,0.5556,0.0,0.8315,0.5449,0.1951,0.8155,0.5449,0.1951,0.8155,0.5556,0.0,0.8315,0.3827,0.0,0.9239,0.5449,0.1951,0.8155,0.3827,0.0,0.9239,0.3753,0.1951,0.9061,0.3753,0.1951,0.9061,0.3827,0.0,0.9239,0.1951,0.0,0.9808,0.3753,0.1951,0.9061,0.1951,0.0,0.9808,0.1913,0.1951,0.9619,0.1913,0.1951,0.9619,0.1951,0.0,0.9808,0.0,0.0,1.0,0.1913,0.1951,0.9619,0.0,0.0,1.0,0.0,0.1951,0.9808,0.0,0.0,1.0,0.0,-0.1951,0.9808,-0.1913,-0.1951,0.9619,0.0,0.0,1.0,-0.1913,-0.1951,0.9619,-0.1951,0.0,0.9808,-0.1951,0.0,0.9808,-0.1913,-0.1951,0.9619,-0.3753,-0.1951,0.9061,-0.1951,0.0,0.9808,-0.3753,-0.1951,0.9061,-0.3827,0.0,0.9239,-0.3827,0.0,0.9239,-0.3753,-0.1951,0.9061,-0.5449,-0.1951,0.8155,-0.3827,0.0,0.9239,-0.5449,-0.1951,0.8155,-0.5556,0.0,0.8315,-0.5556,0.0,0.8315,-0.5449,-0.1951,0.8155,-0.6935,-0.1951,0.6935,-0.5556,0.0,0.8315,-0.6935,-0.1951,0.6935,-0.7071,0.0,0.7071,-0.7071,0.0,0.7071,-0.6935,-0.1951,0.6935,-0.8155,-0.1951,0.5449,-0.7071,0.0,0.7071,-0.8155,-0.1951,0.5449,-0.8315,0.0,0.5556,-0.8315,0.0,0.5556,-0.8155,-0.1951,0.5449,-0.9061,-0.1951,0.3753,-0.8315,0.0,0.5556,-0.9061,-0.1951,0.3753,-0.9239,0.0,0.3827,-0.9239,0.0,0.3827,-0.9061,-0.1951,0.3753,-0.9619,-0.1951,0.1913,-0.9239,0.0,0.3827,-0.9619,-0.1951,0.1913,-0.9808,0.0,0.1951,-0.9808,0.0,0.1951,-0.9619,-0.1951,0.1913,-0.9808,-0.1951,0.0,-0.9808,0.0,0.1951,-0.9808,-0.1951,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-0.9808,-0.1951,0.0,-0.9619,-0.1951,-0.1913,-1.0,0.0,0.0,-0.9619,-0.1951,-0.1913,-0.9808,0.0,-0.1951,-0.9808,0.0,-0.1951,-0.9619,-0.1951,-0.1913,-0.9061,-0.1951,-0.3753,-0.9808,0.0,-0.1951,-0.9061,-0.1951,-0.3753,-0.9239,0.0,-0.3827,-0.9239,0.0,-0.3827,-0.9061,-0.1951,-0.3753,-0.8155,-0.1951,-0.5449,-0.9239,0.0,-0.3827,-0.8155,-0.1951,-0.5449,-0.8315,0.0,-0.5556,-0.8315,0.0,-0.5556,-0.8155,-0.1951,-0.5449,-0.6935,-0.1951,-0.6935,-0.8315,0.0,-0.5556,-0.6935,-0.1951,-0.6935,-0.7071,0.0,-0.7071,-0.7071,0.0,-0.7071,-0.6935,-0.1951,-0.6935,-0.5449,-0.1951,-0.8155,-0.7071,0.0,-0.7071,-0.5449,-0.1951,-0.8155,-0.5556,0.0,-0.8315,-0.5556,0.0,-0.8315,-0.5449,-0.1951,-0.8155,-0.3753,-0.1951,-0.9061,-0.5556,0.0,-0.8315,-0.3753,-0.1951,-0.9061,-0.3827,0.0,-0.9239,-0.3827,0.0,-0.9239,-0.3753,-0.1951,-0.9061,-0.1913,-0.1951,-0.9619,-0.3827,0.0,-0.9239,-0.1913,-0.1951,-0.9619,-0.1951,0.0,-0.9808,-0.1951,0.0,-0.9808,-0.1913,-0.1951,-0.9619,0.0,-0.1951,-0.9808,-0.1951,0.0,-0.9808,0.0,-0.1951,-0.9808,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,-0.1951,-0.9808,0.1913,-0.1951,-0.9619,0.0,0.0,-1.0,0.1913,-0.1951,-0.9619,0.1951,0.0,-0.9808,0.1951,0.0,-0.9808,0.1913,-0.1951,-0.9619,0.3753,-0.1951,-0.9061,0.1951,0.0,-0.9808,0.3753,-0.1951,-0.9061,0.3827,0.0,-0.9239,0.3827,0.0,-0.9239,0.3753,-0.1951,-0.9061,0.5449,-0.1951,-0.8155,0.3827,0.0,-0.9239,0.5449,-0.1951,-0.8155,0.5556,0.0,-0.8315,0.5556,0.0,-0.8315,0.5449,-0.1951,-0.8155,0.6935,-0.1951,-0.6935,0.5556,0.0,-0.8315,0.6935,-0.1951,-0.6935,0.7071,0.0,-0.7071,0.7071,0.0,-0.7071,0.6935,-0.1951,-0.6935,0.8155,-0.1951,-0.5449,0.7071,0.0,-0.7071,0.8155,-0.1951,-0.5449,0.8315,0.0,-0.5556,0.8315,0.0,-0.5556,0.8155,-0.1951,-0.5449,0.9061,-0.1951,-0.3753,0.8315,0.0,-0.5556,0.9061,-0.1951,-0.3753,0.9239,0.0,-0.3827,0.9239,0.0,-0.3827,0.9061,-0.1951,-0.3753,0.9619,-0.1951,-0.1913,0.9239,0.0,-0.3827,0.9619,-0.1951,-0.1913,0.9808,0.0,-0.1951,0.9808,0.0,-0.1951,0.9619,-0.1951,-0.1913,0.9808,-0.1951,0.0,0.9808,0.0,-0.1951,0.9808,-0.1951,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.9808,-0.1951,0.0,0.9619,-0.1951,0.1913,1.0,0.0,0.0,0.9619,-0.1951,0.1913,0.9808,0.0,0.1951,0.9808,0.0,0.1951,0.9619,-0.1951,0.1913,0.9061,-0.1951,0.3753,0.9808,0.0,0.1951,0.9061,-0.1951,0.3753,0.9239,0.0,0.3827,0.9239,0.0,0.3827,0.9061,-0.1951,0.3753,0.8155,-0.1951,0.5449,0.9239,0.0,0.3827,0.8155,-0.1951,0.5449,0.8315,0.0,0.5556,0.8315,0.0,0.5556,0.8155,-0.1951,0.5449,0.6935,-0.1951,0.6935,0.8315,0.0,0.5556,0.6935,-0.1951,0.6935,0.7071,0.0,0.7071,0.7071,0.0,0.7071,0.6935,-0.1951,0.6935,0.5449,-0.1951,0.8155,0.7071,0.0,0.7071,0.5449,-0.1951,0.8155,0.5556,0.0,0.8315,0.5556,0.0,0.8315,0.5449,-0.1951,0.8155,0.3753,-0.1951,0.9061,0.5556,0.0,0.8315,0.3753,-0.1951,0.9061,0.3827,0.0,0.9239,0.3827,0.0,0.9239,0.3753,-0.1951,0.9061,0.1913,-0.1951,0.9619,0.3827,0.0,0.9239,0.1913,-0.1951,0.9619,0.1951,0.0,0.9808,0.1951,0.0,0.9808,0.1913,-0.1951,0.9619,0.0,-0.1951,0.9808,0.1951,0.0,0.9808,0.0,-0.1951,0.9808,0.0,0.0,1.0,0.0,-0.1951,0.9808,0.0,-0.3827,0.9239,-0.1802,-0.3827,0.9061,0.0,-0.1951,0.9808,-0.1802,-0.3827,0.9061,-0.1913,-0.1951,0.9619,-0.1913,-0.1951,0.9619,-0.1802,-0.3827,0.9061,-0.3536,-0.3827,0.8536,-0.1913,-0.1951,0.9619,-0.3536,-0.3827,0.8536,-0.3753,-0.1951,0.9061,-0.3753,-0.1951,0.9061,-0.3536,-0.3827,0.8536,-0.5133,-0.3827,0.7682,-0.3753,-0.1951,0.9061,-0.5133,-0.3827,0.7682,-0.5449,-0.1951,0.8155,-0.5449,-0.1951,0.8155,-0.5133,-0.3827,0.7682,-0.6533,-0.3827,0.6533,-0.5449,-0.1951,0.8155,-0.6533,-0.3827,0.6533,-0.6935,-0.1951,0.6935,-0.6935,-0.1951,0.6935,-0.6533,-0.3827,0.6533,-0.7682,-0.3827,0.5133,-0.6935,-0.1951,0.6935,-0.7682,-0.3827,0.5133,-0.8155,-0.1951,0.5449,-0.8155,-0.1951,0.5449,-0.7682,-0.3827,0.5133,-0.8536,-0.3827,0.3536,-0.8155,-0.1951,0.5449,-0.8536,-0.3827,0.3536,-0.9061,-0.1951,0.3753,-0.9061,-0.1951,0.3753,-0.8536,-0.3827,0.3536,-0.9061,-0.3827,0.1802,-0.9061,-0.1951,0.3753,-0.9061,-0.3827,0.1802,-0.9619,-0.1951,0.1913,-0.9619,-0.1951,0.1913,-0.9061,-0.3827,0.1802,-0.9239,-0.3827,0.0,-0.9619,-0.1951,0.1913,-0.9239,-0.3827,0.0,-0.9808,-0.1951,0.0,-0.9808,-0.1951,0.0,-0.9239,-0.3827,0.0,-0.9061,-0.3827,-0.1802,-0.9808,-0.1951,0.0,-0.9061,-0.3827,-0.1802,-0.9619,-0.1951,-0.1913,-0.9619,-0.1951,-0.1913,-0.9061,-0.3827,-0.1802,-0.8536,-0.3827,-0.3536,-0.9619,-0.1951,-0.1913,-0.8536,-0.3827,-0.3536,-0.9061,-0.1951,-0.3753,-0.9061,-0.1951,-0.3753,-0.8536,-0.3827,-0.3536,-0.7682,-0.3827,-0.5133,-0.9061,-0.1951,-0.3753,-0.7682,-0.3827,-0.5133,-0.8155,-0.1951,-0.5449,-0.8155,-0.1951,-0.5449,-0.7682,-0.3827,-0.5133,-0.6533,-0.3827,-0.6533,-0.8155,-0.1951,-0.5449,-0.6533,-0.3827,-0.6533,-0.6935,-0.1951,-0.6935,-0.6935,-0.1951,-0.6935,-0.6533,-0.3827,-0.6533,-0.5133,-0.3827,-0.7682,-0.6935,-0.1951,-0.6935,-0.5133,-0.3827,-0.7682,-0.5449,-0.1951,-0.8155,-0.5449,-0.1951,-0.8155,-0.5133,-0.3827,-0.7682,-0.3536,-0.3827,-0.8536,-0.5449,-0.1951,-0.8155,-0.3536,-0.3827,-0.8536,-0.3753,-0.1951,-0.9061,-0.3753,-0.1951,-0.9061,-0.3536,-0.3827,-0.8536,-0.1802,-0.3827,-0.9061,-0.3753,-0.1951,-0.9061,-0.1802,-0.3827,-0.9061,-0.1913,-0.1951,-0.9619,-0.1913,-0.1951,-0.9619,-0.1802,-0.3827,-0.9061,0.0,-0.3827,-0.9239,-0.1913,-0.1951,-0.9619,0.0,-0.3827,-0.9239,0.0,-0.1951,-0.9808,0.0,-0.1951,-0.9808,0.0,-0.3827,-0.9239,0.1802,-0.3827,-0.9061,0.0,-0.1951,-0.9808,0.1802,-0.3827,-0.9061,0.1913,-0.1951,-0.9619,0.1913,-0.1951,-0.9619,0.1802,-0.3827,-0.9061,0.3536,-0.3827,-0.8536,0.1913,-0.1951,-0.9619,0.3536,-0.3827,-0.8536,0.3753,-0.1951,-0.9061,0.3753,-0.1951,-0.9061,0.3536,-0.3827,-0.8536,0.5133,-0.3827,-0.7682,0.3753,-0.1951,-0.9061,0.5133,-0.3827,-0.7682,0.5449,-0.1951,-0.8155,0.5449,-0.1951,-0.8155,0.5133,-0.3827,-0.7682,0.6533,-0.3827,-0.6533,0.5449,-0.1951,-0.8155,0.6533,-0.3827,-0.6533,0.6935,-0.1951,-0.6935,0.6935,-0.1951,-0.6935,0.6533,-0.3827,-0.6533,0.7682,-0.3827,-0.5133,0.6935,-0.1951,-0.6935,0.7682,-0.3827,-0.5133,0.8155,-0.1951,-0.5449,0.8155,-0.1951,-0.5449,0.7682,-0.3827,-0.5133,0.8536,-0.3827,-0.3536,0.8155,-0.1951,-0.5449,0.8536,-0.3827,-0.3536,0.9061,-0.1951,-0.3753,0.9061,-0.1951,-0.3753,0.8536,-0.3827,-0.3536,0.9061,-0.3827,-0.1802,0.9061,-0.1951,-0.3753,0.9061,-0.3827,-0.1802,0.9619,-0.1951,-0.1913,0.9619,-0.1951,-0.1913,0.9061,-0.3827,-0.1802,0.9239,-0.3827,0.0,0.9619,-0.1951,-0.1913,0.9239,-0.3827,0.0,0.9808,-0.1951,0.0,0.9808,-0.1951,0.0,0.9239,-0.3827,0.0,0.9061,-0.3827,0.1802,0.9808,-0.1951,0.0,0.9061,-0.3827,0.1802,0.9619,-0.1951,0.1913,0.9619,-0.1951,0.1913,0.9061,-0.3827,0.1802,0.8536,-0.3827,0.3536,0.9619,-0.1951,0.1913,0.8536,-0.3827,0.3536,0.9061,-0.1951,0.3753,0.9061,-0.1951,0.3753,0.8536,-0.3827,0.3536,0.7682,-0.3827,0.5133,0.9061,-0.1951,0.3753,0.7682,-0.3827,0.5133,0.8155,-0.1951,0.5449,0.8155,-0.1951,0.5449,0.7682,-0.3827,0.5133,0.6533,-0.3827,0.6533,0.8155,-0.1951,0.5449,0.6533,-0.3827,0.6533,0.6935,-0.1951,0.6935,0.6935,-0.1951,0.6935,0.6533,-0.3827,0.6533,0.5133,-0.3827,0.7682,0.6935,-0.1951,0.6935,0.5133,-0.3827,0.7682,0.5449,-0.1951,0.8155,0.5449,-0.1951,0.8155,0.5133,-0.3827,0.7682,0.3536,-0.3827,0.8536,0.5449,-0.1951,0.8155,0.3536,-0.3827,0.8536,0.3753,-0.1951,0.9061,0.3753,-0.1951,0.9061,0.3536,-0.3827,0.8536,0.1802,-0.3827,0.9061,0.3753,-0.1951,0.9061,0.1802,-0.3827,0.9061,0.1913,-0.1951,0.9619,0.1913,-0.1951,0.9619,0.1802,-0.3827,0.9061,0.0,-0.3827,0.9239,0.1913,-0.1951,0.9619,0.0,-0.3827,0.9239,0.0,-0.1951,0.9808,0.0,-0.3827,0.9239,0.0,-0.5556,0.8315,-0.1622,-0.5556,0.8155,0.0,-0.3827,0.9239,-0.1622,-0.5556,0.8155,-0.1802,-0.3827,0.9061,-0.1802,-0.3827,0.9061,-0.1622,-0.5556,0.8155,-0.3182,-0.5556,0.7682,-0.1802,-0.3827,0.9061,-0.3182,-0.5556,0.7682,-0.3536,-0.3827,0.8536,-0.3536,-0.3827,0.8536,-0.3182,-0.5556,0.7682,-0.4619,-0.5556,0.6913,-0.3536,-0.3827,0.8536,-0.4619,-0.5556,0.6913,-0.5133,-0.3827,0.7682,-0.5133,-0.3827,0.7682,-0.4619,-0.5556,0.6913,-0.5879,-0.5556,0.5879,-0.5133,-0.3827,0.7682,-0.5879,-0.5556,0.5879,-0.6533,-0.3827,0.6533,-0.6533,-0.3827,0.6533,-0.5879,-0.5556,0.5879,-0.6913,-0.5556,0.4619,-0.6533,-0.3827,0.6533,-0.6913,-0.5556,0.4619,-0.7682,-0.3827,0.5133,-0.7682,-0.3827,0.5133,-0.6913,-0.5556,0.4619,-0.7682,-0.5556,0.3182,-0.7682,-0.3827,0.5133,-0.7682,-0.5556,0.3182,-0.8536,-0.3827,0.3536,-0.8536,-0.3827,0.3536,-0.7682,-0.5556,0.3182,-0.8155,-0.5556,0.1622,-0.8536,-0.3827,0.3536,-0.8155,-0.5556,0.1622,-0.9061,-0.3827,0.1802,-0.9061,-0.3827,0.1802,-0.8155,-0.5556,0.1622,-0.8315,-0.5556,0.0,-0.9061,-0.3827,0.1802,-0.8315,-0.5556,0.0,-0.9239,-0.3827,0.0,-0.9239,-0.3827,0.0,-0.8315,-0.5556,0.0,-0.8155,-0.5556,-0.1622,-0.9239,-0.3827,0.0,-0.8155,-0.5556,-0.1622,-0.9061,-0.3827,-0.1802,-0.9061,-0.3827,-0.1802,-0.8155,-0.5556,-0.1622,-0.7682,-0.5556,-0.3182,-0.9061,-0.3827,-0.1802,-0.7682,-0.5556,-0.3182,-0.8536,-0.3827,-0.3536,-0.8536,-0.3827,-0.3536,-0.7682,-0.5556,-0.3182,-0.6913,-0.5556,-0.4619,-0.8536,-0.3827,-0.3536,-0.6913,-0.5556,-0.4619,-0.7682,-0.3827,-0.5133,-0.7682,-0.3827,-0.5133,-0.6913,-0.5556,-0.4619,-0.5879,-0.5556,-0.5879,-0.7682,-0.3827,-0.5133,-0.5879,-0.5556,-0.5879,-0.6533,-0.3827,-0.6533,-0.6533,-0.3827,-0.6533,-0.5879,-0.5556,-0.5879,-0.4619,-0.5556,-0.6913,-0.6533,-0.3827,-0.6533,-0.4619,-0.5556,-0.6913,-0.5133,-0.3827,-0.7682,-0.5133,-0.3827,-0.7682,-0.4619,-0.5556,-0.6913,-0.3182,-0.5556,-0.7682,-0.5133,-0.3827,-0.7682,-0.3182,-0.5556,-0.7682,-0.3536,-0.3827,-0.8536,-0.3536,-0.3827,-0.8536,-0.3182,-0.5556,-0.7682,-0.1622,-0.5556,-0.8155,-0.3536,-0.3827,-0.8536,-0.1622,-0.5556,-0.8155,-0.1802,-0.3827,-0.9061,-0.1802,-0.3827,-0.9061,-0.1622,-0.5556,-0.8155,0.0,-0.5556,-0.8315,-0.1802,-0.3827,-0.9061,0.0,-0.5556,-0.8315,0.0,-0.3827,-0.9239,0.0,-0.3827,-0.9239,0.0,-0.5556,-0.8315,0.1622,-0.5556,-0.8155,0.0,-0.3827,-0.9239,0.1622,-0.5556,-0.8155,0.1802,-0.3827,-0.9061,0.1802,-0.3827,-0.9061,0.1622,-0.5556,-0.8155,0.3182,-0.5556,-0.7682,0.1802,-0.3827,-0.9061,0.3182,-0.5556,-0.7682,0.3536,-0.3827,-0.8536,0.3536,-0.3827,-0.8536,0.3182,-0.5556,-0.7682,0.4619,-0.5556,-0.6913,0.3536,-0.3827,-0.8536,0.4619,-0.5556,-0.6913,0.5133,-0.3827,-0.7682,0.5133,-0.3827,-0.7682,0.4619,-0.5556,-0.6913,0.5879,-0.5556,-0.5879,0.5133,-0.3827,-0.7682,0.5879,-0.5556,-0.5879,0.6533,-0.3827,-0.6533,0.6533,-0.3827,-0.6533,0.5879,-0.5556,-0.5879,0.6913,-0.5556,-0.4619,0.6533,-0.3827,-0.6533,0.6913,-0.5556,-0.4619,0.7682,-0.3827,-0.5133,0.7682,-0.3827,-0.5133,0.6913,-0.5556,-0.4619,0.7682,-0.5556,-0.3182,0.7682,-0.3827,-0.5133,0.7682,-0.5556,-0.3182,0.8536,-0.3827,-0.3536,0.8536,-0.3827,-0.3536,0.7682,-0.5556,-0.3182,0.8155,-0.5556,-0.1622,0.8536,-0.3827,-0.3536,0.8155,-0.5556,-0.1622,0.9061,-0.3827,-0.1802,0.9061,-0.3827,-0.1802,0.8155,-0.5556,-0.1622,0.8315,-0.5556,0.0,0.9061,-0.3827,-0.1802,0.8315,-0.5556,0.0,0.9239,-0.3827,0.0,0.9239,-0.3827,0.0,0.8315,-0.5556,0.0,0.8155,-0.5556,0.1622,0.9239,-0.3827,0.0,0.8155,-0.5556,0.1622,0.9061,-0.3827,0.1802,0.9061,-0.3827,0.1802,0.8155,-0.5556,0.1622,0.7682,-0.5556,0.3182,0.9061,-0.3827,0.1802,0.7682,-0.5556,0.3182,0.8536,-0.3827,0.3536,0.8536,-0.3827,0.3536,0.7682,-0.5556,0.3182,0.6913,-0.5556,0.4619,0.8536,-0.3827,0.3536,0.6913,-0.5556,0.4619,0.7682,-0.3827,0.5133,0.7682,-0.3827,0.5133,0.6913,-0.5556,0.4619,0.5879,-0.5556,0.5879,0.7682,-0.3827,0.5133,0.5879,-0.5556,0.5879,0.6533,-0.3827,0.6533,0.6533,-0.3827,0.6533,0.5879,-0.5556,0.5879,0.4619,-0.5556,0.6913,0.6533,-0.3827,0.6533,0.4619,-0.5556,0.6913,0.5133,-0.3827,0.7682,0.5133,-0.3827,0.7682,0.4619,-0.5556,0.6913,0.3182,-0.5556,0.7682,0.5133,-0.3827,0.7682,0.3182,-0.5556,0.7682,0.3536,-0.3827,0.8536,0.3536,-0.3827,0.8536,0.3182,-0.5556,0.7682,0.1622,-0.5556,0.8155,0.3536,-0.3827,0.8536,0.1622,-0.5556,0.8155,0.1802,-0.3827,0.9061,0.1802,-0.3827,0.9061,0.1622,-0.5556,0.8155,0.0,-0.5556,0.8315,0.1802,-0.3827,0.9061,0.0,-0.5556,0.8315,0.0,-0.3827,0.9239,0.0,-0.5556,0.8315,0.0,-0.7071,0.7071,-0.1379,-0.7071,0.6935,0.0,-0.5556,0.8315,-0.1379,-0.7071,0.6935,-0.1622,-0.5556,0.8155,-0.1622,-0.5556,0.8155,-0.1379,-0.7071,0.6935,-0.2706,-0.7071,0.6533,-0.1622,-0.5556,0.8155,-0.2706,-0.7071,0.6533,-0.3182,-0.5556,0.7682,-0.3182,-0.5556,0.7682,-0.2706,-0.7071,0.6533,-0.3928,-0.7071,0.5879,-0.3182,-0.5556,0.7682,-0.3928,-0.7071,0.5879,-0.4619,-0.5556,0.6913,-0.4619,-0.5556,0.6913,-0.3928,-0.7071,0.5879,-0.5,-0.7071,0.5,-0.4619,-0.5556,0.6913,-0.5,-0.7071,0.5,-0.5879,-0.5556,0.5879,-0.5879,-0.5556,0.5879,-0.5,-0.7071,0.5,-0.5879,-0.7071,0.3928,-0.5879,-0.5556,0.5879,-0.5879,-0.7071,0.3928,-0.6913,-0.5556,0.4619,-0.6913,-0.5556,0.4619,-0.5879,-0.7071,0.3928,-0.6533,-0.7071,0.2706,-0.6913,-0.5556,0.4619,-0.6533,-0.7071,0.2706,-0.7682,-0.5556,0.3182,-0.7682,-0.5556,0.3182,-0.6533,-0.7071,0.2706,-0.6935,-0.7071,0.1379,-0.7682,-0.5556,0.3182,-0.6935,-0.7071,0.1379,-0.8155,-0.5556,0.1622,-0.8155,-0.5556,0.1622,-0.6935,-0.7071,0.1379,-0.7071,-0.7071,0.0,-0.8155,-0.5556,0.1622,-0.7071,-0.7071,0.0,-0.8315,-0.5556,0.0,-0.8315,-0.5556,0.0,-0.7071,-0.7071,0.0,-0.6935,-0.7071,-0.1379,-0.8315,-0.5556,0.0,-0.6935,-0.7071,-0.1379,-0.8155,-0.5556,-0.1622,-0.8155,-0.5556,-0.1622,-0.6935,-0.7071,-0.1379,-0.6533,-0.7071,-0.2706,-0.8155,-0.5556,-0.1622,-0.6533,-0.7071,-0.2706,-0.7682,-0.5556,-0.3182,-0.7682,-0.5556,-0.3182,-0.6533,-0.7071,-0.2706,-0.5879,-0.7071,-0.3928,-0.7682,-0.5556,-0.3182,-0.5879,-0.7071,-0.3928,-0.6913,-0.5556,-0.4619,-0.6913,-0.5556,-0.4619,-0.5879,-0.7071,-0.3928,-0.5,-0.7071,-0.5,-0.6913,-0.5556,-0.4619,-0.5,-0.7071,-0.5,-0.5879,-0.5556,-0.5879,-0.5879,-0.5556,-0.5879,-0.5,-0.7071,-0.5,-0.3928,-0.7071,-0.5879,-0.5879,-0.5556,-0.5879,-0.3928,-0.7071,-0.5879,-0.4619,-0.5556,-0.6913,-0.4619,-0.5556,-0.6913,-0.3928,-0.7071,-0.5879,-0.2706,-0.7071,-0.6533,-0.4619,-0.5556,-0.6913,-0.2706,-0.7071,-0.6533,-0.3182,-0.5556,-0.7682,-0.3182,-0.5556,-0.7682,-0.2706,-0.7071,-0.6533,-0.1379,-0.7071,-0.6935,-0.3182,-0.5556,-0.7682,-0.1379,-0.7071,-0.6935,-0.1622,-0.5556,-0.8155,-0.1622,-0.5556,-0.8155,-0.1379,-0.7071,-0.6935,0.0,-0.7071,-0.7071,-0.1622,-0.5556,-0.8155,0.0,-0.7071,-0.7071,0.0,-0.5556,-0.8315,0.0,-0.5556,-0.8315,0.0,-0.7071,-0.7071,0.138,-0.7071,-0.6935,0.0,-0.5556,-0.8315,0.138,-0.7071,-0.6935,0.1622,-0.5556,-0.8155,0.1622,-0.5556,-0.8155,0.138,-0.7071,-0.6935,0.2706,-0.7071,-0.6533,0.1622,-0.5556,-0.8155,0.2706,-0.7071,-0.6533,0.3182,-0.5556,-0.7682,0.3182,-0.5556,-0.7682,0.2706,-0.7071,-0.6533,0.3928,-0.7071,-0.5879,0.3182,-0.5556,-0.7682,0.3928,-0.7071,-0.5879,0.4619,-0.5556,-0.6913,0.4619,-0.5556,-0.6913,0.3928,-0.7071,-0.5879,0.5,-0.7071,-0.5,0.4619,-0.5556,-0.6913,0.5,-0.7071,-0.5,0.5879,-0.5556,-0.5879,0.5879,-0.5556,-0.5879,0.5,-0.7071,-0.5,0.5879,-0.7071,-0.3928,0.5879,-0.5556,-0.5879,0.5879,-0.7071,-0.3928,0.6913,-0.5556,-0.4619,0.6913,-0.5556,-0.4619,0.5879,-0.7071,-0.3928,0.6533,-0.7071,-0.2706,0.6913,-0.5556,-0.4619,0.6533,-0.7071,-0.2706,0.7682,-0.5556,-0.3182,0.7682,-0.5556,-0.3182,0.6533,-0.7071,-0.2706,0.6935,-0.7071,-0.1379,0.7682,-0.5556,-0.3182,0.6935,-0.7071,-0.1379,0.8155,-0.5556,-0.1622,0.8155,-0.5556,-0.1622,0.6935,-0.7071,-0.1379,0.7071,-0.7071,0.0,0.8155,-0.5556,-0.1622,0.7071,-0.7071,0.0,0.8315,-0.5556,0.0,0.8315,-0.5556,0.0,0.7071,-0.7071,0.0,0.6935,-0.7071,0.138,0.8315,-0.5556,0.0,0.6935,-0.7071,0.138,0.8155,-0.5556,0.1622,0.8155,-0.5556,0.1622,0.6935,-0.7071,0.138,0.6533,-0.7071,0.2706,0.8155,-0.5556,0.1622,0.6533,-0.7071,0.2706,0.7682,-0.5556,0.3182,0.7682,-0.5556,0.3182,0.6533,-0.7071,0.2706,0.5879,-0.7071,0.3928,0.7682,-0.5556,0.3182,0.5879,-0.7071,0.3928,0.6913,-0.5556,0.4619,0.6913,-0.5556,0.4619,0.5879,-0.7071,0.3928,0.5,-0.7071,0.5,0.6913,-0.5556,0.4619,0.5,-0.7071,0.5,0.5879,-0.5556,0.5879,0.5879,-0.5556,0.5879,0.5,-0.7071,0.5,0.3928,-0.7071,0.5879,0.5879,-0.5556,0.5879,0.3928,-0.7071,0.5879,0.4619,-0.5556,0.6913,0.4619,-0.5556,0.6913,0.3928,-0.7071,0.5879,0.2706,-0.7071,0.6533,0.4619,-0.5556,0.6913,0.2706,-0.7071,0.6533,0.3182,-0.5556,0.7682,0.3182,-0.5556,0.7682,0.2706,-0.7071,0.6533,0.1379,-0.7071,0.6935,0.3182,-0.5556,0.7682,0.1379,-0.7071,0.6935,0.1622,-0.5556,0.8155,0.1622,-0.5556,0.8155,0.1379,-0.7071,0.6935,0.0,-0.7071,0.7071,0.1622,-0.5556,0.8155,0.0,-0.7071,0.7071,0.0,-0.5556,0.8315,0.0,-0.7071,0.7071,0.0,-0.8315,0.5556,-0.1084,-0.8315,0.5449,0.0,-0.7071,0.7071,-0.1084,-0.8315,0.5449,-0.1379,-0.7071,0.6935,-0.1379,-0.7071,0.6935,-0.1084,-0.8315,0.5449,-0.2126,-0.8315,0.5133,-0.1379,-0.7071,0.6935,-0.2126,-0.8315,0.5133,-0.2706,-0.7071,0.6533,-0.2706,-0.7071,0.6533,-0.2126,-0.8315,0.5133,-0.3087,-0.8315,0.4619,-0.2706,-0.7071,0.6533,-0.3087,-0.8315,0.4619,-0.3928,-0.7071,0.5879,-0.3928,-0.7071,0.5879,-0.3087,-0.8315,0.4619,-0.3928,-0.8315,0.3928,-0.3928,-0.7071,0.5879,-0.3928,-0.8315,0.3928,-0.5,-0.7071,0.5,-0.5,-0.7071,0.5,-0.3928,-0.8315,0.3928,-0.4619,-0.8315,0.3087,-0.5,-0.7071,0.5,-0.4619,-0.8315,0.3087,-0.5879,-0.7071,0.3928,-0.5879,-0.7071,0.3928,-0.4619,-0.8315,0.3087,-0.5133,-0.8315,0.2126,-0.5879,-0.7071,0.3928,-0.5133,-0.8315,0.2126,-0.6533,-0.7071,0.2706,-0.6533,-0.7071,0.2706,-0.5133,-0.8315,0.2126,-0.5449,-0.8315,0.1084,-0.6533,-0.7071,0.2706,-0.5449,-0.8315,0.1084,-0.6935,-0.7071,0.1379,-0.6935,-0.7071,0.1379,-0.5449,-0.8315,0.1084,-0.5556,-0.8315,0.0,-0.6935,-0.7071,0.1379,-0.5556,-0.8315,0.0,-0.7071,-0.7071,0.0,-0.7071,-0.7071,0.0,-0.5556,-0.8315,0.0,-0.5449,-0.8315,-0.1084,-0.7071,-0.7071,0.0,-0.5449,-0.8315,-0.1084,-0.6935,-0.7071,-0.1379,-0.6935,-0.7071,-0.1379,-0.5449,-0.8315,-0.1084,-0.5133,-0.8315,-0.2126,-0.6935,-0.7071,-0.1379,-0.5133,-0.8315,-0.2126,-0.6533,-0.7071,-0.2706,-0.6533,-0.7071,-0.2706,-0.5133,-0.8315,-0.2126,-0.4619,-0.8315,-0.3087,-0.6533,-0.7071,-0.2706,-0.4619,-0.8315,-0.3087,-0.5879,-0.7071,-0.3928,-0.5879,-0.7071,-0.3928,-0.4619,-0.8315,-0.3087,-0.3928,-0.8315,-0.3928,-0.5879,-0.7071,-0.3928,-0.3928,-0.8315,-0.3928,-0.5,-0.7071,-0.5,-0.5,-0.7071,-0.5,-0.3928,-0.8315,-0.3928,-0.3087,-0.8315,-0.4619,-0.5,-0.7071,-0.5,-0.3087,-0.8315,-0.4619,-0.3928,-0.7071,-0.5879,-0.3928,-0.7071,-0.5879,-0.3087,-0.8315,-0.4619,-0.2126,-0.8315,-0.5133,-0.3928,-0.7071,-0.5879,-0.2126,-0.8315,-0.5133,-0.2706,-0.7071,-0.6533,-0.2706,-0.7071,-0.6533,-0.2126,-0.8315,-0.5133,-0.1084,-0.8315,-0.5449,-0.2706,-0.7071,-0.6533,-0.1084,-0.8315,-0.5449,-0.1379,-0.7071,-0.6935,-0.1379,-0.7071,-0.6935,-0.1084,-0.8315,-0.5449,0.0,-0.8315,-0.5556,-0.1379,-0.7071,-0.6935,0.0,-0.8315,-0.5556,0.0,-0.7071,-0.7071,0.0,-0.7071,-0.7071,0.0,-0.8315,-0.5556,0.1084,-0.8315,-0.5449,0.0,-0.7071,-0.7071,0.1084,-0.8315,-0.5449,0.138,-0.7071,-0.6935,0.138,-0.7071,-0.6935,0.1084,-0.8315,-0.5449,0.2126,-0.8315,-0.5133,0.138,-0.7071,-0.6935,0.2126,-0.8315,-0.5133,0.2706,-0.7071,-0.6533,0.2706,-0.7071,-0.6533,0.2126,-0.8315,-0.5133,0.3087,-0.8315,-0.4619,0.2706,-0.7071,-0.6533,0.3087,-0.8315,-0.4619,0.3928,-0.7071,-0.5879,0.3928,-0.7071,-0.5879,0.3087,-0.8315,-0.4619,0.3928,-0.8315,-0.3928,0.3928,-0.7071,-0.5879,0.3928,-0.8315,-0.3928,0.5,-0.7071,-0.5,0.5,-0.7071,-0.5,0.3928,-0.8315,-0.3928,0.4619,-0.8315,-0.3087,0.5,-0.7071,-0.5,0.4619,-0.8315,-0.3087,0.5879,-0.7071,-0.3928,0.5879,-0.7071,-0.3928,0.4619,-0.8315,-0.3087,0.5133,-0.8315,-0.2126,0.5879,-0.7071,-0.3928,0.5133,-0.8315,-0.2126,0.6533,-0.7071,-0.2706,0.6533,-0.7071,-0.2706,0.5133,-0.8315,-0.2126,0.5449,-0.8315,-0.1084,0.6533,-0.7071,-0.2706,0.5449,-0.8315,-0.1084,0.6935,-0.7071,-0.1379,0.6935,-0.7071,-0.1379,0.5449,-0.8315,-0.1084,0.5556,-0.8315,0.0,0.6935,-0.7071,-0.1379,0.5556,-0.8315,0.0,0.7071,-0.7071,0.0,0.7071,-0.7071,0.0,0.5556,-0.8315,0.0,0.5449,-0.8315,0.1084,0.7071,-0.7071,0.0,0.5449,-0.8315,0.1084,0.6935,-0.7071,0.138,0.6935,-0.7071,0.138,0.5449,-0.8315,0.1084,0.5133,-0.8315,0.2126,0.6935,-0.7071,0.138,0.5133,-0.8315,0.2126,0.6533,-0.7071,0.2706,0.6533,-0.7071,0.2706,0.5133,-0.8315,0.2126,0.4619,-0.8315,0.3087,0.6533,-0.7071,0.2706,0.4619,-0.8315,0.3087,0.5879,-0.7071,0.3928,0.5879,-0.7071,0.3928,0.4619,-0.8315,0.3087,0.3928,-0.8315,0.3928,0.5879,-0.7071,0.3928,0.3928,-0.8315,0.3928,0.5,-0.7071,0.5,0.5,-0.7071,0.5,0.3928,-0.8315,0.3928,0.3087,-0.8315,0.4619,0.5,-0.7071,0.5,0.3087,-0.8315,0.4619,0.3928,-0.7071,0.5879,0.3928,-0.7071,0.5879,0.3087,-0.8315,0.4619,0.2126,-0.8315,0.5133,0.3928,-0.7071,0.5879,0.2126,-0.8315,0.5133,0.2706,-0.7071,0.6533,0.2706,-0.7071,0.6533,0.2126,-0.8315,0.5133,0.1084,-0.8315,0.5449,0.2706,-0.7071,0.6533,0.1084,-0.8315,0.5449,0.1379,-0.7071,0.6935,0.1379,-0.7071,0.6935,0.1084,-0.8315,0.5449,0.0,-0.8315,0.5556,0.1379,-0.7071,0.6935,0.0,-0.8315,0.5556,0.0,-0.7071,0.7071,0.0,-0.8315,0.5556,0.0,-0.9239,0.3827,-0.0747,-0.9239,0.3753,0.0,-0.8315,0.5556,-0.0747,-0.9239,0.3753,-0.1084,-0.8315,0.5449,-0.1084,-0.8315,0.5449,-0.0747,-0.9239,0.3753,-0.1464,-0.9239,0.3536,-0.1084,-0.8315,0.5449,-0.1464,-0.9239,0.3536,-0.2126,-0.8315,0.5133,-0.2126,-0.8315,0.5133,-0.1464,-0.9239,0.3536,-0.2126,-0.9239,0.3182,-0.2126,-0.8315,0.5133,-0.2126,-0.9239,0.3182,-0.3087,-0.8315,0.4619,-0.3087,-0.8315,0.4619,-0.2126,-0.9239,0.3182,-0.2706,-0.9239,0.2706,-0.3087,-0.8315,0.4619,-0.2706,-0.9239,0.2706,-0.3928,-0.8315,0.3928,-0.3928,-0.8315,0.3928,-0.2706,-0.9239,0.2706,-0.3182,-0.9239,0.2126,-0.3928,-0.8315,0.3928,-0.3182,-0.9239,0.2126,-0.4619,-0.8315,0.3087,-0.4619,-0.8315,0.3087,-0.3182,-0.9239,0.2126,-0.3536,-0.9239,0.1464,-0.4619,-0.8315,0.3087,-0.3536,-0.9239,0.1464,-0.5133,-0.8315,0.2126,-0.5133,-0.8315,0.2126,-0.3536,-0.9239,0.1464,-0.3753,-0.9239,0.0747,-0.5133,-0.8315,0.2126,-0.3753,-0.9239,0.0747,-0.5449,-0.8315,0.1084,-0.5449,-0.8315,0.1084,-0.3753,-0.9239,0.0747,-0.3827,-0.9239,0.0,-0.5449,-0.8315,0.1084,-0.3827,-0.9239,0.0,-0.5556,-0.8315,0.0,-0.5556,-0.8315,0.0,-0.3827,-0.9239,0.0,-0.3753,-0.9239,-0.0747,-0.5556,-0.8315,0.0,-0.3753,-0.9239,-0.0747,-0.5449,-0.8315,-0.1084,-0.5449,-0.8315,-0.1084,-0.3753,-0.9239,-0.0747,-0.3536,-0.9239,-0.1464,-0.5449,-0.8315,-0.1084,-0.3536,-0.9239,-0.1464,-0.5133,-0.8315,-0.2126,-0.5133,-0.8315,-0.2126,-0.3536,-0.9239,-0.1464,-0.3182,-0.9239,-0.2126,-0.5133,-0.8315,-0.2126,-0.3182,-0.9239,-0.2126,-0.4619,-0.8315,-0.3087,-0.4619,-0.8315,-0.3087,-0.3182,-0.9239,-0.2126,-0.2706,-0.9239,-0.2706,-0.4619,-0.8315,-0.3087,-0.2706,-0.9239,-0.2706,-0.3928,-0.8315,-0.3928,-0.3928,-0.8315,-0.3928,-0.2706,-0.9239,-0.2706,-0.2126,-0.9239,-0.3182,-0.3928,-0.8315,-0.3928,-0.2126,-0.9239,-0.3182,-0.3087,-0.8315,-0.4619,-0.3087,-0.8315,-0.4619,-0.2126,-0.9239,-0.3182,-0.1464,-0.9239,-0.3536,-0.3087,-0.8315,-0.4619,-0.1464,-0.9239,-0.3536,-0.2126,-0.8315,-0.5133,-0.2126,-0.8315,-0.5133,-0.1464,-0.9239,-0.3536,-0.0747,-0.9239,-0.3753,-0.2126,-0.8315,-0.5133,-0.0747,-0.9239,-0.3753,-0.1084,-0.8315,-0.5449,-0.1084,-0.8315,-0.5449,-0.0747,-0.9239,-0.3753,0.0,-0.9239,-0.3827,-0.1084,-0.8315,-0.5449,0.0,-0.9239,-0.3827,0.0,-0.8315,-0.5556,0.0,-0.8315,-0.5556,0.0,-0.9239,-0.3827,0.0747,-0.9239,-0.3753,0.0,-0.8315,-0.5556,0.0747,-0.9239,-0.3753,0.1084,-0.8315,-0.5449,0.1084,-0.8315,-0.5449,0.0747,-0.9239,-0.3753,0.1464,-0.9239,-0.3536,0.1084,-0.8315,-0.5449,0.1464,-0.9239,-0.3536,0.2126,-0.8315,-0.5133,0.2126,-0.8315,-0.5133,0.1464,-0.9239,-0.3536,0.2126,-0.9239,-0.3182,0.2126,-0.8315,-0.5133,0.2126,-0.9239,-0.3182,0.3087,-0.8315,-0.4619,0.3087,-0.8315,-0.4619,0.2126,-0.9239,-0.3182,0.2706,-0.9239,-0.2706,0.3087,-0.8315,-0.4619,0.2706,-0.9239,-0.2706,0.3928,-0.8315,-0.3928,0.3928,-0.8315,-0.3928,0.2706,-0.9239,-0.2706,0.3182,-0.9239,-0.2126,0.3928,-0.8315,-0.3928,0.3182,-0.9239,-0.2126,0.4619,-0.8315,-0.3087,0.4619,-0.8315,-0.3087,0.3182,-0.9239,-0.2126,0.3536,-0.9239,-0.1464,0.4619,-0.8315,-0.3087,0.3536,-0.9239,-0.1464,0.5133,-0.8315,-0.2126,0.5133,-0.8315,-0.2126,0.3536,-0.9239,-0.1464,0.3753,-0.9239,-0.0747,0.5133,-0.8315,-0.2126,0.3753,-0.9239,-0.0747,0.5449,-0.8315,-0.1084,0.5449,-0.8315,-0.1084,0.3753,-0.9239,-0.0747,0.3827,-0.9239,0.0,0.5449,-0.8315,-0.1084,0.3827,-0.9239,0.0,0.5556,-0.8315,0.0,0.5556,-0.8315,0.0,0.3827,-0.9239,0.0,0.3753,-0.9239,0.0747,0.5556,-0.8315,0.0,0.3753,-0.9239,0.0747,0.5449,-0.8315,0.1084,0.5449,-0.8315,0.1084,0.3753,-0.9239,0.0747,0.3536,-0.9239,0.1464,0.5449,-0.8315,0.1084,0.3536,-0.9239,0.1464,0.5133,-0.8315,0.2126,0.5133,-0.8315,0.2126,0.3536,-0.9239,0.1464,0.3182,-0.9239,0.2126,0.5133,-0.8315,0.2126,0.3182,-0.9239,0.2126,0.4619,-0.8315,0.3087,0.4619,-0.8315,0.3087,0.3182,-0.9239,0.2126,0.2706,-0.9239,0.2706,0.4619,-0.8315,0.3087,0.2706,-0.9239,0.2706,0.3928,-0.8315,0.3928,0.3928,-0.8315,0.3928,0.2706,-0.9239,0.2706,0.2126,-0.9239,0.3182,0.3928,-0.8315,0.3928,0.2126,-0.9239,0.3182,0.3087,-0.8315,0.4619,0.3087,-0.8315,0.4619,0.2126,-0.9239,0.3182,0.1464,-0.9239,0.3536,0.3087,-0.8315,0.4619,0.1464,-0.9239,0.3536,0.2126,-0.8315,0.5133,0.2126,-0.8315,0.5133,0.1464,-0.9239,0.3536,0.0747,-0.9239,0.3753,0.2126,-0.8315,0.5133,0.0747,-0.9239,0.3753,0.1084,-0.8315,0.5449,0.1084,-0.8315,0.5449,0.0747,-0.9239,0.3753,0.0,-0.9239,0.3827,0.1084,-0.8315,0.5449,0.0,-0.9239,0.3827,0.0,-0.8315,0.5556,0.0,-0.9239,0.3827,0.0,-0.9808,0.1951,-0.0381,-0.9808,0.1913,0.0,-0.9239,0.3827,-0.0381,-0.9808,0.1913,-0.0747,-0.9239,0.3753,-0.0747,-0.9239,0.3753,-0.0381,-0.9808,0.1913,-0.0747,-0.9808,0.1802,-0.0747,-0.9239,0.3753,-0.0747,-0.9808,0.1802,-0.1464,-0.9239,0.3536,-0.1464,-0.9239,0.3536,-0.0747,-0.9808,0.1802,-0.1084,-0.9808,0.1622,-0.1464,-0.9239,0.3536,-0.1084,-0.9808,0.1622,-0.2126,-0.9239,0.3182,-0.2126,-0.9239,0.3182,-0.1084,-0.9808,0.1622,-0.1379,-0.9808,0.1379,-0.2126,-0.9239,0.3182,-0.1379,-0.9808,0.1379,-0.2706,-0.9239,0.2706,-0.2706,-0.9239,0.2706,-0.1379,-0.9808,0.1379,-0.1622,-0.9808,0.1084,-0.2706,-0.9239,0.2706,-0.1622,-0.9808,0.1084,-0.3182,-0.9239,0.2126,-0.3182,-0.9239,0.2126,-0.1622,-0.9808,0.1084,-0.1802,-0.9808,0.0747,-0.3182,-0.9239,0.2126,-0.1802,-0.9808,0.0747,-0.3536,-0.9239,0.1464,-0.3536,-0.9239,0.1464,-0.1802,-0.9808,0.0747,-0.1913,-0.9808,0.0381,-0.3536,-0.9239,0.1464,-0.1913,-0.9808,0.0381,-0.3753,-0.9239,0.0747,-0.3753,-0.9239,0.0747,-0.1913,-0.9808,0.0381,-0.1951,-0.9808,0.0,-0.3753,-0.9239,0.0747,-0.1951,-0.9808,0.0,-0.3827,-0.9239,0.0,-0.3827,-0.9239,0.0,-0.1951,-0.9808,0.0,-0.1913,-0.9808,-0.0381,-0.3827,-0.9239,0.0,-0.1913,-0.9808,-0.0381,-0.3753,-0.9239,-0.0747,-0.3753,-0.9239,-0.0747,-0.1913,-0.9808,-0.0381,-0.1802,-0.9808,-0.0747,-0.3753,-0.9239,-0.0747,-0.1802,-0.9808,-0.0747,-0.3536,-0.9239,-0.1464,-0.3536,-0.9239,-0.1464,-0.1802,-0.9808,-0.0747,-0.1622,-0.9808,-0.1084,-0.3536,-0.9239,-0.1464,-0.1622,-0.9808,-0.1084,-0.3182,-0.9239,-0.2126,-0.3182,-0.9239,-0.2126,-0.1622,-0.9808,-0.1084,-0.1379,-0.9808,-0.1379,-0.3182,-0.9239,-0.2126,-0.1379,-0.9808,-0.1379,-0.2706,-0.9239,-0.2706,-0.2706,-0.9239,-0.2706,-0.1379,-0.9808,-0.1379,-0.1084,-0.9808,-0.1622,-0.2706,-0.9239,-0.2706,-0.1084,-0.9808,-0.1622,-0.2126,-0.9239,-0.3182,-0.2126,-0.9239,-0.3182,-0.1084,-0.9808,-0.1622,-0.0747,-0.9808,-0.1802,-0.2126,-0.9239,-0.3182,-0.0747,-0.9808,-0.1802,-0.1464,-0.9239,-0.3536,-0.1464,-0.9239,-0.3536,-0.0747,-0.9808,-0.1802,-0.0381,-0.9808,-0.1913,-0.1464,-0.9239,-0.3536,-0.0381,-0.9808,-0.1913,-0.0747,-0.9239,-0.3753,-0.0747,-0.9239,-0.3753,-0.0381,-0.9808,-0.1913,0.0,-0.9808,-0.1951,-0.0747,-0.9239,-0.3753,0.0,-0.9808,-0.1951,0.0,-0.9239,-0.3827,0.0,-0.9239,-0.3827,0.0,-0.9808,-0.1951,0.0381,-0.9808,-0.1913,0.0,-0.9239,-0.3827,0.0381,-0.9808,-0.1913,0.0747,-0.9239,-0.3753,0.0747,-0.9239,-0.3753,0.0381,-0.9808,-0.1913,0.0747,-0.9808,-0.1802,0.0747,-0.9239,-0.3753,0.0747,-0.9808,-0.1802,0.1464,-0.9239,-0.3536,0.1464,-0.9239,-0.3536,0.0747,-0.9808,-0.1802,0.1084,-0.9808,-0.1622,0.1464,-0.9239,-0.3536,0.1084,-0.9808,-0.1622,0.2126,-0.9239,-0.3182,0.2126,-0.9239,-0.3182,0.1084,-0.9808,-0.1622,0.1379,-0.9808,-0.1379,0.2126,-0.9239,-0.3182,0.1379,-0.9808,-0.1379,0.2706,-0.9239,-0.2706,0.2706,-0.9239,-0.2706,0.1379,-0.9808,-0.1379,0.1622,-0.9808,-0.1084,0.2706,-0.9239,-0.2706,0.1622,-0.9808,-0.1084,0.3182,-0.9239,-0.2126,0.3182,-0.9239,-0.2126,0.1622,-0.9808,-0.1084,0.1802,-0.9808,-0.0747,0.3182,-0.9239,-0.2126,0.1802,-0.9808,-0.0747,0.3536,-0.9239,-0.1464,0.3536,-0.9239,-0.1464,0.1802,-0.9808,-0.0747,0.1913,-0.9808,-0.0381,0.3536,-0.9239,-0.1464,0.1913,-0.9808,-0.0381,0.3753,-0.9239,-0.0747,0.3753,-0.9239,-0.0747,0.1913,-0.9808,-0.0381,0.1951,-0.9808,0.0,0.3753,-0.9239,-0.0747,0.1951,-0.9808,0.0,0.3827,-0.9239,0.0,0.3827,-0.9239,0.0,0.1951,-0.9808,0.0,0.1913,-0.9808,0.0381,0.3827,-0.9239,0.0,0.1913,-0.9808,0.0381,0.3753,-0.9239,0.0747,0.3753,-0.9239,0.0747,0.1913,-0.9808,0.0381,0.1802,-0.9808,0.0747,0.3753,-0.9239,0.0747,0.1802,-0.9808,0.0747,0.3536,-0.9239,0.1464,0.3536,-0.9239,0.1464,0.1802,-0.9808,0.0747,0.1622,-0.9808,0.1084,0.3536,-0.9239,0.1464,0.1622,-0.9808,0.1084,0.3182,-0.9239,0.2126,0.3182,-0.9239,0.2126,0.1622,-0.9808,0.1084,0.1379,-0.9808,0.1379,0.3182,-0.9239,0.2126,0.1379,-0.9808,0.1379,0.2706,-0.9239,0.2706,0.2706,-0.9239,0.2706,0.1379,-0.9808,0.1379,0.1084,-0.9808,0.1622,0.2706,-0.9239,0.2706,0.1084,-0.9808,0.1622,0.2126,-0.9239,0.3182,0.2126,-0.9239,0.3182,0.1084,-0.9808,0.1622,0.0747,-0.9808,0.1802,0.2126,-0.9239,0.3182,0.0747,-0.9808,0.1802,0.1464,-0.9239,0.3536,0.1464,-0.9239,0.3536,0.0747,-0.9808,0.1802,0.0381,-0.9808,0.1913,0.1464,-0.9239,0.3536,0.0381,-0.9808,0.1913,0.0747,-0.9239,0.3753,0.0747,-0.9239,0.3753,0.0381,-0.9808,0.1913,0.0,-0.9808,0.1951,0.0747,-0.9239,0.3753,0.0,-0.9808,0.1951,0.0,-0.9239,0.3827,0.0,-1.0,0.0,-0.0381,-0.9808,0.1913,0.0,-0.9808,0.1951,0.0,-1.0,0.0,-0.0747,-0.9808,0.1802,-0.0381,-0.9808,0.1913,0.0,-1.0,0.0,-0.1084,-0.9808,0.1622,-0.0747,-0.9808,0.1802,0.0,-1.0,0.0,-0.1379,-0.9808,0.1379,-0.1084,-0.9808,0.1622,0.0,-1.0,0.0,-0.1622,-0.9808,0.1084,-0.1379,-0.9808,0.1379,0.0,-1.0,0.0,-0.1802,-0.9808,0.0747,-0.1622,-0.9808,0.1084,0.0,-1.0,0.0,-0.1913,-0.9808,0.0381,-0.1802,-0.9808,0.0747,0.0,-1.0,0.0,-0.1951,-0.9808,0.0,-0.1913,-0.9808,0.0381,0.0,-1.0,0.0,-0.1913,-0.9808,-0.0381,-0.1951,-0.9808,0.0,0.0,-1.0,0.0,-0.1802,-0.9808,-0.0747,-0.1913,-0.9808,-0.0381,0.0,-1.0,0.0,-0.1622,-0.9808,-0.1084,-0.1802,-0.9808,-0.0747,0.0,-1.0,0.0,-0.1379,-0.9808,-0.1379,-0.1622,-0.9808,-0.1084,0.0,-1.0,0.0,-0.1084,-0.9808,-0.1622,-0.1379,-0.9808,-0.1379,0.0,-1.0,0.0,-0.0747,-0.9808,-0.1802,-0.1084,-0.9808,-0.1622,0.0,-1.0,0.0,-0.0381,-0.9808,-0.1913,-0.0747,-0.9808,-0.1802,0.0,-1.0,0.0,0.0,-0.9808,-0.1951,-0.0381,-0.9808,-0.1913,0.0,-1.0,0.0,0.0381,-0.9808,-0.1913,0.0,-0.9808,-0.1951,0.0,-1.0,0.0,0.0747,-0.9808,-0.1802,0.0381,-0.9808,-0.1913,0.0,-1.0,0.0,0.1084,-0.9808,-0.1622,0.0747,-0.9808,-0.1802,0.0,-1.0,0.0,0.1379,-0.9808,-0.1379,0.1084,-0.9808,-0.1622,0.0,-1.0,0.0,0.1622,-0.9808,-0.1084,0.1379,-0.9808,-0.1379,0.0,-1.0,0.0,0.1802,-0.9808,-0.0747,0.1622,-0.9808,-0.1084,0.0,-1.0,0.0,0.1913,-0.9808,-0.0381,0.1802,-0.9808,-0.0747,0.0,-1.0,0.0,0.1951,-0.9808,0.0,0.1913,-0.9808,-0.0381,0.0,-1.0,0.0,0.1913,-0.9808,0.0381,0.1951,-0.9808,0.0,0.0,-1.0,0.0,0.1802,-0.9808,0.0747,0.1913,-0.9808,0.0381,0.0,-1.0,0.0,0.1622,-0.9808,0.1084,0.1802,-0.9808,0.0747,0.0,-1.0,0.0,0.1379,-0.9808,0.1379,0.1622,-0.9808,0.1084,0.0,-1.0,0.0,0.1084,-0.9808,0.1622,0.1379,-0.9808,0.1379,0.0,-1.0,0.0,0.0747,-0.9808,0.1802,0.1084,-0.9808,0.1622,0.0,-1.0,0.0,0.0381,-0.9808,0.1913,0.0747,-0.9808,0.1802,0.0,-1.0,0.0,0.0,-0.9808,0.1951,0.0381,-0.9808,0.1913],"normals":[0.0,1.0,0.0,0.0,0.9796,0.201,-0.0392,0.9796,0.1971,0.0,1.0,0.0,-0.0392,0.9796,0.1971,-0.0769,0.9796,0.1857,0.0,1.0,0.0,-0.0769,0.9796,0.1857,-0.1117,0.9796,0.1671,0.0,1.0,0.0,-0.1117,0.9796,0.1671,-0.1421,0.9796,0.1421,0.0,1.0,0.0,-0.1421,0.9796,0.1421,-0.1671,0.9796,0.1117,0.0,1.0,0.0,-0.1671,0.9796,0.1117,-0.1857,0.9796,0.0769,0.0,1.0,0.0,-0.1857,0.9796,0.0769,-0.1971,0.9796,0.0392,0.0,1.0,0.0,-0.1971,0.9796,0.0392,-0.201,0.9796,0.0,0.0,1.0,0.0,-0.201,0.9796,0.0,-0.1971,0.9796,-0.0392,0.0,1.0,0.0,-0.1971,0.9796,-0.0392,-0.1857,0.9796,-0.0769,0.0,1.0,0.0,-0.1857,0.9796,-0.0769,-0.1671,0.9796,-0.1117,0.0,1.0,0.0,-0.1671,0.9796,-0.1117,-0.1421,0.9796,-0.1421,0.0,1.0,0.0,-0.1421,0.9796,-0.1421,-0.1117,0.9796,-0.1671,0.0,1.0,0.0,-0.1117,0.9796,-0.1671,-0.0769,0.9796,-0.1857,0.0,1.0,0.0,-0.0769,0.9796,-0.1857,-0.0392,0.9796,-0.1971,0.0,1.0,0.0,-0.0392,0.9796,-0.1971,0.0,0.9796,-0.201,0.0,1.0,0.0,0.0,0.9796,-0.201,0.0392,0.9796,-0.1971,0.0,1.0,0.0,0.0392,0.9796,-0.1971,0.0769,0.9796,-0.1857,0.0,1.0,0.0,0.0769,0.9796,-0.1857,0.1117,0.9796,-0.1671,0.0,1.0,0.0,0.1117,0.9796,-0.1671,0.1421,0.9796,-0.1421,0.0,1.0,0.0,0.1421,0.9796,-0.1421,0.1671,0.9796,-0.1117,0.0,1.0,0.0,0.1671,0.9796,-0.1117,0.1857,0.9796,-0.0769,0.0,1.0,0.0,0.1857,0.9796,-0.0769,0.1971,0.9796,-0.0392,0.0,1.0,0.0,0.1971,0.9796,-0.0392,0.201,0.9796,0.0,0.0,1.0,0.0,0.201,0.9796,0.0,0.1971,0.9796,0.0392,0.0,1.0,0.0,0.1971,0.9796,0.0392,0.1857,0.9796,0.0769,0.0,1.0,0.0,0.1857,0.9796,0.0769,0.1671,0.9796,0.1117,0.0,1.0,0.0,0.1671,0.9796,0.1117,0.1421,0.9796,0.1421,0.0,1.0,0.0,0.1421,0.9796,0.1421,0.1117,0.9796,0.1671,0.0,1.0,0.0,0.1117,0.9796,0.1671,0.0769,0.9796,0.1857,0.0,1.0,0.0,0.0769,0.9796,0.1857,0.0392,0.9796,0.1971,0.0,1.0,0.0,0.0392,0.9796,0.1971,0.0,0.9796,0.201,0.0,0.9796,0.201,0.0,0.9217,0.3879,-0.0757,0.9217,0.3804,0.0,0.9796,0.201,-0.0757,0.9217,0.3804,-0.0392,0.9796,0.1971,-0.0392,0.9796,0.1971,-0.0757,0.9217,0.3804,-0.1484,0.9217,0.3584,-0.0392,0.9796,0.1971,-0.1484,0.9217,0.3584,-0.0769,0.9796,0.1857,-0.0769,0.9796,0.1857,-0.1484,0.9217,0.3584,-0.2155,0.9217,0.3225,-0.0769,0.9796,0.1857,-0.2155,0.9217,0.3225,-0.1117,0.9796,0.1671,-0.1117,0.9796,0.1671,-0.2155,0.9217,0.3225,-0.2743,0.9217,0.2743,-0.1117,0.9796,0.1671,-0.2743,0.9217,0.2743,-0.1421,0.9796,0.1421,-0.1421,0.9796,0.1421,-0.2743,0.9217,0.2743,-0.3225,0.9217,0.2155,-0.1421,0.9796,0.1421,-0.3225,0.9217,0.2155,-0.1671,0.9796,0.1117,-0.1671,0.9796,0.1117,-0.3225,0.9217,0.2155,-0.3584,0.9217,0.1484,-0.1671,0.9796,0.1117,-0.3584,0.9217,0.1484,-0.1857,0.9796,0.0769,-0.1857,0.9796,0.0769,-0.3584,0.9217,0.1484,-0.3804,0.9217,0.0757,-0.1857,0.9796,0.0769,-0.3804,0.9217,0.0757,-0.1971,0.9796,0.0392,-0.1971,0.9796,0.0392,-0.3804,0.9217,0.0757,-0.3879,0.9217,0.0,-0.1971,0.9796,0.0392,-0.3879,0.9217,0.0,-0.201,0.9796,0.0,-0.201,0.9796,0.0,-0.3879,0.9217,0.0,-0.3804,0.9217,-0.0757,-0.201,0.9796,0.0,-0.3804,0.9217,-0.0757,-0.1971,0.9796,-0.0392,-0.1971,0.9796,-0.0392,-0.3804,0.9217,-0.0757,-0.3584,0.9217,-0.1484,-0.1971,0.9796,-0.0392,-0.3584,0.9217,-0.1484,-0.1857,0.9796,-0.0769,-0.1857,0.9796,-0.0769,-0.3584,0.9217,-0.1484,-0.3225,0.9217,-0.2155,-0.1857,0.9796,-0.0769,-0.3225,0.9217,-0.2155,-0.1671,0.9796,-0.1117,-0.1671,0.9796,-0.1117,-0.3225,0.9217,-0.2155,-0.2743,0.9217,-0.2743,-0.1671,0.9796,-0.1117,-0.2743,0.9217,-0.2743,-0.1421,0.9796,-0.1421,-0.1421,0.9796,-0.1421,-0.2743,0.9217,-0.2743,-0.2155,0.9217,-0.3225,-0.1421,0.9796,-0.1421,-0.2155,0.9217,-0.3225,-0.1117,0.9796,-0.1671,-0.1117,0.9796,-0.1671,-0.2155,0.9217,-0.3225,-0.1484,0.9217,-0.3584,-0.1117,0.9796,-0.1671,-0.1484,0.9217,-0.3584,-0.0769,0.9796,-0.1857,-0.0769,0.9796,-0.1857,-0.1484,0.9217,-0.3584,-0.0757,0.9217,-0.3804,-0.0769,0.9796,-0.1857,-0.0757,0.9217,-0.3804,-0.0392,0.9796,-0.1971,-0.0392,0.9796,-0.1971,-0.0757,0.9217,-0.3804,0.0,0.9217,-0.3879,-0.0392,0.9796,-0.1971,0.0,0.9217,-0.3879,0.0,0.9796,-0.201,0.0,0.9796,-0.201,0.0,0.9217,-0.3879,0.0757,0.9217,-0.3804,0.0,0.9796,-0.201,0.0757,0.9217,-0.3804,0.0392,0.9796,-0.1971,0.0392,0.9796,-0.1971,0.0757,0.9217,-0.3804,0.1484,0.9217,-0.3584,0.0392,0.9796,-0.1971,0.1484,0.9217,-0.3584,0.0769,0.9796,-0.1857,0.0769,0.9796,-0.1857,0.1484,0.9217,-0.3584,0.2155,0.9217,-0.3225,0.0769,0.9796,-0.1857,0.2155,0.9217,-0.3225,0.1117,0.9796,-0.1671,0.1117,0.9796,-0.1671,0.2155,0.9217,-0.3225,0.2743,0.9217,-0.2743,0.1117,0.9796,-0.1671,0.2743,0.9217,-0.2743,0.1421,0.9796,-0.1421,0.1421,0.9796,-0.1421,0.2743,0.9217,-0.2743,0.3225,0.9217,-0.2155,0.1421,0.9796,-0.1421,0.3225,0.9217,-0.2155,0.1671,0.9796,-0.1117,0.1671,0.9796,-0.1117,0.3225,0.9217,-0.2155,0.3584,0.9217,-0.1484,0.1671,0.9796,-0.1117,0.3584,0.9217,-0.1484,0.1857,0.9796,-0.0769,0.1857,0.9796,-0.0769,0.3584,0.9217,-0.1484,0.3804,0.9217,-0.0757,0.1857,0.9796,-0.0769,0.3804,0.9217,-0.0757,0.1971,0.9796,-0.0392,0.1971,0.9796,-0.0392,0.3804,0.9217,-0.0757,0.3879,0.9217,0.0,0.1971,0.9796,-0.0392,0.3879,0.9217,0.0,0.201,0.9796,0.0,0.201,0.9796,0.0,0.3879,0.9217,0.0,0.3804,0.9217,0.0757,0.201,0.9796,0.0,0.3804,0.9217,0.0757,0.1971,0.9796,0.0392,0.1971,0.9796,0.0392,0.3804,0.9217,0.0757,0.3584,0.9217,0.1484,0.1971,0.9796,0.0392,0.3584,0.9217,0.1484,0.1857,0.9796,0.0769,0.1857,0.9796,0.0769,0.3584,0.9217,0.1484,0.3225,0.9217,0.2155,0.1857,0.9796,0.0769,0.3225,0.9217,0.2155,0.1671,0.9796,0.1117,0.1671,0.9796,0.1117,0.3225,0.9217,0.2155,0.2743,0.9217,0.2743,0.1671,0.9796,0.1117,0.2743,0.9217,0.2743,0.1421,0.9796,0.1421,0.1421,0.9796,0.1421,0.2743,0.9217,0.2743,0.2155,0.9217,0.3225,0.1421,0.9796,0.1421,0.2155,0.9217,0.3225,0.1117,0.9796,0.1671,0.1117,0.9796,0.1671,0.2155,0.9217,0.3225,0.1484,0.9217,0.3584,0.1117,0.9796,0.1671,0.1484,0.9217,0.3584,0.0769,0.9796,0.1857,0.0769,0.9796,0.1857,0.1484,0.9217,0.3584,0.0757,0.9217,0.3804,0.0769,0.9796,0.1857,0.0757,0.9217,0.3804,0.0392,0.9796,0.1971,0.0392,0.9796,0.1971,0.0757,0.9217,0.3804,0.0,0.9217,0.3879,0.0392,0.9796,0.1971,0.0,0.9217,0.3879,0.0,0.9796,0.201,0.0,0.9217,0.3879,0.0,0.8286,0.5598,-0.1092,0.8286,0.549,0.0,0.9217,0.3879,-0.1092,0.8286,0.549,-0.0757,0.9217,0.3804,-0.0757,0.9217,0.3804,-0.1092,0.8286,0.549,-0.2142,0.8286,0.5172,-0.0757,0.9217,0.3804,-0.2142,0.8286,0.5172,-0.1484,0.9217,0.3584,-0.1484,0.9217,0.3584,-0.2142,0.8286,0.5172,-0.311,0.8286,0.4654,-0.1484,0.9217,0.3584,-0.311,0.8286,0.4654,-0.2155,0.9217,0.3225,-0.2155,0.9217,0.3225,-0.311,0.8286,0.4654,-0.3958,0.8286,0.3958,-0.2155,0.9217,0.3225,-0.3958,0.8286,0.3958,-0.2743,0.9217,0.2743,-0.2743,0.9217,0.2743,-0.3958,0.8286,0.3958,-0.4654,0.8286,0.311,-0.2743,0.9217,0.2743,-0.4654,0.8286,0.311,-0.3225,0.9217,0.2155,-0.3225,0.9217,0.2155,-0.4654,0.8286,0.311,-0.5172,0.8286,0.2142,-0.3225,0.9217,0.2155,-0.5172,0.8286,0.2142,-0.3584,0.9217,0.1484,-0.3584,0.9217,0.1484,-0.5172,0.8286,0.2142,-0.549,0.8286,0.1092,-0.3584,0.9217,0.1484,-0.549,0.8286,0.1092,-0.3804,0.9217,0.0757,-0.3804,0.9217,0.0757,-0.549,0.8286,0.1092,-0.5598,0.8286,0.0,-0.3804,0.9217,0.0757,-0.5598,0.8286,0.0,-0.3879,0.9217,0.0,-0.3879,0.9217,0.0,-0.5598,0.8286,0.0,-0.549,0.8286,-0.1092,-0.3879,0.9217,0.0,-0.549,0.8286,-0.1092,-0.3804,0.9217,-0.0757,-0.3804,0.9217,-0.0757,-0.549,0.8286,-0.1092,-0.5172,0.8286,-0.2142,-0.3804,0.9217,-0.0757,-0.5172,0.8286,-0.2142,-0.3584,0.9217,-0.1484,-0.3584,0.9217,-0.1484,-0.5172,0.8286,-0.2142,-0.4654,0.8286,-0.311,-0.3584,0.9217,-0.1484,-0.4654,0.8286,-0.311,-0.3225,0.9217,-0.2155,-0.3225,0.9217,-0.2155,-0.4654,0.8286,-0.311,-0.3958,0.8286,-0.3958,-0.3225,0.9217,-0.2155,-0.3958,0.8286,-0.3958,-0.2743,0.9217,-0.2743,-0.2743,0.9217,-0.2743,-0.3958,0.8286,-0.3958,-0.311,0.8286,-0.4654,-0.2743,0.9217,-0.2743,-0.311,0.8286,-0.4654,-0.2155,0.9217,-0.3225,-0.2155,0.9217,-0.3225,-0.311,0.8286,-0.4654,-0.2142,0.8286,-0.5172,-0.2155,0.9217,-0.3225,-0.2142,0.8286,-0.5172,-0.1484,0.9217,-0.3584,-0.1484,0.9217,-0.3584,-0.2142,0.8286,-0.5172,-0.1092,0.8286,-0.549,-0.1484,0.9217,-0.3584,-0.1092,0.8286,-0.549,-0.0757,0.9217,-0.3804,-0.0757,0.9217,-0.3804,-0.1092,0.8286,-0.549,0.0,0.8286,-0.5598,-0.0757,0.9217,-0.3804,0.0,0.8286,-0.5598,0.0,0.9217,-0.3879,0.0,0.9217,-0.3879,0.0,0.8286,-0.5598,0.1092,0.8286,-0.549,0.0,0.9217,-0.3879,0.1092,0.8286,-0.549,0.0757,0.9217,-0.3804,0.0757,0.9217,-0.3804,0.1092,0.8286,-0.549,0.2142,0.8286,-0.5172,0.0757,0.9217,-0.3804,0.2142,0.8286,-0.5172,0.1484,0.9217,-0.3584,0.1484,0.9217,-0.3584,0.2142,0.8286,-0.5172,0.311,0.8286,-0.4654,0.1484,0.9217,-0.3584,0.311,0.8286,-0.4654,0.2155,0.9217,-0.3225,0.2155,0.9217,-0.3225,0.311,0.8286,-0.4654,0.3958,0.8286,-0.3958,0.2155,0.9217,-0.3225,0.3958,0.8286,-0.3958,0.2743,0.9217,-0.2743,0.2743,0.9217,-0.2743,0.3958,0.8286,-0.3958,0.4654,0.8286,-0.311,0.2743,0.9217,-0.2743,0.4654,0.8286,-0.311,0.3225,0.9217,-0.2155,0.3225,0.9217,-0.2155,0.4654,0.8286,-0.311,0.5172,0.8286,-0.2142,0.3225,0.9217,-0.2155,0.5172,0.8286,-0.2142,0.3584,0.9217,-0.1484,0.3584,0.9217,-0.1484,0.5172,0.8286,-0.2142,0.549,0.8286,-0.1092,0.3584,0.9217,-0.1484,0.549,0.8286,-0.1092,0.3804,0.9217,-0.0757,0.3804,0.9217,-0.0757,0.549,0.8286,-0.1092,0.5598,0.8286,0.0,0.3804,0.9217,-0.0757,0.5598,0.8286,0.0,0.3879,0.9217,0.0,0.3879,0.9217,0.0,0.5598,0.8286,0.0,0.549,0.8286,0.1092,0.3879,0.9217,0.0,0.549,0.8286,0.1092,0.3804,0.9217,0.0757,0.3804,0.9217,0.0757,0.549,0.8286,0.1092,0.5172,0.8286,0.2142,0.3804,0.9217,0.0757,0.5172,0.8286,0.2142,0.3584,0.9217,0.1484,0.3584,0.9217,0.1484,0.5172,0.8286,0.2142,0.4654,0.8286,0.311,0.3584,0.9217,0.1484,0.4654,0.8286,0.311,0.3225,0.9217,0.2155,0.3225,0.9217,0.2155,0.4654,0.8286,0.311,0.3958,0.8286,0.3958,0.3225,0.9217,0.2155,0.3958,0.8286,0.3958,0.2743,0.9217,0.2743,0.2743,0.9217,0.2743,0.3958,0.8286,0.3958,0.311,0.8286,0.4654,0.2743,0.9217,0.2743,0.311,0.8286,0.4654,0.2155,0.9217,0.3225,0.2155,0.9217,0.3225,0.311,0.8286,0.4654,0.2142,0.8286,0.5172,0.2155,0.9217,0.3225,0.2142,0.8286,0.5172,0.1484,0.9217,0.3584,0.1484,0.9217,0.3584,0.2142,0.8286,0.5172,0.1092,0.8286,0.549,0.1484,0.9217,0.3584,0.1092,0.8286,0.549,0.0757,0.9217,0.3804,0.0757,0.9217,0.3804,0.1092,0.8286,0.549,0.0,0.8286,0.5598,0.0757,0.9217,0.3804,0.0,0.8286,0.5598,0.0,0.9217,0.3879,0.0,0.8286,0.5598,0.0,0.7041,0.7101,-0.1385,0.7041,0.6965,0.0,0.8286,0.5598,-0.1385,0.7041,0.6965,-0.1092,0.8286,0.549,-0.1092,0.8286,0.549,-0.1385,0.7041,0.6965,-0.2718,0.7041,0.6561,-0.1092,0.8286,0.549,-0.2718,0.7041,0.6561,-0.2142,0.8286,0.5172,-0.2142,0.8286,0.5172,-0.2718,0.7041,0.6561,-0.3945,0.7041,0.5905,-0.2142,0.8286,0.5172,-0.3945,0.7041,0.5905,-0.311,0.8286,0.4654,-0.311,0.8286,0.4654,-0.3945,0.7041,0.5905,-0.5021,0.7041,0.5021,-0.311,0.8286,0.4654,-0.5021,0.7041,0.5021,-0.3958,0.8286,0.3958,-0.3958,0.8286,0.3958,-0.5021,0.7041,0.5021,-0.5905,0.7041,0.3945,-0.3958,0.8286,0.3958,-0.5905,0.7041,0.3945,-0.4654,0.8286,0.311,-0.4654,0.8286,0.311,-0.5905,0.7041,0.3945,-0.6561,0.7041,0.2718,-0.4654,0.8286,0.311,-0.6561,0.7041,0.2718,-0.5172,0.8286,0.2142,-0.5172,0.8286,0.2142,-0.6561,0.7041,0.2718,-0.6965,0.7041,0.1385,-0.5172,0.8286,0.2142,-0.6965,0.7041,0.1385,-0.549,0.8286,0.1092,-0.549,0.8286,0.1092,-0.6965,0.7041,0.1385,-0.7101,0.7041,0.0,-0.549,0.8286,0.1092,-0.7101,0.7041,0.0,-0.5598,0.8286,0.0,-0.5598,0.8286,0.0,-0.7101,0.7041,0.0,-0.6965,0.7041,-0.1385,-0.5598,0.8286,0.0,-0.6965,0.7041,-0.1385,-0.549,0.8286,-0.1092,-0.549,0.8286,-0.1092,-0.6965,0.7041,-0.1385,-0.6561,0.7041,-0.2718,-0.549,0.8286,-0.1092,-0.6561,0.7041,-0.2718,-0.5172,0.8286,-0.2142,-0.5172,0.8286,-0.2142,-0.6561,0.7041,-0.2718,-0.5905,0.7041,-0.3945,-0.5172,0.8286,-0.2142,-0.5905,0.7041,-0.3945,-0.4654,0.8286,-0.311,-0.4654,0.8286,-0.311,-0.5905,0.7041,-0.3945,-0.5021,0.7041,-0.5021,-0.4654,0.8286,-0.311,-0.5021,0.7041,-0.5021,-0.3958,0.8286,-0.3958,-0.3958,0.8286,-0.3958,-0.5021,0.7041,-0.5021,-0.3945,0.7041,-0.5905,-0.3958,0.8286,-0.3958,-0.3945,0.7041,-0.5905,-0.311,0.8286,-0.4654,-0.311,0.8286,-0.4654,-0.3945,0.7041,-0.5905,-0.2718,0.7041,-0.6561,-0.311,0.8286,-0.4654,-0.2718,0.7041,-0.6561,-0.2142,0.8286,-0.5172,-0.2142,0.8286,-0.5172,-0.2718,0.7041,-0.6561,-0.1385,0.7041,-0.6965,-0.2142,0.8286,-0.5172,-0.1385,0.7041,-0.6965,-0.1092,0.8286,-0.549,-0.1092,0.8286,-0.549,-0.1385,0.7041,-0.6965,0.0,0.7041,-0.7101,-0.1092,0.8286,-0.549,0.0,0.7041,-0.7101,0.0,0.8286,-0.5598,0.0,0.8286,-0.5598,0.0,0.7041,-0.7101,0.1385,0.7041,-0.6965,0.0,0.8286,-0.5598,0.1385,0.7041,-0.6965,0.1092,0.8286,-0.549,0.1092,0.8286,-0.549,0.1385,0.7041,-0.6965,0.2718,0.7041,-0.6561,0.1092,0.8286,-0.549,0.2718,0.7041,-0.6561,0.2142,0.8286,-0.5172,0.2142,0.8286,-0.5172,0.2718,0.7041,-0.6561,0.3945,0.7041,-0.5905,0.2142,0.8286,-0.5172,0.3945,0.7041,-0.5905,0.311,0.8286,-0.4654,0.311,0.8286,-0.4654,0.3945,0.7041,-0.5905,0.5021,0.7041,-0.5021,0.311,0.8286,-0.4654,0.5021,0.7041,-0.5021,0.3958,0.8286,-0.3958,0.3958,0.8286,-0.3958,0.5021,0.7041,-0.5021,0.5905,0.7041,-0.3945,0.3958,0.8286,-0.3958,0.5905,0.7041,-0.3945,0.4654,0.8286,-0.311,0.4654,0.8286,-0.311,0.5905,0.7041,-0.3945,0.6561,0.7041,-0.2718,0.4654,0.8286,-0.311,0.6561,0.7041,-0.2718,0.5172,0.8286,-0.2142,0.5172,0.8286,-0.2142,0.6561,0.7041,-0.2718,0.6965,0.7041,-0.1385,0.5172,0.8286,-0.2142,0.6965,0.7041,-0.1385,0.549,0.8286,-0.1092,0.549,0.8286,-0.1092,0.6965,0.7041,-0.1385,0.7101,0.7041,0.0,0.549,0.8286,-0.1092,0.7101,0.7041,0.0,0.5598,0.8286,0.0,0.5598,0.8286,0.0,0.7101,0.7041,0.0,0.6965,0.7041,0.1385,0.5598,0.8286,0.0,0.6965,0.7041,0.1385,0.549,0.8286,0.1092,0.549,0.8286,0.1092,0.6965,0.7041,0.1385,0.6561,0.7041,0.2718,0.549,0.8286,0.1092,0.6561,0.7041,0.2718,0.5172,0.8286,0.2142,0.5172,0.8286,0.2142,0.6561,0.7041,0.2718,0.5905,0.7041,0.3945,0.5172,0.8286,0.2142,0.5905,0.7041,0.3945,0.4654,0.8286,0.311,0.4654,0.8286,0.311,0.5905,0.7041,0.3945,0.5021,0.7041,0.5021,0.4654,0.8286,0.311,0.5021,0.7041,0.5021,0.3958,0.8286,0.3958,0.3958,0.8286,0.3958,0.5021,0.7041,0.5021,0.3945,0.7041,0.5905,0.3958,0.8286,0.3958,0.3945,0.7041,0.5905,0.311,0.8286,0.4654,0.311,0.8286,0.4654,0.3945,0.7041,0.5905,0.2718,0.7041,0.6561,0.311,0.8286,0.4654,0.2718,0.7041,0.6561,0.2142,0.8286,0.5172,0.2142,0.8286,0.5172,0.2718,0.7041,0.6561,0.1385,0.7041,0.6965,0.2142,0.8286,0.5172,0.1385,0.7041,0.6965,0.1092,0.8286,0.549,0.1092,0.8286,0.549,0.1385,0.7041,0.6965,0.0,0.7041,0.7101,0.1092,0.8286,0.549,0.0,0.7041,0.7101,0.0,0.8286,0.5598,0.0,0.7041,0.7101,0.0,0.5528,0.8333,-0.1626,0.5528,0.8173,0.0,0.7041,0.7101,-0.1626,0.5528,0.8173,-0.1385,0.7041,0.6965,-0.1385,0.7041,0.6965,-0.1626,0.5528,0.8173,-0.3189,0.5528,0.7699,-0.1385,0.7041,0.6965,-0.3189,0.5528,0.7699,-0.2718,0.7041,0.6561,-0.2718,0.7041,0.6561,-0.3189,0.5528,0.7699,-0.463,0.5528,0.6929,-0.2718,0.7041,0.6561,-0.463,0.5528,0.6929,-0.3945,0.7041,0.5905,-0.3945,0.7041,0.5905,-0.463,0.5528,0.6929,-0.5893,0.5528,0.5893,-0.3945,0.7041,0.5905,-0.5893,0.5528,0.5893,-0.5021,0.7041,0.5021,-0.5021,0.7041,0.5021,-0.5893,0.5528,0.5893,-0.6929,0.5528,0.463,-0.5021,0.7041,0.5021,-0.6929,0.5528,0.463,-0.5905,0.7041,0.3945,-0.5905,0.7041,0.3945,-0.6929,0.5528,0.463,-0.7699,0.5528,0.3189,-0.5905,0.7041,0.3945,-0.7699,0.5528,0.3189,-0.6561,0.7041,0.2718,-0.6561,0.7041,0.2718,-0.7699,0.5528,0.3189,-0.8173,0.5528,0.1626,-0.6561,0.7041,0.2718,-0.8173,0.5528,0.1626,-0.6965,0.7041,0.1385,-0.6965,0.7041,0.1385,-0.8173,0.5528,0.1626,-0.8333,0.5528,0.0,-0.6965,0.7041,0.1385,-0.8333,0.5528,0.0,-0.7101,0.7041,0.0,-0.7101,0.7041,0.0,-0.8333,0.5528,0.0,-0.8173,0.5528,-0.1626,-0.7101,0.7041,0.0,-0.8173,0.5528,-0.1626,-0.6965,0.7041,-0.1385,-0.6965,0.7041,-0.1385,-0.8173,0.5528,-0.1626,-0.7699,0.5528,-0.3189,-0.6965,0.7041,-0.1385,-0.7699,0.5528,-0.3189,-0.6561,0.7041,-0.2718,-0.6561,0.7041,-0.2718,-0.7699,0.5528,-0.3189,-0.6929,0.5528,-0.463,-0.6561,0.7041,-0.2718,-0.6929,0.5528,-0.463,-0.5905,0.7041,-0.3945,-0.5905,0.7041,-0.3945,-0.6929,0.5528,-0.463,-0.5893,0.5528,-0.5893,-0.5905,0.7041,-0.3945,-0.5893,0.5528,-0.5893,-0.5021,0.7041,-0.5021,-0.5021,0.7041,-0.5021,-0.5893,0.5528,-0.5893,-0.463,0.5528,-0.6929,-0.5021,0.7041,-0.5021,-0.463,0.5528,-0.6929,-0.3945,0.7041,-0.5905,-0.3945,0.7041,-0.5905,-0.463,0.5528,-0.6929,-0.3189,0.5528,-0.7699,-0.3945,0.7041,-0.5905,-0.3189,0.5528,-0.7699,-0.2718,0.7041,-0.6561,-0.2718,0.7041,-0.6561,-0.3189,0.5528,-0.7699,-0.1626,0.5528,-0.8173,-0.2718,0.7041,-0.6561,-0.1626,0.5528,-0.8173,-0.1385,0.7041,-0.6965,-0.1385,0.7041,-0.6965,-0.1626,0.5528,-0.8173,0.0,0.5528,-0.8333,-0.1385,0.7041,-0.6965,0.0,0.5528,-0.8333,0.0,0.7041,-0.7101,0.0,0.7041,-0.7101,0.0,0.5528,-0.8333,0.1626,0.5528,-0.8173,0.0,0.7041,-0.7101,0.1626,0.5528,-0.8173,0.1385,0.7041,-0.6965,0.1385,0.7041,-0.6965,0.1626,0.5528,-0.8173,0.3189,0.5528,-0.7699,0.1385,0.7041,-0.6965,0.3189,0.5528,-0.7699,0.2718,0.7041,-0.6561,0.2718,0.7041,-0.6561,0.3189,0.5528,-0.7699,0.463,0.5528,-0.6929,0.2718,0.7041,-0.6561,0.463,0.5528,-0.6929,0.3945,0.7041,-0.5905,0.3945,0.7041,-0.5905,0.463,0.5528,-0.6929,0.5893,0.5528,-0.5893,0.3945,0.7041,-0.5905,0.5893,0.5528,-0.5893,0.5021,0.7041,-0.5021,0.5021,0.7041,-0.5021,0.5893,0.5528,-0.5893,0.6929,0.5528,-0.463,0.5021,0.7041,-0.5021,0.6929,0.5528,-0.463,0.5905,0.7041,-0.3945,0.5905,0.7041,-0.3945,0.6929,0.5528,-0.463,0.7699,0.5528,-0.3189,0.5905,0.7041,-0.3945,0.7699,0.5528,-0.3189,0.6561,0.7041,-0.2718,0.6561,0.7041,-0.2718,0.7699,0.5528,-0.3189,0.8173,0.5528,-0.1626,0.6561,0.7041,-0.2718,0.8173,0.5528,-0.1626,0.6965,0.7041,-0.1385,0.6965,0.7041,-0.1385,0.8173,0.5528,-0.1626,0.8333,0.5528,0.0,0.6965,0.7041,-0.1385,0.8333,0.5528,0.0,0.7101,0.7041,0.0,0.7101,0.7041,0.0,0.8333,0.5528,0.0,0.8173,0.5528,0.1626,0.7101,0.7041,0.0,0.8173,0.5528,0.1626,0.6965,0.7041,0.1385,0.6965,0.7041,0.1385,0.8173,0.5528,0.1626,0.7699,0.5528,0.3189,0.6965,0.7041,0.1385,0.7699,0.5528,0.3189,0.6561,0.7041,0.2718,0.6561,0.7041,0.2718,0.7699,0.5528,0.3189,0.6929,0.5528,0.463,0.6561,0.7041,0.2718,0.6929,0.5528,0.463,0.5905,0.7041,0.3945,0.5905,0.7041,0.3945,0.6929,0.5528,0.463,0.5893,0.5528,0.5893,0.5905,0.7041,0.3945,0.5893,0.5528,0.5893,0.5021,0.7041,0.5021,0.5021,0.7041,0.5021,0.5893,0.5528,0.5893,0.463,0.5528,0.6929,0.5021,0.7041,0.5021,0.463,0.5528,0.6929,0.3945,0.7041,0.5905,0.3945,0.7041,0.5905,0.463,0.5528,0.6929,0.3189,0.5528,0.7699,0.3945,0.7041,0.5905,0.3189,0.5528,0.7699,0.2718,0.7041,0.6561,0.2718,0.7041,0.6561,0.3189,0.5528,0.7699,0.1626,0.5528,0.8173,0.2718,0.7041,0.6561,0.1626,0.5528,0.8173,0.1385,0.7041,0.6965,0.1385,0.7041,0.6965,0.1626,0.5528,0.8173,0.0,0.5528,0.8333,0.1385,0.7041,0.6965,0.0,0.5528,0.8333,0.0,0.7041,0.7101,0.0,0.5528,0.8333,0.0,0.3805,0.9248,-0.1804,0.3805,0.907,0.0,0.5528,0.8333,-0.1804,0.3805,0.907,-0.1626,0.5528,0.8173,-0.1626,0.5528,0.8173,-0.1804,0.3805,0.907,-0.3539,0.3805,0.8544,-0.1626,0.5528,0.8173,-0.3539,0.3805,0.8544,-0.3189,0.5528,0.7699,-0.3189,0.5528,0.7699,-0.3539,0.3805,0.8544,-0.5138,0.3805,0.7689,-0.3189,0.5528,0.7699,-0.5138,0.3805,0.7689,-0.463,0.5528,0.6929,-0.463,0.5528,0.6929,-0.5138,0.3805,0.7689,-0.6539,0.3805,0.6539,-0.463,0.5528,0.6929,-0.6539,0.3805,0.6539,-0.5893,0.5528,0.5893,-0.5893,0.5528,0.5893,-0.6539,0.3805,0.6539,-0.7689,0.3805,0.5138,-0.5893,0.5528,0.5893,-0.7689,0.3805,0.5138,-0.6929,0.5528,0.463,-0.6929,0.5528,0.463,-0.7689,0.3805,0.5138,-0.8544,0.3805,0.3539,-0.6929,0.5528,0.463,-0.8544,0.3805,0.3539,-0.7699,0.5528,0.3189,-0.7699,0.5528,0.3189,-0.8544,0.3805,0.3539,-0.907,0.3805,0.1804,-0.7699,0.5528,0.3189,-0.907,0.3805,0.1804,-0.8173,0.5528,0.1626,-0.8173,0.5528,0.1626,-0.907,0.3805,0.1804,-0.9248,0.3805,0.0,-0.8173,0.5528,0.1626,-0.9248,0.3805,0.0,-0.8333,0.5528,0.0,-0.8333,0.5528,0.0,-0.9248,0.3805,0.0,-0.907,0.3805,-0.1804,-0.8333,0.5528,0.0,-0.907,0.3805,-0.1804,-0.8173,0.5528,-0.1626,-0.8173,0.5528,-0.1626,-0.907,0.3805,-0.1804,-0.8544,0.3805,-0.3539,-0.8173,0.5528,-0.1626,-0.8544,0.3805,-0.3539,-0.7699,0.5528,-0.3189,-0.7699,0.5528,-0.3189,-0.8544,0.3805,-0.3539,-0.7689,0.3805,-0.5138,-0.7699,0.5528,-0.3189,-0.7689,0.3805,-0.5138,-0.6929,0.5528,-0.463,-0.6929,0.5528,-0.463,-0.7689,0.3805,-0.5138,-0.6539,0.3805,-0.6539,-0.6929,0.5528,-0.463,-0.6539,0.3805,-0.6539,-0.5893,0.5528,-0.5893,-0.5893,0.5528,-0.5893,-0.6539,0.3805,-0.6539,-0.5138,0.3805,-0.7689,-0.5893,0.5528,-0.5893,-0.5138,0.3805,-0.7689,-0.463,0.5528,-0.6929,-0.463,0.5528,-0.6929,-0.5138,0.3805,-0.7689,-0.3539,0.3805,-0.8544,-0.463,0.5528,-0.6929,-0.3539,0.3805,-0.8544,-0.3189,0.5528,-0.7699,-0.3189,0.5528,-0.7699,-0.3539,0.3805,-0.8544,-0.1804,0.3805,-0.907,-0.3189,0.5528,-0.7699,-0.1804,0.3805,-0.907,-0.1626,0.5528,-0.8173,-0.1626,0.5528,-0.8173,-0.1804,0.3805,-0.907,0.0,0.3805,-0.9248,-0.1626,0.5528,-0.8173,0.0,0.3805,-0.9248,0.0,0.5528,-0.8333,0.0,0.5528,-0.8333,0.0,0.3805,-0.9248,0.1804,0.3805,-0.907,0.0,0.5528,-0.8333,0.1804,0.3805,-0.907,0.1626,0.5528,-0.8173,0.1626,0.5528,-0.8173,0.1804,0.3805,-0.907,0.3539,0.3805,-0.8544,0.1626,0.5528,-0.8173,0.3539,0.3805,-0.8544,0.3189,0.5528,-0.7699,0.3189,0.5528,-0.7699,0.3539,0.3805,-0.8544,0.5138,0.3805,-0.7689,0.3189,0.5528,-0.7699,0.5138,0.3805,-0.7689,0.463,0.5528,-0.6929,0.463,0.5528,-0.6929,0.5138,0.3805,-0.7689,0.6539,0.3805,-0.6539,0.463,0.5528,-0.6929,0.6539,0.3805,-0.6539,0.5893,0.5528,-0.5893,0.5893,0.5528,-0.5893,0.6539,0.3805,-0.6539,0.7689,0.3805,-0.5138,0.5893,0.5528,-0.5893,0.7689,0.3805,-0.5138,0.6929,0.5528,-0.463,0.6929,0.5528,-0.463,0.7689,0.3805,-0.5138,0.8544,0.3805,-0.3539,0.6929,0.5528,-0.463,0.8544,0.3805,-0.3539,0.7699,0.5528,-0.3189,0.7699,0.5528,-0.3189,0.8544,0.3805,-0.3539,0.907,0.3805,-0.1804,0.7699,0.5528,-0.3189,0.907,0.3805,-0.1804,0.8173,0.5528,-0.1626,0.8173,0.5528,-0.1626,0.907,0.3805,-0.1804,0.9248,0.3805,0.0,0.8173,0.5528,-0.1626,0.9248,0.3805,0.0,0.8333,0.5528,0.0,0.8333,0.5528,0.0,0.9248,0.3805,0.0,0.907,0.3805,0.1804,0.8333,0.5528,0.0,0.907,0.3805,0.1804,0.8173,0.5528,0.1626,0.8173,0.5528,0.1626,0.907,0.3805,0.1804,0.8544,0.3805,0.3539,0.8173,0.5528,0.1626,0.8544,0.3805,0.3539,0.7699,0.5528,0.3189,0.7699,0.5528,0.3189,0.8544,0.3805,0.3539,0.7689,0.3805,0.5138,0.7699,0.5528,0.3189,0.7689,0.3805,0.5138,0.6929,0.5528,0.463,0.6929,0.5528,0.463,0.7689,0.3805,0.5138,0.6539,0.3805,0.6539,0.6929,0.5528,0.463,0.6539,0.3805,0.6539,0.5893,0.5528,0.5893,0.5893,0.5528,0.5893,0.6539,0.3805,0.6539,0.5138,0.3805,0.7689,0.5893,0.5528,0.5893,0.5138,0.3805,0.7689,0.463,0.5528,0.6929,0.463,0.5528,0.6929,0.5138,0.3805,0.7689,0.3539,0.3805,0.8544,0.463,0.5528,0.6929,0.3539,0.3805,0.8544,0.3189,0.5528,0.7699,0.3189,0.5528,0.7699,0.3539,0.3805,0.8544,0.1804,0.3805,0.907,0.3189,0.5528,0.7699,0.1804,0.3805,0.907,0.1626,0.5528,0.8173,0.1626,0.5528,0.8173,0.1804,0.3805,0.907,0.0,0.3805,0.9248,0.1626,0.5528,0.8173,0.0,0.3805,0.9248,0.0,0.5528,0.8333,0.0,0.3805,0.9248,0.0,0.1939,0.981,-0.1914,0.1939,0.9622,0.0,0.3805,0.9248,-0.1914,0.1939,0.9622,-0.1804,0.3805,0.907,-0.1804,0.3805,0.907,-0.1914,0.1939,0.9622,-0.3754,0.1939,0.9063,-0.1804,0.3805,0.907,-0.3754,0.1939,0.9063,-0.3539,0.3805,0.8544,-0.3539,0.3805,0.8544,-0.3754,0.1939,0.9063,-0.545,0.1939,0.8157,-0.3539,0.3805,0.8544,-0.545,0.1939,0.8157,-0.5138,0.3805,0.7689,-0.5138,0.3805,0.7689,-0.545,0.1939,0.8157,-0.6937,0.1939,0.6937,-0.5138,0.3805,0.7689,-0.6937,0.1939,0.6937,-0.6539,0.3805,0.6539,-0.6539,0.3805,0.6539,-0.6937,0.1939,0.6937,-0.8157,0.1939,0.545,-0.6539,0.3805,0.6539,-0.8157,0.1939,0.545,-0.7689,0.3805,0.5138,-0.7689,0.3805,0.5138,-0.8157,0.1939,0.545,-0.9063,0.1939,0.3754,-0.7689,0.3805,0.5138,-0.9063,0.1939,0.3754,-0.8544,0.3805,0.3539,-0.8544,0.3805,0.3539,-0.9063,0.1939,0.3754,-0.9622,0.1939,0.1914,-0.8544,0.3805,0.3539,-0.9622,0.1939,0.1914,-0.907,0.3805,0.1804,-0.907,0.3805,0.1804,-0.9622,0.1939,0.1914,-0.981,0.1939,0.0,-0.907,0.3805,0.1804,-0.981,0.1939,0.0,-0.9248,0.3805,0.0,-0.9248,0.3805,0.0,-0.981,0.1939,0.0,-0.9622,0.1939,-0.1914,-0.9248,0.3805,0.0,-0.9622,0.1939,-0.1914,-0.907,0.3805,-0.1804,-0.907,0.3805,-0.1804,-0.9622,0.1939,-0.1914,-0.9063,0.1939,-0.3754,-0.907,0.3805,-0.1804,-0.9063,0.1939,-0.3754,-0.8544,0.3805,-0.3539,-0.8544,0.3805,-0.3539,-0.9063,0.1939,-0.3754,-0.8157,0.1939,-0.545,-0.8544,0.3805,-0.3539,-0.8157,0.1939,-0.545,-0.7689,0.3805,-0.5138,-0.7689,0.3805,-0.5138,-0.8157,0.1939,-0.545,-0.6937,0.1939,-0.6937,-0.7689,0.3805,-0.5138,-0.6937,0.1939,-0.6937,-0.6539,0.3805,-0.6539,-0.6539,0.3805,-0.6539,-0.6937,0.1939,-0.6937,-0.545,0.1939,-0.8157,-0.6539,0.3805,-0.6539,-0.545,0.1939,-0.8157,-0.5138,0.3805,-0.7689,-0.5138,0.3805,-0.7689,-0.545,0.1939,-0.8157,-0.3754,0.1939,-0.9063,-0.5138,0.3805,-0.7689,-0.3754,0.1939,-0.9063,-0.3539,0.3805,-0.8544,-0.3539,0.3805,-0.8544,-0.3754,0.1939,-0.9063,-0.1914,0.1939,-0.9622,-0.3539,0.3805,-0.8544,-0.1914,0.1939,-0.9622,-0.1804,0.3805,-0.907,-0.1804,0.3805,-0.907,-0.1914,0.1939,-0.9622,0.0,0.1939,-0.981,-0.1804,0.3805,-0.907,0.0,0.1939,-0.981,0.0,0.3805,-0.9248,0.0,0.3805,-0.9248,0.0,0.1939,-0.981,0.1914,0.1939,-0.9622,0.0,0.3805,-0.9248,0.1914,0.1939,-0.9622,0.1804,0.3805,-0.907,0.1804,0.3805,-0.907,0.1914,0.1939,-0.9622,0.3754,0.1939,-0.9063,0.1804,0.3805,-0.907,0.3754,0.1939,-0.9063,0.3539,0.3805,-0.8544,0.3539,0.3805,-0.8544,0.3754,0.1939,-0.9063,0.545,0.1939,-0.8157,0.3539,0.3805,-0.8544,0.545,0.1939,-0.8157,0.5138,0.3805,-0.7689,0.5138,0.3805,-0.7689,0.545,0.1939,-0.8157,0.6937,0.1939,-0.6937,0.5138,0.3805,-0.7689,0.6937,0.1939,-0.6937,0.6539,0.3805,-0.6539,0.6539,0.3805,-0.6539,0.6937,0.1939,-0.6937,0.8157,0.1939,-0.545,0.6539,0.3805,-0.6539,0.8157,0.1939,-0.545,0.7689,0.3805,-0.5138,0.7689,0.3805,-0.5138,0.8157,0.1939,-0.545,0.9063,0.1939,-0.3754,0.7689,0.3805,-0.5138,0.9063,0.1939,-0.3754,0.8544,0.3805,-0.3539,0.8544,0.3805,-0.3539,0.9063,0.1939,-0.3754,0.9622,0.1939,-0.1914,0.8544,0.3805,-0.3539,0.9622,0.1939,-0.1914,0.907,0.3805,-0.1804,0.907,0.3805,-0.1804,0.9622,0.1939,-0.1914,0.981,0.1939,0.0,0.907,0.3805,-0.1804,0.981,0.1939,0.0,0.9248,0.3805,0.0,0.9248,0.3805,0.0,0.981,0.1939,0.0,0.9622,0.1939,0.1914,0.9248,0.3805,0.0,0.9622,0.1939,0.1914,0.907,0.3805,0.1804,0.907,0.3805,0.1804,0.9622,0.1939,0.1914,0.9063,0.1939,0.3754,0.907,0.3805,0.1804,0.9063,0.1939,0.3754,0.8544,0.3805,0.3539,0.8544,0.3805,0.3539,0.9063,0.1939,0.3754,0.8157,0.1939,0.545,0.8544,0.3805,0.3539,0.8157,0.1939,0.545,0.7689,0.3805,0.5138,0.7689,0.3805,0.5138,0.8157,0.1939,0.545,0.6937,0.1939,0.6937,0.7689,0.3805,0.5138,0.6937,0.1939,0.6937,0.6539,0.3805,0.6539,0.6539,0.3805,0.6539,0.6937,0.1939,0.6937,0.545,0.1939,0.8157,0.6539,0.3805,0.6539,0.545,0.1939,0.8157,0.5138,0.3805,0.7689,0.5138,0.3805,0.7689,0.545,0.1939,0.8157,0.3754,0.1939,0.9063,0.5138,0.3805,0.7689,0.3754,0.1939,0.9063,0.3539,0.3805,0.8544,0.3539,0.3805,0.8544,0.3754,0.1939,0.9063,0.1914,0.1939,0.9622,0.3539,0.3805,0.8544,0.1914,0.1939,0.9622,0.1804,0.3805,0.907,0.1804,0.3805,0.907,0.1914,0.1939,0.9622,0.0,0.1939,0.981,0.1804,0.3805,0.907,0.0,0.1939,0.981,0.0,0.3805,0.9248,0.0,0.1939,0.981,0.0,0.0,1.0,-0.1951,0.0,0.9808,0.0,0.1939,0.981,-0.1951,0.0,0.9808,-0.1914,0.1939,0.9622,-0.1914,0.1939,0.9622,-0.1951,0.0,0.9808,-0.3827,0.0,0.9239,-0.1914,0.1939,0.9622,-0.3827,0.0,0.9239,-0.3754,0.1939,0.9063,-0.3754,0.1939,0.9063,-0.3827,0.0,0.9239,-0.5556,0.0,0.8315,-0.3754,0.1939,0.9063,-0.5556,0.0,0.8315,-0.545,0.1939,0.8157,-0.545,0.1939,0.8157,-0.5556,0.0,0.8315,-0.7071,0.0,0.7071,-0.545,0.1939,0.8157,-0.7071,0.0,0.7071,-0.6937,0.1939,0.6937,-0.6937,0.1939,0.6937,-0.7071,0.0,0.7071,-0.8315,0.0,0.5556,-0.6937,0.1939,0.6937,-0.8315,0.0,0.5556,-0.8157,0.1939,0.545,-0.8157,0.1939,0.545,-0.8315,0.0,0.5556,-0.9239,0.0,0.3827,-0.8157,0.1939,0.545,-0.9239,0.0,0.3827,-0.9063,0.1939,0.3754,-0.9063,0.1939,0.3754,-0.9239,0.0,0.3827,-0.9808,0.0,0.1951,-0.9063,0.1939,0.3754,-0.9808,0.0,0.1951,-0.9622,0.1939,0.1914,-0.9622,0.1939,0.1914,-0.9808,0.0,0.1951,-1.0,0.0,0.0,-0.9622,0.1939,0.1914,-1.0,0.0,0.0,-0.981,0.1939,0.0,-0.981,0.1939,0.0,-1.0,0.0,0.0,-0.9808,0.0,-0.1951,-0.981,0.1939,0.0,-0.9808,0.0,-0.1951,-0.9622,0.1939,-0.1914,-0.9622,0.1939,-0.1914,-0.9808,0.0,-0.1951,-0.9239,0.0,-0.3827,-0.9622,0.1939,-0.1914,-0.9239,0.0,-0.3827,-0.9063,0.1939,-0.3754,-0.9063,0.1939,-0.3754,-0.9239,0.0,-0.3827,-0.8315,0.0,-0.5556,-0.9063,0.1939,-0.3754,-0.8315,0.0,-0.5556,-0.8157,0.1939,-0.545,-0.8157,0.1939,-0.545,-0.8315,0.0,-0.5556,-0.7071,0.0,-0.7071,-0.8157,0.1939,-0.545,-0.7071,0.0,-0.7071,-0.6937,0.1939,-0.6937,-0.6937,0.1939,-0.6937,-0.7071,0.0,-0.7071,-0.5556,0.0,-0.8315,-0.6937,0.1939,-0.6937,-0.5556,0.0,-0.8315,-0.545,0.1939,-0.8157,-0.545,0.1939,-0.8157,-0.5556,0.0,-0.8315,-0.3827,0.0,-0.9239,-0.545,0.1939,-0.8157,-0.3827,0.0,-0.9239,-0.3754,0.1939,-0.9063,-0.3754,0.1939,-0.9063,-0.3827,0.0,-0.9239,-0.1951,0.0,-0.9808,-0.3754,0.1939,-0.9063,-0.1951,0.0,-0.9808,-0.1914,0.1939,-0.9622,-0.1914,0.1939,-0.9622,-0.1951,0.0,-0.9808,0.0,0.0,-1.0,-0.1914,0.1939,-0.9622,0.0,0.0,-1.0,0.0,0.1939,-0.981,0.0,0.1939,-0.981,0.0,0.0,-1.0,0.1951,0.0,-0.9808,0.0,0.1939,-0.981,0.1951,0.0,-0.9808,0.1914,0.1939,-0.9622,0.1914,0.1939,-0.9622,0.1951,0.0,-0.9808,0.3827,0.0,-0.9239,0.1914,0.1939,-0.9622,0.3827,0.0,-0.9239,0.3754,0.1939,-0.9063,0.3754,0.1939,-0.9063,0.3827,0.0,-0.9239,0.5556,0.0,-0.8315,0.3754,0.1939,-0.9063,0.5556,0.0,-0.8315,0.545,0.1939,-0.8157,0.545,0.1939,-0.8157,0.5556,0.0,-0.8315,0.7071,0.0,-0.7071,0.545,0.1939,-0.8157,0.7071,0.0,-0.7071,0.6937,0.1939,-0.6937,0.6937,0.1939,-0.6937,0.7071,0.0,-0.7071,0.8315,0.0,-0.5556,0.6937,0.1939,-0.6937,0.8315,0.0,-0.5556,0.8157,0.1939,-0.545,0.8157,0.1939,-0.545,0.8315,0.0,-0.5556,0.9239,0.0,-0.3827,0.8157,0.1939,-0.545,0.9239,0.0,-0.3827,0.9063,0.1939,-0.3754,0.9063,0.1939,-0.3754,0.9239,0.0,-0.3827,0.9808,0.0,-0.1951,0.9063,0.1939,-0.3754,0.9808,0.0,-0.1951,0.9622,0.1939,-0.1914,0.9622,0.1939,-0.1914,0.9808,0.0,-0.1951,1.0,0.0,0.0,0.9622,0.1939,-0.1914,1.0,0.0,0.0,0.981,0.1939,0.0,0.981,0.1939,0.0,1.0,0.0,0.0,0.9808,0.0,0.1951,0.981,0.1939,0.0,0.9808,0.0,0.1951,0.9622,0.1939,0.1914,0.9622,0.1939,0.1914,0.9808,0.0,0.1951,0.9239,0.0,0.3827,0.9622,0.1939,0.1914,0.9239,0.0,0.3827,0.9063,0.1939,0.3754,0.9063,0.1939,0.3754,0.9239,0.0,0.3827,0.8315,0.0,0.5556,0.9063,0.1939,0.3754,0.8315,0.0,0.5556,0.8157,0.1939,0.545,0.8157,0.1939,0.545,0.8315,0.0,0.5556,0.7071,0.0,0.7071,0.8157,0.1939,0.545,0.7071,0.0,0.7071,0.6937,0.1939,0.6937,0.6937,0.1939,0.6937,0.7071,0.0,0.7071,0.5556,0.0,0.8315,0.6937,0.1939,0.6937,0.5556,0.0,0.8315,0.545,0.1939,0.8157,0.545,0.1939,0.8157,0.5556,0.0,0.8315,0.3827,0.0,0.9239,0.545,0.1939,0.8157,0.3827,0.0,0.9239,0.3754,0.1939,0.9063,0.3754,0.1939,0.9063,0.3827,0.0,0.9239,0.1951,0.0,0.9808,0.3754,0.1939,0.9063,0.1951,0.0,0.9808,0.1914,0.1939,0.9622,0.1914,0.1939,0.9622,0.1951,0.0,0.9808,0.0,0.0,1.0,0.1914,0.1939,0.9622,0.0,0.0,1.0,0.0,0.1939,0.981,0.0,0.0,1.0,0.0,-0.1939,0.981,-0.1914,-0.1939,0.9622,0.0,0.0,1.0,-0.1914,-0.1939,0.9622,-0.1951,0.0,0.9808,-0.1951,0.0,0.9808,-0.1914,-0.1939,0.9622,-0.3754,-0.1939,0.9063,-0.1951,0.0,0.9808,-0.3754,-0.1939,0.9063,-0.3827,0.0,0.9239,-0.3827,0.0,0.9239,-0.3754,-0.1939,0.9063,-0.545,-0.1939,0.8157,-0.3827,0.0,0.9239,-0.545,-0.1939,0.8157,-0.5556,0.0,0.8315,-0.5556,0.0,0.8315,-0.545,-0.1939,0.8157,-0.6937,-0.1939,0.6937,-0.5556,0.0,0.8315,-0.6937,-0.1939,0.6937,-0.7071,0.0,0.7071,-0.7071,0.0,0.7071,-0.6937,-0.1939,0.6937,-0.8157,-0.1939,0.545,-0.7071,0.0,0.7071,-0.8157,-0.1939,0.545,-0.8315,0.0,0.5556,-0.8315,0.0,0.5556,-0.8157,-0.1939,0.545,-0.9063,-0.1939,0.3754,-0.8315,0.0,0.5556,-0.9063,-0.1939,0.3754,-0.9239,0.0,0.3827,-0.9239,0.0,0.3827,-0.9063,-0.1939,0.3754,-0.9622,-0.1939,0.1914,-0.9239,0.0,0.3827,-0.9622,-0.1939,0.1914,-0.9808,0.0,0.1951,-0.9808,0.0,0.1951,-0.9622,-0.1939,0.1914,-0.981,-0.1939,0.0,-0.9808,0.0,0.1951,-0.981,-0.1939,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-0.981,-0.1939,0.0,-0.9622,-0.1939,-0.1914,-1.0,0.0,0.0,-0.9622,-0.1939,-0.1914,-0.9808,0.0,-0.1951,-0.9808,0.0,-0.1951,-0.9622,-0.1939,-0.1914,-0.9063,-0.1939,-0.3754,-0.9808,0.0,-0.1951,-0.9063,-0.1939,-0.3754,-0.9239,0.0,-0.3827,-0.9239,0.0,-0.3827,-0.9063,-0.1939,-0.3754,-0.8157,-0.1939,-0.545,-0.9239,0.0,-0.3827,-0.8157,-0.1939,-0.545,-0.8315,0.0,-0.5556,-0.8315,0.0,-0.5556,-0.8157,-0.1939,-0.545,-0.6937,-0.1939,-0.6937,-0.8315,0.0,-0.5556,-0.6937,-0.1939,-0.6937,-0.7071,0.0,-0.7071,-0.7071,0.0,-0.7071,-0.6937,-0.1939,-0.6937,-0.545,-0.1939,-0.8157,-0.7071,0.0,-0.7071,-0.545,-0.1939,-0.8157,-0.5556,0.0,-0.8315,-0.5556,0.0,-0.8315,-0.545,-0.1939,-0.8157,-0.3754,-0.1939,-0.9063,-0.5556,0.0,-0.8315,-0.3754,-0.1939,-0.9063,-0.3827,0.0,-0.9239,-0.3827,0.0,-0.9239,-0.3754,-0.1939,-0.9063,-0.1914,-0.1939,-0.9622,-0.3827,0.0,-0.9239,-0.1914,-0.1939,-0.9622,-0.1951,0.0,-0.9808,-0.1951,0.0,-0.9808,-0.1914,-0.1939,-0.9622,0.0,-0.1939,-0.981,-0.1951,0.0,-0.9808,0.0,-0.1939,-0.981,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,-0.1939,-0.981,0.1914,-0.1939,-0.9622,0.0,0.0,-1.0,0.1914,-0.1939,-0.9622,0.1951,0.0,-0.9808,0.1951,0.0,-0.9808,0.1914,-0.1939,-0.9622,0.3754,-0.1939,-0.9063,0.1951,0.0,-0.9808,0.3754,-0.1939,-0.9063,0.3827,0.0,-0.9239,0.3827,0.0,-0.9239,0.3754,-0.1939,-0.9063,0.545,-0.1939,-0.8157,0.3827,0.0,-0.9239,0.545,-0.1939,-0.8157,0.5556,0.0,-0.8315,0.5556,0.0,-0.8315,0.545,-0.1939,-0.8157,0.6937,-0.1939,-0.6937,0.5556,0.0,-0.8315,0.6937,-0.1939,-0.6937,0.7071,0.0,-0.7071,0.7071,0.0,-0.7071,0.6937,-0.1939,-0.6937,0.8157,-0.1939,-0.545,0.7071,0.0,-0.7071,0.8157,-0.1939,-0.545,0.8315,0.0,-0.5556,0.8315,0.0,-0.5556,0.8157,-0.1939,-0.545,0.9063,-0.1939,-0.3754,0.8315,0.0,-0.5556,0.9063,-0.1939,-0.3754,0.9239,0.0,-0.3827,0.9239,0.0,-0.3827,0.9063,-0.1939,-0.3754,0.9622,-0.1939,-0.1914,0.9239,0.0,-0.3827,0.9622,-0.1939,-0.1914,0.9808,0.0,-0.1951,0.9808,0.0,-0.1951,0.9622,-0.1939,-0.1914,0.981,-0.1939,0.0,0.9808,0.0,-0.1951,0.981,-0.1939,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.981,-0.1939,0.0,0.9622,-0.1939,0.1914,1.0,0.0,0.0,0.9622,-0.1939,0.1914,0.9808,0.0,0.1951,0.9808,0.0,0.1951,0.9622,-0.1939,0.1914,0.9063,-0.1939,0.3754,0.9808,0.0,0.1951,0.9063,-0.1939,0.3754,0.9239,0.0,0.3827,0.9239,0.0,0.3827,0.9063,-0.1939,0.3754,0.8157,-0.1939,0.545,0.9239,0.0,0.3827,0.8157,-0.1939,0.545,0.8315,0.0,0.5556,0.8315,0.0,0.5556,0.8157,-0.1939,0.545,0.6937,-0.1939,0.6937,0.8315,0.0,0.5556,0.6937,-0.1939,0.6937,0.7071,0.0,0.7071,0.7071,0.0,0.7071,0.6937,-0.1939,0.6937,0.545,-0.1939,0.8157,0.7071,0.0,0.7071,0.545,-0.1939,0.8157,0.5556,0.0,0.8315,0.5556,0.0,0.8315,0.545,-0.1939,0.8157,0.3754,-0.1939,0.9063,0.5556,0.0,0.8315,0.3754,-0.1939,0.9063,0.3827,0.0,0.9239,0.3827,0.0,0.9239,0.3754,-0.1939,0.9063,0.1914,-0.1939,0.9622,0.3827,0.0,0.9239,0.1914,-0.1939,0.9622,0.1951,0.0,0.9808,0.1951,0.0,0.9808,0.1914,-0.1939,0.9622,0.0,-0.1939,0.981,0.1951,0.0,0.9808,0.0,-0.1939,0.981,0.0,0.0,1.0,0.0,-0.1939,0.981,0.0,-0.3805,0.9248,-0.1804,-0.3805,0.907,0.0,-0.1939,0.981,-0.1804,-0.3805,0.907,-0.1914,-0.1939,0.9622,-0.1914,-0.1939,0.9622,-0.1804,-0.3805,0.907,-0.3539,-0.3805,0.8544,-0.1914,-0.1939,0.9622,-0.3539,-0.3805,0.8544,-0.3754,-0.1939,0.9063,-0.3754,-0.1939,0.9063,-0.3539,-0.3805,0.8544,-0.5138,-0.3805,0.7689,-0.3754,-0.1939,0.9063,-0.5138,-0.3805,0.7689,-0.545,-0.1939,0.8157,-0.545,-0.1939,0.8157,-0.5138,-0.3805,0.7689,-0.6539,-0.3805,0.6539,-0.545,-0.1939,0.8157,-0.6539,-0.3805,0.6539,-0.6937,-0.1939,0.6937,-0.6937,-0.1939,0.6937,-0.6539,-0.3805,0.6539,-0.7689,-0.3805,0.5138,-0.6937,-0.1939,0.6937,-0.7689,-0.3805,0.5138,-0.8157,-0.1939,0.545,-0.8157,-0.1939,0.545,-0.7689,-0.3805,0.5138,-0.8544,-0.3805,0.3539,-0.8157,-0.1939,0.545,-0.8544,-0.3805,0.3539,-0.9063,-0.1939,0.3754,-0.9063,-0.1939,0.3754,-0.8544,-0.3805,0.3539,-0.907,-0.3805,0.1804,-0.9063,-0.1939,0.3754,-0.907,-0.3805,0.1804,-0.9622,-0.1939,0.1914,-0.9622,-0.1939,0.1914,-0.907,-0.3805,0.1804,-0.9248,-0.3805,0.0,-0.9622,-0.1939,0.1914,-0.9248,-0.3805,0.0,-0.981,-0.1939,0.0,-0.981,-0.1939,0.0,-0.9248,-0.3805,0.0,-0.907,-0.3805,-0.1804,-0.981,-0.1939,0.0,-0.907,-0.3805,-0.1804,-0.9622,-0.1939,-0.1914,-0.9622,-0.1939,-0.1914,-0.907,-0.3805,-0.1804,-0.8544,-0.3805,-0.3539,-0.9622,-0.1939,-0.1914,-0.8544,-0.3805,-0.3539,-0.9063,-0.1939,-0.3754,-0.9063,-0.1939,-0.3754,-0.8544,-0.3805,-0.3539,-0.7689,-0.3805,-0.5138,-0.9063,-0.1939,-0.3754,-0.7689,-0.3805,-0.5138,-0.8157,-0.1939,-0.545,-0.8157,-0.1939,-0.545,-0.7689,-0.3805,-0.5138,-0.6539,-0.3805,-0.6539,-0.8157,-0.1939,-0.545,-0.6539,-0.3805,-0.6539,-0.6937,-0.1939,-0.6937,-0.6937,-0.1939,-0.6937,-0.6539,-0.3805,-0.6539,-0.5138,-0.3805,-0.7689,-0.6937,-0.1939,-0.6937,-0.5138,-0.3805,-0.7689,-0.545,-0.1939,-0.8157,-0.545,-0.1939,-0.8157,-0.5138,-0.3805,-0.7689,-0.3539,-0.3805,-0.8544,-0.545,-0.1939,-0.8157,-0.3539,-0.3805,-0.8544,-0.3754,-0.1939,-0.9063,-0.3754,-0.1939,-0.9063,-0.3539,-0.3805,-0.8544,-0.1804,-0.3805,-0.907,-0.3754,-0.1939,-0.9063,-0.1804,-0.3805,-0.907,-0.1914,-0.1939,-0.9622,-0.1914,-0.1939,-0.9622,-0.1804,-0.3805,-0.907,0.0,-0.3805,-0.9248,-0.1914,-0.1939,-0.9622,0.0,-0.3805,-0.9248,0.0,-0.1939,-0.981,0.0,-0.1939,-0.981,0.0,-0.3805,-0.9248,0.1804,-0.3805,-0.907,0.0,-0.1939,-0.981,0.1804,-0.3805,-0.907,0.1914,-0.1939,-0.9622,0.1914,-0.1939,-0.9622,0.1804,-0.3805,-0.907,0.3539,-0.3805,-0.8544,0.1914,-0.1939,-0.9622,0.3539,-0.3805,-0.8544,0.3754,-0.1939,-0.9063,0.3754,-0.1939,-0.9063,0.3539,-0.3805,-0.8544,0.5138,-0.3805,-0.7689,0.3754,-0.1939,-0.9063,0.5138,-0.3805,-0.7689,0.545,-0.1939,-0.8157,0.545,-0.1939,-0.8157,0.5138,-0.3805,-0.7689,0.6539,-0.3805,-0.6539,0.545,-0.1939,-0.8157,0.6539,-0.3805,-0.6539,0.6937,-0.1939,-0.6937,0.6937,-0.1939,-0.6937,0.6539,-0.3805,-0.6539,0.7689,-0.3805,-0.5138,0.6937,-0.1939,-0.6937,0.7689,-0.3805,-0.5138,0.8157,-0.1939,-0.545,0.8157,-0.1939,-0.545,0.7689,-0.3805,-0.5138,0.8544,-0.3805,-0.3539,0.8157,-0.1939,-0.545,0.8544,-0.3805,-0.3539,0.9063,-0.1939,-0.3754,0.9063,-0.1939,-0.3754,0.8544,-0.3805,-0.3539,0.907,-0.3805,-0.1804,0.9063,-0.1939,-0.3754,0.907,-0.3805,-0.1804,0.9622,-0.1939,-0.1914,0.9622,-0.1939,-0.1914,0.907,-0.3805,-0.1804,0.9248,-0.3805,0.0,0.9622,-0.1939,-0.1914,0.9248,-0.3805,0.0,0.981,-0.1939,0.0,0.981,-0.1939,0.0,0.9248,-0.3805,0.0,0.907,-0.3805,0.1804,0.981,-0.1939,0.0,0.907,-0.3805,0.1804,0.9622,-0.1939,0.1914,0.9622,-0.1939,0.1914,0.907,-0.3805,0.1804,0.8544,-0.3805,0.3539,0.9622,-0.1939,0.1914,0.8544,-0.3805,0.3539,0.9063,-0.1939,0.3754,0.9063,-0.1939,0.3754,0.8544,-0.3805,0.3539,0.7689,-0.3805,0.5138,0.9063,-0.1939,0.3754,0.7689,-0.3805,0.5138,0.8157,-0.1939,0.545,0.8157,-0.1939,0.545,0.7689,-0.3805,0.5138,0.6539,-0.3805,0.6539,0.8157,-0.1939,0.545,0.6539,-0.3805,0.6539,0.6937,-0.1939,0.6937,0.6937,-0.1939,0.6937,0.6539,-0.3805,0.6539,0.5138,-0.3805,0.7689,0.6937,-0.1939,0.6937,0.5138,-0.3805,0.7689,0.545,-0.1939,0.8157,0.545,-0.1939,0.8157,0.5138,-0.3805,0.7689,0.3539,-0.3805,0.8544,0.545,-0.1939,0.8157,0.3539,-0.3805,0.8544,0.3754,-0.1939,0.9063,0.3754,-0.1939,0.9063,0.3539,-0.3805,0.8544,0.1804,-0.3805,0.907,0.3754,-0.1939,0.9063,0.1804,-0.3805,0.907,0.1914,-0.1939,0.9622,0.1914,-0.1939,0.9622,0.1804,-0.3805,0.907,0.0,-0.3805,0.9248,0.1914,-0.1939,0.9622,0.0,-0.3805,0.9248,0.0,-0.1939,0.981,0.0,-0.3805,0.9248,0.0,-0.5528,0.8333,-0.1626,-0.5528,0.8173,0.0,-0.3805,0.9248,-0.1626,-0.5528,0.8173,-0.1804,-0.3805,0.907,-0.1804,-0.3805,0.907,-0.1626,-0.5528,0.8173,-0.3189,-0.5528,0.7699,-0.1804,-0.3805,0.907,-0.3189,-0.5528,0.7699,-0.3539,-0.3805,0.8544,-0.3539,-0.3805,0.8544,-0.3189,-0.5528,0.7699,-0.463,-0.5528,0.6929,-0.3539,-0.3805,0.8544,-0.463,-0.5528,0.6929,-0.5138,-0.3805,0.7689,-0.5138,-0.3805,0.7689,-0.463,-0.5528,0.6929,-0.5893,-0.5528,0.5893,-0.5138,-0.3805,0.7689,-0.5893,-0.5528,0.5893,-0.6539,-0.3805,0.6539,-0.6539,-0.3805,0.6539,-0.5893,-0.5528,0.5893,-0.6929,-0.5528,0.463,-0.6539,-0.3805,0.6539,-0.6929,-0.5528,0.463,-0.7689,-0.3805,0.5138,-0.7689,-0.3805,0.5138,-0.6929,-0.5528,0.463,-0.7699,-0.5528,0.3189,-0.7689,-0.3805,0.5138,-0.7699,-0.5528,0.3189,-0.8544,-0.3805,0.3539,-0.8544,-0.3805,0.3539,-0.7699,-0.5528,0.3189,-0.8173,-0.5528,0.1626,-0.8544,-0.3805,0.3539,-0.8173,-0.5528,0.1626,-0.907,-0.3805,0.1804,-0.907,-0.3805,0.1804,-0.8173,-0.5528,0.1626,-0.8333,-0.5528,0.0,-0.907,-0.3805,0.1804,-0.8333,-0.5528,0.0,-0.9248,-0.3805,0.0,-0.9248,-0.3805,0.0,-0.8333,-0.5528,0.0,-0.8173,-0.5528,-0.1626,-0.9248,-0.3805,0.0,-0.8173,-0.5528,-0.1626,-0.907,-0.3805,-0.1804,-0.907,-0.3805,-0.1804,-0.8173,-0.5528,-0.1626,-0.7699,-0.5528,-0.3189,-0.907,-0.3805,-0.1804,-0.7699,-0.5528,-0.3189,-0.8544,-0.3805,-0.3539,-0.8544,-0.3805,-0.3539,-0.7699,-0.5528,-0.3189,-0.6929,-0.5528,-0.463,-0.8544,-0.3805,-0.3539,-0.6929,-0.5528,-0.463,-0.7689,-0.3805,-0.5138,-0.7689,-0.3805,-0.5138,-0.6929,-0.5528,-0.463,-0.5893,-0.5528,-0.5893,-0.7689,-0.3805,-0.5138,-0.5893,-0.5528,-0.5893,-0.6539,-0.3805,-0.6539,-0.6539,-0.3805,-0.6539,-0.5893,-0.5528,-0.5893,-0.463,-0.5528,-0.6929,-0.6539,-0.3805,-0.6539,-0.463,-0.5528,-0.6929,-0.5138,-0.3805,-0.7689,-0.5138,-0.3805,-0.7689,-0.463,-0.5528,-0.6929,-0.3189,-0.5528,-0.7699,-0.5138,-0.3805,-0.7689,-0.3189,-0.5528,-0.7699,-0.3539,-0.3805,-0.8544,-0.3539,-0.3805,-0.8544,-0.3189,-0.5528,-0.7699,-0.1626,-0.5528,-0.8173,-0.3539,-0.3805,-0.8544,-0.1626,-0.5528,-0.8173,-0.1804,-0.3805,-0.907,-0.1804,-0.3805,-0.907,-0.1626,-0.5528,-0.8173,0.0,-0.5528,-0.8333,-0.1804,-0.3805,-0.907,0.0,-0.5528,-0.8333,0.0,-0.3805,-0.9248,0.0,-0.3805,-0.9248,0.0,-0.5528,-0.8333,0.1626,-0.5528,-0.8173,0.0,-0.3805,-0.9248,0.1626,-0.5528,-0.8173,0.1804,-0.3805,-0.907,0.1804,-0.3805,-0.907,0.1626,-0.5528,-0.8173,0.3189,-0.5528,-0.7699,0.1804,-0.3805,-0.907,0.3189,-0.5528,-0.7699,0.3539,-0.3805,-0.8544,0.3539,-0.3805,-0.8544,0.3189,-0.5528,-0.7699,0.463,-0.5528,-0.6929,0.3539,-0.3805,-0.8544,0.463,-0.5528,-0.6929,0.5138,-0.3805,-0.7689,0.5138,-0.3805,-0.7689,0.463,-0.5528,-0.6929,0.5893,-0.5528,-0.5893,0.5138,-0.3805,-0.7689,0.5893,-0.5528,-0.5893,0.6539,-0.3805,-0.6539,0.6539,-0.3805,-0.6539,0.5893,-0.5528,-0.5893,0.6929,-0.5528,-0.463,0.6539,-0.3805,-0.6539,0.6929,-0.5528,-0.463,0.7689,-0.3805,-0.5138,0.7689,-0.3805,-0.5138,0.6929,-0.5528,-0.463,0.7699,-0.5528,-0.3189,0.7689,-0.3805,-0.5138,0.7699,-0.5528,-0.3189,0.8544,-0.3805,-0.3539,0.8544,-0.3805,-0.3539,0.7699,-0.5528,-0.3189,0.8173,-0.5528,-0.1626,0.8544,-0.3805,-0.3539,0.8173,-0.5528,-0.1626,0.907,-0.3805,-0.1804,0.907,-0.3805,-0.1804,0.8173,-0.5528,-0.1626,0.8333,-0.5528,0.0,0.907,-0.3805,-0.1804,0.8333,-0.5528,0.0,0.9248,-0.3805,0.0,0.9248,-0.3805,0.0,0.8333,-0.5528,0.0,0.8173,-0.5528,0.1626,0.9248,-0.3805,0.0,0.8173,-0.5528,0.1626,0.907,-0.3805,0.1804,0.907,-0.3805,0.1804,0.8173,-0.5528,0.1626,0.7699,-0.5528,0.3189,0.907,-0.3805,0.1804,0.7699,-0.5528,0.3189,0.8544,-0.3805,0.3539,0.8544,-0.3805,0.3539,0.7699,-0.5528,0.3189,0.6929,-0.5528,0.463,0.8544,-0.3805,0.3539,0.6929,-0.5528,0.463,0.7689,-0.3805,0.5138,0.7689,-0.3805,0.5138,0.6929,-0.5528,0.463,0.5893,-0.5528,0.5893,0.7689,-0.3805,0.5138,0.5893,-0.5528,0.5893,0.6539,-0.3805,0.6539,0.6539,-0.3805,0.6539,0.5893,-0.5528,0.5893,0.463,-0.5528,0.6929,0.6539,-0.3805,0.6539,0.463,-0.5528,0.6929,0.5138,-0.3805,0.7689,0.5138,-0.3805,0.7689,0.463,-0.5528,0.6929,0.3189,-0.5528,0.7699,0.5138,-0.3805,0.7689,0.3189,-0.5528,0.7699,0.3539,-0.3805,0.8544,0.3539,-0.3805,0.8544,0.3189,-0.5528,0.7699,0.1626,-0.5528,0.8173,0.3539,-0.3805,0.8544,0.1626,-0.5528,0.8173,0.1804,-0.3805,0.907,0.1804,-0.3805,0.907,0.1626,-0.5528,0.8173,0.0,-0.5528,0.8333,0.1804,-0.3805,0.907,0.0,-0.5528,0.8333,0.0,-0.3805,0.9248,0.0,-0.5528,0.8333,0.0,-0.7041,0.7101,-0.1385,-0.7041,0.6965,0.0,-0.5528,0.8333,-0.1385,-0.7041,0.6965,-0.1626,-0.5528,0.8173,-0.1626,-0.5528,0.8173,-0.1385,-0.7041,0.6965,-0.2718,-0.7041,0.6561,-0.1626,-0.5528,0.8173,-0.2718,-0.7041,0.6561,-0.3189,-0.5528,0.7699,-0.3189,-0.5528,0.7699,-0.2718,-0.7041,0.6561,-0.3945,-0.7041,0.5905,-0.3189,-0.5528,0.7699,-0.3945,-0.7041,0.5905,-0.463,-0.5528,0.6929,-0.463,-0.5528,0.6929,-0.3945,-0.7041,0.5905,-0.5021,-0.7041,0.5021,-0.463,-0.5528,0.6929,-0.5021,-0.7041,0.5021,-0.5893,-0.5528,0.5893,-0.5893,-0.5528,0.5893,-0.5021,-0.7041,0.5021,-0.5905,-0.7041,0.3945,-0.5893,-0.5528,0.5893,-0.5905,-0.7041,0.3945,-0.6929,-0.5528,0.463,-0.6929,-0.5528,0.463,-0.5905,-0.7041,0.3945,-0.6561,-0.7041,0.2718,-0.6929,-0.5528,0.463,-0.6561,-0.7041,0.2718,-0.7699,-0.5528,0.3189,-0.7699,-0.5528,0.3189,-0.6561,-0.7041,0.2718,-0.6965,-0.7041,0.1385,-0.7699,-0.5528,0.3189,-0.6965,-0.7041,0.1385,-0.8173,-0.5528,0.1626,-0.8173,-0.5528,0.1626,-0.6965,-0.7041,0.1385,-0.7101,-0.7041,0.0,-0.8173,-0.5528,0.1626,-0.7101,-0.7041,0.0,-0.8333,-0.5528,0.0,-0.8333,-0.5528,0.0,-0.7101,-0.7041,0.0,-0.6965,-0.7041,-0.1385,-0.8333,-0.5528,0.0,-0.6965,-0.7041,-0.1385,-0.8173,-0.5528,-0.1626,-0.8173,-0.5528,-0.1626,-0.6965,-0.7041,-0.1385,-0.6561,-0.7041,-0.2718,-0.8173,-0.5528,-0.1626,-0.6561,-0.7041,-0.2718,-0.7699,-0.5528,-0.3189,-0.7699,-0.5528,-0.3189,-0.6561,-0.7041,-0.2718,-0.5905,-0.7041,-0.3945,-0.7699,-0.5528,-0.3189,-0.5905,-0.7041,-0.3945,-0.6929,-0.5528,-0.463,-0.6929,-0.5528,-0.463,-0.5905,-0.7041,-0.3945,-0.5021,-0.7041,-0.5021,-0.6929,-0.5528,-0.463,-0.5021,-0.7041,-0.5021,-0.5893,-0.5528,-0.5893,-0.5893,-0.5528,-0.5893,-0.5021,-0.7041,-0.5021,-0.3945,-0.7041,-0.5905,-0.5893,-0.5528,-0.5893,-0.3945,-0.7041,-0.5905,-0.463,-0.5528,-0.6929,-0.463,-0.5528,-0.6929,-0.3945,-0.7041,-0.5905,-0.2718,-0.7041,-0.6561,-0.463,-0.5528,-0.6929,-0.2718,-0.7041,-0.6561,-0.3189,-0.5528,-0.7699,-0.3189,-0.5528,-0.7699,-0.2718,-0.7041,-0.6561,-0.1385,-0.7041,-0.6965,-0.3189,-0.5528,-0.7699,-0.1385,-0.7041,-0.6965,-0.1626,-0.5528,-0.8173,-0.1626,-0.5528,-0.8173,-0.1385,-0.7041,-0.6965,0.0,-0.7041,-0.7101,-0.1626,-0.5528,-0.8173,0.0,-0.7041,-0.7101,0.0,-0.5528,-0.8333,0.0,-0.5528,-0.8333,0.0,-0.7041,-0.7101,0.1385,-0.7041,-0.6965,0.0,-0.5528,-0.8333,0.1385,-0.7041,-0.6965,0.1626,-0.5528,-0.8173,0.1626,-0.5528,-0.8173,0.1385,-0.7041,-0.6965,0.2718,-0.7041,-0.6561,0.1626,-0.5528,-0.8173,0.2718,-0.7041,-0.6561,0.3189,-0.5528,-0.7699,0.3189,-0.5528,-0.7699,0.2718,-0.7041,-0.6561,0.3945,-0.7041,-0.5905,0.3189,-0.5528,-0.7699,0.3945,-0.7041,-0.5905,0.463,-0.5528,-0.6929,0.463,-0.5528,-0.6929,0.3945,-0.7041,-0.5905,0.5021,-0.7041,-0.5021,0.463,-0.5528,-0.6929,0.5021,-0.7041,-0.5021,0.5893,-0.5528,-0.5893,0.5893,-0.5528,-0.5893,0.5021,-0.7041,-0.5021,0.5905,-0.7041,-0.3945,0.5893,-0.5528,-0.5893,0.5905,-0.7041,-0.3945,0.6929,-0.5528,-0.463,0.6929,-0.5528,-0.463,0.5905,-0.7041,-0.3945,0.6561,-0.7041,-0.2718,0.6929,-0.5528,-0.463,0.6561,-0.7041,-0.2718,0.7699,-0.5528,-0.3189,0.7699,-0.5528,-0.3189,0.6561,-0.7041,-0.2718,0.6965,-0.7041,-0.1385,0.7699,-0.5528,-0.3189,0.6965,-0.7041,-0.1385,0.8173,-0.5528,-0.1626,0.8173,-0.5528,-0.1626,0.6965,-0.7041,-0.1385,0.7101,-0.7041,0.0,0.8173,-0.5528,-0.1626,0.7101,-0.7041,0.0,0.8333,-0.5528,0.0,0.8333,-0.5528,0.0,0.7101,-0.7041,0.0,0.6965,-0.7041,0.1385,0.8333,-0.5528,0.0,0.6965,-0.7041,0.1385,0.8173,-0.5528,0.1626,0.8173,-0.5528,0.1626,0.6965,-0.7041,0.1385,0.6561,-0.7041,0.2718,0.8173,-0.5528,0.1626,0.6561,-0.7041,0.2718,0.7699,-0.5528,0.3189,0.7699,-0.5528,0.3189,0.6561,-0.7041,0.2718,0.5905,-0.7041,0.3945,0.7699,-0.5528,0.3189,0.5905,-0.7041,0.3945,0.6929,-0.5528,0.463,0.6929,-0.5528,0.463,0.5905,-0.7041,0.3945,0.5021,-0.7041,0.5021,0.6929,-0.5528,0.463,0.5021,-0.7041,0.5021,0.5893,-0.5528,0.5893,0.5893,-0.5528,0.5893,0.5021,-0.7041,0.5021,0.3945,-0.7041,0.5905,0.5893,-0.5528,0.5893,0.3945,-0.7041,0.5905,0.463,-0.5528,0.6929,0.463,-0.5528,0.6929,0.3945,-0.7041,0.5905,0.2718,-0.7041,0.6561,0.463,-0.5528,0.6929,0.2718,-0.7041,0.6561,0.3189,-0.5528,0.7699,0.3189,-0.5528,0.7699,0.2718,-0.7041,0.6561,0.1385,-0.7041,0.6965,0.3189,-0.5528,0.7699,0.1385,-0.7041,0.6965,0.1626,-0.5528,0.8173,0.1626,-0.5528,0.8173,0.1385,-0.7041,0.6965,0.0,-0.7041,0.7101,0.1626,-0.5528,0.8173,0.0,-0.7041,0.7101,0.0,-0.5528,0.8333,0.0,-0.7041,0.7101,0.0,-0.8286,0.5598,-0.1092,-0.8286,0.549,0.0,-0.7041,0.7101,-0.1092,-0.8286,0.549,-0.1385,-0.7041,0.6965,-0.1385,-0.7041,0.6965,-0.1092,-0.8286,0.549,-0.2142,-0.8286,0.5172,-0.1385,-0.7041,0.6965,-0.2142,-0.8286,0.5172,-0.2718,-0.7041,0.6561,-0.2718,-0.7041,0.6561,-0.2142,-0.8286,0.5172,-0.311,-0.8286,0.4654,-0.2718,-0.7041,0.6561,-0.311,-0.8286,0.4654,-0.3945,-0.7041,0.5905,-0.3945,-0.7041,0.5905,-0.311,-0.8286,0.4654,-0.3958,-0.8286,0.3958,-0.3945,-0.7041,0.5905,-0.3958,-0.8286,0.3958,-0.5021,-0.7041,0.5021,-0.5021,-0.7041,0.5021,-0.3958,-0.8286,0.3958,-0.4654,-0.8286,0.311,-0.5021,-0.7041,0.5021,-0.4654,-0.8286,0.311,-0.5905,-0.7041,0.3945,-0.5905,-0.7041,0.3945,-0.4654,-0.8286,0.311,-0.5172,-0.8286,0.2142,-0.5905,-0.7041,0.3945,-0.5172,-0.8286,0.2142,-0.6561,-0.7041,0.2718,-0.6561,-0.7041,0.2718,-0.5172,-0.8286,0.2142,-0.549,-0.8286,0.1092,-0.6561,-0.7041,0.2718,-0.549,-0.8286,0.1092,-0.6965,-0.7041,0.1385,-0.6965,-0.7041,0.1385,-0.549,-0.8286,0.1092,-0.5598,-0.8286,0.0,-0.6965,-0.7041,0.1385,-0.5598,-0.8286,0.0,-0.7101,-0.7041,0.0,-0.7101,-0.7041,0.0,-0.5598,-0.8286,0.0,-0.549,-0.8286,-0.1092,-0.7101,-0.7041,0.0,-0.549,-0.8286,-0.1092,-0.6965,-0.7041,-0.1385,-0.6965,-0.7041,-0.1385,-0.549,-0.8286,-0.1092,-0.5172,-0.8286,-0.2142,-0.6965,-0.7041,-0.1385,-0.5172,-0.8286,-0.2142,-0.6561,-0.7041,-0.2718,-0.6561,-0.7041,-0.2718,-0.5172,-0.8286,-0.2142,-0.4654,-0.8286,-0.311,-0.6561,-0.7041,-0.2718,-0.4654,-0.8286,-0.311,-0.5905,-0.7041,-0.3945,-0.5905,-0.7041,-0.3945,-0.4654,-0.8286,-0.311,-0.3958,-0.8286,-0.3958,-0.5905,-0.7041,-0.3945,-0.3958,-0.8286,-0.3958,-0.5021,-0.7041,-0.5021,-0.5021,-0.7041,-0.5021,-0.3958,-0.8286,-0.3958,-0.311,-0.8286,-0.4654,-0.5021,-0.7041,-0.5021,-0.311,-0.8286,-0.4654,-0.3945,-0.7041,-0.5905,-0.3945,-0.7041,-0.5905,-0.311,-0.8286,-0.4654,-0.2142,-0.8286,-0.5172,-0.3945,-0.7041,-0.5905,-0.2142,-0.8286,-0.5172,-0.2718,-0.7041,-0.6561,-0.2718,-0.7041,-0.6561,-0.2142,-0.8286,-0.5172,-0.1092,-0.8286,-0.549,-0.2718,-0.7041,-0.6561,-0.1092,-0.8286,-0.549,-0.1385,-0.7041,-0.6965,-0.1385,-0.7041,-0.6965,-0.1092,-0.8286,-0.549,0.0,-0.8286,-0.5598,-0.1385,-0.7041,-0.6965,0.0,-0.8286,-0.5598,0.0,-0.7041,-0.7101,0.0,-0.7041,-0.7101,0.0,-0.8286,-0.5598,0.1092,-0.8286,-0.549,0.0,-0.7041,-0.7101,0.1092,-0.8286,-0.549,0.1385,-0.7041,-0.6965,0.1385,-0.7041,-0.6965,0.1092,-0.8286,-0.549,0.2142,-0.8286,-0.5172,0.1385,-0.7041,-0.6965,0.2142,-0.8286,-0.5172,0.2718,-0.7041,-0.6561,0.2718,-0.7041,-0.6561,0.2142,-0.8286,-0.5172,0.311,-0.8286,-0.4654,0.2718,-0.7041,-0.6561,0.311,-0.8286,-0.4654,0.3945,-0.7041,-0.5905,0.3945,-0.7041,-0.5905,0.311,-0.8286,-0.4654,0.3958,-0.8286,-0.3958,0.3945,-0.7041,-0.5905,0.3958,-0.8286,-0.3958,0.5021,-0.7041,-0.5021,0.5021,-0.7041,-0.5021,0.3958,-0.8286,-0.3958,0.4654,-0.8286,-0.311,0.5021,-0.7041,-0.5021,0.4654,-0.8286,-0.311,0.5905,-0.7041,-0.3945,0.5905,-0.7041,-0.3945,0.4654,-0.8286,-0.311,0.5172,-0.8286,-0.2142,0.5905,-0.7041,-0.3945,0.5172,-0.8286,-0.2142,0.6561,-0.7041,-0.2718,0.6561,-0.7041,-0.2718,0.5172,-0.8286,-0.2142,0.549,-0.8286,-0.1092,0.6561,-0.7041,-0.2718,0.549,-0.8286,-0.1092,0.6965,-0.7041,-0.1385,0.6965,-0.7041,-0.1385,0.549,-0.8286,-0.1092,0.5598,-0.8286,0.0,0.6965,-0.7041,-0.1385,0.5598,-0.8286,0.0,0.7101,-0.7041,0.0,0.7101,-0.7041,0.0,0.5598,-0.8286,0.0,0.549,-0.8286,0.1092,0.7101,-0.7041,0.0,0.549,-0.8286,0.1092,0.6965,-0.7041,0.1385,0.6965,-0.7041,0.1385,0.549,-0.8286,0.1092,0.5172,-0.8286,0.2142,0.6965,-0.7041,0.1385,0.5172,-0.8286,0.2142,0.6561,-0.7041,0.2718,0.6561,-0.7041,0.2718,0.5172,-0.8286,0.2142,0.4654,-0.8286,0.311,0.6561,-0.7041,0.2718,0.4654,-0.8286,0.311,0.5905,-0.7041,0.3945,0.5905,-0.7041,0.3945,0.4654,-0.8286,0.311,0.3958,-0.8286,0.3958,0.5905,-0.7041,0.3945,0.3958,-0.8286,0.3958,0.5021,-0.7041,0.5021,0.5021,-0.7041,0.5021,0.3958,-0.8286,0.3958,0.311,-0.8286,0.4654,0.5021,-0.7041,0.5021,0.311,-0.8286,0.4654,0.3945,-0.7041,0.5905,0.3945,-0.7041,0.5905,0.311,-0.8286,0.4654,0.2142,-0.8286,0.5172,0.3945,-0.7041,0.5905,0.2142,-0.8286,0.5172,0.2718,-0.7041,0.6561,0.2718,-0.7041,0.6561,0.2142,-0.8286,0.5172,0.1092,-0.8286,0.549,0.2718,-0.7041,0.6561,0.1092,-0.8286,0.549,0.1385,-0.7041,0.6965,0.1385,-0.7041,0.6965,0.1092,-0.8286,0.549,0.0,-0.8286,0.5598,0.1385,-0.7041,0.6965,0.0,-0.8286,0.5598,0.0,-0.7041,0.7101,0.0,-0.8286,0.5598,0.0,-0.9217,0.3879,-0.0757,-0.9217,0.3804,0.0,-0.8286,0.5598,-0.0757,-0.9217,0.3804,-0.1092,-0.8286,0.549,-0.1092,-0.8286,0.549,-0.0757,-0.9217,0.3804,-0.1484,-0.9217,0.3584,-0.1092,-0.8286,0.549,-0.1484,-0.9217,0.3584,-0.2142,-0.8286,0.5172,-0.2142,-0.8286,0.5172,-0.1484,-0.9217,0.3584,-0.2155,-0.9217,0.3225,-0.2142,-0.8286,0.5172,-0.2155,-0.9217,0.3225,-0.311,-0.8286,0.4654,-0.311,-0.8286,0.4654,-0.2155,-0.9217,0.3225,-0.2743,-0.9217,0.2743,-0.311,-0.8286,0.4654,-0.2743,-0.9217,0.2743,-0.3958,-0.8286,0.3958,-0.3958,-0.8286,0.3958,-0.2743,-0.9217,0.2743,-0.3225,-0.9217,0.2155,-0.3958,-0.8286,0.3958,-0.3225,-0.9217,0.2155,-0.4654,-0.8286,0.311,-0.4654,-0.8286,0.311,-0.3225,-0.9217,0.2155,-0.3584,-0.9217,0.1484,-0.4654,-0.8286,0.311,-0.3584,-0.9217,0.1484,-0.5172,-0.8286,0.2142,-0.5172,-0.8286,0.2142,-0.3584,-0.9217,0.1484,-0.3804,-0.9217,0.0757,-0.5172,-0.8286,0.2142,-0.3804,-0.9217,0.0757,-0.549,-0.8286,0.1092,-0.549,-0.8286,0.1092,-0.3804,-0.9217,0.0757,-0.3879,-0.9217,0.0,-0.549,-0.8286,0.1092,-0.3879,-0.9217,0.0,-0.5598,-0.8286,0.0,-0.5598,-0.8286,0.0,-0.3879,-0.9217,0.0,-0.3804,-0.9217,-0.0757,-0.5598,-0.8286,0.0,-0.3804,-0.9217,-0.0757,-0.549,-0.8286,-0.1092,-0.549,-0.8286,-0.1092,-0.3804,-0.9217,-0.0757,-0.3584,-0.9217,-0.1484,-0.549,-0.8286,-0.1092,-0.3584,-0.9217,-0.1484,-0.5172,-0.8286,-0.2142,-0.5172,-0.8286,-0.2142,-0.3584,-0.9217,-0.1484,-0.3225,-0.9217,-0.2155,-0.5172,-0.8286,-0.2142,-0.3225,-0.9217,-0.2155,-0.4654,-0.8286,-0.311,-0.4654,-0.8286,-0.311,-0.3225,-0.9217,-0.2155,-0.2743,-0.9217,-0.2743,-0.4654,-0.8286,-0.311,-0.2743,-0.9217,-0.2743,-0.3958,-0.8286,-0.3958,-0.3958,-0.8286,-0.3958,-0.2743,-0.9217,-0.2743,-0.2155,-0.9217,-0.3225,-0.3958,-0.8286,-0.3958,-0.2155,-0.9217,-0.3225,-0.311,-0.8286,-0.4654,-0.311,-0.8286,-0.4654,-0.2155,-0.9217,-0.3225,-0.1484,-0.9217,-0.3584,-0.311,-0.8286,-0.4654,-0.1484,-0.9217,-0.3584,-0.2142,-0.8286,-0.5172,-0.2142,-0.8286,-0.5172,-0.1484,-0.9217,-0.3584,-0.0757,-0.9217,-0.3804,-0.2142,-0.8286,-0.5172,-0.0757,-0.9217,-0.3804,-0.1092,-0.8286,-0.549,-0.1092,-0.8286,-0.549,-0.0757,-0.9217,-0.3804,0.0,-0.9217,-0.3879,-0.1092,-0.8286,-0.549,0.0,-0.9217,-0.3879,0.0,-0.8286,-0.5598,0.0,-0.8286,-0.5598,0.0,-0.9217,-0.3879,0.0757,-0.9217,-0.3804,0.0,-0.8286,-0.5598,0.0757,-0.9217,-0.3804,0.1092,-0.8286,-0.549,0.1092,-0.8286,-0.549,0.0757,-0.9217,-0.3804,0.1484,-0.9217,-0.3584,0.1092,-0.8286,-0.549,0.1484,-0.9217,-0.3584,0.2142,-0.8286,-0.5172,0.2142,-0.8286,-0.5172,0.1484,-0.9217,-0.3584,0.2155,-0.9217,-0.3225,0.2142,-0.8286,-0.5172,0.2155,-0.9217,-0.3225,0.311,-0.8286,-0.4654,0.311,-0.8286,-0.4654,0.2155,-0.9217,-0.3225,0.2743,-0.9217,-0.2743,0.311,-0.8286,-0.4654,0.2743,-0.9217,-0.2743,0.3958,-0.8286,-0.3958,0.3958,-0.8286,-0.3958,0.2743,-0.9217,-0.2743,0.3225,-0.9217,-0.2155,0.3958,-0.8286,-0.3958,0.3225,-0.9217,-0.2155,0.4654,-0.8286,-0.311,0.4654,-0.8286,-0.311,0.3225,-0.9217,-0.2155,0.3584,-0.9217,-0.1484,0.4654,-0.8286,-0.311,0.3584,-0.9217,-0.1484,0.5172,-0.8286,-0.2142,0.5172,-0.8286,-0.2142,0.3584,-0.9217,-0.1484,0.3804,-0.9217,-0.0757,0.5172,-0.8286,-0.2142,0.3804,-0.9217,-0.0757,0.549,-0.8286,-0.1092,0.549,-0.8286,-0.1092,0.3804,-0.9217,-0.0757,0.3879,-0.9217,0.0,0.549,-0.8286,-0.1092,0.3879,-0.9217,0.0,0.5598,-0.8286,0.0,0.5598,-0.8286,0.0,0.3879,-0.9217,0.0,0.3804,-0.9217,0.0757,0.5598,-0.8286,0.0,0.3804,-0.9217,0.0757,0.549,-0.8286,0.1092,0.549,-0.8286,0.1092,0.3804,-0.9217,0.0757,0.3584,-0.9217,0.1484,0.549,-0.8286,0.1092,0.3584,-0.9217,0.1484,0.5172,-0.8286,0.2142,0.5172,-0.8286,0.2142,0.3584,-0.9217,0.1484,0.3225,-0.9217,0.2155,0.5172,-0.8286,0.2142,0.3225,-0.9217,0.2155,0.4654,-0.8286,0.311,0.4654,-0.8286,0.311,0.3225,-0.9217,0.2155,0.2743,-0.9217,0.2743,0.4654,-0.8286,0.311,0.2743,-0.9217,0.2743,0.3958,-0.8286,0.3958,0.3958,-0.8286,0.3958,0.2743,-0.9217,0.2743,0.2155,-0.9217,0.3225,0.3958,-0.8286,0.3958,0.2155,-0.9217,0.3225,0.311,-0.8286,0.4654,0.311,-0.8286,0.4654,0.2155,-0.9217,0.3225,0.1484,-0.9217,0.3584,0.311,-0.8286,0.4654,0.1484,-0.9217,0.3584,0.2142,-0.8286,0.5172,0.2142,-0.8286,0.5172,0.1484,-0.9217,0.3584,0.0757,-0.9217,0.3804,0.2142,-0.8286,0.5172,0.0757,-0.9217,0.3804,0.1092,-0.8286,0.549,0.1092,-0.8286,0.549,0.0757,-0.9217,0.3804,0.0,-0.9217,0.3879,0.1092,-0.8286,0.549,0.0,-0.9217,0.3879,0.0,-0.8286,0.5598,0.0,-0.9217,0.3879,0.0,-0.9796,0.201,-0.0392,-0.9796,0.1971,0.0,-0.9217,0.3879,-0.0392,-0.9796,0.1971,-0.0757,-0.9217,0.3804,-0.0757,-0.9217,0.3804,-0.0392,-0.9796,0.1971,-0.0769,-0.9796,0.1857,-0.0757,-0.9217,0.3804,-0.0769,-0.9796,0.1857,-0.1484,-0.9217,0.3584,-0.1484,-0.9217,0.3584,-0.0769,-0.9796,0.1857,-0.1117,-0.9796,0.1671,-0.1484,-0.9217,0.3584,-0.1117,-0.9796,0.1671,-0.2155,-0.9217,0.3225,-0.2155,-0.9217,0.3225,-0.1117,-0.9796,0.1671,-0.1421,-0.9796,0.1421,-0.2155,-0.9217,0.3225,-0.1421,-0.9796,0.1421,-0.2743,-0.9217,0.2743,-0.2743,-0.9217,0.2743,-0.1421,-0.9796,0.1421,-0.1671,-0.9796,0.1117,-0.2743,-0.9217,0.2743,-0.1671,-0.9796,0.1117,-0.3225,-0.9217,0.2155,-0.3225,-0.9217,0.2155,-0.1671,-0.9796,0.1117,-0.1857,-0.9796,0.0769,-0.3225,-0.9217,0.2155,-0.1857,-0.9796,0.0769,-0.3584,-0.9217,0.1484,-0.3584,-0.9217,0.1484,-0.1857,-0.9796,0.0769,-0.1971,-0.9796,0.0392,-0.3584,-0.9217,0.1484,-0.1971,-0.9796,0.0392,-0.3804,-0.9217,0.0757,-0.3804,-0.9217,0.0757,-0.1971,-0.9796,0.0392,-0.201,-0.9796,0.0,-0.3804,-0.9217,0.0757,-0.201,-0.9796,0.0,-0.3879,-0.9217,0.0,-0.3879,-0.9217,0.0,-0.201,-0.9796,0.0,-0.1971,-0.9796,-0.0392,-0.3879,-0.9217,0.0,-0.1971,-0.9796,-0.0392,-0.3804,-0.9217,-0.0757,-0.3804,-0.9217,-0.0757,-0.1971,-0.9796,-0.0392,-0.1857,-0.9796,-0.0769,-0.3804,-0.9217,-0.0757,-0.1857,-0.9796,-0.0769,-0.3584,-0.9217,-0.1484,-0.3584,-0.9217,-0.1484,-0.1857,-0.9796,-0.0769,-0.1671,-0.9796,-0.1117,-0.3584,-0.9217,-0.1484,-0.1671,-0.9796,-0.1117,-0.3225,-0.9217,-0.2155,-0.3225,-0.9217,-0.2155,-0.1671,-0.9796,-0.1117,-0.1421,-0.9796,-0.1421,-0.3225,-0.9217,-0.2155,-0.1421,-0.9796,-0.1421,-0.2743,-0.9217,-0.2743,-0.2743,-0.9217,-0.2743,-0.1421,-0.9796,-0.1421,-0.1117,-0.9796,-0.1671,-0.2743,-0.9217,-0.2743,-0.1117,-0.9796,-0.1671,-0.2155,-0.9217,-0.3225,-0.2155,-0.9217,-0.3225,-0.1117,-0.9796,-0.1671,-0.0769,-0.9796,-0.1857,-0.2155,-0.9217,-0.3225,-0.0769,-0.9796,-0.1857,-0.1484,-0.9217,-0.3584,-0.1484,-0.9217,-0.3584,-0.0769,-0.9796,-0.1857,-0.0392,-0.9796,-0.1971,-0.1484,-0.9217,-0.3584,-0.0392,-0.9796,-0.1971,-0.0757,-0.9217,-0.3804,-0.0757,-0.9217,-0.3804,-0.0392,-0.9796,-0.1971,0.0,-0.9796,-0.201,-0.0757,-0.9217,-0.3804,0.0,-0.9796,-0.201,0.0,-0.9217,-0.3879,0.0,-0.9217,-0.3879,0.0,-0.9796,-0.201,0.0392,-0.9796,-0.1971,0.0,-0.9217,-0.3879,0.0392,-0.9796,-0.1971,0.0757,-0.9217,-0.3804,0.0757,-0.9217,-0.3804,0.0392,-0.9796,-0.1971,0.0769,-0.9796,-0.1857,0.0757,-0.9217,-0.3804,0.0769,-0.9796,-0.1857,0.1484,-0.9217,-0.3584,0.1484,-0.9217,-0.3584,0.0769,-0.9796,-0.1857,0.1117,-0.9796,-0.1671,0.1484,-0.9217,-0.3584,0.1117,-0.9796,-0.1671,0.2155,-0.9217,-0.3225,0.2155,-0.9217,-0.3225,0.1117,-0.9796,-0.1671,0.1421,-0.9796,-0.1421,0.2155,-0.9217,-0.3225,0.1421,-0.9796,-0.1421,0.2743,-0.9217,-0.2743,0.2743,-0.9217,-0.2743,0.1421,-0.9796,-0.1421,0.1671,-0.9796,-0.1117,0.2743,-0.9217,-0.2743,0.1671,-0.9796,-0.1117,0.3225,-0.9217,-0.2155,0.3225,-0.9217,-0.2155,0.1671,-0.9796,-0.1117,0.1857,-0.9796,-0.0769,0.3225,-0.9217,-0.2155,0.1857,-0.9796,-0.0769,0.3584,-0.9217,-0.1484,0.3584,-0.9217,-0.1484,0.1857,-0.9796,-0.0769,0.1971,-0.9796,-0.0392,0.3584,-0.9217,-0.1484,0.1971,-0.9796,-0.0392,0.3804,-0.9217,-0.0757,0.3804,-0.9217,-0.0757,0.1971,-0.9796,-0.0392,0.201,-0.9796,0.0,0.3804,-0.9217,-0.0757,0.201,-0.9796,0.0,0.3879,-0.9217,0.0,0.3879,-0.9217,0.0,0.201,-0.9796,0.0,0.1971,-0.9796,0.0392,0.3879,-0.9217,0.0,0.1971,-0.9796,0.0392,0.3804,-0.9217,0.0757,0.3804,-0.9217,0.0757,0.1971,-0.9796,0.0392,0.1857,-0.9796,0.0769,0.3804,-0.9217,0.0757,0.1857,-0.9796,0.0769,0.3584,-0.9217,0.1484,0.3584,-0.9217,0.1484,0.1857,-0.9796,0.0769,0.1671,-0.9796,0.1117,0.3584,-0.9217,0.1484,0.1671,-0.9796,0.1117,0.3225,-0.9217,0.2155,0.3225,-0.9217,0.2155,0.1671,-0.9796,0.1117,0.1421,-0.9796,0.1421,0.3225,-0.9217,0.2155,0.1421,-0.9796,0.1421,0.2743,-0.9217,0.2743,0.2743,-0.9217,0.2743,0.1421,-0.9796,0.1421,0.1117,-0.9796,0.1671,0.2743,-0.9217,0.2743,0.1117,-0.9796,0.1671,0.2155,-0.9217,0.3225,0.2155,-0.9217,0.3225,0.1117,-0.9796,0.1671,0.0769,-0.9796,0.1857,0.2155,-0.9217,0.3225,0.0769,-0.9796,0.1857,0.1484,-0.9217,0.3584,0.1484,-0.9217,0.3584,0.0769,-0.9796,0.1857,0.0392,-0.9796,0.1971,0.1484,-0.9217,0.3584,0.0392,-0.9796,0.1971,0.0757,-0.9217,0.3804,0.0757,-0.9217,0.3804,0.0392,-0.9796,0.1971,0.0,-0.9796,0.201,0.0757,-0.9217,0.3804,0.0,-0.9796,0.201,0.0,-0.9217,0.3879,0.0,-1.0,0.0,-0.0392,-0.9796,0.1971,0.0,-0.9796,0.201,0.0,-1.0,0.0,-0.0769,-0.9796,0.1857,-0.0392,-0.9796,0.1971,0.0,-1.0,0.0,-0.1117,-0.9796,0.1671,-0.0769,-0.9796,0.1857,0.0,-1.0,0.0,-0.1421,-0.9796,0.1421,-0.1117,-0.9796,0.1671,0.0,-1.0,0.0,-0.1671,-0.9796,0.1117,-0.1421,-0.9796,0.1421,0.0,-1.0,0.0,-0.1857,-0.9796,0.0769,-0.1671,-0.9796,0.1117,0.0,-1.0,0.0,-0.1971,-0.9796,0.0392,-0.1857,-0.9796,0.0769,0.0,-1.0,0.0,-0.201,-0.9796,0.0,-0.1971,-0.9796,0.0392,0.0,-1.0,0.0,-0.1971,-0.9796,-0.0392,-0.201,-0.9796,0.0,0.0,-1.0,0.0,-0.1857,-0.9796,-0.0769,-0.1971,-0.9796,-0.0392,0.0,-1.0,0.0,-0.1671,-0.9796,-0.1117,-0.1857,-0.9796,-0.0769,0.0,-1.0,0.0,-0.1421,-0.9796,-0.1421,-0.1671,-0.9796,-0.1117,0.0,-1.0,0.0,-0.1117,-0.9796,-0.1671,-0.1421,-0.9796,-0.1421,0.0,-1.0,0.0,-0.0769,-0.9796,-0.1857,-0.1117,-0.9796,-0.1671,0.0,-1.0,0.0,-0.0392,-0.9796,-0.1971,-0.0769,-0.9796,-0.1857,0.0,-1.0,0.0,0.0,-0.9796,-0.201,-0.0392,-0.9796,-0.1971,0.0,-1.0,0.0,0.0392,-0.9796,-0.1971,0.0,-0.9796,-0.201,0.0,-1.0,0.0,0.0769,-0.9796,-0.1857,0.0392,-0.9796,-0.1971,0.0,-1.0,0.0,0.1117,-0.9796,-0.1671,0.0769,-0.9796,-0.1857,0.0,-1.0,0.0,0.1421,-0.9796,-0.1421,0.1117,-0.9796,-0.1671,0.0,-1.0,0.0,0.1671,-0.9796,-0.1117,0.1421,-0.9796,-0.1421,0.0,-1.0,0.0,0.1857,-0.9796,-0.0769,0.1671,-0.9796,-0.1117,0.0,-1.0,0.0,0.1971,-0.9796,-0.0392,0.1857,-0.9796,-0.0769,0.0,-1.0,0.0,0.201,-0.9796,0.0,0.1971,-0.9796,-0.0392,0.0,-1.0,0.0,0.1971,-0.9796,0.0392,0.201,-0.9796,0.0,0.0,-1.0,0.0,0.1857,-0.9796,0.0769,0.1971,-0.9796,0.0392,0.0,-1.0,0.0,0.1671,-0.9796,0.1117,0.1857,-0.9796,0.0769,0.0,-1.0,0.0,0.1421,-0.9796,0.1421,0.1671,-0.9796,0.1117,0.0,-1.0,0.0,0.1117,-0.9796,0.1671,0.1421,-0.9796,0.1421,0.0,-1.0,0.0,0.0769,-0.9796,0.1857,0.1117,-0.9796,0.1671,0.0,-1.0,0.0,0.0392,-0.9796,0.1971,0.0769,-0.9796,0.1857,0.0,-1.0,0.0,0.0,-0.9796,0.201,0.0392,-0.9796,0.1971],"tangents":null,"uvs":[0.0,2.0,0.0,1.9375,0.0312,1.9375,0.0312,2.0,0.0312,1.9375,0.0625,1.9375,0.0625,2.0,0.0625,1.9375,0.0938,1.9375,0.0938,2.0,0.0938,1.9375,0.125,1.9375,0.125,2.0,0.125,1.9375,0.1562,1.9375,0.1562,2.0,0.1562,1.9375,0.1875,1.9375,0.1875,2.0,0.1875,1.9375,0.2187,1.9375,0.2187,2.0,0.2187,1.9375,0.25,1.9375,0.25,2.0,0.25,1.9375,0.2812,1.9375,0.2812,2.0,0.2812,1.9375,0.3125,1.9375,0.3125,2.0,0.3125,1.9375,0.3437,1.9375,0.3437,2.0,0.3437,1.9375,0.375,1.9375,0.375,2.0,0.375,1.9375,0.4062,1.9375,0.4062,2.0,0.4062,1.9375,0.4375,1.9375,0.4375,2.0,0.4375,1.9375,0.4688,1.9375,0.4688,2.0,0.4688,1.9375,0.5,1.9375,0.5,2.0,0.5,1.9375,0.5313,1.9375,0.5313,2.0,0.5313,1.9375,0.5625,1.9375,0.5625,2.0,0.5625,1.9375,0.5938,1.9375,0.5938,2.0,0.5938,1.9375,0.625,1.9375,0.625,2.0,0.625,1.9375,0.6563,1.9375,0.6563,2.0,0.6563,1.9375,0.6875,1.9375,0.6875,2.0,0.6875,1.9375,0.7188,1.9375,0.7188,2.0,0.7188,1.9375,0.75,1.9375,0.75,2.0,0.75,1.9375,0.7813,1.9375,0.7813,2.0,0.7813,1.9375,0.8125,1.9375,0.8125,2.0,0.8125,1.9375,0.8438,1.9375,0.8438,2.0,0.8438,1.9375,0.875,1.9375,0.875,2.0,0.875,1.9375,0.9063,1.9375,0.9063,2.0,0.9063,1.9375,0.9375,1.9375,0.9375,2.0,0.9375,1.9375,0.9688,1.9375,0.9688,2.0,0.9688,1.9375,1.0,1.9375,0.0,1.9375,0.0,1.875,0.0312,1.875,0.0,1.9375,0.0312,1.875,0.0312,1.9375,0.0312,1.9375,0.0312,1.875,0.0625,1.875,0.0312,1.9375,0.0625,1.875,0.0625,1.9375,0.0625,1.9375,0.0625,1.875,0.0938,1.875,0.0625,1.9375,0.0938,1.875,0.0938,1.9375,0.0938,1.9375,0.0938,1.875,0.125,1.875,0.0938,1.9375,0.125,1.875,0.125,1.9375,0.125,1.9375,0.125,1.875,0.1562,1.875,0.125,1.9375,0.1562,1.875,0.1562,1.9375,0.1562,1.9375,0.1562,1.875,0.1875,1.875,0.1562,1.9375,0.1875,1.875,0.1875,1.9375,0.1875,1.9375,0.1875,1.875,0.2187,1.875,0.1875,1.9375,0.2187,1.875,0.2187,1.9375,0.2187,1.9375,0.2187,1.875,0.25,1.875,0.2187,1.9375,0.25,1.875,0.25,1.9375,0.25,1.9375,0.25,1.875,0.2812,1.875,0.25,1.9375,0.2812,1.875,0.2812,1.9375,0.2812,1.9375,0.2812,1.875,0.3125,1.875,0.2812,1.9375,0.3125,1.875,0.3125,1.9375,0.3125,1.9375,0.3125,1.875,0.3437,1.875,0.3125,1.9375,0.3437,1.875,0.3437,1.9375,0.3437,1.9375,0.3437,1.875,0.375,1.875,0.3437,1.9375,0.375,1.875,0.375,1.9375,0.375,1.9375,0.375,1.875,0.4062,1.875,0.375,1.9375,0.4062,1.875,0.4062,1.9375,0.4062,1.9375,0.4062,1.875,0.4375,1.875,0.4062,1.9375,0.4375,1.875,0.4375,1.9375,0.4375,1.9375,0.4375,1.875,0.4688,1.875,0.4375,1.9375,0.4688,1.875,0.4688,1.9375,0.4688,1.9375,0.4688,1.875,0.5,1.875,0.4688,1.9375,0.5,1.875,0.5,1.9375,0.5,1.9375,0.5,1.875,0.5313,1.875,0.5,1.9375,0.5313,1.875,0.5313,1.9375,0.5313,1.9375,0.5313,1.875,0.5625,1.875,0.5313,1.9375,0.5625,1.875,0.5625,1.9375,0.5625,1.9375,0.5625,1.875,0.5938,1.875,0.5625,1.9375,0.5938,1.875,0.5938,1.9375,0.5938,1.9375,0.5938,1.875,0.625,1.875,0.5938,1.9375,0.625,1.875,0.625,1.9375,0.625,1.9375,0.625,1.875,0.6563,1.875,0.625,1.9375,0.6563,1.875,0.6563,1.9375,0.6563,1.9375,0.6563,1.875,0.6875,1.875,0.6563,1.9375,0.6875,1.875,0.6875,1.9375,0.6875,1.9375,0.6875,1.875,0.7188,1.875,0.6875,1.9375,0.7188,1.875,0.7188,1.9375,0.7188,1.9375,0.7188,1.875,0.75,1.875,0.7188,1.9375,0.75,1.875,0.75,1.9375,0.75,1.9375,0.75,1.875,0.7813,1.875,0.75,1.9375,0.7813,1.875,0.7813,1.9375,0.7813,1.9375,0.7813,1.875,0.8125,1.875,0.7813,1.9375,0.8125,1.875,0.8125,1.9375,0.8125,1.9375,0.8125,1.875,0.8438,1.875,0.8125,1.9375,0.8438,1.875,0.8438,1.9375,0.8438,1.9375,0.8438,1.875,0.875,1.875,0.8438,1.9375,0.875,1.875,0.875,1.9375,0.875,1.9375,0.875,1.875,0.9063,1.875,0.875,1.9375,0.9063,1.875,0.9063,1.9375,0.9063,1.9375,0.9063,1.875,0.9375,1.875,0.9063,1.9375,0.9375,1.875,0.9375,1.9375,0.9375,1.9375,0.9375,1.875,0.9688,1.875,0.9375,1.9375,0.9688,1.875,0.9688,1.9375,0.9688,1.9375,0.9688,1.875,1.0,1.875,0.9688,1.9375,1.0,1.875,1.0,1.9375,0.0,1.875,0.0,1.8125,0.0312,1.8125,0.0,1.875,0.0312,1.8125,0.0312,1.875,0.0312,1.875,0.0312,1.8125,0.0625,1.8125,0.0312,1.875,0.0625,1.8125,0.0625,1.875,0.0625,1.875,0.0625,1.8125,0.0938,1.8125,0.0625,1.875,0.0938,1.8125,0.0938,1.875,0.0938,1.875,0.0938,1.8125,0.125,1.8125,0.0938,1.875,0.125,1.8125,0.125,1.875,0.125,1.875,0.125,1.8125,0.1562,1.8125,0.125,1.875,0.1562,1.8125,0.1562,1.875,0.1562,1.875,0.1562,1.8125,0.1875,1.8125,0.1562,1.875,0.1875,1.8125,0.1875,1.875,0.1875,1.875,0.1875,1.8125,0.2187,1.8125,0.1875,1.875,0.2187,1.8125,0.2187,1.875,0.2187,1.875,0.2187,1.8125,0.25,1.8125,0.2187,1.875,0.25,1.8125,0.25,1.875,0.25,1.875,0.25,1.8125,0.2812,1.8125,0.25,1.875,0.2812,1.8125,0.2812,1.875,0.2812,1.875,0.2812,1.8125,0.3125,1.8125,0.2812,1.875,0.3125,1.8125,0.3125,1.875,0.3125,1.875,0.3125,1.8125,0.3437,1.8125,0.3125,1.875,0.3437,1.8125,0.3437,1.875,0.3437,1.875,0.3437,1.8125,0.375,1.8125,0.3437,1.875,0.375,1.8125,0.375,1.875,0.375,1.875,0.375,1.8125,0.4062,1.8125,0.375,1.875,0.4062,1.8125,0.4062,1.875,0.4062,1.875,0.4062,1.8125,0.4375,1.8125,0.4062,1.875,0.4375,1.8125,0.4375,1.875,0.4375,1.875,0.4375,1.8125,0.4688,1.8125,0.4375,1.875,0.4688,1.8125,0.4688,1.875,0.4688,1.875,0.4688,1.8125,0.5,1.8125,0.4688,1.875,0.5,1.8125,0.5,1.875,0.5,1.875,0.5,1.8125,0.5313,1.8125,0.5,1.875,0.5313,1.8125,0.5313,1.875,0.5313,1.875,0.5313,1.8125,0.5625,1.8125,0.5313,1.875,0.5625,1.8125,0.5625,1.875,0.5625,1.875,0.5625,1.8125,0.5938,1.8125,0.5625,1.875,0.5938,1.8125,0.5938,1.875,0.5938,1.875,0.5938,1.8125,0.625,1.8125,0.5938,1.875,0.625,1.8125,0.625,1.875,0.625,1.875,0.625,1.8125,0.6563,1.8125,0.625,1.875,0.6563,1.8125,0.6563,1.875,0.6563,1.875,0.6563,1.8125,0.6875,1.8125,0.6563,1.875,0.6875,1.8125,0.6875,1.875,0.6875,1.875,0.6875,1.8125,0.7188,1.8125,0.6875,1.875,0.7188,1.8125,0.7188,1.875,0.7188,1.875,0.7188,1.8125,0.75,1.8125,0.7188,1.875,0.75,1.8125,0.75,1.875,0.75,1.875,0.75,1.8125,0.7813,1.8125,0.75,1.875,0.7813,1.8125,0.7813,1.875,0.7813,1.875,0.7813,1.8125,0.8125,1.8125,0.7813,1.875,0.8125,1.8125,0.8125,1.875,0.8125,1.875,0.8125,1.8125,0.8438,1.8125,0.8125,1.875,0.8438,1.8125,0.8438,1.875,0.8438,1.875,0.8438,1.8125,0.875,1.8125,0.8438,1.875,0.875,1.8125,0.875,1.875,0.875,1.875,0.875,1.8125,0.9063,1.8125,0.875,1.875,0.9063,1.8125,0.9063,1.875,0.9063,1.875,0.9063,1.8125,0.9375,1.8125,0.9063,1.875,0.9375,1.8125,0.9375,1.875,0.9375,1.875,0.9375,1.8125,0.9688,1.8125,0.9375,1.875,0.9688,1.8125,0.9688,1.875,0.9688,1.875,0.9688,1.8125,1.0,1.8125,0.9688,1.875,1.0,1.8125,1.0,1.875,0.0,1.8125,0.0,1.75,0.0312,1.75,0.0,1.8125,0.0312,1.75,0.0312,1.8125,0.0312,1.8125,0.0312,1.75,0.0625,1.75,0.0312,1.8125,0.0625,1.75,0.0625,1.8125,0.0625,1.8125,0.0625,1.75,0.0938,1.75,0.0625,1.8125,0.0938,1.75,0.0938,1.8125,0.0938,1.8125,0.0938,1.75,0.125,1.75,0.0938,1.8125,0.125,1.75,0.125,1.8125,0.125,1.8125,0.125,1.75,0.1562,1.75,0.125,1.8125,0.1562,1.75,0.1562,1.8125,0.1562,1.8125,0.1562,1.75,0.1875,1.75,0.1562,1.8125,0.1875,1.75,0.1875,1.8125,0.1875,1.8125,0.1875,1.75,0.2187,1.75,0.1875,1.8125,0.2187,1.75,0.2187,1.8125,0.2187,1.8125,0.2187,1.75,0.25,1.75,0.2187,1.8125,0.25,1.75,0.25,1.8125,0.25,1.8125,0.25,1.75,0.2812,1.75,0.25,1.8125,0.2812,1.75,0.2812,1.8125,0.2812,1.8125,0.2812,1.75,0.3125,1.75,0.2812,1.8125,0.3125,1.75,0.3125,1.8125,0.3125,1.8125,0.3125,1.75,0.3437,1.75,0.3125,1.8125,0.3437,1.75,0.3437,1.8125,0.3437,1.8125,0.3437,1.75,0.375,1.75,0.3437,1.8125,0.375,1.75,0.375,1.8125,0.375,1.8125,0.375,1.75,0.4062,1.75,0.375,1.8125,0.4062,1.75,0.4062,1.8125,0.4062,1.8125,0.4062,1.75,0.4375,1.75,0.4062,1.8125,0.4375,1.75,0.4375,1.8125,0.4375,1.8125,0.4375,1.75,0.4688,1.75,0.4375,1.8125,0.4688,1.75,0.4688,1.8125,0.4688,1.8125,0.4688,1.75,0.5,1.75,0.4688,1.8125,0.5,1.75,0.5,1.8125,0.5,1.8125,0.5,1.75,0.5313,1.75,0.5,1.8125,0.5313,1.75,0.5313,1.8125,0.5313,1.8125,0.5313,1.75,0.5625,1.75,0.5313,1.8125,0.5625,1.75,0.5625,1.8125,0.5625,1.8125,0.5625,1.75,0.5938,1.75,0.5625,1.8125,0.5938,1.75,0.5938,1.8125,0.5938,1.8125,0.5938,1.75,0.625,1.75,0.5938,1.8125,0.625,1.75,0.625,1.8125,0.625,1.8125,0.625,1.75,0.6563,1.75,0.625,1.8125,0.6563,1.75,0.6563,1.8125,0.6563,1.8125,0.6563,1.75,0.6875,1.75,0.6563,1.8125,0.6875,1.75,0.6875,1.8125,0.6875,1.8125,0.6875,1.75,0.7188,1.75,0.6875,1.8125,0.7188,1.75,0.7188,1.8125,0.7188,1.8125,0.7188,1.75,0.75,1.75,0.7188,1.8125,0.75,1.75,0.75,1.8125,0.75,1.8125,0.75,1.75,0.7813,1.75,0.75,1.8125,0.7813,1.75,0.7813,1.8125,0.7813,1.8125,0.7813,1.75,0.8125,1.75,0.7813,1.8125,0.8125,1.75,0.8125,1.8125,0.8125,1.8125,0.8125,1.75,0.8438,1.75,0.8125,1.8125,0.8438,1.75,0.8438,1.8125,0.8438,1.8125,0.8438,1.75,0.875,1.75,0.8438,1.8125,0.875,1.75,0.875,1.8125,0.875,1.8125,0.875,1.75,0.9063,1.75,0.875,1.8125,0.9063,1.75,0.9063,1.8125,0.9063,1.8125,0.9063,1.75,0.9375,1.75,0.9063,1.8125,0.9375,1.75,0.9375,1.8125,0.9375,1.8125,0.9375,1.75,0.9688,1.75,0.9375,1.8125,0.9688,1.75,0.9688,1.8125,0.9688,1.8125,0.9688,1.75,1.0,1.75,0.9688,1.8125,1.0,1.75,1.0,1.8125,0.0,1.75,0.0,1.6875,0.0312,1.6875,0.0,1.75,0.0312,1.6875,0.0312,1.75,0.0312,1.75,0.0312,1.6875,0.0625,1.6875,0.0312,1.75,0.0625,1.6875,0.0625,1.75,0.0625,1.75,0.0625,1.6875,0.0938,1.6875,0.0625,1.75,0.0938,1.6875,0.0938,1.75,0.0938,1.75,0.0938,1.6875,0.125,1.6875,0.0938,1.75,0.125,1.6875,0.125,1.75,0.125,1.75,0.125,1.6875,0.1562,1.6875,0.125,1.75,0.1562,1.6875,0.1562,1.75,0.1562,1.75,0.1562,1.6875,0.1875,1.6875,0.1562,1.75,0.1875,1.6875,0.1875,1.75,0.1875,1.75,0.1875,1.6875,0.2187,1.6875,0.1875,1.75,0.2187,1.6875,0.2187,1.75,0.2187,1.75,0.2187,1.6875,0.25,1.6875,0.2187,1.75,0.25,1.6875,0.25,1.75,0.25,1.75,0.25,1.6875,0.2812,1.6875,0.25,1.75,0.2812,1.6875,0.2812,1.75,0.2812,1.75,0.2812,1.6875,0.3125,1.6875,0.2812,1.75,0.3125,1.6875,0.3125,1.75,0.3125,1.75,0.3125,1.6875,0.3437,1.6875,0.3125,1.75,0.3437,1.6875,0.3437,1.75,0.3437,1.75,0.3437,1.6875,0.375,1.6875,0.3437,1.75,0.375,1.6875,0.375,1.75,0.375,1.75,0.375,1.6875,0.4062,1.6875,0.375,1.75,0.4062,1.6875,0.4062,1.75,0.4062,1.75,0.4062,1.6875,0.4375,1.6875,0.4062,1.75,0.4375,1.6875,0.4375,1.75,0.4375,1.75,0.4375,1.6875,0.4688,1.6875,0.4375,1.75,0.4688,1.6875,0.4688,1.75,0.4688,1.75,0.4688,1.6875,0.5,1.6875,0.4688,1.75,0.5,1.6875,0.5,1.75,0.5,1.75,0.5,1.6875,0.5313,1.6875,0.5,1.75,0.5313,1.6875,0.5313,1.75,0.5313,1.75,0.5313,1.6875,0.5625,1.6875,0.5313,1.75,0.5625,1.6875,0.5625,1.75,0.5625,1.75,0.5625,1.6875,0.5938,1.6875,0.5625,1.75,0.5938,1.6875,0.5938,1.75,0.5938,1.75,0.5938,1.6875,0.625,1.6875,0.5938,1.75,0.625,1.6875,0.625,1.75,0.625,1.75,0.625,1.6875,0.6563,1.6875,0.625,1.75,0.6563,1.6875,0.6563,1.75,0.6563,1.75,0.6563,1.6875,0.6875,1.6875,0.6563,1.75,0.6875,1.6875,0.6875,1.75,0.6875,1.75,0.6875,1.6875,0.7188,1.6875,0.6875,1.75,0.7188,1.6875,0.7188,1.75,0.7188,1.75,0.7188,1.6875,0.75,1.6875,0.7188,1.75,0.75,1.6875,0.75,1.75,0.75,1.75,0.75,1.6875,0.7813,1.6875,0.75,1.75,0.7813,1.6875,0.7813,1.75,0.7813,1.75,0.7813,1.6875,0.8125,1.6875,0.7813,1.75,0.8125,1.6875,0.8125,1.75,0.8125,1.75,0.8125,1.6875,0.8438,1.6875,0.8125,1.75,0.8438,1.6875,0.8438,1.75,0.8438,1.75,0.8438,1.6875,0.875,1.6875,0.8438,1.75,0.875,1.6875,0.875,1.75,0.875,1.75,0.875,1.6875,0.9063,1.6875,0.875,1.75,0.9063,1.6875,0.9063,1.75,0.9063,1.75,0.9063,1.6875,0.9375,1.6875,0.9063,1.75,0.9375,1.6875,0.9375,1.75,0.9375,1.75,0.9375,1.6875,0.9688,1.6875,0.9375,1.75,0.9688,1.6875,0.9688,1.75,0.9688,1.75,0.9688,1.6875,1.0,1.6875,0.9688,1.75,1.0,1.6875,1.0,1.75,0.0,1.6875,0.0,1.625,0.0312,1.625,0.0,1.6875,0.0312,1.625,0.0312,1.6875,0.0312,1.6875,0.0312,1.625,0.0625,1.625,0.0312,1.6875,0.0625,1.625,0.0625,1.6875,0.0625,1.6875,0.0625,1.625,0.0938,1.625,0.0625,1.6875,0.0938,1.625,0.0938,1.6875,0.0938,1.6875,0.0938,1.625,0.125,1.625,0.0938,1.6875,0.125,1.625,0.125,1.6875,0.125,1.6875,0.125,1.625,0.1562,1.625,0.125,1.6875,0.1562,1.625,0.1562,1.6875,0.1562,1.6875,0.1562,1.625,0.1875,1.625,0.1562,1.6875,0.1875,1.625,0.1875,1.6875,0.1875,1.6875,0.1875,1.625,0.2187,1.625,0.1875,1.6875,0.2187,1.625,0.2187,1.6875,0.2187,1.6875,0.2187,1.625,0.25,1.625,0.2187,1.6875,0.25,1.625,0.25,1.6875,0.25,1.6875,0.25,1.625,0.2812,1.625,0.25,1.6875,0.2812,1.625,0.2812,1.6875,0.2812,1.6875,0.2812,1.625,0.3125,1.625,0.2812,1.6875,0.3125,1.625,0.3125,1.6875,0.3125,1.6875,0.3125,1.625,0.3437,1.625,0.3125,1.6875,0.3437,1.625,0.3437,1.6875,0.3437,1.6875,0.3437,1.625,0.375,1.625,0.3437,1.6875,0.375,1.625,0.375,1.6875,0.375,1.6875,0.375,1.625,0.4062,1.625,0.375,1.6875,0.4062,1.625,0.4062,1.6875,0.4062,1.6875,0.4062,1.625,0.4375,1.625,0.4062,1.6875,0.4375,1.625,0.4375,1.6875,0.4375,1.6875,0.4375,1.625,0.4688,1.625,0.4375,1.6875,0.4688,1.625,0.4688,1.6875,0.4688,1.6875,0.4688,1.625,0.5,1.625,0.4688,1.6875,0.5,1.625,0.5,1.6875,0.5,1.6875,0.5,1.625,0.5313,1.625,0.5,1.6875,0.5313,1.625,0.5313,1.6875,0.5313,1.6875,0.5313,1.625,0.5625,1.625,0.5313,1.6875,0.5625,1.625,0.5625,1.6875,0.5625,1.6875,0.5625,1.625,0.5938,1.625,0.5625,1.6875,0.5938,1.625,0.5938,1.6875,0.5938,1.6875,0.5938,1.625,0.625,1.625,0.5938,1.6875,0.625,1.625,0.625,1.6875,0.625,1.6875,0.625,1.625,0.6563,1.625,0.625,1.6875,0.6563,1.625,0.6563,1.6875,0.6563,1.6875,0.6563,1.625,0.6875,1.625,0.6563,1.6875,0.6875,1.625,0.6875,1.6875,0.6875,1.6875,0.6875,1.625,0.7188,1.625,0.6875,1.6875,0.7188,1.625,0.7188,1.6875,0.7188,1.6875,0.7188,1.625,0.75,1.625,0.7188,1.6875,0.75,1.625,0.75,1.6875,0.75,1.6875,0.75,1.625,0.7813,1.625,0.75,1.6875,0.7813,1.625,0.7813,1.6875,0.7813,1.6875,0.7813,1.625,0.8125,1.625,0.7813,1.6875,0.8125,1.625,0.8125,1.6875,0.8125,1.6875,0.8125,1.625,0.8438,1.625,0.8125,1.6875,0.8438,1.625,0.8438,1.6875,0.8438,1.6875,0.8438,1.625,0.875,1.625,0.8438,1.6875,0.875,1.625,0.875,1.6875,0.875,1.6875,0.875,1.625,0.9063,1.625,0.875,1.6875,0.9063,1.625,0.9063,1.6875,0.9063,1.6875,0.9063,1.625,0.9375,1.625,0.9063,1.6875,0.9375,1.625,0.9375,1.6875,0.9375,1.6875,0.9375,1.625,0.9688,1.625,0.9375,1.6875,0.9688,1.625,0.9688,1.6875,0.9688,1.6875,0.9688,1.625,1.0,1.625,0.9688,1.6875,1.0,1.625,1.0,1.6875,0.0,1.625,0.0,1.5625,0.0312,1.5625,0.0,1.625,0.0312,1.5625,0.0312,1.625,0.0312,1.625,0.0312,1.5625,0.0625,1.5625,0.0312,1.625,0.0625,1.5625,0.0625,1.625,0.0625,1.625,0.0625,1.5625,0.0938,1.5625,0.0625,1.625,0.0938,1.5625,0.0938,1.625,0.0938,1.625,0.0938,1.5625,0.125,1.5625,0.0938,1.625,0.125,1.5625,0.125,1.625,0.125,1.625,0.125,1.5625,0.1562,1.5625,0.125,1.625,0.1562,1.5625,0.1562,1.625,0.1562,1.625,0.1562,1.5625,0.1875,1.5625,0.1562,1.625,0.1875,1.5625,0.1875,1.625,0.1875,1.625,0.1875,1.5625,0.2187,1.5625,0.1875,1.625,0.2187,1.5625,0.2187,1.625,0.2187,1.625,0.2187,1.5625,0.25,1.5625,0.2187,1.625,0.25,1.5625,0.25,1.625,0.25,1.625,0.25,1.5625,0.2812,1.5625,0.25,1.625,0.2812,1.5625,0.2812,1.625,0.2812,1.625,0.2812,1.5625,0.3125,1.5625,0.2812,1.625,0.3125,1.5625,0.3125,1.625,0.3125,1.625,0.3125,1.5625,0.3437,1.5625,0.3125,1.625,0.3437,1.5625,0.3437,1.625,0.3437,1.625,0.3437,1.5625,0.375,1.5625,0.3437,1.625,0.375,1.5625,0.375,1.625,0.375,1.625,0.375,1.5625,0.4062,1.5625,0.375,1.625,0.4062,1.5625,0.4062,1.625,0.4062,1.625,0.4062,1.5625,0.4375,1.5625,0.4062,1.625,0.4375,1.5625,0.4375,1.625,0.4375,1.625,0.4375,1.5625,0.4688,1.5625,0.4375,1.625,0.4688,1.5625,0.4688,1.625,0.4688,1.625,0.4688,1.5625,0.5,1.5625,0.4688,1.625,0.5,1.5625,0.5,1.625,0.5,1.625,0.5,1.5625,0.5313,1.5625,0.5,1.625,0.5313,1.5625,0.5313,1.625,0.5313,1.625,0.5313,1.5625,0.5625,1.5625,0.5313,1.625,0.5625,1.5625,0.5625,1.625,0.5625,1.625,0.5625,1.5625,0.5938,1.5625,0.5625,1.625,0.5938,1.5625,0.5938,1.625,0.5938,1.625,0.5938,1.5625,0.625,1.5625,0.5938,1.625,0.625,1.5625,0.625,1.625,0.625,1.625,0.625,1.5625,0.6563,1.5625,0.625,1.625,0.6563,1.5625,0.6563,1.625,0.6563,1.625,0.6563,1.5625,0.6875,1.5625,0.6563,1.625,0.6875,1.5625,0.6875,1.625,0.6875,1.625,0.6875,1.5625,0.7188,1.5625,0.6875,1.625,0.7188,1.5625,0.7188,1.625,0.7188,1.625,0.7188,1.5625,0.75,1.5625,0.7188,1.625,0.75,1.5625,0.75,1.625,0.75,1.625,0.75,1.5625,0.7813,1.5625,0.75,1.625,0.7813,1.5625,0.7813,1.625,0.7813,1.625,0.7813,1.5625,0.8125,1.5625,0.7813,1.625,0.8125,1.5625,0.8125,1.625,0.8125,1.625,0.8125,1.5625,0.8438,1.5625,0.8125,1.625,0.8438,1.5625,0.8438,1.625,0.8438,1.625,0.8438,1.5625,0.875,1.5625,0.8438,1.625,0.875,1.5625,0.875,1.625,0.875,1.625,0.875,1.5625,0.9063,1.5625,0.875,1.625,0.9063,1.5625,0.9063,1.625,0.9063,1.625,0.9063,1.5625,0.9375,1.5625,0.9063,1.625,0.9375,1.5625,0.9375,1.625,0.9375,1.625,0.9375,1.5625,0.9688,1.5625,0.9375,1.625,0.9688,1.5625,0.9688,1.625,0.9688,1.625,0.9688,1.5625,1.0,1.5625,0.9688,1.625,1.0,1.5625,1.0,1.625,0.0,1.5625,0.0,1.5,0.0312,1.5,0.0,1.5625,0.0312,1.5,0.0312,1.5625,0.0312,1.5625,0.0312,1.5,0.0625,1.5,0.0312,1.5625,0.0625,1.5,0.0625,1.5625,0.0625,1.5625,0.0625,1.5,0.0938,1.5,0.0625,1.5625,0.0938,1.5,0.0938,1.5625,0.0938,1.5625,0.0938,1.5,0.125,1.5,0.0938,1.5625,0.125,1.5,0.125,1.5625,0.125,1.5625,0.125,1.5,0.1562,1.5,0.125,1.5625,0.1562,1.5,0.1562,1.5625,0.1562,1.5625,0.1562,1.5,0.1875,1.5,0.1562,1.5625,0.1875,1.5,0.1875,1.5625,0.1875,1.5625,0.1875,1.5,0.2187,1.5,0.1875,1.5625,0.2187,1.5,0.2187,1.5625,0.2187,1.5625,0.2187,1.5,0.25,1.5,0.2187,1.5625,0.25,1.5,0.25,1.5625,0.25,1.5625,0.25,1.5,0.2812,1.5,0.25,1.5625,0.2812,1.5,0.2812,1.5625,0.2812,1.5625,0.2812,1.5,0.3125,1.5,0.2812,1.5625,0.3125,1.5,0.3125,1.5625,0.3125,1.5625,0.3125,1.5,0.3437,1.5,0.3125,1.5625,0.3437,1.5,0.3437,1.5625,0.3437,1.5625,0.3437,1.5,0.375,1.5,0.3437,1.5625,0.375,1.5,0.375,1.5625,0.375,1.5625,0.375,1.5,0.4062,1.5,0.375,1.5625,0.4062,1.5,0.4062,1.5625,0.4062,1.5625,0.4062,1.5,0.4375,1.5,0.4062,1.5625,0.4375,1.5,0.4375,1.5625,0.4375,1.5625,0.4375,1.5,0.4688,1.5,0.4375,1.5625,0.4688,1.5,0.4688,1.5625,0.4688,1.5625,0.4688,1.5,0.5,1.5,0.4688,1.5625,0.5,1.5,0.5,1.5625,0.5,1.5625,0.5,1.5,0.5313,1.5,0.5,1.5625,0.5313,1.5,0.5313,1.5625,0.5313,1.5625,0.5313,1.5,0.5625,1.5,0.5313,1.5625,0.5625,1.5,0.5625,1.5625,0.5625,1.5625,0.5625,1.5,0.5938,1.5,0.5625,1.5625,0.5938,1.5,0.5938,1.5625,0.5938,1.5625,0.5938,1.5,0.625,1.5,0.5938,1.5625,0.625,1.5,0.625,1.5625,0.625,1.5625,0.625,1.5,0.6563,1.5,0.625,1.5625,0.6563,1.5,0.6563,1.5625,0.6563,1.5625,0.6563,1.5,0.6875,1.5,0.6563,1.5625,0.6875,1.5,0.6875,1.5625,0.6875,1.5625,0.6875,1.5,0.7188,1.5,0.6875,1.5625,0.7188,1.5,0.7188,1.5625,0.7188,1.5625,0.7188,1.5,0.75,1.5,0.7188,1.5625,0.75,1.5,0.75,1.5625,0.75,1.5625,0.75,1.5,0.7813,1.5,0.75,1.5625,0.7813,1.5,0.7813,1.5625,0.7813,1.5625,0.7813,1.5,0.8125,1.5,0.7813,1.5625,0.8125,1.5,0.8125,1.5625,0.8125,1.5625,0.8125,1.5,0.8438,1.5,0.8125,1.5625,0.8438,1.5,0.8438,1.5625,0.8438,1.5625,0.8438,1.5,0.875,1.5,0.8438,1.5625,0.875,1.5,0.875,1.5625,0.875,1.5625,0.875,1.5,0.9063,1.5,0.875,1.5625,0.9063,1.5,0.9063,1.5625,0.9063,1.5625,0.9063,1.5,0.9375,1.5,0.9063,1.5625,0.9375,1.5,0.9375,1.5625,0.9375,1.5625,0.9375,1.5,0.9688,1.5,0.9375,1.5625,0.9688,1.5,0.9688,1.5625,0.9688,1.5625,0.9688,1.5,1.0,1.5,0.9688,1.5625,1.0,1.5,1.0,1.5625,0.0,1.5,0.0,1.4375,0.0312,1.4375,0.0,1.5,0.0312,1.4375,0.0312,1.5,0.0312,1.5,0.0312,1.4375,0.0625,1.4375,0.0312,1.5,0.0625,1.4375,0.0625,1.5,0.0625,1.5,0.0625,1.4375,0.0938,1.4375,0.0625,1.5,0.0938,1.4375,0.0938,1.5,0.0938,1.5,0.0938,1.4375,0.125,1.4375,0.0938,1.5,0.125,1.4375,0.125,1.5,0.125,1.5,0.125,1.4375,0.1562,1.4375,0.125,1.5,0.1562,1.4375,0.1562,1.5,0.1562,1.5,0.1562,1.4375,0.1875,1.4375,0.1562,1.5,0.1875,1.4375,0.1875,1.5,0.1875,1.5,0.1875,1.4375,0.2187,1.4375,0.1875,1.5,0.2187,1.4375,0.2187,1.5,0.2187,1.5,0.2187,1.4375,0.25,1.4375,0.2187,1.5,0.25,1.4375,0.25,1.5,0.25,1.5,0.25,1.4375,0.2812,1.4375,0.25,1.5,0.2812,1.4375,0.2812,1.5,0.2812,1.5,0.2812,1.4375,0.3125,1.4375,0.2812,1.5,0.3125,1.4375,0.3125,1.5,0.3125,1.5,0.3125,1.4375,0.3437,1.4375,0.3125,1.5,0.3437,1.4375,0.3437,1.5,0.3437,1.5,0.3437,1.4375,0.375,1.4375,0.3437,1.5,0.375,1.4375,0.375,1.5,0.375,1.5,0.375,1.4375,0.4062,1.4375,0.375,1.5,0.4062,1.4375,0.4062,1.5,0.4062,1.5,0.4062,1.4375,0.4375,1.4375,0.4062,1.5,0.4375,1.4375,0.4375,1.5,0.4375,1.5,0.4375,1.4375,0.4688,1.4375,0.4375,1.5,0.4688,1.4375,0.4688,1.5,0.4688,1.5,0.4688,1.4375,0.5,1.4375,0.4688,1.5,0.5,1.4375,0.5,1.5,0.5,1.5,0.5,1.4375,0.5313,1.4375,0.5,1.5,0.5313,1.4375,0.5313,1.5,0.5313,1.5,0.5313,1.4375,0.5625,1.4375,0.5313,1.5,0.5625,1.4375,0.5625,1.5,0.5625,1.5,0.5625,1.4375,0.5938,1.4375,0.5625,1.5,0.5938,1.4375,0.5938,1.5,0.5938,1.5,0.5938,1.4375,0.625,1.4375,0.5938,1.5,0.625,1.4375,0.625,1.5,0.625,1.5,0.625,1.4375,0.6563,1.4375,0.625,1.5,0.6563,1.4375,0.6563,1.5,0.6563,1.5,0.6563,1.4375,0.6875,1.4375,0.6563,1.5,0.6875,1.4375,0.6875,1.5,0.6875,1.5,0.6875,1.4375,0.7188,1.4375,0.6875,1.5,0.7188,1.4375,0.7188,1.5,0.7188,1.5,0.7188,1.4375,0.75,1.4375,0.7188,1.5,0.75,1.4375,0.75,1.5,0.75,1.5,0.75,1.4375,0.7813,1.4375,0.75,1.5,0.7813,1.4375,0.7813,1.5,0.7813,1.5,0.7813,1.4375,0.8125,1.4375,0.7813,1.5,0.8125,1.4375,0.8125,1.5,0.8125,1.5,0.8125,1.4375,0.8438,1.4375,0.8125,1.5,0.8438,1.4375,0.8438,1.5,0.8438,1.5,0.8438,1.4375,0.875,1.4375,0.8438,1.5,0.875,1.4375,0.875,1.5,0.875,1.5,0.875,1.4375,0.9063,1.4375,0.875,1.5,0.9063,1.4375,0.9063,1.5,0.9063,1.5,0.9063,1.4375,0.9375,1.4375,0.9063,1.5,0.9375,1.4375,0.9375,1.5,0.9375,1.5,0.9375,1.4375,0.9688,1.4375,0.9375,1.5,0.9688,1.4375,0.9688,1.5,0.9688,1.5,0.9688,1.4375,1.0,1.4375,0.9688,1.5,1.0,1.4375,1.0,1.5,0.0,1.4375,0.0,1.375,0.0312,1.375,0.0,1.4375,0.0312,1.375,0.0312,1.4375,0.0312,1.4375,0.0312,1.375,0.0625,1.375,0.0312,1.4375,0.0625,1.375,0.0625,1.4375,0.0625,1.4375,0.0625,1.375,0.0938,1.375,0.0625,1.4375,0.0938,1.375,0.0938,1.4375,0.0938,1.4375,0.0938,1.375,0.125,1.375,0.0938,1.4375,0.125,1.375,0.125,1.4375,0.125,1.4375,0.125,1.375,0.1562,1.375,0.125,1.4375,0.1562,1.375,0.1562,1.4375,0.1562,1.4375,0.1562,1.375,0.1875,1.375,0.1562,1.4375,0.1875,1.375,0.1875,1.4375,0.1875,1.4375,0.1875,1.375,0.2187,1.375,0.1875,1.4375,0.2187,1.375,0.2187,1.4375,0.2187,1.4375,0.2187,1.375,0.25,1.375,0.2187,1.4375,0.25,1.375,0.25,1.4375,0.25,1.4375,0.25,1.375,0.2812,1.375,0.25,1.4375,0.2812,1.375,0.2812,1.4375,0.2812,1.4375,0.2812,1.375,0.3125,1.375,0.2812,1.4375,0.3125,1.375,0.3125,1.4375,0.3125,1.4375,0.3125,1.375,0.3437,1.375,0.3125,1.4375,0.3437,1.375,0.3437,1.4375,0.3437,1.4375,0.3437,1.375,0.375,1.375,0.3437,1.4375,0.375,1.375,0.375,1.4375,0.375,1.4375,0.375,1.375,0.4062,1.375,0.375,1.4375,0.4062,1.375,0.4062,1.4375,0.4062,1.4375,0.4062,1.375,0.4375,1.375,0.4062,1.4375,0.4375,1.375,0.4375,1.4375,0.4375,1.4375,0.4375,1.375,0.4688,1.375,0.4375,1.4375,0.4688,1.375,0.4688,1.4375,0.4688,1.4375,0.4688,1.375,0.5,1.375,0.4688,1.4375,0.5,1.375,0.5,1.4375,0.5,1.4375,0.5,1.375,0.5313,1.375,0.5,1.4375,0.5313,1.375,0.5313,1.4375,0.5313,1.4375,0.5313,1.375,0.5625,1.375,0.5313,1.4375,0.5625,1.375,0.5625,1.4375,0.5625,1.4375,0.5625,1.375,0.5938,1.375,0.5625,1.4375,0.5938,1.375,0.5938,1.4375,0.5938,1.4375,0.5938,1.375,0.625,1.375,0.5938,1.4375,0.625,1.375,0.625,1.4375,0.625,1.4375,0.625,1.375,0.6563,1.375,0.625,1.4375,0.6563,1.375,0.6563,1.4375,0.6563,1.4375,0.6563,1.375,0.6875,1.375,0.6563,1.4375,0.6875,1.375,0.6875,1.4375,0.6875,1.4375,0.6875,1.375,0.7188,1.375,0.6875,1.4375,0.7188,1.375,0.7188,1.4375,0.7188,1.4375,0.7188,1.375,0.75,1.375,0.7188,1.4375,0.75,1.375,0.75,1.4375,0.75,1.4375,0.75,1.375,0.7813,1.375,0.75,1.4375,0.7813,1.375,0.7813,1.4375,0.7813,1.4375,0.7813,1.375,0.8125,1.375,0.7813,1.4375,0.8125,1.375,0.8125,1.4375,0.8125,1.4375,0.8125,1.375,0.8438,1.375,0.8125,1.4375,0.8438,1.375,0.8438,1.4375,0.8438,1.4375,0.8438,1.375,0.875,1.375,0.8438,1.4375,0.875,1.375,0.875,1.4375,0.875,1.4375,0.875,1.375,0.9063,1.375,0.875,1.4375,0.9063,1.375,0.9063,1.4375,0.9063,1.4375,0.9063,1.375,0.9375,1.375,0.9063,1.4375,0.9375,1.375,0.9375,1.4375,0.9375,1.4375,0.9375,1.375,0.9688,1.375,0.9375,1.4375,0.9688,1.375,0.9688,1.4375,0.9688,1.4375,0.9688,1.375,1.0,1.375,0.9688,1.4375,1.0,1.375,1.0,1.4375,0.0,1.375,0.0,1.3125,0.0312,1.3125,0.0,1.375,0.0312,1.3125,0.0312,1.375,0.0312,1.375,0.0312,1.3125,0.0625,1.3125,0.0312,1.375,0.0625,1.3125,0.0625,1.375,0.0625,1.375,0.0625,1.3125,0.0938,1.3125,0.0625,1.375,0.0938,1.3125,0.0938,1.375,0.0938,1.375,0.0938,1.3125,0.125,1.3125,0.0938,1.375,0.125,1.3125,0.125,1.375,0.125,1.375,0.125,1.3125,0.1562,1.3125,0.125,1.375,0.1562,1.3125,0.1562,1.375,0.1562,1.375,0.1562,1.3125,0.1875,1.3125,0.1562,1.375,0.1875,1.3125,0.1875,1.375,0.1875,1.375,0.1875,1.3125,0.2187,1.3125,0.1875,1.375,0.2187,1.3125,0.2187,1.375,0.2187,1.375,0.2187,1.3125,0.25,1.3125,0.2187,1.375,0.25,1.3125,0.25,1.375,0.25,1.375,0.25,1.3125,0.2812,1.3125,0.25,1.375,0.2812,1.3125,0.2812,1.375,0.2812,1.375,0.2812,1.3125,0.3125,1.3125,0.2812,1.375,0.3125,1.3125,0.3125,1.375,0.3125,1.375,0.3125,1.3125,0.3437,1.3125,0.3125,1.375,0.3437,1.3125,0.3437,1.375,0.3437,1.375,0.3437,1.3125,0.375,1.3125,0.3437,1.375,0.375,1.3125,0.375,1.375,0.375,1.375,0.375,1.3125,0.4062,1.3125,0.375,1.375,0.4062,1.3125,0.4062,1.375,0.4062,1.375,0.4062,1.3125,0.4375,1.3125,0.4062,1.375,0.4375,1.3125,0.4375,1.375,0.4375,1.375,0.4375,1.3125,0.4688,1.3125,0.4375,1.375,0.4688,1.3125,0.4688,1.375,0.4688,1.375,0.4688,1.3125,0.5,1.3125,0.4688,1.375,0.5,1.3125,0.5,1.375,0.5,1.375,0.5,1.3125,0.5313,1.3125,0.5,1.375,0.5313,1.3125,0.5313,1.375,0.5313,1.375,0.5313,1.3125,0.5625,1.3125,0.5313,1.375,0.5625,1.3125,0.5625,1.375,0.5625,1.375,0.5625,1.3125,0.5938,1.3125,0.5625,1.375,0.5938,1.3125,0.5938,1.375,0.5938,1.375,0.5938,1.3125,0.625,1.3125,0.5938,1.375,0.625,1.3125,0.625,1.375,0.625,1.375,0.625,1.3125,0.6563,1.3125,0.625,1.375,0.6563,1.3125,0.6563,1.375,0.6563,1.375,0.6563,1.3125,0.6875,1.3125,0.6563,1.375,0.6875,1.3125,0.6875,1.375,0.6875,1.375,0.6875,1.3125,0.7188,1.3125,0.6875,1.375,0.7188,1.3125,0.7188,1.375,0.7188,1.375,0.7188,1.3125,0.75,1.3125,0.7188,1.375,0.75,1.3125,0.75,1.375,0.75,1.375,0.75,1.3125,0.7813,1.3125,0.75,1.375,0.7813,1.3125,0.7813,1.375,0.7813,1.375,0.7813,1.3125,0.8125,1.3125,0.7813,1.375,0.8125,1.3125,0.8125,1.375,0.8125,1.375,0.8125,1.3125,0.8438,1.3125,0.8125,1.375,0.8438,1.3125,0.8438,1.375,0.8438,1.375,0.8438,1.3125,0.875,1.3125,0.8438,1.375,0.875,1.3125,0.875,1.375,0.875,1.375,0.875,1.3125,0.9063,1.3125,0.875,1.375,0.9063,1.3125,0.9063,1.375,0.9063,1.375,0.9063,1.3125,0.9375,1.3125,0.9063,1.375,0.9375,1.3125,0.9375,1.375,0.9375,1.375,0.9375,1.3125,0.9688,1.3125,0.9375,1.375,0.9688,1.3125,0.9688,1.375,0.9688,1.375,0.9688,1.3125,1.0,1.3125,0.9688,1.375,1.0,1.3125,1.0,1.375,0.0,1.3125,0.0,1.25,0.0312,1.25,0.0,1.3125,0.0312,1.25,0.0312,1.3125,0.0312,1.3125,0.0312,1.25,0.0625,1.25,0.0312,1.3125,0.0625,1.25,0.0625,1.3125,0.0625,1.3125,0.0625,1.25,0.0938,1.25,0.0625,1.3125,0.0938,1.25,0.0938,1.3125,0.0938,1.3125,0.0938,1.25,0.125,1.25,0.0938,1.3125,0.125,1.25,0.125,1.3125,0.125,1.3125,0.125,1.25,0.1562,1.25,0.125,1.3125,0.1562,1.25,0.1562,1.3125,0.1562,1.3125,0.1562,1.25,0.1875,1.25,0.1562,1.3125,0.1875,1.25,0.1875,1.3125,0.1875,1.3125,0.1875,1.25,0.2187,1.25,0.1875,1.3125,0.2187,1.25,0.2187,1.3125,0.2187,1.3125,0.2187,1.25,0.25,1.25,0.2187,1.3125,0.25,1.25,0.25,1.3125,0.25,1.3125,0.25,1.25,0.2812,1.25,0.25,1.3125,0.2812,1.25,0.2812,1.3125,0.2812,1.3125,0.2812,1.25,0.3125,1.25,0.2812,1.3125,0.3125,1.25,0.3125,1.3125,0.3125,1.3125,0.3125,1.25,0.3437,1.25,0.3125,1.3125,0.3437,1.25,0.3437,1.3125,0.3437,1.3125,0.3437,1.25,0.375,1.25,0.3437,1.3125,0.375,1.25,0.375,1.3125,0.375,1.3125,0.375,1.25,0.4062,1.25,0.375,1.3125,0.4062,1.25,0.4062,1.3125,0.4062,1.3125,0.4062,1.25,0.4375,1.25,0.4062,1.3125,0.4375,1.25,0.4375,1.3125,0.4375,1.3125,0.4375,1.25,0.4688,1.25,0.4375,1.3125,0.4688,1.25,0.4688,1.3125,0.4688,1.3125,0.4688,1.25,0.5,1.25,0.4688,1.3125,0.5,1.25,0.5,1.3125,0.5,1.3125,0.5,1.25,0.5313,1.25,0.5,1.3125,0.5313,1.25,0.5313,1.3125,0.5313,1.3125,0.5313,1.25,0.5625,1.25,0.5313,1.3125,0.5625,1.25,0.5625,1.3125,0.5625,1.3125,0.5625,1.25,0.5938,1.25,0.5625,1.3125,0.5938,1.25,0.5938,1.3125,0.5938,1.3125,0.5938,1.25,0.625,1.25,0.5938,1.3125,0.625,1.25,0.625,1.3125,0.625,1.3125,0.625,1.25,0.6563,1.25,0.625,1.3125,0.6563,1.25,0.6563,1.3125,0.6563,1.3125,0.6563,1.25,0.6875,1.25,0.6563,1.3125,0.6875,1.25,0.6875,1.3125,0.6875,1.3125,0.6875,1.25,0.7188,1.25,0.6875,1.3125,0.7188,1.25,0.7188,1.3125,0.7188,1.3125,0.7188,1.25,0.75,1.25,0.7188,1.3125,0.75,1.25,0.75,1.3125,0.75,1.3125,0.75,1.25,0.7813,1.25,0.75,1.3125,0.7813,1.25,0.7813,1.3125,0.7813,1.3125,0.7813,1.25,0.8125,1.25,0.7813,1.3125,0.8125,1.25,0.8125,1.3125,0.8125,1.3125,0.8125,1.25,0.8438,1.25,0.8125,1.3125,0.8438,1.25,0.8438,1.3125,0.8438,1.3125,0.8438,1.25,0.875,1.25,0.8438,1.3125,0.875,1.25,0.875,1.3125,0.875,1.3125,0.875,1.25,0.9063,1.25,0.875,1.3125,0.9063,1.25,0.9063,1.3125,0.9063,1.3125,0.9063,1.25,0.9375,1.25,0.9063,1.3125,0.9375,1.25,0.9375,1.3125,0.9375,1.3125,0.9375,1.25,0.9688,1.25,0.9375,1.3125,0.9688,1.25,0.9688,1.3125,0.9688,1.3125,0.9688,1.25,1.0,1.25,0.9688,1.3125,1.0,1.25,1.0,1.3125,0.0,1.25,0.0,1.1875,0.0312,1.1875,0.0,1.25,0.0312,1.1875,0.0312,1.25,0.0312,1.25,0.0312,1.1875,0.0625,1.1875,0.0312,1.25,0.0625,1.1875,0.0625,1.25,0.0625,1.25,0.0625,1.1875,0.0938,1.1875,0.0625,1.25,0.0938,1.1875,0.0938,1.25,0.0938,1.25,0.0938,1.1875,0.125,1.1875,0.0938,1.25,0.125,1.1875,0.125,1.25,0.125,1.25,0.125,1.1875,0.1562,1.1875,0.125,1.25,0.1562,1.1875,0.1562,1.25,0.1562,1.25,0.1562,1.1875,0.1875,1.1875,0.1562,1.25,0.1875,1.1875,0.1875,1.25,0.1875,1.25,0.1875,1.1875,0.2187,1.1875,0.1875,1.25,0.2187,1.1875,0.2187,1.25,0.2187,1.25,0.2187,1.1875,0.25,1.1875,0.2187,1.25,0.25,1.1875,0.25,1.25,0.25,1.25,0.25,1.1875,0.2812,1.1875,0.25,1.25,0.2812,1.1875,0.2812,1.25,0.2812,1.25,0.2812,1.1875,0.3125,1.1875,0.2812,1.25,0.3125,1.1875,0.3125,1.25,0.3125,1.25,0.3125,1.1875,0.3437,1.1875,0.3125,1.25,0.3437,1.1875,0.3437,1.25,0.3437,1.25,0.3437,1.1875,0.375,1.1875,0.3437,1.25,0.375,1.1875,0.375,1.25,0.375,1.25,0.375,1.1875,0.4062,1.1875,0.375,1.25,0.4062,1.1875,0.4062,1.25,0.4062,1.25,0.4062,1.1875,0.4375,1.1875,0.4062,1.25,0.4375,1.1875,0.4375,1.25,0.4375,1.25,0.4375,1.1875,0.4688,1.1875,0.4375,1.25,0.4688,1.1875,0.4688,1.25,0.4688,1.25,0.4688,1.1875,0.5,1.1875,0.4688,1.25,0.5,1.1875,0.5,1.25,0.5,1.25,0.5,1.1875,0.5313,1.1875,0.5,1.25,0.5313,1.1875,0.5313,1.25,0.5313,1.25,0.5313,1.1875,0.5625,1.1875,0.5313,1.25,0.5625,1.1875,0.5625,1.25,0.5625,1.25,0.5625,1.1875,0.5938,1.1875,0.5625,1.25,0.5938,1.1875,0.5938,1.25,0.5938,1.25,0.5938,1.1875,0.625,1.1875,0.5938,1.25,0.625,1.1875,0.625,1.25,0.625,1.25,0.625,1.1875,0.6563,1.1875,0.625,1.25,0.6563,1.1875,0.6563,1.25,0.6563,1.25,0.6563,1.1875,0.6875,1.1875,0.6563,1.25,0.6875,1.1875,0.6875,1.25,0.6875,1.25,0.6875,1.1875,0.7188,1.1875,0.6875,1.25,0.7188,1.1875,0.7188,1.25,0.7188,1.25,0.7188,1.1875,0.75,1.1875,0.7188,1.25,0.75,1.1875,0.75,1.25,0.75,1.25,0.75,1.1875,0.7813,1.1875,0.75,1.25,0.7813,1.1875,0.7813,1.25,0.7813,1.25,0.7813,1.1875,0.8125,1.1875,0.7813,1.25,0.8125,1.1875,0.8125,1.25,0.8125,1.25,0.8125,1.1875,0.8438,1.1875,0.8125,1.25,0.8438,1.1875,0.8438,1.25,0.8438,1.25,0.8438,1.1875,0.875,1.1875,0.8438,1.25,0.875,1.1875,0.875,1.25,0.875,1.25,0.875,1.1875,0.9063,1.1875,0.875,1.25,0.9063,1.1875,0.9063,1.25,0.9063,1.25,0.9063,1.1875,0.9375,1.1875,0.9063,1.25,0.9375,1.1875,0.9375,1.25,0.9375,1.25,0.9375,1.1875,0.9688,1.1875,0.9375,1.25,0.9688,1.1875,0.9688,1.25,0.9688,1.25,0.9688,1.1875,1.0,1.1875,0.9688,1.25,1.0,1.1875,1.0,1.25,0.0,1.1875,0.0,1.125,0.0312,1.125,0.0,1.1875,0.0312,1.125,0.0312,1.1875,0.0312,1.1875,0.0312,1.125,0.0625,1.125,0.0312,1.1875,0.0625,1.125,0.0625,1.1875,0.0625,1.1875,0.0625,1.125,0.0938,1.125,0.0625,1.1875,0.0938,1.125,0.0938,1.1875,0.0938,1.1875,0.0938,1.125,0.125,1.125,0.0938,1.1875,0.125,1.125,0.125,1.1875,0.125,1.1875,0.125,1.125,0.1562,1.125,0.125,1.1875,0.1562,1.125,0.1562,1.1875,0.1562,1.1875,0.1562,1.125,0.1875,1.125,0.1562,1.1875,0.1875,1.125,0.1875,1.1875,0.1875,1.1875,0.1875,1.125,0.2187,1.125,0.1875,1.1875,0.2187,1.125,0.2187,1.1875,0.2187,1.1875,0.2187,1.125,0.25,1.125,0.2187,1.1875,0.25,1.125,0.25,1.1875,0.25,1.1875,0.25,1.125,0.2812,1.125,0.25,1.1875,0.2812,1.125,0.2812,1.1875,0.2812,1.1875,0.2812,1.125,0.3125,1.125,0.2812,1.1875,0.3125,1.125,0.3125,1.1875,0.3125,1.1875,0.3125,1.125,0.3437,1.125,0.3125,1.1875,0.3437,1.125,0.3437,1.1875,0.3437,1.1875,0.3437,1.125,0.375,1.125,0.3437,1.1875,0.375,1.125,0.375,1.1875,0.375,1.1875,0.375,1.125,0.4062,1.125,0.375,1.1875,0.4062,1.125,0.4062,1.1875,0.4062,1.1875,0.4062,1.125,0.4375,1.125,0.4062,1.1875,0.4375,1.125,0.4375,1.1875,0.4375,1.1875,0.4375,1.125,0.4688,1.125,0.4375,1.1875,0.4688,1.125,0.4688,1.1875,0.4688,1.1875,0.4688,1.125,0.5,1.125,0.4688,1.1875,0.5,1.125,0.5,1.1875,0.5,1.1875,0.5,1.125,0.5313,1.125,0.5,1.1875,0.5313,1.125,0.5313,1.1875,0.5313,1.1875,0.5313,1.125,0.5625,1.125,0.5313,1.1875,0.5625,1.125,0.5625,1.1875,0.5625,1.1875,0.5625,1.125,0.5938,1.125,0.5625,1.1875,0.5938,1.125,0.5938,1.1875,0.5938,1.1875,0.5938,1.125,0.625,1.125,0.5938,1.1875,0.625,1.125,0.625,1.1875,0.625,1.1875,0.625,1.125,0.6563,1.125,0.625,1.1875,0.6563,1.125,0.6563,1.1875,0.6563,1.1875,0.6563,1.125,0.6875,1.125,0.6563,1.1875,0.6875,1.125,0.6875,1.1875,0.6875,1.1875,0.6875,1.125,0.7188,1.125,0.6875,1.1875,0.7188,1.125,0.7188,1.1875,0.7188,1.1875,0.7188,1.125,0.75,1.125,0.7188,1.1875,0.75,1.125,0.75,1.1875,0.75,1.1875,0.75,1.125,0.7813,1.125,0.75,1.1875,0.7813,1.125,0.7813,1.1875,0.7813,1.1875,0.7813,1.125,0.8125,1.125,0.7813,1.1875,0.8125,1.125,0.8125,1.1875,0.8125,1.1875,0.8125,1.125,0.8438,1.125,0.8125,1.1875,0.8438,1.125,0.8438,1.1875,0.8438,1.1875,0.8438,1.125,0.875,1.125,0.8438,1.1875,0.875,1.125,0.875,1.1875,0.875,1.1875,0.875,1.125,0.9063,1.125,0.875,1.1875,0.9063,1.125,0.9063,1.1875,0.9063,1.1875,0.9063,1.125,0.9375,1.125,0.9063,1.1875,0.9375,1.125,0.9375,1.1875,0.9375,1.1875,0.9375,1.125,0.9688,1.125,0.9375,1.1875,0.9688,1.125,0.9688,1.1875,0.9688,1.1875,0.9688,1.125,1.0,1.125,0.9688,1.1875,1.0,1.125,1.0,1.1875,0.0,1.125,0.0,1.0625,0.0312,1.0625,0.0,1.125,0.0312,1.0625,0.0312,1.125,0.0312,1.125,0.0312,1.0625,0.0625,1.0625,0.0312,1.125,0.0625,1.0625,0.0625,1.125,0.0625,1.125,0.0625,1.0625,0.0938,1.0625,0.0625,1.125,0.0938,1.0625,0.0938,1.125,0.0938,1.125,0.0938,1.0625,0.125,1.0625,0.0938,1.125,0.125,1.0625,0.125,1.125,0.125,1.125,0.125,1.0625,0.1562,1.0625,0.125,1.125,0.1562,1.0625,0.1562,1.125,0.1562,1.125,0.1562,1.0625,0.1875,1.0625,0.1562,1.125,0.1875,1.0625,0.1875,1.125,0.1875,1.125,0.1875,1.0625,0.2187,1.0625,0.1875,1.125,0.2187,1.0625,0.2187,1.125,0.2187,1.125,0.2187,1.0625,0.25,1.0625,0.2187,1.125,0.25,1.0625,0.25,1.125,0.25,1.125,0.25,1.0625,0.2812,1.0625,0.25,1.125,0.2812,1.0625,0.2812,1.125,0.2812,1.125,0.2812,1.0625,0.3125,1.0625,0.2812,1.125,0.3125,1.0625,0.3125,1.125,0.3125,1.125,0.3125,1.0625,0.3437,1.0625,0.3125,1.125,0.3437,1.0625,0.3437,1.125,0.3437,1.125,0.3437,1.0625,0.375,1.0625,0.3437,1.125,0.375,1.0625,0.375,1.125,0.375,1.125,0.375,1.0625,0.4062,1.0625,0.375,1.125,0.4062,1.0625,0.4062,1.125,0.4062,1.125,0.4062,1.0625,0.4375,1.0625,0.4062,1.125,0.4375,1.0625,0.4375,1.125,0.4375,1.125,0.4375,1.0625,0.4688,1.0625,0.4375,1.125,0.4688,1.0625,0.4688,1.125,0.4688,1.125,0.4688,1.0625,0.5,1.0625,0.4688,1.125,0.5,1.0625,0.5,1.125,0.5,1.125,0.5,1.0625,0.5313,1.0625,0.5,1.125,0.5313,1.0625,0.5313,1.125,0.5313,1.125,0.5313,1.0625,0.5625,1.0625,0.5313,1.125,0.5625,1.0625,0.5625,1.125,0.5625,1.125,0.5625,1.0625,0.5938,1.0625,0.5625,1.125,0.5938,1.0625,0.5938,1.125,0.5938,1.125,0.5938,1.0625,0.625,1.0625,0.5938,1.125,0.625,1.0625,0.625,1.125,0.625,1.125,0.625,1.0625,0.6563,1.0625,0.625,1.125,0.6563,1.0625,0.6563,1.125,0.6563,1.125,0.6563,1.0625,0.6875,1.0625,0.6563,1.125,0.6875,1.0625,0.6875,1.125,0.6875,1.125,0.6875,1.0625,0.7188,1.0625,0.6875,1.125,0.7188,1.0625,0.7188,1.125,0.7188,1.125,0.7188,1.0625,0.75,1.0625,0.7188,1.125,0.75,1.0625,0.75,1.125,0.75,1.125,0.75,1.0625,0.7813,1.0625,0.75,1.125,0.7813,1.0625,0.7813,1.125,0.7813,1.125,0.7813,1.0625,0.8125,1.0625,0.7813,1.125,0.8125,1.0625,0.8125,1.125,0.8125,1.125,0.8125,1.0625,0.8438,1.0625,0.8125,1.125,0.8438,1.0625,0.8438,1.125,0.8438,1.125,0.8438,1.0625,0.875,1.0625,0.8438,1.125,0.875,1.0625,0.875,1.125,0.875,1.125,0.875,1.0625,0.9063,1.0625,0.875,1.125,0.9063,1.0625,0.9063,1.125,0.9063,1.125,0.9063,1.0625,0.9375,1.0625,0.9063,1.125,0.9375,1.0625,0.9375,1.125,0.9375,1.125,0.9375,1.0625,0.9688,1.0625,0.9375,1.125,0.9688,1.0625,0.9688,1.125,0.9688,1.125,0.9688,1.0625,1.0,1.0625,0.9688,1.125,1.0,1.0625,1.0,1.125,0.0,1.0,0.0312,1.0625,0.0,1.0625,0.0312,1.0,0.0625,1.0625,0.0312,1.0625,0.0625,1.0,0.0938,1.0625,0.0625,1.0625,0.0938,1.0,0.125,1.0625,0.0938,1.0625,0.125,1.0,0.1562,1.0625,0.125,1.0625,0.1562,1.0,0.1875,1.0625,0.1562,1.0625,0.1875,1.0,0.2187,1.0625,0.1875,1.0625,0.2187,1.0,0.25,1.0625,0.2187,1.0625,0.25,1.0,0.2812,1.0625,0.25,1.0625,0.2812,1.0,0.3125,1.0625,0.2812,1.0625,0.3125,1.0,0.3437,1.0625,0.3125,1.0625,0.3437,1.0,0.375,1.0625,0.3437,1.0625,0.375,1.0,0.4062,1.0625,0.375,1.0625,0.4062,1.0,0.4375,1.0625,0.4062,1.0625,0.4375,1.0,0.4688,1.0625,0.4375,1.0625,0.4688,1.0,0.5,1.0625,0.4688,1.0625,0.5,1.0,0.5313,1.0625,0.5,1.0625,0.5313,1.0,0.5625,1.0625,0.5313,1.0625,0.5625,1.0,0.5938,1.0625,0.5625,1.0625,0.5938,1.0,0.625,1.0625,0.5938,1.0625,0.625,1.0,0.6563,1.0625,0.625,1.0625,0.6563,1.0,0.6875,1.0625,0.6563,1.0625,0.6875,1.0,0.7188,1.0625,0.6875,1.0625,0.7188,1.0,0.75,1.0625,0.7188,1.0625,0.75,1.0,0.7813,1.0625,0.75,1.0625,0.7813,1.0,0.8125,1.0625,0.7813,1.0625,0.8125,1.0,0.8438,1.0625,0.8125,1.0625,0.8438,1.0,0.875,1.0625,0.8438,1.0625,0.875,1.0,0.9063,1.0625,0.875,1.0625,0.9063,1.0,0.9375,1.0625,0.9063,1.0625,0.9375,1.0,0.9688,1.0625,0.9375,1.0625,0.9688,1.0,1.0,1.0625,0.9688,1.0625],"uvs2":null,"colors":null,"hasVertexAlpha":false,"matricesIndices":null,"matricesWeights":null,"matricesIndicesExtra":null,"matricesWeightsExtra":null,"indices":[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,1984,1985,1986,1987,1988,1989,1990,1991,1992,1993,1994,1995,1996,1997,1998,1999,2000,2001,2002,2003,2004,2005,2006,2007,2008,2009,2010,2011,2012,2013,2014,2015,2016,2017,2018,2019,2020,2021,2022,2023,2024,2025,2026,2027,2028,2029,2030,2031,2032,2033,2034,2035,2036,2037,2038,2039,2040,2041,2042,2043,2044,2045,2046,2047,2048,2049,2050,2051,2052,2053,2054,2055,2056,2057,2058,2059,2060,2061,2062,2063,2064,2065,2066,2067,2068,2069,2070,2071,2072,2073,2074,2075,2076,2077,2078,2079,2080,2081,2082,2083,2084,2085,2086,2087,2088,2089,2090,2091,2092,2093,2094,2095,2096,2097,2098,2099,2100,2101,2102,2103,2104,2105,2106,2107,2108,2109,2110,2111,2112,2113,2114,2115,2116,2117,2118,2119,2120,2121,2122,2123,2124,2125,2126,2127,2128,2129,2130,2131,2132,2133,2134,2135,2136,2137,2138,2139,2140,2141,2142,2143,2144,2145,2146,2147,2148,2149,2150,2151,2152,2153,2154,2155,2156,2157,2158,2159,2160,2161,2162,2163,2164,2165,2166,2167,2168,2169,2170,2171,2172,2173,2174,2175,2176,2177,2178,2179,2180,2181,2182,2183,2184,2185,2186,2187,2188,2189,2190,2191,2192,2193,2194,2195,2196,2197,2198,2199,2200,2201,2202,2203,2204,2205,2206,2207,2208,2209,2210,2211,2212,2213,2214,2215,2216,2217,2218,2219,2220,2221,2222,2223,2224,2225,2226,2227,2228,2229,2230,2231,2232,2233,2234,2235,2236,2237,2238,2239,2240,2241,2242,2243,2244,2245,2246,2247,2248,2249,2250,2251,2252,2253,2254,2255,2256,2257,2258,2259,2260,2261,2262,2263,2264,2265,2266,2267,2268,2269,2270,2271,2272,2273,2274,2275,2276,2277,2278,2279,2280,2281,2282,2283,2284,2285,2286,2287,2288,2289,2290,2291,2292,2293,2294,2295,2296,2297,2298,2299,2300,2301,2302,2303,2304,2305,2306,2307,2308,2309,2310,2311,2312,2313,2314,2315,2316,2317,2318,2319,2320,2321,2322,2323,2324,2325,2326,2327,2328,2329,2330,2331,2332,2333,2334,2335,2336,2337,2338,2339,2340,2341,2342,2343,2344,2345,2346,2347,2348,2349,2350,2351,2352,2353,2354,2355,2356,2357,2358,2359,2360,2361,2362,2363,2364,2365,2366,2367,2368,2369,2370,2371,2372,2373,2374,2375,2376,2377,2378,2379,2380,2381,2382,2383,2384,2385,2386,2387,2388,2389,2390,2391,2392,2393,2394,2395,2396,2397,2398,2399,2400,2401,2402,2403,2404,2405,2406,2407,2408,2409,2410,2411,2412,2413,2414,2415,2416,2417,2418,2419,2420,2421,2422,2423,2424,2425,2426,2427,2428,2429,2430,2431,2432,2433,2434,2435,2436,2437,2438,2439,2440,2441,2442,2443,2444,2445,2446,2447,2448,2449,2450,2451,2452,2453,2454,2455,2456,2457,2458,2459,2460,2461,2462,2463,2464,2465,2466,2467,2468,2469,2470,2471,2472,2473,2474,2475,2476,2477,2478,2479,2480,2481,2482,2483,2484,2485,2486,2487,2488,2489,2490,2491,2492,2493,2494,2495,2496,2497,2498,2499,2500,2501,2502,2503,2504,2505,2506,2507,2508,2509,2510,2511,2512,2513,2514,2515,2516,2517,2518,2519,2520,2521,2522,2523,2524,2525,2526,2527,2528,2529,2530,2531,2532,2533,2534,2535,2536,2537,2538,2539,2540,2541,2542,2543,2544,2545,2546,2547,2548,2549,2550,2551,2552,2553,2554,2555,2556,2557,2558,2559,2560,2561,2562,2563,2564,2565,2566,2567,2568,2569,2570,2571,2572,2573,2574,2575,2576,2577,2578,2579,2580,2581,2582,2583,2584,2585,2586,2587,2588,2589,2590,2591,2592,2593,2594,2595,2596,2597,2598,2599,2600,2601,2602,2603,2604,2605,2606,2607,2608,2609,2610,2611,2612,2613,2614,2615,2616,2617,2618,2619,2620,2621,2622,2623,2624,2625,2626,2627,2628,2629,2630,2631,2632,2633,2634,2635,2636,2637,2638,2639,2640,2641,2642,2643,2644,2645,2646,2647,2648,2649,2650,2651,2652,2653,2654,2655,2656,2657,2658,2659,2660,2661,2662,2663,2664,2665,2666,2667,2668,2669,2670,2671,2672,2673,2674,2675,2676,2677,2678,2679,2680,2681,2682,2683,2684,2685,2686,2687,2688,2689,2690,2691,2692,2693,2694,2695,2696,2697,2698,2699,2700,2701,2702,2703,2704,2705,2706,2707,2708,2709,2710,2711,2712,2713,2714,2715,2716,2717,2718,2719,2720,2721,2722,2723,2724,2725,2726,2727,2728,2729,2730,2731,2732,2733,2734,2735,2736,2737,2738,2739,2740,2741,2742,2743,2744,2745,2746,2747,2748,2749,2750,2751,2752,2753,2754,2755,2756,2757,2758,2759,2760,2761,2762,2763,2764,2765,2766,2767,2768,2769,2770,2771,2772,2773,2774,2775,2776,2777,2778,2779,2780,2781,2782,2783,2784,2785,2786,2787,2788,2789,2790,2791,2792,2793,2794,2795,2796,2797,2798,2799,2800,2801,2802,2803,2804,2805,2806,2807,2808,2809,2810,2811,2812,2813,2814,2815,2816,2817,2818,2819,2820,2821,2822,2823,2824,2825,2826,2827,2828,2829,2830,2831,2832,2833,2834,2835,2836,2837,2838,2839,2840,2841,2842,2843,2844,2845,2846,2847,2848,2849,2850,2851,2852,2853,2854,2855,2856,2857,2858,2859,2860,2861,2862,2863,2864,2865,2866,2867,2868,2869,2870,2871,2872,2873,2874,2875,2876,2877,2878,2879],"receiveShadows":true,"infiniteDistance":false,"billboardMode":0,"visibility":1.0,"subMeshes":[{"materialIndex":0,"verticesStart":0,"verticesCount":2880,"indexStart":0,"indexCount":2880}],"instances":null,"skeletonId":-1,"numBoneInfluencers":4,"applyFog":true,"lodMeshIds":null,"lodDistances":null,"lodCoverages":null,"rotation":null,"scaling":[1.0,1.0,1.0],"rotationQuaternion":[0.0,0.0,0.0,1.0],"actions":null,"checkCollisions":false,"pickable":false,"showBoundingBox":false,"showSubMeshesBoundingBox":false,"alphaIndex":1000,"physicsImpostor":0,"physicsMass":0.0,"physicsFriction":0.0,"physicsRestitution":0.0,"name":"StandardSurfaceMeshMaxLight_1","id":"57bbf667-4bf9-4453-8787-dd1f8673b543","parentId":null,"position":[6.0,0.0,0.0],"animations":[],"autoAnimate":true,"autoAnimateFrom":0,"autoAnimateTo":100,"autoAnimateLoop":true,"metadata":null},{"materialId":"80e773a3-0b02-41a1-bd0f-4925d4fad2db","isEnabled":true,"isVisible":true,"positions":[0.0,1.0,0.0,0.0,0.9808,0.1951,-0.0381,0.9808,0.1913,0.0,1.0,0.0,-0.0381,0.9808,0.1913,-0.0747,0.9808,0.1802,0.0,1.0,0.0,-0.0747,0.9808,0.1802,-0.1084,0.9808,0.1622,0.0,1.0,0.0,-0.1084,0.9808,0.1622,-0.1379,0.9808,0.1379,0.0,1.0,0.0,-0.1379,0.9808,0.1379,-0.1622,0.9808,0.1084,0.0,1.0,0.0,-0.1622,0.9808,0.1084,-0.1802,0.9808,0.0747,0.0,1.0,0.0,-0.1802,0.9808,0.0747,-0.1913,0.9808,0.0381,0.0,1.0,0.0,-0.1913,0.9808,0.0381,-0.1951,0.9808,0.0,0.0,1.0,0.0,-0.1951,0.9808,0.0,-0.1913,0.9808,-0.0381,0.0,1.0,0.0,-0.1913,0.9808,-0.0381,-0.1802,0.9808,-0.0747,0.0,1.0,0.0,-0.1802,0.9808,-0.0747,-0.1622,0.9808,-0.1084,0.0,1.0,0.0,-0.1622,0.9808,-0.1084,-0.1379,0.9808,-0.1379,0.0,1.0,0.0,-0.1379,0.9808,-0.1379,-0.1084,0.9808,-0.1622,0.0,1.0,0.0,-0.1084,0.9808,-0.1622,-0.0747,0.9808,-0.1802,0.0,1.0,0.0,-0.0747,0.9808,-0.1802,-0.0381,0.9808,-0.1913,0.0,1.0,0.0,-0.0381,0.9808,-0.1913,0.0,0.9808,-0.1951,0.0,1.0,0.0,0.0,0.9808,-0.1951,0.0381,0.9808,-0.1913,0.0,1.0,0.0,0.0381,0.9808,-0.1913,0.0747,0.9808,-0.1802,0.0,1.0,0.0,0.0747,0.9808,-0.1802,0.1084,0.9808,-0.1622,0.0,1.0,0.0,0.1084,0.9808,-0.1622,0.1379,0.9808,-0.1379,0.0,1.0,0.0,0.1379,0.9808,-0.1379,0.1622,0.9808,-0.1084,0.0,1.0,0.0,0.1622,0.9808,-0.1084,0.1802,0.9808,-0.0747,0.0,1.0,0.0,0.1802,0.9808,-0.0747,0.1913,0.9808,-0.0381,0.0,1.0,0.0,0.1913,0.9808,-0.0381,0.1951,0.9808,0.0,0.0,1.0,0.0,0.1951,0.9808,0.0,0.1913,0.9808,0.0381,0.0,1.0,0.0,0.1913,0.9808,0.0381,0.1802,0.9808,0.0747,0.0,1.0,0.0,0.1802,0.9808,0.0747,0.1622,0.9808,0.1084,0.0,1.0,0.0,0.1622,0.9808,0.1084,0.1379,0.9808,0.1379,0.0,1.0,0.0,0.1379,0.9808,0.1379,0.1084,0.9808,0.1622,0.0,1.0,0.0,0.1084,0.9808,0.1622,0.0747,0.9808,0.1802,0.0,1.0,0.0,0.0747,0.9808,0.1802,0.0381,0.9808,0.1913,0.0,1.0,0.0,0.0381,0.9808,0.1913,0.0,0.9808,0.1951,0.0,0.9808,0.1951,0.0,0.9239,0.3827,-0.0747,0.9239,0.3753,0.0,0.9808,0.1951,-0.0747,0.9239,0.3753,-0.0381,0.9808,0.1913,-0.0381,0.9808,0.1913,-0.0747,0.9239,0.3753,-0.1464,0.9239,0.3536,-0.0381,0.9808,0.1913,-0.1464,0.9239,0.3536,-0.0747,0.9808,0.1802,-0.0747,0.9808,0.1802,-0.1464,0.9239,0.3536,-0.2126,0.9239,0.3182,-0.0747,0.9808,0.1802,-0.2126,0.9239,0.3182,-0.1084,0.9808,0.1622,-0.1084,0.9808,0.1622,-0.2126,0.9239,0.3182,-0.2706,0.9239,0.2706,-0.1084,0.9808,0.1622,-0.2706,0.9239,0.2706,-0.1379,0.9808,0.1379,-0.1379,0.9808,0.1379,-0.2706,0.9239,0.2706,-0.3182,0.9239,0.2126,-0.1379,0.9808,0.1379,-0.3182,0.9239,0.2126,-0.1622,0.9808,0.1084,-0.1622,0.9808,0.1084,-0.3182,0.9239,0.2126,-0.3536,0.9239,0.1464,-0.1622,0.9808,0.1084,-0.3536,0.9239,0.1464,-0.1802,0.9808,0.0747,-0.1802,0.9808,0.0747,-0.3536,0.9239,0.1464,-0.3753,0.9239,0.0747,-0.1802,0.9808,0.0747,-0.3753,0.9239,0.0747,-0.1913,0.9808,0.0381,-0.1913,0.9808,0.0381,-0.3753,0.9239,0.0747,-0.3827,0.9239,0.0,-0.1913,0.9808,0.0381,-0.3827,0.9239,0.0,-0.1951,0.9808,0.0,-0.1951,0.9808,0.0,-0.3827,0.9239,0.0,-0.3753,0.9239,-0.0747,-0.1951,0.9808,0.0,-0.3753,0.9239,-0.0747,-0.1913,0.9808,-0.0381,-0.1913,0.9808,-0.0381,-0.3753,0.9239,-0.0747,-0.3536,0.9239,-0.1464,-0.1913,0.9808,-0.0381,-0.3536,0.9239,-0.1464,-0.1802,0.9808,-0.0747,-0.1802,0.9808,-0.0747,-0.3536,0.9239,-0.1464,-0.3182,0.9239,-0.2126,-0.1802,0.9808,-0.0747,-0.3182,0.9239,-0.2126,-0.1622,0.9808,-0.1084,-0.1622,0.9808,-0.1084,-0.3182,0.9239,-0.2126,-0.2706,0.9239,-0.2706,-0.1622,0.9808,-0.1084,-0.2706,0.9239,-0.2706,-0.1379,0.9808,-0.1379,-0.1379,0.9808,-0.1379,-0.2706,0.9239,-0.2706,-0.2126,0.9239,-0.3182,-0.1379,0.9808,-0.1379,-0.2126,0.9239,-0.3182,-0.1084,0.9808,-0.1622,-0.1084,0.9808,-0.1622,-0.2126,0.9239,-0.3182,-0.1464,0.9239,-0.3536,-0.1084,0.9808,-0.1622,-0.1464,0.9239,-0.3536,-0.0747,0.9808,-0.1802,-0.0747,0.9808,-0.1802,-0.1464,0.9239,-0.3536,-0.0747,0.9239,-0.3753,-0.0747,0.9808,-0.1802,-0.0747,0.9239,-0.3753,-0.0381,0.9808,-0.1913,-0.0381,0.9808,-0.1913,-0.0747,0.9239,-0.3753,0.0,0.9239,-0.3827,-0.0381,0.9808,-0.1913,0.0,0.9239,-0.3827,0.0,0.9808,-0.1951,0.0,0.9808,-0.1951,0.0,0.9239,-0.3827,0.0747,0.9239,-0.3753,0.0,0.9808,-0.1951,0.0747,0.9239,-0.3753,0.0381,0.9808,-0.1913,0.0381,0.9808,-0.1913,0.0747,0.9239,-0.3753,0.1464,0.9239,-0.3536,0.0381,0.9808,-0.1913,0.1464,0.9239,-0.3536,0.0747,0.9808,-0.1802,0.0747,0.9808,-0.1802,0.1464,0.9239,-0.3536,0.2126,0.9239,-0.3182,0.0747,0.9808,-0.1802,0.2126,0.9239,-0.3182,0.1084,0.9808,-0.1622,0.1084,0.9808,-0.1622,0.2126,0.9239,-0.3182,0.2706,0.9239,-0.2706,0.1084,0.9808,-0.1622,0.2706,0.9239,-0.2706,0.1379,0.9808,-0.1379,0.1379,0.9808,-0.1379,0.2706,0.9239,-0.2706,0.3182,0.9239,-0.2126,0.1379,0.9808,-0.1379,0.3182,0.9239,-0.2126,0.1622,0.9808,-0.1084,0.1622,0.9808,-0.1084,0.3182,0.9239,-0.2126,0.3536,0.9239,-0.1464,0.1622,0.9808,-0.1084,0.3536,0.9239,-0.1464,0.1802,0.9808,-0.0747,0.1802,0.9808,-0.0747,0.3536,0.9239,-0.1464,0.3753,0.9239,-0.0747,0.1802,0.9808,-0.0747,0.3753,0.9239,-0.0747,0.1913,0.9808,-0.0381,0.1913,0.9808,-0.0381,0.3753,0.9239,-0.0747,0.3827,0.9239,0.0,0.1913,0.9808,-0.0381,0.3827,0.9239,0.0,0.1951,0.9808,0.0,0.1951,0.9808,0.0,0.3827,0.9239,0.0,0.3753,0.9239,0.0747,0.1951,0.9808,0.0,0.3753,0.9239,0.0747,0.1913,0.9808,0.0381,0.1913,0.9808,0.0381,0.3753,0.9239,0.0747,0.3536,0.9239,0.1464,0.1913,0.9808,0.0381,0.3536,0.9239,0.1464,0.1802,0.9808,0.0747,0.1802,0.9808,0.0747,0.3536,0.9239,0.1464,0.3182,0.9239,0.2126,0.1802,0.9808,0.0747,0.3182,0.9239,0.2126,0.1622,0.9808,0.1084,0.1622,0.9808,0.1084,0.3182,0.9239,0.2126,0.2706,0.9239,0.2706,0.1622,0.9808,0.1084,0.2706,0.9239,0.2706,0.1379,0.9808,0.1379,0.1379,0.9808,0.1379,0.2706,0.9239,0.2706,0.2126,0.9239,0.3182,0.1379,0.9808,0.1379,0.2126,0.9239,0.3182,0.1084,0.9808,0.1622,0.1084,0.9808,0.1622,0.2126,0.9239,0.3182,0.1464,0.9239,0.3536,0.1084,0.9808,0.1622,0.1464,0.9239,0.3536,0.0747,0.9808,0.1802,0.0747,0.9808,0.1802,0.1464,0.9239,0.3536,0.0747,0.9239,0.3753,0.0747,0.9808,0.1802,0.0747,0.9239,0.3753,0.0381,0.9808,0.1913,0.0381,0.9808,0.1913,0.0747,0.9239,0.3753,0.0,0.9239,0.3827,0.0381,0.9808,0.1913,0.0,0.9239,0.3827,0.0,0.9808,0.1951,0.0,0.9239,0.3827,0.0,0.8315,0.5556,-0.1084,0.8315,0.5449,0.0,0.9239,0.3827,-0.1084,0.8315,0.5449,-0.0747,0.9239,0.3753,-0.0747,0.9239,0.3753,-0.1084,0.8315,0.5449,-0.2126,0.8315,0.5133,-0.0747,0.9239,0.3753,-0.2126,0.8315,0.5133,-0.1464,0.9239,0.3536,-0.1464,0.9239,0.3536,-0.2126,0.8315,0.5133,-0.3087,0.8315,0.4619,-0.1464,0.9239,0.3536,-0.3087,0.8315,0.4619,-0.2126,0.9239,0.3182,-0.2126,0.9239,0.3182,-0.3087,0.8315,0.4619,-0.3928,0.8315,0.3928,-0.2126,0.9239,0.3182,-0.3928,0.8315,0.3928,-0.2706,0.9239,0.2706,-0.2706,0.9239,0.2706,-0.3928,0.8315,0.3928,-0.4619,0.8315,0.3087,-0.2706,0.9239,0.2706,-0.4619,0.8315,0.3087,-0.3182,0.9239,0.2126,-0.3182,0.9239,0.2126,-0.4619,0.8315,0.3087,-0.5133,0.8315,0.2126,-0.3182,0.9239,0.2126,-0.5133,0.8315,0.2126,-0.3536,0.9239,0.1464,-0.3536,0.9239,0.1464,-0.5133,0.8315,0.2126,-0.5449,0.8315,0.1084,-0.3536,0.9239,0.1464,-0.5449,0.8315,0.1084,-0.3753,0.9239,0.0747,-0.3753,0.9239,0.0747,-0.5449,0.8315,0.1084,-0.5556,0.8315,0.0,-0.3753,0.9239,0.0747,-0.5556,0.8315,0.0,-0.3827,0.9239,0.0,-0.3827,0.9239,0.0,-0.5556,0.8315,0.0,-0.5449,0.8315,-0.1084,-0.3827,0.9239,0.0,-0.5449,0.8315,-0.1084,-0.3753,0.9239,-0.0747,-0.3753,0.9239,-0.0747,-0.5449,0.8315,-0.1084,-0.5133,0.8315,-0.2126,-0.3753,0.9239,-0.0747,-0.5133,0.8315,-0.2126,-0.3536,0.9239,-0.1464,-0.3536,0.9239,-0.1464,-0.5133,0.8315,-0.2126,-0.4619,0.8315,-0.3087,-0.3536,0.9239,-0.1464,-0.4619,0.8315,-0.3087,-0.3182,0.9239,-0.2126,-0.3182,0.9239,-0.2126,-0.4619,0.8315,-0.3087,-0.3928,0.8315,-0.3928,-0.3182,0.9239,-0.2126,-0.3928,0.8315,-0.3928,-0.2706,0.9239,-0.2706,-0.2706,0.9239,-0.2706,-0.3928,0.8315,-0.3928,-0.3087,0.8315,-0.4619,-0.2706,0.9239,-0.2706,-0.3087,0.8315,-0.4619,-0.2126,0.9239,-0.3182,-0.2126,0.9239,-0.3182,-0.3087,0.8315,-0.4619,-0.2126,0.8315,-0.5133,-0.2126,0.9239,-0.3182,-0.2126,0.8315,-0.5133,-0.1464,0.9239,-0.3536,-0.1464,0.9239,-0.3536,-0.2126,0.8315,-0.5133,-0.1084,0.8315,-0.5449,-0.1464,0.9239,-0.3536,-0.1084,0.8315,-0.5449,-0.0747,0.9239,-0.3753,-0.0747,0.9239,-0.3753,-0.1084,0.8315,-0.5449,0.0,0.8315,-0.5556,-0.0747,0.9239,-0.3753,0.0,0.8315,-0.5556,0.0,0.9239,-0.3827,0.0,0.9239,-0.3827,0.0,0.8315,-0.5556,0.1084,0.8315,-0.5449,0.0,0.9239,-0.3827,0.1084,0.8315,-0.5449,0.0747,0.9239,-0.3753,0.0747,0.9239,-0.3753,0.1084,0.8315,-0.5449,0.2126,0.8315,-0.5133,0.0747,0.9239,-0.3753,0.2126,0.8315,-0.5133,0.1464,0.9239,-0.3536,0.1464,0.9239,-0.3536,0.2126,0.8315,-0.5133,0.3087,0.8315,-0.4619,0.1464,0.9239,-0.3536,0.3087,0.8315,-0.4619,0.2126,0.9239,-0.3182,0.2126,0.9239,-0.3182,0.3087,0.8315,-0.4619,0.3928,0.8315,-0.3928,0.2126,0.9239,-0.3182,0.3928,0.8315,-0.3928,0.2706,0.9239,-0.2706,0.2706,0.9239,-0.2706,0.3928,0.8315,-0.3928,0.4619,0.8315,-0.3087,0.2706,0.9239,-0.2706,0.4619,0.8315,-0.3087,0.3182,0.9239,-0.2126,0.3182,0.9239,-0.2126,0.4619,0.8315,-0.3087,0.5133,0.8315,-0.2126,0.3182,0.9239,-0.2126,0.5133,0.8315,-0.2126,0.3536,0.9239,-0.1464,0.3536,0.9239,-0.1464,0.5133,0.8315,-0.2126,0.5449,0.8315,-0.1084,0.3536,0.9239,-0.1464,0.5449,0.8315,-0.1084,0.3753,0.9239,-0.0747,0.3753,0.9239,-0.0747,0.5449,0.8315,-0.1084,0.5556,0.8315,0.0,0.3753,0.9239,-0.0747,0.5556,0.8315,0.0,0.3827,0.9239,0.0,0.3827,0.9239,0.0,0.5556,0.8315,0.0,0.5449,0.8315,0.1084,0.3827,0.9239,0.0,0.5449,0.8315,0.1084,0.3753,0.9239,0.0747,0.3753,0.9239,0.0747,0.5449,0.8315,0.1084,0.5133,0.8315,0.2126,0.3753,0.9239,0.0747,0.5133,0.8315,0.2126,0.3536,0.9239,0.1464,0.3536,0.9239,0.1464,0.5133,0.8315,0.2126,0.4619,0.8315,0.3087,0.3536,0.9239,0.1464,0.4619,0.8315,0.3087,0.3182,0.9239,0.2126,0.3182,0.9239,0.2126,0.4619,0.8315,0.3087,0.3928,0.8315,0.3928,0.3182,0.9239,0.2126,0.3928,0.8315,0.3928,0.2706,0.9239,0.2706,0.2706,0.9239,0.2706,0.3928,0.8315,0.3928,0.3087,0.8315,0.4619,0.2706,0.9239,0.2706,0.3087,0.8315,0.4619,0.2126,0.9239,0.3182,0.2126,0.9239,0.3182,0.3087,0.8315,0.4619,0.2126,0.8315,0.5133,0.2126,0.9239,0.3182,0.2126,0.8315,0.5133,0.1464,0.9239,0.3536,0.1464,0.9239,0.3536,0.2126,0.8315,0.5133,0.1084,0.8315,0.5449,0.1464,0.9239,0.3536,0.1084,0.8315,0.5449,0.0747,0.9239,0.3753,0.0747,0.9239,0.3753,0.1084,0.8315,0.5449,0.0,0.8315,0.5556,0.0747,0.9239,0.3753,0.0,0.8315,0.5556,0.0,0.9239,0.3827,0.0,0.8315,0.5556,0.0,0.7071,0.7071,-0.1379,0.7071,0.6935,0.0,0.8315,0.5556,-0.1379,0.7071,0.6935,-0.1084,0.8315,0.5449,-0.1084,0.8315,0.5449,-0.1379,0.7071,0.6935,-0.2706,0.7071,0.6533,-0.1084,0.8315,0.5449,-0.2706,0.7071,0.6533,-0.2126,0.8315,0.5133,-0.2126,0.8315,0.5133,-0.2706,0.7071,0.6533,-0.3928,0.7071,0.5879,-0.2126,0.8315,0.5133,-0.3928,0.7071,0.5879,-0.3087,0.8315,0.4619,-0.3087,0.8315,0.4619,-0.3928,0.7071,0.5879,-0.5,0.7071,0.5,-0.3087,0.8315,0.4619,-0.5,0.7071,0.5,-0.3928,0.8315,0.3928,-0.3928,0.8315,0.3928,-0.5,0.7071,0.5,-0.5879,0.7071,0.3928,-0.3928,0.8315,0.3928,-0.5879,0.7071,0.3928,-0.4619,0.8315,0.3087,-0.4619,0.8315,0.3087,-0.5879,0.7071,0.3928,-0.6533,0.7071,0.2706,-0.4619,0.8315,0.3087,-0.6533,0.7071,0.2706,-0.5133,0.8315,0.2126,-0.5133,0.8315,0.2126,-0.6533,0.7071,0.2706,-0.6935,0.7071,0.1379,-0.5133,0.8315,0.2126,-0.6935,0.7071,0.1379,-0.5449,0.8315,0.1084,-0.5449,0.8315,0.1084,-0.6935,0.7071,0.1379,-0.7071,0.7071,0.0,-0.5449,0.8315,0.1084,-0.7071,0.7071,0.0,-0.5556,0.8315,0.0,-0.5556,0.8315,0.0,-0.7071,0.7071,0.0,-0.6935,0.7071,-0.1379,-0.5556,0.8315,0.0,-0.6935,0.7071,-0.1379,-0.5449,0.8315,-0.1084,-0.5449,0.8315,-0.1084,-0.6935,0.7071,-0.1379,-0.6533,0.7071,-0.2706,-0.5449,0.8315,-0.1084,-0.6533,0.7071,-0.2706,-0.5133,0.8315,-0.2126,-0.5133,0.8315,-0.2126,-0.6533,0.7071,-0.2706,-0.5879,0.7071,-0.3928,-0.5133,0.8315,-0.2126,-0.5879,0.7071,-0.3928,-0.4619,0.8315,-0.3087,-0.4619,0.8315,-0.3087,-0.5879,0.7071,-0.3928,-0.5,0.7071,-0.5,-0.4619,0.8315,-0.3087,-0.5,0.7071,-0.5,-0.3928,0.8315,-0.3928,-0.3928,0.8315,-0.3928,-0.5,0.7071,-0.5,-0.3928,0.7071,-0.5879,-0.3928,0.8315,-0.3928,-0.3928,0.7071,-0.5879,-0.3087,0.8315,-0.4619,-0.3087,0.8315,-0.4619,-0.3928,0.7071,-0.5879,-0.2706,0.7071,-0.6533,-0.3087,0.8315,-0.4619,-0.2706,0.7071,-0.6533,-0.2126,0.8315,-0.5133,-0.2126,0.8315,-0.5133,-0.2706,0.7071,-0.6533,-0.1379,0.7071,-0.6935,-0.2126,0.8315,-0.5133,-0.1379,0.7071,-0.6935,-0.1084,0.8315,-0.5449,-0.1084,0.8315,-0.5449,-0.1379,0.7071,-0.6935,0.0,0.7071,-0.7071,-0.1084,0.8315,-0.5449,0.0,0.7071,-0.7071,0.0,0.8315,-0.5556,0.0,0.8315,-0.5556,0.0,0.7071,-0.7071,0.138,0.7071,-0.6935,0.0,0.8315,-0.5556,0.138,0.7071,-0.6935,0.1084,0.8315,-0.5449,0.1084,0.8315,-0.5449,0.138,0.7071,-0.6935,0.2706,0.7071,-0.6533,0.1084,0.8315,-0.5449,0.2706,0.7071,-0.6533,0.2126,0.8315,-0.5133,0.2126,0.8315,-0.5133,0.2706,0.7071,-0.6533,0.3928,0.7071,-0.5879,0.2126,0.8315,-0.5133,0.3928,0.7071,-0.5879,0.3087,0.8315,-0.4619,0.3087,0.8315,-0.4619,0.3928,0.7071,-0.5879,0.5,0.7071,-0.5,0.3087,0.8315,-0.4619,0.5,0.7071,-0.5,0.3928,0.8315,-0.3928,0.3928,0.8315,-0.3928,0.5,0.7071,-0.5,0.5879,0.7071,-0.3928,0.3928,0.8315,-0.3928,0.5879,0.7071,-0.3928,0.4619,0.8315,-0.3087,0.4619,0.8315,-0.3087,0.5879,0.7071,-0.3928,0.6533,0.7071,-0.2706,0.4619,0.8315,-0.3087,0.6533,0.7071,-0.2706,0.5133,0.8315,-0.2126,0.5133,0.8315,-0.2126,0.6533,0.7071,-0.2706,0.6935,0.7071,-0.1379,0.5133,0.8315,-0.2126,0.6935,0.7071,-0.1379,0.5449,0.8315,-0.1084,0.5449,0.8315,-0.1084,0.6935,0.7071,-0.1379,0.7071,0.7071,0.0,0.5449,0.8315,-0.1084,0.7071,0.7071,0.0,0.5556,0.8315,0.0,0.5556,0.8315,0.0,0.7071,0.7071,0.0,0.6935,0.7071,0.138,0.5556,0.8315,0.0,0.6935,0.7071,0.138,0.5449,0.8315,0.1084,0.5449,0.8315,0.1084,0.6935,0.7071,0.138,0.6533,0.7071,0.2706,0.5449,0.8315,0.1084,0.6533,0.7071,0.2706,0.5133,0.8315,0.2126,0.5133,0.8315,0.2126,0.6533,0.7071,0.2706,0.5879,0.7071,0.3928,0.5133,0.8315,0.2126,0.5879,0.7071,0.3928,0.4619,0.8315,0.3087,0.4619,0.8315,0.3087,0.5879,0.7071,0.3928,0.5,0.7071,0.5,0.4619,0.8315,0.3087,0.5,0.7071,0.5,0.3928,0.8315,0.3928,0.3928,0.8315,0.3928,0.5,0.7071,0.5,0.3928,0.7071,0.5879,0.3928,0.8315,0.3928,0.3928,0.7071,0.5879,0.3087,0.8315,0.4619,0.3087,0.8315,0.4619,0.3928,0.7071,0.5879,0.2706,0.7071,0.6533,0.3087,0.8315,0.4619,0.2706,0.7071,0.6533,0.2126,0.8315,0.5133,0.2126,0.8315,0.5133,0.2706,0.7071,0.6533,0.1379,0.7071,0.6935,0.2126,0.8315,0.5133,0.1379,0.7071,0.6935,0.1084,0.8315,0.5449,0.1084,0.8315,0.5449,0.1379,0.7071,0.6935,0.0,0.7071,0.7071,0.1084,0.8315,0.5449,0.0,0.7071,0.7071,0.0,0.8315,0.5556,0.0,0.7071,0.7071,0.0,0.5556,0.8315,-0.1622,0.5556,0.8155,0.0,0.7071,0.7071,-0.1622,0.5556,0.8155,-0.1379,0.7071,0.6935,-0.1379,0.7071,0.6935,-0.1622,0.5556,0.8155,-0.3182,0.5556,0.7682,-0.1379,0.7071,0.6935,-0.3182,0.5556,0.7682,-0.2706,0.7071,0.6533,-0.2706,0.7071,0.6533,-0.3182,0.5556,0.7682,-0.4619,0.5556,0.6913,-0.2706,0.7071,0.6533,-0.4619,0.5556,0.6913,-0.3928,0.7071,0.5879,-0.3928,0.7071,0.5879,-0.4619,0.5556,0.6913,-0.5879,0.5556,0.5879,-0.3928,0.7071,0.5879,-0.5879,0.5556,0.5879,-0.5,0.7071,0.5,-0.5,0.7071,0.5,-0.5879,0.5556,0.5879,-0.6913,0.5556,0.4619,-0.5,0.7071,0.5,-0.6913,0.5556,0.4619,-0.5879,0.7071,0.3928,-0.5879,0.7071,0.3928,-0.6913,0.5556,0.4619,-0.7682,0.5556,0.3182,-0.5879,0.7071,0.3928,-0.7682,0.5556,0.3182,-0.6533,0.7071,0.2706,-0.6533,0.7071,0.2706,-0.7682,0.5556,0.3182,-0.8155,0.5556,0.1622,-0.6533,0.7071,0.2706,-0.8155,0.5556,0.1622,-0.6935,0.7071,0.1379,-0.6935,0.7071,0.1379,-0.8155,0.5556,0.1622,-0.8315,0.5556,0.0,-0.6935,0.7071,0.1379,-0.8315,0.5556,0.0,-0.7071,0.7071,0.0,-0.7071,0.7071,0.0,-0.8315,0.5556,0.0,-0.8155,0.5556,-0.1622,-0.7071,0.7071,0.0,-0.8155,0.5556,-0.1622,-0.6935,0.7071,-0.1379,-0.6935,0.7071,-0.1379,-0.8155,0.5556,-0.1622,-0.7682,0.5556,-0.3182,-0.6935,0.7071,-0.1379,-0.7682,0.5556,-0.3182,-0.6533,0.7071,-0.2706,-0.6533,0.7071,-0.2706,-0.7682,0.5556,-0.3182,-0.6913,0.5556,-0.4619,-0.6533,0.7071,-0.2706,-0.6913,0.5556,-0.4619,-0.5879,0.7071,-0.3928,-0.5879,0.7071,-0.3928,-0.6913,0.5556,-0.4619,-0.5879,0.5556,-0.5879,-0.5879,0.7071,-0.3928,-0.5879,0.5556,-0.5879,-0.5,0.7071,-0.5,-0.5,0.7071,-0.5,-0.5879,0.5556,-0.5879,-0.4619,0.5556,-0.6913,-0.5,0.7071,-0.5,-0.4619,0.5556,-0.6913,-0.3928,0.7071,-0.5879,-0.3928,0.7071,-0.5879,-0.4619,0.5556,-0.6913,-0.3182,0.5556,-0.7682,-0.3928,0.7071,-0.5879,-0.3182,0.5556,-0.7682,-0.2706,0.7071,-0.6533,-0.2706,0.7071,-0.6533,-0.3182,0.5556,-0.7682,-0.1622,0.5556,-0.8155,-0.2706,0.7071,-0.6533,-0.1622,0.5556,-0.8155,-0.1379,0.7071,-0.6935,-0.1379,0.7071,-0.6935,-0.1622,0.5556,-0.8155,0.0,0.5556,-0.8315,-0.1379,0.7071,-0.6935,0.0,0.5556,-0.8315,0.0,0.7071,-0.7071,0.0,0.7071,-0.7071,0.0,0.5556,-0.8315,0.1622,0.5556,-0.8155,0.0,0.7071,-0.7071,0.1622,0.5556,-0.8155,0.138,0.7071,-0.6935,0.138,0.7071,-0.6935,0.1622,0.5556,-0.8155,0.3182,0.5556,-0.7682,0.138,0.7071,-0.6935,0.3182,0.5556,-0.7682,0.2706,0.7071,-0.6533,0.2706,0.7071,-0.6533,0.3182,0.5556,-0.7682,0.4619,0.5556,-0.6913,0.2706,0.7071,-0.6533,0.4619,0.5556,-0.6913,0.3928,0.7071,-0.5879,0.3928,0.7071,-0.5879,0.4619,0.5556,-0.6913,0.5879,0.5556,-0.5879,0.3928,0.7071,-0.5879,0.5879,0.5556,-0.5879,0.5,0.7071,-0.5,0.5,0.7071,-0.5,0.5879,0.5556,-0.5879,0.6913,0.5556,-0.4619,0.5,0.7071,-0.5,0.6913,0.5556,-0.4619,0.5879,0.7071,-0.3928,0.5879,0.7071,-0.3928,0.6913,0.5556,-0.4619,0.7682,0.5556,-0.3182,0.5879,0.7071,-0.3928,0.7682,0.5556,-0.3182,0.6533,0.7071,-0.2706,0.6533,0.7071,-0.2706,0.7682,0.5556,-0.3182,0.8155,0.5556,-0.1622,0.6533,0.7071,-0.2706,0.8155,0.5556,-0.1622,0.6935,0.7071,-0.1379,0.6935,0.7071,-0.1379,0.8155,0.5556,-0.1622,0.8315,0.5556,0.0,0.6935,0.7071,-0.1379,0.8315,0.5556,0.0,0.7071,0.7071,0.0,0.7071,0.7071,0.0,0.8315,0.5556,0.0,0.8155,0.5556,0.1622,0.7071,0.7071,0.0,0.8155,0.5556,0.1622,0.6935,0.7071,0.138,0.6935,0.7071,0.138,0.8155,0.5556,0.1622,0.7682,0.5556,0.3182,0.6935,0.7071,0.138,0.7682,0.5556,0.3182,0.6533,0.7071,0.2706,0.6533,0.7071,0.2706,0.7682,0.5556,0.3182,0.6913,0.5556,0.4619,0.6533,0.7071,0.2706,0.6913,0.5556,0.4619,0.5879,0.7071,0.3928,0.5879,0.7071,0.3928,0.6913,0.5556,0.4619,0.5879,0.5556,0.5879,0.5879,0.7071,0.3928,0.5879,0.5556,0.5879,0.5,0.7071,0.5,0.5,0.7071,0.5,0.5879,0.5556,0.5879,0.4619,0.5556,0.6913,0.5,0.7071,0.5,0.4619,0.5556,0.6913,0.3928,0.7071,0.5879,0.3928,0.7071,0.5879,0.4619,0.5556,0.6913,0.3182,0.5556,0.7682,0.3928,0.7071,0.5879,0.3182,0.5556,0.7682,0.2706,0.7071,0.6533,0.2706,0.7071,0.6533,0.3182,0.5556,0.7682,0.1622,0.5556,0.8155,0.2706,0.7071,0.6533,0.1622,0.5556,0.8155,0.1379,0.7071,0.6935,0.1379,0.7071,0.6935,0.1622,0.5556,0.8155,0.0,0.5556,0.8315,0.1379,0.7071,0.6935,0.0,0.5556,0.8315,0.0,0.7071,0.7071,0.0,0.5556,0.8315,0.0,0.3827,0.9239,-0.1802,0.3827,0.9061,0.0,0.5556,0.8315,-0.1802,0.3827,0.9061,-0.1622,0.5556,0.8155,-0.1622,0.5556,0.8155,-0.1802,0.3827,0.9061,-0.3536,0.3827,0.8536,-0.1622,0.5556,0.8155,-0.3536,0.3827,0.8536,-0.3182,0.5556,0.7682,-0.3182,0.5556,0.7682,-0.3536,0.3827,0.8536,-0.5133,0.3827,0.7682,-0.3182,0.5556,0.7682,-0.5133,0.3827,0.7682,-0.4619,0.5556,0.6913,-0.4619,0.5556,0.6913,-0.5133,0.3827,0.7682,-0.6533,0.3827,0.6533,-0.4619,0.5556,0.6913,-0.6533,0.3827,0.6533,-0.5879,0.5556,0.5879,-0.5879,0.5556,0.5879,-0.6533,0.3827,0.6533,-0.7682,0.3827,0.5133,-0.5879,0.5556,0.5879,-0.7682,0.3827,0.5133,-0.6913,0.5556,0.4619,-0.6913,0.5556,0.4619,-0.7682,0.3827,0.5133,-0.8536,0.3827,0.3536,-0.6913,0.5556,0.4619,-0.8536,0.3827,0.3536,-0.7682,0.5556,0.3182,-0.7682,0.5556,0.3182,-0.8536,0.3827,0.3536,-0.9061,0.3827,0.1802,-0.7682,0.5556,0.3182,-0.9061,0.3827,0.1802,-0.8155,0.5556,0.1622,-0.8155,0.5556,0.1622,-0.9061,0.3827,0.1802,-0.9239,0.3827,0.0,-0.8155,0.5556,0.1622,-0.9239,0.3827,0.0,-0.8315,0.5556,0.0,-0.8315,0.5556,0.0,-0.9239,0.3827,0.0,-0.9061,0.3827,-0.1802,-0.8315,0.5556,0.0,-0.9061,0.3827,-0.1802,-0.8155,0.5556,-0.1622,-0.8155,0.5556,-0.1622,-0.9061,0.3827,-0.1802,-0.8536,0.3827,-0.3536,-0.8155,0.5556,-0.1622,-0.8536,0.3827,-0.3536,-0.7682,0.5556,-0.3182,-0.7682,0.5556,-0.3182,-0.8536,0.3827,-0.3536,-0.7682,0.3827,-0.5133,-0.7682,0.5556,-0.3182,-0.7682,0.3827,-0.5133,-0.6913,0.5556,-0.4619,-0.6913,0.5556,-0.4619,-0.7682,0.3827,-0.5133,-0.6533,0.3827,-0.6533,-0.6913,0.5556,-0.4619,-0.6533,0.3827,-0.6533,-0.5879,0.5556,-0.5879,-0.5879,0.5556,-0.5879,-0.6533,0.3827,-0.6533,-0.5133,0.3827,-0.7682,-0.5879,0.5556,-0.5879,-0.5133,0.3827,-0.7682,-0.4619,0.5556,-0.6913,-0.4619,0.5556,-0.6913,-0.5133,0.3827,-0.7682,-0.3536,0.3827,-0.8536,-0.4619,0.5556,-0.6913,-0.3536,0.3827,-0.8536,-0.3182,0.5556,-0.7682,-0.3182,0.5556,-0.7682,-0.3536,0.3827,-0.8536,-0.1802,0.3827,-0.9061,-0.3182,0.5556,-0.7682,-0.1802,0.3827,-0.9061,-0.1622,0.5556,-0.8155,-0.1622,0.5556,-0.8155,-0.1802,0.3827,-0.9061,0.0,0.3827,-0.9239,-0.1622,0.5556,-0.8155,0.0,0.3827,-0.9239,0.0,0.5556,-0.8315,0.0,0.5556,-0.8315,0.0,0.3827,-0.9239,0.1802,0.3827,-0.9061,0.0,0.5556,-0.8315,0.1802,0.3827,-0.9061,0.1622,0.5556,-0.8155,0.1622,0.5556,-0.8155,0.1802,0.3827,-0.9061,0.3536,0.3827,-0.8536,0.1622,0.5556,-0.8155,0.3536,0.3827,-0.8536,0.3182,0.5556,-0.7682,0.3182,0.5556,-0.7682,0.3536,0.3827,-0.8536,0.5133,0.3827,-0.7682,0.3182,0.5556,-0.7682,0.5133,0.3827,-0.7682,0.4619,0.5556,-0.6913,0.4619,0.5556,-0.6913,0.5133,0.3827,-0.7682,0.6533,0.3827,-0.6533,0.4619,0.5556,-0.6913,0.6533,0.3827,-0.6533,0.5879,0.5556,-0.5879,0.5879,0.5556,-0.5879,0.6533,0.3827,-0.6533,0.7682,0.3827,-0.5133,0.5879,0.5556,-0.5879,0.7682,0.3827,-0.5133,0.6913,0.5556,-0.4619,0.6913,0.5556,-0.4619,0.7682,0.3827,-0.5133,0.8536,0.3827,-0.3536,0.6913,0.5556,-0.4619,0.8536,0.3827,-0.3536,0.7682,0.5556,-0.3182,0.7682,0.5556,-0.3182,0.8536,0.3827,-0.3536,0.9061,0.3827,-0.1802,0.7682,0.5556,-0.3182,0.9061,0.3827,-0.1802,0.8155,0.5556,-0.1622,0.8155,0.5556,-0.1622,0.9061,0.3827,-0.1802,0.9239,0.3827,0.0,0.8155,0.5556,-0.1622,0.9239,0.3827,0.0,0.8315,0.5556,0.0,0.8315,0.5556,0.0,0.9239,0.3827,0.0,0.9061,0.3827,0.1802,0.8315,0.5556,0.0,0.9061,0.3827,0.1802,0.8155,0.5556,0.1622,0.8155,0.5556,0.1622,0.9061,0.3827,0.1802,0.8536,0.3827,0.3536,0.8155,0.5556,0.1622,0.8536,0.3827,0.3536,0.7682,0.5556,0.3182,0.7682,0.5556,0.3182,0.8536,0.3827,0.3536,0.7682,0.3827,0.5133,0.7682,0.5556,0.3182,0.7682,0.3827,0.5133,0.6913,0.5556,0.4619,0.6913,0.5556,0.4619,0.7682,0.3827,0.5133,0.6533,0.3827,0.6533,0.6913,0.5556,0.4619,0.6533,0.3827,0.6533,0.5879,0.5556,0.5879,0.5879,0.5556,0.5879,0.6533,0.3827,0.6533,0.5133,0.3827,0.7682,0.5879,0.5556,0.5879,0.5133,0.3827,0.7682,0.4619,0.5556,0.6913,0.4619,0.5556,0.6913,0.5133,0.3827,0.7682,0.3536,0.3827,0.8536,0.4619,0.5556,0.6913,0.3536,0.3827,0.8536,0.3182,0.5556,0.7682,0.3182,0.5556,0.7682,0.3536,0.3827,0.8536,0.1802,0.3827,0.9061,0.3182,0.5556,0.7682,0.1802,0.3827,0.9061,0.1622,0.5556,0.8155,0.1622,0.5556,0.8155,0.1802,0.3827,0.9061,0.0,0.3827,0.9239,0.1622,0.5556,0.8155,0.0,0.3827,0.9239,0.0,0.5556,0.8315,0.0,0.3827,0.9239,0.0,0.1951,0.9808,-0.1913,0.1951,0.9619,0.0,0.3827,0.9239,-0.1913,0.1951,0.9619,-0.1802,0.3827,0.9061,-0.1802,0.3827,0.9061,-0.1913,0.1951,0.9619,-0.3753,0.1951,0.9061,-0.1802,0.3827,0.9061,-0.3753,0.1951,0.9061,-0.3536,0.3827,0.8536,-0.3536,0.3827,0.8536,-0.3753,0.1951,0.9061,-0.5449,0.1951,0.8155,-0.3536,0.3827,0.8536,-0.5449,0.1951,0.8155,-0.5133,0.3827,0.7682,-0.5133,0.3827,0.7682,-0.5449,0.1951,0.8155,-0.6935,0.1951,0.6935,-0.5133,0.3827,0.7682,-0.6935,0.1951,0.6935,-0.6533,0.3827,0.6533,-0.6533,0.3827,0.6533,-0.6935,0.1951,0.6935,-0.8155,0.1951,0.5449,-0.6533,0.3827,0.6533,-0.8155,0.1951,0.5449,-0.7682,0.3827,0.5133,-0.7682,0.3827,0.5133,-0.8155,0.1951,0.5449,-0.9061,0.1951,0.3753,-0.7682,0.3827,0.5133,-0.9061,0.1951,0.3753,-0.8536,0.3827,0.3536,-0.8536,0.3827,0.3536,-0.9061,0.1951,0.3753,-0.9619,0.1951,0.1913,-0.8536,0.3827,0.3536,-0.9619,0.1951,0.1913,-0.9061,0.3827,0.1802,-0.9061,0.3827,0.1802,-0.9619,0.1951,0.1913,-0.9808,0.1951,0.0,-0.9061,0.3827,0.1802,-0.9808,0.1951,0.0,-0.9239,0.3827,0.0,-0.9239,0.3827,0.0,-0.9808,0.1951,0.0,-0.9619,0.1951,-0.1913,-0.9239,0.3827,0.0,-0.9619,0.1951,-0.1913,-0.9061,0.3827,-0.1802,-0.9061,0.3827,-0.1802,-0.9619,0.1951,-0.1913,-0.9061,0.1951,-0.3753,-0.9061,0.3827,-0.1802,-0.9061,0.1951,-0.3753,-0.8536,0.3827,-0.3536,-0.8536,0.3827,-0.3536,-0.9061,0.1951,-0.3753,-0.8155,0.1951,-0.5449,-0.8536,0.3827,-0.3536,-0.8155,0.1951,-0.5449,-0.7682,0.3827,-0.5133,-0.7682,0.3827,-0.5133,-0.8155,0.1951,-0.5449,-0.6935,0.1951,-0.6935,-0.7682,0.3827,-0.5133,-0.6935,0.1951,-0.6935,-0.6533,0.3827,-0.6533,-0.6533,0.3827,-0.6533,-0.6935,0.1951,-0.6935,-0.5449,0.1951,-0.8155,-0.6533,0.3827,-0.6533,-0.5449,0.1951,-0.8155,-0.5133,0.3827,-0.7682,-0.5133,0.3827,-0.7682,-0.5449,0.1951,-0.8155,-0.3753,0.1951,-0.9061,-0.5133,0.3827,-0.7682,-0.3753,0.1951,-0.9061,-0.3536,0.3827,-0.8536,-0.3536,0.3827,-0.8536,-0.3753,0.1951,-0.9061,-0.1913,0.1951,-0.9619,-0.3536,0.3827,-0.8536,-0.1913,0.1951,-0.9619,-0.1802,0.3827,-0.9061,-0.1802,0.3827,-0.9061,-0.1913,0.1951,-0.9619,0.0,0.1951,-0.9808,-0.1802,0.3827,-0.9061,0.0,0.1951,-0.9808,0.0,0.3827,-0.9239,0.0,0.3827,-0.9239,0.0,0.1951,-0.9808,0.1913,0.1951,-0.9619,0.0,0.3827,-0.9239,0.1913,0.1951,-0.9619,0.1802,0.3827,-0.9061,0.1802,0.3827,-0.9061,0.1913,0.1951,-0.9619,0.3753,0.1951,-0.9061,0.1802,0.3827,-0.9061,0.3753,0.1951,-0.9061,0.3536,0.3827,-0.8536,0.3536,0.3827,-0.8536,0.3753,0.1951,-0.9061,0.5449,0.1951,-0.8155,0.3536,0.3827,-0.8536,0.5449,0.1951,-0.8155,0.5133,0.3827,-0.7682,0.5133,0.3827,-0.7682,0.5449,0.1951,-0.8155,0.6935,0.1951,-0.6935,0.5133,0.3827,-0.7682,0.6935,0.1951,-0.6935,0.6533,0.3827,-0.6533,0.6533,0.3827,-0.6533,0.6935,0.1951,-0.6935,0.8155,0.1951,-0.5449,0.6533,0.3827,-0.6533,0.8155,0.1951,-0.5449,0.7682,0.3827,-0.5133,0.7682,0.3827,-0.5133,0.8155,0.1951,-0.5449,0.9061,0.1951,-0.3753,0.7682,0.3827,-0.5133,0.9061,0.1951,-0.3753,0.8536,0.3827,-0.3536,0.8536,0.3827,-0.3536,0.9061,0.1951,-0.3753,0.9619,0.1951,-0.1913,0.8536,0.3827,-0.3536,0.9619,0.1951,-0.1913,0.9061,0.3827,-0.1802,0.9061,0.3827,-0.1802,0.9619,0.1951,-0.1913,0.9808,0.1951,0.0,0.9061,0.3827,-0.1802,0.9808,0.1951,0.0,0.9239,0.3827,0.0,0.9239,0.3827,0.0,0.9808,0.1951,0.0,0.9619,0.1951,0.1913,0.9239,0.3827,0.0,0.9619,0.1951,0.1913,0.9061,0.3827,0.1802,0.9061,0.3827,0.1802,0.9619,0.1951,0.1913,0.9061,0.1951,0.3753,0.9061,0.3827,0.1802,0.9061,0.1951,0.3753,0.8536,0.3827,0.3536,0.8536,0.3827,0.3536,0.9061,0.1951,0.3753,0.8155,0.1951,0.5449,0.8536,0.3827,0.3536,0.8155,0.1951,0.5449,0.7682,0.3827,0.5133,0.7682,0.3827,0.5133,0.8155,0.1951,0.5449,0.6935,0.1951,0.6935,0.7682,0.3827,0.5133,0.6935,0.1951,0.6935,0.6533,0.3827,0.6533,0.6533,0.3827,0.6533,0.6935,0.1951,0.6935,0.5449,0.1951,0.8155,0.6533,0.3827,0.6533,0.5449,0.1951,0.8155,0.5133,0.3827,0.7682,0.5133,0.3827,0.7682,0.5449,0.1951,0.8155,0.3753,0.1951,0.9061,0.5133,0.3827,0.7682,0.3753,0.1951,0.9061,0.3536,0.3827,0.8536,0.3536,0.3827,0.8536,0.3753,0.1951,0.9061,0.1913,0.1951,0.9619,0.3536,0.3827,0.8536,0.1913,0.1951,0.9619,0.1802,0.3827,0.9061,0.1802,0.3827,0.9061,0.1913,0.1951,0.9619,0.0,0.1951,0.9808,0.1802,0.3827,0.9061,0.0,0.1951,0.9808,0.0,0.3827,0.9239,0.0,0.1951,0.9808,0.0,0.0,1.0,-0.1951,0.0,0.9808,0.0,0.1951,0.9808,-0.1951,0.0,0.9808,-0.1913,0.1951,0.9619,-0.1913,0.1951,0.9619,-0.1951,0.0,0.9808,-0.3827,0.0,0.9239,-0.1913,0.1951,0.9619,-0.3827,0.0,0.9239,-0.3753,0.1951,0.9061,-0.3753,0.1951,0.9061,-0.3827,0.0,0.9239,-0.5556,0.0,0.8315,-0.3753,0.1951,0.9061,-0.5556,0.0,0.8315,-0.5449,0.1951,0.8155,-0.5449,0.1951,0.8155,-0.5556,0.0,0.8315,-0.7071,0.0,0.7071,-0.5449,0.1951,0.8155,-0.7071,0.0,0.7071,-0.6935,0.1951,0.6935,-0.6935,0.1951,0.6935,-0.7071,0.0,0.7071,-0.8315,0.0,0.5556,-0.6935,0.1951,0.6935,-0.8315,0.0,0.5556,-0.8155,0.1951,0.5449,-0.8155,0.1951,0.5449,-0.8315,0.0,0.5556,-0.9239,0.0,0.3827,-0.8155,0.1951,0.5449,-0.9239,0.0,0.3827,-0.9061,0.1951,0.3753,-0.9061,0.1951,0.3753,-0.9239,0.0,0.3827,-0.9808,0.0,0.1951,-0.9061,0.1951,0.3753,-0.9808,0.0,0.1951,-0.9619,0.1951,0.1913,-0.9619,0.1951,0.1913,-0.9808,0.0,0.1951,-1.0,0.0,0.0,-0.9619,0.1951,0.1913,-1.0,0.0,0.0,-0.9808,0.1951,0.0,-0.9808,0.1951,0.0,-1.0,0.0,0.0,-0.9808,0.0,-0.1951,-0.9808,0.1951,0.0,-0.9808,0.0,-0.1951,-0.9619,0.1951,-0.1913,-0.9619,0.1951,-0.1913,-0.9808,0.0,-0.1951,-0.9239,0.0,-0.3827,-0.9619,0.1951,-0.1913,-0.9239,0.0,-0.3827,-0.9061,0.1951,-0.3753,-0.9061,0.1951,-0.3753,-0.9239,0.0,-0.3827,-0.8315,0.0,-0.5556,-0.9061,0.1951,-0.3753,-0.8315,0.0,-0.5556,-0.8155,0.1951,-0.5449,-0.8155,0.1951,-0.5449,-0.8315,0.0,-0.5556,-0.7071,0.0,-0.7071,-0.8155,0.1951,-0.5449,-0.7071,0.0,-0.7071,-0.6935,0.1951,-0.6935,-0.6935,0.1951,-0.6935,-0.7071,0.0,-0.7071,-0.5556,0.0,-0.8315,-0.6935,0.1951,-0.6935,-0.5556,0.0,-0.8315,-0.5449,0.1951,-0.8155,-0.5449,0.1951,-0.8155,-0.5556,0.0,-0.8315,-0.3827,0.0,-0.9239,-0.5449,0.1951,-0.8155,-0.3827,0.0,-0.9239,-0.3753,0.1951,-0.9061,-0.3753,0.1951,-0.9061,-0.3827,0.0,-0.9239,-0.1951,0.0,-0.9808,-0.3753,0.1951,-0.9061,-0.1951,0.0,-0.9808,-0.1913,0.1951,-0.9619,-0.1913,0.1951,-0.9619,-0.1951,0.0,-0.9808,0.0,0.0,-1.0,-0.1913,0.1951,-0.9619,0.0,0.0,-1.0,0.0,0.1951,-0.9808,0.0,0.1951,-0.9808,0.0,0.0,-1.0,0.1951,0.0,-0.9808,0.0,0.1951,-0.9808,0.1951,0.0,-0.9808,0.1913,0.1951,-0.9619,0.1913,0.1951,-0.9619,0.1951,0.0,-0.9808,0.3827,0.0,-0.9239,0.1913,0.1951,-0.9619,0.3827,0.0,-0.9239,0.3753,0.1951,-0.9061,0.3753,0.1951,-0.9061,0.3827,0.0,-0.9239,0.5556,0.0,-0.8315,0.3753,0.1951,-0.9061,0.5556,0.0,-0.8315,0.5449,0.1951,-0.8155,0.5449,0.1951,-0.8155,0.5556,0.0,-0.8315,0.7071,0.0,-0.7071,0.5449,0.1951,-0.8155,0.7071,0.0,-0.7071,0.6935,0.1951,-0.6935,0.6935,0.1951,-0.6935,0.7071,0.0,-0.7071,0.8315,0.0,-0.5556,0.6935,0.1951,-0.6935,0.8315,0.0,-0.5556,0.8155,0.1951,-0.5449,0.8155,0.1951,-0.5449,0.8315,0.0,-0.5556,0.9239,0.0,-0.3827,0.8155,0.1951,-0.5449,0.9239,0.0,-0.3827,0.9061,0.1951,-0.3753,0.9061,0.1951,-0.3753,0.9239,0.0,-0.3827,0.9808,0.0,-0.1951,0.9061,0.1951,-0.3753,0.9808,0.0,-0.1951,0.9619,0.1951,-0.1913,0.9619,0.1951,-0.1913,0.9808,0.0,-0.1951,1.0,0.0,0.0,0.9619,0.1951,-0.1913,1.0,0.0,0.0,0.9808,0.1951,0.0,0.9808,0.1951,0.0,1.0,0.0,0.0,0.9808,0.0,0.1951,0.9808,0.1951,0.0,0.9808,0.0,0.1951,0.9619,0.1951,0.1913,0.9619,0.1951,0.1913,0.9808,0.0,0.1951,0.9239,0.0,0.3827,0.9619,0.1951,0.1913,0.9239,0.0,0.3827,0.9061,0.1951,0.3753,0.9061,0.1951,0.3753,0.9239,0.0,0.3827,0.8315,0.0,0.5556,0.9061,0.1951,0.3753,0.8315,0.0,0.5556,0.8155,0.1951,0.5449,0.8155,0.1951,0.5449,0.8315,0.0,0.5556,0.7071,0.0,0.7071,0.8155,0.1951,0.5449,0.7071,0.0,0.7071,0.6935,0.1951,0.6935,0.6935,0.1951,0.6935,0.7071,0.0,0.7071,0.5556,0.0,0.8315,0.6935,0.1951,0.6935,0.5556,0.0,0.8315,0.5449,0.1951,0.8155,0.5449,0.1951,0.8155,0.5556,0.0,0.8315,0.3827,0.0,0.9239,0.5449,0.1951,0.8155,0.3827,0.0,0.9239,0.3753,0.1951,0.9061,0.3753,0.1951,0.9061,0.3827,0.0,0.9239,0.1951,0.0,0.9808,0.3753,0.1951,0.9061,0.1951,0.0,0.9808,0.1913,0.1951,0.9619,0.1913,0.1951,0.9619,0.1951,0.0,0.9808,0.0,0.0,1.0,0.1913,0.1951,0.9619,0.0,0.0,1.0,0.0,0.1951,0.9808,0.0,0.0,1.0,0.0,-0.1951,0.9808,-0.1913,-0.1951,0.9619,0.0,0.0,1.0,-0.1913,-0.1951,0.9619,-0.1951,0.0,0.9808,-0.1951,0.0,0.9808,-0.1913,-0.1951,0.9619,-0.3753,-0.1951,0.9061,-0.1951,0.0,0.9808,-0.3753,-0.1951,0.9061,-0.3827,0.0,0.9239,-0.3827,0.0,0.9239,-0.3753,-0.1951,0.9061,-0.5449,-0.1951,0.8155,-0.3827,0.0,0.9239,-0.5449,-0.1951,0.8155,-0.5556,0.0,0.8315,-0.5556,0.0,0.8315,-0.5449,-0.1951,0.8155,-0.6935,-0.1951,0.6935,-0.5556,0.0,0.8315,-0.6935,-0.1951,0.6935,-0.7071,0.0,0.7071,-0.7071,0.0,0.7071,-0.6935,-0.1951,0.6935,-0.8155,-0.1951,0.5449,-0.7071,0.0,0.7071,-0.8155,-0.1951,0.5449,-0.8315,0.0,0.5556,-0.8315,0.0,0.5556,-0.8155,-0.1951,0.5449,-0.9061,-0.1951,0.3753,-0.8315,0.0,0.5556,-0.9061,-0.1951,0.3753,-0.9239,0.0,0.3827,-0.9239,0.0,0.3827,-0.9061,-0.1951,0.3753,-0.9619,-0.1951,0.1913,-0.9239,0.0,0.3827,-0.9619,-0.1951,0.1913,-0.9808,0.0,0.1951,-0.9808,0.0,0.1951,-0.9619,-0.1951,0.1913,-0.9808,-0.1951,0.0,-0.9808,0.0,0.1951,-0.9808,-0.1951,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-0.9808,-0.1951,0.0,-0.9619,-0.1951,-0.1913,-1.0,0.0,0.0,-0.9619,-0.1951,-0.1913,-0.9808,0.0,-0.1951,-0.9808,0.0,-0.1951,-0.9619,-0.1951,-0.1913,-0.9061,-0.1951,-0.3753,-0.9808,0.0,-0.1951,-0.9061,-0.1951,-0.3753,-0.9239,0.0,-0.3827,-0.9239,0.0,-0.3827,-0.9061,-0.1951,-0.3753,-0.8155,-0.1951,-0.5449,-0.9239,0.0,-0.3827,-0.8155,-0.1951,-0.5449,-0.8315,0.0,-0.5556,-0.8315,0.0,-0.5556,-0.8155,-0.1951,-0.5449,-0.6935,-0.1951,-0.6935,-0.8315,0.0,-0.5556,-0.6935,-0.1951,-0.6935,-0.7071,0.0,-0.7071,-0.7071,0.0,-0.7071,-0.6935,-0.1951,-0.6935,-0.5449,-0.1951,-0.8155,-0.7071,0.0,-0.7071,-0.5449,-0.1951,-0.8155,-0.5556,0.0,-0.8315,-0.5556,0.0,-0.8315,-0.5449,-0.1951,-0.8155,-0.3753,-0.1951,-0.9061,-0.5556,0.0,-0.8315,-0.3753,-0.1951,-0.9061,-0.3827,0.0,-0.9239,-0.3827,0.0,-0.9239,-0.3753,-0.1951,-0.9061,-0.1913,-0.1951,-0.9619,-0.3827,0.0,-0.9239,-0.1913,-0.1951,-0.9619,-0.1951,0.0,-0.9808,-0.1951,0.0,-0.9808,-0.1913,-0.1951,-0.9619,0.0,-0.1951,-0.9808,-0.1951,0.0,-0.9808,0.0,-0.1951,-0.9808,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,-0.1951,-0.9808,0.1913,-0.1951,-0.9619,0.0,0.0,-1.0,0.1913,-0.1951,-0.9619,0.1951,0.0,-0.9808,0.1951,0.0,-0.9808,0.1913,-0.1951,-0.9619,0.3753,-0.1951,-0.9061,0.1951,0.0,-0.9808,0.3753,-0.1951,-0.9061,0.3827,0.0,-0.9239,0.3827,0.0,-0.9239,0.3753,-0.1951,-0.9061,0.5449,-0.1951,-0.8155,0.3827,0.0,-0.9239,0.5449,-0.1951,-0.8155,0.5556,0.0,-0.8315,0.5556,0.0,-0.8315,0.5449,-0.1951,-0.8155,0.6935,-0.1951,-0.6935,0.5556,0.0,-0.8315,0.6935,-0.1951,-0.6935,0.7071,0.0,-0.7071,0.7071,0.0,-0.7071,0.6935,-0.1951,-0.6935,0.8155,-0.1951,-0.5449,0.7071,0.0,-0.7071,0.8155,-0.1951,-0.5449,0.8315,0.0,-0.5556,0.8315,0.0,-0.5556,0.8155,-0.1951,-0.5449,0.9061,-0.1951,-0.3753,0.8315,0.0,-0.5556,0.9061,-0.1951,-0.3753,0.9239,0.0,-0.3827,0.9239,0.0,-0.3827,0.9061,-0.1951,-0.3753,0.9619,-0.1951,-0.1913,0.9239,0.0,-0.3827,0.9619,-0.1951,-0.1913,0.9808,0.0,-0.1951,0.9808,0.0,-0.1951,0.9619,-0.1951,-0.1913,0.9808,-0.1951,0.0,0.9808,0.0,-0.1951,0.9808,-0.1951,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.9808,-0.1951,0.0,0.9619,-0.1951,0.1913,1.0,0.0,0.0,0.9619,-0.1951,0.1913,0.9808,0.0,0.1951,0.9808,0.0,0.1951,0.9619,-0.1951,0.1913,0.9061,-0.1951,0.3753,0.9808,0.0,0.1951,0.9061,-0.1951,0.3753,0.9239,0.0,0.3827,0.9239,0.0,0.3827,0.9061,-0.1951,0.3753,0.8155,-0.1951,0.5449,0.9239,0.0,0.3827,0.8155,-0.1951,0.5449,0.8315,0.0,0.5556,0.8315,0.0,0.5556,0.8155,-0.1951,0.5449,0.6935,-0.1951,0.6935,0.8315,0.0,0.5556,0.6935,-0.1951,0.6935,0.7071,0.0,0.7071,0.7071,0.0,0.7071,0.6935,-0.1951,0.6935,0.5449,-0.1951,0.8155,0.7071,0.0,0.7071,0.5449,-0.1951,0.8155,0.5556,0.0,0.8315,0.5556,0.0,0.8315,0.5449,-0.1951,0.8155,0.3753,-0.1951,0.9061,0.5556,0.0,0.8315,0.3753,-0.1951,0.9061,0.3827,0.0,0.9239,0.3827,0.0,0.9239,0.3753,-0.1951,0.9061,0.1913,-0.1951,0.9619,0.3827,0.0,0.9239,0.1913,-0.1951,0.9619,0.1951,0.0,0.9808,0.1951,0.0,0.9808,0.1913,-0.1951,0.9619,0.0,-0.1951,0.9808,0.1951,0.0,0.9808,0.0,-0.1951,0.9808,0.0,0.0,1.0,0.0,-0.1951,0.9808,0.0,-0.3827,0.9239,-0.1802,-0.3827,0.9061,0.0,-0.1951,0.9808,-0.1802,-0.3827,0.9061,-0.1913,-0.1951,0.9619,-0.1913,-0.1951,0.9619,-0.1802,-0.3827,0.9061,-0.3536,-0.3827,0.8536,-0.1913,-0.1951,0.9619,-0.3536,-0.3827,0.8536,-0.3753,-0.1951,0.9061,-0.3753,-0.1951,0.9061,-0.3536,-0.3827,0.8536,-0.5133,-0.3827,0.7682,-0.3753,-0.1951,0.9061,-0.5133,-0.3827,0.7682,-0.5449,-0.1951,0.8155,-0.5449,-0.1951,0.8155,-0.5133,-0.3827,0.7682,-0.6533,-0.3827,0.6533,-0.5449,-0.1951,0.8155,-0.6533,-0.3827,0.6533,-0.6935,-0.1951,0.6935,-0.6935,-0.1951,0.6935,-0.6533,-0.3827,0.6533,-0.7682,-0.3827,0.5133,-0.6935,-0.1951,0.6935,-0.7682,-0.3827,0.5133,-0.8155,-0.1951,0.5449,-0.8155,-0.1951,0.5449,-0.7682,-0.3827,0.5133,-0.8536,-0.3827,0.3536,-0.8155,-0.1951,0.5449,-0.8536,-0.3827,0.3536,-0.9061,-0.1951,0.3753,-0.9061,-0.1951,0.3753,-0.8536,-0.3827,0.3536,-0.9061,-0.3827,0.1802,-0.9061,-0.1951,0.3753,-0.9061,-0.3827,0.1802,-0.9619,-0.1951,0.1913,-0.9619,-0.1951,0.1913,-0.9061,-0.3827,0.1802,-0.9239,-0.3827,0.0,-0.9619,-0.1951,0.1913,-0.9239,-0.3827,0.0,-0.9808,-0.1951,0.0,-0.9808,-0.1951,0.0,-0.9239,-0.3827,0.0,-0.9061,-0.3827,-0.1802,-0.9808,-0.1951,0.0,-0.9061,-0.3827,-0.1802,-0.9619,-0.1951,-0.1913,-0.9619,-0.1951,-0.1913,-0.9061,-0.3827,-0.1802,-0.8536,-0.3827,-0.3536,-0.9619,-0.1951,-0.1913,-0.8536,-0.3827,-0.3536,-0.9061,-0.1951,-0.3753,-0.9061,-0.1951,-0.3753,-0.8536,-0.3827,-0.3536,-0.7682,-0.3827,-0.5133,-0.9061,-0.1951,-0.3753,-0.7682,-0.3827,-0.5133,-0.8155,-0.1951,-0.5449,-0.8155,-0.1951,-0.5449,-0.7682,-0.3827,-0.5133,-0.6533,-0.3827,-0.6533,-0.8155,-0.1951,-0.5449,-0.6533,-0.3827,-0.6533,-0.6935,-0.1951,-0.6935,-0.6935,-0.1951,-0.6935,-0.6533,-0.3827,-0.6533,-0.5133,-0.3827,-0.7682,-0.6935,-0.1951,-0.6935,-0.5133,-0.3827,-0.7682,-0.5449,-0.1951,-0.8155,-0.5449,-0.1951,-0.8155,-0.5133,-0.3827,-0.7682,-0.3536,-0.3827,-0.8536,-0.5449,-0.1951,-0.8155,-0.3536,-0.3827,-0.8536,-0.3753,-0.1951,-0.9061,-0.3753,-0.1951,-0.9061,-0.3536,-0.3827,-0.8536,-0.1802,-0.3827,-0.9061,-0.3753,-0.1951,-0.9061,-0.1802,-0.3827,-0.9061,-0.1913,-0.1951,-0.9619,-0.1913,-0.1951,-0.9619,-0.1802,-0.3827,-0.9061,0.0,-0.3827,-0.9239,-0.1913,-0.1951,-0.9619,0.0,-0.3827,-0.9239,0.0,-0.1951,-0.9808,0.0,-0.1951,-0.9808,0.0,-0.3827,-0.9239,0.1802,-0.3827,-0.9061,0.0,-0.1951,-0.9808,0.1802,-0.3827,-0.9061,0.1913,-0.1951,-0.9619,0.1913,-0.1951,-0.9619,0.1802,-0.3827,-0.9061,0.3536,-0.3827,-0.8536,0.1913,-0.1951,-0.9619,0.3536,-0.3827,-0.8536,0.3753,-0.1951,-0.9061,0.3753,-0.1951,-0.9061,0.3536,-0.3827,-0.8536,0.5133,-0.3827,-0.7682,0.3753,-0.1951,-0.9061,0.5133,-0.3827,-0.7682,0.5449,-0.1951,-0.8155,0.5449,-0.1951,-0.8155,0.5133,-0.3827,-0.7682,0.6533,-0.3827,-0.6533,0.5449,-0.1951,-0.8155,0.6533,-0.3827,-0.6533,0.6935,-0.1951,-0.6935,0.6935,-0.1951,-0.6935,0.6533,-0.3827,-0.6533,0.7682,-0.3827,-0.5133,0.6935,-0.1951,-0.6935,0.7682,-0.3827,-0.5133,0.8155,-0.1951,-0.5449,0.8155,-0.1951,-0.5449,0.7682,-0.3827,-0.5133,0.8536,-0.3827,-0.3536,0.8155,-0.1951,-0.5449,0.8536,-0.3827,-0.3536,0.9061,-0.1951,-0.3753,0.9061,-0.1951,-0.3753,0.8536,-0.3827,-0.3536,0.9061,-0.3827,-0.1802,0.9061,-0.1951,-0.3753,0.9061,-0.3827,-0.1802,0.9619,-0.1951,-0.1913,0.9619,-0.1951,-0.1913,0.9061,-0.3827,-0.1802,0.9239,-0.3827,0.0,0.9619,-0.1951,-0.1913,0.9239,-0.3827,0.0,0.9808,-0.1951,0.0,0.9808,-0.1951,0.0,0.9239,-0.3827,0.0,0.9061,-0.3827,0.1802,0.9808,-0.1951,0.0,0.9061,-0.3827,0.1802,0.9619,-0.1951,0.1913,0.9619,-0.1951,0.1913,0.9061,-0.3827,0.1802,0.8536,-0.3827,0.3536,0.9619,-0.1951,0.1913,0.8536,-0.3827,0.3536,0.9061,-0.1951,0.3753,0.9061,-0.1951,0.3753,0.8536,-0.3827,0.3536,0.7682,-0.3827,0.5133,0.9061,-0.1951,0.3753,0.7682,-0.3827,0.5133,0.8155,-0.1951,0.5449,0.8155,-0.1951,0.5449,0.7682,-0.3827,0.5133,0.6533,-0.3827,0.6533,0.8155,-0.1951,0.5449,0.6533,-0.3827,0.6533,0.6935,-0.1951,0.6935,0.6935,-0.1951,0.6935,0.6533,-0.3827,0.6533,0.5133,-0.3827,0.7682,0.6935,-0.1951,0.6935,0.5133,-0.3827,0.7682,0.5449,-0.1951,0.8155,0.5449,-0.1951,0.8155,0.5133,-0.3827,0.7682,0.3536,-0.3827,0.8536,0.5449,-0.1951,0.8155,0.3536,-0.3827,0.8536,0.3753,-0.1951,0.9061,0.3753,-0.1951,0.9061,0.3536,-0.3827,0.8536,0.1802,-0.3827,0.9061,0.3753,-0.1951,0.9061,0.1802,-0.3827,0.9061,0.1913,-0.1951,0.9619,0.1913,-0.1951,0.9619,0.1802,-0.3827,0.9061,0.0,-0.3827,0.9239,0.1913,-0.1951,0.9619,0.0,-0.3827,0.9239,0.0,-0.1951,0.9808,0.0,-0.3827,0.9239,0.0,-0.5556,0.8315,-0.1622,-0.5556,0.8155,0.0,-0.3827,0.9239,-0.1622,-0.5556,0.8155,-0.1802,-0.3827,0.9061,-0.1802,-0.3827,0.9061,-0.1622,-0.5556,0.8155,-0.3182,-0.5556,0.7682,-0.1802,-0.3827,0.9061,-0.3182,-0.5556,0.7682,-0.3536,-0.3827,0.8536,-0.3536,-0.3827,0.8536,-0.3182,-0.5556,0.7682,-0.4619,-0.5556,0.6913,-0.3536,-0.3827,0.8536,-0.4619,-0.5556,0.6913,-0.5133,-0.3827,0.7682,-0.5133,-0.3827,0.7682,-0.4619,-0.5556,0.6913,-0.5879,-0.5556,0.5879,-0.5133,-0.3827,0.7682,-0.5879,-0.5556,0.5879,-0.6533,-0.3827,0.6533,-0.6533,-0.3827,0.6533,-0.5879,-0.5556,0.5879,-0.6913,-0.5556,0.4619,-0.6533,-0.3827,0.6533,-0.6913,-0.5556,0.4619,-0.7682,-0.3827,0.5133,-0.7682,-0.3827,0.5133,-0.6913,-0.5556,0.4619,-0.7682,-0.5556,0.3182,-0.7682,-0.3827,0.5133,-0.7682,-0.5556,0.3182,-0.8536,-0.3827,0.3536,-0.8536,-0.3827,0.3536,-0.7682,-0.5556,0.3182,-0.8155,-0.5556,0.1622,-0.8536,-0.3827,0.3536,-0.8155,-0.5556,0.1622,-0.9061,-0.3827,0.1802,-0.9061,-0.3827,0.1802,-0.8155,-0.5556,0.1622,-0.8315,-0.5556,0.0,-0.9061,-0.3827,0.1802,-0.8315,-0.5556,0.0,-0.9239,-0.3827,0.0,-0.9239,-0.3827,0.0,-0.8315,-0.5556,0.0,-0.8155,-0.5556,-0.1622,-0.9239,-0.3827,0.0,-0.8155,-0.5556,-0.1622,-0.9061,-0.3827,-0.1802,-0.9061,-0.3827,-0.1802,-0.8155,-0.5556,-0.1622,-0.7682,-0.5556,-0.3182,-0.9061,-0.3827,-0.1802,-0.7682,-0.5556,-0.3182,-0.8536,-0.3827,-0.3536,-0.8536,-0.3827,-0.3536,-0.7682,-0.5556,-0.3182,-0.6913,-0.5556,-0.4619,-0.8536,-0.3827,-0.3536,-0.6913,-0.5556,-0.4619,-0.7682,-0.3827,-0.5133,-0.7682,-0.3827,-0.5133,-0.6913,-0.5556,-0.4619,-0.5879,-0.5556,-0.5879,-0.7682,-0.3827,-0.5133,-0.5879,-0.5556,-0.5879,-0.6533,-0.3827,-0.6533,-0.6533,-0.3827,-0.6533,-0.5879,-0.5556,-0.5879,-0.4619,-0.5556,-0.6913,-0.6533,-0.3827,-0.6533,-0.4619,-0.5556,-0.6913,-0.5133,-0.3827,-0.7682,-0.5133,-0.3827,-0.7682,-0.4619,-0.5556,-0.6913,-0.3182,-0.5556,-0.7682,-0.5133,-0.3827,-0.7682,-0.3182,-0.5556,-0.7682,-0.3536,-0.3827,-0.8536,-0.3536,-0.3827,-0.8536,-0.3182,-0.5556,-0.7682,-0.1622,-0.5556,-0.8155,-0.3536,-0.3827,-0.8536,-0.1622,-0.5556,-0.8155,-0.1802,-0.3827,-0.9061,-0.1802,-0.3827,-0.9061,-0.1622,-0.5556,-0.8155,0.0,-0.5556,-0.8315,-0.1802,-0.3827,-0.9061,0.0,-0.5556,-0.8315,0.0,-0.3827,-0.9239,0.0,-0.3827,-0.9239,0.0,-0.5556,-0.8315,0.1622,-0.5556,-0.8155,0.0,-0.3827,-0.9239,0.1622,-0.5556,-0.8155,0.1802,-0.3827,-0.9061,0.1802,-0.3827,-0.9061,0.1622,-0.5556,-0.8155,0.3182,-0.5556,-0.7682,0.1802,-0.3827,-0.9061,0.3182,-0.5556,-0.7682,0.3536,-0.3827,-0.8536,0.3536,-0.3827,-0.8536,0.3182,-0.5556,-0.7682,0.4619,-0.5556,-0.6913,0.3536,-0.3827,-0.8536,0.4619,-0.5556,-0.6913,0.5133,-0.3827,-0.7682,0.5133,-0.3827,-0.7682,0.4619,-0.5556,-0.6913,0.5879,-0.5556,-0.5879,0.5133,-0.3827,-0.7682,0.5879,-0.5556,-0.5879,0.6533,-0.3827,-0.6533,0.6533,-0.3827,-0.6533,0.5879,-0.5556,-0.5879,0.6913,-0.5556,-0.4619,0.6533,-0.3827,-0.6533,0.6913,-0.5556,-0.4619,0.7682,-0.3827,-0.5133,0.7682,-0.3827,-0.5133,0.6913,-0.5556,-0.4619,0.7682,-0.5556,-0.3182,0.7682,-0.3827,-0.5133,0.7682,-0.5556,-0.3182,0.8536,-0.3827,-0.3536,0.8536,-0.3827,-0.3536,0.7682,-0.5556,-0.3182,0.8155,-0.5556,-0.1622,0.8536,-0.3827,-0.3536,0.8155,-0.5556,-0.1622,0.9061,-0.3827,-0.1802,0.9061,-0.3827,-0.1802,0.8155,-0.5556,-0.1622,0.8315,-0.5556,0.0,0.9061,-0.3827,-0.1802,0.8315,-0.5556,0.0,0.9239,-0.3827,0.0,0.9239,-0.3827,0.0,0.8315,-0.5556,0.0,0.8155,-0.5556,0.1622,0.9239,-0.3827,0.0,0.8155,-0.5556,0.1622,0.9061,-0.3827,0.1802,0.9061,-0.3827,0.1802,0.8155,-0.5556,0.1622,0.7682,-0.5556,0.3182,0.9061,-0.3827,0.1802,0.7682,-0.5556,0.3182,0.8536,-0.3827,0.3536,0.8536,-0.3827,0.3536,0.7682,-0.5556,0.3182,0.6913,-0.5556,0.4619,0.8536,-0.3827,0.3536,0.6913,-0.5556,0.4619,0.7682,-0.3827,0.5133,0.7682,-0.3827,0.5133,0.6913,-0.5556,0.4619,0.5879,-0.5556,0.5879,0.7682,-0.3827,0.5133,0.5879,-0.5556,0.5879,0.6533,-0.3827,0.6533,0.6533,-0.3827,0.6533,0.5879,-0.5556,0.5879,0.4619,-0.5556,0.6913,0.6533,-0.3827,0.6533,0.4619,-0.5556,0.6913,0.5133,-0.3827,0.7682,0.5133,-0.3827,0.7682,0.4619,-0.5556,0.6913,0.3182,-0.5556,0.7682,0.5133,-0.3827,0.7682,0.3182,-0.5556,0.7682,0.3536,-0.3827,0.8536,0.3536,-0.3827,0.8536,0.3182,-0.5556,0.7682,0.1622,-0.5556,0.8155,0.3536,-0.3827,0.8536,0.1622,-0.5556,0.8155,0.1802,-0.3827,0.9061,0.1802,-0.3827,0.9061,0.1622,-0.5556,0.8155,0.0,-0.5556,0.8315,0.1802,-0.3827,0.9061,0.0,-0.5556,0.8315,0.0,-0.3827,0.9239,0.0,-0.5556,0.8315,0.0,-0.7071,0.7071,-0.1379,-0.7071,0.6935,0.0,-0.5556,0.8315,-0.1379,-0.7071,0.6935,-0.1622,-0.5556,0.8155,-0.1622,-0.5556,0.8155,-0.1379,-0.7071,0.6935,-0.2706,-0.7071,0.6533,-0.1622,-0.5556,0.8155,-0.2706,-0.7071,0.6533,-0.3182,-0.5556,0.7682,-0.3182,-0.5556,0.7682,-0.2706,-0.7071,0.6533,-0.3928,-0.7071,0.5879,-0.3182,-0.5556,0.7682,-0.3928,-0.7071,0.5879,-0.4619,-0.5556,0.6913,-0.4619,-0.5556,0.6913,-0.3928,-0.7071,0.5879,-0.5,-0.7071,0.5,-0.4619,-0.5556,0.6913,-0.5,-0.7071,0.5,-0.5879,-0.5556,0.5879,-0.5879,-0.5556,0.5879,-0.5,-0.7071,0.5,-0.5879,-0.7071,0.3928,-0.5879,-0.5556,0.5879,-0.5879,-0.7071,0.3928,-0.6913,-0.5556,0.4619,-0.6913,-0.5556,0.4619,-0.5879,-0.7071,0.3928,-0.6533,-0.7071,0.2706,-0.6913,-0.5556,0.4619,-0.6533,-0.7071,0.2706,-0.7682,-0.5556,0.3182,-0.7682,-0.5556,0.3182,-0.6533,-0.7071,0.2706,-0.6935,-0.7071,0.1379,-0.7682,-0.5556,0.3182,-0.6935,-0.7071,0.1379,-0.8155,-0.5556,0.1622,-0.8155,-0.5556,0.1622,-0.6935,-0.7071,0.1379,-0.7071,-0.7071,0.0,-0.8155,-0.5556,0.1622,-0.7071,-0.7071,0.0,-0.8315,-0.5556,0.0,-0.8315,-0.5556,0.0,-0.7071,-0.7071,0.0,-0.6935,-0.7071,-0.1379,-0.8315,-0.5556,0.0,-0.6935,-0.7071,-0.1379,-0.8155,-0.5556,-0.1622,-0.8155,-0.5556,-0.1622,-0.6935,-0.7071,-0.1379,-0.6533,-0.7071,-0.2706,-0.8155,-0.5556,-0.1622,-0.6533,-0.7071,-0.2706,-0.7682,-0.5556,-0.3182,-0.7682,-0.5556,-0.3182,-0.6533,-0.7071,-0.2706,-0.5879,-0.7071,-0.3928,-0.7682,-0.5556,-0.3182,-0.5879,-0.7071,-0.3928,-0.6913,-0.5556,-0.4619,-0.6913,-0.5556,-0.4619,-0.5879,-0.7071,-0.3928,-0.5,-0.7071,-0.5,-0.6913,-0.5556,-0.4619,-0.5,-0.7071,-0.5,-0.5879,-0.5556,-0.5879,-0.5879,-0.5556,-0.5879,-0.5,-0.7071,-0.5,-0.3928,-0.7071,-0.5879,-0.5879,-0.5556,-0.5879,-0.3928,-0.7071,-0.5879,-0.4619,-0.5556,-0.6913,-0.4619,-0.5556,-0.6913,-0.3928,-0.7071,-0.5879,-0.2706,-0.7071,-0.6533,-0.4619,-0.5556,-0.6913,-0.2706,-0.7071,-0.6533,-0.3182,-0.5556,-0.7682,-0.3182,-0.5556,-0.7682,-0.2706,-0.7071,-0.6533,-0.1379,-0.7071,-0.6935,-0.3182,-0.5556,-0.7682,-0.1379,-0.7071,-0.6935,-0.1622,-0.5556,-0.8155,-0.1622,-0.5556,-0.8155,-0.1379,-0.7071,-0.6935,0.0,-0.7071,-0.7071,-0.1622,-0.5556,-0.8155,0.0,-0.7071,-0.7071,0.0,-0.5556,-0.8315,0.0,-0.5556,-0.8315,0.0,-0.7071,-0.7071,0.138,-0.7071,-0.6935,0.0,-0.5556,-0.8315,0.138,-0.7071,-0.6935,0.1622,-0.5556,-0.8155,0.1622,-0.5556,-0.8155,0.138,-0.7071,-0.6935,0.2706,-0.7071,-0.6533,0.1622,-0.5556,-0.8155,0.2706,-0.7071,-0.6533,0.3182,-0.5556,-0.7682,0.3182,-0.5556,-0.7682,0.2706,-0.7071,-0.6533,0.3928,-0.7071,-0.5879,0.3182,-0.5556,-0.7682,0.3928,-0.7071,-0.5879,0.4619,-0.5556,-0.6913,0.4619,-0.5556,-0.6913,0.3928,-0.7071,-0.5879,0.5,-0.7071,-0.5,0.4619,-0.5556,-0.6913,0.5,-0.7071,-0.5,0.5879,-0.5556,-0.5879,0.5879,-0.5556,-0.5879,0.5,-0.7071,-0.5,0.5879,-0.7071,-0.3928,0.5879,-0.5556,-0.5879,0.5879,-0.7071,-0.3928,0.6913,-0.5556,-0.4619,0.6913,-0.5556,-0.4619,0.5879,-0.7071,-0.3928,0.6533,-0.7071,-0.2706,0.6913,-0.5556,-0.4619,0.6533,-0.7071,-0.2706,0.7682,-0.5556,-0.3182,0.7682,-0.5556,-0.3182,0.6533,-0.7071,-0.2706,0.6935,-0.7071,-0.1379,0.7682,-0.5556,-0.3182,0.6935,-0.7071,-0.1379,0.8155,-0.5556,-0.1622,0.8155,-0.5556,-0.1622,0.6935,-0.7071,-0.1379,0.7071,-0.7071,0.0,0.8155,-0.5556,-0.1622,0.7071,-0.7071,0.0,0.8315,-0.5556,0.0,0.8315,-0.5556,0.0,0.7071,-0.7071,0.0,0.6935,-0.7071,0.138,0.8315,-0.5556,0.0,0.6935,-0.7071,0.138,0.8155,-0.5556,0.1622,0.8155,-0.5556,0.1622,0.6935,-0.7071,0.138,0.6533,-0.7071,0.2706,0.8155,-0.5556,0.1622,0.6533,-0.7071,0.2706,0.7682,-0.5556,0.3182,0.7682,-0.5556,0.3182,0.6533,-0.7071,0.2706,0.5879,-0.7071,0.3928,0.7682,-0.5556,0.3182,0.5879,-0.7071,0.3928,0.6913,-0.5556,0.4619,0.6913,-0.5556,0.4619,0.5879,-0.7071,0.3928,0.5,-0.7071,0.5,0.6913,-0.5556,0.4619,0.5,-0.7071,0.5,0.5879,-0.5556,0.5879,0.5879,-0.5556,0.5879,0.5,-0.7071,0.5,0.3928,-0.7071,0.5879,0.5879,-0.5556,0.5879,0.3928,-0.7071,0.5879,0.4619,-0.5556,0.6913,0.4619,-0.5556,0.6913,0.3928,-0.7071,0.5879,0.2706,-0.7071,0.6533,0.4619,-0.5556,0.6913,0.2706,-0.7071,0.6533,0.3182,-0.5556,0.7682,0.3182,-0.5556,0.7682,0.2706,-0.7071,0.6533,0.1379,-0.7071,0.6935,0.3182,-0.5556,0.7682,0.1379,-0.7071,0.6935,0.1622,-0.5556,0.8155,0.1622,-0.5556,0.8155,0.1379,-0.7071,0.6935,0.0,-0.7071,0.7071,0.1622,-0.5556,0.8155,0.0,-0.7071,0.7071,0.0,-0.5556,0.8315,0.0,-0.7071,0.7071,0.0,-0.8315,0.5556,-0.1084,-0.8315,0.5449,0.0,-0.7071,0.7071,-0.1084,-0.8315,0.5449,-0.1379,-0.7071,0.6935,-0.1379,-0.7071,0.6935,-0.1084,-0.8315,0.5449,-0.2126,-0.8315,0.5133,-0.1379,-0.7071,0.6935,-0.2126,-0.8315,0.5133,-0.2706,-0.7071,0.6533,-0.2706,-0.7071,0.6533,-0.2126,-0.8315,0.5133,-0.3087,-0.8315,0.4619,-0.2706,-0.7071,0.6533,-0.3087,-0.8315,0.4619,-0.3928,-0.7071,0.5879,-0.3928,-0.7071,0.5879,-0.3087,-0.8315,0.4619,-0.3928,-0.8315,0.3928,-0.3928,-0.7071,0.5879,-0.3928,-0.8315,0.3928,-0.5,-0.7071,0.5,-0.5,-0.7071,0.5,-0.3928,-0.8315,0.3928,-0.4619,-0.8315,0.3087,-0.5,-0.7071,0.5,-0.4619,-0.8315,0.3087,-0.5879,-0.7071,0.3928,-0.5879,-0.7071,0.3928,-0.4619,-0.8315,0.3087,-0.5133,-0.8315,0.2126,-0.5879,-0.7071,0.3928,-0.5133,-0.8315,0.2126,-0.6533,-0.7071,0.2706,-0.6533,-0.7071,0.2706,-0.5133,-0.8315,0.2126,-0.5449,-0.8315,0.1084,-0.6533,-0.7071,0.2706,-0.5449,-0.8315,0.1084,-0.6935,-0.7071,0.1379,-0.6935,-0.7071,0.1379,-0.5449,-0.8315,0.1084,-0.5556,-0.8315,0.0,-0.6935,-0.7071,0.1379,-0.5556,-0.8315,0.0,-0.7071,-0.7071,0.0,-0.7071,-0.7071,0.0,-0.5556,-0.8315,0.0,-0.5449,-0.8315,-0.1084,-0.7071,-0.7071,0.0,-0.5449,-0.8315,-0.1084,-0.6935,-0.7071,-0.1379,-0.6935,-0.7071,-0.1379,-0.5449,-0.8315,-0.1084,-0.5133,-0.8315,-0.2126,-0.6935,-0.7071,-0.1379,-0.5133,-0.8315,-0.2126,-0.6533,-0.7071,-0.2706,-0.6533,-0.7071,-0.2706,-0.5133,-0.8315,-0.2126,-0.4619,-0.8315,-0.3087,-0.6533,-0.7071,-0.2706,-0.4619,-0.8315,-0.3087,-0.5879,-0.7071,-0.3928,-0.5879,-0.7071,-0.3928,-0.4619,-0.8315,-0.3087,-0.3928,-0.8315,-0.3928,-0.5879,-0.7071,-0.3928,-0.3928,-0.8315,-0.3928,-0.5,-0.7071,-0.5,-0.5,-0.7071,-0.5,-0.3928,-0.8315,-0.3928,-0.3087,-0.8315,-0.4619,-0.5,-0.7071,-0.5,-0.3087,-0.8315,-0.4619,-0.3928,-0.7071,-0.5879,-0.3928,-0.7071,-0.5879,-0.3087,-0.8315,-0.4619,-0.2126,-0.8315,-0.5133,-0.3928,-0.7071,-0.5879,-0.2126,-0.8315,-0.5133,-0.2706,-0.7071,-0.6533,-0.2706,-0.7071,-0.6533,-0.2126,-0.8315,-0.5133,-0.1084,-0.8315,-0.5449,-0.2706,-0.7071,-0.6533,-0.1084,-0.8315,-0.5449,-0.1379,-0.7071,-0.6935,-0.1379,-0.7071,-0.6935,-0.1084,-0.8315,-0.5449,0.0,-0.8315,-0.5556,-0.1379,-0.7071,-0.6935,0.0,-0.8315,-0.5556,0.0,-0.7071,-0.7071,0.0,-0.7071,-0.7071,0.0,-0.8315,-0.5556,0.1084,-0.8315,-0.5449,0.0,-0.7071,-0.7071,0.1084,-0.8315,-0.5449,0.138,-0.7071,-0.6935,0.138,-0.7071,-0.6935,0.1084,-0.8315,-0.5449,0.2126,-0.8315,-0.5133,0.138,-0.7071,-0.6935,0.2126,-0.8315,-0.5133,0.2706,-0.7071,-0.6533,0.2706,-0.7071,-0.6533,0.2126,-0.8315,-0.5133,0.3087,-0.8315,-0.4619,0.2706,-0.7071,-0.6533,0.3087,-0.8315,-0.4619,0.3928,-0.7071,-0.5879,0.3928,-0.7071,-0.5879,0.3087,-0.8315,-0.4619,0.3928,-0.8315,-0.3928,0.3928,-0.7071,-0.5879,0.3928,-0.8315,-0.3928,0.5,-0.7071,-0.5,0.5,-0.7071,-0.5,0.3928,-0.8315,-0.3928,0.4619,-0.8315,-0.3087,0.5,-0.7071,-0.5,0.4619,-0.8315,-0.3087,0.5879,-0.7071,-0.3928,0.5879,-0.7071,-0.3928,0.4619,-0.8315,-0.3087,0.5133,-0.8315,-0.2126,0.5879,-0.7071,-0.3928,0.5133,-0.8315,-0.2126,0.6533,-0.7071,-0.2706,0.6533,-0.7071,-0.2706,0.5133,-0.8315,-0.2126,0.5449,-0.8315,-0.1084,0.6533,-0.7071,-0.2706,0.5449,-0.8315,-0.1084,0.6935,-0.7071,-0.1379,0.6935,-0.7071,-0.1379,0.5449,-0.8315,-0.1084,0.5556,-0.8315,0.0,0.6935,-0.7071,-0.1379,0.5556,-0.8315,0.0,0.7071,-0.7071,0.0,0.7071,-0.7071,0.0,0.5556,-0.8315,0.0,0.5449,-0.8315,0.1084,0.7071,-0.7071,0.0,0.5449,-0.8315,0.1084,0.6935,-0.7071,0.138,0.6935,-0.7071,0.138,0.5449,-0.8315,0.1084,0.5133,-0.8315,0.2126,0.6935,-0.7071,0.138,0.5133,-0.8315,0.2126,0.6533,-0.7071,0.2706,0.6533,-0.7071,0.2706,0.5133,-0.8315,0.2126,0.4619,-0.8315,0.3087,0.6533,-0.7071,0.2706,0.4619,-0.8315,0.3087,0.5879,-0.7071,0.3928,0.5879,-0.7071,0.3928,0.4619,-0.8315,0.3087,0.3928,-0.8315,0.3928,0.5879,-0.7071,0.3928,0.3928,-0.8315,0.3928,0.5,-0.7071,0.5,0.5,-0.7071,0.5,0.3928,-0.8315,0.3928,0.3087,-0.8315,0.4619,0.5,-0.7071,0.5,0.3087,-0.8315,0.4619,0.3928,-0.7071,0.5879,0.3928,-0.7071,0.5879,0.3087,-0.8315,0.4619,0.2126,-0.8315,0.5133,0.3928,-0.7071,0.5879,0.2126,-0.8315,0.5133,0.2706,-0.7071,0.6533,0.2706,-0.7071,0.6533,0.2126,-0.8315,0.5133,0.1084,-0.8315,0.5449,0.2706,-0.7071,0.6533,0.1084,-0.8315,0.5449,0.1379,-0.7071,0.6935,0.1379,-0.7071,0.6935,0.1084,-0.8315,0.5449,0.0,-0.8315,0.5556,0.1379,-0.7071,0.6935,0.0,-0.8315,0.5556,0.0,-0.7071,0.7071,0.0,-0.8315,0.5556,0.0,-0.9239,0.3827,-0.0747,-0.9239,0.3753,0.0,-0.8315,0.5556,-0.0747,-0.9239,0.3753,-0.1084,-0.8315,0.5449,-0.1084,-0.8315,0.5449,-0.0747,-0.9239,0.3753,-0.1464,-0.9239,0.3536,-0.1084,-0.8315,0.5449,-0.1464,-0.9239,0.3536,-0.2126,-0.8315,0.5133,-0.2126,-0.8315,0.5133,-0.1464,-0.9239,0.3536,-0.2126,-0.9239,0.3182,-0.2126,-0.8315,0.5133,-0.2126,-0.9239,0.3182,-0.3087,-0.8315,0.4619,-0.3087,-0.8315,0.4619,-0.2126,-0.9239,0.3182,-0.2706,-0.9239,0.2706,-0.3087,-0.8315,0.4619,-0.2706,-0.9239,0.2706,-0.3928,-0.8315,0.3928,-0.3928,-0.8315,0.3928,-0.2706,-0.9239,0.2706,-0.3182,-0.9239,0.2126,-0.3928,-0.8315,0.3928,-0.3182,-0.9239,0.2126,-0.4619,-0.8315,0.3087,-0.4619,-0.8315,0.3087,-0.3182,-0.9239,0.2126,-0.3536,-0.9239,0.1464,-0.4619,-0.8315,0.3087,-0.3536,-0.9239,0.1464,-0.5133,-0.8315,0.2126,-0.5133,-0.8315,0.2126,-0.3536,-0.9239,0.1464,-0.3753,-0.9239,0.0747,-0.5133,-0.8315,0.2126,-0.3753,-0.9239,0.0747,-0.5449,-0.8315,0.1084,-0.5449,-0.8315,0.1084,-0.3753,-0.9239,0.0747,-0.3827,-0.9239,0.0,-0.5449,-0.8315,0.1084,-0.3827,-0.9239,0.0,-0.5556,-0.8315,0.0,-0.5556,-0.8315,0.0,-0.3827,-0.9239,0.0,-0.3753,-0.9239,-0.0747,-0.5556,-0.8315,0.0,-0.3753,-0.9239,-0.0747,-0.5449,-0.8315,-0.1084,-0.5449,-0.8315,-0.1084,-0.3753,-0.9239,-0.0747,-0.3536,-0.9239,-0.1464,-0.5449,-0.8315,-0.1084,-0.3536,-0.9239,-0.1464,-0.5133,-0.8315,-0.2126,-0.5133,-0.8315,-0.2126,-0.3536,-0.9239,-0.1464,-0.3182,-0.9239,-0.2126,-0.5133,-0.8315,-0.2126,-0.3182,-0.9239,-0.2126,-0.4619,-0.8315,-0.3087,-0.4619,-0.8315,-0.3087,-0.3182,-0.9239,-0.2126,-0.2706,-0.9239,-0.2706,-0.4619,-0.8315,-0.3087,-0.2706,-0.9239,-0.2706,-0.3928,-0.8315,-0.3928,-0.3928,-0.8315,-0.3928,-0.2706,-0.9239,-0.2706,-0.2126,-0.9239,-0.3182,-0.3928,-0.8315,-0.3928,-0.2126,-0.9239,-0.3182,-0.3087,-0.8315,-0.4619,-0.3087,-0.8315,-0.4619,-0.2126,-0.9239,-0.3182,-0.1464,-0.9239,-0.3536,-0.3087,-0.8315,-0.4619,-0.1464,-0.9239,-0.3536,-0.2126,-0.8315,-0.5133,-0.2126,-0.8315,-0.5133,-0.1464,-0.9239,-0.3536,-0.0747,-0.9239,-0.3753,-0.2126,-0.8315,-0.5133,-0.0747,-0.9239,-0.3753,-0.1084,-0.8315,-0.5449,-0.1084,-0.8315,-0.5449,-0.0747,-0.9239,-0.3753,0.0,-0.9239,-0.3827,-0.1084,-0.8315,-0.5449,0.0,-0.9239,-0.3827,0.0,-0.8315,-0.5556,0.0,-0.8315,-0.5556,0.0,-0.9239,-0.3827,0.0747,-0.9239,-0.3753,0.0,-0.8315,-0.5556,0.0747,-0.9239,-0.3753,0.1084,-0.8315,-0.5449,0.1084,-0.8315,-0.5449,0.0747,-0.9239,-0.3753,0.1464,-0.9239,-0.3536,0.1084,-0.8315,-0.5449,0.1464,-0.9239,-0.3536,0.2126,-0.8315,-0.5133,0.2126,-0.8315,-0.5133,0.1464,-0.9239,-0.3536,0.2126,-0.9239,-0.3182,0.2126,-0.8315,-0.5133,0.2126,-0.9239,-0.3182,0.3087,-0.8315,-0.4619,0.3087,-0.8315,-0.4619,0.2126,-0.9239,-0.3182,0.2706,-0.9239,-0.2706,0.3087,-0.8315,-0.4619,0.2706,-0.9239,-0.2706,0.3928,-0.8315,-0.3928,0.3928,-0.8315,-0.3928,0.2706,-0.9239,-0.2706,0.3182,-0.9239,-0.2126,0.3928,-0.8315,-0.3928,0.3182,-0.9239,-0.2126,0.4619,-0.8315,-0.3087,0.4619,-0.8315,-0.3087,0.3182,-0.9239,-0.2126,0.3536,-0.9239,-0.1464,0.4619,-0.8315,-0.3087,0.3536,-0.9239,-0.1464,0.5133,-0.8315,-0.2126,0.5133,-0.8315,-0.2126,0.3536,-0.9239,-0.1464,0.3753,-0.9239,-0.0747,0.5133,-0.8315,-0.2126,0.3753,-0.9239,-0.0747,0.5449,-0.8315,-0.1084,0.5449,-0.8315,-0.1084,0.3753,-0.9239,-0.0747,0.3827,-0.9239,0.0,0.5449,-0.8315,-0.1084,0.3827,-0.9239,0.0,0.5556,-0.8315,0.0,0.5556,-0.8315,0.0,0.3827,-0.9239,0.0,0.3753,-0.9239,0.0747,0.5556,-0.8315,0.0,0.3753,-0.9239,0.0747,0.5449,-0.8315,0.1084,0.5449,-0.8315,0.1084,0.3753,-0.9239,0.0747,0.3536,-0.9239,0.1464,0.5449,-0.8315,0.1084,0.3536,-0.9239,0.1464,0.5133,-0.8315,0.2126,0.5133,-0.8315,0.2126,0.3536,-0.9239,0.1464,0.3182,-0.9239,0.2126,0.5133,-0.8315,0.2126,0.3182,-0.9239,0.2126,0.4619,-0.8315,0.3087,0.4619,-0.8315,0.3087,0.3182,-0.9239,0.2126,0.2706,-0.9239,0.2706,0.4619,-0.8315,0.3087,0.2706,-0.9239,0.2706,0.3928,-0.8315,0.3928,0.3928,-0.8315,0.3928,0.2706,-0.9239,0.2706,0.2126,-0.9239,0.3182,0.3928,-0.8315,0.3928,0.2126,-0.9239,0.3182,0.3087,-0.8315,0.4619,0.3087,-0.8315,0.4619,0.2126,-0.9239,0.3182,0.1464,-0.9239,0.3536,0.3087,-0.8315,0.4619,0.1464,-0.9239,0.3536,0.2126,-0.8315,0.5133,0.2126,-0.8315,0.5133,0.1464,-0.9239,0.3536,0.0747,-0.9239,0.3753,0.2126,-0.8315,0.5133,0.0747,-0.9239,0.3753,0.1084,-0.8315,0.5449,0.1084,-0.8315,0.5449,0.0747,-0.9239,0.3753,0.0,-0.9239,0.3827,0.1084,-0.8315,0.5449,0.0,-0.9239,0.3827,0.0,-0.8315,0.5556,0.0,-0.9239,0.3827,0.0,-0.9808,0.1951,-0.0381,-0.9808,0.1913,0.0,-0.9239,0.3827,-0.0381,-0.9808,0.1913,-0.0747,-0.9239,0.3753,-0.0747,-0.9239,0.3753,-0.0381,-0.9808,0.1913,-0.0747,-0.9808,0.1802,-0.0747,-0.9239,0.3753,-0.0747,-0.9808,0.1802,-0.1464,-0.9239,0.3536,-0.1464,-0.9239,0.3536,-0.0747,-0.9808,0.1802,-0.1084,-0.9808,0.1622,-0.1464,-0.9239,0.3536,-0.1084,-0.9808,0.1622,-0.2126,-0.9239,0.3182,-0.2126,-0.9239,0.3182,-0.1084,-0.9808,0.1622,-0.1379,-0.9808,0.1379,-0.2126,-0.9239,0.3182,-0.1379,-0.9808,0.1379,-0.2706,-0.9239,0.2706,-0.2706,-0.9239,0.2706,-0.1379,-0.9808,0.1379,-0.1622,-0.9808,0.1084,-0.2706,-0.9239,0.2706,-0.1622,-0.9808,0.1084,-0.3182,-0.9239,0.2126,-0.3182,-0.9239,0.2126,-0.1622,-0.9808,0.1084,-0.1802,-0.9808,0.0747,-0.3182,-0.9239,0.2126,-0.1802,-0.9808,0.0747,-0.3536,-0.9239,0.1464,-0.3536,-0.9239,0.1464,-0.1802,-0.9808,0.0747,-0.1913,-0.9808,0.0381,-0.3536,-0.9239,0.1464,-0.1913,-0.9808,0.0381,-0.3753,-0.9239,0.0747,-0.3753,-0.9239,0.0747,-0.1913,-0.9808,0.0381,-0.1951,-0.9808,0.0,-0.3753,-0.9239,0.0747,-0.1951,-0.9808,0.0,-0.3827,-0.9239,0.0,-0.3827,-0.9239,0.0,-0.1951,-0.9808,0.0,-0.1913,-0.9808,-0.0381,-0.3827,-0.9239,0.0,-0.1913,-0.9808,-0.0381,-0.3753,-0.9239,-0.0747,-0.3753,-0.9239,-0.0747,-0.1913,-0.9808,-0.0381,-0.1802,-0.9808,-0.0747,-0.3753,-0.9239,-0.0747,-0.1802,-0.9808,-0.0747,-0.3536,-0.9239,-0.1464,-0.3536,-0.9239,-0.1464,-0.1802,-0.9808,-0.0747,-0.1622,-0.9808,-0.1084,-0.3536,-0.9239,-0.1464,-0.1622,-0.9808,-0.1084,-0.3182,-0.9239,-0.2126,-0.3182,-0.9239,-0.2126,-0.1622,-0.9808,-0.1084,-0.1379,-0.9808,-0.1379,-0.3182,-0.9239,-0.2126,-0.1379,-0.9808,-0.1379,-0.2706,-0.9239,-0.2706,-0.2706,-0.9239,-0.2706,-0.1379,-0.9808,-0.1379,-0.1084,-0.9808,-0.1622,-0.2706,-0.9239,-0.2706,-0.1084,-0.9808,-0.1622,-0.2126,-0.9239,-0.3182,-0.2126,-0.9239,-0.3182,-0.1084,-0.9808,-0.1622,-0.0747,-0.9808,-0.1802,-0.2126,-0.9239,-0.3182,-0.0747,-0.9808,-0.1802,-0.1464,-0.9239,-0.3536,-0.1464,-0.9239,-0.3536,-0.0747,-0.9808,-0.1802,-0.0381,-0.9808,-0.1913,-0.1464,-0.9239,-0.3536,-0.0381,-0.9808,-0.1913,-0.0747,-0.9239,-0.3753,-0.0747,-0.9239,-0.3753,-0.0381,-0.9808,-0.1913,0.0,-0.9808,-0.1951,-0.0747,-0.9239,-0.3753,0.0,-0.9808,-0.1951,0.0,-0.9239,-0.3827,0.0,-0.9239,-0.3827,0.0,-0.9808,-0.1951,0.0381,-0.9808,-0.1913,0.0,-0.9239,-0.3827,0.0381,-0.9808,-0.1913,0.0747,-0.9239,-0.3753,0.0747,-0.9239,-0.3753,0.0381,-0.9808,-0.1913,0.0747,-0.9808,-0.1802,0.0747,-0.9239,-0.3753,0.0747,-0.9808,-0.1802,0.1464,-0.9239,-0.3536,0.1464,-0.9239,-0.3536,0.0747,-0.9808,-0.1802,0.1084,-0.9808,-0.1622,0.1464,-0.9239,-0.3536,0.1084,-0.9808,-0.1622,0.2126,-0.9239,-0.3182,0.2126,-0.9239,-0.3182,0.1084,-0.9808,-0.1622,0.1379,-0.9808,-0.1379,0.2126,-0.9239,-0.3182,0.1379,-0.9808,-0.1379,0.2706,-0.9239,-0.2706,0.2706,-0.9239,-0.2706,0.1379,-0.9808,-0.1379,0.1622,-0.9808,-0.1084,0.2706,-0.9239,-0.2706,0.1622,-0.9808,-0.1084,0.3182,-0.9239,-0.2126,0.3182,-0.9239,-0.2126,0.1622,-0.9808,-0.1084,0.1802,-0.9808,-0.0747,0.3182,-0.9239,-0.2126,0.1802,-0.9808,-0.0747,0.3536,-0.9239,-0.1464,0.3536,-0.9239,-0.1464,0.1802,-0.9808,-0.0747,0.1913,-0.9808,-0.0381,0.3536,-0.9239,-0.1464,0.1913,-0.9808,-0.0381,0.3753,-0.9239,-0.0747,0.3753,-0.9239,-0.0747,0.1913,-0.9808,-0.0381,0.1951,-0.9808,0.0,0.3753,-0.9239,-0.0747,0.1951,-0.9808,0.0,0.3827,-0.9239,0.0,0.3827,-0.9239,0.0,0.1951,-0.9808,0.0,0.1913,-0.9808,0.0381,0.3827,-0.9239,0.0,0.1913,-0.9808,0.0381,0.3753,-0.9239,0.0747,0.3753,-0.9239,0.0747,0.1913,-0.9808,0.0381,0.1802,-0.9808,0.0747,0.3753,-0.9239,0.0747,0.1802,-0.9808,0.0747,0.3536,-0.9239,0.1464,0.3536,-0.9239,0.1464,0.1802,-0.9808,0.0747,0.1622,-0.9808,0.1084,0.3536,-0.9239,0.1464,0.1622,-0.9808,0.1084,0.3182,-0.9239,0.2126,0.3182,-0.9239,0.2126,0.1622,-0.9808,0.1084,0.1379,-0.9808,0.1379,0.3182,-0.9239,0.2126,0.1379,-0.9808,0.1379,0.2706,-0.9239,0.2706,0.2706,-0.9239,0.2706,0.1379,-0.9808,0.1379,0.1084,-0.9808,0.1622,0.2706,-0.9239,0.2706,0.1084,-0.9808,0.1622,0.2126,-0.9239,0.3182,0.2126,-0.9239,0.3182,0.1084,-0.9808,0.1622,0.0747,-0.9808,0.1802,0.2126,-0.9239,0.3182,0.0747,-0.9808,0.1802,0.1464,-0.9239,0.3536,0.1464,-0.9239,0.3536,0.0747,-0.9808,0.1802,0.0381,-0.9808,0.1913,0.1464,-0.9239,0.3536,0.0381,-0.9808,0.1913,0.0747,-0.9239,0.3753,0.0747,-0.9239,0.3753,0.0381,-0.9808,0.1913,0.0,-0.9808,0.1951,0.0747,-0.9239,0.3753,0.0,-0.9808,0.1951,0.0,-0.9239,0.3827,0.0,-1.0,0.0,-0.0381,-0.9808,0.1913,0.0,-0.9808,0.1951,0.0,-1.0,0.0,-0.0747,-0.9808,0.1802,-0.0381,-0.9808,0.1913,0.0,-1.0,0.0,-0.1084,-0.9808,0.1622,-0.0747,-0.9808,0.1802,0.0,-1.0,0.0,-0.1379,-0.9808,0.1379,-0.1084,-0.9808,0.1622,0.0,-1.0,0.0,-0.1622,-0.9808,0.1084,-0.1379,-0.9808,0.1379,0.0,-1.0,0.0,-0.1802,-0.9808,0.0747,-0.1622,-0.9808,0.1084,0.0,-1.0,0.0,-0.1913,-0.9808,0.0381,-0.1802,-0.9808,0.0747,0.0,-1.0,0.0,-0.1951,-0.9808,0.0,-0.1913,-0.9808,0.0381,0.0,-1.0,0.0,-0.1913,-0.9808,-0.0381,-0.1951,-0.9808,0.0,0.0,-1.0,0.0,-0.1802,-0.9808,-0.0747,-0.1913,-0.9808,-0.0381,0.0,-1.0,0.0,-0.1622,-0.9808,-0.1084,-0.1802,-0.9808,-0.0747,0.0,-1.0,0.0,-0.1379,-0.9808,-0.1379,-0.1622,-0.9808,-0.1084,0.0,-1.0,0.0,-0.1084,-0.9808,-0.1622,-0.1379,-0.9808,-0.1379,0.0,-1.0,0.0,-0.0747,-0.9808,-0.1802,-0.1084,-0.9808,-0.1622,0.0,-1.0,0.0,-0.0381,-0.9808,-0.1913,-0.0747,-0.9808,-0.1802,0.0,-1.0,0.0,0.0,-0.9808,-0.1951,-0.0381,-0.9808,-0.1913,0.0,-1.0,0.0,0.0381,-0.9808,-0.1913,0.0,-0.9808,-0.1951,0.0,-1.0,0.0,0.0747,-0.9808,-0.1802,0.0381,-0.9808,-0.1913,0.0,-1.0,0.0,0.1084,-0.9808,-0.1622,0.0747,-0.9808,-0.1802,0.0,-1.0,0.0,0.1379,-0.9808,-0.1379,0.1084,-0.9808,-0.1622,0.0,-1.0,0.0,0.1622,-0.9808,-0.1084,0.1379,-0.9808,-0.1379,0.0,-1.0,0.0,0.1802,-0.9808,-0.0747,0.1622,-0.9808,-0.1084,0.0,-1.0,0.0,0.1913,-0.9808,-0.0381,0.1802,-0.9808,-0.0747,0.0,-1.0,0.0,0.1951,-0.9808,0.0,0.1913,-0.9808,-0.0381,0.0,-1.0,0.0,0.1913,-0.9808,0.0381,0.1951,-0.9808,0.0,0.0,-1.0,0.0,0.1802,-0.9808,0.0747,0.1913,-0.9808,0.0381,0.0,-1.0,0.0,0.1622,-0.9808,0.1084,0.1802,-0.9808,0.0747,0.0,-1.0,0.0,0.1379,-0.9808,0.1379,0.1622,-0.9808,0.1084,0.0,-1.0,0.0,0.1084,-0.9808,0.1622,0.1379,-0.9808,0.1379,0.0,-1.0,0.0,0.0747,-0.9808,0.1802,0.1084,-0.9808,0.1622,0.0,-1.0,0.0,0.0381,-0.9808,0.1913,0.0747,-0.9808,0.1802,0.0,-1.0,0.0,0.0,-0.9808,0.1951,0.0381,-0.9808,0.1913],"normals":[0.0,1.0,0.0,0.0,0.9796,0.201,-0.0392,0.9796,0.1971,0.0,1.0,0.0,-0.0392,0.9796,0.1971,-0.0769,0.9796,0.1857,0.0,1.0,0.0,-0.0769,0.9796,0.1857,-0.1117,0.9796,0.1671,0.0,1.0,0.0,-0.1117,0.9796,0.1671,-0.1421,0.9796,0.1421,0.0,1.0,0.0,-0.1421,0.9796,0.1421,-0.1671,0.9796,0.1117,0.0,1.0,0.0,-0.1671,0.9796,0.1117,-0.1857,0.9796,0.0769,0.0,1.0,0.0,-0.1857,0.9796,0.0769,-0.1971,0.9796,0.0392,0.0,1.0,0.0,-0.1971,0.9796,0.0392,-0.201,0.9796,0.0,0.0,1.0,0.0,-0.201,0.9796,0.0,-0.1971,0.9796,-0.0392,0.0,1.0,0.0,-0.1971,0.9796,-0.0392,-0.1857,0.9796,-0.0769,0.0,1.0,0.0,-0.1857,0.9796,-0.0769,-0.1671,0.9796,-0.1117,0.0,1.0,0.0,-0.1671,0.9796,-0.1117,-0.1421,0.9796,-0.1421,0.0,1.0,0.0,-0.1421,0.9796,-0.1421,-0.1117,0.9796,-0.1671,0.0,1.0,0.0,-0.1117,0.9796,-0.1671,-0.0769,0.9796,-0.1857,0.0,1.0,0.0,-0.0769,0.9796,-0.1857,-0.0392,0.9796,-0.1971,0.0,1.0,0.0,-0.0392,0.9796,-0.1971,0.0,0.9796,-0.201,0.0,1.0,0.0,0.0,0.9796,-0.201,0.0392,0.9796,-0.1971,0.0,1.0,0.0,0.0392,0.9796,-0.1971,0.0769,0.9796,-0.1857,0.0,1.0,0.0,0.0769,0.9796,-0.1857,0.1117,0.9796,-0.1671,0.0,1.0,0.0,0.1117,0.9796,-0.1671,0.1421,0.9796,-0.1421,0.0,1.0,0.0,0.1421,0.9796,-0.1421,0.1671,0.9796,-0.1117,0.0,1.0,0.0,0.1671,0.9796,-0.1117,0.1857,0.9796,-0.0769,0.0,1.0,0.0,0.1857,0.9796,-0.0769,0.1971,0.9796,-0.0392,0.0,1.0,0.0,0.1971,0.9796,-0.0392,0.201,0.9796,0.0,0.0,1.0,0.0,0.201,0.9796,0.0,0.1971,0.9796,0.0392,0.0,1.0,0.0,0.1971,0.9796,0.0392,0.1857,0.9796,0.0769,0.0,1.0,0.0,0.1857,0.9796,0.0769,0.1671,0.9796,0.1117,0.0,1.0,0.0,0.1671,0.9796,0.1117,0.1421,0.9796,0.1421,0.0,1.0,0.0,0.1421,0.9796,0.1421,0.1117,0.9796,0.1671,0.0,1.0,0.0,0.1117,0.9796,0.1671,0.0769,0.9796,0.1857,0.0,1.0,0.0,0.0769,0.9796,0.1857,0.0392,0.9796,0.1971,0.0,1.0,0.0,0.0392,0.9796,0.1971,0.0,0.9796,0.201,0.0,0.9796,0.201,0.0,0.9217,0.3879,-0.0757,0.9217,0.3804,0.0,0.9796,0.201,-0.0757,0.9217,0.3804,-0.0392,0.9796,0.1971,-0.0392,0.9796,0.1971,-0.0757,0.9217,0.3804,-0.1484,0.9217,0.3584,-0.0392,0.9796,0.1971,-0.1484,0.9217,0.3584,-0.0769,0.9796,0.1857,-0.0769,0.9796,0.1857,-0.1484,0.9217,0.3584,-0.2155,0.9217,0.3225,-0.0769,0.9796,0.1857,-0.2155,0.9217,0.3225,-0.1117,0.9796,0.1671,-0.1117,0.9796,0.1671,-0.2155,0.9217,0.3225,-0.2743,0.9217,0.2743,-0.1117,0.9796,0.1671,-0.2743,0.9217,0.2743,-0.1421,0.9796,0.1421,-0.1421,0.9796,0.1421,-0.2743,0.9217,0.2743,-0.3225,0.9217,0.2155,-0.1421,0.9796,0.1421,-0.3225,0.9217,0.2155,-0.1671,0.9796,0.1117,-0.1671,0.9796,0.1117,-0.3225,0.9217,0.2155,-0.3584,0.9217,0.1484,-0.1671,0.9796,0.1117,-0.3584,0.9217,0.1484,-0.1857,0.9796,0.0769,-0.1857,0.9796,0.0769,-0.3584,0.9217,0.1484,-0.3804,0.9217,0.0757,-0.1857,0.9796,0.0769,-0.3804,0.9217,0.0757,-0.1971,0.9796,0.0392,-0.1971,0.9796,0.0392,-0.3804,0.9217,0.0757,-0.3879,0.9217,0.0,-0.1971,0.9796,0.0392,-0.3879,0.9217,0.0,-0.201,0.9796,0.0,-0.201,0.9796,0.0,-0.3879,0.9217,0.0,-0.3804,0.9217,-0.0757,-0.201,0.9796,0.0,-0.3804,0.9217,-0.0757,-0.1971,0.9796,-0.0392,-0.1971,0.9796,-0.0392,-0.3804,0.9217,-0.0757,-0.3584,0.9217,-0.1484,-0.1971,0.9796,-0.0392,-0.3584,0.9217,-0.1484,-0.1857,0.9796,-0.0769,-0.1857,0.9796,-0.0769,-0.3584,0.9217,-0.1484,-0.3225,0.9217,-0.2155,-0.1857,0.9796,-0.0769,-0.3225,0.9217,-0.2155,-0.1671,0.9796,-0.1117,-0.1671,0.9796,-0.1117,-0.3225,0.9217,-0.2155,-0.2743,0.9217,-0.2743,-0.1671,0.9796,-0.1117,-0.2743,0.9217,-0.2743,-0.1421,0.9796,-0.1421,-0.1421,0.9796,-0.1421,-0.2743,0.9217,-0.2743,-0.2155,0.9217,-0.3225,-0.1421,0.9796,-0.1421,-0.2155,0.9217,-0.3225,-0.1117,0.9796,-0.1671,-0.1117,0.9796,-0.1671,-0.2155,0.9217,-0.3225,-0.1484,0.9217,-0.3584,-0.1117,0.9796,-0.1671,-0.1484,0.9217,-0.3584,-0.0769,0.9796,-0.1857,-0.0769,0.9796,-0.1857,-0.1484,0.9217,-0.3584,-0.0757,0.9217,-0.3804,-0.0769,0.9796,-0.1857,-0.0757,0.9217,-0.3804,-0.0392,0.9796,-0.1971,-0.0392,0.9796,-0.1971,-0.0757,0.9217,-0.3804,0.0,0.9217,-0.3879,-0.0392,0.9796,-0.1971,0.0,0.9217,-0.3879,0.0,0.9796,-0.201,0.0,0.9796,-0.201,0.0,0.9217,-0.3879,0.0757,0.9217,-0.3804,0.0,0.9796,-0.201,0.0757,0.9217,-0.3804,0.0392,0.9796,-0.1971,0.0392,0.9796,-0.1971,0.0757,0.9217,-0.3804,0.1484,0.9217,-0.3584,0.0392,0.9796,-0.1971,0.1484,0.9217,-0.3584,0.0769,0.9796,-0.1857,0.0769,0.9796,-0.1857,0.1484,0.9217,-0.3584,0.2155,0.9217,-0.3225,0.0769,0.9796,-0.1857,0.2155,0.9217,-0.3225,0.1117,0.9796,-0.1671,0.1117,0.9796,-0.1671,0.2155,0.9217,-0.3225,0.2743,0.9217,-0.2743,0.1117,0.9796,-0.1671,0.2743,0.9217,-0.2743,0.1421,0.9796,-0.1421,0.1421,0.9796,-0.1421,0.2743,0.9217,-0.2743,0.3225,0.9217,-0.2155,0.1421,0.9796,-0.1421,0.3225,0.9217,-0.2155,0.1671,0.9796,-0.1117,0.1671,0.9796,-0.1117,0.3225,0.9217,-0.2155,0.3584,0.9217,-0.1484,0.1671,0.9796,-0.1117,0.3584,0.9217,-0.1484,0.1857,0.9796,-0.0769,0.1857,0.9796,-0.0769,0.3584,0.9217,-0.1484,0.3804,0.9217,-0.0757,0.1857,0.9796,-0.0769,0.3804,0.9217,-0.0757,0.1971,0.9796,-0.0392,0.1971,0.9796,-0.0392,0.3804,0.9217,-0.0757,0.3879,0.9217,0.0,0.1971,0.9796,-0.0392,0.3879,0.9217,0.0,0.201,0.9796,0.0,0.201,0.9796,0.0,0.3879,0.9217,0.0,0.3804,0.9217,0.0757,0.201,0.9796,0.0,0.3804,0.9217,0.0757,0.1971,0.9796,0.0392,0.1971,0.9796,0.0392,0.3804,0.9217,0.0757,0.3584,0.9217,0.1484,0.1971,0.9796,0.0392,0.3584,0.9217,0.1484,0.1857,0.9796,0.0769,0.1857,0.9796,0.0769,0.3584,0.9217,0.1484,0.3225,0.9217,0.2155,0.1857,0.9796,0.0769,0.3225,0.9217,0.2155,0.1671,0.9796,0.1117,0.1671,0.9796,0.1117,0.3225,0.9217,0.2155,0.2743,0.9217,0.2743,0.1671,0.9796,0.1117,0.2743,0.9217,0.2743,0.1421,0.9796,0.1421,0.1421,0.9796,0.1421,0.2743,0.9217,0.2743,0.2155,0.9217,0.3225,0.1421,0.9796,0.1421,0.2155,0.9217,0.3225,0.1117,0.9796,0.1671,0.1117,0.9796,0.1671,0.2155,0.9217,0.3225,0.1484,0.9217,0.3584,0.1117,0.9796,0.1671,0.1484,0.9217,0.3584,0.0769,0.9796,0.1857,0.0769,0.9796,0.1857,0.1484,0.9217,0.3584,0.0757,0.9217,0.3804,0.0769,0.9796,0.1857,0.0757,0.9217,0.3804,0.0392,0.9796,0.1971,0.0392,0.9796,0.1971,0.0757,0.9217,0.3804,0.0,0.9217,0.3879,0.0392,0.9796,0.1971,0.0,0.9217,0.3879,0.0,0.9796,0.201,0.0,0.9217,0.3879,0.0,0.8286,0.5598,-0.1092,0.8286,0.549,0.0,0.9217,0.3879,-0.1092,0.8286,0.549,-0.0757,0.9217,0.3804,-0.0757,0.9217,0.3804,-0.1092,0.8286,0.549,-0.2142,0.8286,0.5172,-0.0757,0.9217,0.3804,-0.2142,0.8286,0.5172,-0.1484,0.9217,0.3584,-0.1484,0.9217,0.3584,-0.2142,0.8286,0.5172,-0.311,0.8286,0.4654,-0.1484,0.9217,0.3584,-0.311,0.8286,0.4654,-0.2155,0.9217,0.3225,-0.2155,0.9217,0.3225,-0.311,0.8286,0.4654,-0.3958,0.8286,0.3958,-0.2155,0.9217,0.3225,-0.3958,0.8286,0.3958,-0.2743,0.9217,0.2743,-0.2743,0.9217,0.2743,-0.3958,0.8286,0.3958,-0.4654,0.8286,0.311,-0.2743,0.9217,0.2743,-0.4654,0.8286,0.311,-0.3225,0.9217,0.2155,-0.3225,0.9217,0.2155,-0.4654,0.8286,0.311,-0.5172,0.8286,0.2142,-0.3225,0.9217,0.2155,-0.5172,0.8286,0.2142,-0.3584,0.9217,0.1484,-0.3584,0.9217,0.1484,-0.5172,0.8286,0.2142,-0.549,0.8286,0.1092,-0.3584,0.9217,0.1484,-0.549,0.8286,0.1092,-0.3804,0.9217,0.0757,-0.3804,0.9217,0.0757,-0.549,0.8286,0.1092,-0.5598,0.8286,0.0,-0.3804,0.9217,0.0757,-0.5598,0.8286,0.0,-0.3879,0.9217,0.0,-0.3879,0.9217,0.0,-0.5598,0.8286,0.0,-0.549,0.8286,-0.1092,-0.3879,0.9217,0.0,-0.549,0.8286,-0.1092,-0.3804,0.9217,-0.0757,-0.3804,0.9217,-0.0757,-0.549,0.8286,-0.1092,-0.5172,0.8286,-0.2142,-0.3804,0.9217,-0.0757,-0.5172,0.8286,-0.2142,-0.3584,0.9217,-0.1484,-0.3584,0.9217,-0.1484,-0.5172,0.8286,-0.2142,-0.4654,0.8286,-0.311,-0.3584,0.9217,-0.1484,-0.4654,0.8286,-0.311,-0.3225,0.9217,-0.2155,-0.3225,0.9217,-0.2155,-0.4654,0.8286,-0.311,-0.3958,0.8286,-0.3958,-0.3225,0.9217,-0.2155,-0.3958,0.8286,-0.3958,-0.2743,0.9217,-0.2743,-0.2743,0.9217,-0.2743,-0.3958,0.8286,-0.3958,-0.311,0.8286,-0.4654,-0.2743,0.9217,-0.2743,-0.311,0.8286,-0.4654,-0.2155,0.9217,-0.3225,-0.2155,0.9217,-0.3225,-0.311,0.8286,-0.4654,-0.2142,0.8286,-0.5172,-0.2155,0.9217,-0.3225,-0.2142,0.8286,-0.5172,-0.1484,0.9217,-0.3584,-0.1484,0.9217,-0.3584,-0.2142,0.8286,-0.5172,-0.1092,0.8286,-0.549,-0.1484,0.9217,-0.3584,-0.1092,0.8286,-0.549,-0.0757,0.9217,-0.3804,-0.0757,0.9217,-0.3804,-0.1092,0.8286,-0.549,0.0,0.8286,-0.5598,-0.0757,0.9217,-0.3804,0.0,0.8286,-0.5598,0.0,0.9217,-0.3879,0.0,0.9217,-0.3879,0.0,0.8286,-0.5598,0.1092,0.8286,-0.549,0.0,0.9217,-0.3879,0.1092,0.8286,-0.549,0.0757,0.9217,-0.3804,0.0757,0.9217,-0.3804,0.1092,0.8286,-0.549,0.2142,0.8286,-0.5172,0.0757,0.9217,-0.3804,0.2142,0.8286,-0.5172,0.1484,0.9217,-0.3584,0.1484,0.9217,-0.3584,0.2142,0.8286,-0.5172,0.311,0.8286,-0.4654,0.1484,0.9217,-0.3584,0.311,0.8286,-0.4654,0.2155,0.9217,-0.3225,0.2155,0.9217,-0.3225,0.311,0.8286,-0.4654,0.3958,0.8286,-0.3958,0.2155,0.9217,-0.3225,0.3958,0.8286,-0.3958,0.2743,0.9217,-0.2743,0.2743,0.9217,-0.2743,0.3958,0.8286,-0.3958,0.4654,0.8286,-0.311,0.2743,0.9217,-0.2743,0.4654,0.8286,-0.311,0.3225,0.9217,-0.2155,0.3225,0.9217,-0.2155,0.4654,0.8286,-0.311,0.5172,0.8286,-0.2142,0.3225,0.9217,-0.2155,0.5172,0.8286,-0.2142,0.3584,0.9217,-0.1484,0.3584,0.9217,-0.1484,0.5172,0.8286,-0.2142,0.549,0.8286,-0.1092,0.3584,0.9217,-0.1484,0.549,0.8286,-0.1092,0.3804,0.9217,-0.0757,0.3804,0.9217,-0.0757,0.549,0.8286,-0.1092,0.5598,0.8286,0.0,0.3804,0.9217,-0.0757,0.5598,0.8286,0.0,0.3879,0.9217,0.0,0.3879,0.9217,0.0,0.5598,0.8286,0.0,0.549,0.8286,0.1092,0.3879,0.9217,0.0,0.549,0.8286,0.1092,0.3804,0.9217,0.0757,0.3804,0.9217,0.0757,0.549,0.8286,0.1092,0.5172,0.8286,0.2142,0.3804,0.9217,0.0757,0.5172,0.8286,0.2142,0.3584,0.9217,0.1484,0.3584,0.9217,0.1484,0.5172,0.8286,0.2142,0.4654,0.8286,0.311,0.3584,0.9217,0.1484,0.4654,0.8286,0.311,0.3225,0.9217,0.2155,0.3225,0.9217,0.2155,0.4654,0.8286,0.311,0.3958,0.8286,0.3958,0.3225,0.9217,0.2155,0.3958,0.8286,0.3958,0.2743,0.9217,0.2743,0.2743,0.9217,0.2743,0.3958,0.8286,0.3958,0.311,0.8286,0.4654,0.2743,0.9217,0.2743,0.311,0.8286,0.4654,0.2155,0.9217,0.3225,0.2155,0.9217,0.3225,0.311,0.8286,0.4654,0.2142,0.8286,0.5172,0.2155,0.9217,0.3225,0.2142,0.8286,0.5172,0.1484,0.9217,0.3584,0.1484,0.9217,0.3584,0.2142,0.8286,0.5172,0.1092,0.8286,0.549,0.1484,0.9217,0.3584,0.1092,0.8286,0.549,0.0757,0.9217,0.3804,0.0757,0.9217,0.3804,0.1092,0.8286,0.549,0.0,0.8286,0.5598,0.0757,0.9217,0.3804,0.0,0.8286,0.5598,0.0,0.9217,0.3879,0.0,0.8286,0.5598,0.0,0.7041,0.7101,-0.1385,0.7041,0.6965,0.0,0.8286,0.5598,-0.1385,0.7041,0.6965,-0.1092,0.8286,0.549,-0.1092,0.8286,0.549,-0.1385,0.7041,0.6965,-0.2718,0.7041,0.6561,-0.1092,0.8286,0.549,-0.2718,0.7041,0.6561,-0.2142,0.8286,0.5172,-0.2142,0.8286,0.5172,-0.2718,0.7041,0.6561,-0.3945,0.7041,0.5905,-0.2142,0.8286,0.5172,-0.3945,0.7041,0.5905,-0.311,0.8286,0.4654,-0.311,0.8286,0.4654,-0.3945,0.7041,0.5905,-0.5021,0.7041,0.5021,-0.311,0.8286,0.4654,-0.5021,0.7041,0.5021,-0.3958,0.8286,0.3958,-0.3958,0.8286,0.3958,-0.5021,0.7041,0.5021,-0.5905,0.7041,0.3945,-0.3958,0.8286,0.3958,-0.5905,0.7041,0.3945,-0.4654,0.8286,0.311,-0.4654,0.8286,0.311,-0.5905,0.7041,0.3945,-0.6561,0.7041,0.2718,-0.4654,0.8286,0.311,-0.6561,0.7041,0.2718,-0.5172,0.8286,0.2142,-0.5172,0.8286,0.2142,-0.6561,0.7041,0.2718,-0.6965,0.7041,0.1385,-0.5172,0.8286,0.2142,-0.6965,0.7041,0.1385,-0.549,0.8286,0.1092,-0.549,0.8286,0.1092,-0.6965,0.7041,0.1385,-0.7101,0.7041,0.0,-0.549,0.8286,0.1092,-0.7101,0.7041,0.0,-0.5598,0.8286,0.0,-0.5598,0.8286,0.0,-0.7101,0.7041,0.0,-0.6965,0.7041,-0.1385,-0.5598,0.8286,0.0,-0.6965,0.7041,-0.1385,-0.549,0.8286,-0.1092,-0.549,0.8286,-0.1092,-0.6965,0.7041,-0.1385,-0.6561,0.7041,-0.2718,-0.549,0.8286,-0.1092,-0.6561,0.7041,-0.2718,-0.5172,0.8286,-0.2142,-0.5172,0.8286,-0.2142,-0.6561,0.7041,-0.2718,-0.5905,0.7041,-0.3945,-0.5172,0.8286,-0.2142,-0.5905,0.7041,-0.3945,-0.4654,0.8286,-0.311,-0.4654,0.8286,-0.311,-0.5905,0.7041,-0.3945,-0.5021,0.7041,-0.5021,-0.4654,0.8286,-0.311,-0.5021,0.7041,-0.5021,-0.3958,0.8286,-0.3958,-0.3958,0.8286,-0.3958,-0.5021,0.7041,-0.5021,-0.3945,0.7041,-0.5905,-0.3958,0.8286,-0.3958,-0.3945,0.7041,-0.5905,-0.311,0.8286,-0.4654,-0.311,0.8286,-0.4654,-0.3945,0.7041,-0.5905,-0.2718,0.7041,-0.6561,-0.311,0.8286,-0.4654,-0.2718,0.7041,-0.6561,-0.2142,0.8286,-0.5172,-0.2142,0.8286,-0.5172,-0.2718,0.7041,-0.6561,-0.1385,0.7041,-0.6965,-0.2142,0.8286,-0.5172,-0.1385,0.7041,-0.6965,-0.1092,0.8286,-0.549,-0.1092,0.8286,-0.549,-0.1385,0.7041,-0.6965,0.0,0.7041,-0.7101,-0.1092,0.8286,-0.549,0.0,0.7041,-0.7101,0.0,0.8286,-0.5598,0.0,0.8286,-0.5598,0.0,0.7041,-0.7101,0.1385,0.7041,-0.6965,0.0,0.8286,-0.5598,0.1385,0.7041,-0.6965,0.1092,0.8286,-0.549,0.1092,0.8286,-0.549,0.1385,0.7041,-0.6965,0.2718,0.7041,-0.6561,0.1092,0.8286,-0.549,0.2718,0.7041,-0.6561,0.2142,0.8286,-0.5172,0.2142,0.8286,-0.5172,0.2718,0.7041,-0.6561,0.3945,0.7041,-0.5905,0.2142,0.8286,-0.5172,0.3945,0.7041,-0.5905,0.311,0.8286,-0.4654,0.311,0.8286,-0.4654,0.3945,0.7041,-0.5905,0.5021,0.7041,-0.5021,0.311,0.8286,-0.4654,0.5021,0.7041,-0.5021,0.3958,0.8286,-0.3958,0.3958,0.8286,-0.3958,0.5021,0.7041,-0.5021,0.5905,0.7041,-0.3945,0.3958,0.8286,-0.3958,0.5905,0.7041,-0.3945,0.4654,0.8286,-0.311,0.4654,0.8286,-0.311,0.5905,0.7041,-0.3945,0.6561,0.7041,-0.2718,0.4654,0.8286,-0.311,0.6561,0.7041,-0.2718,0.5172,0.8286,-0.2142,0.5172,0.8286,-0.2142,0.6561,0.7041,-0.2718,0.6965,0.7041,-0.1385,0.5172,0.8286,-0.2142,0.6965,0.7041,-0.1385,0.549,0.8286,-0.1092,0.549,0.8286,-0.1092,0.6965,0.7041,-0.1385,0.7101,0.7041,0.0,0.549,0.8286,-0.1092,0.7101,0.7041,0.0,0.5598,0.8286,0.0,0.5598,0.8286,0.0,0.7101,0.7041,0.0,0.6965,0.7041,0.1385,0.5598,0.8286,0.0,0.6965,0.7041,0.1385,0.549,0.8286,0.1092,0.549,0.8286,0.1092,0.6965,0.7041,0.1385,0.6561,0.7041,0.2718,0.549,0.8286,0.1092,0.6561,0.7041,0.2718,0.5172,0.8286,0.2142,0.5172,0.8286,0.2142,0.6561,0.7041,0.2718,0.5905,0.7041,0.3945,0.5172,0.8286,0.2142,0.5905,0.7041,0.3945,0.4654,0.8286,0.311,0.4654,0.8286,0.311,0.5905,0.7041,0.3945,0.5021,0.7041,0.5021,0.4654,0.8286,0.311,0.5021,0.7041,0.5021,0.3958,0.8286,0.3958,0.3958,0.8286,0.3958,0.5021,0.7041,0.5021,0.3945,0.7041,0.5905,0.3958,0.8286,0.3958,0.3945,0.7041,0.5905,0.311,0.8286,0.4654,0.311,0.8286,0.4654,0.3945,0.7041,0.5905,0.2718,0.7041,0.6561,0.311,0.8286,0.4654,0.2718,0.7041,0.6561,0.2142,0.8286,0.5172,0.2142,0.8286,0.5172,0.2718,0.7041,0.6561,0.1385,0.7041,0.6965,0.2142,0.8286,0.5172,0.1385,0.7041,0.6965,0.1092,0.8286,0.549,0.1092,0.8286,0.549,0.1385,0.7041,0.6965,0.0,0.7041,0.7101,0.1092,0.8286,0.549,0.0,0.7041,0.7101,0.0,0.8286,0.5598,0.0,0.7041,0.7101,0.0,0.5528,0.8333,-0.1626,0.5528,0.8173,0.0,0.7041,0.7101,-0.1626,0.5528,0.8173,-0.1385,0.7041,0.6965,-0.1385,0.7041,0.6965,-0.1626,0.5528,0.8173,-0.3189,0.5528,0.7699,-0.1385,0.7041,0.6965,-0.3189,0.5528,0.7699,-0.2718,0.7041,0.6561,-0.2718,0.7041,0.6561,-0.3189,0.5528,0.7699,-0.463,0.5528,0.6929,-0.2718,0.7041,0.6561,-0.463,0.5528,0.6929,-0.3945,0.7041,0.5905,-0.3945,0.7041,0.5905,-0.463,0.5528,0.6929,-0.5893,0.5528,0.5893,-0.3945,0.7041,0.5905,-0.5893,0.5528,0.5893,-0.5021,0.7041,0.5021,-0.5021,0.7041,0.5021,-0.5893,0.5528,0.5893,-0.6929,0.5528,0.463,-0.5021,0.7041,0.5021,-0.6929,0.5528,0.463,-0.5905,0.7041,0.3945,-0.5905,0.7041,0.3945,-0.6929,0.5528,0.463,-0.7699,0.5528,0.3189,-0.5905,0.7041,0.3945,-0.7699,0.5528,0.3189,-0.6561,0.7041,0.2718,-0.6561,0.7041,0.2718,-0.7699,0.5528,0.3189,-0.8173,0.5528,0.1626,-0.6561,0.7041,0.2718,-0.8173,0.5528,0.1626,-0.6965,0.7041,0.1385,-0.6965,0.7041,0.1385,-0.8173,0.5528,0.1626,-0.8333,0.5528,0.0,-0.6965,0.7041,0.1385,-0.8333,0.5528,0.0,-0.7101,0.7041,0.0,-0.7101,0.7041,0.0,-0.8333,0.5528,0.0,-0.8173,0.5528,-0.1626,-0.7101,0.7041,0.0,-0.8173,0.5528,-0.1626,-0.6965,0.7041,-0.1385,-0.6965,0.7041,-0.1385,-0.8173,0.5528,-0.1626,-0.7699,0.5528,-0.3189,-0.6965,0.7041,-0.1385,-0.7699,0.5528,-0.3189,-0.6561,0.7041,-0.2718,-0.6561,0.7041,-0.2718,-0.7699,0.5528,-0.3189,-0.6929,0.5528,-0.463,-0.6561,0.7041,-0.2718,-0.6929,0.5528,-0.463,-0.5905,0.7041,-0.3945,-0.5905,0.7041,-0.3945,-0.6929,0.5528,-0.463,-0.5893,0.5528,-0.5893,-0.5905,0.7041,-0.3945,-0.5893,0.5528,-0.5893,-0.5021,0.7041,-0.5021,-0.5021,0.7041,-0.5021,-0.5893,0.5528,-0.5893,-0.463,0.5528,-0.6929,-0.5021,0.7041,-0.5021,-0.463,0.5528,-0.6929,-0.3945,0.7041,-0.5905,-0.3945,0.7041,-0.5905,-0.463,0.5528,-0.6929,-0.3189,0.5528,-0.7699,-0.3945,0.7041,-0.5905,-0.3189,0.5528,-0.7699,-0.2718,0.7041,-0.6561,-0.2718,0.7041,-0.6561,-0.3189,0.5528,-0.7699,-0.1626,0.5528,-0.8173,-0.2718,0.7041,-0.6561,-0.1626,0.5528,-0.8173,-0.1385,0.7041,-0.6965,-0.1385,0.7041,-0.6965,-0.1626,0.5528,-0.8173,0.0,0.5528,-0.8333,-0.1385,0.7041,-0.6965,0.0,0.5528,-0.8333,0.0,0.7041,-0.7101,0.0,0.7041,-0.7101,0.0,0.5528,-0.8333,0.1626,0.5528,-0.8173,0.0,0.7041,-0.7101,0.1626,0.5528,-0.8173,0.1385,0.7041,-0.6965,0.1385,0.7041,-0.6965,0.1626,0.5528,-0.8173,0.3189,0.5528,-0.7699,0.1385,0.7041,-0.6965,0.3189,0.5528,-0.7699,0.2718,0.7041,-0.6561,0.2718,0.7041,-0.6561,0.3189,0.5528,-0.7699,0.463,0.5528,-0.6929,0.2718,0.7041,-0.6561,0.463,0.5528,-0.6929,0.3945,0.7041,-0.5905,0.3945,0.7041,-0.5905,0.463,0.5528,-0.6929,0.5893,0.5528,-0.5893,0.3945,0.7041,-0.5905,0.5893,0.5528,-0.5893,0.5021,0.7041,-0.5021,0.5021,0.7041,-0.5021,0.5893,0.5528,-0.5893,0.6929,0.5528,-0.463,0.5021,0.7041,-0.5021,0.6929,0.5528,-0.463,0.5905,0.7041,-0.3945,0.5905,0.7041,-0.3945,0.6929,0.5528,-0.463,0.7699,0.5528,-0.3189,0.5905,0.7041,-0.3945,0.7699,0.5528,-0.3189,0.6561,0.7041,-0.2718,0.6561,0.7041,-0.2718,0.7699,0.5528,-0.3189,0.8173,0.5528,-0.1626,0.6561,0.7041,-0.2718,0.8173,0.5528,-0.1626,0.6965,0.7041,-0.1385,0.6965,0.7041,-0.1385,0.8173,0.5528,-0.1626,0.8333,0.5528,0.0,0.6965,0.7041,-0.1385,0.8333,0.5528,0.0,0.7101,0.7041,0.0,0.7101,0.7041,0.0,0.8333,0.5528,0.0,0.8173,0.5528,0.1626,0.7101,0.7041,0.0,0.8173,0.5528,0.1626,0.6965,0.7041,0.1385,0.6965,0.7041,0.1385,0.8173,0.5528,0.1626,0.7699,0.5528,0.3189,0.6965,0.7041,0.1385,0.7699,0.5528,0.3189,0.6561,0.7041,0.2718,0.6561,0.7041,0.2718,0.7699,0.5528,0.3189,0.6929,0.5528,0.463,0.6561,0.7041,0.2718,0.6929,0.5528,0.463,0.5905,0.7041,0.3945,0.5905,0.7041,0.3945,0.6929,0.5528,0.463,0.5893,0.5528,0.5893,0.5905,0.7041,0.3945,0.5893,0.5528,0.5893,0.5021,0.7041,0.5021,0.5021,0.7041,0.5021,0.5893,0.5528,0.5893,0.463,0.5528,0.6929,0.5021,0.7041,0.5021,0.463,0.5528,0.6929,0.3945,0.7041,0.5905,0.3945,0.7041,0.5905,0.463,0.5528,0.6929,0.3189,0.5528,0.7699,0.3945,0.7041,0.5905,0.3189,0.5528,0.7699,0.2718,0.7041,0.6561,0.2718,0.7041,0.6561,0.3189,0.5528,0.7699,0.1626,0.5528,0.8173,0.2718,0.7041,0.6561,0.1626,0.5528,0.8173,0.1385,0.7041,0.6965,0.1385,0.7041,0.6965,0.1626,0.5528,0.8173,0.0,0.5528,0.8333,0.1385,0.7041,0.6965,0.0,0.5528,0.8333,0.0,0.7041,0.7101,0.0,0.5528,0.8333,0.0,0.3805,0.9248,-0.1804,0.3805,0.907,0.0,0.5528,0.8333,-0.1804,0.3805,0.907,-0.1626,0.5528,0.8173,-0.1626,0.5528,0.8173,-0.1804,0.3805,0.907,-0.3539,0.3805,0.8544,-0.1626,0.5528,0.8173,-0.3539,0.3805,0.8544,-0.3189,0.5528,0.7699,-0.3189,0.5528,0.7699,-0.3539,0.3805,0.8544,-0.5138,0.3805,0.7689,-0.3189,0.5528,0.7699,-0.5138,0.3805,0.7689,-0.463,0.5528,0.6929,-0.463,0.5528,0.6929,-0.5138,0.3805,0.7689,-0.6539,0.3805,0.6539,-0.463,0.5528,0.6929,-0.6539,0.3805,0.6539,-0.5893,0.5528,0.5893,-0.5893,0.5528,0.5893,-0.6539,0.3805,0.6539,-0.7689,0.3805,0.5138,-0.5893,0.5528,0.5893,-0.7689,0.3805,0.5138,-0.6929,0.5528,0.463,-0.6929,0.5528,0.463,-0.7689,0.3805,0.5138,-0.8544,0.3805,0.3539,-0.6929,0.5528,0.463,-0.8544,0.3805,0.3539,-0.7699,0.5528,0.3189,-0.7699,0.5528,0.3189,-0.8544,0.3805,0.3539,-0.907,0.3805,0.1804,-0.7699,0.5528,0.3189,-0.907,0.3805,0.1804,-0.8173,0.5528,0.1626,-0.8173,0.5528,0.1626,-0.907,0.3805,0.1804,-0.9248,0.3805,0.0,-0.8173,0.5528,0.1626,-0.9248,0.3805,0.0,-0.8333,0.5528,0.0,-0.8333,0.5528,0.0,-0.9248,0.3805,0.0,-0.907,0.3805,-0.1804,-0.8333,0.5528,0.0,-0.907,0.3805,-0.1804,-0.8173,0.5528,-0.1626,-0.8173,0.5528,-0.1626,-0.907,0.3805,-0.1804,-0.8544,0.3805,-0.3539,-0.8173,0.5528,-0.1626,-0.8544,0.3805,-0.3539,-0.7699,0.5528,-0.3189,-0.7699,0.5528,-0.3189,-0.8544,0.3805,-0.3539,-0.7689,0.3805,-0.5138,-0.7699,0.5528,-0.3189,-0.7689,0.3805,-0.5138,-0.6929,0.5528,-0.463,-0.6929,0.5528,-0.463,-0.7689,0.3805,-0.5138,-0.6539,0.3805,-0.6539,-0.6929,0.5528,-0.463,-0.6539,0.3805,-0.6539,-0.5893,0.5528,-0.5893,-0.5893,0.5528,-0.5893,-0.6539,0.3805,-0.6539,-0.5138,0.3805,-0.7689,-0.5893,0.5528,-0.5893,-0.5138,0.3805,-0.7689,-0.463,0.5528,-0.6929,-0.463,0.5528,-0.6929,-0.5138,0.3805,-0.7689,-0.3539,0.3805,-0.8544,-0.463,0.5528,-0.6929,-0.3539,0.3805,-0.8544,-0.3189,0.5528,-0.7699,-0.3189,0.5528,-0.7699,-0.3539,0.3805,-0.8544,-0.1804,0.3805,-0.907,-0.3189,0.5528,-0.7699,-0.1804,0.3805,-0.907,-0.1626,0.5528,-0.8173,-0.1626,0.5528,-0.8173,-0.1804,0.3805,-0.907,0.0,0.3805,-0.9248,-0.1626,0.5528,-0.8173,0.0,0.3805,-0.9248,0.0,0.5528,-0.8333,0.0,0.5528,-0.8333,0.0,0.3805,-0.9248,0.1804,0.3805,-0.907,0.0,0.5528,-0.8333,0.1804,0.3805,-0.907,0.1626,0.5528,-0.8173,0.1626,0.5528,-0.8173,0.1804,0.3805,-0.907,0.3539,0.3805,-0.8544,0.1626,0.5528,-0.8173,0.3539,0.3805,-0.8544,0.3189,0.5528,-0.7699,0.3189,0.5528,-0.7699,0.3539,0.3805,-0.8544,0.5138,0.3805,-0.7689,0.3189,0.5528,-0.7699,0.5138,0.3805,-0.7689,0.463,0.5528,-0.6929,0.463,0.5528,-0.6929,0.5138,0.3805,-0.7689,0.6539,0.3805,-0.6539,0.463,0.5528,-0.6929,0.6539,0.3805,-0.6539,0.5893,0.5528,-0.5893,0.5893,0.5528,-0.5893,0.6539,0.3805,-0.6539,0.7689,0.3805,-0.5138,0.5893,0.5528,-0.5893,0.7689,0.3805,-0.5138,0.6929,0.5528,-0.463,0.6929,0.5528,-0.463,0.7689,0.3805,-0.5138,0.8544,0.3805,-0.3539,0.6929,0.5528,-0.463,0.8544,0.3805,-0.3539,0.7699,0.5528,-0.3189,0.7699,0.5528,-0.3189,0.8544,0.3805,-0.3539,0.907,0.3805,-0.1804,0.7699,0.5528,-0.3189,0.907,0.3805,-0.1804,0.8173,0.5528,-0.1626,0.8173,0.5528,-0.1626,0.907,0.3805,-0.1804,0.9248,0.3805,0.0,0.8173,0.5528,-0.1626,0.9248,0.3805,0.0,0.8333,0.5528,0.0,0.8333,0.5528,0.0,0.9248,0.3805,0.0,0.907,0.3805,0.1804,0.8333,0.5528,0.0,0.907,0.3805,0.1804,0.8173,0.5528,0.1626,0.8173,0.5528,0.1626,0.907,0.3805,0.1804,0.8544,0.3805,0.3539,0.8173,0.5528,0.1626,0.8544,0.3805,0.3539,0.7699,0.5528,0.3189,0.7699,0.5528,0.3189,0.8544,0.3805,0.3539,0.7689,0.3805,0.5138,0.7699,0.5528,0.3189,0.7689,0.3805,0.5138,0.6929,0.5528,0.463,0.6929,0.5528,0.463,0.7689,0.3805,0.5138,0.6539,0.3805,0.6539,0.6929,0.5528,0.463,0.6539,0.3805,0.6539,0.5893,0.5528,0.5893,0.5893,0.5528,0.5893,0.6539,0.3805,0.6539,0.5138,0.3805,0.7689,0.5893,0.5528,0.5893,0.5138,0.3805,0.7689,0.463,0.5528,0.6929,0.463,0.5528,0.6929,0.5138,0.3805,0.7689,0.3539,0.3805,0.8544,0.463,0.5528,0.6929,0.3539,0.3805,0.8544,0.3189,0.5528,0.7699,0.3189,0.5528,0.7699,0.3539,0.3805,0.8544,0.1804,0.3805,0.907,0.3189,0.5528,0.7699,0.1804,0.3805,0.907,0.1626,0.5528,0.8173,0.1626,0.5528,0.8173,0.1804,0.3805,0.907,0.0,0.3805,0.9248,0.1626,0.5528,0.8173,0.0,0.3805,0.9248,0.0,0.5528,0.8333,0.0,0.3805,0.9248,0.0,0.1939,0.981,-0.1914,0.1939,0.9622,0.0,0.3805,0.9248,-0.1914,0.1939,0.9622,-0.1804,0.3805,0.907,-0.1804,0.3805,0.907,-0.1914,0.1939,0.9622,-0.3754,0.1939,0.9063,-0.1804,0.3805,0.907,-0.3754,0.1939,0.9063,-0.3539,0.3805,0.8544,-0.3539,0.3805,0.8544,-0.3754,0.1939,0.9063,-0.545,0.1939,0.8157,-0.3539,0.3805,0.8544,-0.545,0.1939,0.8157,-0.5138,0.3805,0.7689,-0.5138,0.3805,0.7689,-0.545,0.1939,0.8157,-0.6937,0.1939,0.6937,-0.5138,0.3805,0.7689,-0.6937,0.1939,0.6937,-0.6539,0.3805,0.6539,-0.6539,0.3805,0.6539,-0.6937,0.1939,0.6937,-0.8157,0.1939,0.545,-0.6539,0.3805,0.6539,-0.8157,0.1939,0.545,-0.7689,0.3805,0.5138,-0.7689,0.3805,0.5138,-0.8157,0.1939,0.545,-0.9063,0.1939,0.3754,-0.7689,0.3805,0.5138,-0.9063,0.1939,0.3754,-0.8544,0.3805,0.3539,-0.8544,0.3805,0.3539,-0.9063,0.1939,0.3754,-0.9622,0.1939,0.1914,-0.8544,0.3805,0.3539,-0.9622,0.1939,0.1914,-0.907,0.3805,0.1804,-0.907,0.3805,0.1804,-0.9622,0.1939,0.1914,-0.981,0.1939,0.0,-0.907,0.3805,0.1804,-0.981,0.1939,0.0,-0.9248,0.3805,0.0,-0.9248,0.3805,0.0,-0.981,0.1939,0.0,-0.9622,0.1939,-0.1914,-0.9248,0.3805,0.0,-0.9622,0.1939,-0.1914,-0.907,0.3805,-0.1804,-0.907,0.3805,-0.1804,-0.9622,0.1939,-0.1914,-0.9063,0.1939,-0.3754,-0.907,0.3805,-0.1804,-0.9063,0.1939,-0.3754,-0.8544,0.3805,-0.3539,-0.8544,0.3805,-0.3539,-0.9063,0.1939,-0.3754,-0.8157,0.1939,-0.545,-0.8544,0.3805,-0.3539,-0.8157,0.1939,-0.545,-0.7689,0.3805,-0.5138,-0.7689,0.3805,-0.5138,-0.8157,0.1939,-0.545,-0.6937,0.1939,-0.6937,-0.7689,0.3805,-0.5138,-0.6937,0.1939,-0.6937,-0.6539,0.3805,-0.6539,-0.6539,0.3805,-0.6539,-0.6937,0.1939,-0.6937,-0.545,0.1939,-0.8157,-0.6539,0.3805,-0.6539,-0.545,0.1939,-0.8157,-0.5138,0.3805,-0.7689,-0.5138,0.3805,-0.7689,-0.545,0.1939,-0.8157,-0.3754,0.1939,-0.9063,-0.5138,0.3805,-0.7689,-0.3754,0.1939,-0.9063,-0.3539,0.3805,-0.8544,-0.3539,0.3805,-0.8544,-0.3754,0.1939,-0.9063,-0.1914,0.1939,-0.9622,-0.3539,0.3805,-0.8544,-0.1914,0.1939,-0.9622,-0.1804,0.3805,-0.907,-0.1804,0.3805,-0.907,-0.1914,0.1939,-0.9622,0.0,0.1939,-0.981,-0.1804,0.3805,-0.907,0.0,0.1939,-0.981,0.0,0.3805,-0.9248,0.0,0.3805,-0.9248,0.0,0.1939,-0.981,0.1914,0.1939,-0.9622,0.0,0.3805,-0.9248,0.1914,0.1939,-0.9622,0.1804,0.3805,-0.907,0.1804,0.3805,-0.907,0.1914,0.1939,-0.9622,0.3754,0.1939,-0.9063,0.1804,0.3805,-0.907,0.3754,0.1939,-0.9063,0.3539,0.3805,-0.8544,0.3539,0.3805,-0.8544,0.3754,0.1939,-0.9063,0.545,0.1939,-0.8157,0.3539,0.3805,-0.8544,0.545,0.1939,-0.8157,0.5138,0.3805,-0.7689,0.5138,0.3805,-0.7689,0.545,0.1939,-0.8157,0.6937,0.1939,-0.6937,0.5138,0.3805,-0.7689,0.6937,0.1939,-0.6937,0.6539,0.3805,-0.6539,0.6539,0.3805,-0.6539,0.6937,0.1939,-0.6937,0.8157,0.1939,-0.545,0.6539,0.3805,-0.6539,0.8157,0.1939,-0.545,0.7689,0.3805,-0.5138,0.7689,0.3805,-0.5138,0.8157,0.1939,-0.545,0.9063,0.1939,-0.3754,0.7689,0.3805,-0.5138,0.9063,0.1939,-0.3754,0.8544,0.3805,-0.3539,0.8544,0.3805,-0.3539,0.9063,0.1939,-0.3754,0.9622,0.1939,-0.1914,0.8544,0.3805,-0.3539,0.9622,0.1939,-0.1914,0.907,0.3805,-0.1804,0.907,0.3805,-0.1804,0.9622,0.1939,-0.1914,0.981,0.1939,0.0,0.907,0.3805,-0.1804,0.981,0.1939,0.0,0.9248,0.3805,0.0,0.9248,0.3805,0.0,0.981,0.1939,0.0,0.9622,0.1939,0.1914,0.9248,0.3805,0.0,0.9622,0.1939,0.1914,0.907,0.3805,0.1804,0.907,0.3805,0.1804,0.9622,0.1939,0.1914,0.9063,0.1939,0.3754,0.907,0.3805,0.1804,0.9063,0.1939,0.3754,0.8544,0.3805,0.3539,0.8544,0.3805,0.3539,0.9063,0.1939,0.3754,0.8157,0.1939,0.545,0.8544,0.3805,0.3539,0.8157,0.1939,0.545,0.7689,0.3805,0.5138,0.7689,0.3805,0.5138,0.8157,0.1939,0.545,0.6937,0.1939,0.6937,0.7689,0.3805,0.5138,0.6937,0.1939,0.6937,0.6539,0.3805,0.6539,0.6539,0.3805,0.6539,0.6937,0.1939,0.6937,0.545,0.1939,0.8157,0.6539,0.3805,0.6539,0.545,0.1939,0.8157,0.5138,0.3805,0.7689,0.5138,0.3805,0.7689,0.545,0.1939,0.8157,0.3754,0.1939,0.9063,0.5138,0.3805,0.7689,0.3754,0.1939,0.9063,0.3539,0.3805,0.8544,0.3539,0.3805,0.8544,0.3754,0.1939,0.9063,0.1914,0.1939,0.9622,0.3539,0.3805,0.8544,0.1914,0.1939,0.9622,0.1804,0.3805,0.907,0.1804,0.3805,0.907,0.1914,0.1939,0.9622,0.0,0.1939,0.981,0.1804,0.3805,0.907,0.0,0.1939,0.981,0.0,0.3805,0.9248,0.0,0.1939,0.981,0.0,0.0,1.0,-0.1951,0.0,0.9808,0.0,0.1939,0.981,-0.1951,0.0,0.9808,-0.1914,0.1939,0.9622,-0.1914,0.1939,0.9622,-0.1951,0.0,0.9808,-0.3827,0.0,0.9239,-0.1914,0.1939,0.9622,-0.3827,0.0,0.9239,-0.3754,0.1939,0.9063,-0.3754,0.1939,0.9063,-0.3827,0.0,0.9239,-0.5556,0.0,0.8315,-0.3754,0.1939,0.9063,-0.5556,0.0,0.8315,-0.545,0.1939,0.8157,-0.545,0.1939,0.8157,-0.5556,0.0,0.8315,-0.7071,0.0,0.7071,-0.545,0.1939,0.8157,-0.7071,0.0,0.7071,-0.6937,0.1939,0.6937,-0.6937,0.1939,0.6937,-0.7071,0.0,0.7071,-0.8315,0.0,0.5556,-0.6937,0.1939,0.6937,-0.8315,0.0,0.5556,-0.8157,0.1939,0.545,-0.8157,0.1939,0.545,-0.8315,0.0,0.5556,-0.9239,0.0,0.3827,-0.8157,0.1939,0.545,-0.9239,0.0,0.3827,-0.9063,0.1939,0.3754,-0.9063,0.1939,0.3754,-0.9239,0.0,0.3827,-0.9808,0.0,0.1951,-0.9063,0.1939,0.3754,-0.9808,0.0,0.1951,-0.9622,0.1939,0.1914,-0.9622,0.1939,0.1914,-0.9808,0.0,0.1951,-1.0,0.0,0.0,-0.9622,0.1939,0.1914,-1.0,0.0,0.0,-0.981,0.1939,0.0,-0.981,0.1939,0.0,-1.0,0.0,0.0,-0.9808,0.0,-0.1951,-0.981,0.1939,0.0,-0.9808,0.0,-0.1951,-0.9622,0.1939,-0.1914,-0.9622,0.1939,-0.1914,-0.9808,0.0,-0.1951,-0.9239,0.0,-0.3827,-0.9622,0.1939,-0.1914,-0.9239,0.0,-0.3827,-0.9063,0.1939,-0.3754,-0.9063,0.1939,-0.3754,-0.9239,0.0,-0.3827,-0.8315,0.0,-0.5556,-0.9063,0.1939,-0.3754,-0.8315,0.0,-0.5556,-0.8157,0.1939,-0.545,-0.8157,0.1939,-0.545,-0.8315,0.0,-0.5556,-0.7071,0.0,-0.7071,-0.8157,0.1939,-0.545,-0.7071,0.0,-0.7071,-0.6937,0.1939,-0.6937,-0.6937,0.1939,-0.6937,-0.7071,0.0,-0.7071,-0.5556,0.0,-0.8315,-0.6937,0.1939,-0.6937,-0.5556,0.0,-0.8315,-0.545,0.1939,-0.8157,-0.545,0.1939,-0.8157,-0.5556,0.0,-0.8315,-0.3827,0.0,-0.9239,-0.545,0.1939,-0.8157,-0.3827,0.0,-0.9239,-0.3754,0.1939,-0.9063,-0.3754,0.1939,-0.9063,-0.3827,0.0,-0.9239,-0.1951,0.0,-0.9808,-0.3754,0.1939,-0.9063,-0.1951,0.0,-0.9808,-0.1914,0.1939,-0.9622,-0.1914,0.1939,-0.9622,-0.1951,0.0,-0.9808,0.0,0.0,-1.0,-0.1914,0.1939,-0.9622,0.0,0.0,-1.0,0.0,0.1939,-0.981,0.0,0.1939,-0.981,0.0,0.0,-1.0,0.1951,0.0,-0.9808,0.0,0.1939,-0.981,0.1951,0.0,-0.9808,0.1914,0.1939,-0.9622,0.1914,0.1939,-0.9622,0.1951,0.0,-0.9808,0.3827,0.0,-0.9239,0.1914,0.1939,-0.9622,0.3827,0.0,-0.9239,0.3754,0.1939,-0.9063,0.3754,0.1939,-0.9063,0.3827,0.0,-0.9239,0.5556,0.0,-0.8315,0.3754,0.1939,-0.9063,0.5556,0.0,-0.8315,0.545,0.1939,-0.8157,0.545,0.1939,-0.8157,0.5556,0.0,-0.8315,0.7071,0.0,-0.7071,0.545,0.1939,-0.8157,0.7071,0.0,-0.7071,0.6937,0.1939,-0.6937,0.6937,0.1939,-0.6937,0.7071,0.0,-0.7071,0.8315,0.0,-0.5556,0.6937,0.1939,-0.6937,0.8315,0.0,-0.5556,0.8157,0.1939,-0.545,0.8157,0.1939,-0.545,0.8315,0.0,-0.5556,0.9239,0.0,-0.3827,0.8157,0.1939,-0.545,0.9239,0.0,-0.3827,0.9063,0.1939,-0.3754,0.9063,0.1939,-0.3754,0.9239,0.0,-0.3827,0.9808,0.0,-0.1951,0.9063,0.1939,-0.3754,0.9808,0.0,-0.1951,0.9622,0.1939,-0.1914,0.9622,0.1939,-0.1914,0.9808,0.0,-0.1951,1.0,0.0,0.0,0.9622,0.1939,-0.1914,1.0,0.0,0.0,0.981,0.1939,0.0,0.981,0.1939,0.0,1.0,0.0,0.0,0.9808,0.0,0.1951,0.981,0.1939,0.0,0.9808,0.0,0.1951,0.9622,0.1939,0.1914,0.9622,0.1939,0.1914,0.9808,0.0,0.1951,0.9239,0.0,0.3827,0.9622,0.1939,0.1914,0.9239,0.0,0.3827,0.9063,0.1939,0.3754,0.9063,0.1939,0.3754,0.9239,0.0,0.3827,0.8315,0.0,0.5556,0.9063,0.1939,0.3754,0.8315,0.0,0.5556,0.8157,0.1939,0.545,0.8157,0.1939,0.545,0.8315,0.0,0.5556,0.7071,0.0,0.7071,0.8157,0.1939,0.545,0.7071,0.0,0.7071,0.6937,0.1939,0.6937,0.6937,0.1939,0.6937,0.7071,0.0,0.7071,0.5556,0.0,0.8315,0.6937,0.1939,0.6937,0.5556,0.0,0.8315,0.545,0.1939,0.8157,0.545,0.1939,0.8157,0.5556,0.0,0.8315,0.3827,0.0,0.9239,0.545,0.1939,0.8157,0.3827,0.0,0.9239,0.3754,0.1939,0.9063,0.3754,0.1939,0.9063,0.3827,0.0,0.9239,0.1951,0.0,0.9808,0.3754,0.1939,0.9063,0.1951,0.0,0.9808,0.1914,0.1939,0.9622,0.1914,0.1939,0.9622,0.1951,0.0,0.9808,0.0,0.0,1.0,0.1914,0.1939,0.9622,0.0,0.0,1.0,0.0,0.1939,0.981,0.0,0.0,1.0,0.0,-0.1939,0.981,-0.1914,-0.1939,0.9622,0.0,0.0,1.0,-0.1914,-0.1939,0.9622,-0.1951,0.0,0.9808,-0.1951,0.0,0.9808,-0.1914,-0.1939,0.9622,-0.3754,-0.1939,0.9063,-0.1951,0.0,0.9808,-0.3754,-0.1939,0.9063,-0.3827,0.0,0.9239,-0.3827,0.0,0.9239,-0.3754,-0.1939,0.9063,-0.545,-0.1939,0.8157,-0.3827,0.0,0.9239,-0.545,-0.1939,0.8157,-0.5556,0.0,0.8315,-0.5556,0.0,0.8315,-0.545,-0.1939,0.8157,-0.6937,-0.1939,0.6937,-0.5556,0.0,0.8315,-0.6937,-0.1939,0.6937,-0.7071,0.0,0.7071,-0.7071,0.0,0.7071,-0.6937,-0.1939,0.6937,-0.8157,-0.1939,0.545,-0.7071,0.0,0.7071,-0.8157,-0.1939,0.545,-0.8315,0.0,0.5556,-0.8315,0.0,0.5556,-0.8157,-0.1939,0.545,-0.9063,-0.1939,0.3754,-0.8315,0.0,0.5556,-0.9063,-0.1939,0.3754,-0.9239,0.0,0.3827,-0.9239,0.0,0.3827,-0.9063,-0.1939,0.3754,-0.9622,-0.1939,0.1914,-0.9239,0.0,0.3827,-0.9622,-0.1939,0.1914,-0.9808,0.0,0.1951,-0.9808,0.0,0.1951,-0.9622,-0.1939,0.1914,-0.981,-0.1939,0.0,-0.9808,0.0,0.1951,-0.981,-0.1939,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-0.981,-0.1939,0.0,-0.9622,-0.1939,-0.1914,-1.0,0.0,0.0,-0.9622,-0.1939,-0.1914,-0.9808,0.0,-0.1951,-0.9808,0.0,-0.1951,-0.9622,-0.1939,-0.1914,-0.9063,-0.1939,-0.3754,-0.9808,0.0,-0.1951,-0.9063,-0.1939,-0.3754,-0.9239,0.0,-0.3827,-0.9239,0.0,-0.3827,-0.9063,-0.1939,-0.3754,-0.8157,-0.1939,-0.545,-0.9239,0.0,-0.3827,-0.8157,-0.1939,-0.545,-0.8315,0.0,-0.5556,-0.8315,0.0,-0.5556,-0.8157,-0.1939,-0.545,-0.6937,-0.1939,-0.6937,-0.8315,0.0,-0.5556,-0.6937,-0.1939,-0.6937,-0.7071,0.0,-0.7071,-0.7071,0.0,-0.7071,-0.6937,-0.1939,-0.6937,-0.545,-0.1939,-0.8157,-0.7071,0.0,-0.7071,-0.545,-0.1939,-0.8157,-0.5556,0.0,-0.8315,-0.5556,0.0,-0.8315,-0.545,-0.1939,-0.8157,-0.3754,-0.1939,-0.9063,-0.5556,0.0,-0.8315,-0.3754,-0.1939,-0.9063,-0.3827,0.0,-0.9239,-0.3827,0.0,-0.9239,-0.3754,-0.1939,-0.9063,-0.1914,-0.1939,-0.9622,-0.3827,0.0,-0.9239,-0.1914,-0.1939,-0.9622,-0.1951,0.0,-0.9808,-0.1951,0.0,-0.9808,-0.1914,-0.1939,-0.9622,0.0,-0.1939,-0.981,-0.1951,0.0,-0.9808,0.0,-0.1939,-0.981,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,-0.1939,-0.981,0.1914,-0.1939,-0.9622,0.0,0.0,-1.0,0.1914,-0.1939,-0.9622,0.1951,0.0,-0.9808,0.1951,0.0,-0.9808,0.1914,-0.1939,-0.9622,0.3754,-0.1939,-0.9063,0.1951,0.0,-0.9808,0.3754,-0.1939,-0.9063,0.3827,0.0,-0.9239,0.3827,0.0,-0.9239,0.3754,-0.1939,-0.9063,0.545,-0.1939,-0.8157,0.3827,0.0,-0.9239,0.545,-0.1939,-0.8157,0.5556,0.0,-0.8315,0.5556,0.0,-0.8315,0.545,-0.1939,-0.8157,0.6937,-0.1939,-0.6937,0.5556,0.0,-0.8315,0.6937,-0.1939,-0.6937,0.7071,0.0,-0.7071,0.7071,0.0,-0.7071,0.6937,-0.1939,-0.6937,0.8157,-0.1939,-0.545,0.7071,0.0,-0.7071,0.8157,-0.1939,-0.545,0.8315,0.0,-0.5556,0.8315,0.0,-0.5556,0.8157,-0.1939,-0.545,0.9063,-0.1939,-0.3754,0.8315,0.0,-0.5556,0.9063,-0.1939,-0.3754,0.9239,0.0,-0.3827,0.9239,0.0,-0.3827,0.9063,-0.1939,-0.3754,0.9622,-0.1939,-0.1914,0.9239,0.0,-0.3827,0.9622,-0.1939,-0.1914,0.9808,0.0,-0.1951,0.9808,0.0,-0.1951,0.9622,-0.1939,-0.1914,0.981,-0.1939,0.0,0.9808,0.0,-0.1951,0.981,-0.1939,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.981,-0.1939,0.0,0.9622,-0.1939,0.1914,1.0,0.0,0.0,0.9622,-0.1939,0.1914,0.9808,0.0,0.1951,0.9808,0.0,0.1951,0.9622,-0.1939,0.1914,0.9063,-0.1939,0.3754,0.9808,0.0,0.1951,0.9063,-0.1939,0.3754,0.9239,0.0,0.3827,0.9239,0.0,0.3827,0.9063,-0.1939,0.3754,0.8157,-0.1939,0.545,0.9239,0.0,0.3827,0.8157,-0.1939,0.545,0.8315,0.0,0.5556,0.8315,0.0,0.5556,0.8157,-0.1939,0.545,0.6937,-0.1939,0.6937,0.8315,0.0,0.5556,0.6937,-0.1939,0.6937,0.7071,0.0,0.7071,0.7071,0.0,0.7071,0.6937,-0.1939,0.6937,0.545,-0.1939,0.8157,0.7071,0.0,0.7071,0.545,-0.1939,0.8157,0.5556,0.0,0.8315,0.5556,0.0,0.8315,0.545,-0.1939,0.8157,0.3754,-0.1939,0.9063,0.5556,0.0,0.8315,0.3754,-0.1939,0.9063,0.3827,0.0,0.9239,0.3827,0.0,0.9239,0.3754,-0.1939,0.9063,0.1914,-0.1939,0.9622,0.3827,0.0,0.9239,0.1914,-0.1939,0.9622,0.1951,0.0,0.9808,0.1951,0.0,0.9808,0.1914,-0.1939,0.9622,0.0,-0.1939,0.981,0.1951,0.0,0.9808,0.0,-0.1939,0.981,0.0,0.0,1.0,0.0,-0.1939,0.981,0.0,-0.3805,0.9248,-0.1804,-0.3805,0.907,0.0,-0.1939,0.981,-0.1804,-0.3805,0.907,-0.1914,-0.1939,0.9622,-0.1914,-0.1939,0.9622,-0.1804,-0.3805,0.907,-0.3539,-0.3805,0.8544,-0.1914,-0.1939,0.9622,-0.3539,-0.3805,0.8544,-0.3754,-0.1939,0.9063,-0.3754,-0.1939,0.9063,-0.3539,-0.3805,0.8544,-0.5138,-0.3805,0.7689,-0.3754,-0.1939,0.9063,-0.5138,-0.3805,0.7689,-0.545,-0.1939,0.8157,-0.545,-0.1939,0.8157,-0.5138,-0.3805,0.7689,-0.6539,-0.3805,0.6539,-0.545,-0.1939,0.8157,-0.6539,-0.3805,0.6539,-0.6937,-0.1939,0.6937,-0.6937,-0.1939,0.6937,-0.6539,-0.3805,0.6539,-0.7689,-0.3805,0.5138,-0.6937,-0.1939,0.6937,-0.7689,-0.3805,0.5138,-0.8157,-0.1939,0.545,-0.8157,-0.1939,0.545,-0.7689,-0.3805,0.5138,-0.8544,-0.3805,0.3539,-0.8157,-0.1939,0.545,-0.8544,-0.3805,0.3539,-0.9063,-0.1939,0.3754,-0.9063,-0.1939,0.3754,-0.8544,-0.3805,0.3539,-0.907,-0.3805,0.1804,-0.9063,-0.1939,0.3754,-0.907,-0.3805,0.1804,-0.9622,-0.1939,0.1914,-0.9622,-0.1939,0.1914,-0.907,-0.3805,0.1804,-0.9248,-0.3805,0.0,-0.9622,-0.1939,0.1914,-0.9248,-0.3805,0.0,-0.981,-0.1939,0.0,-0.981,-0.1939,0.0,-0.9248,-0.3805,0.0,-0.907,-0.3805,-0.1804,-0.981,-0.1939,0.0,-0.907,-0.3805,-0.1804,-0.9622,-0.1939,-0.1914,-0.9622,-0.1939,-0.1914,-0.907,-0.3805,-0.1804,-0.8544,-0.3805,-0.3539,-0.9622,-0.1939,-0.1914,-0.8544,-0.3805,-0.3539,-0.9063,-0.1939,-0.3754,-0.9063,-0.1939,-0.3754,-0.8544,-0.3805,-0.3539,-0.7689,-0.3805,-0.5138,-0.9063,-0.1939,-0.3754,-0.7689,-0.3805,-0.5138,-0.8157,-0.1939,-0.545,-0.8157,-0.1939,-0.545,-0.7689,-0.3805,-0.5138,-0.6539,-0.3805,-0.6539,-0.8157,-0.1939,-0.545,-0.6539,-0.3805,-0.6539,-0.6937,-0.1939,-0.6937,-0.6937,-0.1939,-0.6937,-0.6539,-0.3805,-0.6539,-0.5138,-0.3805,-0.7689,-0.6937,-0.1939,-0.6937,-0.5138,-0.3805,-0.7689,-0.545,-0.1939,-0.8157,-0.545,-0.1939,-0.8157,-0.5138,-0.3805,-0.7689,-0.3539,-0.3805,-0.8544,-0.545,-0.1939,-0.8157,-0.3539,-0.3805,-0.8544,-0.3754,-0.1939,-0.9063,-0.3754,-0.1939,-0.9063,-0.3539,-0.3805,-0.8544,-0.1804,-0.3805,-0.907,-0.3754,-0.1939,-0.9063,-0.1804,-0.3805,-0.907,-0.1914,-0.1939,-0.9622,-0.1914,-0.1939,-0.9622,-0.1804,-0.3805,-0.907,0.0,-0.3805,-0.9248,-0.1914,-0.1939,-0.9622,0.0,-0.3805,-0.9248,0.0,-0.1939,-0.981,0.0,-0.1939,-0.981,0.0,-0.3805,-0.9248,0.1804,-0.3805,-0.907,0.0,-0.1939,-0.981,0.1804,-0.3805,-0.907,0.1914,-0.1939,-0.9622,0.1914,-0.1939,-0.9622,0.1804,-0.3805,-0.907,0.3539,-0.3805,-0.8544,0.1914,-0.1939,-0.9622,0.3539,-0.3805,-0.8544,0.3754,-0.1939,-0.9063,0.3754,-0.1939,-0.9063,0.3539,-0.3805,-0.8544,0.5138,-0.3805,-0.7689,0.3754,-0.1939,-0.9063,0.5138,-0.3805,-0.7689,0.545,-0.1939,-0.8157,0.545,-0.1939,-0.8157,0.5138,-0.3805,-0.7689,0.6539,-0.3805,-0.6539,0.545,-0.1939,-0.8157,0.6539,-0.3805,-0.6539,0.6937,-0.1939,-0.6937,0.6937,-0.1939,-0.6937,0.6539,-0.3805,-0.6539,0.7689,-0.3805,-0.5138,0.6937,-0.1939,-0.6937,0.7689,-0.3805,-0.5138,0.8157,-0.1939,-0.545,0.8157,-0.1939,-0.545,0.7689,-0.3805,-0.5138,0.8544,-0.3805,-0.3539,0.8157,-0.1939,-0.545,0.8544,-0.3805,-0.3539,0.9063,-0.1939,-0.3754,0.9063,-0.1939,-0.3754,0.8544,-0.3805,-0.3539,0.907,-0.3805,-0.1804,0.9063,-0.1939,-0.3754,0.907,-0.3805,-0.1804,0.9622,-0.1939,-0.1914,0.9622,-0.1939,-0.1914,0.907,-0.3805,-0.1804,0.9248,-0.3805,0.0,0.9622,-0.1939,-0.1914,0.9248,-0.3805,0.0,0.981,-0.1939,0.0,0.981,-0.1939,0.0,0.9248,-0.3805,0.0,0.907,-0.3805,0.1804,0.981,-0.1939,0.0,0.907,-0.3805,0.1804,0.9622,-0.1939,0.1914,0.9622,-0.1939,0.1914,0.907,-0.3805,0.1804,0.8544,-0.3805,0.3539,0.9622,-0.1939,0.1914,0.8544,-0.3805,0.3539,0.9063,-0.1939,0.3754,0.9063,-0.1939,0.3754,0.8544,-0.3805,0.3539,0.7689,-0.3805,0.5138,0.9063,-0.1939,0.3754,0.7689,-0.3805,0.5138,0.8157,-0.1939,0.545,0.8157,-0.1939,0.545,0.7689,-0.3805,0.5138,0.6539,-0.3805,0.6539,0.8157,-0.1939,0.545,0.6539,-0.3805,0.6539,0.6937,-0.1939,0.6937,0.6937,-0.1939,0.6937,0.6539,-0.3805,0.6539,0.5138,-0.3805,0.7689,0.6937,-0.1939,0.6937,0.5138,-0.3805,0.7689,0.545,-0.1939,0.8157,0.545,-0.1939,0.8157,0.5138,-0.3805,0.7689,0.3539,-0.3805,0.8544,0.545,-0.1939,0.8157,0.3539,-0.3805,0.8544,0.3754,-0.1939,0.9063,0.3754,-0.1939,0.9063,0.3539,-0.3805,0.8544,0.1804,-0.3805,0.907,0.3754,-0.1939,0.9063,0.1804,-0.3805,0.907,0.1914,-0.1939,0.9622,0.1914,-0.1939,0.9622,0.1804,-0.3805,0.907,0.0,-0.3805,0.9248,0.1914,-0.1939,0.9622,0.0,-0.3805,0.9248,0.0,-0.1939,0.981,0.0,-0.3805,0.9248,0.0,-0.5528,0.8333,-0.1626,-0.5528,0.8173,0.0,-0.3805,0.9248,-0.1626,-0.5528,0.8173,-0.1804,-0.3805,0.907,-0.1804,-0.3805,0.907,-0.1626,-0.5528,0.8173,-0.3189,-0.5528,0.7699,-0.1804,-0.3805,0.907,-0.3189,-0.5528,0.7699,-0.3539,-0.3805,0.8544,-0.3539,-0.3805,0.8544,-0.3189,-0.5528,0.7699,-0.463,-0.5528,0.6929,-0.3539,-0.3805,0.8544,-0.463,-0.5528,0.6929,-0.5138,-0.3805,0.7689,-0.5138,-0.3805,0.7689,-0.463,-0.5528,0.6929,-0.5893,-0.5528,0.5893,-0.5138,-0.3805,0.7689,-0.5893,-0.5528,0.5893,-0.6539,-0.3805,0.6539,-0.6539,-0.3805,0.6539,-0.5893,-0.5528,0.5893,-0.6929,-0.5528,0.463,-0.6539,-0.3805,0.6539,-0.6929,-0.5528,0.463,-0.7689,-0.3805,0.5138,-0.7689,-0.3805,0.5138,-0.6929,-0.5528,0.463,-0.7699,-0.5528,0.3189,-0.7689,-0.3805,0.5138,-0.7699,-0.5528,0.3189,-0.8544,-0.3805,0.3539,-0.8544,-0.3805,0.3539,-0.7699,-0.5528,0.3189,-0.8173,-0.5528,0.1626,-0.8544,-0.3805,0.3539,-0.8173,-0.5528,0.1626,-0.907,-0.3805,0.1804,-0.907,-0.3805,0.1804,-0.8173,-0.5528,0.1626,-0.8333,-0.5528,0.0,-0.907,-0.3805,0.1804,-0.8333,-0.5528,0.0,-0.9248,-0.3805,0.0,-0.9248,-0.3805,0.0,-0.8333,-0.5528,0.0,-0.8173,-0.5528,-0.1626,-0.9248,-0.3805,0.0,-0.8173,-0.5528,-0.1626,-0.907,-0.3805,-0.1804,-0.907,-0.3805,-0.1804,-0.8173,-0.5528,-0.1626,-0.7699,-0.5528,-0.3189,-0.907,-0.3805,-0.1804,-0.7699,-0.5528,-0.3189,-0.8544,-0.3805,-0.3539,-0.8544,-0.3805,-0.3539,-0.7699,-0.5528,-0.3189,-0.6929,-0.5528,-0.463,-0.8544,-0.3805,-0.3539,-0.6929,-0.5528,-0.463,-0.7689,-0.3805,-0.5138,-0.7689,-0.3805,-0.5138,-0.6929,-0.5528,-0.463,-0.5893,-0.5528,-0.5893,-0.7689,-0.3805,-0.5138,-0.5893,-0.5528,-0.5893,-0.6539,-0.3805,-0.6539,-0.6539,-0.3805,-0.6539,-0.5893,-0.5528,-0.5893,-0.463,-0.5528,-0.6929,-0.6539,-0.3805,-0.6539,-0.463,-0.5528,-0.6929,-0.5138,-0.3805,-0.7689,-0.5138,-0.3805,-0.7689,-0.463,-0.5528,-0.6929,-0.3189,-0.5528,-0.7699,-0.5138,-0.3805,-0.7689,-0.3189,-0.5528,-0.7699,-0.3539,-0.3805,-0.8544,-0.3539,-0.3805,-0.8544,-0.3189,-0.5528,-0.7699,-0.1626,-0.5528,-0.8173,-0.3539,-0.3805,-0.8544,-0.1626,-0.5528,-0.8173,-0.1804,-0.3805,-0.907,-0.1804,-0.3805,-0.907,-0.1626,-0.5528,-0.8173,0.0,-0.5528,-0.8333,-0.1804,-0.3805,-0.907,0.0,-0.5528,-0.8333,0.0,-0.3805,-0.9248,0.0,-0.3805,-0.9248,0.0,-0.5528,-0.8333,0.1626,-0.5528,-0.8173,0.0,-0.3805,-0.9248,0.1626,-0.5528,-0.8173,0.1804,-0.3805,-0.907,0.1804,-0.3805,-0.907,0.1626,-0.5528,-0.8173,0.3189,-0.5528,-0.7699,0.1804,-0.3805,-0.907,0.3189,-0.5528,-0.7699,0.3539,-0.3805,-0.8544,0.3539,-0.3805,-0.8544,0.3189,-0.5528,-0.7699,0.463,-0.5528,-0.6929,0.3539,-0.3805,-0.8544,0.463,-0.5528,-0.6929,0.5138,-0.3805,-0.7689,0.5138,-0.3805,-0.7689,0.463,-0.5528,-0.6929,0.5893,-0.5528,-0.5893,0.5138,-0.3805,-0.7689,0.5893,-0.5528,-0.5893,0.6539,-0.3805,-0.6539,0.6539,-0.3805,-0.6539,0.5893,-0.5528,-0.5893,0.6929,-0.5528,-0.463,0.6539,-0.3805,-0.6539,0.6929,-0.5528,-0.463,0.7689,-0.3805,-0.5138,0.7689,-0.3805,-0.5138,0.6929,-0.5528,-0.463,0.7699,-0.5528,-0.3189,0.7689,-0.3805,-0.5138,0.7699,-0.5528,-0.3189,0.8544,-0.3805,-0.3539,0.8544,-0.3805,-0.3539,0.7699,-0.5528,-0.3189,0.8173,-0.5528,-0.1626,0.8544,-0.3805,-0.3539,0.8173,-0.5528,-0.1626,0.907,-0.3805,-0.1804,0.907,-0.3805,-0.1804,0.8173,-0.5528,-0.1626,0.8333,-0.5528,0.0,0.907,-0.3805,-0.1804,0.8333,-0.5528,0.0,0.9248,-0.3805,0.0,0.9248,-0.3805,0.0,0.8333,-0.5528,0.0,0.8173,-0.5528,0.1626,0.9248,-0.3805,0.0,0.8173,-0.5528,0.1626,0.907,-0.3805,0.1804,0.907,-0.3805,0.1804,0.8173,-0.5528,0.1626,0.7699,-0.5528,0.3189,0.907,-0.3805,0.1804,0.7699,-0.5528,0.3189,0.8544,-0.3805,0.3539,0.8544,-0.3805,0.3539,0.7699,-0.5528,0.3189,0.6929,-0.5528,0.463,0.8544,-0.3805,0.3539,0.6929,-0.5528,0.463,0.7689,-0.3805,0.5138,0.7689,-0.3805,0.5138,0.6929,-0.5528,0.463,0.5893,-0.5528,0.5893,0.7689,-0.3805,0.5138,0.5893,-0.5528,0.5893,0.6539,-0.3805,0.6539,0.6539,-0.3805,0.6539,0.5893,-0.5528,0.5893,0.463,-0.5528,0.6929,0.6539,-0.3805,0.6539,0.463,-0.5528,0.6929,0.5138,-0.3805,0.7689,0.5138,-0.3805,0.7689,0.463,-0.5528,0.6929,0.3189,-0.5528,0.7699,0.5138,-0.3805,0.7689,0.3189,-0.5528,0.7699,0.3539,-0.3805,0.8544,0.3539,-0.3805,0.8544,0.3189,-0.5528,0.7699,0.1626,-0.5528,0.8173,0.3539,-0.3805,0.8544,0.1626,-0.5528,0.8173,0.1804,-0.3805,0.907,0.1804,-0.3805,0.907,0.1626,-0.5528,0.8173,0.0,-0.5528,0.8333,0.1804,-0.3805,0.907,0.0,-0.5528,0.8333,0.0,-0.3805,0.9248,0.0,-0.5528,0.8333,0.0,-0.7041,0.7101,-0.1385,-0.7041,0.6965,0.0,-0.5528,0.8333,-0.1385,-0.7041,0.6965,-0.1626,-0.5528,0.8173,-0.1626,-0.5528,0.8173,-0.1385,-0.7041,0.6965,-0.2718,-0.7041,0.6561,-0.1626,-0.5528,0.8173,-0.2718,-0.7041,0.6561,-0.3189,-0.5528,0.7699,-0.3189,-0.5528,0.7699,-0.2718,-0.7041,0.6561,-0.3945,-0.7041,0.5905,-0.3189,-0.5528,0.7699,-0.3945,-0.7041,0.5905,-0.463,-0.5528,0.6929,-0.463,-0.5528,0.6929,-0.3945,-0.7041,0.5905,-0.5021,-0.7041,0.5021,-0.463,-0.5528,0.6929,-0.5021,-0.7041,0.5021,-0.5893,-0.5528,0.5893,-0.5893,-0.5528,0.5893,-0.5021,-0.7041,0.5021,-0.5905,-0.7041,0.3945,-0.5893,-0.5528,0.5893,-0.5905,-0.7041,0.3945,-0.6929,-0.5528,0.463,-0.6929,-0.5528,0.463,-0.5905,-0.7041,0.3945,-0.6561,-0.7041,0.2718,-0.6929,-0.5528,0.463,-0.6561,-0.7041,0.2718,-0.7699,-0.5528,0.3189,-0.7699,-0.5528,0.3189,-0.6561,-0.7041,0.2718,-0.6965,-0.7041,0.1385,-0.7699,-0.5528,0.3189,-0.6965,-0.7041,0.1385,-0.8173,-0.5528,0.1626,-0.8173,-0.5528,0.1626,-0.6965,-0.7041,0.1385,-0.7101,-0.7041,0.0,-0.8173,-0.5528,0.1626,-0.7101,-0.7041,0.0,-0.8333,-0.5528,0.0,-0.8333,-0.5528,0.0,-0.7101,-0.7041,0.0,-0.6965,-0.7041,-0.1385,-0.8333,-0.5528,0.0,-0.6965,-0.7041,-0.1385,-0.8173,-0.5528,-0.1626,-0.8173,-0.5528,-0.1626,-0.6965,-0.7041,-0.1385,-0.6561,-0.7041,-0.2718,-0.8173,-0.5528,-0.1626,-0.6561,-0.7041,-0.2718,-0.7699,-0.5528,-0.3189,-0.7699,-0.5528,-0.3189,-0.6561,-0.7041,-0.2718,-0.5905,-0.7041,-0.3945,-0.7699,-0.5528,-0.3189,-0.5905,-0.7041,-0.3945,-0.6929,-0.5528,-0.463,-0.6929,-0.5528,-0.463,-0.5905,-0.7041,-0.3945,-0.5021,-0.7041,-0.5021,-0.6929,-0.5528,-0.463,-0.5021,-0.7041,-0.5021,-0.5893,-0.5528,-0.5893,-0.5893,-0.5528,-0.5893,-0.5021,-0.7041,-0.5021,-0.3945,-0.7041,-0.5905,-0.5893,-0.5528,-0.5893,-0.3945,-0.7041,-0.5905,-0.463,-0.5528,-0.6929,-0.463,-0.5528,-0.6929,-0.3945,-0.7041,-0.5905,-0.2718,-0.7041,-0.6561,-0.463,-0.5528,-0.6929,-0.2718,-0.7041,-0.6561,-0.3189,-0.5528,-0.7699,-0.3189,-0.5528,-0.7699,-0.2718,-0.7041,-0.6561,-0.1385,-0.7041,-0.6965,-0.3189,-0.5528,-0.7699,-0.1385,-0.7041,-0.6965,-0.1626,-0.5528,-0.8173,-0.1626,-0.5528,-0.8173,-0.1385,-0.7041,-0.6965,0.0,-0.7041,-0.7101,-0.1626,-0.5528,-0.8173,0.0,-0.7041,-0.7101,0.0,-0.5528,-0.8333,0.0,-0.5528,-0.8333,0.0,-0.7041,-0.7101,0.1385,-0.7041,-0.6965,0.0,-0.5528,-0.8333,0.1385,-0.7041,-0.6965,0.1626,-0.5528,-0.8173,0.1626,-0.5528,-0.8173,0.1385,-0.7041,-0.6965,0.2718,-0.7041,-0.6561,0.1626,-0.5528,-0.8173,0.2718,-0.7041,-0.6561,0.3189,-0.5528,-0.7699,0.3189,-0.5528,-0.7699,0.2718,-0.7041,-0.6561,0.3945,-0.7041,-0.5905,0.3189,-0.5528,-0.7699,0.3945,-0.7041,-0.5905,0.463,-0.5528,-0.6929,0.463,-0.5528,-0.6929,0.3945,-0.7041,-0.5905,0.5021,-0.7041,-0.5021,0.463,-0.5528,-0.6929,0.5021,-0.7041,-0.5021,0.5893,-0.5528,-0.5893,0.5893,-0.5528,-0.5893,0.5021,-0.7041,-0.5021,0.5905,-0.7041,-0.3945,0.5893,-0.5528,-0.5893,0.5905,-0.7041,-0.3945,0.6929,-0.5528,-0.463,0.6929,-0.5528,-0.463,0.5905,-0.7041,-0.3945,0.6561,-0.7041,-0.2718,0.6929,-0.5528,-0.463,0.6561,-0.7041,-0.2718,0.7699,-0.5528,-0.3189,0.7699,-0.5528,-0.3189,0.6561,-0.7041,-0.2718,0.6965,-0.7041,-0.1385,0.7699,-0.5528,-0.3189,0.6965,-0.7041,-0.1385,0.8173,-0.5528,-0.1626,0.8173,-0.5528,-0.1626,0.6965,-0.7041,-0.1385,0.7101,-0.7041,0.0,0.8173,-0.5528,-0.1626,0.7101,-0.7041,0.0,0.8333,-0.5528,0.0,0.8333,-0.5528,0.0,0.7101,-0.7041,0.0,0.6965,-0.7041,0.1385,0.8333,-0.5528,0.0,0.6965,-0.7041,0.1385,0.8173,-0.5528,0.1626,0.8173,-0.5528,0.1626,0.6965,-0.7041,0.1385,0.6561,-0.7041,0.2718,0.8173,-0.5528,0.1626,0.6561,-0.7041,0.2718,0.7699,-0.5528,0.3189,0.7699,-0.5528,0.3189,0.6561,-0.7041,0.2718,0.5905,-0.7041,0.3945,0.7699,-0.5528,0.3189,0.5905,-0.7041,0.3945,0.6929,-0.5528,0.463,0.6929,-0.5528,0.463,0.5905,-0.7041,0.3945,0.5021,-0.7041,0.5021,0.6929,-0.5528,0.463,0.5021,-0.7041,0.5021,0.5893,-0.5528,0.5893,0.5893,-0.5528,0.5893,0.5021,-0.7041,0.5021,0.3945,-0.7041,0.5905,0.5893,-0.5528,0.5893,0.3945,-0.7041,0.5905,0.463,-0.5528,0.6929,0.463,-0.5528,0.6929,0.3945,-0.7041,0.5905,0.2718,-0.7041,0.6561,0.463,-0.5528,0.6929,0.2718,-0.7041,0.6561,0.3189,-0.5528,0.7699,0.3189,-0.5528,0.7699,0.2718,-0.7041,0.6561,0.1385,-0.7041,0.6965,0.3189,-0.5528,0.7699,0.1385,-0.7041,0.6965,0.1626,-0.5528,0.8173,0.1626,-0.5528,0.8173,0.1385,-0.7041,0.6965,0.0,-0.7041,0.7101,0.1626,-0.5528,0.8173,0.0,-0.7041,0.7101,0.0,-0.5528,0.8333,0.0,-0.7041,0.7101,0.0,-0.8286,0.5598,-0.1092,-0.8286,0.549,0.0,-0.7041,0.7101,-0.1092,-0.8286,0.549,-0.1385,-0.7041,0.6965,-0.1385,-0.7041,0.6965,-0.1092,-0.8286,0.549,-0.2142,-0.8286,0.5172,-0.1385,-0.7041,0.6965,-0.2142,-0.8286,0.5172,-0.2718,-0.7041,0.6561,-0.2718,-0.7041,0.6561,-0.2142,-0.8286,0.5172,-0.311,-0.8286,0.4654,-0.2718,-0.7041,0.6561,-0.311,-0.8286,0.4654,-0.3945,-0.7041,0.5905,-0.3945,-0.7041,0.5905,-0.311,-0.8286,0.4654,-0.3958,-0.8286,0.3958,-0.3945,-0.7041,0.5905,-0.3958,-0.8286,0.3958,-0.5021,-0.7041,0.5021,-0.5021,-0.7041,0.5021,-0.3958,-0.8286,0.3958,-0.4654,-0.8286,0.311,-0.5021,-0.7041,0.5021,-0.4654,-0.8286,0.311,-0.5905,-0.7041,0.3945,-0.5905,-0.7041,0.3945,-0.4654,-0.8286,0.311,-0.5172,-0.8286,0.2142,-0.5905,-0.7041,0.3945,-0.5172,-0.8286,0.2142,-0.6561,-0.7041,0.2718,-0.6561,-0.7041,0.2718,-0.5172,-0.8286,0.2142,-0.549,-0.8286,0.1092,-0.6561,-0.7041,0.2718,-0.549,-0.8286,0.1092,-0.6965,-0.7041,0.1385,-0.6965,-0.7041,0.1385,-0.549,-0.8286,0.1092,-0.5598,-0.8286,0.0,-0.6965,-0.7041,0.1385,-0.5598,-0.8286,0.0,-0.7101,-0.7041,0.0,-0.7101,-0.7041,0.0,-0.5598,-0.8286,0.0,-0.549,-0.8286,-0.1092,-0.7101,-0.7041,0.0,-0.549,-0.8286,-0.1092,-0.6965,-0.7041,-0.1385,-0.6965,-0.7041,-0.1385,-0.549,-0.8286,-0.1092,-0.5172,-0.8286,-0.2142,-0.6965,-0.7041,-0.1385,-0.5172,-0.8286,-0.2142,-0.6561,-0.7041,-0.2718,-0.6561,-0.7041,-0.2718,-0.5172,-0.8286,-0.2142,-0.4654,-0.8286,-0.311,-0.6561,-0.7041,-0.2718,-0.4654,-0.8286,-0.311,-0.5905,-0.7041,-0.3945,-0.5905,-0.7041,-0.3945,-0.4654,-0.8286,-0.311,-0.3958,-0.8286,-0.3958,-0.5905,-0.7041,-0.3945,-0.3958,-0.8286,-0.3958,-0.5021,-0.7041,-0.5021,-0.5021,-0.7041,-0.5021,-0.3958,-0.8286,-0.3958,-0.311,-0.8286,-0.4654,-0.5021,-0.7041,-0.5021,-0.311,-0.8286,-0.4654,-0.3945,-0.7041,-0.5905,-0.3945,-0.7041,-0.5905,-0.311,-0.8286,-0.4654,-0.2142,-0.8286,-0.5172,-0.3945,-0.7041,-0.5905,-0.2142,-0.8286,-0.5172,-0.2718,-0.7041,-0.6561,-0.2718,-0.7041,-0.6561,-0.2142,-0.8286,-0.5172,-0.1092,-0.8286,-0.549,-0.2718,-0.7041,-0.6561,-0.1092,-0.8286,-0.549,-0.1385,-0.7041,-0.6965,-0.1385,-0.7041,-0.6965,-0.1092,-0.8286,-0.549,0.0,-0.8286,-0.5598,-0.1385,-0.7041,-0.6965,0.0,-0.8286,-0.5598,0.0,-0.7041,-0.7101,0.0,-0.7041,-0.7101,0.0,-0.8286,-0.5598,0.1092,-0.8286,-0.549,0.0,-0.7041,-0.7101,0.1092,-0.8286,-0.549,0.1385,-0.7041,-0.6965,0.1385,-0.7041,-0.6965,0.1092,-0.8286,-0.549,0.2142,-0.8286,-0.5172,0.1385,-0.7041,-0.6965,0.2142,-0.8286,-0.5172,0.2718,-0.7041,-0.6561,0.2718,-0.7041,-0.6561,0.2142,-0.8286,-0.5172,0.311,-0.8286,-0.4654,0.2718,-0.7041,-0.6561,0.311,-0.8286,-0.4654,0.3945,-0.7041,-0.5905,0.3945,-0.7041,-0.5905,0.311,-0.8286,-0.4654,0.3958,-0.8286,-0.3958,0.3945,-0.7041,-0.5905,0.3958,-0.8286,-0.3958,0.5021,-0.7041,-0.5021,0.5021,-0.7041,-0.5021,0.3958,-0.8286,-0.3958,0.4654,-0.8286,-0.311,0.5021,-0.7041,-0.5021,0.4654,-0.8286,-0.311,0.5905,-0.7041,-0.3945,0.5905,-0.7041,-0.3945,0.4654,-0.8286,-0.311,0.5172,-0.8286,-0.2142,0.5905,-0.7041,-0.3945,0.5172,-0.8286,-0.2142,0.6561,-0.7041,-0.2718,0.6561,-0.7041,-0.2718,0.5172,-0.8286,-0.2142,0.549,-0.8286,-0.1092,0.6561,-0.7041,-0.2718,0.549,-0.8286,-0.1092,0.6965,-0.7041,-0.1385,0.6965,-0.7041,-0.1385,0.549,-0.8286,-0.1092,0.5598,-0.8286,0.0,0.6965,-0.7041,-0.1385,0.5598,-0.8286,0.0,0.7101,-0.7041,0.0,0.7101,-0.7041,0.0,0.5598,-0.8286,0.0,0.549,-0.8286,0.1092,0.7101,-0.7041,0.0,0.549,-0.8286,0.1092,0.6965,-0.7041,0.1385,0.6965,-0.7041,0.1385,0.549,-0.8286,0.1092,0.5172,-0.8286,0.2142,0.6965,-0.7041,0.1385,0.5172,-0.8286,0.2142,0.6561,-0.7041,0.2718,0.6561,-0.7041,0.2718,0.5172,-0.8286,0.2142,0.4654,-0.8286,0.311,0.6561,-0.7041,0.2718,0.4654,-0.8286,0.311,0.5905,-0.7041,0.3945,0.5905,-0.7041,0.3945,0.4654,-0.8286,0.311,0.3958,-0.8286,0.3958,0.5905,-0.7041,0.3945,0.3958,-0.8286,0.3958,0.5021,-0.7041,0.5021,0.5021,-0.7041,0.5021,0.3958,-0.8286,0.3958,0.311,-0.8286,0.4654,0.5021,-0.7041,0.5021,0.311,-0.8286,0.4654,0.3945,-0.7041,0.5905,0.3945,-0.7041,0.5905,0.311,-0.8286,0.4654,0.2142,-0.8286,0.5172,0.3945,-0.7041,0.5905,0.2142,-0.8286,0.5172,0.2718,-0.7041,0.6561,0.2718,-0.7041,0.6561,0.2142,-0.8286,0.5172,0.1092,-0.8286,0.549,0.2718,-0.7041,0.6561,0.1092,-0.8286,0.549,0.1385,-0.7041,0.6965,0.1385,-0.7041,0.6965,0.1092,-0.8286,0.549,0.0,-0.8286,0.5598,0.1385,-0.7041,0.6965,0.0,-0.8286,0.5598,0.0,-0.7041,0.7101,0.0,-0.8286,0.5598,0.0,-0.9217,0.3879,-0.0757,-0.9217,0.3804,0.0,-0.8286,0.5598,-0.0757,-0.9217,0.3804,-0.1092,-0.8286,0.549,-0.1092,-0.8286,0.549,-0.0757,-0.9217,0.3804,-0.1484,-0.9217,0.3584,-0.1092,-0.8286,0.549,-0.1484,-0.9217,0.3584,-0.2142,-0.8286,0.5172,-0.2142,-0.8286,0.5172,-0.1484,-0.9217,0.3584,-0.2155,-0.9217,0.3225,-0.2142,-0.8286,0.5172,-0.2155,-0.9217,0.3225,-0.311,-0.8286,0.4654,-0.311,-0.8286,0.4654,-0.2155,-0.9217,0.3225,-0.2743,-0.9217,0.2743,-0.311,-0.8286,0.4654,-0.2743,-0.9217,0.2743,-0.3958,-0.8286,0.3958,-0.3958,-0.8286,0.3958,-0.2743,-0.9217,0.2743,-0.3225,-0.9217,0.2155,-0.3958,-0.8286,0.3958,-0.3225,-0.9217,0.2155,-0.4654,-0.8286,0.311,-0.4654,-0.8286,0.311,-0.3225,-0.9217,0.2155,-0.3584,-0.9217,0.1484,-0.4654,-0.8286,0.311,-0.3584,-0.9217,0.1484,-0.5172,-0.8286,0.2142,-0.5172,-0.8286,0.2142,-0.3584,-0.9217,0.1484,-0.3804,-0.9217,0.0757,-0.5172,-0.8286,0.2142,-0.3804,-0.9217,0.0757,-0.549,-0.8286,0.1092,-0.549,-0.8286,0.1092,-0.3804,-0.9217,0.0757,-0.3879,-0.9217,0.0,-0.549,-0.8286,0.1092,-0.3879,-0.9217,0.0,-0.5598,-0.8286,0.0,-0.5598,-0.8286,0.0,-0.3879,-0.9217,0.0,-0.3804,-0.9217,-0.0757,-0.5598,-0.8286,0.0,-0.3804,-0.9217,-0.0757,-0.549,-0.8286,-0.1092,-0.549,-0.8286,-0.1092,-0.3804,-0.9217,-0.0757,-0.3584,-0.9217,-0.1484,-0.549,-0.8286,-0.1092,-0.3584,-0.9217,-0.1484,-0.5172,-0.8286,-0.2142,-0.5172,-0.8286,-0.2142,-0.3584,-0.9217,-0.1484,-0.3225,-0.9217,-0.2155,-0.5172,-0.8286,-0.2142,-0.3225,-0.9217,-0.2155,-0.4654,-0.8286,-0.311,-0.4654,-0.8286,-0.311,-0.3225,-0.9217,-0.2155,-0.2743,-0.9217,-0.2743,-0.4654,-0.8286,-0.311,-0.2743,-0.9217,-0.2743,-0.3958,-0.8286,-0.3958,-0.3958,-0.8286,-0.3958,-0.2743,-0.9217,-0.2743,-0.2155,-0.9217,-0.3225,-0.3958,-0.8286,-0.3958,-0.2155,-0.9217,-0.3225,-0.311,-0.8286,-0.4654,-0.311,-0.8286,-0.4654,-0.2155,-0.9217,-0.3225,-0.1484,-0.9217,-0.3584,-0.311,-0.8286,-0.4654,-0.1484,-0.9217,-0.3584,-0.2142,-0.8286,-0.5172,-0.2142,-0.8286,-0.5172,-0.1484,-0.9217,-0.3584,-0.0757,-0.9217,-0.3804,-0.2142,-0.8286,-0.5172,-0.0757,-0.9217,-0.3804,-0.1092,-0.8286,-0.549,-0.1092,-0.8286,-0.549,-0.0757,-0.9217,-0.3804,0.0,-0.9217,-0.3879,-0.1092,-0.8286,-0.549,0.0,-0.9217,-0.3879,0.0,-0.8286,-0.5598,0.0,-0.8286,-0.5598,0.0,-0.9217,-0.3879,0.0757,-0.9217,-0.3804,0.0,-0.8286,-0.5598,0.0757,-0.9217,-0.3804,0.1092,-0.8286,-0.549,0.1092,-0.8286,-0.549,0.0757,-0.9217,-0.3804,0.1484,-0.9217,-0.3584,0.1092,-0.8286,-0.549,0.1484,-0.9217,-0.3584,0.2142,-0.8286,-0.5172,0.2142,-0.8286,-0.5172,0.1484,-0.9217,-0.3584,0.2155,-0.9217,-0.3225,0.2142,-0.8286,-0.5172,0.2155,-0.9217,-0.3225,0.311,-0.8286,-0.4654,0.311,-0.8286,-0.4654,0.2155,-0.9217,-0.3225,0.2743,-0.9217,-0.2743,0.311,-0.8286,-0.4654,0.2743,-0.9217,-0.2743,0.3958,-0.8286,-0.3958,0.3958,-0.8286,-0.3958,0.2743,-0.9217,-0.2743,0.3225,-0.9217,-0.2155,0.3958,-0.8286,-0.3958,0.3225,-0.9217,-0.2155,0.4654,-0.8286,-0.311,0.4654,-0.8286,-0.311,0.3225,-0.9217,-0.2155,0.3584,-0.9217,-0.1484,0.4654,-0.8286,-0.311,0.3584,-0.9217,-0.1484,0.5172,-0.8286,-0.2142,0.5172,-0.8286,-0.2142,0.3584,-0.9217,-0.1484,0.3804,-0.9217,-0.0757,0.5172,-0.8286,-0.2142,0.3804,-0.9217,-0.0757,0.549,-0.8286,-0.1092,0.549,-0.8286,-0.1092,0.3804,-0.9217,-0.0757,0.3879,-0.9217,0.0,0.549,-0.8286,-0.1092,0.3879,-0.9217,0.0,0.5598,-0.8286,0.0,0.5598,-0.8286,0.0,0.3879,-0.9217,0.0,0.3804,-0.9217,0.0757,0.5598,-0.8286,0.0,0.3804,-0.9217,0.0757,0.549,-0.8286,0.1092,0.549,-0.8286,0.1092,0.3804,-0.9217,0.0757,0.3584,-0.9217,0.1484,0.549,-0.8286,0.1092,0.3584,-0.9217,0.1484,0.5172,-0.8286,0.2142,0.5172,-0.8286,0.2142,0.3584,-0.9217,0.1484,0.3225,-0.9217,0.2155,0.5172,-0.8286,0.2142,0.3225,-0.9217,0.2155,0.4654,-0.8286,0.311,0.4654,-0.8286,0.311,0.3225,-0.9217,0.2155,0.2743,-0.9217,0.2743,0.4654,-0.8286,0.311,0.2743,-0.9217,0.2743,0.3958,-0.8286,0.3958,0.3958,-0.8286,0.3958,0.2743,-0.9217,0.2743,0.2155,-0.9217,0.3225,0.3958,-0.8286,0.3958,0.2155,-0.9217,0.3225,0.311,-0.8286,0.4654,0.311,-0.8286,0.4654,0.2155,-0.9217,0.3225,0.1484,-0.9217,0.3584,0.311,-0.8286,0.4654,0.1484,-0.9217,0.3584,0.2142,-0.8286,0.5172,0.2142,-0.8286,0.5172,0.1484,-0.9217,0.3584,0.0757,-0.9217,0.3804,0.2142,-0.8286,0.5172,0.0757,-0.9217,0.3804,0.1092,-0.8286,0.549,0.1092,-0.8286,0.549,0.0757,-0.9217,0.3804,0.0,-0.9217,0.3879,0.1092,-0.8286,0.549,0.0,-0.9217,0.3879,0.0,-0.8286,0.5598,0.0,-0.9217,0.3879,0.0,-0.9796,0.201,-0.0392,-0.9796,0.1971,0.0,-0.9217,0.3879,-0.0392,-0.9796,0.1971,-0.0757,-0.9217,0.3804,-0.0757,-0.9217,0.3804,-0.0392,-0.9796,0.1971,-0.0769,-0.9796,0.1857,-0.0757,-0.9217,0.3804,-0.0769,-0.9796,0.1857,-0.1484,-0.9217,0.3584,-0.1484,-0.9217,0.3584,-0.0769,-0.9796,0.1857,-0.1117,-0.9796,0.1671,-0.1484,-0.9217,0.3584,-0.1117,-0.9796,0.1671,-0.2155,-0.9217,0.3225,-0.2155,-0.9217,0.3225,-0.1117,-0.9796,0.1671,-0.1421,-0.9796,0.1421,-0.2155,-0.9217,0.3225,-0.1421,-0.9796,0.1421,-0.2743,-0.9217,0.2743,-0.2743,-0.9217,0.2743,-0.1421,-0.9796,0.1421,-0.1671,-0.9796,0.1117,-0.2743,-0.9217,0.2743,-0.1671,-0.9796,0.1117,-0.3225,-0.9217,0.2155,-0.3225,-0.9217,0.2155,-0.1671,-0.9796,0.1117,-0.1857,-0.9796,0.0769,-0.3225,-0.9217,0.2155,-0.1857,-0.9796,0.0769,-0.3584,-0.9217,0.1484,-0.3584,-0.9217,0.1484,-0.1857,-0.9796,0.0769,-0.1971,-0.9796,0.0392,-0.3584,-0.9217,0.1484,-0.1971,-0.9796,0.0392,-0.3804,-0.9217,0.0757,-0.3804,-0.9217,0.0757,-0.1971,-0.9796,0.0392,-0.201,-0.9796,0.0,-0.3804,-0.9217,0.0757,-0.201,-0.9796,0.0,-0.3879,-0.9217,0.0,-0.3879,-0.9217,0.0,-0.201,-0.9796,0.0,-0.1971,-0.9796,-0.0392,-0.3879,-0.9217,0.0,-0.1971,-0.9796,-0.0392,-0.3804,-0.9217,-0.0757,-0.3804,-0.9217,-0.0757,-0.1971,-0.9796,-0.0392,-0.1857,-0.9796,-0.0769,-0.3804,-0.9217,-0.0757,-0.1857,-0.9796,-0.0769,-0.3584,-0.9217,-0.1484,-0.3584,-0.9217,-0.1484,-0.1857,-0.9796,-0.0769,-0.1671,-0.9796,-0.1117,-0.3584,-0.9217,-0.1484,-0.1671,-0.9796,-0.1117,-0.3225,-0.9217,-0.2155,-0.3225,-0.9217,-0.2155,-0.1671,-0.9796,-0.1117,-0.1421,-0.9796,-0.1421,-0.3225,-0.9217,-0.2155,-0.1421,-0.9796,-0.1421,-0.2743,-0.9217,-0.2743,-0.2743,-0.9217,-0.2743,-0.1421,-0.9796,-0.1421,-0.1117,-0.9796,-0.1671,-0.2743,-0.9217,-0.2743,-0.1117,-0.9796,-0.1671,-0.2155,-0.9217,-0.3225,-0.2155,-0.9217,-0.3225,-0.1117,-0.9796,-0.1671,-0.0769,-0.9796,-0.1857,-0.2155,-0.9217,-0.3225,-0.0769,-0.9796,-0.1857,-0.1484,-0.9217,-0.3584,-0.1484,-0.9217,-0.3584,-0.0769,-0.9796,-0.1857,-0.0392,-0.9796,-0.1971,-0.1484,-0.9217,-0.3584,-0.0392,-0.9796,-0.1971,-0.0757,-0.9217,-0.3804,-0.0757,-0.9217,-0.3804,-0.0392,-0.9796,-0.1971,0.0,-0.9796,-0.201,-0.0757,-0.9217,-0.3804,0.0,-0.9796,-0.201,0.0,-0.9217,-0.3879,0.0,-0.9217,-0.3879,0.0,-0.9796,-0.201,0.0392,-0.9796,-0.1971,0.0,-0.9217,-0.3879,0.0392,-0.9796,-0.1971,0.0757,-0.9217,-0.3804,0.0757,-0.9217,-0.3804,0.0392,-0.9796,-0.1971,0.0769,-0.9796,-0.1857,0.0757,-0.9217,-0.3804,0.0769,-0.9796,-0.1857,0.1484,-0.9217,-0.3584,0.1484,-0.9217,-0.3584,0.0769,-0.9796,-0.1857,0.1117,-0.9796,-0.1671,0.1484,-0.9217,-0.3584,0.1117,-0.9796,-0.1671,0.2155,-0.9217,-0.3225,0.2155,-0.9217,-0.3225,0.1117,-0.9796,-0.1671,0.1421,-0.9796,-0.1421,0.2155,-0.9217,-0.3225,0.1421,-0.9796,-0.1421,0.2743,-0.9217,-0.2743,0.2743,-0.9217,-0.2743,0.1421,-0.9796,-0.1421,0.1671,-0.9796,-0.1117,0.2743,-0.9217,-0.2743,0.1671,-0.9796,-0.1117,0.3225,-0.9217,-0.2155,0.3225,-0.9217,-0.2155,0.1671,-0.9796,-0.1117,0.1857,-0.9796,-0.0769,0.3225,-0.9217,-0.2155,0.1857,-0.9796,-0.0769,0.3584,-0.9217,-0.1484,0.3584,-0.9217,-0.1484,0.1857,-0.9796,-0.0769,0.1971,-0.9796,-0.0392,0.3584,-0.9217,-0.1484,0.1971,-0.9796,-0.0392,0.3804,-0.9217,-0.0757,0.3804,-0.9217,-0.0757,0.1971,-0.9796,-0.0392,0.201,-0.9796,0.0,0.3804,-0.9217,-0.0757,0.201,-0.9796,0.0,0.3879,-0.9217,0.0,0.3879,-0.9217,0.0,0.201,-0.9796,0.0,0.1971,-0.9796,0.0392,0.3879,-0.9217,0.0,0.1971,-0.9796,0.0392,0.3804,-0.9217,0.0757,0.3804,-0.9217,0.0757,0.1971,-0.9796,0.0392,0.1857,-0.9796,0.0769,0.3804,-0.9217,0.0757,0.1857,-0.9796,0.0769,0.3584,-0.9217,0.1484,0.3584,-0.9217,0.1484,0.1857,-0.9796,0.0769,0.1671,-0.9796,0.1117,0.3584,-0.9217,0.1484,0.1671,-0.9796,0.1117,0.3225,-0.9217,0.2155,0.3225,-0.9217,0.2155,0.1671,-0.9796,0.1117,0.1421,-0.9796,0.1421,0.3225,-0.9217,0.2155,0.1421,-0.9796,0.1421,0.2743,-0.9217,0.2743,0.2743,-0.9217,0.2743,0.1421,-0.9796,0.1421,0.1117,-0.9796,0.1671,0.2743,-0.9217,0.2743,0.1117,-0.9796,0.1671,0.2155,-0.9217,0.3225,0.2155,-0.9217,0.3225,0.1117,-0.9796,0.1671,0.0769,-0.9796,0.1857,0.2155,-0.9217,0.3225,0.0769,-0.9796,0.1857,0.1484,-0.9217,0.3584,0.1484,-0.9217,0.3584,0.0769,-0.9796,0.1857,0.0392,-0.9796,0.1971,0.1484,-0.9217,0.3584,0.0392,-0.9796,0.1971,0.0757,-0.9217,0.3804,0.0757,-0.9217,0.3804,0.0392,-0.9796,0.1971,0.0,-0.9796,0.201,0.0757,-0.9217,0.3804,0.0,-0.9796,0.201,0.0,-0.9217,0.3879,0.0,-1.0,0.0,-0.0392,-0.9796,0.1971,0.0,-0.9796,0.201,0.0,-1.0,0.0,-0.0769,-0.9796,0.1857,-0.0392,-0.9796,0.1971,0.0,-1.0,0.0,-0.1117,-0.9796,0.1671,-0.0769,-0.9796,0.1857,0.0,-1.0,0.0,-0.1421,-0.9796,0.1421,-0.1117,-0.9796,0.1671,0.0,-1.0,0.0,-0.1671,-0.9796,0.1117,-0.1421,-0.9796,0.1421,0.0,-1.0,0.0,-0.1857,-0.9796,0.0769,-0.1671,-0.9796,0.1117,0.0,-1.0,0.0,-0.1971,-0.9796,0.0392,-0.1857,-0.9796,0.0769,0.0,-1.0,0.0,-0.201,-0.9796,0.0,-0.1971,-0.9796,0.0392,0.0,-1.0,0.0,-0.1971,-0.9796,-0.0392,-0.201,-0.9796,0.0,0.0,-1.0,0.0,-0.1857,-0.9796,-0.0769,-0.1971,-0.9796,-0.0392,0.0,-1.0,0.0,-0.1671,-0.9796,-0.1117,-0.1857,-0.9796,-0.0769,0.0,-1.0,0.0,-0.1421,-0.9796,-0.1421,-0.1671,-0.9796,-0.1117,0.0,-1.0,0.0,-0.1117,-0.9796,-0.1671,-0.1421,-0.9796,-0.1421,0.0,-1.0,0.0,-0.0769,-0.9796,-0.1857,-0.1117,-0.9796,-0.1671,0.0,-1.0,0.0,-0.0392,-0.9796,-0.1971,-0.0769,-0.9796,-0.1857,0.0,-1.0,0.0,0.0,-0.9796,-0.201,-0.0392,-0.9796,-0.1971,0.0,-1.0,0.0,0.0392,-0.9796,-0.1971,0.0,-0.9796,-0.201,0.0,-1.0,0.0,0.0769,-0.9796,-0.1857,0.0392,-0.9796,-0.1971,0.0,-1.0,0.0,0.1117,-0.9796,-0.1671,0.0769,-0.9796,-0.1857,0.0,-1.0,0.0,0.1421,-0.9796,-0.1421,0.1117,-0.9796,-0.1671,0.0,-1.0,0.0,0.1671,-0.9796,-0.1117,0.1421,-0.9796,-0.1421,0.0,-1.0,0.0,0.1857,-0.9796,-0.0769,0.1671,-0.9796,-0.1117,0.0,-1.0,0.0,0.1971,-0.9796,-0.0392,0.1857,-0.9796,-0.0769,0.0,-1.0,0.0,0.201,-0.9796,0.0,0.1971,-0.9796,-0.0392,0.0,-1.0,0.0,0.1971,-0.9796,0.0392,0.201,-0.9796,0.0,0.0,-1.0,0.0,0.1857,-0.9796,0.0769,0.1971,-0.9796,0.0392,0.0,-1.0,0.0,0.1671,-0.9796,0.1117,0.1857,-0.9796,0.0769,0.0,-1.0,0.0,0.1421,-0.9796,0.1421,0.1671,-0.9796,0.1117,0.0,-1.0,0.0,0.1117,-0.9796,0.1671,0.1421,-0.9796,0.1421,0.0,-1.0,0.0,0.0769,-0.9796,0.1857,0.1117,-0.9796,0.1671,0.0,-1.0,0.0,0.0392,-0.9796,0.1971,0.0769,-0.9796,0.1857,0.0,-1.0,0.0,0.0,-0.9796,0.201,0.0392,-0.9796,0.1971],"tangents":null,"uvs":[0.0,2.0,0.0,1.9375,0.0312,1.9375,0.0312,2.0,0.0312,1.9375,0.0625,1.9375,0.0625,2.0,0.0625,1.9375,0.0938,1.9375,0.0938,2.0,0.0938,1.9375,0.125,1.9375,0.125,2.0,0.125,1.9375,0.1562,1.9375,0.1562,2.0,0.1562,1.9375,0.1875,1.9375,0.1875,2.0,0.1875,1.9375,0.2187,1.9375,0.2187,2.0,0.2187,1.9375,0.25,1.9375,0.25,2.0,0.25,1.9375,0.2812,1.9375,0.2812,2.0,0.2812,1.9375,0.3125,1.9375,0.3125,2.0,0.3125,1.9375,0.3437,1.9375,0.3437,2.0,0.3437,1.9375,0.375,1.9375,0.375,2.0,0.375,1.9375,0.4062,1.9375,0.4062,2.0,0.4062,1.9375,0.4375,1.9375,0.4375,2.0,0.4375,1.9375,0.4688,1.9375,0.4688,2.0,0.4688,1.9375,0.5,1.9375,0.5,2.0,0.5,1.9375,0.5313,1.9375,0.5313,2.0,0.5313,1.9375,0.5625,1.9375,0.5625,2.0,0.5625,1.9375,0.5938,1.9375,0.5938,2.0,0.5938,1.9375,0.625,1.9375,0.625,2.0,0.625,1.9375,0.6563,1.9375,0.6563,2.0,0.6563,1.9375,0.6875,1.9375,0.6875,2.0,0.6875,1.9375,0.7188,1.9375,0.7188,2.0,0.7188,1.9375,0.75,1.9375,0.75,2.0,0.75,1.9375,0.7813,1.9375,0.7813,2.0,0.7813,1.9375,0.8125,1.9375,0.8125,2.0,0.8125,1.9375,0.8438,1.9375,0.8438,2.0,0.8438,1.9375,0.875,1.9375,0.875,2.0,0.875,1.9375,0.9063,1.9375,0.9063,2.0,0.9063,1.9375,0.9375,1.9375,0.9375,2.0,0.9375,1.9375,0.9688,1.9375,0.9688,2.0,0.9688,1.9375,1.0,1.9375,0.0,1.9375,0.0,1.875,0.0312,1.875,0.0,1.9375,0.0312,1.875,0.0312,1.9375,0.0312,1.9375,0.0312,1.875,0.0625,1.875,0.0312,1.9375,0.0625,1.875,0.0625,1.9375,0.0625,1.9375,0.0625,1.875,0.0938,1.875,0.0625,1.9375,0.0938,1.875,0.0938,1.9375,0.0938,1.9375,0.0938,1.875,0.125,1.875,0.0938,1.9375,0.125,1.875,0.125,1.9375,0.125,1.9375,0.125,1.875,0.1562,1.875,0.125,1.9375,0.1562,1.875,0.1562,1.9375,0.1562,1.9375,0.1562,1.875,0.1875,1.875,0.1562,1.9375,0.1875,1.875,0.1875,1.9375,0.1875,1.9375,0.1875,1.875,0.2187,1.875,0.1875,1.9375,0.2187,1.875,0.2187,1.9375,0.2187,1.9375,0.2187,1.875,0.25,1.875,0.2187,1.9375,0.25,1.875,0.25,1.9375,0.25,1.9375,0.25,1.875,0.2812,1.875,0.25,1.9375,0.2812,1.875,0.2812,1.9375,0.2812,1.9375,0.2812,1.875,0.3125,1.875,0.2812,1.9375,0.3125,1.875,0.3125,1.9375,0.3125,1.9375,0.3125,1.875,0.3437,1.875,0.3125,1.9375,0.3437,1.875,0.3437,1.9375,0.3437,1.9375,0.3437,1.875,0.375,1.875,0.3437,1.9375,0.375,1.875,0.375,1.9375,0.375,1.9375,0.375,1.875,0.4062,1.875,0.375,1.9375,0.4062,1.875,0.4062,1.9375,0.4062,1.9375,0.4062,1.875,0.4375,1.875,0.4062,1.9375,0.4375,1.875,0.4375,1.9375,0.4375,1.9375,0.4375,1.875,0.4688,1.875,0.4375,1.9375,0.4688,1.875,0.4688,1.9375,0.4688,1.9375,0.4688,1.875,0.5,1.875,0.4688,1.9375,0.5,1.875,0.5,1.9375,0.5,1.9375,0.5,1.875,0.5313,1.875,0.5,1.9375,0.5313,1.875,0.5313,1.9375,0.5313,1.9375,0.5313,1.875,0.5625,1.875,0.5313,1.9375,0.5625,1.875,0.5625,1.9375,0.5625,1.9375,0.5625,1.875,0.5938,1.875,0.5625,1.9375,0.5938,1.875,0.5938,1.9375,0.5938,1.9375,0.5938,1.875,0.625,1.875,0.5938,1.9375,0.625,1.875,0.625,1.9375,0.625,1.9375,0.625,1.875,0.6563,1.875,0.625,1.9375,0.6563,1.875,0.6563,1.9375,0.6563,1.9375,0.6563,1.875,0.6875,1.875,0.6563,1.9375,0.6875,1.875,0.6875,1.9375,0.6875,1.9375,0.6875,1.875,0.7188,1.875,0.6875,1.9375,0.7188,1.875,0.7188,1.9375,0.7188,1.9375,0.7188,1.875,0.75,1.875,0.7188,1.9375,0.75,1.875,0.75,1.9375,0.75,1.9375,0.75,1.875,0.7813,1.875,0.75,1.9375,0.7813,1.875,0.7813,1.9375,0.7813,1.9375,0.7813,1.875,0.8125,1.875,0.7813,1.9375,0.8125,1.875,0.8125,1.9375,0.8125,1.9375,0.8125,1.875,0.8438,1.875,0.8125,1.9375,0.8438,1.875,0.8438,1.9375,0.8438,1.9375,0.8438,1.875,0.875,1.875,0.8438,1.9375,0.875,1.875,0.875,1.9375,0.875,1.9375,0.875,1.875,0.9063,1.875,0.875,1.9375,0.9063,1.875,0.9063,1.9375,0.9063,1.9375,0.9063,1.875,0.9375,1.875,0.9063,1.9375,0.9375,1.875,0.9375,1.9375,0.9375,1.9375,0.9375,1.875,0.9688,1.875,0.9375,1.9375,0.9688,1.875,0.9688,1.9375,0.9688,1.9375,0.9688,1.875,1.0,1.875,0.9688,1.9375,1.0,1.875,1.0,1.9375,0.0,1.875,0.0,1.8125,0.0312,1.8125,0.0,1.875,0.0312,1.8125,0.0312,1.875,0.0312,1.875,0.0312,1.8125,0.0625,1.8125,0.0312,1.875,0.0625,1.8125,0.0625,1.875,0.0625,1.875,0.0625,1.8125,0.0938,1.8125,0.0625,1.875,0.0938,1.8125,0.0938,1.875,0.0938,1.875,0.0938,1.8125,0.125,1.8125,0.0938,1.875,0.125,1.8125,0.125,1.875,0.125,1.875,0.125,1.8125,0.1562,1.8125,0.125,1.875,0.1562,1.8125,0.1562,1.875,0.1562,1.875,0.1562,1.8125,0.1875,1.8125,0.1562,1.875,0.1875,1.8125,0.1875,1.875,0.1875,1.875,0.1875,1.8125,0.2187,1.8125,0.1875,1.875,0.2187,1.8125,0.2187,1.875,0.2187,1.875,0.2187,1.8125,0.25,1.8125,0.2187,1.875,0.25,1.8125,0.25,1.875,0.25,1.875,0.25,1.8125,0.2812,1.8125,0.25,1.875,0.2812,1.8125,0.2812,1.875,0.2812,1.875,0.2812,1.8125,0.3125,1.8125,0.2812,1.875,0.3125,1.8125,0.3125,1.875,0.3125,1.875,0.3125,1.8125,0.3437,1.8125,0.3125,1.875,0.3437,1.8125,0.3437,1.875,0.3437,1.875,0.3437,1.8125,0.375,1.8125,0.3437,1.875,0.375,1.8125,0.375,1.875,0.375,1.875,0.375,1.8125,0.4062,1.8125,0.375,1.875,0.4062,1.8125,0.4062,1.875,0.4062,1.875,0.4062,1.8125,0.4375,1.8125,0.4062,1.875,0.4375,1.8125,0.4375,1.875,0.4375,1.875,0.4375,1.8125,0.4688,1.8125,0.4375,1.875,0.4688,1.8125,0.4688,1.875,0.4688,1.875,0.4688,1.8125,0.5,1.8125,0.4688,1.875,0.5,1.8125,0.5,1.875,0.5,1.875,0.5,1.8125,0.5313,1.8125,0.5,1.875,0.5313,1.8125,0.5313,1.875,0.5313,1.875,0.5313,1.8125,0.5625,1.8125,0.5313,1.875,0.5625,1.8125,0.5625,1.875,0.5625,1.875,0.5625,1.8125,0.5938,1.8125,0.5625,1.875,0.5938,1.8125,0.5938,1.875,0.5938,1.875,0.5938,1.8125,0.625,1.8125,0.5938,1.875,0.625,1.8125,0.625,1.875,0.625,1.875,0.625,1.8125,0.6563,1.8125,0.625,1.875,0.6563,1.8125,0.6563,1.875,0.6563,1.875,0.6563,1.8125,0.6875,1.8125,0.6563,1.875,0.6875,1.8125,0.6875,1.875,0.6875,1.875,0.6875,1.8125,0.7188,1.8125,0.6875,1.875,0.7188,1.8125,0.7188,1.875,0.7188,1.875,0.7188,1.8125,0.75,1.8125,0.7188,1.875,0.75,1.8125,0.75,1.875,0.75,1.875,0.75,1.8125,0.7813,1.8125,0.75,1.875,0.7813,1.8125,0.7813,1.875,0.7813,1.875,0.7813,1.8125,0.8125,1.8125,0.7813,1.875,0.8125,1.8125,0.8125,1.875,0.8125,1.875,0.8125,1.8125,0.8438,1.8125,0.8125,1.875,0.8438,1.8125,0.8438,1.875,0.8438,1.875,0.8438,1.8125,0.875,1.8125,0.8438,1.875,0.875,1.8125,0.875,1.875,0.875,1.875,0.875,1.8125,0.9063,1.8125,0.875,1.875,0.9063,1.8125,0.9063,1.875,0.9063,1.875,0.9063,1.8125,0.9375,1.8125,0.9063,1.875,0.9375,1.8125,0.9375,1.875,0.9375,1.875,0.9375,1.8125,0.9688,1.8125,0.9375,1.875,0.9688,1.8125,0.9688,1.875,0.9688,1.875,0.9688,1.8125,1.0,1.8125,0.9688,1.875,1.0,1.8125,1.0,1.875,0.0,1.8125,0.0,1.75,0.0312,1.75,0.0,1.8125,0.0312,1.75,0.0312,1.8125,0.0312,1.8125,0.0312,1.75,0.0625,1.75,0.0312,1.8125,0.0625,1.75,0.0625,1.8125,0.0625,1.8125,0.0625,1.75,0.0938,1.75,0.0625,1.8125,0.0938,1.75,0.0938,1.8125,0.0938,1.8125,0.0938,1.75,0.125,1.75,0.0938,1.8125,0.125,1.75,0.125,1.8125,0.125,1.8125,0.125,1.75,0.1562,1.75,0.125,1.8125,0.1562,1.75,0.1562,1.8125,0.1562,1.8125,0.1562,1.75,0.1875,1.75,0.1562,1.8125,0.1875,1.75,0.1875,1.8125,0.1875,1.8125,0.1875,1.75,0.2187,1.75,0.1875,1.8125,0.2187,1.75,0.2187,1.8125,0.2187,1.8125,0.2187,1.75,0.25,1.75,0.2187,1.8125,0.25,1.75,0.25,1.8125,0.25,1.8125,0.25,1.75,0.2812,1.75,0.25,1.8125,0.2812,1.75,0.2812,1.8125,0.2812,1.8125,0.2812,1.75,0.3125,1.75,0.2812,1.8125,0.3125,1.75,0.3125,1.8125,0.3125,1.8125,0.3125,1.75,0.3437,1.75,0.3125,1.8125,0.3437,1.75,0.3437,1.8125,0.3437,1.8125,0.3437,1.75,0.375,1.75,0.3437,1.8125,0.375,1.75,0.375,1.8125,0.375,1.8125,0.375,1.75,0.4062,1.75,0.375,1.8125,0.4062,1.75,0.4062,1.8125,0.4062,1.8125,0.4062,1.75,0.4375,1.75,0.4062,1.8125,0.4375,1.75,0.4375,1.8125,0.4375,1.8125,0.4375,1.75,0.4688,1.75,0.4375,1.8125,0.4688,1.75,0.4688,1.8125,0.4688,1.8125,0.4688,1.75,0.5,1.75,0.4688,1.8125,0.5,1.75,0.5,1.8125,0.5,1.8125,0.5,1.75,0.5313,1.75,0.5,1.8125,0.5313,1.75,0.5313,1.8125,0.5313,1.8125,0.5313,1.75,0.5625,1.75,0.5313,1.8125,0.5625,1.75,0.5625,1.8125,0.5625,1.8125,0.5625,1.75,0.5938,1.75,0.5625,1.8125,0.5938,1.75,0.5938,1.8125,0.5938,1.8125,0.5938,1.75,0.625,1.75,0.5938,1.8125,0.625,1.75,0.625,1.8125,0.625,1.8125,0.625,1.75,0.6563,1.75,0.625,1.8125,0.6563,1.75,0.6563,1.8125,0.6563,1.8125,0.6563,1.75,0.6875,1.75,0.6563,1.8125,0.6875,1.75,0.6875,1.8125,0.6875,1.8125,0.6875,1.75,0.7188,1.75,0.6875,1.8125,0.7188,1.75,0.7188,1.8125,0.7188,1.8125,0.7188,1.75,0.75,1.75,0.7188,1.8125,0.75,1.75,0.75,1.8125,0.75,1.8125,0.75,1.75,0.7813,1.75,0.75,1.8125,0.7813,1.75,0.7813,1.8125,0.7813,1.8125,0.7813,1.75,0.8125,1.75,0.7813,1.8125,0.8125,1.75,0.8125,1.8125,0.8125,1.8125,0.8125,1.75,0.8438,1.75,0.8125,1.8125,0.8438,1.75,0.8438,1.8125,0.8438,1.8125,0.8438,1.75,0.875,1.75,0.8438,1.8125,0.875,1.75,0.875,1.8125,0.875,1.8125,0.875,1.75,0.9063,1.75,0.875,1.8125,0.9063,1.75,0.9063,1.8125,0.9063,1.8125,0.9063,1.75,0.9375,1.75,0.9063,1.8125,0.9375,1.75,0.9375,1.8125,0.9375,1.8125,0.9375,1.75,0.9688,1.75,0.9375,1.8125,0.9688,1.75,0.9688,1.8125,0.9688,1.8125,0.9688,1.75,1.0,1.75,0.9688,1.8125,1.0,1.75,1.0,1.8125,0.0,1.75,0.0,1.6875,0.0312,1.6875,0.0,1.75,0.0312,1.6875,0.0312,1.75,0.0312,1.75,0.0312,1.6875,0.0625,1.6875,0.0312,1.75,0.0625,1.6875,0.0625,1.75,0.0625,1.75,0.0625,1.6875,0.0938,1.6875,0.0625,1.75,0.0938,1.6875,0.0938,1.75,0.0938,1.75,0.0938,1.6875,0.125,1.6875,0.0938,1.75,0.125,1.6875,0.125,1.75,0.125,1.75,0.125,1.6875,0.1562,1.6875,0.125,1.75,0.1562,1.6875,0.1562,1.75,0.1562,1.75,0.1562,1.6875,0.1875,1.6875,0.1562,1.75,0.1875,1.6875,0.1875,1.75,0.1875,1.75,0.1875,1.6875,0.2187,1.6875,0.1875,1.75,0.2187,1.6875,0.2187,1.75,0.2187,1.75,0.2187,1.6875,0.25,1.6875,0.2187,1.75,0.25,1.6875,0.25,1.75,0.25,1.75,0.25,1.6875,0.2812,1.6875,0.25,1.75,0.2812,1.6875,0.2812,1.75,0.2812,1.75,0.2812,1.6875,0.3125,1.6875,0.2812,1.75,0.3125,1.6875,0.3125,1.75,0.3125,1.75,0.3125,1.6875,0.3437,1.6875,0.3125,1.75,0.3437,1.6875,0.3437,1.75,0.3437,1.75,0.3437,1.6875,0.375,1.6875,0.3437,1.75,0.375,1.6875,0.375,1.75,0.375,1.75,0.375,1.6875,0.4062,1.6875,0.375,1.75,0.4062,1.6875,0.4062,1.75,0.4062,1.75,0.4062,1.6875,0.4375,1.6875,0.4062,1.75,0.4375,1.6875,0.4375,1.75,0.4375,1.75,0.4375,1.6875,0.4688,1.6875,0.4375,1.75,0.4688,1.6875,0.4688,1.75,0.4688,1.75,0.4688,1.6875,0.5,1.6875,0.4688,1.75,0.5,1.6875,0.5,1.75,0.5,1.75,0.5,1.6875,0.5313,1.6875,0.5,1.75,0.5313,1.6875,0.5313,1.75,0.5313,1.75,0.5313,1.6875,0.5625,1.6875,0.5313,1.75,0.5625,1.6875,0.5625,1.75,0.5625,1.75,0.5625,1.6875,0.5938,1.6875,0.5625,1.75,0.5938,1.6875,0.5938,1.75,0.5938,1.75,0.5938,1.6875,0.625,1.6875,0.5938,1.75,0.625,1.6875,0.625,1.75,0.625,1.75,0.625,1.6875,0.6563,1.6875,0.625,1.75,0.6563,1.6875,0.6563,1.75,0.6563,1.75,0.6563,1.6875,0.6875,1.6875,0.6563,1.75,0.6875,1.6875,0.6875,1.75,0.6875,1.75,0.6875,1.6875,0.7188,1.6875,0.6875,1.75,0.7188,1.6875,0.7188,1.75,0.7188,1.75,0.7188,1.6875,0.75,1.6875,0.7188,1.75,0.75,1.6875,0.75,1.75,0.75,1.75,0.75,1.6875,0.7813,1.6875,0.75,1.75,0.7813,1.6875,0.7813,1.75,0.7813,1.75,0.7813,1.6875,0.8125,1.6875,0.7813,1.75,0.8125,1.6875,0.8125,1.75,0.8125,1.75,0.8125,1.6875,0.8438,1.6875,0.8125,1.75,0.8438,1.6875,0.8438,1.75,0.8438,1.75,0.8438,1.6875,0.875,1.6875,0.8438,1.75,0.875,1.6875,0.875,1.75,0.875,1.75,0.875,1.6875,0.9063,1.6875,0.875,1.75,0.9063,1.6875,0.9063,1.75,0.9063,1.75,0.9063,1.6875,0.9375,1.6875,0.9063,1.75,0.9375,1.6875,0.9375,1.75,0.9375,1.75,0.9375,1.6875,0.9688,1.6875,0.9375,1.75,0.9688,1.6875,0.9688,1.75,0.9688,1.75,0.9688,1.6875,1.0,1.6875,0.9688,1.75,1.0,1.6875,1.0,1.75,0.0,1.6875,0.0,1.625,0.0312,1.625,0.0,1.6875,0.0312,1.625,0.0312,1.6875,0.0312,1.6875,0.0312,1.625,0.0625,1.625,0.0312,1.6875,0.0625,1.625,0.0625,1.6875,0.0625,1.6875,0.0625,1.625,0.0938,1.625,0.0625,1.6875,0.0938,1.625,0.0938,1.6875,0.0938,1.6875,0.0938,1.625,0.125,1.625,0.0938,1.6875,0.125,1.625,0.125,1.6875,0.125,1.6875,0.125,1.625,0.1562,1.625,0.125,1.6875,0.1562,1.625,0.1562,1.6875,0.1562,1.6875,0.1562,1.625,0.1875,1.625,0.1562,1.6875,0.1875,1.625,0.1875,1.6875,0.1875,1.6875,0.1875,1.625,0.2187,1.625,0.1875,1.6875,0.2187,1.625,0.2187,1.6875,0.2187,1.6875,0.2187,1.625,0.25,1.625,0.2187,1.6875,0.25,1.625,0.25,1.6875,0.25,1.6875,0.25,1.625,0.2812,1.625,0.25,1.6875,0.2812,1.625,0.2812,1.6875,0.2812,1.6875,0.2812,1.625,0.3125,1.625,0.2812,1.6875,0.3125,1.625,0.3125,1.6875,0.3125,1.6875,0.3125,1.625,0.3437,1.625,0.3125,1.6875,0.3437,1.625,0.3437,1.6875,0.3437,1.6875,0.3437,1.625,0.375,1.625,0.3437,1.6875,0.375,1.625,0.375,1.6875,0.375,1.6875,0.375,1.625,0.4062,1.625,0.375,1.6875,0.4062,1.625,0.4062,1.6875,0.4062,1.6875,0.4062,1.625,0.4375,1.625,0.4062,1.6875,0.4375,1.625,0.4375,1.6875,0.4375,1.6875,0.4375,1.625,0.4688,1.625,0.4375,1.6875,0.4688,1.625,0.4688,1.6875,0.4688,1.6875,0.4688,1.625,0.5,1.625,0.4688,1.6875,0.5,1.625,0.5,1.6875,0.5,1.6875,0.5,1.625,0.5313,1.625,0.5,1.6875,0.5313,1.625,0.5313,1.6875,0.5313,1.6875,0.5313,1.625,0.5625,1.625,0.5313,1.6875,0.5625,1.625,0.5625,1.6875,0.5625,1.6875,0.5625,1.625,0.5938,1.625,0.5625,1.6875,0.5938,1.625,0.5938,1.6875,0.5938,1.6875,0.5938,1.625,0.625,1.625,0.5938,1.6875,0.625,1.625,0.625,1.6875,0.625,1.6875,0.625,1.625,0.6563,1.625,0.625,1.6875,0.6563,1.625,0.6563,1.6875,0.6563,1.6875,0.6563,1.625,0.6875,1.625,0.6563,1.6875,0.6875,1.625,0.6875,1.6875,0.6875,1.6875,0.6875,1.625,0.7188,1.625,0.6875,1.6875,0.7188,1.625,0.7188,1.6875,0.7188,1.6875,0.7188,1.625,0.75,1.625,0.7188,1.6875,0.75,1.625,0.75,1.6875,0.75,1.6875,0.75,1.625,0.7813,1.625,0.75,1.6875,0.7813,1.625,0.7813,1.6875,0.7813,1.6875,0.7813,1.625,0.8125,1.625,0.7813,1.6875,0.8125,1.625,0.8125,1.6875,0.8125,1.6875,0.8125,1.625,0.8438,1.625,0.8125,1.6875,0.8438,1.625,0.8438,1.6875,0.8438,1.6875,0.8438,1.625,0.875,1.625,0.8438,1.6875,0.875,1.625,0.875,1.6875,0.875,1.6875,0.875,1.625,0.9063,1.625,0.875,1.6875,0.9063,1.625,0.9063,1.6875,0.9063,1.6875,0.9063,1.625,0.9375,1.625,0.9063,1.6875,0.9375,1.625,0.9375,1.6875,0.9375,1.6875,0.9375,1.625,0.9688,1.625,0.9375,1.6875,0.9688,1.625,0.9688,1.6875,0.9688,1.6875,0.9688,1.625,1.0,1.625,0.9688,1.6875,1.0,1.625,1.0,1.6875,0.0,1.625,0.0,1.5625,0.0312,1.5625,0.0,1.625,0.0312,1.5625,0.0312,1.625,0.0312,1.625,0.0312,1.5625,0.0625,1.5625,0.0312,1.625,0.0625,1.5625,0.0625,1.625,0.0625,1.625,0.0625,1.5625,0.0938,1.5625,0.0625,1.625,0.0938,1.5625,0.0938,1.625,0.0938,1.625,0.0938,1.5625,0.125,1.5625,0.0938,1.625,0.125,1.5625,0.125,1.625,0.125,1.625,0.125,1.5625,0.1562,1.5625,0.125,1.625,0.1562,1.5625,0.1562,1.625,0.1562,1.625,0.1562,1.5625,0.1875,1.5625,0.1562,1.625,0.1875,1.5625,0.1875,1.625,0.1875,1.625,0.1875,1.5625,0.2187,1.5625,0.1875,1.625,0.2187,1.5625,0.2187,1.625,0.2187,1.625,0.2187,1.5625,0.25,1.5625,0.2187,1.625,0.25,1.5625,0.25,1.625,0.25,1.625,0.25,1.5625,0.2812,1.5625,0.25,1.625,0.2812,1.5625,0.2812,1.625,0.2812,1.625,0.2812,1.5625,0.3125,1.5625,0.2812,1.625,0.3125,1.5625,0.3125,1.625,0.3125,1.625,0.3125,1.5625,0.3437,1.5625,0.3125,1.625,0.3437,1.5625,0.3437,1.625,0.3437,1.625,0.3437,1.5625,0.375,1.5625,0.3437,1.625,0.375,1.5625,0.375,1.625,0.375,1.625,0.375,1.5625,0.4062,1.5625,0.375,1.625,0.4062,1.5625,0.4062,1.625,0.4062,1.625,0.4062,1.5625,0.4375,1.5625,0.4062,1.625,0.4375,1.5625,0.4375,1.625,0.4375,1.625,0.4375,1.5625,0.4688,1.5625,0.4375,1.625,0.4688,1.5625,0.4688,1.625,0.4688,1.625,0.4688,1.5625,0.5,1.5625,0.4688,1.625,0.5,1.5625,0.5,1.625,0.5,1.625,0.5,1.5625,0.5313,1.5625,0.5,1.625,0.5313,1.5625,0.5313,1.625,0.5313,1.625,0.5313,1.5625,0.5625,1.5625,0.5313,1.625,0.5625,1.5625,0.5625,1.625,0.5625,1.625,0.5625,1.5625,0.5938,1.5625,0.5625,1.625,0.5938,1.5625,0.5938,1.625,0.5938,1.625,0.5938,1.5625,0.625,1.5625,0.5938,1.625,0.625,1.5625,0.625,1.625,0.625,1.625,0.625,1.5625,0.6563,1.5625,0.625,1.625,0.6563,1.5625,0.6563,1.625,0.6563,1.625,0.6563,1.5625,0.6875,1.5625,0.6563,1.625,0.6875,1.5625,0.6875,1.625,0.6875,1.625,0.6875,1.5625,0.7188,1.5625,0.6875,1.625,0.7188,1.5625,0.7188,1.625,0.7188,1.625,0.7188,1.5625,0.75,1.5625,0.7188,1.625,0.75,1.5625,0.75,1.625,0.75,1.625,0.75,1.5625,0.7813,1.5625,0.75,1.625,0.7813,1.5625,0.7813,1.625,0.7813,1.625,0.7813,1.5625,0.8125,1.5625,0.7813,1.625,0.8125,1.5625,0.8125,1.625,0.8125,1.625,0.8125,1.5625,0.8438,1.5625,0.8125,1.625,0.8438,1.5625,0.8438,1.625,0.8438,1.625,0.8438,1.5625,0.875,1.5625,0.8438,1.625,0.875,1.5625,0.875,1.625,0.875,1.625,0.875,1.5625,0.9063,1.5625,0.875,1.625,0.9063,1.5625,0.9063,1.625,0.9063,1.625,0.9063,1.5625,0.9375,1.5625,0.9063,1.625,0.9375,1.5625,0.9375,1.625,0.9375,1.625,0.9375,1.5625,0.9688,1.5625,0.9375,1.625,0.9688,1.5625,0.9688,1.625,0.9688,1.625,0.9688,1.5625,1.0,1.5625,0.9688,1.625,1.0,1.5625,1.0,1.625,0.0,1.5625,0.0,1.5,0.0312,1.5,0.0,1.5625,0.0312,1.5,0.0312,1.5625,0.0312,1.5625,0.0312,1.5,0.0625,1.5,0.0312,1.5625,0.0625,1.5,0.0625,1.5625,0.0625,1.5625,0.0625,1.5,0.0938,1.5,0.0625,1.5625,0.0938,1.5,0.0938,1.5625,0.0938,1.5625,0.0938,1.5,0.125,1.5,0.0938,1.5625,0.125,1.5,0.125,1.5625,0.125,1.5625,0.125,1.5,0.1562,1.5,0.125,1.5625,0.1562,1.5,0.1562,1.5625,0.1562,1.5625,0.1562,1.5,0.1875,1.5,0.1562,1.5625,0.1875,1.5,0.1875,1.5625,0.1875,1.5625,0.1875,1.5,0.2187,1.5,0.1875,1.5625,0.2187,1.5,0.2187,1.5625,0.2187,1.5625,0.2187,1.5,0.25,1.5,0.2187,1.5625,0.25,1.5,0.25,1.5625,0.25,1.5625,0.25,1.5,0.2812,1.5,0.25,1.5625,0.2812,1.5,0.2812,1.5625,0.2812,1.5625,0.2812,1.5,0.3125,1.5,0.2812,1.5625,0.3125,1.5,0.3125,1.5625,0.3125,1.5625,0.3125,1.5,0.3437,1.5,0.3125,1.5625,0.3437,1.5,0.3437,1.5625,0.3437,1.5625,0.3437,1.5,0.375,1.5,0.3437,1.5625,0.375,1.5,0.375,1.5625,0.375,1.5625,0.375,1.5,0.4062,1.5,0.375,1.5625,0.4062,1.5,0.4062,1.5625,0.4062,1.5625,0.4062,1.5,0.4375,1.5,0.4062,1.5625,0.4375,1.5,0.4375,1.5625,0.4375,1.5625,0.4375,1.5,0.4688,1.5,0.4375,1.5625,0.4688,1.5,0.4688,1.5625,0.4688,1.5625,0.4688,1.5,0.5,1.5,0.4688,1.5625,0.5,1.5,0.5,1.5625,0.5,1.5625,0.5,1.5,0.5313,1.5,0.5,1.5625,0.5313,1.5,0.5313,1.5625,0.5313,1.5625,0.5313,1.5,0.5625,1.5,0.5313,1.5625,0.5625,1.5,0.5625,1.5625,0.5625,1.5625,0.5625,1.5,0.5938,1.5,0.5625,1.5625,0.5938,1.5,0.5938,1.5625,0.5938,1.5625,0.5938,1.5,0.625,1.5,0.5938,1.5625,0.625,1.5,0.625,1.5625,0.625,1.5625,0.625,1.5,0.6563,1.5,0.625,1.5625,0.6563,1.5,0.6563,1.5625,0.6563,1.5625,0.6563,1.5,0.6875,1.5,0.6563,1.5625,0.6875,1.5,0.6875,1.5625,0.6875,1.5625,0.6875,1.5,0.7188,1.5,0.6875,1.5625,0.7188,1.5,0.7188,1.5625,0.7188,1.5625,0.7188,1.5,0.75,1.5,0.7188,1.5625,0.75,1.5,0.75,1.5625,0.75,1.5625,0.75,1.5,0.7813,1.5,0.75,1.5625,0.7813,1.5,0.7813,1.5625,0.7813,1.5625,0.7813,1.5,0.8125,1.5,0.7813,1.5625,0.8125,1.5,0.8125,1.5625,0.8125,1.5625,0.8125,1.5,0.8438,1.5,0.8125,1.5625,0.8438,1.5,0.8438,1.5625,0.8438,1.5625,0.8438,1.5,0.875,1.5,0.8438,1.5625,0.875,1.5,0.875,1.5625,0.875,1.5625,0.875,1.5,0.9063,1.5,0.875,1.5625,0.9063,1.5,0.9063,1.5625,0.9063,1.5625,0.9063,1.5,0.9375,1.5,0.9063,1.5625,0.9375,1.5,0.9375,1.5625,0.9375,1.5625,0.9375,1.5,0.9688,1.5,0.9375,1.5625,0.9688,1.5,0.9688,1.5625,0.9688,1.5625,0.9688,1.5,1.0,1.5,0.9688,1.5625,1.0,1.5,1.0,1.5625,0.0,1.5,0.0,1.4375,0.0312,1.4375,0.0,1.5,0.0312,1.4375,0.0312,1.5,0.0312,1.5,0.0312,1.4375,0.0625,1.4375,0.0312,1.5,0.0625,1.4375,0.0625,1.5,0.0625,1.5,0.0625,1.4375,0.0938,1.4375,0.0625,1.5,0.0938,1.4375,0.0938,1.5,0.0938,1.5,0.0938,1.4375,0.125,1.4375,0.0938,1.5,0.125,1.4375,0.125,1.5,0.125,1.5,0.125,1.4375,0.1562,1.4375,0.125,1.5,0.1562,1.4375,0.1562,1.5,0.1562,1.5,0.1562,1.4375,0.1875,1.4375,0.1562,1.5,0.1875,1.4375,0.1875,1.5,0.1875,1.5,0.1875,1.4375,0.2187,1.4375,0.1875,1.5,0.2187,1.4375,0.2187,1.5,0.2187,1.5,0.2187,1.4375,0.25,1.4375,0.2187,1.5,0.25,1.4375,0.25,1.5,0.25,1.5,0.25,1.4375,0.2812,1.4375,0.25,1.5,0.2812,1.4375,0.2812,1.5,0.2812,1.5,0.2812,1.4375,0.3125,1.4375,0.2812,1.5,0.3125,1.4375,0.3125,1.5,0.3125,1.5,0.3125,1.4375,0.3437,1.4375,0.3125,1.5,0.3437,1.4375,0.3437,1.5,0.3437,1.5,0.3437,1.4375,0.375,1.4375,0.3437,1.5,0.375,1.4375,0.375,1.5,0.375,1.5,0.375,1.4375,0.4062,1.4375,0.375,1.5,0.4062,1.4375,0.4062,1.5,0.4062,1.5,0.4062,1.4375,0.4375,1.4375,0.4062,1.5,0.4375,1.4375,0.4375,1.5,0.4375,1.5,0.4375,1.4375,0.4688,1.4375,0.4375,1.5,0.4688,1.4375,0.4688,1.5,0.4688,1.5,0.4688,1.4375,0.5,1.4375,0.4688,1.5,0.5,1.4375,0.5,1.5,0.5,1.5,0.5,1.4375,0.5313,1.4375,0.5,1.5,0.5313,1.4375,0.5313,1.5,0.5313,1.5,0.5313,1.4375,0.5625,1.4375,0.5313,1.5,0.5625,1.4375,0.5625,1.5,0.5625,1.5,0.5625,1.4375,0.5938,1.4375,0.5625,1.5,0.5938,1.4375,0.5938,1.5,0.5938,1.5,0.5938,1.4375,0.625,1.4375,0.5938,1.5,0.625,1.4375,0.625,1.5,0.625,1.5,0.625,1.4375,0.6563,1.4375,0.625,1.5,0.6563,1.4375,0.6563,1.5,0.6563,1.5,0.6563,1.4375,0.6875,1.4375,0.6563,1.5,0.6875,1.4375,0.6875,1.5,0.6875,1.5,0.6875,1.4375,0.7188,1.4375,0.6875,1.5,0.7188,1.4375,0.7188,1.5,0.7188,1.5,0.7188,1.4375,0.75,1.4375,0.7188,1.5,0.75,1.4375,0.75,1.5,0.75,1.5,0.75,1.4375,0.7813,1.4375,0.75,1.5,0.7813,1.4375,0.7813,1.5,0.7813,1.5,0.7813,1.4375,0.8125,1.4375,0.7813,1.5,0.8125,1.4375,0.8125,1.5,0.8125,1.5,0.8125,1.4375,0.8438,1.4375,0.8125,1.5,0.8438,1.4375,0.8438,1.5,0.8438,1.5,0.8438,1.4375,0.875,1.4375,0.8438,1.5,0.875,1.4375,0.875,1.5,0.875,1.5,0.875,1.4375,0.9063,1.4375,0.875,1.5,0.9063,1.4375,0.9063,1.5,0.9063,1.5,0.9063,1.4375,0.9375,1.4375,0.9063,1.5,0.9375,1.4375,0.9375,1.5,0.9375,1.5,0.9375,1.4375,0.9688,1.4375,0.9375,1.5,0.9688,1.4375,0.9688,1.5,0.9688,1.5,0.9688,1.4375,1.0,1.4375,0.9688,1.5,1.0,1.4375,1.0,1.5,0.0,1.4375,0.0,1.375,0.0312,1.375,0.0,1.4375,0.0312,1.375,0.0312,1.4375,0.0312,1.4375,0.0312,1.375,0.0625,1.375,0.0312,1.4375,0.0625,1.375,0.0625,1.4375,0.0625,1.4375,0.0625,1.375,0.0938,1.375,0.0625,1.4375,0.0938,1.375,0.0938,1.4375,0.0938,1.4375,0.0938,1.375,0.125,1.375,0.0938,1.4375,0.125,1.375,0.125,1.4375,0.125,1.4375,0.125,1.375,0.1562,1.375,0.125,1.4375,0.1562,1.375,0.1562,1.4375,0.1562,1.4375,0.1562,1.375,0.1875,1.375,0.1562,1.4375,0.1875,1.375,0.1875,1.4375,0.1875,1.4375,0.1875,1.375,0.2187,1.375,0.1875,1.4375,0.2187,1.375,0.2187,1.4375,0.2187,1.4375,0.2187,1.375,0.25,1.375,0.2187,1.4375,0.25,1.375,0.25,1.4375,0.25,1.4375,0.25,1.375,0.2812,1.375,0.25,1.4375,0.2812,1.375,0.2812,1.4375,0.2812,1.4375,0.2812,1.375,0.3125,1.375,0.2812,1.4375,0.3125,1.375,0.3125,1.4375,0.3125,1.4375,0.3125,1.375,0.3437,1.375,0.3125,1.4375,0.3437,1.375,0.3437,1.4375,0.3437,1.4375,0.3437,1.375,0.375,1.375,0.3437,1.4375,0.375,1.375,0.375,1.4375,0.375,1.4375,0.375,1.375,0.4062,1.375,0.375,1.4375,0.4062,1.375,0.4062,1.4375,0.4062,1.4375,0.4062,1.375,0.4375,1.375,0.4062,1.4375,0.4375,1.375,0.4375,1.4375,0.4375,1.4375,0.4375,1.375,0.4688,1.375,0.4375,1.4375,0.4688,1.375,0.4688,1.4375,0.4688,1.4375,0.4688,1.375,0.5,1.375,0.4688,1.4375,0.5,1.375,0.5,1.4375,0.5,1.4375,0.5,1.375,0.5313,1.375,0.5,1.4375,0.5313,1.375,0.5313,1.4375,0.5313,1.4375,0.5313,1.375,0.5625,1.375,0.5313,1.4375,0.5625,1.375,0.5625,1.4375,0.5625,1.4375,0.5625,1.375,0.5938,1.375,0.5625,1.4375,0.5938,1.375,0.5938,1.4375,0.5938,1.4375,0.5938,1.375,0.625,1.375,0.5938,1.4375,0.625,1.375,0.625,1.4375,0.625,1.4375,0.625,1.375,0.6563,1.375,0.625,1.4375,0.6563,1.375,0.6563,1.4375,0.6563,1.4375,0.6563,1.375,0.6875,1.375,0.6563,1.4375,0.6875,1.375,0.6875,1.4375,0.6875,1.4375,0.6875,1.375,0.7188,1.375,0.6875,1.4375,0.7188,1.375,0.7188,1.4375,0.7188,1.4375,0.7188,1.375,0.75,1.375,0.7188,1.4375,0.75,1.375,0.75,1.4375,0.75,1.4375,0.75,1.375,0.7813,1.375,0.75,1.4375,0.7813,1.375,0.7813,1.4375,0.7813,1.4375,0.7813,1.375,0.8125,1.375,0.7813,1.4375,0.8125,1.375,0.8125,1.4375,0.8125,1.4375,0.8125,1.375,0.8438,1.375,0.8125,1.4375,0.8438,1.375,0.8438,1.4375,0.8438,1.4375,0.8438,1.375,0.875,1.375,0.8438,1.4375,0.875,1.375,0.875,1.4375,0.875,1.4375,0.875,1.375,0.9063,1.375,0.875,1.4375,0.9063,1.375,0.9063,1.4375,0.9063,1.4375,0.9063,1.375,0.9375,1.375,0.9063,1.4375,0.9375,1.375,0.9375,1.4375,0.9375,1.4375,0.9375,1.375,0.9688,1.375,0.9375,1.4375,0.9688,1.375,0.9688,1.4375,0.9688,1.4375,0.9688,1.375,1.0,1.375,0.9688,1.4375,1.0,1.375,1.0,1.4375,0.0,1.375,0.0,1.3125,0.0312,1.3125,0.0,1.375,0.0312,1.3125,0.0312,1.375,0.0312,1.375,0.0312,1.3125,0.0625,1.3125,0.0312,1.375,0.0625,1.3125,0.0625,1.375,0.0625,1.375,0.0625,1.3125,0.0938,1.3125,0.0625,1.375,0.0938,1.3125,0.0938,1.375,0.0938,1.375,0.0938,1.3125,0.125,1.3125,0.0938,1.375,0.125,1.3125,0.125,1.375,0.125,1.375,0.125,1.3125,0.1562,1.3125,0.125,1.375,0.1562,1.3125,0.1562,1.375,0.1562,1.375,0.1562,1.3125,0.1875,1.3125,0.1562,1.375,0.1875,1.3125,0.1875,1.375,0.1875,1.375,0.1875,1.3125,0.2187,1.3125,0.1875,1.375,0.2187,1.3125,0.2187,1.375,0.2187,1.375,0.2187,1.3125,0.25,1.3125,0.2187,1.375,0.25,1.3125,0.25,1.375,0.25,1.375,0.25,1.3125,0.2812,1.3125,0.25,1.375,0.2812,1.3125,0.2812,1.375,0.2812,1.375,0.2812,1.3125,0.3125,1.3125,0.2812,1.375,0.3125,1.3125,0.3125,1.375,0.3125,1.375,0.3125,1.3125,0.3437,1.3125,0.3125,1.375,0.3437,1.3125,0.3437,1.375,0.3437,1.375,0.3437,1.3125,0.375,1.3125,0.3437,1.375,0.375,1.3125,0.375,1.375,0.375,1.375,0.375,1.3125,0.4062,1.3125,0.375,1.375,0.4062,1.3125,0.4062,1.375,0.4062,1.375,0.4062,1.3125,0.4375,1.3125,0.4062,1.375,0.4375,1.3125,0.4375,1.375,0.4375,1.375,0.4375,1.3125,0.4688,1.3125,0.4375,1.375,0.4688,1.3125,0.4688,1.375,0.4688,1.375,0.4688,1.3125,0.5,1.3125,0.4688,1.375,0.5,1.3125,0.5,1.375,0.5,1.375,0.5,1.3125,0.5313,1.3125,0.5,1.375,0.5313,1.3125,0.5313,1.375,0.5313,1.375,0.5313,1.3125,0.5625,1.3125,0.5313,1.375,0.5625,1.3125,0.5625,1.375,0.5625,1.375,0.5625,1.3125,0.5938,1.3125,0.5625,1.375,0.5938,1.3125,0.5938,1.375,0.5938,1.375,0.5938,1.3125,0.625,1.3125,0.5938,1.375,0.625,1.3125,0.625,1.375,0.625,1.375,0.625,1.3125,0.6563,1.3125,0.625,1.375,0.6563,1.3125,0.6563,1.375,0.6563,1.375,0.6563,1.3125,0.6875,1.3125,0.6563,1.375,0.6875,1.3125,0.6875,1.375,0.6875,1.375,0.6875,1.3125,0.7188,1.3125,0.6875,1.375,0.7188,1.3125,0.7188,1.375,0.7188,1.375,0.7188,1.3125,0.75,1.3125,0.7188,1.375,0.75,1.3125,0.75,1.375,0.75,1.375,0.75,1.3125,0.7813,1.3125,0.75,1.375,0.7813,1.3125,0.7813,1.375,0.7813,1.375,0.7813,1.3125,0.8125,1.3125,0.7813,1.375,0.8125,1.3125,0.8125,1.375,0.8125,1.375,0.8125,1.3125,0.8438,1.3125,0.8125,1.375,0.8438,1.3125,0.8438,1.375,0.8438,1.375,0.8438,1.3125,0.875,1.3125,0.8438,1.375,0.875,1.3125,0.875,1.375,0.875,1.375,0.875,1.3125,0.9063,1.3125,0.875,1.375,0.9063,1.3125,0.9063,1.375,0.9063,1.375,0.9063,1.3125,0.9375,1.3125,0.9063,1.375,0.9375,1.3125,0.9375,1.375,0.9375,1.375,0.9375,1.3125,0.9688,1.3125,0.9375,1.375,0.9688,1.3125,0.9688,1.375,0.9688,1.375,0.9688,1.3125,1.0,1.3125,0.9688,1.375,1.0,1.3125,1.0,1.375,0.0,1.3125,0.0,1.25,0.0312,1.25,0.0,1.3125,0.0312,1.25,0.0312,1.3125,0.0312,1.3125,0.0312,1.25,0.0625,1.25,0.0312,1.3125,0.0625,1.25,0.0625,1.3125,0.0625,1.3125,0.0625,1.25,0.0938,1.25,0.0625,1.3125,0.0938,1.25,0.0938,1.3125,0.0938,1.3125,0.0938,1.25,0.125,1.25,0.0938,1.3125,0.125,1.25,0.125,1.3125,0.125,1.3125,0.125,1.25,0.1562,1.25,0.125,1.3125,0.1562,1.25,0.1562,1.3125,0.1562,1.3125,0.1562,1.25,0.1875,1.25,0.1562,1.3125,0.1875,1.25,0.1875,1.3125,0.1875,1.3125,0.1875,1.25,0.2187,1.25,0.1875,1.3125,0.2187,1.25,0.2187,1.3125,0.2187,1.3125,0.2187,1.25,0.25,1.25,0.2187,1.3125,0.25,1.25,0.25,1.3125,0.25,1.3125,0.25,1.25,0.2812,1.25,0.25,1.3125,0.2812,1.25,0.2812,1.3125,0.2812,1.3125,0.2812,1.25,0.3125,1.25,0.2812,1.3125,0.3125,1.25,0.3125,1.3125,0.3125,1.3125,0.3125,1.25,0.3437,1.25,0.3125,1.3125,0.3437,1.25,0.3437,1.3125,0.3437,1.3125,0.3437,1.25,0.375,1.25,0.3437,1.3125,0.375,1.25,0.375,1.3125,0.375,1.3125,0.375,1.25,0.4062,1.25,0.375,1.3125,0.4062,1.25,0.4062,1.3125,0.4062,1.3125,0.4062,1.25,0.4375,1.25,0.4062,1.3125,0.4375,1.25,0.4375,1.3125,0.4375,1.3125,0.4375,1.25,0.4688,1.25,0.4375,1.3125,0.4688,1.25,0.4688,1.3125,0.4688,1.3125,0.4688,1.25,0.5,1.25,0.4688,1.3125,0.5,1.25,0.5,1.3125,0.5,1.3125,0.5,1.25,0.5313,1.25,0.5,1.3125,0.5313,1.25,0.5313,1.3125,0.5313,1.3125,0.5313,1.25,0.5625,1.25,0.5313,1.3125,0.5625,1.25,0.5625,1.3125,0.5625,1.3125,0.5625,1.25,0.5938,1.25,0.5625,1.3125,0.5938,1.25,0.5938,1.3125,0.5938,1.3125,0.5938,1.25,0.625,1.25,0.5938,1.3125,0.625,1.25,0.625,1.3125,0.625,1.3125,0.625,1.25,0.6563,1.25,0.625,1.3125,0.6563,1.25,0.6563,1.3125,0.6563,1.3125,0.6563,1.25,0.6875,1.25,0.6563,1.3125,0.6875,1.25,0.6875,1.3125,0.6875,1.3125,0.6875,1.25,0.7188,1.25,0.6875,1.3125,0.7188,1.25,0.7188,1.3125,0.7188,1.3125,0.7188,1.25,0.75,1.25,0.7188,1.3125,0.75,1.25,0.75,1.3125,0.75,1.3125,0.75,1.25,0.7813,1.25,0.75,1.3125,0.7813,1.25,0.7813,1.3125,0.7813,1.3125,0.7813,1.25,0.8125,1.25,0.7813,1.3125,0.8125,1.25,0.8125,1.3125,0.8125,1.3125,0.8125,1.25,0.8438,1.25,0.8125,1.3125,0.8438,1.25,0.8438,1.3125,0.8438,1.3125,0.8438,1.25,0.875,1.25,0.8438,1.3125,0.875,1.25,0.875,1.3125,0.875,1.3125,0.875,1.25,0.9063,1.25,0.875,1.3125,0.9063,1.25,0.9063,1.3125,0.9063,1.3125,0.9063,1.25,0.9375,1.25,0.9063,1.3125,0.9375,1.25,0.9375,1.3125,0.9375,1.3125,0.9375,1.25,0.9688,1.25,0.9375,1.3125,0.9688,1.25,0.9688,1.3125,0.9688,1.3125,0.9688,1.25,1.0,1.25,0.9688,1.3125,1.0,1.25,1.0,1.3125,0.0,1.25,0.0,1.1875,0.0312,1.1875,0.0,1.25,0.0312,1.1875,0.0312,1.25,0.0312,1.25,0.0312,1.1875,0.0625,1.1875,0.0312,1.25,0.0625,1.1875,0.0625,1.25,0.0625,1.25,0.0625,1.1875,0.0938,1.1875,0.0625,1.25,0.0938,1.1875,0.0938,1.25,0.0938,1.25,0.0938,1.1875,0.125,1.1875,0.0938,1.25,0.125,1.1875,0.125,1.25,0.125,1.25,0.125,1.1875,0.1562,1.1875,0.125,1.25,0.1562,1.1875,0.1562,1.25,0.1562,1.25,0.1562,1.1875,0.1875,1.1875,0.1562,1.25,0.1875,1.1875,0.1875,1.25,0.1875,1.25,0.1875,1.1875,0.2187,1.1875,0.1875,1.25,0.2187,1.1875,0.2187,1.25,0.2187,1.25,0.2187,1.1875,0.25,1.1875,0.2187,1.25,0.25,1.1875,0.25,1.25,0.25,1.25,0.25,1.1875,0.2812,1.1875,0.25,1.25,0.2812,1.1875,0.2812,1.25,0.2812,1.25,0.2812,1.1875,0.3125,1.1875,0.2812,1.25,0.3125,1.1875,0.3125,1.25,0.3125,1.25,0.3125,1.1875,0.3437,1.1875,0.3125,1.25,0.3437,1.1875,0.3437,1.25,0.3437,1.25,0.3437,1.1875,0.375,1.1875,0.3437,1.25,0.375,1.1875,0.375,1.25,0.375,1.25,0.375,1.1875,0.4062,1.1875,0.375,1.25,0.4062,1.1875,0.4062,1.25,0.4062,1.25,0.4062,1.1875,0.4375,1.1875,0.4062,1.25,0.4375,1.1875,0.4375,1.25,0.4375,1.25,0.4375,1.1875,0.4688,1.1875,0.4375,1.25,0.4688,1.1875,0.4688,1.25,0.4688,1.25,0.4688,1.1875,0.5,1.1875,0.4688,1.25,0.5,1.1875,0.5,1.25,0.5,1.25,0.5,1.1875,0.5313,1.1875,0.5,1.25,0.5313,1.1875,0.5313,1.25,0.5313,1.25,0.5313,1.1875,0.5625,1.1875,0.5313,1.25,0.5625,1.1875,0.5625,1.25,0.5625,1.25,0.5625,1.1875,0.5938,1.1875,0.5625,1.25,0.5938,1.1875,0.5938,1.25,0.5938,1.25,0.5938,1.1875,0.625,1.1875,0.5938,1.25,0.625,1.1875,0.625,1.25,0.625,1.25,0.625,1.1875,0.6563,1.1875,0.625,1.25,0.6563,1.1875,0.6563,1.25,0.6563,1.25,0.6563,1.1875,0.6875,1.1875,0.6563,1.25,0.6875,1.1875,0.6875,1.25,0.6875,1.25,0.6875,1.1875,0.7188,1.1875,0.6875,1.25,0.7188,1.1875,0.7188,1.25,0.7188,1.25,0.7188,1.1875,0.75,1.1875,0.7188,1.25,0.75,1.1875,0.75,1.25,0.75,1.25,0.75,1.1875,0.7813,1.1875,0.75,1.25,0.7813,1.1875,0.7813,1.25,0.7813,1.25,0.7813,1.1875,0.8125,1.1875,0.7813,1.25,0.8125,1.1875,0.8125,1.25,0.8125,1.25,0.8125,1.1875,0.8438,1.1875,0.8125,1.25,0.8438,1.1875,0.8438,1.25,0.8438,1.25,0.8438,1.1875,0.875,1.1875,0.8438,1.25,0.875,1.1875,0.875,1.25,0.875,1.25,0.875,1.1875,0.9063,1.1875,0.875,1.25,0.9063,1.1875,0.9063,1.25,0.9063,1.25,0.9063,1.1875,0.9375,1.1875,0.9063,1.25,0.9375,1.1875,0.9375,1.25,0.9375,1.25,0.9375,1.1875,0.9688,1.1875,0.9375,1.25,0.9688,1.1875,0.9688,1.25,0.9688,1.25,0.9688,1.1875,1.0,1.1875,0.9688,1.25,1.0,1.1875,1.0,1.25,0.0,1.1875,0.0,1.125,0.0312,1.125,0.0,1.1875,0.0312,1.125,0.0312,1.1875,0.0312,1.1875,0.0312,1.125,0.0625,1.125,0.0312,1.1875,0.0625,1.125,0.0625,1.1875,0.0625,1.1875,0.0625,1.125,0.0938,1.125,0.0625,1.1875,0.0938,1.125,0.0938,1.1875,0.0938,1.1875,0.0938,1.125,0.125,1.125,0.0938,1.1875,0.125,1.125,0.125,1.1875,0.125,1.1875,0.125,1.125,0.1562,1.125,0.125,1.1875,0.1562,1.125,0.1562,1.1875,0.1562,1.1875,0.1562,1.125,0.1875,1.125,0.1562,1.1875,0.1875,1.125,0.1875,1.1875,0.1875,1.1875,0.1875,1.125,0.2187,1.125,0.1875,1.1875,0.2187,1.125,0.2187,1.1875,0.2187,1.1875,0.2187,1.125,0.25,1.125,0.2187,1.1875,0.25,1.125,0.25,1.1875,0.25,1.1875,0.25,1.125,0.2812,1.125,0.25,1.1875,0.2812,1.125,0.2812,1.1875,0.2812,1.1875,0.2812,1.125,0.3125,1.125,0.2812,1.1875,0.3125,1.125,0.3125,1.1875,0.3125,1.1875,0.3125,1.125,0.3437,1.125,0.3125,1.1875,0.3437,1.125,0.3437,1.1875,0.3437,1.1875,0.3437,1.125,0.375,1.125,0.3437,1.1875,0.375,1.125,0.375,1.1875,0.375,1.1875,0.375,1.125,0.4062,1.125,0.375,1.1875,0.4062,1.125,0.4062,1.1875,0.4062,1.1875,0.4062,1.125,0.4375,1.125,0.4062,1.1875,0.4375,1.125,0.4375,1.1875,0.4375,1.1875,0.4375,1.125,0.4688,1.125,0.4375,1.1875,0.4688,1.125,0.4688,1.1875,0.4688,1.1875,0.4688,1.125,0.5,1.125,0.4688,1.1875,0.5,1.125,0.5,1.1875,0.5,1.1875,0.5,1.125,0.5313,1.125,0.5,1.1875,0.5313,1.125,0.5313,1.1875,0.5313,1.1875,0.5313,1.125,0.5625,1.125,0.5313,1.1875,0.5625,1.125,0.5625,1.1875,0.5625,1.1875,0.5625,1.125,0.5938,1.125,0.5625,1.1875,0.5938,1.125,0.5938,1.1875,0.5938,1.1875,0.5938,1.125,0.625,1.125,0.5938,1.1875,0.625,1.125,0.625,1.1875,0.625,1.1875,0.625,1.125,0.6563,1.125,0.625,1.1875,0.6563,1.125,0.6563,1.1875,0.6563,1.1875,0.6563,1.125,0.6875,1.125,0.6563,1.1875,0.6875,1.125,0.6875,1.1875,0.6875,1.1875,0.6875,1.125,0.7188,1.125,0.6875,1.1875,0.7188,1.125,0.7188,1.1875,0.7188,1.1875,0.7188,1.125,0.75,1.125,0.7188,1.1875,0.75,1.125,0.75,1.1875,0.75,1.1875,0.75,1.125,0.7813,1.125,0.75,1.1875,0.7813,1.125,0.7813,1.1875,0.7813,1.1875,0.7813,1.125,0.8125,1.125,0.7813,1.1875,0.8125,1.125,0.8125,1.1875,0.8125,1.1875,0.8125,1.125,0.8438,1.125,0.8125,1.1875,0.8438,1.125,0.8438,1.1875,0.8438,1.1875,0.8438,1.125,0.875,1.125,0.8438,1.1875,0.875,1.125,0.875,1.1875,0.875,1.1875,0.875,1.125,0.9063,1.125,0.875,1.1875,0.9063,1.125,0.9063,1.1875,0.9063,1.1875,0.9063,1.125,0.9375,1.125,0.9063,1.1875,0.9375,1.125,0.9375,1.1875,0.9375,1.1875,0.9375,1.125,0.9688,1.125,0.9375,1.1875,0.9688,1.125,0.9688,1.1875,0.9688,1.1875,0.9688,1.125,1.0,1.125,0.9688,1.1875,1.0,1.125,1.0,1.1875,0.0,1.125,0.0,1.0625,0.0312,1.0625,0.0,1.125,0.0312,1.0625,0.0312,1.125,0.0312,1.125,0.0312,1.0625,0.0625,1.0625,0.0312,1.125,0.0625,1.0625,0.0625,1.125,0.0625,1.125,0.0625,1.0625,0.0938,1.0625,0.0625,1.125,0.0938,1.0625,0.0938,1.125,0.0938,1.125,0.0938,1.0625,0.125,1.0625,0.0938,1.125,0.125,1.0625,0.125,1.125,0.125,1.125,0.125,1.0625,0.1562,1.0625,0.125,1.125,0.1562,1.0625,0.1562,1.125,0.1562,1.125,0.1562,1.0625,0.1875,1.0625,0.1562,1.125,0.1875,1.0625,0.1875,1.125,0.1875,1.125,0.1875,1.0625,0.2187,1.0625,0.1875,1.125,0.2187,1.0625,0.2187,1.125,0.2187,1.125,0.2187,1.0625,0.25,1.0625,0.2187,1.125,0.25,1.0625,0.25,1.125,0.25,1.125,0.25,1.0625,0.2812,1.0625,0.25,1.125,0.2812,1.0625,0.2812,1.125,0.2812,1.125,0.2812,1.0625,0.3125,1.0625,0.2812,1.125,0.3125,1.0625,0.3125,1.125,0.3125,1.125,0.3125,1.0625,0.3437,1.0625,0.3125,1.125,0.3437,1.0625,0.3437,1.125,0.3437,1.125,0.3437,1.0625,0.375,1.0625,0.3437,1.125,0.375,1.0625,0.375,1.125,0.375,1.125,0.375,1.0625,0.4062,1.0625,0.375,1.125,0.4062,1.0625,0.4062,1.125,0.4062,1.125,0.4062,1.0625,0.4375,1.0625,0.4062,1.125,0.4375,1.0625,0.4375,1.125,0.4375,1.125,0.4375,1.0625,0.4688,1.0625,0.4375,1.125,0.4688,1.0625,0.4688,1.125,0.4688,1.125,0.4688,1.0625,0.5,1.0625,0.4688,1.125,0.5,1.0625,0.5,1.125,0.5,1.125,0.5,1.0625,0.5313,1.0625,0.5,1.125,0.5313,1.0625,0.5313,1.125,0.5313,1.125,0.5313,1.0625,0.5625,1.0625,0.5313,1.125,0.5625,1.0625,0.5625,1.125,0.5625,1.125,0.5625,1.0625,0.5938,1.0625,0.5625,1.125,0.5938,1.0625,0.5938,1.125,0.5938,1.125,0.5938,1.0625,0.625,1.0625,0.5938,1.125,0.625,1.0625,0.625,1.125,0.625,1.125,0.625,1.0625,0.6563,1.0625,0.625,1.125,0.6563,1.0625,0.6563,1.125,0.6563,1.125,0.6563,1.0625,0.6875,1.0625,0.6563,1.125,0.6875,1.0625,0.6875,1.125,0.6875,1.125,0.6875,1.0625,0.7188,1.0625,0.6875,1.125,0.7188,1.0625,0.7188,1.125,0.7188,1.125,0.7188,1.0625,0.75,1.0625,0.7188,1.125,0.75,1.0625,0.75,1.125,0.75,1.125,0.75,1.0625,0.7813,1.0625,0.75,1.125,0.7813,1.0625,0.7813,1.125,0.7813,1.125,0.7813,1.0625,0.8125,1.0625,0.7813,1.125,0.8125,1.0625,0.8125,1.125,0.8125,1.125,0.8125,1.0625,0.8438,1.0625,0.8125,1.125,0.8438,1.0625,0.8438,1.125,0.8438,1.125,0.8438,1.0625,0.875,1.0625,0.8438,1.125,0.875,1.0625,0.875,1.125,0.875,1.125,0.875,1.0625,0.9063,1.0625,0.875,1.125,0.9063,1.0625,0.9063,1.125,0.9063,1.125,0.9063,1.0625,0.9375,1.0625,0.9063,1.125,0.9375,1.0625,0.9375,1.125,0.9375,1.125,0.9375,1.0625,0.9688,1.0625,0.9375,1.125,0.9688,1.0625,0.9688,1.125,0.9688,1.125,0.9688,1.0625,1.0,1.0625,0.9688,1.125,1.0,1.0625,1.0,1.125,0.0,1.0,0.0312,1.0625,0.0,1.0625,0.0312,1.0,0.0625,1.0625,0.0312,1.0625,0.0625,1.0,0.0938,1.0625,0.0625,1.0625,0.0938,1.0,0.125,1.0625,0.0938,1.0625,0.125,1.0,0.1562,1.0625,0.125,1.0625,0.1562,1.0,0.1875,1.0625,0.1562,1.0625,0.1875,1.0,0.2187,1.0625,0.1875,1.0625,0.2187,1.0,0.25,1.0625,0.2187,1.0625,0.25,1.0,0.2812,1.0625,0.25,1.0625,0.2812,1.0,0.3125,1.0625,0.2812,1.0625,0.3125,1.0,0.3437,1.0625,0.3125,1.0625,0.3437,1.0,0.375,1.0625,0.3437,1.0625,0.375,1.0,0.4062,1.0625,0.375,1.0625,0.4062,1.0,0.4375,1.0625,0.4062,1.0625,0.4375,1.0,0.4688,1.0625,0.4375,1.0625,0.4688,1.0,0.5,1.0625,0.4688,1.0625,0.5,1.0,0.5313,1.0625,0.5,1.0625,0.5313,1.0,0.5625,1.0625,0.5313,1.0625,0.5625,1.0,0.5938,1.0625,0.5625,1.0625,0.5938,1.0,0.625,1.0625,0.5938,1.0625,0.625,1.0,0.6563,1.0625,0.625,1.0625,0.6563,1.0,0.6875,1.0625,0.6563,1.0625,0.6875,1.0,0.7188,1.0625,0.6875,1.0625,0.7188,1.0,0.75,1.0625,0.7188,1.0625,0.75,1.0,0.7813,1.0625,0.75,1.0625,0.7813,1.0,0.8125,1.0625,0.7813,1.0625,0.8125,1.0,0.8438,1.0625,0.8125,1.0625,0.8438,1.0,0.875,1.0625,0.8438,1.0625,0.875,1.0,0.9063,1.0625,0.875,1.0625,0.9063,1.0,0.9375,1.0625,0.9063,1.0625,0.9375,1.0,0.9688,1.0625,0.9375,1.0625,0.9688,1.0,1.0,1.0625,0.9688,1.0625],"uvs2":null,"colors":null,"hasVertexAlpha":false,"matricesIndices":null,"matricesWeights":null,"matricesIndicesExtra":null,"matricesWeightsExtra":null,"indices":[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,1984,1985,1986,1987,1988,1989,1990,1991,1992,1993,1994,1995,1996,1997,1998,1999,2000,2001,2002,2003,2004,2005,2006,2007,2008,2009,2010,2011,2012,2013,2014,2015,2016,2017,2018,2019,2020,2021,2022,2023,2024,2025,2026,2027,2028,2029,2030,2031,2032,2033,2034,2035,2036,2037,2038,2039,2040,2041,2042,2043,2044,2045,2046,2047,2048,2049,2050,2051,2052,2053,2054,2055,2056,2057,2058,2059,2060,2061,2062,2063,2064,2065,2066,2067,2068,2069,2070,2071,2072,2073,2074,2075,2076,2077,2078,2079,2080,2081,2082,2083,2084,2085,2086,2087,2088,2089,2090,2091,2092,2093,2094,2095,2096,2097,2098,2099,2100,2101,2102,2103,2104,2105,2106,2107,2108,2109,2110,2111,2112,2113,2114,2115,2116,2117,2118,2119,2120,2121,2122,2123,2124,2125,2126,2127,2128,2129,2130,2131,2132,2133,2134,2135,2136,2137,2138,2139,2140,2141,2142,2143,2144,2145,2146,2147,2148,2149,2150,2151,2152,2153,2154,2155,2156,2157,2158,2159,2160,2161,2162,2163,2164,2165,2166,2167,2168,2169,2170,2171,2172,2173,2174,2175,2176,2177,2178,2179,2180,2181,2182,2183,2184,2185,2186,2187,2188,2189,2190,2191,2192,2193,2194,2195,2196,2197,2198,2199,2200,2201,2202,2203,2204,2205,2206,2207,2208,2209,2210,2211,2212,2213,2214,2215,2216,2217,2218,2219,2220,2221,2222,2223,2224,2225,2226,2227,2228,2229,2230,2231,2232,2233,2234,2235,2236,2237,2238,2239,2240,2241,2242,2243,2244,2245,2246,2247,2248,2249,2250,2251,2252,2253,2254,2255,2256,2257,2258,2259,2260,2261,2262,2263,2264,2265,2266,2267,2268,2269,2270,2271,2272,2273,2274,2275,2276,2277,2278,2279,2280,2281,2282,2283,2284,2285,2286,2287,2288,2289,2290,2291,2292,2293,2294,2295,2296,2297,2298,2299,2300,2301,2302,2303,2304,2305,2306,2307,2308,2309,2310,2311,2312,2313,2314,2315,2316,2317,2318,2319,2320,2321,2322,2323,2324,2325,2326,2327,2328,2329,2330,2331,2332,2333,2334,2335,2336,2337,2338,2339,2340,2341,2342,2343,2344,2345,2346,2347,2348,2349,2350,2351,2352,2353,2354,2355,2356,2357,2358,2359,2360,2361,2362,2363,2364,2365,2366,2367,2368,2369,2370,2371,2372,2373,2374,2375,2376,2377,2378,2379,2380,2381,2382,2383,2384,2385,2386,2387,2388,2389,2390,2391,2392,2393,2394,2395,2396,2397,2398,2399,2400,2401,2402,2403,2404,2405,2406,2407,2408,2409,2410,2411,2412,2413,2414,2415,2416,2417,2418,2419,2420,2421,2422,2423,2424,2425,2426,2427,2428,2429,2430,2431,2432,2433,2434,2435,2436,2437,2438,2439,2440,2441,2442,2443,2444,2445,2446,2447,2448,2449,2450,2451,2452,2453,2454,2455,2456,2457,2458,2459,2460,2461,2462,2463,2464,2465,2466,2467,2468,2469,2470,2471,2472,2473,2474,2475,2476,2477,2478,2479,2480,2481,2482,2483,2484,2485,2486,2487,2488,2489,2490,2491,2492,2493,2494,2495,2496,2497,2498,2499,2500,2501,2502,2503,2504,2505,2506,2507,2508,2509,2510,2511,2512,2513,2514,2515,2516,2517,2518,2519,2520,2521,2522,2523,2524,2525,2526,2527,2528,2529,2530,2531,2532,2533,2534,2535,2536,2537,2538,2539,2540,2541,2542,2543,2544,2545,2546,2547,2548,2549,2550,2551,2552,2553,2554,2555,2556,2557,2558,2559,2560,2561,2562,2563,2564,2565,2566,2567,2568,2569,2570,2571,2572,2573,2574,2575,2576,2577,2578,2579,2580,2581,2582,2583,2584,2585,2586,2587,2588,2589,2590,2591,2592,2593,2594,2595,2596,2597,2598,2599,2600,2601,2602,2603,2604,2605,2606,2607,2608,2609,2610,2611,2612,2613,2614,2615,2616,2617,2618,2619,2620,2621,2622,2623,2624,2625,2626,2627,2628,2629,2630,2631,2632,2633,2634,2635,2636,2637,2638,2639,2640,2641,2642,2643,2644,2645,2646,2647,2648,2649,2650,2651,2652,2653,2654,2655,2656,2657,2658,2659,2660,2661,2662,2663,2664,2665,2666,2667,2668,2669,2670,2671,2672,2673,2674,2675,2676,2677,2678,2679,2680,2681,2682,2683,2684,2685,2686,2687,2688,2689,2690,2691,2692,2693,2694,2695,2696,2697,2698,2699,2700,2701,2702,2703,2704,2705,2706,2707,2708,2709,2710,2711,2712,2713,2714,2715,2716,2717,2718,2719,2720,2721,2722,2723,2724,2725,2726,2727,2728,2729,2730,2731,2732,2733,2734,2735,2736,2737,2738,2739,2740,2741,2742,2743,2744,2745,2746,2747,2748,2749,2750,2751,2752,2753,2754,2755,2756,2757,2758,2759,2760,2761,2762,2763,2764,2765,2766,2767,2768,2769,2770,2771,2772,2773,2774,2775,2776,2777,2778,2779,2780,2781,2782,2783,2784,2785,2786,2787,2788,2789,2790,2791,2792,2793,2794,2795,2796,2797,2798,2799,2800,2801,2802,2803,2804,2805,2806,2807,2808,2809,2810,2811,2812,2813,2814,2815,2816,2817,2818,2819,2820,2821,2822,2823,2824,2825,2826,2827,2828,2829,2830,2831,2832,2833,2834,2835,2836,2837,2838,2839,2840,2841,2842,2843,2844,2845,2846,2847,2848,2849,2850,2851,2852,2853,2854,2855,2856,2857,2858,2859,2860,2861,2862,2863,2864,2865,2866,2867,2868,2869,2870,2871,2872,2873,2874,2875,2876,2877,2878,2879],"receiveShadows":true,"infiniteDistance":false,"billboardMode":0,"visibility":1.0,"subMeshes":[{"materialIndex":0,"verticesStart":0,"verticesCount":2880,"indexStart":0,"indexCount":2880}],"instances":null,"skeletonId":-1,"numBoneInfluencers":4,"applyFog":true,"lodMeshIds":null,"lodDistances":null,"lodCoverages":null,"rotation":null,"scaling":[1.0,1.0,1.0],"rotationQuaternion":[0.0,0.0,0.0,1.0],"actions":null,"checkCollisions":false,"pickable":false,"showBoundingBox":false,"showSubMeshesBoundingBox":false,"alphaIndex":1000,"physicsImpostor":0,"physicsMass":0.0,"physicsFriction":0.0,"physicsRestitution":0.0,"name":"StandardMeshMaxLight_2","id":"2c3d5f5e-0a74-4032-9cda-418223f77cf9","parentId":null,"position":[0.0,0.0,3.0],"animations":[],"autoAnimate":true,"autoAnimateFrom":0,"autoAnimateTo":100,"autoAnimateLoop":true,"metadata":null},{"materialId":"fee2e8cb-6f81-4190-b291-d2593582dff5","isEnabled":true,"isVisible":true,"positions":[0.0,1.0,0.0,0.0,0.9808,0.1951,-0.0381,0.9808,0.1913,0.0,1.0,0.0,-0.0381,0.9808,0.1913,-0.0747,0.9808,0.1802,0.0,1.0,0.0,-0.0747,0.9808,0.1802,-0.1084,0.9808,0.1622,0.0,1.0,0.0,-0.1084,0.9808,0.1622,-0.1379,0.9808,0.1379,0.0,1.0,0.0,-0.1379,0.9808,0.1379,-0.1622,0.9808,0.1084,0.0,1.0,0.0,-0.1622,0.9808,0.1084,-0.1802,0.9808,0.0747,0.0,1.0,0.0,-0.1802,0.9808,0.0747,-0.1913,0.9808,0.0381,0.0,1.0,0.0,-0.1913,0.9808,0.0381,-0.1951,0.9808,0.0,0.0,1.0,0.0,-0.1951,0.9808,0.0,-0.1913,0.9808,-0.0381,0.0,1.0,0.0,-0.1913,0.9808,-0.0381,-0.1802,0.9808,-0.0747,0.0,1.0,0.0,-0.1802,0.9808,-0.0747,-0.1622,0.9808,-0.1084,0.0,1.0,0.0,-0.1622,0.9808,-0.1084,-0.1379,0.9808,-0.1379,0.0,1.0,0.0,-0.1379,0.9808,-0.1379,-0.1084,0.9808,-0.1622,0.0,1.0,0.0,-0.1084,0.9808,-0.1622,-0.0747,0.9808,-0.1802,0.0,1.0,0.0,-0.0747,0.9808,-0.1802,-0.0381,0.9808,-0.1913,0.0,1.0,0.0,-0.0381,0.9808,-0.1913,0.0,0.9808,-0.1951,0.0,1.0,0.0,0.0,0.9808,-0.1951,0.0381,0.9808,-0.1913,0.0,1.0,0.0,0.0381,0.9808,-0.1913,0.0747,0.9808,-0.1802,0.0,1.0,0.0,0.0747,0.9808,-0.1802,0.1084,0.9808,-0.1622,0.0,1.0,0.0,0.1084,0.9808,-0.1622,0.1379,0.9808,-0.1379,0.0,1.0,0.0,0.1379,0.9808,-0.1379,0.1622,0.9808,-0.1084,0.0,1.0,0.0,0.1622,0.9808,-0.1084,0.1802,0.9808,-0.0747,0.0,1.0,0.0,0.1802,0.9808,-0.0747,0.1913,0.9808,-0.0381,0.0,1.0,0.0,0.1913,0.9808,-0.0381,0.1951,0.9808,0.0,0.0,1.0,0.0,0.1951,0.9808,0.0,0.1913,0.9808,0.0381,0.0,1.0,0.0,0.1913,0.9808,0.0381,0.1802,0.9808,0.0747,0.0,1.0,0.0,0.1802,0.9808,0.0747,0.1622,0.9808,0.1084,0.0,1.0,0.0,0.1622,0.9808,0.1084,0.1379,0.9808,0.1379,0.0,1.0,0.0,0.1379,0.9808,0.1379,0.1084,0.9808,0.1622,0.0,1.0,0.0,0.1084,0.9808,0.1622,0.0747,0.9808,0.1802,0.0,1.0,0.0,0.0747,0.9808,0.1802,0.0381,0.9808,0.1913,0.0,1.0,0.0,0.0381,0.9808,0.1913,0.0,0.9808,0.1951,0.0,0.9808,0.1951,0.0,0.9239,0.3827,-0.0747,0.9239,0.3753,0.0,0.9808,0.1951,-0.0747,0.9239,0.3753,-0.0381,0.9808,0.1913,-0.0381,0.9808,0.1913,-0.0747,0.9239,0.3753,-0.1464,0.9239,0.3536,-0.0381,0.9808,0.1913,-0.1464,0.9239,0.3536,-0.0747,0.9808,0.1802,-0.0747,0.9808,0.1802,-0.1464,0.9239,0.3536,-0.2126,0.9239,0.3182,-0.0747,0.9808,0.1802,-0.2126,0.9239,0.3182,-0.1084,0.9808,0.1622,-0.1084,0.9808,0.1622,-0.2126,0.9239,0.3182,-0.2706,0.9239,0.2706,-0.1084,0.9808,0.1622,-0.2706,0.9239,0.2706,-0.1379,0.9808,0.1379,-0.1379,0.9808,0.1379,-0.2706,0.9239,0.2706,-0.3182,0.9239,0.2126,-0.1379,0.9808,0.1379,-0.3182,0.9239,0.2126,-0.1622,0.9808,0.1084,-0.1622,0.9808,0.1084,-0.3182,0.9239,0.2126,-0.3536,0.9239,0.1464,-0.1622,0.9808,0.1084,-0.3536,0.9239,0.1464,-0.1802,0.9808,0.0747,-0.1802,0.9808,0.0747,-0.3536,0.9239,0.1464,-0.3753,0.9239,0.0747,-0.1802,0.9808,0.0747,-0.3753,0.9239,0.0747,-0.1913,0.9808,0.0381,-0.1913,0.9808,0.0381,-0.3753,0.9239,0.0747,-0.3827,0.9239,0.0,-0.1913,0.9808,0.0381,-0.3827,0.9239,0.0,-0.1951,0.9808,0.0,-0.1951,0.9808,0.0,-0.3827,0.9239,0.0,-0.3753,0.9239,-0.0747,-0.1951,0.9808,0.0,-0.3753,0.9239,-0.0747,-0.1913,0.9808,-0.0381,-0.1913,0.9808,-0.0381,-0.3753,0.9239,-0.0747,-0.3536,0.9239,-0.1464,-0.1913,0.9808,-0.0381,-0.3536,0.9239,-0.1464,-0.1802,0.9808,-0.0747,-0.1802,0.9808,-0.0747,-0.3536,0.9239,-0.1464,-0.3182,0.9239,-0.2126,-0.1802,0.9808,-0.0747,-0.3182,0.9239,-0.2126,-0.1622,0.9808,-0.1084,-0.1622,0.9808,-0.1084,-0.3182,0.9239,-0.2126,-0.2706,0.9239,-0.2706,-0.1622,0.9808,-0.1084,-0.2706,0.9239,-0.2706,-0.1379,0.9808,-0.1379,-0.1379,0.9808,-0.1379,-0.2706,0.9239,-0.2706,-0.2126,0.9239,-0.3182,-0.1379,0.9808,-0.1379,-0.2126,0.9239,-0.3182,-0.1084,0.9808,-0.1622,-0.1084,0.9808,-0.1622,-0.2126,0.9239,-0.3182,-0.1464,0.9239,-0.3536,-0.1084,0.9808,-0.1622,-0.1464,0.9239,-0.3536,-0.0747,0.9808,-0.1802,-0.0747,0.9808,-0.1802,-0.1464,0.9239,-0.3536,-0.0747,0.9239,-0.3753,-0.0747,0.9808,-0.1802,-0.0747,0.9239,-0.3753,-0.0381,0.9808,-0.1913,-0.0381,0.9808,-0.1913,-0.0747,0.9239,-0.3753,0.0,0.9239,-0.3827,-0.0381,0.9808,-0.1913,0.0,0.9239,-0.3827,0.0,0.9808,-0.1951,0.0,0.9808,-0.1951,0.0,0.9239,-0.3827,0.0747,0.9239,-0.3753,0.0,0.9808,-0.1951,0.0747,0.9239,-0.3753,0.0381,0.9808,-0.1913,0.0381,0.9808,-0.1913,0.0747,0.9239,-0.3753,0.1464,0.9239,-0.3536,0.0381,0.9808,-0.1913,0.1464,0.9239,-0.3536,0.0747,0.9808,-0.1802,0.0747,0.9808,-0.1802,0.1464,0.9239,-0.3536,0.2126,0.9239,-0.3182,0.0747,0.9808,-0.1802,0.2126,0.9239,-0.3182,0.1084,0.9808,-0.1622,0.1084,0.9808,-0.1622,0.2126,0.9239,-0.3182,0.2706,0.9239,-0.2706,0.1084,0.9808,-0.1622,0.2706,0.9239,-0.2706,0.1379,0.9808,-0.1379,0.1379,0.9808,-0.1379,0.2706,0.9239,-0.2706,0.3182,0.9239,-0.2126,0.1379,0.9808,-0.1379,0.3182,0.9239,-0.2126,0.1622,0.9808,-0.1084,0.1622,0.9808,-0.1084,0.3182,0.9239,-0.2126,0.3536,0.9239,-0.1464,0.1622,0.9808,-0.1084,0.3536,0.9239,-0.1464,0.1802,0.9808,-0.0747,0.1802,0.9808,-0.0747,0.3536,0.9239,-0.1464,0.3753,0.9239,-0.0747,0.1802,0.9808,-0.0747,0.3753,0.9239,-0.0747,0.1913,0.9808,-0.0381,0.1913,0.9808,-0.0381,0.3753,0.9239,-0.0747,0.3827,0.9239,0.0,0.1913,0.9808,-0.0381,0.3827,0.9239,0.0,0.1951,0.9808,0.0,0.1951,0.9808,0.0,0.3827,0.9239,0.0,0.3753,0.9239,0.0747,0.1951,0.9808,0.0,0.3753,0.9239,0.0747,0.1913,0.9808,0.0381,0.1913,0.9808,0.0381,0.3753,0.9239,0.0747,0.3536,0.9239,0.1464,0.1913,0.9808,0.0381,0.3536,0.9239,0.1464,0.1802,0.9808,0.0747,0.1802,0.9808,0.0747,0.3536,0.9239,0.1464,0.3182,0.9239,0.2126,0.1802,0.9808,0.0747,0.3182,0.9239,0.2126,0.1622,0.9808,0.1084,0.1622,0.9808,0.1084,0.3182,0.9239,0.2126,0.2706,0.9239,0.2706,0.1622,0.9808,0.1084,0.2706,0.9239,0.2706,0.1379,0.9808,0.1379,0.1379,0.9808,0.1379,0.2706,0.9239,0.2706,0.2126,0.9239,0.3182,0.1379,0.9808,0.1379,0.2126,0.9239,0.3182,0.1084,0.9808,0.1622,0.1084,0.9808,0.1622,0.2126,0.9239,0.3182,0.1464,0.9239,0.3536,0.1084,0.9808,0.1622,0.1464,0.9239,0.3536,0.0747,0.9808,0.1802,0.0747,0.9808,0.1802,0.1464,0.9239,0.3536,0.0747,0.9239,0.3753,0.0747,0.9808,0.1802,0.0747,0.9239,0.3753,0.0381,0.9808,0.1913,0.0381,0.9808,0.1913,0.0747,0.9239,0.3753,0.0,0.9239,0.3827,0.0381,0.9808,0.1913,0.0,0.9239,0.3827,0.0,0.9808,0.1951,0.0,0.9239,0.3827,0.0,0.8315,0.5556,-0.1084,0.8315,0.5449,0.0,0.9239,0.3827,-0.1084,0.8315,0.5449,-0.0747,0.9239,0.3753,-0.0747,0.9239,0.3753,-0.1084,0.8315,0.5449,-0.2126,0.8315,0.5133,-0.0747,0.9239,0.3753,-0.2126,0.8315,0.5133,-0.1464,0.9239,0.3536,-0.1464,0.9239,0.3536,-0.2126,0.8315,0.5133,-0.3087,0.8315,0.4619,-0.1464,0.9239,0.3536,-0.3087,0.8315,0.4619,-0.2126,0.9239,0.3182,-0.2126,0.9239,0.3182,-0.3087,0.8315,0.4619,-0.3928,0.8315,0.3928,-0.2126,0.9239,0.3182,-0.3928,0.8315,0.3928,-0.2706,0.9239,0.2706,-0.2706,0.9239,0.2706,-0.3928,0.8315,0.3928,-0.4619,0.8315,0.3087,-0.2706,0.9239,0.2706,-0.4619,0.8315,0.3087,-0.3182,0.9239,0.2126,-0.3182,0.9239,0.2126,-0.4619,0.8315,0.3087,-0.5133,0.8315,0.2126,-0.3182,0.9239,0.2126,-0.5133,0.8315,0.2126,-0.3536,0.9239,0.1464,-0.3536,0.9239,0.1464,-0.5133,0.8315,0.2126,-0.5449,0.8315,0.1084,-0.3536,0.9239,0.1464,-0.5449,0.8315,0.1084,-0.3753,0.9239,0.0747,-0.3753,0.9239,0.0747,-0.5449,0.8315,0.1084,-0.5556,0.8315,0.0,-0.3753,0.9239,0.0747,-0.5556,0.8315,0.0,-0.3827,0.9239,0.0,-0.3827,0.9239,0.0,-0.5556,0.8315,0.0,-0.5449,0.8315,-0.1084,-0.3827,0.9239,0.0,-0.5449,0.8315,-0.1084,-0.3753,0.9239,-0.0747,-0.3753,0.9239,-0.0747,-0.5449,0.8315,-0.1084,-0.5133,0.8315,-0.2126,-0.3753,0.9239,-0.0747,-0.5133,0.8315,-0.2126,-0.3536,0.9239,-0.1464,-0.3536,0.9239,-0.1464,-0.5133,0.8315,-0.2126,-0.4619,0.8315,-0.3087,-0.3536,0.9239,-0.1464,-0.4619,0.8315,-0.3087,-0.3182,0.9239,-0.2126,-0.3182,0.9239,-0.2126,-0.4619,0.8315,-0.3087,-0.3928,0.8315,-0.3928,-0.3182,0.9239,-0.2126,-0.3928,0.8315,-0.3928,-0.2706,0.9239,-0.2706,-0.2706,0.9239,-0.2706,-0.3928,0.8315,-0.3928,-0.3087,0.8315,-0.4619,-0.2706,0.9239,-0.2706,-0.3087,0.8315,-0.4619,-0.2126,0.9239,-0.3182,-0.2126,0.9239,-0.3182,-0.3087,0.8315,-0.4619,-0.2126,0.8315,-0.5133,-0.2126,0.9239,-0.3182,-0.2126,0.8315,-0.5133,-0.1464,0.9239,-0.3536,-0.1464,0.9239,-0.3536,-0.2126,0.8315,-0.5133,-0.1084,0.8315,-0.5449,-0.1464,0.9239,-0.3536,-0.1084,0.8315,-0.5449,-0.0747,0.9239,-0.3753,-0.0747,0.9239,-0.3753,-0.1084,0.8315,-0.5449,0.0,0.8315,-0.5556,-0.0747,0.9239,-0.3753,0.0,0.8315,-0.5556,0.0,0.9239,-0.3827,0.0,0.9239,-0.3827,0.0,0.8315,-0.5556,0.1084,0.8315,-0.5449,0.0,0.9239,-0.3827,0.1084,0.8315,-0.5449,0.0747,0.9239,-0.3753,0.0747,0.9239,-0.3753,0.1084,0.8315,-0.5449,0.2126,0.8315,-0.5133,0.0747,0.9239,-0.3753,0.2126,0.8315,-0.5133,0.1464,0.9239,-0.3536,0.1464,0.9239,-0.3536,0.2126,0.8315,-0.5133,0.3087,0.8315,-0.4619,0.1464,0.9239,-0.3536,0.3087,0.8315,-0.4619,0.2126,0.9239,-0.3182,0.2126,0.9239,-0.3182,0.3087,0.8315,-0.4619,0.3928,0.8315,-0.3928,0.2126,0.9239,-0.3182,0.3928,0.8315,-0.3928,0.2706,0.9239,-0.2706,0.2706,0.9239,-0.2706,0.3928,0.8315,-0.3928,0.4619,0.8315,-0.3087,0.2706,0.9239,-0.2706,0.4619,0.8315,-0.3087,0.3182,0.9239,-0.2126,0.3182,0.9239,-0.2126,0.4619,0.8315,-0.3087,0.5133,0.8315,-0.2126,0.3182,0.9239,-0.2126,0.5133,0.8315,-0.2126,0.3536,0.9239,-0.1464,0.3536,0.9239,-0.1464,0.5133,0.8315,-0.2126,0.5449,0.8315,-0.1084,0.3536,0.9239,-0.1464,0.5449,0.8315,-0.1084,0.3753,0.9239,-0.0747,0.3753,0.9239,-0.0747,0.5449,0.8315,-0.1084,0.5556,0.8315,0.0,0.3753,0.9239,-0.0747,0.5556,0.8315,0.0,0.3827,0.9239,0.0,0.3827,0.9239,0.0,0.5556,0.8315,0.0,0.5449,0.8315,0.1084,0.3827,0.9239,0.0,0.5449,0.8315,0.1084,0.3753,0.9239,0.0747,0.3753,0.9239,0.0747,0.5449,0.8315,0.1084,0.5133,0.8315,0.2126,0.3753,0.9239,0.0747,0.5133,0.8315,0.2126,0.3536,0.9239,0.1464,0.3536,0.9239,0.1464,0.5133,0.8315,0.2126,0.4619,0.8315,0.3087,0.3536,0.9239,0.1464,0.4619,0.8315,0.3087,0.3182,0.9239,0.2126,0.3182,0.9239,0.2126,0.4619,0.8315,0.3087,0.3928,0.8315,0.3928,0.3182,0.9239,0.2126,0.3928,0.8315,0.3928,0.2706,0.9239,0.2706,0.2706,0.9239,0.2706,0.3928,0.8315,0.3928,0.3087,0.8315,0.4619,0.2706,0.9239,0.2706,0.3087,0.8315,0.4619,0.2126,0.9239,0.3182,0.2126,0.9239,0.3182,0.3087,0.8315,0.4619,0.2126,0.8315,0.5133,0.2126,0.9239,0.3182,0.2126,0.8315,0.5133,0.1464,0.9239,0.3536,0.1464,0.9239,0.3536,0.2126,0.8315,0.5133,0.1084,0.8315,0.5449,0.1464,0.9239,0.3536,0.1084,0.8315,0.5449,0.0747,0.9239,0.3753,0.0747,0.9239,0.3753,0.1084,0.8315,0.5449,0.0,0.8315,0.5556,0.0747,0.9239,0.3753,0.0,0.8315,0.5556,0.0,0.9239,0.3827,0.0,0.8315,0.5556,0.0,0.7071,0.7071,-0.1379,0.7071,0.6935,0.0,0.8315,0.5556,-0.1379,0.7071,0.6935,-0.1084,0.8315,0.5449,-0.1084,0.8315,0.5449,-0.1379,0.7071,0.6935,-0.2706,0.7071,0.6533,-0.1084,0.8315,0.5449,-0.2706,0.7071,0.6533,-0.2126,0.8315,0.5133,-0.2126,0.8315,0.5133,-0.2706,0.7071,0.6533,-0.3928,0.7071,0.5879,-0.2126,0.8315,0.5133,-0.3928,0.7071,0.5879,-0.3087,0.8315,0.4619,-0.3087,0.8315,0.4619,-0.3928,0.7071,0.5879,-0.5,0.7071,0.5,-0.3087,0.8315,0.4619,-0.5,0.7071,0.5,-0.3928,0.8315,0.3928,-0.3928,0.8315,0.3928,-0.5,0.7071,0.5,-0.5879,0.7071,0.3928,-0.3928,0.8315,0.3928,-0.5879,0.7071,0.3928,-0.4619,0.8315,0.3087,-0.4619,0.8315,0.3087,-0.5879,0.7071,0.3928,-0.6533,0.7071,0.2706,-0.4619,0.8315,0.3087,-0.6533,0.7071,0.2706,-0.5133,0.8315,0.2126,-0.5133,0.8315,0.2126,-0.6533,0.7071,0.2706,-0.6935,0.7071,0.1379,-0.5133,0.8315,0.2126,-0.6935,0.7071,0.1379,-0.5449,0.8315,0.1084,-0.5449,0.8315,0.1084,-0.6935,0.7071,0.1379,-0.7071,0.7071,0.0,-0.5449,0.8315,0.1084,-0.7071,0.7071,0.0,-0.5556,0.8315,0.0,-0.5556,0.8315,0.0,-0.7071,0.7071,0.0,-0.6935,0.7071,-0.1379,-0.5556,0.8315,0.0,-0.6935,0.7071,-0.1379,-0.5449,0.8315,-0.1084,-0.5449,0.8315,-0.1084,-0.6935,0.7071,-0.1379,-0.6533,0.7071,-0.2706,-0.5449,0.8315,-0.1084,-0.6533,0.7071,-0.2706,-0.5133,0.8315,-0.2126,-0.5133,0.8315,-0.2126,-0.6533,0.7071,-0.2706,-0.5879,0.7071,-0.3928,-0.5133,0.8315,-0.2126,-0.5879,0.7071,-0.3928,-0.4619,0.8315,-0.3087,-0.4619,0.8315,-0.3087,-0.5879,0.7071,-0.3928,-0.5,0.7071,-0.5,-0.4619,0.8315,-0.3087,-0.5,0.7071,-0.5,-0.3928,0.8315,-0.3928,-0.3928,0.8315,-0.3928,-0.5,0.7071,-0.5,-0.3928,0.7071,-0.5879,-0.3928,0.8315,-0.3928,-0.3928,0.7071,-0.5879,-0.3087,0.8315,-0.4619,-0.3087,0.8315,-0.4619,-0.3928,0.7071,-0.5879,-0.2706,0.7071,-0.6533,-0.3087,0.8315,-0.4619,-0.2706,0.7071,-0.6533,-0.2126,0.8315,-0.5133,-0.2126,0.8315,-0.5133,-0.2706,0.7071,-0.6533,-0.1379,0.7071,-0.6935,-0.2126,0.8315,-0.5133,-0.1379,0.7071,-0.6935,-0.1084,0.8315,-0.5449,-0.1084,0.8315,-0.5449,-0.1379,0.7071,-0.6935,0.0,0.7071,-0.7071,-0.1084,0.8315,-0.5449,0.0,0.7071,-0.7071,0.0,0.8315,-0.5556,0.0,0.8315,-0.5556,0.0,0.7071,-0.7071,0.138,0.7071,-0.6935,0.0,0.8315,-0.5556,0.138,0.7071,-0.6935,0.1084,0.8315,-0.5449,0.1084,0.8315,-0.5449,0.138,0.7071,-0.6935,0.2706,0.7071,-0.6533,0.1084,0.8315,-0.5449,0.2706,0.7071,-0.6533,0.2126,0.8315,-0.5133,0.2126,0.8315,-0.5133,0.2706,0.7071,-0.6533,0.3928,0.7071,-0.5879,0.2126,0.8315,-0.5133,0.3928,0.7071,-0.5879,0.3087,0.8315,-0.4619,0.3087,0.8315,-0.4619,0.3928,0.7071,-0.5879,0.5,0.7071,-0.5,0.3087,0.8315,-0.4619,0.5,0.7071,-0.5,0.3928,0.8315,-0.3928,0.3928,0.8315,-0.3928,0.5,0.7071,-0.5,0.5879,0.7071,-0.3928,0.3928,0.8315,-0.3928,0.5879,0.7071,-0.3928,0.4619,0.8315,-0.3087,0.4619,0.8315,-0.3087,0.5879,0.7071,-0.3928,0.6533,0.7071,-0.2706,0.4619,0.8315,-0.3087,0.6533,0.7071,-0.2706,0.5133,0.8315,-0.2126,0.5133,0.8315,-0.2126,0.6533,0.7071,-0.2706,0.6935,0.7071,-0.1379,0.5133,0.8315,-0.2126,0.6935,0.7071,-0.1379,0.5449,0.8315,-0.1084,0.5449,0.8315,-0.1084,0.6935,0.7071,-0.1379,0.7071,0.7071,0.0,0.5449,0.8315,-0.1084,0.7071,0.7071,0.0,0.5556,0.8315,0.0,0.5556,0.8315,0.0,0.7071,0.7071,0.0,0.6935,0.7071,0.138,0.5556,0.8315,0.0,0.6935,0.7071,0.138,0.5449,0.8315,0.1084,0.5449,0.8315,0.1084,0.6935,0.7071,0.138,0.6533,0.7071,0.2706,0.5449,0.8315,0.1084,0.6533,0.7071,0.2706,0.5133,0.8315,0.2126,0.5133,0.8315,0.2126,0.6533,0.7071,0.2706,0.5879,0.7071,0.3928,0.5133,0.8315,0.2126,0.5879,0.7071,0.3928,0.4619,0.8315,0.3087,0.4619,0.8315,0.3087,0.5879,0.7071,0.3928,0.5,0.7071,0.5,0.4619,0.8315,0.3087,0.5,0.7071,0.5,0.3928,0.8315,0.3928,0.3928,0.8315,0.3928,0.5,0.7071,0.5,0.3928,0.7071,0.5879,0.3928,0.8315,0.3928,0.3928,0.7071,0.5879,0.3087,0.8315,0.4619,0.3087,0.8315,0.4619,0.3928,0.7071,0.5879,0.2706,0.7071,0.6533,0.3087,0.8315,0.4619,0.2706,0.7071,0.6533,0.2126,0.8315,0.5133,0.2126,0.8315,0.5133,0.2706,0.7071,0.6533,0.1379,0.7071,0.6935,0.2126,0.8315,0.5133,0.1379,0.7071,0.6935,0.1084,0.8315,0.5449,0.1084,0.8315,0.5449,0.1379,0.7071,0.6935,0.0,0.7071,0.7071,0.1084,0.8315,0.5449,0.0,0.7071,0.7071,0.0,0.8315,0.5556,0.0,0.7071,0.7071,0.0,0.5556,0.8315,-0.1622,0.5556,0.8155,0.0,0.7071,0.7071,-0.1622,0.5556,0.8155,-0.1379,0.7071,0.6935,-0.1379,0.7071,0.6935,-0.1622,0.5556,0.8155,-0.3182,0.5556,0.7682,-0.1379,0.7071,0.6935,-0.3182,0.5556,0.7682,-0.2706,0.7071,0.6533,-0.2706,0.7071,0.6533,-0.3182,0.5556,0.7682,-0.4619,0.5556,0.6913,-0.2706,0.7071,0.6533,-0.4619,0.5556,0.6913,-0.3928,0.7071,0.5879,-0.3928,0.7071,0.5879,-0.4619,0.5556,0.6913,-0.5879,0.5556,0.5879,-0.3928,0.7071,0.5879,-0.5879,0.5556,0.5879,-0.5,0.7071,0.5,-0.5,0.7071,0.5,-0.5879,0.5556,0.5879,-0.6913,0.5556,0.4619,-0.5,0.7071,0.5,-0.6913,0.5556,0.4619,-0.5879,0.7071,0.3928,-0.5879,0.7071,0.3928,-0.6913,0.5556,0.4619,-0.7682,0.5556,0.3182,-0.5879,0.7071,0.3928,-0.7682,0.5556,0.3182,-0.6533,0.7071,0.2706,-0.6533,0.7071,0.2706,-0.7682,0.5556,0.3182,-0.8155,0.5556,0.1622,-0.6533,0.7071,0.2706,-0.8155,0.5556,0.1622,-0.6935,0.7071,0.1379,-0.6935,0.7071,0.1379,-0.8155,0.5556,0.1622,-0.8315,0.5556,0.0,-0.6935,0.7071,0.1379,-0.8315,0.5556,0.0,-0.7071,0.7071,0.0,-0.7071,0.7071,0.0,-0.8315,0.5556,0.0,-0.8155,0.5556,-0.1622,-0.7071,0.7071,0.0,-0.8155,0.5556,-0.1622,-0.6935,0.7071,-0.1379,-0.6935,0.7071,-0.1379,-0.8155,0.5556,-0.1622,-0.7682,0.5556,-0.3182,-0.6935,0.7071,-0.1379,-0.7682,0.5556,-0.3182,-0.6533,0.7071,-0.2706,-0.6533,0.7071,-0.2706,-0.7682,0.5556,-0.3182,-0.6913,0.5556,-0.4619,-0.6533,0.7071,-0.2706,-0.6913,0.5556,-0.4619,-0.5879,0.7071,-0.3928,-0.5879,0.7071,-0.3928,-0.6913,0.5556,-0.4619,-0.5879,0.5556,-0.5879,-0.5879,0.7071,-0.3928,-0.5879,0.5556,-0.5879,-0.5,0.7071,-0.5,-0.5,0.7071,-0.5,-0.5879,0.5556,-0.5879,-0.4619,0.5556,-0.6913,-0.5,0.7071,-0.5,-0.4619,0.5556,-0.6913,-0.3928,0.7071,-0.5879,-0.3928,0.7071,-0.5879,-0.4619,0.5556,-0.6913,-0.3182,0.5556,-0.7682,-0.3928,0.7071,-0.5879,-0.3182,0.5556,-0.7682,-0.2706,0.7071,-0.6533,-0.2706,0.7071,-0.6533,-0.3182,0.5556,-0.7682,-0.1622,0.5556,-0.8155,-0.2706,0.7071,-0.6533,-0.1622,0.5556,-0.8155,-0.1379,0.7071,-0.6935,-0.1379,0.7071,-0.6935,-0.1622,0.5556,-0.8155,0.0,0.5556,-0.8315,-0.1379,0.7071,-0.6935,0.0,0.5556,-0.8315,0.0,0.7071,-0.7071,0.0,0.7071,-0.7071,0.0,0.5556,-0.8315,0.1622,0.5556,-0.8155,0.0,0.7071,-0.7071,0.1622,0.5556,-0.8155,0.138,0.7071,-0.6935,0.138,0.7071,-0.6935,0.1622,0.5556,-0.8155,0.3182,0.5556,-0.7682,0.138,0.7071,-0.6935,0.3182,0.5556,-0.7682,0.2706,0.7071,-0.6533,0.2706,0.7071,-0.6533,0.3182,0.5556,-0.7682,0.4619,0.5556,-0.6913,0.2706,0.7071,-0.6533,0.4619,0.5556,-0.6913,0.3928,0.7071,-0.5879,0.3928,0.7071,-0.5879,0.4619,0.5556,-0.6913,0.5879,0.5556,-0.5879,0.3928,0.7071,-0.5879,0.5879,0.5556,-0.5879,0.5,0.7071,-0.5,0.5,0.7071,-0.5,0.5879,0.5556,-0.5879,0.6913,0.5556,-0.4619,0.5,0.7071,-0.5,0.6913,0.5556,-0.4619,0.5879,0.7071,-0.3928,0.5879,0.7071,-0.3928,0.6913,0.5556,-0.4619,0.7682,0.5556,-0.3182,0.5879,0.7071,-0.3928,0.7682,0.5556,-0.3182,0.6533,0.7071,-0.2706,0.6533,0.7071,-0.2706,0.7682,0.5556,-0.3182,0.8155,0.5556,-0.1622,0.6533,0.7071,-0.2706,0.8155,0.5556,-0.1622,0.6935,0.7071,-0.1379,0.6935,0.7071,-0.1379,0.8155,0.5556,-0.1622,0.8315,0.5556,0.0,0.6935,0.7071,-0.1379,0.8315,0.5556,0.0,0.7071,0.7071,0.0,0.7071,0.7071,0.0,0.8315,0.5556,0.0,0.8155,0.5556,0.1622,0.7071,0.7071,0.0,0.8155,0.5556,0.1622,0.6935,0.7071,0.138,0.6935,0.7071,0.138,0.8155,0.5556,0.1622,0.7682,0.5556,0.3182,0.6935,0.7071,0.138,0.7682,0.5556,0.3182,0.6533,0.7071,0.2706,0.6533,0.7071,0.2706,0.7682,0.5556,0.3182,0.6913,0.5556,0.4619,0.6533,0.7071,0.2706,0.6913,0.5556,0.4619,0.5879,0.7071,0.3928,0.5879,0.7071,0.3928,0.6913,0.5556,0.4619,0.5879,0.5556,0.5879,0.5879,0.7071,0.3928,0.5879,0.5556,0.5879,0.5,0.7071,0.5,0.5,0.7071,0.5,0.5879,0.5556,0.5879,0.4619,0.5556,0.6913,0.5,0.7071,0.5,0.4619,0.5556,0.6913,0.3928,0.7071,0.5879,0.3928,0.7071,0.5879,0.4619,0.5556,0.6913,0.3182,0.5556,0.7682,0.3928,0.7071,0.5879,0.3182,0.5556,0.7682,0.2706,0.7071,0.6533,0.2706,0.7071,0.6533,0.3182,0.5556,0.7682,0.1622,0.5556,0.8155,0.2706,0.7071,0.6533,0.1622,0.5556,0.8155,0.1379,0.7071,0.6935,0.1379,0.7071,0.6935,0.1622,0.5556,0.8155,0.0,0.5556,0.8315,0.1379,0.7071,0.6935,0.0,0.5556,0.8315,0.0,0.7071,0.7071,0.0,0.5556,0.8315,0.0,0.3827,0.9239,-0.1802,0.3827,0.9061,0.0,0.5556,0.8315,-0.1802,0.3827,0.9061,-0.1622,0.5556,0.8155,-0.1622,0.5556,0.8155,-0.1802,0.3827,0.9061,-0.3536,0.3827,0.8536,-0.1622,0.5556,0.8155,-0.3536,0.3827,0.8536,-0.3182,0.5556,0.7682,-0.3182,0.5556,0.7682,-0.3536,0.3827,0.8536,-0.5133,0.3827,0.7682,-0.3182,0.5556,0.7682,-0.5133,0.3827,0.7682,-0.4619,0.5556,0.6913,-0.4619,0.5556,0.6913,-0.5133,0.3827,0.7682,-0.6533,0.3827,0.6533,-0.4619,0.5556,0.6913,-0.6533,0.3827,0.6533,-0.5879,0.5556,0.5879,-0.5879,0.5556,0.5879,-0.6533,0.3827,0.6533,-0.7682,0.3827,0.5133,-0.5879,0.5556,0.5879,-0.7682,0.3827,0.5133,-0.6913,0.5556,0.4619,-0.6913,0.5556,0.4619,-0.7682,0.3827,0.5133,-0.8536,0.3827,0.3536,-0.6913,0.5556,0.4619,-0.8536,0.3827,0.3536,-0.7682,0.5556,0.3182,-0.7682,0.5556,0.3182,-0.8536,0.3827,0.3536,-0.9061,0.3827,0.1802,-0.7682,0.5556,0.3182,-0.9061,0.3827,0.1802,-0.8155,0.5556,0.1622,-0.8155,0.5556,0.1622,-0.9061,0.3827,0.1802,-0.9239,0.3827,0.0,-0.8155,0.5556,0.1622,-0.9239,0.3827,0.0,-0.8315,0.5556,0.0,-0.8315,0.5556,0.0,-0.9239,0.3827,0.0,-0.9061,0.3827,-0.1802,-0.8315,0.5556,0.0,-0.9061,0.3827,-0.1802,-0.8155,0.5556,-0.1622,-0.8155,0.5556,-0.1622,-0.9061,0.3827,-0.1802,-0.8536,0.3827,-0.3536,-0.8155,0.5556,-0.1622,-0.8536,0.3827,-0.3536,-0.7682,0.5556,-0.3182,-0.7682,0.5556,-0.3182,-0.8536,0.3827,-0.3536,-0.7682,0.3827,-0.5133,-0.7682,0.5556,-0.3182,-0.7682,0.3827,-0.5133,-0.6913,0.5556,-0.4619,-0.6913,0.5556,-0.4619,-0.7682,0.3827,-0.5133,-0.6533,0.3827,-0.6533,-0.6913,0.5556,-0.4619,-0.6533,0.3827,-0.6533,-0.5879,0.5556,-0.5879,-0.5879,0.5556,-0.5879,-0.6533,0.3827,-0.6533,-0.5133,0.3827,-0.7682,-0.5879,0.5556,-0.5879,-0.5133,0.3827,-0.7682,-0.4619,0.5556,-0.6913,-0.4619,0.5556,-0.6913,-0.5133,0.3827,-0.7682,-0.3536,0.3827,-0.8536,-0.4619,0.5556,-0.6913,-0.3536,0.3827,-0.8536,-0.3182,0.5556,-0.7682,-0.3182,0.5556,-0.7682,-0.3536,0.3827,-0.8536,-0.1802,0.3827,-0.9061,-0.3182,0.5556,-0.7682,-0.1802,0.3827,-0.9061,-0.1622,0.5556,-0.8155,-0.1622,0.5556,-0.8155,-0.1802,0.3827,-0.9061,0.0,0.3827,-0.9239,-0.1622,0.5556,-0.8155,0.0,0.3827,-0.9239,0.0,0.5556,-0.8315,0.0,0.5556,-0.8315,0.0,0.3827,-0.9239,0.1802,0.3827,-0.9061,0.0,0.5556,-0.8315,0.1802,0.3827,-0.9061,0.1622,0.5556,-0.8155,0.1622,0.5556,-0.8155,0.1802,0.3827,-0.9061,0.3536,0.3827,-0.8536,0.1622,0.5556,-0.8155,0.3536,0.3827,-0.8536,0.3182,0.5556,-0.7682,0.3182,0.5556,-0.7682,0.3536,0.3827,-0.8536,0.5133,0.3827,-0.7682,0.3182,0.5556,-0.7682,0.5133,0.3827,-0.7682,0.4619,0.5556,-0.6913,0.4619,0.5556,-0.6913,0.5133,0.3827,-0.7682,0.6533,0.3827,-0.6533,0.4619,0.5556,-0.6913,0.6533,0.3827,-0.6533,0.5879,0.5556,-0.5879,0.5879,0.5556,-0.5879,0.6533,0.3827,-0.6533,0.7682,0.3827,-0.5133,0.5879,0.5556,-0.5879,0.7682,0.3827,-0.5133,0.6913,0.5556,-0.4619,0.6913,0.5556,-0.4619,0.7682,0.3827,-0.5133,0.8536,0.3827,-0.3536,0.6913,0.5556,-0.4619,0.8536,0.3827,-0.3536,0.7682,0.5556,-0.3182,0.7682,0.5556,-0.3182,0.8536,0.3827,-0.3536,0.9061,0.3827,-0.1802,0.7682,0.5556,-0.3182,0.9061,0.3827,-0.1802,0.8155,0.5556,-0.1622,0.8155,0.5556,-0.1622,0.9061,0.3827,-0.1802,0.9239,0.3827,0.0,0.8155,0.5556,-0.1622,0.9239,0.3827,0.0,0.8315,0.5556,0.0,0.8315,0.5556,0.0,0.9239,0.3827,0.0,0.9061,0.3827,0.1802,0.8315,0.5556,0.0,0.9061,0.3827,0.1802,0.8155,0.5556,0.1622,0.8155,0.5556,0.1622,0.9061,0.3827,0.1802,0.8536,0.3827,0.3536,0.8155,0.5556,0.1622,0.8536,0.3827,0.3536,0.7682,0.5556,0.3182,0.7682,0.5556,0.3182,0.8536,0.3827,0.3536,0.7682,0.3827,0.5133,0.7682,0.5556,0.3182,0.7682,0.3827,0.5133,0.6913,0.5556,0.4619,0.6913,0.5556,0.4619,0.7682,0.3827,0.5133,0.6533,0.3827,0.6533,0.6913,0.5556,0.4619,0.6533,0.3827,0.6533,0.5879,0.5556,0.5879,0.5879,0.5556,0.5879,0.6533,0.3827,0.6533,0.5133,0.3827,0.7682,0.5879,0.5556,0.5879,0.5133,0.3827,0.7682,0.4619,0.5556,0.6913,0.4619,0.5556,0.6913,0.5133,0.3827,0.7682,0.3536,0.3827,0.8536,0.4619,0.5556,0.6913,0.3536,0.3827,0.8536,0.3182,0.5556,0.7682,0.3182,0.5556,0.7682,0.3536,0.3827,0.8536,0.1802,0.3827,0.9061,0.3182,0.5556,0.7682,0.1802,0.3827,0.9061,0.1622,0.5556,0.8155,0.1622,0.5556,0.8155,0.1802,0.3827,0.9061,0.0,0.3827,0.9239,0.1622,0.5556,0.8155,0.0,0.3827,0.9239,0.0,0.5556,0.8315,0.0,0.3827,0.9239,0.0,0.1951,0.9808,-0.1913,0.1951,0.9619,0.0,0.3827,0.9239,-0.1913,0.1951,0.9619,-0.1802,0.3827,0.9061,-0.1802,0.3827,0.9061,-0.1913,0.1951,0.9619,-0.3753,0.1951,0.9061,-0.1802,0.3827,0.9061,-0.3753,0.1951,0.9061,-0.3536,0.3827,0.8536,-0.3536,0.3827,0.8536,-0.3753,0.1951,0.9061,-0.5449,0.1951,0.8155,-0.3536,0.3827,0.8536,-0.5449,0.1951,0.8155,-0.5133,0.3827,0.7682,-0.5133,0.3827,0.7682,-0.5449,0.1951,0.8155,-0.6935,0.1951,0.6935,-0.5133,0.3827,0.7682,-0.6935,0.1951,0.6935,-0.6533,0.3827,0.6533,-0.6533,0.3827,0.6533,-0.6935,0.1951,0.6935,-0.8155,0.1951,0.5449,-0.6533,0.3827,0.6533,-0.8155,0.1951,0.5449,-0.7682,0.3827,0.5133,-0.7682,0.3827,0.5133,-0.8155,0.1951,0.5449,-0.9061,0.1951,0.3753,-0.7682,0.3827,0.5133,-0.9061,0.1951,0.3753,-0.8536,0.3827,0.3536,-0.8536,0.3827,0.3536,-0.9061,0.1951,0.3753,-0.9619,0.1951,0.1913,-0.8536,0.3827,0.3536,-0.9619,0.1951,0.1913,-0.9061,0.3827,0.1802,-0.9061,0.3827,0.1802,-0.9619,0.1951,0.1913,-0.9808,0.1951,0.0,-0.9061,0.3827,0.1802,-0.9808,0.1951,0.0,-0.9239,0.3827,0.0,-0.9239,0.3827,0.0,-0.9808,0.1951,0.0,-0.9619,0.1951,-0.1913,-0.9239,0.3827,0.0,-0.9619,0.1951,-0.1913,-0.9061,0.3827,-0.1802,-0.9061,0.3827,-0.1802,-0.9619,0.1951,-0.1913,-0.9061,0.1951,-0.3753,-0.9061,0.3827,-0.1802,-0.9061,0.1951,-0.3753,-0.8536,0.3827,-0.3536,-0.8536,0.3827,-0.3536,-0.9061,0.1951,-0.3753,-0.8155,0.1951,-0.5449,-0.8536,0.3827,-0.3536,-0.8155,0.1951,-0.5449,-0.7682,0.3827,-0.5133,-0.7682,0.3827,-0.5133,-0.8155,0.1951,-0.5449,-0.6935,0.1951,-0.6935,-0.7682,0.3827,-0.5133,-0.6935,0.1951,-0.6935,-0.6533,0.3827,-0.6533,-0.6533,0.3827,-0.6533,-0.6935,0.1951,-0.6935,-0.5449,0.1951,-0.8155,-0.6533,0.3827,-0.6533,-0.5449,0.1951,-0.8155,-0.5133,0.3827,-0.7682,-0.5133,0.3827,-0.7682,-0.5449,0.1951,-0.8155,-0.3753,0.1951,-0.9061,-0.5133,0.3827,-0.7682,-0.3753,0.1951,-0.9061,-0.3536,0.3827,-0.8536,-0.3536,0.3827,-0.8536,-0.3753,0.1951,-0.9061,-0.1913,0.1951,-0.9619,-0.3536,0.3827,-0.8536,-0.1913,0.1951,-0.9619,-0.1802,0.3827,-0.9061,-0.1802,0.3827,-0.9061,-0.1913,0.1951,-0.9619,0.0,0.1951,-0.9808,-0.1802,0.3827,-0.9061,0.0,0.1951,-0.9808,0.0,0.3827,-0.9239,0.0,0.3827,-0.9239,0.0,0.1951,-0.9808,0.1913,0.1951,-0.9619,0.0,0.3827,-0.9239,0.1913,0.1951,-0.9619,0.1802,0.3827,-0.9061,0.1802,0.3827,-0.9061,0.1913,0.1951,-0.9619,0.3753,0.1951,-0.9061,0.1802,0.3827,-0.9061,0.3753,0.1951,-0.9061,0.3536,0.3827,-0.8536,0.3536,0.3827,-0.8536,0.3753,0.1951,-0.9061,0.5449,0.1951,-0.8155,0.3536,0.3827,-0.8536,0.5449,0.1951,-0.8155,0.5133,0.3827,-0.7682,0.5133,0.3827,-0.7682,0.5449,0.1951,-0.8155,0.6935,0.1951,-0.6935,0.5133,0.3827,-0.7682,0.6935,0.1951,-0.6935,0.6533,0.3827,-0.6533,0.6533,0.3827,-0.6533,0.6935,0.1951,-0.6935,0.8155,0.1951,-0.5449,0.6533,0.3827,-0.6533,0.8155,0.1951,-0.5449,0.7682,0.3827,-0.5133,0.7682,0.3827,-0.5133,0.8155,0.1951,-0.5449,0.9061,0.1951,-0.3753,0.7682,0.3827,-0.5133,0.9061,0.1951,-0.3753,0.8536,0.3827,-0.3536,0.8536,0.3827,-0.3536,0.9061,0.1951,-0.3753,0.9619,0.1951,-0.1913,0.8536,0.3827,-0.3536,0.9619,0.1951,-0.1913,0.9061,0.3827,-0.1802,0.9061,0.3827,-0.1802,0.9619,0.1951,-0.1913,0.9808,0.1951,0.0,0.9061,0.3827,-0.1802,0.9808,0.1951,0.0,0.9239,0.3827,0.0,0.9239,0.3827,0.0,0.9808,0.1951,0.0,0.9619,0.1951,0.1913,0.9239,0.3827,0.0,0.9619,0.1951,0.1913,0.9061,0.3827,0.1802,0.9061,0.3827,0.1802,0.9619,0.1951,0.1913,0.9061,0.1951,0.3753,0.9061,0.3827,0.1802,0.9061,0.1951,0.3753,0.8536,0.3827,0.3536,0.8536,0.3827,0.3536,0.9061,0.1951,0.3753,0.8155,0.1951,0.5449,0.8536,0.3827,0.3536,0.8155,0.1951,0.5449,0.7682,0.3827,0.5133,0.7682,0.3827,0.5133,0.8155,0.1951,0.5449,0.6935,0.1951,0.6935,0.7682,0.3827,0.5133,0.6935,0.1951,0.6935,0.6533,0.3827,0.6533,0.6533,0.3827,0.6533,0.6935,0.1951,0.6935,0.5449,0.1951,0.8155,0.6533,0.3827,0.6533,0.5449,0.1951,0.8155,0.5133,0.3827,0.7682,0.5133,0.3827,0.7682,0.5449,0.1951,0.8155,0.3753,0.1951,0.9061,0.5133,0.3827,0.7682,0.3753,0.1951,0.9061,0.3536,0.3827,0.8536,0.3536,0.3827,0.8536,0.3753,0.1951,0.9061,0.1913,0.1951,0.9619,0.3536,0.3827,0.8536,0.1913,0.1951,0.9619,0.1802,0.3827,0.9061,0.1802,0.3827,0.9061,0.1913,0.1951,0.9619,0.0,0.1951,0.9808,0.1802,0.3827,0.9061,0.0,0.1951,0.9808,0.0,0.3827,0.9239,0.0,0.1951,0.9808,0.0,0.0,1.0,-0.1951,0.0,0.9808,0.0,0.1951,0.9808,-0.1951,0.0,0.9808,-0.1913,0.1951,0.9619,-0.1913,0.1951,0.9619,-0.1951,0.0,0.9808,-0.3827,0.0,0.9239,-0.1913,0.1951,0.9619,-0.3827,0.0,0.9239,-0.3753,0.1951,0.9061,-0.3753,0.1951,0.9061,-0.3827,0.0,0.9239,-0.5556,0.0,0.8315,-0.3753,0.1951,0.9061,-0.5556,0.0,0.8315,-0.5449,0.1951,0.8155,-0.5449,0.1951,0.8155,-0.5556,0.0,0.8315,-0.7071,0.0,0.7071,-0.5449,0.1951,0.8155,-0.7071,0.0,0.7071,-0.6935,0.1951,0.6935,-0.6935,0.1951,0.6935,-0.7071,0.0,0.7071,-0.8315,0.0,0.5556,-0.6935,0.1951,0.6935,-0.8315,0.0,0.5556,-0.8155,0.1951,0.5449,-0.8155,0.1951,0.5449,-0.8315,0.0,0.5556,-0.9239,0.0,0.3827,-0.8155,0.1951,0.5449,-0.9239,0.0,0.3827,-0.9061,0.1951,0.3753,-0.9061,0.1951,0.3753,-0.9239,0.0,0.3827,-0.9808,0.0,0.1951,-0.9061,0.1951,0.3753,-0.9808,0.0,0.1951,-0.9619,0.1951,0.1913,-0.9619,0.1951,0.1913,-0.9808,0.0,0.1951,-1.0,0.0,0.0,-0.9619,0.1951,0.1913,-1.0,0.0,0.0,-0.9808,0.1951,0.0,-0.9808,0.1951,0.0,-1.0,0.0,0.0,-0.9808,0.0,-0.1951,-0.9808,0.1951,0.0,-0.9808,0.0,-0.1951,-0.9619,0.1951,-0.1913,-0.9619,0.1951,-0.1913,-0.9808,0.0,-0.1951,-0.9239,0.0,-0.3827,-0.9619,0.1951,-0.1913,-0.9239,0.0,-0.3827,-0.9061,0.1951,-0.3753,-0.9061,0.1951,-0.3753,-0.9239,0.0,-0.3827,-0.8315,0.0,-0.5556,-0.9061,0.1951,-0.3753,-0.8315,0.0,-0.5556,-0.8155,0.1951,-0.5449,-0.8155,0.1951,-0.5449,-0.8315,0.0,-0.5556,-0.7071,0.0,-0.7071,-0.8155,0.1951,-0.5449,-0.7071,0.0,-0.7071,-0.6935,0.1951,-0.6935,-0.6935,0.1951,-0.6935,-0.7071,0.0,-0.7071,-0.5556,0.0,-0.8315,-0.6935,0.1951,-0.6935,-0.5556,0.0,-0.8315,-0.5449,0.1951,-0.8155,-0.5449,0.1951,-0.8155,-0.5556,0.0,-0.8315,-0.3827,0.0,-0.9239,-0.5449,0.1951,-0.8155,-0.3827,0.0,-0.9239,-0.3753,0.1951,-0.9061,-0.3753,0.1951,-0.9061,-0.3827,0.0,-0.9239,-0.1951,0.0,-0.9808,-0.3753,0.1951,-0.9061,-0.1951,0.0,-0.9808,-0.1913,0.1951,-0.9619,-0.1913,0.1951,-0.9619,-0.1951,0.0,-0.9808,0.0,0.0,-1.0,-0.1913,0.1951,-0.9619,0.0,0.0,-1.0,0.0,0.1951,-0.9808,0.0,0.1951,-0.9808,0.0,0.0,-1.0,0.1951,0.0,-0.9808,0.0,0.1951,-0.9808,0.1951,0.0,-0.9808,0.1913,0.1951,-0.9619,0.1913,0.1951,-0.9619,0.1951,0.0,-0.9808,0.3827,0.0,-0.9239,0.1913,0.1951,-0.9619,0.3827,0.0,-0.9239,0.3753,0.1951,-0.9061,0.3753,0.1951,-0.9061,0.3827,0.0,-0.9239,0.5556,0.0,-0.8315,0.3753,0.1951,-0.9061,0.5556,0.0,-0.8315,0.5449,0.1951,-0.8155,0.5449,0.1951,-0.8155,0.5556,0.0,-0.8315,0.7071,0.0,-0.7071,0.5449,0.1951,-0.8155,0.7071,0.0,-0.7071,0.6935,0.1951,-0.6935,0.6935,0.1951,-0.6935,0.7071,0.0,-0.7071,0.8315,0.0,-0.5556,0.6935,0.1951,-0.6935,0.8315,0.0,-0.5556,0.8155,0.1951,-0.5449,0.8155,0.1951,-0.5449,0.8315,0.0,-0.5556,0.9239,0.0,-0.3827,0.8155,0.1951,-0.5449,0.9239,0.0,-0.3827,0.9061,0.1951,-0.3753,0.9061,0.1951,-0.3753,0.9239,0.0,-0.3827,0.9808,0.0,-0.1951,0.9061,0.1951,-0.3753,0.9808,0.0,-0.1951,0.9619,0.1951,-0.1913,0.9619,0.1951,-0.1913,0.9808,0.0,-0.1951,1.0,0.0,0.0,0.9619,0.1951,-0.1913,1.0,0.0,0.0,0.9808,0.1951,0.0,0.9808,0.1951,0.0,1.0,0.0,0.0,0.9808,0.0,0.1951,0.9808,0.1951,0.0,0.9808,0.0,0.1951,0.9619,0.1951,0.1913,0.9619,0.1951,0.1913,0.9808,0.0,0.1951,0.9239,0.0,0.3827,0.9619,0.1951,0.1913,0.9239,0.0,0.3827,0.9061,0.1951,0.3753,0.9061,0.1951,0.3753,0.9239,0.0,0.3827,0.8315,0.0,0.5556,0.9061,0.1951,0.3753,0.8315,0.0,0.5556,0.8155,0.1951,0.5449,0.8155,0.1951,0.5449,0.8315,0.0,0.5556,0.7071,0.0,0.7071,0.8155,0.1951,0.5449,0.7071,0.0,0.7071,0.6935,0.1951,0.6935,0.6935,0.1951,0.6935,0.7071,0.0,0.7071,0.5556,0.0,0.8315,0.6935,0.1951,0.6935,0.5556,0.0,0.8315,0.5449,0.1951,0.8155,0.5449,0.1951,0.8155,0.5556,0.0,0.8315,0.3827,0.0,0.9239,0.5449,0.1951,0.8155,0.3827,0.0,0.9239,0.3753,0.1951,0.9061,0.3753,0.1951,0.9061,0.3827,0.0,0.9239,0.1951,0.0,0.9808,0.3753,0.1951,0.9061,0.1951,0.0,0.9808,0.1913,0.1951,0.9619,0.1913,0.1951,0.9619,0.1951,0.0,0.9808,0.0,0.0,1.0,0.1913,0.1951,0.9619,0.0,0.0,1.0,0.0,0.1951,0.9808,0.0,0.0,1.0,0.0,-0.1951,0.9808,-0.1913,-0.1951,0.9619,0.0,0.0,1.0,-0.1913,-0.1951,0.9619,-0.1951,0.0,0.9808,-0.1951,0.0,0.9808,-0.1913,-0.1951,0.9619,-0.3753,-0.1951,0.9061,-0.1951,0.0,0.9808,-0.3753,-0.1951,0.9061,-0.3827,0.0,0.9239,-0.3827,0.0,0.9239,-0.3753,-0.1951,0.9061,-0.5449,-0.1951,0.8155,-0.3827,0.0,0.9239,-0.5449,-0.1951,0.8155,-0.5556,0.0,0.8315,-0.5556,0.0,0.8315,-0.5449,-0.1951,0.8155,-0.6935,-0.1951,0.6935,-0.5556,0.0,0.8315,-0.6935,-0.1951,0.6935,-0.7071,0.0,0.7071,-0.7071,0.0,0.7071,-0.6935,-0.1951,0.6935,-0.8155,-0.1951,0.5449,-0.7071,0.0,0.7071,-0.8155,-0.1951,0.5449,-0.8315,0.0,0.5556,-0.8315,0.0,0.5556,-0.8155,-0.1951,0.5449,-0.9061,-0.1951,0.3753,-0.8315,0.0,0.5556,-0.9061,-0.1951,0.3753,-0.9239,0.0,0.3827,-0.9239,0.0,0.3827,-0.9061,-0.1951,0.3753,-0.9619,-0.1951,0.1913,-0.9239,0.0,0.3827,-0.9619,-0.1951,0.1913,-0.9808,0.0,0.1951,-0.9808,0.0,0.1951,-0.9619,-0.1951,0.1913,-0.9808,-0.1951,0.0,-0.9808,0.0,0.1951,-0.9808,-0.1951,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-0.9808,-0.1951,0.0,-0.9619,-0.1951,-0.1913,-1.0,0.0,0.0,-0.9619,-0.1951,-0.1913,-0.9808,0.0,-0.1951,-0.9808,0.0,-0.1951,-0.9619,-0.1951,-0.1913,-0.9061,-0.1951,-0.3753,-0.9808,0.0,-0.1951,-0.9061,-0.1951,-0.3753,-0.9239,0.0,-0.3827,-0.9239,0.0,-0.3827,-0.9061,-0.1951,-0.3753,-0.8155,-0.1951,-0.5449,-0.9239,0.0,-0.3827,-0.8155,-0.1951,-0.5449,-0.8315,0.0,-0.5556,-0.8315,0.0,-0.5556,-0.8155,-0.1951,-0.5449,-0.6935,-0.1951,-0.6935,-0.8315,0.0,-0.5556,-0.6935,-0.1951,-0.6935,-0.7071,0.0,-0.7071,-0.7071,0.0,-0.7071,-0.6935,-0.1951,-0.6935,-0.5449,-0.1951,-0.8155,-0.7071,0.0,-0.7071,-0.5449,-0.1951,-0.8155,-0.5556,0.0,-0.8315,-0.5556,0.0,-0.8315,-0.5449,-0.1951,-0.8155,-0.3753,-0.1951,-0.9061,-0.5556,0.0,-0.8315,-0.3753,-0.1951,-0.9061,-0.3827,0.0,-0.9239,-0.3827,0.0,-0.9239,-0.3753,-0.1951,-0.9061,-0.1913,-0.1951,-0.9619,-0.3827,0.0,-0.9239,-0.1913,-0.1951,-0.9619,-0.1951,0.0,-0.9808,-0.1951,0.0,-0.9808,-0.1913,-0.1951,-0.9619,0.0,-0.1951,-0.9808,-0.1951,0.0,-0.9808,0.0,-0.1951,-0.9808,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,-0.1951,-0.9808,0.1913,-0.1951,-0.9619,0.0,0.0,-1.0,0.1913,-0.1951,-0.9619,0.1951,0.0,-0.9808,0.1951,0.0,-0.9808,0.1913,-0.1951,-0.9619,0.3753,-0.1951,-0.9061,0.1951,0.0,-0.9808,0.3753,-0.1951,-0.9061,0.3827,0.0,-0.9239,0.3827,0.0,-0.9239,0.3753,-0.1951,-0.9061,0.5449,-0.1951,-0.8155,0.3827,0.0,-0.9239,0.5449,-0.1951,-0.8155,0.5556,0.0,-0.8315,0.5556,0.0,-0.8315,0.5449,-0.1951,-0.8155,0.6935,-0.1951,-0.6935,0.5556,0.0,-0.8315,0.6935,-0.1951,-0.6935,0.7071,0.0,-0.7071,0.7071,0.0,-0.7071,0.6935,-0.1951,-0.6935,0.8155,-0.1951,-0.5449,0.7071,0.0,-0.7071,0.8155,-0.1951,-0.5449,0.8315,0.0,-0.5556,0.8315,0.0,-0.5556,0.8155,-0.1951,-0.5449,0.9061,-0.1951,-0.3753,0.8315,0.0,-0.5556,0.9061,-0.1951,-0.3753,0.9239,0.0,-0.3827,0.9239,0.0,-0.3827,0.9061,-0.1951,-0.3753,0.9619,-0.1951,-0.1913,0.9239,0.0,-0.3827,0.9619,-0.1951,-0.1913,0.9808,0.0,-0.1951,0.9808,0.0,-0.1951,0.9619,-0.1951,-0.1913,0.9808,-0.1951,0.0,0.9808,0.0,-0.1951,0.9808,-0.1951,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.9808,-0.1951,0.0,0.9619,-0.1951,0.1913,1.0,0.0,0.0,0.9619,-0.1951,0.1913,0.9808,0.0,0.1951,0.9808,0.0,0.1951,0.9619,-0.1951,0.1913,0.9061,-0.1951,0.3753,0.9808,0.0,0.1951,0.9061,-0.1951,0.3753,0.9239,0.0,0.3827,0.9239,0.0,0.3827,0.9061,-0.1951,0.3753,0.8155,-0.1951,0.5449,0.9239,0.0,0.3827,0.8155,-0.1951,0.5449,0.8315,0.0,0.5556,0.8315,0.0,0.5556,0.8155,-0.1951,0.5449,0.6935,-0.1951,0.6935,0.8315,0.0,0.5556,0.6935,-0.1951,0.6935,0.7071,0.0,0.7071,0.7071,0.0,0.7071,0.6935,-0.1951,0.6935,0.5449,-0.1951,0.8155,0.7071,0.0,0.7071,0.5449,-0.1951,0.8155,0.5556,0.0,0.8315,0.5556,0.0,0.8315,0.5449,-0.1951,0.8155,0.3753,-0.1951,0.9061,0.5556,0.0,0.8315,0.3753,-0.1951,0.9061,0.3827,0.0,0.9239,0.3827,0.0,0.9239,0.3753,-0.1951,0.9061,0.1913,-0.1951,0.9619,0.3827,0.0,0.9239,0.1913,-0.1951,0.9619,0.1951,0.0,0.9808,0.1951,0.0,0.9808,0.1913,-0.1951,0.9619,0.0,-0.1951,0.9808,0.1951,0.0,0.9808,0.0,-0.1951,0.9808,0.0,0.0,1.0,0.0,-0.1951,0.9808,0.0,-0.3827,0.9239,-0.1802,-0.3827,0.9061,0.0,-0.1951,0.9808,-0.1802,-0.3827,0.9061,-0.1913,-0.1951,0.9619,-0.1913,-0.1951,0.9619,-0.1802,-0.3827,0.9061,-0.3536,-0.3827,0.8536,-0.1913,-0.1951,0.9619,-0.3536,-0.3827,0.8536,-0.3753,-0.1951,0.9061,-0.3753,-0.1951,0.9061,-0.3536,-0.3827,0.8536,-0.5133,-0.3827,0.7682,-0.3753,-0.1951,0.9061,-0.5133,-0.3827,0.7682,-0.5449,-0.1951,0.8155,-0.5449,-0.1951,0.8155,-0.5133,-0.3827,0.7682,-0.6533,-0.3827,0.6533,-0.5449,-0.1951,0.8155,-0.6533,-0.3827,0.6533,-0.6935,-0.1951,0.6935,-0.6935,-0.1951,0.6935,-0.6533,-0.3827,0.6533,-0.7682,-0.3827,0.5133,-0.6935,-0.1951,0.6935,-0.7682,-0.3827,0.5133,-0.8155,-0.1951,0.5449,-0.8155,-0.1951,0.5449,-0.7682,-0.3827,0.5133,-0.8536,-0.3827,0.3536,-0.8155,-0.1951,0.5449,-0.8536,-0.3827,0.3536,-0.9061,-0.1951,0.3753,-0.9061,-0.1951,0.3753,-0.8536,-0.3827,0.3536,-0.9061,-0.3827,0.1802,-0.9061,-0.1951,0.3753,-0.9061,-0.3827,0.1802,-0.9619,-0.1951,0.1913,-0.9619,-0.1951,0.1913,-0.9061,-0.3827,0.1802,-0.9239,-0.3827,0.0,-0.9619,-0.1951,0.1913,-0.9239,-0.3827,0.0,-0.9808,-0.1951,0.0,-0.9808,-0.1951,0.0,-0.9239,-0.3827,0.0,-0.9061,-0.3827,-0.1802,-0.9808,-0.1951,0.0,-0.9061,-0.3827,-0.1802,-0.9619,-0.1951,-0.1913,-0.9619,-0.1951,-0.1913,-0.9061,-0.3827,-0.1802,-0.8536,-0.3827,-0.3536,-0.9619,-0.1951,-0.1913,-0.8536,-0.3827,-0.3536,-0.9061,-0.1951,-0.3753,-0.9061,-0.1951,-0.3753,-0.8536,-0.3827,-0.3536,-0.7682,-0.3827,-0.5133,-0.9061,-0.1951,-0.3753,-0.7682,-0.3827,-0.5133,-0.8155,-0.1951,-0.5449,-0.8155,-0.1951,-0.5449,-0.7682,-0.3827,-0.5133,-0.6533,-0.3827,-0.6533,-0.8155,-0.1951,-0.5449,-0.6533,-0.3827,-0.6533,-0.6935,-0.1951,-0.6935,-0.6935,-0.1951,-0.6935,-0.6533,-0.3827,-0.6533,-0.5133,-0.3827,-0.7682,-0.6935,-0.1951,-0.6935,-0.5133,-0.3827,-0.7682,-0.5449,-0.1951,-0.8155,-0.5449,-0.1951,-0.8155,-0.5133,-0.3827,-0.7682,-0.3536,-0.3827,-0.8536,-0.5449,-0.1951,-0.8155,-0.3536,-0.3827,-0.8536,-0.3753,-0.1951,-0.9061,-0.3753,-0.1951,-0.9061,-0.3536,-0.3827,-0.8536,-0.1802,-0.3827,-0.9061,-0.3753,-0.1951,-0.9061,-0.1802,-0.3827,-0.9061,-0.1913,-0.1951,-0.9619,-0.1913,-0.1951,-0.9619,-0.1802,-0.3827,-0.9061,0.0,-0.3827,-0.9239,-0.1913,-0.1951,-0.9619,0.0,-0.3827,-0.9239,0.0,-0.1951,-0.9808,0.0,-0.1951,-0.9808,0.0,-0.3827,-0.9239,0.1802,-0.3827,-0.9061,0.0,-0.1951,-0.9808,0.1802,-0.3827,-0.9061,0.1913,-0.1951,-0.9619,0.1913,-0.1951,-0.9619,0.1802,-0.3827,-0.9061,0.3536,-0.3827,-0.8536,0.1913,-0.1951,-0.9619,0.3536,-0.3827,-0.8536,0.3753,-0.1951,-0.9061,0.3753,-0.1951,-0.9061,0.3536,-0.3827,-0.8536,0.5133,-0.3827,-0.7682,0.3753,-0.1951,-0.9061,0.5133,-0.3827,-0.7682,0.5449,-0.1951,-0.8155,0.5449,-0.1951,-0.8155,0.5133,-0.3827,-0.7682,0.6533,-0.3827,-0.6533,0.5449,-0.1951,-0.8155,0.6533,-0.3827,-0.6533,0.6935,-0.1951,-0.6935,0.6935,-0.1951,-0.6935,0.6533,-0.3827,-0.6533,0.7682,-0.3827,-0.5133,0.6935,-0.1951,-0.6935,0.7682,-0.3827,-0.5133,0.8155,-0.1951,-0.5449,0.8155,-0.1951,-0.5449,0.7682,-0.3827,-0.5133,0.8536,-0.3827,-0.3536,0.8155,-0.1951,-0.5449,0.8536,-0.3827,-0.3536,0.9061,-0.1951,-0.3753,0.9061,-0.1951,-0.3753,0.8536,-0.3827,-0.3536,0.9061,-0.3827,-0.1802,0.9061,-0.1951,-0.3753,0.9061,-0.3827,-0.1802,0.9619,-0.1951,-0.1913,0.9619,-0.1951,-0.1913,0.9061,-0.3827,-0.1802,0.9239,-0.3827,0.0,0.9619,-0.1951,-0.1913,0.9239,-0.3827,0.0,0.9808,-0.1951,0.0,0.9808,-0.1951,0.0,0.9239,-0.3827,0.0,0.9061,-0.3827,0.1802,0.9808,-0.1951,0.0,0.9061,-0.3827,0.1802,0.9619,-0.1951,0.1913,0.9619,-0.1951,0.1913,0.9061,-0.3827,0.1802,0.8536,-0.3827,0.3536,0.9619,-0.1951,0.1913,0.8536,-0.3827,0.3536,0.9061,-0.1951,0.3753,0.9061,-0.1951,0.3753,0.8536,-0.3827,0.3536,0.7682,-0.3827,0.5133,0.9061,-0.1951,0.3753,0.7682,-0.3827,0.5133,0.8155,-0.1951,0.5449,0.8155,-0.1951,0.5449,0.7682,-0.3827,0.5133,0.6533,-0.3827,0.6533,0.8155,-0.1951,0.5449,0.6533,-0.3827,0.6533,0.6935,-0.1951,0.6935,0.6935,-0.1951,0.6935,0.6533,-0.3827,0.6533,0.5133,-0.3827,0.7682,0.6935,-0.1951,0.6935,0.5133,-0.3827,0.7682,0.5449,-0.1951,0.8155,0.5449,-0.1951,0.8155,0.5133,-0.3827,0.7682,0.3536,-0.3827,0.8536,0.5449,-0.1951,0.8155,0.3536,-0.3827,0.8536,0.3753,-0.1951,0.9061,0.3753,-0.1951,0.9061,0.3536,-0.3827,0.8536,0.1802,-0.3827,0.9061,0.3753,-0.1951,0.9061,0.1802,-0.3827,0.9061,0.1913,-0.1951,0.9619,0.1913,-0.1951,0.9619,0.1802,-0.3827,0.9061,0.0,-0.3827,0.9239,0.1913,-0.1951,0.9619,0.0,-0.3827,0.9239,0.0,-0.1951,0.9808,0.0,-0.3827,0.9239,0.0,-0.5556,0.8315,-0.1622,-0.5556,0.8155,0.0,-0.3827,0.9239,-0.1622,-0.5556,0.8155,-0.1802,-0.3827,0.9061,-0.1802,-0.3827,0.9061,-0.1622,-0.5556,0.8155,-0.3182,-0.5556,0.7682,-0.1802,-0.3827,0.9061,-0.3182,-0.5556,0.7682,-0.3536,-0.3827,0.8536,-0.3536,-0.3827,0.8536,-0.3182,-0.5556,0.7682,-0.4619,-0.5556,0.6913,-0.3536,-0.3827,0.8536,-0.4619,-0.5556,0.6913,-0.5133,-0.3827,0.7682,-0.5133,-0.3827,0.7682,-0.4619,-0.5556,0.6913,-0.5879,-0.5556,0.5879,-0.5133,-0.3827,0.7682,-0.5879,-0.5556,0.5879,-0.6533,-0.3827,0.6533,-0.6533,-0.3827,0.6533,-0.5879,-0.5556,0.5879,-0.6913,-0.5556,0.4619,-0.6533,-0.3827,0.6533,-0.6913,-0.5556,0.4619,-0.7682,-0.3827,0.5133,-0.7682,-0.3827,0.5133,-0.6913,-0.5556,0.4619,-0.7682,-0.5556,0.3182,-0.7682,-0.3827,0.5133,-0.7682,-0.5556,0.3182,-0.8536,-0.3827,0.3536,-0.8536,-0.3827,0.3536,-0.7682,-0.5556,0.3182,-0.8155,-0.5556,0.1622,-0.8536,-0.3827,0.3536,-0.8155,-0.5556,0.1622,-0.9061,-0.3827,0.1802,-0.9061,-0.3827,0.1802,-0.8155,-0.5556,0.1622,-0.8315,-0.5556,0.0,-0.9061,-0.3827,0.1802,-0.8315,-0.5556,0.0,-0.9239,-0.3827,0.0,-0.9239,-0.3827,0.0,-0.8315,-0.5556,0.0,-0.8155,-0.5556,-0.1622,-0.9239,-0.3827,0.0,-0.8155,-0.5556,-0.1622,-0.9061,-0.3827,-0.1802,-0.9061,-0.3827,-0.1802,-0.8155,-0.5556,-0.1622,-0.7682,-0.5556,-0.3182,-0.9061,-0.3827,-0.1802,-0.7682,-0.5556,-0.3182,-0.8536,-0.3827,-0.3536,-0.8536,-0.3827,-0.3536,-0.7682,-0.5556,-0.3182,-0.6913,-0.5556,-0.4619,-0.8536,-0.3827,-0.3536,-0.6913,-0.5556,-0.4619,-0.7682,-0.3827,-0.5133,-0.7682,-0.3827,-0.5133,-0.6913,-0.5556,-0.4619,-0.5879,-0.5556,-0.5879,-0.7682,-0.3827,-0.5133,-0.5879,-0.5556,-0.5879,-0.6533,-0.3827,-0.6533,-0.6533,-0.3827,-0.6533,-0.5879,-0.5556,-0.5879,-0.4619,-0.5556,-0.6913,-0.6533,-0.3827,-0.6533,-0.4619,-0.5556,-0.6913,-0.5133,-0.3827,-0.7682,-0.5133,-0.3827,-0.7682,-0.4619,-0.5556,-0.6913,-0.3182,-0.5556,-0.7682,-0.5133,-0.3827,-0.7682,-0.3182,-0.5556,-0.7682,-0.3536,-0.3827,-0.8536,-0.3536,-0.3827,-0.8536,-0.3182,-0.5556,-0.7682,-0.1622,-0.5556,-0.8155,-0.3536,-0.3827,-0.8536,-0.1622,-0.5556,-0.8155,-0.1802,-0.3827,-0.9061,-0.1802,-0.3827,-0.9061,-0.1622,-0.5556,-0.8155,0.0,-0.5556,-0.8315,-0.1802,-0.3827,-0.9061,0.0,-0.5556,-0.8315,0.0,-0.3827,-0.9239,0.0,-0.3827,-0.9239,0.0,-0.5556,-0.8315,0.1622,-0.5556,-0.8155,0.0,-0.3827,-0.9239,0.1622,-0.5556,-0.8155,0.1802,-0.3827,-0.9061,0.1802,-0.3827,-0.9061,0.1622,-0.5556,-0.8155,0.3182,-0.5556,-0.7682,0.1802,-0.3827,-0.9061,0.3182,-0.5556,-0.7682,0.3536,-0.3827,-0.8536,0.3536,-0.3827,-0.8536,0.3182,-0.5556,-0.7682,0.4619,-0.5556,-0.6913,0.3536,-0.3827,-0.8536,0.4619,-0.5556,-0.6913,0.5133,-0.3827,-0.7682,0.5133,-0.3827,-0.7682,0.4619,-0.5556,-0.6913,0.5879,-0.5556,-0.5879,0.5133,-0.3827,-0.7682,0.5879,-0.5556,-0.5879,0.6533,-0.3827,-0.6533,0.6533,-0.3827,-0.6533,0.5879,-0.5556,-0.5879,0.6913,-0.5556,-0.4619,0.6533,-0.3827,-0.6533,0.6913,-0.5556,-0.4619,0.7682,-0.3827,-0.5133,0.7682,-0.3827,-0.5133,0.6913,-0.5556,-0.4619,0.7682,-0.5556,-0.3182,0.7682,-0.3827,-0.5133,0.7682,-0.5556,-0.3182,0.8536,-0.3827,-0.3536,0.8536,-0.3827,-0.3536,0.7682,-0.5556,-0.3182,0.8155,-0.5556,-0.1622,0.8536,-0.3827,-0.3536,0.8155,-0.5556,-0.1622,0.9061,-0.3827,-0.1802,0.9061,-0.3827,-0.1802,0.8155,-0.5556,-0.1622,0.8315,-0.5556,0.0,0.9061,-0.3827,-0.1802,0.8315,-0.5556,0.0,0.9239,-0.3827,0.0,0.9239,-0.3827,0.0,0.8315,-0.5556,0.0,0.8155,-0.5556,0.1622,0.9239,-0.3827,0.0,0.8155,-0.5556,0.1622,0.9061,-0.3827,0.1802,0.9061,-0.3827,0.1802,0.8155,-0.5556,0.1622,0.7682,-0.5556,0.3182,0.9061,-0.3827,0.1802,0.7682,-0.5556,0.3182,0.8536,-0.3827,0.3536,0.8536,-0.3827,0.3536,0.7682,-0.5556,0.3182,0.6913,-0.5556,0.4619,0.8536,-0.3827,0.3536,0.6913,-0.5556,0.4619,0.7682,-0.3827,0.5133,0.7682,-0.3827,0.5133,0.6913,-0.5556,0.4619,0.5879,-0.5556,0.5879,0.7682,-0.3827,0.5133,0.5879,-0.5556,0.5879,0.6533,-0.3827,0.6533,0.6533,-0.3827,0.6533,0.5879,-0.5556,0.5879,0.4619,-0.5556,0.6913,0.6533,-0.3827,0.6533,0.4619,-0.5556,0.6913,0.5133,-0.3827,0.7682,0.5133,-0.3827,0.7682,0.4619,-0.5556,0.6913,0.3182,-0.5556,0.7682,0.5133,-0.3827,0.7682,0.3182,-0.5556,0.7682,0.3536,-0.3827,0.8536,0.3536,-0.3827,0.8536,0.3182,-0.5556,0.7682,0.1622,-0.5556,0.8155,0.3536,-0.3827,0.8536,0.1622,-0.5556,0.8155,0.1802,-0.3827,0.9061,0.1802,-0.3827,0.9061,0.1622,-0.5556,0.8155,0.0,-0.5556,0.8315,0.1802,-0.3827,0.9061,0.0,-0.5556,0.8315,0.0,-0.3827,0.9239,0.0,-0.5556,0.8315,0.0,-0.7071,0.7071,-0.1379,-0.7071,0.6935,0.0,-0.5556,0.8315,-0.1379,-0.7071,0.6935,-0.1622,-0.5556,0.8155,-0.1622,-0.5556,0.8155,-0.1379,-0.7071,0.6935,-0.2706,-0.7071,0.6533,-0.1622,-0.5556,0.8155,-0.2706,-0.7071,0.6533,-0.3182,-0.5556,0.7682,-0.3182,-0.5556,0.7682,-0.2706,-0.7071,0.6533,-0.3928,-0.7071,0.5879,-0.3182,-0.5556,0.7682,-0.3928,-0.7071,0.5879,-0.4619,-0.5556,0.6913,-0.4619,-0.5556,0.6913,-0.3928,-0.7071,0.5879,-0.5,-0.7071,0.5,-0.4619,-0.5556,0.6913,-0.5,-0.7071,0.5,-0.5879,-0.5556,0.5879,-0.5879,-0.5556,0.5879,-0.5,-0.7071,0.5,-0.5879,-0.7071,0.3928,-0.5879,-0.5556,0.5879,-0.5879,-0.7071,0.3928,-0.6913,-0.5556,0.4619,-0.6913,-0.5556,0.4619,-0.5879,-0.7071,0.3928,-0.6533,-0.7071,0.2706,-0.6913,-0.5556,0.4619,-0.6533,-0.7071,0.2706,-0.7682,-0.5556,0.3182,-0.7682,-0.5556,0.3182,-0.6533,-0.7071,0.2706,-0.6935,-0.7071,0.1379,-0.7682,-0.5556,0.3182,-0.6935,-0.7071,0.1379,-0.8155,-0.5556,0.1622,-0.8155,-0.5556,0.1622,-0.6935,-0.7071,0.1379,-0.7071,-0.7071,0.0,-0.8155,-0.5556,0.1622,-0.7071,-0.7071,0.0,-0.8315,-0.5556,0.0,-0.8315,-0.5556,0.0,-0.7071,-0.7071,0.0,-0.6935,-0.7071,-0.1379,-0.8315,-0.5556,0.0,-0.6935,-0.7071,-0.1379,-0.8155,-0.5556,-0.1622,-0.8155,-0.5556,-0.1622,-0.6935,-0.7071,-0.1379,-0.6533,-0.7071,-0.2706,-0.8155,-0.5556,-0.1622,-0.6533,-0.7071,-0.2706,-0.7682,-0.5556,-0.3182,-0.7682,-0.5556,-0.3182,-0.6533,-0.7071,-0.2706,-0.5879,-0.7071,-0.3928,-0.7682,-0.5556,-0.3182,-0.5879,-0.7071,-0.3928,-0.6913,-0.5556,-0.4619,-0.6913,-0.5556,-0.4619,-0.5879,-0.7071,-0.3928,-0.5,-0.7071,-0.5,-0.6913,-0.5556,-0.4619,-0.5,-0.7071,-0.5,-0.5879,-0.5556,-0.5879,-0.5879,-0.5556,-0.5879,-0.5,-0.7071,-0.5,-0.3928,-0.7071,-0.5879,-0.5879,-0.5556,-0.5879,-0.3928,-0.7071,-0.5879,-0.4619,-0.5556,-0.6913,-0.4619,-0.5556,-0.6913,-0.3928,-0.7071,-0.5879,-0.2706,-0.7071,-0.6533,-0.4619,-0.5556,-0.6913,-0.2706,-0.7071,-0.6533,-0.3182,-0.5556,-0.7682,-0.3182,-0.5556,-0.7682,-0.2706,-0.7071,-0.6533,-0.1379,-0.7071,-0.6935,-0.3182,-0.5556,-0.7682,-0.1379,-0.7071,-0.6935,-0.1622,-0.5556,-0.8155,-0.1622,-0.5556,-0.8155,-0.1379,-0.7071,-0.6935,0.0,-0.7071,-0.7071,-0.1622,-0.5556,-0.8155,0.0,-0.7071,-0.7071,0.0,-0.5556,-0.8315,0.0,-0.5556,-0.8315,0.0,-0.7071,-0.7071,0.138,-0.7071,-0.6935,0.0,-0.5556,-0.8315,0.138,-0.7071,-0.6935,0.1622,-0.5556,-0.8155,0.1622,-0.5556,-0.8155,0.138,-0.7071,-0.6935,0.2706,-0.7071,-0.6533,0.1622,-0.5556,-0.8155,0.2706,-0.7071,-0.6533,0.3182,-0.5556,-0.7682,0.3182,-0.5556,-0.7682,0.2706,-0.7071,-0.6533,0.3928,-0.7071,-0.5879,0.3182,-0.5556,-0.7682,0.3928,-0.7071,-0.5879,0.4619,-0.5556,-0.6913,0.4619,-0.5556,-0.6913,0.3928,-0.7071,-0.5879,0.5,-0.7071,-0.5,0.4619,-0.5556,-0.6913,0.5,-0.7071,-0.5,0.5879,-0.5556,-0.5879,0.5879,-0.5556,-0.5879,0.5,-0.7071,-0.5,0.5879,-0.7071,-0.3928,0.5879,-0.5556,-0.5879,0.5879,-0.7071,-0.3928,0.6913,-0.5556,-0.4619,0.6913,-0.5556,-0.4619,0.5879,-0.7071,-0.3928,0.6533,-0.7071,-0.2706,0.6913,-0.5556,-0.4619,0.6533,-0.7071,-0.2706,0.7682,-0.5556,-0.3182,0.7682,-0.5556,-0.3182,0.6533,-0.7071,-0.2706,0.6935,-0.7071,-0.1379,0.7682,-0.5556,-0.3182,0.6935,-0.7071,-0.1379,0.8155,-0.5556,-0.1622,0.8155,-0.5556,-0.1622,0.6935,-0.7071,-0.1379,0.7071,-0.7071,0.0,0.8155,-0.5556,-0.1622,0.7071,-0.7071,0.0,0.8315,-0.5556,0.0,0.8315,-0.5556,0.0,0.7071,-0.7071,0.0,0.6935,-0.7071,0.138,0.8315,-0.5556,0.0,0.6935,-0.7071,0.138,0.8155,-0.5556,0.1622,0.8155,-0.5556,0.1622,0.6935,-0.7071,0.138,0.6533,-0.7071,0.2706,0.8155,-0.5556,0.1622,0.6533,-0.7071,0.2706,0.7682,-0.5556,0.3182,0.7682,-0.5556,0.3182,0.6533,-0.7071,0.2706,0.5879,-0.7071,0.3928,0.7682,-0.5556,0.3182,0.5879,-0.7071,0.3928,0.6913,-0.5556,0.4619,0.6913,-0.5556,0.4619,0.5879,-0.7071,0.3928,0.5,-0.7071,0.5,0.6913,-0.5556,0.4619,0.5,-0.7071,0.5,0.5879,-0.5556,0.5879,0.5879,-0.5556,0.5879,0.5,-0.7071,0.5,0.3928,-0.7071,0.5879,0.5879,-0.5556,0.5879,0.3928,-0.7071,0.5879,0.4619,-0.5556,0.6913,0.4619,-0.5556,0.6913,0.3928,-0.7071,0.5879,0.2706,-0.7071,0.6533,0.4619,-0.5556,0.6913,0.2706,-0.7071,0.6533,0.3182,-0.5556,0.7682,0.3182,-0.5556,0.7682,0.2706,-0.7071,0.6533,0.1379,-0.7071,0.6935,0.3182,-0.5556,0.7682,0.1379,-0.7071,0.6935,0.1622,-0.5556,0.8155,0.1622,-0.5556,0.8155,0.1379,-0.7071,0.6935,0.0,-0.7071,0.7071,0.1622,-0.5556,0.8155,0.0,-0.7071,0.7071,0.0,-0.5556,0.8315,0.0,-0.7071,0.7071,0.0,-0.8315,0.5556,-0.1084,-0.8315,0.5449,0.0,-0.7071,0.7071,-0.1084,-0.8315,0.5449,-0.1379,-0.7071,0.6935,-0.1379,-0.7071,0.6935,-0.1084,-0.8315,0.5449,-0.2126,-0.8315,0.5133,-0.1379,-0.7071,0.6935,-0.2126,-0.8315,0.5133,-0.2706,-0.7071,0.6533,-0.2706,-0.7071,0.6533,-0.2126,-0.8315,0.5133,-0.3087,-0.8315,0.4619,-0.2706,-0.7071,0.6533,-0.3087,-0.8315,0.4619,-0.3928,-0.7071,0.5879,-0.3928,-0.7071,0.5879,-0.3087,-0.8315,0.4619,-0.3928,-0.8315,0.3928,-0.3928,-0.7071,0.5879,-0.3928,-0.8315,0.3928,-0.5,-0.7071,0.5,-0.5,-0.7071,0.5,-0.3928,-0.8315,0.3928,-0.4619,-0.8315,0.3087,-0.5,-0.7071,0.5,-0.4619,-0.8315,0.3087,-0.5879,-0.7071,0.3928,-0.5879,-0.7071,0.3928,-0.4619,-0.8315,0.3087,-0.5133,-0.8315,0.2126,-0.5879,-0.7071,0.3928,-0.5133,-0.8315,0.2126,-0.6533,-0.7071,0.2706,-0.6533,-0.7071,0.2706,-0.5133,-0.8315,0.2126,-0.5449,-0.8315,0.1084,-0.6533,-0.7071,0.2706,-0.5449,-0.8315,0.1084,-0.6935,-0.7071,0.1379,-0.6935,-0.7071,0.1379,-0.5449,-0.8315,0.1084,-0.5556,-0.8315,0.0,-0.6935,-0.7071,0.1379,-0.5556,-0.8315,0.0,-0.7071,-0.7071,0.0,-0.7071,-0.7071,0.0,-0.5556,-0.8315,0.0,-0.5449,-0.8315,-0.1084,-0.7071,-0.7071,0.0,-0.5449,-0.8315,-0.1084,-0.6935,-0.7071,-0.1379,-0.6935,-0.7071,-0.1379,-0.5449,-0.8315,-0.1084,-0.5133,-0.8315,-0.2126,-0.6935,-0.7071,-0.1379,-0.5133,-0.8315,-0.2126,-0.6533,-0.7071,-0.2706,-0.6533,-0.7071,-0.2706,-0.5133,-0.8315,-0.2126,-0.4619,-0.8315,-0.3087,-0.6533,-0.7071,-0.2706,-0.4619,-0.8315,-0.3087,-0.5879,-0.7071,-0.3928,-0.5879,-0.7071,-0.3928,-0.4619,-0.8315,-0.3087,-0.3928,-0.8315,-0.3928,-0.5879,-0.7071,-0.3928,-0.3928,-0.8315,-0.3928,-0.5,-0.7071,-0.5,-0.5,-0.7071,-0.5,-0.3928,-0.8315,-0.3928,-0.3087,-0.8315,-0.4619,-0.5,-0.7071,-0.5,-0.3087,-0.8315,-0.4619,-0.3928,-0.7071,-0.5879,-0.3928,-0.7071,-0.5879,-0.3087,-0.8315,-0.4619,-0.2126,-0.8315,-0.5133,-0.3928,-0.7071,-0.5879,-0.2126,-0.8315,-0.5133,-0.2706,-0.7071,-0.6533,-0.2706,-0.7071,-0.6533,-0.2126,-0.8315,-0.5133,-0.1084,-0.8315,-0.5449,-0.2706,-0.7071,-0.6533,-0.1084,-0.8315,-0.5449,-0.1379,-0.7071,-0.6935,-0.1379,-0.7071,-0.6935,-0.1084,-0.8315,-0.5449,0.0,-0.8315,-0.5556,-0.1379,-0.7071,-0.6935,0.0,-0.8315,-0.5556,0.0,-0.7071,-0.7071,0.0,-0.7071,-0.7071,0.0,-0.8315,-0.5556,0.1084,-0.8315,-0.5449,0.0,-0.7071,-0.7071,0.1084,-0.8315,-0.5449,0.138,-0.7071,-0.6935,0.138,-0.7071,-0.6935,0.1084,-0.8315,-0.5449,0.2126,-0.8315,-0.5133,0.138,-0.7071,-0.6935,0.2126,-0.8315,-0.5133,0.2706,-0.7071,-0.6533,0.2706,-0.7071,-0.6533,0.2126,-0.8315,-0.5133,0.3087,-0.8315,-0.4619,0.2706,-0.7071,-0.6533,0.3087,-0.8315,-0.4619,0.3928,-0.7071,-0.5879,0.3928,-0.7071,-0.5879,0.3087,-0.8315,-0.4619,0.3928,-0.8315,-0.3928,0.3928,-0.7071,-0.5879,0.3928,-0.8315,-0.3928,0.5,-0.7071,-0.5,0.5,-0.7071,-0.5,0.3928,-0.8315,-0.3928,0.4619,-0.8315,-0.3087,0.5,-0.7071,-0.5,0.4619,-0.8315,-0.3087,0.5879,-0.7071,-0.3928,0.5879,-0.7071,-0.3928,0.4619,-0.8315,-0.3087,0.5133,-0.8315,-0.2126,0.5879,-0.7071,-0.3928,0.5133,-0.8315,-0.2126,0.6533,-0.7071,-0.2706,0.6533,-0.7071,-0.2706,0.5133,-0.8315,-0.2126,0.5449,-0.8315,-0.1084,0.6533,-0.7071,-0.2706,0.5449,-0.8315,-0.1084,0.6935,-0.7071,-0.1379,0.6935,-0.7071,-0.1379,0.5449,-0.8315,-0.1084,0.5556,-0.8315,0.0,0.6935,-0.7071,-0.1379,0.5556,-0.8315,0.0,0.7071,-0.7071,0.0,0.7071,-0.7071,0.0,0.5556,-0.8315,0.0,0.5449,-0.8315,0.1084,0.7071,-0.7071,0.0,0.5449,-0.8315,0.1084,0.6935,-0.7071,0.138,0.6935,-0.7071,0.138,0.5449,-0.8315,0.1084,0.5133,-0.8315,0.2126,0.6935,-0.7071,0.138,0.5133,-0.8315,0.2126,0.6533,-0.7071,0.2706,0.6533,-0.7071,0.2706,0.5133,-0.8315,0.2126,0.4619,-0.8315,0.3087,0.6533,-0.7071,0.2706,0.4619,-0.8315,0.3087,0.5879,-0.7071,0.3928,0.5879,-0.7071,0.3928,0.4619,-0.8315,0.3087,0.3928,-0.8315,0.3928,0.5879,-0.7071,0.3928,0.3928,-0.8315,0.3928,0.5,-0.7071,0.5,0.5,-0.7071,0.5,0.3928,-0.8315,0.3928,0.3087,-0.8315,0.4619,0.5,-0.7071,0.5,0.3087,-0.8315,0.4619,0.3928,-0.7071,0.5879,0.3928,-0.7071,0.5879,0.3087,-0.8315,0.4619,0.2126,-0.8315,0.5133,0.3928,-0.7071,0.5879,0.2126,-0.8315,0.5133,0.2706,-0.7071,0.6533,0.2706,-0.7071,0.6533,0.2126,-0.8315,0.5133,0.1084,-0.8315,0.5449,0.2706,-0.7071,0.6533,0.1084,-0.8315,0.5449,0.1379,-0.7071,0.6935,0.1379,-0.7071,0.6935,0.1084,-0.8315,0.5449,0.0,-0.8315,0.5556,0.1379,-0.7071,0.6935,0.0,-0.8315,0.5556,0.0,-0.7071,0.7071,0.0,-0.8315,0.5556,0.0,-0.9239,0.3827,-0.0747,-0.9239,0.3753,0.0,-0.8315,0.5556,-0.0747,-0.9239,0.3753,-0.1084,-0.8315,0.5449,-0.1084,-0.8315,0.5449,-0.0747,-0.9239,0.3753,-0.1464,-0.9239,0.3536,-0.1084,-0.8315,0.5449,-0.1464,-0.9239,0.3536,-0.2126,-0.8315,0.5133,-0.2126,-0.8315,0.5133,-0.1464,-0.9239,0.3536,-0.2126,-0.9239,0.3182,-0.2126,-0.8315,0.5133,-0.2126,-0.9239,0.3182,-0.3087,-0.8315,0.4619,-0.3087,-0.8315,0.4619,-0.2126,-0.9239,0.3182,-0.2706,-0.9239,0.2706,-0.3087,-0.8315,0.4619,-0.2706,-0.9239,0.2706,-0.3928,-0.8315,0.3928,-0.3928,-0.8315,0.3928,-0.2706,-0.9239,0.2706,-0.3182,-0.9239,0.2126,-0.3928,-0.8315,0.3928,-0.3182,-0.9239,0.2126,-0.4619,-0.8315,0.3087,-0.4619,-0.8315,0.3087,-0.3182,-0.9239,0.2126,-0.3536,-0.9239,0.1464,-0.4619,-0.8315,0.3087,-0.3536,-0.9239,0.1464,-0.5133,-0.8315,0.2126,-0.5133,-0.8315,0.2126,-0.3536,-0.9239,0.1464,-0.3753,-0.9239,0.0747,-0.5133,-0.8315,0.2126,-0.3753,-0.9239,0.0747,-0.5449,-0.8315,0.1084,-0.5449,-0.8315,0.1084,-0.3753,-0.9239,0.0747,-0.3827,-0.9239,0.0,-0.5449,-0.8315,0.1084,-0.3827,-0.9239,0.0,-0.5556,-0.8315,0.0,-0.5556,-0.8315,0.0,-0.3827,-0.9239,0.0,-0.3753,-0.9239,-0.0747,-0.5556,-0.8315,0.0,-0.3753,-0.9239,-0.0747,-0.5449,-0.8315,-0.1084,-0.5449,-0.8315,-0.1084,-0.3753,-0.9239,-0.0747,-0.3536,-0.9239,-0.1464,-0.5449,-0.8315,-0.1084,-0.3536,-0.9239,-0.1464,-0.5133,-0.8315,-0.2126,-0.5133,-0.8315,-0.2126,-0.3536,-0.9239,-0.1464,-0.3182,-0.9239,-0.2126,-0.5133,-0.8315,-0.2126,-0.3182,-0.9239,-0.2126,-0.4619,-0.8315,-0.3087,-0.4619,-0.8315,-0.3087,-0.3182,-0.9239,-0.2126,-0.2706,-0.9239,-0.2706,-0.4619,-0.8315,-0.3087,-0.2706,-0.9239,-0.2706,-0.3928,-0.8315,-0.3928,-0.3928,-0.8315,-0.3928,-0.2706,-0.9239,-0.2706,-0.2126,-0.9239,-0.3182,-0.3928,-0.8315,-0.3928,-0.2126,-0.9239,-0.3182,-0.3087,-0.8315,-0.4619,-0.3087,-0.8315,-0.4619,-0.2126,-0.9239,-0.3182,-0.1464,-0.9239,-0.3536,-0.3087,-0.8315,-0.4619,-0.1464,-0.9239,-0.3536,-0.2126,-0.8315,-0.5133,-0.2126,-0.8315,-0.5133,-0.1464,-0.9239,-0.3536,-0.0747,-0.9239,-0.3753,-0.2126,-0.8315,-0.5133,-0.0747,-0.9239,-0.3753,-0.1084,-0.8315,-0.5449,-0.1084,-0.8315,-0.5449,-0.0747,-0.9239,-0.3753,0.0,-0.9239,-0.3827,-0.1084,-0.8315,-0.5449,0.0,-0.9239,-0.3827,0.0,-0.8315,-0.5556,0.0,-0.8315,-0.5556,0.0,-0.9239,-0.3827,0.0747,-0.9239,-0.3753,0.0,-0.8315,-0.5556,0.0747,-0.9239,-0.3753,0.1084,-0.8315,-0.5449,0.1084,-0.8315,-0.5449,0.0747,-0.9239,-0.3753,0.1464,-0.9239,-0.3536,0.1084,-0.8315,-0.5449,0.1464,-0.9239,-0.3536,0.2126,-0.8315,-0.5133,0.2126,-0.8315,-0.5133,0.1464,-0.9239,-0.3536,0.2126,-0.9239,-0.3182,0.2126,-0.8315,-0.5133,0.2126,-0.9239,-0.3182,0.3087,-0.8315,-0.4619,0.3087,-0.8315,-0.4619,0.2126,-0.9239,-0.3182,0.2706,-0.9239,-0.2706,0.3087,-0.8315,-0.4619,0.2706,-0.9239,-0.2706,0.3928,-0.8315,-0.3928,0.3928,-0.8315,-0.3928,0.2706,-0.9239,-0.2706,0.3182,-0.9239,-0.2126,0.3928,-0.8315,-0.3928,0.3182,-0.9239,-0.2126,0.4619,-0.8315,-0.3087,0.4619,-0.8315,-0.3087,0.3182,-0.9239,-0.2126,0.3536,-0.9239,-0.1464,0.4619,-0.8315,-0.3087,0.3536,-0.9239,-0.1464,0.5133,-0.8315,-0.2126,0.5133,-0.8315,-0.2126,0.3536,-0.9239,-0.1464,0.3753,-0.9239,-0.0747,0.5133,-0.8315,-0.2126,0.3753,-0.9239,-0.0747,0.5449,-0.8315,-0.1084,0.5449,-0.8315,-0.1084,0.3753,-0.9239,-0.0747,0.3827,-0.9239,0.0,0.5449,-0.8315,-0.1084,0.3827,-0.9239,0.0,0.5556,-0.8315,0.0,0.5556,-0.8315,0.0,0.3827,-0.9239,0.0,0.3753,-0.9239,0.0747,0.5556,-0.8315,0.0,0.3753,-0.9239,0.0747,0.5449,-0.8315,0.1084,0.5449,-0.8315,0.1084,0.3753,-0.9239,0.0747,0.3536,-0.9239,0.1464,0.5449,-0.8315,0.1084,0.3536,-0.9239,0.1464,0.5133,-0.8315,0.2126,0.5133,-0.8315,0.2126,0.3536,-0.9239,0.1464,0.3182,-0.9239,0.2126,0.5133,-0.8315,0.2126,0.3182,-0.9239,0.2126,0.4619,-0.8315,0.3087,0.4619,-0.8315,0.3087,0.3182,-0.9239,0.2126,0.2706,-0.9239,0.2706,0.4619,-0.8315,0.3087,0.2706,-0.9239,0.2706,0.3928,-0.8315,0.3928,0.3928,-0.8315,0.3928,0.2706,-0.9239,0.2706,0.2126,-0.9239,0.3182,0.3928,-0.8315,0.3928,0.2126,-0.9239,0.3182,0.3087,-0.8315,0.4619,0.3087,-0.8315,0.4619,0.2126,-0.9239,0.3182,0.1464,-0.9239,0.3536,0.3087,-0.8315,0.4619,0.1464,-0.9239,0.3536,0.2126,-0.8315,0.5133,0.2126,-0.8315,0.5133,0.1464,-0.9239,0.3536,0.0747,-0.9239,0.3753,0.2126,-0.8315,0.5133,0.0747,-0.9239,0.3753,0.1084,-0.8315,0.5449,0.1084,-0.8315,0.5449,0.0747,-0.9239,0.3753,0.0,-0.9239,0.3827,0.1084,-0.8315,0.5449,0.0,-0.9239,0.3827,0.0,-0.8315,0.5556,0.0,-0.9239,0.3827,0.0,-0.9808,0.1951,-0.0381,-0.9808,0.1913,0.0,-0.9239,0.3827,-0.0381,-0.9808,0.1913,-0.0747,-0.9239,0.3753,-0.0747,-0.9239,0.3753,-0.0381,-0.9808,0.1913,-0.0747,-0.9808,0.1802,-0.0747,-0.9239,0.3753,-0.0747,-0.9808,0.1802,-0.1464,-0.9239,0.3536,-0.1464,-0.9239,0.3536,-0.0747,-0.9808,0.1802,-0.1084,-0.9808,0.1622,-0.1464,-0.9239,0.3536,-0.1084,-0.9808,0.1622,-0.2126,-0.9239,0.3182,-0.2126,-0.9239,0.3182,-0.1084,-0.9808,0.1622,-0.1379,-0.9808,0.1379,-0.2126,-0.9239,0.3182,-0.1379,-0.9808,0.1379,-0.2706,-0.9239,0.2706,-0.2706,-0.9239,0.2706,-0.1379,-0.9808,0.1379,-0.1622,-0.9808,0.1084,-0.2706,-0.9239,0.2706,-0.1622,-0.9808,0.1084,-0.3182,-0.9239,0.2126,-0.3182,-0.9239,0.2126,-0.1622,-0.9808,0.1084,-0.1802,-0.9808,0.0747,-0.3182,-0.9239,0.2126,-0.1802,-0.9808,0.0747,-0.3536,-0.9239,0.1464,-0.3536,-0.9239,0.1464,-0.1802,-0.9808,0.0747,-0.1913,-0.9808,0.0381,-0.3536,-0.9239,0.1464,-0.1913,-0.9808,0.0381,-0.3753,-0.9239,0.0747,-0.3753,-0.9239,0.0747,-0.1913,-0.9808,0.0381,-0.1951,-0.9808,0.0,-0.3753,-0.9239,0.0747,-0.1951,-0.9808,0.0,-0.3827,-0.9239,0.0,-0.3827,-0.9239,0.0,-0.1951,-0.9808,0.0,-0.1913,-0.9808,-0.0381,-0.3827,-0.9239,0.0,-0.1913,-0.9808,-0.0381,-0.3753,-0.9239,-0.0747,-0.3753,-0.9239,-0.0747,-0.1913,-0.9808,-0.0381,-0.1802,-0.9808,-0.0747,-0.3753,-0.9239,-0.0747,-0.1802,-0.9808,-0.0747,-0.3536,-0.9239,-0.1464,-0.3536,-0.9239,-0.1464,-0.1802,-0.9808,-0.0747,-0.1622,-0.9808,-0.1084,-0.3536,-0.9239,-0.1464,-0.1622,-0.9808,-0.1084,-0.3182,-0.9239,-0.2126,-0.3182,-0.9239,-0.2126,-0.1622,-0.9808,-0.1084,-0.1379,-0.9808,-0.1379,-0.3182,-0.9239,-0.2126,-0.1379,-0.9808,-0.1379,-0.2706,-0.9239,-0.2706,-0.2706,-0.9239,-0.2706,-0.1379,-0.9808,-0.1379,-0.1084,-0.9808,-0.1622,-0.2706,-0.9239,-0.2706,-0.1084,-0.9808,-0.1622,-0.2126,-0.9239,-0.3182,-0.2126,-0.9239,-0.3182,-0.1084,-0.9808,-0.1622,-0.0747,-0.9808,-0.1802,-0.2126,-0.9239,-0.3182,-0.0747,-0.9808,-0.1802,-0.1464,-0.9239,-0.3536,-0.1464,-0.9239,-0.3536,-0.0747,-0.9808,-0.1802,-0.0381,-0.9808,-0.1913,-0.1464,-0.9239,-0.3536,-0.0381,-0.9808,-0.1913,-0.0747,-0.9239,-0.3753,-0.0747,-0.9239,-0.3753,-0.0381,-0.9808,-0.1913,0.0,-0.9808,-0.1951,-0.0747,-0.9239,-0.3753,0.0,-0.9808,-0.1951,0.0,-0.9239,-0.3827,0.0,-0.9239,-0.3827,0.0,-0.9808,-0.1951,0.0381,-0.9808,-0.1913,0.0,-0.9239,-0.3827,0.0381,-0.9808,-0.1913,0.0747,-0.9239,-0.3753,0.0747,-0.9239,-0.3753,0.0381,-0.9808,-0.1913,0.0747,-0.9808,-0.1802,0.0747,-0.9239,-0.3753,0.0747,-0.9808,-0.1802,0.1464,-0.9239,-0.3536,0.1464,-0.9239,-0.3536,0.0747,-0.9808,-0.1802,0.1084,-0.9808,-0.1622,0.1464,-0.9239,-0.3536,0.1084,-0.9808,-0.1622,0.2126,-0.9239,-0.3182,0.2126,-0.9239,-0.3182,0.1084,-0.9808,-0.1622,0.1379,-0.9808,-0.1379,0.2126,-0.9239,-0.3182,0.1379,-0.9808,-0.1379,0.2706,-0.9239,-0.2706,0.2706,-0.9239,-0.2706,0.1379,-0.9808,-0.1379,0.1622,-0.9808,-0.1084,0.2706,-0.9239,-0.2706,0.1622,-0.9808,-0.1084,0.3182,-0.9239,-0.2126,0.3182,-0.9239,-0.2126,0.1622,-0.9808,-0.1084,0.1802,-0.9808,-0.0747,0.3182,-0.9239,-0.2126,0.1802,-0.9808,-0.0747,0.3536,-0.9239,-0.1464,0.3536,-0.9239,-0.1464,0.1802,-0.9808,-0.0747,0.1913,-0.9808,-0.0381,0.3536,-0.9239,-0.1464,0.1913,-0.9808,-0.0381,0.3753,-0.9239,-0.0747,0.3753,-0.9239,-0.0747,0.1913,-0.9808,-0.0381,0.1951,-0.9808,0.0,0.3753,-0.9239,-0.0747,0.1951,-0.9808,0.0,0.3827,-0.9239,0.0,0.3827,-0.9239,0.0,0.1951,-0.9808,0.0,0.1913,-0.9808,0.0381,0.3827,-0.9239,0.0,0.1913,-0.9808,0.0381,0.3753,-0.9239,0.0747,0.3753,-0.9239,0.0747,0.1913,-0.9808,0.0381,0.1802,-0.9808,0.0747,0.3753,-0.9239,0.0747,0.1802,-0.9808,0.0747,0.3536,-0.9239,0.1464,0.3536,-0.9239,0.1464,0.1802,-0.9808,0.0747,0.1622,-0.9808,0.1084,0.3536,-0.9239,0.1464,0.1622,-0.9808,0.1084,0.3182,-0.9239,0.2126,0.3182,-0.9239,0.2126,0.1622,-0.9808,0.1084,0.1379,-0.9808,0.1379,0.3182,-0.9239,0.2126,0.1379,-0.9808,0.1379,0.2706,-0.9239,0.2706,0.2706,-0.9239,0.2706,0.1379,-0.9808,0.1379,0.1084,-0.9808,0.1622,0.2706,-0.9239,0.2706,0.1084,-0.9808,0.1622,0.2126,-0.9239,0.3182,0.2126,-0.9239,0.3182,0.1084,-0.9808,0.1622,0.0747,-0.9808,0.1802,0.2126,-0.9239,0.3182,0.0747,-0.9808,0.1802,0.1464,-0.9239,0.3536,0.1464,-0.9239,0.3536,0.0747,-0.9808,0.1802,0.0381,-0.9808,0.1913,0.1464,-0.9239,0.3536,0.0381,-0.9808,0.1913,0.0747,-0.9239,0.3753,0.0747,-0.9239,0.3753,0.0381,-0.9808,0.1913,0.0,-0.9808,0.1951,0.0747,-0.9239,0.3753,0.0,-0.9808,0.1951,0.0,-0.9239,0.3827,0.0,-1.0,0.0,-0.0381,-0.9808,0.1913,0.0,-0.9808,0.1951,0.0,-1.0,0.0,-0.0747,-0.9808,0.1802,-0.0381,-0.9808,0.1913,0.0,-1.0,0.0,-0.1084,-0.9808,0.1622,-0.0747,-0.9808,0.1802,0.0,-1.0,0.0,-0.1379,-0.9808,0.1379,-0.1084,-0.9808,0.1622,0.0,-1.0,0.0,-0.1622,-0.9808,0.1084,-0.1379,-0.9808,0.1379,0.0,-1.0,0.0,-0.1802,-0.9808,0.0747,-0.1622,-0.9808,0.1084,0.0,-1.0,0.0,-0.1913,-0.9808,0.0381,-0.1802,-0.9808,0.0747,0.0,-1.0,0.0,-0.1951,-0.9808,0.0,-0.1913,-0.9808,0.0381,0.0,-1.0,0.0,-0.1913,-0.9808,-0.0381,-0.1951,-0.9808,0.0,0.0,-1.0,0.0,-0.1802,-0.9808,-0.0747,-0.1913,-0.9808,-0.0381,0.0,-1.0,0.0,-0.1622,-0.9808,-0.1084,-0.1802,-0.9808,-0.0747,0.0,-1.0,0.0,-0.1379,-0.9808,-0.1379,-0.1622,-0.9808,-0.1084,0.0,-1.0,0.0,-0.1084,-0.9808,-0.1622,-0.1379,-0.9808,-0.1379,0.0,-1.0,0.0,-0.0747,-0.9808,-0.1802,-0.1084,-0.9808,-0.1622,0.0,-1.0,0.0,-0.0381,-0.9808,-0.1913,-0.0747,-0.9808,-0.1802,0.0,-1.0,0.0,0.0,-0.9808,-0.1951,-0.0381,-0.9808,-0.1913,0.0,-1.0,0.0,0.0381,-0.9808,-0.1913,0.0,-0.9808,-0.1951,0.0,-1.0,0.0,0.0747,-0.9808,-0.1802,0.0381,-0.9808,-0.1913,0.0,-1.0,0.0,0.1084,-0.9808,-0.1622,0.0747,-0.9808,-0.1802,0.0,-1.0,0.0,0.1379,-0.9808,-0.1379,0.1084,-0.9808,-0.1622,0.0,-1.0,0.0,0.1622,-0.9808,-0.1084,0.1379,-0.9808,-0.1379,0.0,-1.0,0.0,0.1802,-0.9808,-0.0747,0.1622,-0.9808,-0.1084,0.0,-1.0,0.0,0.1913,-0.9808,-0.0381,0.1802,-0.9808,-0.0747,0.0,-1.0,0.0,0.1951,-0.9808,0.0,0.1913,-0.9808,-0.0381,0.0,-1.0,0.0,0.1913,-0.9808,0.0381,0.1951,-0.9808,0.0,0.0,-1.0,0.0,0.1802,-0.9808,0.0747,0.1913,-0.9808,0.0381,0.0,-1.0,0.0,0.1622,-0.9808,0.1084,0.1802,-0.9808,0.0747,0.0,-1.0,0.0,0.1379,-0.9808,0.1379,0.1622,-0.9808,0.1084,0.0,-1.0,0.0,0.1084,-0.9808,0.1622,0.1379,-0.9808,0.1379,0.0,-1.0,0.0,0.0747,-0.9808,0.1802,0.1084,-0.9808,0.1622,0.0,-1.0,0.0,0.0381,-0.9808,0.1913,0.0747,-0.9808,0.1802,0.0,-1.0,0.0,0.0,-0.9808,0.1951,0.0381,-0.9808,0.1913],"normals":[0.0,1.0,0.0,0.0,0.9796,0.201,-0.0392,0.9796,0.1971,0.0,1.0,0.0,-0.0392,0.9796,0.1971,-0.0769,0.9796,0.1857,0.0,1.0,0.0,-0.0769,0.9796,0.1857,-0.1117,0.9796,0.1671,0.0,1.0,0.0,-0.1117,0.9796,0.1671,-0.1421,0.9796,0.1421,0.0,1.0,0.0,-0.1421,0.9796,0.1421,-0.1671,0.9796,0.1117,0.0,1.0,0.0,-0.1671,0.9796,0.1117,-0.1857,0.9796,0.0769,0.0,1.0,0.0,-0.1857,0.9796,0.0769,-0.1971,0.9796,0.0392,0.0,1.0,0.0,-0.1971,0.9796,0.0392,-0.201,0.9796,0.0,0.0,1.0,0.0,-0.201,0.9796,0.0,-0.1971,0.9796,-0.0392,0.0,1.0,0.0,-0.1971,0.9796,-0.0392,-0.1857,0.9796,-0.0769,0.0,1.0,0.0,-0.1857,0.9796,-0.0769,-0.1671,0.9796,-0.1117,0.0,1.0,0.0,-0.1671,0.9796,-0.1117,-0.1421,0.9796,-0.1421,0.0,1.0,0.0,-0.1421,0.9796,-0.1421,-0.1117,0.9796,-0.1671,0.0,1.0,0.0,-0.1117,0.9796,-0.1671,-0.0769,0.9796,-0.1857,0.0,1.0,0.0,-0.0769,0.9796,-0.1857,-0.0392,0.9796,-0.1971,0.0,1.0,0.0,-0.0392,0.9796,-0.1971,0.0,0.9796,-0.201,0.0,1.0,0.0,0.0,0.9796,-0.201,0.0392,0.9796,-0.1971,0.0,1.0,0.0,0.0392,0.9796,-0.1971,0.0769,0.9796,-0.1857,0.0,1.0,0.0,0.0769,0.9796,-0.1857,0.1117,0.9796,-0.1671,0.0,1.0,0.0,0.1117,0.9796,-0.1671,0.1421,0.9796,-0.1421,0.0,1.0,0.0,0.1421,0.9796,-0.1421,0.1671,0.9796,-0.1117,0.0,1.0,0.0,0.1671,0.9796,-0.1117,0.1857,0.9796,-0.0769,0.0,1.0,0.0,0.1857,0.9796,-0.0769,0.1971,0.9796,-0.0392,0.0,1.0,0.0,0.1971,0.9796,-0.0392,0.201,0.9796,0.0,0.0,1.0,0.0,0.201,0.9796,0.0,0.1971,0.9796,0.0392,0.0,1.0,0.0,0.1971,0.9796,0.0392,0.1857,0.9796,0.0769,0.0,1.0,0.0,0.1857,0.9796,0.0769,0.1671,0.9796,0.1117,0.0,1.0,0.0,0.1671,0.9796,0.1117,0.1421,0.9796,0.1421,0.0,1.0,0.0,0.1421,0.9796,0.1421,0.1117,0.9796,0.1671,0.0,1.0,0.0,0.1117,0.9796,0.1671,0.0769,0.9796,0.1857,0.0,1.0,0.0,0.0769,0.9796,0.1857,0.0392,0.9796,0.1971,0.0,1.0,0.0,0.0392,0.9796,0.1971,0.0,0.9796,0.201,0.0,0.9796,0.201,0.0,0.9217,0.3879,-0.0757,0.9217,0.3804,0.0,0.9796,0.201,-0.0757,0.9217,0.3804,-0.0392,0.9796,0.1971,-0.0392,0.9796,0.1971,-0.0757,0.9217,0.3804,-0.1484,0.9217,0.3584,-0.0392,0.9796,0.1971,-0.1484,0.9217,0.3584,-0.0769,0.9796,0.1857,-0.0769,0.9796,0.1857,-0.1484,0.9217,0.3584,-0.2155,0.9217,0.3225,-0.0769,0.9796,0.1857,-0.2155,0.9217,0.3225,-0.1117,0.9796,0.1671,-0.1117,0.9796,0.1671,-0.2155,0.9217,0.3225,-0.2743,0.9217,0.2743,-0.1117,0.9796,0.1671,-0.2743,0.9217,0.2743,-0.1421,0.9796,0.1421,-0.1421,0.9796,0.1421,-0.2743,0.9217,0.2743,-0.3225,0.9217,0.2155,-0.1421,0.9796,0.1421,-0.3225,0.9217,0.2155,-0.1671,0.9796,0.1117,-0.1671,0.9796,0.1117,-0.3225,0.9217,0.2155,-0.3584,0.9217,0.1484,-0.1671,0.9796,0.1117,-0.3584,0.9217,0.1484,-0.1857,0.9796,0.0769,-0.1857,0.9796,0.0769,-0.3584,0.9217,0.1484,-0.3804,0.9217,0.0757,-0.1857,0.9796,0.0769,-0.3804,0.9217,0.0757,-0.1971,0.9796,0.0392,-0.1971,0.9796,0.0392,-0.3804,0.9217,0.0757,-0.3879,0.9217,0.0,-0.1971,0.9796,0.0392,-0.3879,0.9217,0.0,-0.201,0.9796,0.0,-0.201,0.9796,0.0,-0.3879,0.9217,0.0,-0.3804,0.9217,-0.0757,-0.201,0.9796,0.0,-0.3804,0.9217,-0.0757,-0.1971,0.9796,-0.0392,-0.1971,0.9796,-0.0392,-0.3804,0.9217,-0.0757,-0.3584,0.9217,-0.1484,-0.1971,0.9796,-0.0392,-0.3584,0.9217,-0.1484,-0.1857,0.9796,-0.0769,-0.1857,0.9796,-0.0769,-0.3584,0.9217,-0.1484,-0.3225,0.9217,-0.2155,-0.1857,0.9796,-0.0769,-0.3225,0.9217,-0.2155,-0.1671,0.9796,-0.1117,-0.1671,0.9796,-0.1117,-0.3225,0.9217,-0.2155,-0.2743,0.9217,-0.2743,-0.1671,0.9796,-0.1117,-0.2743,0.9217,-0.2743,-0.1421,0.9796,-0.1421,-0.1421,0.9796,-0.1421,-0.2743,0.9217,-0.2743,-0.2155,0.9217,-0.3225,-0.1421,0.9796,-0.1421,-0.2155,0.9217,-0.3225,-0.1117,0.9796,-0.1671,-0.1117,0.9796,-0.1671,-0.2155,0.9217,-0.3225,-0.1484,0.9217,-0.3584,-0.1117,0.9796,-0.1671,-0.1484,0.9217,-0.3584,-0.0769,0.9796,-0.1857,-0.0769,0.9796,-0.1857,-0.1484,0.9217,-0.3584,-0.0757,0.9217,-0.3804,-0.0769,0.9796,-0.1857,-0.0757,0.9217,-0.3804,-0.0392,0.9796,-0.1971,-0.0392,0.9796,-0.1971,-0.0757,0.9217,-0.3804,0.0,0.9217,-0.3879,-0.0392,0.9796,-0.1971,0.0,0.9217,-0.3879,0.0,0.9796,-0.201,0.0,0.9796,-0.201,0.0,0.9217,-0.3879,0.0757,0.9217,-0.3804,0.0,0.9796,-0.201,0.0757,0.9217,-0.3804,0.0392,0.9796,-0.1971,0.0392,0.9796,-0.1971,0.0757,0.9217,-0.3804,0.1484,0.9217,-0.3584,0.0392,0.9796,-0.1971,0.1484,0.9217,-0.3584,0.0769,0.9796,-0.1857,0.0769,0.9796,-0.1857,0.1484,0.9217,-0.3584,0.2155,0.9217,-0.3225,0.0769,0.9796,-0.1857,0.2155,0.9217,-0.3225,0.1117,0.9796,-0.1671,0.1117,0.9796,-0.1671,0.2155,0.9217,-0.3225,0.2743,0.9217,-0.2743,0.1117,0.9796,-0.1671,0.2743,0.9217,-0.2743,0.1421,0.9796,-0.1421,0.1421,0.9796,-0.1421,0.2743,0.9217,-0.2743,0.3225,0.9217,-0.2155,0.1421,0.9796,-0.1421,0.3225,0.9217,-0.2155,0.1671,0.9796,-0.1117,0.1671,0.9796,-0.1117,0.3225,0.9217,-0.2155,0.3584,0.9217,-0.1484,0.1671,0.9796,-0.1117,0.3584,0.9217,-0.1484,0.1857,0.9796,-0.0769,0.1857,0.9796,-0.0769,0.3584,0.9217,-0.1484,0.3804,0.9217,-0.0757,0.1857,0.9796,-0.0769,0.3804,0.9217,-0.0757,0.1971,0.9796,-0.0392,0.1971,0.9796,-0.0392,0.3804,0.9217,-0.0757,0.3879,0.9217,0.0,0.1971,0.9796,-0.0392,0.3879,0.9217,0.0,0.201,0.9796,0.0,0.201,0.9796,0.0,0.3879,0.9217,0.0,0.3804,0.9217,0.0757,0.201,0.9796,0.0,0.3804,0.9217,0.0757,0.1971,0.9796,0.0392,0.1971,0.9796,0.0392,0.3804,0.9217,0.0757,0.3584,0.9217,0.1484,0.1971,0.9796,0.0392,0.3584,0.9217,0.1484,0.1857,0.9796,0.0769,0.1857,0.9796,0.0769,0.3584,0.9217,0.1484,0.3225,0.9217,0.2155,0.1857,0.9796,0.0769,0.3225,0.9217,0.2155,0.1671,0.9796,0.1117,0.1671,0.9796,0.1117,0.3225,0.9217,0.2155,0.2743,0.9217,0.2743,0.1671,0.9796,0.1117,0.2743,0.9217,0.2743,0.1421,0.9796,0.1421,0.1421,0.9796,0.1421,0.2743,0.9217,0.2743,0.2155,0.9217,0.3225,0.1421,0.9796,0.1421,0.2155,0.9217,0.3225,0.1117,0.9796,0.1671,0.1117,0.9796,0.1671,0.2155,0.9217,0.3225,0.1484,0.9217,0.3584,0.1117,0.9796,0.1671,0.1484,0.9217,0.3584,0.0769,0.9796,0.1857,0.0769,0.9796,0.1857,0.1484,0.9217,0.3584,0.0757,0.9217,0.3804,0.0769,0.9796,0.1857,0.0757,0.9217,0.3804,0.0392,0.9796,0.1971,0.0392,0.9796,0.1971,0.0757,0.9217,0.3804,0.0,0.9217,0.3879,0.0392,0.9796,0.1971,0.0,0.9217,0.3879,0.0,0.9796,0.201,0.0,0.9217,0.3879,0.0,0.8286,0.5598,-0.1092,0.8286,0.549,0.0,0.9217,0.3879,-0.1092,0.8286,0.549,-0.0757,0.9217,0.3804,-0.0757,0.9217,0.3804,-0.1092,0.8286,0.549,-0.2142,0.8286,0.5172,-0.0757,0.9217,0.3804,-0.2142,0.8286,0.5172,-0.1484,0.9217,0.3584,-0.1484,0.9217,0.3584,-0.2142,0.8286,0.5172,-0.311,0.8286,0.4654,-0.1484,0.9217,0.3584,-0.311,0.8286,0.4654,-0.2155,0.9217,0.3225,-0.2155,0.9217,0.3225,-0.311,0.8286,0.4654,-0.3958,0.8286,0.3958,-0.2155,0.9217,0.3225,-0.3958,0.8286,0.3958,-0.2743,0.9217,0.2743,-0.2743,0.9217,0.2743,-0.3958,0.8286,0.3958,-0.4654,0.8286,0.311,-0.2743,0.9217,0.2743,-0.4654,0.8286,0.311,-0.3225,0.9217,0.2155,-0.3225,0.9217,0.2155,-0.4654,0.8286,0.311,-0.5172,0.8286,0.2142,-0.3225,0.9217,0.2155,-0.5172,0.8286,0.2142,-0.3584,0.9217,0.1484,-0.3584,0.9217,0.1484,-0.5172,0.8286,0.2142,-0.549,0.8286,0.1092,-0.3584,0.9217,0.1484,-0.549,0.8286,0.1092,-0.3804,0.9217,0.0757,-0.3804,0.9217,0.0757,-0.549,0.8286,0.1092,-0.5598,0.8286,0.0,-0.3804,0.9217,0.0757,-0.5598,0.8286,0.0,-0.3879,0.9217,0.0,-0.3879,0.9217,0.0,-0.5598,0.8286,0.0,-0.549,0.8286,-0.1092,-0.3879,0.9217,0.0,-0.549,0.8286,-0.1092,-0.3804,0.9217,-0.0757,-0.3804,0.9217,-0.0757,-0.549,0.8286,-0.1092,-0.5172,0.8286,-0.2142,-0.3804,0.9217,-0.0757,-0.5172,0.8286,-0.2142,-0.3584,0.9217,-0.1484,-0.3584,0.9217,-0.1484,-0.5172,0.8286,-0.2142,-0.4654,0.8286,-0.311,-0.3584,0.9217,-0.1484,-0.4654,0.8286,-0.311,-0.3225,0.9217,-0.2155,-0.3225,0.9217,-0.2155,-0.4654,0.8286,-0.311,-0.3958,0.8286,-0.3958,-0.3225,0.9217,-0.2155,-0.3958,0.8286,-0.3958,-0.2743,0.9217,-0.2743,-0.2743,0.9217,-0.2743,-0.3958,0.8286,-0.3958,-0.311,0.8286,-0.4654,-0.2743,0.9217,-0.2743,-0.311,0.8286,-0.4654,-0.2155,0.9217,-0.3225,-0.2155,0.9217,-0.3225,-0.311,0.8286,-0.4654,-0.2142,0.8286,-0.5172,-0.2155,0.9217,-0.3225,-0.2142,0.8286,-0.5172,-0.1484,0.9217,-0.3584,-0.1484,0.9217,-0.3584,-0.2142,0.8286,-0.5172,-0.1092,0.8286,-0.549,-0.1484,0.9217,-0.3584,-0.1092,0.8286,-0.549,-0.0757,0.9217,-0.3804,-0.0757,0.9217,-0.3804,-0.1092,0.8286,-0.549,0.0,0.8286,-0.5598,-0.0757,0.9217,-0.3804,0.0,0.8286,-0.5598,0.0,0.9217,-0.3879,0.0,0.9217,-0.3879,0.0,0.8286,-0.5598,0.1092,0.8286,-0.549,0.0,0.9217,-0.3879,0.1092,0.8286,-0.549,0.0757,0.9217,-0.3804,0.0757,0.9217,-0.3804,0.1092,0.8286,-0.549,0.2142,0.8286,-0.5172,0.0757,0.9217,-0.3804,0.2142,0.8286,-0.5172,0.1484,0.9217,-0.3584,0.1484,0.9217,-0.3584,0.2142,0.8286,-0.5172,0.311,0.8286,-0.4654,0.1484,0.9217,-0.3584,0.311,0.8286,-0.4654,0.2155,0.9217,-0.3225,0.2155,0.9217,-0.3225,0.311,0.8286,-0.4654,0.3958,0.8286,-0.3958,0.2155,0.9217,-0.3225,0.3958,0.8286,-0.3958,0.2743,0.9217,-0.2743,0.2743,0.9217,-0.2743,0.3958,0.8286,-0.3958,0.4654,0.8286,-0.311,0.2743,0.9217,-0.2743,0.4654,0.8286,-0.311,0.3225,0.9217,-0.2155,0.3225,0.9217,-0.2155,0.4654,0.8286,-0.311,0.5172,0.8286,-0.2142,0.3225,0.9217,-0.2155,0.5172,0.8286,-0.2142,0.3584,0.9217,-0.1484,0.3584,0.9217,-0.1484,0.5172,0.8286,-0.2142,0.549,0.8286,-0.1092,0.3584,0.9217,-0.1484,0.549,0.8286,-0.1092,0.3804,0.9217,-0.0757,0.3804,0.9217,-0.0757,0.549,0.8286,-0.1092,0.5598,0.8286,0.0,0.3804,0.9217,-0.0757,0.5598,0.8286,0.0,0.3879,0.9217,0.0,0.3879,0.9217,0.0,0.5598,0.8286,0.0,0.549,0.8286,0.1092,0.3879,0.9217,0.0,0.549,0.8286,0.1092,0.3804,0.9217,0.0757,0.3804,0.9217,0.0757,0.549,0.8286,0.1092,0.5172,0.8286,0.2142,0.3804,0.9217,0.0757,0.5172,0.8286,0.2142,0.3584,0.9217,0.1484,0.3584,0.9217,0.1484,0.5172,0.8286,0.2142,0.4654,0.8286,0.311,0.3584,0.9217,0.1484,0.4654,0.8286,0.311,0.3225,0.9217,0.2155,0.3225,0.9217,0.2155,0.4654,0.8286,0.311,0.3958,0.8286,0.3958,0.3225,0.9217,0.2155,0.3958,0.8286,0.3958,0.2743,0.9217,0.2743,0.2743,0.9217,0.2743,0.3958,0.8286,0.3958,0.311,0.8286,0.4654,0.2743,0.9217,0.2743,0.311,0.8286,0.4654,0.2155,0.9217,0.3225,0.2155,0.9217,0.3225,0.311,0.8286,0.4654,0.2142,0.8286,0.5172,0.2155,0.9217,0.3225,0.2142,0.8286,0.5172,0.1484,0.9217,0.3584,0.1484,0.9217,0.3584,0.2142,0.8286,0.5172,0.1092,0.8286,0.549,0.1484,0.9217,0.3584,0.1092,0.8286,0.549,0.0757,0.9217,0.3804,0.0757,0.9217,0.3804,0.1092,0.8286,0.549,0.0,0.8286,0.5598,0.0757,0.9217,0.3804,0.0,0.8286,0.5598,0.0,0.9217,0.3879,0.0,0.8286,0.5598,0.0,0.7041,0.7101,-0.1385,0.7041,0.6965,0.0,0.8286,0.5598,-0.1385,0.7041,0.6965,-0.1092,0.8286,0.549,-0.1092,0.8286,0.549,-0.1385,0.7041,0.6965,-0.2718,0.7041,0.6561,-0.1092,0.8286,0.549,-0.2718,0.7041,0.6561,-0.2142,0.8286,0.5172,-0.2142,0.8286,0.5172,-0.2718,0.7041,0.6561,-0.3945,0.7041,0.5905,-0.2142,0.8286,0.5172,-0.3945,0.7041,0.5905,-0.311,0.8286,0.4654,-0.311,0.8286,0.4654,-0.3945,0.7041,0.5905,-0.5021,0.7041,0.5021,-0.311,0.8286,0.4654,-0.5021,0.7041,0.5021,-0.3958,0.8286,0.3958,-0.3958,0.8286,0.3958,-0.5021,0.7041,0.5021,-0.5905,0.7041,0.3945,-0.3958,0.8286,0.3958,-0.5905,0.7041,0.3945,-0.4654,0.8286,0.311,-0.4654,0.8286,0.311,-0.5905,0.7041,0.3945,-0.6561,0.7041,0.2718,-0.4654,0.8286,0.311,-0.6561,0.7041,0.2718,-0.5172,0.8286,0.2142,-0.5172,0.8286,0.2142,-0.6561,0.7041,0.2718,-0.6965,0.7041,0.1385,-0.5172,0.8286,0.2142,-0.6965,0.7041,0.1385,-0.549,0.8286,0.1092,-0.549,0.8286,0.1092,-0.6965,0.7041,0.1385,-0.7101,0.7041,0.0,-0.549,0.8286,0.1092,-0.7101,0.7041,0.0,-0.5598,0.8286,0.0,-0.5598,0.8286,0.0,-0.7101,0.7041,0.0,-0.6965,0.7041,-0.1385,-0.5598,0.8286,0.0,-0.6965,0.7041,-0.1385,-0.549,0.8286,-0.1092,-0.549,0.8286,-0.1092,-0.6965,0.7041,-0.1385,-0.6561,0.7041,-0.2718,-0.549,0.8286,-0.1092,-0.6561,0.7041,-0.2718,-0.5172,0.8286,-0.2142,-0.5172,0.8286,-0.2142,-0.6561,0.7041,-0.2718,-0.5905,0.7041,-0.3945,-0.5172,0.8286,-0.2142,-0.5905,0.7041,-0.3945,-0.4654,0.8286,-0.311,-0.4654,0.8286,-0.311,-0.5905,0.7041,-0.3945,-0.5021,0.7041,-0.5021,-0.4654,0.8286,-0.311,-0.5021,0.7041,-0.5021,-0.3958,0.8286,-0.3958,-0.3958,0.8286,-0.3958,-0.5021,0.7041,-0.5021,-0.3945,0.7041,-0.5905,-0.3958,0.8286,-0.3958,-0.3945,0.7041,-0.5905,-0.311,0.8286,-0.4654,-0.311,0.8286,-0.4654,-0.3945,0.7041,-0.5905,-0.2718,0.7041,-0.6561,-0.311,0.8286,-0.4654,-0.2718,0.7041,-0.6561,-0.2142,0.8286,-0.5172,-0.2142,0.8286,-0.5172,-0.2718,0.7041,-0.6561,-0.1385,0.7041,-0.6965,-0.2142,0.8286,-0.5172,-0.1385,0.7041,-0.6965,-0.1092,0.8286,-0.549,-0.1092,0.8286,-0.549,-0.1385,0.7041,-0.6965,0.0,0.7041,-0.7101,-0.1092,0.8286,-0.549,0.0,0.7041,-0.7101,0.0,0.8286,-0.5598,0.0,0.8286,-0.5598,0.0,0.7041,-0.7101,0.1385,0.7041,-0.6965,0.0,0.8286,-0.5598,0.1385,0.7041,-0.6965,0.1092,0.8286,-0.549,0.1092,0.8286,-0.549,0.1385,0.7041,-0.6965,0.2718,0.7041,-0.6561,0.1092,0.8286,-0.549,0.2718,0.7041,-0.6561,0.2142,0.8286,-0.5172,0.2142,0.8286,-0.5172,0.2718,0.7041,-0.6561,0.3945,0.7041,-0.5905,0.2142,0.8286,-0.5172,0.3945,0.7041,-0.5905,0.311,0.8286,-0.4654,0.311,0.8286,-0.4654,0.3945,0.7041,-0.5905,0.5021,0.7041,-0.5021,0.311,0.8286,-0.4654,0.5021,0.7041,-0.5021,0.3958,0.8286,-0.3958,0.3958,0.8286,-0.3958,0.5021,0.7041,-0.5021,0.5905,0.7041,-0.3945,0.3958,0.8286,-0.3958,0.5905,0.7041,-0.3945,0.4654,0.8286,-0.311,0.4654,0.8286,-0.311,0.5905,0.7041,-0.3945,0.6561,0.7041,-0.2718,0.4654,0.8286,-0.311,0.6561,0.7041,-0.2718,0.5172,0.8286,-0.2142,0.5172,0.8286,-0.2142,0.6561,0.7041,-0.2718,0.6965,0.7041,-0.1385,0.5172,0.8286,-0.2142,0.6965,0.7041,-0.1385,0.549,0.8286,-0.1092,0.549,0.8286,-0.1092,0.6965,0.7041,-0.1385,0.7101,0.7041,0.0,0.549,0.8286,-0.1092,0.7101,0.7041,0.0,0.5598,0.8286,0.0,0.5598,0.8286,0.0,0.7101,0.7041,0.0,0.6965,0.7041,0.1385,0.5598,0.8286,0.0,0.6965,0.7041,0.1385,0.549,0.8286,0.1092,0.549,0.8286,0.1092,0.6965,0.7041,0.1385,0.6561,0.7041,0.2718,0.549,0.8286,0.1092,0.6561,0.7041,0.2718,0.5172,0.8286,0.2142,0.5172,0.8286,0.2142,0.6561,0.7041,0.2718,0.5905,0.7041,0.3945,0.5172,0.8286,0.2142,0.5905,0.7041,0.3945,0.4654,0.8286,0.311,0.4654,0.8286,0.311,0.5905,0.7041,0.3945,0.5021,0.7041,0.5021,0.4654,0.8286,0.311,0.5021,0.7041,0.5021,0.3958,0.8286,0.3958,0.3958,0.8286,0.3958,0.5021,0.7041,0.5021,0.3945,0.7041,0.5905,0.3958,0.8286,0.3958,0.3945,0.7041,0.5905,0.311,0.8286,0.4654,0.311,0.8286,0.4654,0.3945,0.7041,0.5905,0.2718,0.7041,0.6561,0.311,0.8286,0.4654,0.2718,0.7041,0.6561,0.2142,0.8286,0.5172,0.2142,0.8286,0.5172,0.2718,0.7041,0.6561,0.1385,0.7041,0.6965,0.2142,0.8286,0.5172,0.1385,0.7041,0.6965,0.1092,0.8286,0.549,0.1092,0.8286,0.549,0.1385,0.7041,0.6965,0.0,0.7041,0.7101,0.1092,0.8286,0.549,0.0,0.7041,0.7101,0.0,0.8286,0.5598,0.0,0.7041,0.7101,0.0,0.5528,0.8333,-0.1626,0.5528,0.8173,0.0,0.7041,0.7101,-0.1626,0.5528,0.8173,-0.1385,0.7041,0.6965,-0.1385,0.7041,0.6965,-0.1626,0.5528,0.8173,-0.3189,0.5528,0.7699,-0.1385,0.7041,0.6965,-0.3189,0.5528,0.7699,-0.2718,0.7041,0.6561,-0.2718,0.7041,0.6561,-0.3189,0.5528,0.7699,-0.463,0.5528,0.6929,-0.2718,0.7041,0.6561,-0.463,0.5528,0.6929,-0.3945,0.7041,0.5905,-0.3945,0.7041,0.5905,-0.463,0.5528,0.6929,-0.5893,0.5528,0.5893,-0.3945,0.7041,0.5905,-0.5893,0.5528,0.5893,-0.5021,0.7041,0.5021,-0.5021,0.7041,0.5021,-0.5893,0.5528,0.5893,-0.6929,0.5528,0.463,-0.5021,0.7041,0.5021,-0.6929,0.5528,0.463,-0.5905,0.7041,0.3945,-0.5905,0.7041,0.3945,-0.6929,0.5528,0.463,-0.7699,0.5528,0.3189,-0.5905,0.7041,0.3945,-0.7699,0.5528,0.3189,-0.6561,0.7041,0.2718,-0.6561,0.7041,0.2718,-0.7699,0.5528,0.3189,-0.8173,0.5528,0.1626,-0.6561,0.7041,0.2718,-0.8173,0.5528,0.1626,-0.6965,0.7041,0.1385,-0.6965,0.7041,0.1385,-0.8173,0.5528,0.1626,-0.8333,0.5528,0.0,-0.6965,0.7041,0.1385,-0.8333,0.5528,0.0,-0.7101,0.7041,0.0,-0.7101,0.7041,0.0,-0.8333,0.5528,0.0,-0.8173,0.5528,-0.1626,-0.7101,0.7041,0.0,-0.8173,0.5528,-0.1626,-0.6965,0.7041,-0.1385,-0.6965,0.7041,-0.1385,-0.8173,0.5528,-0.1626,-0.7699,0.5528,-0.3189,-0.6965,0.7041,-0.1385,-0.7699,0.5528,-0.3189,-0.6561,0.7041,-0.2718,-0.6561,0.7041,-0.2718,-0.7699,0.5528,-0.3189,-0.6929,0.5528,-0.463,-0.6561,0.7041,-0.2718,-0.6929,0.5528,-0.463,-0.5905,0.7041,-0.3945,-0.5905,0.7041,-0.3945,-0.6929,0.5528,-0.463,-0.5893,0.5528,-0.5893,-0.5905,0.7041,-0.3945,-0.5893,0.5528,-0.5893,-0.5021,0.7041,-0.5021,-0.5021,0.7041,-0.5021,-0.5893,0.5528,-0.5893,-0.463,0.5528,-0.6929,-0.5021,0.7041,-0.5021,-0.463,0.5528,-0.6929,-0.3945,0.7041,-0.5905,-0.3945,0.7041,-0.5905,-0.463,0.5528,-0.6929,-0.3189,0.5528,-0.7699,-0.3945,0.7041,-0.5905,-0.3189,0.5528,-0.7699,-0.2718,0.7041,-0.6561,-0.2718,0.7041,-0.6561,-0.3189,0.5528,-0.7699,-0.1626,0.5528,-0.8173,-0.2718,0.7041,-0.6561,-0.1626,0.5528,-0.8173,-0.1385,0.7041,-0.6965,-0.1385,0.7041,-0.6965,-0.1626,0.5528,-0.8173,0.0,0.5528,-0.8333,-0.1385,0.7041,-0.6965,0.0,0.5528,-0.8333,0.0,0.7041,-0.7101,0.0,0.7041,-0.7101,0.0,0.5528,-0.8333,0.1626,0.5528,-0.8173,0.0,0.7041,-0.7101,0.1626,0.5528,-0.8173,0.1385,0.7041,-0.6965,0.1385,0.7041,-0.6965,0.1626,0.5528,-0.8173,0.3189,0.5528,-0.7699,0.1385,0.7041,-0.6965,0.3189,0.5528,-0.7699,0.2718,0.7041,-0.6561,0.2718,0.7041,-0.6561,0.3189,0.5528,-0.7699,0.463,0.5528,-0.6929,0.2718,0.7041,-0.6561,0.463,0.5528,-0.6929,0.3945,0.7041,-0.5905,0.3945,0.7041,-0.5905,0.463,0.5528,-0.6929,0.5893,0.5528,-0.5893,0.3945,0.7041,-0.5905,0.5893,0.5528,-0.5893,0.5021,0.7041,-0.5021,0.5021,0.7041,-0.5021,0.5893,0.5528,-0.5893,0.6929,0.5528,-0.463,0.5021,0.7041,-0.5021,0.6929,0.5528,-0.463,0.5905,0.7041,-0.3945,0.5905,0.7041,-0.3945,0.6929,0.5528,-0.463,0.7699,0.5528,-0.3189,0.5905,0.7041,-0.3945,0.7699,0.5528,-0.3189,0.6561,0.7041,-0.2718,0.6561,0.7041,-0.2718,0.7699,0.5528,-0.3189,0.8173,0.5528,-0.1626,0.6561,0.7041,-0.2718,0.8173,0.5528,-0.1626,0.6965,0.7041,-0.1385,0.6965,0.7041,-0.1385,0.8173,0.5528,-0.1626,0.8333,0.5528,0.0,0.6965,0.7041,-0.1385,0.8333,0.5528,0.0,0.7101,0.7041,0.0,0.7101,0.7041,0.0,0.8333,0.5528,0.0,0.8173,0.5528,0.1626,0.7101,0.7041,0.0,0.8173,0.5528,0.1626,0.6965,0.7041,0.1385,0.6965,0.7041,0.1385,0.8173,0.5528,0.1626,0.7699,0.5528,0.3189,0.6965,0.7041,0.1385,0.7699,0.5528,0.3189,0.6561,0.7041,0.2718,0.6561,0.7041,0.2718,0.7699,0.5528,0.3189,0.6929,0.5528,0.463,0.6561,0.7041,0.2718,0.6929,0.5528,0.463,0.5905,0.7041,0.3945,0.5905,0.7041,0.3945,0.6929,0.5528,0.463,0.5893,0.5528,0.5893,0.5905,0.7041,0.3945,0.5893,0.5528,0.5893,0.5021,0.7041,0.5021,0.5021,0.7041,0.5021,0.5893,0.5528,0.5893,0.463,0.5528,0.6929,0.5021,0.7041,0.5021,0.463,0.5528,0.6929,0.3945,0.7041,0.5905,0.3945,0.7041,0.5905,0.463,0.5528,0.6929,0.3189,0.5528,0.7699,0.3945,0.7041,0.5905,0.3189,0.5528,0.7699,0.2718,0.7041,0.6561,0.2718,0.7041,0.6561,0.3189,0.5528,0.7699,0.1626,0.5528,0.8173,0.2718,0.7041,0.6561,0.1626,0.5528,0.8173,0.1385,0.7041,0.6965,0.1385,0.7041,0.6965,0.1626,0.5528,0.8173,0.0,0.5528,0.8333,0.1385,0.7041,0.6965,0.0,0.5528,0.8333,0.0,0.7041,0.7101,0.0,0.5528,0.8333,0.0,0.3805,0.9248,-0.1804,0.3805,0.907,0.0,0.5528,0.8333,-0.1804,0.3805,0.907,-0.1626,0.5528,0.8173,-0.1626,0.5528,0.8173,-0.1804,0.3805,0.907,-0.3539,0.3805,0.8544,-0.1626,0.5528,0.8173,-0.3539,0.3805,0.8544,-0.3189,0.5528,0.7699,-0.3189,0.5528,0.7699,-0.3539,0.3805,0.8544,-0.5138,0.3805,0.7689,-0.3189,0.5528,0.7699,-0.5138,0.3805,0.7689,-0.463,0.5528,0.6929,-0.463,0.5528,0.6929,-0.5138,0.3805,0.7689,-0.6539,0.3805,0.6539,-0.463,0.5528,0.6929,-0.6539,0.3805,0.6539,-0.5893,0.5528,0.5893,-0.5893,0.5528,0.5893,-0.6539,0.3805,0.6539,-0.7689,0.3805,0.5138,-0.5893,0.5528,0.5893,-0.7689,0.3805,0.5138,-0.6929,0.5528,0.463,-0.6929,0.5528,0.463,-0.7689,0.3805,0.5138,-0.8544,0.3805,0.3539,-0.6929,0.5528,0.463,-0.8544,0.3805,0.3539,-0.7699,0.5528,0.3189,-0.7699,0.5528,0.3189,-0.8544,0.3805,0.3539,-0.907,0.3805,0.1804,-0.7699,0.5528,0.3189,-0.907,0.3805,0.1804,-0.8173,0.5528,0.1626,-0.8173,0.5528,0.1626,-0.907,0.3805,0.1804,-0.9248,0.3805,0.0,-0.8173,0.5528,0.1626,-0.9248,0.3805,0.0,-0.8333,0.5528,0.0,-0.8333,0.5528,0.0,-0.9248,0.3805,0.0,-0.907,0.3805,-0.1804,-0.8333,0.5528,0.0,-0.907,0.3805,-0.1804,-0.8173,0.5528,-0.1626,-0.8173,0.5528,-0.1626,-0.907,0.3805,-0.1804,-0.8544,0.3805,-0.3539,-0.8173,0.5528,-0.1626,-0.8544,0.3805,-0.3539,-0.7699,0.5528,-0.3189,-0.7699,0.5528,-0.3189,-0.8544,0.3805,-0.3539,-0.7689,0.3805,-0.5138,-0.7699,0.5528,-0.3189,-0.7689,0.3805,-0.5138,-0.6929,0.5528,-0.463,-0.6929,0.5528,-0.463,-0.7689,0.3805,-0.5138,-0.6539,0.3805,-0.6539,-0.6929,0.5528,-0.463,-0.6539,0.3805,-0.6539,-0.5893,0.5528,-0.5893,-0.5893,0.5528,-0.5893,-0.6539,0.3805,-0.6539,-0.5138,0.3805,-0.7689,-0.5893,0.5528,-0.5893,-0.5138,0.3805,-0.7689,-0.463,0.5528,-0.6929,-0.463,0.5528,-0.6929,-0.5138,0.3805,-0.7689,-0.3539,0.3805,-0.8544,-0.463,0.5528,-0.6929,-0.3539,0.3805,-0.8544,-0.3189,0.5528,-0.7699,-0.3189,0.5528,-0.7699,-0.3539,0.3805,-0.8544,-0.1804,0.3805,-0.907,-0.3189,0.5528,-0.7699,-0.1804,0.3805,-0.907,-0.1626,0.5528,-0.8173,-0.1626,0.5528,-0.8173,-0.1804,0.3805,-0.907,0.0,0.3805,-0.9248,-0.1626,0.5528,-0.8173,0.0,0.3805,-0.9248,0.0,0.5528,-0.8333,0.0,0.5528,-0.8333,0.0,0.3805,-0.9248,0.1804,0.3805,-0.907,0.0,0.5528,-0.8333,0.1804,0.3805,-0.907,0.1626,0.5528,-0.8173,0.1626,0.5528,-0.8173,0.1804,0.3805,-0.907,0.3539,0.3805,-0.8544,0.1626,0.5528,-0.8173,0.3539,0.3805,-0.8544,0.3189,0.5528,-0.7699,0.3189,0.5528,-0.7699,0.3539,0.3805,-0.8544,0.5138,0.3805,-0.7689,0.3189,0.5528,-0.7699,0.5138,0.3805,-0.7689,0.463,0.5528,-0.6929,0.463,0.5528,-0.6929,0.5138,0.3805,-0.7689,0.6539,0.3805,-0.6539,0.463,0.5528,-0.6929,0.6539,0.3805,-0.6539,0.5893,0.5528,-0.5893,0.5893,0.5528,-0.5893,0.6539,0.3805,-0.6539,0.7689,0.3805,-0.5138,0.5893,0.5528,-0.5893,0.7689,0.3805,-0.5138,0.6929,0.5528,-0.463,0.6929,0.5528,-0.463,0.7689,0.3805,-0.5138,0.8544,0.3805,-0.3539,0.6929,0.5528,-0.463,0.8544,0.3805,-0.3539,0.7699,0.5528,-0.3189,0.7699,0.5528,-0.3189,0.8544,0.3805,-0.3539,0.907,0.3805,-0.1804,0.7699,0.5528,-0.3189,0.907,0.3805,-0.1804,0.8173,0.5528,-0.1626,0.8173,0.5528,-0.1626,0.907,0.3805,-0.1804,0.9248,0.3805,0.0,0.8173,0.5528,-0.1626,0.9248,0.3805,0.0,0.8333,0.5528,0.0,0.8333,0.5528,0.0,0.9248,0.3805,0.0,0.907,0.3805,0.1804,0.8333,0.5528,0.0,0.907,0.3805,0.1804,0.8173,0.5528,0.1626,0.8173,0.5528,0.1626,0.907,0.3805,0.1804,0.8544,0.3805,0.3539,0.8173,0.5528,0.1626,0.8544,0.3805,0.3539,0.7699,0.5528,0.3189,0.7699,0.5528,0.3189,0.8544,0.3805,0.3539,0.7689,0.3805,0.5138,0.7699,0.5528,0.3189,0.7689,0.3805,0.5138,0.6929,0.5528,0.463,0.6929,0.5528,0.463,0.7689,0.3805,0.5138,0.6539,0.3805,0.6539,0.6929,0.5528,0.463,0.6539,0.3805,0.6539,0.5893,0.5528,0.5893,0.5893,0.5528,0.5893,0.6539,0.3805,0.6539,0.5138,0.3805,0.7689,0.5893,0.5528,0.5893,0.5138,0.3805,0.7689,0.463,0.5528,0.6929,0.463,0.5528,0.6929,0.5138,0.3805,0.7689,0.3539,0.3805,0.8544,0.463,0.5528,0.6929,0.3539,0.3805,0.8544,0.3189,0.5528,0.7699,0.3189,0.5528,0.7699,0.3539,0.3805,0.8544,0.1804,0.3805,0.907,0.3189,0.5528,0.7699,0.1804,0.3805,0.907,0.1626,0.5528,0.8173,0.1626,0.5528,0.8173,0.1804,0.3805,0.907,0.0,0.3805,0.9248,0.1626,0.5528,0.8173,0.0,0.3805,0.9248,0.0,0.5528,0.8333,0.0,0.3805,0.9248,0.0,0.1939,0.981,-0.1914,0.1939,0.9622,0.0,0.3805,0.9248,-0.1914,0.1939,0.9622,-0.1804,0.3805,0.907,-0.1804,0.3805,0.907,-0.1914,0.1939,0.9622,-0.3754,0.1939,0.9063,-0.1804,0.3805,0.907,-0.3754,0.1939,0.9063,-0.3539,0.3805,0.8544,-0.3539,0.3805,0.8544,-0.3754,0.1939,0.9063,-0.545,0.1939,0.8157,-0.3539,0.3805,0.8544,-0.545,0.1939,0.8157,-0.5138,0.3805,0.7689,-0.5138,0.3805,0.7689,-0.545,0.1939,0.8157,-0.6937,0.1939,0.6937,-0.5138,0.3805,0.7689,-0.6937,0.1939,0.6937,-0.6539,0.3805,0.6539,-0.6539,0.3805,0.6539,-0.6937,0.1939,0.6937,-0.8157,0.1939,0.545,-0.6539,0.3805,0.6539,-0.8157,0.1939,0.545,-0.7689,0.3805,0.5138,-0.7689,0.3805,0.5138,-0.8157,0.1939,0.545,-0.9063,0.1939,0.3754,-0.7689,0.3805,0.5138,-0.9063,0.1939,0.3754,-0.8544,0.3805,0.3539,-0.8544,0.3805,0.3539,-0.9063,0.1939,0.3754,-0.9622,0.1939,0.1914,-0.8544,0.3805,0.3539,-0.9622,0.1939,0.1914,-0.907,0.3805,0.1804,-0.907,0.3805,0.1804,-0.9622,0.1939,0.1914,-0.981,0.1939,0.0,-0.907,0.3805,0.1804,-0.981,0.1939,0.0,-0.9248,0.3805,0.0,-0.9248,0.3805,0.0,-0.981,0.1939,0.0,-0.9622,0.1939,-0.1914,-0.9248,0.3805,0.0,-0.9622,0.1939,-0.1914,-0.907,0.3805,-0.1804,-0.907,0.3805,-0.1804,-0.9622,0.1939,-0.1914,-0.9063,0.1939,-0.3754,-0.907,0.3805,-0.1804,-0.9063,0.1939,-0.3754,-0.8544,0.3805,-0.3539,-0.8544,0.3805,-0.3539,-0.9063,0.1939,-0.3754,-0.8157,0.1939,-0.545,-0.8544,0.3805,-0.3539,-0.8157,0.1939,-0.545,-0.7689,0.3805,-0.5138,-0.7689,0.3805,-0.5138,-0.8157,0.1939,-0.545,-0.6937,0.1939,-0.6937,-0.7689,0.3805,-0.5138,-0.6937,0.1939,-0.6937,-0.6539,0.3805,-0.6539,-0.6539,0.3805,-0.6539,-0.6937,0.1939,-0.6937,-0.545,0.1939,-0.8157,-0.6539,0.3805,-0.6539,-0.545,0.1939,-0.8157,-0.5138,0.3805,-0.7689,-0.5138,0.3805,-0.7689,-0.545,0.1939,-0.8157,-0.3754,0.1939,-0.9063,-0.5138,0.3805,-0.7689,-0.3754,0.1939,-0.9063,-0.3539,0.3805,-0.8544,-0.3539,0.3805,-0.8544,-0.3754,0.1939,-0.9063,-0.1914,0.1939,-0.9622,-0.3539,0.3805,-0.8544,-0.1914,0.1939,-0.9622,-0.1804,0.3805,-0.907,-0.1804,0.3805,-0.907,-0.1914,0.1939,-0.9622,0.0,0.1939,-0.981,-0.1804,0.3805,-0.907,0.0,0.1939,-0.981,0.0,0.3805,-0.9248,0.0,0.3805,-0.9248,0.0,0.1939,-0.981,0.1914,0.1939,-0.9622,0.0,0.3805,-0.9248,0.1914,0.1939,-0.9622,0.1804,0.3805,-0.907,0.1804,0.3805,-0.907,0.1914,0.1939,-0.9622,0.3754,0.1939,-0.9063,0.1804,0.3805,-0.907,0.3754,0.1939,-0.9063,0.3539,0.3805,-0.8544,0.3539,0.3805,-0.8544,0.3754,0.1939,-0.9063,0.545,0.1939,-0.8157,0.3539,0.3805,-0.8544,0.545,0.1939,-0.8157,0.5138,0.3805,-0.7689,0.5138,0.3805,-0.7689,0.545,0.1939,-0.8157,0.6937,0.1939,-0.6937,0.5138,0.3805,-0.7689,0.6937,0.1939,-0.6937,0.6539,0.3805,-0.6539,0.6539,0.3805,-0.6539,0.6937,0.1939,-0.6937,0.8157,0.1939,-0.545,0.6539,0.3805,-0.6539,0.8157,0.1939,-0.545,0.7689,0.3805,-0.5138,0.7689,0.3805,-0.5138,0.8157,0.1939,-0.545,0.9063,0.1939,-0.3754,0.7689,0.3805,-0.5138,0.9063,0.1939,-0.3754,0.8544,0.3805,-0.3539,0.8544,0.3805,-0.3539,0.9063,0.1939,-0.3754,0.9622,0.1939,-0.1914,0.8544,0.3805,-0.3539,0.9622,0.1939,-0.1914,0.907,0.3805,-0.1804,0.907,0.3805,-0.1804,0.9622,0.1939,-0.1914,0.981,0.1939,0.0,0.907,0.3805,-0.1804,0.981,0.1939,0.0,0.9248,0.3805,0.0,0.9248,0.3805,0.0,0.981,0.1939,0.0,0.9622,0.1939,0.1914,0.9248,0.3805,0.0,0.9622,0.1939,0.1914,0.907,0.3805,0.1804,0.907,0.3805,0.1804,0.9622,0.1939,0.1914,0.9063,0.1939,0.3754,0.907,0.3805,0.1804,0.9063,0.1939,0.3754,0.8544,0.3805,0.3539,0.8544,0.3805,0.3539,0.9063,0.1939,0.3754,0.8157,0.1939,0.545,0.8544,0.3805,0.3539,0.8157,0.1939,0.545,0.7689,0.3805,0.5138,0.7689,0.3805,0.5138,0.8157,0.1939,0.545,0.6937,0.1939,0.6937,0.7689,0.3805,0.5138,0.6937,0.1939,0.6937,0.6539,0.3805,0.6539,0.6539,0.3805,0.6539,0.6937,0.1939,0.6937,0.545,0.1939,0.8157,0.6539,0.3805,0.6539,0.545,0.1939,0.8157,0.5138,0.3805,0.7689,0.5138,0.3805,0.7689,0.545,0.1939,0.8157,0.3754,0.1939,0.9063,0.5138,0.3805,0.7689,0.3754,0.1939,0.9063,0.3539,0.3805,0.8544,0.3539,0.3805,0.8544,0.3754,0.1939,0.9063,0.1914,0.1939,0.9622,0.3539,0.3805,0.8544,0.1914,0.1939,0.9622,0.1804,0.3805,0.907,0.1804,0.3805,0.907,0.1914,0.1939,0.9622,0.0,0.1939,0.981,0.1804,0.3805,0.907,0.0,0.1939,0.981,0.0,0.3805,0.9248,0.0,0.1939,0.981,0.0,0.0,1.0,-0.1951,0.0,0.9808,0.0,0.1939,0.981,-0.1951,0.0,0.9808,-0.1914,0.1939,0.9622,-0.1914,0.1939,0.9622,-0.1951,0.0,0.9808,-0.3827,0.0,0.9239,-0.1914,0.1939,0.9622,-0.3827,0.0,0.9239,-0.3754,0.1939,0.9063,-0.3754,0.1939,0.9063,-0.3827,0.0,0.9239,-0.5556,0.0,0.8315,-0.3754,0.1939,0.9063,-0.5556,0.0,0.8315,-0.545,0.1939,0.8157,-0.545,0.1939,0.8157,-0.5556,0.0,0.8315,-0.7071,0.0,0.7071,-0.545,0.1939,0.8157,-0.7071,0.0,0.7071,-0.6937,0.1939,0.6937,-0.6937,0.1939,0.6937,-0.7071,0.0,0.7071,-0.8315,0.0,0.5556,-0.6937,0.1939,0.6937,-0.8315,0.0,0.5556,-0.8157,0.1939,0.545,-0.8157,0.1939,0.545,-0.8315,0.0,0.5556,-0.9239,0.0,0.3827,-0.8157,0.1939,0.545,-0.9239,0.0,0.3827,-0.9063,0.1939,0.3754,-0.9063,0.1939,0.3754,-0.9239,0.0,0.3827,-0.9808,0.0,0.1951,-0.9063,0.1939,0.3754,-0.9808,0.0,0.1951,-0.9622,0.1939,0.1914,-0.9622,0.1939,0.1914,-0.9808,0.0,0.1951,-1.0,0.0,0.0,-0.9622,0.1939,0.1914,-1.0,0.0,0.0,-0.981,0.1939,0.0,-0.981,0.1939,0.0,-1.0,0.0,0.0,-0.9808,0.0,-0.1951,-0.981,0.1939,0.0,-0.9808,0.0,-0.1951,-0.9622,0.1939,-0.1914,-0.9622,0.1939,-0.1914,-0.9808,0.0,-0.1951,-0.9239,0.0,-0.3827,-0.9622,0.1939,-0.1914,-0.9239,0.0,-0.3827,-0.9063,0.1939,-0.3754,-0.9063,0.1939,-0.3754,-0.9239,0.0,-0.3827,-0.8315,0.0,-0.5556,-0.9063,0.1939,-0.3754,-0.8315,0.0,-0.5556,-0.8157,0.1939,-0.545,-0.8157,0.1939,-0.545,-0.8315,0.0,-0.5556,-0.7071,0.0,-0.7071,-0.8157,0.1939,-0.545,-0.7071,0.0,-0.7071,-0.6937,0.1939,-0.6937,-0.6937,0.1939,-0.6937,-0.7071,0.0,-0.7071,-0.5556,0.0,-0.8315,-0.6937,0.1939,-0.6937,-0.5556,0.0,-0.8315,-0.545,0.1939,-0.8157,-0.545,0.1939,-0.8157,-0.5556,0.0,-0.8315,-0.3827,0.0,-0.9239,-0.545,0.1939,-0.8157,-0.3827,0.0,-0.9239,-0.3754,0.1939,-0.9063,-0.3754,0.1939,-0.9063,-0.3827,0.0,-0.9239,-0.1951,0.0,-0.9808,-0.3754,0.1939,-0.9063,-0.1951,0.0,-0.9808,-0.1914,0.1939,-0.9622,-0.1914,0.1939,-0.9622,-0.1951,0.0,-0.9808,0.0,0.0,-1.0,-0.1914,0.1939,-0.9622,0.0,0.0,-1.0,0.0,0.1939,-0.981,0.0,0.1939,-0.981,0.0,0.0,-1.0,0.1951,0.0,-0.9808,0.0,0.1939,-0.981,0.1951,0.0,-0.9808,0.1914,0.1939,-0.9622,0.1914,0.1939,-0.9622,0.1951,0.0,-0.9808,0.3827,0.0,-0.9239,0.1914,0.1939,-0.9622,0.3827,0.0,-0.9239,0.3754,0.1939,-0.9063,0.3754,0.1939,-0.9063,0.3827,0.0,-0.9239,0.5556,0.0,-0.8315,0.3754,0.1939,-0.9063,0.5556,0.0,-0.8315,0.545,0.1939,-0.8157,0.545,0.1939,-0.8157,0.5556,0.0,-0.8315,0.7071,0.0,-0.7071,0.545,0.1939,-0.8157,0.7071,0.0,-0.7071,0.6937,0.1939,-0.6937,0.6937,0.1939,-0.6937,0.7071,0.0,-0.7071,0.8315,0.0,-0.5556,0.6937,0.1939,-0.6937,0.8315,0.0,-0.5556,0.8157,0.1939,-0.545,0.8157,0.1939,-0.545,0.8315,0.0,-0.5556,0.9239,0.0,-0.3827,0.8157,0.1939,-0.545,0.9239,0.0,-0.3827,0.9063,0.1939,-0.3754,0.9063,0.1939,-0.3754,0.9239,0.0,-0.3827,0.9808,0.0,-0.1951,0.9063,0.1939,-0.3754,0.9808,0.0,-0.1951,0.9622,0.1939,-0.1914,0.9622,0.1939,-0.1914,0.9808,0.0,-0.1951,1.0,0.0,0.0,0.9622,0.1939,-0.1914,1.0,0.0,0.0,0.981,0.1939,0.0,0.981,0.1939,0.0,1.0,0.0,0.0,0.9808,0.0,0.1951,0.981,0.1939,0.0,0.9808,0.0,0.1951,0.9622,0.1939,0.1914,0.9622,0.1939,0.1914,0.9808,0.0,0.1951,0.9239,0.0,0.3827,0.9622,0.1939,0.1914,0.9239,0.0,0.3827,0.9063,0.1939,0.3754,0.9063,0.1939,0.3754,0.9239,0.0,0.3827,0.8315,0.0,0.5556,0.9063,0.1939,0.3754,0.8315,0.0,0.5556,0.8157,0.1939,0.545,0.8157,0.1939,0.545,0.8315,0.0,0.5556,0.7071,0.0,0.7071,0.8157,0.1939,0.545,0.7071,0.0,0.7071,0.6937,0.1939,0.6937,0.6937,0.1939,0.6937,0.7071,0.0,0.7071,0.5556,0.0,0.8315,0.6937,0.1939,0.6937,0.5556,0.0,0.8315,0.545,0.1939,0.8157,0.545,0.1939,0.8157,0.5556,0.0,0.8315,0.3827,0.0,0.9239,0.545,0.1939,0.8157,0.3827,0.0,0.9239,0.3754,0.1939,0.9063,0.3754,0.1939,0.9063,0.3827,0.0,0.9239,0.1951,0.0,0.9808,0.3754,0.1939,0.9063,0.1951,0.0,0.9808,0.1914,0.1939,0.9622,0.1914,0.1939,0.9622,0.1951,0.0,0.9808,0.0,0.0,1.0,0.1914,0.1939,0.9622,0.0,0.0,1.0,0.0,0.1939,0.981,0.0,0.0,1.0,0.0,-0.1939,0.981,-0.1914,-0.1939,0.9622,0.0,0.0,1.0,-0.1914,-0.1939,0.9622,-0.1951,0.0,0.9808,-0.1951,0.0,0.9808,-0.1914,-0.1939,0.9622,-0.3754,-0.1939,0.9063,-0.1951,0.0,0.9808,-0.3754,-0.1939,0.9063,-0.3827,0.0,0.9239,-0.3827,0.0,0.9239,-0.3754,-0.1939,0.9063,-0.545,-0.1939,0.8157,-0.3827,0.0,0.9239,-0.545,-0.1939,0.8157,-0.5556,0.0,0.8315,-0.5556,0.0,0.8315,-0.545,-0.1939,0.8157,-0.6937,-0.1939,0.6937,-0.5556,0.0,0.8315,-0.6937,-0.1939,0.6937,-0.7071,0.0,0.7071,-0.7071,0.0,0.7071,-0.6937,-0.1939,0.6937,-0.8157,-0.1939,0.545,-0.7071,0.0,0.7071,-0.8157,-0.1939,0.545,-0.8315,0.0,0.5556,-0.8315,0.0,0.5556,-0.8157,-0.1939,0.545,-0.9063,-0.1939,0.3754,-0.8315,0.0,0.5556,-0.9063,-0.1939,0.3754,-0.9239,0.0,0.3827,-0.9239,0.0,0.3827,-0.9063,-0.1939,0.3754,-0.9622,-0.1939,0.1914,-0.9239,0.0,0.3827,-0.9622,-0.1939,0.1914,-0.9808,0.0,0.1951,-0.9808,0.0,0.1951,-0.9622,-0.1939,0.1914,-0.981,-0.1939,0.0,-0.9808,0.0,0.1951,-0.981,-0.1939,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-0.981,-0.1939,0.0,-0.9622,-0.1939,-0.1914,-1.0,0.0,0.0,-0.9622,-0.1939,-0.1914,-0.9808,0.0,-0.1951,-0.9808,0.0,-0.1951,-0.9622,-0.1939,-0.1914,-0.9063,-0.1939,-0.3754,-0.9808,0.0,-0.1951,-0.9063,-0.1939,-0.3754,-0.9239,0.0,-0.3827,-0.9239,0.0,-0.3827,-0.9063,-0.1939,-0.3754,-0.8157,-0.1939,-0.545,-0.9239,0.0,-0.3827,-0.8157,-0.1939,-0.545,-0.8315,0.0,-0.5556,-0.8315,0.0,-0.5556,-0.8157,-0.1939,-0.545,-0.6937,-0.1939,-0.6937,-0.8315,0.0,-0.5556,-0.6937,-0.1939,-0.6937,-0.7071,0.0,-0.7071,-0.7071,0.0,-0.7071,-0.6937,-0.1939,-0.6937,-0.545,-0.1939,-0.8157,-0.7071,0.0,-0.7071,-0.545,-0.1939,-0.8157,-0.5556,0.0,-0.8315,-0.5556,0.0,-0.8315,-0.545,-0.1939,-0.8157,-0.3754,-0.1939,-0.9063,-0.5556,0.0,-0.8315,-0.3754,-0.1939,-0.9063,-0.3827,0.0,-0.9239,-0.3827,0.0,-0.9239,-0.3754,-0.1939,-0.9063,-0.1914,-0.1939,-0.9622,-0.3827,0.0,-0.9239,-0.1914,-0.1939,-0.9622,-0.1951,0.0,-0.9808,-0.1951,0.0,-0.9808,-0.1914,-0.1939,-0.9622,0.0,-0.1939,-0.981,-0.1951,0.0,-0.9808,0.0,-0.1939,-0.981,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,-0.1939,-0.981,0.1914,-0.1939,-0.9622,0.0,0.0,-1.0,0.1914,-0.1939,-0.9622,0.1951,0.0,-0.9808,0.1951,0.0,-0.9808,0.1914,-0.1939,-0.9622,0.3754,-0.1939,-0.9063,0.1951,0.0,-0.9808,0.3754,-0.1939,-0.9063,0.3827,0.0,-0.9239,0.3827,0.0,-0.9239,0.3754,-0.1939,-0.9063,0.545,-0.1939,-0.8157,0.3827,0.0,-0.9239,0.545,-0.1939,-0.8157,0.5556,0.0,-0.8315,0.5556,0.0,-0.8315,0.545,-0.1939,-0.8157,0.6937,-0.1939,-0.6937,0.5556,0.0,-0.8315,0.6937,-0.1939,-0.6937,0.7071,0.0,-0.7071,0.7071,0.0,-0.7071,0.6937,-0.1939,-0.6937,0.8157,-0.1939,-0.545,0.7071,0.0,-0.7071,0.8157,-0.1939,-0.545,0.8315,0.0,-0.5556,0.8315,0.0,-0.5556,0.8157,-0.1939,-0.545,0.9063,-0.1939,-0.3754,0.8315,0.0,-0.5556,0.9063,-0.1939,-0.3754,0.9239,0.0,-0.3827,0.9239,0.0,-0.3827,0.9063,-0.1939,-0.3754,0.9622,-0.1939,-0.1914,0.9239,0.0,-0.3827,0.9622,-0.1939,-0.1914,0.9808,0.0,-0.1951,0.9808,0.0,-0.1951,0.9622,-0.1939,-0.1914,0.981,-0.1939,0.0,0.9808,0.0,-0.1951,0.981,-0.1939,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.981,-0.1939,0.0,0.9622,-0.1939,0.1914,1.0,0.0,0.0,0.9622,-0.1939,0.1914,0.9808,0.0,0.1951,0.9808,0.0,0.1951,0.9622,-0.1939,0.1914,0.9063,-0.1939,0.3754,0.9808,0.0,0.1951,0.9063,-0.1939,0.3754,0.9239,0.0,0.3827,0.9239,0.0,0.3827,0.9063,-0.1939,0.3754,0.8157,-0.1939,0.545,0.9239,0.0,0.3827,0.8157,-0.1939,0.545,0.8315,0.0,0.5556,0.8315,0.0,0.5556,0.8157,-0.1939,0.545,0.6937,-0.1939,0.6937,0.8315,0.0,0.5556,0.6937,-0.1939,0.6937,0.7071,0.0,0.7071,0.7071,0.0,0.7071,0.6937,-0.1939,0.6937,0.545,-0.1939,0.8157,0.7071,0.0,0.7071,0.545,-0.1939,0.8157,0.5556,0.0,0.8315,0.5556,0.0,0.8315,0.545,-0.1939,0.8157,0.3754,-0.1939,0.9063,0.5556,0.0,0.8315,0.3754,-0.1939,0.9063,0.3827,0.0,0.9239,0.3827,0.0,0.9239,0.3754,-0.1939,0.9063,0.1914,-0.1939,0.9622,0.3827,0.0,0.9239,0.1914,-0.1939,0.9622,0.1951,0.0,0.9808,0.1951,0.0,0.9808,0.1914,-0.1939,0.9622,0.0,-0.1939,0.981,0.1951,0.0,0.9808,0.0,-0.1939,0.981,0.0,0.0,1.0,0.0,-0.1939,0.981,0.0,-0.3805,0.9248,-0.1804,-0.3805,0.907,0.0,-0.1939,0.981,-0.1804,-0.3805,0.907,-0.1914,-0.1939,0.9622,-0.1914,-0.1939,0.9622,-0.1804,-0.3805,0.907,-0.3539,-0.3805,0.8544,-0.1914,-0.1939,0.9622,-0.3539,-0.3805,0.8544,-0.3754,-0.1939,0.9063,-0.3754,-0.1939,0.9063,-0.3539,-0.3805,0.8544,-0.5138,-0.3805,0.7689,-0.3754,-0.1939,0.9063,-0.5138,-0.3805,0.7689,-0.545,-0.1939,0.8157,-0.545,-0.1939,0.8157,-0.5138,-0.3805,0.7689,-0.6539,-0.3805,0.6539,-0.545,-0.1939,0.8157,-0.6539,-0.3805,0.6539,-0.6937,-0.1939,0.6937,-0.6937,-0.1939,0.6937,-0.6539,-0.3805,0.6539,-0.7689,-0.3805,0.5138,-0.6937,-0.1939,0.6937,-0.7689,-0.3805,0.5138,-0.8157,-0.1939,0.545,-0.8157,-0.1939,0.545,-0.7689,-0.3805,0.5138,-0.8544,-0.3805,0.3539,-0.8157,-0.1939,0.545,-0.8544,-0.3805,0.3539,-0.9063,-0.1939,0.3754,-0.9063,-0.1939,0.3754,-0.8544,-0.3805,0.3539,-0.907,-0.3805,0.1804,-0.9063,-0.1939,0.3754,-0.907,-0.3805,0.1804,-0.9622,-0.1939,0.1914,-0.9622,-0.1939,0.1914,-0.907,-0.3805,0.1804,-0.9248,-0.3805,0.0,-0.9622,-0.1939,0.1914,-0.9248,-0.3805,0.0,-0.981,-0.1939,0.0,-0.981,-0.1939,0.0,-0.9248,-0.3805,0.0,-0.907,-0.3805,-0.1804,-0.981,-0.1939,0.0,-0.907,-0.3805,-0.1804,-0.9622,-0.1939,-0.1914,-0.9622,-0.1939,-0.1914,-0.907,-0.3805,-0.1804,-0.8544,-0.3805,-0.3539,-0.9622,-0.1939,-0.1914,-0.8544,-0.3805,-0.3539,-0.9063,-0.1939,-0.3754,-0.9063,-0.1939,-0.3754,-0.8544,-0.3805,-0.3539,-0.7689,-0.3805,-0.5138,-0.9063,-0.1939,-0.3754,-0.7689,-0.3805,-0.5138,-0.8157,-0.1939,-0.545,-0.8157,-0.1939,-0.545,-0.7689,-0.3805,-0.5138,-0.6539,-0.3805,-0.6539,-0.8157,-0.1939,-0.545,-0.6539,-0.3805,-0.6539,-0.6937,-0.1939,-0.6937,-0.6937,-0.1939,-0.6937,-0.6539,-0.3805,-0.6539,-0.5138,-0.3805,-0.7689,-0.6937,-0.1939,-0.6937,-0.5138,-0.3805,-0.7689,-0.545,-0.1939,-0.8157,-0.545,-0.1939,-0.8157,-0.5138,-0.3805,-0.7689,-0.3539,-0.3805,-0.8544,-0.545,-0.1939,-0.8157,-0.3539,-0.3805,-0.8544,-0.3754,-0.1939,-0.9063,-0.3754,-0.1939,-0.9063,-0.3539,-0.3805,-0.8544,-0.1804,-0.3805,-0.907,-0.3754,-0.1939,-0.9063,-0.1804,-0.3805,-0.907,-0.1914,-0.1939,-0.9622,-0.1914,-0.1939,-0.9622,-0.1804,-0.3805,-0.907,0.0,-0.3805,-0.9248,-0.1914,-0.1939,-0.9622,0.0,-0.3805,-0.9248,0.0,-0.1939,-0.981,0.0,-0.1939,-0.981,0.0,-0.3805,-0.9248,0.1804,-0.3805,-0.907,0.0,-0.1939,-0.981,0.1804,-0.3805,-0.907,0.1914,-0.1939,-0.9622,0.1914,-0.1939,-0.9622,0.1804,-0.3805,-0.907,0.3539,-0.3805,-0.8544,0.1914,-0.1939,-0.9622,0.3539,-0.3805,-0.8544,0.3754,-0.1939,-0.9063,0.3754,-0.1939,-0.9063,0.3539,-0.3805,-0.8544,0.5138,-0.3805,-0.7689,0.3754,-0.1939,-0.9063,0.5138,-0.3805,-0.7689,0.545,-0.1939,-0.8157,0.545,-0.1939,-0.8157,0.5138,-0.3805,-0.7689,0.6539,-0.3805,-0.6539,0.545,-0.1939,-0.8157,0.6539,-0.3805,-0.6539,0.6937,-0.1939,-0.6937,0.6937,-0.1939,-0.6937,0.6539,-0.3805,-0.6539,0.7689,-0.3805,-0.5138,0.6937,-0.1939,-0.6937,0.7689,-0.3805,-0.5138,0.8157,-0.1939,-0.545,0.8157,-0.1939,-0.545,0.7689,-0.3805,-0.5138,0.8544,-0.3805,-0.3539,0.8157,-0.1939,-0.545,0.8544,-0.3805,-0.3539,0.9063,-0.1939,-0.3754,0.9063,-0.1939,-0.3754,0.8544,-0.3805,-0.3539,0.907,-0.3805,-0.1804,0.9063,-0.1939,-0.3754,0.907,-0.3805,-0.1804,0.9622,-0.1939,-0.1914,0.9622,-0.1939,-0.1914,0.907,-0.3805,-0.1804,0.9248,-0.3805,0.0,0.9622,-0.1939,-0.1914,0.9248,-0.3805,0.0,0.981,-0.1939,0.0,0.981,-0.1939,0.0,0.9248,-0.3805,0.0,0.907,-0.3805,0.1804,0.981,-0.1939,0.0,0.907,-0.3805,0.1804,0.9622,-0.1939,0.1914,0.9622,-0.1939,0.1914,0.907,-0.3805,0.1804,0.8544,-0.3805,0.3539,0.9622,-0.1939,0.1914,0.8544,-0.3805,0.3539,0.9063,-0.1939,0.3754,0.9063,-0.1939,0.3754,0.8544,-0.3805,0.3539,0.7689,-0.3805,0.5138,0.9063,-0.1939,0.3754,0.7689,-0.3805,0.5138,0.8157,-0.1939,0.545,0.8157,-0.1939,0.545,0.7689,-0.3805,0.5138,0.6539,-0.3805,0.6539,0.8157,-0.1939,0.545,0.6539,-0.3805,0.6539,0.6937,-0.1939,0.6937,0.6937,-0.1939,0.6937,0.6539,-0.3805,0.6539,0.5138,-0.3805,0.7689,0.6937,-0.1939,0.6937,0.5138,-0.3805,0.7689,0.545,-0.1939,0.8157,0.545,-0.1939,0.8157,0.5138,-0.3805,0.7689,0.3539,-0.3805,0.8544,0.545,-0.1939,0.8157,0.3539,-0.3805,0.8544,0.3754,-0.1939,0.9063,0.3754,-0.1939,0.9063,0.3539,-0.3805,0.8544,0.1804,-0.3805,0.907,0.3754,-0.1939,0.9063,0.1804,-0.3805,0.907,0.1914,-0.1939,0.9622,0.1914,-0.1939,0.9622,0.1804,-0.3805,0.907,0.0,-0.3805,0.9248,0.1914,-0.1939,0.9622,0.0,-0.3805,0.9248,0.0,-0.1939,0.981,0.0,-0.3805,0.9248,0.0,-0.5528,0.8333,-0.1626,-0.5528,0.8173,0.0,-0.3805,0.9248,-0.1626,-0.5528,0.8173,-0.1804,-0.3805,0.907,-0.1804,-0.3805,0.907,-0.1626,-0.5528,0.8173,-0.3189,-0.5528,0.7699,-0.1804,-0.3805,0.907,-0.3189,-0.5528,0.7699,-0.3539,-0.3805,0.8544,-0.3539,-0.3805,0.8544,-0.3189,-0.5528,0.7699,-0.463,-0.5528,0.6929,-0.3539,-0.3805,0.8544,-0.463,-0.5528,0.6929,-0.5138,-0.3805,0.7689,-0.5138,-0.3805,0.7689,-0.463,-0.5528,0.6929,-0.5893,-0.5528,0.5893,-0.5138,-0.3805,0.7689,-0.5893,-0.5528,0.5893,-0.6539,-0.3805,0.6539,-0.6539,-0.3805,0.6539,-0.5893,-0.5528,0.5893,-0.6929,-0.5528,0.463,-0.6539,-0.3805,0.6539,-0.6929,-0.5528,0.463,-0.7689,-0.3805,0.5138,-0.7689,-0.3805,0.5138,-0.6929,-0.5528,0.463,-0.7699,-0.5528,0.3189,-0.7689,-0.3805,0.5138,-0.7699,-0.5528,0.3189,-0.8544,-0.3805,0.3539,-0.8544,-0.3805,0.3539,-0.7699,-0.5528,0.3189,-0.8173,-0.5528,0.1626,-0.8544,-0.3805,0.3539,-0.8173,-0.5528,0.1626,-0.907,-0.3805,0.1804,-0.907,-0.3805,0.1804,-0.8173,-0.5528,0.1626,-0.8333,-0.5528,0.0,-0.907,-0.3805,0.1804,-0.8333,-0.5528,0.0,-0.9248,-0.3805,0.0,-0.9248,-0.3805,0.0,-0.8333,-0.5528,0.0,-0.8173,-0.5528,-0.1626,-0.9248,-0.3805,0.0,-0.8173,-0.5528,-0.1626,-0.907,-0.3805,-0.1804,-0.907,-0.3805,-0.1804,-0.8173,-0.5528,-0.1626,-0.7699,-0.5528,-0.3189,-0.907,-0.3805,-0.1804,-0.7699,-0.5528,-0.3189,-0.8544,-0.3805,-0.3539,-0.8544,-0.3805,-0.3539,-0.7699,-0.5528,-0.3189,-0.6929,-0.5528,-0.463,-0.8544,-0.3805,-0.3539,-0.6929,-0.5528,-0.463,-0.7689,-0.3805,-0.5138,-0.7689,-0.3805,-0.5138,-0.6929,-0.5528,-0.463,-0.5893,-0.5528,-0.5893,-0.7689,-0.3805,-0.5138,-0.5893,-0.5528,-0.5893,-0.6539,-0.3805,-0.6539,-0.6539,-0.3805,-0.6539,-0.5893,-0.5528,-0.5893,-0.463,-0.5528,-0.6929,-0.6539,-0.3805,-0.6539,-0.463,-0.5528,-0.6929,-0.5138,-0.3805,-0.7689,-0.5138,-0.3805,-0.7689,-0.463,-0.5528,-0.6929,-0.3189,-0.5528,-0.7699,-0.5138,-0.3805,-0.7689,-0.3189,-0.5528,-0.7699,-0.3539,-0.3805,-0.8544,-0.3539,-0.3805,-0.8544,-0.3189,-0.5528,-0.7699,-0.1626,-0.5528,-0.8173,-0.3539,-0.3805,-0.8544,-0.1626,-0.5528,-0.8173,-0.1804,-0.3805,-0.907,-0.1804,-0.3805,-0.907,-0.1626,-0.5528,-0.8173,0.0,-0.5528,-0.8333,-0.1804,-0.3805,-0.907,0.0,-0.5528,-0.8333,0.0,-0.3805,-0.9248,0.0,-0.3805,-0.9248,0.0,-0.5528,-0.8333,0.1626,-0.5528,-0.8173,0.0,-0.3805,-0.9248,0.1626,-0.5528,-0.8173,0.1804,-0.3805,-0.907,0.1804,-0.3805,-0.907,0.1626,-0.5528,-0.8173,0.3189,-0.5528,-0.7699,0.1804,-0.3805,-0.907,0.3189,-0.5528,-0.7699,0.3539,-0.3805,-0.8544,0.3539,-0.3805,-0.8544,0.3189,-0.5528,-0.7699,0.463,-0.5528,-0.6929,0.3539,-0.3805,-0.8544,0.463,-0.5528,-0.6929,0.5138,-0.3805,-0.7689,0.5138,-0.3805,-0.7689,0.463,-0.5528,-0.6929,0.5893,-0.5528,-0.5893,0.5138,-0.3805,-0.7689,0.5893,-0.5528,-0.5893,0.6539,-0.3805,-0.6539,0.6539,-0.3805,-0.6539,0.5893,-0.5528,-0.5893,0.6929,-0.5528,-0.463,0.6539,-0.3805,-0.6539,0.6929,-0.5528,-0.463,0.7689,-0.3805,-0.5138,0.7689,-0.3805,-0.5138,0.6929,-0.5528,-0.463,0.7699,-0.5528,-0.3189,0.7689,-0.3805,-0.5138,0.7699,-0.5528,-0.3189,0.8544,-0.3805,-0.3539,0.8544,-0.3805,-0.3539,0.7699,-0.5528,-0.3189,0.8173,-0.5528,-0.1626,0.8544,-0.3805,-0.3539,0.8173,-0.5528,-0.1626,0.907,-0.3805,-0.1804,0.907,-0.3805,-0.1804,0.8173,-0.5528,-0.1626,0.8333,-0.5528,0.0,0.907,-0.3805,-0.1804,0.8333,-0.5528,0.0,0.9248,-0.3805,0.0,0.9248,-0.3805,0.0,0.8333,-0.5528,0.0,0.8173,-0.5528,0.1626,0.9248,-0.3805,0.0,0.8173,-0.5528,0.1626,0.907,-0.3805,0.1804,0.907,-0.3805,0.1804,0.8173,-0.5528,0.1626,0.7699,-0.5528,0.3189,0.907,-0.3805,0.1804,0.7699,-0.5528,0.3189,0.8544,-0.3805,0.3539,0.8544,-0.3805,0.3539,0.7699,-0.5528,0.3189,0.6929,-0.5528,0.463,0.8544,-0.3805,0.3539,0.6929,-0.5528,0.463,0.7689,-0.3805,0.5138,0.7689,-0.3805,0.5138,0.6929,-0.5528,0.463,0.5893,-0.5528,0.5893,0.7689,-0.3805,0.5138,0.5893,-0.5528,0.5893,0.6539,-0.3805,0.6539,0.6539,-0.3805,0.6539,0.5893,-0.5528,0.5893,0.463,-0.5528,0.6929,0.6539,-0.3805,0.6539,0.463,-0.5528,0.6929,0.5138,-0.3805,0.7689,0.5138,-0.3805,0.7689,0.463,-0.5528,0.6929,0.3189,-0.5528,0.7699,0.5138,-0.3805,0.7689,0.3189,-0.5528,0.7699,0.3539,-0.3805,0.8544,0.3539,-0.3805,0.8544,0.3189,-0.5528,0.7699,0.1626,-0.5528,0.8173,0.3539,-0.3805,0.8544,0.1626,-0.5528,0.8173,0.1804,-0.3805,0.907,0.1804,-0.3805,0.907,0.1626,-0.5528,0.8173,0.0,-0.5528,0.8333,0.1804,-0.3805,0.907,0.0,-0.5528,0.8333,0.0,-0.3805,0.9248,0.0,-0.5528,0.8333,0.0,-0.7041,0.7101,-0.1385,-0.7041,0.6965,0.0,-0.5528,0.8333,-0.1385,-0.7041,0.6965,-0.1626,-0.5528,0.8173,-0.1626,-0.5528,0.8173,-0.1385,-0.7041,0.6965,-0.2718,-0.7041,0.6561,-0.1626,-0.5528,0.8173,-0.2718,-0.7041,0.6561,-0.3189,-0.5528,0.7699,-0.3189,-0.5528,0.7699,-0.2718,-0.7041,0.6561,-0.3945,-0.7041,0.5905,-0.3189,-0.5528,0.7699,-0.3945,-0.7041,0.5905,-0.463,-0.5528,0.6929,-0.463,-0.5528,0.6929,-0.3945,-0.7041,0.5905,-0.5021,-0.7041,0.5021,-0.463,-0.5528,0.6929,-0.5021,-0.7041,0.5021,-0.5893,-0.5528,0.5893,-0.5893,-0.5528,0.5893,-0.5021,-0.7041,0.5021,-0.5905,-0.7041,0.3945,-0.5893,-0.5528,0.5893,-0.5905,-0.7041,0.3945,-0.6929,-0.5528,0.463,-0.6929,-0.5528,0.463,-0.5905,-0.7041,0.3945,-0.6561,-0.7041,0.2718,-0.6929,-0.5528,0.463,-0.6561,-0.7041,0.2718,-0.7699,-0.5528,0.3189,-0.7699,-0.5528,0.3189,-0.6561,-0.7041,0.2718,-0.6965,-0.7041,0.1385,-0.7699,-0.5528,0.3189,-0.6965,-0.7041,0.1385,-0.8173,-0.5528,0.1626,-0.8173,-0.5528,0.1626,-0.6965,-0.7041,0.1385,-0.7101,-0.7041,0.0,-0.8173,-0.5528,0.1626,-0.7101,-0.7041,0.0,-0.8333,-0.5528,0.0,-0.8333,-0.5528,0.0,-0.7101,-0.7041,0.0,-0.6965,-0.7041,-0.1385,-0.8333,-0.5528,0.0,-0.6965,-0.7041,-0.1385,-0.8173,-0.5528,-0.1626,-0.8173,-0.5528,-0.1626,-0.6965,-0.7041,-0.1385,-0.6561,-0.7041,-0.2718,-0.8173,-0.5528,-0.1626,-0.6561,-0.7041,-0.2718,-0.7699,-0.5528,-0.3189,-0.7699,-0.5528,-0.3189,-0.6561,-0.7041,-0.2718,-0.5905,-0.7041,-0.3945,-0.7699,-0.5528,-0.3189,-0.5905,-0.7041,-0.3945,-0.6929,-0.5528,-0.463,-0.6929,-0.5528,-0.463,-0.5905,-0.7041,-0.3945,-0.5021,-0.7041,-0.5021,-0.6929,-0.5528,-0.463,-0.5021,-0.7041,-0.5021,-0.5893,-0.5528,-0.5893,-0.5893,-0.5528,-0.5893,-0.5021,-0.7041,-0.5021,-0.3945,-0.7041,-0.5905,-0.5893,-0.5528,-0.5893,-0.3945,-0.7041,-0.5905,-0.463,-0.5528,-0.6929,-0.463,-0.5528,-0.6929,-0.3945,-0.7041,-0.5905,-0.2718,-0.7041,-0.6561,-0.463,-0.5528,-0.6929,-0.2718,-0.7041,-0.6561,-0.3189,-0.5528,-0.7699,-0.3189,-0.5528,-0.7699,-0.2718,-0.7041,-0.6561,-0.1385,-0.7041,-0.6965,-0.3189,-0.5528,-0.7699,-0.1385,-0.7041,-0.6965,-0.1626,-0.5528,-0.8173,-0.1626,-0.5528,-0.8173,-0.1385,-0.7041,-0.6965,0.0,-0.7041,-0.7101,-0.1626,-0.5528,-0.8173,0.0,-0.7041,-0.7101,0.0,-0.5528,-0.8333,0.0,-0.5528,-0.8333,0.0,-0.7041,-0.7101,0.1385,-0.7041,-0.6965,0.0,-0.5528,-0.8333,0.1385,-0.7041,-0.6965,0.1626,-0.5528,-0.8173,0.1626,-0.5528,-0.8173,0.1385,-0.7041,-0.6965,0.2718,-0.7041,-0.6561,0.1626,-0.5528,-0.8173,0.2718,-0.7041,-0.6561,0.3189,-0.5528,-0.7699,0.3189,-0.5528,-0.7699,0.2718,-0.7041,-0.6561,0.3945,-0.7041,-0.5905,0.3189,-0.5528,-0.7699,0.3945,-0.7041,-0.5905,0.463,-0.5528,-0.6929,0.463,-0.5528,-0.6929,0.3945,-0.7041,-0.5905,0.5021,-0.7041,-0.5021,0.463,-0.5528,-0.6929,0.5021,-0.7041,-0.5021,0.5893,-0.5528,-0.5893,0.5893,-0.5528,-0.5893,0.5021,-0.7041,-0.5021,0.5905,-0.7041,-0.3945,0.5893,-0.5528,-0.5893,0.5905,-0.7041,-0.3945,0.6929,-0.5528,-0.463,0.6929,-0.5528,-0.463,0.5905,-0.7041,-0.3945,0.6561,-0.7041,-0.2718,0.6929,-0.5528,-0.463,0.6561,-0.7041,-0.2718,0.7699,-0.5528,-0.3189,0.7699,-0.5528,-0.3189,0.6561,-0.7041,-0.2718,0.6965,-0.7041,-0.1385,0.7699,-0.5528,-0.3189,0.6965,-0.7041,-0.1385,0.8173,-0.5528,-0.1626,0.8173,-0.5528,-0.1626,0.6965,-0.7041,-0.1385,0.7101,-0.7041,0.0,0.8173,-0.5528,-0.1626,0.7101,-0.7041,0.0,0.8333,-0.5528,0.0,0.8333,-0.5528,0.0,0.7101,-0.7041,0.0,0.6965,-0.7041,0.1385,0.8333,-0.5528,0.0,0.6965,-0.7041,0.1385,0.8173,-0.5528,0.1626,0.8173,-0.5528,0.1626,0.6965,-0.7041,0.1385,0.6561,-0.7041,0.2718,0.8173,-0.5528,0.1626,0.6561,-0.7041,0.2718,0.7699,-0.5528,0.3189,0.7699,-0.5528,0.3189,0.6561,-0.7041,0.2718,0.5905,-0.7041,0.3945,0.7699,-0.5528,0.3189,0.5905,-0.7041,0.3945,0.6929,-0.5528,0.463,0.6929,-0.5528,0.463,0.5905,-0.7041,0.3945,0.5021,-0.7041,0.5021,0.6929,-0.5528,0.463,0.5021,-0.7041,0.5021,0.5893,-0.5528,0.5893,0.5893,-0.5528,0.5893,0.5021,-0.7041,0.5021,0.3945,-0.7041,0.5905,0.5893,-0.5528,0.5893,0.3945,-0.7041,0.5905,0.463,-0.5528,0.6929,0.463,-0.5528,0.6929,0.3945,-0.7041,0.5905,0.2718,-0.7041,0.6561,0.463,-0.5528,0.6929,0.2718,-0.7041,0.6561,0.3189,-0.5528,0.7699,0.3189,-0.5528,0.7699,0.2718,-0.7041,0.6561,0.1385,-0.7041,0.6965,0.3189,-0.5528,0.7699,0.1385,-0.7041,0.6965,0.1626,-0.5528,0.8173,0.1626,-0.5528,0.8173,0.1385,-0.7041,0.6965,0.0,-0.7041,0.7101,0.1626,-0.5528,0.8173,0.0,-0.7041,0.7101,0.0,-0.5528,0.8333,0.0,-0.7041,0.7101,0.0,-0.8286,0.5598,-0.1092,-0.8286,0.549,0.0,-0.7041,0.7101,-0.1092,-0.8286,0.549,-0.1385,-0.7041,0.6965,-0.1385,-0.7041,0.6965,-0.1092,-0.8286,0.549,-0.2142,-0.8286,0.5172,-0.1385,-0.7041,0.6965,-0.2142,-0.8286,0.5172,-0.2718,-0.7041,0.6561,-0.2718,-0.7041,0.6561,-0.2142,-0.8286,0.5172,-0.311,-0.8286,0.4654,-0.2718,-0.7041,0.6561,-0.311,-0.8286,0.4654,-0.3945,-0.7041,0.5905,-0.3945,-0.7041,0.5905,-0.311,-0.8286,0.4654,-0.3958,-0.8286,0.3958,-0.3945,-0.7041,0.5905,-0.3958,-0.8286,0.3958,-0.5021,-0.7041,0.5021,-0.5021,-0.7041,0.5021,-0.3958,-0.8286,0.3958,-0.4654,-0.8286,0.311,-0.5021,-0.7041,0.5021,-0.4654,-0.8286,0.311,-0.5905,-0.7041,0.3945,-0.5905,-0.7041,0.3945,-0.4654,-0.8286,0.311,-0.5172,-0.8286,0.2142,-0.5905,-0.7041,0.3945,-0.5172,-0.8286,0.2142,-0.6561,-0.7041,0.2718,-0.6561,-0.7041,0.2718,-0.5172,-0.8286,0.2142,-0.549,-0.8286,0.1092,-0.6561,-0.7041,0.2718,-0.549,-0.8286,0.1092,-0.6965,-0.7041,0.1385,-0.6965,-0.7041,0.1385,-0.549,-0.8286,0.1092,-0.5598,-0.8286,0.0,-0.6965,-0.7041,0.1385,-0.5598,-0.8286,0.0,-0.7101,-0.7041,0.0,-0.7101,-0.7041,0.0,-0.5598,-0.8286,0.0,-0.549,-0.8286,-0.1092,-0.7101,-0.7041,0.0,-0.549,-0.8286,-0.1092,-0.6965,-0.7041,-0.1385,-0.6965,-0.7041,-0.1385,-0.549,-0.8286,-0.1092,-0.5172,-0.8286,-0.2142,-0.6965,-0.7041,-0.1385,-0.5172,-0.8286,-0.2142,-0.6561,-0.7041,-0.2718,-0.6561,-0.7041,-0.2718,-0.5172,-0.8286,-0.2142,-0.4654,-0.8286,-0.311,-0.6561,-0.7041,-0.2718,-0.4654,-0.8286,-0.311,-0.5905,-0.7041,-0.3945,-0.5905,-0.7041,-0.3945,-0.4654,-0.8286,-0.311,-0.3958,-0.8286,-0.3958,-0.5905,-0.7041,-0.3945,-0.3958,-0.8286,-0.3958,-0.5021,-0.7041,-0.5021,-0.5021,-0.7041,-0.5021,-0.3958,-0.8286,-0.3958,-0.311,-0.8286,-0.4654,-0.5021,-0.7041,-0.5021,-0.311,-0.8286,-0.4654,-0.3945,-0.7041,-0.5905,-0.3945,-0.7041,-0.5905,-0.311,-0.8286,-0.4654,-0.2142,-0.8286,-0.5172,-0.3945,-0.7041,-0.5905,-0.2142,-0.8286,-0.5172,-0.2718,-0.7041,-0.6561,-0.2718,-0.7041,-0.6561,-0.2142,-0.8286,-0.5172,-0.1092,-0.8286,-0.549,-0.2718,-0.7041,-0.6561,-0.1092,-0.8286,-0.549,-0.1385,-0.7041,-0.6965,-0.1385,-0.7041,-0.6965,-0.1092,-0.8286,-0.549,0.0,-0.8286,-0.5598,-0.1385,-0.7041,-0.6965,0.0,-0.8286,-0.5598,0.0,-0.7041,-0.7101,0.0,-0.7041,-0.7101,0.0,-0.8286,-0.5598,0.1092,-0.8286,-0.549,0.0,-0.7041,-0.7101,0.1092,-0.8286,-0.549,0.1385,-0.7041,-0.6965,0.1385,-0.7041,-0.6965,0.1092,-0.8286,-0.549,0.2142,-0.8286,-0.5172,0.1385,-0.7041,-0.6965,0.2142,-0.8286,-0.5172,0.2718,-0.7041,-0.6561,0.2718,-0.7041,-0.6561,0.2142,-0.8286,-0.5172,0.311,-0.8286,-0.4654,0.2718,-0.7041,-0.6561,0.311,-0.8286,-0.4654,0.3945,-0.7041,-0.5905,0.3945,-0.7041,-0.5905,0.311,-0.8286,-0.4654,0.3958,-0.8286,-0.3958,0.3945,-0.7041,-0.5905,0.3958,-0.8286,-0.3958,0.5021,-0.7041,-0.5021,0.5021,-0.7041,-0.5021,0.3958,-0.8286,-0.3958,0.4654,-0.8286,-0.311,0.5021,-0.7041,-0.5021,0.4654,-0.8286,-0.311,0.5905,-0.7041,-0.3945,0.5905,-0.7041,-0.3945,0.4654,-0.8286,-0.311,0.5172,-0.8286,-0.2142,0.5905,-0.7041,-0.3945,0.5172,-0.8286,-0.2142,0.6561,-0.7041,-0.2718,0.6561,-0.7041,-0.2718,0.5172,-0.8286,-0.2142,0.549,-0.8286,-0.1092,0.6561,-0.7041,-0.2718,0.549,-0.8286,-0.1092,0.6965,-0.7041,-0.1385,0.6965,-0.7041,-0.1385,0.549,-0.8286,-0.1092,0.5598,-0.8286,0.0,0.6965,-0.7041,-0.1385,0.5598,-0.8286,0.0,0.7101,-0.7041,0.0,0.7101,-0.7041,0.0,0.5598,-0.8286,0.0,0.549,-0.8286,0.1092,0.7101,-0.7041,0.0,0.549,-0.8286,0.1092,0.6965,-0.7041,0.1385,0.6965,-0.7041,0.1385,0.549,-0.8286,0.1092,0.5172,-0.8286,0.2142,0.6965,-0.7041,0.1385,0.5172,-0.8286,0.2142,0.6561,-0.7041,0.2718,0.6561,-0.7041,0.2718,0.5172,-0.8286,0.2142,0.4654,-0.8286,0.311,0.6561,-0.7041,0.2718,0.4654,-0.8286,0.311,0.5905,-0.7041,0.3945,0.5905,-0.7041,0.3945,0.4654,-0.8286,0.311,0.3958,-0.8286,0.3958,0.5905,-0.7041,0.3945,0.3958,-0.8286,0.3958,0.5021,-0.7041,0.5021,0.5021,-0.7041,0.5021,0.3958,-0.8286,0.3958,0.311,-0.8286,0.4654,0.5021,-0.7041,0.5021,0.311,-0.8286,0.4654,0.3945,-0.7041,0.5905,0.3945,-0.7041,0.5905,0.311,-0.8286,0.4654,0.2142,-0.8286,0.5172,0.3945,-0.7041,0.5905,0.2142,-0.8286,0.5172,0.2718,-0.7041,0.6561,0.2718,-0.7041,0.6561,0.2142,-0.8286,0.5172,0.1092,-0.8286,0.549,0.2718,-0.7041,0.6561,0.1092,-0.8286,0.549,0.1385,-0.7041,0.6965,0.1385,-0.7041,0.6965,0.1092,-0.8286,0.549,0.0,-0.8286,0.5598,0.1385,-0.7041,0.6965,0.0,-0.8286,0.5598,0.0,-0.7041,0.7101,0.0,-0.8286,0.5598,0.0,-0.9217,0.3879,-0.0757,-0.9217,0.3804,0.0,-0.8286,0.5598,-0.0757,-0.9217,0.3804,-0.1092,-0.8286,0.549,-0.1092,-0.8286,0.549,-0.0757,-0.9217,0.3804,-0.1484,-0.9217,0.3584,-0.1092,-0.8286,0.549,-0.1484,-0.9217,0.3584,-0.2142,-0.8286,0.5172,-0.2142,-0.8286,0.5172,-0.1484,-0.9217,0.3584,-0.2155,-0.9217,0.3225,-0.2142,-0.8286,0.5172,-0.2155,-0.9217,0.3225,-0.311,-0.8286,0.4654,-0.311,-0.8286,0.4654,-0.2155,-0.9217,0.3225,-0.2743,-0.9217,0.2743,-0.311,-0.8286,0.4654,-0.2743,-0.9217,0.2743,-0.3958,-0.8286,0.3958,-0.3958,-0.8286,0.3958,-0.2743,-0.9217,0.2743,-0.3225,-0.9217,0.2155,-0.3958,-0.8286,0.3958,-0.3225,-0.9217,0.2155,-0.4654,-0.8286,0.311,-0.4654,-0.8286,0.311,-0.3225,-0.9217,0.2155,-0.3584,-0.9217,0.1484,-0.4654,-0.8286,0.311,-0.3584,-0.9217,0.1484,-0.5172,-0.8286,0.2142,-0.5172,-0.8286,0.2142,-0.3584,-0.9217,0.1484,-0.3804,-0.9217,0.0757,-0.5172,-0.8286,0.2142,-0.3804,-0.9217,0.0757,-0.549,-0.8286,0.1092,-0.549,-0.8286,0.1092,-0.3804,-0.9217,0.0757,-0.3879,-0.9217,0.0,-0.549,-0.8286,0.1092,-0.3879,-0.9217,0.0,-0.5598,-0.8286,0.0,-0.5598,-0.8286,0.0,-0.3879,-0.9217,0.0,-0.3804,-0.9217,-0.0757,-0.5598,-0.8286,0.0,-0.3804,-0.9217,-0.0757,-0.549,-0.8286,-0.1092,-0.549,-0.8286,-0.1092,-0.3804,-0.9217,-0.0757,-0.3584,-0.9217,-0.1484,-0.549,-0.8286,-0.1092,-0.3584,-0.9217,-0.1484,-0.5172,-0.8286,-0.2142,-0.5172,-0.8286,-0.2142,-0.3584,-0.9217,-0.1484,-0.3225,-0.9217,-0.2155,-0.5172,-0.8286,-0.2142,-0.3225,-0.9217,-0.2155,-0.4654,-0.8286,-0.311,-0.4654,-0.8286,-0.311,-0.3225,-0.9217,-0.2155,-0.2743,-0.9217,-0.2743,-0.4654,-0.8286,-0.311,-0.2743,-0.9217,-0.2743,-0.3958,-0.8286,-0.3958,-0.3958,-0.8286,-0.3958,-0.2743,-0.9217,-0.2743,-0.2155,-0.9217,-0.3225,-0.3958,-0.8286,-0.3958,-0.2155,-0.9217,-0.3225,-0.311,-0.8286,-0.4654,-0.311,-0.8286,-0.4654,-0.2155,-0.9217,-0.3225,-0.1484,-0.9217,-0.3584,-0.311,-0.8286,-0.4654,-0.1484,-0.9217,-0.3584,-0.2142,-0.8286,-0.5172,-0.2142,-0.8286,-0.5172,-0.1484,-0.9217,-0.3584,-0.0757,-0.9217,-0.3804,-0.2142,-0.8286,-0.5172,-0.0757,-0.9217,-0.3804,-0.1092,-0.8286,-0.549,-0.1092,-0.8286,-0.549,-0.0757,-0.9217,-0.3804,0.0,-0.9217,-0.3879,-0.1092,-0.8286,-0.549,0.0,-0.9217,-0.3879,0.0,-0.8286,-0.5598,0.0,-0.8286,-0.5598,0.0,-0.9217,-0.3879,0.0757,-0.9217,-0.3804,0.0,-0.8286,-0.5598,0.0757,-0.9217,-0.3804,0.1092,-0.8286,-0.549,0.1092,-0.8286,-0.549,0.0757,-0.9217,-0.3804,0.1484,-0.9217,-0.3584,0.1092,-0.8286,-0.549,0.1484,-0.9217,-0.3584,0.2142,-0.8286,-0.5172,0.2142,-0.8286,-0.5172,0.1484,-0.9217,-0.3584,0.2155,-0.9217,-0.3225,0.2142,-0.8286,-0.5172,0.2155,-0.9217,-0.3225,0.311,-0.8286,-0.4654,0.311,-0.8286,-0.4654,0.2155,-0.9217,-0.3225,0.2743,-0.9217,-0.2743,0.311,-0.8286,-0.4654,0.2743,-0.9217,-0.2743,0.3958,-0.8286,-0.3958,0.3958,-0.8286,-0.3958,0.2743,-0.9217,-0.2743,0.3225,-0.9217,-0.2155,0.3958,-0.8286,-0.3958,0.3225,-0.9217,-0.2155,0.4654,-0.8286,-0.311,0.4654,-0.8286,-0.311,0.3225,-0.9217,-0.2155,0.3584,-0.9217,-0.1484,0.4654,-0.8286,-0.311,0.3584,-0.9217,-0.1484,0.5172,-0.8286,-0.2142,0.5172,-0.8286,-0.2142,0.3584,-0.9217,-0.1484,0.3804,-0.9217,-0.0757,0.5172,-0.8286,-0.2142,0.3804,-0.9217,-0.0757,0.549,-0.8286,-0.1092,0.549,-0.8286,-0.1092,0.3804,-0.9217,-0.0757,0.3879,-0.9217,0.0,0.549,-0.8286,-0.1092,0.3879,-0.9217,0.0,0.5598,-0.8286,0.0,0.5598,-0.8286,0.0,0.3879,-0.9217,0.0,0.3804,-0.9217,0.0757,0.5598,-0.8286,0.0,0.3804,-0.9217,0.0757,0.549,-0.8286,0.1092,0.549,-0.8286,0.1092,0.3804,-0.9217,0.0757,0.3584,-0.9217,0.1484,0.549,-0.8286,0.1092,0.3584,-0.9217,0.1484,0.5172,-0.8286,0.2142,0.5172,-0.8286,0.2142,0.3584,-0.9217,0.1484,0.3225,-0.9217,0.2155,0.5172,-0.8286,0.2142,0.3225,-0.9217,0.2155,0.4654,-0.8286,0.311,0.4654,-0.8286,0.311,0.3225,-0.9217,0.2155,0.2743,-0.9217,0.2743,0.4654,-0.8286,0.311,0.2743,-0.9217,0.2743,0.3958,-0.8286,0.3958,0.3958,-0.8286,0.3958,0.2743,-0.9217,0.2743,0.2155,-0.9217,0.3225,0.3958,-0.8286,0.3958,0.2155,-0.9217,0.3225,0.311,-0.8286,0.4654,0.311,-0.8286,0.4654,0.2155,-0.9217,0.3225,0.1484,-0.9217,0.3584,0.311,-0.8286,0.4654,0.1484,-0.9217,0.3584,0.2142,-0.8286,0.5172,0.2142,-0.8286,0.5172,0.1484,-0.9217,0.3584,0.0757,-0.9217,0.3804,0.2142,-0.8286,0.5172,0.0757,-0.9217,0.3804,0.1092,-0.8286,0.549,0.1092,-0.8286,0.549,0.0757,-0.9217,0.3804,0.0,-0.9217,0.3879,0.1092,-0.8286,0.549,0.0,-0.9217,0.3879,0.0,-0.8286,0.5598,0.0,-0.9217,0.3879,0.0,-0.9796,0.201,-0.0392,-0.9796,0.1971,0.0,-0.9217,0.3879,-0.0392,-0.9796,0.1971,-0.0757,-0.9217,0.3804,-0.0757,-0.9217,0.3804,-0.0392,-0.9796,0.1971,-0.0769,-0.9796,0.1857,-0.0757,-0.9217,0.3804,-0.0769,-0.9796,0.1857,-0.1484,-0.9217,0.3584,-0.1484,-0.9217,0.3584,-0.0769,-0.9796,0.1857,-0.1117,-0.9796,0.1671,-0.1484,-0.9217,0.3584,-0.1117,-0.9796,0.1671,-0.2155,-0.9217,0.3225,-0.2155,-0.9217,0.3225,-0.1117,-0.9796,0.1671,-0.1421,-0.9796,0.1421,-0.2155,-0.9217,0.3225,-0.1421,-0.9796,0.1421,-0.2743,-0.9217,0.2743,-0.2743,-0.9217,0.2743,-0.1421,-0.9796,0.1421,-0.1671,-0.9796,0.1117,-0.2743,-0.9217,0.2743,-0.1671,-0.9796,0.1117,-0.3225,-0.9217,0.2155,-0.3225,-0.9217,0.2155,-0.1671,-0.9796,0.1117,-0.1857,-0.9796,0.0769,-0.3225,-0.9217,0.2155,-0.1857,-0.9796,0.0769,-0.3584,-0.9217,0.1484,-0.3584,-0.9217,0.1484,-0.1857,-0.9796,0.0769,-0.1971,-0.9796,0.0392,-0.3584,-0.9217,0.1484,-0.1971,-0.9796,0.0392,-0.3804,-0.9217,0.0757,-0.3804,-0.9217,0.0757,-0.1971,-0.9796,0.0392,-0.201,-0.9796,0.0,-0.3804,-0.9217,0.0757,-0.201,-0.9796,0.0,-0.3879,-0.9217,0.0,-0.3879,-0.9217,0.0,-0.201,-0.9796,0.0,-0.1971,-0.9796,-0.0392,-0.3879,-0.9217,0.0,-0.1971,-0.9796,-0.0392,-0.3804,-0.9217,-0.0757,-0.3804,-0.9217,-0.0757,-0.1971,-0.9796,-0.0392,-0.1857,-0.9796,-0.0769,-0.3804,-0.9217,-0.0757,-0.1857,-0.9796,-0.0769,-0.3584,-0.9217,-0.1484,-0.3584,-0.9217,-0.1484,-0.1857,-0.9796,-0.0769,-0.1671,-0.9796,-0.1117,-0.3584,-0.9217,-0.1484,-0.1671,-0.9796,-0.1117,-0.3225,-0.9217,-0.2155,-0.3225,-0.9217,-0.2155,-0.1671,-0.9796,-0.1117,-0.1421,-0.9796,-0.1421,-0.3225,-0.9217,-0.2155,-0.1421,-0.9796,-0.1421,-0.2743,-0.9217,-0.2743,-0.2743,-0.9217,-0.2743,-0.1421,-0.9796,-0.1421,-0.1117,-0.9796,-0.1671,-0.2743,-0.9217,-0.2743,-0.1117,-0.9796,-0.1671,-0.2155,-0.9217,-0.3225,-0.2155,-0.9217,-0.3225,-0.1117,-0.9796,-0.1671,-0.0769,-0.9796,-0.1857,-0.2155,-0.9217,-0.3225,-0.0769,-0.9796,-0.1857,-0.1484,-0.9217,-0.3584,-0.1484,-0.9217,-0.3584,-0.0769,-0.9796,-0.1857,-0.0392,-0.9796,-0.1971,-0.1484,-0.9217,-0.3584,-0.0392,-0.9796,-0.1971,-0.0757,-0.9217,-0.3804,-0.0757,-0.9217,-0.3804,-0.0392,-0.9796,-0.1971,0.0,-0.9796,-0.201,-0.0757,-0.9217,-0.3804,0.0,-0.9796,-0.201,0.0,-0.9217,-0.3879,0.0,-0.9217,-0.3879,0.0,-0.9796,-0.201,0.0392,-0.9796,-0.1971,0.0,-0.9217,-0.3879,0.0392,-0.9796,-0.1971,0.0757,-0.9217,-0.3804,0.0757,-0.9217,-0.3804,0.0392,-0.9796,-0.1971,0.0769,-0.9796,-0.1857,0.0757,-0.9217,-0.3804,0.0769,-0.9796,-0.1857,0.1484,-0.9217,-0.3584,0.1484,-0.9217,-0.3584,0.0769,-0.9796,-0.1857,0.1117,-0.9796,-0.1671,0.1484,-0.9217,-0.3584,0.1117,-0.9796,-0.1671,0.2155,-0.9217,-0.3225,0.2155,-0.9217,-0.3225,0.1117,-0.9796,-0.1671,0.1421,-0.9796,-0.1421,0.2155,-0.9217,-0.3225,0.1421,-0.9796,-0.1421,0.2743,-0.9217,-0.2743,0.2743,-0.9217,-0.2743,0.1421,-0.9796,-0.1421,0.1671,-0.9796,-0.1117,0.2743,-0.9217,-0.2743,0.1671,-0.9796,-0.1117,0.3225,-0.9217,-0.2155,0.3225,-0.9217,-0.2155,0.1671,-0.9796,-0.1117,0.1857,-0.9796,-0.0769,0.3225,-0.9217,-0.2155,0.1857,-0.9796,-0.0769,0.3584,-0.9217,-0.1484,0.3584,-0.9217,-0.1484,0.1857,-0.9796,-0.0769,0.1971,-0.9796,-0.0392,0.3584,-0.9217,-0.1484,0.1971,-0.9796,-0.0392,0.3804,-0.9217,-0.0757,0.3804,-0.9217,-0.0757,0.1971,-0.9796,-0.0392,0.201,-0.9796,0.0,0.3804,-0.9217,-0.0757,0.201,-0.9796,0.0,0.3879,-0.9217,0.0,0.3879,-0.9217,0.0,0.201,-0.9796,0.0,0.1971,-0.9796,0.0392,0.3879,-0.9217,0.0,0.1971,-0.9796,0.0392,0.3804,-0.9217,0.0757,0.3804,-0.9217,0.0757,0.1971,-0.9796,0.0392,0.1857,-0.9796,0.0769,0.3804,-0.9217,0.0757,0.1857,-0.9796,0.0769,0.3584,-0.9217,0.1484,0.3584,-0.9217,0.1484,0.1857,-0.9796,0.0769,0.1671,-0.9796,0.1117,0.3584,-0.9217,0.1484,0.1671,-0.9796,0.1117,0.3225,-0.9217,0.2155,0.3225,-0.9217,0.2155,0.1671,-0.9796,0.1117,0.1421,-0.9796,0.1421,0.3225,-0.9217,0.2155,0.1421,-0.9796,0.1421,0.2743,-0.9217,0.2743,0.2743,-0.9217,0.2743,0.1421,-0.9796,0.1421,0.1117,-0.9796,0.1671,0.2743,-0.9217,0.2743,0.1117,-0.9796,0.1671,0.2155,-0.9217,0.3225,0.2155,-0.9217,0.3225,0.1117,-0.9796,0.1671,0.0769,-0.9796,0.1857,0.2155,-0.9217,0.3225,0.0769,-0.9796,0.1857,0.1484,-0.9217,0.3584,0.1484,-0.9217,0.3584,0.0769,-0.9796,0.1857,0.0392,-0.9796,0.1971,0.1484,-0.9217,0.3584,0.0392,-0.9796,0.1971,0.0757,-0.9217,0.3804,0.0757,-0.9217,0.3804,0.0392,-0.9796,0.1971,0.0,-0.9796,0.201,0.0757,-0.9217,0.3804,0.0,-0.9796,0.201,0.0,-0.9217,0.3879,0.0,-1.0,0.0,-0.0392,-0.9796,0.1971,0.0,-0.9796,0.201,0.0,-1.0,0.0,-0.0769,-0.9796,0.1857,-0.0392,-0.9796,0.1971,0.0,-1.0,0.0,-0.1117,-0.9796,0.1671,-0.0769,-0.9796,0.1857,0.0,-1.0,0.0,-0.1421,-0.9796,0.1421,-0.1117,-0.9796,0.1671,0.0,-1.0,0.0,-0.1671,-0.9796,0.1117,-0.1421,-0.9796,0.1421,0.0,-1.0,0.0,-0.1857,-0.9796,0.0769,-0.1671,-0.9796,0.1117,0.0,-1.0,0.0,-0.1971,-0.9796,0.0392,-0.1857,-0.9796,0.0769,0.0,-1.0,0.0,-0.201,-0.9796,0.0,-0.1971,-0.9796,0.0392,0.0,-1.0,0.0,-0.1971,-0.9796,-0.0392,-0.201,-0.9796,0.0,0.0,-1.0,0.0,-0.1857,-0.9796,-0.0769,-0.1971,-0.9796,-0.0392,0.0,-1.0,0.0,-0.1671,-0.9796,-0.1117,-0.1857,-0.9796,-0.0769,0.0,-1.0,0.0,-0.1421,-0.9796,-0.1421,-0.1671,-0.9796,-0.1117,0.0,-1.0,0.0,-0.1117,-0.9796,-0.1671,-0.1421,-0.9796,-0.1421,0.0,-1.0,0.0,-0.0769,-0.9796,-0.1857,-0.1117,-0.9796,-0.1671,0.0,-1.0,0.0,-0.0392,-0.9796,-0.1971,-0.0769,-0.9796,-0.1857,0.0,-1.0,0.0,0.0,-0.9796,-0.201,-0.0392,-0.9796,-0.1971,0.0,-1.0,0.0,0.0392,-0.9796,-0.1971,0.0,-0.9796,-0.201,0.0,-1.0,0.0,0.0769,-0.9796,-0.1857,0.0392,-0.9796,-0.1971,0.0,-1.0,0.0,0.1117,-0.9796,-0.1671,0.0769,-0.9796,-0.1857,0.0,-1.0,0.0,0.1421,-0.9796,-0.1421,0.1117,-0.9796,-0.1671,0.0,-1.0,0.0,0.1671,-0.9796,-0.1117,0.1421,-0.9796,-0.1421,0.0,-1.0,0.0,0.1857,-0.9796,-0.0769,0.1671,-0.9796,-0.1117,0.0,-1.0,0.0,0.1971,-0.9796,-0.0392,0.1857,-0.9796,-0.0769,0.0,-1.0,0.0,0.201,-0.9796,0.0,0.1971,-0.9796,-0.0392,0.0,-1.0,0.0,0.1971,-0.9796,0.0392,0.201,-0.9796,0.0,0.0,-1.0,0.0,0.1857,-0.9796,0.0769,0.1971,-0.9796,0.0392,0.0,-1.0,0.0,0.1671,-0.9796,0.1117,0.1857,-0.9796,0.0769,0.0,-1.0,0.0,0.1421,-0.9796,0.1421,0.1671,-0.9796,0.1117,0.0,-1.0,0.0,0.1117,-0.9796,0.1671,0.1421,-0.9796,0.1421,0.0,-1.0,0.0,0.0769,-0.9796,0.1857,0.1117,-0.9796,0.1671,0.0,-1.0,0.0,0.0392,-0.9796,0.1971,0.0769,-0.9796,0.1857,0.0,-1.0,0.0,0.0,-0.9796,0.201,0.0392,-0.9796,0.1971],"tangents":null,"uvs":[0.0,2.0,0.0,1.9375,0.0312,1.9375,0.0312,2.0,0.0312,1.9375,0.0625,1.9375,0.0625,2.0,0.0625,1.9375,0.0938,1.9375,0.0938,2.0,0.0938,1.9375,0.125,1.9375,0.125,2.0,0.125,1.9375,0.1562,1.9375,0.1562,2.0,0.1562,1.9375,0.1875,1.9375,0.1875,2.0,0.1875,1.9375,0.2187,1.9375,0.2187,2.0,0.2187,1.9375,0.25,1.9375,0.25,2.0,0.25,1.9375,0.2812,1.9375,0.2812,2.0,0.2812,1.9375,0.3125,1.9375,0.3125,2.0,0.3125,1.9375,0.3437,1.9375,0.3437,2.0,0.3437,1.9375,0.375,1.9375,0.375,2.0,0.375,1.9375,0.4062,1.9375,0.4062,2.0,0.4062,1.9375,0.4375,1.9375,0.4375,2.0,0.4375,1.9375,0.4688,1.9375,0.4688,2.0,0.4688,1.9375,0.5,1.9375,0.5,2.0,0.5,1.9375,0.5313,1.9375,0.5313,2.0,0.5313,1.9375,0.5625,1.9375,0.5625,2.0,0.5625,1.9375,0.5938,1.9375,0.5938,2.0,0.5938,1.9375,0.625,1.9375,0.625,2.0,0.625,1.9375,0.6563,1.9375,0.6563,2.0,0.6563,1.9375,0.6875,1.9375,0.6875,2.0,0.6875,1.9375,0.7188,1.9375,0.7188,2.0,0.7188,1.9375,0.75,1.9375,0.75,2.0,0.75,1.9375,0.7813,1.9375,0.7813,2.0,0.7813,1.9375,0.8125,1.9375,0.8125,2.0,0.8125,1.9375,0.8438,1.9375,0.8438,2.0,0.8438,1.9375,0.875,1.9375,0.875,2.0,0.875,1.9375,0.9063,1.9375,0.9063,2.0,0.9063,1.9375,0.9375,1.9375,0.9375,2.0,0.9375,1.9375,0.9688,1.9375,0.9688,2.0,0.9688,1.9375,1.0,1.9375,0.0,1.9375,0.0,1.875,0.0312,1.875,0.0,1.9375,0.0312,1.875,0.0312,1.9375,0.0312,1.9375,0.0312,1.875,0.0625,1.875,0.0312,1.9375,0.0625,1.875,0.0625,1.9375,0.0625,1.9375,0.0625,1.875,0.0938,1.875,0.0625,1.9375,0.0938,1.875,0.0938,1.9375,0.0938,1.9375,0.0938,1.875,0.125,1.875,0.0938,1.9375,0.125,1.875,0.125,1.9375,0.125,1.9375,0.125,1.875,0.1562,1.875,0.125,1.9375,0.1562,1.875,0.1562,1.9375,0.1562,1.9375,0.1562,1.875,0.1875,1.875,0.1562,1.9375,0.1875,1.875,0.1875,1.9375,0.1875,1.9375,0.1875,1.875,0.2187,1.875,0.1875,1.9375,0.2187,1.875,0.2187,1.9375,0.2187,1.9375,0.2187,1.875,0.25,1.875,0.2187,1.9375,0.25,1.875,0.25,1.9375,0.25,1.9375,0.25,1.875,0.2812,1.875,0.25,1.9375,0.2812,1.875,0.2812,1.9375,0.2812,1.9375,0.2812,1.875,0.3125,1.875,0.2812,1.9375,0.3125,1.875,0.3125,1.9375,0.3125,1.9375,0.3125,1.875,0.3437,1.875,0.3125,1.9375,0.3437,1.875,0.3437,1.9375,0.3437,1.9375,0.3437,1.875,0.375,1.875,0.3437,1.9375,0.375,1.875,0.375,1.9375,0.375,1.9375,0.375,1.875,0.4062,1.875,0.375,1.9375,0.4062,1.875,0.4062,1.9375,0.4062,1.9375,0.4062,1.875,0.4375,1.875,0.4062,1.9375,0.4375,1.875,0.4375,1.9375,0.4375,1.9375,0.4375,1.875,0.4688,1.875,0.4375,1.9375,0.4688,1.875,0.4688,1.9375,0.4688,1.9375,0.4688,1.875,0.5,1.875,0.4688,1.9375,0.5,1.875,0.5,1.9375,0.5,1.9375,0.5,1.875,0.5313,1.875,0.5,1.9375,0.5313,1.875,0.5313,1.9375,0.5313,1.9375,0.5313,1.875,0.5625,1.875,0.5313,1.9375,0.5625,1.875,0.5625,1.9375,0.5625,1.9375,0.5625,1.875,0.5938,1.875,0.5625,1.9375,0.5938,1.875,0.5938,1.9375,0.5938,1.9375,0.5938,1.875,0.625,1.875,0.5938,1.9375,0.625,1.875,0.625,1.9375,0.625,1.9375,0.625,1.875,0.6563,1.875,0.625,1.9375,0.6563,1.875,0.6563,1.9375,0.6563,1.9375,0.6563,1.875,0.6875,1.875,0.6563,1.9375,0.6875,1.875,0.6875,1.9375,0.6875,1.9375,0.6875,1.875,0.7188,1.875,0.6875,1.9375,0.7188,1.875,0.7188,1.9375,0.7188,1.9375,0.7188,1.875,0.75,1.875,0.7188,1.9375,0.75,1.875,0.75,1.9375,0.75,1.9375,0.75,1.875,0.7813,1.875,0.75,1.9375,0.7813,1.875,0.7813,1.9375,0.7813,1.9375,0.7813,1.875,0.8125,1.875,0.7813,1.9375,0.8125,1.875,0.8125,1.9375,0.8125,1.9375,0.8125,1.875,0.8438,1.875,0.8125,1.9375,0.8438,1.875,0.8438,1.9375,0.8438,1.9375,0.8438,1.875,0.875,1.875,0.8438,1.9375,0.875,1.875,0.875,1.9375,0.875,1.9375,0.875,1.875,0.9063,1.875,0.875,1.9375,0.9063,1.875,0.9063,1.9375,0.9063,1.9375,0.9063,1.875,0.9375,1.875,0.9063,1.9375,0.9375,1.875,0.9375,1.9375,0.9375,1.9375,0.9375,1.875,0.9688,1.875,0.9375,1.9375,0.9688,1.875,0.9688,1.9375,0.9688,1.9375,0.9688,1.875,1.0,1.875,0.9688,1.9375,1.0,1.875,1.0,1.9375,0.0,1.875,0.0,1.8125,0.0312,1.8125,0.0,1.875,0.0312,1.8125,0.0312,1.875,0.0312,1.875,0.0312,1.8125,0.0625,1.8125,0.0312,1.875,0.0625,1.8125,0.0625,1.875,0.0625,1.875,0.0625,1.8125,0.0938,1.8125,0.0625,1.875,0.0938,1.8125,0.0938,1.875,0.0938,1.875,0.0938,1.8125,0.125,1.8125,0.0938,1.875,0.125,1.8125,0.125,1.875,0.125,1.875,0.125,1.8125,0.1562,1.8125,0.125,1.875,0.1562,1.8125,0.1562,1.875,0.1562,1.875,0.1562,1.8125,0.1875,1.8125,0.1562,1.875,0.1875,1.8125,0.1875,1.875,0.1875,1.875,0.1875,1.8125,0.2187,1.8125,0.1875,1.875,0.2187,1.8125,0.2187,1.875,0.2187,1.875,0.2187,1.8125,0.25,1.8125,0.2187,1.875,0.25,1.8125,0.25,1.875,0.25,1.875,0.25,1.8125,0.2812,1.8125,0.25,1.875,0.2812,1.8125,0.2812,1.875,0.2812,1.875,0.2812,1.8125,0.3125,1.8125,0.2812,1.875,0.3125,1.8125,0.3125,1.875,0.3125,1.875,0.3125,1.8125,0.3437,1.8125,0.3125,1.875,0.3437,1.8125,0.3437,1.875,0.3437,1.875,0.3437,1.8125,0.375,1.8125,0.3437,1.875,0.375,1.8125,0.375,1.875,0.375,1.875,0.375,1.8125,0.4062,1.8125,0.375,1.875,0.4062,1.8125,0.4062,1.875,0.4062,1.875,0.4062,1.8125,0.4375,1.8125,0.4062,1.875,0.4375,1.8125,0.4375,1.875,0.4375,1.875,0.4375,1.8125,0.4688,1.8125,0.4375,1.875,0.4688,1.8125,0.4688,1.875,0.4688,1.875,0.4688,1.8125,0.5,1.8125,0.4688,1.875,0.5,1.8125,0.5,1.875,0.5,1.875,0.5,1.8125,0.5313,1.8125,0.5,1.875,0.5313,1.8125,0.5313,1.875,0.5313,1.875,0.5313,1.8125,0.5625,1.8125,0.5313,1.875,0.5625,1.8125,0.5625,1.875,0.5625,1.875,0.5625,1.8125,0.5938,1.8125,0.5625,1.875,0.5938,1.8125,0.5938,1.875,0.5938,1.875,0.5938,1.8125,0.625,1.8125,0.5938,1.875,0.625,1.8125,0.625,1.875,0.625,1.875,0.625,1.8125,0.6563,1.8125,0.625,1.875,0.6563,1.8125,0.6563,1.875,0.6563,1.875,0.6563,1.8125,0.6875,1.8125,0.6563,1.875,0.6875,1.8125,0.6875,1.875,0.6875,1.875,0.6875,1.8125,0.7188,1.8125,0.6875,1.875,0.7188,1.8125,0.7188,1.875,0.7188,1.875,0.7188,1.8125,0.75,1.8125,0.7188,1.875,0.75,1.8125,0.75,1.875,0.75,1.875,0.75,1.8125,0.7813,1.8125,0.75,1.875,0.7813,1.8125,0.7813,1.875,0.7813,1.875,0.7813,1.8125,0.8125,1.8125,0.7813,1.875,0.8125,1.8125,0.8125,1.875,0.8125,1.875,0.8125,1.8125,0.8438,1.8125,0.8125,1.875,0.8438,1.8125,0.8438,1.875,0.8438,1.875,0.8438,1.8125,0.875,1.8125,0.8438,1.875,0.875,1.8125,0.875,1.875,0.875,1.875,0.875,1.8125,0.9063,1.8125,0.875,1.875,0.9063,1.8125,0.9063,1.875,0.9063,1.875,0.9063,1.8125,0.9375,1.8125,0.9063,1.875,0.9375,1.8125,0.9375,1.875,0.9375,1.875,0.9375,1.8125,0.9688,1.8125,0.9375,1.875,0.9688,1.8125,0.9688,1.875,0.9688,1.875,0.9688,1.8125,1.0,1.8125,0.9688,1.875,1.0,1.8125,1.0,1.875,0.0,1.8125,0.0,1.75,0.0312,1.75,0.0,1.8125,0.0312,1.75,0.0312,1.8125,0.0312,1.8125,0.0312,1.75,0.0625,1.75,0.0312,1.8125,0.0625,1.75,0.0625,1.8125,0.0625,1.8125,0.0625,1.75,0.0938,1.75,0.0625,1.8125,0.0938,1.75,0.0938,1.8125,0.0938,1.8125,0.0938,1.75,0.125,1.75,0.0938,1.8125,0.125,1.75,0.125,1.8125,0.125,1.8125,0.125,1.75,0.1562,1.75,0.125,1.8125,0.1562,1.75,0.1562,1.8125,0.1562,1.8125,0.1562,1.75,0.1875,1.75,0.1562,1.8125,0.1875,1.75,0.1875,1.8125,0.1875,1.8125,0.1875,1.75,0.2187,1.75,0.1875,1.8125,0.2187,1.75,0.2187,1.8125,0.2187,1.8125,0.2187,1.75,0.25,1.75,0.2187,1.8125,0.25,1.75,0.25,1.8125,0.25,1.8125,0.25,1.75,0.2812,1.75,0.25,1.8125,0.2812,1.75,0.2812,1.8125,0.2812,1.8125,0.2812,1.75,0.3125,1.75,0.2812,1.8125,0.3125,1.75,0.3125,1.8125,0.3125,1.8125,0.3125,1.75,0.3437,1.75,0.3125,1.8125,0.3437,1.75,0.3437,1.8125,0.3437,1.8125,0.3437,1.75,0.375,1.75,0.3437,1.8125,0.375,1.75,0.375,1.8125,0.375,1.8125,0.375,1.75,0.4062,1.75,0.375,1.8125,0.4062,1.75,0.4062,1.8125,0.4062,1.8125,0.4062,1.75,0.4375,1.75,0.4062,1.8125,0.4375,1.75,0.4375,1.8125,0.4375,1.8125,0.4375,1.75,0.4688,1.75,0.4375,1.8125,0.4688,1.75,0.4688,1.8125,0.4688,1.8125,0.4688,1.75,0.5,1.75,0.4688,1.8125,0.5,1.75,0.5,1.8125,0.5,1.8125,0.5,1.75,0.5313,1.75,0.5,1.8125,0.5313,1.75,0.5313,1.8125,0.5313,1.8125,0.5313,1.75,0.5625,1.75,0.5313,1.8125,0.5625,1.75,0.5625,1.8125,0.5625,1.8125,0.5625,1.75,0.5938,1.75,0.5625,1.8125,0.5938,1.75,0.5938,1.8125,0.5938,1.8125,0.5938,1.75,0.625,1.75,0.5938,1.8125,0.625,1.75,0.625,1.8125,0.625,1.8125,0.625,1.75,0.6563,1.75,0.625,1.8125,0.6563,1.75,0.6563,1.8125,0.6563,1.8125,0.6563,1.75,0.6875,1.75,0.6563,1.8125,0.6875,1.75,0.6875,1.8125,0.6875,1.8125,0.6875,1.75,0.7188,1.75,0.6875,1.8125,0.7188,1.75,0.7188,1.8125,0.7188,1.8125,0.7188,1.75,0.75,1.75,0.7188,1.8125,0.75,1.75,0.75,1.8125,0.75,1.8125,0.75,1.75,0.7813,1.75,0.75,1.8125,0.7813,1.75,0.7813,1.8125,0.7813,1.8125,0.7813,1.75,0.8125,1.75,0.7813,1.8125,0.8125,1.75,0.8125,1.8125,0.8125,1.8125,0.8125,1.75,0.8438,1.75,0.8125,1.8125,0.8438,1.75,0.8438,1.8125,0.8438,1.8125,0.8438,1.75,0.875,1.75,0.8438,1.8125,0.875,1.75,0.875,1.8125,0.875,1.8125,0.875,1.75,0.9063,1.75,0.875,1.8125,0.9063,1.75,0.9063,1.8125,0.9063,1.8125,0.9063,1.75,0.9375,1.75,0.9063,1.8125,0.9375,1.75,0.9375,1.8125,0.9375,1.8125,0.9375,1.75,0.9688,1.75,0.9375,1.8125,0.9688,1.75,0.9688,1.8125,0.9688,1.8125,0.9688,1.75,1.0,1.75,0.9688,1.8125,1.0,1.75,1.0,1.8125,0.0,1.75,0.0,1.6875,0.0312,1.6875,0.0,1.75,0.0312,1.6875,0.0312,1.75,0.0312,1.75,0.0312,1.6875,0.0625,1.6875,0.0312,1.75,0.0625,1.6875,0.0625,1.75,0.0625,1.75,0.0625,1.6875,0.0938,1.6875,0.0625,1.75,0.0938,1.6875,0.0938,1.75,0.0938,1.75,0.0938,1.6875,0.125,1.6875,0.0938,1.75,0.125,1.6875,0.125,1.75,0.125,1.75,0.125,1.6875,0.1562,1.6875,0.125,1.75,0.1562,1.6875,0.1562,1.75,0.1562,1.75,0.1562,1.6875,0.1875,1.6875,0.1562,1.75,0.1875,1.6875,0.1875,1.75,0.1875,1.75,0.1875,1.6875,0.2187,1.6875,0.1875,1.75,0.2187,1.6875,0.2187,1.75,0.2187,1.75,0.2187,1.6875,0.25,1.6875,0.2187,1.75,0.25,1.6875,0.25,1.75,0.25,1.75,0.25,1.6875,0.2812,1.6875,0.25,1.75,0.2812,1.6875,0.2812,1.75,0.2812,1.75,0.2812,1.6875,0.3125,1.6875,0.2812,1.75,0.3125,1.6875,0.3125,1.75,0.3125,1.75,0.3125,1.6875,0.3437,1.6875,0.3125,1.75,0.3437,1.6875,0.3437,1.75,0.3437,1.75,0.3437,1.6875,0.375,1.6875,0.3437,1.75,0.375,1.6875,0.375,1.75,0.375,1.75,0.375,1.6875,0.4062,1.6875,0.375,1.75,0.4062,1.6875,0.4062,1.75,0.4062,1.75,0.4062,1.6875,0.4375,1.6875,0.4062,1.75,0.4375,1.6875,0.4375,1.75,0.4375,1.75,0.4375,1.6875,0.4688,1.6875,0.4375,1.75,0.4688,1.6875,0.4688,1.75,0.4688,1.75,0.4688,1.6875,0.5,1.6875,0.4688,1.75,0.5,1.6875,0.5,1.75,0.5,1.75,0.5,1.6875,0.5313,1.6875,0.5,1.75,0.5313,1.6875,0.5313,1.75,0.5313,1.75,0.5313,1.6875,0.5625,1.6875,0.5313,1.75,0.5625,1.6875,0.5625,1.75,0.5625,1.75,0.5625,1.6875,0.5938,1.6875,0.5625,1.75,0.5938,1.6875,0.5938,1.75,0.5938,1.75,0.5938,1.6875,0.625,1.6875,0.5938,1.75,0.625,1.6875,0.625,1.75,0.625,1.75,0.625,1.6875,0.6563,1.6875,0.625,1.75,0.6563,1.6875,0.6563,1.75,0.6563,1.75,0.6563,1.6875,0.6875,1.6875,0.6563,1.75,0.6875,1.6875,0.6875,1.75,0.6875,1.75,0.6875,1.6875,0.7188,1.6875,0.6875,1.75,0.7188,1.6875,0.7188,1.75,0.7188,1.75,0.7188,1.6875,0.75,1.6875,0.7188,1.75,0.75,1.6875,0.75,1.75,0.75,1.75,0.75,1.6875,0.7813,1.6875,0.75,1.75,0.7813,1.6875,0.7813,1.75,0.7813,1.75,0.7813,1.6875,0.8125,1.6875,0.7813,1.75,0.8125,1.6875,0.8125,1.75,0.8125,1.75,0.8125,1.6875,0.8438,1.6875,0.8125,1.75,0.8438,1.6875,0.8438,1.75,0.8438,1.75,0.8438,1.6875,0.875,1.6875,0.8438,1.75,0.875,1.6875,0.875,1.75,0.875,1.75,0.875,1.6875,0.9063,1.6875,0.875,1.75,0.9063,1.6875,0.9063,1.75,0.9063,1.75,0.9063,1.6875,0.9375,1.6875,0.9063,1.75,0.9375,1.6875,0.9375,1.75,0.9375,1.75,0.9375,1.6875,0.9688,1.6875,0.9375,1.75,0.9688,1.6875,0.9688,1.75,0.9688,1.75,0.9688,1.6875,1.0,1.6875,0.9688,1.75,1.0,1.6875,1.0,1.75,0.0,1.6875,0.0,1.625,0.0312,1.625,0.0,1.6875,0.0312,1.625,0.0312,1.6875,0.0312,1.6875,0.0312,1.625,0.0625,1.625,0.0312,1.6875,0.0625,1.625,0.0625,1.6875,0.0625,1.6875,0.0625,1.625,0.0938,1.625,0.0625,1.6875,0.0938,1.625,0.0938,1.6875,0.0938,1.6875,0.0938,1.625,0.125,1.625,0.0938,1.6875,0.125,1.625,0.125,1.6875,0.125,1.6875,0.125,1.625,0.1562,1.625,0.125,1.6875,0.1562,1.625,0.1562,1.6875,0.1562,1.6875,0.1562,1.625,0.1875,1.625,0.1562,1.6875,0.1875,1.625,0.1875,1.6875,0.1875,1.6875,0.1875,1.625,0.2187,1.625,0.1875,1.6875,0.2187,1.625,0.2187,1.6875,0.2187,1.6875,0.2187,1.625,0.25,1.625,0.2187,1.6875,0.25,1.625,0.25,1.6875,0.25,1.6875,0.25,1.625,0.2812,1.625,0.25,1.6875,0.2812,1.625,0.2812,1.6875,0.2812,1.6875,0.2812,1.625,0.3125,1.625,0.2812,1.6875,0.3125,1.625,0.3125,1.6875,0.3125,1.6875,0.3125,1.625,0.3437,1.625,0.3125,1.6875,0.3437,1.625,0.3437,1.6875,0.3437,1.6875,0.3437,1.625,0.375,1.625,0.3437,1.6875,0.375,1.625,0.375,1.6875,0.375,1.6875,0.375,1.625,0.4062,1.625,0.375,1.6875,0.4062,1.625,0.4062,1.6875,0.4062,1.6875,0.4062,1.625,0.4375,1.625,0.4062,1.6875,0.4375,1.625,0.4375,1.6875,0.4375,1.6875,0.4375,1.625,0.4688,1.625,0.4375,1.6875,0.4688,1.625,0.4688,1.6875,0.4688,1.6875,0.4688,1.625,0.5,1.625,0.4688,1.6875,0.5,1.625,0.5,1.6875,0.5,1.6875,0.5,1.625,0.5313,1.625,0.5,1.6875,0.5313,1.625,0.5313,1.6875,0.5313,1.6875,0.5313,1.625,0.5625,1.625,0.5313,1.6875,0.5625,1.625,0.5625,1.6875,0.5625,1.6875,0.5625,1.625,0.5938,1.625,0.5625,1.6875,0.5938,1.625,0.5938,1.6875,0.5938,1.6875,0.5938,1.625,0.625,1.625,0.5938,1.6875,0.625,1.625,0.625,1.6875,0.625,1.6875,0.625,1.625,0.6563,1.625,0.625,1.6875,0.6563,1.625,0.6563,1.6875,0.6563,1.6875,0.6563,1.625,0.6875,1.625,0.6563,1.6875,0.6875,1.625,0.6875,1.6875,0.6875,1.6875,0.6875,1.625,0.7188,1.625,0.6875,1.6875,0.7188,1.625,0.7188,1.6875,0.7188,1.6875,0.7188,1.625,0.75,1.625,0.7188,1.6875,0.75,1.625,0.75,1.6875,0.75,1.6875,0.75,1.625,0.7813,1.625,0.75,1.6875,0.7813,1.625,0.7813,1.6875,0.7813,1.6875,0.7813,1.625,0.8125,1.625,0.7813,1.6875,0.8125,1.625,0.8125,1.6875,0.8125,1.6875,0.8125,1.625,0.8438,1.625,0.8125,1.6875,0.8438,1.625,0.8438,1.6875,0.8438,1.6875,0.8438,1.625,0.875,1.625,0.8438,1.6875,0.875,1.625,0.875,1.6875,0.875,1.6875,0.875,1.625,0.9063,1.625,0.875,1.6875,0.9063,1.625,0.9063,1.6875,0.9063,1.6875,0.9063,1.625,0.9375,1.625,0.9063,1.6875,0.9375,1.625,0.9375,1.6875,0.9375,1.6875,0.9375,1.625,0.9688,1.625,0.9375,1.6875,0.9688,1.625,0.9688,1.6875,0.9688,1.6875,0.9688,1.625,1.0,1.625,0.9688,1.6875,1.0,1.625,1.0,1.6875,0.0,1.625,0.0,1.5625,0.0312,1.5625,0.0,1.625,0.0312,1.5625,0.0312,1.625,0.0312,1.625,0.0312,1.5625,0.0625,1.5625,0.0312,1.625,0.0625,1.5625,0.0625,1.625,0.0625,1.625,0.0625,1.5625,0.0938,1.5625,0.0625,1.625,0.0938,1.5625,0.0938,1.625,0.0938,1.625,0.0938,1.5625,0.125,1.5625,0.0938,1.625,0.125,1.5625,0.125,1.625,0.125,1.625,0.125,1.5625,0.1562,1.5625,0.125,1.625,0.1562,1.5625,0.1562,1.625,0.1562,1.625,0.1562,1.5625,0.1875,1.5625,0.1562,1.625,0.1875,1.5625,0.1875,1.625,0.1875,1.625,0.1875,1.5625,0.2187,1.5625,0.1875,1.625,0.2187,1.5625,0.2187,1.625,0.2187,1.625,0.2187,1.5625,0.25,1.5625,0.2187,1.625,0.25,1.5625,0.25,1.625,0.25,1.625,0.25,1.5625,0.2812,1.5625,0.25,1.625,0.2812,1.5625,0.2812,1.625,0.2812,1.625,0.2812,1.5625,0.3125,1.5625,0.2812,1.625,0.3125,1.5625,0.3125,1.625,0.3125,1.625,0.3125,1.5625,0.3437,1.5625,0.3125,1.625,0.3437,1.5625,0.3437,1.625,0.3437,1.625,0.3437,1.5625,0.375,1.5625,0.3437,1.625,0.375,1.5625,0.375,1.625,0.375,1.625,0.375,1.5625,0.4062,1.5625,0.375,1.625,0.4062,1.5625,0.4062,1.625,0.4062,1.625,0.4062,1.5625,0.4375,1.5625,0.4062,1.625,0.4375,1.5625,0.4375,1.625,0.4375,1.625,0.4375,1.5625,0.4688,1.5625,0.4375,1.625,0.4688,1.5625,0.4688,1.625,0.4688,1.625,0.4688,1.5625,0.5,1.5625,0.4688,1.625,0.5,1.5625,0.5,1.625,0.5,1.625,0.5,1.5625,0.5313,1.5625,0.5,1.625,0.5313,1.5625,0.5313,1.625,0.5313,1.625,0.5313,1.5625,0.5625,1.5625,0.5313,1.625,0.5625,1.5625,0.5625,1.625,0.5625,1.625,0.5625,1.5625,0.5938,1.5625,0.5625,1.625,0.5938,1.5625,0.5938,1.625,0.5938,1.625,0.5938,1.5625,0.625,1.5625,0.5938,1.625,0.625,1.5625,0.625,1.625,0.625,1.625,0.625,1.5625,0.6563,1.5625,0.625,1.625,0.6563,1.5625,0.6563,1.625,0.6563,1.625,0.6563,1.5625,0.6875,1.5625,0.6563,1.625,0.6875,1.5625,0.6875,1.625,0.6875,1.625,0.6875,1.5625,0.7188,1.5625,0.6875,1.625,0.7188,1.5625,0.7188,1.625,0.7188,1.625,0.7188,1.5625,0.75,1.5625,0.7188,1.625,0.75,1.5625,0.75,1.625,0.75,1.625,0.75,1.5625,0.7813,1.5625,0.75,1.625,0.7813,1.5625,0.7813,1.625,0.7813,1.625,0.7813,1.5625,0.8125,1.5625,0.7813,1.625,0.8125,1.5625,0.8125,1.625,0.8125,1.625,0.8125,1.5625,0.8438,1.5625,0.8125,1.625,0.8438,1.5625,0.8438,1.625,0.8438,1.625,0.8438,1.5625,0.875,1.5625,0.8438,1.625,0.875,1.5625,0.875,1.625,0.875,1.625,0.875,1.5625,0.9063,1.5625,0.875,1.625,0.9063,1.5625,0.9063,1.625,0.9063,1.625,0.9063,1.5625,0.9375,1.5625,0.9063,1.625,0.9375,1.5625,0.9375,1.625,0.9375,1.625,0.9375,1.5625,0.9688,1.5625,0.9375,1.625,0.9688,1.5625,0.9688,1.625,0.9688,1.625,0.9688,1.5625,1.0,1.5625,0.9688,1.625,1.0,1.5625,1.0,1.625,0.0,1.5625,0.0,1.5,0.0312,1.5,0.0,1.5625,0.0312,1.5,0.0312,1.5625,0.0312,1.5625,0.0312,1.5,0.0625,1.5,0.0312,1.5625,0.0625,1.5,0.0625,1.5625,0.0625,1.5625,0.0625,1.5,0.0938,1.5,0.0625,1.5625,0.0938,1.5,0.0938,1.5625,0.0938,1.5625,0.0938,1.5,0.125,1.5,0.0938,1.5625,0.125,1.5,0.125,1.5625,0.125,1.5625,0.125,1.5,0.1562,1.5,0.125,1.5625,0.1562,1.5,0.1562,1.5625,0.1562,1.5625,0.1562,1.5,0.1875,1.5,0.1562,1.5625,0.1875,1.5,0.1875,1.5625,0.1875,1.5625,0.1875,1.5,0.2187,1.5,0.1875,1.5625,0.2187,1.5,0.2187,1.5625,0.2187,1.5625,0.2187,1.5,0.25,1.5,0.2187,1.5625,0.25,1.5,0.25,1.5625,0.25,1.5625,0.25,1.5,0.2812,1.5,0.25,1.5625,0.2812,1.5,0.2812,1.5625,0.2812,1.5625,0.2812,1.5,0.3125,1.5,0.2812,1.5625,0.3125,1.5,0.3125,1.5625,0.3125,1.5625,0.3125,1.5,0.3437,1.5,0.3125,1.5625,0.3437,1.5,0.3437,1.5625,0.3437,1.5625,0.3437,1.5,0.375,1.5,0.3437,1.5625,0.375,1.5,0.375,1.5625,0.375,1.5625,0.375,1.5,0.4062,1.5,0.375,1.5625,0.4062,1.5,0.4062,1.5625,0.4062,1.5625,0.4062,1.5,0.4375,1.5,0.4062,1.5625,0.4375,1.5,0.4375,1.5625,0.4375,1.5625,0.4375,1.5,0.4688,1.5,0.4375,1.5625,0.4688,1.5,0.4688,1.5625,0.4688,1.5625,0.4688,1.5,0.5,1.5,0.4688,1.5625,0.5,1.5,0.5,1.5625,0.5,1.5625,0.5,1.5,0.5313,1.5,0.5,1.5625,0.5313,1.5,0.5313,1.5625,0.5313,1.5625,0.5313,1.5,0.5625,1.5,0.5313,1.5625,0.5625,1.5,0.5625,1.5625,0.5625,1.5625,0.5625,1.5,0.5938,1.5,0.5625,1.5625,0.5938,1.5,0.5938,1.5625,0.5938,1.5625,0.5938,1.5,0.625,1.5,0.5938,1.5625,0.625,1.5,0.625,1.5625,0.625,1.5625,0.625,1.5,0.6563,1.5,0.625,1.5625,0.6563,1.5,0.6563,1.5625,0.6563,1.5625,0.6563,1.5,0.6875,1.5,0.6563,1.5625,0.6875,1.5,0.6875,1.5625,0.6875,1.5625,0.6875,1.5,0.7188,1.5,0.6875,1.5625,0.7188,1.5,0.7188,1.5625,0.7188,1.5625,0.7188,1.5,0.75,1.5,0.7188,1.5625,0.75,1.5,0.75,1.5625,0.75,1.5625,0.75,1.5,0.7813,1.5,0.75,1.5625,0.7813,1.5,0.7813,1.5625,0.7813,1.5625,0.7813,1.5,0.8125,1.5,0.7813,1.5625,0.8125,1.5,0.8125,1.5625,0.8125,1.5625,0.8125,1.5,0.8438,1.5,0.8125,1.5625,0.8438,1.5,0.8438,1.5625,0.8438,1.5625,0.8438,1.5,0.875,1.5,0.8438,1.5625,0.875,1.5,0.875,1.5625,0.875,1.5625,0.875,1.5,0.9063,1.5,0.875,1.5625,0.9063,1.5,0.9063,1.5625,0.9063,1.5625,0.9063,1.5,0.9375,1.5,0.9063,1.5625,0.9375,1.5,0.9375,1.5625,0.9375,1.5625,0.9375,1.5,0.9688,1.5,0.9375,1.5625,0.9688,1.5,0.9688,1.5625,0.9688,1.5625,0.9688,1.5,1.0,1.5,0.9688,1.5625,1.0,1.5,1.0,1.5625,0.0,1.5,0.0,1.4375,0.0312,1.4375,0.0,1.5,0.0312,1.4375,0.0312,1.5,0.0312,1.5,0.0312,1.4375,0.0625,1.4375,0.0312,1.5,0.0625,1.4375,0.0625,1.5,0.0625,1.5,0.0625,1.4375,0.0938,1.4375,0.0625,1.5,0.0938,1.4375,0.0938,1.5,0.0938,1.5,0.0938,1.4375,0.125,1.4375,0.0938,1.5,0.125,1.4375,0.125,1.5,0.125,1.5,0.125,1.4375,0.1562,1.4375,0.125,1.5,0.1562,1.4375,0.1562,1.5,0.1562,1.5,0.1562,1.4375,0.1875,1.4375,0.1562,1.5,0.1875,1.4375,0.1875,1.5,0.1875,1.5,0.1875,1.4375,0.2187,1.4375,0.1875,1.5,0.2187,1.4375,0.2187,1.5,0.2187,1.5,0.2187,1.4375,0.25,1.4375,0.2187,1.5,0.25,1.4375,0.25,1.5,0.25,1.5,0.25,1.4375,0.2812,1.4375,0.25,1.5,0.2812,1.4375,0.2812,1.5,0.2812,1.5,0.2812,1.4375,0.3125,1.4375,0.2812,1.5,0.3125,1.4375,0.3125,1.5,0.3125,1.5,0.3125,1.4375,0.3437,1.4375,0.3125,1.5,0.3437,1.4375,0.3437,1.5,0.3437,1.5,0.3437,1.4375,0.375,1.4375,0.3437,1.5,0.375,1.4375,0.375,1.5,0.375,1.5,0.375,1.4375,0.4062,1.4375,0.375,1.5,0.4062,1.4375,0.4062,1.5,0.4062,1.5,0.4062,1.4375,0.4375,1.4375,0.4062,1.5,0.4375,1.4375,0.4375,1.5,0.4375,1.5,0.4375,1.4375,0.4688,1.4375,0.4375,1.5,0.4688,1.4375,0.4688,1.5,0.4688,1.5,0.4688,1.4375,0.5,1.4375,0.4688,1.5,0.5,1.4375,0.5,1.5,0.5,1.5,0.5,1.4375,0.5313,1.4375,0.5,1.5,0.5313,1.4375,0.5313,1.5,0.5313,1.5,0.5313,1.4375,0.5625,1.4375,0.5313,1.5,0.5625,1.4375,0.5625,1.5,0.5625,1.5,0.5625,1.4375,0.5938,1.4375,0.5625,1.5,0.5938,1.4375,0.5938,1.5,0.5938,1.5,0.5938,1.4375,0.625,1.4375,0.5938,1.5,0.625,1.4375,0.625,1.5,0.625,1.5,0.625,1.4375,0.6563,1.4375,0.625,1.5,0.6563,1.4375,0.6563,1.5,0.6563,1.5,0.6563,1.4375,0.6875,1.4375,0.6563,1.5,0.6875,1.4375,0.6875,1.5,0.6875,1.5,0.6875,1.4375,0.7188,1.4375,0.6875,1.5,0.7188,1.4375,0.7188,1.5,0.7188,1.5,0.7188,1.4375,0.75,1.4375,0.7188,1.5,0.75,1.4375,0.75,1.5,0.75,1.5,0.75,1.4375,0.7813,1.4375,0.75,1.5,0.7813,1.4375,0.7813,1.5,0.7813,1.5,0.7813,1.4375,0.8125,1.4375,0.7813,1.5,0.8125,1.4375,0.8125,1.5,0.8125,1.5,0.8125,1.4375,0.8438,1.4375,0.8125,1.5,0.8438,1.4375,0.8438,1.5,0.8438,1.5,0.8438,1.4375,0.875,1.4375,0.8438,1.5,0.875,1.4375,0.875,1.5,0.875,1.5,0.875,1.4375,0.9063,1.4375,0.875,1.5,0.9063,1.4375,0.9063,1.5,0.9063,1.5,0.9063,1.4375,0.9375,1.4375,0.9063,1.5,0.9375,1.4375,0.9375,1.5,0.9375,1.5,0.9375,1.4375,0.9688,1.4375,0.9375,1.5,0.9688,1.4375,0.9688,1.5,0.9688,1.5,0.9688,1.4375,1.0,1.4375,0.9688,1.5,1.0,1.4375,1.0,1.5,0.0,1.4375,0.0,1.375,0.0312,1.375,0.0,1.4375,0.0312,1.375,0.0312,1.4375,0.0312,1.4375,0.0312,1.375,0.0625,1.375,0.0312,1.4375,0.0625,1.375,0.0625,1.4375,0.0625,1.4375,0.0625,1.375,0.0938,1.375,0.0625,1.4375,0.0938,1.375,0.0938,1.4375,0.0938,1.4375,0.0938,1.375,0.125,1.375,0.0938,1.4375,0.125,1.375,0.125,1.4375,0.125,1.4375,0.125,1.375,0.1562,1.375,0.125,1.4375,0.1562,1.375,0.1562,1.4375,0.1562,1.4375,0.1562,1.375,0.1875,1.375,0.1562,1.4375,0.1875,1.375,0.1875,1.4375,0.1875,1.4375,0.1875,1.375,0.2187,1.375,0.1875,1.4375,0.2187,1.375,0.2187,1.4375,0.2187,1.4375,0.2187,1.375,0.25,1.375,0.2187,1.4375,0.25,1.375,0.25,1.4375,0.25,1.4375,0.25,1.375,0.2812,1.375,0.25,1.4375,0.2812,1.375,0.2812,1.4375,0.2812,1.4375,0.2812,1.375,0.3125,1.375,0.2812,1.4375,0.3125,1.375,0.3125,1.4375,0.3125,1.4375,0.3125,1.375,0.3437,1.375,0.3125,1.4375,0.3437,1.375,0.3437,1.4375,0.3437,1.4375,0.3437,1.375,0.375,1.375,0.3437,1.4375,0.375,1.375,0.375,1.4375,0.375,1.4375,0.375,1.375,0.4062,1.375,0.375,1.4375,0.4062,1.375,0.4062,1.4375,0.4062,1.4375,0.4062,1.375,0.4375,1.375,0.4062,1.4375,0.4375,1.375,0.4375,1.4375,0.4375,1.4375,0.4375,1.375,0.4688,1.375,0.4375,1.4375,0.4688,1.375,0.4688,1.4375,0.4688,1.4375,0.4688,1.375,0.5,1.375,0.4688,1.4375,0.5,1.375,0.5,1.4375,0.5,1.4375,0.5,1.375,0.5313,1.375,0.5,1.4375,0.5313,1.375,0.5313,1.4375,0.5313,1.4375,0.5313,1.375,0.5625,1.375,0.5313,1.4375,0.5625,1.375,0.5625,1.4375,0.5625,1.4375,0.5625,1.375,0.5938,1.375,0.5625,1.4375,0.5938,1.375,0.5938,1.4375,0.5938,1.4375,0.5938,1.375,0.625,1.375,0.5938,1.4375,0.625,1.375,0.625,1.4375,0.625,1.4375,0.625,1.375,0.6563,1.375,0.625,1.4375,0.6563,1.375,0.6563,1.4375,0.6563,1.4375,0.6563,1.375,0.6875,1.375,0.6563,1.4375,0.6875,1.375,0.6875,1.4375,0.6875,1.4375,0.6875,1.375,0.7188,1.375,0.6875,1.4375,0.7188,1.375,0.7188,1.4375,0.7188,1.4375,0.7188,1.375,0.75,1.375,0.7188,1.4375,0.75,1.375,0.75,1.4375,0.75,1.4375,0.75,1.375,0.7813,1.375,0.75,1.4375,0.7813,1.375,0.7813,1.4375,0.7813,1.4375,0.7813,1.375,0.8125,1.375,0.7813,1.4375,0.8125,1.375,0.8125,1.4375,0.8125,1.4375,0.8125,1.375,0.8438,1.375,0.8125,1.4375,0.8438,1.375,0.8438,1.4375,0.8438,1.4375,0.8438,1.375,0.875,1.375,0.8438,1.4375,0.875,1.375,0.875,1.4375,0.875,1.4375,0.875,1.375,0.9063,1.375,0.875,1.4375,0.9063,1.375,0.9063,1.4375,0.9063,1.4375,0.9063,1.375,0.9375,1.375,0.9063,1.4375,0.9375,1.375,0.9375,1.4375,0.9375,1.4375,0.9375,1.375,0.9688,1.375,0.9375,1.4375,0.9688,1.375,0.9688,1.4375,0.9688,1.4375,0.9688,1.375,1.0,1.375,0.9688,1.4375,1.0,1.375,1.0,1.4375,0.0,1.375,0.0,1.3125,0.0312,1.3125,0.0,1.375,0.0312,1.3125,0.0312,1.375,0.0312,1.375,0.0312,1.3125,0.0625,1.3125,0.0312,1.375,0.0625,1.3125,0.0625,1.375,0.0625,1.375,0.0625,1.3125,0.0938,1.3125,0.0625,1.375,0.0938,1.3125,0.0938,1.375,0.0938,1.375,0.0938,1.3125,0.125,1.3125,0.0938,1.375,0.125,1.3125,0.125,1.375,0.125,1.375,0.125,1.3125,0.1562,1.3125,0.125,1.375,0.1562,1.3125,0.1562,1.375,0.1562,1.375,0.1562,1.3125,0.1875,1.3125,0.1562,1.375,0.1875,1.3125,0.1875,1.375,0.1875,1.375,0.1875,1.3125,0.2187,1.3125,0.1875,1.375,0.2187,1.3125,0.2187,1.375,0.2187,1.375,0.2187,1.3125,0.25,1.3125,0.2187,1.375,0.25,1.3125,0.25,1.375,0.25,1.375,0.25,1.3125,0.2812,1.3125,0.25,1.375,0.2812,1.3125,0.2812,1.375,0.2812,1.375,0.2812,1.3125,0.3125,1.3125,0.2812,1.375,0.3125,1.3125,0.3125,1.375,0.3125,1.375,0.3125,1.3125,0.3437,1.3125,0.3125,1.375,0.3437,1.3125,0.3437,1.375,0.3437,1.375,0.3437,1.3125,0.375,1.3125,0.3437,1.375,0.375,1.3125,0.375,1.375,0.375,1.375,0.375,1.3125,0.4062,1.3125,0.375,1.375,0.4062,1.3125,0.4062,1.375,0.4062,1.375,0.4062,1.3125,0.4375,1.3125,0.4062,1.375,0.4375,1.3125,0.4375,1.375,0.4375,1.375,0.4375,1.3125,0.4688,1.3125,0.4375,1.375,0.4688,1.3125,0.4688,1.375,0.4688,1.375,0.4688,1.3125,0.5,1.3125,0.4688,1.375,0.5,1.3125,0.5,1.375,0.5,1.375,0.5,1.3125,0.5313,1.3125,0.5,1.375,0.5313,1.3125,0.5313,1.375,0.5313,1.375,0.5313,1.3125,0.5625,1.3125,0.5313,1.375,0.5625,1.3125,0.5625,1.375,0.5625,1.375,0.5625,1.3125,0.5938,1.3125,0.5625,1.375,0.5938,1.3125,0.5938,1.375,0.5938,1.375,0.5938,1.3125,0.625,1.3125,0.5938,1.375,0.625,1.3125,0.625,1.375,0.625,1.375,0.625,1.3125,0.6563,1.3125,0.625,1.375,0.6563,1.3125,0.6563,1.375,0.6563,1.375,0.6563,1.3125,0.6875,1.3125,0.6563,1.375,0.6875,1.3125,0.6875,1.375,0.6875,1.375,0.6875,1.3125,0.7188,1.3125,0.6875,1.375,0.7188,1.3125,0.7188,1.375,0.7188,1.375,0.7188,1.3125,0.75,1.3125,0.7188,1.375,0.75,1.3125,0.75,1.375,0.75,1.375,0.75,1.3125,0.7813,1.3125,0.75,1.375,0.7813,1.3125,0.7813,1.375,0.7813,1.375,0.7813,1.3125,0.8125,1.3125,0.7813,1.375,0.8125,1.3125,0.8125,1.375,0.8125,1.375,0.8125,1.3125,0.8438,1.3125,0.8125,1.375,0.8438,1.3125,0.8438,1.375,0.8438,1.375,0.8438,1.3125,0.875,1.3125,0.8438,1.375,0.875,1.3125,0.875,1.375,0.875,1.375,0.875,1.3125,0.9063,1.3125,0.875,1.375,0.9063,1.3125,0.9063,1.375,0.9063,1.375,0.9063,1.3125,0.9375,1.3125,0.9063,1.375,0.9375,1.3125,0.9375,1.375,0.9375,1.375,0.9375,1.3125,0.9688,1.3125,0.9375,1.375,0.9688,1.3125,0.9688,1.375,0.9688,1.375,0.9688,1.3125,1.0,1.3125,0.9688,1.375,1.0,1.3125,1.0,1.375,0.0,1.3125,0.0,1.25,0.0312,1.25,0.0,1.3125,0.0312,1.25,0.0312,1.3125,0.0312,1.3125,0.0312,1.25,0.0625,1.25,0.0312,1.3125,0.0625,1.25,0.0625,1.3125,0.0625,1.3125,0.0625,1.25,0.0938,1.25,0.0625,1.3125,0.0938,1.25,0.0938,1.3125,0.0938,1.3125,0.0938,1.25,0.125,1.25,0.0938,1.3125,0.125,1.25,0.125,1.3125,0.125,1.3125,0.125,1.25,0.1562,1.25,0.125,1.3125,0.1562,1.25,0.1562,1.3125,0.1562,1.3125,0.1562,1.25,0.1875,1.25,0.1562,1.3125,0.1875,1.25,0.1875,1.3125,0.1875,1.3125,0.1875,1.25,0.2187,1.25,0.1875,1.3125,0.2187,1.25,0.2187,1.3125,0.2187,1.3125,0.2187,1.25,0.25,1.25,0.2187,1.3125,0.25,1.25,0.25,1.3125,0.25,1.3125,0.25,1.25,0.2812,1.25,0.25,1.3125,0.2812,1.25,0.2812,1.3125,0.2812,1.3125,0.2812,1.25,0.3125,1.25,0.2812,1.3125,0.3125,1.25,0.3125,1.3125,0.3125,1.3125,0.3125,1.25,0.3437,1.25,0.3125,1.3125,0.3437,1.25,0.3437,1.3125,0.3437,1.3125,0.3437,1.25,0.375,1.25,0.3437,1.3125,0.375,1.25,0.375,1.3125,0.375,1.3125,0.375,1.25,0.4062,1.25,0.375,1.3125,0.4062,1.25,0.4062,1.3125,0.4062,1.3125,0.4062,1.25,0.4375,1.25,0.4062,1.3125,0.4375,1.25,0.4375,1.3125,0.4375,1.3125,0.4375,1.25,0.4688,1.25,0.4375,1.3125,0.4688,1.25,0.4688,1.3125,0.4688,1.3125,0.4688,1.25,0.5,1.25,0.4688,1.3125,0.5,1.25,0.5,1.3125,0.5,1.3125,0.5,1.25,0.5313,1.25,0.5,1.3125,0.5313,1.25,0.5313,1.3125,0.5313,1.3125,0.5313,1.25,0.5625,1.25,0.5313,1.3125,0.5625,1.25,0.5625,1.3125,0.5625,1.3125,0.5625,1.25,0.5938,1.25,0.5625,1.3125,0.5938,1.25,0.5938,1.3125,0.5938,1.3125,0.5938,1.25,0.625,1.25,0.5938,1.3125,0.625,1.25,0.625,1.3125,0.625,1.3125,0.625,1.25,0.6563,1.25,0.625,1.3125,0.6563,1.25,0.6563,1.3125,0.6563,1.3125,0.6563,1.25,0.6875,1.25,0.6563,1.3125,0.6875,1.25,0.6875,1.3125,0.6875,1.3125,0.6875,1.25,0.7188,1.25,0.6875,1.3125,0.7188,1.25,0.7188,1.3125,0.7188,1.3125,0.7188,1.25,0.75,1.25,0.7188,1.3125,0.75,1.25,0.75,1.3125,0.75,1.3125,0.75,1.25,0.7813,1.25,0.75,1.3125,0.7813,1.25,0.7813,1.3125,0.7813,1.3125,0.7813,1.25,0.8125,1.25,0.7813,1.3125,0.8125,1.25,0.8125,1.3125,0.8125,1.3125,0.8125,1.25,0.8438,1.25,0.8125,1.3125,0.8438,1.25,0.8438,1.3125,0.8438,1.3125,0.8438,1.25,0.875,1.25,0.8438,1.3125,0.875,1.25,0.875,1.3125,0.875,1.3125,0.875,1.25,0.9063,1.25,0.875,1.3125,0.9063,1.25,0.9063,1.3125,0.9063,1.3125,0.9063,1.25,0.9375,1.25,0.9063,1.3125,0.9375,1.25,0.9375,1.3125,0.9375,1.3125,0.9375,1.25,0.9688,1.25,0.9375,1.3125,0.9688,1.25,0.9688,1.3125,0.9688,1.3125,0.9688,1.25,1.0,1.25,0.9688,1.3125,1.0,1.25,1.0,1.3125,0.0,1.25,0.0,1.1875,0.0312,1.1875,0.0,1.25,0.0312,1.1875,0.0312,1.25,0.0312,1.25,0.0312,1.1875,0.0625,1.1875,0.0312,1.25,0.0625,1.1875,0.0625,1.25,0.0625,1.25,0.0625,1.1875,0.0938,1.1875,0.0625,1.25,0.0938,1.1875,0.0938,1.25,0.0938,1.25,0.0938,1.1875,0.125,1.1875,0.0938,1.25,0.125,1.1875,0.125,1.25,0.125,1.25,0.125,1.1875,0.1562,1.1875,0.125,1.25,0.1562,1.1875,0.1562,1.25,0.1562,1.25,0.1562,1.1875,0.1875,1.1875,0.1562,1.25,0.1875,1.1875,0.1875,1.25,0.1875,1.25,0.1875,1.1875,0.2187,1.1875,0.1875,1.25,0.2187,1.1875,0.2187,1.25,0.2187,1.25,0.2187,1.1875,0.25,1.1875,0.2187,1.25,0.25,1.1875,0.25,1.25,0.25,1.25,0.25,1.1875,0.2812,1.1875,0.25,1.25,0.2812,1.1875,0.2812,1.25,0.2812,1.25,0.2812,1.1875,0.3125,1.1875,0.2812,1.25,0.3125,1.1875,0.3125,1.25,0.3125,1.25,0.3125,1.1875,0.3437,1.1875,0.3125,1.25,0.3437,1.1875,0.3437,1.25,0.3437,1.25,0.3437,1.1875,0.375,1.1875,0.3437,1.25,0.375,1.1875,0.375,1.25,0.375,1.25,0.375,1.1875,0.4062,1.1875,0.375,1.25,0.4062,1.1875,0.4062,1.25,0.4062,1.25,0.4062,1.1875,0.4375,1.1875,0.4062,1.25,0.4375,1.1875,0.4375,1.25,0.4375,1.25,0.4375,1.1875,0.4688,1.1875,0.4375,1.25,0.4688,1.1875,0.4688,1.25,0.4688,1.25,0.4688,1.1875,0.5,1.1875,0.4688,1.25,0.5,1.1875,0.5,1.25,0.5,1.25,0.5,1.1875,0.5313,1.1875,0.5,1.25,0.5313,1.1875,0.5313,1.25,0.5313,1.25,0.5313,1.1875,0.5625,1.1875,0.5313,1.25,0.5625,1.1875,0.5625,1.25,0.5625,1.25,0.5625,1.1875,0.5938,1.1875,0.5625,1.25,0.5938,1.1875,0.5938,1.25,0.5938,1.25,0.5938,1.1875,0.625,1.1875,0.5938,1.25,0.625,1.1875,0.625,1.25,0.625,1.25,0.625,1.1875,0.6563,1.1875,0.625,1.25,0.6563,1.1875,0.6563,1.25,0.6563,1.25,0.6563,1.1875,0.6875,1.1875,0.6563,1.25,0.6875,1.1875,0.6875,1.25,0.6875,1.25,0.6875,1.1875,0.7188,1.1875,0.6875,1.25,0.7188,1.1875,0.7188,1.25,0.7188,1.25,0.7188,1.1875,0.75,1.1875,0.7188,1.25,0.75,1.1875,0.75,1.25,0.75,1.25,0.75,1.1875,0.7813,1.1875,0.75,1.25,0.7813,1.1875,0.7813,1.25,0.7813,1.25,0.7813,1.1875,0.8125,1.1875,0.7813,1.25,0.8125,1.1875,0.8125,1.25,0.8125,1.25,0.8125,1.1875,0.8438,1.1875,0.8125,1.25,0.8438,1.1875,0.8438,1.25,0.8438,1.25,0.8438,1.1875,0.875,1.1875,0.8438,1.25,0.875,1.1875,0.875,1.25,0.875,1.25,0.875,1.1875,0.9063,1.1875,0.875,1.25,0.9063,1.1875,0.9063,1.25,0.9063,1.25,0.9063,1.1875,0.9375,1.1875,0.9063,1.25,0.9375,1.1875,0.9375,1.25,0.9375,1.25,0.9375,1.1875,0.9688,1.1875,0.9375,1.25,0.9688,1.1875,0.9688,1.25,0.9688,1.25,0.9688,1.1875,1.0,1.1875,0.9688,1.25,1.0,1.1875,1.0,1.25,0.0,1.1875,0.0,1.125,0.0312,1.125,0.0,1.1875,0.0312,1.125,0.0312,1.1875,0.0312,1.1875,0.0312,1.125,0.0625,1.125,0.0312,1.1875,0.0625,1.125,0.0625,1.1875,0.0625,1.1875,0.0625,1.125,0.0938,1.125,0.0625,1.1875,0.0938,1.125,0.0938,1.1875,0.0938,1.1875,0.0938,1.125,0.125,1.125,0.0938,1.1875,0.125,1.125,0.125,1.1875,0.125,1.1875,0.125,1.125,0.1562,1.125,0.125,1.1875,0.1562,1.125,0.1562,1.1875,0.1562,1.1875,0.1562,1.125,0.1875,1.125,0.1562,1.1875,0.1875,1.125,0.1875,1.1875,0.1875,1.1875,0.1875,1.125,0.2187,1.125,0.1875,1.1875,0.2187,1.125,0.2187,1.1875,0.2187,1.1875,0.2187,1.125,0.25,1.125,0.2187,1.1875,0.25,1.125,0.25,1.1875,0.25,1.1875,0.25,1.125,0.2812,1.125,0.25,1.1875,0.2812,1.125,0.2812,1.1875,0.2812,1.1875,0.2812,1.125,0.3125,1.125,0.2812,1.1875,0.3125,1.125,0.3125,1.1875,0.3125,1.1875,0.3125,1.125,0.3437,1.125,0.3125,1.1875,0.3437,1.125,0.3437,1.1875,0.3437,1.1875,0.3437,1.125,0.375,1.125,0.3437,1.1875,0.375,1.125,0.375,1.1875,0.375,1.1875,0.375,1.125,0.4062,1.125,0.375,1.1875,0.4062,1.125,0.4062,1.1875,0.4062,1.1875,0.4062,1.125,0.4375,1.125,0.4062,1.1875,0.4375,1.125,0.4375,1.1875,0.4375,1.1875,0.4375,1.125,0.4688,1.125,0.4375,1.1875,0.4688,1.125,0.4688,1.1875,0.4688,1.1875,0.4688,1.125,0.5,1.125,0.4688,1.1875,0.5,1.125,0.5,1.1875,0.5,1.1875,0.5,1.125,0.5313,1.125,0.5,1.1875,0.5313,1.125,0.5313,1.1875,0.5313,1.1875,0.5313,1.125,0.5625,1.125,0.5313,1.1875,0.5625,1.125,0.5625,1.1875,0.5625,1.1875,0.5625,1.125,0.5938,1.125,0.5625,1.1875,0.5938,1.125,0.5938,1.1875,0.5938,1.1875,0.5938,1.125,0.625,1.125,0.5938,1.1875,0.625,1.125,0.625,1.1875,0.625,1.1875,0.625,1.125,0.6563,1.125,0.625,1.1875,0.6563,1.125,0.6563,1.1875,0.6563,1.1875,0.6563,1.125,0.6875,1.125,0.6563,1.1875,0.6875,1.125,0.6875,1.1875,0.6875,1.1875,0.6875,1.125,0.7188,1.125,0.6875,1.1875,0.7188,1.125,0.7188,1.1875,0.7188,1.1875,0.7188,1.125,0.75,1.125,0.7188,1.1875,0.75,1.125,0.75,1.1875,0.75,1.1875,0.75,1.125,0.7813,1.125,0.75,1.1875,0.7813,1.125,0.7813,1.1875,0.7813,1.1875,0.7813,1.125,0.8125,1.125,0.7813,1.1875,0.8125,1.125,0.8125,1.1875,0.8125,1.1875,0.8125,1.125,0.8438,1.125,0.8125,1.1875,0.8438,1.125,0.8438,1.1875,0.8438,1.1875,0.8438,1.125,0.875,1.125,0.8438,1.1875,0.875,1.125,0.875,1.1875,0.875,1.1875,0.875,1.125,0.9063,1.125,0.875,1.1875,0.9063,1.125,0.9063,1.1875,0.9063,1.1875,0.9063,1.125,0.9375,1.125,0.9063,1.1875,0.9375,1.125,0.9375,1.1875,0.9375,1.1875,0.9375,1.125,0.9688,1.125,0.9375,1.1875,0.9688,1.125,0.9688,1.1875,0.9688,1.1875,0.9688,1.125,1.0,1.125,0.9688,1.1875,1.0,1.125,1.0,1.1875,0.0,1.125,0.0,1.0625,0.0312,1.0625,0.0,1.125,0.0312,1.0625,0.0312,1.125,0.0312,1.125,0.0312,1.0625,0.0625,1.0625,0.0312,1.125,0.0625,1.0625,0.0625,1.125,0.0625,1.125,0.0625,1.0625,0.0938,1.0625,0.0625,1.125,0.0938,1.0625,0.0938,1.125,0.0938,1.125,0.0938,1.0625,0.125,1.0625,0.0938,1.125,0.125,1.0625,0.125,1.125,0.125,1.125,0.125,1.0625,0.1562,1.0625,0.125,1.125,0.1562,1.0625,0.1562,1.125,0.1562,1.125,0.1562,1.0625,0.1875,1.0625,0.1562,1.125,0.1875,1.0625,0.1875,1.125,0.1875,1.125,0.1875,1.0625,0.2187,1.0625,0.1875,1.125,0.2187,1.0625,0.2187,1.125,0.2187,1.125,0.2187,1.0625,0.25,1.0625,0.2187,1.125,0.25,1.0625,0.25,1.125,0.25,1.125,0.25,1.0625,0.2812,1.0625,0.25,1.125,0.2812,1.0625,0.2812,1.125,0.2812,1.125,0.2812,1.0625,0.3125,1.0625,0.2812,1.125,0.3125,1.0625,0.3125,1.125,0.3125,1.125,0.3125,1.0625,0.3437,1.0625,0.3125,1.125,0.3437,1.0625,0.3437,1.125,0.3437,1.125,0.3437,1.0625,0.375,1.0625,0.3437,1.125,0.375,1.0625,0.375,1.125,0.375,1.125,0.375,1.0625,0.4062,1.0625,0.375,1.125,0.4062,1.0625,0.4062,1.125,0.4062,1.125,0.4062,1.0625,0.4375,1.0625,0.4062,1.125,0.4375,1.0625,0.4375,1.125,0.4375,1.125,0.4375,1.0625,0.4688,1.0625,0.4375,1.125,0.4688,1.0625,0.4688,1.125,0.4688,1.125,0.4688,1.0625,0.5,1.0625,0.4688,1.125,0.5,1.0625,0.5,1.125,0.5,1.125,0.5,1.0625,0.5313,1.0625,0.5,1.125,0.5313,1.0625,0.5313,1.125,0.5313,1.125,0.5313,1.0625,0.5625,1.0625,0.5313,1.125,0.5625,1.0625,0.5625,1.125,0.5625,1.125,0.5625,1.0625,0.5938,1.0625,0.5625,1.125,0.5938,1.0625,0.5938,1.125,0.5938,1.125,0.5938,1.0625,0.625,1.0625,0.5938,1.125,0.625,1.0625,0.625,1.125,0.625,1.125,0.625,1.0625,0.6563,1.0625,0.625,1.125,0.6563,1.0625,0.6563,1.125,0.6563,1.125,0.6563,1.0625,0.6875,1.0625,0.6563,1.125,0.6875,1.0625,0.6875,1.125,0.6875,1.125,0.6875,1.0625,0.7188,1.0625,0.6875,1.125,0.7188,1.0625,0.7188,1.125,0.7188,1.125,0.7188,1.0625,0.75,1.0625,0.7188,1.125,0.75,1.0625,0.75,1.125,0.75,1.125,0.75,1.0625,0.7813,1.0625,0.75,1.125,0.7813,1.0625,0.7813,1.125,0.7813,1.125,0.7813,1.0625,0.8125,1.0625,0.7813,1.125,0.8125,1.0625,0.8125,1.125,0.8125,1.125,0.8125,1.0625,0.8438,1.0625,0.8125,1.125,0.8438,1.0625,0.8438,1.125,0.8438,1.125,0.8438,1.0625,0.875,1.0625,0.8438,1.125,0.875,1.0625,0.875,1.125,0.875,1.125,0.875,1.0625,0.9063,1.0625,0.875,1.125,0.9063,1.0625,0.9063,1.125,0.9063,1.125,0.9063,1.0625,0.9375,1.0625,0.9063,1.125,0.9375,1.0625,0.9375,1.125,0.9375,1.125,0.9375,1.0625,0.9688,1.0625,0.9375,1.125,0.9688,1.0625,0.9688,1.125,0.9688,1.125,0.9688,1.0625,1.0,1.0625,0.9688,1.125,1.0,1.0625,1.0,1.125,0.0,1.0,0.0312,1.0625,0.0,1.0625,0.0312,1.0,0.0625,1.0625,0.0312,1.0625,0.0625,1.0,0.0938,1.0625,0.0625,1.0625,0.0938,1.0,0.125,1.0625,0.0938,1.0625,0.125,1.0,0.1562,1.0625,0.125,1.0625,0.1562,1.0,0.1875,1.0625,0.1562,1.0625,0.1875,1.0,0.2187,1.0625,0.1875,1.0625,0.2187,1.0,0.25,1.0625,0.2187,1.0625,0.25,1.0,0.2812,1.0625,0.25,1.0625,0.2812,1.0,0.3125,1.0625,0.2812,1.0625,0.3125,1.0,0.3437,1.0625,0.3125,1.0625,0.3437,1.0,0.375,1.0625,0.3437,1.0625,0.375,1.0,0.4062,1.0625,0.375,1.0625,0.4062,1.0,0.4375,1.0625,0.4062,1.0625,0.4375,1.0,0.4688,1.0625,0.4375,1.0625,0.4688,1.0,0.5,1.0625,0.4688,1.0625,0.5,1.0,0.5313,1.0625,0.5,1.0625,0.5313,1.0,0.5625,1.0625,0.5313,1.0625,0.5625,1.0,0.5938,1.0625,0.5625,1.0625,0.5938,1.0,0.625,1.0625,0.5938,1.0625,0.625,1.0,0.6563,1.0625,0.625,1.0625,0.6563,1.0,0.6875,1.0625,0.6563,1.0625,0.6875,1.0,0.7188,1.0625,0.6875,1.0625,0.7188,1.0,0.75,1.0625,0.7188,1.0625,0.75,1.0,0.7813,1.0625,0.75,1.0625,0.7813,1.0,0.8125,1.0625,0.7813,1.0625,0.8125,1.0,0.8438,1.0625,0.8125,1.0625,0.8438,1.0,0.875,1.0625,0.8438,1.0625,0.875,1.0,0.9063,1.0625,0.875,1.0625,0.9063,1.0,0.9375,1.0625,0.9063,1.0625,0.9375,1.0,0.9688,1.0625,0.9375,1.0625,0.9688,1.0,1.0,1.0625,0.9688,1.0625],"uvs2":null,"colors":null,"hasVertexAlpha":false,"matricesIndices":null,"matricesWeights":null,"matricesIndicesExtra":null,"matricesWeightsExtra":null,"indices":[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,1984,1985,1986,1987,1988,1989,1990,1991,1992,1993,1994,1995,1996,1997,1998,1999,2000,2001,2002,2003,2004,2005,2006,2007,2008,2009,2010,2011,2012,2013,2014,2015,2016,2017,2018,2019,2020,2021,2022,2023,2024,2025,2026,2027,2028,2029,2030,2031,2032,2033,2034,2035,2036,2037,2038,2039,2040,2041,2042,2043,2044,2045,2046,2047,2048,2049,2050,2051,2052,2053,2054,2055,2056,2057,2058,2059,2060,2061,2062,2063,2064,2065,2066,2067,2068,2069,2070,2071,2072,2073,2074,2075,2076,2077,2078,2079,2080,2081,2082,2083,2084,2085,2086,2087,2088,2089,2090,2091,2092,2093,2094,2095,2096,2097,2098,2099,2100,2101,2102,2103,2104,2105,2106,2107,2108,2109,2110,2111,2112,2113,2114,2115,2116,2117,2118,2119,2120,2121,2122,2123,2124,2125,2126,2127,2128,2129,2130,2131,2132,2133,2134,2135,2136,2137,2138,2139,2140,2141,2142,2143,2144,2145,2146,2147,2148,2149,2150,2151,2152,2153,2154,2155,2156,2157,2158,2159,2160,2161,2162,2163,2164,2165,2166,2167,2168,2169,2170,2171,2172,2173,2174,2175,2176,2177,2178,2179,2180,2181,2182,2183,2184,2185,2186,2187,2188,2189,2190,2191,2192,2193,2194,2195,2196,2197,2198,2199,2200,2201,2202,2203,2204,2205,2206,2207,2208,2209,2210,2211,2212,2213,2214,2215,2216,2217,2218,2219,2220,2221,2222,2223,2224,2225,2226,2227,2228,2229,2230,2231,2232,2233,2234,2235,2236,2237,2238,2239,2240,2241,2242,2243,2244,2245,2246,2247,2248,2249,2250,2251,2252,2253,2254,2255,2256,2257,2258,2259,2260,2261,2262,2263,2264,2265,2266,2267,2268,2269,2270,2271,2272,2273,2274,2275,2276,2277,2278,2279,2280,2281,2282,2283,2284,2285,2286,2287,2288,2289,2290,2291,2292,2293,2294,2295,2296,2297,2298,2299,2300,2301,2302,2303,2304,2305,2306,2307,2308,2309,2310,2311,2312,2313,2314,2315,2316,2317,2318,2319,2320,2321,2322,2323,2324,2325,2326,2327,2328,2329,2330,2331,2332,2333,2334,2335,2336,2337,2338,2339,2340,2341,2342,2343,2344,2345,2346,2347,2348,2349,2350,2351,2352,2353,2354,2355,2356,2357,2358,2359,2360,2361,2362,2363,2364,2365,2366,2367,2368,2369,2370,2371,2372,2373,2374,2375,2376,2377,2378,2379,2380,2381,2382,2383,2384,2385,2386,2387,2388,2389,2390,2391,2392,2393,2394,2395,2396,2397,2398,2399,2400,2401,2402,2403,2404,2405,2406,2407,2408,2409,2410,2411,2412,2413,2414,2415,2416,2417,2418,2419,2420,2421,2422,2423,2424,2425,2426,2427,2428,2429,2430,2431,2432,2433,2434,2435,2436,2437,2438,2439,2440,2441,2442,2443,2444,2445,2446,2447,2448,2449,2450,2451,2452,2453,2454,2455,2456,2457,2458,2459,2460,2461,2462,2463,2464,2465,2466,2467,2468,2469,2470,2471,2472,2473,2474,2475,2476,2477,2478,2479,2480,2481,2482,2483,2484,2485,2486,2487,2488,2489,2490,2491,2492,2493,2494,2495,2496,2497,2498,2499,2500,2501,2502,2503,2504,2505,2506,2507,2508,2509,2510,2511,2512,2513,2514,2515,2516,2517,2518,2519,2520,2521,2522,2523,2524,2525,2526,2527,2528,2529,2530,2531,2532,2533,2534,2535,2536,2537,2538,2539,2540,2541,2542,2543,2544,2545,2546,2547,2548,2549,2550,2551,2552,2553,2554,2555,2556,2557,2558,2559,2560,2561,2562,2563,2564,2565,2566,2567,2568,2569,2570,2571,2572,2573,2574,2575,2576,2577,2578,2579,2580,2581,2582,2583,2584,2585,2586,2587,2588,2589,2590,2591,2592,2593,2594,2595,2596,2597,2598,2599,2600,2601,2602,2603,2604,2605,2606,2607,2608,2609,2610,2611,2612,2613,2614,2615,2616,2617,2618,2619,2620,2621,2622,2623,2624,2625,2626,2627,2628,2629,2630,2631,2632,2633,2634,2635,2636,2637,2638,2639,2640,2641,2642,2643,2644,2645,2646,2647,2648,2649,2650,2651,2652,2653,2654,2655,2656,2657,2658,2659,2660,2661,2662,2663,2664,2665,2666,2667,2668,2669,2670,2671,2672,2673,2674,2675,2676,2677,2678,2679,2680,2681,2682,2683,2684,2685,2686,2687,2688,2689,2690,2691,2692,2693,2694,2695,2696,2697,2698,2699,2700,2701,2702,2703,2704,2705,2706,2707,2708,2709,2710,2711,2712,2713,2714,2715,2716,2717,2718,2719,2720,2721,2722,2723,2724,2725,2726,2727,2728,2729,2730,2731,2732,2733,2734,2735,2736,2737,2738,2739,2740,2741,2742,2743,2744,2745,2746,2747,2748,2749,2750,2751,2752,2753,2754,2755,2756,2757,2758,2759,2760,2761,2762,2763,2764,2765,2766,2767,2768,2769,2770,2771,2772,2773,2774,2775,2776,2777,2778,2779,2780,2781,2782,2783,2784,2785,2786,2787,2788,2789,2790,2791,2792,2793,2794,2795,2796,2797,2798,2799,2800,2801,2802,2803,2804,2805,2806,2807,2808,2809,2810,2811,2812,2813,2814,2815,2816,2817,2818,2819,2820,2821,2822,2823,2824,2825,2826,2827,2828,2829,2830,2831,2832,2833,2834,2835,2836,2837,2838,2839,2840,2841,2842,2843,2844,2845,2846,2847,2848,2849,2850,2851,2852,2853,2854,2855,2856,2857,2858,2859,2860,2861,2862,2863,2864,2865,2866,2867,2868,2869,2870,2871,2872,2873,2874,2875,2876,2877,2878,2879],"receiveShadows":true,"infiniteDistance":false,"billboardMode":0,"visibility":1.0,"subMeshes":[{"materialIndex":0,"verticesStart":0,"verticesCount":2880,"indexStart":0,"indexCount":2880}],"instances":null,"skeletonId":-1,"numBoneInfluencers":4,"applyFog":true,"lodMeshIds":null,"lodDistances":null,"lodCoverages":null,"rotation":null,"scaling":[1.0,1.0,1.0],"rotationQuaternion":[0.0,0.0,0.0,1.0],"actions":null,"checkCollisions":false,"pickable":false,"showBoundingBox":false,"showSubMeshesBoundingBox":false,"alphaIndex":1000,"physicsImpostor":0,"physicsMass":0.0,"physicsFriction":0.0,"physicsRestitution":0.0,"name":"PhysicalMeshMaxLight_2","id":"417f9495-b8e2-4729-a2c1-d9a289a791ab","parentId":null,"position":[3.0,0.0,3.0],"animations":[],"autoAnimate":true,"autoAnimateFrom":0,"autoAnimateTo":100,"autoAnimateLoop":true,"metadata":null},{"materialId":"7b66b657-d542-469e-8588-6bc54be18a6c","isEnabled":true,"isVisible":true,"positions":[0.0,1.0,0.0,0.0,0.9808,0.1951,-0.0381,0.9808,0.1913,0.0,1.0,0.0,-0.0381,0.9808,0.1913,-0.0747,0.9808,0.1802,0.0,1.0,0.0,-0.0747,0.9808,0.1802,-0.1084,0.9808,0.1622,0.0,1.0,0.0,-0.1084,0.9808,0.1622,-0.1379,0.9808,0.1379,0.0,1.0,0.0,-0.1379,0.9808,0.1379,-0.1622,0.9808,0.1084,0.0,1.0,0.0,-0.1622,0.9808,0.1084,-0.1802,0.9808,0.0747,0.0,1.0,0.0,-0.1802,0.9808,0.0747,-0.1913,0.9808,0.0381,0.0,1.0,0.0,-0.1913,0.9808,0.0381,-0.1951,0.9808,0.0,0.0,1.0,0.0,-0.1951,0.9808,0.0,-0.1913,0.9808,-0.0381,0.0,1.0,0.0,-0.1913,0.9808,-0.0381,-0.1802,0.9808,-0.0747,0.0,1.0,0.0,-0.1802,0.9808,-0.0747,-0.1622,0.9808,-0.1084,0.0,1.0,0.0,-0.1622,0.9808,-0.1084,-0.1379,0.9808,-0.1379,0.0,1.0,0.0,-0.1379,0.9808,-0.1379,-0.1084,0.9808,-0.1622,0.0,1.0,0.0,-0.1084,0.9808,-0.1622,-0.0747,0.9808,-0.1802,0.0,1.0,0.0,-0.0747,0.9808,-0.1802,-0.0381,0.9808,-0.1913,0.0,1.0,0.0,-0.0381,0.9808,-0.1913,0.0,0.9808,-0.1951,0.0,1.0,0.0,0.0,0.9808,-0.1951,0.0381,0.9808,-0.1913,0.0,1.0,0.0,0.0381,0.9808,-0.1913,0.0747,0.9808,-0.1802,0.0,1.0,0.0,0.0747,0.9808,-0.1802,0.1084,0.9808,-0.1622,0.0,1.0,0.0,0.1084,0.9808,-0.1622,0.1379,0.9808,-0.1379,0.0,1.0,0.0,0.1379,0.9808,-0.1379,0.1622,0.9808,-0.1084,0.0,1.0,0.0,0.1622,0.9808,-0.1084,0.1802,0.9808,-0.0747,0.0,1.0,0.0,0.1802,0.9808,-0.0747,0.1913,0.9808,-0.0381,0.0,1.0,0.0,0.1913,0.9808,-0.0381,0.1951,0.9808,0.0,0.0,1.0,0.0,0.1951,0.9808,0.0,0.1913,0.9808,0.0381,0.0,1.0,0.0,0.1913,0.9808,0.0381,0.1802,0.9808,0.0747,0.0,1.0,0.0,0.1802,0.9808,0.0747,0.1622,0.9808,0.1084,0.0,1.0,0.0,0.1622,0.9808,0.1084,0.1379,0.9808,0.1379,0.0,1.0,0.0,0.1379,0.9808,0.1379,0.1084,0.9808,0.1622,0.0,1.0,0.0,0.1084,0.9808,0.1622,0.0747,0.9808,0.1802,0.0,1.0,0.0,0.0747,0.9808,0.1802,0.0381,0.9808,0.1913,0.0,1.0,0.0,0.0381,0.9808,0.1913,0.0,0.9808,0.1951,0.0,0.9808,0.1951,0.0,0.9239,0.3827,-0.0747,0.9239,0.3753,0.0,0.9808,0.1951,-0.0747,0.9239,0.3753,-0.0381,0.9808,0.1913,-0.0381,0.9808,0.1913,-0.0747,0.9239,0.3753,-0.1464,0.9239,0.3536,-0.0381,0.9808,0.1913,-0.1464,0.9239,0.3536,-0.0747,0.9808,0.1802,-0.0747,0.9808,0.1802,-0.1464,0.9239,0.3536,-0.2126,0.9239,0.3182,-0.0747,0.9808,0.1802,-0.2126,0.9239,0.3182,-0.1084,0.9808,0.1622,-0.1084,0.9808,0.1622,-0.2126,0.9239,0.3182,-0.2706,0.9239,0.2706,-0.1084,0.9808,0.1622,-0.2706,0.9239,0.2706,-0.1379,0.9808,0.1379,-0.1379,0.9808,0.1379,-0.2706,0.9239,0.2706,-0.3182,0.9239,0.2126,-0.1379,0.9808,0.1379,-0.3182,0.9239,0.2126,-0.1622,0.9808,0.1084,-0.1622,0.9808,0.1084,-0.3182,0.9239,0.2126,-0.3536,0.9239,0.1464,-0.1622,0.9808,0.1084,-0.3536,0.9239,0.1464,-0.1802,0.9808,0.0747,-0.1802,0.9808,0.0747,-0.3536,0.9239,0.1464,-0.3753,0.9239,0.0747,-0.1802,0.9808,0.0747,-0.3753,0.9239,0.0747,-0.1913,0.9808,0.0381,-0.1913,0.9808,0.0381,-0.3753,0.9239,0.0747,-0.3827,0.9239,0.0,-0.1913,0.9808,0.0381,-0.3827,0.9239,0.0,-0.1951,0.9808,0.0,-0.1951,0.9808,0.0,-0.3827,0.9239,0.0,-0.3753,0.9239,-0.0747,-0.1951,0.9808,0.0,-0.3753,0.9239,-0.0747,-0.1913,0.9808,-0.0381,-0.1913,0.9808,-0.0381,-0.3753,0.9239,-0.0747,-0.3536,0.9239,-0.1464,-0.1913,0.9808,-0.0381,-0.3536,0.9239,-0.1464,-0.1802,0.9808,-0.0747,-0.1802,0.9808,-0.0747,-0.3536,0.9239,-0.1464,-0.3182,0.9239,-0.2126,-0.1802,0.9808,-0.0747,-0.3182,0.9239,-0.2126,-0.1622,0.9808,-0.1084,-0.1622,0.9808,-0.1084,-0.3182,0.9239,-0.2126,-0.2706,0.9239,-0.2706,-0.1622,0.9808,-0.1084,-0.2706,0.9239,-0.2706,-0.1379,0.9808,-0.1379,-0.1379,0.9808,-0.1379,-0.2706,0.9239,-0.2706,-0.2126,0.9239,-0.3182,-0.1379,0.9808,-0.1379,-0.2126,0.9239,-0.3182,-0.1084,0.9808,-0.1622,-0.1084,0.9808,-0.1622,-0.2126,0.9239,-0.3182,-0.1464,0.9239,-0.3536,-0.1084,0.9808,-0.1622,-0.1464,0.9239,-0.3536,-0.0747,0.9808,-0.1802,-0.0747,0.9808,-0.1802,-0.1464,0.9239,-0.3536,-0.0747,0.9239,-0.3753,-0.0747,0.9808,-0.1802,-0.0747,0.9239,-0.3753,-0.0381,0.9808,-0.1913,-0.0381,0.9808,-0.1913,-0.0747,0.9239,-0.3753,0.0,0.9239,-0.3827,-0.0381,0.9808,-0.1913,0.0,0.9239,-0.3827,0.0,0.9808,-0.1951,0.0,0.9808,-0.1951,0.0,0.9239,-0.3827,0.0747,0.9239,-0.3753,0.0,0.9808,-0.1951,0.0747,0.9239,-0.3753,0.0381,0.9808,-0.1913,0.0381,0.9808,-0.1913,0.0747,0.9239,-0.3753,0.1464,0.9239,-0.3536,0.0381,0.9808,-0.1913,0.1464,0.9239,-0.3536,0.0747,0.9808,-0.1802,0.0747,0.9808,-0.1802,0.1464,0.9239,-0.3536,0.2126,0.9239,-0.3182,0.0747,0.9808,-0.1802,0.2126,0.9239,-0.3182,0.1084,0.9808,-0.1622,0.1084,0.9808,-0.1622,0.2126,0.9239,-0.3182,0.2706,0.9239,-0.2706,0.1084,0.9808,-0.1622,0.2706,0.9239,-0.2706,0.1379,0.9808,-0.1379,0.1379,0.9808,-0.1379,0.2706,0.9239,-0.2706,0.3182,0.9239,-0.2126,0.1379,0.9808,-0.1379,0.3182,0.9239,-0.2126,0.1622,0.9808,-0.1084,0.1622,0.9808,-0.1084,0.3182,0.9239,-0.2126,0.3536,0.9239,-0.1464,0.1622,0.9808,-0.1084,0.3536,0.9239,-0.1464,0.1802,0.9808,-0.0747,0.1802,0.9808,-0.0747,0.3536,0.9239,-0.1464,0.3753,0.9239,-0.0747,0.1802,0.9808,-0.0747,0.3753,0.9239,-0.0747,0.1913,0.9808,-0.0381,0.1913,0.9808,-0.0381,0.3753,0.9239,-0.0747,0.3827,0.9239,0.0,0.1913,0.9808,-0.0381,0.3827,0.9239,0.0,0.1951,0.9808,0.0,0.1951,0.9808,0.0,0.3827,0.9239,0.0,0.3753,0.9239,0.0747,0.1951,0.9808,0.0,0.3753,0.9239,0.0747,0.1913,0.9808,0.0381,0.1913,0.9808,0.0381,0.3753,0.9239,0.0747,0.3536,0.9239,0.1464,0.1913,0.9808,0.0381,0.3536,0.9239,0.1464,0.1802,0.9808,0.0747,0.1802,0.9808,0.0747,0.3536,0.9239,0.1464,0.3182,0.9239,0.2126,0.1802,0.9808,0.0747,0.3182,0.9239,0.2126,0.1622,0.9808,0.1084,0.1622,0.9808,0.1084,0.3182,0.9239,0.2126,0.2706,0.9239,0.2706,0.1622,0.9808,0.1084,0.2706,0.9239,0.2706,0.1379,0.9808,0.1379,0.1379,0.9808,0.1379,0.2706,0.9239,0.2706,0.2126,0.9239,0.3182,0.1379,0.9808,0.1379,0.2126,0.9239,0.3182,0.1084,0.9808,0.1622,0.1084,0.9808,0.1622,0.2126,0.9239,0.3182,0.1464,0.9239,0.3536,0.1084,0.9808,0.1622,0.1464,0.9239,0.3536,0.0747,0.9808,0.1802,0.0747,0.9808,0.1802,0.1464,0.9239,0.3536,0.0747,0.9239,0.3753,0.0747,0.9808,0.1802,0.0747,0.9239,0.3753,0.0381,0.9808,0.1913,0.0381,0.9808,0.1913,0.0747,0.9239,0.3753,0.0,0.9239,0.3827,0.0381,0.9808,0.1913,0.0,0.9239,0.3827,0.0,0.9808,0.1951,0.0,0.9239,0.3827,0.0,0.8315,0.5556,-0.1084,0.8315,0.5449,0.0,0.9239,0.3827,-0.1084,0.8315,0.5449,-0.0747,0.9239,0.3753,-0.0747,0.9239,0.3753,-0.1084,0.8315,0.5449,-0.2126,0.8315,0.5133,-0.0747,0.9239,0.3753,-0.2126,0.8315,0.5133,-0.1464,0.9239,0.3536,-0.1464,0.9239,0.3536,-0.2126,0.8315,0.5133,-0.3087,0.8315,0.4619,-0.1464,0.9239,0.3536,-0.3087,0.8315,0.4619,-0.2126,0.9239,0.3182,-0.2126,0.9239,0.3182,-0.3087,0.8315,0.4619,-0.3928,0.8315,0.3928,-0.2126,0.9239,0.3182,-0.3928,0.8315,0.3928,-0.2706,0.9239,0.2706,-0.2706,0.9239,0.2706,-0.3928,0.8315,0.3928,-0.4619,0.8315,0.3087,-0.2706,0.9239,0.2706,-0.4619,0.8315,0.3087,-0.3182,0.9239,0.2126,-0.3182,0.9239,0.2126,-0.4619,0.8315,0.3087,-0.5133,0.8315,0.2126,-0.3182,0.9239,0.2126,-0.5133,0.8315,0.2126,-0.3536,0.9239,0.1464,-0.3536,0.9239,0.1464,-0.5133,0.8315,0.2126,-0.5449,0.8315,0.1084,-0.3536,0.9239,0.1464,-0.5449,0.8315,0.1084,-0.3753,0.9239,0.0747,-0.3753,0.9239,0.0747,-0.5449,0.8315,0.1084,-0.5556,0.8315,0.0,-0.3753,0.9239,0.0747,-0.5556,0.8315,0.0,-0.3827,0.9239,0.0,-0.3827,0.9239,0.0,-0.5556,0.8315,0.0,-0.5449,0.8315,-0.1084,-0.3827,0.9239,0.0,-0.5449,0.8315,-0.1084,-0.3753,0.9239,-0.0747,-0.3753,0.9239,-0.0747,-0.5449,0.8315,-0.1084,-0.5133,0.8315,-0.2126,-0.3753,0.9239,-0.0747,-0.5133,0.8315,-0.2126,-0.3536,0.9239,-0.1464,-0.3536,0.9239,-0.1464,-0.5133,0.8315,-0.2126,-0.4619,0.8315,-0.3087,-0.3536,0.9239,-0.1464,-0.4619,0.8315,-0.3087,-0.3182,0.9239,-0.2126,-0.3182,0.9239,-0.2126,-0.4619,0.8315,-0.3087,-0.3928,0.8315,-0.3928,-0.3182,0.9239,-0.2126,-0.3928,0.8315,-0.3928,-0.2706,0.9239,-0.2706,-0.2706,0.9239,-0.2706,-0.3928,0.8315,-0.3928,-0.3087,0.8315,-0.4619,-0.2706,0.9239,-0.2706,-0.3087,0.8315,-0.4619,-0.2126,0.9239,-0.3182,-0.2126,0.9239,-0.3182,-0.3087,0.8315,-0.4619,-0.2126,0.8315,-0.5133,-0.2126,0.9239,-0.3182,-0.2126,0.8315,-0.5133,-0.1464,0.9239,-0.3536,-0.1464,0.9239,-0.3536,-0.2126,0.8315,-0.5133,-0.1084,0.8315,-0.5449,-0.1464,0.9239,-0.3536,-0.1084,0.8315,-0.5449,-0.0747,0.9239,-0.3753,-0.0747,0.9239,-0.3753,-0.1084,0.8315,-0.5449,0.0,0.8315,-0.5556,-0.0747,0.9239,-0.3753,0.0,0.8315,-0.5556,0.0,0.9239,-0.3827,0.0,0.9239,-0.3827,0.0,0.8315,-0.5556,0.1084,0.8315,-0.5449,0.0,0.9239,-0.3827,0.1084,0.8315,-0.5449,0.0747,0.9239,-0.3753,0.0747,0.9239,-0.3753,0.1084,0.8315,-0.5449,0.2126,0.8315,-0.5133,0.0747,0.9239,-0.3753,0.2126,0.8315,-0.5133,0.1464,0.9239,-0.3536,0.1464,0.9239,-0.3536,0.2126,0.8315,-0.5133,0.3087,0.8315,-0.4619,0.1464,0.9239,-0.3536,0.3087,0.8315,-0.4619,0.2126,0.9239,-0.3182,0.2126,0.9239,-0.3182,0.3087,0.8315,-0.4619,0.3928,0.8315,-0.3928,0.2126,0.9239,-0.3182,0.3928,0.8315,-0.3928,0.2706,0.9239,-0.2706,0.2706,0.9239,-0.2706,0.3928,0.8315,-0.3928,0.4619,0.8315,-0.3087,0.2706,0.9239,-0.2706,0.4619,0.8315,-0.3087,0.3182,0.9239,-0.2126,0.3182,0.9239,-0.2126,0.4619,0.8315,-0.3087,0.5133,0.8315,-0.2126,0.3182,0.9239,-0.2126,0.5133,0.8315,-0.2126,0.3536,0.9239,-0.1464,0.3536,0.9239,-0.1464,0.5133,0.8315,-0.2126,0.5449,0.8315,-0.1084,0.3536,0.9239,-0.1464,0.5449,0.8315,-0.1084,0.3753,0.9239,-0.0747,0.3753,0.9239,-0.0747,0.5449,0.8315,-0.1084,0.5556,0.8315,0.0,0.3753,0.9239,-0.0747,0.5556,0.8315,0.0,0.3827,0.9239,0.0,0.3827,0.9239,0.0,0.5556,0.8315,0.0,0.5449,0.8315,0.1084,0.3827,0.9239,0.0,0.5449,0.8315,0.1084,0.3753,0.9239,0.0747,0.3753,0.9239,0.0747,0.5449,0.8315,0.1084,0.5133,0.8315,0.2126,0.3753,0.9239,0.0747,0.5133,0.8315,0.2126,0.3536,0.9239,0.1464,0.3536,0.9239,0.1464,0.5133,0.8315,0.2126,0.4619,0.8315,0.3087,0.3536,0.9239,0.1464,0.4619,0.8315,0.3087,0.3182,0.9239,0.2126,0.3182,0.9239,0.2126,0.4619,0.8315,0.3087,0.3928,0.8315,0.3928,0.3182,0.9239,0.2126,0.3928,0.8315,0.3928,0.2706,0.9239,0.2706,0.2706,0.9239,0.2706,0.3928,0.8315,0.3928,0.3087,0.8315,0.4619,0.2706,0.9239,0.2706,0.3087,0.8315,0.4619,0.2126,0.9239,0.3182,0.2126,0.9239,0.3182,0.3087,0.8315,0.4619,0.2126,0.8315,0.5133,0.2126,0.9239,0.3182,0.2126,0.8315,0.5133,0.1464,0.9239,0.3536,0.1464,0.9239,0.3536,0.2126,0.8315,0.5133,0.1084,0.8315,0.5449,0.1464,0.9239,0.3536,0.1084,0.8315,0.5449,0.0747,0.9239,0.3753,0.0747,0.9239,0.3753,0.1084,0.8315,0.5449,0.0,0.8315,0.5556,0.0747,0.9239,0.3753,0.0,0.8315,0.5556,0.0,0.9239,0.3827,0.0,0.8315,0.5556,0.0,0.7071,0.7071,-0.1379,0.7071,0.6935,0.0,0.8315,0.5556,-0.1379,0.7071,0.6935,-0.1084,0.8315,0.5449,-0.1084,0.8315,0.5449,-0.1379,0.7071,0.6935,-0.2706,0.7071,0.6533,-0.1084,0.8315,0.5449,-0.2706,0.7071,0.6533,-0.2126,0.8315,0.5133,-0.2126,0.8315,0.5133,-0.2706,0.7071,0.6533,-0.3928,0.7071,0.5879,-0.2126,0.8315,0.5133,-0.3928,0.7071,0.5879,-0.3087,0.8315,0.4619,-0.3087,0.8315,0.4619,-0.3928,0.7071,0.5879,-0.5,0.7071,0.5,-0.3087,0.8315,0.4619,-0.5,0.7071,0.5,-0.3928,0.8315,0.3928,-0.3928,0.8315,0.3928,-0.5,0.7071,0.5,-0.5879,0.7071,0.3928,-0.3928,0.8315,0.3928,-0.5879,0.7071,0.3928,-0.4619,0.8315,0.3087,-0.4619,0.8315,0.3087,-0.5879,0.7071,0.3928,-0.6533,0.7071,0.2706,-0.4619,0.8315,0.3087,-0.6533,0.7071,0.2706,-0.5133,0.8315,0.2126,-0.5133,0.8315,0.2126,-0.6533,0.7071,0.2706,-0.6935,0.7071,0.1379,-0.5133,0.8315,0.2126,-0.6935,0.7071,0.1379,-0.5449,0.8315,0.1084,-0.5449,0.8315,0.1084,-0.6935,0.7071,0.1379,-0.7071,0.7071,0.0,-0.5449,0.8315,0.1084,-0.7071,0.7071,0.0,-0.5556,0.8315,0.0,-0.5556,0.8315,0.0,-0.7071,0.7071,0.0,-0.6935,0.7071,-0.1379,-0.5556,0.8315,0.0,-0.6935,0.7071,-0.1379,-0.5449,0.8315,-0.1084,-0.5449,0.8315,-0.1084,-0.6935,0.7071,-0.1379,-0.6533,0.7071,-0.2706,-0.5449,0.8315,-0.1084,-0.6533,0.7071,-0.2706,-0.5133,0.8315,-0.2126,-0.5133,0.8315,-0.2126,-0.6533,0.7071,-0.2706,-0.5879,0.7071,-0.3928,-0.5133,0.8315,-0.2126,-0.5879,0.7071,-0.3928,-0.4619,0.8315,-0.3087,-0.4619,0.8315,-0.3087,-0.5879,0.7071,-0.3928,-0.5,0.7071,-0.5,-0.4619,0.8315,-0.3087,-0.5,0.7071,-0.5,-0.3928,0.8315,-0.3928,-0.3928,0.8315,-0.3928,-0.5,0.7071,-0.5,-0.3928,0.7071,-0.5879,-0.3928,0.8315,-0.3928,-0.3928,0.7071,-0.5879,-0.3087,0.8315,-0.4619,-0.3087,0.8315,-0.4619,-0.3928,0.7071,-0.5879,-0.2706,0.7071,-0.6533,-0.3087,0.8315,-0.4619,-0.2706,0.7071,-0.6533,-0.2126,0.8315,-0.5133,-0.2126,0.8315,-0.5133,-0.2706,0.7071,-0.6533,-0.1379,0.7071,-0.6935,-0.2126,0.8315,-0.5133,-0.1379,0.7071,-0.6935,-0.1084,0.8315,-0.5449,-0.1084,0.8315,-0.5449,-0.1379,0.7071,-0.6935,0.0,0.7071,-0.7071,-0.1084,0.8315,-0.5449,0.0,0.7071,-0.7071,0.0,0.8315,-0.5556,0.0,0.8315,-0.5556,0.0,0.7071,-0.7071,0.138,0.7071,-0.6935,0.0,0.8315,-0.5556,0.138,0.7071,-0.6935,0.1084,0.8315,-0.5449,0.1084,0.8315,-0.5449,0.138,0.7071,-0.6935,0.2706,0.7071,-0.6533,0.1084,0.8315,-0.5449,0.2706,0.7071,-0.6533,0.2126,0.8315,-0.5133,0.2126,0.8315,-0.5133,0.2706,0.7071,-0.6533,0.3928,0.7071,-0.5879,0.2126,0.8315,-0.5133,0.3928,0.7071,-0.5879,0.3087,0.8315,-0.4619,0.3087,0.8315,-0.4619,0.3928,0.7071,-0.5879,0.5,0.7071,-0.5,0.3087,0.8315,-0.4619,0.5,0.7071,-0.5,0.3928,0.8315,-0.3928,0.3928,0.8315,-0.3928,0.5,0.7071,-0.5,0.5879,0.7071,-0.3928,0.3928,0.8315,-0.3928,0.5879,0.7071,-0.3928,0.4619,0.8315,-0.3087,0.4619,0.8315,-0.3087,0.5879,0.7071,-0.3928,0.6533,0.7071,-0.2706,0.4619,0.8315,-0.3087,0.6533,0.7071,-0.2706,0.5133,0.8315,-0.2126,0.5133,0.8315,-0.2126,0.6533,0.7071,-0.2706,0.6935,0.7071,-0.1379,0.5133,0.8315,-0.2126,0.6935,0.7071,-0.1379,0.5449,0.8315,-0.1084,0.5449,0.8315,-0.1084,0.6935,0.7071,-0.1379,0.7071,0.7071,0.0,0.5449,0.8315,-0.1084,0.7071,0.7071,0.0,0.5556,0.8315,0.0,0.5556,0.8315,0.0,0.7071,0.7071,0.0,0.6935,0.7071,0.138,0.5556,0.8315,0.0,0.6935,0.7071,0.138,0.5449,0.8315,0.1084,0.5449,0.8315,0.1084,0.6935,0.7071,0.138,0.6533,0.7071,0.2706,0.5449,0.8315,0.1084,0.6533,0.7071,0.2706,0.5133,0.8315,0.2126,0.5133,0.8315,0.2126,0.6533,0.7071,0.2706,0.5879,0.7071,0.3928,0.5133,0.8315,0.2126,0.5879,0.7071,0.3928,0.4619,0.8315,0.3087,0.4619,0.8315,0.3087,0.5879,0.7071,0.3928,0.5,0.7071,0.5,0.4619,0.8315,0.3087,0.5,0.7071,0.5,0.3928,0.8315,0.3928,0.3928,0.8315,0.3928,0.5,0.7071,0.5,0.3928,0.7071,0.5879,0.3928,0.8315,0.3928,0.3928,0.7071,0.5879,0.3087,0.8315,0.4619,0.3087,0.8315,0.4619,0.3928,0.7071,0.5879,0.2706,0.7071,0.6533,0.3087,0.8315,0.4619,0.2706,0.7071,0.6533,0.2126,0.8315,0.5133,0.2126,0.8315,0.5133,0.2706,0.7071,0.6533,0.1379,0.7071,0.6935,0.2126,0.8315,0.5133,0.1379,0.7071,0.6935,0.1084,0.8315,0.5449,0.1084,0.8315,0.5449,0.1379,0.7071,0.6935,0.0,0.7071,0.7071,0.1084,0.8315,0.5449,0.0,0.7071,0.7071,0.0,0.8315,0.5556,0.0,0.7071,0.7071,0.0,0.5556,0.8315,-0.1622,0.5556,0.8155,0.0,0.7071,0.7071,-0.1622,0.5556,0.8155,-0.1379,0.7071,0.6935,-0.1379,0.7071,0.6935,-0.1622,0.5556,0.8155,-0.3182,0.5556,0.7682,-0.1379,0.7071,0.6935,-0.3182,0.5556,0.7682,-0.2706,0.7071,0.6533,-0.2706,0.7071,0.6533,-0.3182,0.5556,0.7682,-0.4619,0.5556,0.6913,-0.2706,0.7071,0.6533,-0.4619,0.5556,0.6913,-0.3928,0.7071,0.5879,-0.3928,0.7071,0.5879,-0.4619,0.5556,0.6913,-0.5879,0.5556,0.5879,-0.3928,0.7071,0.5879,-0.5879,0.5556,0.5879,-0.5,0.7071,0.5,-0.5,0.7071,0.5,-0.5879,0.5556,0.5879,-0.6913,0.5556,0.4619,-0.5,0.7071,0.5,-0.6913,0.5556,0.4619,-0.5879,0.7071,0.3928,-0.5879,0.7071,0.3928,-0.6913,0.5556,0.4619,-0.7682,0.5556,0.3182,-0.5879,0.7071,0.3928,-0.7682,0.5556,0.3182,-0.6533,0.7071,0.2706,-0.6533,0.7071,0.2706,-0.7682,0.5556,0.3182,-0.8155,0.5556,0.1622,-0.6533,0.7071,0.2706,-0.8155,0.5556,0.1622,-0.6935,0.7071,0.1379,-0.6935,0.7071,0.1379,-0.8155,0.5556,0.1622,-0.8315,0.5556,0.0,-0.6935,0.7071,0.1379,-0.8315,0.5556,0.0,-0.7071,0.7071,0.0,-0.7071,0.7071,0.0,-0.8315,0.5556,0.0,-0.8155,0.5556,-0.1622,-0.7071,0.7071,0.0,-0.8155,0.5556,-0.1622,-0.6935,0.7071,-0.1379,-0.6935,0.7071,-0.1379,-0.8155,0.5556,-0.1622,-0.7682,0.5556,-0.3182,-0.6935,0.7071,-0.1379,-0.7682,0.5556,-0.3182,-0.6533,0.7071,-0.2706,-0.6533,0.7071,-0.2706,-0.7682,0.5556,-0.3182,-0.6913,0.5556,-0.4619,-0.6533,0.7071,-0.2706,-0.6913,0.5556,-0.4619,-0.5879,0.7071,-0.3928,-0.5879,0.7071,-0.3928,-0.6913,0.5556,-0.4619,-0.5879,0.5556,-0.5879,-0.5879,0.7071,-0.3928,-0.5879,0.5556,-0.5879,-0.5,0.7071,-0.5,-0.5,0.7071,-0.5,-0.5879,0.5556,-0.5879,-0.4619,0.5556,-0.6913,-0.5,0.7071,-0.5,-0.4619,0.5556,-0.6913,-0.3928,0.7071,-0.5879,-0.3928,0.7071,-0.5879,-0.4619,0.5556,-0.6913,-0.3182,0.5556,-0.7682,-0.3928,0.7071,-0.5879,-0.3182,0.5556,-0.7682,-0.2706,0.7071,-0.6533,-0.2706,0.7071,-0.6533,-0.3182,0.5556,-0.7682,-0.1622,0.5556,-0.8155,-0.2706,0.7071,-0.6533,-0.1622,0.5556,-0.8155,-0.1379,0.7071,-0.6935,-0.1379,0.7071,-0.6935,-0.1622,0.5556,-0.8155,0.0,0.5556,-0.8315,-0.1379,0.7071,-0.6935,0.0,0.5556,-0.8315,0.0,0.7071,-0.7071,0.0,0.7071,-0.7071,0.0,0.5556,-0.8315,0.1622,0.5556,-0.8155,0.0,0.7071,-0.7071,0.1622,0.5556,-0.8155,0.138,0.7071,-0.6935,0.138,0.7071,-0.6935,0.1622,0.5556,-0.8155,0.3182,0.5556,-0.7682,0.138,0.7071,-0.6935,0.3182,0.5556,-0.7682,0.2706,0.7071,-0.6533,0.2706,0.7071,-0.6533,0.3182,0.5556,-0.7682,0.4619,0.5556,-0.6913,0.2706,0.7071,-0.6533,0.4619,0.5556,-0.6913,0.3928,0.7071,-0.5879,0.3928,0.7071,-0.5879,0.4619,0.5556,-0.6913,0.5879,0.5556,-0.5879,0.3928,0.7071,-0.5879,0.5879,0.5556,-0.5879,0.5,0.7071,-0.5,0.5,0.7071,-0.5,0.5879,0.5556,-0.5879,0.6913,0.5556,-0.4619,0.5,0.7071,-0.5,0.6913,0.5556,-0.4619,0.5879,0.7071,-0.3928,0.5879,0.7071,-0.3928,0.6913,0.5556,-0.4619,0.7682,0.5556,-0.3182,0.5879,0.7071,-0.3928,0.7682,0.5556,-0.3182,0.6533,0.7071,-0.2706,0.6533,0.7071,-0.2706,0.7682,0.5556,-0.3182,0.8155,0.5556,-0.1622,0.6533,0.7071,-0.2706,0.8155,0.5556,-0.1622,0.6935,0.7071,-0.1379,0.6935,0.7071,-0.1379,0.8155,0.5556,-0.1622,0.8315,0.5556,0.0,0.6935,0.7071,-0.1379,0.8315,0.5556,0.0,0.7071,0.7071,0.0,0.7071,0.7071,0.0,0.8315,0.5556,0.0,0.8155,0.5556,0.1622,0.7071,0.7071,0.0,0.8155,0.5556,0.1622,0.6935,0.7071,0.138,0.6935,0.7071,0.138,0.8155,0.5556,0.1622,0.7682,0.5556,0.3182,0.6935,0.7071,0.138,0.7682,0.5556,0.3182,0.6533,0.7071,0.2706,0.6533,0.7071,0.2706,0.7682,0.5556,0.3182,0.6913,0.5556,0.4619,0.6533,0.7071,0.2706,0.6913,0.5556,0.4619,0.5879,0.7071,0.3928,0.5879,0.7071,0.3928,0.6913,0.5556,0.4619,0.5879,0.5556,0.5879,0.5879,0.7071,0.3928,0.5879,0.5556,0.5879,0.5,0.7071,0.5,0.5,0.7071,0.5,0.5879,0.5556,0.5879,0.4619,0.5556,0.6913,0.5,0.7071,0.5,0.4619,0.5556,0.6913,0.3928,0.7071,0.5879,0.3928,0.7071,0.5879,0.4619,0.5556,0.6913,0.3182,0.5556,0.7682,0.3928,0.7071,0.5879,0.3182,0.5556,0.7682,0.2706,0.7071,0.6533,0.2706,0.7071,0.6533,0.3182,0.5556,0.7682,0.1622,0.5556,0.8155,0.2706,0.7071,0.6533,0.1622,0.5556,0.8155,0.1379,0.7071,0.6935,0.1379,0.7071,0.6935,0.1622,0.5556,0.8155,0.0,0.5556,0.8315,0.1379,0.7071,0.6935,0.0,0.5556,0.8315,0.0,0.7071,0.7071,0.0,0.5556,0.8315,0.0,0.3827,0.9239,-0.1802,0.3827,0.9061,0.0,0.5556,0.8315,-0.1802,0.3827,0.9061,-0.1622,0.5556,0.8155,-0.1622,0.5556,0.8155,-0.1802,0.3827,0.9061,-0.3536,0.3827,0.8536,-0.1622,0.5556,0.8155,-0.3536,0.3827,0.8536,-0.3182,0.5556,0.7682,-0.3182,0.5556,0.7682,-0.3536,0.3827,0.8536,-0.5133,0.3827,0.7682,-0.3182,0.5556,0.7682,-0.5133,0.3827,0.7682,-0.4619,0.5556,0.6913,-0.4619,0.5556,0.6913,-0.5133,0.3827,0.7682,-0.6533,0.3827,0.6533,-0.4619,0.5556,0.6913,-0.6533,0.3827,0.6533,-0.5879,0.5556,0.5879,-0.5879,0.5556,0.5879,-0.6533,0.3827,0.6533,-0.7682,0.3827,0.5133,-0.5879,0.5556,0.5879,-0.7682,0.3827,0.5133,-0.6913,0.5556,0.4619,-0.6913,0.5556,0.4619,-0.7682,0.3827,0.5133,-0.8536,0.3827,0.3536,-0.6913,0.5556,0.4619,-0.8536,0.3827,0.3536,-0.7682,0.5556,0.3182,-0.7682,0.5556,0.3182,-0.8536,0.3827,0.3536,-0.9061,0.3827,0.1802,-0.7682,0.5556,0.3182,-0.9061,0.3827,0.1802,-0.8155,0.5556,0.1622,-0.8155,0.5556,0.1622,-0.9061,0.3827,0.1802,-0.9239,0.3827,0.0,-0.8155,0.5556,0.1622,-0.9239,0.3827,0.0,-0.8315,0.5556,0.0,-0.8315,0.5556,0.0,-0.9239,0.3827,0.0,-0.9061,0.3827,-0.1802,-0.8315,0.5556,0.0,-0.9061,0.3827,-0.1802,-0.8155,0.5556,-0.1622,-0.8155,0.5556,-0.1622,-0.9061,0.3827,-0.1802,-0.8536,0.3827,-0.3536,-0.8155,0.5556,-0.1622,-0.8536,0.3827,-0.3536,-0.7682,0.5556,-0.3182,-0.7682,0.5556,-0.3182,-0.8536,0.3827,-0.3536,-0.7682,0.3827,-0.5133,-0.7682,0.5556,-0.3182,-0.7682,0.3827,-0.5133,-0.6913,0.5556,-0.4619,-0.6913,0.5556,-0.4619,-0.7682,0.3827,-0.5133,-0.6533,0.3827,-0.6533,-0.6913,0.5556,-0.4619,-0.6533,0.3827,-0.6533,-0.5879,0.5556,-0.5879,-0.5879,0.5556,-0.5879,-0.6533,0.3827,-0.6533,-0.5133,0.3827,-0.7682,-0.5879,0.5556,-0.5879,-0.5133,0.3827,-0.7682,-0.4619,0.5556,-0.6913,-0.4619,0.5556,-0.6913,-0.5133,0.3827,-0.7682,-0.3536,0.3827,-0.8536,-0.4619,0.5556,-0.6913,-0.3536,0.3827,-0.8536,-0.3182,0.5556,-0.7682,-0.3182,0.5556,-0.7682,-0.3536,0.3827,-0.8536,-0.1802,0.3827,-0.9061,-0.3182,0.5556,-0.7682,-0.1802,0.3827,-0.9061,-0.1622,0.5556,-0.8155,-0.1622,0.5556,-0.8155,-0.1802,0.3827,-0.9061,0.0,0.3827,-0.9239,-0.1622,0.5556,-0.8155,0.0,0.3827,-0.9239,0.0,0.5556,-0.8315,0.0,0.5556,-0.8315,0.0,0.3827,-0.9239,0.1802,0.3827,-0.9061,0.0,0.5556,-0.8315,0.1802,0.3827,-0.9061,0.1622,0.5556,-0.8155,0.1622,0.5556,-0.8155,0.1802,0.3827,-0.9061,0.3536,0.3827,-0.8536,0.1622,0.5556,-0.8155,0.3536,0.3827,-0.8536,0.3182,0.5556,-0.7682,0.3182,0.5556,-0.7682,0.3536,0.3827,-0.8536,0.5133,0.3827,-0.7682,0.3182,0.5556,-0.7682,0.5133,0.3827,-0.7682,0.4619,0.5556,-0.6913,0.4619,0.5556,-0.6913,0.5133,0.3827,-0.7682,0.6533,0.3827,-0.6533,0.4619,0.5556,-0.6913,0.6533,0.3827,-0.6533,0.5879,0.5556,-0.5879,0.5879,0.5556,-0.5879,0.6533,0.3827,-0.6533,0.7682,0.3827,-0.5133,0.5879,0.5556,-0.5879,0.7682,0.3827,-0.5133,0.6913,0.5556,-0.4619,0.6913,0.5556,-0.4619,0.7682,0.3827,-0.5133,0.8536,0.3827,-0.3536,0.6913,0.5556,-0.4619,0.8536,0.3827,-0.3536,0.7682,0.5556,-0.3182,0.7682,0.5556,-0.3182,0.8536,0.3827,-0.3536,0.9061,0.3827,-0.1802,0.7682,0.5556,-0.3182,0.9061,0.3827,-0.1802,0.8155,0.5556,-0.1622,0.8155,0.5556,-0.1622,0.9061,0.3827,-0.1802,0.9239,0.3827,0.0,0.8155,0.5556,-0.1622,0.9239,0.3827,0.0,0.8315,0.5556,0.0,0.8315,0.5556,0.0,0.9239,0.3827,0.0,0.9061,0.3827,0.1802,0.8315,0.5556,0.0,0.9061,0.3827,0.1802,0.8155,0.5556,0.1622,0.8155,0.5556,0.1622,0.9061,0.3827,0.1802,0.8536,0.3827,0.3536,0.8155,0.5556,0.1622,0.8536,0.3827,0.3536,0.7682,0.5556,0.3182,0.7682,0.5556,0.3182,0.8536,0.3827,0.3536,0.7682,0.3827,0.5133,0.7682,0.5556,0.3182,0.7682,0.3827,0.5133,0.6913,0.5556,0.4619,0.6913,0.5556,0.4619,0.7682,0.3827,0.5133,0.6533,0.3827,0.6533,0.6913,0.5556,0.4619,0.6533,0.3827,0.6533,0.5879,0.5556,0.5879,0.5879,0.5556,0.5879,0.6533,0.3827,0.6533,0.5133,0.3827,0.7682,0.5879,0.5556,0.5879,0.5133,0.3827,0.7682,0.4619,0.5556,0.6913,0.4619,0.5556,0.6913,0.5133,0.3827,0.7682,0.3536,0.3827,0.8536,0.4619,0.5556,0.6913,0.3536,0.3827,0.8536,0.3182,0.5556,0.7682,0.3182,0.5556,0.7682,0.3536,0.3827,0.8536,0.1802,0.3827,0.9061,0.3182,0.5556,0.7682,0.1802,0.3827,0.9061,0.1622,0.5556,0.8155,0.1622,0.5556,0.8155,0.1802,0.3827,0.9061,0.0,0.3827,0.9239,0.1622,0.5556,0.8155,0.0,0.3827,0.9239,0.0,0.5556,0.8315,0.0,0.3827,0.9239,0.0,0.1951,0.9808,-0.1913,0.1951,0.9619,0.0,0.3827,0.9239,-0.1913,0.1951,0.9619,-0.1802,0.3827,0.9061,-0.1802,0.3827,0.9061,-0.1913,0.1951,0.9619,-0.3753,0.1951,0.9061,-0.1802,0.3827,0.9061,-0.3753,0.1951,0.9061,-0.3536,0.3827,0.8536,-0.3536,0.3827,0.8536,-0.3753,0.1951,0.9061,-0.5449,0.1951,0.8155,-0.3536,0.3827,0.8536,-0.5449,0.1951,0.8155,-0.5133,0.3827,0.7682,-0.5133,0.3827,0.7682,-0.5449,0.1951,0.8155,-0.6935,0.1951,0.6935,-0.5133,0.3827,0.7682,-0.6935,0.1951,0.6935,-0.6533,0.3827,0.6533,-0.6533,0.3827,0.6533,-0.6935,0.1951,0.6935,-0.8155,0.1951,0.5449,-0.6533,0.3827,0.6533,-0.8155,0.1951,0.5449,-0.7682,0.3827,0.5133,-0.7682,0.3827,0.5133,-0.8155,0.1951,0.5449,-0.9061,0.1951,0.3753,-0.7682,0.3827,0.5133,-0.9061,0.1951,0.3753,-0.8536,0.3827,0.3536,-0.8536,0.3827,0.3536,-0.9061,0.1951,0.3753,-0.9619,0.1951,0.1913,-0.8536,0.3827,0.3536,-0.9619,0.1951,0.1913,-0.9061,0.3827,0.1802,-0.9061,0.3827,0.1802,-0.9619,0.1951,0.1913,-0.9808,0.1951,0.0,-0.9061,0.3827,0.1802,-0.9808,0.1951,0.0,-0.9239,0.3827,0.0,-0.9239,0.3827,0.0,-0.9808,0.1951,0.0,-0.9619,0.1951,-0.1913,-0.9239,0.3827,0.0,-0.9619,0.1951,-0.1913,-0.9061,0.3827,-0.1802,-0.9061,0.3827,-0.1802,-0.9619,0.1951,-0.1913,-0.9061,0.1951,-0.3753,-0.9061,0.3827,-0.1802,-0.9061,0.1951,-0.3753,-0.8536,0.3827,-0.3536,-0.8536,0.3827,-0.3536,-0.9061,0.1951,-0.3753,-0.8155,0.1951,-0.5449,-0.8536,0.3827,-0.3536,-0.8155,0.1951,-0.5449,-0.7682,0.3827,-0.5133,-0.7682,0.3827,-0.5133,-0.8155,0.1951,-0.5449,-0.6935,0.1951,-0.6935,-0.7682,0.3827,-0.5133,-0.6935,0.1951,-0.6935,-0.6533,0.3827,-0.6533,-0.6533,0.3827,-0.6533,-0.6935,0.1951,-0.6935,-0.5449,0.1951,-0.8155,-0.6533,0.3827,-0.6533,-0.5449,0.1951,-0.8155,-0.5133,0.3827,-0.7682,-0.5133,0.3827,-0.7682,-0.5449,0.1951,-0.8155,-0.3753,0.1951,-0.9061,-0.5133,0.3827,-0.7682,-0.3753,0.1951,-0.9061,-0.3536,0.3827,-0.8536,-0.3536,0.3827,-0.8536,-0.3753,0.1951,-0.9061,-0.1913,0.1951,-0.9619,-0.3536,0.3827,-0.8536,-0.1913,0.1951,-0.9619,-0.1802,0.3827,-0.9061,-0.1802,0.3827,-0.9061,-0.1913,0.1951,-0.9619,0.0,0.1951,-0.9808,-0.1802,0.3827,-0.9061,0.0,0.1951,-0.9808,0.0,0.3827,-0.9239,0.0,0.3827,-0.9239,0.0,0.1951,-0.9808,0.1913,0.1951,-0.9619,0.0,0.3827,-0.9239,0.1913,0.1951,-0.9619,0.1802,0.3827,-0.9061,0.1802,0.3827,-0.9061,0.1913,0.1951,-0.9619,0.3753,0.1951,-0.9061,0.1802,0.3827,-0.9061,0.3753,0.1951,-0.9061,0.3536,0.3827,-0.8536,0.3536,0.3827,-0.8536,0.3753,0.1951,-0.9061,0.5449,0.1951,-0.8155,0.3536,0.3827,-0.8536,0.5449,0.1951,-0.8155,0.5133,0.3827,-0.7682,0.5133,0.3827,-0.7682,0.5449,0.1951,-0.8155,0.6935,0.1951,-0.6935,0.5133,0.3827,-0.7682,0.6935,0.1951,-0.6935,0.6533,0.3827,-0.6533,0.6533,0.3827,-0.6533,0.6935,0.1951,-0.6935,0.8155,0.1951,-0.5449,0.6533,0.3827,-0.6533,0.8155,0.1951,-0.5449,0.7682,0.3827,-0.5133,0.7682,0.3827,-0.5133,0.8155,0.1951,-0.5449,0.9061,0.1951,-0.3753,0.7682,0.3827,-0.5133,0.9061,0.1951,-0.3753,0.8536,0.3827,-0.3536,0.8536,0.3827,-0.3536,0.9061,0.1951,-0.3753,0.9619,0.1951,-0.1913,0.8536,0.3827,-0.3536,0.9619,0.1951,-0.1913,0.9061,0.3827,-0.1802,0.9061,0.3827,-0.1802,0.9619,0.1951,-0.1913,0.9808,0.1951,0.0,0.9061,0.3827,-0.1802,0.9808,0.1951,0.0,0.9239,0.3827,0.0,0.9239,0.3827,0.0,0.9808,0.1951,0.0,0.9619,0.1951,0.1913,0.9239,0.3827,0.0,0.9619,0.1951,0.1913,0.9061,0.3827,0.1802,0.9061,0.3827,0.1802,0.9619,0.1951,0.1913,0.9061,0.1951,0.3753,0.9061,0.3827,0.1802,0.9061,0.1951,0.3753,0.8536,0.3827,0.3536,0.8536,0.3827,0.3536,0.9061,0.1951,0.3753,0.8155,0.1951,0.5449,0.8536,0.3827,0.3536,0.8155,0.1951,0.5449,0.7682,0.3827,0.5133,0.7682,0.3827,0.5133,0.8155,0.1951,0.5449,0.6935,0.1951,0.6935,0.7682,0.3827,0.5133,0.6935,0.1951,0.6935,0.6533,0.3827,0.6533,0.6533,0.3827,0.6533,0.6935,0.1951,0.6935,0.5449,0.1951,0.8155,0.6533,0.3827,0.6533,0.5449,0.1951,0.8155,0.5133,0.3827,0.7682,0.5133,0.3827,0.7682,0.5449,0.1951,0.8155,0.3753,0.1951,0.9061,0.5133,0.3827,0.7682,0.3753,0.1951,0.9061,0.3536,0.3827,0.8536,0.3536,0.3827,0.8536,0.3753,0.1951,0.9061,0.1913,0.1951,0.9619,0.3536,0.3827,0.8536,0.1913,0.1951,0.9619,0.1802,0.3827,0.9061,0.1802,0.3827,0.9061,0.1913,0.1951,0.9619,0.0,0.1951,0.9808,0.1802,0.3827,0.9061,0.0,0.1951,0.9808,0.0,0.3827,0.9239,0.0,0.1951,0.9808,0.0,0.0,1.0,-0.1951,0.0,0.9808,0.0,0.1951,0.9808,-0.1951,0.0,0.9808,-0.1913,0.1951,0.9619,-0.1913,0.1951,0.9619,-0.1951,0.0,0.9808,-0.3827,0.0,0.9239,-0.1913,0.1951,0.9619,-0.3827,0.0,0.9239,-0.3753,0.1951,0.9061,-0.3753,0.1951,0.9061,-0.3827,0.0,0.9239,-0.5556,0.0,0.8315,-0.3753,0.1951,0.9061,-0.5556,0.0,0.8315,-0.5449,0.1951,0.8155,-0.5449,0.1951,0.8155,-0.5556,0.0,0.8315,-0.7071,0.0,0.7071,-0.5449,0.1951,0.8155,-0.7071,0.0,0.7071,-0.6935,0.1951,0.6935,-0.6935,0.1951,0.6935,-0.7071,0.0,0.7071,-0.8315,0.0,0.5556,-0.6935,0.1951,0.6935,-0.8315,0.0,0.5556,-0.8155,0.1951,0.5449,-0.8155,0.1951,0.5449,-0.8315,0.0,0.5556,-0.9239,0.0,0.3827,-0.8155,0.1951,0.5449,-0.9239,0.0,0.3827,-0.9061,0.1951,0.3753,-0.9061,0.1951,0.3753,-0.9239,0.0,0.3827,-0.9808,0.0,0.1951,-0.9061,0.1951,0.3753,-0.9808,0.0,0.1951,-0.9619,0.1951,0.1913,-0.9619,0.1951,0.1913,-0.9808,0.0,0.1951,-1.0,0.0,0.0,-0.9619,0.1951,0.1913,-1.0,0.0,0.0,-0.9808,0.1951,0.0,-0.9808,0.1951,0.0,-1.0,0.0,0.0,-0.9808,0.0,-0.1951,-0.9808,0.1951,0.0,-0.9808,0.0,-0.1951,-0.9619,0.1951,-0.1913,-0.9619,0.1951,-0.1913,-0.9808,0.0,-0.1951,-0.9239,0.0,-0.3827,-0.9619,0.1951,-0.1913,-0.9239,0.0,-0.3827,-0.9061,0.1951,-0.3753,-0.9061,0.1951,-0.3753,-0.9239,0.0,-0.3827,-0.8315,0.0,-0.5556,-0.9061,0.1951,-0.3753,-0.8315,0.0,-0.5556,-0.8155,0.1951,-0.5449,-0.8155,0.1951,-0.5449,-0.8315,0.0,-0.5556,-0.7071,0.0,-0.7071,-0.8155,0.1951,-0.5449,-0.7071,0.0,-0.7071,-0.6935,0.1951,-0.6935,-0.6935,0.1951,-0.6935,-0.7071,0.0,-0.7071,-0.5556,0.0,-0.8315,-0.6935,0.1951,-0.6935,-0.5556,0.0,-0.8315,-0.5449,0.1951,-0.8155,-0.5449,0.1951,-0.8155,-0.5556,0.0,-0.8315,-0.3827,0.0,-0.9239,-0.5449,0.1951,-0.8155,-0.3827,0.0,-0.9239,-0.3753,0.1951,-0.9061,-0.3753,0.1951,-0.9061,-0.3827,0.0,-0.9239,-0.1951,0.0,-0.9808,-0.3753,0.1951,-0.9061,-0.1951,0.0,-0.9808,-0.1913,0.1951,-0.9619,-0.1913,0.1951,-0.9619,-0.1951,0.0,-0.9808,0.0,0.0,-1.0,-0.1913,0.1951,-0.9619,0.0,0.0,-1.0,0.0,0.1951,-0.9808,0.0,0.1951,-0.9808,0.0,0.0,-1.0,0.1951,0.0,-0.9808,0.0,0.1951,-0.9808,0.1951,0.0,-0.9808,0.1913,0.1951,-0.9619,0.1913,0.1951,-0.9619,0.1951,0.0,-0.9808,0.3827,0.0,-0.9239,0.1913,0.1951,-0.9619,0.3827,0.0,-0.9239,0.3753,0.1951,-0.9061,0.3753,0.1951,-0.9061,0.3827,0.0,-0.9239,0.5556,0.0,-0.8315,0.3753,0.1951,-0.9061,0.5556,0.0,-0.8315,0.5449,0.1951,-0.8155,0.5449,0.1951,-0.8155,0.5556,0.0,-0.8315,0.7071,0.0,-0.7071,0.5449,0.1951,-0.8155,0.7071,0.0,-0.7071,0.6935,0.1951,-0.6935,0.6935,0.1951,-0.6935,0.7071,0.0,-0.7071,0.8315,0.0,-0.5556,0.6935,0.1951,-0.6935,0.8315,0.0,-0.5556,0.8155,0.1951,-0.5449,0.8155,0.1951,-0.5449,0.8315,0.0,-0.5556,0.9239,0.0,-0.3827,0.8155,0.1951,-0.5449,0.9239,0.0,-0.3827,0.9061,0.1951,-0.3753,0.9061,0.1951,-0.3753,0.9239,0.0,-0.3827,0.9808,0.0,-0.1951,0.9061,0.1951,-0.3753,0.9808,0.0,-0.1951,0.9619,0.1951,-0.1913,0.9619,0.1951,-0.1913,0.9808,0.0,-0.1951,1.0,0.0,0.0,0.9619,0.1951,-0.1913,1.0,0.0,0.0,0.9808,0.1951,0.0,0.9808,0.1951,0.0,1.0,0.0,0.0,0.9808,0.0,0.1951,0.9808,0.1951,0.0,0.9808,0.0,0.1951,0.9619,0.1951,0.1913,0.9619,0.1951,0.1913,0.9808,0.0,0.1951,0.9239,0.0,0.3827,0.9619,0.1951,0.1913,0.9239,0.0,0.3827,0.9061,0.1951,0.3753,0.9061,0.1951,0.3753,0.9239,0.0,0.3827,0.8315,0.0,0.5556,0.9061,0.1951,0.3753,0.8315,0.0,0.5556,0.8155,0.1951,0.5449,0.8155,0.1951,0.5449,0.8315,0.0,0.5556,0.7071,0.0,0.7071,0.8155,0.1951,0.5449,0.7071,0.0,0.7071,0.6935,0.1951,0.6935,0.6935,0.1951,0.6935,0.7071,0.0,0.7071,0.5556,0.0,0.8315,0.6935,0.1951,0.6935,0.5556,0.0,0.8315,0.5449,0.1951,0.8155,0.5449,0.1951,0.8155,0.5556,0.0,0.8315,0.3827,0.0,0.9239,0.5449,0.1951,0.8155,0.3827,0.0,0.9239,0.3753,0.1951,0.9061,0.3753,0.1951,0.9061,0.3827,0.0,0.9239,0.1951,0.0,0.9808,0.3753,0.1951,0.9061,0.1951,0.0,0.9808,0.1913,0.1951,0.9619,0.1913,0.1951,0.9619,0.1951,0.0,0.9808,0.0,0.0,1.0,0.1913,0.1951,0.9619,0.0,0.0,1.0,0.0,0.1951,0.9808,0.0,0.0,1.0,0.0,-0.1951,0.9808,-0.1913,-0.1951,0.9619,0.0,0.0,1.0,-0.1913,-0.1951,0.9619,-0.1951,0.0,0.9808,-0.1951,0.0,0.9808,-0.1913,-0.1951,0.9619,-0.3753,-0.1951,0.9061,-0.1951,0.0,0.9808,-0.3753,-0.1951,0.9061,-0.3827,0.0,0.9239,-0.3827,0.0,0.9239,-0.3753,-0.1951,0.9061,-0.5449,-0.1951,0.8155,-0.3827,0.0,0.9239,-0.5449,-0.1951,0.8155,-0.5556,0.0,0.8315,-0.5556,0.0,0.8315,-0.5449,-0.1951,0.8155,-0.6935,-0.1951,0.6935,-0.5556,0.0,0.8315,-0.6935,-0.1951,0.6935,-0.7071,0.0,0.7071,-0.7071,0.0,0.7071,-0.6935,-0.1951,0.6935,-0.8155,-0.1951,0.5449,-0.7071,0.0,0.7071,-0.8155,-0.1951,0.5449,-0.8315,0.0,0.5556,-0.8315,0.0,0.5556,-0.8155,-0.1951,0.5449,-0.9061,-0.1951,0.3753,-0.8315,0.0,0.5556,-0.9061,-0.1951,0.3753,-0.9239,0.0,0.3827,-0.9239,0.0,0.3827,-0.9061,-0.1951,0.3753,-0.9619,-0.1951,0.1913,-0.9239,0.0,0.3827,-0.9619,-0.1951,0.1913,-0.9808,0.0,0.1951,-0.9808,0.0,0.1951,-0.9619,-0.1951,0.1913,-0.9808,-0.1951,0.0,-0.9808,0.0,0.1951,-0.9808,-0.1951,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-0.9808,-0.1951,0.0,-0.9619,-0.1951,-0.1913,-1.0,0.0,0.0,-0.9619,-0.1951,-0.1913,-0.9808,0.0,-0.1951,-0.9808,0.0,-0.1951,-0.9619,-0.1951,-0.1913,-0.9061,-0.1951,-0.3753,-0.9808,0.0,-0.1951,-0.9061,-0.1951,-0.3753,-0.9239,0.0,-0.3827,-0.9239,0.0,-0.3827,-0.9061,-0.1951,-0.3753,-0.8155,-0.1951,-0.5449,-0.9239,0.0,-0.3827,-0.8155,-0.1951,-0.5449,-0.8315,0.0,-0.5556,-0.8315,0.0,-0.5556,-0.8155,-0.1951,-0.5449,-0.6935,-0.1951,-0.6935,-0.8315,0.0,-0.5556,-0.6935,-0.1951,-0.6935,-0.7071,0.0,-0.7071,-0.7071,0.0,-0.7071,-0.6935,-0.1951,-0.6935,-0.5449,-0.1951,-0.8155,-0.7071,0.0,-0.7071,-0.5449,-0.1951,-0.8155,-0.5556,0.0,-0.8315,-0.5556,0.0,-0.8315,-0.5449,-0.1951,-0.8155,-0.3753,-0.1951,-0.9061,-0.5556,0.0,-0.8315,-0.3753,-0.1951,-0.9061,-0.3827,0.0,-0.9239,-0.3827,0.0,-0.9239,-0.3753,-0.1951,-0.9061,-0.1913,-0.1951,-0.9619,-0.3827,0.0,-0.9239,-0.1913,-0.1951,-0.9619,-0.1951,0.0,-0.9808,-0.1951,0.0,-0.9808,-0.1913,-0.1951,-0.9619,0.0,-0.1951,-0.9808,-0.1951,0.0,-0.9808,0.0,-0.1951,-0.9808,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,-0.1951,-0.9808,0.1913,-0.1951,-0.9619,0.0,0.0,-1.0,0.1913,-0.1951,-0.9619,0.1951,0.0,-0.9808,0.1951,0.0,-0.9808,0.1913,-0.1951,-0.9619,0.3753,-0.1951,-0.9061,0.1951,0.0,-0.9808,0.3753,-0.1951,-0.9061,0.3827,0.0,-0.9239,0.3827,0.0,-0.9239,0.3753,-0.1951,-0.9061,0.5449,-0.1951,-0.8155,0.3827,0.0,-0.9239,0.5449,-0.1951,-0.8155,0.5556,0.0,-0.8315,0.5556,0.0,-0.8315,0.5449,-0.1951,-0.8155,0.6935,-0.1951,-0.6935,0.5556,0.0,-0.8315,0.6935,-0.1951,-0.6935,0.7071,0.0,-0.7071,0.7071,0.0,-0.7071,0.6935,-0.1951,-0.6935,0.8155,-0.1951,-0.5449,0.7071,0.0,-0.7071,0.8155,-0.1951,-0.5449,0.8315,0.0,-0.5556,0.8315,0.0,-0.5556,0.8155,-0.1951,-0.5449,0.9061,-0.1951,-0.3753,0.8315,0.0,-0.5556,0.9061,-0.1951,-0.3753,0.9239,0.0,-0.3827,0.9239,0.0,-0.3827,0.9061,-0.1951,-0.3753,0.9619,-0.1951,-0.1913,0.9239,0.0,-0.3827,0.9619,-0.1951,-0.1913,0.9808,0.0,-0.1951,0.9808,0.0,-0.1951,0.9619,-0.1951,-0.1913,0.9808,-0.1951,0.0,0.9808,0.0,-0.1951,0.9808,-0.1951,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.9808,-0.1951,0.0,0.9619,-0.1951,0.1913,1.0,0.0,0.0,0.9619,-0.1951,0.1913,0.9808,0.0,0.1951,0.9808,0.0,0.1951,0.9619,-0.1951,0.1913,0.9061,-0.1951,0.3753,0.9808,0.0,0.1951,0.9061,-0.1951,0.3753,0.9239,0.0,0.3827,0.9239,0.0,0.3827,0.9061,-0.1951,0.3753,0.8155,-0.1951,0.5449,0.9239,0.0,0.3827,0.8155,-0.1951,0.5449,0.8315,0.0,0.5556,0.8315,0.0,0.5556,0.8155,-0.1951,0.5449,0.6935,-0.1951,0.6935,0.8315,0.0,0.5556,0.6935,-0.1951,0.6935,0.7071,0.0,0.7071,0.7071,0.0,0.7071,0.6935,-0.1951,0.6935,0.5449,-0.1951,0.8155,0.7071,0.0,0.7071,0.5449,-0.1951,0.8155,0.5556,0.0,0.8315,0.5556,0.0,0.8315,0.5449,-0.1951,0.8155,0.3753,-0.1951,0.9061,0.5556,0.0,0.8315,0.3753,-0.1951,0.9061,0.3827,0.0,0.9239,0.3827,0.0,0.9239,0.3753,-0.1951,0.9061,0.1913,-0.1951,0.9619,0.3827,0.0,0.9239,0.1913,-0.1951,0.9619,0.1951,0.0,0.9808,0.1951,0.0,0.9808,0.1913,-0.1951,0.9619,0.0,-0.1951,0.9808,0.1951,0.0,0.9808,0.0,-0.1951,0.9808,0.0,0.0,1.0,0.0,-0.1951,0.9808,0.0,-0.3827,0.9239,-0.1802,-0.3827,0.9061,0.0,-0.1951,0.9808,-0.1802,-0.3827,0.9061,-0.1913,-0.1951,0.9619,-0.1913,-0.1951,0.9619,-0.1802,-0.3827,0.9061,-0.3536,-0.3827,0.8536,-0.1913,-0.1951,0.9619,-0.3536,-0.3827,0.8536,-0.3753,-0.1951,0.9061,-0.3753,-0.1951,0.9061,-0.3536,-0.3827,0.8536,-0.5133,-0.3827,0.7682,-0.3753,-0.1951,0.9061,-0.5133,-0.3827,0.7682,-0.5449,-0.1951,0.8155,-0.5449,-0.1951,0.8155,-0.5133,-0.3827,0.7682,-0.6533,-0.3827,0.6533,-0.5449,-0.1951,0.8155,-0.6533,-0.3827,0.6533,-0.6935,-0.1951,0.6935,-0.6935,-0.1951,0.6935,-0.6533,-0.3827,0.6533,-0.7682,-0.3827,0.5133,-0.6935,-0.1951,0.6935,-0.7682,-0.3827,0.5133,-0.8155,-0.1951,0.5449,-0.8155,-0.1951,0.5449,-0.7682,-0.3827,0.5133,-0.8536,-0.3827,0.3536,-0.8155,-0.1951,0.5449,-0.8536,-0.3827,0.3536,-0.9061,-0.1951,0.3753,-0.9061,-0.1951,0.3753,-0.8536,-0.3827,0.3536,-0.9061,-0.3827,0.1802,-0.9061,-0.1951,0.3753,-0.9061,-0.3827,0.1802,-0.9619,-0.1951,0.1913,-0.9619,-0.1951,0.1913,-0.9061,-0.3827,0.1802,-0.9239,-0.3827,0.0,-0.9619,-0.1951,0.1913,-0.9239,-0.3827,0.0,-0.9808,-0.1951,0.0,-0.9808,-0.1951,0.0,-0.9239,-0.3827,0.0,-0.9061,-0.3827,-0.1802,-0.9808,-0.1951,0.0,-0.9061,-0.3827,-0.1802,-0.9619,-0.1951,-0.1913,-0.9619,-0.1951,-0.1913,-0.9061,-0.3827,-0.1802,-0.8536,-0.3827,-0.3536,-0.9619,-0.1951,-0.1913,-0.8536,-0.3827,-0.3536,-0.9061,-0.1951,-0.3753,-0.9061,-0.1951,-0.3753,-0.8536,-0.3827,-0.3536,-0.7682,-0.3827,-0.5133,-0.9061,-0.1951,-0.3753,-0.7682,-0.3827,-0.5133,-0.8155,-0.1951,-0.5449,-0.8155,-0.1951,-0.5449,-0.7682,-0.3827,-0.5133,-0.6533,-0.3827,-0.6533,-0.8155,-0.1951,-0.5449,-0.6533,-0.3827,-0.6533,-0.6935,-0.1951,-0.6935,-0.6935,-0.1951,-0.6935,-0.6533,-0.3827,-0.6533,-0.5133,-0.3827,-0.7682,-0.6935,-0.1951,-0.6935,-0.5133,-0.3827,-0.7682,-0.5449,-0.1951,-0.8155,-0.5449,-0.1951,-0.8155,-0.5133,-0.3827,-0.7682,-0.3536,-0.3827,-0.8536,-0.5449,-0.1951,-0.8155,-0.3536,-0.3827,-0.8536,-0.3753,-0.1951,-0.9061,-0.3753,-0.1951,-0.9061,-0.3536,-0.3827,-0.8536,-0.1802,-0.3827,-0.9061,-0.3753,-0.1951,-0.9061,-0.1802,-0.3827,-0.9061,-0.1913,-0.1951,-0.9619,-0.1913,-0.1951,-0.9619,-0.1802,-0.3827,-0.9061,0.0,-0.3827,-0.9239,-0.1913,-0.1951,-0.9619,0.0,-0.3827,-0.9239,0.0,-0.1951,-0.9808,0.0,-0.1951,-0.9808,0.0,-0.3827,-0.9239,0.1802,-0.3827,-0.9061,0.0,-0.1951,-0.9808,0.1802,-0.3827,-0.9061,0.1913,-0.1951,-0.9619,0.1913,-0.1951,-0.9619,0.1802,-0.3827,-0.9061,0.3536,-0.3827,-0.8536,0.1913,-0.1951,-0.9619,0.3536,-0.3827,-0.8536,0.3753,-0.1951,-0.9061,0.3753,-0.1951,-0.9061,0.3536,-0.3827,-0.8536,0.5133,-0.3827,-0.7682,0.3753,-0.1951,-0.9061,0.5133,-0.3827,-0.7682,0.5449,-0.1951,-0.8155,0.5449,-0.1951,-0.8155,0.5133,-0.3827,-0.7682,0.6533,-0.3827,-0.6533,0.5449,-0.1951,-0.8155,0.6533,-0.3827,-0.6533,0.6935,-0.1951,-0.6935,0.6935,-0.1951,-0.6935,0.6533,-0.3827,-0.6533,0.7682,-0.3827,-0.5133,0.6935,-0.1951,-0.6935,0.7682,-0.3827,-0.5133,0.8155,-0.1951,-0.5449,0.8155,-0.1951,-0.5449,0.7682,-0.3827,-0.5133,0.8536,-0.3827,-0.3536,0.8155,-0.1951,-0.5449,0.8536,-0.3827,-0.3536,0.9061,-0.1951,-0.3753,0.9061,-0.1951,-0.3753,0.8536,-0.3827,-0.3536,0.9061,-0.3827,-0.1802,0.9061,-0.1951,-0.3753,0.9061,-0.3827,-0.1802,0.9619,-0.1951,-0.1913,0.9619,-0.1951,-0.1913,0.9061,-0.3827,-0.1802,0.9239,-0.3827,0.0,0.9619,-0.1951,-0.1913,0.9239,-0.3827,0.0,0.9808,-0.1951,0.0,0.9808,-0.1951,0.0,0.9239,-0.3827,0.0,0.9061,-0.3827,0.1802,0.9808,-0.1951,0.0,0.9061,-0.3827,0.1802,0.9619,-0.1951,0.1913,0.9619,-0.1951,0.1913,0.9061,-0.3827,0.1802,0.8536,-0.3827,0.3536,0.9619,-0.1951,0.1913,0.8536,-0.3827,0.3536,0.9061,-0.1951,0.3753,0.9061,-0.1951,0.3753,0.8536,-0.3827,0.3536,0.7682,-0.3827,0.5133,0.9061,-0.1951,0.3753,0.7682,-0.3827,0.5133,0.8155,-0.1951,0.5449,0.8155,-0.1951,0.5449,0.7682,-0.3827,0.5133,0.6533,-0.3827,0.6533,0.8155,-0.1951,0.5449,0.6533,-0.3827,0.6533,0.6935,-0.1951,0.6935,0.6935,-0.1951,0.6935,0.6533,-0.3827,0.6533,0.5133,-0.3827,0.7682,0.6935,-0.1951,0.6935,0.5133,-0.3827,0.7682,0.5449,-0.1951,0.8155,0.5449,-0.1951,0.8155,0.5133,-0.3827,0.7682,0.3536,-0.3827,0.8536,0.5449,-0.1951,0.8155,0.3536,-0.3827,0.8536,0.3753,-0.1951,0.9061,0.3753,-0.1951,0.9061,0.3536,-0.3827,0.8536,0.1802,-0.3827,0.9061,0.3753,-0.1951,0.9061,0.1802,-0.3827,0.9061,0.1913,-0.1951,0.9619,0.1913,-0.1951,0.9619,0.1802,-0.3827,0.9061,0.0,-0.3827,0.9239,0.1913,-0.1951,0.9619,0.0,-0.3827,0.9239,0.0,-0.1951,0.9808,0.0,-0.3827,0.9239,0.0,-0.5556,0.8315,-0.1622,-0.5556,0.8155,0.0,-0.3827,0.9239,-0.1622,-0.5556,0.8155,-0.1802,-0.3827,0.9061,-0.1802,-0.3827,0.9061,-0.1622,-0.5556,0.8155,-0.3182,-0.5556,0.7682,-0.1802,-0.3827,0.9061,-0.3182,-0.5556,0.7682,-0.3536,-0.3827,0.8536,-0.3536,-0.3827,0.8536,-0.3182,-0.5556,0.7682,-0.4619,-0.5556,0.6913,-0.3536,-0.3827,0.8536,-0.4619,-0.5556,0.6913,-0.5133,-0.3827,0.7682,-0.5133,-0.3827,0.7682,-0.4619,-0.5556,0.6913,-0.5879,-0.5556,0.5879,-0.5133,-0.3827,0.7682,-0.5879,-0.5556,0.5879,-0.6533,-0.3827,0.6533,-0.6533,-0.3827,0.6533,-0.5879,-0.5556,0.5879,-0.6913,-0.5556,0.4619,-0.6533,-0.3827,0.6533,-0.6913,-0.5556,0.4619,-0.7682,-0.3827,0.5133,-0.7682,-0.3827,0.5133,-0.6913,-0.5556,0.4619,-0.7682,-0.5556,0.3182,-0.7682,-0.3827,0.5133,-0.7682,-0.5556,0.3182,-0.8536,-0.3827,0.3536,-0.8536,-0.3827,0.3536,-0.7682,-0.5556,0.3182,-0.8155,-0.5556,0.1622,-0.8536,-0.3827,0.3536,-0.8155,-0.5556,0.1622,-0.9061,-0.3827,0.1802,-0.9061,-0.3827,0.1802,-0.8155,-0.5556,0.1622,-0.8315,-0.5556,0.0,-0.9061,-0.3827,0.1802,-0.8315,-0.5556,0.0,-0.9239,-0.3827,0.0,-0.9239,-0.3827,0.0,-0.8315,-0.5556,0.0,-0.8155,-0.5556,-0.1622,-0.9239,-0.3827,0.0,-0.8155,-0.5556,-0.1622,-0.9061,-0.3827,-0.1802,-0.9061,-0.3827,-0.1802,-0.8155,-0.5556,-0.1622,-0.7682,-0.5556,-0.3182,-0.9061,-0.3827,-0.1802,-0.7682,-0.5556,-0.3182,-0.8536,-0.3827,-0.3536,-0.8536,-0.3827,-0.3536,-0.7682,-0.5556,-0.3182,-0.6913,-0.5556,-0.4619,-0.8536,-0.3827,-0.3536,-0.6913,-0.5556,-0.4619,-0.7682,-0.3827,-0.5133,-0.7682,-0.3827,-0.5133,-0.6913,-0.5556,-0.4619,-0.5879,-0.5556,-0.5879,-0.7682,-0.3827,-0.5133,-0.5879,-0.5556,-0.5879,-0.6533,-0.3827,-0.6533,-0.6533,-0.3827,-0.6533,-0.5879,-0.5556,-0.5879,-0.4619,-0.5556,-0.6913,-0.6533,-0.3827,-0.6533,-0.4619,-0.5556,-0.6913,-0.5133,-0.3827,-0.7682,-0.5133,-0.3827,-0.7682,-0.4619,-0.5556,-0.6913,-0.3182,-0.5556,-0.7682,-0.5133,-0.3827,-0.7682,-0.3182,-0.5556,-0.7682,-0.3536,-0.3827,-0.8536,-0.3536,-0.3827,-0.8536,-0.3182,-0.5556,-0.7682,-0.1622,-0.5556,-0.8155,-0.3536,-0.3827,-0.8536,-0.1622,-0.5556,-0.8155,-0.1802,-0.3827,-0.9061,-0.1802,-0.3827,-0.9061,-0.1622,-0.5556,-0.8155,0.0,-0.5556,-0.8315,-0.1802,-0.3827,-0.9061,0.0,-0.5556,-0.8315,0.0,-0.3827,-0.9239,0.0,-0.3827,-0.9239,0.0,-0.5556,-0.8315,0.1622,-0.5556,-0.8155,0.0,-0.3827,-0.9239,0.1622,-0.5556,-0.8155,0.1802,-0.3827,-0.9061,0.1802,-0.3827,-0.9061,0.1622,-0.5556,-0.8155,0.3182,-0.5556,-0.7682,0.1802,-0.3827,-0.9061,0.3182,-0.5556,-0.7682,0.3536,-0.3827,-0.8536,0.3536,-0.3827,-0.8536,0.3182,-0.5556,-0.7682,0.4619,-0.5556,-0.6913,0.3536,-0.3827,-0.8536,0.4619,-0.5556,-0.6913,0.5133,-0.3827,-0.7682,0.5133,-0.3827,-0.7682,0.4619,-0.5556,-0.6913,0.5879,-0.5556,-0.5879,0.5133,-0.3827,-0.7682,0.5879,-0.5556,-0.5879,0.6533,-0.3827,-0.6533,0.6533,-0.3827,-0.6533,0.5879,-0.5556,-0.5879,0.6913,-0.5556,-0.4619,0.6533,-0.3827,-0.6533,0.6913,-0.5556,-0.4619,0.7682,-0.3827,-0.5133,0.7682,-0.3827,-0.5133,0.6913,-0.5556,-0.4619,0.7682,-0.5556,-0.3182,0.7682,-0.3827,-0.5133,0.7682,-0.5556,-0.3182,0.8536,-0.3827,-0.3536,0.8536,-0.3827,-0.3536,0.7682,-0.5556,-0.3182,0.8155,-0.5556,-0.1622,0.8536,-0.3827,-0.3536,0.8155,-0.5556,-0.1622,0.9061,-0.3827,-0.1802,0.9061,-0.3827,-0.1802,0.8155,-0.5556,-0.1622,0.8315,-0.5556,0.0,0.9061,-0.3827,-0.1802,0.8315,-0.5556,0.0,0.9239,-0.3827,0.0,0.9239,-0.3827,0.0,0.8315,-0.5556,0.0,0.8155,-0.5556,0.1622,0.9239,-0.3827,0.0,0.8155,-0.5556,0.1622,0.9061,-0.3827,0.1802,0.9061,-0.3827,0.1802,0.8155,-0.5556,0.1622,0.7682,-0.5556,0.3182,0.9061,-0.3827,0.1802,0.7682,-0.5556,0.3182,0.8536,-0.3827,0.3536,0.8536,-0.3827,0.3536,0.7682,-0.5556,0.3182,0.6913,-0.5556,0.4619,0.8536,-0.3827,0.3536,0.6913,-0.5556,0.4619,0.7682,-0.3827,0.5133,0.7682,-0.3827,0.5133,0.6913,-0.5556,0.4619,0.5879,-0.5556,0.5879,0.7682,-0.3827,0.5133,0.5879,-0.5556,0.5879,0.6533,-0.3827,0.6533,0.6533,-0.3827,0.6533,0.5879,-0.5556,0.5879,0.4619,-0.5556,0.6913,0.6533,-0.3827,0.6533,0.4619,-0.5556,0.6913,0.5133,-0.3827,0.7682,0.5133,-0.3827,0.7682,0.4619,-0.5556,0.6913,0.3182,-0.5556,0.7682,0.5133,-0.3827,0.7682,0.3182,-0.5556,0.7682,0.3536,-0.3827,0.8536,0.3536,-0.3827,0.8536,0.3182,-0.5556,0.7682,0.1622,-0.5556,0.8155,0.3536,-0.3827,0.8536,0.1622,-0.5556,0.8155,0.1802,-0.3827,0.9061,0.1802,-0.3827,0.9061,0.1622,-0.5556,0.8155,0.0,-0.5556,0.8315,0.1802,-0.3827,0.9061,0.0,-0.5556,0.8315,0.0,-0.3827,0.9239,0.0,-0.5556,0.8315,0.0,-0.7071,0.7071,-0.1379,-0.7071,0.6935,0.0,-0.5556,0.8315,-0.1379,-0.7071,0.6935,-0.1622,-0.5556,0.8155,-0.1622,-0.5556,0.8155,-0.1379,-0.7071,0.6935,-0.2706,-0.7071,0.6533,-0.1622,-0.5556,0.8155,-0.2706,-0.7071,0.6533,-0.3182,-0.5556,0.7682,-0.3182,-0.5556,0.7682,-0.2706,-0.7071,0.6533,-0.3928,-0.7071,0.5879,-0.3182,-0.5556,0.7682,-0.3928,-0.7071,0.5879,-0.4619,-0.5556,0.6913,-0.4619,-0.5556,0.6913,-0.3928,-0.7071,0.5879,-0.5,-0.7071,0.5,-0.4619,-0.5556,0.6913,-0.5,-0.7071,0.5,-0.5879,-0.5556,0.5879,-0.5879,-0.5556,0.5879,-0.5,-0.7071,0.5,-0.5879,-0.7071,0.3928,-0.5879,-0.5556,0.5879,-0.5879,-0.7071,0.3928,-0.6913,-0.5556,0.4619,-0.6913,-0.5556,0.4619,-0.5879,-0.7071,0.3928,-0.6533,-0.7071,0.2706,-0.6913,-0.5556,0.4619,-0.6533,-0.7071,0.2706,-0.7682,-0.5556,0.3182,-0.7682,-0.5556,0.3182,-0.6533,-0.7071,0.2706,-0.6935,-0.7071,0.1379,-0.7682,-0.5556,0.3182,-0.6935,-0.7071,0.1379,-0.8155,-0.5556,0.1622,-0.8155,-0.5556,0.1622,-0.6935,-0.7071,0.1379,-0.7071,-0.7071,0.0,-0.8155,-0.5556,0.1622,-0.7071,-0.7071,0.0,-0.8315,-0.5556,0.0,-0.8315,-0.5556,0.0,-0.7071,-0.7071,0.0,-0.6935,-0.7071,-0.1379,-0.8315,-0.5556,0.0,-0.6935,-0.7071,-0.1379,-0.8155,-0.5556,-0.1622,-0.8155,-0.5556,-0.1622,-0.6935,-0.7071,-0.1379,-0.6533,-0.7071,-0.2706,-0.8155,-0.5556,-0.1622,-0.6533,-0.7071,-0.2706,-0.7682,-0.5556,-0.3182,-0.7682,-0.5556,-0.3182,-0.6533,-0.7071,-0.2706,-0.5879,-0.7071,-0.3928,-0.7682,-0.5556,-0.3182,-0.5879,-0.7071,-0.3928,-0.6913,-0.5556,-0.4619,-0.6913,-0.5556,-0.4619,-0.5879,-0.7071,-0.3928,-0.5,-0.7071,-0.5,-0.6913,-0.5556,-0.4619,-0.5,-0.7071,-0.5,-0.5879,-0.5556,-0.5879,-0.5879,-0.5556,-0.5879,-0.5,-0.7071,-0.5,-0.3928,-0.7071,-0.5879,-0.5879,-0.5556,-0.5879,-0.3928,-0.7071,-0.5879,-0.4619,-0.5556,-0.6913,-0.4619,-0.5556,-0.6913,-0.3928,-0.7071,-0.5879,-0.2706,-0.7071,-0.6533,-0.4619,-0.5556,-0.6913,-0.2706,-0.7071,-0.6533,-0.3182,-0.5556,-0.7682,-0.3182,-0.5556,-0.7682,-0.2706,-0.7071,-0.6533,-0.1379,-0.7071,-0.6935,-0.3182,-0.5556,-0.7682,-0.1379,-0.7071,-0.6935,-0.1622,-0.5556,-0.8155,-0.1622,-0.5556,-0.8155,-0.1379,-0.7071,-0.6935,0.0,-0.7071,-0.7071,-0.1622,-0.5556,-0.8155,0.0,-0.7071,-0.7071,0.0,-0.5556,-0.8315,0.0,-0.5556,-0.8315,0.0,-0.7071,-0.7071,0.138,-0.7071,-0.6935,0.0,-0.5556,-0.8315,0.138,-0.7071,-0.6935,0.1622,-0.5556,-0.8155,0.1622,-0.5556,-0.8155,0.138,-0.7071,-0.6935,0.2706,-0.7071,-0.6533,0.1622,-0.5556,-0.8155,0.2706,-0.7071,-0.6533,0.3182,-0.5556,-0.7682,0.3182,-0.5556,-0.7682,0.2706,-0.7071,-0.6533,0.3928,-0.7071,-0.5879,0.3182,-0.5556,-0.7682,0.3928,-0.7071,-0.5879,0.4619,-0.5556,-0.6913,0.4619,-0.5556,-0.6913,0.3928,-0.7071,-0.5879,0.5,-0.7071,-0.5,0.4619,-0.5556,-0.6913,0.5,-0.7071,-0.5,0.5879,-0.5556,-0.5879,0.5879,-0.5556,-0.5879,0.5,-0.7071,-0.5,0.5879,-0.7071,-0.3928,0.5879,-0.5556,-0.5879,0.5879,-0.7071,-0.3928,0.6913,-0.5556,-0.4619,0.6913,-0.5556,-0.4619,0.5879,-0.7071,-0.3928,0.6533,-0.7071,-0.2706,0.6913,-0.5556,-0.4619,0.6533,-0.7071,-0.2706,0.7682,-0.5556,-0.3182,0.7682,-0.5556,-0.3182,0.6533,-0.7071,-0.2706,0.6935,-0.7071,-0.1379,0.7682,-0.5556,-0.3182,0.6935,-0.7071,-0.1379,0.8155,-0.5556,-0.1622,0.8155,-0.5556,-0.1622,0.6935,-0.7071,-0.1379,0.7071,-0.7071,0.0,0.8155,-0.5556,-0.1622,0.7071,-0.7071,0.0,0.8315,-0.5556,0.0,0.8315,-0.5556,0.0,0.7071,-0.7071,0.0,0.6935,-0.7071,0.138,0.8315,-0.5556,0.0,0.6935,-0.7071,0.138,0.8155,-0.5556,0.1622,0.8155,-0.5556,0.1622,0.6935,-0.7071,0.138,0.6533,-0.7071,0.2706,0.8155,-0.5556,0.1622,0.6533,-0.7071,0.2706,0.7682,-0.5556,0.3182,0.7682,-0.5556,0.3182,0.6533,-0.7071,0.2706,0.5879,-0.7071,0.3928,0.7682,-0.5556,0.3182,0.5879,-0.7071,0.3928,0.6913,-0.5556,0.4619,0.6913,-0.5556,0.4619,0.5879,-0.7071,0.3928,0.5,-0.7071,0.5,0.6913,-0.5556,0.4619,0.5,-0.7071,0.5,0.5879,-0.5556,0.5879,0.5879,-0.5556,0.5879,0.5,-0.7071,0.5,0.3928,-0.7071,0.5879,0.5879,-0.5556,0.5879,0.3928,-0.7071,0.5879,0.4619,-0.5556,0.6913,0.4619,-0.5556,0.6913,0.3928,-0.7071,0.5879,0.2706,-0.7071,0.6533,0.4619,-0.5556,0.6913,0.2706,-0.7071,0.6533,0.3182,-0.5556,0.7682,0.3182,-0.5556,0.7682,0.2706,-0.7071,0.6533,0.1379,-0.7071,0.6935,0.3182,-0.5556,0.7682,0.1379,-0.7071,0.6935,0.1622,-0.5556,0.8155,0.1622,-0.5556,0.8155,0.1379,-0.7071,0.6935,0.0,-0.7071,0.7071,0.1622,-0.5556,0.8155,0.0,-0.7071,0.7071,0.0,-0.5556,0.8315,0.0,-0.7071,0.7071,0.0,-0.8315,0.5556,-0.1084,-0.8315,0.5449,0.0,-0.7071,0.7071,-0.1084,-0.8315,0.5449,-0.1379,-0.7071,0.6935,-0.1379,-0.7071,0.6935,-0.1084,-0.8315,0.5449,-0.2126,-0.8315,0.5133,-0.1379,-0.7071,0.6935,-0.2126,-0.8315,0.5133,-0.2706,-0.7071,0.6533,-0.2706,-0.7071,0.6533,-0.2126,-0.8315,0.5133,-0.3087,-0.8315,0.4619,-0.2706,-0.7071,0.6533,-0.3087,-0.8315,0.4619,-0.3928,-0.7071,0.5879,-0.3928,-0.7071,0.5879,-0.3087,-0.8315,0.4619,-0.3928,-0.8315,0.3928,-0.3928,-0.7071,0.5879,-0.3928,-0.8315,0.3928,-0.5,-0.7071,0.5,-0.5,-0.7071,0.5,-0.3928,-0.8315,0.3928,-0.4619,-0.8315,0.3087,-0.5,-0.7071,0.5,-0.4619,-0.8315,0.3087,-0.5879,-0.7071,0.3928,-0.5879,-0.7071,0.3928,-0.4619,-0.8315,0.3087,-0.5133,-0.8315,0.2126,-0.5879,-0.7071,0.3928,-0.5133,-0.8315,0.2126,-0.6533,-0.7071,0.2706,-0.6533,-0.7071,0.2706,-0.5133,-0.8315,0.2126,-0.5449,-0.8315,0.1084,-0.6533,-0.7071,0.2706,-0.5449,-0.8315,0.1084,-0.6935,-0.7071,0.1379,-0.6935,-0.7071,0.1379,-0.5449,-0.8315,0.1084,-0.5556,-0.8315,0.0,-0.6935,-0.7071,0.1379,-0.5556,-0.8315,0.0,-0.7071,-0.7071,0.0,-0.7071,-0.7071,0.0,-0.5556,-0.8315,0.0,-0.5449,-0.8315,-0.1084,-0.7071,-0.7071,0.0,-0.5449,-0.8315,-0.1084,-0.6935,-0.7071,-0.1379,-0.6935,-0.7071,-0.1379,-0.5449,-0.8315,-0.1084,-0.5133,-0.8315,-0.2126,-0.6935,-0.7071,-0.1379,-0.5133,-0.8315,-0.2126,-0.6533,-0.7071,-0.2706,-0.6533,-0.7071,-0.2706,-0.5133,-0.8315,-0.2126,-0.4619,-0.8315,-0.3087,-0.6533,-0.7071,-0.2706,-0.4619,-0.8315,-0.3087,-0.5879,-0.7071,-0.3928,-0.5879,-0.7071,-0.3928,-0.4619,-0.8315,-0.3087,-0.3928,-0.8315,-0.3928,-0.5879,-0.7071,-0.3928,-0.3928,-0.8315,-0.3928,-0.5,-0.7071,-0.5,-0.5,-0.7071,-0.5,-0.3928,-0.8315,-0.3928,-0.3087,-0.8315,-0.4619,-0.5,-0.7071,-0.5,-0.3087,-0.8315,-0.4619,-0.3928,-0.7071,-0.5879,-0.3928,-0.7071,-0.5879,-0.3087,-0.8315,-0.4619,-0.2126,-0.8315,-0.5133,-0.3928,-0.7071,-0.5879,-0.2126,-0.8315,-0.5133,-0.2706,-0.7071,-0.6533,-0.2706,-0.7071,-0.6533,-0.2126,-0.8315,-0.5133,-0.1084,-0.8315,-0.5449,-0.2706,-0.7071,-0.6533,-0.1084,-0.8315,-0.5449,-0.1379,-0.7071,-0.6935,-0.1379,-0.7071,-0.6935,-0.1084,-0.8315,-0.5449,0.0,-0.8315,-0.5556,-0.1379,-0.7071,-0.6935,0.0,-0.8315,-0.5556,0.0,-0.7071,-0.7071,0.0,-0.7071,-0.7071,0.0,-0.8315,-0.5556,0.1084,-0.8315,-0.5449,0.0,-0.7071,-0.7071,0.1084,-0.8315,-0.5449,0.138,-0.7071,-0.6935,0.138,-0.7071,-0.6935,0.1084,-0.8315,-0.5449,0.2126,-0.8315,-0.5133,0.138,-0.7071,-0.6935,0.2126,-0.8315,-0.5133,0.2706,-0.7071,-0.6533,0.2706,-0.7071,-0.6533,0.2126,-0.8315,-0.5133,0.3087,-0.8315,-0.4619,0.2706,-0.7071,-0.6533,0.3087,-0.8315,-0.4619,0.3928,-0.7071,-0.5879,0.3928,-0.7071,-0.5879,0.3087,-0.8315,-0.4619,0.3928,-0.8315,-0.3928,0.3928,-0.7071,-0.5879,0.3928,-0.8315,-0.3928,0.5,-0.7071,-0.5,0.5,-0.7071,-0.5,0.3928,-0.8315,-0.3928,0.4619,-0.8315,-0.3087,0.5,-0.7071,-0.5,0.4619,-0.8315,-0.3087,0.5879,-0.7071,-0.3928,0.5879,-0.7071,-0.3928,0.4619,-0.8315,-0.3087,0.5133,-0.8315,-0.2126,0.5879,-0.7071,-0.3928,0.5133,-0.8315,-0.2126,0.6533,-0.7071,-0.2706,0.6533,-0.7071,-0.2706,0.5133,-0.8315,-0.2126,0.5449,-0.8315,-0.1084,0.6533,-0.7071,-0.2706,0.5449,-0.8315,-0.1084,0.6935,-0.7071,-0.1379,0.6935,-0.7071,-0.1379,0.5449,-0.8315,-0.1084,0.5556,-0.8315,0.0,0.6935,-0.7071,-0.1379,0.5556,-0.8315,0.0,0.7071,-0.7071,0.0,0.7071,-0.7071,0.0,0.5556,-0.8315,0.0,0.5449,-0.8315,0.1084,0.7071,-0.7071,0.0,0.5449,-0.8315,0.1084,0.6935,-0.7071,0.138,0.6935,-0.7071,0.138,0.5449,-0.8315,0.1084,0.5133,-0.8315,0.2126,0.6935,-0.7071,0.138,0.5133,-0.8315,0.2126,0.6533,-0.7071,0.2706,0.6533,-0.7071,0.2706,0.5133,-0.8315,0.2126,0.4619,-0.8315,0.3087,0.6533,-0.7071,0.2706,0.4619,-0.8315,0.3087,0.5879,-0.7071,0.3928,0.5879,-0.7071,0.3928,0.4619,-0.8315,0.3087,0.3928,-0.8315,0.3928,0.5879,-0.7071,0.3928,0.3928,-0.8315,0.3928,0.5,-0.7071,0.5,0.5,-0.7071,0.5,0.3928,-0.8315,0.3928,0.3087,-0.8315,0.4619,0.5,-0.7071,0.5,0.3087,-0.8315,0.4619,0.3928,-0.7071,0.5879,0.3928,-0.7071,0.5879,0.3087,-0.8315,0.4619,0.2126,-0.8315,0.5133,0.3928,-0.7071,0.5879,0.2126,-0.8315,0.5133,0.2706,-0.7071,0.6533,0.2706,-0.7071,0.6533,0.2126,-0.8315,0.5133,0.1084,-0.8315,0.5449,0.2706,-0.7071,0.6533,0.1084,-0.8315,0.5449,0.1379,-0.7071,0.6935,0.1379,-0.7071,0.6935,0.1084,-0.8315,0.5449,0.0,-0.8315,0.5556,0.1379,-0.7071,0.6935,0.0,-0.8315,0.5556,0.0,-0.7071,0.7071,0.0,-0.8315,0.5556,0.0,-0.9239,0.3827,-0.0747,-0.9239,0.3753,0.0,-0.8315,0.5556,-0.0747,-0.9239,0.3753,-0.1084,-0.8315,0.5449,-0.1084,-0.8315,0.5449,-0.0747,-0.9239,0.3753,-0.1464,-0.9239,0.3536,-0.1084,-0.8315,0.5449,-0.1464,-0.9239,0.3536,-0.2126,-0.8315,0.5133,-0.2126,-0.8315,0.5133,-0.1464,-0.9239,0.3536,-0.2126,-0.9239,0.3182,-0.2126,-0.8315,0.5133,-0.2126,-0.9239,0.3182,-0.3087,-0.8315,0.4619,-0.3087,-0.8315,0.4619,-0.2126,-0.9239,0.3182,-0.2706,-0.9239,0.2706,-0.3087,-0.8315,0.4619,-0.2706,-0.9239,0.2706,-0.3928,-0.8315,0.3928,-0.3928,-0.8315,0.3928,-0.2706,-0.9239,0.2706,-0.3182,-0.9239,0.2126,-0.3928,-0.8315,0.3928,-0.3182,-0.9239,0.2126,-0.4619,-0.8315,0.3087,-0.4619,-0.8315,0.3087,-0.3182,-0.9239,0.2126,-0.3536,-0.9239,0.1464,-0.4619,-0.8315,0.3087,-0.3536,-0.9239,0.1464,-0.5133,-0.8315,0.2126,-0.5133,-0.8315,0.2126,-0.3536,-0.9239,0.1464,-0.3753,-0.9239,0.0747,-0.5133,-0.8315,0.2126,-0.3753,-0.9239,0.0747,-0.5449,-0.8315,0.1084,-0.5449,-0.8315,0.1084,-0.3753,-0.9239,0.0747,-0.3827,-0.9239,0.0,-0.5449,-0.8315,0.1084,-0.3827,-0.9239,0.0,-0.5556,-0.8315,0.0,-0.5556,-0.8315,0.0,-0.3827,-0.9239,0.0,-0.3753,-0.9239,-0.0747,-0.5556,-0.8315,0.0,-0.3753,-0.9239,-0.0747,-0.5449,-0.8315,-0.1084,-0.5449,-0.8315,-0.1084,-0.3753,-0.9239,-0.0747,-0.3536,-0.9239,-0.1464,-0.5449,-0.8315,-0.1084,-0.3536,-0.9239,-0.1464,-0.5133,-0.8315,-0.2126,-0.5133,-0.8315,-0.2126,-0.3536,-0.9239,-0.1464,-0.3182,-0.9239,-0.2126,-0.5133,-0.8315,-0.2126,-0.3182,-0.9239,-0.2126,-0.4619,-0.8315,-0.3087,-0.4619,-0.8315,-0.3087,-0.3182,-0.9239,-0.2126,-0.2706,-0.9239,-0.2706,-0.4619,-0.8315,-0.3087,-0.2706,-0.9239,-0.2706,-0.3928,-0.8315,-0.3928,-0.3928,-0.8315,-0.3928,-0.2706,-0.9239,-0.2706,-0.2126,-0.9239,-0.3182,-0.3928,-0.8315,-0.3928,-0.2126,-0.9239,-0.3182,-0.3087,-0.8315,-0.4619,-0.3087,-0.8315,-0.4619,-0.2126,-0.9239,-0.3182,-0.1464,-0.9239,-0.3536,-0.3087,-0.8315,-0.4619,-0.1464,-0.9239,-0.3536,-0.2126,-0.8315,-0.5133,-0.2126,-0.8315,-0.5133,-0.1464,-0.9239,-0.3536,-0.0747,-0.9239,-0.3753,-0.2126,-0.8315,-0.5133,-0.0747,-0.9239,-0.3753,-0.1084,-0.8315,-0.5449,-0.1084,-0.8315,-0.5449,-0.0747,-0.9239,-0.3753,0.0,-0.9239,-0.3827,-0.1084,-0.8315,-0.5449,0.0,-0.9239,-0.3827,0.0,-0.8315,-0.5556,0.0,-0.8315,-0.5556,0.0,-0.9239,-0.3827,0.0747,-0.9239,-0.3753,0.0,-0.8315,-0.5556,0.0747,-0.9239,-0.3753,0.1084,-0.8315,-0.5449,0.1084,-0.8315,-0.5449,0.0747,-0.9239,-0.3753,0.1464,-0.9239,-0.3536,0.1084,-0.8315,-0.5449,0.1464,-0.9239,-0.3536,0.2126,-0.8315,-0.5133,0.2126,-0.8315,-0.5133,0.1464,-0.9239,-0.3536,0.2126,-0.9239,-0.3182,0.2126,-0.8315,-0.5133,0.2126,-0.9239,-0.3182,0.3087,-0.8315,-0.4619,0.3087,-0.8315,-0.4619,0.2126,-0.9239,-0.3182,0.2706,-0.9239,-0.2706,0.3087,-0.8315,-0.4619,0.2706,-0.9239,-0.2706,0.3928,-0.8315,-0.3928,0.3928,-0.8315,-0.3928,0.2706,-0.9239,-0.2706,0.3182,-0.9239,-0.2126,0.3928,-0.8315,-0.3928,0.3182,-0.9239,-0.2126,0.4619,-0.8315,-0.3087,0.4619,-0.8315,-0.3087,0.3182,-0.9239,-0.2126,0.3536,-0.9239,-0.1464,0.4619,-0.8315,-0.3087,0.3536,-0.9239,-0.1464,0.5133,-0.8315,-0.2126,0.5133,-0.8315,-0.2126,0.3536,-0.9239,-0.1464,0.3753,-0.9239,-0.0747,0.5133,-0.8315,-0.2126,0.3753,-0.9239,-0.0747,0.5449,-0.8315,-0.1084,0.5449,-0.8315,-0.1084,0.3753,-0.9239,-0.0747,0.3827,-0.9239,0.0,0.5449,-0.8315,-0.1084,0.3827,-0.9239,0.0,0.5556,-0.8315,0.0,0.5556,-0.8315,0.0,0.3827,-0.9239,0.0,0.3753,-0.9239,0.0747,0.5556,-0.8315,0.0,0.3753,-0.9239,0.0747,0.5449,-0.8315,0.1084,0.5449,-0.8315,0.1084,0.3753,-0.9239,0.0747,0.3536,-0.9239,0.1464,0.5449,-0.8315,0.1084,0.3536,-0.9239,0.1464,0.5133,-0.8315,0.2126,0.5133,-0.8315,0.2126,0.3536,-0.9239,0.1464,0.3182,-0.9239,0.2126,0.5133,-0.8315,0.2126,0.3182,-0.9239,0.2126,0.4619,-0.8315,0.3087,0.4619,-0.8315,0.3087,0.3182,-0.9239,0.2126,0.2706,-0.9239,0.2706,0.4619,-0.8315,0.3087,0.2706,-0.9239,0.2706,0.3928,-0.8315,0.3928,0.3928,-0.8315,0.3928,0.2706,-0.9239,0.2706,0.2126,-0.9239,0.3182,0.3928,-0.8315,0.3928,0.2126,-0.9239,0.3182,0.3087,-0.8315,0.4619,0.3087,-0.8315,0.4619,0.2126,-0.9239,0.3182,0.1464,-0.9239,0.3536,0.3087,-0.8315,0.4619,0.1464,-0.9239,0.3536,0.2126,-0.8315,0.5133,0.2126,-0.8315,0.5133,0.1464,-0.9239,0.3536,0.0747,-0.9239,0.3753,0.2126,-0.8315,0.5133,0.0747,-0.9239,0.3753,0.1084,-0.8315,0.5449,0.1084,-0.8315,0.5449,0.0747,-0.9239,0.3753,0.0,-0.9239,0.3827,0.1084,-0.8315,0.5449,0.0,-0.9239,0.3827,0.0,-0.8315,0.5556,0.0,-0.9239,0.3827,0.0,-0.9808,0.1951,-0.0381,-0.9808,0.1913,0.0,-0.9239,0.3827,-0.0381,-0.9808,0.1913,-0.0747,-0.9239,0.3753,-0.0747,-0.9239,0.3753,-0.0381,-0.9808,0.1913,-0.0747,-0.9808,0.1802,-0.0747,-0.9239,0.3753,-0.0747,-0.9808,0.1802,-0.1464,-0.9239,0.3536,-0.1464,-0.9239,0.3536,-0.0747,-0.9808,0.1802,-0.1084,-0.9808,0.1622,-0.1464,-0.9239,0.3536,-0.1084,-0.9808,0.1622,-0.2126,-0.9239,0.3182,-0.2126,-0.9239,0.3182,-0.1084,-0.9808,0.1622,-0.1379,-0.9808,0.1379,-0.2126,-0.9239,0.3182,-0.1379,-0.9808,0.1379,-0.2706,-0.9239,0.2706,-0.2706,-0.9239,0.2706,-0.1379,-0.9808,0.1379,-0.1622,-0.9808,0.1084,-0.2706,-0.9239,0.2706,-0.1622,-0.9808,0.1084,-0.3182,-0.9239,0.2126,-0.3182,-0.9239,0.2126,-0.1622,-0.9808,0.1084,-0.1802,-0.9808,0.0747,-0.3182,-0.9239,0.2126,-0.1802,-0.9808,0.0747,-0.3536,-0.9239,0.1464,-0.3536,-0.9239,0.1464,-0.1802,-0.9808,0.0747,-0.1913,-0.9808,0.0381,-0.3536,-0.9239,0.1464,-0.1913,-0.9808,0.0381,-0.3753,-0.9239,0.0747,-0.3753,-0.9239,0.0747,-0.1913,-0.9808,0.0381,-0.1951,-0.9808,0.0,-0.3753,-0.9239,0.0747,-0.1951,-0.9808,0.0,-0.3827,-0.9239,0.0,-0.3827,-0.9239,0.0,-0.1951,-0.9808,0.0,-0.1913,-0.9808,-0.0381,-0.3827,-0.9239,0.0,-0.1913,-0.9808,-0.0381,-0.3753,-0.9239,-0.0747,-0.3753,-0.9239,-0.0747,-0.1913,-0.9808,-0.0381,-0.1802,-0.9808,-0.0747,-0.3753,-0.9239,-0.0747,-0.1802,-0.9808,-0.0747,-0.3536,-0.9239,-0.1464,-0.3536,-0.9239,-0.1464,-0.1802,-0.9808,-0.0747,-0.1622,-0.9808,-0.1084,-0.3536,-0.9239,-0.1464,-0.1622,-0.9808,-0.1084,-0.3182,-0.9239,-0.2126,-0.3182,-0.9239,-0.2126,-0.1622,-0.9808,-0.1084,-0.1379,-0.9808,-0.1379,-0.3182,-0.9239,-0.2126,-0.1379,-0.9808,-0.1379,-0.2706,-0.9239,-0.2706,-0.2706,-0.9239,-0.2706,-0.1379,-0.9808,-0.1379,-0.1084,-0.9808,-0.1622,-0.2706,-0.9239,-0.2706,-0.1084,-0.9808,-0.1622,-0.2126,-0.9239,-0.3182,-0.2126,-0.9239,-0.3182,-0.1084,-0.9808,-0.1622,-0.0747,-0.9808,-0.1802,-0.2126,-0.9239,-0.3182,-0.0747,-0.9808,-0.1802,-0.1464,-0.9239,-0.3536,-0.1464,-0.9239,-0.3536,-0.0747,-0.9808,-0.1802,-0.0381,-0.9808,-0.1913,-0.1464,-0.9239,-0.3536,-0.0381,-0.9808,-0.1913,-0.0747,-0.9239,-0.3753,-0.0747,-0.9239,-0.3753,-0.0381,-0.9808,-0.1913,0.0,-0.9808,-0.1951,-0.0747,-0.9239,-0.3753,0.0,-0.9808,-0.1951,0.0,-0.9239,-0.3827,0.0,-0.9239,-0.3827,0.0,-0.9808,-0.1951,0.0381,-0.9808,-0.1913,0.0,-0.9239,-0.3827,0.0381,-0.9808,-0.1913,0.0747,-0.9239,-0.3753,0.0747,-0.9239,-0.3753,0.0381,-0.9808,-0.1913,0.0747,-0.9808,-0.1802,0.0747,-0.9239,-0.3753,0.0747,-0.9808,-0.1802,0.1464,-0.9239,-0.3536,0.1464,-0.9239,-0.3536,0.0747,-0.9808,-0.1802,0.1084,-0.9808,-0.1622,0.1464,-0.9239,-0.3536,0.1084,-0.9808,-0.1622,0.2126,-0.9239,-0.3182,0.2126,-0.9239,-0.3182,0.1084,-0.9808,-0.1622,0.1379,-0.9808,-0.1379,0.2126,-0.9239,-0.3182,0.1379,-0.9808,-0.1379,0.2706,-0.9239,-0.2706,0.2706,-0.9239,-0.2706,0.1379,-0.9808,-0.1379,0.1622,-0.9808,-0.1084,0.2706,-0.9239,-0.2706,0.1622,-0.9808,-0.1084,0.3182,-0.9239,-0.2126,0.3182,-0.9239,-0.2126,0.1622,-0.9808,-0.1084,0.1802,-0.9808,-0.0747,0.3182,-0.9239,-0.2126,0.1802,-0.9808,-0.0747,0.3536,-0.9239,-0.1464,0.3536,-0.9239,-0.1464,0.1802,-0.9808,-0.0747,0.1913,-0.9808,-0.0381,0.3536,-0.9239,-0.1464,0.1913,-0.9808,-0.0381,0.3753,-0.9239,-0.0747,0.3753,-0.9239,-0.0747,0.1913,-0.9808,-0.0381,0.1951,-0.9808,0.0,0.3753,-0.9239,-0.0747,0.1951,-0.9808,0.0,0.3827,-0.9239,0.0,0.3827,-0.9239,0.0,0.1951,-0.9808,0.0,0.1913,-0.9808,0.0381,0.3827,-0.9239,0.0,0.1913,-0.9808,0.0381,0.3753,-0.9239,0.0747,0.3753,-0.9239,0.0747,0.1913,-0.9808,0.0381,0.1802,-0.9808,0.0747,0.3753,-0.9239,0.0747,0.1802,-0.9808,0.0747,0.3536,-0.9239,0.1464,0.3536,-0.9239,0.1464,0.1802,-0.9808,0.0747,0.1622,-0.9808,0.1084,0.3536,-0.9239,0.1464,0.1622,-0.9808,0.1084,0.3182,-0.9239,0.2126,0.3182,-0.9239,0.2126,0.1622,-0.9808,0.1084,0.1379,-0.9808,0.1379,0.3182,-0.9239,0.2126,0.1379,-0.9808,0.1379,0.2706,-0.9239,0.2706,0.2706,-0.9239,0.2706,0.1379,-0.9808,0.1379,0.1084,-0.9808,0.1622,0.2706,-0.9239,0.2706,0.1084,-0.9808,0.1622,0.2126,-0.9239,0.3182,0.2126,-0.9239,0.3182,0.1084,-0.9808,0.1622,0.0747,-0.9808,0.1802,0.2126,-0.9239,0.3182,0.0747,-0.9808,0.1802,0.1464,-0.9239,0.3536,0.1464,-0.9239,0.3536,0.0747,-0.9808,0.1802,0.0381,-0.9808,0.1913,0.1464,-0.9239,0.3536,0.0381,-0.9808,0.1913,0.0747,-0.9239,0.3753,0.0747,-0.9239,0.3753,0.0381,-0.9808,0.1913,0.0,-0.9808,0.1951,0.0747,-0.9239,0.3753,0.0,-0.9808,0.1951,0.0,-0.9239,0.3827,0.0,-1.0,0.0,-0.0381,-0.9808,0.1913,0.0,-0.9808,0.1951,0.0,-1.0,0.0,-0.0747,-0.9808,0.1802,-0.0381,-0.9808,0.1913,0.0,-1.0,0.0,-0.1084,-0.9808,0.1622,-0.0747,-0.9808,0.1802,0.0,-1.0,0.0,-0.1379,-0.9808,0.1379,-0.1084,-0.9808,0.1622,0.0,-1.0,0.0,-0.1622,-0.9808,0.1084,-0.1379,-0.9808,0.1379,0.0,-1.0,0.0,-0.1802,-0.9808,0.0747,-0.1622,-0.9808,0.1084,0.0,-1.0,0.0,-0.1913,-0.9808,0.0381,-0.1802,-0.9808,0.0747,0.0,-1.0,0.0,-0.1951,-0.9808,0.0,-0.1913,-0.9808,0.0381,0.0,-1.0,0.0,-0.1913,-0.9808,-0.0381,-0.1951,-0.9808,0.0,0.0,-1.0,0.0,-0.1802,-0.9808,-0.0747,-0.1913,-0.9808,-0.0381,0.0,-1.0,0.0,-0.1622,-0.9808,-0.1084,-0.1802,-0.9808,-0.0747,0.0,-1.0,0.0,-0.1379,-0.9808,-0.1379,-0.1622,-0.9808,-0.1084,0.0,-1.0,0.0,-0.1084,-0.9808,-0.1622,-0.1379,-0.9808,-0.1379,0.0,-1.0,0.0,-0.0747,-0.9808,-0.1802,-0.1084,-0.9808,-0.1622,0.0,-1.0,0.0,-0.0381,-0.9808,-0.1913,-0.0747,-0.9808,-0.1802,0.0,-1.0,0.0,0.0,-0.9808,-0.1951,-0.0381,-0.9808,-0.1913,0.0,-1.0,0.0,0.0381,-0.9808,-0.1913,0.0,-0.9808,-0.1951,0.0,-1.0,0.0,0.0747,-0.9808,-0.1802,0.0381,-0.9808,-0.1913,0.0,-1.0,0.0,0.1084,-0.9808,-0.1622,0.0747,-0.9808,-0.1802,0.0,-1.0,0.0,0.1379,-0.9808,-0.1379,0.1084,-0.9808,-0.1622,0.0,-1.0,0.0,0.1622,-0.9808,-0.1084,0.1379,-0.9808,-0.1379,0.0,-1.0,0.0,0.1802,-0.9808,-0.0747,0.1622,-0.9808,-0.1084,0.0,-1.0,0.0,0.1913,-0.9808,-0.0381,0.1802,-0.9808,-0.0747,0.0,-1.0,0.0,0.1951,-0.9808,0.0,0.1913,-0.9808,-0.0381,0.0,-1.0,0.0,0.1913,-0.9808,0.0381,0.1951,-0.9808,0.0,0.0,-1.0,0.0,0.1802,-0.9808,0.0747,0.1913,-0.9808,0.0381,0.0,-1.0,0.0,0.1622,-0.9808,0.1084,0.1802,-0.9808,0.0747,0.0,-1.0,0.0,0.1379,-0.9808,0.1379,0.1622,-0.9808,0.1084,0.0,-1.0,0.0,0.1084,-0.9808,0.1622,0.1379,-0.9808,0.1379,0.0,-1.0,0.0,0.0747,-0.9808,0.1802,0.1084,-0.9808,0.1622,0.0,-1.0,0.0,0.0381,-0.9808,0.1913,0.0747,-0.9808,0.1802,0.0,-1.0,0.0,0.0,-0.9808,0.1951,0.0381,-0.9808,0.1913],"normals":[0.0,1.0,0.0,0.0,0.9796,0.201,-0.0392,0.9796,0.1971,0.0,1.0,0.0,-0.0392,0.9796,0.1971,-0.0769,0.9796,0.1857,0.0,1.0,0.0,-0.0769,0.9796,0.1857,-0.1117,0.9796,0.1671,0.0,1.0,0.0,-0.1117,0.9796,0.1671,-0.1421,0.9796,0.1421,0.0,1.0,0.0,-0.1421,0.9796,0.1421,-0.1671,0.9796,0.1117,0.0,1.0,0.0,-0.1671,0.9796,0.1117,-0.1857,0.9796,0.0769,0.0,1.0,0.0,-0.1857,0.9796,0.0769,-0.1971,0.9796,0.0392,0.0,1.0,0.0,-0.1971,0.9796,0.0392,-0.201,0.9796,0.0,0.0,1.0,0.0,-0.201,0.9796,0.0,-0.1971,0.9796,-0.0392,0.0,1.0,0.0,-0.1971,0.9796,-0.0392,-0.1857,0.9796,-0.0769,0.0,1.0,0.0,-0.1857,0.9796,-0.0769,-0.1671,0.9796,-0.1117,0.0,1.0,0.0,-0.1671,0.9796,-0.1117,-0.1421,0.9796,-0.1421,0.0,1.0,0.0,-0.1421,0.9796,-0.1421,-0.1117,0.9796,-0.1671,0.0,1.0,0.0,-0.1117,0.9796,-0.1671,-0.0769,0.9796,-0.1857,0.0,1.0,0.0,-0.0769,0.9796,-0.1857,-0.0392,0.9796,-0.1971,0.0,1.0,0.0,-0.0392,0.9796,-0.1971,0.0,0.9796,-0.201,0.0,1.0,0.0,0.0,0.9796,-0.201,0.0392,0.9796,-0.1971,0.0,1.0,0.0,0.0392,0.9796,-0.1971,0.0769,0.9796,-0.1857,0.0,1.0,0.0,0.0769,0.9796,-0.1857,0.1117,0.9796,-0.1671,0.0,1.0,0.0,0.1117,0.9796,-0.1671,0.1421,0.9796,-0.1421,0.0,1.0,0.0,0.1421,0.9796,-0.1421,0.1671,0.9796,-0.1117,0.0,1.0,0.0,0.1671,0.9796,-0.1117,0.1857,0.9796,-0.0769,0.0,1.0,0.0,0.1857,0.9796,-0.0769,0.1971,0.9796,-0.0392,0.0,1.0,0.0,0.1971,0.9796,-0.0392,0.201,0.9796,0.0,0.0,1.0,0.0,0.201,0.9796,0.0,0.1971,0.9796,0.0392,0.0,1.0,0.0,0.1971,0.9796,0.0392,0.1857,0.9796,0.0769,0.0,1.0,0.0,0.1857,0.9796,0.0769,0.1671,0.9796,0.1117,0.0,1.0,0.0,0.1671,0.9796,0.1117,0.1421,0.9796,0.1421,0.0,1.0,0.0,0.1421,0.9796,0.1421,0.1117,0.9796,0.1671,0.0,1.0,0.0,0.1117,0.9796,0.1671,0.0769,0.9796,0.1857,0.0,1.0,0.0,0.0769,0.9796,0.1857,0.0392,0.9796,0.1971,0.0,1.0,0.0,0.0392,0.9796,0.1971,0.0,0.9796,0.201,0.0,0.9796,0.201,0.0,0.9217,0.3879,-0.0757,0.9217,0.3804,0.0,0.9796,0.201,-0.0757,0.9217,0.3804,-0.0392,0.9796,0.1971,-0.0392,0.9796,0.1971,-0.0757,0.9217,0.3804,-0.1484,0.9217,0.3584,-0.0392,0.9796,0.1971,-0.1484,0.9217,0.3584,-0.0769,0.9796,0.1857,-0.0769,0.9796,0.1857,-0.1484,0.9217,0.3584,-0.2155,0.9217,0.3225,-0.0769,0.9796,0.1857,-0.2155,0.9217,0.3225,-0.1117,0.9796,0.1671,-0.1117,0.9796,0.1671,-0.2155,0.9217,0.3225,-0.2743,0.9217,0.2743,-0.1117,0.9796,0.1671,-0.2743,0.9217,0.2743,-0.1421,0.9796,0.1421,-0.1421,0.9796,0.1421,-0.2743,0.9217,0.2743,-0.3225,0.9217,0.2155,-0.1421,0.9796,0.1421,-0.3225,0.9217,0.2155,-0.1671,0.9796,0.1117,-0.1671,0.9796,0.1117,-0.3225,0.9217,0.2155,-0.3584,0.9217,0.1484,-0.1671,0.9796,0.1117,-0.3584,0.9217,0.1484,-0.1857,0.9796,0.0769,-0.1857,0.9796,0.0769,-0.3584,0.9217,0.1484,-0.3804,0.9217,0.0757,-0.1857,0.9796,0.0769,-0.3804,0.9217,0.0757,-0.1971,0.9796,0.0392,-0.1971,0.9796,0.0392,-0.3804,0.9217,0.0757,-0.3879,0.9217,0.0,-0.1971,0.9796,0.0392,-0.3879,0.9217,0.0,-0.201,0.9796,0.0,-0.201,0.9796,0.0,-0.3879,0.9217,0.0,-0.3804,0.9217,-0.0757,-0.201,0.9796,0.0,-0.3804,0.9217,-0.0757,-0.1971,0.9796,-0.0392,-0.1971,0.9796,-0.0392,-0.3804,0.9217,-0.0757,-0.3584,0.9217,-0.1484,-0.1971,0.9796,-0.0392,-0.3584,0.9217,-0.1484,-0.1857,0.9796,-0.0769,-0.1857,0.9796,-0.0769,-0.3584,0.9217,-0.1484,-0.3225,0.9217,-0.2155,-0.1857,0.9796,-0.0769,-0.3225,0.9217,-0.2155,-0.1671,0.9796,-0.1117,-0.1671,0.9796,-0.1117,-0.3225,0.9217,-0.2155,-0.2743,0.9217,-0.2743,-0.1671,0.9796,-0.1117,-0.2743,0.9217,-0.2743,-0.1421,0.9796,-0.1421,-0.1421,0.9796,-0.1421,-0.2743,0.9217,-0.2743,-0.2155,0.9217,-0.3225,-0.1421,0.9796,-0.1421,-0.2155,0.9217,-0.3225,-0.1117,0.9796,-0.1671,-0.1117,0.9796,-0.1671,-0.2155,0.9217,-0.3225,-0.1484,0.9217,-0.3584,-0.1117,0.9796,-0.1671,-0.1484,0.9217,-0.3584,-0.0769,0.9796,-0.1857,-0.0769,0.9796,-0.1857,-0.1484,0.9217,-0.3584,-0.0757,0.9217,-0.3804,-0.0769,0.9796,-0.1857,-0.0757,0.9217,-0.3804,-0.0392,0.9796,-0.1971,-0.0392,0.9796,-0.1971,-0.0757,0.9217,-0.3804,0.0,0.9217,-0.3879,-0.0392,0.9796,-0.1971,0.0,0.9217,-0.3879,0.0,0.9796,-0.201,0.0,0.9796,-0.201,0.0,0.9217,-0.3879,0.0757,0.9217,-0.3804,0.0,0.9796,-0.201,0.0757,0.9217,-0.3804,0.0392,0.9796,-0.1971,0.0392,0.9796,-0.1971,0.0757,0.9217,-0.3804,0.1484,0.9217,-0.3584,0.0392,0.9796,-0.1971,0.1484,0.9217,-0.3584,0.0769,0.9796,-0.1857,0.0769,0.9796,-0.1857,0.1484,0.9217,-0.3584,0.2155,0.9217,-0.3225,0.0769,0.9796,-0.1857,0.2155,0.9217,-0.3225,0.1117,0.9796,-0.1671,0.1117,0.9796,-0.1671,0.2155,0.9217,-0.3225,0.2743,0.9217,-0.2743,0.1117,0.9796,-0.1671,0.2743,0.9217,-0.2743,0.1421,0.9796,-0.1421,0.1421,0.9796,-0.1421,0.2743,0.9217,-0.2743,0.3225,0.9217,-0.2155,0.1421,0.9796,-0.1421,0.3225,0.9217,-0.2155,0.1671,0.9796,-0.1117,0.1671,0.9796,-0.1117,0.3225,0.9217,-0.2155,0.3584,0.9217,-0.1484,0.1671,0.9796,-0.1117,0.3584,0.9217,-0.1484,0.1857,0.9796,-0.0769,0.1857,0.9796,-0.0769,0.3584,0.9217,-0.1484,0.3804,0.9217,-0.0757,0.1857,0.9796,-0.0769,0.3804,0.9217,-0.0757,0.1971,0.9796,-0.0392,0.1971,0.9796,-0.0392,0.3804,0.9217,-0.0757,0.3879,0.9217,0.0,0.1971,0.9796,-0.0392,0.3879,0.9217,0.0,0.201,0.9796,0.0,0.201,0.9796,0.0,0.3879,0.9217,0.0,0.3804,0.9217,0.0757,0.201,0.9796,0.0,0.3804,0.9217,0.0757,0.1971,0.9796,0.0392,0.1971,0.9796,0.0392,0.3804,0.9217,0.0757,0.3584,0.9217,0.1484,0.1971,0.9796,0.0392,0.3584,0.9217,0.1484,0.1857,0.9796,0.0769,0.1857,0.9796,0.0769,0.3584,0.9217,0.1484,0.3225,0.9217,0.2155,0.1857,0.9796,0.0769,0.3225,0.9217,0.2155,0.1671,0.9796,0.1117,0.1671,0.9796,0.1117,0.3225,0.9217,0.2155,0.2743,0.9217,0.2743,0.1671,0.9796,0.1117,0.2743,0.9217,0.2743,0.1421,0.9796,0.1421,0.1421,0.9796,0.1421,0.2743,0.9217,0.2743,0.2155,0.9217,0.3225,0.1421,0.9796,0.1421,0.2155,0.9217,0.3225,0.1117,0.9796,0.1671,0.1117,0.9796,0.1671,0.2155,0.9217,0.3225,0.1484,0.9217,0.3584,0.1117,0.9796,0.1671,0.1484,0.9217,0.3584,0.0769,0.9796,0.1857,0.0769,0.9796,0.1857,0.1484,0.9217,0.3584,0.0757,0.9217,0.3804,0.0769,0.9796,0.1857,0.0757,0.9217,0.3804,0.0392,0.9796,0.1971,0.0392,0.9796,0.1971,0.0757,0.9217,0.3804,0.0,0.9217,0.3879,0.0392,0.9796,0.1971,0.0,0.9217,0.3879,0.0,0.9796,0.201,0.0,0.9217,0.3879,0.0,0.8286,0.5598,-0.1092,0.8286,0.549,0.0,0.9217,0.3879,-0.1092,0.8286,0.549,-0.0757,0.9217,0.3804,-0.0757,0.9217,0.3804,-0.1092,0.8286,0.549,-0.2142,0.8286,0.5172,-0.0757,0.9217,0.3804,-0.2142,0.8286,0.5172,-0.1484,0.9217,0.3584,-0.1484,0.9217,0.3584,-0.2142,0.8286,0.5172,-0.311,0.8286,0.4654,-0.1484,0.9217,0.3584,-0.311,0.8286,0.4654,-0.2155,0.9217,0.3225,-0.2155,0.9217,0.3225,-0.311,0.8286,0.4654,-0.3958,0.8286,0.3958,-0.2155,0.9217,0.3225,-0.3958,0.8286,0.3958,-0.2743,0.9217,0.2743,-0.2743,0.9217,0.2743,-0.3958,0.8286,0.3958,-0.4654,0.8286,0.311,-0.2743,0.9217,0.2743,-0.4654,0.8286,0.311,-0.3225,0.9217,0.2155,-0.3225,0.9217,0.2155,-0.4654,0.8286,0.311,-0.5172,0.8286,0.2142,-0.3225,0.9217,0.2155,-0.5172,0.8286,0.2142,-0.3584,0.9217,0.1484,-0.3584,0.9217,0.1484,-0.5172,0.8286,0.2142,-0.549,0.8286,0.1092,-0.3584,0.9217,0.1484,-0.549,0.8286,0.1092,-0.3804,0.9217,0.0757,-0.3804,0.9217,0.0757,-0.549,0.8286,0.1092,-0.5598,0.8286,0.0,-0.3804,0.9217,0.0757,-0.5598,0.8286,0.0,-0.3879,0.9217,0.0,-0.3879,0.9217,0.0,-0.5598,0.8286,0.0,-0.549,0.8286,-0.1092,-0.3879,0.9217,0.0,-0.549,0.8286,-0.1092,-0.3804,0.9217,-0.0757,-0.3804,0.9217,-0.0757,-0.549,0.8286,-0.1092,-0.5172,0.8286,-0.2142,-0.3804,0.9217,-0.0757,-0.5172,0.8286,-0.2142,-0.3584,0.9217,-0.1484,-0.3584,0.9217,-0.1484,-0.5172,0.8286,-0.2142,-0.4654,0.8286,-0.311,-0.3584,0.9217,-0.1484,-0.4654,0.8286,-0.311,-0.3225,0.9217,-0.2155,-0.3225,0.9217,-0.2155,-0.4654,0.8286,-0.311,-0.3958,0.8286,-0.3958,-0.3225,0.9217,-0.2155,-0.3958,0.8286,-0.3958,-0.2743,0.9217,-0.2743,-0.2743,0.9217,-0.2743,-0.3958,0.8286,-0.3958,-0.311,0.8286,-0.4654,-0.2743,0.9217,-0.2743,-0.311,0.8286,-0.4654,-0.2155,0.9217,-0.3225,-0.2155,0.9217,-0.3225,-0.311,0.8286,-0.4654,-0.2142,0.8286,-0.5172,-0.2155,0.9217,-0.3225,-0.2142,0.8286,-0.5172,-0.1484,0.9217,-0.3584,-0.1484,0.9217,-0.3584,-0.2142,0.8286,-0.5172,-0.1092,0.8286,-0.549,-0.1484,0.9217,-0.3584,-0.1092,0.8286,-0.549,-0.0757,0.9217,-0.3804,-0.0757,0.9217,-0.3804,-0.1092,0.8286,-0.549,0.0,0.8286,-0.5598,-0.0757,0.9217,-0.3804,0.0,0.8286,-0.5598,0.0,0.9217,-0.3879,0.0,0.9217,-0.3879,0.0,0.8286,-0.5598,0.1092,0.8286,-0.549,0.0,0.9217,-0.3879,0.1092,0.8286,-0.549,0.0757,0.9217,-0.3804,0.0757,0.9217,-0.3804,0.1092,0.8286,-0.549,0.2142,0.8286,-0.5172,0.0757,0.9217,-0.3804,0.2142,0.8286,-0.5172,0.1484,0.9217,-0.3584,0.1484,0.9217,-0.3584,0.2142,0.8286,-0.5172,0.311,0.8286,-0.4654,0.1484,0.9217,-0.3584,0.311,0.8286,-0.4654,0.2155,0.9217,-0.3225,0.2155,0.9217,-0.3225,0.311,0.8286,-0.4654,0.3958,0.8286,-0.3958,0.2155,0.9217,-0.3225,0.3958,0.8286,-0.3958,0.2743,0.9217,-0.2743,0.2743,0.9217,-0.2743,0.3958,0.8286,-0.3958,0.4654,0.8286,-0.311,0.2743,0.9217,-0.2743,0.4654,0.8286,-0.311,0.3225,0.9217,-0.2155,0.3225,0.9217,-0.2155,0.4654,0.8286,-0.311,0.5172,0.8286,-0.2142,0.3225,0.9217,-0.2155,0.5172,0.8286,-0.2142,0.3584,0.9217,-0.1484,0.3584,0.9217,-0.1484,0.5172,0.8286,-0.2142,0.549,0.8286,-0.1092,0.3584,0.9217,-0.1484,0.549,0.8286,-0.1092,0.3804,0.9217,-0.0757,0.3804,0.9217,-0.0757,0.549,0.8286,-0.1092,0.5598,0.8286,0.0,0.3804,0.9217,-0.0757,0.5598,0.8286,0.0,0.3879,0.9217,0.0,0.3879,0.9217,0.0,0.5598,0.8286,0.0,0.549,0.8286,0.1092,0.3879,0.9217,0.0,0.549,0.8286,0.1092,0.3804,0.9217,0.0757,0.3804,0.9217,0.0757,0.549,0.8286,0.1092,0.5172,0.8286,0.2142,0.3804,0.9217,0.0757,0.5172,0.8286,0.2142,0.3584,0.9217,0.1484,0.3584,0.9217,0.1484,0.5172,0.8286,0.2142,0.4654,0.8286,0.311,0.3584,0.9217,0.1484,0.4654,0.8286,0.311,0.3225,0.9217,0.2155,0.3225,0.9217,0.2155,0.4654,0.8286,0.311,0.3958,0.8286,0.3958,0.3225,0.9217,0.2155,0.3958,0.8286,0.3958,0.2743,0.9217,0.2743,0.2743,0.9217,0.2743,0.3958,0.8286,0.3958,0.311,0.8286,0.4654,0.2743,0.9217,0.2743,0.311,0.8286,0.4654,0.2155,0.9217,0.3225,0.2155,0.9217,0.3225,0.311,0.8286,0.4654,0.2142,0.8286,0.5172,0.2155,0.9217,0.3225,0.2142,0.8286,0.5172,0.1484,0.9217,0.3584,0.1484,0.9217,0.3584,0.2142,0.8286,0.5172,0.1092,0.8286,0.549,0.1484,0.9217,0.3584,0.1092,0.8286,0.549,0.0757,0.9217,0.3804,0.0757,0.9217,0.3804,0.1092,0.8286,0.549,0.0,0.8286,0.5598,0.0757,0.9217,0.3804,0.0,0.8286,0.5598,0.0,0.9217,0.3879,0.0,0.8286,0.5598,0.0,0.7041,0.7101,-0.1385,0.7041,0.6965,0.0,0.8286,0.5598,-0.1385,0.7041,0.6965,-0.1092,0.8286,0.549,-0.1092,0.8286,0.549,-0.1385,0.7041,0.6965,-0.2718,0.7041,0.6561,-0.1092,0.8286,0.549,-0.2718,0.7041,0.6561,-0.2142,0.8286,0.5172,-0.2142,0.8286,0.5172,-0.2718,0.7041,0.6561,-0.3945,0.7041,0.5905,-0.2142,0.8286,0.5172,-0.3945,0.7041,0.5905,-0.311,0.8286,0.4654,-0.311,0.8286,0.4654,-0.3945,0.7041,0.5905,-0.5021,0.7041,0.5021,-0.311,0.8286,0.4654,-0.5021,0.7041,0.5021,-0.3958,0.8286,0.3958,-0.3958,0.8286,0.3958,-0.5021,0.7041,0.5021,-0.5905,0.7041,0.3945,-0.3958,0.8286,0.3958,-0.5905,0.7041,0.3945,-0.4654,0.8286,0.311,-0.4654,0.8286,0.311,-0.5905,0.7041,0.3945,-0.6561,0.7041,0.2718,-0.4654,0.8286,0.311,-0.6561,0.7041,0.2718,-0.5172,0.8286,0.2142,-0.5172,0.8286,0.2142,-0.6561,0.7041,0.2718,-0.6965,0.7041,0.1385,-0.5172,0.8286,0.2142,-0.6965,0.7041,0.1385,-0.549,0.8286,0.1092,-0.549,0.8286,0.1092,-0.6965,0.7041,0.1385,-0.7101,0.7041,0.0,-0.549,0.8286,0.1092,-0.7101,0.7041,0.0,-0.5598,0.8286,0.0,-0.5598,0.8286,0.0,-0.7101,0.7041,0.0,-0.6965,0.7041,-0.1385,-0.5598,0.8286,0.0,-0.6965,0.7041,-0.1385,-0.549,0.8286,-0.1092,-0.549,0.8286,-0.1092,-0.6965,0.7041,-0.1385,-0.6561,0.7041,-0.2718,-0.549,0.8286,-0.1092,-0.6561,0.7041,-0.2718,-0.5172,0.8286,-0.2142,-0.5172,0.8286,-0.2142,-0.6561,0.7041,-0.2718,-0.5905,0.7041,-0.3945,-0.5172,0.8286,-0.2142,-0.5905,0.7041,-0.3945,-0.4654,0.8286,-0.311,-0.4654,0.8286,-0.311,-0.5905,0.7041,-0.3945,-0.5021,0.7041,-0.5021,-0.4654,0.8286,-0.311,-0.5021,0.7041,-0.5021,-0.3958,0.8286,-0.3958,-0.3958,0.8286,-0.3958,-0.5021,0.7041,-0.5021,-0.3945,0.7041,-0.5905,-0.3958,0.8286,-0.3958,-0.3945,0.7041,-0.5905,-0.311,0.8286,-0.4654,-0.311,0.8286,-0.4654,-0.3945,0.7041,-0.5905,-0.2718,0.7041,-0.6561,-0.311,0.8286,-0.4654,-0.2718,0.7041,-0.6561,-0.2142,0.8286,-0.5172,-0.2142,0.8286,-0.5172,-0.2718,0.7041,-0.6561,-0.1385,0.7041,-0.6965,-0.2142,0.8286,-0.5172,-0.1385,0.7041,-0.6965,-0.1092,0.8286,-0.549,-0.1092,0.8286,-0.549,-0.1385,0.7041,-0.6965,0.0,0.7041,-0.7101,-0.1092,0.8286,-0.549,0.0,0.7041,-0.7101,0.0,0.8286,-0.5598,0.0,0.8286,-0.5598,0.0,0.7041,-0.7101,0.1385,0.7041,-0.6965,0.0,0.8286,-0.5598,0.1385,0.7041,-0.6965,0.1092,0.8286,-0.549,0.1092,0.8286,-0.549,0.1385,0.7041,-0.6965,0.2718,0.7041,-0.6561,0.1092,0.8286,-0.549,0.2718,0.7041,-0.6561,0.2142,0.8286,-0.5172,0.2142,0.8286,-0.5172,0.2718,0.7041,-0.6561,0.3945,0.7041,-0.5905,0.2142,0.8286,-0.5172,0.3945,0.7041,-0.5905,0.311,0.8286,-0.4654,0.311,0.8286,-0.4654,0.3945,0.7041,-0.5905,0.5021,0.7041,-0.5021,0.311,0.8286,-0.4654,0.5021,0.7041,-0.5021,0.3958,0.8286,-0.3958,0.3958,0.8286,-0.3958,0.5021,0.7041,-0.5021,0.5905,0.7041,-0.3945,0.3958,0.8286,-0.3958,0.5905,0.7041,-0.3945,0.4654,0.8286,-0.311,0.4654,0.8286,-0.311,0.5905,0.7041,-0.3945,0.6561,0.7041,-0.2718,0.4654,0.8286,-0.311,0.6561,0.7041,-0.2718,0.5172,0.8286,-0.2142,0.5172,0.8286,-0.2142,0.6561,0.7041,-0.2718,0.6965,0.7041,-0.1385,0.5172,0.8286,-0.2142,0.6965,0.7041,-0.1385,0.549,0.8286,-0.1092,0.549,0.8286,-0.1092,0.6965,0.7041,-0.1385,0.7101,0.7041,0.0,0.549,0.8286,-0.1092,0.7101,0.7041,0.0,0.5598,0.8286,0.0,0.5598,0.8286,0.0,0.7101,0.7041,0.0,0.6965,0.7041,0.1385,0.5598,0.8286,0.0,0.6965,0.7041,0.1385,0.549,0.8286,0.1092,0.549,0.8286,0.1092,0.6965,0.7041,0.1385,0.6561,0.7041,0.2718,0.549,0.8286,0.1092,0.6561,0.7041,0.2718,0.5172,0.8286,0.2142,0.5172,0.8286,0.2142,0.6561,0.7041,0.2718,0.5905,0.7041,0.3945,0.5172,0.8286,0.2142,0.5905,0.7041,0.3945,0.4654,0.8286,0.311,0.4654,0.8286,0.311,0.5905,0.7041,0.3945,0.5021,0.7041,0.5021,0.4654,0.8286,0.311,0.5021,0.7041,0.5021,0.3958,0.8286,0.3958,0.3958,0.8286,0.3958,0.5021,0.7041,0.5021,0.3945,0.7041,0.5905,0.3958,0.8286,0.3958,0.3945,0.7041,0.5905,0.311,0.8286,0.4654,0.311,0.8286,0.4654,0.3945,0.7041,0.5905,0.2718,0.7041,0.6561,0.311,0.8286,0.4654,0.2718,0.7041,0.6561,0.2142,0.8286,0.5172,0.2142,0.8286,0.5172,0.2718,0.7041,0.6561,0.1385,0.7041,0.6965,0.2142,0.8286,0.5172,0.1385,0.7041,0.6965,0.1092,0.8286,0.549,0.1092,0.8286,0.549,0.1385,0.7041,0.6965,0.0,0.7041,0.7101,0.1092,0.8286,0.549,0.0,0.7041,0.7101,0.0,0.8286,0.5598,0.0,0.7041,0.7101,0.0,0.5528,0.8333,-0.1626,0.5528,0.8173,0.0,0.7041,0.7101,-0.1626,0.5528,0.8173,-0.1385,0.7041,0.6965,-0.1385,0.7041,0.6965,-0.1626,0.5528,0.8173,-0.3189,0.5528,0.7699,-0.1385,0.7041,0.6965,-0.3189,0.5528,0.7699,-0.2718,0.7041,0.6561,-0.2718,0.7041,0.6561,-0.3189,0.5528,0.7699,-0.463,0.5528,0.6929,-0.2718,0.7041,0.6561,-0.463,0.5528,0.6929,-0.3945,0.7041,0.5905,-0.3945,0.7041,0.5905,-0.463,0.5528,0.6929,-0.5893,0.5528,0.5893,-0.3945,0.7041,0.5905,-0.5893,0.5528,0.5893,-0.5021,0.7041,0.5021,-0.5021,0.7041,0.5021,-0.5893,0.5528,0.5893,-0.6929,0.5528,0.463,-0.5021,0.7041,0.5021,-0.6929,0.5528,0.463,-0.5905,0.7041,0.3945,-0.5905,0.7041,0.3945,-0.6929,0.5528,0.463,-0.7699,0.5528,0.3189,-0.5905,0.7041,0.3945,-0.7699,0.5528,0.3189,-0.6561,0.7041,0.2718,-0.6561,0.7041,0.2718,-0.7699,0.5528,0.3189,-0.8173,0.5528,0.1626,-0.6561,0.7041,0.2718,-0.8173,0.5528,0.1626,-0.6965,0.7041,0.1385,-0.6965,0.7041,0.1385,-0.8173,0.5528,0.1626,-0.8333,0.5528,0.0,-0.6965,0.7041,0.1385,-0.8333,0.5528,0.0,-0.7101,0.7041,0.0,-0.7101,0.7041,0.0,-0.8333,0.5528,0.0,-0.8173,0.5528,-0.1626,-0.7101,0.7041,0.0,-0.8173,0.5528,-0.1626,-0.6965,0.7041,-0.1385,-0.6965,0.7041,-0.1385,-0.8173,0.5528,-0.1626,-0.7699,0.5528,-0.3189,-0.6965,0.7041,-0.1385,-0.7699,0.5528,-0.3189,-0.6561,0.7041,-0.2718,-0.6561,0.7041,-0.2718,-0.7699,0.5528,-0.3189,-0.6929,0.5528,-0.463,-0.6561,0.7041,-0.2718,-0.6929,0.5528,-0.463,-0.5905,0.7041,-0.3945,-0.5905,0.7041,-0.3945,-0.6929,0.5528,-0.463,-0.5893,0.5528,-0.5893,-0.5905,0.7041,-0.3945,-0.5893,0.5528,-0.5893,-0.5021,0.7041,-0.5021,-0.5021,0.7041,-0.5021,-0.5893,0.5528,-0.5893,-0.463,0.5528,-0.6929,-0.5021,0.7041,-0.5021,-0.463,0.5528,-0.6929,-0.3945,0.7041,-0.5905,-0.3945,0.7041,-0.5905,-0.463,0.5528,-0.6929,-0.3189,0.5528,-0.7699,-0.3945,0.7041,-0.5905,-0.3189,0.5528,-0.7699,-0.2718,0.7041,-0.6561,-0.2718,0.7041,-0.6561,-0.3189,0.5528,-0.7699,-0.1626,0.5528,-0.8173,-0.2718,0.7041,-0.6561,-0.1626,0.5528,-0.8173,-0.1385,0.7041,-0.6965,-0.1385,0.7041,-0.6965,-0.1626,0.5528,-0.8173,0.0,0.5528,-0.8333,-0.1385,0.7041,-0.6965,0.0,0.5528,-0.8333,0.0,0.7041,-0.7101,0.0,0.7041,-0.7101,0.0,0.5528,-0.8333,0.1626,0.5528,-0.8173,0.0,0.7041,-0.7101,0.1626,0.5528,-0.8173,0.1385,0.7041,-0.6965,0.1385,0.7041,-0.6965,0.1626,0.5528,-0.8173,0.3189,0.5528,-0.7699,0.1385,0.7041,-0.6965,0.3189,0.5528,-0.7699,0.2718,0.7041,-0.6561,0.2718,0.7041,-0.6561,0.3189,0.5528,-0.7699,0.463,0.5528,-0.6929,0.2718,0.7041,-0.6561,0.463,0.5528,-0.6929,0.3945,0.7041,-0.5905,0.3945,0.7041,-0.5905,0.463,0.5528,-0.6929,0.5893,0.5528,-0.5893,0.3945,0.7041,-0.5905,0.5893,0.5528,-0.5893,0.5021,0.7041,-0.5021,0.5021,0.7041,-0.5021,0.5893,0.5528,-0.5893,0.6929,0.5528,-0.463,0.5021,0.7041,-0.5021,0.6929,0.5528,-0.463,0.5905,0.7041,-0.3945,0.5905,0.7041,-0.3945,0.6929,0.5528,-0.463,0.7699,0.5528,-0.3189,0.5905,0.7041,-0.3945,0.7699,0.5528,-0.3189,0.6561,0.7041,-0.2718,0.6561,0.7041,-0.2718,0.7699,0.5528,-0.3189,0.8173,0.5528,-0.1626,0.6561,0.7041,-0.2718,0.8173,0.5528,-0.1626,0.6965,0.7041,-0.1385,0.6965,0.7041,-0.1385,0.8173,0.5528,-0.1626,0.8333,0.5528,0.0,0.6965,0.7041,-0.1385,0.8333,0.5528,0.0,0.7101,0.7041,0.0,0.7101,0.7041,0.0,0.8333,0.5528,0.0,0.8173,0.5528,0.1626,0.7101,0.7041,0.0,0.8173,0.5528,0.1626,0.6965,0.7041,0.1385,0.6965,0.7041,0.1385,0.8173,0.5528,0.1626,0.7699,0.5528,0.3189,0.6965,0.7041,0.1385,0.7699,0.5528,0.3189,0.6561,0.7041,0.2718,0.6561,0.7041,0.2718,0.7699,0.5528,0.3189,0.6929,0.5528,0.463,0.6561,0.7041,0.2718,0.6929,0.5528,0.463,0.5905,0.7041,0.3945,0.5905,0.7041,0.3945,0.6929,0.5528,0.463,0.5893,0.5528,0.5893,0.5905,0.7041,0.3945,0.5893,0.5528,0.5893,0.5021,0.7041,0.5021,0.5021,0.7041,0.5021,0.5893,0.5528,0.5893,0.463,0.5528,0.6929,0.5021,0.7041,0.5021,0.463,0.5528,0.6929,0.3945,0.7041,0.5905,0.3945,0.7041,0.5905,0.463,0.5528,0.6929,0.3189,0.5528,0.7699,0.3945,0.7041,0.5905,0.3189,0.5528,0.7699,0.2718,0.7041,0.6561,0.2718,0.7041,0.6561,0.3189,0.5528,0.7699,0.1626,0.5528,0.8173,0.2718,0.7041,0.6561,0.1626,0.5528,0.8173,0.1385,0.7041,0.6965,0.1385,0.7041,0.6965,0.1626,0.5528,0.8173,0.0,0.5528,0.8333,0.1385,0.7041,0.6965,0.0,0.5528,0.8333,0.0,0.7041,0.7101,0.0,0.5528,0.8333,0.0,0.3805,0.9248,-0.1804,0.3805,0.907,0.0,0.5528,0.8333,-0.1804,0.3805,0.907,-0.1626,0.5528,0.8173,-0.1626,0.5528,0.8173,-0.1804,0.3805,0.907,-0.3539,0.3805,0.8544,-0.1626,0.5528,0.8173,-0.3539,0.3805,0.8544,-0.3189,0.5528,0.7699,-0.3189,0.5528,0.7699,-0.3539,0.3805,0.8544,-0.5138,0.3805,0.7689,-0.3189,0.5528,0.7699,-0.5138,0.3805,0.7689,-0.463,0.5528,0.6929,-0.463,0.5528,0.6929,-0.5138,0.3805,0.7689,-0.6539,0.3805,0.6539,-0.463,0.5528,0.6929,-0.6539,0.3805,0.6539,-0.5893,0.5528,0.5893,-0.5893,0.5528,0.5893,-0.6539,0.3805,0.6539,-0.7689,0.3805,0.5138,-0.5893,0.5528,0.5893,-0.7689,0.3805,0.5138,-0.6929,0.5528,0.463,-0.6929,0.5528,0.463,-0.7689,0.3805,0.5138,-0.8544,0.3805,0.3539,-0.6929,0.5528,0.463,-0.8544,0.3805,0.3539,-0.7699,0.5528,0.3189,-0.7699,0.5528,0.3189,-0.8544,0.3805,0.3539,-0.907,0.3805,0.1804,-0.7699,0.5528,0.3189,-0.907,0.3805,0.1804,-0.8173,0.5528,0.1626,-0.8173,0.5528,0.1626,-0.907,0.3805,0.1804,-0.9248,0.3805,0.0,-0.8173,0.5528,0.1626,-0.9248,0.3805,0.0,-0.8333,0.5528,0.0,-0.8333,0.5528,0.0,-0.9248,0.3805,0.0,-0.907,0.3805,-0.1804,-0.8333,0.5528,0.0,-0.907,0.3805,-0.1804,-0.8173,0.5528,-0.1626,-0.8173,0.5528,-0.1626,-0.907,0.3805,-0.1804,-0.8544,0.3805,-0.3539,-0.8173,0.5528,-0.1626,-0.8544,0.3805,-0.3539,-0.7699,0.5528,-0.3189,-0.7699,0.5528,-0.3189,-0.8544,0.3805,-0.3539,-0.7689,0.3805,-0.5138,-0.7699,0.5528,-0.3189,-0.7689,0.3805,-0.5138,-0.6929,0.5528,-0.463,-0.6929,0.5528,-0.463,-0.7689,0.3805,-0.5138,-0.6539,0.3805,-0.6539,-0.6929,0.5528,-0.463,-0.6539,0.3805,-0.6539,-0.5893,0.5528,-0.5893,-0.5893,0.5528,-0.5893,-0.6539,0.3805,-0.6539,-0.5138,0.3805,-0.7689,-0.5893,0.5528,-0.5893,-0.5138,0.3805,-0.7689,-0.463,0.5528,-0.6929,-0.463,0.5528,-0.6929,-0.5138,0.3805,-0.7689,-0.3539,0.3805,-0.8544,-0.463,0.5528,-0.6929,-0.3539,0.3805,-0.8544,-0.3189,0.5528,-0.7699,-0.3189,0.5528,-0.7699,-0.3539,0.3805,-0.8544,-0.1804,0.3805,-0.907,-0.3189,0.5528,-0.7699,-0.1804,0.3805,-0.907,-0.1626,0.5528,-0.8173,-0.1626,0.5528,-0.8173,-0.1804,0.3805,-0.907,0.0,0.3805,-0.9248,-0.1626,0.5528,-0.8173,0.0,0.3805,-0.9248,0.0,0.5528,-0.8333,0.0,0.5528,-0.8333,0.0,0.3805,-0.9248,0.1804,0.3805,-0.907,0.0,0.5528,-0.8333,0.1804,0.3805,-0.907,0.1626,0.5528,-0.8173,0.1626,0.5528,-0.8173,0.1804,0.3805,-0.907,0.3539,0.3805,-0.8544,0.1626,0.5528,-0.8173,0.3539,0.3805,-0.8544,0.3189,0.5528,-0.7699,0.3189,0.5528,-0.7699,0.3539,0.3805,-0.8544,0.5138,0.3805,-0.7689,0.3189,0.5528,-0.7699,0.5138,0.3805,-0.7689,0.463,0.5528,-0.6929,0.463,0.5528,-0.6929,0.5138,0.3805,-0.7689,0.6539,0.3805,-0.6539,0.463,0.5528,-0.6929,0.6539,0.3805,-0.6539,0.5893,0.5528,-0.5893,0.5893,0.5528,-0.5893,0.6539,0.3805,-0.6539,0.7689,0.3805,-0.5138,0.5893,0.5528,-0.5893,0.7689,0.3805,-0.5138,0.6929,0.5528,-0.463,0.6929,0.5528,-0.463,0.7689,0.3805,-0.5138,0.8544,0.3805,-0.3539,0.6929,0.5528,-0.463,0.8544,0.3805,-0.3539,0.7699,0.5528,-0.3189,0.7699,0.5528,-0.3189,0.8544,0.3805,-0.3539,0.907,0.3805,-0.1804,0.7699,0.5528,-0.3189,0.907,0.3805,-0.1804,0.8173,0.5528,-0.1626,0.8173,0.5528,-0.1626,0.907,0.3805,-0.1804,0.9248,0.3805,0.0,0.8173,0.5528,-0.1626,0.9248,0.3805,0.0,0.8333,0.5528,0.0,0.8333,0.5528,0.0,0.9248,0.3805,0.0,0.907,0.3805,0.1804,0.8333,0.5528,0.0,0.907,0.3805,0.1804,0.8173,0.5528,0.1626,0.8173,0.5528,0.1626,0.907,0.3805,0.1804,0.8544,0.3805,0.3539,0.8173,0.5528,0.1626,0.8544,0.3805,0.3539,0.7699,0.5528,0.3189,0.7699,0.5528,0.3189,0.8544,0.3805,0.3539,0.7689,0.3805,0.5138,0.7699,0.5528,0.3189,0.7689,0.3805,0.5138,0.6929,0.5528,0.463,0.6929,0.5528,0.463,0.7689,0.3805,0.5138,0.6539,0.3805,0.6539,0.6929,0.5528,0.463,0.6539,0.3805,0.6539,0.5893,0.5528,0.5893,0.5893,0.5528,0.5893,0.6539,0.3805,0.6539,0.5138,0.3805,0.7689,0.5893,0.5528,0.5893,0.5138,0.3805,0.7689,0.463,0.5528,0.6929,0.463,0.5528,0.6929,0.5138,0.3805,0.7689,0.3539,0.3805,0.8544,0.463,0.5528,0.6929,0.3539,0.3805,0.8544,0.3189,0.5528,0.7699,0.3189,0.5528,0.7699,0.3539,0.3805,0.8544,0.1804,0.3805,0.907,0.3189,0.5528,0.7699,0.1804,0.3805,0.907,0.1626,0.5528,0.8173,0.1626,0.5528,0.8173,0.1804,0.3805,0.907,0.0,0.3805,0.9248,0.1626,0.5528,0.8173,0.0,0.3805,0.9248,0.0,0.5528,0.8333,0.0,0.3805,0.9248,0.0,0.1939,0.981,-0.1914,0.1939,0.9622,0.0,0.3805,0.9248,-0.1914,0.1939,0.9622,-0.1804,0.3805,0.907,-0.1804,0.3805,0.907,-0.1914,0.1939,0.9622,-0.3754,0.1939,0.9063,-0.1804,0.3805,0.907,-0.3754,0.1939,0.9063,-0.3539,0.3805,0.8544,-0.3539,0.3805,0.8544,-0.3754,0.1939,0.9063,-0.545,0.1939,0.8157,-0.3539,0.3805,0.8544,-0.545,0.1939,0.8157,-0.5138,0.3805,0.7689,-0.5138,0.3805,0.7689,-0.545,0.1939,0.8157,-0.6937,0.1939,0.6937,-0.5138,0.3805,0.7689,-0.6937,0.1939,0.6937,-0.6539,0.3805,0.6539,-0.6539,0.3805,0.6539,-0.6937,0.1939,0.6937,-0.8157,0.1939,0.545,-0.6539,0.3805,0.6539,-0.8157,0.1939,0.545,-0.7689,0.3805,0.5138,-0.7689,0.3805,0.5138,-0.8157,0.1939,0.545,-0.9063,0.1939,0.3754,-0.7689,0.3805,0.5138,-0.9063,0.1939,0.3754,-0.8544,0.3805,0.3539,-0.8544,0.3805,0.3539,-0.9063,0.1939,0.3754,-0.9622,0.1939,0.1914,-0.8544,0.3805,0.3539,-0.9622,0.1939,0.1914,-0.907,0.3805,0.1804,-0.907,0.3805,0.1804,-0.9622,0.1939,0.1914,-0.981,0.1939,0.0,-0.907,0.3805,0.1804,-0.981,0.1939,0.0,-0.9248,0.3805,0.0,-0.9248,0.3805,0.0,-0.981,0.1939,0.0,-0.9622,0.1939,-0.1914,-0.9248,0.3805,0.0,-0.9622,0.1939,-0.1914,-0.907,0.3805,-0.1804,-0.907,0.3805,-0.1804,-0.9622,0.1939,-0.1914,-0.9063,0.1939,-0.3754,-0.907,0.3805,-0.1804,-0.9063,0.1939,-0.3754,-0.8544,0.3805,-0.3539,-0.8544,0.3805,-0.3539,-0.9063,0.1939,-0.3754,-0.8157,0.1939,-0.545,-0.8544,0.3805,-0.3539,-0.8157,0.1939,-0.545,-0.7689,0.3805,-0.5138,-0.7689,0.3805,-0.5138,-0.8157,0.1939,-0.545,-0.6937,0.1939,-0.6937,-0.7689,0.3805,-0.5138,-0.6937,0.1939,-0.6937,-0.6539,0.3805,-0.6539,-0.6539,0.3805,-0.6539,-0.6937,0.1939,-0.6937,-0.545,0.1939,-0.8157,-0.6539,0.3805,-0.6539,-0.545,0.1939,-0.8157,-0.5138,0.3805,-0.7689,-0.5138,0.3805,-0.7689,-0.545,0.1939,-0.8157,-0.3754,0.1939,-0.9063,-0.5138,0.3805,-0.7689,-0.3754,0.1939,-0.9063,-0.3539,0.3805,-0.8544,-0.3539,0.3805,-0.8544,-0.3754,0.1939,-0.9063,-0.1914,0.1939,-0.9622,-0.3539,0.3805,-0.8544,-0.1914,0.1939,-0.9622,-0.1804,0.3805,-0.907,-0.1804,0.3805,-0.907,-0.1914,0.1939,-0.9622,0.0,0.1939,-0.981,-0.1804,0.3805,-0.907,0.0,0.1939,-0.981,0.0,0.3805,-0.9248,0.0,0.3805,-0.9248,0.0,0.1939,-0.981,0.1914,0.1939,-0.9622,0.0,0.3805,-0.9248,0.1914,0.1939,-0.9622,0.1804,0.3805,-0.907,0.1804,0.3805,-0.907,0.1914,0.1939,-0.9622,0.3754,0.1939,-0.9063,0.1804,0.3805,-0.907,0.3754,0.1939,-0.9063,0.3539,0.3805,-0.8544,0.3539,0.3805,-0.8544,0.3754,0.1939,-0.9063,0.545,0.1939,-0.8157,0.3539,0.3805,-0.8544,0.545,0.1939,-0.8157,0.5138,0.3805,-0.7689,0.5138,0.3805,-0.7689,0.545,0.1939,-0.8157,0.6937,0.1939,-0.6937,0.5138,0.3805,-0.7689,0.6937,0.1939,-0.6937,0.6539,0.3805,-0.6539,0.6539,0.3805,-0.6539,0.6937,0.1939,-0.6937,0.8157,0.1939,-0.545,0.6539,0.3805,-0.6539,0.8157,0.1939,-0.545,0.7689,0.3805,-0.5138,0.7689,0.3805,-0.5138,0.8157,0.1939,-0.545,0.9063,0.1939,-0.3754,0.7689,0.3805,-0.5138,0.9063,0.1939,-0.3754,0.8544,0.3805,-0.3539,0.8544,0.3805,-0.3539,0.9063,0.1939,-0.3754,0.9622,0.1939,-0.1914,0.8544,0.3805,-0.3539,0.9622,0.1939,-0.1914,0.907,0.3805,-0.1804,0.907,0.3805,-0.1804,0.9622,0.1939,-0.1914,0.981,0.1939,0.0,0.907,0.3805,-0.1804,0.981,0.1939,0.0,0.9248,0.3805,0.0,0.9248,0.3805,0.0,0.981,0.1939,0.0,0.9622,0.1939,0.1914,0.9248,0.3805,0.0,0.9622,0.1939,0.1914,0.907,0.3805,0.1804,0.907,0.3805,0.1804,0.9622,0.1939,0.1914,0.9063,0.1939,0.3754,0.907,0.3805,0.1804,0.9063,0.1939,0.3754,0.8544,0.3805,0.3539,0.8544,0.3805,0.3539,0.9063,0.1939,0.3754,0.8157,0.1939,0.545,0.8544,0.3805,0.3539,0.8157,0.1939,0.545,0.7689,0.3805,0.5138,0.7689,0.3805,0.5138,0.8157,0.1939,0.545,0.6937,0.1939,0.6937,0.7689,0.3805,0.5138,0.6937,0.1939,0.6937,0.6539,0.3805,0.6539,0.6539,0.3805,0.6539,0.6937,0.1939,0.6937,0.545,0.1939,0.8157,0.6539,0.3805,0.6539,0.545,0.1939,0.8157,0.5138,0.3805,0.7689,0.5138,0.3805,0.7689,0.545,0.1939,0.8157,0.3754,0.1939,0.9063,0.5138,0.3805,0.7689,0.3754,0.1939,0.9063,0.3539,0.3805,0.8544,0.3539,0.3805,0.8544,0.3754,0.1939,0.9063,0.1914,0.1939,0.9622,0.3539,0.3805,0.8544,0.1914,0.1939,0.9622,0.1804,0.3805,0.907,0.1804,0.3805,0.907,0.1914,0.1939,0.9622,0.0,0.1939,0.981,0.1804,0.3805,0.907,0.0,0.1939,0.981,0.0,0.3805,0.9248,0.0,0.1939,0.981,0.0,0.0,1.0,-0.1951,0.0,0.9808,0.0,0.1939,0.981,-0.1951,0.0,0.9808,-0.1914,0.1939,0.9622,-0.1914,0.1939,0.9622,-0.1951,0.0,0.9808,-0.3827,0.0,0.9239,-0.1914,0.1939,0.9622,-0.3827,0.0,0.9239,-0.3754,0.1939,0.9063,-0.3754,0.1939,0.9063,-0.3827,0.0,0.9239,-0.5556,0.0,0.8315,-0.3754,0.1939,0.9063,-0.5556,0.0,0.8315,-0.545,0.1939,0.8157,-0.545,0.1939,0.8157,-0.5556,0.0,0.8315,-0.7071,0.0,0.7071,-0.545,0.1939,0.8157,-0.7071,0.0,0.7071,-0.6937,0.1939,0.6937,-0.6937,0.1939,0.6937,-0.7071,0.0,0.7071,-0.8315,0.0,0.5556,-0.6937,0.1939,0.6937,-0.8315,0.0,0.5556,-0.8157,0.1939,0.545,-0.8157,0.1939,0.545,-0.8315,0.0,0.5556,-0.9239,0.0,0.3827,-0.8157,0.1939,0.545,-0.9239,0.0,0.3827,-0.9063,0.1939,0.3754,-0.9063,0.1939,0.3754,-0.9239,0.0,0.3827,-0.9808,0.0,0.1951,-0.9063,0.1939,0.3754,-0.9808,0.0,0.1951,-0.9622,0.1939,0.1914,-0.9622,0.1939,0.1914,-0.9808,0.0,0.1951,-1.0,0.0,0.0,-0.9622,0.1939,0.1914,-1.0,0.0,0.0,-0.981,0.1939,0.0,-0.981,0.1939,0.0,-1.0,0.0,0.0,-0.9808,0.0,-0.1951,-0.981,0.1939,0.0,-0.9808,0.0,-0.1951,-0.9622,0.1939,-0.1914,-0.9622,0.1939,-0.1914,-0.9808,0.0,-0.1951,-0.9239,0.0,-0.3827,-0.9622,0.1939,-0.1914,-0.9239,0.0,-0.3827,-0.9063,0.1939,-0.3754,-0.9063,0.1939,-0.3754,-0.9239,0.0,-0.3827,-0.8315,0.0,-0.5556,-0.9063,0.1939,-0.3754,-0.8315,0.0,-0.5556,-0.8157,0.1939,-0.545,-0.8157,0.1939,-0.545,-0.8315,0.0,-0.5556,-0.7071,0.0,-0.7071,-0.8157,0.1939,-0.545,-0.7071,0.0,-0.7071,-0.6937,0.1939,-0.6937,-0.6937,0.1939,-0.6937,-0.7071,0.0,-0.7071,-0.5556,0.0,-0.8315,-0.6937,0.1939,-0.6937,-0.5556,0.0,-0.8315,-0.545,0.1939,-0.8157,-0.545,0.1939,-0.8157,-0.5556,0.0,-0.8315,-0.3827,0.0,-0.9239,-0.545,0.1939,-0.8157,-0.3827,0.0,-0.9239,-0.3754,0.1939,-0.9063,-0.3754,0.1939,-0.9063,-0.3827,0.0,-0.9239,-0.1951,0.0,-0.9808,-0.3754,0.1939,-0.9063,-0.1951,0.0,-0.9808,-0.1914,0.1939,-0.9622,-0.1914,0.1939,-0.9622,-0.1951,0.0,-0.9808,0.0,0.0,-1.0,-0.1914,0.1939,-0.9622,0.0,0.0,-1.0,0.0,0.1939,-0.981,0.0,0.1939,-0.981,0.0,0.0,-1.0,0.1951,0.0,-0.9808,0.0,0.1939,-0.981,0.1951,0.0,-0.9808,0.1914,0.1939,-0.9622,0.1914,0.1939,-0.9622,0.1951,0.0,-0.9808,0.3827,0.0,-0.9239,0.1914,0.1939,-0.9622,0.3827,0.0,-0.9239,0.3754,0.1939,-0.9063,0.3754,0.1939,-0.9063,0.3827,0.0,-0.9239,0.5556,0.0,-0.8315,0.3754,0.1939,-0.9063,0.5556,0.0,-0.8315,0.545,0.1939,-0.8157,0.545,0.1939,-0.8157,0.5556,0.0,-0.8315,0.7071,0.0,-0.7071,0.545,0.1939,-0.8157,0.7071,0.0,-0.7071,0.6937,0.1939,-0.6937,0.6937,0.1939,-0.6937,0.7071,0.0,-0.7071,0.8315,0.0,-0.5556,0.6937,0.1939,-0.6937,0.8315,0.0,-0.5556,0.8157,0.1939,-0.545,0.8157,0.1939,-0.545,0.8315,0.0,-0.5556,0.9239,0.0,-0.3827,0.8157,0.1939,-0.545,0.9239,0.0,-0.3827,0.9063,0.1939,-0.3754,0.9063,0.1939,-0.3754,0.9239,0.0,-0.3827,0.9808,0.0,-0.1951,0.9063,0.1939,-0.3754,0.9808,0.0,-0.1951,0.9622,0.1939,-0.1914,0.9622,0.1939,-0.1914,0.9808,0.0,-0.1951,1.0,0.0,0.0,0.9622,0.1939,-0.1914,1.0,0.0,0.0,0.981,0.1939,0.0,0.981,0.1939,0.0,1.0,0.0,0.0,0.9808,0.0,0.1951,0.981,0.1939,0.0,0.9808,0.0,0.1951,0.9622,0.1939,0.1914,0.9622,0.1939,0.1914,0.9808,0.0,0.1951,0.9239,0.0,0.3827,0.9622,0.1939,0.1914,0.9239,0.0,0.3827,0.9063,0.1939,0.3754,0.9063,0.1939,0.3754,0.9239,0.0,0.3827,0.8315,0.0,0.5556,0.9063,0.1939,0.3754,0.8315,0.0,0.5556,0.8157,0.1939,0.545,0.8157,0.1939,0.545,0.8315,0.0,0.5556,0.7071,0.0,0.7071,0.8157,0.1939,0.545,0.7071,0.0,0.7071,0.6937,0.1939,0.6937,0.6937,0.1939,0.6937,0.7071,0.0,0.7071,0.5556,0.0,0.8315,0.6937,0.1939,0.6937,0.5556,0.0,0.8315,0.545,0.1939,0.8157,0.545,0.1939,0.8157,0.5556,0.0,0.8315,0.3827,0.0,0.9239,0.545,0.1939,0.8157,0.3827,0.0,0.9239,0.3754,0.1939,0.9063,0.3754,0.1939,0.9063,0.3827,0.0,0.9239,0.1951,0.0,0.9808,0.3754,0.1939,0.9063,0.1951,0.0,0.9808,0.1914,0.1939,0.9622,0.1914,0.1939,0.9622,0.1951,0.0,0.9808,0.0,0.0,1.0,0.1914,0.1939,0.9622,0.0,0.0,1.0,0.0,0.1939,0.981,0.0,0.0,1.0,0.0,-0.1939,0.981,-0.1914,-0.1939,0.9622,0.0,0.0,1.0,-0.1914,-0.1939,0.9622,-0.1951,0.0,0.9808,-0.1951,0.0,0.9808,-0.1914,-0.1939,0.9622,-0.3754,-0.1939,0.9063,-0.1951,0.0,0.9808,-0.3754,-0.1939,0.9063,-0.3827,0.0,0.9239,-0.3827,0.0,0.9239,-0.3754,-0.1939,0.9063,-0.545,-0.1939,0.8157,-0.3827,0.0,0.9239,-0.545,-0.1939,0.8157,-0.5556,0.0,0.8315,-0.5556,0.0,0.8315,-0.545,-0.1939,0.8157,-0.6937,-0.1939,0.6937,-0.5556,0.0,0.8315,-0.6937,-0.1939,0.6937,-0.7071,0.0,0.7071,-0.7071,0.0,0.7071,-0.6937,-0.1939,0.6937,-0.8157,-0.1939,0.545,-0.7071,0.0,0.7071,-0.8157,-0.1939,0.545,-0.8315,0.0,0.5556,-0.8315,0.0,0.5556,-0.8157,-0.1939,0.545,-0.9063,-0.1939,0.3754,-0.8315,0.0,0.5556,-0.9063,-0.1939,0.3754,-0.9239,0.0,0.3827,-0.9239,0.0,0.3827,-0.9063,-0.1939,0.3754,-0.9622,-0.1939,0.1914,-0.9239,0.0,0.3827,-0.9622,-0.1939,0.1914,-0.9808,0.0,0.1951,-0.9808,0.0,0.1951,-0.9622,-0.1939,0.1914,-0.981,-0.1939,0.0,-0.9808,0.0,0.1951,-0.981,-0.1939,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-0.981,-0.1939,0.0,-0.9622,-0.1939,-0.1914,-1.0,0.0,0.0,-0.9622,-0.1939,-0.1914,-0.9808,0.0,-0.1951,-0.9808,0.0,-0.1951,-0.9622,-0.1939,-0.1914,-0.9063,-0.1939,-0.3754,-0.9808,0.0,-0.1951,-0.9063,-0.1939,-0.3754,-0.9239,0.0,-0.3827,-0.9239,0.0,-0.3827,-0.9063,-0.1939,-0.3754,-0.8157,-0.1939,-0.545,-0.9239,0.0,-0.3827,-0.8157,-0.1939,-0.545,-0.8315,0.0,-0.5556,-0.8315,0.0,-0.5556,-0.8157,-0.1939,-0.545,-0.6937,-0.1939,-0.6937,-0.8315,0.0,-0.5556,-0.6937,-0.1939,-0.6937,-0.7071,0.0,-0.7071,-0.7071,0.0,-0.7071,-0.6937,-0.1939,-0.6937,-0.545,-0.1939,-0.8157,-0.7071,0.0,-0.7071,-0.545,-0.1939,-0.8157,-0.5556,0.0,-0.8315,-0.5556,0.0,-0.8315,-0.545,-0.1939,-0.8157,-0.3754,-0.1939,-0.9063,-0.5556,0.0,-0.8315,-0.3754,-0.1939,-0.9063,-0.3827,0.0,-0.9239,-0.3827,0.0,-0.9239,-0.3754,-0.1939,-0.9063,-0.1914,-0.1939,-0.9622,-0.3827,0.0,-0.9239,-0.1914,-0.1939,-0.9622,-0.1951,0.0,-0.9808,-0.1951,0.0,-0.9808,-0.1914,-0.1939,-0.9622,0.0,-0.1939,-0.981,-0.1951,0.0,-0.9808,0.0,-0.1939,-0.981,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,-0.1939,-0.981,0.1914,-0.1939,-0.9622,0.0,0.0,-1.0,0.1914,-0.1939,-0.9622,0.1951,0.0,-0.9808,0.1951,0.0,-0.9808,0.1914,-0.1939,-0.9622,0.3754,-0.1939,-0.9063,0.1951,0.0,-0.9808,0.3754,-0.1939,-0.9063,0.3827,0.0,-0.9239,0.3827,0.0,-0.9239,0.3754,-0.1939,-0.9063,0.545,-0.1939,-0.8157,0.3827,0.0,-0.9239,0.545,-0.1939,-0.8157,0.5556,0.0,-0.8315,0.5556,0.0,-0.8315,0.545,-0.1939,-0.8157,0.6937,-0.1939,-0.6937,0.5556,0.0,-0.8315,0.6937,-0.1939,-0.6937,0.7071,0.0,-0.7071,0.7071,0.0,-0.7071,0.6937,-0.1939,-0.6937,0.8157,-0.1939,-0.545,0.7071,0.0,-0.7071,0.8157,-0.1939,-0.545,0.8315,0.0,-0.5556,0.8315,0.0,-0.5556,0.8157,-0.1939,-0.545,0.9063,-0.1939,-0.3754,0.8315,0.0,-0.5556,0.9063,-0.1939,-0.3754,0.9239,0.0,-0.3827,0.9239,0.0,-0.3827,0.9063,-0.1939,-0.3754,0.9622,-0.1939,-0.1914,0.9239,0.0,-0.3827,0.9622,-0.1939,-0.1914,0.9808,0.0,-0.1951,0.9808,0.0,-0.1951,0.9622,-0.1939,-0.1914,0.981,-0.1939,0.0,0.9808,0.0,-0.1951,0.981,-0.1939,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.981,-0.1939,0.0,0.9622,-0.1939,0.1914,1.0,0.0,0.0,0.9622,-0.1939,0.1914,0.9808,0.0,0.1951,0.9808,0.0,0.1951,0.9622,-0.1939,0.1914,0.9063,-0.1939,0.3754,0.9808,0.0,0.1951,0.9063,-0.1939,0.3754,0.9239,0.0,0.3827,0.9239,0.0,0.3827,0.9063,-0.1939,0.3754,0.8157,-0.1939,0.545,0.9239,0.0,0.3827,0.8157,-0.1939,0.545,0.8315,0.0,0.5556,0.8315,0.0,0.5556,0.8157,-0.1939,0.545,0.6937,-0.1939,0.6937,0.8315,0.0,0.5556,0.6937,-0.1939,0.6937,0.7071,0.0,0.7071,0.7071,0.0,0.7071,0.6937,-0.1939,0.6937,0.545,-0.1939,0.8157,0.7071,0.0,0.7071,0.545,-0.1939,0.8157,0.5556,0.0,0.8315,0.5556,0.0,0.8315,0.545,-0.1939,0.8157,0.3754,-0.1939,0.9063,0.5556,0.0,0.8315,0.3754,-0.1939,0.9063,0.3827,0.0,0.9239,0.3827,0.0,0.9239,0.3754,-0.1939,0.9063,0.1914,-0.1939,0.9622,0.3827,0.0,0.9239,0.1914,-0.1939,0.9622,0.1951,0.0,0.9808,0.1951,0.0,0.9808,0.1914,-0.1939,0.9622,0.0,-0.1939,0.981,0.1951,0.0,0.9808,0.0,-0.1939,0.981,0.0,0.0,1.0,0.0,-0.1939,0.981,0.0,-0.3805,0.9248,-0.1804,-0.3805,0.907,0.0,-0.1939,0.981,-0.1804,-0.3805,0.907,-0.1914,-0.1939,0.9622,-0.1914,-0.1939,0.9622,-0.1804,-0.3805,0.907,-0.3539,-0.3805,0.8544,-0.1914,-0.1939,0.9622,-0.3539,-0.3805,0.8544,-0.3754,-0.1939,0.9063,-0.3754,-0.1939,0.9063,-0.3539,-0.3805,0.8544,-0.5138,-0.3805,0.7689,-0.3754,-0.1939,0.9063,-0.5138,-0.3805,0.7689,-0.545,-0.1939,0.8157,-0.545,-0.1939,0.8157,-0.5138,-0.3805,0.7689,-0.6539,-0.3805,0.6539,-0.545,-0.1939,0.8157,-0.6539,-0.3805,0.6539,-0.6937,-0.1939,0.6937,-0.6937,-0.1939,0.6937,-0.6539,-0.3805,0.6539,-0.7689,-0.3805,0.5138,-0.6937,-0.1939,0.6937,-0.7689,-0.3805,0.5138,-0.8157,-0.1939,0.545,-0.8157,-0.1939,0.545,-0.7689,-0.3805,0.5138,-0.8544,-0.3805,0.3539,-0.8157,-0.1939,0.545,-0.8544,-0.3805,0.3539,-0.9063,-0.1939,0.3754,-0.9063,-0.1939,0.3754,-0.8544,-0.3805,0.3539,-0.907,-0.3805,0.1804,-0.9063,-0.1939,0.3754,-0.907,-0.3805,0.1804,-0.9622,-0.1939,0.1914,-0.9622,-0.1939,0.1914,-0.907,-0.3805,0.1804,-0.9248,-0.3805,0.0,-0.9622,-0.1939,0.1914,-0.9248,-0.3805,0.0,-0.981,-0.1939,0.0,-0.981,-0.1939,0.0,-0.9248,-0.3805,0.0,-0.907,-0.3805,-0.1804,-0.981,-0.1939,0.0,-0.907,-0.3805,-0.1804,-0.9622,-0.1939,-0.1914,-0.9622,-0.1939,-0.1914,-0.907,-0.3805,-0.1804,-0.8544,-0.3805,-0.3539,-0.9622,-0.1939,-0.1914,-0.8544,-0.3805,-0.3539,-0.9063,-0.1939,-0.3754,-0.9063,-0.1939,-0.3754,-0.8544,-0.3805,-0.3539,-0.7689,-0.3805,-0.5138,-0.9063,-0.1939,-0.3754,-0.7689,-0.3805,-0.5138,-0.8157,-0.1939,-0.545,-0.8157,-0.1939,-0.545,-0.7689,-0.3805,-0.5138,-0.6539,-0.3805,-0.6539,-0.8157,-0.1939,-0.545,-0.6539,-0.3805,-0.6539,-0.6937,-0.1939,-0.6937,-0.6937,-0.1939,-0.6937,-0.6539,-0.3805,-0.6539,-0.5138,-0.3805,-0.7689,-0.6937,-0.1939,-0.6937,-0.5138,-0.3805,-0.7689,-0.545,-0.1939,-0.8157,-0.545,-0.1939,-0.8157,-0.5138,-0.3805,-0.7689,-0.3539,-0.3805,-0.8544,-0.545,-0.1939,-0.8157,-0.3539,-0.3805,-0.8544,-0.3754,-0.1939,-0.9063,-0.3754,-0.1939,-0.9063,-0.3539,-0.3805,-0.8544,-0.1804,-0.3805,-0.907,-0.3754,-0.1939,-0.9063,-0.1804,-0.3805,-0.907,-0.1914,-0.1939,-0.9622,-0.1914,-0.1939,-0.9622,-0.1804,-0.3805,-0.907,0.0,-0.3805,-0.9248,-0.1914,-0.1939,-0.9622,0.0,-0.3805,-0.9248,0.0,-0.1939,-0.981,0.0,-0.1939,-0.981,0.0,-0.3805,-0.9248,0.1804,-0.3805,-0.907,0.0,-0.1939,-0.981,0.1804,-0.3805,-0.907,0.1914,-0.1939,-0.9622,0.1914,-0.1939,-0.9622,0.1804,-0.3805,-0.907,0.3539,-0.3805,-0.8544,0.1914,-0.1939,-0.9622,0.3539,-0.3805,-0.8544,0.3754,-0.1939,-0.9063,0.3754,-0.1939,-0.9063,0.3539,-0.3805,-0.8544,0.5138,-0.3805,-0.7689,0.3754,-0.1939,-0.9063,0.5138,-0.3805,-0.7689,0.545,-0.1939,-0.8157,0.545,-0.1939,-0.8157,0.5138,-0.3805,-0.7689,0.6539,-0.3805,-0.6539,0.545,-0.1939,-0.8157,0.6539,-0.3805,-0.6539,0.6937,-0.1939,-0.6937,0.6937,-0.1939,-0.6937,0.6539,-0.3805,-0.6539,0.7689,-0.3805,-0.5138,0.6937,-0.1939,-0.6937,0.7689,-0.3805,-0.5138,0.8157,-0.1939,-0.545,0.8157,-0.1939,-0.545,0.7689,-0.3805,-0.5138,0.8544,-0.3805,-0.3539,0.8157,-0.1939,-0.545,0.8544,-0.3805,-0.3539,0.9063,-0.1939,-0.3754,0.9063,-0.1939,-0.3754,0.8544,-0.3805,-0.3539,0.907,-0.3805,-0.1804,0.9063,-0.1939,-0.3754,0.907,-0.3805,-0.1804,0.9622,-0.1939,-0.1914,0.9622,-0.1939,-0.1914,0.907,-0.3805,-0.1804,0.9248,-0.3805,0.0,0.9622,-0.1939,-0.1914,0.9248,-0.3805,0.0,0.981,-0.1939,0.0,0.981,-0.1939,0.0,0.9248,-0.3805,0.0,0.907,-0.3805,0.1804,0.981,-0.1939,0.0,0.907,-0.3805,0.1804,0.9622,-0.1939,0.1914,0.9622,-0.1939,0.1914,0.907,-0.3805,0.1804,0.8544,-0.3805,0.3539,0.9622,-0.1939,0.1914,0.8544,-0.3805,0.3539,0.9063,-0.1939,0.3754,0.9063,-0.1939,0.3754,0.8544,-0.3805,0.3539,0.7689,-0.3805,0.5138,0.9063,-0.1939,0.3754,0.7689,-0.3805,0.5138,0.8157,-0.1939,0.545,0.8157,-0.1939,0.545,0.7689,-0.3805,0.5138,0.6539,-0.3805,0.6539,0.8157,-0.1939,0.545,0.6539,-0.3805,0.6539,0.6937,-0.1939,0.6937,0.6937,-0.1939,0.6937,0.6539,-0.3805,0.6539,0.5138,-0.3805,0.7689,0.6937,-0.1939,0.6937,0.5138,-0.3805,0.7689,0.545,-0.1939,0.8157,0.545,-0.1939,0.8157,0.5138,-0.3805,0.7689,0.3539,-0.3805,0.8544,0.545,-0.1939,0.8157,0.3539,-0.3805,0.8544,0.3754,-0.1939,0.9063,0.3754,-0.1939,0.9063,0.3539,-0.3805,0.8544,0.1804,-0.3805,0.907,0.3754,-0.1939,0.9063,0.1804,-0.3805,0.907,0.1914,-0.1939,0.9622,0.1914,-0.1939,0.9622,0.1804,-0.3805,0.907,0.0,-0.3805,0.9248,0.1914,-0.1939,0.9622,0.0,-0.3805,0.9248,0.0,-0.1939,0.981,0.0,-0.3805,0.9248,0.0,-0.5528,0.8333,-0.1626,-0.5528,0.8173,0.0,-0.3805,0.9248,-0.1626,-0.5528,0.8173,-0.1804,-0.3805,0.907,-0.1804,-0.3805,0.907,-0.1626,-0.5528,0.8173,-0.3189,-0.5528,0.7699,-0.1804,-0.3805,0.907,-0.3189,-0.5528,0.7699,-0.3539,-0.3805,0.8544,-0.3539,-0.3805,0.8544,-0.3189,-0.5528,0.7699,-0.463,-0.5528,0.6929,-0.3539,-0.3805,0.8544,-0.463,-0.5528,0.6929,-0.5138,-0.3805,0.7689,-0.5138,-0.3805,0.7689,-0.463,-0.5528,0.6929,-0.5893,-0.5528,0.5893,-0.5138,-0.3805,0.7689,-0.5893,-0.5528,0.5893,-0.6539,-0.3805,0.6539,-0.6539,-0.3805,0.6539,-0.5893,-0.5528,0.5893,-0.6929,-0.5528,0.463,-0.6539,-0.3805,0.6539,-0.6929,-0.5528,0.463,-0.7689,-0.3805,0.5138,-0.7689,-0.3805,0.5138,-0.6929,-0.5528,0.463,-0.7699,-0.5528,0.3189,-0.7689,-0.3805,0.5138,-0.7699,-0.5528,0.3189,-0.8544,-0.3805,0.3539,-0.8544,-0.3805,0.3539,-0.7699,-0.5528,0.3189,-0.8173,-0.5528,0.1626,-0.8544,-0.3805,0.3539,-0.8173,-0.5528,0.1626,-0.907,-0.3805,0.1804,-0.907,-0.3805,0.1804,-0.8173,-0.5528,0.1626,-0.8333,-0.5528,0.0,-0.907,-0.3805,0.1804,-0.8333,-0.5528,0.0,-0.9248,-0.3805,0.0,-0.9248,-0.3805,0.0,-0.8333,-0.5528,0.0,-0.8173,-0.5528,-0.1626,-0.9248,-0.3805,0.0,-0.8173,-0.5528,-0.1626,-0.907,-0.3805,-0.1804,-0.907,-0.3805,-0.1804,-0.8173,-0.5528,-0.1626,-0.7699,-0.5528,-0.3189,-0.907,-0.3805,-0.1804,-0.7699,-0.5528,-0.3189,-0.8544,-0.3805,-0.3539,-0.8544,-0.3805,-0.3539,-0.7699,-0.5528,-0.3189,-0.6929,-0.5528,-0.463,-0.8544,-0.3805,-0.3539,-0.6929,-0.5528,-0.463,-0.7689,-0.3805,-0.5138,-0.7689,-0.3805,-0.5138,-0.6929,-0.5528,-0.463,-0.5893,-0.5528,-0.5893,-0.7689,-0.3805,-0.5138,-0.5893,-0.5528,-0.5893,-0.6539,-0.3805,-0.6539,-0.6539,-0.3805,-0.6539,-0.5893,-0.5528,-0.5893,-0.463,-0.5528,-0.6929,-0.6539,-0.3805,-0.6539,-0.463,-0.5528,-0.6929,-0.5138,-0.3805,-0.7689,-0.5138,-0.3805,-0.7689,-0.463,-0.5528,-0.6929,-0.3189,-0.5528,-0.7699,-0.5138,-0.3805,-0.7689,-0.3189,-0.5528,-0.7699,-0.3539,-0.3805,-0.8544,-0.3539,-0.3805,-0.8544,-0.3189,-0.5528,-0.7699,-0.1626,-0.5528,-0.8173,-0.3539,-0.3805,-0.8544,-0.1626,-0.5528,-0.8173,-0.1804,-0.3805,-0.907,-0.1804,-0.3805,-0.907,-0.1626,-0.5528,-0.8173,0.0,-0.5528,-0.8333,-0.1804,-0.3805,-0.907,0.0,-0.5528,-0.8333,0.0,-0.3805,-0.9248,0.0,-0.3805,-0.9248,0.0,-0.5528,-0.8333,0.1626,-0.5528,-0.8173,0.0,-0.3805,-0.9248,0.1626,-0.5528,-0.8173,0.1804,-0.3805,-0.907,0.1804,-0.3805,-0.907,0.1626,-0.5528,-0.8173,0.3189,-0.5528,-0.7699,0.1804,-0.3805,-0.907,0.3189,-0.5528,-0.7699,0.3539,-0.3805,-0.8544,0.3539,-0.3805,-0.8544,0.3189,-0.5528,-0.7699,0.463,-0.5528,-0.6929,0.3539,-0.3805,-0.8544,0.463,-0.5528,-0.6929,0.5138,-0.3805,-0.7689,0.5138,-0.3805,-0.7689,0.463,-0.5528,-0.6929,0.5893,-0.5528,-0.5893,0.5138,-0.3805,-0.7689,0.5893,-0.5528,-0.5893,0.6539,-0.3805,-0.6539,0.6539,-0.3805,-0.6539,0.5893,-0.5528,-0.5893,0.6929,-0.5528,-0.463,0.6539,-0.3805,-0.6539,0.6929,-0.5528,-0.463,0.7689,-0.3805,-0.5138,0.7689,-0.3805,-0.5138,0.6929,-0.5528,-0.463,0.7699,-0.5528,-0.3189,0.7689,-0.3805,-0.5138,0.7699,-0.5528,-0.3189,0.8544,-0.3805,-0.3539,0.8544,-0.3805,-0.3539,0.7699,-0.5528,-0.3189,0.8173,-0.5528,-0.1626,0.8544,-0.3805,-0.3539,0.8173,-0.5528,-0.1626,0.907,-0.3805,-0.1804,0.907,-0.3805,-0.1804,0.8173,-0.5528,-0.1626,0.8333,-0.5528,0.0,0.907,-0.3805,-0.1804,0.8333,-0.5528,0.0,0.9248,-0.3805,0.0,0.9248,-0.3805,0.0,0.8333,-0.5528,0.0,0.8173,-0.5528,0.1626,0.9248,-0.3805,0.0,0.8173,-0.5528,0.1626,0.907,-0.3805,0.1804,0.907,-0.3805,0.1804,0.8173,-0.5528,0.1626,0.7699,-0.5528,0.3189,0.907,-0.3805,0.1804,0.7699,-0.5528,0.3189,0.8544,-0.3805,0.3539,0.8544,-0.3805,0.3539,0.7699,-0.5528,0.3189,0.6929,-0.5528,0.463,0.8544,-0.3805,0.3539,0.6929,-0.5528,0.463,0.7689,-0.3805,0.5138,0.7689,-0.3805,0.5138,0.6929,-0.5528,0.463,0.5893,-0.5528,0.5893,0.7689,-0.3805,0.5138,0.5893,-0.5528,0.5893,0.6539,-0.3805,0.6539,0.6539,-0.3805,0.6539,0.5893,-0.5528,0.5893,0.463,-0.5528,0.6929,0.6539,-0.3805,0.6539,0.463,-0.5528,0.6929,0.5138,-0.3805,0.7689,0.5138,-0.3805,0.7689,0.463,-0.5528,0.6929,0.3189,-0.5528,0.7699,0.5138,-0.3805,0.7689,0.3189,-0.5528,0.7699,0.3539,-0.3805,0.8544,0.3539,-0.3805,0.8544,0.3189,-0.5528,0.7699,0.1626,-0.5528,0.8173,0.3539,-0.3805,0.8544,0.1626,-0.5528,0.8173,0.1804,-0.3805,0.907,0.1804,-0.3805,0.907,0.1626,-0.5528,0.8173,0.0,-0.5528,0.8333,0.1804,-0.3805,0.907,0.0,-0.5528,0.8333,0.0,-0.3805,0.9248,0.0,-0.5528,0.8333,0.0,-0.7041,0.7101,-0.1385,-0.7041,0.6965,0.0,-0.5528,0.8333,-0.1385,-0.7041,0.6965,-0.1626,-0.5528,0.8173,-0.1626,-0.5528,0.8173,-0.1385,-0.7041,0.6965,-0.2718,-0.7041,0.6561,-0.1626,-0.5528,0.8173,-0.2718,-0.7041,0.6561,-0.3189,-0.5528,0.7699,-0.3189,-0.5528,0.7699,-0.2718,-0.7041,0.6561,-0.3945,-0.7041,0.5905,-0.3189,-0.5528,0.7699,-0.3945,-0.7041,0.5905,-0.463,-0.5528,0.6929,-0.463,-0.5528,0.6929,-0.3945,-0.7041,0.5905,-0.5021,-0.7041,0.5021,-0.463,-0.5528,0.6929,-0.5021,-0.7041,0.5021,-0.5893,-0.5528,0.5893,-0.5893,-0.5528,0.5893,-0.5021,-0.7041,0.5021,-0.5905,-0.7041,0.3945,-0.5893,-0.5528,0.5893,-0.5905,-0.7041,0.3945,-0.6929,-0.5528,0.463,-0.6929,-0.5528,0.463,-0.5905,-0.7041,0.3945,-0.6561,-0.7041,0.2718,-0.6929,-0.5528,0.463,-0.6561,-0.7041,0.2718,-0.7699,-0.5528,0.3189,-0.7699,-0.5528,0.3189,-0.6561,-0.7041,0.2718,-0.6965,-0.7041,0.1385,-0.7699,-0.5528,0.3189,-0.6965,-0.7041,0.1385,-0.8173,-0.5528,0.1626,-0.8173,-0.5528,0.1626,-0.6965,-0.7041,0.1385,-0.7101,-0.7041,0.0,-0.8173,-0.5528,0.1626,-0.7101,-0.7041,0.0,-0.8333,-0.5528,0.0,-0.8333,-0.5528,0.0,-0.7101,-0.7041,0.0,-0.6965,-0.7041,-0.1385,-0.8333,-0.5528,0.0,-0.6965,-0.7041,-0.1385,-0.8173,-0.5528,-0.1626,-0.8173,-0.5528,-0.1626,-0.6965,-0.7041,-0.1385,-0.6561,-0.7041,-0.2718,-0.8173,-0.5528,-0.1626,-0.6561,-0.7041,-0.2718,-0.7699,-0.5528,-0.3189,-0.7699,-0.5528,-0.3189,-0.6561,-0.7041,-0.2718,-0.5905,-0.7041,-0.3945,-0.7699,-0.5528,-0.3189,-0.5905,-0.7041,-0.3945,-0.6929,-0.5528,-0.463,-0.6929,-0.5528,-0.463,-0.5905,-0.7041,-0.3945,-0.5021,-0.7041,-0.5021,-0.6929,-0.5528,-0.463,-0.5021,-0.7041,-0.5021,-0.5893,-0.5528,-0.5893,-0.5893,-0.5528,-0.5893,-0.5021,-0.7041,-0.5021,-0.3945,-0.7041,-0.5905,-0.5893,-0.5528,-0.5893,-0.3945,-0.7041,-0.5905,-0.463,-0.5528,-0.6929,-0.463,-0.5528,-0.6929,-0.3945,-0.7041,-0.5905,-0.2718,-0.7041,-0.6561,-0.463,-0.5528,-0.6929,-0.2718,-0.7041,-0.6561,-0.3189,-0.5528,-0.7699,-0.3189,-0.5528,-0.7699,-0.2718,-0.7041,-0.6561,-0.1385,-0.7041,-0.6965,-0.3189,-0.5528,-0.7699,-0.1385,-0.7041,-0.6965,-0.1626,-0.5528,-0.8173,-0.1626,-0.5528,-0.8173,-0.1385,-0.7041,-0.6965,0.0,-0.7041,-0.7101,-0.1626,-0.5528,-0.8173,0.0,-0.7041,-0.7101,0.0,-0.5528,-0.8333,0.0,-0.5528,-0.8333,0.0,-0.7041,-0.7101,0.1385,-0.7041,-0.6965,0.0,-0.5528,-0.8333,0.1385,-0.7041,-0.6965,0.1626,-0.5528,-0.8173,0.1626,-0.5528,-0.8173,0.1385,-0.7041,-0.6965,0.2718,-0.7041,-0.6561,0.1626,-0.5528,-0.8173,0.2718,-0.7041,-0.6561,0.3189,-0.5528,-0.7699,0.3189,-0.5528,-0.7699,0.2718,-0.7041,-0.6561,0.3945,-0.7041,-0.5905,0.3189,-0.5528,-0.7699,0.3945,-0.7041,-0.5905,0.463,-0.5528,-0.6929,0.463,-0.5528,-0.6929,0.3945,-0.7041,-0.5905,0.5021,-0.7041,-0.5021,0.463,-0.5528,-0.6929,0.5021,-0.7041,-0.5021,0.5893,-0.5528,-0.5893,0.5893,-0.5528,-0.5893,0.5021,-0.7041,-0.5021,0.5905,-0.7041,-0.3945,0.5893,-0.5528,-0.5893,0.5905,-0.7041,-0.3945,0.6929,-0.5528,-0.463,0.6929,-0.5528,-0.463,0.5905,-0.7041,-0.3945,0.6561,-0.7041,-0.2718,0.6929,-0.5528,-0.463,0.6561,-0.7041,-0.2718,0.7699,-0.5528,-0.3189,0.7699,-0.5528,-0.3189,0.6561,-0.7041,-0.2718,0.6965,-0.7041,-0.1385,0.7699,-0.5528,-0.3189,0.6965,-0.7041,-0.1385,0.8173,-0.5528,-0.1626,0.8173,-0.5528,-0.1626,0.6965,-0.7041,-0.1385,0.7101,-0.7041,0.0,0.8173,-0.5528,-0.1626,0.7101,-0.7041,0.0,0.8333,-0.5528,0.0,0.8333,-0.5528,0.0,0.7101,-0.7041,0.0,0.6965,-0.7041,0.1385,0.8333,-0.5528,0.0,0.6965,-0.7041,0.1385,0.8173,-0.5528,0.1626,0.8173,-0.5528,0.1626,0.6965,-0.7041,0.1385,0.6561,-0.7041,0.2718,0.8173,-0.5528,0.1626,0.6561,-0.7041,0.2718,0.7699,-0.5528,0.3189,0.7699,-0.5528,0.3189,0.6561,-0.7041,0.2718,0.5905,-0.7041,0.3945,0.7699,-0.5528,0.3189,0.5905,-0.7041,0.3945,0.6929,-0.5528,0.463,0.6929,-0.5528,0.463,0.5905,-0.7041,0.3945,0.5021,-0.7041,0.5021,0.6929,-0.5528,0.463,0.5021,-0.7041,0.5021,0.5893,-0.5528,0.5893,0.5893,-0.5528,0.5893,0.5021,-0.7041,0.5021,0.3945,-0.7041,0.5905,0.5893,-0.5528,0.5893,0.3945,-0.7041,0.5905,0.463,-0.5528,0.6929,0.463,-0.5528,0.6929,0.3945,-0.7041,0.5905,0.2718,-0.7041,0.6561,0.463,-0.5528,0.6929,0.2718,-0.7041,0.6561,0.3189,-0.5528,0.7699,0.3189,-0.5528,0.7699,0.2718,-0.7041,0.6561,0.1385,-0.7041,0.6965,0.3189,-0.5528,0.7699,0.1385,-0.7041,0.6965,0.1626,-0.5528,0.8173,0.1626,-0.5528,0.8173,0.1385,-0.7041,0.6965,0.0,-0.7041,0.7101,0.1626,-0.5528,0.8173,0.0,-0.7041,0.7101,0.0,-0.5528,0.8333,0.0,-0.7041,0.7101,0.0,-0.8286,0.5598,-0.1092,-0.8286,0.549,0.0,-0.7041,0.7101,-0.1092,-0.8286,0.549,-0.1385,-0.7041,0.6965,-0.1385,-0.7041,0.6965,-0.1092,-0.8286,0.549,-0.2142,-0.8286,0.5172,-0.1385,-0.7041,0.6965,-0.2142,-0.8286,0.5172,-0.2718,-0.7041,0.6561,-0.2718,-0.7041,0.6561,-0.2142,-0.8286,0.5172,-0.311,-0.8286,0.4654,-0.2718,-0.7041,0.6561,-0.311,-0.8286,0.4654,-0.3945,-0.7041,0.5905,-0.3945,-0.7041,0.5905,-0.311,-0.8286,0.4654,-0.3958,-0.8286,0.3958,-0.3945,-0.7041,0.5905,-0.3958,-0.8286,0.3958,-0.5021,-0.7041,0.5021,-0.5021,-0.7041,0.5021,-0.3958,-0.8286,0.3958,-0.4654,-0.8286,0.311,-0.5021,-0.7041,0.5021,-0.4654,-0.8286,0.311,-0.5905,-0.7041,0.3945,-0.5905,-0.7041,0.3945,-0.4654,-0.8286,0.311,-0.5172,-0.8286,0.2142,-0.5905,-0.7041,0.3945,-0.5172,-0.8286,0.2142,-0.6561,-0.7041,0.2718,-0.6561,-0.7041,0.2718,-0.5172,-0.8286,0.2142,-0.549,-0.8286,0.1092,-0.6561,-0.7041,0.2718,-0.549,-0.8286,0.1092,-0.6965,-0.7041,0.1385,-0.6965,-0.7041,0.1385,-0.549,-0.8286,0.1092,-0.5598,-0.8286,0.0,-0.6965,-0.7041,0.1385,-0.5598,-0.8286,0.0,-0.7101,-0.7041,0.0,-0.7101,-0.7041,0.0,-0.5598,-0.8286,0.0,-0.549,-0.8286,-0.1092,-0.7101,-0.7041,0.0,-0.549,-0.8286,-0.1092,-0.6965,-0.7041,-0.1385,-0.6965,-0.7041,-0.1385,-0.549,-0.8286,-0.1092,-0.5172,-0.8286,-0.2142,-0.6965,-0.7041,-0.1385,-0.5172,-0.8286,-0.2142,-0.6561,-0.7041,-0.2718,-0.6561,-0.7041,-0.2718,-0.5172,-0.8286,-0.2142,-0.4654,-0.8286,-0.311,-0.6561,-0.7041,-0.2718,-0.4654,-0.8286,-0.311,-0.5905,-0.7041,-0.3945,-0.5905,-0.7041,-0.3945,-0.4654,-0.8286,-0.311,-0.3958,-0.8286,-0.3958,-0.5905,-0.7041,-0.3945,-0.3958,-0.8286,-0.3958,-0.5021,-0.7041,-0.5021,-0.5021,-0.7041,-0.5021,-0.3958,-0.8286,-0.3958,-0.311,-0.8286,-0.4654,-0.5021,-0.7041,-0.5021,-0.311,-0.8286,-0.4654,-0.3945,-0.7041,-0.5905,-0.3945,-0.7041,-0.5905,-0.311,-0.8286,-0.4654,-0.2142,-0.8286,-0.5172,-0.3945,-0.7041,-0.5905,-0.2142,-0.8286,-0.5172,-0.2718,-0.7041,-0.6561,-0.2718,-0.7041,-0.6561,-0.2142,-0.8286,-0.5172,-0.1092,-0.8286,-0.549,-0.2718,-0.7041,-0.6561,-0.1092,-0.8286,-0.549,-0.1385,-0.7041,-0.6965,-0.1385,-0.7041,-0.6965,-0.1092,-0.8286,-0.549,0.0,-0.8286,-0.5598,-0.1385,-0.7041,-0.6965,0.0,-0.8286,-0.5598,0.0,-0.7041,-0.7101,0.0,-0.7041,-0.7101,0.0,-0.8286,-0.5598,0.1092,-0.8286,-0.549,0.0,-0.7041,-0.7101,0.1092,-0.8286,-0.549,0.1385,-0.7041,-0.6965,0.1385,-0.7041,-0.6965,0.1092,-0.8286,-0.549,0.2142,-0.8286,-0.5172,0.1385,-0.7041,-0.6965,0.2142,-0.8286,-0.5172,0.2718,-0.7041,-0.6561,0.2718,-0.7041,-0.6561,0.2142,-0.8286,-0.5172,0.311,-0.8286,-0.4654,0.2718,-0.7041,-0.6561,0.311,-0.8286,-0.4654,0.3945,-0.7041,-0.5905,0.3945,-0.7041,-0.5905,0.311,-0.8286,-0.4654,0.3958,-0.8286,-0.3958,0.3945,-0.7041,-0.5905,0.3958,-0.8286,-0.3958,0.5021,-0.7041,-0.5021,0.5021,-0.7041,-0.5021,0.3958,-0.8286,-0.3958,0.4654,-0.8286,-0.311,0.5021,-0.7041,-0.5021,0.4654,-0.8286,-0.311,0.5905,-0.7041,-0.3945,0.5905,-0.7041,-0.3945,0.4654,-0.8286,-0.311,0.5172,-0.8286,-0.2142,0.5905,-0.7041,-0.3945,0.5172,-0.8286,-0.2142,0.6561,-0.7041,-0.2718,0.6561,-0.7041,-0.2718,0.5172,-0.8286,-0.2142,0.549,-0.8286,-0.1092,0.6561,-0.7041,-0.2718,0.549,-0.8286,-0.1092,0.6965,-0.7041,-0.1385,0.6965,-0.7041,-0.1385,0.549,-0.8286,-0.1092,0.5598,-0.8286,0.0,0.6965,-0.7041,-0.1385,0.5598,-0.8286,0.0,0.7101,-0.7041,0.0,0.7101,-0.7041,0.0,0.5598,-0.8286,0.0,0.549,-0.8286,0.1092,0.7101,-0.7041,0.0,0.549,-0.8286,0.1092,0.6965,-0.7041,0.1385,0.6965,-0.7041,0.1385,0.549,-0.8286,0.1092,0.5172,-0.8286,0.2142,0.6965,-0.7041,0.1385,0.5172,-0.8286,0.2142,0.6561,-0.7041,0.2718,0.6561,-0.7041,0.2718,0.5172,-0.8286,0.2142,0.4654,-0.8286,0.311,0.6561,-0.7041,0.2718,0.4654,-0.8286,0.311,0.5905,-0.7041,0.3945,0.5905,-0.7041,0.3945,0.4654,-0.8286,0.311,0.3958,-0.8286,0.3958,0.5905,-0.7041,0.3945,0.3958,-0.8286,0.3958,0.5021,-0.7041,0.5021,0.5021,-0.7041,0.5021,0.3958,-0.8286,0.3958,0.311,-0.8286,0.4654,0.5021,-0.7041,0.5021,0.311,-0.8286,0.4654,0.3945,-0.7041,0.5905,0.3945,-0.7041,0.5905,0.311,-0.8286,0.4654,0.2142,-0.8286,0.5172,0.3945,-0.7041,0.5905,0.2142,-0.8286,0.5172,0.2718,-0.7041,0.6561,0.2718,-0.7041,0.6561,0.2142,-0.8286,0.5172,0.1092,-0.8286,0.549,0.2718,-0.7041,0.6561,0.1092,-0.8286,0.549,0.1385,-0.7041,0.6965,0.1385,-0.7041,0.6965,0.1092,-0.8286,0.549,0.0,-0.8286,0.5598,0.1385,-0.7041,0.6965,0.0,-0.8286,0.5598,0.0,-0.7041,0.7101,0.0,-0.8286,0.5598,0.0,-0.9217,0.3879,-0.0757,-0.9217,0.3804,0.0,-0.8286,0.5598,-0.0757,-0.9217,0.3804,-0.1092,-0.8286,0.549,-0.1092,-0.8286,0.549,-0.0757,-0.9217,0.3804,-0.1484,-0.9217,0.3584,-0.1092,-0.8286,0.549,-0.1484,-0.9217,0.3584,-0.2142,-0.8286,0.5172,-0.2142,-0.8286,0.5172,-0.1484,-0.9217,0.3584,-0.2155,-0.9217,0.3225,-0.2142,-0.8286,0.5172,-0.2155,-0.9217,0.3225,-0.311,-0.8286,0.4654,-0.311,-0.8286,0.4654,-0.2155,-0.9217,0.3225,-0.2743,-0.9217,0.2743,-0.311,-0.8286,0.4654,-0.2743,-0.9217,0.2743,-0.3958,-0.8286,0.3958,-0.3958,-0.8286,0.3958,-0.2743,-0.9217,0.2743,-0.3225,-0.9217,0.2155,-0.3958,-0.8286,0.3958,-0.3225,-0.9217,0.2155,-0.4654,-0.8286,0.311,-0.4654,-0.8286,0.311,-0.3225,-0.9217,0.2155,-0.3584,-0.9217,0.1484,-0.4654,-0.8286,0.311,-0.3584,-0.9217,0.1484,-0.5172,-0.8286,0.2142,-0.5172,-0.8286,0.2142,-0.3584,-0.9217,0.1484,-0.3804,-0.9217,0.0757,-0.5172,-0.8286,0.2142,-0.3804,-0.9217,0.0757,-0.549,-0.8286,0.1092,-0.549,-0.8286,0.1092,-0.3804,-0.9217,0.0757,-0.3879,-0.9217,0.0,-0.549,-0.8286,0.1092,-0.3879,-0.9217,0.0,-0.5598,-0.8286,0.0,-0.5598,-0.8286,0.0,-0.3879,-0.9217,0.0,-0.3804,-0.9217,-0.0757,-0.5598,-0.8286,0.0,-0.3804,-0.9217,-0.0757,-0.549,-0.8286,-0.1092,-0.549,-0.8286,-0.1092,-0.3804,-0.9217,-0.0757,-0.3584,-0.9217,-0.1484,-0.549,-0.8286,-0.1092,-0.3584,-0.9217,-0.1484,-0.5172,-0.8286,-0.2142,-0.5172,-0.8286,-0.2142,-0.3584,-0.9217,-0.1484,-0.3225,-0.9217,-0.2155,-0.5172,-0.8286,-0.2142,-0.3225,-0.9217,-0.2155,-0.4654,-0.8286,-0.311,-0.4654,-0.8286,-0.311,-0.3225,-0.9217,-0.2155,-0.2743,-0.9217,-0.2743,-0.4654,-0.8286,-0.311,-0.2743,-0.9217,-0.2743,-0.3958,-0.8286,-0.3958,-0.3958,-0.8286,-0.3958,-0.2743,-0.9217,-0.2743,-0.2155,-0.9217,-0.3225,-0.3958,-0.8286,-0.3958,-0.2155,-0.9217,-0.3225,-0.311,-0.8286,-0.4654,-0.311,-0.8286,-0.4654,-0.2155,-0.9217,-0.3225,-0.1484,-0.9217,-0.3584,-0.311,-0.8286,-0.4654,-0.1484,-0.9217,-0.3584,-0.2142,-0.8286,-0.5172,-0.2142,-0.8286,-0.5172,-0.1484,-0.9217,-0.3584,-0.0757,-0.9217,-0.3804,-0.2142,-0.8286,-0.5172,-0.0757,-0.9217,-0.3804,-0.1092,-0.8286,-0.549,-0.1092,-0.8286,-0.549,-0.0757,-0.9217,-0.3804,0.0,-0.9217,-0.3879,-0.1092,-0.8286,-0.549,0.0,-0.9217,-0.3879,0.0,-0.8286,-0.5598,0.0,-0.8286,-0.5598,0.0,-0.9217,-0.3879,0.0757,-0.9217,-0.3804,0.0,-0.8286,-0.5598,0.0757,-0.9217,-0.3804,0.1092,-0.8286,-0.549,0.1092,-0.8286,-0.549,0.0757,-0.9217,-0.3804,0.1484,-0.9217,-0.3584,0.1092,-0.8286,-0.549,0.1484,-0.9217,-0.3584,0.2142,-0.8286,-0.5172,0.2142,-0.8286,-0.5172,0.1484,-0.9217,-0.3584,0.2155,-0.9217,-0.3225,0.2142,-0.8286,-0.5172,0.2155,-0.9217,-0.3225,0.311,-0.8286,-0.4654,0.311,-0.8286,-0.4654,0.2155,-0.9217,-0.3225,0.2743,-0.9217,-0.2743,0.311,-0.8286,-0.4654,0.2743,-0.9217,-0.2743,0.3958,-0.8286,-0.3958,0.3958,-0.8286,-0.3958,0.2743,-0.9217,-0.2743,0.3225,-0.9217,-0.2155,0.3958,-0.8286,-0.3958,0.3225,-0.9217,-0.2155,0.4654,-0.8286,-0.311,0.4654,-0.8286,-0.311,0.3225,-0.9217,-0.2155,0.3584,-0.9217,-0.1484,0.4654,-0.8286,-0.311,0.3584,-0.9217,-0.1484,0.5172,-0.8286,-0.2142,0.5172,-0.8286,-0.2142,0.3584,-0.9217,-0.1484,0.3804,-0.9217,-0.0757,0.5172,-0.8286,-0.2142,0.3804,-0.9217,-0.0757,0.549,-0.8286,-0.1092,0.549,-0.8286,-0.1092,0.3804,-0.9217,-0.0757,0.3879,-0.9217,0.0,0.549,-0.8286,-0.1092,0.3879,-0.9217,0.0,0.5598,-0.8286,0.0,0.5598,-0.8286,0.0,0.3879,-0.9217,0.0,0.3804,-0.9217,0.0757,0.5598,-0.8286,0.0,0.3804,-0.9217,0.0757,0.549,-0.8286,0.1092,0.549,-0.8286,0.1092,0.3804,-0.9217,0.0757,0.3584,-0.9217,0.1484,0.549,-0.8286,0.1092,0.3584,-0.9217,0.1484,0.5172,-0.8286,0.2142,0.5172,-0.8286,0.2142,0.3584,-0.9217,0.1484,0.3225,-0.9217,0.2155,0.5172,-0.8286,0.2142,0.3225,-0.9217,0.2155,0.4654,-0.8286,0.311,0.4654,-0.8286,0.311,0.3225,-0.9217,0.2155,0.2743,-0.9217,0.2743,0.4654,-0.8286,0.311,0.2743,-0.9217,0.2743,0.3958,-0.8286,0.3958,0.3958,-0.8286,0.3958,0.2743,-0.9217,0.2743,0.2155,-0.9217,0.3225,0.3958,-0.8286,0.3958,0.2155,-0.9217,0.3225,0.311,-0.8286,0.4654,0.311,-0.8286,0.4654,0.2155,-0.9217,0.3225,0.1484,-0.9217,0.3584,0.311,-0.8286,0.4654,0.1484,-0.9217,0.3584,0.2142,-0.8286,0.5172,0.2142,-0.8286,0.5172,0.1484,-0.9217,0.3584,0.0757,-0.9217,0.3804,0.2142,-0.8286,0.5172,0.0757,-0.9217,0.3804,0.1092,-0.8286,0.549,0.1092,-0.8286,0.549,0.0757,-0.9217,0.3804,0.0,-0.9217,0.3879,0.1092,-0.8286,0.549,0.0,-0.9217,0.3879,0.0,-0.8286,0.5598,0.0,-0.9217,0.3879,0.0,-0.9796,0.201,-0.0392,-0.9796,0.1971,0.0,-0.9217,0.3879,-0.0392,-0.9796,0.1971,-0.0757,-0.9217,0.3804,-0.0757,-0.9217,0.3804,-0.0392,-0.9796,0.1971,-0.0769,-0.9796,0.1857,-0.0757,-0.9217,0.3804,-0.0769,-0.9796,0.1857,-0.1484,-0.9217,0.3584,-0.1484,-0.9217,0.3584,-0.0769,-0.9796,0.1857,-0.1117,-0.9796,0.1671,-0.1484,-0.9217,0.3584,-0.1117,-0.9796,0.1671,-0.2155,-0.9217,0.3225,-0.2155,-0.9217,0.3225,-0.1117,-0.9796,0.1671,-0.1421,-0.9796,0.1421,-0.2155,-0.9217,0.3225,-0.1421,-0.9796,0.1421,-0.2743,-0.9217,0.2743,-0.2743,-0.9217,0.2743,-0.1421,-0.9796,0.1421,-0.1671,-0.9796,0.1117,-0.2743,-0.9217,0.2743,-0.1671,-0.9796,0.1117,-0.3225,-0.9217,0.2155,-0.3225,-0.9217,0.2155,-0.1671,-0.9796,0.1117,-0.1857,-0.9796,0.0769,-0.3225,-0.9217,0.2155,-0.1857,-0.9796,0.0769,-0.3584,-0.9217,0.1484,-0.3584,-0.9217,0.1484,-0.1857,-0.9796,0.0769,-0.1971,-0.9796,0.0392,-0.3584,-0.9217,0.1484,-0.1971,-0.9796,0.0392,-0.3804,-0.9217,0.0757,-0.3804,-0.9217,0.0757,-0.1971,-0.9796,0.0392,-0.201,-0.9796,0.0,-0.3804,-0.9217,0.0757,-0.201,-0.9796,0.0,-0.3879,-0.9217,0.0,-0.3879,-0.9217,0.0,-0.201,-0.9796,0.0,-0.1971,-0.9796,-0.0392,-0.3879,-0.9217,0.0,-0.1971,-0.9796,-0.0392,-0.3804,-0.9217,-0.0757,-0.3804,-0.9217,-0.0757,-0.1971,-0.9796,-0.0392,-0.1857,-0.9796,-0.0769,-0.3804,-0.9217,-0.0757,-0.1857,-0.9796,-0.0769,-0.3584,-0.9217,-0.1484,-0.3584,-0.9217,-0.1484,-0.1857,-0.9796,-0.0769,-0.1671,-0.9796,-0.1117,-0.3584,-0.9217,-0.1484,-0.1671,-0.9796,-0.1117,-0.3225,-0.9217,-0.2155,-0.3225,-0.9217,-0.2155,-0.1671,-0.9796,-0.1117,-0.1421,-0.9796,-0.1421,-0.3225,-0.9217,-0.2155,-0.1421,-0.9796,-0.1421,-0.2743,-0.9217,-0.2743,-0.2743,-0.9217,-0.2743,-0.1421,-0.9796,-0.1421,-0.1117,-0.9796,-0.1671,-0.2743,-0.9217,-0.2743,-0.1117,-0.9796,-0.1671,-0.2155,-0.9217,-0.3225,-0.2155,-0.9217,-0.3225,-0.1117,-0.9796,-0.1671,-0.0769,-0.9796,-0.1857,-0.2155,-0.9217,-0.3225,-0.0769,-0.9796,-0.1857,-0.1484,-0.9217,-0.3584,-0.1484,-0.9217,-0.3584,-0.0769,-0.9796,-0.1857,-0.0392,-0.9796,-0.1971,-0.1484,-0.9217,-0.3584,-0.0392,-0.9796,-0.1971,-0.0757,-0.9217,-0.3804,-0.0757,-0.9217,-0.3804,-0.0392,-0.9796,-0.1971,0.0,-0.9796,-0.201,-0.0757,-0.9217,-0.3804,0.0,-0.9796,-0.201,0.0,-0.9217,-0.3879,0.0,-0.9217,-0.3879,0.0,-0.9796,-0.201,0.0392,-0.9796,-0.1971,0.0,-0.9217,-0.3879,0.0392,-0.9796,-0.1971,0.0757,-0.9217,-0.3804,0.0757,-0.9217,-0.3804,0.0392,-0.9796,-0.1971,0.0769,-0.9796,-0.1857,0.0757,-0.9217,-0.3804,0.0769,-0.9796,-0.1857,0.1484,-0.9217,-0.3584,0.1484,-0.9217,-0.3584,0.0769,-0.9796,-0.1857,0.1117,-0.9796,-0.1671,0.1484,-0.9217,-0.3584,0.1117,-0.9796,-0.1671,0.2155,-0.9217,-0.3225,0.2155,-0.9217,-0.3225,0.1117,-0.9796,-0.1671,0.1421,-0.9796,-0.1421,0.2155,-0.9217,-0.3225,0.1421,-0.9796,-0.1421,0.2743,-0.9217,-0.2743,0.2743,-0.9217,-0.2743,0.1421,-0.9796,-0.1421,0.1671,-0.9796,-0.1117,0.2743,-0.9217,-0.2743,0.1671,-0.9796,-0.1117,0.3225,-0.9217,-0.2155,0.3225,-0.9217,-0.2155,0.1671,-0.9796,-0.1117,0.1857,-0.9796,-0.0769,0.3225,-0.9217,-0.2155,0.1857,-0.9796,-0.0769,0.3584,-0.9217,-0.1484,0.3584,-0.9217,-0.1484,0.1857,-0.9796,-0.0769,0.1971,-0.9796,-0.0392,0.3584,-0.9217,-0.1484,0.1971,-0.9796,-0.0392,0.3804,-0.9217,-0.0757,0.3804,-0.9217,-0.0757,0.1971,-0.9796,-0.0392,0.201,-0.9796,0.0,0.3804,-0.9217,-0.0757,0.201,-0.9796,0.0,0.3879,-0.9217,0.0,0.3879,-0.9217,0.0,0.201,-0.9796,0.0,0.1971,-0.9796,0.0392,0.3879,-0.9217,0.0,0.1971,-0.9796,0.0392,0.3804,-0.9217,0.0757,0.3804,-0.9217,0.0757,0.1971,-0.9796,0.0392,0.1857,-0.9796,0.0769,0.3804,-0.9217,0.0757,0.1857,-0.9796,0.0769,0.3584,-0.9217,0.1484,0.3584,-0.9217,0.1484,0.1857,-0.9796,0.0769,0.1671,-0.9796,0.1117,0.3584,-0.9217,0.1484,0.1671,-0.9796,0.1117,0.3225,-0.9217,0.2155,0.3225,-0.9217,0.2155,0.1671,-0.9796,0.1117,0.1421,-0.9796,0.1421,0.3225,-0.9217,0.2155,0.1421,-0.9796,0.1421,0.2743,-0.9217,0.2743,0.2743,-0.9217,0.2743,0.1421,-0.9796,0.1421,0.1117,-0.9796,0.1671,0.2743,-0.9217,0.2743,0.1117,-0.9796,0.1671,0.2155,-0.9217,0.3225,0.2155,-0.9217,0.3225,0.1117,-0.9796,0.1671,0.0769,-0.9796,0.1857,0.2155,-0.9217,0.3225,0.0769,-0.9796,0.1857,0.1484,-0.9217,0.3584,0.1484,-0.9217,0.3584,0.0769,-0.9796,0.1857,0.0392,-0.9796,0.1971,0.1484,-0.9217,0.3584,0.0392,-0.9796,0.1971,0.0757,-0.9217,0.3804,0.0757,-0.9217,0.3804,0.0392,-0.9796,0.1971,0.0,-0.9796,0.201,0.0757,-0.9217,0.3804,0.0,-0.9796,0.201,0.0,-0.9217,0.3879,0.0,-1.0,0.0,-0.0392,-0.9796,0.1971,0.0,-0.9796,0.201,0.0,-1.0,0.0,-0.0769,-0.9796,0.1857,-0.0392,-0.9796,0.1971,0.0,-1.0,0.0,-0.1117,-0.9796,0.1671,-0.0769,-0.9796,0.1857,0.0,-1.0,0.0,-0.1421,-0.9796,0.1421,-0.1117,-0.9796,0.1671,0.0,-1.0,0.0,-0.1671,-0.9796,0.1117,-0.1421,-0.9796,0.1421,0.0,-1.0,0.0,-0.1857,-0.9796,0.0769,-0.1671,-0.9796,0.1117,0.0,-1.0,0.0,-0.1971,-0.9796,0.0392,-0.1857,-0.9796,0.0769,0.0,-1.0,0.0,-0.201,-0.9796,0.0,-0.1971,-0.9796,0.0392,0.0,-1.0,0.0,-0.1971,-0.9796,-0.0392,-0.201,-0.9796,0.0,0.0,-1.0,0.0,-0.1857,-0.9796,-0.0769,-0.1971,-0.9796,-0.0392,0.0,-1.0,0.0,-0.1671,-0.9796,-0.1117,-0.1857,-0.9796,-0.0769,0.0,-1.0,0.0,-0.1421,-0.9796,-0.1421,-0.1671,-0.9796,-0.1117,0.0,-1.0,0.0,-0.1117,-0.9796,-0.1671,-0.1421,-0.9796,-0.1421,0.0,-1.0,0.0,-0.0769,-0.9796,-0.1857,-0.1117,-0.9796,-0.1671,0.0,-1.0,0.0,-0.0392,-0.9796,-0.1971,-0.0769,-0.9796,-0.1857,0.0,-1.0,0.0,0.0,-0.9796,-0.201,-0.0392,-0.9796,-0.1971,0.0,-1.0,0.0,0.0392,-0.9796,-0.1971,0.0,-0.9796,-0.201,0.0,-1.0,0.0,0.0769,-0.9796,-0.1857,0.0392,-0.9796,-0.1971,0.0,-1.0,0.0,0.1117,-0.9796,-0.1671,0.0769,-0.9796,-0.1857,0.0,-1.0,0.0,0.1421,-0.9796,-0.1421,0.1117,-0.9796,-0.1671,0.0,-1.0,0.0,0.1671,-0.9796,-0.1117,0.1421,-0.9796,-0.1421,0.0,-1.0,0.0,0.1857,-0.9796,-0.0769,0.1671,-0.9796,-0.1117,0.0,-1.0,0.0,0.1971,-0.9796,-0.0392,0.1857,-0.9796,-0.0769,0.0,-1.0,0.0,0.201,-0.9796,0.0,0.1971,-0.9796,-0.0392,0.0,-1.0,0.0,0.1971,-0.9796,0.0392,0.201,-0.9796,0.0,0.0,-1.0,0.0,0.1857,-0.9796,0.0769,0.1971,-0.9796,0.0392,0.0,-1.0,0.0,0.1671,-0.9796,0.1117,0.1857,-0.9796,0.0769,0.0,-1.0,0.0,0.1421,-0.9796,0.1421,0.1671,-0.9796,0.1117,0.0,-1.0,0.0,0.1117,-0.9796,0.1671,0.1421,-0.9796,0.1421,0.0,-1.0,0.0,0.0769,-0.9796,0.1857,0.1117,-0.9796,0.1671,0.0,-1.0,0.0,0.0392,-0.9796,0.1971,0.0769,-0.9796,0.1857,0.0,-1.0,0.0,0.0,-0.9796,0.201,0.0392,-0.9796,0.1971],"tangents":null,"uvs":[0.0,2.0,0.0,1.9375,0.0312,1.9375,0.0312,2.0,0.0312,1.9375,0.0625,1.9375,0.0625,2.0,0.0625,1.9375,0.0938,1.9375,0.0938,2.0,0.0938,1.9375,0.125,1.9375,0.125,2.0,0.125,1.9375,0.1562,1.9375,0.1562,2.0,0.1562,1.9375,0.1875,1.9375,0.1875,2.0,0.1875,1.9375,0.2187,1.9375,0.2187,2.0,0.2187,1.9375,0.25,1.9375,0.25,2.0,0.25,1.9375,0.2812,1.9375,0.2812,2.0,0.2812,1.9375,0.3125,1.9375,0.3125,2.0,0.3125,1.9375,0.3437,1.9375,0.3437,2.0,0.3437,1.9375,0.375,1.9375,0.375,2.0,0.375,1.9375,0.4062,1.9375,0.4062,2.0,0.4062,1.9375,0.4375,1.9375,0.4375,2.0,0.4375,1.9375,0.4688,1.9375,0.4688,2.0,0.4688,1.9375,0.5,1.9375,0.5,2.0,0.5,1.9375,0.5313,1.9375,0.5313,2.0,0.5313,1.9375,0.5625,1.9375,0.5625,2.0,0.5625,1.9375,0.5938,1.9375,0.5938,2.0,0.5938,1.9375,0.625,1.9375,0.625,2.0,0.625,1.9375,0.6563,1.9375,0.6563,2.0,0.6563,1.9375,0.6875,1.9375,0.6875,2.0,0.6875,1.9375,0.7188,1.9375,0.7188,2.0,0.7188,1.9375,0.75,1.9375,0.75,2.0,0.75,1.9375,0.7813,1.9375,0.7813,2.0,0.7813,1.9375,0.8125,1.9375,0.8125,2.0,0.8125,1.9375,0.8438,1.9375,0.8438,2.0,0.8438,1.9375,0.875,1.9375,0.875,2.0,0.875,1.9375,0.9063,1.9375,0.9063,2.0,0.9063,1.9375,0.9375,1.9375,0.9375,2.0,0.9375,1.9375,0.9688,1.9375,0.9688,2.0,0.9688,1.9375,1.0,1.9375,0.0,1.9375,0.0,1.875,0.0312,1.875,0.0,1.9375,0.0312,1.875,0.0312,1.9375,0.0312,1.9375,0.0312,1.875,0.0625,1.875,0.0312,1.9375,0.0625,1.875,0.0625,1.9375,0.0625,1.9375,0.0625,1.875,0.0938,1.875,0.0625,1.9375,0.0938,1.875,0.0938,1.9375,0.0938,1.9375,0.0938,1.875,0.125,1.875,0.0938,1.9375,0.125,1.875,0.125,1.9375,0.125,1.9375,0.125,1.875,0.1562,1.875,0.125,1.9375,0.1562,1.875,0.1562,1.9375,0.1562,1.9375,0.1562,1.875,0.1875,1.875,0.1562,1.9375,0.1875,1.875,0.1875,1.9375,0.1875,1.9375,0.1875,1.875,0.2187,1.875,0.1875,1.9375,0.2187,1.875,0.2187,1.9375,0.2187,1.9375,0.2187,1.875,0.25,1.875,0.2187,1.9375,0.25,1.875,0.25,1.9375,0.25,1.9375,0.25,1.875,0.2812,1.875,0.25,1.9375,0.2812,1.875,0.2812,1.9375,0.2812,1.9375,0.2812,1.875,0.3125,1.875,0.2812,1.9375,0.3125,1.875,0.3125,1.9375,0.3125,1.9375,0.3125,1.875,0.3437,1.875,0.3125,1.9375,0.3437,1.875,0.3437,1.9375,0.3437,1.9375,0.3437,1.875,0.375,1.875,0.3437,1.9375,0.375,1.875,0.375,1.9375,0.375,1.9375,0.375,1.875,0.4062,1.875,0.375,1.9375,0.4062,1.875,0.4062,1.9375,0.4062,1.9375,0.4062,1.875,0.4375,1.875,0.4062,1.9375,0.4375,1.875,0.4375,1.9375,0.4375,1.9375,0.4375,1.875,0.4688,1.875,0.4375,1.9375,0.4688,1.875,0.4688,1.9375,0.4688,1.9375,0.4688,1.875,0.5,1.875,0.4688,1.9375,0.5,1.875,0.5,1.9375,0.5,1.9375,0.5,1.875,0.5313,1.875,0.5,1.9375,0.5313,1.875,0.5313,1.9375,0.5313,1.9375,0.5313,1.875,0.5625,1.875,0.5313,1.9375,0.5625,1.875,0.5625,1.9375,0.5625,1.9375,0.5625,1.875,0.5938,1.875,0.5625,1.9375,0.5938,1.875,0.5938,1.9375,0.5938,1.9375,0.5938,1.875,0.625,1.875,0.5938,1.9375,0.625,1.875,0.625,1.9375,0.625,1.9375,0.625,1.875,0.6563,1.875,0.625,1.9375,0.6563,1.875,0.6563,1.9375,0.6563,1.9375,0.6563,1.875,0.6875,1.875,0.6563,1.9375,0.6875,1.875,0.6875,1.9375,0.6875,1.9375,0.6875,1.875,0.7188,1.875,0.6875,1.9375,0.7188,1.875,0.7188,1.9375,0.7188,1.9375,0.7188,1.875,0.75,1.875,0.7188,1.9375,0.75,1.875,0.75,1.9375,0.75,1.9375,0.75,1.875,0.7813,1.875,0.75,1.9375,0.7813,1.875,0.7813,1.9375,0.7813,1.9375,0.7813,1.875,0.8125,1.875,0.7813,1.9375,0.8125,1.875,0.8125,1.9375,0.8125,1.9375,0.8125,1.875,0.8438,1.875,0.8125,1.9375,0.8438,1.875,0.8438,1.9375,0.8438,1.9375,0.8438,1.875,0.875,1.875,0.8438,1.9375,0.875,1.875,0.875,1.9375,0.875,1.9375,0.875,1.875,0.9063,1.875,0.875,1.9375,0.9063,1.875,0.9063,1.9375,0.9063,1.9375,0.9063,1.875,0.9375,1.875,0.9063,1.9375,0.9375,1.875,0.9375,1.9375,0.9375,1.9375,0.9375,1.875,0.9688,1.875,0.9375,1.9375,0.9688,1.875,0.9688,1.9375,0.9688,1.9375,0.9688,1.875,1.0,1.875,0.9688,1.9375,1.0,1.875,1.0,1.9375,0.0,1.875,0.0,1.8125,0.0312,1.8125,0.0,1.875,0.0312,1.8125,0.0312,1.875,0.0312,1.875,0.0312,1.8125,0.0625,1.8125,0.0312,1.875,0.0625,1.8125,0.0625,1.875,0.0625,1.875,0.0625,1.8125,0.0938,1.8125,0.0625,1.875,0.0938,1.8125,0.0938,1.875,0.0938,1.875,0.0938,1.8125,0.125,1.8125,0.0938,1.875,0.125,1.8125,0.125,1.875,0.125,1.875,0.125,1.8125,0.1562,1.8125,0.125,1.875,0.1562,1.8125,0.1562,1.875,0.1562,1.875,0.1562,1.8125,0.1875,1.8125,0.1562,1.875,0.1875,1.8125,0.1875,1.875,0.1875,1.875,0.1875,1.8125,0.2187,1.8125,0.1875,1.875,0.2187,1.8125,0.2187,1.875,0.2187,1.875,0.2187,1.8125,0.25,1.8125,0.2187,1.875,0.25,1.8125,0.25,1.875,0.25,1.875,0.25,1.8125,0.2812,1.8125,0.25,1.875,0.2812,1.8125,0.2812,1.875,0.2812,1.875,0.2812,1.8125,0.3125,1.8125,0.2812,1.875,0.3125,1.8125,0.3125,1.875,0.3125,1.875,0.3125,1.8125,0.3437,1.8125,0.3125,1.875,0.3437,1.8125,0.3437,1.875,0.3437,1.875,0.3437,1.8125,0.375,1.8125,0.3437,1.875,0.375,1.8125,0.375,1.875,0.375,1.875,0.375,1.8125,0.4062,1.8125,0.375,1.875,0.4062,1.8125,0.4062,1.875,0.4062,1.875,0.4062,1.8125,0.4375,1.8125,0.4062,1.875,0.4375,1.8125,0.4375,1.875,0.4375,1.875,0.4375,1.8125,0.4688,1.8125,0.4375,1.875,0.4688,1.8125,0.4688,1.875,0.4688,1.875,0.4688,1.8125,0.5,1.8125,0.4688,1.875,0.5,1.8125,0.5,1.875,0.5,1.875,0.5,1.8125,0.5313,1.8125,0.5,1.875,0.5313,1.8125,0.5313,1.875,0.5313,1.875,0.5313,1.8125,0.5625,1.8125,0.5313,1.875,0.5625,1.8125,0.5625,1.875,0.5625,1.875,0.5625,1.8125,0.5938,1.8125,0.5625,1.875,0.5938,1.8125,0.5938,1.875,0.5938,1.875,0.5938,1.8125,0.625,1.8125,0.5938,1.875,0.625,1.8125,0.625,1.875,0.625,1.875,0.625,1.8125,0.6563,1.8125,0.625,1.875,0.6563,1.8125,0.6563,1.875,0.6563,1.875,0.6563,1.8125,0.6875,1.8125,0.6563,1.875,0.6875,1.8125,0.6875,1.875,0.6875,1.875,0.6875,1.8125,0.7188,1.8125,0.6875,1.875,0.7188,1.8125,0.7188,1.875,0.7188,1.875,0.7188,1.8125,0.75,1.8125,0.7188,1.875,0.75,1.8125,0.75,1.875,0.75,1.875,0.75,1.8125,0.7813,1.8125,0.75,1.875,0.7813,1.8125,0.7813,1.875,0.7813,1.875,0.7813,1.8125,0.8125,1.8125,0.7813,1.875,0.8125,1.8125,0.8125,1.875,0.8125,1.875,0.8125,1.8125,0.8438,1.8125,0.8125,1.875,0.8438,1.8125,0.8438,1.875,0.8438,1.875,0.8438,1.8125,0.875,1.8125,0.8438,1.875,0.875,1.8125,0.875,1.875,0.875,1.875,0.875,1.8125,0.9063,1.8125,0.875,1.875,0.9063,1.8125,0.9063,1.875,0.9063,1.875,0.9063,1.8125,0.9375,1.8125,0.9063,1.875,0.9375,1.8125,0.9375,1.875,0.9375,1.875,0.9375,1.8125,0.9688,1.8125,0.9375,1.875,0.9688,1.8125,0.9688,1.875,0.9688,1.875,0.9688,1.8125,1.0,1.8125,0.9688,1.875,1.0,1.8125,1.0,1.875,0.0,1.8125,0.0,1.75,0.0312,1.75,0.0,1.8125,0.0312,1.75,0.0312,1.8125,0.0312,1.8125,0.0312,1.75,0.0625,1.75,0.0312,1.8125,0.0625,1.75,0.0625,1.8125,0.0625,1.8125,0.0625,1.75,0.0938,1.75,0.0625,1.8125,0.0938,1.75,0.0938,1.8125,0.0938,1.8125,0.0938,1.75,0.125,1.75,0.0938,1.8125,0.125,1.75,0.125,1.8125,0.125,1.8125,0.125,1.75,0.1562,1.75,0.125,1.8125,0.1562,1.75,0.1562,1.8125,0.1562,1.8125,0.1562,1.75,0.1875,1.75,0.1562,1.8125,0.1875,1.75,0.1875,1.8125,0.1875,1.8125,0.1875,1.75,0.2187,1.75,0.1875,1.8125,0.2187,1.75,0.2187,1.8125,0.2187,1.8125,0.2187,1.75,0.25,1.75,0.2187,1.8125,0.25,1.75,0.25,1.8125,0.25,1.8125,0.25,1.75,0.2812,1.75,0.25,1.8125,0.2812,1.75,0.2812,1.8125,0.2812,1.8125,0.2812,1.75,0.3125,1.75,0.2812,1.8125,0.3125,1.75,0.3125,1.8125,0.3125,1.8125,0.3125,1.75,0.3437,1.75,0.3125,1.8125,0.3437,1.75,0.3437,1.8125,0.3437,1.8125,0.3437,1.75,0.375,1.75,0.3437,1.8125,0.375,1.75,0.375,1.8125,0.375,1.8125,0.375,1.75,0.4062,1.75,0.375,1.8125,0.4062,1.75,0.4062,1.8125,0.4062,1.8125,0.4062,1.75,0.4375,1.75,0.4062,1.8125,0.4375,1.75,0.4375,1.8125,0.4375,1.8125,0.4375,1.75,0.4688,1.75,0.4375,1.8125,0.4688,1.75,0.4688,1.8125,0.4688,1.8125,0.4688,1.75,0.5,1.75,0.4688,1.8125,0.5,1.75,0.5,1.8125,0.5,1.8125,0.5,1.75,0.5313,1.75,0.5,1.8125,0.5313,1.75,0.5313,1.8125,0.5313,1.8125,0.5313,1.75,0.5625,1.75,0.5313,1.8125,0.5625,1.75,0.5625,1.8125,0.5625,1.8125,0.5625,1.75,0.5938,1.75,0.5625,1.8125,0.5938,1.75,0.5938,1.8125,0.5938,1.8125,0.5938,1.75,0.625,1.75,0.5938,1.8125,0.625,1.75,0.625,1.8125,0.625,1.8125,0.625,1.75,0.6563,1.75,0.625,1.8125,0.6563,1.75,0.6563,1.8125,0.6563,1.8125,0.6563,1.75,0.6875,1.75,0.6563,1.8125,0.6875,1.75,0.6875,1.8125,0.6875,1.8125,0.6875,1.75,0.7188,1.75,0.6875,1.8125,0.7188,1.75,0.7188,1.8125,0.7188,1.8125,0.7188,1.75,0.75,1.75,0.7188,1.8125,0.75,1.75,0.75,1.8125,0.75,1.8125,0.75,1.75,0.7813,1.75,0.75,1.8125,0.7813,1.75,0.7813,1.8125,0.7813,1.8125,0.7813,1.75,0.8125,1.75,0.7813,1.8125,0.8125,1.75,0.8125,1.8125,0.8125,1.8125,0.8125,1.75,0.8438,1.75,0.8125,1.8125,0.8438,1.75,0.8438,1.8125,0.8438,1.8125,0.8438,1.75,0.875,1.75,0.8438,1.8125,0.875,1.75,0.875,1.8125,0.875,1.8125,0.875,1.75,0.9063,1.75,0.875,1.8125,0.9063,1.75,0.9063,1.8125,0.9063,1.8125,0.9063,1.75,0.9375,1.75,0.9063,1.8125,0.9375,1.75,0.9375,1.8125,0.9375,1.8125,0.9375,1.75,0.9688,1.75,0.9375,1.8125,0.9688,1.75,0.9688,1.8125,0.9688,1.8125,0.9688,1.75,1.0,1.75,0.9688,1.8125,1.0,1.75,1.0,1.8125,0.0,1.75,0.0,1.6875,0.0312,1.6875,0.0,1.75,0.0312,1.6875,0.0312,1.75,0.0312,1.75,0.0312,1.6875,0.0625,1.6875,0.0312,1.75,0.0625,1.6875,0.0625,1.75,0.0625,1.75,0.0625,1.6875,0.0938,1.6875,0.0625,1.75,0.0938,1.6875,0.0938,1.75,0.0938,1.75,0.0938,1.6875,0.125,1.6875,0.0938,1.75,0.125,1.6875,0.125,1.75,0.125,1.75,0.125,1.6875,0.1562,1.6875,0.125,1.75,0.1562,1.6875,0.1562,1.75,0.1562,1.75,0.1562,1.6875,0.1875,1.6875,0.1562,1.75,0.1875,1.6875,0.1875,1.75,0.1875,1.75,0.1875,1.6875,0.2187,1.6875,0.1875,1.75,0.2187,1.6875,0.2187,1.75,0.2187,1.75,0.2187,1.6875,0.25,1.6875,0.2187,1.75,0.25,1.6875,0.25,1.75,0.25,1.75,0.25,1.6875,0.2812,1.6875,0.25,1.75,0.2812,1.6875,0.2812,1.75,0.2812,1.75,0.2812,1.6875,0.3125,1.6875,0.2812,1.75,0.3125,1.6875,0.3125,1.75,0.3125,1.75,0.3125,1.6875,0.3437,1.6875,0.3125,1.75,0.3437,1.6875,0.3437,1.75,0.3437,1.75,0.3437,1.6875,0.375,1.6875,0.3437,1.75,0.375,1.6875,0.375,1.75,0.375,1.75,0.375,1.6875,0.4062,1.6875,0.375,1.75,0.4062,1.6875,0.4062,1.75,0.4062,1.75,0.4062,1.6875,0.4375,1.6875,0.4062,1.75,0.4375,1.6875,0.4375,1.75,0.4375,1.75,0.4375,1.6875,0.4688,1.6875,0.4375,1.75,0.4688,1.6875,0.4688,1.75,0.4688,1.75,0.4688,1.6875,0.5,1.6875,0.4688,1.75,0.5,1.6875,0.5,1.75,0.5,1.75,0.5,1.6875,0.5313,1.6875,0.5,1.75,0.5313,1.6875,0.5313,1.75,0.5313,1.75,0.5313,1.6875,0.5625,1.6875,0.5313,1.75,0.5625,1.6875,0.5625,1.75,0.5625,1.75,0.5625,1.6875,0.5938,1.6875,0.5625,1.75,0.5938,1.6875,0.5938,1.75,0.5938,1.75,0.5938,1.6875,0.625,1.6875,0.5938,1.75,0.625,1.6875,0.625,1.75,0.625,1.75,0.625,1.6875,0.6563,1.6875,0.625,1.75,0.6563,1.6875,0.6563,1.75,0.6563,1.75,0.6563,1.6875,0.6875,1.6875,0.6563,1.75,0.6875,1.6875,0.6875,1.75,0.6875,1.75,0.6875,1.6875,0.7188,1.6875,0.6875,1.75,0.7188,1.6875,0.7188,1.75,0.7188,1.75,0.7188,1.6875,0.75,1.6875,0.7188,1.75,0.75,1.6875,0.75,1.75,0.75,1.75,0.75,1.6875,0.7813,1.6875,0.75,1.75,0.7813,1.6875,0.7813,1.75,0.7813,1.75,0.7813,1.6875,0.8125,1.6875,0.7813,1.75,0.8125,1.6875,0.8125,1.75,0.8125,1.75,0.8125,1.6875,0.8438,1.6875,0.8125,1.75,0.8438,1.6875,0.8438,1.75,0.8438,1.75,0.8438,1.6875,0.875,1.6875,0.8438,1.75,0.875,1.6875,0.875,1.75,0.875,1.75,0.875,1.6875,0.9063,1.6875,0.875,1.75,0.9063,1.6875,0.9063,1.75,0.9063,1.75,0.9063,1.6875,0.9375,1.6875,0.9063,1.75,0.9375,1.6875,0.9375,1.75,0.9375,1.75,0.9375,1.6875,0.9688,1.6875,0.9375,1.75,0.9688,1.6875,0.9688,1.75,0.9688,1.75,0.9688,1.6875,1.0,1.6875,0.9688,1.75,1.0,1.6875,1.0,1.75,0.0,1.6875,0.0,1.625,0.0312,1.625,0.0,1.6875,0.0312,1.625,0.0312,1.6875,0.0312,1.6875,0.0312,1.625,0.0625,1.625,0.0312,1.6875,0.0625,1.625,0.0625,1.6875,0.0625,1.6875,0.0625,1.625,0.0938,1.625,0.0625,1.6875,0.0938,1.625,0.0938,1.6875,0.0938,1.6875,0.0938,1.625,0.125,1.625,0.0938,1.6875,0.125,1.625,0.125,1.6875,0.125,1.6875,0.125,1.625,0.1562,1.625,0.125,1.6875,0.1562,1.625,0.1562,1.6875,0.1562,1.6875,0.1562,1.625,0.1875,1.625,0.1562,1.6875,0.1875,1.625,0.1875,1.6875,0.1875,1.6875,0.1875,1.625,0.2187,1.625,0.1875,1.6875,0.2187,1.625,0.2187,1.6875,0.2187,1.6875,0.2187,1.625,0.25,1.625,0.2187,1.6875,0.25,1.625,0.25,1.6875,0.25,1.6875,0.25,1.625,0.2812,1.625,0.25,1.6875,0.2812,1.625,0.2812,1.6875,0.2812,1.6875,0.2812,1.625,0.3125,1.625,0.2812,1.6875,0.3125,1.625,0.3125,1.6875,0.3125,1.6875,0.3125,1.625,0.3437,1.625,0.3125,1.6875,0.3437,1.625,0.3437,1.6875,0.3437,1.6875,0.3437,1.625,0.375,1.625,0.3437,1.6875,0.375,1.625,0.375,1.6875,0.375,1.6875,0.375,1.625,0.4062,1.625,0.375,1.6875,0.4062,1.625,0.4062,1.6875,0.4062,1.6875,0.4062,1.625,0.4375,1.625,0.4062,1.6875,0.4375,1.625,0.4375,1.6875,0.4375,1.6875,0.4375,1.625,0.4688,1.625,0.4375,1.6875,0.4688,1.625,0.4688,1.6875,0.4688,1.6875,0.4688,1.625,0.5,1.625,0.4688,1.6875,0.5,1.625,0.5,1.6875,0.5,1.6875,0.5,1.625,0.5313,1.625,0.5,1.6875,0.5313,1.625,0.5313,1.6875,0.5313,1.6875,0.5313,1.625,0.5625,1.625,0.5313,1.6875,0.5625,1.625,0.5625,1.6875,0.5625,1.6875,0.5625,1.625,0.5938,1.625,0.5625,1.6875,0.5938,1.625,0.5938,1.6875,0.5938,1.6875,0.5938,1.625,0.625,1.625,0.5938,1.6875,0.625,1.625,0.625,1.6875,0.625,1.6875,0.625,1.625,0.6563,1.625,0.625,1.6875,0.6563,1.625,0.6563,1.6875,0.6563,1.6875,0.6563,1.625,0.6875,1.625,0.6563,1.6875,0.6875,1.625,0.6875,1.6875,0.6875,1.6875,0.6875,1.625,0.7188,1.625,0.6875,1.6875,0.7188,1.625,0.7188,1.6875,0.7188,1.6875,0.7188,1.625,0.75,1.625,0.7188,1.6875,0.75,1.625,0.75,1.6875,0.75,1.6875,0.75,1.625,0.7813,1.625,0.75,1.6875,0.7813,1.625,0.7813,1.6875,0.7813,1.6875,0.7813,1.625,0.8125,1.625,0.7813,1.6875,0.8125,1.625,0.8125,1.6875,0.8125,1.6875,0.8125,1.625,0.8438,1.625,0.8125,1.6875,0.8438,1.625,0.8438,1.6875,0.8438,1.6875,0.8438,1.625,0.875,1.625,0.8438,1.6875,0.875,1.625,0.875,1.6875,0.875,1.6875,0.875,1.625,0.9063,1.625,0.875,1.6875,0.9063,1.625,0.9063,1.6875,0.9063,1.6875,0.9063,1.625,0.9375,1.625,0.9063,1.6875,0.9375,1.625,0.9375,1.6875,0.9375,1.6875,0.9375,1.625,0.9688,1.625,0.9375,1.6875,0.9688,1.625,0.9688,1.6875,0.9688,1.6875,0.9688,1.625,1.0,1.625,0.9688,1.6875,1.0,1.625,1.0,1.6875,0.0,1.625,0.0,1.5625,0.0312,1.5625,0.0,1.625,0.0312,1.5625,0.0312,1.625,0.0312,1.625,0.0312,1.5625,0.0625,1.5625,0.0312,1.625,0.0625,1.5625,0.0625,1.625,0.0625,1.625,0.0625,1.5625,0.0938,1.5625,0.0625,1.625,0.0938,1.5625,0.0938,1.625,0.0938,1.625,0.0938,1.5625,0.125,1.5625,0.0938,1.625,0.125,1.5625,0.125,1.625,0.125,1.625,0.125,1.5625,0.1562,1.5625,0.125,1.625,0.1562,1.5625,0.1562,1.625,0.1562,1.625,0.1562,1.5625,0.1875,1.5625,0.1562,1.625,0.1875,1.5625,0.1875,1.625,0.1875,1.625,0.1875,1.5625,0.2187,1.5625,0.1875,1.625,0.2187,1.5625,0.2187,1.625,0.2187,1.625,0.2187,1.5625,0.25,1.5625,0.2187,1.625,0.25,1.5625,0.25,1.625,0.25,1.625,0.25,1.5625,0.2812,1.5625,0.25,1.625,0.2812,1.5625,0.2812,1.625,0.2812,1.625,0.2812,1.5625,0.3125,1.5625,0.2812,1.625,0.3125,1.5625,0.3125,1.625,0.3125,1.625,0.3125,1.5625,0.3437,1.5625,0.3125,1.625,0.3437,1.5625,0.3437,1.625,0.3437,1.625,0.3437,1.5625,0.375,1.5625,0.3437,1.625,0.375,1.5625,0.375,1.625,0.375,1.625,0.375,1.5625,0.4062,1.5625,0.375,1.625,0.4062,1.5625,0.4062,1.625,0.4062,1.625,0.4062,1.5625,0.4375,1.5625,0.4062,1.625,0.4375,1.5625,0.4375,1.625,0.4375,1.625,0.4375,1.5625,0.4688,1.5625,0.4375,1.625,0.4688,1.5625,0.4688,1.625,0.4688,1.625,0.4688,1.5625,0.5,1.5625,0.4688,1.625,0.5,1.5625,0.5,1.625,0.5,1.625,0.5,1.5625,0.5313,1.5625,0.5,1.625,0.5313,1.5625,0.5313,1.625,0.5313,1.625,0.5313,1.5625,0.5625,1.5625,0.5313,1.625,0.5625,1.5625,0.5625,1.625,0.5625,1.625,0.5625,1.5625,0.5938,1.5625,0.5625,1.625,0.5938,1.5625,0.5938,1.625,0.5938,1.625,0.5938,1.5625,0.625,1.5625,0.5938,1.625,0.625,1.5625,0.625,1.625,0.625,1.625,0.625,1.5625,0.6563,1.5625,0.625,1.625,0.6563,1.5625,0.6563,1.625,0.6563,1.625,0.6563,1.5625,0.6875,1.5625,0.6563,1.625,0.6875,1.5625,0.6875,1.625,0.6875,1.625,0.6875,1.5625,0.7188,1.5625,0.6875,1.625,0.7188,1.5625,0.7188,1.625,0.7188,1.625,0.7188,1.5625,0.75,1.5625,0.7188,1.625,0.75,1.5625,0.75,1.625,0.75,1.625,0.75,1.5625,0.7813,1.5625,0.75,1.625,0.7813,1.5625,0.7813,1.625,0.7813,1.625,0.7813,1.5625,0.8125,1.5625,0.7813,1.625,0.8125,1.5625,0.8125,1.625,0.8125,1.625,0.8125,1.5625,0.8438,1.5625,0.8125,1.625,0.8438,1.5625,0.8438,1.625,0.8438,1.625,0.8438,1.5625,0.875,1.5625,0.8438,1.625,0.875,1.5625,0.875,1.625,0.875,1.625,0.875,1.5625,0.9063,1.5625,0.875,1.625,0.9063,1.5625,0.9063,1.625,0.9063,1.625,0.9063,1.5625,0.9375,1.5625,0.9063,1.625,0.9375,1.5625,0.9375,1.625,0.9375,1.625,0.9375,1.5625,0.9688,1.5625,0.9375,1.625,0.9688,1.5625,0.9688,1.625,0.9688,1.625,0.9688,1.5625,1.0,1.5625,0.9688,1.625,1.0,1.5625,1.0,1.625,0.0,1.5625,0.0,1.5,0.0312,1.5,0.0,1.5625,0.0312,1.5,0.0312,1.5625,0.0312,1.5625,0.0312,1.5,0.0625,1.5,0.0312,1.5625,0.0625,1.5,0.0625,1.5625,0.0625,1.5625,0.0625,1.5,0.0938,1.5,0.0625,1.5625,0.0938,1.5,0.0938,1.5625,0.0938,1.5625,0.0938,1.5,0.125,1.5,0.0938,1.5625,0.125,1.5,0.125,1.5625,0.125,1.5625,0.125,1.5,0.1562,1.5,0.125,1.5625,0.1562,1.5,0.1562,1.5625,0.1562,1.5625,0.1562,1.5,0.1875,1.5,0.1562,1.5625,0.1875,1.5,0.1875,1.5625,0.1875,1.5625,0.1875,1.5,0.2187,1.5,0.1875,1.5625,0.2187,1.5,0.2187,1.5625,0.2187,1.5625,0.2187,1.5,0.25,1.5,0.2187,1.5625,0.25,1.5,0.25,1.5625,0.25,1.5625,0.25,1.5,0.2812,1.5,0.25,1.5625,0.2812,1.5,0.2812,1.5625,0.2812,1.5625,0.2812,1.5,0.3125,1.5,0.2812,1.5625,0.3125,1.5,0.3125,1.5625,0.3125,1.5625,0.3125,1.5,0.3437,1.5,0.3125,1.5625,0.3437,1.5,0.3437,1.5625,0.3437,1.5625,0.3437,1.5,0.375,1.5,0.3437,1.5625,0.375,1.5,0.375,1.5625,0.375,1.5625,0.375,1.5,0.4062,1.5,0.375,1.5625,0.4062,1.5,0.4062,1.5625,0.4062,1.5625,0.4062,1.5,0.4375,1.5,0.4062,1.5625,0.4375,1.5,0.4375,1.5625,0.4375,1.5625,0.4375,1.5,0.4688,1.5,0.4375,1.5625,0.4688,1.5,0.4688,1.5625,0.4688,1.5625,0.4688,1.5,0.5,1.5,0.4688,1.5625,0.5,1.5,0.5,1.5625,0.5,1.5625,0.5,1.5,0.5313,1.5,0.5,1.5625,0.5313,1.5,0.5313,1.5625,0.5313,1.5625,0.5313,1.5,0.5625,1.5,0.5313,1.5625,0.5625,1.5,0.5625,1.5625,0.5625,1.5625,0.5625,1.5,0.5938,1.5,0.5625,1.5625,0.5938,1.5,0.5938,1.5625,0.5938,1.5625,0.5938,1.5,0.625,1.5,0.5938,1.5625,0.625,1.5,0.625,1.5625,0.625,1.5625,0.625,1.5,0.6563,1.5,0.625,1.5625,0.6563,1.5,0.6563,1.5625,0.6563,1.5625,0.6563,1.5,0.6875,1.5,0.6563,1.5625,0.6875,1.5,0.6875,1.5625,0.6875,1.5625,0.6875,1.5,0.7188,1.5,0.6875,1.5625,0.7188,1.5,0.7188,1.5625,0.7188,1.5625,0.7188,1.5,0.75,1.5,0.7188,1.5625,0.75,1.5,0.75,1.5625,0.75,1.5625,0.75,1.5,0.7813,1.5,0.75,1.5625,0.7813,1.5,0.7813,1.5625,0.7813,1.5625,0.7813,1.5,0.8125,1.5,0.7813,1.5625,0.8125,1.5,0.8125,1.5625,0.8125,1.5625,0.8125,1.5,0.8438,1.5,0.8125,1.5625,0.8438,1.5,0.8438,1.5625,0.8438,1.5625,0.8438,1.5,0.875,1.5,0.8438,1.5625,0.875,1.5,0.875,1.5625,0.875,1.5625,0.875,1.5,0.9063,1.5,0.875,1.5625,0.9063,1.5,0.9063,1.5625,0.9063,1.5625,0.9063,1.5,0.9375,1.5,0.9063,1.5625,0.9375,1.5,0.9375,1.5625,0.9375,1.5625,0.9375,1.5,0.9688,1.5,0.9375,1.5625,0.9688,1.5,0.9688,1.5625,0.9688,1.5625,0.9688,1.5,1.0,1.5,0.9688,1.5625,1.0,1.5,1.0,1.5625,0.0,1.5,0.0,1.4375,0.0312,1.4375,0.0,1.5,0.0312,1.4375,0.0312,1.5,0.0312,1.5,0.0312,1.4375,0.0625,1.4375,0.0312,1.5,0.0625,1.4375,0.0625,1.5,0.0625,1.5,0.0625,1.4375,0.0938,1.4375,0.0625,1.5,0.0938,1.4375,0.0938,1.5,0.0938,1.5,0.0938,1.4375,0.125,1.4375,0.0938,1.5,0.125,1.4375,0.125,1.5,0.125,1.5,0.125,1.4375,0.1562,1.4375,0.125,1.5,0.1562,1.4375,0.1562,1.5,0.1562,1.5,0.1562,1.4375,0.1875,1.4375,0.1562,1.5,0.1875,1.4375,0.1875,1.5,0.1875,1.5,0.1875,1.4375,0.2187,1.4375,0.1875,1.5,0.2187,1.4375,0.2187,1.5,0.2187,1.5,0.2187,1.4375,0.25,1.4375,0.2187,1.5,0.25,1.4375,0.25,1.5,0.25,1.5,0.25,1.4375,0.2812,1.4375,0.25,1.5,0.2812,1.4375,0.2812,1.5,0.2812,1.5,0.2812,1.4375,0.3125,1.4375,0.2812,1.5,0.3125,1.4375,0.3125,1.5,0.3125,1.5,0.3125,1.4375,0.3437,1.4375,0.3125,1.5,0.3437,1.4375,0.3437,1.5,0.3437,1.5,0.3437,1.4375,0.375,1.4375,0.3437,1.5,0.375,1.4375,0.375,1.5,0.375,1.5,0.375,1.4375,0.4062,1.4375,0.375,1.5,0.4062,1.4375,0.4062,1.5,0.4062,1.5,0.4062,1.4375,0.4375,1.4375,0.4062,1.5,0.4375,1.4375,0.4375,1.5,0.4375,1.5,0.4375,1.4375,0.4688,1.4375,0.4375,1.5,0.4688,1.4375,0.4688,1.5,0.4688,1.5,0.4688,1.4375,0.5,1.4375,0.4688,1.5,0.5,1.4375,0.5,1.5,0.5,1.5,0.5,1.4375,0.5313,1.4375,0.5,1.5,0.5313,1.4375,0.5313,1.5,0.5313,1.5,0.5313,1.4375,0.5625,1.4375,0.5313,1.5,0.5625,1.4375,0.5625,1.5,0.5625,1.5,0.5625,1.4375,0.5938,1.4375,0.5625,1.5,0.5938,1.4375,0.5938,1.5,0.5938,1.5,0.5938,1.4375,0.625,1.4375,0.5938,1.5,0.625,1.4375,0.625,1.5,0.625,1.5,0.625,1.4375,0.6563,1.4375,0.625,1.5,0.6563,1.4375,0.6563,1.5,0.6563,1.5,0.6563,1.4375,0.6875,1.4375,0.6563,1.5,0.6875,1.4375,0.6875,1.5,0.6875,1.5,0.6875,1.4375,0.7188,1.4375,0.6875,1.5,0.7188,1.4375,0.7188,1.5,0.7188,1.5,0.7188,1.4375,0.75,1.4375,0.7188,1.5,0.75,1.4375,0.75,1.5,0.75,1.5,0.75,1.4375,0.7813,1.4375,0.75,1.5,0.7813,1.4375,0.7813,1.5,0.7813,1.5,0.7813,1.4375,0.8125,1.4375,0.7813,1.5,0.8125,1.4375,0.8125,1.5,0.8125,1.5,0.8125,1.4375,0.8438,1.4375,0.8125,1.5,0.8438,1.4375,0.8438,1.5,0.8438,1.5,0.8438,1.4375,0.875,1.4375,0.8438,1.5,0.875,1.4375,0.875,1.5,0.875,1.5,0.875,1.4375,0.9063,1.4375,0.875,1.5,0.9063,1.4375,0.9063,1.5,0.9063,1.5,0.9063,1.4375,0.9375,1.4375,0.9063,1.5,0.9375,1.4375,0.9375,1.5,0.9375,1.5,0.9375,1.4375,0.9688,1.4375,0.9375,1.5,0.9688,1.4375,0.9688,1.5,0.9688,1.5,0.9688,1.4375,1.0,1.4375,0.9688,1.5,1.0,1.4375,1.0,1.5,0.0,1.4375,0.0,1.375,0.0312,1.375,0.0,1.4375,0.0312,1.375,0.0312,1.4375,0.0312,1.4375,0.0312,1.375,0.0625,1.375,0.0312,1.4375,0.0625,1.375,0.0625,1.4375,0.0625,1.4375,0.0625,1.375,0.0938,1.375,0.0625,1.4375,0.0938,1.375,0.0938,1.4375,0.0938,1.4375,0.0938,1.375,0.125,1.375,0.0938,1.4375,0.125,1.375,0.125,1.4375,0.125,1.4375,0.125,1.375,0.1562,1.375,0.125,1.4375,0.1562,1.375,0.1562,1.4375,0.1562,1.4375,0.1562,1.375,0.1875,1.375,0.1562,1.4375,0.1875,1.375,0.1875,1.4375,0.1875,1.4375,0.1875,1.375,0.2187,1.375,0.1875,1.4375,0.2187,1.375,0.2187,1.4375,0.2187,1.4375,0.2187,1.375,0.25,1.375,0.2187,1.4375,0.25,1.375,0.25,1.4375,0.25,1.4375,0.25,1.375,0.2812,1.375,0.25,1.4375,0.2812,1.375,0.2812,1.4375,0.2812,1.4375,0.2812,1.375,0.3125,1.375,0.2812,1.4375,0.3125,1.375,0.3125,1.4375,0.3125,1.4375,0.3125,1.375,0.3437,1.375,0.3125,1.4375,0.3437,1.375,0.3437,1.4375,0.3437,1.4375,0.3437,1.375,0.375,1.375,0.3437,1.4375,0.375,1.375,0.375,1.4375,0.375,1.4375,0.375,1.375,0.4062,1.375,0.375,1.4375,0.4062,1.375,0.4062,1.4375,0.4062,1.4375,0.4062,1.375,0.4375,1.375,0.4062,1.4375,0.4375,1.375,0.4375,1.4375,0.4375,1.4375,0.4375,1.375,0.4688,1.375,0.4375,1.4375,0.4688,1.375,0.4688,1.4375,0.4688,1.4375,0.4688,1.375,0.5,1.375,0.4688,1.4375,0.5,1.375,0.5,1.4375,0.5,1.4375,0.5,1.375,0.5313,1.375,0.5,1.4375,0.5313,1.375,0.5313,1.4375,0.5313,1.4375,0.5313,1.375,0.5625,1.375,0.5313,1.4375,0.5625,1.375,0.5625,1.4375,0.5625,1.4375,0.5625,1.375,0.5938,1.375,0.5625,1.4375,0.5938,1.375,0.5938,1.4375,0.5938,1.4375,0.5938,1.375,0.625,1.375,0.5938,1.4375,0.625,1.375,0.625,1.4375,0.625,1.4375,0.625,1.375,0.6563,1.375,0.625,1.4375,0.6563,1.375,0.6563,1.4375,0.6563,1.4375,0.6563,1.375,0.6875,1.375,0.6563,1.4375,0.6875,1.375,0.6875,1.4375,0.6875,1.4375,0.6875,1.375,0.7188,1.375,0.6875,1.4375,0.7188,1.375,0.7188,1.4375,0.7188,1.4375,0.7188,1.375,0.75,1.375,0.7188,1.4375,0.75,1.375,0.75,1.4375,0.75,1.4375,0.75,1.375,0.7813,1.375,0.75,1.4375,0.7813,1.375,0.7813,1.4375,0.7813,1.4375,0.7813,1.375,0.8125,1.375,0.7813,1.4375,0.8125,1.375,0.8125,1.4375,0.8125,1.4375,0.8125,1.375,0.8438,1.375,0.8125,1.4375,0.8438,1.375,0.8438,1.4375,0.8438,1.4375,0.8438,1.375,0.875,1.375,0.8438,1.4375,0.875,1.375,0.875,1.4375,0.875,1.4375,0.875,1.375,0.9063,1.375,0.875,1.4375,0.9063,1.375,0.9063,1.4375,0.9063,1.4375,0.9063,1.375,0.9375,1.375,0.9063,1.4375,0.9375,1.375,0.9375,1.4375,0.9375,1.4375,0.9375,1.375,0.9688,1.375,0.9375,1.4375,0.9688,1.375,0.9688,1.4375,0.9688,1.4375,0.9688,1.375,1.0,1.375,0.9688,1.4375,1.0,1.375,1.0,1.4375,0.0,1.375,0.0,1.3125,0.0312,1.3125,0.0,1.375,0.0312,1.3125,0.0312,1.375,0.0312,1.375,0.0312,1.3125,0.0625,1.3125,0.0312,1.375,0.0625,1.3125,0.0625,1.375,0.0625,1.375,0.0625,1.3125,0.0938,1.3125,0.0625,1.375,0.0938,1.3125,0.0938,1.375,0.0938,1.375,0.0938,1.3125,0.125,1.3125,0.0938,1.375,0.125,1.3125,0.125,1.375,0.125,1.375,0.125,1.3125,0.1562,1.3125,0.125,1.375,0.1562,1.3125,0.1562,1.375,0.1562,1.375,0.1562,1.3125,0.1875,1.3125,0.1562,1.375,0.1875,1.3125,0.1875,1.375,0.1875,1.375,0.1875,1.3125,0.2187,1.3125,0.1875,1.375,0.2187,1.3125,0.2187,1.375,0.2187,1.375,0.2187,1.3125,0.25,1.3125,0.2187,1.375,0.25,1.3125,0.25,1.375,0.25,1.375,0.25,1.3125,0.2812,1.3125,0.25,1.375,0.2812,1.3125,0.2812,1.375,0.2812,1.375,0.2812,1.3125,0.3125,1.3125,0.2812,1.375,0.3125,1.3125,0.3125,1.375,0.3125,1.375,0.3125,1.3125,0.3437,1.3125,0.3125,1.375,0.3437,1.3125,0.3437,1.375,0.3437,1.375,0.3437,1.3125,0.375,1.3125,0.3437,1.375,0.375,1.3125,0.375,1.375,0.375,1.375,0.375,1.3125,0.4062,1.3125,0.375,1.375,0.4062,1.3125,0.4062,1.375,0.4062,1.375,0.4062,1.3125,0.4375,1.3125,0.4062,1.375,0.4375,1.3125,0.4375,1.375,0.4375,1.375,0.4375,1.3125,0.4688,1.3125,0.4375,1.375,0.4688,1.3125,0.4688,1.375,0.4688,1.375,0.4688,1.3125,0.5,1.3125,0.4688,1.375,0.5,1.3125,0.5,1.375,0.5,1.375,0.5,1.3125,0.5313,1.3125,0.5,1.375,0.5313,1.3125,0.5313,1.375,0.5313,1.375,0.5313,1.3125,0.5625,1.3125,0.5313,1.375,0.5625,1.3125,0.5625,1.375,0.5625,1.375,0.5625,1.3125,0.5938,1.3125,0.5625,1.375,0.5938,1.3125,0.5938,1.375,0.5938,1.375,0.5938,1.3125,0.625,1.3125,0.5938,1.375,0.625,1.3125,0.625,1.375,0.625,1.375,0.625,1.3125,0.6563,1.3125,0.625,1.375,0.6563,1.3125,0.6563,1.375,0.6563,1.375,0.6563,1.3125,0.6875,1.3125,0.6563,1.375,0.6875,1.3125,0.6875,1.375,0.6875,1.375,0.6875,1.3125,0.7188,1.3125,0.6875,1.375,0.7188,1.3125,0.7188,1.375,0.7188,1.375,0.7188,1.3125,0.75,1.3125,0.7188,1.375,0.75,1.3125,0.75,1.375,0.75,1.375,0.75,1.3125,0.7813,1.3125,0.75,1.375,0.7813,1.3125,0.7813,1.375,0.7813,1.375,0.7813,1.3125,0.8125,1.3125,0.7813,1.375,0.8125,1.3125,0.8125,1.375,0.8125,1.375,0.8125,1.3125,0.8438,1.3125,0.8125,1.375,0.8438,1.3125,0.8438,1.375,0.8438,1.375,0.8438,1.3125,0.875,1.3125,0.8438,1.375,0.875,1.3125,0.875,1.375,0.875,1.375,0.875,1.3125,0.9063,1.3125,0.875,1.375,0.9063,1.3125,0.9063,1.375,0.9063,1.375,0.9063,1.3125,0.9375,1.3125,0.9063,1.375,0.9375,1.3125,0.9375,1.375,0.9375,1.375,0.9375,1.3125,0.9688,1.3125,0.9375,1.375,0.9688,1.3125,0.9688,1.375,0.9688,1.375,0.9688,1.3125,1.0,1.3125,0.9688,1.375,1.0,1.3125,1.0,1.375,0.0,1.3125,0.0,1.25,0.0312,1.25,0.0,1.3125,0.0312,1.25,0.0312,1.3125,0.0312,1.3125,0.0312,1.25,0.0625,1.25,0.0312,1.3125,0.0625,1.25,0.0625,1.3125,0.0625,1.3125,0.0625,1.25,0.0938,1.25,0.0625,1.3125,0.0938,1.25,0.0938,1.3125,0.0938,1.3125,0.0938,1.25,0.125,1.25,0.0938,1.3125,0.125,1.25,0.125,1.3125,0.125,1.3125,0.125,1.25,0.1562,1.25,0.125,1.3125,0.1562,1.25,0.1562,1.3125,0.1562,1.3125,0.1562,1.25,0.1875,1.25,0.1562,1.3125,0.1875,1.25,0.1875,1.3125,0.1875,1.3125,0.1875,1.25,0.2187,1.25,0.1875,1.3125,0.2187,1.25,0.2187,1.3125,0.2187,1.3125,0.2187,1.25,0.25,1.25,0.2187,1.3125,0.25,1.25,0.25,1.3125,0.25,1.3125,0.25,1.25,0.2812,1.25,0.25,1.3125,0.2812,1.25,0.2812,1.3125,0.2812,1.3125,0.2812,1.25,0.3125,1.25,0.2812,1.3125,0.3125,1.25,0.3125,1.3125,0.3125,1.3125,0.3125,1.25,0.3437,1.25,0.3125,1.3125,0.3437,1.25,0.3437,1.3125,0.3437,1.3125,0.3437,1.25,0.375,1.25,0.3437,1.3125,0.375,1.25,0.375,1.3125,0.375,1.3125,0.375,1.25,0.4062,1.25,0.375,1.3125,0.4062,1.25,0.4062,1.3125,0.4062,1.3125,0.4062,1.25,0.4375,1.25,0.4062,1.3125,0.4375,1.25,0.4375,1.3125,0.4375,1.3125,0.4375,1.25,0.4688,1.25,0.4375,1.3125,0.4688,1.25,0.4688,1.3125,0.4688,1.3125,0.4688,1.25,0.5,1.25,0.4688,1.3125,0.5,1.25,0.5,1.3125,0.5,1.3125,0.5,1.25,0.5313,1.25,0.5,1.3125,0.5313,1.25,0.5313,1.3125,0.5313,1.3125,0.5313,1.25,0.5625,1.25,0.5313,1.3125,0.5625,1.25,0.5625,1.3125,0.5625,1.3125,0.5625,1.25,0.5938,1.25,0.5625,1.3125,0.5938,1.25,0.5938,1.3125,0.5938,1.3125,0.5938,1.25,0.625,1.25,0.5938,1.3125,0.625,1.25,0.625,1.3125,0.625,1.3125,0.625,1.25,0.6563,1.25,0.625,1.3125,0.6563,1.25,0.6563,1.3125,0.6563,1.3125,0.6563,1.25,0.6875,1.25,0.6563,1.3125,0.6875,1.25,0.6875,1.3125,0.6875,1.3125,0.6875,1.25,0.7188,1.25,0.6875,1.3125,0.7188,1.25,0.7188,1.3125,0.7188,1.3125,0.7188,1.25,0.75,1.25,0.7188,1.3125,0.75,1.25,0.75,1.3125,0.75,1.3125,0.75,1.25,0.7813,1.25,0.75,1.3125,0.7813,1.25,0.7813,1.3125,0.7813,1.3125,0.7813,1.25,0.8125,1.25,0.7813,1.3125,0.8125,1.25,0.8125,1.3125,0.8125,1.3125,0.8125,1.25,0.8438,1.25,0.8125,1.3125,0.8438,1.25,0.8438,1.3125,0.8438,1.3125,0.8438,1.25,0.875,1.25,0.8438,1.3125,0.875,1.25,0.875,1.3125,0.875,1.3125,0.875,1.25,0.9063,1.25,0.875,1.3125,0.9063,1.25,0.9063,1.3125,0.9063,1.3125,0.9063,1.25,0.9375,1.25,0.9063,1.3125,0.9375,1.25,0.9375,1.3125,0.9375,1.3125,0.9375,1.25,0.9688,1.25,0.9375,1.3125,0.9688,1.25,0.9688,1.3125,0.9688,1.3125,0.9688,1.25,1.0,1.25,0.9688,1.3125,1.0,1.25,1.0,1.3125,0.0,1.25,0.0,1.1875,0.0312,1.1875,0.0,1.25,0.0312,1.1875,0.0312,1.25,0.0312,1.25,0.0312,1.1875,0.0625,1.1875,0.0312,1.25,0.0625,1.1875,0.0625,1.25,0.0625,1.25,0.0625,1.1875,0.0938,1.1875,0.0625,1.25,0.0938,1.1875,0.0938,1.25,0.0938,1.25,0.0938,1.1875,0.125,1.1875,0.0938,1.25,0.125,1.1875,0.125,1.25,0.125,1.25,0.125,1.1875,0.1562,1.1875,0.125,1.25,0.1562,1.1875,0.1562,1.25,0.1562,1.25,0.1562,1.1875,0.1875,1.1875,0.1562,1.25,0.1875,1.1875,0.1875,1.25,0.1875,1.25,0.1875,1.1875,0.2187,1.1875,0.1875,1.25,0.2187,1.1875,0.2187,1.25,0.2187,1.25,0.2187,1.1875,0.25,1.1875,0.2187,1.25,0.25,1.1875,0.25,1.25,0.25,1.25,0.25,1.1875,0.2812,1.1875,0.25,1.25,0.2812,1.1875,0.2812,1.25,0.2812,1.25,0.2812,1.1875,0.3125,1.1875,0.2812,1.25,0.3125,1.1875,0.3125,1.25,0.3125,1.25,0.3125,1.1875,0.3437,1.1875,0.3125,1.25,0.3437,1.1875,0.3437,1.25,0.3437,1.25,0.3437,1.1875,0.375,1.1875,0.3437,1.25,0.375,1.1875,0.375,1.25,0.375,1.25,0.375,1.1875,0.4062,1.1875,0.375,1.25,0.4062,1.1875,0.4062,1.25,0.4062,1.25,0.4062,1.1875,0.4375,1.1875,0.4062,1.25,0.4375,1.1875,0.4375,1.25,0.4375,1.25,0.4375,1.1875,0.4688,1.1875,0.4375,1.25,0.4688,1.1875,0.4688,1.25,0.4688,1.25,0.4688,1.1875,0.5,1.1875,0.4688,1.25,0.5,1.1875,0.5,1.25,0.5,1.25,0.5,1.1875,0.5313,1.1875,0.5,1.25,0.5313,1.1875,0.5313,1.25,0.5313,1.25,0.5313,1.1875,0.5625,1.1875,0.5313,1.25,0.5625,1.1875,0.5625,1.25,0.5625,1.25,0.5625,1.1875,0.5938,1.1875,0.5625,1.25,0.5938,1.1875,0.5938,1.25,0.5938,1.25,0.5938,1.1875,0.625,1.1875,0.5938,1.25,0.625,1.1875,0.625,1.25,0.625,1.25,0.625,1.1875,0.6563,1.1875,0.625,1.25,0.6563,1.1875,0.6563,1.25,0.6563,1.25,0.6563,1.1875,0.6875,1.1875,0.6563,1.25,0.6875,1.1875,0.6875,1.25,0.6875,1.25,0.6875,1.1875,0.7188,1.1875,0.6875,1.25,0.7188,1.1875,0.7188,1.25,0.7188,1.25,0.7188,1.1875,0.75,1.1875,0.7188,1.25,0.75,1.1875,0.75,1.25,0.75,1.25,0.75,1.1875,0.7813,1.1875,0.75,1.25,0.7813,1.1875,0.7813,1.25,0.7813,1.25,0.7813,1.1875,0.8125,1.1875,0.7813,1.25,0.8125,1.1875,0.8125,1.25,0.8125,1.25,0.8125,1.1875,0.8438,1.1875,0.8125,1.25,0.8438,1.1875,0.8438,1.25,0.8438,1.25,0.8438,1.1875,0.875,1.1875,0.8438,1.25,0.875,1.1875,0.875,1.25,0.875,1.25,0.875,1.1875,0.9063,1.1875,0.875,1.25,0.9063,1.1875,0.9063,1.25,0.9063,1.25,0.9063,1.1875,0.9375,1.1875,0.9063,1.25,0.9375,1.1875,0.9375,1.25,0.9375,1.25,0.9375,1.1875,0.9688,1.1875,0.9375,1.25,0.9688,1.1875,0.9688,1.25,0.9688,1.25,0.9688,1.1875,1.0,1.1875,0.9688,1.25,1.0,1.1875,1.0,1.25,0.0,1.1875,0.0,1.125,0.0312,1.125,0.0,1.1875,0.0312,1.125,0.0312,1.1875,0.0312,1.1875,0.0312,1.125,0.0625,1.125,0.0312,1.1875,0.0625,1.125,0.0625,1.1875,0.0625,1.1875,0.0625,1.125,0.0938,1.125,0.0625,1.1875,0.0938,1.125,0.0938,1.1875,0.0938,1.1875,0.0938,1.125,0.125,1.125,0.0938,1.1875,0.125,1.125,0.125,1.1875,0.125,1.1875,0.125,1.125,0.1562,1.125,0.125,1.1875,0.1562,1.125,0.1562,1.1875,0.1562,1.1875,0.1562,1.125,0.1875,1.125,0.1562,1.1875,0.1875,1.125,0.1875,1.1875,0.1875,1.1875,0.1875,1.125,0.2187,1.125,0.1875,1.1875,0.2187,1.125,0.2187,1.1875,0.2187,1.1875,0.2187,1.125,0.25,1.125,0.2187,1.1875,0.25,1.125,0.25,1.1875,0.25,1.1875,0.25,1.125,0.2812,1.125,0.25,1.1875,0.2812,1.125,0.2812,1.1875,0.2812,1.1875,0.2812,1.125,0.3125,1.125,0.2812,1.1875,0.3125,1.125,0.3125,1.1875,0.3125,1.1875,0.3125,1.125,0.3437,1.125,0.3125,1.1875,0.3437,1.125,0.3437,1.1875,0.3437,1.1875,0.3437,1.125,0.375,1.125,0.3437,1.1875,0.375,1.125,0.375,1.1875,0.375,1.1875,0.375,1.125,0.4062,1.125,0.375,1.1875,0.4062,1.125,0.4062,1.1875,0.4062,1.1875,0.4062,1.125,0.4375,1.125,0.4062,1.1875,0.4375,1.125,0.4375,1.1875,0.4375,1.1875,0.4375,1.125,0.4688,1.125,0.4375,1.1875,0.4688,1.125,0.4688,1.1875,0.4688,1.1875,0.4688,1.125,0.5,1.125,0.4688,1.1875,0.5,1.125,0.5,1.1875,0.5,1.1875,0.5,1.125,0.5313,1.125,0.5,1.1875,0.5313,1.125,0.5313,1.1875,0.5313,1.1875,0.5313,1.125,0.5625,1.125,0.5313,1.1875,0.5625,1.125,0.5625,1.1875,0.5625,1.1875,0.5625,1.125,0.5938,1.125,0.5625,1.1875,0.5938,1.125,0.5938,1.1875,0.5938,1.1875,0.5938,1.125,0.625,1.125,0.5938,1.1875,0.625,1.125,0.625,1.1875,0.625,1.1875,0.625,1.125,0.6563,1.125,0.625,1.1875,0.6563,1.125,0.6563,1.1875,0.6563,1.1875,0.6563,1.125,0.6875,1.125,0.6563,1.1875,0.6875,1.125,0.6875,1.1875,0.6875,1.1875,0.6875,1.125,0.7188,1.125,0.6875,1.1875,0.7188,1.125,0.7188,1.1875,0.7188,1.1875,0.7188,1.125,0.75,1.125,0.7188,1.1875,0.75,1.125,0.75,1.1875,0.75,1.1875,0.75,1.125,0.7813,1.125,0.75,1.1875,0.7813,1.125,0.7813,1.1875,0.7813,1.1875,0.7813,1.125,0.8125,1.125,0.7813,1.1875,0.8125,1.125,0.8125,1.1875,0.8125,1.1875,0.8125,1.125,0.8438,1.125,0.8125,1.1875,0.8438,1.125,0.8438,1.1875,0.8438,1.1875,0.8438,1.125,0.875,1.125,0.8438,1.1875,0.875,1.125,0.875,1.1875,0.875,1.1875,0.875,1.125,0.9063,1.125,0.875,1.1875,0.9063,1.125,0.9063,1.1875,0.9063,1.1875,0.9063,1.125,0.9375,1.125,0.9063,1.1875,0.9375,1.125,0.9375,1.1875,0.9375,1.1875,0.9375,1.125,0.9688,1.125,0.9375,1.1875,0.9688,1.125,0.9688,1.1875,0.9688,1.1875,0.9688,1.125,1.0,1.125,0.9688,1.1875,1.0,1.125,1.0,1.1875,0.0,1.125,0.0,1.0625,0.0312,1.0625,0.0,1.125,0.0312,1.0625,0.0312,1.125,0.0312,1.125,0.0312,1.0625,0.0625,1.0625,0.0312,1.125,0.0625,1.0625,0.0625,1.125,0.0625,1.125,0.0625,1.0625,0.0938,1.0625,0.0625,1.125,0.0938,1.0625,0.0938,1.125,0.0938,1.125,0.0938,1.0625,0.125,1.0625,0.0938,1.125,0.125,1.0625,0.125,1.125,0.125,1.125,0.125,1.0625,0.1562,1.0625,0.125,1.125,0.1562,1.0625,0.1562,1.125,0.1562,1.125,0.1562,1.0625,0.1875,1.0625,0.1562,1.125,0.1875,1.0625,0.1875,1.125,0.1875,1.125,0.1875,1.0625,0.2187,1.0625,0.1875,1.125,0.2187,1.0625,0.2187,1.125,0.2187,1.125,0.2187,1.0625,0.25,1.0625,0.2187,1.125,0.25,1.0625,0.25,1.125,0.25,1.125,0.25,1.0625,0.2812,1.0625,0.25,1.125,0.2812,1.0625,0.2812,1.125,0.2812,1.125,0.2812,1.0625,0.3125,1.0625,0.2812,1.125,0.3125,1.0625,0.3125,1.125,0.3125,1.125,0.3125,1.0625,0.3437,1.0625,0.3125,1.125,0.3437,1.0625,0.3437,1.125,0.3437,1.125,0.3437,1.0625,0.375,1.0625,0.3437,1.125,0.375,1.0625,0.375,1.125,0.375,1.125,0.375,1.0625,0.4062,1.0625,0.375,1.125,0.4062,1.0625,0.4062,1.125,0.4062,1.125,0.4062,1.0625,0.4375,1.0625,0.4062,1.125,0.4375,1.0625,0.4375,1.125,0.4375,1.125,0.4375,1.0625,0.4688,1.0625,0.4375,1.125,0.4688,1.0625,0.4688,1.125,0.4688,1.125,0.4688,1.0625,0.5,1.0625,0.4688,1.125,0.5,1.0625,0.5,1.125,0.5,1.125,0.5,1.0625,0.5313,1.0625,0.5,1.125,0.5313,1.0625,0.5313,1.125,0.5313,1.125,0.5313,1.0625,0.5625,1.0625,0.5313,1.125,0.5625,1.0625,0.5625,1.125,0.5625,1.125,0.5625,1.0625,0.5938,1.0625,0.5625,1.125,0.5938,1.0625,0.5938,1.125,0.5938,1.125,0.5938,1.0625,0.625,1.0625,0.5938,1.125,0.625,1.0625,0.625,1.125,0.625,1.125,0.625,1.0625,0.6563,1.0625,0.625,1.125,0.6563,1.0625,0.6563,1.125,0.6563,1.125,0.6563,1.0625,0.6875,1.0625,0.6563,1.125,0.6875,1.0625,0.6875,1.125,0.6875,1.125,0.6875,1.0625,0.7188,1.0625,0.6875,1.125,0.7188,1.0625,0.7188,1.125,0.7188,1.125,0.7188,1.0625,0.75,1.0625,0.7188,1.125,0.75,1.0625,0.75,1.125,0.75,1.125,0.75,1.0625,0.7813,1.0625,0.75,1.125,0.7813,1.0625,0.7813,1.125,0.7813,1.125,0.7813,1.0625,0.8125,1.0625,0.7813,1.125,0.8125,1.0625,0.8125,1.125,0.8125,1.125,0.8125,1.0625,0.8438,1.0625,0.8125,1.125,0.8438,1.0625,0.8438,1.125,0.8438,1.125,0.8438,1.0625,0.875,1.0625,0.8438,1.125,0.875,1.0625,0.875,1.125,0.875,1.125,0.875,1.0625,0.9063,1.0625,0.875,1.125,0.9063,1.0625,0.9063,1.125,0.9063,1.125,0.9063,1.0625,0.9375,1.0625,0.9063,1.125,0.9375,1.0625,0.9375,1.125,0.9375,1.125,0.9375,1.0625,0.9688,1.0625,0.9375,1.125,0.9688,1.0625,0.9688,1.125,0.9688,1.125,0.9688,1.0625,1.0,1.0625,0.9688,1.125,1.0,1.0625,1.0,1.125,0.0,1.0,0.0312,1.0625,0.0,1.0625,0.0312,1.0,0.0625,1.0625,0.0312,1.0625,0.0625,1.0,0.0938,1.0625,0.0625,1.0625,0.0938,1.0,0.125,1.0625,0.0938,1.0625,0.125,1.0,0.1562,1.0625,0.125,1.0625,0.1562,1.0,0.1875,1.0625,0.1562,1.0625,0.1875,1.0,0.2187,1.0625,0.1875,1.0625,0.2187,1.0,0.25,1.0625,0.2187,1.0625,0.25,1.0,0.2812,1.0625,0.25,1.0625,0.2812,1.0,0.3125,1.0625,0.2812,1.0625,0.3125,1.0,0.3437,1.0625,0.3125,1.0625,0.3437,1.0,0.375,1.0625,0.3437,1.0625,0.375,1.0,0.4062,1.0625,0.375,1.0625,0.4062,1.0,0.4375,1.0625,0.4062,1.0625,0.4375,1.0,0.4688,1.0625,0.4375,1.0625,0.4688,1.0,0.5,1.0625,0.4688,1.0625,0.5,1.0,0.5313,1.0625,0.5,1.0625,0.5313,1.0,0.5625,1.0625,0.5313,1.0625,0.5625,1.0,0.5938,1.0625,0.5625,1.0625,0.5938,1.0,0.625,1.0625,0.5938,1.0625,0.625,1.0,0.6563,1.0625,0.625,1.0625,0.6563,1.0,0.6875,1.0625,0.6563,1.0625,0.6875,1.0,0.7188,1.0625,0.6875,1.0625,0.7188,1.0,0.75,1.0625,0.7188,1.0625,0.75,1.0,0.7813,1.0625,0.75,1.0625,0.7813,1.0,0.8125,1.0625,0.7813,1.0625,0.8125,1.0,0.8438,1.0625,0.8125,1.0625,0.8438,1.0,0.875,1.0625,0.8438,1.0625,0.875,1.0,0.9063,1.0625,0.875,1.0625,0.9063,1.0,0.9375,1.0625,0.9063,1.0625,0.9375,1.0,0.9688,1.0625,0.9375,1.0625,0.9688,1.0,1.0,1.0625,0.9688,1.0625],"uvs2":null,"colors":null,"hasVertexAlpha":false,"matricesIndices":null,"matricesWeights":null,"matricesIndicesExtra":null,"matricesWeightsExtra":null,"indices":[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,1984,1985,1986,1987,1988,1989,1990,1991,1992,1993,1994,1995,1996,1997,1998,1999,2000,2001,2002,2003,2004,2005,2006,2007,2008,2009,2010,2011,2012,2013,2014,2015,2016,2017,2018,2019,2020,2021,2022,2023,2024,2025,2026,2027,2028,2029,2030,2031,2032,2033,2034,2035,2036,2037,2038,2039,2040,2041,2042,2043,2044,2045,2046,2047,2048,2049,2050,2051,2052,2053,2054,2055,2056,2057,2058,2059,2060,2061,2062,2063,2064,2065,2066,2067,2068,2069,2070,2071,2072,2073,2074,2075,2076,2077,2078,2079,2080,2081,2082,2083,2084,2085,2086,2087,2088,2089,2090,2091,2092,2093,2094,2095,2096,2097,2098,2099,2100,2101,2102,2103,2104,2105,2106,2107,2108,2109,2110,2111,2112,2113,2114,2115,2116,2117,2118,2119,2120,2121,2122,2123,2124,2125,2126,2127,2128,2129,2130,2131,2132,2133,2134,2135,2136,2137,2138,2139,2140,2141,2142,2143,2144,2145,2146,2147,2148,2149,2150,2151,2152,2153,2154,2155,2156,2157,2158,2159,2160,2161,2162,2163,2164,2165,2166,2167,2168,2169,2170,2171,2172,2173,2174,2175,2176,2177,2178,2179,2180,2181,2182,2183,2184,2185,2186,2187,2188,2189,2190,2191,2192,2193,2194,2195,2196,2197,2198,2199,2200,2201,2202,2203,2204,2205,2206,2207,2208,2209,2210,2211,2212,2213,2214,2215,2216,2217,2218,2219,2220,2221,2222,2223,2224,2225,2226,2227,2228,2229,2230,2231,2232,2233,2234,2235,2236,2237,2238,2239,2240,2241,2242,2243,2244,2245,2246,2247,2248,2249,2250,2251,2252,2253,2254,2255,2256,2257,2258,2259,2260,2261,2262,2263,2264,2265,2266,2267,2268,2269,2270,2271,2272,2273,2274,2275,2276,2277,2278,2279,2280,2281,2282,2283,2284,2285,2286,2287,2288,2289,2290,2291,2292,2293,2294,2295,2296,2297,2298,2299,2300,2301,2302,2303,2304,2305,2306,2307,2308,2309,2310,2311,2312,2313,2314,2315,2316,2317,2318,2319,2320,2321,2322,2323,2324,2325,2326,2327,2328,2329,2330,2331,2332,2333,2334,2335,2336,2337,2338,2339,2340,2341,2342,2343,2344,2345,2346,2347,2348,2349,2350,2351,2352,2353,2354,2355,2356,2357,2358,2359,2360,2361,2362,2363,2364,2365,2366,2367,2368,2369,2370,2371,2372,2373,2374,2375,2376,2377,2378,2379,2380,2381,2382,2383,2384,2385,2386,2387,2388,2389,2390,2391,2392,2393,2394,2395,2396,2397,2398,2399,2400,2401,2402,2403,2404,2405,2406,2407,2408,2409,2410,2411,2412,2413,2414,2415,2416,2417,2418,2419,2420,2421,2422,2423,2424,2425,2426,2427,2428,2429,2430,2431,2432,2433,2434,2435,2436,2437,2438,2439,2440,2441,2442,2443,2444,2445,2446,2447,2448,2449,2450,2451,2452,2453,2454,2455,2456,2457,2458,2459,2460,2461,2462,2463,2464,2465,2466,2467,2468,2469,2470,2471,2472,2473,2474,2475,2476,2477,2478,2479,2480,2481,2482,2483,2484,2485,2486,2487,2488,2489,2490,2491,2492,2493,2494,2495,2496,2497,2498,2499,2500,2501,2502,2503,2504,2505,2506,2507,2508,2509,2510,2511,2512,2513,2514,2515,2516,2517,2518,2519,2520,2521,2522,2523,2524,2525,2526,2527,2528,2529,2530,2531,2532,2533,2534,2535,2536,2537,2538,2539,2540,2541,2542,2543,2544,2545,2546,2547,2548,2549,2550,2551,2552,2553,2554,2555,2556,2557,2558,2559,2560,2561,2562,2563,2564,2565,2566,2567,2568,2569,2570,2571,2572,2573,2574,2575,2576,2577,2578,2579,2580,2581,2582,2583,2584,2585,2586,2587,2588,2589,2590,2591,2592,2593,2594,2595,2596,2597,2598,2599,2600,2601,2602,2603,2604,2605,2606,2607,2608,2609,2610,2611,2612,2613,2614,2615,2616,2617,2618,2619,2620,2621,2622,2623,2624,2625,2626,2627,2628,2629,2630,2631,2632,2633,2634,2635,2636,2637,2638,2639,2640,2641,2642,2643,2644,2645,2646,2647,2648,2649,2650,2651,2652,2653,2654,2655,2656,2657,2658,2659,2660,2661,2662,2663,2664,2665,2666,2667,2668,2669,2670,2671,2672,2673,2674,2675,2676,2677,2678,2679,2680,2681,2682,2683,2684,2685,2686,2687,2688,2689,2690,2691,2692,2693,2694,2695,2696,2697,2698,2699,2700,2701,2702,2703,2704,2705,2706,2707,2708,2709,2710,2711,2712,2713,2714,2715,2716,2717,2718,2719,2720,2721,2722,2723,2724,2725,2726,2727,2728,2729,2730,2731,2732,2733,2734,2735,2736,2737,2738,2739,2740,2741,2742,2743,2744,2745,2746,2747,2748,2749,2750,2751,2752,2753,2754,2755,2756,2757,2758,2759,2760,2761,2762,2763,2764,2765,2766,2767,2768,2769,2770,2771,2772,2773,2774,2775,2776,2777,2778,2779,2780,2781,2782,2783,2784,2785,2786,2787,2788,2789,2790,2791,2792,2793,2794,2795,2796,2797,2798,2799,2800,2801,2802,2803,2804,2805,2806,2807,2808,2809,2810,2811,2812,2813,2814,2815,2816,2817,2818,2819,2820,2821,2822,2823,2824,2825,2826,2827,2828,2829,2830,2831,2832,2833,2834,2835,2836,2837,2838,2839,2840,2841,2842,2843,2844,2845,2846,2847,2848,2849,2850,2851,2852,2853,2854,2855,2856,2857,2858,2859,2860,2861,2862,2863,2864,2865,2866,2867,2868,2869,2870,2871,2872,2873,2874,2875,2876,2877,2878,2879],"receiveShadows":true,"infiniteDistance":false,"billboardMode":0,"visibility":1.0,"subMeshes":[{"materialIndex":0,"verticesStart":0,"verticesCount":2880,"indexStart":0,"indexCount":2880}],"instances":null,"skeletonId":-1,"numBoneInfluencers":4,"applyFog":true,"lodMeshIds":null,"lodDistances":null,"lodCoverages":null,"rotation":null,"scaling":[1.0,1.0,1.0],"rotationQuaternion":[0.0,0.0,0.0,1.0],"actions":null,"checkCollisions":false,"pickable":false,"showBoundingBox":false,"showSubMeshesBoundingBox":false,"alphaIndex":1000,"physicsImpostor":0,"physicsMass":0.0,"physicsFriction":0.0,"physicsRestitution":0.0,"name":"StandardSurfaceMeshMaxLight_2","id":"646c5dd0-cc1d-4aea-8140-c7dab7c81b18","parentId":null,"position":[6.0,0.0,3.0],"animations":[],"autoAnimate":true,"autoAnimateFrom":0,"autoAnimateTo":100,"autoAnimateLoop":true,"metadata":null}],"sounds":[],"materials":[{"customType":"BABYLON.StandardMaterial","ambient":[1.0,0.0,0.0],"diffuse":[1.0,0.0,0.0],"specular":[0.0,0.0,0.0],"emissive":[0.0,0.0,0.0],"specularPower":25.6,"diffuseTexture":null,"diffuseFresnelParameters":null,"ambientTexture":null,"opacityTexture":null,"opacityFresnelParameters":null,"reflectionTexture":null,"reflectionFresnelParameters":null,"emissiveTexture":null,"lightmapTexture":null,"useLightmapAsShadowmap":false,"emissiveFresnelParameters":null,"specularTexture":null,"bumpTexture":null,"useSpecularOverAlpha":true,"disableLighting":false,"useEmissiveAsIllumination":false,"linkEmissiveWithDiffuse":true,"twoSidedLighting":false,"useGlossinessFromSpecularMapAlpha":false,"name":"StandardMaterialMaxLight_1","id":"814decf0-a4ea-454e-a404-277528478ef5","backFaceCulling":true,"wireframe":false,"alpha":1.0,"alphaMode":2,"maxSimultaneousLights":1,"metadata":{}},{"customType":"BABYLON.PBRMetallicRoughnessMaterial","baseColor":[0.0,1.0,0.0],"baseTexture":null,"metallic":0.0,"roughness":0.0,"metallicRoughnessTexture":null,"disableLighting":false,"invertNormalMapX":false,"invertNormalMapY":false,"normalTexture":null,"emissive":[0.0,0.0,0.0],"emissiveTexture":null,"occlusionStrength":1.0,"occlusionTexture":null,"transparencyMode":0,"doubleSided":false,"clearCoat":{"isEnabled":false,"intensity":1.0,"roughness":0.0,"indexOfRefraction":1.5,"texture":null,"bumpTexture":null,"isTintEnabled":false,"tintColor":[1.0,1.0,1.0],"tintThickness":1.0,"tintTexture":null},"name":"PhysicalMaterialMaxLight_1","id":"e8d366dc-9a25-4d46-80f2-60a95ec88505","backFaceCulling":true,"wireframe":false,"alpha":1.0,"alphaMode":2,"maxSimultaneousLights":1,"metadata":{}},{"customType":"BABYLON.PBRMetallicRoughnessMaterial","baseColor":[0.0,0.0,0.8],"baseTexture":null,"metallic":0.0,"roughness":0.2,"metallicRoughnessTexture":null,"disableLighting":false,"invertNormalMapX":false,"invertNormalMapY":false,"normalTexture":null,"emissive":[0.0,0.0,0.0],"emissiveTexture":null,"occlusionStrength":1.0,"occlusionTexture":null,"transparencyMode":0,"doubleSided":false,"clearCoat":{"isEnabled":false,"intensity":1.0,"roughness":0.0,"indexOfRefraction":1.5,"texture":null,"bumpTexture":null,"isTintEnabled":false,"tintColor":[1.0,1.0,1.0],"tintThickness":1.0,"tintTexture":null},"name":"StandardSurfaceMaterialMaxLight_1","id":"4a44b26e-4bbc-438e-8e5d-86c3e1a2108c","backFaceCulling":true,"wireframe":false,"alpha":1.0,"alphaMode":2,"maxSimultaneousLights":1,"metadata":{}},{"customType":"BABYLON.StandardMaterial","ambient":[1.0,0.0,0.0],"diffuse":[1.0,0.0,0.0],"specular":[0.0,0.0,0.0],"emissive":[0.0,0.0,0.0],"specularPower":25.6,"diffuseTexture":null,"diffuseFresnelParameters":null,"ambientTexture":null,"opacityTexture":null,"opacityFresnelParameters":null,"reflectionTexture":null,"reflectionFresnelParameters":null,"emissiveTexture":null,"lightmapTexture":null,"useLightmapAsShadowmap":false,"emissiveFresnelParameters":null,"specularTexture":null,"bumpTexture":null,"useSpecularOverAlpha":true,"disableLighting":false,"useEmissiveAsIllumination":false,"linkEmissiveWithDiffuse":true,"twoSidedLighting":false,"useGlossinessFromSpecularMapAlpha":false,"name":"StandardMaterialMaxLight_2","id":"80e773a3-0b02-41a1-bd0f-4925d4fad2db","backFaceCulling":true,"wireframe":false,"alpha":1.0,"alphaMode":2,"maxSimultaneousLights":2,"metadata":{}},{"customType":"BABYLON.PBRMetallicRoughnessMaterial","baseColor":[0.0,1.0,0.0],"baseTexture":null,"metallic":0.0,"roughness":0.0,"metallicRoughnessTexture":null,"disableLighting":false,"invertNormalMapX":false,"invertNormalMapY":false,"normalTexture":null,"emissive":[0.0,0.0,0.0],"emissiveTexture":null,"occlusionStrength":1.0,"occlusionTexture":null,"transparencyMode":0,"doubleSided":false,"clearCoat":{"isEnabled":false,"intensity":1.0,"roughness":0.0,"indexOfRefraction":1.5,"texture":null,"bumpTexture":null,"isTintEnabled":false,"tintColor":[1.0,1.0,1.0],"tintThickness":1.0,"tintTexture":null},"name":"PhysicalMaterialMaxLight_2","id":"fee2e8cb-6f81-4190-b291-d2593582dff5","backFaceCulling":true,"wireframe":false,"alpha":1.0,"alphaMode":2,"maxSimultaneousLights":2,"metadata":{}},{"customType":"BABYLON.PBRMetallicRoughnessMaterial","baseColor":[0.0,0.0,0.8],"baseTexture":null,"metallic":0.0,"roughness":0.2,"metallicRoughnessTexture":null,"disableLighting":false,"invertNormalMapX":false,"invertNormalMapY":false,"normalTexture":null,"emissive":[0.0,0.0,0.0],"emissiveTexture":null,"occlusionStrength":1.0,"occlusionTexture":null,"transparencyMode":0,"doubleSided":false,"clearCoat":{"isEnabled":false,"intensity":1.0,"roughness":0.0,"indexOfRefraction":1.5,"texture":null,"bumpTexture":null,"isTintEnabled":false,"tintColor":[1.0,1.0,1.0],"tintThickness":1.0,"tintTexture":null},"name":"StandardSurfaceMaterialMaxLight_2","id":"7b66b657-d542-469e-8588-6bc54be18a6c","backFaceCulling":true,"wireframe":false,"alpha":1.0,"alphaMode":2,"maxSimultaneousLights":2,"metadata":{}}],"multiMaterials":[],"particleSystems":null,"lensFlareSystems":null,"shadowGenerators":[],"skeletons":[],"actions":null,"metadata":null,"workerCollisions":false}
\ No newline at end of file
diff --git a/3ds Max/Samples/babylon/BabylonMaterialAttributes/TransparencyMode/Blend/00204.png b/3ds Max/Samples/babylon/BabylonMaterialAttributes/TransparencyMode/Blend/00204.png
new file mode 100644
index 00000000..91919912
Binary files /dev/null and b/3ds Max/Samples/babylon/BabylonMaterialAttributes/TransparencyMode/Blend/00204.png differ
diff --git a/3ds Max/Samples/babylon/BabylonMaterialAttributes/TransparencyMode/Blend/02550.png b/3ds Max/Samples/babylon/BabylonMaterialAttributes/TransparencyMode/Blend/02550.png
new file mode 100644
index 00000000..9a946ab8
Binary files /dev/null and b/3ds Max/Samples/babylon/BabylonMaterialAttributes/TransparencyMode/Blend/02550.png differ
diff --git a/3ds Max/Samples/babylon/BabylonMaterialAttributes/TransparencyMode/Blend/Blend.PhysicalMesh.311381f0-8487-4fc5-89fa-7d01dfda5e2f.babylonbinarymeshdata b/3ds Max/Samples/babylon/BabylonMaterialAttributes/TransparencyMode/Blend/Blend.PhysicalMesh.311381f0-8487-4fc5-89fa-7d01dfda5e2f.babylonbinarymeshdata
new file mode 100644
index 00000000..e862fd1a
Binary files /dev/null and b/3ds Max/Samples/babylon/BabylonMaterialAttributes/TransparencyMode/Blend/Blend.PhysicalMesh.311381f0-8487-4fc5-89fa-7d01dfda5e2f.babylonbinarymeshdata differ
diff --git a/3ds Max/Samples/babylon/BabylonMaterialAttributes/TransparencyMode/Blend/Blend.StandardMesh.113f2dbc-dce1-4faa-be71-35277504433b.babylonbinarymeshdata b/3ds Max/Samples/babylon/BabylonMaterialAttributes/TransparencyMode/Blend/Blend.StandardMesh.113f2dbc-dce1-4faa-be71-35277504433b.babylonbinarymeshdata
new file mode 100644
index 00000000..e862fd1a
Binary files /dev/null and b/3ds Max/Samples/babylon/BabylonMaterialAttributes/TransparencyMode/Blend/Blend.StandardMesh.113f2dbc-dce1-4faa-be71-35277504433b.babylonbinarymeshdata differ
diff --git a/3ds Max/Samples/babylon/BabylonMaterialAttributes/TransparencyMode/Blend/Blend.StandardSurfaceMesh.57bbf667-4bf9-4453-8787-dd1f8673b543.babylonbinarymeshdata b/3ds Max/Samples/babylon/BabylonMaterialAttributes/TransparencyMode/Blend/Blend.StandardSurfaceMesh.57bbf667-4bf9-4453-8787-dd1f8673b543.babylonbinarymeshdata
new file mode 100644
index 00000000..e862fd1a
Binary files /dev/null and b/3ds Max/Samples/babylon/BabylonMaterialAttributes/TransparencyMode/Blend/Blend.StandardSurfaceMesh.57bbf667-4bf9-4453-8787-dd1f8673b543.babylonbinarymeshdata differ
diff --git a/3ds Max/Samples/babylon/BabylonMaterialAttributes/TransparencyMode/Blend/Blend.babylon b/3ds Max/Samples/babylon/BabylonMaterialAttributes/TransparencyMode/Blend/Blend.babylon
new file mode 100644
index 00000000..94258823
--- /dev/null
+++ b/3ds Max/Samples/babylon/BabylonMaterialAttributes/TransparencyMode/Blend/Blend.babylon
@@ -0,0 +1 @@
+{"producer":{"name":"3dsmax","version":"2019","exporter_version":"1.5.0","file":"Blend.babylon"},"autoClear":true,"clearColor":[0.0,0.0,0.0],"ambientColor":[0.0,0.0,0.0],"fogMode":0,"fogColor":null,"fogStart":0.0,"fogEnd":0.0,"fogDensity":0.0,"gravity":[0.0,0.0,0.0],"physicsEngine":null,"physicsEnabled":false,"physicsGravity":null,"lights":[{"direction":[0.0,1.0,0.0],"type":3,"diffuse":[1.0,1.0,1.0],"specular":[1.0,1.0,1.0],"intensity":1.0,"range":3.40282347E+38,"exponent":0.0,"angle":0.0,"groundColor":[0.0,0.0,0.0],"excludedMeshesIds":null,"includedOnlyMeshesIds":null,"lightmapMode":null,"falloffType":null,"name":"Default light","id":"8e4c816c-d658-40cc-8b9e-05311761585d","parentId":null,"position":[0.0,0.0,0.0],"animations":null,"autoAnimate":false,"autoAnimateFrom":0,"autoAnimateTo":0,"autoAnimateLoop":false,"metadata":null}],"meshes":[{"materialId":"814decf0-a4ea-454e-a404-277528478ef5","isEnabled":true,"isVisible":true,"positions":[0.0,1.0,0.0,0.0,0.9808,0.1951,-0.0381,0.9808,0.1913,0.0,1.0,0.0,-0.0381,0.9808,0.1913,-0.0747,0.9808,0.1802,0.0,1.0,0.0,-0.0747,0.9808,0.1802,-0.1084,0.9808,0.1622,0.0,1.0,0.0,-0.1084,0.9808,0.1622,-0.1379,0.9808,0.1379,0.0,1.0,0.0,-0.1379,0.9808,0.1379,-0.1622,0.9808,0.1084,0.0,1.0,0.0,-0.1622,0.9808,0.1084,-0.1802,0.9808,0.0747,0.0,1.0,0.0,-0.1802,0.9808,0.0747,-0.1913,0.9808,0.0381,0.0,1.0,0.0,-0.1913,0.9808,0.0381,-0.1951,0.9808,0.0,0.0,1.0,0.0,-0.1951,0.9808,0.0,-0.1913,0.9808,-0.0381,0.0,1.0,0.0,-0.1913,0.9808,-0.0381,-0.1802,0.9808,-0.0747,0.0,1.0,0.0,-0.1802,0.9808,-0.0747,-0.1622,0.9808,-0.1084,0.0,1.0,0.0,-0.1622,0.9808,-0.1084,-0.1379,0.9808,-0.1379,0.0,1.0,0.0,-0.1379,0.9808,-0.1379,-0.1084,0.9808,-0.1622,0.0,1.0,0.0,-0.1084,0.9808,-0.1622,-0.0747,0.9808,-0.1802,0.0,1.0,0.0,-0.0747,0.9808,-0.1802,-0.0381,0.9808,-0.1913,0.0,1.0,0.0,-0.0381,0.9808,-0.1913,0.0,0.9808,-0.1951,0.0,1.0,0.0,0.0,0.9808,-0.1951,0.0381,0.9808,-0.1913,0.0,1.0,0.0,0.0381,0.9808,-0.1913,0.0747,0.9808,-0.1802,0.0,1.0,0.0,0.0747,0.9808,-0.1802,0.1084,0.9808,-0.1622,0.0,1.0,0.0,0.1084,0.9808,-0.1622,0.1379,0.9808,-0.1379,0.0,1.0,0.0,0.1379,0.9808,-0.1379,0.1622,0.9808,-0.1084,0.0,1.0,0.0,0.1622,0.9808,-0.1084,0.1802,0.9808,-0.0747,0.0,1.0,0.0,0.1802,0.9808,-0.0747,0.1913,0.9808,-0.0381,0.0,1.0,0.0,0.1913,0.9808,-0.0381,0.1951,0.9808,0.0,0.0,1.0,0.0,0.1951,0.9808,0.0,0.1913,0.9808,0.0381,0.0,1.0,0.0,0.1913,0.9808,0.0381,0.1802,0.9808,0.0747,0.0,1.0,0.0,0.1802,0.9808,0.0747,0.1622,0.9808,0.1084,0.0,1.0,0.0,0.1622,0.9808,0.1084,0.1379,0.9808,0.1379,0.0,1.0,0.0,0.1379,0.9808,0.1379,0.1084,0.9808,0.1622,0.0,1.0,0.0,0.1084,0.9808,0.1622,0.0747,0.9808,0.1802,0.0,1.0,0.0,0.0747,0.9808,0.1802,0.0381,0.9808,0.1913,0.0,1.0,0.0,0.0381,0.9808,0.1913,0.0,0.9808,0.1951,0.0,0.9808,0.1951,0.0,0.9239,0.3827,-0.0747,0.9239,0.3753,0.0,0.9808,0.1951,-0.0747,0.9239,0.3753,-0.0381,0.9808,0.1913,-0.0381,0.9808,0.1913,-0.0747,0.9239,0.3753,-0.1464,0.9239,0.3536,-0.0381,0.9808,0.1913,-0.1464,0.9239,0.3536,-0.0747,0.9808,0.1802,-0.0747,0.9808,0.1802,-0.1464,0.9239,0.3536,-0.2126,0.9239,0.3182,-0.0747,0.9808,0.1802,-0.2126,0.9239,0.3182,-0.1084,0.9808,0.1622,-0.1084,0.9808,0.1622,-0.2126,0.9239,0.3182,-0.2706,0.9239,0.2706,-0.1084,0.9808,0.1622,-0.2706,0.9239,0.2706,-0.1379,0.9808,0.1379,-0.1379,0.9808,0.1379,-0.2706,0.9239,0.2706,-0.3182,0.9239,0.2126,-0.1379,0.9808,0.1379,-0.3182,0.9239,0.2126,-0.1622,0.9808,0.1084,-0.1622,0.9808,0.1084,-0.3182,0.9239,0.2126,-0.3536,0.9239,0.1464,-0.1622,0.9808,0.1084,-0.3536,0.9239,0.1464,-0.1802,0.9808,0.0747,-0.1802,0.9808,0.0747,-0.3536,0.9239,0.1464,-0.3753,0.9239,0.0747,-0.1802,0.9808,0.0747,-0.3753,0.9239,0.0747,-0.1913,0.9808,0.0381,-0.1913,0.9808,0.0381,-0.3753,0.9239,0.0747,-0.3827,0.9239,0.0,-0.1913,0.9808,0.0381,-0.3827,0.9239,0.0,-0.1951,0.9808,0.0,-0.1951,0.9808,0.0,-0.3827,0.9239,0.0,-0.3753,0.9239,-0.0747,-0.1951,0.9808,0.0,-0.3753,0.9239,-0.0747,-0.1913,0.9808,-0.0381,-0.1913,0.9808,-0.0381,-0.3753,0.9239,-0.0747,-0.3536,0.9239,-0.1464,-0.1913,0.9808,-0.0381,-0.3536,0.9239,-0.1464,-0.1802,0.9808,-0.0747,-0.1802,0.9808,-0.0747,-0.3536,0.9239,-0.1464,-0.3182,0.9239,-0.2126,-0.1802,0.9808,-0.0747,-0.3182,0.9239,-0.2126,-0.1622,0.9808,-0.1084,-0.1622,0.9808,-0.1084,-0.3182,0.9239,-0.2126,-0.2706,0.9239,-0.2706,-0.1622,0.9808,-0.1084,-0.2706,0.9239,-0.2706,-0.1379,0.9808,-0.1379,-0.1379,0.9808,-0.1379,-0.2706,0.9239,-0.2706,-0.2126,0.9239,-0.3182,-0.1379,0.9808,-0.1379,-0.2126,0.9239,-0.3182,-0.1084,0.9808,-0.1622,-0.1084,0.9808,-0.1622,-0.2126,0.9239,-0.3182,-0.1464,0.9239,-0.3536,-0.1084,0.9808,-0.1622,-0.1464,0.9239,-0.3536,-0.0747,0.9808,-0.1802,-0.0747,0.9808,-0.1802,-0.1464,0.9239,-0.3536,-0.0747,0.9239,-0.3753,-0.0747,0.9808,-0.1802,-0.0747,0.9239,-0.3753,-0.0381,0.9808,-0.1913,-0.0381,0.9808,-0.1913,-0.0747,0.9239,-0.3753,0.0,0.9239,-0.3827,-0.0381,0.9808,-0.1913,0.0,0.9239,-0.3827,0.0,0.9808,-0.1951,0.0,0.9808,-0.1951,0.0,0.9239,-0.3827,0.0747,0.9239,-0.3753,0.0,0.9808,-0.1951,0.0747,0.9239,-0.3753,0.0381,0.9808,-0.1913,0.0381,0.9808,-0.1913,0.0747,0.9239,-0.3753,0.1464,0.9239,-0.3536,0.0381,0.9808,-0.1913,0.1464,0.9239,-0.3536,0.0747,0.9808,-0.1802,0.0747,0.9808,-0.1802,0.1464,0.9239,-0.3536,0.2126,0.9239,-0.3182,0.0747,0.9808,-0.1802,0.2126,0.9239,-0.3182,0.1084,0.9808,-0.1622,0.1084,0.9808,-0.1622,0.2126,0.9239,-0.3182,0.2706,0.9239,-0.2706,0.1084,0.9808,-0.1622,0.2706,0.9239,-0.2706,0.1379,0.9808,-0.1379,0.1379,0.9808,-0.1379,0.2706,0.9239,-0.2706,0.3182,0.9239,-0.2126,0.1379,0.9808,-0.1379,0.3182,0.9239,-0.2126,0.1622,0.9808,-0.1084,0.1622,0.9808,-0.1084,0.3182,0.9239,-0.2126,0.3536,0.9239,-0.1464,0.1622,0.9808,-0.1084,0.3536,0.9239,-0.1464,0.1802,0.9808,-0.0747,0.1802,0.9808,-0.0747,0.3536,0.9239,-0.1464,0.3753,0.9239,-0.0747,0.1802,0.9808,-0.0747,0.3753,0.9239,-0.0747,0.1913,0.9808,-0.0381,0.1913,0.9808,-0.0381,0.3753,0.9239,-0.0747,0.3827,0.9239,0.0,0.1913,0.9808,-0.0381,0.3827,0.9239,0.0,0.1951,0.9808,0.0,0.1951,0.9808,0.0,0.3827,0.9239,0.0,0.3753,0.9239,0.0747,0.1951,0.9808,0.0,0.3753,0.9239,0.0747,0.1913,0.9808,0.0381,0.1913,0.9808,0.0381,0.3753,0.9239,0.0747,0.3536,0.9239,0.1464,0.1913,0.9808,0.0381,0.3536,0.9239,0.1464,0.1802,0.9808,0.0747,0.1802,0.9808,0.0747,0.3536,0.9239,0.1464,0.3182,0.9239,0.2126,0.1802,0.9808,0.0747,0.3182,0.9239,0.2126,0.1622,0.9808,0.1084,0.1622,0.9808,0.1084,0.3182,0.9239,0.2126,0.2706,0.9239,0.2706,0.1622,0.9808,0.1084,0.2706,0.9239,0.2706,0.1379,0.9808,0.1379,0.1379,0.9808,0.1379,0.2706,0.9239,0.2706,0.2126,0.9239,0.3182,0.1379,0.9808,0.1379,0.2126,0.9239,0.3182,0.1084,0.9808,0.1622,0.1084,0.9808,0.1622,0.2126,0.9239,0.3182,0.1464,0.9239,0.3536,0.1084,0.9808,0.1622,0.1464,0.9239,0.3536,0.0747,0.9808,0.1802,0.0747,0.9808,0.1802,0.1464,0.9239,0.3536,0.0747,0.9239,0.3753,0.0747,0.9808,0.1802,0.0747,0.9239,0.3753,0.0381,0.9808,0.1913,0.0381,0.9808,0.1913,0.0747,0.9239,0.3753,0.0,0.9239,0.3827,0.0381,0.9808,0.1913,0.0,0.9239,0.3827,0.0,0.9808,0.1951,0.0,0.9239,0.3827,0.0,0.8315,0.5556,-0.1084,0.8315,0.5449,0.0,0.9239,0.3827,-0.1084,0.8315,0.5449,-0.0747,0.9239,0.3753,-0.0747,0.9239,0.3753,-0.1084,0.8315,0.5449,-0.2126,0.8315,0.5133,-0.0747,0.9239,0.3753,-0.2126,0.8315,0.5133,-0.1464,0.9239,0.3536,-0.1464,0.9239,0.3536,-0.2126,0.8315,0.5133,-0.3087,0.8315,0.4619,-0.1464,0.9239,0.3536,-0.3087,0.8315,0.4619,-0.2126,0.9239,0.3182,-0.2126,0.9239,0.3182,-0.3087,0.8315,0.4619,-0.3928,0.8315,0.3928,-0.2126,0.9239,0.3182,-0.3928,0.8315,0.3928,-0.2706,0.9239,0.2706,-0.2706,0.9239,0.2706,-0.3928,0.8315,0.3928,-0.4619,0.8315,0.3087,-0.2706,0.9239,0.2706,-0.4619,0.8315,0.3087,-0.3182,0.9239,0.2126,-0.3182,0.9239,0.2126,-0.4619,0.8315,0.3087,-0.5133,0.8315,0.2126,-0.3182,0.9239,0.2126,-0.5133,0.8315,0.2126,-0.3536,0.9239,0.1464,-0.3536,0.9239,0.1464,-0.5133,0.8315,0.2126,-0.5449,0.8315,0.1084,-0.3536,0.9239,0.1464,-0.5449,0.8315,0.1084,-0.3753,0.9239,0.0747,-0.3753,0.9239,0.0747,-0.5449,0.8315,0.1084,-0.5556,0.8315,0.0,-0.3753,0.9239,0.0747,-0.5556,0.8315,0.0,-0.3827,0.9239,0.0,-0.3827,0.9239,0.0,-0.5556,0.8315,0.0,-0.5449,0.8315,-0.1084,-0.3827,0.9239,0.0,-0.5449,0.8315,-0.1084,-0.3753,0.9239,-0.0747,-0.3753,0.9239,-0.0747,-0.5449,0.8315,-0.1084,-0.5133,0.8315,-0.2126,-0.3753,0.9239,-0.0747,-0.5133,0.8315,-0.2126,-0.3536,0.9239,-0.1464,-0.3536,0.9239,-0.1464,-0.5133,0.8315,-0.2126,-0.4619,0.8315,-0.3087,-0.3536,0.9239,-0.1464,-0.4619,0.8315,-0.3087,-0.3182,0.9239,-0.2126,-0.3182,0.9239,-0.2126,-0.4619,0.8315,-0.3087,-0.3928,0.8315,-0.3928,-0.3182,0.9239,-0.2126,-0.3928,0.8315,-0.3928,-0.2706,0.9239,-0.2706,-0.2706,0.9239,-0.2706,-0.3928,0.8315,-0.3928,-0.3087,0.8315,-0.4619,-0.2706,0.9239,-0.2706,-0.3087,0.8315,-0.4619,-0.2126,0.9239,-0.3182,-0.2126,0.9239,-0.3182,-0.3087,0.8315,-0.4619,-0.2126,0.8315,-0.5133,-0.2126,0.9239,-0.3182,-0.2126,0.8315,-0.5133,-0.1464,0.9239,-0.3536,-0.1464,0.9239,-0.3536,-0.2126,0.8315,-0.5133,-0.1084,0.8315,-0.5449,-0.1464,0.9239,-0.3536,-0.1084,0.8315,-0.5449,-0.0747,0.9239,-0.3753,-0.0747,0.9239,-0.3753,-0.1084,0.8315,-0.5449,0.0,0.8315,-0.5556,-0.0747,0.9239,-0.3753,0.0,0.8315,-0.5556,0.0,0.9239,-0.3827,0.0,0.9239,-0.3827,0.0,0.8315,-0.5556,0.1084,0.8315,-0.5449,0.0,0.9239,-0.3827,0.1084,0.8315,-0.5449,0.0747,0.9239,-0.3753,0.0747,0.9239,-0.3753,0.1084,0.8315,-0.5449,0.2126,0.8315,-0.5133,0.0747,0.9239,-0.3753,0.2126,0.8315,-0.5133,0.1464,0.9239,-0.3536,0.1464,0.9239,-0.3536,0.2126,0.8315,-0.5133,0.3087,0.8315,-0.4619,0.1464,0.9239,-0.3536,0.3087,0.8315,-0.4619,0.2126,0.9239,-0.3182,0.2126,0.9239,-0.3182,0.3087,0.8315,-0.4619,0.3928,0.8315,-0.3928,0.2126,0.9239,-0.3182,0.3928,0.8315,-0.3928,0.2706,0.9239,-0.2706,0.2706,0.9239,-0.2706,0.3928,0.8315,-0.3928,0.4619,0.8315,-0.3087,0.2706,0.9239,-0.2706,0.4619,0.8315,-0.3087,0.3182,0.9239,-0.2126,0.3182,0.9239,-0.2126,0.4619,0.8315,-0.3087,0.5133,0.8315,-0.2126,0.3182,0.9239,-0.2126,0.5133,0.8315,-0.2126,0.3536,0.9239,-0.1464,0.3536,0.9239,-0.1464,0.5133,0.8315,-0.2126,0.5449,0.8315,-0.1084,0.3536,0.9239,-0.1464,0.5449,0.8315,-0.1084,0.3753,0.9239,-0.0747,0.3753,0.9239,-0.0747,0.5449,0.8315,-0.1084,0.5556,0.8315,0.0,0.3753,0.9239,-0.0747,0.5556,0.8315,0.0,0.3827,0.9239,0.0,0.3827,0.9239,0.0,0.5556,0.8315,0.0,0.5449,0.8315,0.1084,0.3827,0.9239,0.0,0.5449,0.8315,0.1084,0.3753,0.9239,0.0747,0.3753,0.9239,0.0747,0.5449,0.8315,0.1084,0.5133,0.8315,0.2126,0.3753,0.9239,0.0747,0.5133,0.8315,0.2126,0.3536,0.9239,0.1464,0.3536,0.9239,0.1464,0.5133,0.8315,0.2126,0.4619,0.8315,0.3087,0.3536,0.9239,0.1464,0.4619,0.8315,0.3087,0.3182,0.9239,0.2126,0.3182,0.9239,0.2126,0.4619,0.8315,0.3087,0.3928,0.8315,0.3928,0.3182,0.9239,0.2126,0.3928,0.8315,0.3928,0.2706,0.9239,0.2706,0.2706,0.9239,0.2706,0.3928,0.8315,0.3928,0.3087,0.8315,0.4619,0.2706,0.9239,0.2706,0.3087,0.8315,0.4619,0.2126,0.9239,0.3182,0.2126,0.9239,0.3182,0.3087,0.8315,0.4619,0.2126,0.8315,0.5133,0.2126,0.9239,0.3182,0.2126,0.8315,0.5133,0.1464,0.9239,0.3536,0.1464,0.9239,0.3536,0.2126,0.8315,0.5133,0.1084,0.8315,0.5449,0.1464,0.9239,0.3536,0.1084,0.8315,0.5449,0.0747,0.9239,0.3753,0.0747,0.9239,0.3753,0.1084,0.8315,0.5449,0.0,0.8315,0.5556,0.0747,0.9239,0.3753,0.0,0.8315,0.5556,0.0,0.9239,0.3827,0.0,0.8315,0.5556,0.0,0.7071,0.7071,-0.1379,0.7071,0.6935,0.0,0.8315,0.5556,-0.1379,0.7071,0.6935,-0.1084,0.8315,0.5449,-0.1084,0.8315,0.5449,-0.1379,0.7071,0.6935,-0.2706,0.7071,0.6533,-0.1084,0.8315,0.5449,-0.2706,0.7071,0.6533,-0.2126,0.8315,0.5133,-0.2126,0.8315,0.5133,-0.2706,0.7071,0.6533,-0.3928,0.7071,0.5879,-0.2126,0.8315,0.5133,-0.3928,0.7071,0.5879,-0.3087,0.8315,0.4619,-0.3087,0.8315,0.4619,-0.3928,0.7071,0.5879,-0.5,0.7071,0.5,-0.3087,0.8315,0.4619,-0.5,0.7071,0.5,-0.3928,0.8315,0.3928,-0.3928,0.8315,0.3928,-0.5,0.7071,0.5,-0.5879,0.7071,0.3928,-0.3928,0.8315,0.3928,-0.5879,0.7071,0.3928,-0.4619,0.8315,0.3087,-0.4619,0.8315,0.3087,-0.5879,0.7071,0.3928,-0.6533,0.7071,0.2706,-0.4619,0.8315,0.3087,-0.6533,0.7071,0.2706,-0.5133,0.8315,0.2126,-0.5133,0.8315,0.2126,-0.6533,0.7071,0.2706,-0.6935,0.7071,0.1379,-0.5133,0.8315,0.2126,-0.6935,0.7071,0.1379,-0.5449,0.8315,0.1084,-0.5449,0.8315,0.1084,-0.6935,0.7071,0.1379,-0.7071,0.7071,0.0,-0.5449,0.8315,0.1084,-0.7071,0.7071,0.0,-0.5556,0.8315,0.0,-0.5556,0.8315,0.0,-0.7071,0.7071,0.0,-0.6935,0.7071,-0.1379,-0.5556,0.8315,0.0,-0.6935,0.7071,-0.1379,-0.5449,0.8315,-0.1084,-0.5449,0.8315,-0.1084,-0.6935,0.7071,-0.1379,-0.6533,0.7071,-0.2706,-0.5449,0.8315,-0.1084,-0.6533,0.7071,-0.2706,-0.5133,0.8315,-0.2126,-0.5133,0.8315,-0.2126,-0.6533,0.7071,-0.2706,-0.5879,0.7071,-0.3928,-0.5133,0.8315,-0.2126,-0.5879,0.7071,-0.3928,-0.4619,0.8315,-0.3087,-0.4619,0.8315,-0.3087,-0.5879,0.7071,-0.3928,-0.5,0.7071,-0.5,-0.4619,0.8315,-0.3087,-0.5,0.7071,-0.5,-0.3928,0.8315,-0.3928,-0.3928,0.8315,-0.3928,-0.5,0.7071,-0.5,-0.3928,0.7071,-0.5879,-0.3928,0.8315,-0.3928,-0.3928,0.7071,-0.5879,-0.3087,0.8315,-0.4619,-0.3087,0.8315,-0.4619,-0.3928,0.7071,-0.5879,-0.2706,0.7071,-0.6533,-0.3087,0.8315,-0.4619,-0.2706,0.7071,-0.6533,-0.2126,0.8315,-0.5133,-0.2126,0.8315,-0.5133,-0.2706,0.7071,-0.6533,-0.1379,0.7071,-0.6935,-0.2126,0.8315,-0.5133,-0.1379,0.7071,-0.6935,-0.1084,0.8315,-0.5449,-0.1084,0.8315,-0.5449,-0.1379,0.7071,-0.6935,0.0,0.7071,-0.7071,-0.1084,0.8315,-0.5449,0.0,0.7071,-0.7071,0.0,0.8315,-0.5556,0.0,0.8315,-0.5556,0.0,0.7071,-0.7071,0.138,0.7071,-0.6935,0.0,0.8315,-0.5556,0.138,0.7071,-0.6935,0.1084,0.8315,-0.5449,0.1084,0.8315,-0.5449,0.138,0.7071,-0.6935,0.2706,0.7071,-0.6533,0.1084,0.8315,-0.5449,0.2706,0.7071,-0.6533,0.2126,0.8315,-0.5133,0.2126,0.8315,-0.5133,0.2706,0.7071,-0.6533,0.3928,0.7071,-0.5879,0.2126,0.8315,-0.5133,0.3928,0.7071,-0.5879,0.3087,0.8315,-0.4619,0.3087,0.8315,-0.4619,0.3928,0.7071,-0.5879,0.5,0.7071,-0.5,0.3087,0.8315,-0.4619,0.5,0.7071,-0.5,0.3928,0.8315,-0.3928,0.3928,0.8315,-0.3928,0.5,0.7071,-0.5,0.5879,0.7071,-0.3928,0.3928,0.8315,-0.3928,0.5879,0.7071,-0.3928,0.4619,0.8315,-0.3087,0.4619,0.8315,-0.3087,0.5879,0.7071,-0.3928,0.6533,0.7071,-0.2706,0.4619,0.8315,-0.3087,0.6533,0.7071,-0.2706,0.5133,0.8315,-0.2126,0.5133,0.8315,-0.2126,0.6533,0.7071,-0.2706,0.6935,0.7071,-0.1379,0.5133,0.8315,-0.2126,0.6935,0.7071,-0.1379,0.5449,0.8315,-0.1084,0.5449,0.8315,-0.1084,0.6935,0.7071,-0.1379,0.7071,0.7071,0.0,0.5449,0.8315,-0.1084,0.7071,0.7071,0.0,0.5556,0.8315,0.0,0.5556,0.8315,0.0,0.7071,0.7071,0.0,0.6935,0.7071,0.138,0.5556,0.8315,0.0,0.6935,0.7071,0.138,0.5449,0.8315,0.1084,0.5449,0.8315,0.1084,0.6935,0.7071,0.138,0.6533,0.7071,0.2706,0.5449,0.8315,0.1084,0.6533,0.7071,0.2706,0.5133,0.8315,0.2126,0.5133,0.8315,0.2126,0.6533,0.7071,0.2706,0.5879,0.7071,0.3928,0.5133,0.8315,0.2126,0.5879,0.7071,0.3928,0.4619,0.8315,0.3087,0.4619,0.8315,0.3087,0.5879,0.7071,0.3928,0.5,0.7071,0.5,0.4619,0.8315,0.3087,0.5,0.7071,0.5,0.3928,0.8315,0.3928,0.3928,0.8315,0.3928,0.5,0.7071,0.5,0.3928,0.7071,0.5879,0.3928,0.8315,0.3928,0.3928,0.7071,0.5879,0.3087,0.8315,0.4619,0.3087,0.8315,0.4619,0.3928,0.7071,0.5879,0.2706,0.7071,0.6533,0.3087,0.8315,0.4619,0.2706,0.7071,0.6533,0.2126,0.8315,0.5133,0.2126,0.8315,0.5133,0.2706,0.7071,0.6533,0.1379,0.7071,0.6935,0.2126,0.8315,0.5133,0.1379,0.7071,0.6935,0.1084,0.8315,0.5449,0.1084,0.8315,0.5449,0.1379,0.7071,0.6935,0.0,0.7071,0.7071,0.1084,0.8315,0.5449,0.0,0.7071,0.7071,0.0,0.8315,0.5556,0.0,0.7071,0.7071,0.0,0.5556,0.8315,-0.1622,0.5556,0.8155,0.0,0.7071,0.7071,-0.1622,0.5556,0.8155,-0.1379,0.7071,0.6935,-0.1379,0.7071,0.6935,-0.1622,0.5556,0.8155,-0.3182,0.5556,0.7682,-0.1379,0.7071,0.6935,-0.3182,0.5556,0.7682,-0.2706,0.7071,0.6533,-0.2706,0.7071,0.6533,-0.3182,0.5556,0.7682,-0.4619,0.5556,0.6913,-0.2706,0.7071,0.6533,-0.4619,0.5556,0.6913,-0.3928,0.7071,0.5879,-0.3928,0.7071,0.5879,-0.4619,0.5556,0.6913,-0.5879,0.5556,0.5879,-0.3928,0.7071,0.5879,-0.5879,0.5556,0.5879,-0.5,0.7071,0.5,-0.5,0.7071,0.5,-0.5879,0.5556,0.5879,-0.6913,0.5556,0.4619,-0.5,0.7071,0.5,-0.6913,0.5556,0.4619,-0.5879,0.7071,0.3928,-0.5879,0.7071,0.3928,-0.6913,0.5556,0.4619,-0.7682,0.5556,0.3182,-0.5879,0.7071,0.3928,-0.7682,0.5556,0.3182,-0.6533,0.7071,0.2706,-0.6533,0.7071,0.2706,-0.7682,0.5556,0.3182,-0.8155,0.5556,0.1622,-0.6533,0.7071,0.2706,-0.8155,0.5556,0.1622,-0.6935,0.7071,0.1379,-0.6935,0.7071,0.1379,-0.8155,0.5556,0.1622,-0.8315,0.5556,0.0,-0.6935,0.7071,0.1379,-0.8315,0.5556,0.0,-0.7071,0.7071,0.0,-0.7071,0.7071,0.0,-0.8315,0.5556,0.0,-0.8155,0.5556,-0.1622,-0.7071,0.7071,0.0,-0.8155,0.5556,-0.1622,-0.6935,0.7071,-0.1379,-0.6935,0.7071,-0.1379,-0.8155,0.5556,-0.1622,-0.7682,0.5556,-0.3182,-0.6935,0.7071,-0.1379,-0.7682,0.5556,-0.3182,-0.6533,0.7071,-0.2706,-0.6533,0.7071,-0.2706,-0.7682,0.5556,-0.3182,-0.6913,0.5556,-0.4619,-0.6533,0.7071,-0.2706,-0.6913,0.5556,-0.4619,-0.5879,0.7071,-0.3928,-0.5879,0.7071,-0.3928,-0.6913,0.5556,-0.4619,-0.5879,0.5556,-0.5879,-0.5879,0.7071,-0.3928,-0.5879,0.5556,-0.5879,-0.5,0.7071,-0.5,-0.5,0.7071,-0.5,-0.5879,0.5556,-0.5879,-0.4619,0.5556,-0.6913,-0.5,0.7071,-0.5,-0.4619,0.5556,-0.6913,-0.3928,0.7071,-0.5879,-0.3928,0.7071,-0.5879,-0.4619,0.5556,-0.6913,-0.3182,0.5556,-0.7682,-0.3928,0.7071,-0.5879,-0.3182,0.5556,-0.7682,-0.2706,0.7071,-0.6533,-0.2706,0.7071,-0.6533,-0.3182,0.5556,-0.7682,-0.1622,0.5556,-0.8155,-0.2706,0.7071,-0.6533,-0.1622,0.5556,-0.8155,-0.1379,0.7071,-0.6935,-0.1379,0.7071,-0.6935,-0.1622,0.5556,-0.8155,0.0,0.5556,-0.8315,-0.1379,0.7071,-0.6935,0.0,0.5556,-0.8315,0.0,0.7071,-0.7071,0.0,0.7071,-0.7071,0.0,0.5556,-0.8315,0.1622,0.5556,-0.8155,0.0,0.7071,-0.7071,0.1622,0.5556,-0.8155,0.138,0.7071,-0.6935,0.138,0.7071,-0.6935,0.1622,0.5556,-0.8155,0.3182,0.5556,-0.7682,0.138,0.7071,-0.6935,0.3182,0.5556,-0.7682,0.2706,0.7071,-0.6533,0.2706,0.7071,-0.6533,0.3182,0.5556,-0.7682,0.4619,0.5556,-0.6913,0.2706,0.7071,-0.6533,0.4619,0.5556,-0.6913,0.3928,0.7071,-0.5879,0.3928,0.7071,-0.5879,0.4619,0.5556,-0.6913,0.5879,0.5556,-0.5879,0.3928,0.7071,-0.5879,0.5879,0.5556,-0.5879,0.5,0.7071,-0.5,0.5,0.7071,-0.5,0.5879,0.5556,-0.5879,0.6913,0.5556,-0.4619,0.5,0.7071,-0.5,0.6913,0.5556,-0.4619,0.5879,0.7071,-0.3928,0.5879,0.7071,-0.3928,0.6913,0.5556,-0.4619,0.7682,0.5556,-0.3182,0.5879,0.7071,-0.3928,0.7682,0.5556,-0.3182,0.6533,0.7071,-0.2706,0.6533,0.7071,-0.2706,0.7682,0.5556,-0.3182,0.8155,0.5556,-0.1622,0.6533,0.7071,-0.2706,0.8155,0.5556,-0.1622,0.6935,0.7071,-0.1379,0.6935,0.7071,-0.1379,0.8155,0.5556,-0.1622,0.8315,0.5556,0.0,0.6935,0.7071,-0.1379,0.8315,0.5556,0.0,0.7071,0.7071,0.0,0.7071,0.7071,0.0,0.8315,0.5556,0.0,0.8155,0.5556,0.1622,0.7071,0.7071,0.0,0.8155,0.5556,0.1622,0.6935,0.7071,0.138,0.6935,0.7071,0.138,0.8155,0.5556,0.1622,0.7682,0.5556,0.3182,0.6935,0.7071,0.138,0.7682,0.5556,0.3182,0.6533,0.7071,0.2706,0.6533,0.7071,0.2706,0.7682,0.5556,0.3182,0.6913,0.5556,0.4619,0.6533,0.7071,0.2706,0.6913,0.5556,0.4619,0.5879,0.7071,0.3928,0.5879,0.7071,0.3928,0.6913,0.5556,0.4619,0.5879,0.5556,0.5879,0.5879,0.7071,0.3928,0.5879,0.5556,0.5879,0.5,0.7071,0.5,0.5,0.7071,0.5,0.5879,0.5556,0.5879,0.4619,0.5556,0.6913,0.5,0.7071,0.5,0.4619,0.5556,0.6913,0.3928,0.7071,0.5879,0.3928,0.7071,0.5879,0.4619,0.5556,0.6913,0.3182,0.5556,0.7682,0.3928,0.7071,0.5879,0.3182,0.5556,0.7682,0.2706,0.7071,0.6533,0.2706,0.7071,0.6533,0.3182,0.5556,0.7682,0.1622,0.5556,0.8155,0.2706,0.7071,0.6533,0.1622,0.5556,0.8155,0.1379,0.7071,0.6935,0.1379,0.7071,0.6935,0.1622,0.5556,0.8155,0.0,0.5556,0.8315,0.1379,0.7071,0.6935,0.0,0.5556,0.8315,0.0,0.7071,0.7071,0.0,0.5556,0.8315,0.0,0.3827,0.9239,-0.1802,0.3827,0.9061,0.0,0.5556,0.8315,-0.1802,0.3827,0.9061,-0.1622,0.5556,0.8155,-0.1622,0.5556,0.8155,-0.1802,0.3827,0.9061,-0.3536,0.3827,0.8536,-0.1622,0.5556,0.8155,-0.3536,0.3827,0.8536,-0.3182,0.5556,0.7682,-0.3182,0.5556,0.7682,-0.3536,0.3827,0.8536,-0.5133,0.3827,0.7682,-0.3182,0.5556,0.7682,-0.5133,0.3827,0.7682,-0.4619,0.5556,0.6913,-0.4619,0.5556,0.6913,-0.5133,0.3827,0.7682,-0.6533,0.3827,0.6533,-0.4619,0.5556,0.6913,-0.6533,0.3827,0.6533,-0.5879,0.5556,0.5879,-0.5879,0.5556,0.5879,-0.6533,0.3827,0.6533,-0.7682,0.3827,0.5133,-0.5879,0.5556,0.5879,-0.7682,0.3827,0.5133,-0.6913,0.5556,0.4619,-0.6913,0.5556,0.4619,-0.7682,0.3827,0.5133,-0.8536,0.3827,0.3536,-0.6913,0.5556,0.4619,-0.8536,0.3827,0.3536,-0.7682,0.5556,0.3182,-0.7682,0.5556,0.3182,-0.8536,0.3827,0.3536,-0.9061,0.3827,0.1802,-0.7682,0.5556,0.3182,-0.9061,0.3827,0.1802,-0.8155,0.5556,0.1622,-0.8155,0.5556,0.1622,-0.9061,0.3827,0.1802,-0.9239,0.3827,0.0,-0.8155,0.5556,0.1622,-0.9239,0.3827,0.0,-0.8315,0.5556,0.0,-0.8315,0.5556,0.0,-0.9239,0.3827,0.0,-0.9061,0.3827,-0.1802,-0.8315,0.5556,0.0,-0.9061,0.3827,-0.1802,-0.8155,0.5556,-0.1622,-0.8155,0.5556,-0.1622,-0.9061,0.3827,-0.1802,-0.8536,0.3827,-0.3536,-0.8155,0.5556,-0.1622,-0.8536,0.3827,-0.3536,-0.7682,0.5556,-0.3182,-0.7682,0.5556,-0.3182,-0.8536,0.3827,-0.3536,-0.7682,0.3827,-0.5133,-0.7682,0.5556,-0.3182,-0.7682,0.3827,-0.5133,-0.6913,0.5556,-0.4619,-0.6913,0.5556,-0.4619,-0.7682,0.3827,-0.5133,-0.6533,0.3827,-0.6533,-0.6913,0.5556,-0.4619,-0.6533,0.3827,-0.6533,-0.5879,0.5556,-0.5879,-0.5879,0.5556,-0.5879,-0.6533,0.3827,-0.6533,-0.5133,0.3827,-0.7682,-0.5879,0.5556,-0.5879,-0.5133,0.3827,-0.7682,-0.4619,0.5556,-0.6913,-0.4619,0.5556,-0.6913,-0.5133,0.3827,-0.7682,-0.3536,0.3827,-0.8536,-0.4619,0.5556,-0.6913,-0.3536,0.3827,-0.8536,-0.3182,0.5556,-0.7682,-0.3182,0.5556,-0.7682,-0.3536,0.3827,-0.8536,-0.1802,0.3827,-0.9061,-0.3182,0.5556,-0.7682,-0.1802,0.3827,-0.9061,-0.1622,0.5556,-0.8155,-0.1622,0.5556,-0.8155,-0.1802,0.3827,-0.9061,0.0,0.3827,-0.9239,-0.1622,0.5556,-0.8155,0.0,0.3827,-0.9239,0.0,0.5556,-0.8315,0.0,0.5556,-0.8315,0.0,0.3827,-0.9239,0.1802,0.3827,-0.9061,0.0,0.5556,-0.8315,0.1802,0.3827,-0.9061,0.1622,0.5556,-0.8155,0.1622,0.5556,-0.8155,0.1802,0.3827,-0.9061,0.3536,0.3827,-0.8536,0.1622,0.5556,-0.8155,0.3536,0.3827,-0.8536,0.3182,0.5556,-0.7682,0.3182,0.5556,-0.7682,0.3536,0.3827,-0.8536,0.5133,0.3827,-0.7682,0.3182,0.5556,-0.7682,0.5133,0.3827,-0.7682,0.4619,0.5556,-0.6913,0.4619,0.5556,-0.6913,0.5133,0.3827,-0.7682,0.6533,0.3827,-0.6533,0.4619,0.5556,-0.6913,0.6533,0.3827,-0.6533,0.5879,0.5556,-0.5879,0.5879,0.5556,-0.5879,0.6533,0.3827,-0.6533,0.7682,0.3827,-0.5133,0.5879,0.5556,-0.5879,0.7682,0.3827,-0.5133,0.6913,0.5556,-0.4619,0.6913,0.5556,-0.4619,0.7682,0.3827,-0.5133,0.8536,0.3827,-0.3536,0.6913,0.5556,-0.4619,0.8536,0.3827,-0.3536,0.7682,0.5556,-0.3182,0.7682,0.5556,-0.3182,0.8536,0.3827,-0.3536,0.9061,0.3827,-0.1802,0.7682,0.5556,-0.3182,0.9061,0.3827,-0.1802,0.8155,0.5556,-0.1622,0.8155,0.5556,-0.1622,0.9061,0.3827,-0.1802,0.9239,0.3827,0.0,0.8155,0.5556,-0.1622,0.9239,0.3827,0.0,0.8315,0.5556,0.0,0.8315,0.5556,0.0,0.9239,0.3827,0.0,0.9061,0.3827,0.1802,0.8315,0.5556,0.0,0.9061,0.3827,0.1802,0.8155,0.5556,0.1622,0.8155,0.5556,0.1622,0.9061,0.3827,0.1802,0.8536,0.3827,0.3536,0.8155,0.5556,0.1622,0.8536,0.3827,0.3536,0.7682,0.5556,0.3182,0.7682,0.5556,0.3182,0.8536,0.3827,0.3536,0.7682,0.3827,0.5133,0.7682,0.5556,0.3182,0.7682,0.3827,0.5133,0.6913,0.5556,0.4619,0.6913,0.5556,0.4619,0.7682,0.3827,0.5133,0.6533,0.3827,0.6533,0.6913,0.5556,0.4619,0.6533,0.3827,0.6533,0.5879,0.5556,0.5879,0.5879,0.5556,0.5879,0.6533,0.3827,0.6533,0.5133,0.3827,0.7682,0.5879,0.5556,0.5879,0.5133,0.3827,0.7682,0.4619,0.5556,0.6913,0.4619,0.5556,0.6913,0.5133,0.3827,0.7682,0.3536,0.3827,0.8536,0.4619,0.5556,0.6913,0.3536,0.3827,0.8536,0.3182,0.5556,0.7682,0.3182,0.5556,0.7682,0.3536,0.3827,0.8536,0.1802,0.3827,0.9061,0.3182,0.5556,0.7682,0.1802,0.3827,0.9061,0.1622,0.5556,0.8155,0.1622,0.5556,0.8155,0.1802,0.3827,0.9061,0.0,0.3827,0.9239,0.1622,0.5556,0.8155,0.0,0.3827,0.9239,0.0,0.5556,0.8315,0.0,0.3827,0.9239,0.0,0.1951,0.9808,-0.1913,0.1951,0.9619,0.0,0.3827,0.9239,-0.1913,0.1951,0.9619,-0.1802,0.3827,0.9061,-0.1802,0.3827,0.9061,-0.1913,0.1951,0.9619,-0.3753,0.1951,0.9061,-0.1802,0.3827,0.9061,-0.3753,0.1951,0.9061,-0.3536,0.3827,0.8536,-0.3536,0.3827,0.8536,-0.3753,0.1951,0.9061,-0.5449,0.1951,0.8155,-0.3536,0.3827,0.8536,-0.5449,0.1951,0.8155,-0.5133,0.3827,0.7682,-0.5133,0.3827,0.7682,-0.5449,0.1951,0.8155,-0.6935,0.1951,0.6935,-0.5133,0.3827,0.7682,-0.6935,0.1951,0.6935,-0.6533,0.3827,0.6533,-0.6533,0.3827,0.6533,-0.6935,0.1951,0.6935,-0.8155,0.1951,0.5449,-0.6533,0.3827,0.6533,-0.8155,0.1951,0.5449,-0.7682,0.3827,0.5133,-0.7682,0.3827,0.5133,-0.8155,0.1951,0.5449,-0.9061,0.1951,0.3753,-0.7682,0.3827,0.5133,-0.9061,0.1951,0.3753,-0.8536,0.3827,0.3536,-0.8536,0.3827,0.3536,-0.9061,0.1951,0.3753,-0.9619,0.1951,0.1913,-0.8536,0.3827,0.3536,-0.9619,0.1951,0.1913,-0.9061,0.3827,0.1802,-0.9061,0.3827,0.1802,-0.9619,0.1951,0.1913,-0.9808,0.1951,0.0,-0.9061,0.3827,0.1802,-0.9808,0.1951,0.0,-0.9239,0.3827,0.0,-0.9239,0.3827,0.0,-0.9808,0.1951,0.0,-0.9619,0.1951,-0.1913,-0.9239,0.3827,0.0,-0.9619,0.1951,-0.1913,-0.9061,0.3827,-0.1802,-0.9061,0.3827,-0.1802,-0.9619,0.1951,-0.1913,-0.9061,0.1951,-0.3753,-0.9061,0.3827,-0.1802,-0.9061,0.1951,-0.3753,-0.8536,0.3827,-0.3536,-0.8536,0.3827,-0.3536,-0.9061,0.1951,-0.3753,-0.8155,0.1951,-0.5449,-0.8536,0.3827,-0.3536,-0.8155,0.1951,-0.5449,-0.7682,0.3827,-0.5133,-0.7682,0.3827,-0.5133,-0.8155,0.1951,-0.5449,-0.6935,0.1951,-0.6935,-0.7682,0.3827,-0.5133,-0.6935,0.1951,-0.6935,-0.6533,0.3827,-0.6533,-0.6533,0.3827,-0.6533,-0.6935,0.1951,-0.6935,-0.5449,0.1951,-0.8155,-0.6533,0.3827,-0.6533,-0.5449,0.1951,-0.8155,-0.5133,0.3827,-0.7682,-0.5133,0.3827,-0.7682,-0.5449,0.1951,-0.8155,-0.3753,0.1951,-0.9061,-0.5133,0.3827,-0.7682,-0.3753,0.1951,-0.9061,-0.3536,0.3827,-0.8536,-0.3536,0.3827,-0.8536,-0.3753,0.1951,-0.9061,-0.1913,0.1951,-0.9619,-0.3536,0.3827,-0.8536,-0.1913,0.1951,-0.9619,-0.1802,0.3827,-0.9061,-0.1802,0.3827,-0.9061,-0.1913,0.1951,-0.9619,0.0,0.1951,-0.9808,-0.1802,0.3827,-0.9061,0.0,0.1951,-0.9808,0.0,0.3827,-0.9239,0.0,0.3827,-0.9239,0.0,0.1951,-0.9808,0.1913,0.1951,-0.9619,0.0,0.3827,-0.9239,0.1913,0.1951,-0.9619,0.1802,0.3827,-0.9061,0.1802,0.3827,-0.9061,0.1913,0.1951,-0.9619,0.3753,0.1951,-0.9061,0.1802,0.3827,-0.9061,0.3753,0.1951,-0.9061,0.3536,0.3827,-0.8536,0.3536,0.3827,-0.8536,0.3753,0.1951,-0.9061,0.5449,0.1951,-0.8155,0.3536,0.3827,-0.8536,0.5449,0.1951,-0.8155,0.5133,0.3827,-0.7682,0.5133,0.3827,-0.7682,0.5449,0.1951,-0.8155,0.6935,0.1951,-0.6935,0.5133,0.3827,-0.7682,0.6935,0.1951,-0.6935,0.6533,0.3827,-0.6533,0.6533,0.3827,-0.6533,0.6935,0.1951,-0.6935,0.8155,0.1951,-0.5449,0.6533,0.3827,-0.6533,0.8155,0.1951,-0.5449,0.7682,0.3827,-0.5133,0.7682,0.3827,-0.5133,0.8155,0.1951,-0.5449,0.9061,0.1951,-0.3753,0.7682,0.3827,-0.5133,0.9061,0.1951,-0.3753,0.8536,0.3827,-0.3536,0.8536,0.3827,-0.3536,0.9061,0.1951,-0.3753,0.9619,0.1951,-0.1913,0.8536,0.3827,-0.3536,0.9619,0.1951,-0.1913,0.9061,0.3827,-0.1802,0.9061,0.3827,-0.1802,0.9619,0.1951,-0.1913,0.9808,0.1951,0.0,0.9061,0.3827,-0.1802,0.9808,0.1951,0.0,0.9239,0.3827,0.0,0.9239,0.3827,0.0,0.9808,0.1951,0.0,0.9619,0.1951,0.1913,0.9239,0.3827,0.0,0.9619,0.1951,0.1913,0.9061,0.3827,0.1802,0.9061,0.3827,0.1802,0.9619,0.1951,0.1913,0.9061,0.1951,0.3753,0.9061,0.3827,0.1802,0.9061,0.1951,0.3753,0.8536,0.3827,0.3536,0.8536,0.3827,0.3536,0.9061,0.1951,0.3753,0.8155,0.1951,0.5449,0.8536,0.3827,0.3536,0.8155,0.1951,0.5449,0.7682,0.3827,0.5133,0.7682,0.3827,0.5133,0.8155,0.1951,0.5449,0.6935,0.1951,0.6935,0.7682,0.3827,0.5133,0.6935,0.1951,0.6935,0.6533,0.3827,0.6533,0.6533,0.3827,0.6533,0.6935,0.1951,0.6935,0.5449,0.1951,0.8155,0.6533,0.3827,0.6533,0.5449,0.1951,0.8155,0.5133,0.3827,0.7682,0.5133,0.3827,0.7682,0.5449,0.1951,0.8155,0.3753,0.1951,0.9061,0.5133,0.3827,0.7682,0.3753,0.1951,0.9061,0.3536,0.3827,0.8536,0.3536,0.3827,0.8536,0.3753,0.1951,0.9061,0.1913,0.1951,0.9619,0.3536,0.3827,0.8536,0.1913,0.1951,0.9619,0.1802,0.3827,0.9061,0.1802,0.3827,0.9061,0.1913,0.1951,0.9619,0.0,0.1951,0.9808,0.1802,0.3827,0.9061,0.0,0.1951,0.9808,0.0,0.3827,0.9239,0.0,0.1951,0.9808,0.0,0.0,1.0,-0.1951,0.0,0.9808,0.0,0.1951,0.9808,-0.1951,0.0,0.9808,-0.1913,0.1951,0.9619,-0.1913,0.1951,0.9619,-0.1951,0.0,0.9808,-0.3827,0.0,0.9239,-0.1913,0.1951,0.9619,-0.3827,0.0,0.9239,-0.3753,0.1951,0.9061,-0.3753,0.1951,0.9061,-0.3827,0.0,0.9239,-0.5556,0.0,0.8315,-0.3753,0.1951,0.9061,-0.5556,0.0,0.8315,-0.5449,0.1951,0.8155,-0.5449,0.1951,0.8155,-0.5556,0.0,0.8315,-0.7071,0.0,0.7071,-0.5449,0.1951,0.8155,-0.7071,0.0,0.7071,-0.6935,0.1951,0.6935,-0.6935,0.1951,0.6935,-0.7071,0.0,0.7071,-0.8315,0.0,0.5556,-0.6935,0.1951,0.6935,-0.8315,0.0,0.5556,-0.8155,0.1951,0.5449,-0.8155,0.1951,0.5449,-0.8315,0.0,0.5556,-0.9239,0.0,0.3827,-0.8155,0.1951,0.5449,-0.9239,0.0,0.3827,-0.9061,0.1951,0.3753,-0.9061,0.1951,0.3753,-0.9239,0.0,0.3827,-0.9808,0.0,0.1951,-0.9061,0.1951,0.3753,-0.9808,0.0,0.1951,-0.9619,0.1951,0.1913,-0.9619,0.1951,0.1913,-0.9808,0.0,0.1951,-1.0,0.0,0.0,-0.9619,0.1951,0.1913,-1.0,0.0,0.0,-0.9808,0.1951,0.0,-0.9808,0.1951,0.0,-1.0,0.0,0.0,-0.9808,0.0,-0.1951,-0.9808,0.1951,0.0,-0.9808,0.0,-0.1951,-0.9619,0.1951,-0.1913,-0.9619,0.1951,-0.1913,-0.9808,0.0,-0.1951,-0.9239,0.0,-0.3827,-0.9619,0.1951,-0.1913,-0.9239,0.0,-0.3827,-0.9061,0.1951,-0.3753,-0.9061,0.1951,-0.3753,-0.9239,0.0,-0.3827,-0.8315,0.0,-0.5556,-0.9061,0.1951,-0.3753,-0.8315,0.0,-0.5556,-0.8155,0.1951,-0.5449,-0.8155,0.1951,-0.5449,-0.8315,0.0,-0.5556,-0.7071,0.0,-0.7071,-0.8155,0.1951,-0.5449,-0.7071,0.0,-0.7071,-0.6935,0.1951,-0.6935,-0.6935,0.1951,-0.6935,-0.7071,0.0,-0.7071,-0.5556,0.0,-0.8315,-0.6935,0.1951,-0.6935,-0.5556,0.0,-0.8315,-0.5449,0.1951,-0.8155,-0.5449,0.1951,-0.8155,-0.5556,0.0,-0.8315,-0.3827,0.0,-0.9239,-0.5449,0.1951,-0.8155,-0.3827,0.0,-0.9239,-0.3753,0.1951,-0.9061,-0.3753,0.1951,-0.9061,-0.3827,0.0,-0.9239,-0.1951,0.0,-0.9808,-0.3753,0.1951,-0.9061,-0.1951,0.0,-0.9808,-0.1913,0.1951,-0.9619,-0.1913,0.1951,-0.9619,-0.1951,0.0,-0.9808,0.0,0.0,-1.0,-0.1913,0.1951,-0.9619,0.0,0.0,-1.0,0.0,0.1951,-0.9808,0.0,0.1951,-0.9808,0.0,0.0,-1.0,0.1951,0.0,-0.9808,0.0,0.1951,-0.9808,0.1951,0.0,-0.9808,0.1913,0.1951,-0.9619,0.1913,0.1951,-0.9619,0.1951,0.0,-0.9808,0.3827,0.0,-0.9239,0.1913,0.1951,-0.9619,0.3827,0.0,-0.9239,0.3753,0.1951,-0.9061,0.3753,0.1951,-0.9061,0.3827,0.0,-0.9239,0.5556,0.0,-0.8315,0.3753,0.1951,-0.9061,0.5556,0.0,-0.8315,0.5449,0.1951,-0.8155,0.5449,0.1951,-0.8155,0.5556,0.0,-0.8315,0.7071,0.0,-0.7071,0.5449,0.1951,-0.8155,0.7071,0.0,-0.7071,0.6935,0.1951,-0.6935,0.6935,0.1951,-0.6935,0.7071,0.0,-0.7071,0.8315,0.0,-0.5556,0.6935,0.1951,-0.6935,0.8315,0.0,-0.5556,0.8155,0.1951,-0.5449,0.8155,0.1951,-0.5449,0.8315,0.0,-0.5556,0.9239,0.0,-0.3827,0.8155,0.1951,-0.5449,0.9239,0.0,-0.3827,0.9061,0.1951,-0.3753,0.9061,0.1951,-0.3753,0.9239,0.0,-0.3827,0.9808,0.0,-0.1951,0.9061,0.1951,-0.3753,0.9808,0.0,-0.1951,0.9619,0.1951,-0.1913,0.9619,0.1951,-0.1913,0.9808,0.0,-0.1951,1.0,0.0,0.0,0.9619,0.1951,-0.1913,1.0,0.0,0.0,0.9808,0.1951,0.0,0.9808,0.1951,0.0,1.0,0.0,0.0,0.9808,0.0,0.1951,0.9808,0.1951,0.0,0.9808,0.0,0.1951,0.9619,0.1951,0.1913,0.9619,0.1951,0.1913,0.9808,0.0,0.1951,0.9239,0.0,0.3827,0.9619,0.1951,0.1913,0.9239,0.0,0.3827,0.9061,0.1951,0.3753,0.9061,0.1951,0.3753,0.9239,0.0,0.3827,0.8315,0.0,0.5556,0.9061,0.1951,0.3753,0.8315,0.0,0.5556,0.8155,0.1951,0.5449,0.8155,0.1951,0.5449,0.8315,0.0,0.5556,0.7071,0.0,0.7071,0.8155,0.1951,0.5449,0.7071,0.0,0.7071,0.6935,0.1951,0.6935,0.6935,0.1951,0.6935,0.7071,0.0,0.7071,0.5556,0.0,0.8315,0.6935,0.1951,0.6935,0.5556,0.0,0.8315,0.5449,0.1951,0.8155,0.5449,0.1951,0.8155,0.5556,0.0,0.8315,0.3827,0.0,0.9239,0.5449,0.1951,0.8155,0.3827,0.0,0.9239,0.3753,0.1951,0.9061,0.3753,0.1951,0.9061,0.3827,0.0,0.9239,0.1951,0.0,0.9808,0.3753,0.1951,0.9061,0.1951,0.0,0.9808,0.1913,0.1951,0.9619,0.1913,0.1951,0.9619,0.1951,0.0,0.9808,0.0,0.0,1.0,0.1913,0.1951,0.9619,0.0,0.0,1.0,0.0,0.1951,0.9808,0.0,0.0,1.0,0.0,-0.1951,0.9808,-0.1913,-0.1951,0.9619,0.0,0.0,1.0,-0.1913,-0.1951,0.9619,-0.1951,0.0,0.9808,-0.1951,0.0,0.9808,-0.1913,-0.1951,0.9619,-0.3753,-0.1951,0.9061,-0.1951,0.0,0.9808,-0.3753,-0.1951,0.9061,-0.3827,0.0,0.9239,-0.3827,0.0,0.9239,-0.3753,-0.1951,0.9061,-0.5449,-0.1951,0.8155,-0.3827,0.0,0.9239,-0.5449,-0.1951,0.8155,-0.5556,0.0,0.8315,-0.5556,0.0,0.8315,-0.5449,-0.1951,0.8155,-0.6935,-0.1951,0.6935,-0.5556,0.0,0.8315,-0.6935,-0.1951,0.6935,-0.7071,0.0,0.7071,-0.7071,0.0,0.7071,-0.6935,-0.1951,0.6935,-0.8155,-0.1951,0.5449,-0.7071,0.0,0.7071,-0.8155,-0.1951,0.5449,-0.8315,0.0,0.5556,-0.8315,0.0,0.5556,-0.8155,-0.1951,0.5449,-0.9061,-0.1951,0.3753,-0.8315,0.0,0.5556,-0.9061,-0.1951,0.3753,-0.9239,0.0,0.3827,-0.9239,0.0,0.3827,-0.9061,-0.1951,0.3753,-0.9619,-0.1951,0.1913,-0.9239,0.0,0.3827,-0.9619,-0.1951,0.1913,-0.9808,0.0,0.1951,-0.9808,0.0,0.1951,-0.9619,-0.1951,0.1913,-0.9808,-0.1951,0.0,-0.9808,0.0,0.1951,-0.9808,-0.1951,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-0.9808,-0.1951,0.0,-0.9619,-0.1951,-0.1913,-1.0,0.0,0.0,-0.9619,-0.1951,-0.1913,-0.9808,0.0,-0.1951,-0.9808,0.0,-0.1951,-0.9619,-0.1951,-0.1913,-0.9061,-0.1951,-0.3753,-0.9808,0.0,-0.1951,-0.9061,-0.1951,-0.3753,-0.9239,0.0,-0.3827,-0.9239,0.0,-0.3827,-0.9061,-0.1951,-0.3753,-0.8155,-0.1951,-0.5449,-0.9239,0.0,-0.3827,-0.8155,-0.1951,-0.5449,-0.8315,0.0,-0.5556,-0.8315,0.0,-0.5556,-0.8155,-0.1951,-0.5449,-0.6935,-0.1951,-0.6935,-0.8315,0.0,-0.5556,-0.6935,-0.1951,-0.6935,-0.7071,0.0,-0.7071,-0.7071,0.0,-0.7071,-0.6935,-0.1951,-0.6935,-0.5449,-0.1951,-0.8155,-0.7071,0.0,-0.7071,-0.5449,-0.1951,-0.8155,-0.5556,0.0,-0.8315,-0.5556,0.0,-0.8315,-0.5449,-0.1951,-0.8155,-0.3753,-0.1951,-0.9061,-0.5556,0.0,-0.8315,-0.3753,-0.1951,-0.9061,-0.3827,0.0,-0.9239,-0.3827,0.0,-0.9239,-0.3753,-0.1951,-0.9061,-0.1913,-0.1951,-0.9619,-0.3827,0.0,-0.9239,-0.1913,-0.1951,-0.9619,-0.1951,0.0,-0.9808,-0.1951,0.0,-0.9808,-0.1913,-0.1951,-0.9619,0.0,-0.1951,-0.9808,-0.1951,0.0,-0.9808,0.0,-0.1951,-0.9808,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,-0.1951,-0.9808,0.1913,-0.1951,-0.9619,0.0,0.0,-1.0,0.1913,-0.1951,-0.9619,0.1951,0.0,-0.9808,0.1951,0.0,-0.9808,0.1913,-0.1951,-0.9619,0.3753,-0.1951,-0.9061,0.1951,0.0,-0.9808,0.3753,-0.1951,-0.9061,0.3827,0.0,-0.9239,0.3827,0.0,-0.9239,0.3753,-0.1951,-0.9061,0.5449,-0.1951,-0.8155,0.3827,0.0,-0.9239,0.5449,-0.1951,-0.8155,0.5556,0.0,-0.8315,0.5556,0.0,-0.8315,0.5449,-0.1951,-0.8155,0.6935,-0.1951,-0.6935,0.5556,0.0,-0.8315,0.6935,-0.1951,-0.6935,0.7071,0.0,-0.7071,0.7071,0.0,-0.7071,0.6935,-0.1951,-0.6935,0.8155,-0.1951,-0.5449,0.7071,0.0,-0.7071,0.8155,-0.1951,-0.5449,0.8315,0.0,-0.5556,0.8315,0.0,-0.5556,0.8155,-0.1951,-0.5449,0.9061,-0.1951,-0.3753,0.8315,0.0,-0.5556,0.9061,-0.1951,-0.3753,0.9239,0.0,-0.3827,0.9239,0.0,-0.3827,0.9061,-0.1951,-0.3753,0.9619,-0.1951,-0.1913,0.9239,0.0,-0.3827,0.9619,-0.1951,-0.1913,0.9808,0.0,-0.1951,0.9808,0.0,-0.1951,0.9619,-0.1951,-0.1913,0.9808,-0.1951,0.0,0.9808,0.0,-0.1951,0.9808,-0.1951,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.9808,-0.1951,0.0,0.9619,-0.1951,0.1913,1.0,0.0,0.0,0.9619,-0.1951,0.1913,0.9808,0.0,0.1951,0.9808,0.0,0.1951,0.9619,-0.1951,0.1913,0.9061,-0.1951,0.3753,0.9808,0.0,0.1951,0.9061,-0.1951,0.3753,0.9239,0.0,0.3827,0.9239,0.0,0.3827,0.9061,-0.1951,0.3753,0.8155,-0.1951,0.5449,0.9239,0.0,0.3827,0.8155,-0.1951,0.5449,0.8315,0.0,0.5556,0.8315,0.0,0.5556,0.8155,-0.1951,0.5449,0.6935,-0.1951,0.6935,0.8315,0.0,0.5556,0.6935,-0.1951,0.6935,0.7071,0.0,0.7071,0.7071,0.0,0.7071,0.6935,-0.1951,0.6935,0.5449,-0.1951,0.8155,0.7071,0.0,0.7071,0.5449,-0.1951,0.8155,0.5556,0.0,0.8315,0.5556,0.0,0.8315,0.5449,-0.1951,0.8155,0.3753,-0.1951,0.9061,0.5556,0.0,0.8315,0.3753,-0.1951,0.9061,0.3827,0.0,0.9239,0.3827,0.0,0.9239,0.3753,-0.1951,0.9061,0.1913,-0.1951,0.9619,0.3827,0.0,0.9239,0.1913,-0.1951,0.9619,0.1951,0.0,0.9808,0.1951,0.0,0.9808,0.1913,-0.1951,0.9619,0.0,-0.1951,0.9808,0.1951,0.0,0.9808,0.0,-0.1951,0.9808,0.0,0.0,1.0,0.0,-0.1951,0.9808,0.0,-0.3827,0.9239,-0.1802,-0.3827,0.9061,0.0,-0.1951,0.9808,-0.1802,-0.3827,0.9061,-0.1913,-0.1951,0.9619,-0.1913,-0.1951,0.9619,-0.1802,-0.3827,0.9061,-0.3536,-0.3827,0.8536,-0.1913,-0.1951,0.9619,-0.3536,-0.3827,0.8536,-0.3753,-0.1951,0.9061,-0.3753,-0.1951,0.9061,-0.3536,-0.3827,0.8536,-0.5133,-0.3827,0.7682,-0.3753,-0.1951,0.9061,-0.5133,-0.3827,0.7682,-0.5449,-0.1951,0.8155,-0.5449,-0.1951,0.8155,-0.5133,-0.3827,0.7682,-0.6533,-0.3827,0.6533,-0.5449,-0.1951,0.8155,-0.6533,-0.3827,0.6533,-0.6935,-0.1951,0.6935,-0.6935,-0.1951,0.6935,-0.6533,-0.3827,0.6533,-0.7682,-0.3827,0.5133,-0.6935,-0.1951,0.6935,-0.7682,-0.3827,0.5133,-0.8155,-0.1951,0.5449,-0.8155,-0.1951,0.5449,-0.7682,-0.3827,0.5133,-0.8536,-0.3827,0.3536,-0.8155,-0.1951,0.5449,-0.8536,-0.3827,0.3536,-0.9061,-0.1951,0.3753,-0.9061,-0.1951,0.3753,-0.8536,-0.3827,0.3536,-0.9061,-0.3827,0.1802,-0.9061,-0.1951,0.3753,-0.9061,-0.3827,0.1802,-0.9619,-0.1951,0.1913,-0.9619,-0.1951,0.1913,-0.9061,-0.3827,0.1802,-0.9239,-0.3827,0.0,-0.9619,-0.1951,0.1913,-0.9239,-0.3827,0.0,-0.9808,-0.1951,0.0,-0.9808,-0.1951,0.0,-0.9239,-0.3827,0.0,-0.9061,-0.3827,-0.1802,-0.9808,-0.1951,0.0,-0.9061,-0.3827,-0.1802,-0.9619,-0.1951,-0.1913,-0.9619,-0.1951,-0.1913,-0.9061,-0.3827,-0.1802,-0.8536,-0.3827,-0.3536,-0.9619,-0.1951,-0.1913,-0.8536,-0.3827,-0.3536,-0.9061,-0.1951,-0.3753,-0.9061,-0.1951,-0.3753,-0.8536,-0.3827,-0.3536,-0.7682,-0.3827,-0.5133,-0.9061,-0.1951,-0.3753,-0.7682,-0.3827,-0.5133,-0.8155,-0.1951,-0.5449,-0.8155,-0.1951,-0.5449,-0.7682,-0.3827,-0.5133,-0.6533,-0.3827,-0.6533,-0.8155,-0.1951,-0.5449,-0.6533,-0.3827,-0.6533,-0.6935,-0.1951,-0.6935,-0.6935,-0.1951,-0.6935,-0.6533,-0.3827,-0.6533,-0.5133,-0.3827,-0.7682,-0.6935,-0.1951,-0.6935,-0.5133,-0.3827,-0.7682,-0.5449,-0.1951,-0.8155,-0.5449,-0.1951,-0.8155,-0.5133,-0.3827,-0.7682,-0.3536,-0.3827,-0.8536,-0.5449,-0.1951,-0.8155,-0.3536,-0.3827,-0.8536,-0.3753,-0.1951,-0.9061,-0.3753,-0.1951,-0.9061,-0.3536,-0.3827,-0.8536,-0.1802,-0.3827,-0.9061,-0.3753,-0.1951,-0.9061,-0.1802,-0.3827,-0.9061,-0.1913,-0.1951,-0.9619,-0.1913,-0.1951,-0.9619,-0.1802,-0.3827,-0.9061,0.0,-0.3827,-0.9239,-0.1913,-0.1951,-0.9619,0.0,-0.3827,-0.9239,0.0,-0.1951,-0.9808,0.0,-0.1951,-0.9808,0.0,-0.3827,-0.9239,0.1802,-0.3827,-0.9061,0.0,-0.1951,-0.9808,0.1802,-0.3827,-0.9061,0.1913,-0.1951,-0.9619,0.1913,-0.1951,-0.9619,0.1802,-0.3827,-0.9061,0.3536,-0.3827,-0.8536,0.1913,-0.1951,-0.9619,0.3536,-0.3827,-0.8536,0.3753,-0.1951,-0.9061,0.3753,-0.1951,-0.9061,0.3536,-0.3827,-0.8536,0.5133,-0.3827,-0.7682,0.3753,-0.1951,-0.9061,0.5133,-0.3827,-0.7682,0.5449,-0.1951,-0.8155,0.5449,-0.1951,-0.8155,0.5133,-0.3827,-0.7682,0.6533,-0.3827,-0.6533,0.5449,-0.1951,-0.8155,0.6533,-0.3827,-0.6533,0.6935,-0.1951,-0.6935,0.6935,-0.1951,-0.6935,0.6533,-0.3827,-0.6533,0.7682,-0.3827,-0.5133,0.6935,-0.1951,-0.6935,0.7682,-0.3827,-0.5133,0.8155,-0.1951,-0.5449,0.8155,-0.1951,-0.5449,0.7682,-0.3827,-0.5133,0.8536,-0.3827,-0.3536,0.8155,-0.1951,-0.5449,0.8536,-0.3827,-0.3536,0.9061,-0.1951,-0.3753,0.9061,-0.1951,-0.3753,0.8536,-0.3827,-0.3536,0.9061,-0.3827,-0.1802,0.9061,-0.1951,-0.3753,0.9061,-0.3827,-0.1802,0.9619,-0.1951,-0.1913,0.9619,-0.1951,-0.1913,0.9061,-0.3827,-0.1802,0.9239,-0.3827,0.0,0.9619,-0.1951,-0.1913,0.9239,-0.3827,0.0,0.9808,-0.1951,0.0,0.9808,-0.1951,0.0,0.9239,-0.3827,0.0,0.9061,-0.3827,0.1802,0.9808,-0.1951,0.0,0.9061,-0.3827,0.1802,0.9619,-0.1951,0.1913,0.9619,-0.1951,0.1913,0.9061,-0.3827,0.1802,0.8536,-0.3827,0.3536,0.9619,-0.1951,0.1913,0.8536,-0.3827,0.3536,0.9061,-0.1951,0.3753,0.9061,-0.1951,0.3753,0.8536,-0.3827,0.3536,0.7682,-0.3827,0.5133,0.9061,-0.1951,0.3753,0.7682,-0.3827,0.5133,0.8155,-0.1951,0.5449,0.8155,-0.1951,0.5449,0.7682,-0.3827,0.5133,0.6533,-0.3827,0.6533,0.8155,-0.1951,0.5449,0.6533,-0.3827,0.6533,0.6935,-0.1951,0.6935,0.6935,-0.1951,0.6935,0.6533,-0.3827,0.6533,0.5133,-0.3827,0.7682,0.6935,-0.1951,0.6935,0.5133,-0.3827,0.7682,0.5449,-0.1951,0.8155,0.5449,-0.1951,0.8155,0.5133,-0.3827,0.7682,0.3536,-0.3827,0.8536,0.5449,-0.1951,0.8155,0.3536,-0.3827,0.8536,0.3753,-0.1951,0.9061,0.3753,-0.1951,0.9061,0.3536,-0.3827,0.8536,0.1802,-0.3827,0.9061,0.3753,-0.1951,0.9061,0.1802,-0.3827,0.9061,0.1913,-0.1951,0.9619,0.1913,-0.1951,0.9619,0.1802,-0.3827,0.9061,0.0,-0.3827,0.9239,0.1913,-0.1951,0.9619,0.0,-0.3827,0.9239,0.0,-0.1951,0.9808,0.0,-0.3827,0.9239,0.0,-0.5556,0.8315,-0.1622,-0.5556,0.8155,0.0,-0.3827,0.9239,-0.1622,-0.5556,0.8155,-0.1802,-0.3827,0.9061,-0.1802,-0.3827,0.9061,-0.1622,-0.5556,0.8155,-0.3182,-0.5556,0.7682,-0.1802,-0.3827,0.9061,-0.3182,-0.5556,0.7682,-0.3536,-0.3827,0.8536,-0.3536,-0.3827,0.8536,-0.3182,-0.5556,0.7682,-0.4619,-0.5556,0.6913,-0.3536,-0.3827,0.8536,-0.4619,-0.5556,0.6913,-0.5133,-0.3827,0.7682,-0.5133,-0.3827,0.7682,-0.4619,-0.5556,0.6913,-0.5879,-0.5556,0.5879,-0.5133,-0.3827,0.7682,-0.5879,-0.5556,0.5879,-0.6533,-0.3827,0.6533,-0.6533,-0.3827,0.6533,-0.5879,-0.5556,0.5879,-0.6913,-0.5556,0.4619,-0.6533,-0.3827,0.6533,-0.6913,-0.5556,0.4619,-0.7682,-0.3827,0.5133,-0.7682,-0.3827,0.5133,-0.6913,-0.5556,0.4619,-0.7682,-0.5556,0.3182,-0.7682,-0.3827,0.5133,-0.7682,-0.5556,0.3182,-0.8536,-0.3827,0.3536,-0.8536,-0.3827,0.3536,-0.7682,-0.5556,0.3182,-0.8155,-0.5556,0.1622,-0.8536,-0.3827,0.3536,-0.8155,-0.5556,0.1622,-0.9061,-0.3827,0.1802,-0.9061,-0.3827,0.1802,-0.8155,-0.5556,0.1622,-0.8315,-0.5556,0.0,-0.9061,-0.3827,0.1802,-0.8315,-0.5556,0.0,-0.9239,-0.3827,0.0,-0.9239,-0.3827,0.0,-0.8315,-0.5556,0.0,-0.8155,-0.5556,-0.1622,-0.9239,-0.3827,0.0,-0.8155,-0.5556,-0.1622,-0.9061,-0.3827,-0.1802,-0.9061,-0.3827,-0.1802,-0.8155,-0.5556,-0.1622,-0.7682,-0.5556,-0.3182,-0.9061,-0.3827,-0.1802,-0.7682,-0.5556,-0.3182,-0.8536,-0.3827,-0.3536,-0.8536,-0.3827,-0.3536,-0.7682,-0.5556,-0.3182,-0.6913,-0.5556,-0.4619,-0.8536,-0.3827,-0.3536,-0.6913,-0.5556,-0.4619,-0.7682,-0.3827,-0.5133,-0.7682,-0.3827,-0.5133,-0.6913,-0.5556,-0.4619,-0.5879,-0.5556,-0.5879,-0.7682,-0.3827,-0.5133,-0.5879,-0.5556,-0.5879,-0.6533,-0.3827,-0.6533,-0.6533,-0.3827,-0.6533,-0.5879,-0.5556,-0.5879,-0.4619,-0.5556,-0.6913,-0.6533,-0.3827,-0.6533,-0.4619,-0.5556,-0.6913,-0.5133,-0.3827,-0.7682,-0.5133,-0.3827,-0.7682,-0.4619,-0.5556,-0.6913,-0.3182,-0.5556,-0.7682,-0.5133,-0.3827,-0.7682,-0.3182,-0.5556,-0.7682,-0.3536,-0.3827,-0.8536,-0.3536,-0.3827,-0.8536,-0.3182,-0.5556,-0.7682,-0.1622,-0.5556,-0.8155,-0.3536,-0.3827,-0.8536,-0.1622,-0.5556,-0.8155,-0.1802,-0.3827,-0.9061,-0.1802,-0.3827,-0.9061,-0.1622,-0.5556,-0.8155,0.0,-0.5556,-0.8315,-0.1802,-0.3827,-0.9061,0.0,-0.5556,-0.8315,0.0,-0.3827,-0.9239,0.0,-0.3827,-0.9239,0.0,-0.5556,-0.8315,0.1622,-0.5556,-0.8155,0.0,-0.3827,-0.9239,0.1622,-0.5556,-0.8155,0.1802,-0.3827,-0.9061,0.1802,-0.3827,-0.9061,0.1622,-0.5556,-0.8155,0.3182,-0.5556,-0.7682,0.1802,-0.3827,-0.9061,0.3182,-0.5556,-0.7682,0.3536,-0.3827,-0.8536,0.3536,-0.3827,-0.8536,0.3182,-0.5556,-0.7682,0.4619,-0.5556,-0.6913,0.3536,-0.3827,-0.8536,0.4619,-0.5556,-0.6913,0.5133,-0.3827,-0.7682,0.5133,-0.3827,-0.7682,0.4619,-0.5556,-0.6913,0.5879,-0.5556,-0.5879,0.5133,-0.3827,-0.7682,0.5879,-0.5556,-0.5879,0.6533,-0.3827,-0.6533,0.6533,-0.3827,-0.6533,0.5879,-0.5556,-0.5879,0.6913,-0.5556,-0.4619,0.6533,-0.3827,-0.6533,0.6913,-0.5556,-0.4619,0.7682,-0.3827,-0.5133,0.7682,-0.3827,-0.5133,0.6913,-0.5556,-0.4619,0.7682,-0.5556,-0.3182,0.7682,-0.3827,-0.5133,0.7682,-0.5556,-0.3182,0.8536,-0.3827,-0.3536,0.8536,-0.3827,-0.3536,0.7682,-0.5556,-0.3182,0.8155,-0.5556,-0.1622,0.8536,-0.3827,-0.3536,0.8155,-0.5556,-0.1622,0.9061,-0.3827,-0.1802,0.9061,-0.3827,-0.1802,0.8155,-0.5556,-0.1622,0.8315,-0.5556,0.0,0.9061,-0.3827,-0.1802,0.8315,-0.5556,0.0,0.9239,-0.3827,0.0,0.9239,-0.3827,0.0,0.8315,-0.5556,0.0,0.8155,-0.5556,0.1622,0.9239,-0.3827,0.0,0.8155,-0.5556,0.1622,0.9061,-0.3827,0.1802,0.9061,-0.3827,0.1802,0.8155,-0.5556,0.1622,0.7682,-0.5556,0.3182,0.9061,-0.3827,0.1802,0.7682,-0.5556,0.3182,0.8536,-0.3827,0.3536,0.8536,-0.3827,0.3536,0.7682,-0.5556,0.3182,0.6913,-0.5556,0.4619,0.8536,-0.3827,0.3536,0.6913,-0.5556,0.4619,0.7682,-0.3827,0.5133,0.7682,-0.3827,0.5133,0.6913,-0.5556,0.4619,0.5879,-0.5556,0.5879,0.7682,-0.3827,0.5133,0.5879,-0.5556,0.5879,0.6533,-0.3827,0.6533,0.6533,-0.3827,0.6533,0.5879,-0.5556,0.5879,0.4619,-0.5556,0.6913,0.6533,-0.3827,0.6533,0.4619,-0.5556,0.6913,0.5133,-0.3827,0.7682,0.5133,-0.3827,0.7682,0.4619,-0.5556,0.6913,0.3182,-0.5556,0.7682,0.5133,-0.3827,0.7682,0.3182,-0.5556,0.7682,0.3536,-0.3827,0.8536,0.3536,-0.3827,0.8536,0.3182,-0.5556,0.7682,0.1622,-0.5556,0.8155,0.3536,-0.3827,0.8536,0.1622,-0.5556,0.8155,0.1802,-0.3827,0.9061,0.1802,-0.3827,0.9061,0.1622,-0.5556,0.8155,0.0,-0.5556,0.8315,0.1802,-0.3827,0.9061,0.0,-0.5556,0.8315,0.0,-0.3827,0.9239,0.0,-0.5556,0.8315,0.0,-0.7071,0.7071,-0.1379,-0.7071,0.6935,0.0,-0.5556,0.8315,-0.1379,-0.7071,0.6935,-0.1622,-0.5556,0.8155,-0.1622,-0.5556,0.8155,-0.1379,-0.7071,0.6935,-0.2706,-0.7071,0.6533,-0.1622,-0.5556,0.8155,-0.2706,-0.7071,0.6533,-0.3182,-0.5556,0.7682,-0.3182,-0.5556,0.7682,-0.2706,-0.7071,0.6533,-0.3928,-0.7071,0.5879,-0.3182,-0.5556,0.7682,-0.3928,-0.7071,0.5879,-0.4619,-0.5556,0.6913,-0.4619,-0.5556,0.6913,-0.3928,-0.7071,0.5879,-0.5,-0.7071,0.5,-0.4619,-0.5556,0.6913,-0.5,-0.7071,0.5,-0.5879,-0.5556,0.5879,-0.5879,-0.5556,0.5879,-0.5,-0.7071,0.5,-0.5879,-0.7071,0.3928,-0.5879,-0.5556,0.5879,-0.5879,-0.7071,0.3928,-0.6913,-0.5556,0.4619,-0.6913,-0.5556,0.4619,-0.5879,-0.7071,0.3928,-0.6533,-0.7071,0.2706,-0.6913,-0.5556,0.4619,-0.6533,-0.7071,0.2706,-0.7682,-0.5556,0.3182,-0.7682,-0.5556,0.3182,-0.6533,-0.7071,0.2706,-0.6935,-0.7071,0.1379,-0.7682,-0.5556,0.3182,-0.6935,-0.7071,0.1379,-0.8155,-0.5556,0.1622,-0.8155,-0.5556,0.1622,-0.6935,-0.7071,0.1379,-0.7071,-0.7071,0.0,-0.8155,-0.5556,0.1622,-0.7071,-0.7071,0.0,-0.8315,-0.5556,0.0,-0.8315,-0.5556,0.0,-0.7071,-0.7071,0.0,-0.6935,-0.7071,-0.1379,-0.8315,-0.5556,0.0,-0.6935,-0.7071,-0.1379,-0.8155,-0.5556,-0.1622,-0.8155,-0.5556,-0.1622,-0.6935,-0.7071,-0.1379,-0.6533,-0.7071,-0.2706,-0.8155,-0.5556,-0.1622,-0.6533,-0.7071,-0.2706,-0.7682,-0.5556,-0.3182,-0.7682,-0.5556,-0.3182,-0.6533,-0.7071,-0.2706,-0.5879,-0.7071,-0.3928,-0.7682,-0.5556,-0.3182,-0.5879,-0.7071,-0.3928,-0.6913,-0.5556,-0.4619,-0.6913,-0.5556,-0.4619,-0.5879,-0.7071,-0.3928,-0.5,-0.7071,-0.5,-0.6913,-0.5556,-0.4619,-0.5,-0.7071,-0.5,-0.5879,-0.5556,-0.5879,-0.5879,-0.5556,-0.5879,-0.5,-0.7071,-0.5,-0.3928,-0.7071,-0.5879,-0.5879,-0.5556,-0.5879,-0.3928,-0.7071,-0.5879,-0.4619,-0.5556,-0.6913,-0.4619,-0.5556,-0.6913,-0.3928,-0.7071,-0.5879,-0.2706,-0.7071,-0.6533,-0.4619,-0.5556,-0.6913,-0.2706,-0.7071,-0.6533,-0.3182,-0.5556,-0.7682,-0.3182,-0.5556,-0.7682,-0.2706,-0.7071,-0.6533,-0.1379,-0.7071,-0.6935,-0.3182,-0.5556,-0.7682,-0.1379,-0.7071,-0.6935,-0.1622,-0.5556,-0.8155,-0.1622,-0.5556,-0.8155,-0.1379,-0.7071,-0.6935,0.0,-0.7071,-0.7071,-0.1622,-0.5556,-0.8155,0.0,-0.7071,-0.7071,0.0,-0.5556,-0.8315,0.0,-0.5556,-0.8315,0.0,-0.7071,-0.7071,0.138,-0.7071,-0.6935,0.0,-0.5556,-0.8315,0.138,-0.7071,-0.6935,0.1622,-0.5556,-0.8155,0.1622,-0.5556,-0.8155,0.138,-0.7071,-0.6935,0.2706,-0.7071,-0.6533,0.1622,-0.5556,-0.8155,0.2706,-0.7071,-0.6533,0.3182,-0.5556,-0.7682,0.3182,-0.5556,-0.7682,0.2706,-0.7071,-0.6533,0.3928,-0.7071,-0.5879,0.3182,-0.5556,-0.7682,0.3928,-0.7071,-0.5879,0.4619,-0.5556,-0.6913,0.4619,-0.5556,-0.6913,0.3928,-0.7071,-0.5879,0.5,-0.7071,-0.5,0.4619,-0.5556,-0.6913,0.5,-0.7071,-0.5,0.5879,-0.5556,-0.5879,0.5879,-0.5556,-0.5879,0.5,-0.7071,-0.5,0.5879,-0.7071,-0.3928,0.5879,-0.5556,-0.5879,0.5879,-0.7071,-0.3928,0.6913,-0.5556,-0.4619,0.6913,-0.5556,-0.4619,0.5879,-0.7071,-0.3928,0.6533,-0.7071,-0.2706,0.6913,-0.5556,-0.4619,0.6533,-0.7071,-0.2706,0.7682,-0.5556,-0.3182,0.7682,-0.5556,-0.3182,0.6533,-0.7071,-0.2706,0.6935,-0.7071,-0.1379,0.7682,-0.5556,-0.3182,0.6935,-0.7071,-0.1379,0.8155,-0.5556,-0.1622,0.8155,-0.5556,-0.1622,0.6935,-0.7071,-0.1379,0.7071,-0.7071,0.0,0.8155,-0.5556,-0.1622,0.7071,-0.7071,0.0,0.8315,-0.5556,0.0,0.8315,-0.5556,0.0,0.7071,-0.7071,0.0,0.6935,-0.7071,0.138,0.8315,-0.5556,0.0,0.6935,-0.7071,0.138,0.8155,-0.5556,0.1622,0.8155,-0.5556,0.1622,0.6935,-0.7071,0.138,0.6533,-0.7071,0.2706,0.8155,-0.5556,0.1622,0.6533,-0.7071,0.2706,0.7682,-0.5556,0.3182,0.7682,-0.5556,0.3182,0.6533,-0.7071,0.2706,0.5879,-0.7071,0.3928,0.7682,-0.5556,0.3182,0.5879,-0.7071,0.3928,0.6913,-0.5556,0.4619,0.6913,-0.5556,0.4619,0.5879,-0.7071,0.3928,0.5,-0.7071,0.5,0.6913,-0.5556,0.4619,0.5,-0.7071,0.5,0.5879,-0.5556,0.5879,0.5879,-0.5556,0.5879,0.5,-0.7071,0.5,0.3928,-0.7071,0.5879,0.5879,-0.5556,0.5879,0.3928,-0.7071,0.5879,0.4619,-0.5556,0.6913,0.4619,-0.5556,0.6913,0.3928,-0.7071,0.5879,0.2706,-0.7071,0.6533,0.4619,-0.5556,0.6913,0.2706,-0.7071,0.6533,0.3182,-0.5556,0.7682,0.3182,-0.5556,0.7682,0.2706,-0.7071,0.6533,0.1379,-0.7071,0.6935,0.3182,-0.5556,0.7682,0.1379,-0.7071,0.6935,0.1622,-0.5556,0.8155,0.1622,-0.5556,0.8155,0.1379,-0.7071,0.6935,0.0,-0.7071,0.7071,0.1622,-0.5556,0.8155,0.0,-0.7071,0.7071,0.0,-0.5556,0.8315,0.0,-0.7071,0.7071,0.0,-0.8315,0.5556,-0.1084,-0.8315,0.5449,0.0,-0.7071,0.7071,-0.1084,-0.8315,0.5449,-0.1379,-0.7071,0.6935,-0.1379,-0.7071,0.6935,-0.1084,-0.8315,0.5449,-0.2126,-0.8315,0.5133,-0.1379,-0.7071,0.6935,-0.2126,-0.8315,0.5133,-0.2706,-0.7071,0.6533,-0.2706,-0.7071,0.6533,-0.2126,-0.8315,0.5133,-0.3087,-0.8315,0.4619,-0.2706,-0.7071,0.6533,-0.3087,-0.8315,0.4619,-0.3928,-0.7071,0.5879,-0.3928,-0.7071,0.5879,-0.3087,-0.8315,0.4619,-0.3928,-0.8315,0.3928,-0.3928,-0.7071,0.5879,-0.3928,-0.8315,0.3928,-0.5,-0.7071,0.5,-0.5,-0.7071,0.5,-0.3928,-0.8315,0.3928,-0.4619,-0.8315,0.3087,-0.5,-0.7071,0.5,-0.4619,-0.8315,0.3087,-0.5879,-0.7071,0.3928,-0.5879,-0.7071,0.3928,-0.4619,-0.8315,0.3087,-0.5133,-0.8315,0.2126,-0.5879,-0.7071,0.3928,-0.5133,-0.8315,0.2126,-0.6533,-0.7071,0.2706,-0.6533,-0.7071,0.2706,-0.5133,-0.8315,0.2126,-0.5449,-0.8315,0.1084,-0.6533,-0.7071,0.2706,-0.5449,-0.8315,0.1084,-0.6935,-0.7071,0.1379,-0.6935,-0.7071,0.1379,-0.5449,-0.8315,0.1084,-0.5556,-0.8315,0.0,-0.6935,-0.7071,0.1379,-0.5556,-0.8315,0.0,-0.7071,-0.7071,0.0,-0.7071,-0.7071,0.0,-0.5556,-0.8315,0.0,-0.5449,-0.8315,-0.1084,-0.7071,-0.7071,0.0,-0.5449,-0.8315,-0.1084,-0.6935,-0.7071,-0.1379,-0.6935,-0.7071,-0.1379,-0.5449,-0.8315,-0.1084,-0.5133,-0.8315,-0.2126,-0.6935,-0.7071,-0.1379,-0.5133,-0.8315,-0.2126,-0.6533,-0.7071,-0.2706,-0.6533,-0.7071,-0.2706,-0.5133,-0.8315,-0.2126,-0.4619,-0.8315,-0.3087,-0.6533,-0.7071,-0.2706,-0.4619,-0.8315,-0.3087,-0.5879,-0.7071,-0.3928,-0.5879,-0.7071,-0.3928,-0.4619,-0.8315,-0.3087,-0.3928,-0.8315,-0.3928,-0.5879,-0.7071,-0.3928,-0.3928,-0.8315,-0.3928,-0.5,-0.7071,-0.5,-0.5,-0.7071,-0.5,-0.3928,-0.8315,-0.3928,-0.3087,-0.8315,-0.4619,-0.5,-0.7071,-0.5,-0.3087,-0.8315,-0.4619,-0.3928,-0.7071,-0.5879,-0.3928,-0.7071,-0.5879,-0.3087,-0.8315,-0.4619,-0.2126,-0.8315,-0.5133,-0.3928,-0.7071,-0.5879,-0.2126,-0.8315,-0.5133,-0.2706,-0.7071,-0.6533,-0.2706,-0.7071,-0.6533,-0.2126,-0.8315,-0.5133,-0.1084,-0.8315,-0.5449,-0.2706,-0.7071,-0.6533,-0.1084,-0.8315,-0.5449,-0.1379,-0.7071,-0.6935,-0.1379,-0.7071,-0.6935,-0.1084,-0.8315,-0.5449,0.0,-0.8315,-0.5556,-0.1379,-0.7071,-0.6935,0.0,-0.8315,-0.5556,0.0,-0.7071,-0.7071,0.0,-0.7071,-0.7071,0.0,-0.8315,-0.5556,0.1084,-0.8315,-0.5449,0.0,-0.7071,-0.7071,0.1084,-0.8315,-0.5449,0.138,-0.7071,-0.6935,0.138,-0.7071,-0.6935,0.1084,-0.8315,-0.5449,0.2126,-0.8315,-0.5133,0.138,-0.7071,-0.6935,0.2126,-0.8315,-0.5133,0.2706,-0.7071,-0.6533,0.2706,-0.7071,-0.6533,0.2126,-0.8315,-0.5133,0.3087,-0.8315,-0.4619,0.2706,-0.7071,-0.6533,0.3087,-0.8315,-0.4619,0.3928,-0.7071,-0.5879,0.3928,-0.7071,-0.5879,0.3087,-0.8315,-0.4619,0.3928,-0.8315,-0.3928,0.3928,-0.7071,-0.5879,0.3928,-0.8315,-0.3928,0.5,-0.7071,-0.5,0.5,-0.7071,-0.5,0.3928,-0.8315,-0.3928,0.4619,-0.8315,-0.3087,0.5,-0.7071,-0.5,0.4619,-0.8315,-0.3087,0.5879,-0.7071,-0.3928,0.5879,-0.7071,-0.3928,0.4619,-0.8315,-0.3087,0.5133,-0.8315,-0.2126,0.5879,-0.7071,-0.3928,0.5133,-0.8315,-0.2126,0.6533,-0.7071,-0.2706,0.6533,-0.7071,-0.2706,0.5133,-0.8315,-0.2126,0.5449,-0.8315,-0.1084,0.6533,-0.7071,-0.2706,0.5449,-0.8315,-0.1084,0.6935,-0.7071,-0.1379,0.6935,-0.7071,-0.1379,0.5449,-0.8315,-0.1084,0.5556,-0.8315,0.0,0.6935,-0.7071,-0.1379,0.5556,-0.8315,0.0,0.7071,-0.7071,0.0,0.7071,-0.7071,0.0,0.5556,-0.8315,0.0,0.5449,-0.8315,0.1084,0.7071,-0.7071,0.0,0.5449,-0.8315,0.1084,0.6935,-0.7071,0.138,0.6935,-0.7071,0.138,0.5449,-0.8315,0.1084,0.5133,-0.8315,0.2126,0.6935,-0.7071,0.138,0.5133,-0.8315,0.2126,0.6533,-0.7071,0.2706,0.6533,-0.7071,0.2706,0.5133,-0.8315,0.2126,0.4619,-0.8315,0.3087,0.6533,-0.7071,0.2706,0.4619,-0.8315,0.3087,0.5879,-0.7071,0.3928,0.5879,-0.7071,0.3928,0.4619,-0.8315,0.3087,0.3928,-0.8315,0.3928,0.5879,-0.7071,0.3928,0.3928,-0.8315,0.3928,0.5,-0.7071,0.5,0.5,-0.7071,0.5,0.3928,-0.8315,0.3928,0.3087,-0.8315,0.4619,0.5,-0.7071,0.5,0.3087,-0.8315,0.4619,0.3928,-0.7071,0.5879,0.3928,-0.7071,0.5879,0.3087,-0.8315,0.4619,0.2126,-0.8315,0.5133,0.3928,-0.7071,0.5879,0.2126,-0.8315,0.5133,0.2706,-0.7071,0.6533,0.2706,-0.7071,0.6533,0.2126,-0.8315,0.5133,0.1084,-0.8315,0.5449,0.2706,-0.7071,0.6533,0.1084,-0.8315,0.5449,0.1379,-0.7071,0.6935,0.1379,-0.7071,0.6935,0.1084,-0.8315,0.5449,0.0,-0.8315,0.5556,0.1379,-0.7071,0.6935,0.0,-0.8315,0.5556,0.0,-0.7071,0.7071,0.0,-0.8315,0.5556,0.0,-0.9239,0.3827,-0.0747,-0.9239,0.3753,0.0,-0.8315,0.5556,-0.0747,-0.9239,0.3753,-0.1084,-0.8315,0.5449,-0.1084,-0.8315,0.5449,-0.0747,-0.9239,0.3753,-0.1464,-0.9239,0.3536,-0.1084,-0.8315,0.5449,-0.1464,-0.9239,0.3536,-0.2126,-0.8315,0.5133,-0.2126,-0.8315,0.5133,-0.1464,-0.9239,0.3536,-0.2126,-0.9239,0.3182,-0.2126,-0.8315,0.5133,-0.2126,-0.9239,0.3182,-0.3087,-0.8315,0.4619,-0.3087,-0.8315,0.4619,-0.2126,-0.9239,0.3182,-0.2706,-0.9239,0.2706,-0.3087,-0.8315,0.4619,-0.2706,-0.9239,0.2706,-0.3928,-0.8315,0.3928,-0.3928,-0.8315,0.3928,-0.2706,-0.9239,0.2706,-0.3182,-0.9239,0.2126,-0.3928,-0.8315,0.3928,-0.3182,-0.9239,0.2126,-0.4619,-0.8315,0.3087,-0.4619,-0.8315,0.3087,-0.3182,-0.9239,0.2126,-0.3536,-0.9239,0.1464,-0.4619,-0.8315,0.3087,-0.3536,-0.9239,0.1464,-0.5133,-0.8315,0.2126,-0.5133,-0.8315,0.2126,-0.3536,-0.9239,0.1464,-0.3753,-0.9239,0.0747,-0.5133,-0.8315,0.2126,-0.3753,-0.9239,0.0747,-0.5449,-0.8315,0.1084,-0.5449,-0.8315,0.1084,-0.3753,-0.9239,0.0747,-0.3827,-0.9239,0.0,-0.5449,-0.8315,0.1084,-0.3827,-0.9239,0.0,-0.5556,-0.8315,0.0,-0.5556,-0.8315,0.0,-0.3827,-0.9239,0.0,-0.3753,-0.9239,-0.0747,-0.5556,-0.8315,0.0,-0.3753,-0.9239,-0.0747,-0.5449,-0.8315,-0.1084,-0.5449,-0.8315,-0.1084,-0.3753,-0.9239,-0.0747,-0.3536,-0.9239,-0.1464,-0.5449,-0.8315,-0.1084,-0.3536,-0.9239,-0.1464,-0.5133,-0.8315,-0.2126,-0.5133,-0.8315,-0.2126,-0.3536,-0.9239,-0.1464,-0.3182,-0.9239,-0.2126,-0.5133,-0.8315,-0.2126,-0.3182,-0.9239,-0.2126,-0.4619,-0.8315,-0.3087,-0.4619,-0.8315,-0.3087,-0.3182,-0.9239,-0.2126,-0.2706,-0.9239,-0.2706,-0.4619,-0.8315,-0.3087,-0.2706,-0.9239,-0.2706,-0.3928,-0.8315,-0.3928,-0.3928,-0.8315,-0.3928,-0.2706,-0.9239,-0.2706,-0.2126,-0.9239,-0.3182,-0.3928,-0.8315,-0.3928,-0.2126,-0.9239,-0.3182,-0.3087,-0.8315,-0.4619,-0.3087,-0.8315,-0.4619,-0.2126,-0.9239,-0.3182,-0.1464,-0.9239,-0.3536,-0.3087,-0.8315,-0.4619,-0.1464,-0.9239,-0.3536,-0.2126,-0.8315,-0.5133,-0.2126,-0.8315,-0.5133,-0.1464,-0.9239,-0.3536,-0.0747,-0.9239,-0.3753,-0.2126,-0.8315,-0.5133,-0.0747,-0.9239,-0.3753,-0.1084,-0.8315,-0.5449,-0.1084,-0.8315,-0.5449,-0.0747,-0.9239,-0.3753,0.0,-0.9239,-0.3827,-0.1084,-0.8315,-0.5449,0.0,-0.9239,-0.3827,0.0,-0.8315,-0.5556,0.0,-0.8315,-0.5556,0.0,-0.9239,-0.3827,0.0747,-0.9239,-0.3753,0.0,-0.8315,-0.5556,0.0747,-0.9239,-0.3753,0.1084,-0.8315,-0.5449,0.1084,-0.8315,-0.5449,0.0747,-0.9239,-0.3753,0.1464,-0.9239,-0.3536,0.1084,-0.8315,-0.5449,0.1464,-0.9239,-0.3536,0.2126,-0.8315,-0.5133,0.2126,-0.8315,-0.5133,0.1464,-0.9239,-0.3536,0.2126,-0.9239,-0.3182,0.2126,-0.8315,-0.5133,0.2126,-0.9239,-0.3182,0.3087,-0.8315,-0.4619,0.3087,-0.8315,-0.4619,0.2126,-0.9239,-0.3182,0.2706,-0.9239,-0.2706,0.3087,-0.8315,-0.4619,0.2706,-0.9239,-0.2706,0.3928,-0.8315,-0.3928,0.3928,-0.8315,-0.3928,0.2706,-0.9239,-0.2706,0.3182,-0.9239,-0.2126,0.3928,-0.8315,-0.3928,0.3182,-0.9239,-0.2126,0.4619,-0.8315,-0.3087,0.4619,-0.8315,-0.3087,0.3182,-0.9239,-0.2126,0.3536,-0.9239,-0.1464,0.4619,-0.8315,-0.3087,0.3536,-0.9239,-0.1464,0.5133,-0.8315,-0.2126,0.5133,-0.8315,-0.2126,0.3536,-0.9239,-0.1464,0.3753,-0.9239,-0.0747,0.5133,-0.8315,-0.2126,0.3753,-0.9239,-0.0747,0.5449,-0.8315,-0.1084,0.5449,-0.8315,-0.1084,0.3753,-0.9239,-0.0747,0.3827,-0.9239,0.0,0.5449,-0.8315,-0.1084,0.3827,-0.9239,0.0,0.5556,-0.8315,0.0,0.5556,-0.8315,0.0,0.3827,-0.9239,0.0,0.3753,-0.9239,0.0747,0.5556,-0.8315,0.0,0.3753,-0.9239,0.0747,0.5449,-0.8315,0.1084,0.5449,-0.8315,0.1084,0.3753,-0.9239,0.0747,0.3536,-0.9239,0.1464,0.5449,-0.8315,0.1084,0.3536,-0.9239,0.1464,0.5133,-0.8315,0.2126,0.5133,-0.8315,0.2126,0.3536,-0.9239,0.1464,0.3182,-0.9239,0.2126,0.5133,-0.8315,0.2126,0.3182,-0.9239,0.2126,0.4619,-0.8315,0.3087,0.4619,-0.8315,0.3087,0.3182,-0.9239,0.2126,0.2706,-0.9239,0.2706,0.4619,-0.8315,0.3087,0.2706,-0.9239,0.2706,0.3928,-0.8315,0.3928,0.3928,-0.8315,0.3928,0.2706,-0.9239,0.2706,0.2126,-0.9239,0.3182,0.3928,-0.8315,0.3928,0.2126,-0.9239,0.3182,0.3087,-0.8315,0.4619,0.3087,-0.8315,0.4619,0.2126,-0.9239,0.3182,0.1464,-0.9239,0.3536,0.3087,-0.8315,0.4619,0.1464,-0.9239,0.3536,0.2126,-0.8315,0.5133,0.2126,-0.8315,0.5133,0.1464,-0.9239,0.3536,0.0747,-0.9239,0.3753,0.2126,-0.8315,0.5133,0.0747,-0.9239,0.3753,0.1084,-0.8315,0.5449,0.1084,-0.8315,0.5449,0.0747,-0.9239,0.3753,0.0,-0.9239,0.3827,0.1084,-0.8315,0.5449,0.0,-0.9239,0.3827,0.0,-0.8315,0.5556,0.0,-0.9239,0.3827,0.0,-0.9808,0.1951,-0.0381,-0.9808,0.1913,0.0,-0.9239,0.3827,-0.0381,-0.9808,0.1913,-0.0747,-0.9239,0.3753,-0.0747,-0.9239,0.3753,-0.0381,-0.9808,0.1913,-0.0747,-0.9808,0.1802,-0.0747,-0.9239,0.3753,-0.0747,-0.9808,0.1802,-0.1464,-0.9239,0.3536,-0.1464,-0.9239,0.3536,-0.0747,-0.9808,0.1802,-0.1084,-0.9808,0.1622,-0.1464,-0.9239,0.3536,-0.1084,-0.9808,0.1622,-0.2126,-0.9239,0.3182,-0.2126,-0.9239,0.3182,-0.1084,-0.9808,0.1622,-0.1379,-0.9808,0.1379,-0.2126,-0.9239,0.3182,-0.1379,-0.9808,0.1379,-0.2706,-0.9239,0.2706,-0.2706,-0.9239,0.2706,-0.1379,-0.9808,0.1379,-0.1622,-0.9808,0.1084,-0.2706,-0.9239,0.2706,-0.1622,-0.9808,0.1084,-0.3182,-0.9239,0.2126,-0.3182,-0.9239,0.2126,-0.1622,-0.9808,0.1084,-0.1802,-0.9808,0.0747,-0.3182,-0.9239,0.2126,-0.1802,-0.9808,0.0747,-0.3536,-0.9239,0.1464,-0.3536,-0.9239,0.1464,-0.1802,-0.9808,0.0747,-0.1913,-0.9808,0.0381,-0.3536,-0.9239,0.1464,-0.1913,-0.9808,0.0381,-0.3753,-0.9239,0.0747,-0.3753,-0.9239,0.0747,-0.1913,-0.9808,0.0381,-0.1951,-0.9808,0.0,-0.3753,-0.9239,0.0747,-0.1951,-0.9808,0.0,-0.3827,-0.9239,0.0,-0.3827,-0.9239,0.0,-0.1951,-0.9808,0.0,-0.1913,-0.9808,-0.0381,-0.3827,-0.9239,0.0,-0.1913,-0.9808,-0.0381,-0.3753,-0.9239,-0.0747,-0.3753,-0.9239,-0.0747,-0.1913,-0.9808,-0.0381,-0.1802,-0.9808,-0.0747,-0.3753,-0.9239,-0.0747,-0.1802,-0.9808,-0.0747,-0.3536,-0.9239,-0.1464,-0.3536,-0.9239,-0.1464,-0.1802,-0.9808,-0.0747,-0.1622,-0.9808,-0.1084,-0.3536,-0.9239,-0.1464,-0.1622,-0.9808,-0.1084,-0.3182,-0.9239,-0.2126,-0.3182,-0.9239,-0.2126,-0.1622,-0.9808,-0.1084,-0.1379,-0.9808,-0.1379,-0.3182,-0.9239,-0.2126,-0.1379,-0.9808,-0.1379,-0.2706,-0.9239,-0.2706,-0.2706,-0.9239,-0.2706,-0.1379,-0.9808,-0.1379,-0.1084,-0.9808,-0.1622,-0.2706,-0.9239,-0.2706,-0.1084,-0.9808,-0.1622,-0.2126,-0.9239,-0.3182,-0.2126,-0.9239,-0.3182,-0.1084,-0.9808,-0.1622,-0.0747,-0.9808,-0.1802,-0.2126,-0.9239,-0.3182,-0.0747,-0.9808,-0.1802,-0.1464,-0.9239,-0.3536,-0.1464,-0.9239,-0.3536,-0.0747,-0.9808,-0.1802,-0.0381,-0.9808,-0.1913,-0.1464,-0.9239,-0.3536,-0.0381,-0.9808,-0.1913,-0.0747,-0.9239,-0.3753,-0.0747,-0.9239,-0.3753,-0.0381,-0.9808,-0.1913,0.0,-0.9808,-0.1951,-0.0747,-0.9239,-0.3753,0.0,-0.9808,-0.1951,0.0,-0.9239,-0.3827,0.0,-0.9239,-0.3827,0.0,-0.9808,-0.1951,0.0381,-0.9808,-0.1913,0.0,-0.9239,-0.3827,0.0381,-0.9808,-0.1913,0.0747,-0.9239,-0.3753,0.0747,-0.9239,-0.3753,0.0381,-0.9808,-0.1913,0.0747,-0.9808,-0.1802,0.0747,-0.9239,-0.3753,0.0747,-0.9808,-0.1802,0.1464,-0.9239,-0.3536,0.1464,-0.9239,-0.3536,0.0747,-0.9808,-0.1802,0.1084,-0.9808,-0.1622,0.1464,-0.9239,-0.3536,0.1084,-0.9808,-0.1622,0.2126,-0.9239,-0.3182,0.2126,-0.9239,-0.3182,0.1084,-0.9808,-0.1622,0.1379,-0.9808,-0.1379,0.2126,-0.9239,-0.3182,0.1379,-0.9808,-0.1379,0.2706,-0.9239,-0.2706,0.2706,-0.9239,-0.2706,0.1379,-0.9808,-0.1379,0.1622,-0.9808,-0.1084,0.2706,-0.9239,-0.2706,0.1622,-0.9808,-0.1084,0.3182,-0.9239,-0.2126,0.3182,-0.9239,-0.2126,0.1622,-0.9808,-0.1084,0.1802,-0.9808,-0.0747,0.3182,-0.9239,-0.2126,0.1802,-0.9808,-0.0747,0.3536,-0.9239,-0.1464,0.3536,-0.9239,-0.1464,0.1802,-0.9808,-0.0747,0.1913,-0.9808,-0.0381,0.3536,-0.9239,-0.1464,0.1913,-0.9808,-0.0381,0.3753,-0.9239,-0.0747,0.3753,-0.9239,-0.0747,0.1913,-0.9808,-0.0381,0.1951,-0.9808,0.0,0.3753,-0.9239,-0.0747,0.1951,-0.9808,0.0,0.3827,-0.9239,0.0,0.3827,-0.9239,0.0,0.1951,-0.9808,0.0,0.1913,-0.9808,0.0381,0.3827,-0.9239,0.0,0.1913,-0.9808,0.0381,0.3753,-0.9239,0.0747,0.3753,-0.9239,0.0747,0.1913,-0.9808,0.0381,0.1802,-0.9808,0.0747,0.3753,-0.9239,0.0747,0.1802,-0.9808,0.0747,0.3536,-0.9239,0.1464,0.3536,-0.9239,0.1464,0.1802,-0.9808,0.0747,0.1622,-0.9808,0.1084,0.3536,-0.9239,0.1464,0.1622,-0.9808,0.1084,0.3182,-0.9239,0.2126,0.3182,-0.9239,0.2126,0.1622,-0.9808,0.1084,0.1379,-0.9808,0.1379,0.3182,-0.9239,0.2126,0.1379,-0.9808,0.1379,0.2706,-0.9239,0.2706,0.2706,-0.9239,0.2706,0.1379,-0.9808,0.1379,0.1084,-0.9808,0.1622,0.2706,-0.9239,0.2706,0.1084,-0.9808,0.1622,0.2126,-0.9239,0.3182,0.2126,-0.9239,0.3182,0.1084,-0.9808,0.1622,0.0747,-0.9808,0.1802,0.2126,-0.9239,0.3182,0.0747,-0.9808,0.1802,0.1464,-0.9239,0.3536,0.1464,-0.9239,0.3536,0.0747,-0.9808,0.1802,0.0381,-0.9808,0.1913,0.1464,-0.9239,0.3536,0.0381,-0.9808,0.1913,0.0747,-0.9239,0.3753,0.0747,-0.9239,0.3753,0.0381,-0.9808,0.1913,0.0,-0.9808,0.1951,0.0747,-0.9239,0.3753,0.0,-0.9808,0.1951,0.0,-0.9239,0.3827,0.0,-1.0,0.0,-0.0381,-0.9808,0.1913,0.0,-0.9808,0.1951,0.0,-1.0,0.0,-0.0747,-0.9808,0.1802,-0.0381,-0.9808,0.1913,0.0,-1.0,0.0,-0.1084,-0.9808,0.1622,-0.0747,-0.9808,0.1802,0.0,-1.0,0.0,-0.1379,-0.9808,0.1379,-0.1084,-0.9808,0.1622,0.0,-1.0,0.0,-0.1622,-0.9808,0.1084,-0.1379,-0.9808,0.1379,0.0,-1.0,0.0,-0.1802,-0.9808,0.0747,-0.1622,-0.9808,0.1084,0.0,-1.0,0.0,-0.1913,-0.9808,0.0381,-0.1802,-0.9808,0.0747,0.0,-1.0,0.0,-0.1951,-0.9808,0.0,-0.1913,-0.9808,0.0381,0.0,-1.0,0.0,-0.1913,-0.9808,-0.0381,-0.1951,-0.9808,0.0,0.0,-1.0,0.0,-0.1802,-0.9808,-0.0747,-0.1913,-0.9808,-0.0381,0.0,-1.0,0.0,-0.1622,-0.9808,-0.1084,-0.1802,-0.9808,-0.0747,0.0,-1.0,0.0,-0.1379,-0.9808,-0.1379,-0.1622,-0.9808,-0.1084,0.0,-1.0,0.0,-0.1084,-0.9808,-0.1622,-0.1379,-0.9808,-0.1379,0.0,-1.0,0.0,-0.0747,-0.9808,-0.1802,-0.1084,-0.9808,-0.1622,0.0,-1.0,0.0,-0.0381,-0.9808,-0.1913,-0.0747,-0.9808,-0.1802,0.0,-1.0,0.0,0.0,-0.9808,-0.1951,-0.0381,-0.9808,-0.1913,0.0,-1.0,0.0,0.0381,-0.9808,-0.1913,0.0,-0.9808,-0.1951,0.0,-1.0,0.0,0.0747,-0.9808,-0.1802,0.0381,-0.9808,-0.1913,0.0,-1.0,0.0,0.1084,-0.9808,-0.1622,0.0747,-0.9808,-0.1802,0.0,-1.0,0.0,0.1379,-0.9808,-0.1379,0.1084,-0.9808,-0.1622,0.0,-1.0,0.0,0.1622,-0.9808,-0.1084,0.1379,-0.9808,-0.1379,0.0,-1.0,0.0,0.1802,-0.9808,-0.0747,0.1622,-0.9808,-0.1084,0.0,-1.0,0.0,0.1913,-0.9808,-0.0381,0.1802,-0.9808,-0.0747,0.0,-1.0,0.0,0.1951,-0.9808,0.0,0.1913,-0.9808,-0.0381,0.0,-1.0,0.0,0.1913,-0.9808,0.0381,0.1951,-0.9808,0.0,0.0,-1.0,0.0,0.1802,-0.9808,0.0747,0.1913,-0.9808,0.0381,0.0,-1.0,0.0,0.1622,-0.9808,0.1084,0.1802,-0.9808,0.0747,0.0,-1.0,0.0,0.1379,-0.9808,0.1379,0.1622,-0.9808,0.1084,0.0,-1.0,0.0,0.1084,-0.9808,0.1622,0.1379,-0.9808,0.1379,0.0,-1.0,0.0,0.0747,-0.9808,0.1802,0.1084,-0.9808,0.1622,0.0,-1.0,0.0,0.0381,-0.9808,0.1913,0.0747,-0.9808,0.1802,0.0,-1.0,0.0,0.0,-0.9808,0.1951,0.0381,-0.9808,0.1913],"normals":[0.0,1.0,0.0,0.0,0.9796,0.201,-0.0392,0.9796,0.1971,0.0,1.0,0.0,-0.0392,0.9796,0.1971,-0.0769,0.9796,0.1857,0.0,1.0,0.0,-0.0769,0.9796,0.1857,-0.1117,0.9796,0.1671,0.0,1.0,0.0,-0.1117,0.9796,0.1671,-0.1421,0.9796,0.1421,0.0,1.0,0.0,-0.1421,0.9796,0.1421,-0.1671,0.9796,0.1117,0.0,1.0,0.0,-0.1671,0.9796,0.1117,-0.1857,0.9796,0.0769,0.0,1.0,0.0,-0.1857,0.9796,0.0769,-0.1971,0.9796,0.0392,0.0,1.0,0.0,-0.1971,0.9796,0.0392,-0.201,0.9796,0.0,0.0,1.0,0.0,-0.201,0.9796,0.0,-0.1971,0.9796,-0.0392,0.0,1.0,0.0,-0.1971,0.9796,-0.0392,-0.1857,0.9796,-0.0769,0.0,1.0,0.0,-0.1857,0.9796,-0.0769,-0.1671,0.9796,-0.1117,0.0,1.0,0.0,-0.1671,0.9796,-0.1117,-0.1421,0.9796,-0.1421,0.0,1.0,0.0,-0.1421,0.9796,-0.1421,-0.1117,0.9796,-0.1671,0.0,1.0,0.0,-0.1117,0.9796,-0.1671,-0.0769,0.9796,-0.1857,0.0,1.0,0.0,-0.0769,0.9796,-0.1857,-0.0392,0.9796,-0.1971,0.0,1.0,0.0,-0.0392,0.9796,-0.1971,0.0,0.9796,-0.201,0.0,1.0,0.0,0.0,0.9796,-0.201,0.0392,0.9796,-0.1971,0.0,1.0,0.0,0.0392,0.9796,-0.1971,0.0769,0.9796,-0.1857,0.0,1.0,0.0,0.0769,0.9796,-0.1857,0.1117,0.9796,-0.1671,0.0,1.0,0.0,0.1117,0.9796,-0.1671,0.1421,0.9796,-0.1421,0.0,1.0,0.0,0.1421,0.9796,-0.1421,0.1671,0.9796,-0.1117,0.0,1.0,0.0,0.1671,0.9796,-0.1117,0.1857,0.9796,-0.0769,0.0,1.0,0.0,0.1857,0.9796,-0.0769,0.1971,0.9796,-0.0392,0.0,1.0,0.0,0.1971,0.9796,-0.0392,0.201,0.9796,0.0,0.0,1.0,0.0,0.201,0.9796,0.0,0.1971,0.9796,0.0392,0.0,1.0,0.0,0.1971,0.9796,0.0392,0.1857,0.9796,0.0769,0.0,1.0,0.0,0.1857,0.9796,0.0769,0.1671,0.9796,0.1117,0.0,1.0,0.0,0.1671,0.9796,0.1117,0.1421,0.9796,0.1421,0.0,1.0,0.0,0.1421,0.9796,0.1421,0.1117,0.9796,0.1671,0.0,1.0,0.0,0.1117,0.9796,0.1671,0.0769,0.9796,0.1857,0.0,1.0,0.0,0.0769,0.9796,0.1857,0.0392,0.9796,0.1971,0.0,1.0,0.0,0.0392,0.9796,0.1971,0.0,0.9796,0.201,0.0,0.9796,0.201,0.0,0.9217,0.3879,-0.0757,0.9217,0.3804,0.0,0.9796,0.201,-0.0757,0.9217,0.3804,-0.0392,0.9796,0.1971,-0.0392,0.9796,0.1971,-0.0757,0.9217,0.3804,-0.1484,0.9217,0.3584,-0.0392,0.9796,0.1971,-0.1484,0.9217,0.3584,-0.0769,0.9796,0.1857,-0.0769,0.9796,0.1857,-0.1484,0.9217,0.3584,-0.2155,0.9217,0.3225,-0.0769,0.9796,0.1857,-0.2155,0.9217,0.3225,-0.1117,0.9796,0.1671,-0.1117,0.9796,0.1671,-0.2155,0.9217,0.3225,-0.2743,0.9217,0.2743,-0.1117,0.9796,0.1671,-0.2743,0.9217,0.2743,-0.1421,0.9796,0.1421,-0.1421,0.9796,0.1421,-0.2743,0.9217,0.2743,-0.3225,0.9217,0.2155,-0.1421,0.9796,0.1421,-0.3225,0.9217,0.2155,-0.1671,0.9796,0.1117,-0.1671,0.9796,0.1117,-0.3225,0.9217,0.2155,-0.3584,0.9217,0.1484,-0.1671,0.9796,0.1117,-0.3584,0.9217,0.1484,-0.1857,0.9796,0.0769,-0.1857,0.9796,0.0769,-0.3584,0.9217,0.1484,-0.3804,0.9217,0.0757,-0.1857,0.9796,0.0769,-0.3804,0.9217,0.0757,-0.1971,0.9796,0.0392,-0.1971,0.9796,0.0392,-0.3804,0.9217,0.0757,-0.3879,0.9217,0.0,-0.1971,0.9796,0.0392,-0.3879,0.9217,0.0,-0.201,0.9796,0.0,-0.201,0.9796,0.0,-0.3879,0.9217,0.0,-0.3804,0.9217,-0.0757,-0.201,0.9796,0.0,-0.3804,0.9217,-0.0757,-0.1971,0.9796,-0.0392,-0.1971,0.9796,-0.0392,-0.3804,0.9217,-0.0757,-0.3584,0.9217,-0.1484,-0.1971,0.9796,-0.0392,-0.3584,0.9217,-0.1484,-0.1857,0.9796,-0.0769,-0.1857,0.9796,-0.0769,-0.3584,0.9217,-0.1484,-0.3225,0.9217,-0.2155,-0.1857,0.9796,-0.0769,-0.3225,0.9217,-0.2155,-0.1671,0.9796,-0.1117,-0.1671,0.9796,-0.1117,-0.3225,0.9217,-0.2155,-0.2743,0.9217,-0.2743,-0.1671,0.9796,-0.1117,-0.2743,0.9217,-0.2743,-0.1421,0.9796,-0.1421,-0.1421,0.9796,-0.1421,-0.2743,0.9217,-0.2743,-0.2155,0.9217,-0.3225,-0.1421,0.9796,-0.1421,-0.2155,0.9217,-0.3225,-0.1117,0.9796,-0.1671,-0.1117,0.9796,-0.1671,-0.2155,0.9217,-0.3225,-0.1484,0.9217,-0.3584,-0.1117,0.9796,-0.1671,-0.1484,0.9217,-0.3584,-0.0769,0.9796,-0.1857,-0.0769,0.9796,-0.1857,-0.1484,0.9217,-0.3584,-0.0757,0.9217,-0.3804,-0.0769,0.9796,-0.1857,-0.0757,0.9217,-0.3804,-0.0392,0.9796,-0.1971,-0.0392,0.9796,-0.1971,-0.0757,0.9217,-0.3804,0.0,0.9217,-0.3879,-0.0392,0.9796,-0.1971,0.0,0.9217,-0.3879,0.0,0.9796,-0.201,0.0,0.9796,-0.201,0.0,0.9217,-0.3879,0.0757,0.9217,-0.3804,0.0,0.9796,-0.201,0.0757,0.9217,-0.3804,0.0392,0.9796,-0.1971,0.0392,0.9796,-0.1971,0.0757,0.9217,-0.3804,0.1484,0.9217,-0.3584,0.0392,0.9796,-0.1971,0.1484,0.9217,-0.3584,0.0769,0.9796,-0.1857,0.0769,0.9796,-0.1857,0.1484,0.9217,-0.3584,0.2155,0.9217,-0.3225,0.0769,0.9796,-0.1857,0.2155,0.9217,-0.3225,0.1117,0.9796,-0.1671,0.1117,0.9796,-0.1671,0.2155,0.9217,-0.3225,0.2743,0.9217,-0.2743,0.1117,0.9796,-0.1671,0.2743,0.9217,-0.2743,0.1421,0.9796,-0.1421,0.1421,0.9796,-0.1421,0.2743,0.9217,-0.2743,0.3225,0.9217,-0.2155,0.1421,0.9796,-0.1421,0.3225,0.9217,-0.2155,0.1671,0.9796,-0.1117,0.1671,0.9796,-0.1117,0.3225,0.9217,-0.2155,0.3584,0.9217,-0.1484,0.1671,0.9796,-0.1117,0.3584,0.9217,-0.1484,0.1857,0.9796,-0.0769,0.1857,0.9796,-0.0769,0.3584,0.9217,-0.1484,0.3804,0.9217,-0.0757,0.1857,0.9796,-0.0769,0.3804,0.9217,-0.0757,0.1971,0.9796,-0.0392,0.1971,0.9796,-0.0392,0.3804,0.9217,-0.0757,0.3879,0.9217,0.0,0.1971,0.9796,-0.0392,0.3879,0.9217,0.0,0.201,0.9796,0.0,0.201,0.9796,0.0,0.3879,0.9217,0.0,0.3804,0.9217,0.0757,0.201,0.9796,0.0,0.3804,0.9217,0.0757,0.1971,0.9796,0.0392,0.1971,0.9796,0.0392,0.3804,0.9217,0.0757,0.3584,0.9217,0.1484,0.1971,0.9796,0.0392,0.3584,0.9217,0.1484,0.1857,0.9796,0.0769,0.1857,0.9796,0.0769,0.3584,0.9217,0.1484,0.3225,0.9217,0.2155,0.1857,0.9796,0.0769,0.3225,0.9217,0.2155,0.1671,0.9796,0.1117,0.1671,0.9796,0.1117,0.3225,0.9217,0.2155,0.2743,0.9217,0.2743,0.1671,0.9796,0.1117,0.2743,0.9217,0.2743,0.1421,0.9796,0.1421,0.1421,0.9796,0.1421,0.2743,0.9217,0.2743,0.2155,0.9217,0.3225,0.1421,0.9796,0.1421,0.2155,0.9217,0.3225,0.1117,0.9796,0.1671,0.1117,0.9796,0.1671,0.2155,0.9217,0.3225,0.1484,0.9217,0.3584,0.1117,0.9796,0.1671,0.1484,0.9217,0.3584,0.0769,0.9796,0.1857,0.0769,0.9796,0.1857,0.1484,0.9217,0.3584,0.0757,0.9217,0.3804,0.0769,0.9796,0.1857,0.0757,0.9217,0.3804,0.0392,0.9796,0.1971,0.0392,0.9796,0.1971,0.0757,0.9217,0.3804,0.0,0.9217,0.3879,0.0392,0.9796,0.1971,0.0,0.9217,0.3879,0.0,0.9796,0.201,0.0,0.9217,0.3879,0.0,0.8286,0.5598,-0.1092,0.8286,0.549,0.0,0.9217,0.3879,-0.1092,0.8286,0.549,-0.0757,0.9217,0.3804,-0.0757,0.9217,0.3804,-0.1092,0.8286,0.549,-0.2142,0.8286,0.5172,-0.0757,0.9217,0.3804,-0.2142,0.8286,0.5172,-0.1484,0.9217,0.3584,-0.1484,0.9217,0.3584,-0.2142,0.8286,0.5172,-0.311,0.8286,0.4654,-0.1484,0.9217,0.3584,-0.311,0.8286,0.4654,-0.2155,0.9217,0.3225,-0.2155,0.9217,0.3225,-0.311,0.8286,0.4654,-0.3958,0.8286,0.3958,-0.2155,0.9217,0.3225,-0.3958,0.8286,0.3958,-0.2743,0.9217,0.2743,-0.2743,0.9217,0.2743,-0.3958,0.8286,0.3958,-0.4654,0.8286,0.311,-0.2743,0.9217,0.2743,-0.4654,0.8286,0.311,-0.3225,0.9217,0.2155,-0.3225,0.9217,0.2155,-0.4654,0.8286,0.311,-0.5172,0.8286,0.2142,-0.3225,0.9217,0.2155,-0.5172,0.8286,0.2142,-0.3584,0.9217,0.1484,-0.3584,0.9217,0.1484,-0.5172,0.8286,0.2142,-0.549,0.8286,0.1092,-0.3584,0.9217,0.1484,-0.549,0.8286,0.1092,-0.3804,0.9217,0.0757,-0.3804,0.9217,0.0757,-0.549,0.8286,0.1092,-0.5598,0.8286,0.0,-0.3804,0.9217,0.0757,-0.5598,0.8286,0.0,-0.3879,0.9217,0.0,-0.3879,0.9217,0.0,-0.5598,0.8286,0.0,-0.549,0.8286,-0.1092,-0.3879,0.9217,0.0,-0.549,0.8286,-0.1092,-0.3804,0.9217,-0.0757,-0.3804,0.9217,-0.0757,-0.549,0.8286,-0.1092,-0.5172,0.8286,-0.2142,-0.3804,0.9217,-0.0757,-0.5172,0.8286,-0.2142,-0.3584,0.9217,-0.1484,-0.3584,0.9217,-0.1484,-0.5172,0.8286,-0.2142,-0.4654,0.8286,-0.311,-0.3584,0.9217,-0.1484,-0.4654,0.8286,-0.311,-0.3225,0.9217,-0.2155,-0.3225,0.9217,-0.2155,-0.4654,0.8286,-0.311,-0.3958,0.8286,-0.3958,-0.3225,0.9217,-0.2155,-0.3958,0.8286,-0.3958,-0.2743,0.9217,-0.2743,-0.2743,0.9217,-0.2743,-0.3958,0.8286,-0.3958,-0.311,0.8286,-0.4654,-0.2743,0.9217,-0.2743,-0.311,0.8286,-0.4654,-0.2155,0.9217,-0.3225,-0.2155,0.9217,-0.3225,-0.311,0.8286,-0.4654,-0.2142,0.8286,-0.5172,-0.2155,0.9217,-0.3225,-0.2142,0.8286,-0.5172,-0.1484,0.9217,-0.3584,-0.1484,0.9217,-0.3584,-0.2142,0.8286,-0.5172,-0.1092,0.8286,-0.549,-0.1484,0.9217,-0.3584,-0.1092,0.8286,-0.549,-0.0757,0.9217,-0.3804,-0.0757,0.9217,-0.3804,-0.1092,0.8286,-0.549,0.0,0.8286,-0.5598,-0.0757,0.9217,-0.3804,0.0,0.8286,-0.5598,0.0,0.9217,-0.3879,0.0,0.9217,-0.3879,0.0,0.8286,-0.5598,0.1092,0.8286,-0.549,0.0,0.9217,-0.3879,0.1092,0.8286,-0.549,0.0757,0.9217,-0.3804,0.0757,0.9217,-0.3804,0.1092,0.8286,-0.549,0.2142,0.8286,-0.5172,0.0757,0.9217,-0.3804,0.2142,0.8286,-0.5172,0.1484,0.9217,-0.3584,0.1484,0.9217,-0.3584,0.2142,0.8286,-0.5172,0.311,0.8286,-0.4654,0.1484,0.9217,-0.3584,0.311,0.8286,-0.4654,0.2155,0.9217,-0.3225,0.2155,0.9217,-0.3225,0.311,0.8286,-0.4654,0.3958,0.8286,-0.3958,0.2155,0.9217,-0.3225,0.3958,0.8286,-0.3958,0.2743,0.9217,-0.2743,0.2743,0.9217,-0.2743,0.3958,0.8286,-0.3958,0.4654,0.8286,-0.311,0.2743,0.9217,-0.2743,0.4654,0.8286,-0.311,0.3225,0.9217,-0.2155,0.3225,0.9217,-0.2155,0.4654,0.8286,-0.311,0.5172,0.8286,-0.2142,0.3225,0.9217,-0.2155,0.5172,0.8286,-0.2142,0.3584,0.9217,-0.1484,0.3584,0.9217,-0.1484,0.5172,0.8286,-0.2142,0.549,0.8286,-0.1092,0.3584,0.9217,-0.1484,0.549,0.8286,-0.1092,0.3804,0.9217,-0.0757,0.3804,0.9217,-0.0757,0.549,0.8286,-0.1092,0.5598,0.8286,0.0,0.3804,0.9217,-0.0757,0.5598,0.8286,0.0,0.3879,0.9217,0.0,0.3879,0.9217,0.0,0.5598,0.8286,0.0,0.549,0.8286,0.1092,0.3879,0.9217,0.0,0.549,0.8286,0.1092,0.3804,0.9217,0.0757,0.3804,0.9217,0.0757,0.549,0.8286,0.1092,0.5172,0.8286,0.2142,0.3804,0.9217,0.0757,0.5172,0.8286,0.2142,0.3584,0.9217,0.1484,0.3584,0.9217,0.1484,0.5172,0.8286,0.2142,0.4654,0.8286,0.311,0.3584,0.9217,0.1484,0.4654,0.8286,0.311,0.3225,0.9217,0.2155,0.3225,0.9217,0.2155,0.4654,0.8286,0.311,0.3958,0.8286,0.3958,0.3225,0.9217,0.2155,0.3958,0.8286,0.3958,0.2743,0.9217,0.2743,0.2743,0.9217,0.2743,0.3958,0.8286,0.3958,0.311,0.8286,0.4654,0.2743,0.9217,0.2743,0.311,0.8286,0.4654,0.2155,0.9217,0.3225,0.2155,0.9217,0.3225,0.311,0.8286,0.4654,0.2142,0.8286,0.5172,0.2155,0.9217,0.3225,0.2142,0.8286,0.5172,0.1484,0.9217,0.3584,0.1484,0.9217,0.3584,0.2142,0.8286,0.5172,0.1092,0.8286,0.549,0.1484,0.9217,0.3584,0.1092,0.8286,0.549,0.0757,0.9217,0.3804,0.0757,0.9217,0.3804,0.1092,0.8286,0.549,0.0,0.8286,0.5598,0.0757,0.9217,0.3804,0.0,0.8286,0.5598,0.0,0.9217,0.3879,0.0,0.8286,0.5598,0.0,0.7041,0.7101,-0.1385,0.7041,0.6965,0.0,0.8286,0.5598,-0.1385,0.7041,0.6965,-0.1092,0.8286,0.549,-0.1092,0.8286,0.549,-0.1385,0.7041,0.6965,-0.2718,0.7041,0.6561,-0.1092,0.8286,0.549,-0.2718,0.7041,0.6561,-0.2142,0.8286,0.5172,-0.2142,0.8286,0.5172,-0.2718,0.7041,0.6561,-0.3945,0.7041,0.5905,-0.2142,0.8286,0.5172,-0.3945,0.7041,0.5905,-0.311,0.8286,0.4654,-0.311,0.8286,0.4654,-0.3945,0.7041,0.5905,-0.5021,0.7041,0.5021,-0.311,0.8286,0.4654,-0.5021,0.7041,0.5021,-0.3958,0.8286,0.3958,-0.3958,0.8286,0.3958,-0.5021,0.7041,0.5021,-0.5905,0.7041,0.3945,-0.3958,0.8286,0.3958,-0.5905,0.7041,0.3945,-0.4654,0.8286,0.311,-0.4654,0.8286,0.311,-0.5905,0.7041,0.3945,-0.6561,0.7041,0.2718,-0.4654,0.8286,0.311,-0.6561,0.7041,0.2718,-0.5172,0.8286,0.2142,-0.5172,0.8286,0.2142,-0.6561,0.7041,0.2718,-0.6965,0.7041,0.1385,-0.5172,0.8286,0.2142,-0.6965,0.7041,0.1385,-0.549,0.8286,0.1092,-0.549,0.8286,0.1092,-0.6965,0.7041,0.1385,-0.7101,0.7041,0.0,-0.549,0.8286,0.1092,-0.7101,0.7041,0.0,-0.5598,0.8286,0.0,-0.5598,0.8286,0.0,-0.7101,0.7041,0.0,-0.6965,0.7041,-0.1385,-0.5598,0.8286,0.0,-0.6965,0.7041,-0.1385,-0.549,0.8286,-0.1092,-0.549,0.8286,-0.1092,-0.6965,0.7041,-0.1385,-0.6561,0.7041,-0.2718,-0.549,0.8286,-0.1092,-0.6561,0.7041,-0.2718,-0.5172,0.8286,-0.2142,-0.5172,0.8286,-0.2142,-0.6561,0.7041,-0.2718,-0.5905,0.7041,-0.3945,-0.5172,0.8286,-0.2142,-0.5905,0.7041,-0.3945,-0.4654,0.8286,-0.311,-0.4654,0.8286,-0.311,-0.5905,0.7041,-0.3945,-0.5021,0.7041,-0.5021,-0.4654,0.8286,-0.311,-0.5021,0.7041,-0.5021,-0.3958,0.8286,-0.3958,-0.3958,0.8286,-0.3958,-0.5021,0.7041,-0.5021,-0.3945,0.7041,-0.5905,-0.3958,0.8286,-0.3958,-0.3945,0.7041,-0.5905,-0.311,0.8286,-0.4654,-0.311,0.8286,-0.4654,-0.3945,0.7041,-0.5905,-0.2718,0.7041,-0.6561,-0.311,0.8286,-0.4654,-0.2718,0.7041,-0.6561,-0.2142,0.8286,-0.5172,-0.2142,0.8286,-0.5172,-0.2718,0.7041,-0.6561,-0.1385,0.7041,-0.6965,-0.2142,0.8286,-0.5172,-0.1385,0.7041,-0.6965,-0.1092,0.8286,-0.549,-0.1092,0.8286,-0.549,-0.1385,0.7041,-0.6965,0.0,0.7041,-0.7101,-0.1092,0.8286,-0.549,0.0,0.7041,-0.7101,0.0,0.8286,-0.5598,0.0,0.8286,-0.5598,0.0,0.7041,-0.7101,0.1385,0.7041,-0.6965,0.0,0.8286,-0.5598,0.1385,0.7041,-0.6965,0.1092,0.8286,-0.549,0.1092,0.8286,-0.549,0.1385,0.7041,-0.6965,0.2718,0.7041,-0.6561,0.1092,0.8286,-0.549,0.2718,0.7041,-0.6561,0.2142,0.8286,-0.5172,0.2142,0.8286,-0.5172,0.2718,0.7041,-0.6561,0.3945,0.7041,-0.5905,0.2142,0.8286,-0.5172,0.3945,0.7041,-0.5905,0.311,0.8286,-0.4654,0.311,0.8286,-0.4654,0.3945,0.7041,-0.5905,0.5021,0.7041,-0.5021,0.311,0.8286,-0.4654,0.5021,0.7041,-0.5021,0.3958,0.8286,-0.3958,0.3958,0.8286,-0.3958,0.5021,0.7041,-0.5021,0.5905,0.7041,-0.3945,0.3958,0.8286,-0.3958,0.5905,0.7041,-0.3945,0.4654,0.8286,-0.311,0.4654,0.8286,-0.311,0.5905,0.7041,-0.3945,0.6561,0.7041,-0.2718,0.4654,0.8286,-0.311,0.6561,0.7041,-0.2718,0.5172,0.8286,-0.2142,0.5172,0.8286,-0.2142,0.6561,0.7041,-0.2718,0.6965,0.7041,-0.1385,0.5172,0.8286,-0.2142,0.6965,0.7041,-0.1385,0.549,0.8286,-0.1092,0.549,0.8286,-0.1092,0.6965,0.7041,-0.1385,0.7101,0.7041,0.0,0.549,0.8286,-0.1092,0.7101,0.7041,0.0,0.5598,0.8286,0.0,0.5598,0.8286,0.0,0.7101,0.7041,0.0,0.6965,0.7041,0.1385,0.5598,0.8286,0.0,0.6965,0.7041,0.1385,0.549,0.8286,0.1092,0.549,0.8286,0.1092,0.6965,0.7041,0.1385,0.6561,0.7041,0.2718,0.549,0.8286,0.1092,0.6561,0.7041,0.2718,0.5172,0.8286,0.2142,0.5172,0.8286,0.2142,0.6561,0.7041,0.2718,0.5905,0.7041,0.3945,0.5172,0.8286,0.2142,0.5905,0.7041,0.3945,0.4654,0.8286,0.311,0.4654,0.8286,0.311,0.5905,0.7041,0.3945,0.5021,0.7041,0.5021,0.4654,0.8286,0.311,0.5021,0.7041,0.5021,0.3958,0.8286,0.3958,0.3958,0.8286,0.3958,0.5021,0.7041,0.5021,0.3945,0.7041,0.5905,0.3958,0.8286,0.3958,0.3945,0.7041,0.5905,0.311,0.8286,0.4654,0.311,0.8286,0.4654,0.3945,0.7041,0.5905,0.2718,0.7041,0.6561,0.311,0.8286,0.4654,0.2718,0.7041,0.6561,0.2142,0.8286,0.5172,0.2142,0.8286,0.5172,0.2718,0.7041,0.6561,0.1385,0.7041,0.6965,0.2142,0.8286,0.5172,0.1385,0.7041,0.6965,0.1092,0.8286,0.549,0.1092,0.8286,0.549,0.1385,0.7041,0.6965,0.0,0.7041,0.7101,0.1092,0.8286,0.549,0.0,0.7041,0.7101,0.0,0.8286,0.5598,0.0,0.7041,0.7101,0.0,0.5528,0.8333,-0.1626,0.5528,0.8173,0.0,0.7041,0.7101,-0.1626,0.5528,0.8173,-0.1385,0.7041,0.6965,-0.1385,0.7041,0.6965,-0.1626,0.5528,0.8173,-0.3189,0.5528,0.7699,-0.1385,0.7041,0.6965,-0.3189,0.5528,0.7699,-0.2718,0.7041,0.6561,-0.2718,0.7041,0.6561,-0.3189,0.5528,0.7699,-0.463,0.5528,0.6929,-0.2718,0.7041,0.6561,-0.463,0.5528,0.6929,-0.3945,0.7041,0.5905,-0.3945,0.7041,0.5905,-0.463,0.5528,0.6929,-0.5893,0.5528,0.5893,-0.3945,0.7041,0.5905,-0.5893,0.5528,0.5893,-0.5021,0.7041,0.5021,-0.5021,0.7041,0.5021,-0.5893,0.5528,0.5893,-0.6929,0.5528,0.463,-0.5021,0.7041,0.5021,-0.6929,0.5528,0.463,-0.5905,0.7041,0.3945,-0.5905,0.7041,0.3945,-0.6929,0.5528,0.463,-0.7699,0.5528,0.3189,-0.5905,0.7041,0.3945,-0.7699,0.5528,0.3189,-0.6561,0.7041,0.2718,-0.6561,0.7041,0.2718,-0.7699,0.5528,0.3189,-0.8173,0.5528,0.1626,-0.6561,0.7041,0.2718,-0.8173,0.5528,0.1626,-0.6965,0.7041,0.1385,-0.6965,0.7041,0.1385,-0.8173,0.5528,0.1626,-0.8333,0.5528,0.0,-0.6965,0.7041,0.1385,-0.8333,0.5528,0.0,-0.7101,0.7041,0.0,-0.7101,0.7041,0.0,-0.8333,0.5528,0.0,-0.8173,0.5528,-0.1626,-0.7101,0.7041,0.0,-0.8173,0.5528,-0.1626,-0.6965,0.7041,-0.1385,-0.6965,0.7041,-0.1385,-0.8173,0.5528,-0.1626,-0.7699,0.5528,-0.3189,-0.6965,0.7041,-0.1385,-0.7699,0.5528,-0.3189,-0.6561,0.7041,-0.2718,-0.6561,0.7041,-0.2718,-0.7699,0.5528,-0.3189,-0.6929,0.5528,-0.463,-0.6561,0.7041,-0.2718,-0.6929,0.5528,-0.463,-0.5905,0.7041,-0.3945,-0.5905,0.7041,-0.3945,-0.6929,0.5528,-0.463,-0.5893,0.5528,-0.5893,-0.5905,0.7041,-0.3945,-0.5893,0.5528,-0.5893,-0.5021,0.7041,-0.5021,-0.5021,0.7041,-0.5021,-0.5893,0.5528,-0.5893,-0.463,0.5528,-0.6929,-0.5021,0.7041,-0.5021,-0.463,0.5528,-0.6929,-0.3945,0.7041,-0.5905,-0.3945,0.7041,-0.5905,-0.463,0.5528,-0.6929,-0.3189,0.5528,-0.7699,-0.3945,0.7041,-0.5905,-0.3189,0.5528,-0.7699,-0.2718,0.7041,-0.6561,-0.2718,0.7041,-0.6561,-0.3189,0.5528,-0.7699,-0.1626,0.5528,-0.8173,-0.2718,0.7041,-0.6561,-0.1626,0.5528,-0.8173,-0.1385,0.7041,-0.6965,-0.1385,0.7041,-0.6965,-0.1626,0.5528,-0.8173,0.0,0.5528,-0.8333,-0.1385,0.7041,-0.6965,0.0,0.5528,-0.8333,0.0,0.7041,-0.7101,0.0,0.7041,-0.7101,0.0,0.5528,-0.8333,0.1626,0.5528,-0.8173,0.0,0.7041,-0.7101,0.1626,0.5528,-0.8173,0.1385,0.7041,-0.6965,0.1385,0.7041,-0.6965,0.1626,0.5528,-0.8173,0.3189,0.5528,-0.7699,0.1385,0.7041,-0.6965,0.3189,0.5528,-0.7699,0.2718,0.7041,-0.6561,0.2718,0.7041,-0.6561,0.3189,0.5528,-0.7699,0.463,0.5528,-0.6929,0.2718,0.7041,-0.6561,0.463,0.5528,-0.6929,0.3945,0.7041,-0.5905,0.3945,0.7041,-0.5905,0.463,0.5528,-0.6929,0.5893,0.5528,-0.5893,0.3945,0.7041,-0.5905,0.5893,0.5528,-0.5893,0.5021,0.7041,-0.5021,0.5021,0.7041,-0.5021,0.5893,0.5528,-0.5893,0.6929,0.5528,-0.463,0.5021,0.7041,-0.5021,0.6929,0.5528,-0.463,0.5905,0.7041,-0.3945,0.5905,0.7041,-0.3945,0.6929,0.5528,-0.463,0.7699,0.5528,-0.3189,0.5905,0.7041,-0.3945,0.7699,0.5528,-0.3189,0.6561,0.7041,-0.2718,0.6561,0.7041,-0.2718,0.7699,0.5528,-0.3189,0.8173,0.5528,-0.1626,0.6561,0.7041,-0.2718,0.8173,0.5528,-0.1626,0.6965,0.7041,-0.1385,0.6965,0.7041,-0.1385,0.8173,0.5528,-0.1626,0.8333,0.5528,0.0,0.6965,0.7041,-0.1385,0.8333,0.5528,0.0,0.7101,0.7041,0.0,0.7101,0.7041,0.0,0.8333,0.5528,0.0,0.8173,0.5528,0.1626,0.7101,0.7041,0.0,0.8173,0.5528,0.1626,0.6965,0.7041,0.1385,0.6965,0.7041,0.1385,0.8173,0.5528,0.1626,0.7699,0.5528,0.3189,0.6965,0.7041,0.1385,0.7699,0.5528,0.3189,0.6561,0.7041,0.2718,0.6561,0.7041,0.2718,0.7699,0.5528,0.3189,0.6929,0.5528,0.463,0.6561,0.7041,0.2718,0.6929,0.5528,0.463,0.5905,0.7041,0.3945,0.5905,0.7041,0.3945,0.6929,0.5528,0.463,0.5893,0.5528,0.5893,0.5905,0.7041,0.3945,0.5893,0.5528,0.5893,0.5021,0.7041,0.5021,0.5021,0.7041,0.5021,0.5893,0.5528,0.5893,0.463,0.5528,0.6929,0.5021,0.7041,0.5021,0.463,0.5528,0.6929,0.3945,0.7041,0.5905,0.3945,0.7041,0.5905,0.463,0.5528,0.6929,0.3189,0.5528,0.7699,0.3945,0.7041,0.5905,0.3189,0.5528,0.7699,0.2718,0.7041,0.6561,0.2718,0.7041,0.6561,0.3189,0.5528,0.7699,0.1626,0.5528,0.8173,0.2718,0.7041,0.6561,0.1626,0.5528,0.8173,0.1385,0.7041,0.6965,0.1385,0.7041,0.6965,0.1626,0.5528,0.8173,0.0,0.5528,0.8333,0.1385,0.7041,0.6965,0.0,0.5528,0.8333,0.0,0.7041,0.7101,0.0,0.5528,0.8333,0.0,0.3805,0.9248,-0.1804,0.3805,0.907,0.0,0.5528,0.8333,-0.1804,0.3805,0.907,-0.1626,0.5528,0.8173,-0.1626,0.5528,0.8173,-0.1804,0.3805,0.907,-0.3539,0.3805,0.8544,-0.1626,0.5528,0.8173,-0.3539,0.3805,0.8544,-0.3189,0.5528,0.7699,-0.3189,0.5528,0.7699,-0.3539,0.3805,0.8544,-0.5138,0.3805,0.7689,-0.3189,0.5528,0.7699,-0.5138,0.3805,0.7689,-0.463,0.5528,0.6929,-0.463,0.5528,0.6929,-0.5138,0.3805,0.7689,-0.6539,0.3805,0.6539,-0.463,0.5528,0.6929,-0.6539,0.3805,0.6539,-0.5893,0.5528,0.5893,-0.5893,0.5528,0.5893,-0.6539,0.3805,0.6539,-0.7689,0.3805,0.5138,-0.5893,0.5528,0.5893,-0.7689,0.3805,0.5138,-0.6929,0.5528,0.463,-0.6929,0.5528,0.463,-0.7689,0.3805,0.5138,-0.8544,0.3805,0.3539,-0.6929,0.5528,0.463,-0.8544,0.3805,0.3539,-0.7699,0.5528,0.3189,-0.7699,0.5528,0.3189,-0.8544,0.3805,0.3539,-0.907,0.3805,0.1804,-0.7699,0.5528,0.3189,-0.907,0.3805,0.1804,-0.8173,0.5528,0.1626,-0.8173,0.5528,0.1626,-0.907,0.3805,0.1804,-0.9248,0.3805,0.0,-0.8173,0.5528,0.1626,-0.9248,0.3805,0.0,-0.8333,0.5528,0.0,-0.8333,0.5528,0.0,-0.9248,0.3805,0.0,-0.907,0.3805,-0.1804,-0.8333,0.5528,0.0,-0.907,0.3805,-0.1804,-0.8173,0.5528,-0.1626,-0.8173,0.5528,-0.1626,-0.907,0.3805,-0.1804,-0.8544,0.3805,-0.3539,-0.8173,0.5528,-0.1626,-0.8544,0.3805,-0.3539,-0.7699,0.5528,-0.3189,-0.7699,0.5528,-0.3189,-0.8544,0.3805,-0.3539,-0.7689,0.3805,-0.5138,-0.7699,0.5528,-0.3189,-0.7689,0.3805,-0.5138,-0.6929,0.5528,-0.463,-0.6929,0.5528,-0.463,-0.7689,0.3805,-0.5138,-0.6539,0.3805,-0.6539,-0.6929,0.5528,-0.463,-0.6539,0.3805,-0.6539,-0.5893,0.5528,-0.5893,-0.5893,0.5528,-0.5893,-0.6539,0.3805,-0.6539,-0.5138,0.3805,-0.7689,-0.5893,0.5528,-0.5893,-0.5138,0.3805,-0.7689,-0.463,0.5528,-0.6929,-0.463,0.5528,-0.6929,-0.5138,0.3805,-0.7689,-0.3539,0.3805,-0.8544,-0.463,0.5528,-0.6929,-0.3539,0.3805,-0.8544,-0.3189,0.5528,-0.7699,-0.3189,0.5528,-0.7699,-0.3539,0.3805,-0.8544,-0.1804,0.3805,-0.907,-0.3189,0.5528,-0.7699,-0.1804,0.3805,-0.907,-0.1626,0.5528,-0.8173,-0.1626,0.5528,-0.8173,-0.1804,0.3805,-0.907,0.0,0.3805,-0.9248,-0.1626,0.5528,-0.8173,0.0,0.3805,-0.9248,0.0,0.5528,-0.8333,0.0,0.5528,-0.8333,0.0,0.3805,-0.9248,0.1804,0.3805,-0.907,0.0,0.5528,-0.8333,0.1804,0.3805,-0.907,0.1626,0.5528,-0.8173,0.1626,0.5528,-0.8173,0.1804,0.3805,-0.907,0.3539,0.3805,-0.8544,0.1626,0.5528,-0.8173,0.3539,0.3805,-0.8544,0.3189,0.5528,-0.7699,0.3189,0.5528,-0.7699,0.3539,0.3805,-0.8544,0.5138,0.3805,-0.7689,0.3189,0.5528,-0.7699,0.5138,0.3805,-0.7689,0.463,0.5528,-0.6929,0.463,0.5528,-0.6929,0.5138,0.3805,-0.7689,0.6539,0.3805,-0.6539,0.463,0.5528,-0.6929,0.6539,0.3805,-0.6539,0.5893,0.5528,-0.5893,0.5893,0.5528,-0.5893,0.6539,0.3805,-0.6539,0.7689,0.3805,-0.5138,0.5893,0.5528,-0.5893,0.7689,0.3805,-0.5138,0.6929,0.5528,-0.463,0.6929,0.5528,-0.463,0.7689,0.3805,-0.5138,0.8544,0.3805,-0.3539,0.6929,0.5528,-0.463,0.8544,0.3805,-0.3539,0.7699,0.5528,-0.3189,0.7699,0.5528,-0.3189,0.8544,0.3805,-0.3539,0.907,0.3805,-0.1804,0.7699,0.5528,-0.3189,0.907,0.3805,-0.1804,0.8173,0.5528,-0.1626,0.8173,0.5528,-0.1626,0.907,0.3805,-0.1804,0.9248,0.3805,0.0,0.8173,0.5528,-0.1626,0.9248,0.3805,0.0,0.8333,0.5528,0.0,0.8333,0.5528,0.0,0.9248,0.3805,0.0,0.907,0.3805,0.1804,0.8333,0.5528,0.0,0.907,0.3805,0.1804,0.8173,0.5528,0.1626,0.8173,0.5528,0.1626,0.907,0.3805,0.1804,0.8544,0.3805,0.3539,0.8173,0.5528,0.1626,0.8544,0.3805,0.3539,0.7699,0.5528,0.3189,0.7699,0.5528,0.3189,0.8544,0.3805,0.3539,0.7689,0.3805,0.5138,0.7699,0.5528,0.3189,0.7689,0.3805,0.5138,0.6929,0.5528,0.463,0.6929,0.5528,0.463,0.7689,0.3805,0.5138,0.6539,0.3805,0.6539,0.6929,0.5528,0.463,0.6539,0.3805,0.6539,0.5893,0.5528,0.5893,0.5893,0.5528,0.5893,0.6539,0.3805,0.6539,0.5138,0.3805,0.7689,0.5893,0.5528,0.5893,0.5138,0.3805,0.7689,0.463,0.5528,0.6929,0.463,0.5528,0.6929,0.5138,0.3805,0.7689,0.3539,0.3805,0.8544,0.463,0.5528,0.6929,0.3539,0.3805,0.8544,0.3189,0.5528,0.7699,0.3189,0.5528,0.7699,0.3539,0.3805,0.8544,0.1804,0.3805,0.907,0.3189,0.5528,0.7699,0.1804,0.3805,0.907,0.1626,0.5528,0.8173,0.1626,0.5528,0.8173,0.1804,0.3805,0.907,0.0,0.3805,0.9248,0.1626,0.5528,0.8173,0.0,0.3805,0.9248,0.0,0.5528,0.8333,0.0,0.3805,0.9248,0.0,0.1939,0.981,-0.1914,0.1939,0.9622,0.0,0.3805,0.9248,-0.1914,0.1939,0.9622,-0.1804,0.3805,0.907,-0.1804,0.3805,0.907,-0.1914,0.1939,0.9622,-0.3754,0.1939,0.9063,-0.1804,0.3805,0.907,-0.3754,0.1939,0.9063,-0.3539,0.3805,0.8544,-0.3539,0.3805,0.8544,-0.3754,0.1939,0.9063,-0.545,0.1939,0.8157,-0.3539,0.3805,0.8544,-0.545,0.1939,0.8157,-0.5138,0.3805,0.7689,-0.5138,0.3805,0.7689,-0.545,0.1939,0.8157,-0.6937,0.1939,0.6937,-0.5138,0.3805,0.7689,-0.6937,0.1939,0.6937,-0.6539,0.3805,0.6539,-0.6539,0.3805,0.6539,-0.6937,0.1939,0.6937,-0.8157,0.1939,0.545,-0.6539,0.3805,0.6539,-0.8157,0.1939,0.545,-0.7689,0.3805,0.5138,-0.7689,0.3805,0.5138,-0.8157,0.1939,0.545,-0.9063,0.1939,0.3754,-0.7689,0.3805,0.5138,-0.9063,0.1939,0.3754,-0.8544,0.3805,0.3539,-0.8544,0.3805,0.3539,-0.9063,0.1939,0.3754,-0.9622,0.1939,0.1914,-0.8544,0.3805,0.3539,-0.9622,0.1939,0.1914,-0.907,0.3805,0.1804,-0.907,0.3805,0.1804,-0.9622,0.1939,0.1914,-0.981,0.1939,0.0,-0.907,0.3805,0.1804,-0.981,0.1939,0.0,-0.9248,0.3805,0.0,-0.9248,0.3805,0.0,-0.981,0.1939,0.0,-0.9622,0.1939,-0.1914,-0.9248,0.3805,0.0,-0.9622,0.1939,-0.1914,-0.907,0.3805,-0.1804,-0.907,0.3805,-0.1804,-0.9622,0.1939,-0.1914,-0.9063,0.1939,-0.3754,-0.907,0.3805,-0.1804,-0.9063,0.1939,-0.3754,-0.8544,0.3805,-0.3539,-0.8544,0.3805,-0.3539,-0.9063,0.1939,-0.3754,-0.8157,0.1939,-0.545,-0.8544,0.3805,-0.3539,-0.8157,0.1939,-0.545,-0.7689,0.3805,-0.5138,-0.7689,0.3805,-0.5138,-0.8157,0.1939,-0.545,-0.6937,0.1939,-0.6937,-0.7689,0.3805,-0.5138,-0.6937,0.1939,-0.6937,-0.6539,0.3805,-0.6539,-0.6539,0.3805,-0.6539,-0.6937,0.1939,-0.6937,-0.545,0.1939,-0.8157,-0.6539,0.3805,-0.6539,-0.545,0.1939,-0.8157,-0.5138,0.3805,-0.7689,-0.5138,0.3805,-0.7689,-0.545,0.1939,-0.8157,-0.3754,0.1939,-0.9063,-0.5138,0.3805,-0.7689,-0.3754,0.1939,-0.9063,-0.3539,0.3805,-0.8544,-0.3539,0.3805,-0.8544,-0.3754,0.1939,-0.9063,-0.1914,0.1939,-0.9622,-0.3539,0.3805,-0.8544,-0.1914,0.1939,-0.9622,-0.1804,0.3805,-0.907,-0.1804,0.3805,-0.907,-0.1914,0.1939,-0.9622,0.0,0.1939,-0.981,-0.1804,0.3805,-0.907,0.0,0.1939,-0.981,0.0,0.3805,-0.9248,0.0,0.3805,-0.9248,0.0,0.1939,-0.981,0.1914,0.1939,-0.9622,0.0,0.3805,-0.9248,0.1914,0.1939,-0.9622,0.1804,0.3805,-0.907,0.1804,0.3805,-0.907,0.1914,0.1939,-0.9622,0.3754,0.1939,-0.9063,0.1804,0.3805,-0.907,0.3754,0.1939,-0.9063,0.3539,0.3805,-0.8544,0.3539,0.3805,-0.8544,0.3754,0.1939,-0.9063,0.545,0.1939,-0.8157,0.3539,0.3805,-0.8544,0.545,0.1939,-0.8157,0.5138,0.3805,-0.7689,0.5138,0.3805,-0.7689,0.545,0.1939,-0.8157,0.6937,0.1939,-0.6937,0.5138,0.3805,-0.7689,0.6937,0.1939,-0.6937,0.6539,0.3805,-0.6539,0.6539,0.3805,-0.6539,0.6937,0.1939,-0.6937,0.8157,0.1939,-0.545,0.6539,0.3805,-0.6539,0.8157,0.1939,-0.545,0.7689,0.3805,-0.5138,0.7689,0.3805,-0.5138,0.8157,0.1939,-0.545,0.9063,0.1939,-0.3754,0.7689,0.3805,-0.5138,0.9063,0.1939,-0.3754,0.8544,0.3805,-0.3539,0.8544,0.3805,-0.3539,0.9063,0.1939,-0.3754,0.9622,0.1939,-0.1914,0.8544,0.3805,-0.3539,0.9622,0.1939,-0.1914,0.907,0.3805,-0.1804,0.907,0.3805,-0.1804,0.9622,0.1939,-0.1914,0.981,0.1939,0.0,0.907,0.3805,-0.1804,0.981,0.1939,0.0,0.9248,0.3805,0.0,0.9248,0.3805,0.0,0.981,0.1939,0.0,0.9622,0.1939,0.1914,0.9248,0.3805,0.0,0.9622,0.1939,0.1914,0.907,0.3805,0.1804,0.907,0.3805,0.1804,0.9622,0.1939,0.1914,0.9063,0.1939,0.3754,0.907,0.3805,0.1804,0.9063,0.1939,0.3754,0.8544,0.3805,0.3539,0.8544,0.3805,0.3539,0.9063,0.1939,0.3754,0.8157,0.1939,0.545,0.8544,0.3805,0.3539,0.8157,0.1939,0.545,0.7689,0.3805,0.5138,0.7689,0.3805,0.5138,0.8157,0.1939,0.545,0.6937,0.1939,0.6937,0.7689,0.3805,0.5138,0.6937,0.1939,0.6937,0.6539,0.3805,0.6539,0.6539,0.3805,0.6539,0.6937,0.1939,0.6937,0.545,0.1939,0.8157,0.6539,0.3805,0.6539,0.545,0.1939,0.8157,0.5138,0.3805,0.7689,0.5138,0.3805,0.7689,0.545,0.1939,0.8157,0.3754,0.1939,0.9063,0.5138,0.3805,0.7689,0.3754,0.1939,0.9063,0.3539,0.3805,0.8544,0.3539,0.3805,0.8544,0.3754,0.1939,0.9063,0.1914,0.1939,0.9622,0.3539,0.3805,0.8544,0.1914,0.1939,0.9622,0.1804,0.3805,0.907,0.1804,0.3805,0.907,0.1914,0.1939,0.9622,0.0,0.1939,0.981,0.1804,0.3805,0.907,0.0,0.1939,0.981,0.0,0.3805,0.9248,0.0,0.1939,0.981,0.0,0.0,1.0,-0.1951,0.0,0.9808,0.0,0.1939,0.981,-0.1951,0.0,0.9808,-0.1914,0.1939,0.9622,-0.1914,0.1939,0.9622,-0.1951,0.0,0.9808,-0.3827,0.0,0.9239,-0.1914,0.1939,0.9622,-0.3827,0.0,0.9239,-0.3754,0.1939,0.9063,-0.3754,0.1939,0.9063,-0.3827,0.0,0.9239,-0.5556,0.0,0.8315,-0.3754,0.1939,0.9063,-0.5556,0.0,0.8315,-0.545,0.1939,0.8157,-0.545,0.1939,0.8157,-0.5556,0.0,0.8315,-0.7071,0.0,0.7071,-0.545,0.1939,0.8157,-0.7071,0.0,0.7071,-0.6937,0.1939,0.6937,-0.6937,0.1939,0.6937,-0.7071,0.0,0.7071,-0.8315,0.0,0.5556,-0.6937,0.1939,0.6937,-0.8315,0.0,0.5556,-0.8157,0.1939,0.545,-0.8157,0.1939,0.545,-0.8315,0.0,0.5556,-0.9239,0.0,0.3827,-0.8157,0.1939,0.545,-0.9239,0.0,0.3827,-0.9063,0.1939,0.3754,-0.9063,0.1939,0.3754,-0.9239,0.0,0.3827,-0.9808,0.0,0.1951,-0.9063,0.1939,0.3754,-0.9808,0.0,0.1951,-0.9622,0.1939,0.1914,-0.9622,0.1939,0.1914,-0.9808,0.0,0.1951,-1.0,0.0,0.0,-0.9622,0.1939,0.1914,-1.0,0.0,0.0,-0.981,0.1939,0.0,-0.981,0.1939,0.0,-1.0,0.0,0.0,-0.9808,0.0,-0.1951,-0.981,0.1939,0.0,-0.9808,0.0,-0.1951,-0.9622,0.1939,-0.1914,-0.9622,0.1939,-0.1914,-0.9808,0.0,-0.1951,-0.9239,0.0,-0.3827,-0.9622,0.1939,-0.1914,-0.9239,0.0,-0.3827,-0.9063,0.1939,-0.3754,-0.9063,0.1939,-0.3754,-0.9239,0.0,-0.3827,-0.8315,0.0,-0.5556,-0.9063,0.1939,-0.3754,-0.8315,0.0,-0.5556,-0.8157,0.1939,-0.545,-0.8157,0.1939,-0.545,-0.8315,0.0,-0.5556,-0.7071,0.0,-0.7071,-0.8157,0.1939,-0.545,-0.7071,0.0,-0.7071,-0.6937,0.1939,-0.6937,-0.6937,0.1939,-0.6937,-0.7071,0.0,-0.7071,-0.5556,0.0,-0.8315,-0.6937,0.1939,-0.6937,-0.5556,0.0,-0.8315,-0.545,0.1939,-0.8157,-0.545,0.1939,-0.8157,-0.5556,0.0,-0.8315,-0.3827,0.0,-0.9239,-0.545,0.1939,-0.8157,-0.3827,0.0,-0.9239,-0.3754,0.1939,-0.9063,-0.3754,0.1939,-0.9063,-0.3827,0.0,-0.9239,-0.1951,0.0,-0.9808,-0.3754,0.1939,-0.9063,-0.1951,0.0,-0.9808,-0.1914,0.1939,-0.9622,-0.1914,0.1939,-0.9622,-0.1951,0.0,-0.9808,0.0,0.0,-1.0,-0.1914,0.1939,-0.9622,0.0,0.0,-1.0,0.0,0.1939,-0.981,0.0,0.1939,-0.981,0.0,0.0,-1.0,0.1951,0.0,-0.9808,0.0,0.1939,-0.981,0.1951,0.0,-0.9808,0.1914,0.1939,-0.9622,0.1914,0.1939,-0.9622,0.1951,0.0,-0.9808,0.3827,0.0,-0.9239,0.1914,0.1939,-0.9622,0.3827,0.0,-0.9239,0.3754,0.1939,-0.9063,0.3754,0.1939,-0.9063,0.3827,0.0,-0.9239,0.5556,0.0,-0.8315,0.3754,0.1939,-0.9063,0.5556,0.0,-0.8315,0.545,0.1939,-0.8157,0.545,0.1939,-0.8157,0.5556,0.0,-0.8315,0.7071,0.0,-0.7071,0.545,0.1939,-0.8157,0.7071,0.0,-0.7071,0.6937,0.1939,-0.6937,0.6937,0.1939,-0.6937,0.7071,0.0,-0.7071,0.8315,0.0,-0.5556,0.6937,0.1939,-0.6937,0.8315,0.0,-0.5556,0.8157,0.1939,-0.545,0.8157,0.1939,-0.545,0.8315,0.0,-0.5556,0.9239,0.0,-0.3827,0.8157,0.1939,-0.545,0.9239,0.0,-0.3827,0.9063,0.1939,-0.3754,0.9063,0.1939,-0.3754,0.9239,0.0,-0.3827,0.9808,0.0,-0.1951,0.9063,0.1939,-0.3754,0.9808,0.0,-0.1951,0.9622,0.1939,-0.1914,0.9622,0.1939,-0.1914,0.9808,0.0,-0.1951,1.0,0.0,0.0,0.9622,0.1939,-0.1914,1.0,0.0,0.0,0.981,0.1939,0.0,0.981,0.1939,0.0,1.0,0.0,0.0,0.9808,0.0,0.1951,0.981,0.1939,0.0,0.9808,0.0,0.1951,0.9622,0.1939,0.1914,0.9622,0.1939,0.1914,0.9808,0.0,0.1951,0.9239,0.0,0.3827,0.9622,0.1939,0.1914,0.9239,0.0,0.3827,0.9063,0.1939,0.3754,0.9063,0.1939,0.3754,0.9239,0.0,0.3827,0.8315,0.0,0.5556,0.9063,0.1939,0.3754,0.8315,0.0,0.5556,0.8157,0.1939,0.545,0.8157,0.1939,0.545,0.8315,0.0,0.5556,0.7071,0.0,0.7071,0.8157,0.1939,0.545,0.7071,0.0,0.7071,0.6937,0.1939,0.6937,0.6937,0.1939,0.6937,0.7071,0.0,0.7071,0.5556,0.0,0.8315,0.6937,0.1939,0.6937,0.5556,0.0,0.8315,0.545,0.1939,0.8157,0.545,0.1939,0.8157,0.5556,0.0,0.8315,0.3827,0.0,0.9239,0.545,0.1939,0.8157,0.3827,0.0,0.9239,0.3754,0.1939,0.9063,0.3754,0.1939,0.9063,0.3827,0.0,0.9239,0.1951,0.0,0.9808,0.3754,0.1939,0.9063,0.1951,0.0,0.9808,0.1914,0.1939,0.9622,0.1914,0.1939,0.9622,0.1951,0.0,0.9808,0.0,0.0,1.0,0.1914,0.1939,0.9622,0.0,0.0,1.0,0.0,0.1939,0.981,0.0,0.0,1.0,0.0,-0.1939,0.981,-0.1914,-0.1939,0.9622,0.0,0.0,1.0,-0.1914,-0.1939,0.9622,-0.1951,0.0,0.9808,-0.1951,0.0,0.9808,-0.1914,-0.1939,0.9622,-0.3754,-0.1939,0.9063,-0.1951,0.0,0.9808,-0.3754,-0.1939,0.9063,-0.3827,0.0,0.9239,-0.3827,0.0,0.9239,-0.3754,-0.1939,0.9063,-0.545,-0.1939,0.8157,-0.3827,0.0,0.9239,-0.545,-0.1939,0.8157,-0.5556,0.0,0.8315,-0.5556,0.0,0.8315,-0.545,-0.1939,0.8157,-0.6937,-0.1939,0.6937,-0.5556,0.0,0.8315,-0.6937,-0.1939,0.6937,-0.7071,0.0,0.7071,-0.7071,0.0,0.7071,-0.6937,-0.1939,0.6937,-0.8157,-0.1939,0.545,-0.7071,0.0,0.7071,-0.8157,-0.1939,0.545,-0.8315,0.0,0.5556,-0.8315,0.0,0.5556,-0.8157,-0.1939,0.545,-0.9063,-0.1939,0.3754,-0.8315,0.0,0.5556,-0.9063,-0.1939,0.3754,-0.9239,0.0,0.3827,-0.9239,0.0,0.3827,-0.9063,-0.1939,0.3754,-0.9622,-0.1939,0.1914,-0.9239,0.0,0.3827,-0.9622,-0.1939,0.1914,-0.9808,0.0,0.1951,-0.9808,0.0,0.1951,-0.9622,-0.1939,0.1914,-0.981,-0.1939,0.0,-0.9808,0.0,0.1951,-0.981,-0.1939,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-0.981,-0.1939,0.0,-0.9622,-0.1939,-0.1914,-1.0,0.0,0.0,-0.9622,-0.1939,-0.1914,-0.9808,0.0,-0.1951,-0.9808,0.0,-0.1951,-0.9622,-0.1939,-0.1914,-0.9063,-0.1939,-0.3754,-0.9808,0.0,-0.1951,-0.9063,-0.1939,-0.3754,-0.9239,0.0,-0.3827,-0.9239,0.0,-0.3827,-0.9063,-0.1939,-0.3754,-0.8157,-0.1939,-0.545,-0.9239,0.0,-0.3827,-0.8157,-0.1939,-0.545,-0.8315,0.0,-0.5556,-0.8315,0.0,-0.5556,-0.8157,-0.1939,-0.545,-0.6937,-0.1939,-0.6937,-0.8315,0.0,-0.5556,-0.6937,-0.1939,-0.6937,-0.7071,0.0,-0.7071,-0.7071,0.0,-0.7071,-0.6937,-0.1939,-0.6937,-0.545,-0.1939,-0.8157,-0.7071,0.0,-0.7071,-0.545,-0.1939,-0.8157,-0.5556,0.0,-0.8315,-0.5556,0.0,-0.8315,-0.545,-0.1939,-0.8157,-0.3754,-0.1939,-0.9063,-0.5556,0.0,-0.8315,-0.3754,-0.1939,-0.9063,-0.3827,0.0,-0.9239,-0.3827,0.0,-0.9239,-0.3754,-0.1939,-0.9063,-0.1914,-0.1939,-0.9622,-0.3827,0.0,-0.9239,-0.1914,-0.1939,-0.9622,-0.1951,0.0,-0.9808,-0.1951,0.0,-0.9808,-0.1914,-0.1939,-0.9622,0.0,-0.1939,-0.981,-0.1951,0.0,-0.9808,0.0,-0.1939,-0.981,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,-0.1939,-0.981,0.1914,-0.1939,-0.9622,0.0,0.0,-1.0,0.1914,-0.1939,-0.9622,0.1951,0.0,-0.9808,0.1951,0.0,-0.9808,0.1914,-0.1939,-0.9622,0.3754,-0.1939,-0.9063,0.1951,0.0,-0.9808,0.3754,-0.1939,-0.9063,0.3827,0.0,-0.9239,0.3827,0.0,-0.9239,0.3754,-0.1939,-0.9063,0.545,-0.1939,-0.8157,0.3827,0.0,-0.9239,0.545,-0.1939,-0.8157,0.5556,0.0,-0.8315,0.5556,0.0,-0.8315,0.545,-0.1939,-0.8157,0.6937,-0.1939,-0.6937,0.5556,0.0,-0.8315,0.6937,-0.1939,-0.6937,0.7071,0.0,-0.7071,0.7071,0.0,-0.7071,0.6937,-0.1939,-0.6937,0.8157,-0.1939,-0.545,0.7071,0.0,-0.7071,0.8157,-0.1939,-0.545,0.8315,0.0,-0.5556,0.8315,0.0,-0.5556,0.8157,-0.1939,-0.545,0.9063,-0.1939,-0.3754,0.8315,0.0,-0.5556,0.9063,-0.1939,-0.3754,0.9239,0.0,-0.3827,0.9239,0.0,-0.3827,0.9063,-0.1939,-0.3754,0.9622,-0.1939,-0.1914,0.9239,0.0,-0.3827,0.9622,-0.1939,-0.1914,0.9808,0.0,-0.1951,0.9808,0.0,-0.1951,0.9622,-0.1939,-0.1914,0.981,-0.1939,0.0,0.9808,0.0,-0.1951,0.981,-0.1939,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.981,-0.1939,0.0,0.9622,-0.1939,0.1914,1.0,0.0,0.0,0.9622,-0.1939,0.1914,0.9808,0.0,0.1951,0.9808,0.0,0.1951,0.9622,-0.1939,0.1914,0.9063,-0.1939,0.3754,0.9808,0.0,0.1951,0.9063,-0.1939,0.3754,0.9239,0.0,0.3827,0.9239,0.0,0.3827,0.9063,-0.1939,0.3754,0.8157,-0.1939,0.545,0.9239,0.0,0.3827,0.8157,-0.1939,0.545,0.8315,0.0,0.5556,0.8315,0.0,0.5556,0.8157,-0.1939,0.545,0.6937,-0.1939,0.6937,0.8315,0.0,0.5556,0.6937,-0.1939,0.6937,0.7071,0.0,0.7071,0.7071,0.0,0.7071,0.6937,-0.1939,0.6937,0.545,-0.1939,0.8157,0.7071,0.0,0.7071,0.545,-0.1939,0.8157,0.5556,0.0,0.8315,0.5556,0.0,0.8315,0.545,-0.1939,0.8157,0.3754,-0.1939,0.9063,0.5556,0.0,0.8315,0.3754,-0.1939,0.9063,0.3827,0.0,0.9239,0.3827,0.0,0.9239,0.3754,-0.1939,0.9063,0.1914,-0.1939,0.9622,0.3827,0.0,0.9239,0.1914,-0.1939,0.9622,0.1951,0.0,0.9808,0.1951,0.0,0.9808,0.1914,-0.1939,0.9622,0.0,-0.1939,0.981,0.1951,0.0,0.9808,0.0,-0.1939,0.981,0.0,0.0,1.0,0.0,-0.1939,0.981,0.0,-0.3805,0.9248,-0.1804,-0.3805,0.907,0.0,-0.1939,0.981,-0.1804,-0.3805,0.907,-0.1914,-0.1939,0.9622,-0.1914,-0.1939,0.9622,-0.1804,-0.3805,0.907,-0.3539,-0.3805,0.8544,-0.1914,-0.1939,0.9622,-0.3539,-0.3805,0.8544,-0.3754,-0.1939,0.9063,-0.3754,-0.1939,0.9063,-0.3539,-0.3805,0.8544,-0.5138,-0.3805,0.7689,-0.3754,-0.1939,0.9063,-0.5138,-0.3805,0.7689,-0.545,-0.1939,0.8157,-0.545,-0.1939,0.8157,-0.5138,-0.3805,0.7689,-0.6539,-0.3805,0.6539,-0.545,-0.1939,0.8157,-0.6539,-0.3805,0.6539,-0.6937,-0.1939,0.6937,-0.6937,-0.1939,0.6937,-0.6539,-0.3805,0.6539,-0.7689,-0.3805,0.5138,-0.6937,-0.1939,0.6937,-0.7689,-0.3805,0.5138,-0.8157,-0.1939,0.545,-0.8157,-0.1939,0.545,-0.7689,-0.3805,0.5138,-0.8544,-0.3805,0.3539,-0.8157,-0.1939,0.545,-0.8544,-0.3805,0.3539,-0.9063,-0.1939,0.3754,-0.9063,-0.1939,0.3754,-0.8544,-0.3805,0.3539,-0.907,-0.3805,0.1804,-0.9063,-0.1939,0.3754,-0.907,-0.3805,0.1804,-0.9622,-0.1939,0.1914,-0.9622,-0.1939,0.1914,-0.907,-0.3805,0.1804,-0.9248,-0.3805,0.0,-0.9622,-0.1939,0.1914,-0.9248,-0.3805,0.0,-0.981,-0.1939,0.0,-0.981,-0.1939,0.0,-0.9248,-0.3805,0.0,-0.907,-0.3805,-0.1804,-0.981,-0.1939,0.0,-0.907,-0.3805,-0.1804,-0.9622,-0.1939,-0.1914,-0.9622,-0.1939,-0.1914,-0.907,-0.3805,-0.1804,-0.8544,-0.3805,-0.3539,-0.9622,-0.1939,-0.1914,-0.8544,-0.3805,-0.3539,-0.9063,-0.1939,-0.3754,-0.9063,-0.1939,-0.3754,-0.8544,-0.3805,-0.3539,-0.7689,-0.3805,-0.5138,-0.9063,-0.1939,-0.3754,-0.7689,-0.3805,-0.5138,-0.8157,-0.1939,-0.545,-0.8157,-0.1939,-0.545,-0.7689,-0.3805,-0.5138,-0.6539,-0.3805,-0.6539,-0.8157,-0.1939,-0.545,-0.6539,-0.3805,-0.6539,-0.6937,-0.1939,-0.6937,-0.6937,-0.1939,-0.6937,-0.6539,-0.3805,-0.6539,-0.5138,-0.3805,-0.7689,-0.6937,-0.1939,-0.6937,-0.5138,-0.3805,-0.7689,-0.545,-0.1939,-0.8157,-0.545,-0.1939,-0.8157,-0.5138,-0.3805,-0.7689,-0.3539,-0.3805,-0.8544,-0.545,-0.1939,-0.8157,-0.3539,-0.3805,-0.8544,-0.3754,-0.1939,-0.9063,-0.3754,-0.1939,-0.9063,-0.3539,-0.3805,-0.8544,-0.1804,-0.3805,-0.907,-0.3754,-0.1939,-0.9063,-0.1804,-0.3805,-0.907,-0.1914,-0.1939,-0.9622,-0.1914,-0.1939,-0.9622,-0.1804,-0.3805,-0.907,0.0,-0.3805,-0.9248,-0.1914,-0.1939,-0.9622,0.0,-0.3805,-0.9248,0.0,-0.1939,-0.981,0.0,-0.1939,-0.981,0.0,-0.3805,-0.9248,0.1804,-0.3805,-0.907,0.0,-0.1939,-0.981,0.1804,-0.3805,-0.907,0.1914,-0.1939,-0.9622,0.1914,-0.1939,-0.9622,0.1804,-0.3805,-0.907,0.3539,-0.3805,-0.8544,0.1914,-0.1939,-0.9622,0.3539,-0.3805,-0.8544,0.3754,-0.1939,-0.9063,0.3754,-0.1939,-0.9063,0.3539,-0.3805,-0.8544,0.5138,-0.3805,-0.7689,0.3754,-0.1939,-0.9063,0.5138,-0.3805,-0.7689,0.545,-0.1939,-0.8157,0.545,-0.1939,-0.8157,0.5138,-0.3805,-0.7689,0.6539,-0.3805,-0.6539,0.545,-0.1939,-0.8157,0.6539,-0.3805,-0.6539,0.6937,-0.1939,-0.6937,0.6937,-0.1939,-0.6937,0.6539,-0.3805,-0.6539,0.7689,-0.3805,-0.5138,0.6937,-0.1939,-0.6937,0.7689,-0.3805,-0.5138,0.8157,-0.1939,-0.545,0.8157,-0.1939,-0.545,0.7689,-0.3805,-0.5138,0.8544,-0.3805,-0.3539,0.8157,-0.1939,-0.545,0.8544,-0.3805,-0.3539,0.9063,-0.1939,-0.3754,0.9063,-0.1939,-0.3754,0.8544,-0.3805,-0.3539,0.907,-0.3805,-0.1804,0.9063,-0.1939,-0.3754,0.907,-0.3805,-0.1804,0.9622,-0.1939,-0.1914,0.9622,-0.1939,-0.1914,0.907,-0.3805,-0.1804,0.9248,-0.3805,0.0,0.9622,-0.1939,-0.1914,0.9248,-0.3805,0.0,0.981,-0.1939,0.0,0.981,-0.1939,0.0,0.9248,-0.3805,0.0,0.907,-0.3805,0.1804,0.981,-0.1939,0.0,0.907,-0.3805,0.1804,0.9622,-0.1939,0.1914,0.9622,-0.1939,0.1914,0.907,-0.3805,0.1804,0.8544,-0.3805,0.3539,0.9622,-0.1939,0.1914,0.8544,-0.3805,0.3539,0.9063,-0.1939,0.3754,0.9063,-0.1939,0.3754,0.8544,-0.3805,0.3539,0.7689,-0.3805,0.5138,0.9063,-0.1939,0.3754,0.7689,-0.3805,0.5138,0.8157,-0.1939,0.545,0.8157,-0.1939,0.545,0.7689,-0.3805,0.5138,0.6539,-0.3805,0.6539,0.8157,-0.1939,0.545,0.6539,-0.3805,0.6539,0.6937,-0.1939,0.6937,0.6937,-0.1939,0.6937,0.6539,-0.3805,0.6539,0.5138,-0.3805,0.7689,0.6937,-0.1939,0.6937,0.5138,-0.3805,0.7689,0.545,-0.1939,0.8157,0.545,-0.1939,0.8157,0.5138,-0.3805,0.7689,0.3539,-0.3805,0.8544,0.545,-0.1939,0.8157,0.3539,-0.3805,0.8544,0.3754,-0.1939,0.9063,0.3754,-0.1939,0.9063,0.3539,-0.3805,0.8544,0.1804,-0.3805,0.907,0.3754,-0.1939,0.9063,0.1804,-0.3805,0.907,0.1914,-0.1939,0.9622,0.1914,-0.1939,0.9622,0.1804,-0.3805,0.907,0.0,-0.3805,0.9248,0.1914,-0.1939,0.9622,0.0,-0.3805,0.9248,0.0,-0.1939,0.981,0.0,-0.3805,0.9248,0.0,-0.5528,0.8333,-0.1626,-0.5528,0.8173,0.0,-0.3805,0.9248,-0.1626,-0.5528,0.8173,-0.1804,-0.3805,0.907,-0.1804,-0.3805,0.907,-0.1626,-0.5528,0.8173,-0.3189,-0.5528,0.7699,-0.1804,-0.3805,0.907,-0.3189,-0.5528,0.7699,-0.3539,-0.3805,0.8544,-0.3539,-0.3805,0.8544,-0.3189,-0.5528,0.7699,-0.463,-0.5528,0.6929,-0.3539,-0.3805,0.8544,-0.463,-0.5528,0.6929,-0.5138,-0.3805,0.7689,-0.5138,-0.3805,0.7689,-0.463,-0.5528,0.6929,-0.5893,-0.5528,0.5893,-0.5138,-0.3805,0.7689,-0.5893,-0.5528,0.5893,-0.6539,-0.3805,0.6539,-0.6539,-0.3805,0.6539,-0.5893,-0.5528,0.5893,-0.6929,-0.5528,0.463,-0.6539,-0.3805,0.6539,-0.6929,-0.5528,0.463,-0.7689,-0.3805,0.5138,-0.7689,-0.3805,0.5138,-0.6929,-0.5528,0.463,-0.7699,-0.5528,0.3189,-0.7689,-0.3805,0.5138,-0.7699,-0.5528,0.3189,-0.8544,-0.3805,0.3539,-0.8544,-0.3805,0.3539,-0.7699,-0.5528,0.3189,-0.8173,-0.5528,0.1626,-0.8544,-0.3805,0.3539,-0.8173,-0.5528,0.1626,-0.907,-0.3805,0.1804,-0.907,-0.3805,0.1804,-0.8173,-0.5528,0.1626,-0.8333,-0.5528,0.0,-0.907,-0.3805,0.1804,-0.8333,-0.5528,0.0,-0.9248,-0.3805,0.0,-0.9248,-0.3805,0.0,-0.8333,-0.5528,0.0,-0.8173,-0.5528,-0.1626,-0.9248,-0.3805,0.0,-0.8173,-0.5528,-0.1626,-0.907,-0.3805,-0.1804,-0.907,-0.3805,-0.1804,-0.8173,-0.5528,-0.1626,-0.7699,-0.5528,-0.3189,-0.907,-0.3805,-0.1804,-0.7699,-0.5528,-0.3189,-0.8544,-0.3805,-0.3539,-0.8544,-0.3805,-0.3539,-0.7699,-0.5528,-0.3189,-0.6929,-0.5528,-0.463,-0.8544,-0.3805,-0.3539,-0.6929,-0.5528,-0.463,-0.7689,-0.3805,-0.5138,-0.7689,-0.3805,-0.5138,-0.6929,-0.5528,-0.463,-0.5893,-0.5528,-0.5893,-0.7689,-0.3805,-0.5138,-0.5893,-0.5528,-0.5893,-0.6539,-0.3805,-0.6539,-0.6539,-0.3805,-0.6539,-0.5893,-0.5528,-0.5893,-0.463,-0.5528,-0.6929,-0.6539,-0.3805,-0.6539,-0.463,-0.5528,-0.6929,-0.5138,-0.3805,-0.7689,-0.5138,-0.3805,-0.7689,-0.463,-0.5528,-0.6929,-0.3189,-0.5528,-0.7699,-0.5138,-0.3805,-0.7689,-0.3189,-0.5528,-0.7699,-0.3539,-0.3805,-0.8544,-0.3539,-0.3805,-0.8544,-0.3189,-0.5528,-0.7699,-0.1626,-0.5528,-0.8173,-0.3539,-0.3805,-0.8544,-0.1626,-0.5528,-0.8173,-0.1804,-0.3805,-0.907,-0.1804,-0.3805,-0.907,-0.1626,-0.5528,-0.8173,0.0,-0.5528,-0.8333,-0.1804,-0.3805,-0.907,0.0,-0.5528,-0.8333,0.0,-0.3805,-0.9248,0.0,-0.3805,-0.9248,0.0,-0.5528,-0.8333,0.1626,-0.5528,-0.8173,0.0,-0.3805,-0.9248,0.1626,-0.5528,-0.8173,0.1804,-0.3805,-0.907,0.1804,-0.3805,-0.907,0.1626,-0.5528,-0.8173,0.3189,-0.5528,-0.7699,0.1804,-0.3805,-0.907,0.3189,-0.5528,-0.7699,0.3539,-0.3805,-0.8544,0.3539,-0.3805,-0.8544,0.3189,-0.5528,-0.7699,0.463,-0.5528,-0.6929,0.3539,-0.3805,-0.8544,0.463,-0.5528,-0.6929,0.5138,-0.3805,-0.7689,0.5138,-0.3805,-0.7689,0.463,-0.5528,-0.6929,0.5893,-0.5528,-0.5893,0.5138,-0.3805,-0.7689,0.5893,-0.5528,-0.5893,0.6539,-0.3805,-0.6539,0.6539,-0.3805,-0.6539,0.5893,-0.5528,-0.5893,0.6929,-0.5528,-0.463,0.6539,-0.3805,-0.6539,0.6929,-0.5528,-0.463,0.7689,-0.3805,-0.5138,0.7689,-0.3805,-0.5138,0.6929,-0.5528,-0.463,0.7699,-0.5528,-0.3189,0.7689,-0.3805,-0.5138,0.7699,-0.5528,-0.3189,0.8544,-0.3805,-0.3539,0.8544,-0.3805,-0.3539,0.7699,-0.5528,-0.3189,0.8173,-0.5528,-0.1626,0.8544,-0.3805,-0.3539,0.8173,-0.5528,-0.1626,0.907,-0.3805,-0.1804,0.907,-0.3805,-0.1804,0.8173,-0.5528,-0.1626,0.8333,-0.5528,0.0,0.907,-0.3805,-0.1804,0.8333,-0.5528,0.0,0.9248,-0.3805,0.0,0.9248,-0.3805,0.0,0.8333,-0.5528,0.0,0.8173,-0.5528,0.1626,0.9248,-0.3805,0.0,0.8173,-0.5528,0.1626,0.907,-0.3805,0.1804,0.907,-0.3805,0.1804,0.8173,-0.5528,0.1626,0.7699,-0.5528,0.3189,0.907,-0.3805,0.1804,0.7699,-0.5528,0.3189,0.8544,-0.3805,0.3539,0.8544,-0.3805,0.3539,0.7699,-0.5528,0.3189,0.6929,-0.5528,0.463,0.8544,-0.3805,0.3539,0.6929,-0.5528,0.463,0.7689,-0.3805,0.5138,0.7689,-0.3805,0.5138,0.6929,-0.5528,0.463,0.5893,-0.5528,0.5893,0.7689,-0.3805,0.5138,0.5893,-0.5528,0.5893,0.6539,-0.3805,0.6539,0.6539,-0.3805,0.6539,0.5893,-0.5528,0.5893,0.463,-0.5528,0.6929,0.6539,-0.3805,0.6539,0.463,-0.5528,0.6929,0.5138,-0.3805,0.7689,0.5138,-0.3805,0.7689,0.463,-0.5528,0.6929,0.3189,-0.5528,0.7699,0.5138,-0.3805,0.7689,0.3189,-0.5528,0.7699,0.3539,-0.3805,0.8544,0.3539,-0.3805,0.8544,0.3189,-0.5528,0.7699,0.1626,-0.5528,0.8173,0.3539,-0.3805,0.8544,0.1626,-0.5528,0.8173,0.1804,-0.3805,0.907,0.1804,-0.3805,0.907,0.1626,-0.5528,0.8173,0.0,-0.5528,0.8333,0.1804,-0.3805,0.907,0.0,-0.5528,0.8333,0.0,-0.3805,0.9248,0.0,-0.5528,0.8333,0.0,-0.7041,0.7101,-0.1385,-0.7041,0.6965,0.0,-0.5528,0.8333,-0.1385,-0.7041,0.6965,-0.1626,-0.5528,0.8173,-0.1626,-0.5528,0.8173,-0.1385,-0.7041,0.6965,-0.2718,-0.7041,0.6561,-0.1626,-0.5528,0.8173,-0.2718,-0.7041,0.6561,-0.3189,-0.5528,0.7699,-0.3189,-0.5528,0.7699,-0.2718,-0.7041,0.6561,-0.3945,-0.7041,0.5905,-0.3189,-0.5528,0.7699,-0.3945,-0.7041,0.5905,-0.463,-0.5528,0.6929,-0.463,-0.5528,0.6929,-0.3945,-0.7041,0.5905,-0.5021,-0.7041,0.5021,-0.463,-0.5528,0.6929,-0.5021,-0.7041,0.5021,-0.5893,-0.5528,0.5893,-0.5893,-0.5528,0.5893,-0.5021,-0.7041,0.5021,-0.5905,-0.7041,0.3945,-0.5893,-0.5528,0.5893,-0.5905,-0.7041,0.3945,-0.6929,-0.5528,0.463,-0.6929,-0.5528,0.463,-0.5905,-0.7041,0.3945,-0.6561,-0.7041,0.2718,-0.6929,-0.5528,0.463,-0.6561,-0.7041,0.2718,-0.7699,-0.5528,0.3189,-0.7699,-0.5528,0.3189,-0.6561,-0.7041,0.2718,-0.6965,-0.7041,0.1385,-0.7699,-0.5528,0.3189,-0.6965,-0.7041,0.1385,-0.8173,-0.5528,0.1626,-0.8173,-0.5528,0.1626,-0.6965,-0.7041,0.1385,-0.7101,-0.7041,0.0,-0.8173,-0.5528,0.1626,-0.7101,-0.7041,0.0,-0.8333,-0.5528,0.0,-0.8333,-0.5528,0.0,-0.7101,-0.7041,0.0,-0.6965,-0.7041,-0.1385,-0.8333,-0.5528,0.0,-0.6965,-0.7041,-0.1385,-0.8173,-0.5528,-0.1626,-0.8173,-0.5528,-0.1626,-0.6965,-0.7041,-0.1385,-0.6561,-0.7041,-0.2718,-0.8173,-0.5528,-0.1626,-0.6561,-0.7041,-0.2718,-0.7699,-0.5528,-0.3189,-0.7699,-0.5528,-0.3189,-0.6561,-0.7041,-0.2718,-0.5905,-0.7041,-0.3945,-0.7699,-0.5528,-0.3189,-0.5905,-0.7041,-0.3945,-0.6929,-0.5528,-0.463,-0.6929,-0.5528,-0.463,-0.5905,-0.7041,-0.3945,-0.5021,-0.7041,-0.5021,-0.6929,-0.5528,-0.463,-0.5021,-0.7041,-0.5021,-0.5893,-0.5528,-0.5893,-0.5893,-0.5528,-0.5893,-0.5021,-0.7041,-0.5021,-0.3945,-0.7041,-0.5905,-0.5893,-0.5528,-0.5893,-0.3945,-0.7041,-0.5905,-0.463,-0.5528,-0.6929,-0.463,-0.5528,-0.6929,-0.3945,-0.7041,-0.5905,-0.2718,-0.7041,-0.6561,-0.463,-0.5528,-0.6929,-0.2718,-0.7041,-0.6561,-0.3189,-0.5528,-0.7699,-0.3189,-0.5528,-0.7699,-0.2718,-0.7041,-0.6561,-0.1385,-0.7041,-0.6965,-0.3189,-0.5528,-0.7699,-0.1385,-0.7041,-0.6965,-0.1626,-0.5528,-0.8173,-0.1626,-0.5528,-0.8173,-0.1385,-0.7041,-0.6965,0.0,-0.7041,-0.7101,-0.1626,-0.5528,-0.8173,0.0,-0.7041,-0.7101,0.0,-0.5528,-0.8333,0.0,-0.5528,-0.8333,0.0,-0.7041,-0.7101,0.1385,-0.7041,-0.6965,0.0,-0.5528,-0.8333,0.1385,-0.7041,-0.6965,0.1626,-0.5528,-0.8173,0.1626,-0.5528,-0.8173,0.1385,-0.7041,-0.6965,0.2718,-0.7041,-0.6561,0.1626,-0.5528,-0.8173,0.2718,-0.7041,-0.6561,0.3189,-0.5528,-0.7699,0.3189,-0.5528,-0.7699,0.2718,-0.7041,-0.6561,0.3945,-0.7041,-0.5905,0.3189,-0.5528,-0.7699,0.3945,-0.7041,-0.5905,0.463,-0.5528,-0.6929,0.463,-0.5528,-0.6929,0.3945,-0.7041,-0.5905,0.5021,-0.7041,-0.5021,0.463,-0.5528,-0.6929,0.5021,-0.7041,-0.5021,0.5893,-0.5528,-0.5893,0.5893,-0.5528,-0.5893,0.5021,-0.7041,-0.5021,0.5905,-0.7041,-0.3945,0.5893,-0.5528,-0.5893,0.5905,-0.7041,-0.3945,0.6929,-0.5528,-0.463,0.6929,-0.5528,-0.463,0.5905,-0.7041,-0.3945,0.6561,-0.7041,-0.2718,0.6929,-0.5528,-0.463,0.6561,-0.7041,-0.2718,0.7699,-0.5528,-0.3189,0.7699,-0.5528,-0.3189,0.6561,-0.7041,-0.2718,0.6965,-0.7041,-0.1385,0.7699,-0.5528,-0.3189,0.6965,-0.7041,-0.1385,0.8173,-0.5528,-0.1626,0.8173,-0.5528,-0.1626,0.6965,-0.7041,-0.1385,0.7101,-0.7041,0.0,0.8173,-0.5528,-0.1626,0.7101,-0.7041,0.0,0.8333,-0.5528,0.0,0.8333,-0.5528,0.0,0.7101,-0.7041,0.0,0.6965,-0.7041,0.1385,0.8333,-0.5528,0.0,0.6965,-0.7041,0.1385,0.8173,-0.5528,0.1626,0.8173,-0.5528,0.1626,0.6965,-0.7041,0.1385,0.6561,-0.7041,0.2718,0.8173,-0.5528,0.1626,0.6561,-0.7041,0.2718,0.7699,-0.5528,0.3189,0.7699,-0.5528,0.3189,0.6561,-0.7041,0.2718,0.5905,-0.7041,0.3945,0.7699,-0.5528,0.3189,0.5905,-0.7041,0.3945,0.6929,-0.5528,0.463,0.6929,-0.5528,0.463,0.5905,-0.7041,0.3945,0.5021,-0.7041,0.5021,0.6929,-0.5528,0.463,0.5021,-0.7041,0.5021,0.5893,-0.5528,0.5893,0.5893,-0.5528,0.5893,0.5021,-0.7041,0.5021,0.3945,-0.7041,0.5905,0.5893,-0.5528,0.5893,0.3945,-0.7041,0.5905,0.463,-0.5528,0.6929,0.463,-0.5528,0.6929,0.3945,-0.7041,0.5905,0.2718,-0.7041,0.6561,0.463,-0.5528,0.6929,0.2718,-0.7041,0.6561,0.3189,-0.5528,0.7699,0.3189,-0.5528,0.7699,0.2718,-0.7041,0.6561,0.1385,-0.7041,0.6965,0.3189,-0.5528,0.7699,0.1385,-0.7041,0.6965,0.1626,-0.5528,0.8173,0.1626,-0.5528,0.8173,0.1385,-0.7041,0.6965,0.0,-0.7041,0.7101,0.1626,-0.5528,0.8173,0.0,-0.7041,0.7101,0.0,-0.5528,0.8333,0.0,-0.7041,0.7101,0.0,-0.8286,0.5598,-0.1092,-0.8286,0.549,0.0,-0.7041,0.7101,-0.1092,-0.8286,0.549,-0.1385,-0.7041,0.6965,-0.1385,-0.7041,0.6965,-0.1092,-0.8286,0.549,-0.2142,-0.8286,0.5172,-0.1385,-0.7041,0.6965,-0.2142,-0.8286,0.5172,-0.2718,-0.7041,0.6561,-0.2718,-0.7041,0.6561,-0.2142,-0.8286,0.5172,-0.311,-0.8286,0.4654,-0.2718,-0.7041,0.6561,-0.311,-0.8286,0.4654,-0.3945,-0.7041,0.5905,-0.3945,-0.7041,0.5905,-0.311,-0.8286,0.4654,-0.3958,-0.8286,0.3958,-0.3945,-0.7041,0.5905,-0.3958,-0.8286,0.3958,-0.5021,-0.7041,0.5021,-0.5021,-0.7041,0.5021,-0.3958,-0.8286,0.3958,-0.4654,-0.8286,0.311,-0.5021,-0.7041,0.5021,-0.4654,-0.8286,0.311,-0.5905,-0.7041,0.3945,-0.5905,-0.7041,0.3945,-0.4654,-0.8286,0.311,-0.5172,-0.8286,0.2142,-0.5905,-0.7041,0.3945,-0.5172,-0.8286,0.2142,-0.6561,-0.7041,0.2718,-0.6561,-0.7041,0.2718,-0.5172,-0.8286,0.2142,-0.549,-0.8286,0.1092,-0.6561,-0.7041,0.2718,-0.549,-0.8286,0.1092,-0.6965,-0.7041,0.1385,-0.6965,-0.7041,0.1385,-0.549,-0.8286,0.1092,-0.5598,-0.8286,0.0,-0.6965,-0.7041,0.1385,-0.5598,-0.8286,0.0,-0.7101,-0.7041,0.0,-0.7101,-0.7041,0.0,-0.5598,-0.8286,0.0,-0.549,-0.8286,-0.1092,-0.7101,-0.7041,0.0,-0.549,-0.8286,-0.1092,-0.6965,-0.7041,-0.1385,-0.6965,-0.7041,-0.1385,-0.549,-0.8286,-0.1092,-0.5172,-0.8286,-0.2142,-0.6965,-0.7041,-0.1385,-0.5172,-0.8286,-0.2142,-0.6561,-0.7041,-0.2718,-0.6561,-0.7041,-0.2718,-0.5172,-0.8286,-0.2142,-0.4654,-0.8286,-0.311,-0.6561,-0.7041,-0.2718,-0.4654,-0.8286,-0.311,-0.5905,-0.7041,-0.3945,-0.5905,-0.7041,-0.3945,-0.4654,-0.8286,-0.311,-0.3958,-0.8286,-0.3958,-0.5905,-0.7041,-0.3945,-0.3958,-0.8286,-0.3958,-0.5021,-0.7041,-0.5021,-0.5021,-0.7041,-0.5021,-0.3958,-0.8286,-0.3958,-0.311,-0.8286,-0.4654,-0.5021,-0.7041,-0.5021,-0.311,-0.8286,-0.4654,-0.3945,-0.7041,-0.5905,-0.3945,-0.7041,-0.5905,-0.311,-0.8286,-0.4654,-0.2142,-0.8286,-0.5172,-0.3945,-0.7041,-0.5905,-0.2142,-0.8286,-0.5172,-0.2718,-0.7041,-0.6561,-0.2718,-0.7041,-0.6561,-0.2142,-0.8286,-0.5172,-0.1092,-0.8286,-0.549,-0.2718,-0.7041,-0.6561,-0.1092,-0.8286,-0.549,-0.1385,-0.7041,-0.6965,-0.1385,-0.7041,-0.6965,-0.1092,-0.8286,-0.549,0.0,-0.8286,-0.5598,-0.1385,-0.7041,-0.6965,0.0,-0.8286,-0.5598,0.0,-0.7041,-0.7101,0.0,-0.7041,-0.7101,0.0,-0.8286,-0.5598,0.1092,-0.8286,-0.549,0.0,-0.7041,-0.7101,0.1092,-0.8286,-0.549,0.1385,-0.7041,-0.6965,0.1385,-0.7041,-0.6965,0.1092,-0.8286,-0.549,0.2142,-0.8286,-0.5172,0.1385,-0.7041,-0.6965,0.2142,-0.8286,-0.5172,0.2718,-0.7041,-0.6561,0.2718,-0.7041,-0.6561,0.2142,-0.8286,-0.5172,0.311,-0.8286,-0.4654,0.2718,-0.7041,-0.6561,0.311,-0.8286,-0.4654,0.3945,-0.7041,-0.5905,0.3945,-0.7041,-0.5905,0.311,-0.8286,-0.4654,0.3958,-0.8286,-0.3958,0.3945,-0.7041,-0.5905,0.3958,-0.8286,-0.3958,0.5021,-0.7041,-0.5021,0.5021,-0.7041,-0.5021,0.3958,-0.8286,-0.3958,0.4654,-0.8286,-0.311,0.5021,-0.7041,-0.5021,0.4654,-0.8286,-0.311,0.5905,-0.7041,-0.3945,0.5905,-0.7041,-0.3945,0.4654,-0.8286,-0.311,0.5172,-0.8286,-0.2142,0.5905,-0.7041,-0.3945,0.5172,-0.8286,-0.2142,0.6561,-0.7041,-0.2718,0.6561,-0.7041,-0.2718,0.5172,-0.8286,-0.2142,0.549,-0.8286,-0.1092,0.6561,-0.7041,-0.2718,0.549,-0.8286,-0.1092,0.6965,-0.7041,-0.1385,0.6965,-0.7041,-0.1385,0.549,-0.8286,-0.1092,0.5598,-0.8286,0.0,0.6965,-0.7041,-0.1385,0.5598,-0.8286,0.0,0.7101,-0.7041,0.0,0.7101,-0.7041,0.0,0.5598,-0.8286,0.0,0.549,-0.8286,0.1092,0.7101,-0.7041,0.0,0.549,-0.8286,0.1092,0.6965,-0.7041,0.1385,0.6965,-0.7041,0.1385,0.549,-0.8286,0.1092,0.5172,-0.8286,0.2142,0.6965,-0.7041,0.1385,0.5172,-0.8286,0.2142,0.6561,-0.7041,0.2718,0.6561,-0.7041,0.2718,0.5172,-0.8286,0.2142,0.4654,-0.8286,0.311,0.6561,-0.7041,0.2718,0.4654,-0.8286,0.311,0.5905,-0.7041,0.3945,0.5905,-0.7041,0.3945,0.4654,-0.8286,0.311,0.3958,-0.8286,0.3958,0.5905,-0.7041,0.3945,0.3958,-0.8286,0.3958,0.5021,-0.7041,0.5021,0.5021,-0.7041,0.5021,0.3958,-0.8286,0.3958,0.311,-0.8286,0.4654,0.5021,-0.7041,0.5021,0.311,-0.8286,0.4654,0.3945,-0.7041,0.5905,0.3945,-0.7041,0.5905,0.311,-0.8286,0.4654,0.2142,-0.8286,0.5172,0.3945,-0.7041,0.5905,0.2142,-0.8286,0.5172,0.2718,-0.7041,0.6561,0.2718,-0.7041,0.6561,0.2142,-0.8286,0.5172,0.1092,-0.8286,0.549,0.2718,-0.7041,0.6561,0.1092,-0.8286,0.549,0.1385,-0.7041,0.6965,0.1385,-0.7041,0.6965,0.1092,-0.8286,0.549,0.0,-0.8286,0.5598,0.1385,-0.7041,0.6965,0.0,-0.8286,0.5598,0.0,-0.7041,0.7101,0.0,-0.8286,0.5598,0.0,-0.9217,0.3879,-0.0757,-0.9217,0.3804,0.0,-0.8286,0.5598,-0.0757,-0.9217,0.3804,-0.1092,-0.8286,0.549,-0.1092,-0.8286,0.549,-0.0757,-0.9217,0.3804,-0.1484,-0.9217,0.3584,-0.1092,-0.8286,0.549,-0.1484,-0.9217,0.3584,-0.2142,-0.8286,0.5172,-0.2142,-0.8286,0.5172,-0.1484,-0.9217,0.3584,-0.2155,-0.9217,0.3225,-0.2142,-0.8286,0.5172,-0.2155,-0.9217,0.3225,-0.311,-0.8286,0.4654,-0.311,-0.8286,0.4654,-0.2155,-0.9217,0.3225,-0.2743,-0.9217,0.2743,-0.311,-0.8286,0.4654,-0.2743,-0.9217,0.2743,-0.3958,-0.8286,0.3958,-0.3958,-0.8286,0.3958,-0.2743,-0.9217,0.2743,-0.3225,-0.9217,0.2155,-0.3958,-0.8286,0.3958,-0.3225,-0.9217,0.2155,-0.4654,-0.8286,0.311,-0.4654,-0.8286,0.311,-0.3225,-0.9217,0.2155,-0.3584,-0.9217,0.1484,-0.4654,-0.8286,0.311,-0.3584,-0.9217,0.1484,-0.5172,-0.8286,0.2142,-0.5172,-0.8286,0.2142,-0.3584,-0.9217,0.1484,-0.3804,-0.9217,0.0757,-0.5172,-0.8286,0.2142,-0.3804,-0.9217,0.0757,-0.549,-0.8286,0.1092,-0.549,-0.8286,0.1092,-0.3804,-0.9217,0.0757,-0.3879,-0.9217,0.0,-0.549,-0.8286,0.1092,-0.3879,-0.9217,0.0,-0.5598,-0.8286,0.0,-0.5598,-0.8286,0.0,-0.3879,-0.9217,0.0,-0.3804,-0.9217,-0.0757,-0.5598,-0.8286,0.0,-0.3804,-0.9217,-0.0757,-0.549,-0.8286,-0.1092,-0.549,-0.8286,-0.1092,-0.3804,-0.9217,-0.0757,-0.3584,-0.9217,-0.1484,-0.549,-0.8286,-0.1092,-0.3584,-0.9217,-0.1484,-0.5172,-0.8286,-0.2142,-0.5172,-0.8286,-0.2142,-0.3584,-0.9217,-0.1484,-0.3225,-0.9217,-0.2155,-0.5172,-0.8286,-0.2142,-0.3225,-0.9217,-0.2155,-0.4654,-0.8286,-0.311,-0.4654,-0.8286,-0.311,-0.3225,-0.9217,-0.2155,-0.2743,-0.9217,-0.2743,-0.4654,-0.8286,-0.311,-0.2743,-0.9217,-0.2743,-0.3958,-0.8286,-0.3958,-0.3958,-0.8286,-0.3958,-0.2743,-0.9217,-0.2743,-0.2155,-0.9217,-0.3225,-0.3958,-0.8286,-0.3958,-0.2155,-0.9217,-0.3225,-0.311,-0.8286,-0.4654,-0.311,-0.8286,-0.4654,-0.2155,-0.9217,-0.3225,-0.1484,-0.9217,-0.3584,-0.311,-0.8286,-0.4654,-0.1484,-0.9217,-0.3584,-0.2142,-0.8286,-0.5172,-0.2142,-0.8286,-0.5172,-0.1484,-0.9217,-0.3584,-0.0757,-0.9217,-0.3804,-0.2142,-0.8286,-0.5172,-0.0757,-0.9217,-0.3804,-0.1092,-0.8286,-0.549,-0.1092,-0.8286,-0.549,-0.0757,-0.9217,-0.3804,0.0,-0.9217,-0.3879,-0.1092,-0.8286,-0.549,0.0,-0.9217,-0.3879,0.0,-0.8286,-0.5598,0.0,-0.8286,-0.5598,0.0,-0.9217,-0.3879,0.0757,-0.9217,-0.3804,0.0,-0.8286,-0.5598,0.0757,-0.9217,-0.3804,0.1092,-0.8286,-0.549,0.1092,-0.8286,-0.549,0.0757,-0.9217,-0.3804,0.1484,-0.9217,-0.3584,0.1092,-0.8286,-0.549,0.1484,-0.9217,-0.3584,0.2142,-0.8286,-0.5172,0.2142,-0.8286,-0.5172,0.1484,-0.9217,-0.3584,0.2155,-0.9217,-0.3225,0.2142,-0.8286,-0.5172,0.2155,-0.9217,-0.3225,0.311,-0.8286,-0.4654,0.311,-0.8286,-0.4654,0.2155,-0.9217,-0.3225,0.2743,-0.9217,-0.2743,0.311,-0.8286,-0.4654,0.2743,-0.9217,-0.2743,0.3958,-0.8286,-0.3958,0.3958,-0.8286,-0.3958,0.2743,-0.9217,-0.2743,0.3225,-0.9217,-0.2155,0.3958,-0.8286,-0.3958,0.3225,-0.9217,-0.2155,0.4654,-0.8286,-0.311,0.4654,-0.8286,-0.311,0.3225,-0.9217,-0.2155,0.3584,-0.9217,-0.1484,0.4654,-0.8286,-0.311,0.3584,-0.9217,-0.1484,0.5172,-0.8286,-0.2142,0.5172,-0.8286,-0.2142,0.3584,-0.9217,-0.1484,0.3804,-0.9217,-0.0757,0.5172,-0.8286,-0.2142,0.3804,-0.9217,-0.0757,0.549,-0.8286,-0.1092,0.549,-0.8286,-0.1092,0.3804,-0.9217,-0.0757,0.3879,-0.9217,0.0,0.549,-0.8286,-0.1092,0.3879,-0.9217,0.0,0.5598,-0.8286,0.0,0.5598,-0.8286,0.0,0.3879,-0.9217,0.0,0.3804,-0.9217,0.0757,0.5598,-0.8286,0.0,0.3804,-0.9217,0.0757,0.549,-0.8286,0.1092,0.549,-0.8286,0.1092,0.3804,-0.9217,0.0757,0.3584,-0.9217,0.1484,0.549,-0.8286,0.1092,0.3584,-0.9217,0.1484,0.5172,-0.8286,0.2142,0.5172,-0.8286,0.2142,0.3584,-0.9217,0.1484,0.3225,-0.9217,0.2155,0.5172,-0.8286,0.2142,0.3225,-0.9217,0.2155,0.4654,-0.8286,0.311,0.4654,-0.8286,0.311,0.3225,-0.9217,0.2155,0.2743,-0.9217,0.2743,0.4654,-0.8286,0.311,0.2743,-0.9217,0.2743,0.3958,-0.8286,0.3958,0.3958,-0.8286,0.3958,0.2743,-0.9217,0.2743,0.2155,-0.9217,0.3225,0.3958,-0.8286,0.3958,0.2155,-0.9217,0.3225,0.311,-0.8286,0.4654,0.311,-0.8286,0.4654,0.2155,-0.9217,0.3225,0.1484,-0.9217,0.3584,0.311,-0.8286,0.4654,0.1484,-0.9217,0.3584,0.2142,-0.8286,0.5172,0.2142,-0.8286,0.5172,0.1484,-0.9217,0.3584,0.0757,-0.9217,0.3804,0.2142,-0.8286,0.5172,0.0757,-0.9217,0.3804,0.1092,-0.8286,0.549,0.1092,-0.8286,0.549,0.0757,-0.9217,0.3804,0.0,-0.9217,0.3879,0.1092,-0.8286,0.549,0.0,-0.9217,0.3879,0.0,-0.8286,0.5598,0.0,-0.9217,0.3879,0.0,-0.9796,0.201,-0.0392,-0.9796,0.1971,0.0,-0.9217,0.3879,-0.0392,-0.9796,0.1971,-0.0757,-0.9217,0.3804,-0.0757,-0.9217,0.3804,-0.0392,-0.9796,0.1971,-0.0769,-0.9796,0.1857,-0.0757,-0.9217,0.3804,-0.0769,-0.9796,0.1857,-0.1484,-0.9217,0.3584,-0.1484,-0.9217,0.3584,-0.0769,-0.9796,0.1857,-0.1117,-0.9796,0.1671,-0.1484,-0.9217,0.3584,-0.1117,-0.9796,0.1671,-0.2155,-0.9217,0.3225,-0.2155,-0.9217,0.3225,-0.1117,-0.9796,0.1671,-0.1421,-0.9796,0.1421,-0.2155,-0.9217,0.3225,-0.1421,-0.9796,0.1421,-0.2743,-0.9217,0.2743,-0.2743,-0.9217,0.2743,-0.1421,-0.9796,0.1421,-0.1671,-0.9796,0.1117,-0.2743,-0.9217,0.2743,-0.1671,-0.9796,0.1117,-0.3225,-0.9217,0.2155,-0.3225,-0.9217,0.2155,-0.1671,-0.9796,0.1117,-0.1857,-0.9796,0.0769,-0.3225,-0.9217,0.2155,-0.1857,-0.9796,0.0769,-0.3584,-0.9217,0.1484,-0.3584,-0.9217,0.1484,-0.1857,-0.9796,0.0769,-0.1971,-0.9796,0.0392,-0.3584,-0.9217,0.1484,-0.1971,-0.9796,0.0392,-0.3804,-0.9217,0.0757,-0.3804,-0.9217,0.0757,-0.1971,-0.9796,0.0392,-0.201,-0.9796,0.0,-0.3804,-0.9217,0.0757,-0.201,-0.9796,0.0,-0.3879,-0.9217,0.0,-0.3879,-0.9217,0.0,-0.201,-0.9796,0.0,-0.1971,-0.9796,-0.0392,-0.3879,-0.9217,0.0,-0.1971,-0.9796,-0.0392,-0.3804,-0.9217,-0.0757,-0.3804,-0.9217,-0.0757,-0.1971,-0.9796,-0.0392,-0.1857,-0.9796,-0.0769,-0.3804,-0.9217,-0.0757,-0.1857,-0.9796,-0.0769,-0.3584,-0.9217,-0.1484,-0.3584,-0.9217,-0.1484,-0.1857,-0.9796,-0.0769,-0.1671,-0.9796,-0.1117,-0.3584,-0.9217,-0.1484,-0.1671,-0.9796,-0.1117,-0.3225,-0.9217,-0.2155,-0.3225,-0.9217,-0.2155,-0.1671,-0.9796,-0.1117,-0.1421,-0.9796,-0.1421,-0.3225,-0.9217,-0.2155,-0.1421,-0.9796,-0.1421,-0.2743,-0.9217,-0.2743,-0.2743,-0.9217,-0.2743,-0.1421,-0.9796,-0.1421,-0.1117,-0.9796,-0.1671,-0.2743,-0.9217,-0.2743,-0.1117,-0.9796,-0.1671,-0.2155,-0.9217,-0.3225,-0.2155,-0.9217,-0.3225,-0.1117,-0.9796,-0.1671,-0.0769,-0.9796,-0.1857,-0.2155,-0.9217,-0.3225,-0.0769,-0.9796,-0.1857,-0.1484,-0.9217,-0.3584,-0.1484,-0.9217,-0.3584,-0.0769,-0.9796,-0.1857,-0.0392,-0.9796,-0.1971,-0.1484,-0.9217,-0.3584,-0.0392,-0.9796,-0.1971,-0.0757,-0.9217,-0.3804,-0.0757,-0.9217,-0.3804,-0.0392,-0.9796,-0.1971,0.0,-0.9796,-0.201,-0.0757,-0.9217,-0.3804,0.0,-0.9796,-0.201,0.0,-0.9217,-0.3879,0.0,-0.9217,-0.3879,0.0,-0.9796,-0.201,0.0392,-0.9796,-0.1971,0.0,-0.9217,-0.3879,0.0392,-0.9796,-0.1971,0.0757,-0.9217,-0.3804,0.0757,-0.9217,-0.3804,0.0392,-0.9796,-0.1971,0.0769,-0.9796,-0.1857,0.0757,-0.9217,-0.3804,0.0769,-0.9796,-0.1857,0.1484,-0.9217,-0.3584,0.1484,-0.9217,-0.3584,0.0769,-0.9796,-0.1857,0.1117,-0.9796,-0.1671,0.1484,-0.9217,-0.3584,0.1117,-0.9796,-0.1671,0.2155,-0.9217,-0.3225,0.2155,-0.9217,-0.3225,0.1117,-0.9796,-0.1671,0.1421,-0.9796,-0.1421,0.2155,-0.9217,-0.3225,0.1421,-0.9796,-0.1421,0.2743,-0.9217,-0.2743,0.2743,-0.9217,-0.2743,0.1421,-0.9796,-0.1421,0.1671,-0.9796,-0.1117,0.2743,-0.9217,-0.2743,0.1671,-0.9796,-0.1117,0.3225,-0.9217,-0.2155,0.3225,-0.9217,-0.2155,0.1671,-0.9796,-0.1117,0.1857,-0.9796,-0.0769,0.3225,-0.9217,-0.2155,0.1857,-0.9796,-0.0769,0.3584,-0.9217,-0.1484,0.3584,-0.9217,-0.1484,0.1857,-0.9796,-0.0769,0.1971,-0.9796,-0.0392,0.3584,-0.9217,-0.1484,0.1971,-0.9796,-0.0392,0.3804,-0.9217,-0.0757,0.3804,-0.9217,-0.0757,0.1971,-0.9796,-0.0392,0.201,-0.9796,0.0,0.3804,-0.9217,-0.0757,0.201,-0.9796,0.0,0.3879,-0.9217,0.0,0.3879,-0.9217,0.0,0.201,-0.9796,0.0,0.1971,-0.9796,0.0392,0.3879,-0.9217,0.0,0.1971,-0.9796,0.0392,0.3804,-0.9217,0.0757,0.3804,-0.9217,0.0757,0.1971,-0.9796,0.0392,0.1857,-0.9796,0.0769,0.3804,-0.9217,0.0757,0.1857,-0.9796,0.0769,0.3584,-0.9217,0.1484,0.3584,-0.9217,0.1484,0.1857,-0.9796,0.0769,0.1671,-0.9796,0.1117,0.3584,-0.9217,0.1484,0.1671,-0.9796,0.1117,0.3225,-0.9217,0.2155,0.3225,-0.9217,0.2155,0.1671,-0.9796,0.1117,0.1421,-0.9796,0.1421,0.3225,-0.9217,0.2155,0.1421,-0.9796,0.1421,0.2743,-0.9217,0.2743,0.2743,-0.9217,0.2743,0.1421,-0.9796,0.1421,0.1117,-0.9796,0.1671,0.2743,-0.9217,0.2743,0.1117,-0.9796,0.1671,0.2155,-0.9217,0.3225,0.2155,-0.9217,0.3225,0.1117,-0.9796,0.1671,0.0769,-0.9796,0.1857,0.2155,-0.9217,0.3225,0.0769,-0.9796,0.1857,0.1484,-0.9217,0.3584,0.1484,-0.9217,0.3584,0.0769,-0.9796,0.1857,0.0392,-0.9796,0.1971,0.1484,-0.9217,0.3584,0.0392,-0.9796,0.1971,0.0757,-0.9217,0.3804,0.0757,-0.9217,0.3804,0.0392,-0.9796,0.1971,0.0,-0.9796,0.201,0.0757,-0.9217,0.3804,0.0,-0.9796,0.201,0.0,-0.9217,0.3879,0.0,-1.0,0.0,-0.0392,-0.9796,0.1971,0.0,-0.9796,0.201,0.0,-1.0,0.0,-0.0769,-0.9796,0.1857,-0.0392,-0.9796,0.1971,0.0,-1.0,0.0,-0.1117,-0.9796,0.1671,-0.0769,-0.9796,0.1857,0.0,-1.0,0.0,-0.1421,-0.9796,0.1421,-0.1117,-0.9796,0.1671,0.0,-1.0,0.0,-0.1671,-0.9796,0.1117,-0.1421,-0.9796,0.1421,0.0,-1.0,0.0,-0.1857,-0.9796,0.0769,-0.1671,-0.9796,0.1117,0.0,-1.0,0.0,-0.1971,-0.9796,0.0392,-0.1857,-0.9796,0.0769,0.0,-1.0,0.0,-0.201,-0.9796,0.0,-0.1971,-0.9796,0.0392,0.0,-1.0,0.0,-0.1971,-0.9796,-0.0392,-0.201,-0.9796,0.0,0.0,-1.0,0.0,-0.1857,-0.9796,-0.0769,-0.1971,-0.9796,-0.0392,0.0,-1.0,0.0,-0.1671,-0.9796,-0.1117,-0.1857,-0.9796,-0.0769,0.0,-1.0,0.0,-0.1421,-0.9796,-0.1421,-0.1671,-0.9796,-0.1117,0.0,-1.0,0.0,-0.1117,-0.9796,-0.1671,-0.1421,-0.9796,-0.1421,0.0,-1.0,0.0,-0.0769,-0.9796,-0.1857,-0.1117,-0.9796,-0.1671,0.0,-1.0,0.0,-0.0392,-0.9796,-0.1971,-0.0769,-0.9796,-0.1857,0.0,-1.0,0.0,0.0,-0.9796,-0.201,-0.0392,-0.9796,-0.1971,0.0,-1.0,0.0,0.0392,-0.9796,-0.1971,0.0,-0.9796,-0.201,0.0,-1.0,0.0,0.0769,-0.9796,-0.1857,0.0392,-0.9796,-0.1971,0.0,-1.0,0.0,0.1117,-0.9796,-0.1671,0.0769,-0.9796,-0.1857,0.0,-1.0,0.0,0.1421,-0.9796,-0.1421,0.1117,-0.9796,-0.1671,0.0,-1.0,0.0,0.1671,-0.9796,-0.1117,0.1421,-0.9796,-0.1421,0.0,-1.0,0.0,0.1857,-0.9796,-0.0769,0.1671,-0.9796,-0.1117,0.0,-1.0,0.0,0.1971,-0.9796,-0.0392,0.1857,-0.9796,-0.0769,0.0,-1.0,0.0,0.201,-0.9796,0.0,0.1971,-0.9796,-0.0392,0.0,-1.0,0.0,0.1971,-0.9796,0.0392,0.201,-0.9796,0.0,0.0,-1.0,0.0,0.1857,-0.9796,0.0769,0.1971,-0.9796,0.0392,0.0,-1.0,0.0,0.1671,-0.9796,0.1117,0.1857,-0.9796,0.0769,0.0,-1.0,0.0,0.1421,-0.9796,0.1421,0.1671,-0.9796,0.1117,0.0,-1.0,0.0,0.1117,-0.9796,0.1671,0.1421,-0.9796,0.1421,0.0,-1.0,0.0,0.0769,-0.9796,0.1857,0.1117,-0.9796,0.1671,0.0,-1.0,0.0,0.0392,-0.9796,0.1971,0.0769,-0.9796,0.1857,0.0,-1.0,0.0,0.0,-0.9796,0.201,0.0392,-0.9796,0.1971],"tangents":null,"uvs":[0.0,2.0,0.0,1.9375,0.0312,1.9375,0.0312,2.0,0.0312,1.9375,0.0625,1.9375,0.0625,2.0,0.0625,1.9375,0.0938,1.9375,0.0938,2.0,0.0938,1.9375,0.125,1.9375,0.125,2.0,0.125,1.9375,0.1562,1.9375,0.1562,2.0,0.1562,1.9375,0.1875,1.9375,0.1875,2.0,0.1875,1.9375,0.2187,1.9375,0.2187,2.0,0.2187,1.9375,0.25,1.9375,0.25,2.0,0.25,1.9375,0.2812,1.9375,0.2812,2.0,0.2812,1.9375,0.3125,1.9375,0.3125,2.0,0.3125,1.9375,0.3437,1.9375,0.3437,2.0,0.3437,1.9375,0.375,1.9375,0.375,2.0,0.375,1.9375,0.4062,1.9375,0.4062,2.0,0.4062,1.9375,0.4375,1.9375,0.4375,2.0,0.4375,1.9375,0.4688,1.9375,0.4688,2.0,0.4688,1.9375,0.5,1.9375,0.5,2.0,0.5,1.9375,0.5313,1.9375,0.5313,2.0,0.5313,1.9375,0.5625,1.9375,0.5625,2.0,0.5625,1.9375,0.5938,1.9375,0.5938,2.0,0.5938,1.9375,0.625,1.9375,0.625,2.0,0.625,1.9375,0.6563,1.9375,0.6563,2.0,0.6563,1.9375,0.6875,1.9375,0.6875,2.0,0.6875,1.9375,0.7188,1.9375,0.7188,2.0,0.7188,1.9375,0.75,1.9375,0.75,2.0,0.75,1.9375,0.7813,1.9375,0.7813,2.0,0.7813,1.9375,0.8125,1.9375,0.8125,2.0,0.8125,1.9375,0.8438,1.9375,0.8438,2.0,0.8438,1.9375,0.875,1.9375,0.875,2.0,0.875,1.9375,0.9063,1.9375,0.9063,2.0,0.9063,1.9375,0.9375,1.9375,0.9375,2.0,0.9375,1.9375,0.9688,1.9375,0.9688,2.0,0.9688,1.9375,1.0,1.9375,0.0,1.9375,0.0,1.875,0.0312,1.875,0.0,1.9375,0.0312,1.875,0.0312,1.9375,0.0312,1.9375,0.0312,1.875,0.0625,1.875,0.0312,1.9375,0.0625,1.875,0.0625,1.9375,0.0625,1.9375,0.0625,1.875,0.0938,1.875,0.0625,1.9375,0.0938,1.875,0.0938,1.9375,0.0938,1.9375,0.0938,1.875,0.125,1.875,0.0938,1.9375,0.125,1.875,0.125,1.9375,0.125,1.9375,0.125,1.875,0.1562,1.875,0.125,1.9375,0.1562,1.875,0.1562,1.9375,0.1562,1.9375,0.1562,1.875,0.1875,1.875,0.1562,1.9375,0.1875,1.875,0.1875,1.9375,0.1875,1.9375,0.1875,1.875,0.2187,1.875,0.1875,1.9375,0.2187,1.875,0.2187,1.9375,0.2187,1.9375,0.2187,1.875,0.25,1.875,0.2187,1.9375,0.25,1.875,0.25,1.9375,0.25,1.9375,0.25,1.875,0.2812,1.875,0.25,1.9375,0.2812,1.875,0.2812,1.9375,0.2812,1.9375,0.2812,1.875,0.3125,1.875,0.2812,1.9375,0.3125,1.875,0.3125,1.9375,0.3125,1.9375,0.3125,1.875,0.3437,1.875,0.3125,1.9375,0.3437,1.875,0.3437,1.9375,0.3437,1.9375,0.3437,1.875,0.375,1.875,0.3437,1.9375,0.375,1.875,0.375,1.9375,0.375,1.9375,0.375,1.875,0.4062,1.875,0.375,1.9375,0.4062,1.875,0.4062,1.9375,0.4062,1.9375,0.4062,1.875,0.4375,1.875,0.4062,1.9375,0.4375,1.875,0.4375,1.9375,0.4375,1.9375,0.4375,1.875,0.4688,1.875,0.4375,1.9375,0.4688,1.875,0.4688,1.9375,0.4688,1.9375,0.4688,1.875,0.5,1.875,0.4688,1.9375,0.5,1.875,0.5,1.9375,0.5,1.9375,0.5,1.875,0.5313,1.875,0.5,1.9375,0.5313,1.875,0.5313,1.9375,0.5313,1.9375,0.5313,1.875,0.5625,1.875,0.5313,1.9375,0.5625,1.875,0.5625,1.9375,0.5625,1.9375,0.5625,1.875,0.5938,1.875,0.5625,1.9375,0.5938,1.875,0.5938,1.9375,0.5938,1.9375,0.5938,1.875,0.625,1.875,0.5938,1.9375,0.625,1.875,0.625,1.9375,0.625,1.9375,0.625,1.875,0.6563,1.875,0.625,1.9375,0.6563,1.875,0.6563,1.9375,0.6563,1.9375,0.6563,1.875,0.6875,1.875,0.6563,1.9375,0.6875,1.875,0.6875,1.9375,0.6875,1.9375,0.6875,1.875,0.7188,1.875,0.6875,1.9375,0.7188,1.875,0.7188,1.9375,0.7188,1.9375,0.7188,1.875,0.75,1.875,0.7188,1.9375,0.75,1.875,0.75,1.9375,0.75,1.9375,0.75,1.875,0.7813,1.875,0.75,1.9375,0.7813,1.875,0.7813,1.9375,0.7813,1.9375,0.7813,1.875,0.8125,1.875,0.7813,1.9375,0.8125,1.875,0.8125,1.9375,0.8125,1.9375,0.8125,1.875,0.8438,1.875,0.8125,1.9375,0.8438,1.875,0.8438,1.9375,0.8438,1.9375,0.8438,1.875,0.875,1.875,0.8438,1.9375,0.875,1.875,0.875,1.9375,0.875,1.9375,0.875,1.875,0.9063,1.875,0.875,1.9375,0.9063,1.875,0.9063,1.9375,0.9063,1.9375,0.9063,1.875,0.9375,1.875,0.9063,1.9375,0.9375,1.875,0.9375,1.9375,0.9375,1.9375,0.9375,1.875,0.9688,1.875,0.9375,1.9375,0.9688,1.875,0.9688,1.9375,0.9688,1.9375,0.9688,1.875,1.0,1.875,0.9688,1.9375,1.0,1.875,1.0,1.9375,0.0,1.875,0.0,1.8125,0.0312,1.8125,0.0,1.875,0.0312,1.8125,0.0312,1.875,0.0312,1.875,0.0312,1.8125,0.0625,1.8125,0.0312,1.875,0.0625,1.8125,0.0625,1.875,0.0625,1.875,0.0625,1.8125,0.0938,1.8125,0.0625,1.875,0.0938,1.8125,0.0938,1.875,0.0938,1.875,0.0938,1.8125,0.125,1.8125,0.0938,1.875,0.125,1.8125,0.125,1.875,0.125,1.875,0.125,1.8125,0.1562,1.8125,0.125,1.875,0.1562,1.8125,0.1562,1.875,0.1562,1.875,0.1562,1.8125,0.1875,1.8125,0.1562,1.875,0.1875,1.8125,0.1875,1.875,0.1875,1.875,0.1875,1.8125,0.2187,1.8125,0.1875,1.875,0.2187,1.8125,0.2187,1.875,0.2187,1.875,0.2187,1.8125,0.25,1.8125,0.2187,1.875,0.25,1.8125,0.25,1.875,0.25,1.875,0.25,1.8125,0.2812,1.8125,0.25,1.875,0.2812,1.8125,0.2812,1.875,0.2812,1.875,0.2812,1.8125,0.3125,1.8125,0.2812,1.875,0.3125,1.8125,0.3125,1.875,0.3125,1.875,0.3125,1.8125,0.3437,1.8125,0.3125,1.875,0.3437,1.8125,0.3437,1.875,0.3437,1.875,0.3437,1.8125,0.375,1.8125,0.3437,1.875,0.375,1.8125,0.375,1.875,0.375,1.875,0.375,1.8125,0.4062,1.8125,0.375,1.875,0.4062,1.8125,0.4062,1.875,0.4062,1.875,0.4062,1.8125,0.4375,1.8125,0.4062,1.875,0.4375,1.8125,0.4375,1.875,0.4375,1.875,0.4375,1.8125,0.4688,1.8125,0.4375,1.875,0.4688,1.8125,0.4688,1.875,0.4688,1.875,0.4688,1.8125,0.5,1.8125,0.4688,1.875,0.5,1.8125,0.5,1.875,0.5,1.875,0.5,1.8125,0.5313,1.8125,0.5,1.875,0.5313,1.8125,0.5313,1.875,0.5313,1.875,0.5313,1.8125,0.5625,1.8125,0.5313,1.875,0.5625,1.8125,0.5625,1.875,0.5625,1.875,0.5625,1.8125,0.5938,1.8125,0.5625,1.875,0.5938,1.8125,0.5938,1.875,0.5938,1.875,0.5938,1.8125,0.625,1.8125,0.5938,1.875,0.625,1.8125,0.625,1.875,0.625,1.875,0.625,1.8125,0.6563,1.8125,0.625,1.875,0.6563,1.8125,0.6563,1.875,0.6563,1.875,0.6563,1.8125,0.6875,1.8125,0.6563,1.875,0.6875,1.8125,0.6875,1.875,0.6875,1.875,0.6875,1.8125,0.7188,1.8125,0.6875,1.875,0.7188,1.8125,0.7188,1.875,0.7188,1.875,0.7188,1.8125,0.75,1.8125,0.7188,1.875,0.75,1.8125,0.75,1.875,0.75,1.875,0.75,1.8125,0.7813,1.8125,0.75,1.875,0.7813,1.8125,0.7813,1.875,0.7813,1.875,0.7813,1.8125,0.8125,1.8125,0.7813,1.875,0.8125,1.8125,0.8125,1.875,0.8125,1.875,0.8125,1.8125,0.8438,1.8125,0.8125,1.875,0.8438,1.8125,0.8438,1.875,0.8438,1.875,0.8438,1.8125,0.875,1.8125,0.8438,1.875,0.875,1.8125,0.875,1.875,0.875,1.875,0.875,1.8125,0.9063,1.8125,0.875,1.875,0.9063,1.8125,0.9063,1.875,0.9063,1.875,0.9063,1.8125,0.9375,1.8125,0.9063,1.875,0.9375,1.8125,0.9375,1.875,0.9375,1.875,0.9375,1.8125,0.9688,1.8125,0.9375,1.875,0.9688,1.8125,0.9688,1.875,0.9688,1.875,0.9688,1.8125,1.0,1.8125,0.9688,1.875,1.0,1.8125,1.0,1.875,0.0,1.8125,0.0,1.75,0.0312,1.75,0.0,1.8125,0.0312,1.75,0.0312,1.8125,0.0312,1.8125,0.0312,1.75,0.0625,1.75,0.0312,1.8125,0.0625,1.75,0.0625,1.8125,0.0625,1.8125,0.0625,1.75,0.0938,1.75,0.0625,1.8125,0.0938,1.75,0.0938,1.8125,0.0938,1.8125,0.0938,1.75,0.125,1.75,0.0938,1.8125,0.125,1.75,0.125,1.8125,0.125,1.8125,0.125,1.75,0.1562,1.75,0.125,1.8125,0.1562,1.75,0.1562,1.8125,0.1562,1.8125,0.1562,1.75,0.1875,1.75,0.1562,1.8125,0.1875,1.75,0.1875,1.8125,0.1875,1.8125,0.1875,1.75,0.2187,1.75,0.1875,1.8125,0.2187,1.75,0.2187,1.8125,0.2187,1.8125,0.2187,1.75,0.25,1.75,0.2187,1.8125,0.25,1.75,0.25,1.8125,0.25,1.8125,0.25,1.75,0.2812,1.75,0.25,1.8125,0.2812,1.75,0.2812,1.8125,0.2812,1.8125,0.2812,1.75,0.3125,1.75,0.2812,1.8125,0.3125,1.75,0.3125,1.8125,0.3125,1.8125,0.3125,1.75,0.3437,1.75,0.3125,1.8125,0.3437,1.75,0.3437,1.8125,0.3437,1.8125,0.3437,1.75,0.375,1.75,0.3437,1.8125,0.375,1.75,0.375,1.8125,0.375,1.8125,0.375,1.75,0.4062,1.75,0.375,1.8125,0.4062,1.75,0.4062,1.8125,0.4062,1.8125,0.4062,1.75,0.4375,1.75,0.4062,1.8125,0.4375,1.75,0.4375,1.8125,0.4375,1.8125,0.4375,1.75,0.4688,1.75,0.4375,1.8125,0.4688,1.75,0.4688,1.8125,0.4688,1.8125,0.4688,1.75,0.5,1.75,0.4688,1.8125,0.5,1.75,0.5,1.8125,0.5,1.8125,0.5,1.75,0.5313,1.75,0.5,1.8125,0.5313,1.75,0.5313,1.8125,0.5313,1.8125,0.5313,1.75,0.5625,1.75,0.5313,1.8125,0.5625,1.75,0.5625,1.8125,0.5625,1.8125,0.5625,1.75,0.5938,1.75,0.5625,1.8125,0.5938,1.75,0.5938,1.8125,0.5938,1.8125,0.5938,1.75,0.625,1.75,0.5938,1.8125,0.625,1.75,0.625,1.8125,0.625,1.8125,0.625,1.75,0.6563,1.75,0.625,1.8125,0.6563,1.75,0.6563,1.8125,0.6563,1.8125,0.6563,1.75,0.6875,1.75,0.6563,1.8125,0.6875,1.75,0.6875,1.8125,0.6875,1.8125,0.6875,1.75,0.7188,1.75,0.6875,1.8125,0.7188,1.75,0.7188,1.8125,0.7188,1.8125,0.7188,1.75,0.75,1.75,0.7188,1.8125,0.75,1.75,0.75,1.8125,0.75,1.8125,0.75,1.75,0.7813,1.75,0.75,1.8125,0.7813,1.75,0.7813,1.8125,0.7813,1.8125,0.7813,1.75,0.8125,1.75,0.7813,1.8125,0.8125,1.75,0.8125,1.8125,0.8125,1.8125,0.8125,1.75,0.8438,1.75,0.8125,1.8125,0.8438,1.75,0.8438,1.8125,0.8438,1.8125,0.8438,1.75,0.875,1.75,0.8438,1.8125,0.875,1.75,0.875,1.8125,0.875,1.8125,0.875,1.75,0.9063,1.75,0.875,1.8125,0.9063,1.75,0.9063,1.8125,0.9063,1.8125,0.9063,1.75,0.9375,1.75,0.9063,1.8125,0.9375,1.75,0.9375,1.8125,0.9375,1.8125,0.9375,1.75,0.9688,1.75,0.9375,1.8125,0.9688,1.75,0.9688,1.8125,0.9688,1.8125,0.9688,1.75,1.0,1.75,0.9688,1.8125,1.0,1.75,1.0,1.8125,0.0,1.75,0.0,1.6875,0.0312,1.6875,0.0,1.75,0.0312,1.6875,0.0312,1.75,0.0312,1.75,0.0312,1.6875,0.0625,1.6875,0.0312,1.75,0.0625,1.6875,0.0625,1.75,0.0625,1.75,0.0625,1.6875,0.0938,1.6875,0.0625,1.75,0.0938,1.6875,0.0938,1.75,0.0938,1.75,0.0938,1.6875,0.125,1.6875,0.0938,1.75,0.125,1.6875,0.125,1.75,0.125,1.75,0.125,1.6875,0.1562,1.6875,0.125,1.75,0.1562,1.6875,0.1562,1.75,0.1562,1.75,0.1562,1.6875,0.1875,1.6875,0.1562,1.75,0.1875,1.6875,0.1875,1.75,0.1875,1.75,0.1875,1.6875,0.2187,1.6875,0.1875,1.75,0.2187,1.6875,0.2187,1.75,0.2187,1.75,0.2187,1.6875,0.25,1.6875,0.2187,1.75,0.25,1.6875,0.25,1.75,0.25,1.75,0.25,1.6875,0.2812,1.6875,0.25,1.75,0.2812,1.6875,0.2812,1.75,0.2812,1.75,0.2812,1.6875,0.3125,1.6875,0.2812,1.75,0.3125,1.6875,0.3125,1.75,0.3125,1.75,0.3125,1.6875,0.3437,1.6875,0.3125,1.75,0.3437,1.6875,0.3437,1.75,0.3437,1.75,0.3437,1.6875,0.375,1.6875,0.3437,1.75,0.375,1.6875,0.375,1.75,0.375,1.75,0.375,1.6875,0.4062,1.6875,0.375,1.75,0.4062,1.6875,0.4062,1.75,0.4062,1.75,0.4062,1.6875,0.4375,1.6875,0.4062,1.75,0.4375,1.6875,0.4375,1.75,0.4375,1.75,0.4375,1.6875,0.4688,1.6875,0.4375,1.75,0.4688,1.6875,0.4688,1.75,0.4688,1.75,0.4688,1.6875,0.5,1.6875,0.4688,1.75,0.5,1.6875,0.5,1.75,0.5,1.75,0.5,1.6875,0.5313,1.6875,0.5,1.75,0.5313,1.6875,0.5313,1.75,0.5313,1.75,0.5313,1.6875,0.5625,1.6875,0.5313,1.75,0.5625,1.6875,0.5625,1.75,0.5625,1.75,0.5625,1.6875,0.5938,1.6875,0.5625,1.75,0.5938,1.6875,0.5938,1.75,0.5938,1.75,0.5938,1.6875,0.625,1.6875,0.5938,1.75,0.625,1.6875,0.625,1.75,0.625,1.75,0.625,1.6875,0.6563,1.6875,0.625,1.75,0.6563,1.6875,0.6563,1.75,0.6563,1.75,0.6563,1.6875,0.6875,1.6875,0.6563,1.75,0.6875,1.6875,0.6875,1.75,0.6875,1.75,0.6875,1.6875,0.7188,1.6875,0.6875,1.75,0.7188,1.6875,0.7188,1.75,0.7188,1.75,0.7188,1.6875,0.75,1.6875,0.7188,1.75,0.75,1.6875,0.75,1.75,0.75,1.75,0.75,1.6875,0.7813,1.6875,0.75,1.75,0.7813,1.6875,0.7813,1.75,0.7813,1.75,0.7813,1.6875,0.8125,1.6875,0.7813,1.75,0.8125,1.6875,0.8125,1.75,0.8125,1.75,0.8125,1.6875,0.8438,1.6875,0.8125,1.75,0.8438,1.6875,0.8438,1.75,0.8438,1.75,0.8438,1.6875,0.875,1.6875,0.8438,1.75,0.875,1.6875,0.875,1.75,0.875,1.75,0.875,1.6875,0.9063,1.6875,0.875,1.75,0.9063,1.6875,0.9063,1.75,0.9063,1.75,0.9063,1.6875,0.9375,1.6875,0.9063,1.75,0.9375,1.6875,0.9375,1.75,0.9375,1.75,0.9375,1.6875,0.9688,1.6875,0.9375,1.75,0.9688,1.6875,0.9688,1.75,0.9688,1.75,0.9688,1.6875,1.0,1.6875,0.9688,1.75,1.0,1.6875,1.0,1.75,0.0,1.6875,0.0,1.625,0.0312,1.625,0.0,1.6875,0.0312,1.625,0.0312,1.6875,0.0312,1.6875,0.0312,1.625,0.0625,1.625,0.0312,1.6875,0.0625,1.625,0.0625,1.6875,0.0625,1.6875,0.0625,1.625,0.0938,1.625,0.0625,1.6875,0.0938,1.625,0.0938,1.6875,0.0938,1.6875,0.0938,1.625,0.125,1.625,0.0938,1.6875,0.125,1.625,0.125,1.6875,0.125,1.6875,0.125,1.625,0.1562,1.625,0.125,1.6875,0.1562,1.625,0.1562,1.6875,0.1562,1.6875,0.1562,1.625,0.1875,1.625,0.1562,1.6875,0.1875,1.625,0.1875,1.6875,0.1875,1.6875,0.1875,1.625,0.2187,1.625,0.1875,1.6875,0.2187,1.625,0.2187,1.6875,0.2187,1.6875,0.2187,1.625,0.25,1.625,0.2187,1.6875,0.25,1.625,0.25,1.6875,0.25,1.6875,0.25,1.625,0.2812,1.625,0.25,1.6875,0.2812,1.625,0.2812,1.6875,0.2812,1.6875,0.2812,1.625,0.3125,1.625,0.2812,1.6875,0.3125,1.625,0.3125,1.6875,0.3125,1.6875,0.3125,1.625,0.3437,1.625,0.3125,1.6875,0.3437,1.625,0.3437,1.6875,0.3437,1.6875,0.3437,1.625,0.375,1.625,0.3437,1.6875,0.375,1.625,0.375,1.6875,0.375,1.6875,0.375,1.625,0.4062,1.625,0.375,1.6875,0.4062,1.625,0.4062,1.6875,0.4062,1.6875,0.4062,1.625,0.4375,1.625,0.4062,1.6875,0.4375,1.625,0.4375,1.6875,0.4375,1.6875,0.4375,1.625,0.4688,1.625,0.4375,1.6875,0.4688,1.625,0.4688,1.6875,0.4688,1.6875,0.4688,1.625,0.5,1.625,0.4688,1.6875,0.5,1.625,0.5,1.6875,0.5,1.6875,0.5,1.625,0.5313,1.625,0.5,1.6875,0.5313,1.625,0.5313,1.6875,0.5313,1.6875,0.5313,1.625,0.5625,1.625,0.5313,1.6875,0.5625,1.625,0.5625,1.6875,0.5625,1.6875,0.5625,1.625,0.5938,1.625,0.5625,1.6875,0.5938,1.625,0.5938,1.6875,0.5938,1.6875,0.5938,1.625,0.625,1.625,0.5938,1.6875,0.625,1.625,0.625,1.6875,0.625,1.6875,0.625,1.625,0.6563,1.625,0.625,1.6875,0.6563,1.625,0.6563,1.6875,0.6563,1.6875,0.6563,1.625,0.6875,1.625,0.6563,1.6875,0.6875,1.625,0.6875,1.6875,0.6875,1.6875,0.6875,1.625,0.7188,1.625,0.6875,1.6875,0.7188,1.625,0.7188,1.6875,0.7188,1.6875,0.7188,1.625,0.75,1.625,0.7188,1.6875,0.75,1.625,0.75,1.6875,0.75,1.6875,0.75,1.625,0.7813,1.625,0.75,1.6875,0.7813,1.625,0.7813,1.6875,0.7813,1.6875,0.7813,1.625,0.8125,1.625,0.7813,1.6875,0.8125,1.625,0.8125,1.6875,0.8125,1.6875,0.8125,1.625,0.8438,1.625,0.8125,1.6875,0.8438,1.625,0.8438,1.6875,0.8438,1.6875,0.8438,1.625,0.875,1.625,0.8438,1.6875,0.875,1.625,0.875,1.6875,0.875,1.6875,0.875,1.625,0.9063,1.625,0.875,1.6875,0.9063,1.625,0.9063,1.6875,0.9063,1.6875,0.9063,1.625,0.9375,1.625,0.9063,1.6875,0.9375,1.625,0.9375,1.6875,0.9375,1.6875,0.9375,1.625,0.9688,1.625,0.9375,1.6875,0.9688,1.625,0.9688,1.6875,0.9688,1.6875,0.9688,1.625,1.0,1.625,0.9688,1.6875,1.0,1.625,1.0,1.6875,0.0,1.625,0.0,1.5625,0.0312,1.5625,0.0,1.625,0.0312,1.5625,0.0312,1.625,0.0312,1.625,0.0312,1.5625,0.0625,1.5625,0.0312,1.625,0.0625,1.5625,0.0625,1.625,0.0625,1.625,0.0625,1.5625,0.0938,1.5625,0.0625,1.625,0.0938,1.5625,0.0938,1.625,0.0938,1.625,0.0938,1.5625,0.125,1.5625,0.0938,1.625,0.125,1.5625,0.125,1.625,0.125,1.625,0.125,1.5625,0.1562,1.5625,0.125,1.625,0.1562,1.5625,0.1562,1.625,0.1562,1.625,0.1562,1.5625,0.1875,1.5625,0.1562,1.625,0.1875,1.5625,0.1875,1.625,0.1875,1.625,0.1875,1.5625,0.2187,1.5625,0.1875,1.625,0.2187,1.5625,0.2187,1.625,0.2187,1.625,0.2187,1.5625,0.25,1.5625,0.2187,1.625,0.25,1.5625,0.25,1.625,0.25,1.625,0.25,1.5625,0.2812,1.5625,0.25,1.625,0.2812,1.5625,0.2812,1.625,0.2812,1.625,0.2812,1.5625,0.3125,1.5625,0.2812,1.625,0.3125,1.5625,0.3125,1.625,0.3125,1.625,0.3125,1.5625,0.3437,1.5625,0.3125,1.625,0.3437,1.5625,0.3437,1.625,0.3437,1.625,0.3437,1.5625,0.375,1.5625,0.3437,1.625,0.375,1.5625,0.375,1.625,0.375,1.625,0.375,1.5625,0.4062,1.5625,0.375,1.625,0.4062,1.5625,0.4062,1.625,0.4062,1.625,0.4062,1.5625,0.4375,1.5625,0.4062,1.625,0.4375,1.5625,0.4375,1.625,0.4375,1.625,0.4375,1.5625,0.4688,1.5625,0.4375,1.625,0.4688,1.5625,0.4688,1.625,0.4688,1.625,0.4688,1.5625,0.5,1.5625,0.4688,1.625,0.5,1.5625,0.5,1.625,0.5,1.625,0.5,1.5625,0.5313,1.5625,0.5,1.625,0.5313,1.5625,0.5313,1.625,0.5313,1.625,0.5313,1.5625,0.5625,1.5625,0.5313,1.625,0.5625,1.5625,0.5625,1.625,0.5625,1.625,0.5625,1.5625,0.5938,1.5625,0.5625,1.625,0.5938,1.5625,0.5938,1.625,0.5938,1.625,0.5938,1.5625,0.625,1.5625,0.5938,1.625,0.625,1.5625,0.625,1.625,0.625,1.625,0.625,1.5625,0.6563,1.5625,0.625,1.625,0.6563,1.5625,0.6563,1.625,0.6563,1.625,0.6563,1.5625,0.6875,1.5625,0.6563,1.625,0.6875,1.5625,0.6875,1.625,0.6875,1.625,0.6875,1.5625,0.7188,1.5625,0.6875,1.625,0.7188,1.5625,0.7188,1.625,0.7188,1.625,0.7188,1.5625,0.75,1.5625,0.7188,1.625,0.75,1.5625,0.75,1.625,0.75,1.625,0.75,1.5625,0.7813,1.5625,0.75,1.625,0.7813,1.5625,0.7813,1.625,0.7813,1.625,0.7813,1.5625,0.8125,1.5625,0.7813,1.625,0.8125,1.5625,0.8125,1.625,0.8125,1.625,0.8125,1.5625,0.8438,1.5625,0.8125,1.625,0.8438,1.5625,0.8438,1.625,0.8438,1.625,0.8438,1.5625,0.875,1.5625,0.8438,1.625,0.875,1.5625,0.875,1.625,0.875,1.625,0.875,1.5625,0.9063,1.5625,0.875,1.625,0.9063,1.5625,0.9063,1.625,0.9063,1.625,0.9063,1.5625,0.9375,1.5625,0.9063,1.625,0.9375,1.5625,0.9375,1.625,0.9375,1.625,0.9375,1.5625,0.9688,1.5625,0.9375,1.625,0.9688,1.5625,0.9688,1.625,0.9688,1.625,0.9688,1.5625,1.0,1.5625,0.9688,1.625,1.0,1.5625,1.0,1.625,0.0,1.5625,0.0,1.5,0.0312,1.5,0.0,1.5625,0.0312,1.5,0.0312,1.5625,0.0312,1.5625,0.0312,1.5,0.0625,1.5,0.0312,1.5625,0.0625,1.5,0.0625,1.5625,0.0625,1.5625,0.0625,1.5,0.0938,1.5,0.0625,1.5625,0.0938,1.5,0.0938,1.5625,0.0938,1.5625,0.0938,1.5,0.125,1.5,0.0938,1.5625,0.125,1.5,0.125,1.5625,0.125,1.5625,0.125,1.5,0.1562,1.5,0.125,1.5625,0.1562,1.5,0.1562,1.5625,0.1562,1.5625,0.1562,1.5,0.1875,1.5,0.1562,1.5625,0.1875,1.5,0.1875,1.5625,0.1875,1.5625,0.1875,1.5,0.2187,1.5,0.1875,1.5625,0.2187,1.5,0.2187,1.5625,0.2187,1.5625,0.2187,1.5,0.25,1.5,0.2187,1.5625,0.25,1.5,0.25,1.5625,0.25,1.5625,0.25,1.5,0.2812,1.5,0.25,1.5625,0.2812,1.5,0.2812,1.5625,0.2812,1.5625,0.2812,1.5,0.3125,1.5,0.2812,1.5625,0.3125,1.5,0.3125,1.5625,0.3125,1.5625,0.3125,1.5,0.3437,1.5,0.3125,1.5625,0.3437,1.5,0.3437,1.5625,0.3437,1.5625,0.3437,1.5,0.375,1.5,0.3437,1.5625,0.375,1.5,0.375,1.5625,0.375,1.5625,0.375,1.5,0.4062,1.5,0.375,1.5625,0.4062,1.5,0.4062,1.5625,0.4062,1.5625,0.4062,1.5,0.4375,1.5,0.4062,1.5625,0.4375,1.5,0.4375,1.5625,0.4375,1.5625,0.4375,1.5,0.4688,1.5,0.4375,1.5625,0.4688,1.5,0.4688,1.5625,0.4688,1.5625,0.4688,1.5,0.5,1.5,0.4688,1.5625,0.5,1.5,0.5,1.5625,0.5,1.5625,0.5,1.5,0.5313,1.5,0.5,1.5625,0.5313,1.5,0.5313,1.5625,0.5313,1.5625,0.5313,1.5,0.5625,1.5,0.5313,1.5625,0.5625,1.5,0.5625,1.5625,0.5625,1.5625,0.5625,1.5,0.5938,1.5,0.5625,1.5625,0.5938,1.5,0.5938,1.5625,0.5938,1.5625,0.5938,1.5,0.625,1.5,0.5938,1.5625,0.625,1.5,0.625,1.5625,0.625,1.5625,0.625,1.5,0.6563,1.5,0.625,1.5625,0.6563,1.5,0.6563,1.5625,0.6563,1.5625,0.6563,1.5,0.6875,1.5,0.6563,1.5625,0.6875,1.5,0.6875,1.5625,0.6875,1.5625,0.6875,1.5,0.7188,1.5,0.6875,1.5625,0.7188,1.5,0.7188,1.5625,0.7188,1.5625,0.7188,1.5,0.75,1.5,0.7188,1.5625,0.75,1.5,0.75,1.5625,0.75,1.5625,0.75,1.5,0.7813,1.5,0.75,1.5625,0.7813,1.5,0.7813,1.5625,0.7813,1.5625,0.7813,1.5,0.8125,1.5,0.7813,1.5625,0.8125,1.5,0.8125,1.5625,0.8125,1.5625,0.8125,1.5,0.8438,1.5,0.8125,1.5625,0.8438,1.5,0.8438,1.5625,0.8438,1.5625,0.8438,1.5,0.875,1.5,0.8438,1.5625,0.875,1.5,0.875,1.5625,0.875,1.5625,0.875,1.5,0.9063,1.5,0.875,1.5625,0.9063,1.5,0.9063,1.5625,0.9063,1.5625,0.9063,1.5,0.9375,1.5,0.9063,1.5625,0.9375,1.5,0.9375,1.5625,0.9375,1.5625,0.9375,1.5,0.9688,1.5,0.9375,1.5625,0.9688,1.5,0.9688,1.5625,0.9688,1.5625,0.9688,1.5,1.0,1.5,0.9688,1.5625,1.0,1.5,1.0,1.5625,0.0,1.5,0.0,1.4375,0.0312,1.4375,0.0,1.5,0.0312,1.4375,0.0312,1.5,0.0312,1.5,0.0312,1.4375,0.0625,1.4375,0.0312,1.5,0.0625,1.4375,0.0625,1.5,0.0625,1.5,0.0625,1.4375,0.0938,1.4375,0.0625,1.5,0.0938,1.4375,0.0938,1.5,0.0938,1.5,0.0938,1.4375,0.125,1.4375,0.0938,1.5,0.125,1.4375,0.125,1.5,0.125,1.5,0.125,1.4375,0.1562,1.4375,0.125,1.5,0.1562,1.4375,0.1562,1.5,0.1562,1.5,0.1562,1.4375,0.1875,1.4375,0.1562,1.5,0.1875,1.4375,0.1875,1.5,0.1875,1.5,0.1875,1.4375,0.2187,1.4375,0.1875,1.5,0.2187,1.4375,0.2187,1.5,0.2187,1.5,0.2187,1.4375,0.25,1.4375,0.2187,1.5,0.25,1.4375,0.25,1.5,0.25,1.5,0.25,1.4375,0.2812,1.4375,0.25,1.5,0.2812,1.4375,0.2812,1.5,0.2812,1.5,0.2812,1.4375,0.3125,1.4375,0.2812,1.5,0.3125,1.4375,0.3125,1.5,0.3125,1.5,0.3125,1.4375,0.3437,1.4375,0.3125,1.5,0.3437,1.4375,0.3437,1.5,0.3437,1.5,0.3437,1.4375,0.375,1.4375,0.3437,1.5,0.375,1.4375,0.375,1.5,0.375,1.5,0.375,1.4375,0.4062,1.4375,0.375,1.5,0.4062,1.4375,0.4062,1.5,0.4062,1.5,0.4062,1.4375,0.4375,1.4375,0.4062,1.5,0.4375,1.4375,0.4375,1.5,0.4375,1.5,0.4375,1.4375,0.4688,1.4375,0.4375,1.5,0.4688,1.4375,0.4688,1.5,0.4688,1.5,0.4688,1.4375,0.5,1.4375,0.4688,1.5,0.5,1.4375,0.5,1.5,0.5,1.5,0.5,1.4375,0.5313,1.4375,0.5,1.5,0.5313,1.4375,0.5313,1.5,0.5313,1.5,0.5313,1.4375,0.5625,1.4375,0.5313,1.5,0.5625,1.4375,0.5625,1.5,0.5625,1.5,0.5625,1.4375,0.5938,1.4375,0.5625,1.5,0.5938,1.4375,0.5938,1.5,0.5938,1.5,0.5938,1.4375,0.625,1.4375,0.5938,1.5,0.625,1.4375,0.625,1.5,0.625,1.5,0.625,1.4375,0.6563,1.4375,0.625,1.5,0.6563,1.4375,0.6563,1.5,0.6563,1.5,0.6563,1.4375,0.6875,1.4375,0.6563,1.5,0.6875,1.4375,0.6875,1.5,0.6875,1.5,0.6875,1.4375,0.7188,1.4375,0.6875,1.5,0.7188,1.4375,0.7188,1.5,0.7188,1.5,0.7188,1.4375,0.75,1.4375,0.7188,1.5,0.75,1.4375,0.75,1.5,0.75,1.5,0.75,1.4375,0.7813,1.4375,0.75,1.5,0.7813,1.4375,0.7813,1.5,0.7813,1.5,0.7813,1.4375,0.8125,1.4375,0.7813,1.5,0.8125,1.4375,0.8125,1.5,0.8125,1.5,0.8125,1.4375,0.8438,1.4375,0.8125,1.5,0.8438,1.4375,0.8438,1.5,0.8438,1.5,0.8438,1.4375,0.875,1.4375,0.8438,1.5,0.875,1.4375,0.875,1.5,0.875,1.5,0.875,1.4375,0.9063,1.4375,0.875,1.5,0.9063,1.4375,0.9063,1.5,0.9063,1.5,0.9063,1.4375,0.9375,1.4375,0.9063,1.5,0.9375,1.4375,0.9375,1.5,0.9375,1.5,0.9375,1.4375,0.9688,1.4375,0.9375,1.5,0.9688,1.4375,0.9688,1.5,0.9688,1.5,0.9688,1.4375,1.0,1.4375,0.9688,1.5,1.0,1.4375,1.0,1.5,0.0,1.4375,0.0,1.375,0.0312,1.375,0.0,1.4375,0.0312,1.375,0.0312,1.4375,0.0312,1.4375,0.0312,1.375,0.0625,1.375,0.0312,1.4375,0.0625,1.375,0.0625,1.4375,0.0625,1.4375,0.0625,1.375,0.0938,1.375,0.0625,1.4375,0.0938,1.375,0.0938,1.4375,0.0938,1.4375,0.0938,1.375,0.125,1.375,0.0938,1.4375,0.125,1.375,0.125,1.4375,0.125,1.4375,0.125,1.375,0.1562,1.375,0.125,1.4375,0.1562,1.375,0.1562,1.4375,0.1562,1.4375,0.1562,1.375,0.1875,1.375,0.1562,1.4375,0.1875,1.375,0.1875,1.4375,0.1875,1.4375,0.1875,1.375,0.2187,1.375,0.1875,1.4375,0.2187,1.375,0.2187,1.4375,0.2187,1.4375,0.2187,1.375,0.25,1.375,0.2187,1.4375,0.25,1.375,0.25,1.4375,0.25,1.4375,0.25,1.375,0.2812,1.375,0.25,1.4375,0.2812,1.375,0.2812,1.4375,0.2812,1.4375,0.2812,1.375,0.3125,1.375,0.2812,1.4375,0.3125,1.375,0.3125,1.4375,0.3125,1.4375,0.3125,1.375,0.3437,1.375,0.3125,1.4375,0.3437,1.375,0.3437,1.4375,0.3437,1.4375,0.3437,1.375,0.375,1.375,0.3437,1.4375,0.375,1.375,0.375,1.4375,0.375,1.4375,0.375,1.375,0.4062,1.375,0.375,1.4375,0.4062,1.375,0.4062,1.4375,0.4062,1.4375,0.4062,1.375,0.4375,1.375,0.4062,1.4375,0.4375,1.375,0.4375,1.4375,0.4375,1.4375,0.4375,1.375,0.4688,1.375,0.4375,1.4375,0.4688,1.375,0.4688,1.4375,0.4688,1.4375,0.4688,1.375,0.5,1.375,0.4688,1.4375,0.5,1.375,0.5,1.4375,0.5,1.4375,0.5,1.375,0.5313,1.375,0.5,1.4375,0.5313,1.375,0.5313,1.4375,0.5313,1.4375,0.5313,1.375,0.5625,1.375,0.5313,1.4375,0.5625,1.375,0.5625,1.4375,0.5625,1.4375,0.5625,1.375,0.5938,1.375,0.5625,1.4375,0.5938,1.375,0.5938,1.4375,0.5938,1.4375,0.5938,1.375,0.625,1.375,0.5938,1.4375,0.625,1.375,0.625,1.4375,0.625,1.4375,0.625,1.375,0.6563,1.375,0.625,1.4375,0.6563,1.375,0.6563,1.4375,0.6563,1.4375,0.6563,1.375,0.6875,1.375,0.6563,1.4375,0.6875,1.375,0.6875,1.4375,0.6875,1.4375,0.6875,1.375,0.7188,1.375,0.6875,1.4375,0.7188,1.375,0.7188,1.4375,0.7188,1.4375,0.7188,1.375,0.75,1.375,0.7188,1.4375,0.75,1.375,0.75,1.4375,0.75,1.4375,0.75,1.375,0.7813,1.375,0.75,1.4375,0.7813,1.375,0.7813,1.4375,0.7813,1.4375,0.7813,1.375,0.8125,1.375,0.7813,1.4375,0.8125,1.375,0.8125,1.4375,0.8125,1.4375,0.8125,1.375,0.8438,1.375,0.8125,1.4375,0.8438,1.375,0.8438,1.4375,0.8438,1.4375,0.8438,1.375,0.875,1.375,0.8438,1.4375,0.875,1.375,0.875,1.4375,0.875,1.4375,0.875,1.375,0.9063,1.375,0.875,1.4375,0.9063,1.375,0.9063,1.4375,0.9063,1.4375,0.9063,1.375,0.9375,1.375,0.9063,1.4375,0.9375,1.375,0.9375,1.4375,0.9375,1.4375,0.9375,1.375,0.9688,1.375,0.9375,1.4375,0.9688,1.375,0.9688,1.4375,0.9688,1.4375,0.9688,1.375,1.0,1.375,0.9688,1.4375,1.0,1.375,1.0,1.4375,0.0,1.375,0.0,1.3125,0.0312,1.3125,0.0,1.375,0.0312,1.3125,0.0312,1.375,0.0312,1.375,0.0312,1.3125,0.0625,1.3125,0.0312,1.375,0.0625,1.3125,0.0625,1.375,0.0625,1.375,0.0625,1.3125,0.0938,1.3125,0.0625,1.375,0.0938,1.3125,0.0938,1.375,0.0938,1.375,0.0938,1.3125,0.125,1.3125,0.0938,1.375,0.125,1.3125,0.125,1.375,0.125,1.375,0.125,1.3125,0.1562,1.3125,0.125,1.375,0.1562,1.3125,0.1562,1.375,0.1562,1.375,0.1562,1.3125,0.1875,1.3125,0.1562,1.375,0.1875,1.3125,0.1875,1.375,0.1875,1.375,0.1875,1.3125,0.2187,1.3125,0.1875,1.375,0.2187,1.3125,0.2187,1.375,0.2187,1.375,0.2187,1.3125,0.25,1.3125,0.2187,1.375,0.25,1.3125,0.25,1.375,0.25,1.375,0.25,1.3125,0.2812,1.3125,0.25,1.375,0.2812,1.3125,0.2812,1.375,0.2812,1.375,0.2812,1.3125,0.3125,1.3125,0.2812,1.375,0.3125,1.3125,0.3125,1.375,0.3125,1.375,0.3125,1.3125,0.3437,1.3125,0.3125,1.375,0.3437,1.3125,0.3437,1.375,0.3437,1.375,0.3437,1.3125,0.375,1.3125,0.3437,1.375,0.375,1.3125,0.375,1.375,0.375,1.375,0.375,1.3125,0.4062,1.3125,0.375,1.375,0.4062,1.3125,0.4062,1.375,0.4062,1.375,0.4062,1.3125,0.4375,1.3125,0.4062,1.375,0.4375,1.3125,0.4375,1.375,0.4375,1.375,0.4375,1.3125,0.4688,1.3125,0.4375,1.375,0.4688,1.3125,0.4688,1.375,0.4688,1.375,0.4688,1.3125,0.5,1.3125,0.4688,1.375,0.5,1.3125,0.5,1.375,0.5,1.375,0.5,1.3125,0.5313,1.3125,0.5,1.375,0.5313,1.3125,0.5313,1.375,0.5313,1.375,0.5313,1.3125,0.5625,1.3125,0.5313,1.375,0.5625,1.3125,0.5625,1.375,0.5625,1.375,0.5625,1.3125,0.5938,1.3125,0.5625,1.375,0.5938,1.3125,0.5938,1.375,0.5938,1.375,0.5938,1.3125,0.625,1.3125,0.5938,1.375,0.625,1.3125,0.625,1.375,0.625,1.375,0.625,1.3125,0.6563,1.3125,0.625,1.375,0.6563,1.3125,0.6563,1.375,0.6563,1.375,0.6563,1.3125,0.6875,1.3125,0.6563,1.375,0.6875,1.3125,0.6875,1.375,0.6875,1.375,0.6875,1.3125,0.7188,1.3125,0.6875,1.375,0.7188,1.3125,0.7188,1.375,0.7188,1.375,0.7188,1.3125,0.75,1.3125,0.7188,1.375,0.75,1.3125,0.75,1.375,0.75,1.375,0.75,1.3125,0.7813,1.3125,0.75,1.375,0.7813,1.3125,0.7813,1.375,0.7813,1.375,0.7813,1.3125,0.8125,1.3125,0.7813,1.375,0.8125,1.3125,0.8125,1.375,0.8125,1.375,0.8125,1.3125,0.8438,1.3125,0.8125,1.375,0.8438,1.3125,0.8438,1.375,0.8438,1.375,0.8438,1.3125,0.875,1.3125,0.8438,1.375,0.875,1.3125,0.875,1.375,0.875,1.375,0.875,1.3125,0.9063,1.3125,0.875,1.375,0.9063,1.3125,0.9063,1.375,0.9063,1.375,0.9063,1.3125,0.9375,1.3125,0.9063,1.375,0.9375,1.3125,0.9375,1.375,0.9375,1.375,0.9375,1.3125,0.9688,1.3125,0.9375,1.375,0.9688,1.3125,0.9688,1.375,0.9688,1.375,0.9688,1.3125,1.0,1.3125,0.9688,1.375,1.0,1.3125,1.0,1.375,0.0,1.3125,0.0,1.25,0.0312,1.25,0.0,1.3125,0.0312,1.25,0.0312,1.3125,0.0312,1.3125,0.0312,1.25,0.0625,1.25,0.0312,1.3125,0.0625,1.25,0.0625,1.3125,0.0625,1.3125,0.0625,1.25,0.0938,1.25,0.0625,1.3125,0.0938,1.25,0.0938,1.3125,0.0938,1.3125,0.0938,1.25,0.125,1.25,0.0938,1.3125,0.125,1.25,0.125,1.3125,0.125,1.3125,0.125,1.25,0.1562,1.25,0.125,1.3125,0.1562,1.25,0.1562,1.3125,0.1562,1.3125,0.1562,1.25,0.1875,1.25,0.1562,1.3125,0.1875,1.25,0.1875,1.3125,0.1875,1.3125,0.1875,1.25,0.2187,1.25,0.1875,1.3125,0.2187,1.25,0.2187,1.3125,0.2187,1.3125,0.2187,1.25,0.25,1.25,0.2187,1.3125,0.25,1.25,0.25,1.3125,0.25,1.3125,0.25,1.25,0.2812,1.25,0.25,1.3125,0.2812,1.25,0.2812,1.3125,0.2812,1.3125,0.2812,1.25,0.3125,1.25,0.2812,1.3125,0.3125,1.25,0.3125,1.3125,0.3125,1.3125,0.3125,1.25,0.3437,1.25,0.3125,1.3125,0.3437,1.25,0.3437,1.3125,0.3437,1.3125,0.3437,1.25,0.375,1.25,0.3437,1.3125,0.375,1.25,0.375,1.3125,0.375,1.3125,0.375,1.25,0.4062,1.25,0.375,1.3125,0.4062,1.25,0.4062,1.3125,0.4062,1.3125,0.4062,1.25,0.4375,1.25,0.4062,1.3125,0.4375,1.25,0.4375,1.3125,0.4375,1.3125,0.4375,1.25,0.4688,1.25,0.4375,1.3125,0.4688,1.25,0.4688,1.3125,0.4688,1.3125,0.4688,1.25,0.5,1.25,0.4688,1.3125,0.5,1.25,0.5,1.3125,0.5,1.3125,0.5,1.25,0.5313,1.25,0.5,1.3125,0.5313,1.25,0.5313,1.3125,0.5313,1.3125,0.5313,1.25,0.5625,1.25,0.5313,1.3125,0.5625,1.25,0.5625,1.3125,0.5625,1.3125,0.5625,1.25,0.5938,1.25,0.5625,1.3125,0.5938,1.25,0.5938,1.3125,0.5938,1.3125,0.5938,1.25,0.625,1.25,0.5938,1.3125,0.625,1.25,0.625,1.3125,0.625,1.3125,0.625,1.25,0.6563,1.25,0.625,1.3125,0.6563,1.25,0.6563,1.3125,0.6563,1.3125,0.6563,1.25,0.6875,1.25,0.6563,1.3125,0.6875,1.25,0.6875,1.3125,0.6875,1.3125,0.6875,1.25,0.7188,1.25,0.6875,1.3125,0.7188,1.25,0.7188,1.3125,0.7188,1.3125,0.7188,1.25,0.75,1.25,0.7188,1.3125,0.75,1.25,0.75,1.3125,0.75,1.3125,0.75,1.25,0.7813,1.25,0.75,1.3125,0.7813,1.25,0.7813,1.3125,0.7813,1.3125,0.7813,1.25,0.8125,1.25,0.7813,1.3125,0.8125,1.25,0.8125,1.3125,0.8125,1.3125,0.8125,1.25,0.8438,1.25,0.8125,1.3125,0.8438,1.25,0.8438,1.3125,0.8438,1.3125,0.8438,1.25,0.875,1.25,0.8438,1.3125,0.875,1.25,0.875,1.3125,0.875,1.3125,0.875,1.25,0.9063,1.25,0.875,1.3125,0.9063,1.25,0.9063,1.3125,0.9063,1.3125,0.9063,1.25,0.9375,1.25,0.9063,1.3125,0.9375,1.25,0.9375,1.3125,0.9375,1.3125,0.9375,1.25,0.9688,1.25,0.9375,1.3125,0.9688,1.25,0.9688,1.3125,0.9688,1.3125,0.9688,1.25,1.0,1.25,0.9688,1.3125,1.0,1.25,1.0,1.3125,0.0,1.25,0.0,1.1875,0.0312,1.1875,0.0,1.25,0.0312,1.1875,0.0312,1.25,0.0312,1.25,0.0312,1.1875,0.0625,1.1875,0.0312,1.25,0.0625,1.1875,0.0625,1.25,0.0625,1.25,0.0625,1.1875,0.0938,1.1875,0.0625,1.25,0.0938,1.1875,0.0938,1.25,0.0938,1.25,0.0938,1.1875,0.125,1.1875,0.0938,1.25,0.125,1.1875,0.125,1.25,0.125,1.25,0.125,1.1875,0.1562,1.1875,0.125,1.25,0.1562,1.1875,0.1562,1.25,0.1562,1.25,0.1562,1.1875,0.1875,1.1875,0.1562,1.25,0.1875,1.1875,0.1875,1.25,0.1875,1.25,0.1875,1.1875,0.2187,1.1875,0.1875,1.25,0.2187,1.1875,0.2187,1.25,0.2187,1.25,0.2187,1.1875,0.25,1.1875,0.2187,1.25,0.25,1.1875,0.25,1.25,0.25,1.25,0.25,1.1875,0.2812,1.1875,0.25,1.25,0.2812,1.1875,0.2812,1.25,0.2812,1.25,0.2812,1.1875,0.3125,1.1875,0.2812,1.25,0.3125,1.1875,0.3125,1.25,0.3125,1.25,0.3125,1.1875,0.3437,1.1875,0.3125,1.25,0.3437,1.1875,0.3437,1.25,0.3437,1.25,0.3437,1.1875,0.375,1.1875,0.3437,1.25,0.375,1.1875,0.375,1.25,0.375,1.25,0.375,1.1875,0.4062,1.1875,0.375,1.25,0.4062,1.1875,0.4062,1.25,0.4062,1.25,0.4062,1.1875,0.4375,1.1875,0.4062,1.25,0.4375,1.1875,0.4375,1.25,0.4375,1.25,0.4375,1.1875,0.4688,1.1875,0.4375,1.25,0.4688,1.1875,0.4688,1.25,0.4688,1.25,0.4688,1.1875,0.5,1.1875,0.4688,1.25,0.5,1.1875,0.5,1.25,0.5,1.25,0.5,1.1875,0.5313,1.1875,0.5,1.25,0.5313,1.1875,0.5313,1.25,0.5313,1.25,0.5313,1.1875,0.5625,1.1875,0.5313,1.25,0.5625,1.1875,0.5625,1.25,0.5625,1.25,0.5625,1.1875,0.5938,1.1875,0.5625,1.25,0.5938,1.1875,0.5938,1.25,0.5938,1.25,0.5938,1.1875,0.625,1.1875,0.5938,1.25,0.625,1.1875,0.625,1.25,0.625,1.25,0.625,1.1875,0.6563,1.1875,0.625,1.25,0.6563,1.1875,0.6563,1.25,0.6563,1.25,0.6563,1.1875,0.6875,1.1875,0.6563,1.25,0.6875,1.1875,0.6875,1.25,0.6875,1.25,0.6875,1.1875,0.7188,1.1875,0.6875,1.25,0.7188,1.1875,0.7188,1.25,0.7188,1.25,0.7188,1.1875,0.75,1.1875,0.7188,1.25,0.75,1.1875,0.75,1.25,0.75,1.25,0.75,1.1875,0.7813,1.1875,0.75,1.25,0.7813,1.1875,0.7813,1.25,0.7813,1.25,0.7813,1.1875,0.8125,1.1875,0.7813,1.25,0.8125,1.1875,0.8125,1.25,0.8125,1.25,0.8125,1.1875,0.8438,1.1875,0.8125,1.25,0.8438,1.1875,0.8438,1.25,0.8438,1.25,0.8438,1.1875,0.875,1.1875,0.8438,1.25,0.875,1.1875,0.875,1.25,0.875,1.25,0.875,1.1875,0.9063,1.1875,0.875,1.25,0.9063,1.1875,0.9063,1.25,0.9063,1.25,0.9063,1.1875,0.9375,1.1875,0.9063,1.25,0.9375,1.1875,0.9375,1.25,0.9375,1.25,0.9375,1.1875,0.9688,1.1875,0.9375,1.25,0.9688,1.1875,0.9688,1.25,0.9688,1.25,0.9688,1.1875,1.0,1.1875,0.9688,1.25,1.0,1.1875,1.0,1.25,0.0,1.1875,0.0,1.125,0.0312,1.125,0.0,1.1875,0.0312,1.125,0.0312,1.1875,0.0312,1.1875,0.0312,1.125,0.0625,1.125,0.0312,1.1875,0.0625,1.125,0.0625,1.1875,0.0625,1.1875,0.0625,1.125,0.0938,1.125,0.0625,1.1875,0.0938,1.125,0.0938,1.1875,0.0938,1.1875,0.0938,1.125,0.125,1.125,0.0938,1.1875,0.125,1.125,0.125,1.1875,0.125,1.1875,0.125,1.125,0.1562,1.125,0.125,1.1875,0.1562,1.125,0.1562,1.1875,0.1562,1.1875,0.1562,1.125,0.1875,1.125,0.1562,1.1875,0.1875,1.125,0.1875,1.1875,0.1875,1.1875,0.1875,1.125,0.2187,1.125,0.1875,1.1875,0.2187,1.125,0.2187,1.1875,0.2187,1.1875,0.2187,1.125,0.25,1.125,0.2187,1.1875,0.25,1.125,0.25,1.1875,0.25,1.1875,0.25,1.125,0.2812,1.125,0.25,1.1875,0.2812,1.125,0.2812,1.1875,0.2812,1.1875,0.2812,1.125,0.3125,1.125,0.2812,1.1875,0.3125,1.125,0.3125,1.1875,0.3125,1.1875,0.3125,1.125,0.3437,1.125,0.3125,1.1875,0.3437,1.125,0.3437,1.1875,0.3437,1.1875,0.3437,1.125,0.375,1.125,0.3437,1.1875,0.375,1.125,0.375,1.1875,0.375,1.1875,0.375,1.125,0.4062,1.125,0.375,1.1875,0.4062,1.125,0.4062,1.1875,0.4062,1.1875,0.4062,1.125,0.4375,1.125,0.4062,1.1875,0.4375,1.125,0.4375,1.1875,0.4375,1.1875,0.4375,1.125,0.4688,1.125,0.4375,1.1875,0.4688,1.125,0.4688,1.1875,0.4688,1.1875,0.4688,1.125,0.5,1.125,0.4688,1.1875,0.5,1.125,0.5,1.1875,0.5,1.1875,0.5,1.125,0.5313,1.125,0.5,1.1875,0.5313,1.125,0.5313,1.1875,0.5313,1.1875,0.5313,1.125,0.5625,1.125,0.5313,1.1875,0.5625,1.125,0.5625,1.1875,0.5625,1.1875,0.5625,1.125,0.5938,1.125,0.5625,1.1875,0.5938,1.125,0.5938,1.1875,0.5938,1.1875,0.5938,1.125,0.625,1.125,0.5938,1.1875,0.625,1.125,0.625,1.1875,0.625,1.1875,0.625,1.125,0.6563,1.125,0.625,1.1875,0.6563,1.125,0.6563,1.1875,0.6563,1.1875,0.6563,1.125,0.6875,1.125,0.6563,1.1875,0.6875,1.125,0.6875,1.1875,0.6875,1.1875,0.6875,1.125,0.7188,1.125,0.6875,1.1875,0.7188,1.125,0.7188,1.1875,0.7188,1.1875,0.7188,1.125,0.75,1.125,0.7188,1.1875,0.75,1.125,0.75,1.1875,0.75,1.1875,0.75,1.125,0.7813,1.125,0.75,1.1875,0.7813,1.125,0.7813,1.1875,0.7813,1.1875,0.7813,1.125,0.8125,1.125,0.7813,1.1875,0.8125,1.125,0.8125,1.1875,0.8125,1.1875,0.8125,1.125,0.8438,1.125,0.8125,1.1875,0.8438,1.125,0.8438,1.1875,0.8438,1.1875,0.8438,1.125,0.875,1.125,0.8438,1.1875,0.875,1.125,0.875,1.1875,0.875,1.1875,0.875,1.125,0.9063,1.125,0.875,1.1875,0.9063,1.125,0.9063,1.1875,0.9063,1.1875,0.9063,1.125,0.9375,1.125,0.9063,1.1875,0.9375,1.125,0.9375,1.1875,0.9375,1.1875,0.9375,1.125,0.9688,1.125,0.9375,1.1875,0.9688,1.125,0.9688,1.1875,0.9688,1.1875,0.9688,1.125,1.0,1.125,0.9688,1.1875,1.0,1.125,1.0,1.1875,0.0,1.125,0.0,1.0625,0.0312,1.0625,0.0,1.125,0.0312,1.0625,0.0312,1.125,0.0312,1.125,0.0312,1.0625,0.0625,1.0625,0.0312,1.125,0.0625,1.0625,0.0625,1.125,0.0625,1.125,0.0625,1.0625,0.0938,1.0625,0.0625,1.125,0.0938,1.0625,0.0938,1.125,0.0938,1.125,0.0938,1.0625,0.125,1.0625,0.0938,1.125,0.125,1.0625,0.125,1.125,0.125,1.125,0.125,1.0625,0.1562,1.0625,0.125,1.125,0.1562,1.0625,0.1562,1.125,0.1562,1.125,0.1562,1.0625,0.1875,1.0625,0.1562,1.125,0.1875,1.0625,0.1875,1.125,0.1875,1.125,0.1875,1.0625,0.2187,1.0625,0.1875,1.125,0.2187,1.0625,0.2187,1.125,0.2187,1.125,0.2187,1.0625,0.25,1.0625,0.2187,1.125,0.25,1.0625,0.25,1.125,0.25,1.125,0.25,1.0625,0.2812,1.0625,0.25,1.125,0.2812,1.0625,0.2812,1.125,0.2812,1.125,0.2812,1.0625,0.3125,1.0625,0.2812,1.125,0.3125,1.0625,0.3125,1.125,0.3125,1.125,0.3125,1.0625,0.3437,1.0625,0.3125,1.125,0.3437,1.0625,0.3437,1.125,0.3437,1.125,0.3437,1.0625,0.375,1.0625,0.3437,1.125,0.375,1.0625,0.375,1.125,0.375,1.125,0.375,1.0625,0.4062,1.0625,0.375,1.125,0.4062,1.0625,0.4062,1.125,0.4062,1.125,0.4062,1.0625,0.4375,1.0625,0.4062,1.125,0.4375,1.0625,0.4375,1.125,0.4375,1.125,0.4375,1.0625,0.4688,1.0625,0.4375,1.125,0.4688,1.0625,0.4688,1.125,0.4688,1.125,0.4688,1.0625,0.5,1.0625,0.4688,1.125,0.5,1.0625,0.5,1.125,0.5,1.125,0.5,1.0625,0.5313,1.0625,0.5,1.125,0.5313,1.0625,0.5313,1.125,0.5313,1.125,0.5313,1.0625,0.5625,1.0625,0.5313,1.125,0.5625,1.0625,0.5625,1.125,0.5625,1.125,0.5625,1.0625,0.5938,1.0625,0.5625,1.125,0.5938,1.0625,0.5938,1.125,0.5938,1.125,0.5938,1.0625,0.625,1.0625,0.5938,1.125,0.625,1.0625,0.625,1.125,0.625,1.125,0.625,1.0625,0.6563,1.0625,0.625,1.125,0.6563,1.0625,0.6563,1.125,0.6563,1.125,0.6563,1.0625,0.6875,1.0625,0.6563,1.125,0.6875,1.0625,0.6875,1.125,0.6875,1.125,0.6875,1.0625,0.7188,1.0625,0.6875,1.125,0.7188,1.0625,0.7188,1.125,0.7188,1.125,0.7188,1.0625,0.75,1.0625,0.7188,1.125,0.75,1.0625,0.75,1.125,0.75,1.125,0.75,1.0625,0.7813,1.0625,0.75,1.125,0.7813,1.0625,0.7813,1.125,0.7813,1.125,0.7813,1.0625,0.8125,1.0625,0.7813,1.125,0.8125,1.0625,0.8125,1.125,0.8125,1.125,0.8125,1.0625,0.8438,1.0625,0.8125,1.125,0.8438,1.0625,0.8438,1.125,0.8438,1.125,0.8438,1.0625,0.875,1.0625,0.8438,1.125,0.875,1.0625,0.875,1.125,0.875,1.125,0.875,1.0625,0.9063,1.0625,0.875,1.125,0.9063,1.0625,0.9063,1.125,0.9063,1.125,0.9063,1.0625,0.9375,1.0625,0.9063,1.125,0.9375,1.0625,0.9375,1.125,0.9375,1.125,0.9375,1.0625,0.9688,1.0625,0.9375,1.125,0.9688,1.0625,0.9688,1.125,0.9688,1.125,0.9688,1.0625,1.0,1.0625,0.9688,1.125,1.0,1.0625,1.0,1.125,0.0,1.0,0.0312,1.0625,0.0,1.0625,0.0312,1.0,0.0625,1.0625,0.0312,1.0625,0.0625,1.0,0.0938,1.0625,0.0625,1.0625,0.0938,1.0,0.125,1.0625,0.0938,1.0625,0.125,1.0,0.1562,1.0625,0.125,1.0625,0.1562,1.0,0.1875,1.0625,0.1562,1.0625,0.1875,1.0,0.2187,1.0625,0.1875,1.0625,0.2187,1.0,0.25,1.0625,0.2187,1.0625,0.25,1.0,0.2812,1.0625,0.25,1.0625,0.2812,1.0,0.3125,1.0625,0.2812,1.0625,0.3125,1.0,0.3437,1.0625,0.3125,1.0625,0.3437,1.0,0.375,1.0625,0.3437,1.0625,0.375,1.0,0.4062,1.0625,0.375,1.0625,0.4062,1.0,0.4375,1.0625,0.4062,1.0625,0.4375,1.0,0.4688,1.0625,0.4375,1.0625,0.4688,1.0,0.5,1.0625,0.4688,1.0625,0.5,1.0,0.5313,1.0625,0.5,1.0625,0.5313,1.0,0.5625,1.0625,0.5313,1.0625,0.5625,1.0,0.5938,1.0625,0.5625,1.0625,0.5938,1.0,0.625,1.0625,0.5938,1.0625,0.625,1.0,0.6563,1.0625,0.625,1.0625,0.6563,1.0,0.6875,1.0625,0.6563,1.0625,0.6875,1.0,0.7188,1.0625,0.6875,1.0625,0.7188,1.0,0.75,1.0625,0.7188,1.0625,0.75,1.0,0.7813,1.0625,0.75,1.0625,0.7813,1.0,0.8125,1.0625,0.7813,1.0625,0.8125,1.0,0.8438,1.0625,0.8125,1.0625,0.8438,1.0,0.875,1.0625,0.8438,1.0625,0.875,1.0,0.9063,1.0625,0.875,1.0625,0.9063,1.0,0.9375,1.0625,0.9063,1.0625,0.9375,1.0,0.9688,1.0625,0.9375,1.0625,0.9688,1.0,1.0,1.0625,0.9688,1.0625],"uvs2":null,"colors":null,"hasVertexAlpha":false,"matricesIndices":null,"matricesWeights":null,"matricesIndicesExtra":null,"matricesWeightsExtra":null,"indices":[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,1984,1985,1986,1987,1988,1989,1990,1991,1992,1993,1994,1995,1996,1997,1998,1999,2000,2001,2002,2003,2004,2005,2006,2007,2008,2009,2010,2011,2012,2013,2014,2015,2016,2017,2018,2019,2020,2021,2022,2023,2024,2025,2026,2027,2028,2029,2030,2031,2032,2033,2034,2035,2036,2037,2038,2039,2040,2041,2042,2043,2044,2045,2046,2047,2048,2049,2050,2051,2052,2053,2054,2055,2056,2057,2058,2059,2060,2061,2062,2063,2064,2065,2066,2067,2068,2069,2070,2071,2072,2073,2074,2075,2076,2077,2078,2079,2080,2081,2082,2083,2084,2085,2086,2087,2088,2089,2090,2091,2092,2093,2094,2095,2096,2097,2098,2099,2100,2101,2102,2103,2104,2105,2106,2107,2108,2109,2110,2111,2112,2113,2114,2115,2116,2117,2118,2119,2120,2121,2122,2123,2124,2125,2126,2127,2128,2129,2130,2131,2132,2133,2134,2135,2136,2137,2138,2139,2140,2141,2142,2143,2144,2145,2146,2147,2148,2149,2150,2151,2152,2153,2154,2155,2156,2157,2158,2159,2160,2161,2162,2163,2164,2165,2166,2167,2168,2169,2170,2171,2172,2173,2174,2175,2176,2177,2178,2179,2180,2181,2182,2183,2184,2185,2186,2187,2188,2189,2190,2191,2192,2193,2194,2195,2196,2197,2198,2199,2200,2201,2202,2203,2204,2205,2206,2207,2208,2209,2210,2211,2212,2213,2214,2215,2216,2217,2218,2219,2220,2221,2222,2223,2224,2225,2226,2227,2228,2229,2230,2231,2232,2233,2234,2235,2236,2237,2238,2239,2240,2241,2242,2243,2244,2245,2246,2247,2248,2249,2250,2251,2252,2253,2254,2255,2256,2257,2258,2259,2260,2261,2262,2263,2264,2265,2266,2267,2268,2269,2270,2271,2272,2273,2274,2275,2276,2277,2278,2279,2280,2281,2282,2283,2284,2285,2286,2287,2288,2289,2290,2291,2292,2293,2294,2295,2296,2297,2298,2299,2300,2301,2302,2303,2304,2305,2306,2307,2308,2309,2310,2311,2312,2313,2314,2315,2316,2317,2318,2319,2320,2321,2322,2323,2324,2325,2326,2327,2328,2329,2330,2331,2332,2333,2334,2335,2336,2337,2338,2339,2340,2341,2342,2343,2344,2345,2346,2347,2348,2349,2350,2351,2352,2353,2354,2355,2356,2357,2358,2359,2360,2361,2362,2363,2364,2365,2366,2367,2368,2369,2370,2371,2372,2373,2374,2375,2376,2377,2378,2379,2380,2381,2382,2383,2384,2385,2386,2387,2388,2389,2390,2391,2392,2393,2394,2395,2396,2397,2398,2399,2400,2401,2402,2403,2404,2405,2406,2407,2408,2409,2410,2411,2412,2413,2414,2415,2416,2417,2418,2419,2420,2421,2422,2423,2424,2425,2426,2427,2428,2429,2430,2431,2432,2433,2434,2435,2436,2437,2438,2439,2440,2441,2442,2443,2444,2445,2446,2447,2448,2449,2450,2451,2452,2453,2454,2455,2456,2457,2458,2459,2460,2461,2462,2463,2464,2465,2466,2467,2468,2469,2470,2471,2472,2473,2474,2475,2476,2477,2478,2479,2480,2481,2482,2483,2484,2485,2486,2487,2488,2489,2490,2491,2492,2493,2494,2495,2496,2497,2498,2499,2500,2501,2502,2503,2504,2505,2506,2507,2508,2509,2510,2511,2512,2513,2514,2515,2516,2517,2518,2519,2520,2521,2522,2523,2524,2525,2526,2527,2528,2529,2530,2531,2532,2533,2534,2535,2536,2537,2538,2539,2540,2541,2542,2543,2544,2545,2546,2547,2548,2549,2550,2551,2552,2553,2554,2555,2556,2557,2558,2559,2560,2561,2562,2563,2564,2565,2566,2567,2568,2569,2570,2571,2572,2573,2574,2575,2576,2577,2578,2579,2580,2581,2582,2583,2584,2585,2586,2587,2588,2589,2590,2591,2592,2593,2594,2595,2596,2597,2598,2599,2600,2601,2602,2603,2604,2605,2606,2607,2608,2609,2610,2611,2612,2613,2614,2615,2616,2617,2618,2619,2620,2621,2622,2623,2624,2625,2626,2627,2628,2629,2630,2631,2632,2633,2634,2635,2636,2637,2638,2639,2640,2641,2642,2643,2644,2645,2646,2647,2648,2649,2650,2651,2652,2653,2654,2655,2656,2657,2658,2659,2660,2661,2662,2663,2664,2665,2666,2667,2668,2669,2670,2671,2672,2673,2674,2675,2676,2677,2678,2679,2680,2681,2682,2683,2684,2685,2686,2687,2688,2689,2690,2691,2692,2693,2694,2695,2696,2697,2698,2699,2700,2701,2702,2703,2704,2705,2706,2707,2708,2709,2710,2711,2712,2713,2714,2715,2716,2717,2718,2719,2720,2721,2722,2723,2724,2725,2726,2727,2728,2729,2730,2731,2732,2733,2734,2735,2736,2737,2738,2739,2740,2741,2742,2743,2744,2745,2746,2747,2748,2749,2750,2751,2752,2753,2754,2755,2756,2757,2758,2759,2760,2761,2762,2763,2764,2765,2766,2767,2768,2769,2770,2771,2772,2773,2774,2775,2776,2777,2778,2779,2780,2781,2782,2783,2784,2785,2786,2787,2788,2789,2790,2791,2792,2793,2794,2795,2796,2797,2798,2799,2800,2801,2802,2803,2804,2805,2806,2807,2808,2809,2810,2811,2812,2813,2814,2815,2816,2817,2818,2819,2820,2821,2822,2823,2824,2825,2826,2827,2828,2829,2830,2831,2832,2833,2834,2835,2836,2837,2838,2839,2840,2841,2842,2843,2844,2845,2846,2847,2848,2849,2850,2851,2852,2853,2854,2855,2856,2857,2858,2859,2860,2861,2862,2863,2864,2865,2866,2867,2868,2869,2870,2871,2872,2873,2874,2875,2876,2877,2878,2879],"receiveShadows":true,"infiniteDistance":false,"billboardMode":0,"visibility":1.0,"subMeshes":[{"materialIndex":0,"verticesStart":0,"verticesCount":2880,"indexStart":0,"indexCount":2880}],"instances":null,"skeletonId":-1,"numBoneInfluencers":4,"applyFog":true,"lodMeshIds":null,"lodDistances":null,"lodCoverages":null,"rotation":null,"scaling":[1.0,1.0,1.0],"rotationQuaternion":[0.0,0.7071,0.0,0.7071],"actions":null,"checkCollisions":false,"pickable":false,"showBoundingBox":false,"showSubMeshesBoundingBox":false,"alphaIndex":1000,"physicsImpostor":0,"physicsMass":0.0,"physicsFriction":0.0,"physicsRestitution":0.0,"name":"StandardMesh","id":"113f2dbc-dce1-4faa-be71-35277504433b","parentId":null,"position":[0.0,0.0,0.0],"animations":[],"autoAnimate":true,"autoAnimateFrom":0,"autoAnimateTo":100,"autoAnimateLoop":true,"metadata":null},{"materialId":"e8d366dc-9a25-4d46-80f2-60a95ec88505","isEnabled":true,"isVisible":true,"positions":[0.0,1.0,0.0,0.0,0.9808,0.1951,-0.0381,0.9808,0.1913,0.0,1.0,0.0,-0.0381,0.9808,0.1913,-0.0747,0.9808,0.1802,0.0,1.0,0.0,-0.0747,0.9808,0.1802,-0.1084,0.9808,0.1622,0.0,1.0,0.0,-0.1084,0.9808,0.1622,-0.1379,0.9808,0.1379,0.0,1.0,0.0,-0.1379,0.9808,0.1379,-0.1622,0.9808,0.1084,0.0,1.0,0.0,-0.1622,0.9808,0.1084,-0.1802,0.9808,0.0747,0.0,1.0,0.0,-0.1802,0.9808,0.0747,-0.1913,0.9808,0.0381,0.0,1.0,0.0,-0.1913,0.9808,0.0381,-0.1951,0.9808,0.0,0.0,1.0,0.0,-0.1951,0.9808,0.0,-0.1913,0.9808,-0.0381,0.0,1.0,0.0,-0.1913,0.9808,-0.0381,-0.1802,0.9808,-0.0747,0.0,1.0,0.0,-0.1802,0.9808,-0.0747,-0.1622,0.9808,-0.1084,0.0,1.0,0.0,-0.1622,0.9808,-0.1084,-0.1379,0.9808,-0.1379,0.0,1.0,0.0,-0.1379,0.9808,-0.1379,-0.1084,0.9808,-0.1622,0.0,1.0,0.0,-0.1084,0.9808,-0.1622,-0.0747,0.9808,-0.1802,0.0,1.0,0.0,-0.0747,0.9808,-0.1802,-0.0381,0.9808,-0.1913,0.0,1.0,0.0,-0.0381,0.9808,-0.1913,0.0,0.9808,-0.1951,0.0,1.0,0.0,0.0,0.9808,-0.1951,0.0381,0.9808,-0.1913,0.0,1.0,0.0,0.0381,0.9808,-0.1913,0.0747,0.9808,-0.1802,0.0,1.0,0.0,0.0747,0.9808,-0.1802,0.1084,0.9808,-0.1622,0.0,1.0,0.0,0.1084,0.9808,-0.1622,0.1379,0.9808,-0.1379,0.0,1.0,0.0,0.1379,0.9808,-0.1379,0.1622,0.9808,-0.1084,0.0,1.0,0.0,0.1622,0.9808,-0.1084,0.1802,0.9808,-0.0747,0.0,1.0,0.0,0.1802,0.9808,-0.0747,0.1913,0.9808,-0.0381,0.0,1.0,0.0,0.1913,0.9808,-0.0381,0.1951,0.9808,0.0,0.0,1.0,0.0,0.1951,0.9808,0.0,0.1913,0.9808,0.0381,0.0,1.0,0.0,0.1913,0.9808,0.0381,0.1802,0.9808,0.0747,0.0,1.0,0.0,0.1802,0.9808,0.0747,0.1622,0.9808,0.1084,0.0,1.0,0.0,0.1622,0.9808,0.1084,0.1379,0.9808,0.1379,0.0,1.0,0.0,0.1379,0.9808,0.1379,0.1084,0.9808,0.1622,0.0,1.0,0.0,0.1084,0.9808,0.1622,0.0747,0.9808,0.1802,0.0,1.0,0.0,0.0747,0.9808,0.1802,0.0381,0.9808,0.1913,0.0,1.0,0.0,0.0381,0.9808,0.1913,0.0,0.9808,0.1951,0.0,0.9808,0.1951,0.0,0.9239,0.3827,-0.0747,0.9239,0.3753,0.0,0.9808,0.1951,-0.0747,0.9239,0.3753,-0.0381,0.9808,0.1913,-0.0381,0.9808,0.1913,-0.0747,0.9239,0.3753,-0.1464,0.9239,0.3536,-0.0381,0.9808,0.1913,-0.1464,0.9239,0.3536,-0.0747,0.9808,0.1802,-0.0747,0.9808,0.1802,-0.1464,0.9239,0.3536,-0.2126,0.9239,0.3182,-0.0747,0.9808,0.1802,-0.2126,0.9239,0.3182,-0.1084,0.9808,0.1622,-0.1084,0.9808,0.1622,-0.2126,0.9239,0.3182,-0.2706,0.9239,0.2706,-0.1084,0.9808,0.1622,-0.2706,0.9239,0.2706,-0.1379,0.9808,0.1379,-0.1379,0.9808,0.1379,-0.2706,0.9239,0.2706,-0.3182,0.9239,0.2126,-0.1379,0.9808,0.1379,-0.3182,0.9239,0.2126,-0.1622,0.9808,0.1084,-0.1622,0.9808,0.1084,-0.3182,0.9239,0.2126,-0.3536,0.9239,0.1464,-0.1622,0.9808,0.1084,-0.3536,0.9239,0.1464,-0.1802,0.9808,0.0747,-0.1802,0.9808,0.0747,-0.3536,0.9239,0.1464,-0.3753,0.9239,0.0747,-0.1802,0.9808,0.0747,-0.3753,0.9239,0.0747,-0.1913,0.9808,0.0381,-0.1913,0.9808,0.0381,-0.3753,0.9239,0.0747,-0.3827,0.9239,0.0,-0.1913,0.9808,0.0381,-0.3827,0.9239,0.0,-0.1951,0.9808,0.0,-0.1951,0.9808,0.0,-0.3827,0.9239,0.0,-0.3753,0.9239,-0.0747,-0.1951,0.9808,0.0,-0.3753,0.9239,-0.0747,-0.1913,0.9808,-0.0381,-0.1913,0.9808,-0.0381,-0.3753,0.9239,-0.0747,-0.3536,0.9239,-0.1464,-0.1913,0.9808,-0.0381,-0.3536,0.9239,-0.1464,-0.1802,0.9808,-0.0747,-0.1802,0.9808,-0.0747,-0.3536,0.9239,-0.1464,-0.3182,0.9239,-0.2126,-0.1802,0.9808,-0.0747,-0.3182,0.9239,-0.2126,-0.1622,0.9808,-0.1084,-0.1622,0.9808,-0.1084,-0.3182,0.9239,-0.2126,-0.2706,0.9239,-0.2706,-0.1622,0.9808,-0.1084,-0.2706,0.9239,-0.2706,-0.1379,0.9808,-0.1379,-0.1379,0.9808,-0.1379,-0.2706,0.9239,-0.2706,-0.2126,0.9239,-0.3182,-0.1379,0.9808,-0.1379,-0.2126,0.9239,-0.3182,-0.1084,0.9808,-0.1622,-0.1084,0.9808,-0.1622,-0.2126,0.9239,-0.3182,-0.1464,0.9239,-0.3536,-0.1084,0.9808,-0.1622,-0.1464,0.9239,-0.3536,-0.0747,0.9808,-0.1802,-0.0747,0.9808,-0.1802,-0.1464,0.9239,-0.3536,-0.0747,0.9239,-0.3753,-0.0747,0.9808,-0.1802,-0.0747,0.9239,-0.3753,-0.0381,0.9808,-0.1913,-0.0381,0.9808,-0.1913,-0.0747,0.9239,-0.3753,0.0,0.9239,-0.3827,-0.0381,0.9808,-0.1913,0.0,0.9239,-0.3827,0.0,0.9808,-0.1951,0.0,0.9808,-0.1951,0.0,0.9239,-0.3827,0.0747,0.9239,-0.3753,0.0,0.9808,-0.1951,0.0747,0.9239,-0.3753,0.0381,0.9808,-0.1913,0.0381,0.9808,-0.1913,0.0747,0.9239,-0.3753,0.1464,0.9239,-0.3536,0.0381,0.9808,-0.1913,0.1464,0.9239,-0.3536,0.0747,0.9808,-0.1802,0.0747,0.9808,-0.1802,0.1464,0.9239,-0.3536,0.2126,0.9239,-0.3182,0.0747,0.9808,-0.1802,0.2126,0.9239,-0.3182,0.1084,0.9808,-0.1622,0.1084,0.9808,-0.1622,0.2126,0.9239,-0.3182,0.2706,0.9239,-0.2706,0.1084,0.9808,-0.1622,0.2706,0.9239,-0.2706,0.1379,0.9808,-0.1379,0.1379,0.9808,-0.1379,0.2706,0.9239,-0.2706,0.3182,0.9239,-0.2126,0.1379,0.9808,-0.1379,0.3182,0.9239,-0.2126,0.1622,0.9808,-0.1084,0.1622,0.9808,-0.1084,0.3182,0.9239,-0.2126,0.3536,0.9239,-0.1464,0.1622,0.9808,-0.1084,0.3536,0.9239,-0.1464,0.1802,0.9808,-0.0747,0.1802,0.9808,-0.0747,0.3536,0.9239,-0.1464,0.3753,0.9239,-0.0747,0.1802,0.9808,-0.0747,0.3753,0.9239,-0.0747,0.1913,0.9808,-0.0381,0.1913,0.9808,-0.0381,0.3753,0.9239,-0.0747,0.3827,0.9239,0.0,0.1913,0.9808,-0.0381,0.3827,0.9239,0.0,0.1951,0.9808,0.0,0.1951,0.9808,0.0,0.3827,0.9239,0.0,0.3753,0.9239,0.0747,0.1951,0.9808,0.0,0.3753,0.9239,0.0747,0.1913,0.9808,0.0381,0.1913,0.9808,0.0381,0.3753,0.9239,0.0747,0.3536,0.9239,0.1464,0.1913,0.9808,0.0381,0.3536,0.9239,0.1464,0.1802,0.9808,0.0747,0.1802,0.9808,0.0747,0.3536,0.9239,0.1464,0.3182,0.9239,0.2126,0.1802,0.9808,0.0747,0.3182,0.9239,0.2126,0.1622,0.9808,0.1084,0.1622,0.9808,0.1084,0.3182,0.9239,0.2126,0.2706,0.9239,0.2706,0.1622,0.9808,0.1084,0.2706,0.9239,0.2706,0.1379,0.9808,0.1379,0.1379,0.9808,0.1379,0.2706,0.9239,0.2706,0.2126,0.9239,0.3182,0.1379,0.9808,0.1379,0.2126,0.9239,0.3182,0.1084,0.9808,0.1622,0.1084,0.9808,0.1622,0.2126,0.9239,0.3182,0.1464,0.9239,0.3536,0.1084,0.9808,0.1622,0.1464,0.9239,0.3536,0.0747,0.9808,0.1802,0.0747,0.9808,0.1802,0.1464,0.9239,0.3536,0.0747,0.9239,0.3753,0.0747,0.9808,0.1802,0.0747,0.9239,0.3753,0.0381,0.9808,0.1913,0.0381,0.9808,0.1913,0.0747,0.9239,0.3753,0.0,0.9239,0.3827,0.0381,0.9808,0.1913,0.0,0.9239,0.3827,0.0,0.9808,0.1951,0.0,0.9239,0.3827,0.0,0.8315,0.5556,-0.1084,0.8315,0.5449,0.0,0.9239,0.3827,-0.1084,0.8315,0.5449,-0.0747,0.9239,0.3753,-0.0747,0.9239,0.3753,-0.1084,0.8315,0.5449,-0.2126,0.8315,0.5133,-0.0747,0.9239,0.3753,-0.2126,0.8315,0.5133,-0.1464,0.9239,0.3536,-0.1464,0.9239,0.3536,-0.2126,0.8315,0.5133,-0.3087,0.8315,0.4619,-0.1464,0.9239,0.3536,-0.3087,0.8315,0.4619,-0.2126,0.9239,0.3182,-0.2126,0.9239,0.3182,-0.3087,0.8315,0.4619,-0.3928,0.8315,0.3928,-0.2126,0.9239,0.3182,-0.3928,0.8315,0.3928,-0.2706,0.9239,0.2706,-0.2706,0.9239,0.2706,-0.3928,0.8315,0.3928,-0.4619,0.8315,0.3087,-0.2706,0.9239,0.2706,-0.4619,0.8315,0.3087,-0.3182,0.9239,0.2126,-0.3182,0.9239,0.2126,-0.4619,0.8315,0.3087,-0.5133,0.8315,0.2126,-0.3182,0.9239,0.2126,-0.5133,0.8315,0.2126,-0.3536,0.9239,0.1464,-0.3536,0.9239,0.1464,-0.5133,0.8315,0.2126,-0.5449,0.8315,0.1084,-0.3536,0.9239,0.1464,-0.5449,0.8315,0.1084,-0.3753,0.9239,0.0747,-0.3753,0.9239,0.0747,-0.5449,0.8315,0.1084,-0.5556,0.8315,0.0,-0.3753,0.9239,0.0747,-0.5556,0.8315,0.0,-0.3827,0.9239,0.0,-0.3827,0.9239,0.0,-0.5556,0.8315,0.0,-0.5449,0.8315,-0.1084,-0.3827,0.9239,0.0,-0.5449,0.8315,-0.1084,-0.3753,0.9239,-0.0747,-0.3753,0.9239,-0.0747,-0.5449,0.8315,-0.1084,-0.5133,0.8315,-0.2126,-0.3753,0.9239,-0.0747,-0.5133,0.8315,-0.2126,-0.3536,0.9239,-0.1464,-0.3536,0.9239,-0.1464,-0.5133,0.8315,-0.2126,-0.4619,0.8315,-0.3087,-0.3536,0.9239,-0.1464,-0.4619,0.8315,-0.3087,-0.3182,0.9239,-0.2126,-0.3182,0.9239,-0.2126,-0.4619,0.8315,-0.3087,-0.3928,0.8315,-0.3928,-0.3182,0.9239,-0.2126,-0.3928,0.8315,-0.3928,-0.2706,0.9239,-0.2706,-0.2706,0.9239,-0.2706,-0.3928,0.8315,-0.3928,-0.3087,0.8315,-0.4619,-0.2706,0.9239,-0.2706,-0.3087,0.8315,-0.4619,-0.2126,0.9239,-0.3182,-0.2126,0.9239,-0.3182,-0.3087,0.8315,-0.4619,-0.2126,0.8315,-0.5133,-0.2126,0.9239,-0.3182,-0.2126,0.8315,-0.5133,-0.1464,0.9239,-0.3536,-0.1464,0.9239,-0.3536,-0.2126,0.8315,-0.5133,-0.1084,0.8315,-0.5449,-0.1464,0.9239,-0.3536,-0.1084,0.8315,-0.5449,-0.0747,0.9239,-0.3753,-0.0747,0.9239,-0.3753,-0.1084,0.8315,-0.5449,0.0,0.8315,-0.5556,-0.0747,0.9239,-0.3753,0.0,0.8315,-0.5556,0.0,0.9239,-0.3827,0.0,0.9239,-0.3827,0.0,0.8315,-0.5556,0.1084,0.8315,-0.5449,0.0,0.9239,-0.3827,0.1084,0.8315,-0.5449,0.0747,0.9239,-0.3753,0.0747,0.9239,-0.3753,0.1084,0.8315,-0.5449,0.2126,0.8315,-0.5133,0.0747,0.9239,-0.3753,0.2126,0.8315,-0.5133,0.1464,0.9239,-0.3536,0.1464,0.9239,-0.3536,0.2126,0.8315,-0.5133,0.3087,0.8315,-0.4619,0.1464,0.9239,-0.3536,0.3087,0.8315,-0.4619,0.2126,0.9239,-0.3182,0.2126,0.9239,-0.3182,0.3087,0.8315,-0.4619,0.3928,0.8315,-0.3928,0.2126,0.9239,-0.3182,0.3928,0.8315,-0.3928,0.2706,0.9239,-0.2706,0.2706,0.9239,-0.2706,0.3928,0.8315,-0.3928,0.4619,0.8315,-0.3087,0.2706,0.9239,-0.2706,0.4619,0.8315,-0.3087,0.3182,0.9239,-0.2126,0.3182,0.9239,-0.2126,0.4619,0.8315,-0.3087,0.5133,0.8315,-0.2126,0.3182,0.9239,-0.2126,0.5133,0.8315,-0.2126,0.3536,0.9239,-0.1464,0.3536,0.9239,-0.1464,0.5133,0.8315,-0.2126,0.5449,0.8315,-0.1084,0.3536,0.9239,-0.1464,0.5449,0.8315,-0.1084,0.3753,0.9239,-0.0747,0.3753,0.9239,-0.0747,0.5449,0.8315,-0.1084,0.5556,0.8315,0.0,0.3753,0.9239,-0.0747,0.5556,0.8315,0.0,0.3827,0.9239,0.0,0.3827,0.9239,0.0,0.5556,0.8315,0.0,0.5449,0.8315,0.1084,0.3827,0.9239,0.0,0.5449,0.8315,0.1084,0.3753,0.9239,0.0747,0.3753,0.9239,0.0747,0.5449,0.8315,0.1084,0.5133,0.8315,0.2126,0.3753,0.9239,0.0747,0.5133,0.8315,0.2126,0.3536,0.9239,0.1464,0.3536,0.9239,0.1464,0.5133,0.8315,0.2126,0.4619,0.8315,0.3087,0.3536,0.9239,0.1464,0.4619,0.8315,0.3087,0.3182,0.9239,0.2126,0.3182,0.9239,0.2126,0.4619,0.8315,0.3087,0.3928,0.8315,0.3928,0.3182,0.9239,0.2126,0.3928,0.8315,0.3928,0.2706,0.9239,0.2706,0.2706,0.9239,0.2706,0.3928,0.8315,0.3928,0.3087,0.8315,0.4619,0.2706,0.9239,0.2706,0.3087,0.8315,0.4619,0.2126,0.9239,0.3182,0.2126,0.9239,0.3182,0.3087,0.8315,0.4619,0.2126,0.8315,0.5133,0.2126,0.9239,0.3182,0.2126,0.8315,0.5133,0.1464,0.9239,0.3536,0.1464,0.9239,0.3536,0.2126,0.8315,0.5133,0.1084,0.8315,0.5449,0.1464,0.9239,0.3536,0.1084,0.8315,0.5449,0.0747,0.9239,0.3753,0.0747,0.9239,0.3753,0.1084,0.8315,0.5449,0.0,0.8315,0.5556,0.0747,0.9239,0.3753,0.0,0.8315,0.5556,0.0,0.9239,0.3827,0.0,0.8315,0.5556,0.0,0.7071,0.7071,-0.1379,0.7071,0.6935,0.0,0.8315,0.5556,-0.1379,0.7071,0.6935,-0.1084,0.8315,0.5449,-0.1084,0.8315,0.5449,-0.1379,0.7071,0.6935,-0.2706,0.7071,0.6533,-0.1084,0.8315,0.5449,-0.2706,0.7071,0.6533,-0.2126,0.8315,0.5133,-0.2126,0.8315,0.5133,-0.2706,0.7071,0.6533,-0.3928,0.7071,0.5879,-0.2126,0.8315,0.5133,-0.3928,0.7071,0.5879,-0.3087,0.8315,0.4619,-0.3087,0.8315,0.4619,-0.3928,0.7071,0.5879,-0.5,0.7071,0.5,-0.3087,0.8315,0.4619,-0.5,0.7071,0.5,-0.3928,0.8315,0.3928,-0.3928,0.8315,0.3928,-0.5,0.7071,0.5,-0.5879,0.7071,0.3928,-0.3928,0.8315,0.3928,-0.5879,0.7071,0.3928,-0.4619,0.8315,0.3087,-0.4619,0.8315,0.3087,-0.5879,0.7071,0.3928,-0.6533,0.7071,0.2706,-0.4619,0.8315,0.3087,-0.6533,0.7071,0.2706,-0.5133,0.8315,0.2126,-0.5133,0.8315,0.2126,-0.6533,0.7071,0.2706,-0.6935,0.7071,0.1379,-0.5133,0.8315,0.2126,-0.6935,0.7071,0.1379,-0.5449,0.8315,0.1084,-0.5449,0.8315,0.1084,-0.6935,0.7071,0.1379,-0.7071,0.7071,0.0,-0.5449,0.8315,0.1084,-0.7071,0.7071,0.0,-0.5556,0.8315,0.0,-0.5556,0.8315,0.0,-0.7071,0.7071,0.0,-0.6935,0.7071,-0.1379,-0.5556,0.8315,0.0,-0.6935,0.7071,-0.1379,-0.5449,0.8315,-0.1084,-0.5449,0.8315,-0.1084,-0.6935,0.7071,-0.1379,-0.6533,0.7071,-0.2706,-0.5449,0.8315,-0.1084,-0.6533,0.7071,-0.2706,-0.5133,0.8315,-0.2126,-0.5133,0.8315,-0.2126,-0.6533,0.7071,-0.2706,-0.5879,0.7071,-0.3928,-0.5133,0.8315,-0.2126,-0.5879,0.7071,-0.3928,-0.4619,0.8315,-0.3087,-0.4619,0.8315,-0.3087,-0.5879,0.7071,-0.3928,-0.5,0.7071,-0.5,-0.4619,0.8315,-0.3087,-0.5,0.7071,-0.5,-0.3928,0.8315,-0.3928,-0.3928,0.8315,-0.3928,-0.5,0.7071,-0.5,-0.3928,0.7071,-0.5879,-0.3928,0.8315,-0.3928,-0.3928,0.7071,-0.5879,-0.3087,0.8315,-0.4619,-0.3087,0.8315,-0.4619,-0.3928,0.7071,-0.5879,-0.2706,0.7071,-0.6533,-0.3087,0.8315,-0.4619,-0.2706,0.7071,-0.6533,-0.2126,0.8315,-0.5133,-0.2126,0.8315,-0.5133,-0.2706,0.7071,-0.6533,-0.1379,0.7071,-0.6935,-0.2126,0.8315,-0.5133,-0.1379,0.7071,-0.6935,-0.1084,0.8315,-0.5449,-0.1084,0.8315,-0.5449,-0.1379,0.7071,-0.6935,0.0,0.7071,-0.7071,-0.1084,0.8315,-0.5449,0.0,0.7071,-0.7071,0.0,0.8315,-0.5556,0.0,0.8315,-0.5556,0.0,0.7071,-0.7071,0.138,0.7071,-0.6935,0.0,0.8315,-0.5556,0.138,0.7071,-0.6935,0.1084,0.8315,-0.5449,0.1084,0.8315,-0.5449,0.138,0.7071,-0.6935,0.2706,0.7071,-0.6533,0.1084,0.8315,-0.5449,0.2706,0.7071,-0.6533,0.2126,0.8315,-0.5133,0.2126,0.8315,-0.5133,0.2706,0.7071,-0.6533,0.3928,0.7071,-0.5879,0.2126,0.8315,-0.5133,0.3928,0.7071,-0.5879,0.3087,0.8315,-0.4619,0.3087,0.8315,-0.4619,0.3928,0.7071,-0.5879,0.5,0.7071,-0.5,0.3087,0.8315,-0.4619,0.5,0.7071,-0.5,0.3928,0.8315,-0.3928,0.3928,0.8315,-0.3928,0.5,0.7071,-0.5,0.5879,0.7071,-0.3928,0.3928,0.8315,-0.3928,0.5879,0.7071,-0.3928,0.4619,0.8315,-0.3087,0.4619,0.8315,-0.3087,0.5879,0.7071,-0.3928,0.6533,0.7071,-0.2706,0.4619,0.8315,-0.3087,0.6533,0.7071,-0.2706,0.5133,0.8315,-0.2126,0.5133,0.8315,-0.2126,0.6533,0.7071,-0.2706,0.6935,0.7071,-0.1379,0.5133,0.8315,-0.2126,0.6935,0.7071,-0.1379,0.5449,0.8315,-0.1084,0.5449,0.8315,-0.1084,0.6935,0.7071,-0.1379,0.7071,0.7071,0.0,0.5449,0.8315,-0.1084,0.7071,0.7071,0.0,0.5556,0.8315,0.0,0.5556,0.8315,0.0,0.7071,0.7071,0.0,0.6935,0.7071,0.138,0.5556,0.8315,0.0,0.6935,0.7071,0.138,0.5449,0.8315,0.1084,0.5449,0.8315,0.1084,0.6935,0.7071,0.138,0.6533,0.7071,0.2706,0.5449,0.8315,0.1084,0.6533,0.7071,0.2706,0.5133,0.8315,0.2126,0.5133,0.8315,0.2126,0.6533,0.7071,0.2706,0.5879,0.7071,0.3928,0.5133,0.8315,0.2126,0.5879,0.7071,0.3928,0.4619,0.8315,0.3087,0.4619,0.8315,0.3087,0.5879,0.7071,0.3928,0.5,0.7071,0.5,0.4619,0.8315,0.3087,0.5,0.7071,0.5,0.3928,0.8315,0.3928,0.3928,0.8315,0.3928,0.5,0.7071,0.5,0.3928,0.7071,0.5879,0.3928,0.8315,0.3928,0.3928,0.7071,0.5879,0.3087,0.8315,0.4619,0.3087,0.8315,0.4619,0.3928,0.7071,0.5879,0.2706,0.7071,0.6533,0.3087,0.8315,0.4619,0.2706,0.7071,0.6533,0.2126,0.8315,0.5133,0.2126,0.8315,0.5133,0.2706,0.7071,0.6533,0.1379,0.7071,0.6935,0.2126,0.8315,0.5133,0.1379,0.7071,0.6935,0.1084,0.8315,0.5449,0.1084,0.8315,0.5449,0.1379,0.7071,0.6935,0.0,0.7071,0.7071,0.1084,0.8315,0.5449,0.0,0.7071,0.7071,0.0,0.8315,0.5556,0.0,0.7071,0.7071,0.0,0.5556,0.8315,-0.1622,0.5556,0.8155,0.0,0.7071,0.7071,-0.1622,0.5556,0.8155,-0.1379,0.7071,0.6935,-0.1379,0.7071,0.6935,-0.1622,0.5556,0.8155,-0.3182,0.5556,0.7682,-0.1379,0.7071,0.6935,-0.3182,0.5556,0.7682,-0.2706,0.7071,0.6533,-0.2706,0.7071,0.6533,-0.3182,0.5556,0.7682,-0.4619,0.5556,0.6913,-0.2706,0.7071,0.6533,-0.4619,0.5556,0.6913,-0.3928,0.7071,0.5879,-0.3928,0.7071,0.5879,-0.4619,0.5556,0.6913,-0.5879,0.5556,0.5879,-0.3928,0.7071,0.5879,-0.5879,0.5556,0.5879,-0.5,0.7071,0.5,-0.5,0.7071,0.5,-0.5879,0.5556,0.5879,-0.6913,0.5556,0.4619,-0.5,0.7071,0.5,-0.6913,0.5556,0.4619,-0.5879,0.7071,0.3928,-0.5879,0.7071,0.3928,-0.6913,0.5556,0.4619,-0.7682,0.5556,0.3182,-0.5879,0.7071,0.3928,-0.7682,0.5556,0.3182,-0.6533,0.7071,0.2706,-0.6533,0.7071,0.2706,-0.7682,0.5556,0.3182,-0.8155,0.5556,0.1622,-0.6533,0.7071,0.2706,-0.8155,0.5556,0.1622,-0.6935,0.7071,0.1379,-0.6935,0.7071,0.1379,-0.8155,0.5556,0.1622,-0.8315,0.5556,0.0,-0.6935,0.7071,0.1379,-0.8315,0.5556,0.0,-0.7071,0.7071,0.0,-0.7071,0.7071,0.0,-0.8315,0.5556,0.0,-0.8155,0.5556,-0.1622,-0.7071,0.7071,0.0,-0.8155,0.5556,-0.1622,-0.6935,0.7071,-0.1379,-0.6935,0.7071,-0.1379,-0.8155,0.5556,-0.1622,-0.7682,0.5556,-0.3182,-0.6935,0.7071,-0.1379,-0.7682,0.5556,-0.3182,-0.6533,0.7071,-0.2706,-0.6533,0.7071,-0.2706,-0.7682,0.5556,-0.3182,-0.6913,0.5556,-0.4619,-0.6533,0.7071,-0.2706,-0.6913,0.5556,-0.4619,-0.5879,0.7071,-0.3928,-0.5879,0.7071,-0.3928,-0.6913,0.5556,-0.4619,-0.5879,0.5556,-0.5879,-0.5879,0.7071,-0.3928,-0.5879,0.5556,-0.5879,-0.5,0.7071,-0.5,-0.5,0.7071,-0.5,-0.5879,0.5556,-0.5879,-0.4619,0.5556,-0.6913,-0.5,0.7071,-0.5,-0.4619,0.5556,-0.6913,-0.3928,0.7071,-0.5879,-0.3928,0.7071,-0.5879,-0.4619,0.5556,-0.6913,-0.3182,0.5556,-0.7682,-0.3928,0.7071,-0.5879,-0.3182,0.5556,-0.7682,-0.2706,0.7071,-0.6533,-0.2706,0.7071,-0.6533,-0.3182,0.5556,-0.7682,-0.1622,0.5556,-0.8155,-0.2706,0.7071,-0.6533,-0.1622,0.5556,-0.8155,-0.1379,0.7071,-0.6935,-0.1379,0.7071,-0.6935,-0.1622,0.5556,-0.8155,0.0,0.5556,-0.8315,-0.1379,0.7071,-0.6935,0.0,0.5556,-0.8315,0.0,0.7071,-0.7071,0.0,0.7071,-0.7071,0.0,0.5556,-0.8315,0.1622,0.5556,-0.8155,0.0,0.7071,-0.7071,0.1622,0.5556,-0.8155,0.138,0.7071,-0.6935,0.138,0.7071,-0.6935,0.1622,0.5556,-0.8155,0.3182,0.5556,-0.7682,0.138,0.7071,-0.6935,0.3182,0.5556,-0.7682,0.2706,0.7071,-0.6533,0.2706,0.7071,-0.6533,0.3182,0.5556,-0.7682,0.4619,0.5556,-0.6913,0.2706,0.7071,-0.6533,0.4619,0.5556,-0.6913,0.3928,0.7071,-0.5879,0.3928,0.7071,-0.5879,0.4619,0.5556,-0.6913,0.5879,0.5556,-0.5879,0.3928,0.7071,-0.5879,0.5879,0.5556,-0.5879,0.5,0.7071,-0.5,0.5,0.7071,-0.5,0.5879,0.5556,-0.5879,0.6913,0.5556,-0.4619,0.5,0.7071,-0.5,0.6913,0.5556,-0.4619,0.5879,0.7071,-0.3928,0.5879,0.7071,-0.3928,0.6913,0.5556,-0.4619,0.7682,0.5556,-0.3182,0.5879,0.7071,-0.3928,0.7682,0.5556,-0.3182,0.6533,0.7071,-0.2706,0.6533,0.7071,-0.2706,0.7682,0.5556,-0.3182,0.8155,0.5556,-0.1622,0.6533,0.7071,-0.2706,0.8155,0.5556,-0.1622,0.6935,0.7071,-0.1379,0.6935,0.7071,-0.1379,0.8155,0.5556,-0.1622,0.8315,0.5556,0.0,0.6935,0.7071,-0.1379,0.8315,0.5556,0.0,0.7071,0.7071,0.0,0.7071,0.7071,0.0,0.8315,0.5556,0.0,0.8155,0.5556,0.1622,0.7071,0.7071,0.0,0.8155,0.5556,0.1622,0.6935,0.7071,0.138,0.6935,0.7071,0.138,0.8155,0.5556,0.1622,0.7682,0.5556,0.3182,0.6935,0.7071,0.138,0.7682,0.5556,0.3182,0.6533,0.7071,0.2706,0.6533,0.7071,0.2706,0.7682,0.5556,0.3182,0.6913,0.5556,0.4619,0.6533,0.7071,0.2706,0.6913,0.5556,0.4619,0.5879,0.7071,0.3928,0.5879,0.7071,0.3928,0.6913,0.5556,0.4619,0.5879,0.5556,0.5879,0.5879,0.7071,0.3928,0.5879,0.5556,0.5879,0.5,0.7071,0.5,0.5,0.7071,0.5,0.5879,0.5556,0.5879,0.4619,0.5556,0.6913,0.5,0.7071,0.5,0.4619,0.5556,0.6913,0.3928,0.7071,0.5879,0.3928,0.7071,0.5879,0.4619,0.5556,0.6913,0.3182,0.5556,0.7682,0.3928,0.7071,0.5879,0.3182,0.5556,0.7682,0.2706,0.7071,0.6533,0.2706,0.7071,0.6533,0.3182,0.5556,0.7682,0.1622,0.5556,0.8155,0.2706,0.7071,0.6533,0.1622,0.5556,0.8155,0.1379,0.7071,0.6935,0.1379,0.7071,0.6935,0.1622,0.5556,0.8155,0.0,0.5556,0.8315,0.1379,0.7071,0.6935,0.0,0.5556,0.8315,0.0,0.7071,0.7071,0.0,0.5556,0.8315,0.0,0.3827,0.9239,-0.1802,0.3827,0.9061,0.0,0.5556,0.8315,-0.1802,0.3827,0.9061,-0.1622,0.5556,0.8155,-0.1622,0.5556,0.8155,-0.1802,0.3827,0.9061,-0.3536,0.3827,0.8536,-0.1622,0.5556,0.8155,-0.3536,0.3827,0.8536,-0.3182,0.5556,0.7682,-0.3182,0.5556,0.7682,-0.3536,0.3827,0.8536,-0.5133,0.3827,0.7682,-0.3182,0.5556,0.7682,-0.5133,0.3827,0.7682,-0.4619,0.5556,0.6913,-0.4619,0.5556,0.6913,-0.5133,0.3827,0.7682,-0.6533,0.3827,0.6533,-0.4619,0.5556,0.6913,-0.6533,0.3827,0.6533,-0.5879,0.5556,0.5879,-0.5879,0.5556,0.5879,-0.6533,0.3827,0.6533,-0.7682,0.3827,0.5133,-0.5879,0.5556,0.5879,-0.7682,0.3827,0.5133,-0.6913,0.5556,0.4619,-0.6913,0.5556,0.4619,-0.7682,0.3827,0.5133,-0.8536,0.3827,0.3536,-0.6913,0.5556,0.4619,-0.8536,0.3827,0.3536,-0.7682,0.5556,0.3182,-0.7682,0.5556,0.3182,-0.8536,0.3827,0.3536,-0.9061,0.3827,0.1802,-0.7682,0.5556,0.3182,-0.9061,0.3827,0.1802,-0.8155,0.5556,0.1622,-0.8155,0.5556,0.1622,-0.9061,0.3827,0.1802,-0.9239,0.3827,0.0,-0.8155,0.5556,0.1622,-0.9239,0.3827,0.0,-0.8315,0.5556,0.0,-0.8315,0.5556,0.0,-0.9239,0.3827,0.0,-0.9061,0.3827,-0.1802,-0.8315,0.5556,0.0,-0.9061,0.3827,-0.1802,-0.8155,0.5556,-0.1622,-0.8155,0.5556,-0.1622,-0.9061,0.3827,-0.1802,-0.8536,0.3827,-0.3536,-0.8155,0.5556,-0.1622,-0.8536,0.3827,-0.3536,-0.7682,0.5556,-0.3182,-0.7682,0.5556,-0.3182,-0.8536,0.3827,-0.3536,-0.7682,0.3827,-0.5133,-0.7682,0.5556,-0.3182,-0.7682,0.3827,-0.5133,-0.6913,0.5556,-0.4619,-0.6913,0.5556,-0.4619,-0.7682,0.3827,-0.5133,-0.6533,0.3827,-0.6533,-0.6913,0.5556,-0.4619,-0.6533,0.3827,-0.6533,-0.5879,0.5556,-0.5879,-0.5879,0.5556,-0.5879,-0.6533,0.3827,-0.6533,-0.5133,0.3827,-0.7682,-0.5879,0.5556,-0.5879,-0.5133,0.3827,-0.7682,-0.4619,0.5556,-0.6913,-0.4619,0.5556,-0.6913,-0.5133,0.3827,-0.7682,-0.3536,0.3827,-0.8536,-0.4619,0.5556,-0.6913,-0.3536,0.3827,-0.8536,-0.3182,0.5556,-0.7682,-0.3182,0.5556,-0.7682,-0.3536,0.3827,-0.8536,-0.1802,0.3827,-0.9061,-0.3182,0.5556,-0.7682,-0.1802,0.3827,-0.9061,-0.1622,0.5556,-0.8155,-0.1622,0.5556,-0.8155,-0.1802,0.3827,-0.9061,0.0,0.3827,-0.9239,-0.1622,0.5556,-0.8155,0.0,0.3827,-0.9239,0.0,0.5556,-0.8315,0.0,0.5556,-0.8315,0.0,0.3827,-0.9239,0.1802,0.3827,-0.9061,0.0,0.5556,-0.8315,0.1802,0.3827,-0.9061,0.1622,0.5556,-0.8155,0.1622,0.5556,-0.8155,0.1802,0.3827,-0.9061,0.3536,0.3827,-0.8536,0.1622,0.5556,-0.8155,0.3536,0.3827,-0.8536,0.3182,0.5556,-0.7682,0.3182,0.5556,-0.7682,0.3536,0.3827,-0.8536,0.5133,0.3827,-0.7682,0.3182,0.5556,-0.7682,0.5133,0.3827,-0.7682,0.4619,0.5556,-0.6913,0.4619,0.5556,-0.6913,0.5133,0.3827,-0.7682,0.6533,0.3827,-0.6533,0.4619,0.5556,-0.6913,0.6533,0.3827,-0.6533,0.5879,0.5556,-0.5879,0.5879,0.5556,-0.5879,0.6533,0.3827,-0.6533,0.7682,0.3827,-0.5133,0.5879,0.5556,-0.5879,0.7682,0.3827,-0.5133,0.6913,0.5556,-0.4619,0.6913,0.5556,-0.4619,0.7682,0.3827,-0.5133,0.8536,0.3827,-0.3536,0.6913,0.5556,-0.4619,0.8536,0.3827,-0.3536,0.7682,0.5556,-0.3182,0.7682,0.5556,-0.3182,0.8536,0.3827,-0.3536,0.9061,0.3827,-0.1802,0.7682,0.5556,-0.3182,0.9061,0.3827,-0.1802,0.8155,0.5556,-0.1622,0.8155,0.5556,-0.1622,0.9061,0.3827,-0.1802,0.9239,0.3827,0.0,0.8155,0.5556,-0.1622,0.9239,0.3827,0.0,0.8315,0.5556,0.0,0.8315,0.5556,0.0,0.9239,0.3827,0.0,0.9061,0.3827,0.1802,0.8315,0.5556,0.0,0.9061,0.3827,0.1802,0.8155,0.5556,0.1622,0.8155,0.5556,0.1622,0.9061,0.3827,0.1802,0.8536,0.3827,0.3536,0.8155,0.5556,0.1622,0.8536,0.3827,0.3536,0.7682,0.5556,0.3182,0.7682,0.5556,0.3182,0.8536,0.3827,0.3536,0.7682,0.3827,0.5133,0.7682,0.5556,0.3182,0.7682,0.3827,0.5133,0.6913,0.5556,0.4619,0.6913,0.5556,0.4619,0.7682,0.3827,0.5133,0.6533,0.3827,0.6533,0.6913,0.5556,0.4619,0.6533,0.3827,0.6533,0.5879,0.5556,0.5879,0.5879,0.5556,0.5879,0.6533,0.3827,0.6533,0.5133,0.3827,0.7682,0.5879,0.5556,0.5879,0.5133,0.3827,0.7682,0.4619,0.5556,0.6913,0.4619,0.5556,0.6913,0.5133,0.3827,0.7682,0.3536,0.3827,0.8536,0.4619,0.5556,0.6913,0.3536,0.3827,0.8536,0.3182,0.5556,0.7682,0.3182,0.5556,0.7682,0.3536,0.3827,0.8536,0.1802,0.3827,0.9061,0.3182,0.5556,0.7682,0.1802,0.3827,0.9061,0.1622,0.5556,0.8155,0.1622,0.5556,0.8155,0.1802,0.3827,0.9061,0.0,0.3827,0.9239,0.1622,0.5556,0.8155,0.0,0.3827,0.9239,0.0,0.5556,0.8315,0.0,0.3827,0.9239,0.0,0.1951,0.9808,-0.1913,0.1951,0.9619,0.0,0.3827,0.9239,-0.1913,0.1951,0.9619,-0.1802,0.3827,0.9061,-0.1802,0.3827,0.9061,-0.1913,0.1951,0.9619,-0.3753,0.1951,0.9061,-0.1802,0.3827,0.9061,-0.3753,0.1951,0.9061,-0.3536,0.3827,0.8536,-0.3536,0.3827,0.8536,-0.3753,0.1951,0.9061,-0.5449,0.1951,0.8155,-0.3536,0.3827,0.8536,-0.5449,0.1951,0.8155,-0.5133,0.3827,0.7682,-0.5133,0.3827,0.7682,-0.5449,0.1951,0.8155,-0.6935,0.1951,0.6935,-0.5133,0.3827,0.7682,-0.6935,0.1951,0.6935,-0.6533,0.3827,0.6533,-0.6533,0.3827,0.6533,-0.6935,0.1951,0.6935,-0.8155,0.1951,0.5449,-0.6533,0.3827,0.6533,-0.8155,0.1951,0.5449,-0.7682,0.3827,0.5133,-0.7682,0.3827,0.5133,-0.8155,0.1951,0.5449,-0.9061,0.1951,0.3753,-0.7682,0.3827,0.5133,-0.9061,0.1951,0.3753,-0.8536,0.3827,0.3536,-0.8536,0.3827,0.3536,-0.9061,0.1951,0.3753,-0.9619,0.1951,0.1913,-0.8536,0.3827,0.3536,-0.9619,0.1951,0.1913,-0.9061,0.3827,0.1802,-0.9061,0.3827,0.1802,-0.9619,0.1951,0.1913,-0.9808,0.1951,0.0,-0.9061,0.3827,0.1802,-0.9808,0.1951,0.0,-0.9239,0.3827,0.0,-0.9239,0.3827,0.0,-0.9808,0.1951,0.0,-0.9619,0.1951,-0.1913,-0.9239,0.3827,0.0,-0.9619,0.1951,-0.1913,-0.9061,0.3827,-0.1802,-0.9061,0.3827,-0.1802,-0.9619,0.1951,-0.1913,-0.9061,0.1951,-0.3753,-0.9061,0.3827,-0.1802,-0.9061,0.1951,-0.3753,-0.8536,0.3827,-0.3536,-0.8536,0.3827,-0.3536,-0.9061,0.1951,-0.3753,-0.8155,0.1951,-0.5449,-0.8536,0.3827,-0.3536,-0.8155,0.1951,-0.5449,-0.7682,0.3827,-0.5133,-0.7682,0.3827,-0.5133,-0.8155,0.1951,-0.5449,-0.6935,0.1951,-0.6935,-0.7682,0.3827,-0.5133,-0.6935,0.1951,-0.6935,-0.6533,0.3827,-0.6533,-0.6533,0.3827,-0.6533,-0.6935,0.1951,-0.6935,-0.5449,0.1951,-0.8155,-0.6533,0.3827,-0.6533,-0.5449,0.1951,-0.8155,-0.5133,0.3827,-0.7682,-0.5133,0.3827,-0.7682,-0.5449,0.1951,-0.8155,-0.3753,0.1951,-0.9061,-0.5133,0.3827,-0.7682,-0.3753,0.1951,-0.9061,-0.3536,0.3827,-0.8536,-0.3536,0.3827,-0.8536,-0.3753,0.1951,-0.9061,-0.1913,0.1951,-0.9619,-0.3536,0.3827,-0.8536,-0.1913,0.1951,-0.9619,-0.1802,0.3827,-0.9061,-0.1802,0.3827,-0.9061,-0.1913,0.1951,-0.9619,0.0,0.1951,-0.9808,-0.1802,0.3827,-0.9061,0.0,0.1951,-0.9808,0.0,0.3827,-0.9239,0.0,0.3827,-0.9239,0.0,0.1951,-0.9808,0.1913,0.1951,-0.9619,0.0,0.3827,-0.9239,0.1913,0.1951,-0.9619,0.1802,0.3827,-0.9061,0.1802,0.3827,-0.9061,0.1913,0.1951,-0.9619,0.3753,0.1951,-0.9061,0.1802,0.3827,-0.9061,0.3753,0.1951,-0.9061,0.3536,0.3827,-0.8536,0.3536,0.3827,-0.8536,0.3753,0.1951,-0.9061,0.5449,0.1951,-0.8155,0.3536,0.3827,-0.8536,0.5449,0.1951,-0.8155,0.5133,0.3827,-0.7682,0.5133,0.3827,-0.7682,0.5449,0.1951,-0.8155,0.6935,0.1951,-0.6935,0.5133,0.3827,-0.7682,0.6935,0.1951,-0.6935,0.6533,0.3827,-0.6533,0.6533,0.3827,-0.6533,0.6935,0.1951,-0.6935,0.8155,0.1951,-0.5449,0.6533,0.3827,-0.6533,0.8155,0.1951,-0.5449,0.7682,0.3827,-0.5133,0.7682,0.3827,-0.5133,0.8155,0.1951,-0.5449,0.9061,0.1951,-0.3753,0.7682,0.3827,-0.5133,0.9061,0.1951,-0.3753,0.8536,0.3827,-0.3536,0.8536,0.3827,-0.3536,0.9061,0.1951,-0.3753,0.9619,0.1951,-0.1913,0.8536,0.3827,-0.3536,0.9619,0.1951,-0.1913,0.9061,0.3827,-0.1802,0.9061,0.3827,-0.1802,0.9619,0.1951,-0.1913,0.9808,0.1951,0.0,0.9061,0.3827,-0.1802,0.9808,0.1951,0.0,0.9239,0.3827,0.0,0.9239,0.3827,0.0,0.9808,0.1951,0.0,0.9619,0.1951,0.1913,0.9239,0.3827,0.0,0.9619,0.1951,0.1913,0.9061,0.3827,0.1802,0.9061,0.3827,0.1802,0.9619,0.1951,0.1913,0.9061,0.1951,0.3753,0.9061,0.3827,0.1802,0.9061,0.1951,0.3753,0.8536,0.3827,0.3536,0.8536,0.3827,0.3536,0.9061,0.1951,0.3753,0.8155,0.1951,0.5449,0.8536,0.3827,0.3536,0.8155,0.1951,0.5449,0.7682,0.3827,0.5133,0.7682,0.3827,0.5133,0.8155,0.1951,0.5449,0.6935,0.1951,0.6935,0.7682,0.3827,0.5133,0.6935,0.1951,0.6935,0.6533,0.3827,0.6533,0.6533,0.3827,0.6533,0.6935,0.1951,0.6935,0.5449,0.1951,0.8155,0.6533,0.3827,0.6533,0.5449,0.1951,0.8155,0.5133,0.3827,0.7682,0.5133,0.3827,0.7682,0.5449,0.1951,0.8155,0.3753,0.1951,0.9061,0.5133,0.3827,0.7682,0.3753,0.1951,0.9061,0.3536,0.3827,0.8536,0.3536,0.3827,0.8536,0.3753,0.1951,0.9061,0.1913,0.1951,0.9619,0.3536,0.3827,0.8536,0.1913,0.1951,0.9619,0.1802,0.3827,0.9061,0.1802,0.3827,0.9061,0.1913,0.1951,0.9619,0.0,0.1951,0.9808,0.1802,0.3827,0.9061,0.0,0.1951,0.9808,0.0,0.3827,0.9239,0.0,0.1951,0.9808,0.0,0.0,1.0,-0.1951,0.0,0.9808,0.0,0.1951,0.9808,-0.1951,0.0,0.9808,-0.1913,0.1951,0.9619,-0.1913,0.1951,0.9619,-0.1951,0.0,0.9808,-0.3827,0.0,0.9239,-0.1913,0.1951,0.9619,-0.3827,0.0,0.9239,-0.3753,0.1951,0.9061,-0.3753,0.1951,0.9061,-0.3827,0.0,0.9239,-0.5556,0.0,0.8315,-0.3753,0.1951,0.9061,-0.5556,0.0,0.8315,-0.5449,0.1951,0.8155,-0.5449,0.1951,0.8155,-0.5556,0.0,0.8315,-0.7071,0.0,0.7071,-0.5449,0.1951,0.8155,-0.7071,0.0,0.7071,-0.6935,0.1951,0.6935,-0.6935,0.1951,0.6935,-0.7071,0.0,0.7071,-0.8315,0.0,0.5556,-0.6935,0.1951,0.6935,-0.8315,0.0,0.5556,-0.8155,0.1951,0.5449,-0.8155,0.1951,0.5449,-0.8315,0.0,0.5556,-0.9239,0.0,0.3827,-0.8155,0.1951,0.5449,-0.9239,0.0,0.3827,-0.9061,0.1951,0.3753,-0.9061,0.1951,0.3753,-0.9239,0.0,0.3827,-0.9808,0.0,0.1951,-0.9061,0.1951,0.3753,-0.9808,0.0,0.1951,-0.9619,0.1951,0.1913,-0.9619,0.1951,0.1913,-0.9808,0.0,0.1951,-1.0,0.0,0.0,-0.9619,0.1951,0.1913,-1.0,0.0,0.0,-0.9808,0.1951,0.0,-0.9808,0.1951,0.0,-1.0,0.0,0.0,-0.9808,0.0,-0.1951,-0.9808,0.1951,0.0,-0.9808,0.0,-0.1951,-0.9619,0.1951,-0.1913,-0.9619,0.1951,-0.1913,-0.9808,0.0,-0.1951,-0.9239,0.0,-0.3827,-0.9619,0.1951,-0.1913,-0.9239,0.0,-0.3827,-0.9061,0.1951,-0.3753,-0.9061,0.1951,-0.3753,-0.9239,0.0,-0.3827,-0.8315,0.0,-0.5556,-0.9061,0.1951,-0.3753,-0.8315,0.0,-0.5556,-0.8155,0.1951,-0.5449,-0.8155,0.1951,-0.5449,-0.8315,0.0,-0.5556,-0.7071,0.0,-0.7071,-0.8155,0.1951,-0.5449,-0.7071,0.0,-0.7071,-0.6935,0.1951,-0.6935,-0.6935,0.1951,-0.6935,-0.7071,0.0,-0.7071,-0.5556,0.0,-0.8315,-0.6935,0.1951,-0.6935,-0.5556,0.0,-0.8315,-0.5449,0.1951,-0.8155,-0.5449,0.1951,-0.8155,-0.5556,0.0,-0.8315,-0.3827,0.0,-0.9239,-0.5449,0.1951,-0.8155,-0.3827,0.0,-0.9239,-0.3753,0.1951,-0.9061,-0.3753,0.1951,-0.9061,-0.3827,0.0,-0.9239,-0.1951,0.0,-0.9808,-0.3753,0.1951,-0.9061,-0.1951,0.0,-0.9808,-0.1913,0.1951,-0.9619,-0.1913,0.1951,-0.9619,-0.1951,0.0,-0.9808,0.0,0.0,-1.0,-0.1913,0.1951,-0.9619,0.0,0.0,-1.0,0.0,0.1951,-0.9808,0.0,0.1951,-0.9808,0.0,0.0,-1.0,0.1951,0.0,-0.9808,0.0,0.1951,-0.9808,0.1951,0.0,-0.9808,0.1913,0.1951,-0.9619,0.1913,0.1951,-0.9619,0.1951,0.0,-0.9808,0.3827,0.0,-0.9239,0.1913,0.1951,-0.9619,0.3827,0.0,-0.9239,0.3753,0.1951,-0.9061,0.3753,0.1951,-0.9061,0.3827,0.0,-0.9239,0.5556,0.0,-0.8315,0.3753,0.1951,-0.9061,0.5556,0.0,-0.8315,0.5449,0.1951,-0.8155,0.5449,0.1951,-0.8155,0.5556,0.0,-0.8315,0.7071,0.0,-0.7071,0.5449,0.1951,-0.8155,0.7071,0.0,-0.7071,0.6935,0.1951,-0.6935,0.6935,0.1951,-0.6935,0.7071,0.0,-0.7071,0.8315,0.0,-0.5556,0.6935,0.1951,-0.6935,0.8315,0.0,-0.5556,0.8155,0.1951,-0.5449,0.8155,0.1951,-0.5449,0.8315,0.0,-0.5556,0.9239,0.0,-0.3827,0.8155,0.1951,-0.5449,0.9239,0.0,-0.3827,0.9061,0.1951,-0.3753,0.9061,0.1951,-0.3753,0.9239,0.0,-0.3827,0.9808,0.0,-0.1951,0.9061,0.1951,-0.3753,0.9808,0.0,-0.1951,0.9619,0.1951,-0.1913,0.9619,0.1951,-0.1913,0.9808,0.0,-0.1951,1.0,0.0,0.0,0.9619,0.1951,-0.1913,1.0,0.0,0.0,0.9808,0.1951,0.0,0.9808,0.1951,0.0,1.0,0.0,0.0,0.9808,0.0,0.1951,0.9808,0.1951,0.0,0.9808,0.0,0.1951,0.9619,0.1951,0.1913,0.9619,0.1951,0.1913,0.9808,0.0,0.1951,0.9239,0.0,0.3827,0.9619,0.1951,0.1913,0.9239,0.0,0.3827,0.9061,0.1951,0.3753,0.9061,0.1951,0.3753,0.9239,0.0,0.3827,0.8315,0.0,0.5556,0.9061,0.1951,0.3753,0.8315,0.0,0.5556,0.8155,0.1951,0.5449,0.8155,0.1951,0.5449,0.8315,0.0,0.5556,0.7071,0.0,0.7071,0.8155,0.1951,0.5449,0.7071,0.0,0.7071,0.6935,0.1951,0.6935,0.6935,0.1951,0.6935,0.7071,0.0,0.7071,0.5556,0.0,0.8315,0.6935,0.1951,0.6935,0.5556,0.0,0.8315,0.5449,0.1951,0.8155,0.5449,0.1951,0.8155,0.5556,0.0,0.8315,0.3827,0.0,0.9239,0.5449,0.1951,0.8155,0.3827,0.0,0.9239,0.3753,0.1951,0.9061,0.3753,0.1951,0.9061,0.3827,0.0,0.9239,0.1951,0.0,0.9808,0.3753,0.1951,0.9061,0.1951,0.0,0.9808,0.1913,0.1951,0.9619,0.1913,0.1951,0.9619,0.1951,0.0,0.9808,0.0,0.0,1.0,0.1913,0.1951,0.9619,0.0,0.0,1.0,0.0,0.1951,0.9808,0.0,0.0,1.0,0.0,-0.1951,0.9808,-0.1913,-0.1951,0.9619,0.0,0.0,1.0,-0.1913,-0.1951,0.9619,-0.1951,0.0,0.9808,-0.1951,0.0,0.9808,-0.1913,-0.1951,0.9619,-0.3753,-0.1951,0.9061,-0.1951,0.0,0.9808,-0.3753,-0.1951,0.9061,-0.3827,0.0,0.9239,-0.3827,0.0,0.9239,-0.3753,-0.1951,0.9061,-0.5449,-0.1951,0.8155,-0.3827,0.0,0.9239,-0.5449,-0.1951,0.8155,-0.5556,0.0,0.8315,-0.5556,0.0,0.8315,-0.5449,-0.1951,0.8155,-0.6935,-0.1951,0.6935,-0.5556,0.0,0.8315,-0.6935,-0.1951,0.6935,-0.7071,0.0,0.7071,-0.7071,0.0,0.7071,-0.6935,-0.1951,0.6935,-0.8155,-0.1951,0.5449,-0.7071,0.0,0.7071,-0.8155,-0.1951,0.5449,-0.8315,0.0,0.5556,-0.8315,0.0,0.5556,-0.8155,-0.1951,0.5449,-0.9061,-0.1951,0.3753,-0.8315,0.0,0.5556,-0.9061,-0.1951,0.3753,-0.9239,0.0,0.3827,-0.9239,0.0,0.3827,-0.9061,-0.1951,0.3753,-0.9619,-0.1951,0.1913,-0.9239,0.0,0.3827,-0.9619,-0.1951,0.1913,-0.9808,0.0,0.1951,-0.9808,0.0,0.1951,-0.9619,-0.1951,0.1913,-0.9808,-0.1951,0.0,-0.9808,0.0,0.1951,-0.9808,-0.1951,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-0.9808,-0.1951,0.0,-0.9619,-0.1951,-0.1913,-1.0,0.0,0.0,-0.9619,-0.1951,-0.1913,-0.9808,0.0,-0.1951,-0.9808,0.0,-0.1951,-0.9619,-0.1951,-0.1913,-0.9061,-0.1951,-0.3753,-0.9808,0.0,-0.1951,-0.9061,-0.1951,-0.3753,-0.9239,0.0,-0.3827,-0.9239,0.0,-0.3827,-0.9061,-0.1951,-0.3753,-0.8155,-0.1951,-0.5449,-0.9239,0.0,-0.3827,-0.8155,-0.1951,-0.5449,-0.8315,0.0,-0.5556,-0.8315,0.0,-0.5556,-0.8155,-0.1951,-0.5449,-0.6935,-0.1951,-0.6935,-0.8315,0.0,-0.5556,-0.6935,-0.1951,-0.6935,-0.7071,0.0,-0.7071,-0.7071,0.0,-0.7071,-0.6935,-0.1951,-0.6935,-0.5449,-0.1951,-0.8155,-0.7071,0.0,-0.7071,-0.5449,-0.1951,-0.8155,-0.5556,0.0,-0.8315,-0.5556,0.0,-0.8315,-0.5449,-0.1951,-0.8155,-0.3753,-0.1951,-0.9061,-0.5556,0.0,-0.8315,-0.3753,-0.1951,-0.9061,-0.3827,0.0,-0.9239,-0.3827,0.0,-0.9239,-0.3753,-0.1951,-0.9061,-0.1913,-0.1951,-0.9619,-0.3827,0.0,-0.9239,-0.1913,-0.1951,-0.9619,-0.1951,0.0,-0.9808,-0.1951,0.0,-0.9808,-0.1913,-0.1951,-0.9619,0.0,-0.1951,-0.9808,-0.1951,0.0,-0.9808,0.0,-0.1951,-0.9808,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,-0.1951,-0.9808,0.1913,-0.1951,-0.9619,0.0,0.0,-1.0,0.1913,-0.1951,-0.9619,0.1951,0.0,-0.9808,0.1951,0.0,-0.9808,0.1913,-0.1951,-0.9619,0.3753,-0.1951,-0.9061,0.1951,0.0,-0.9808,0.3753,-0.1951,-0.9061,0.3827,0.0,-0.9239,0.3827,0.0,-0.9239,0.3753,-0.1951,-0.9061,0.5449,-0.1951,-0.8155,0.3827,0.0,-0.9239,0.5449,-0.1951,-0.8155,0.5556,0.0,-0.8315,0.5556,0.0,-0.8315,0.5449,-0.1951,-0.8155,0.6935,-0.1951,-0.6935,0.5556,0.0,-0.8315,0.6935,-0.1951,-0.6935,0.7071,0.0,-0.7071,0.7071,0.0,-0.7071,0.6935,-0.1951,-0.6935,0.8155,-0.1951,-0.5449,0.7071,0.0,-0.7071,0.8155,-0.1951,-0.5449,0.8315,0.0,-0.5556,0.8315,0.0,-0.5556,0.8155,-0.1951,-0.5449,0.9061,-0.1951,-0.3753,0.8315,0.0,-0.5556,0.9061,-0.1951,-0.3753,0.9239,0.0,-0.3827,0.9239,0.0,-0.3827,0.9061,-0.1951,-0.3753,0.9619,-0.1951,-0.1913,0.9239,0.0,-0.3827,0.9619,-0.1951,-0.1913,0.9808,0.0,-0.1951,0.9808,0.0,-0.1951,0.9619,-0.1951,-0.1913,0.9808,-0.1951,0.0,0.9808,0.0,-0.1951,0.9808,-0.1951,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.9808,-0.1951,0.0,0.9619,-0.1951,0.1913,1.0,0.0,0.0,0.9619,-0.1951,0.1913,0.9808,0.0,0.1951,0.9808,0.0,0.1951,0.9619,-0.1951,0.1913,0.9061,-0.1951,0.3753,0.9808,0.0,0.1951,0.9061,-0.1951,0.3753,0.9239,0.0,0.3827,0.9239,0.0,0.3827,0.9061,-0.1951,0.3753,0.8155,-0.1951,0.5449,0.9239,0.0,0.3827,0.8155,-0.1951,0.5449,0.8315,0.0,0.5556,0.8315,0.0,0.5556,0.8155,-0.1951,0.5449,0.6935,-0.1951,0.6935,0.8315,0.0,0.5556,0.6935,-0.1951,0.6935,0.7071,0.0,0.7071,0.7071,0.0,0.7071,0.6935,-0.1951,0.6935,0.5449,-0.1951,0.8155,0.7071,0.0,0.7071,0.5449,-0.1951,0.8155,0.5556,0.0,0.8315,0.5556,0.0,0.8315,0.5449,-0.1951,0.8155,0.3753,-0.1951,0.9061,0.5556,0.0,0.8315,0.3753,-0.1951,0.9061,0.3827,0.0,0.9239,0.3827,0.0,0.9239,0.3753,-0.1951,0.9061,0.1913,-0.1951,0.9619,0.3827,0.0,0.9239,0.1913,-0.1951,0.9619,0.1951,0.0,0.9808,0.1951,0.0,0.9808,0.1913,-0.1951,0.9619,0.0,-0.1951,0.9808,0.1951,0.0,0.9808,0.0,-0.1951,0.9808,0.0,0.0,1.0,0.0,-0.1951,0.9808,0.0,-0.3827,0.9239,-0.1802,-0.3827,0.9061,0.0,-0.1951,0.9808,-0.1802,-0.3827,0.9061,-0.1913,-0.1951,0.9619,-0.1913,-0.1951,0.9619,-0.1802,-0.3827,0.9061,-0.3536,-0.3827,0.8536,-0.1913,-0.1951,0.9619,-0.3536,-0.3827,0.8536,-0.3753,-0.1951,0.9061,-0.3753,-0.1951,0.9061,-0.3536,-0.3827,0.8536,-0.5133,-0.3827,0.7682,-0.3753,-0.1951,0.9061,-0.5133,-0.3827,0.7682,-0.5449,-0.1951,0.8155,-0.5449,-0.1951,0.8155,-0.5133,-0.3827,0.7682,-0.6533,-0.3827,0.6533,-0.5449,-0.1951,0.8155,-0.6533,-0.3827,0.6533,-0.6935,-0.1951,0.6935,-0.6935,-0.1951,0.6935,-0.6533,-0.3827,0.6533,-0.7682,-0.3827,0.5133,-0.6935,-0.1951,0.6935,-0.7682,-0.3827,0.5133,-0.8155,-0.1951,0.5449,-0.8155,-0.1951,0.5449,-0.7682,-0.3827,0.5133,-0.8536,-0.3827,0.3536,-0.8155,-0.1951,0.5449,-0.8536,-0.3827,0.3536,-0.9061,-0.1951,0.3753,-0.9061,-0.1951,0.3753,-0.8536,-0.3827,0.3536,-0.9061,-0.3827,0.1802,-0.9061,-0.1951,0.3753,-0.9061,-0.3827,0.1802,-0.9619,-0.1951,0.1913,-0.9619,-0.1951,0.1913,-0.9061,-0.3827,0.1802,-0.9239,-0.3827,0.0,-0.9619,-0.1951,0.1913,-0.9239,-0.3827,0.0,-0.9808,-0.1951,0.0,-0.9808,-0.1951,0.0,-0.9239,-0.3827,0.0,-0.9061,-0.3827,-0.1802,-0.9808,-0.1951,0.0,-0.9061,-0.3827,-0.1802,-0.9619,-0.1951,-0.1913,-0.9619,-0.1951,-0.1913,-0.9061,-0.3827,-0.1802,-0.8536,-0.3827,-0.3536,-0.9619,-0.1951,-0.1913,-0.8536,-0.3827,-0.3536,-0.9061,-0.1951,-0.3753,-0.9061,-0.1951,-0.3753,-0.8536,-0.3827,-0.3536,-0.7682,-0.3827,-0.5133,-0.9061,-0.1951,-0.3753,-0.7682,-0.3827,-0.5133,-0.8155,-0.1951,-0.5449,-0.8155,-0.1951,-0.5449,-0.7682,-0.3827,-0.5133,-0.6533,-0.3827,-0.6533,-0.8155,-0.1951,-0.5449,-0.6533,-0.3827,-0.6533,-0.6935,-0.1951,-0.6935,-0.6935,-0.1951,-0.6935,-0.6533,-0.3827,-0.6533,-0.5133,-0.3827,-0.7682,-0.6935,-0.1951,-0.6935,-0.5133,-0.3827,-0.7682,-0.5449,-0.1951,-0.8155,-0.5449,-0.1951,-0.8155,-0.5133,-0.3827,-0.7682,-0.3536,-0.3827,-0.8536,-0.5449,-0.1951,-0.8155,-0.3536,-0.3827,-0.8536,-0.3753,-0.1951,-0.9061,-0.3753,-0.1951,-0.9061,-0.3536,-0.3827,-0.8536,-0.1802,-0.3827,-0.9061,-0.3753,-0.1951,-0.9061,-0.1802,-0.3827,-0.9061,-0.1913,-0.1951,-0.9619,-0.1913,-0.1951,-0.9619,-0.1802,-0.3827,-0.9061,0.0,-0.3827,-0.9239,-0.1913,-0.1951,-0.9619,0.0,-0.3827,-0.9239,0.0,-0.1951,-0.9808,0.0,-0.1951,-0.9808,0.0,-0.3827,-0.9239,0.1802,-0.3827,-0.9061,0.0,-0.1951,-0.9808,0.1802,-0.3827,-0.9061,0.1913,-0.1951,-0.9619,0.1913,-0.1951,-0.9619,0.1802,-0.3827,-0.9061,0.3536,-0.3827,-0.8536,0.1913,-0.1951,-0.9619,0.3536,-0.3827,-0.8536,0.3753,-0.1951,-0.9061,0.3753,-0.1951,-0.9061,0.3536,-0.3827,-0.8536,0.5133,-0.3827,-0.7682,0.3753,-0.1951,-0.9061,0.5133,-0.3827,-0.7682,0.5449,-0.1951,-0.8155,0.5449,-0.1951,-0.8155,0.5133,-0.3827,-0.7682,0.6533,-0.3827,-0.6533,0.5449,-0.1951,-0.8155,0.6533,-0.3827,-0.6533,0.6935,-0.1951,-0.6935,0.6935,-0.1951,-0.6935,0.6533,-0.3827,-0.6533,0.7682,-0.3827,-0.5133,0.6935,-0.1951,-0.6935,0.7682,-0.3827,-0.5133,0.8155,-0.1951,-0.5449,0.8155,-0.1951,-0.5449,0.7682,-0.3827,-0.5133,0.8536,-0.3827,-0.3536,0.8155,-0.1951,-0.5449,0.8536,-0.3827,-0.3536,0.9061,-0.1951,-0.3753,0.9061,-0.1951,-0.3753,0.8536,-0.3827,-0.3536,0.9061,-0.3827,-0.1802,0.9061,-0.1951,-0.3753,0.9061,-0.3827,-0.1802,0.9619,-0.1951,-0.1913,0.9619,-0.1951,-0.1913,0.9061,-0.3827,-0.1802,0.9239,-0.3827,0.0,0.9619,-0.1951,-0.1913,0.9239,-0.3827,0.0,0.9808,-0.1951,0.0,0.9808,-0.1951,0.0,0.9239,-0.3827,0.0,0.9061,-0.3827,0.1802,0.9808,-0.1951,0.0,0.9061,-0.3827,0.1802,0.9619,-0.1951,0.1913,0.9619,-0.1951,0.1913,0.9061,-0.3827,0.1802,0.8536,-0.3827,0.3536,0.9619,-0.1951,0.1913,0.8536,-0.3827,0.3536,0.9061,-0.1951,0.3753,0.9061,-0.1951,0.3753,0.8536,-0.3827,0.3536,0.7682,-0.3827,0.5133,0.9061,-0.1951,0.3753,0.7682,-0.3827,0.5133,0.8155,-0.1951,0.5449,0.8155,-0.1951,0.5449,0.7682,-0.3827,0.5133,0.6533,-0.3827,0.6533,0.8155,-0.1951,0.5449,0.6533,-0.3827,0.6533,0.6935,-0.1951,0.6935,0.6935,-0.1951,0.6935,0.6533,-0.3827,0.6533,0.5133,-0.3827,0.7682,0.6935,-0.1951,0.6935,0.5133,-0.3827,0.7682,0.5449,-0.1951,0.8155,0.5449,-0.1951,0.8155,0.5133,-0.3827,0.7682,0.3536,-0.3827,0.8536,0.5449,-0.1951,0.8155,0.3536,-0.3827,0.8536,0.3753,-0.1951,0.9061,0.3753,-0.1951,0.9061,0.3536,-0.3827,0.8536,0.1802,-0.3827,0.9061,0.3753,-0.1951,0.9061,0.1802,-0.3827,0.9061,0.1913,-0.1951,0.9619,0.1913,-0.1951,0.9619,0.1802,-0.3827,0.9061,0.0,-0.3827,0.9239,0.1913,-0.1951,0.9619,0.0,-0.3827,0.9239,0.0,-0.1951,0.9808,0.0,-0.3827,0.9239,0.0,-0.5556,0.8315,-0.1622,-0.5556,0.8155,0.0,-0.3827,0.9239,-0.1622,-0.5556,0.8155,-0.1802,-0.3827,0.9061,-0.1802,-0.3827,0.9061,-0.1622,-0.5556,0.8155,-0.3182,-0.5556,0.7682,-0.1802,-0.3827,0.9061,-0.3182,-0.5556,0.7682,-0.3536,-0.3827,0.8536,-0.3536,-0.3827,0.8536,-0.3182,-0.5556,0.7682,-0.4619,-0.5556,0.6913,-0.3536,-0.3827,0.8536,-0.4619,-0.5556,0.6913,-0.5133,-0.3827,0.7682,-0.5133,-0.3827,0.7682,-0.4619,-0.5556,0.6913,-0.5879,-0.5556,0.5879,-0.5133,-0.3827,0.7682,-0.5879,-0.5556,0.5879,-0.6533,-0.3827,0.6533,-0.6533,-0.3827,0.6533,-0.5879,-0.5556,0.5879,-0.6913,-0.5556,0.4619,-0.6533,-0.3827,0.6533,-0.6913,-0.5556,0.4619,-0.7682,-0.3827,0.5133,-0.7682,-0.3827,0.5133,-0.6913,-0.5556,0.4619,-0.7682,-0.5556,0.3182,-0.7682,-0.3827,0.5133,-0.7682,-0.5556,0.3182,-0.8536,-0.3827,0.3536,-0.8536,-0.3827,0.3536,-0.7682,-0.5556,0.3182,-0.8155,-0.5556,0.1622,-0.8536,-0.3827,0.3536,-0.8155,-0.5556,0.1622,-0.9061,-0.3827,0.1802,-0.9061,-0.3827,0.1802,-0.8155,-0.5556,0.1622,-0.8315,-0.5556,0.0,-0.9061,-0.3827,0.1802,-0.8315,-0.5556,0.0,-0.9239,-0.3827,0.0,-0.9239,-0.3827,0.0,-0.8315,-0.5556,0.0,-0.8155,-0.5556,-0.1622,-0.9239,-0.3827,0.0,-0.8155,-0.5556,-0.1622,-0.9061,-0.3827,-0.1802,-0.9061,-0.3827,-0.1802,-0.8155,-0.5556,-0.1622,-0.7682,-0.5556,-0.3182,-0.9061,-0.3827,-0.1802,-0.7682,-0.5556,-0.3182,-0.8536,-0.3827,-0.3536,-0.8536,-0.3827,-0.3536,-0.7682,-0.5556,-0.3182,-0.6913,-0.5556,-0.4619,-0.8536,-0.3827,-0.3536,-0.6913,-0.5556,-0.4619,-0.7682,-0.3827,-0.5133,-0.7682,-0.3827,-0.5133,-0.6913,-0.5556,-0.4619,-0.5879,-0.5556,-0.5879,-0.7682,-0.3827,-0.5133,-0.5879,-0.5556,-0.5879,-0.6533,-0.3827,-0.6533,-0.6533,-0.3827,-0.6533,-0.5879,-0.5556,-0.5879,-0.4619,-0.5556,-0.6913,-0.6533,-0.3827,-0.6533,-0.4619,-0.5556,-0.6913,-0.5133,-0.3827,-0.7682,-0.5133,-0.3827,-0.7682,-0.4619,-0.5556,-0.6913,-0.3182,-0.5556,-0.7682,-0.5133,-0.3827,-0.7682,-0.3182,-0.5556,-0.7682,-0.3536,-0.3827,-0.8536,-0.3536,-0.3827,-0.8536,-0.3182,-0.5556,-0.7682,-0.1622,-0.5556,-0.8155,-0.3536,-0.3827,-0.8536,-0.1622,-0.5556,-0.8155,-0.1802,-0.3827,-0.9061,-0.1802,-0.3827,-0.9061,-0.1622,-0.5556,-0.8155,0.0,-0.5556,-0.8315,-0.1802,-0.3827,-0.9061,0.0,-0.5556,-0.8315,0.0,-0.3827,-0.9239,0.0,-0.3827,-0.9239,0.0,-0.5556,-0.8315,0.1622,-0.5556,-0.8155,0.0,-0.3827,-0.9239,0.1622,-0.5556,-0.8155,0.1802,-0.3827,-0.9061,0.1802,-0.3827,-0.9061,0.1622,-0.5556,-0.8155,0.3182,-0.5556,-0.7682,0.1802,-0.3827,-0.9061,0.3182,-0.5556,-0.7682,0.3536,-0.3827,-0.8536,0.3536,-0.3827,-0.8536,0.3182,-0.5556,-0.7682,0.4619,-0.5556,-0.6913,0.3536,-0.3827,-0.8536,0.4619,-0.5556,-0.6913,0.5133,-0.3827,-0.7682,0.5133,-0.3827,-0.7682,0.4619,-0.5556,-0.6913,0.5879,-0.5556,-0.5879,0.5133,-0.3827,-0.7682,0.5879,-0.5556,-0.5879,0.6533,-0.3827,-0.6533,0.6533,-0.3827,-0.6533,0.5879,-0.5556,-0.5879,0.6913,-0.5556,-0.4619,0.6533,-0.3827,-0.6533,0.6913,-0.5556,-0.4619,0.7682,-0.3827,-0.5133,0.7682,-0.3827,-0.5133,0.6913,-0.5556,-0.4619,0.7682,-0.5556,-0.3182,0.7682,-0.3827,-0.5133,0.7682,-0.5556,-0.3182,0.8536,-0.3827,-0.3536,0.8536,-0.3827,-0.3536,0.7682,-0.5556,-0.3182,0.8155,-0.5556,-0.1622,0.8536,-0.3827,-0.3536,0.8155,-0.5556,-0.1622,0.9061,-0.3827,-0.1802,0.9061,-0.3827,-0.1802,0.8155,-0.5556,-0.1622,0.8315,-0.5556,0.0,0.9061,-0.3827,-0.1802,0.8315,-0.5556,0.0,0.9239,-0.3827,0.0,0.9239,-0.3827,0.0,0.8315,-0.5556,0.0,0.8155,-0.5556,0.1622,0.9239,-0.3827,0.0,0.8155,-0.5556,0.1622,0.9061,-0.3827,0.1802,0.9061,-0.3827,0.1802,0.8155,-0.5556,0.1622,0.7682,-0.5556,0.3182,0.9061,-0.3827,0.1802,0.7682,-0.5556,0.3182,0.8536,-0.3827,0.3536,0.8536,-0.3827,0.3536,0.7682,-0.5556,0.3182,0.6913,-0.5556,0.4619,0.8536,-0.3827,0.3536,0.6913,-0.5556,0.4619,0.7682,-0.3827,0.5133,0.7682,-0.3827,0.5133,0.6913,-0.5556,0.4619,0.5879,-0.5556,0.5879,0.7682,-0.3827,0.5133,0.5879,-0.5556,0.5879,0.6533,-0.3827,0.6533,0.6533,-0.3827,0.6533,0.5879,-0.5556,0.5879,0.4619,-0.5556,0.6913,0.6533,-0.3827,0.6533,0.4619,-0.5556,0.6913,0.5133,-0.3827,0.7682,0.5133,-0.3827,0.7682,0.4619,-0.5556,0.6913,0.3182,-0.5556,0.7682,0.5133,-0.3827,0.7682,0.3182,-0.5556,0.7682,0.3536,-0.3827,0.8536,0.3536,-0.3827,0.8536,0.3182,-0.5556,0.7682,0.1622,-0.5556,0.8155,0.3536,-0.3827,0.8536,0.1622,-0.5556,0.8155,0.1802,-0.3827,0.9061,0.1802,-0.3827,0.9061,0.1622,-0.5556,0.8155,0.0,-0.5556,0.8315,0.1802,-0.3827,0.9061,0.0,-0.5556,0.8315,0.0,-0.3827,0.9239,0.0,-0.5556,0.8315,0.0,-0.7071,0.7071,-0.1379,-0.7071,0.6935,0.0,-0.5556,0.8315,-0.1379,-0.7071,0.6935,-0.1622,-0.5556,0.8155,-0.1622,-0.5556,0.8155,-0.1379,-0.7071,0.6935,-0.2706,-0.7071,0.6533,-0.1622,-0.5556,0.8155,-0.2706,-0.7071,0.6533,-0.3182,-0.5556,0.7682,-0.3182,-0.5556,0.7682,-0.2706,-0.7071,0.6533,-0.3928,-0.7071,0.5879,-0.3182,-0.5556,0.7682,-0.3928,-0.7071,0.5879,-0.4619,-0.5556,0.6913,-0.4619,-0.5556,0.6913,-0.3928,-0.7071,0.5879,-0.5,-0.7071,0.5,-0.4619,-0.5556,0.6913,-0.5,-0.7071,0.5,-0.5879,-0.5556,0.5879,-0.5879,-0.5556,0.5879,-0.5,-0.7071,0.5,-0.5879,-0.7071,0.3928,-0.5879,-0.5556,0.5879,-0.5879,-0.7071,0.3928,-0.6913,-0.5556,0.4619,-0.6913,-0.5556,0.4619,-0.5879,-0.7071,0.3928,-0.6533,-0.7071,0.2706,-0.6913,-0.5556,0.4619,-0.6533,-0.7071,0.2706,-0.7682,-0.5556,0.3182,-0.7682,-0.5556,0.3182,-0.6533,-0.7071,0.2706,-0.6935,-0.7071,0.1379,-0.7682,-0.5556,0.3182,-0.6935,-0.7071,0.1379,-0.8155,-0.5556,0.1622,-0.8155,-0.5556,0.1622,-0.6935,-0.7071,0.1379,-0.7071,-0.7071,0.0,-0.8155,-0.5556,0.1622,-0.7071,-0.7071,0.0,-0.8315,-0.5556,0.0,-0.8315,-0.5556,0.0,-0.7071,-0.7071,0.0,-0.6935,-0.7071,-0.1379,-0.8315,-0.5556,0.0,-0.6935,-0.7071,-0.1379,-0.8155,-0.5556,-0.1622,-0.8155,-0.5556,-0.1622,-0.6935,-0.7071,-0.1379,-0.6533,-0.7071,-0.2706,-0.8155,-0.5556,-0.1622,-0.6533,-0.7071,-0.2706,-0.7682,-0.5556,-0.3182,-0.7682,-0.5556,-0.3182,-0.6533,-0.7071,-0.2706,-0.5879,-0.7071,-0.3928,-0.7682,-0.5556,-0.3182,-0.5879,-0.7071,-0.3928,-0.6913,-0.5556,-0.4619,-0.6913,-0.5556,-0.4619,-0.5879,-0.7071,-0.3928,-0.5,-0.7071,-0.5,-0.6913,-0.5556,-0.4619,-0.5,-0.7071,-0.5,-0.5879,-0.5556,-0.5879,-0.5879,-0.5556,-0.5879,-0.5,-0.7071,-0.5,-0.3928,-0.7071,-0.5879,-0.5879,-0.5556,-0.5879,-0.3928,-0.7071,-0.5879,-0.4619,-0.5556,-0.6913,-0.4619,-0.5556,-0.6913,-0.3928,-0.7071,-0.5879,-0.2706,-0.7071,-0.6533,-0.4619,-0.5556,-0.6913,-0.2706,-0.7071,-0.6533,-0.3182,-0.5556,-0.7682,-0.3182,-0.5556,-0.7682,-0.2706,-0.7071,-0.6533,-0.1379,-0.7071,-0.6935,-0.3182,-0.5556,-0.7682,-0.1379,-0.7071,-0.6935,-0.1622,-0.5556,-0.8155,-0.1622,-0.5556,-0.8155,-0.1379,-0.7071,-0.6935,0.0,-0.7071,-0.7071,-0.1622,-0.5556,-0.8155,0.0,-0.7071,-0.7071,0.0,-0.5556,-0.8315,0.0,-0.5556,-0.8315,0.0,-0.7071,-0.7071,0.138,-0.7071,-0.6935,0.0,-0.5556,-0.8315,0.138,-0.7071,-0.6935,0.1622,-0.5556,-0.8155,0.1622,-0.5556,-0.8155,0.138,-0.7071,-0.6935,0.2706,-0.7071,-0.6533,0.1622,-0.5556,-0.8155,0.2706,-0.7071,-0.6533,0.3182,-0.5556,-0.7682,0.3182,-0.5556,-0.7682,0.2706,-0.7071,-0.6533,0.3928,-0.7071,-0.5879,0.3182,-0.5556,-0.7682,0.3928,-0.7071,-0.5879,0.4619,-0.5556,-0.6913,0.4619,-0.5556,-0.6913,0.3928,-0.7071,-0.5879,0.5,-0.7071,-0.5,0.4619,-0.5556,-0.6913,0.5,-0.7071,-0.5,0.5879,-0.5556,-0.5879,0.5879,-0.5556,-0.5879,0.5,-0.7071,-0.5,0.5879,-0.7071,-0.3928,0.5879,-0.5556,-0.5879,0.5879,-0.7071,-0.3928,0.6913,-0.5556,-0.4619,0.6913,-0.5556,-0.4619,0.5879,-0.7071,-0.3928,0.6533,-0.7071,-0.2706,0.6913,-0.5556,-0.4619,0.6533,-0.7071,-0.2706,0.7682,-0.5556,-0.3182,0.7682,-0.5556,-0.3182,0.6533,-0.7071,-0.2706,0.6935,-0.7071,-0.1379,0.7682,-0.5556,-0.3182,0.6935,-0.7071,-0.1379,0.8155,-0.5556,-0.1622,0.8155,-0.5556,-0.1622,0.6935,-0.7071,-0.1379,0.7071,-0.7071,0.0,0.8155,-0.5556,-0.1622,0.7071,-0.7071,0.0,0.8315,-0.5556,0.0,0.8315,-0.5556,0.0,0.7071,-0.7071,0.0,0.6935,-0.7071,0.138,0.8315,-0.5556,0.0,0.6935,-0.7071,0.138,0.8155,-0.5556,0.1622,0.8155,-0.5556,0.1622,0.6935,-0.7071,0.138,0.6533,-0.7071,0.2706,0.8155,-0.5556,0.1622,0.6533,-0.7071,0.2706,0.7682,-0.5556,0.3182,0.7682,-0.5556,0.3182,0.6533,-0.7071,0.2706,0.5879,-0.7071,0.3928,0.7682,-0.5556,0.3182,0.5879,-0.7071,0.3928,0.6913,-0.5556,0.4619,0.6913,-0.5556,0.4619,0.5879,-0.7071,0.3928,0.5,-0.7071,0.5,0.6913,-0.5556,0.4619,0.5,-0.7071,0.5,0.5879,-0.5556,0.5879,0.5879,-0.5556,0.5879,0.5,-0.7071,0.5,0.3928,-0.7071,0.5879,0.5879,-0.5556,0.5879,0.3928,-0.7071,0.5879,0.4619,-0.5556,0.6913,0.4619,-0.5556,0.6913,0.3928,-0.7071,0.5879,0.2706,-0.7071,0.6533,0.4619,-0.5556,0.6913,0.2706,-0.7071,0.6533,0.3182,-0.5556,0.7682,0.3182,-0.5556,0.7682,0.2706,-0.7071,0.6533,0.1379,-0.7071,0.6935,0.3182,-0.5556,0.7682,0.1379,-0.7071,0.6935,0.1622,-0.5556,0.8155,0.1622,-0.5556,0.8155,0.1379,-0.7071,0.6935,0.0,-0.7071,0.7071,0.1622,-0.5556,0.8155,0.0,-0.7071,0.7071,0.0,-0.5556,0.8315,0.0,-0.7071,0.7071,0.0,-0.8315,0.5556,-0.1084,-0.8315,0.5449,0.0,-0.7071,0.7071,-0.1084,-0.8315,0.5449,-0.1379,-0.7071,0.6935,-0.1379,-0.7071,0.6935,-0.1084,-0.8315,0.5449,-0.2126,-0.8315,0.5133,-0.1379,-0.7071,0.6935,-0.2126,-0.8315,0.5133,-0.2706,-0.7071,0.6533,-0.2706,-0.7071,0.6533,-0.2126,-0.8315,0.5133,-0.3087,-0.8315,0.4619,-0.2706,-0.7071,0.6533,-0.3087,-0.8315,0.4619,-0.3928,-0.7071,0.5879,-0.3928,-0.7071,0.5879,-0.3087,-0.8315,0.4619,-0.3928,-0.8315,0.3928,-0.3928,-0.7071,0.5879,-0.3928,-0.8315,0.3928,-0.5,-0.7071,0.5,-0.5,-0.7071,0.5,-0.3928,-0.8315,0.3928,-0.4619,-0.8315,0.3087,-0.5,-0.7071,0.5,-0.4619,-0.8315,0.3087,-0.5879,-0.7071,0.3928,-0.5879,-0.7071,0.3928,-0.4619,-0.8315,0.3087,-0.5133,-0.8315,0.2126,-0.5879,-0.7071,0.3928,-0.5133,-0.8315,0.2126,-0.6533,-0.7071,0.2706,-0.6533,-0.7071,0.2706,-0.5133,-0.8315,0.2126,-0.5449,-0.8315,0.1084,-0.6533,-0.7071,0.2706,-0.5449,-0.8315,0.1084,-0.6935,-0.7071,0.1379,-0.6935,-0.7071,0.1379,-0.5449,-0.8315,0.1084,-0.5556,-0.8315,0.0,-0.6935,-0.7071,0.1379,-0.5556,-0.8315,0.0,-0.7071,-0.7071,0.0,-0.7071,-0.7071,0.0,-0.5556,-0.8315,0.0,-0.5449,-0.8315,-0.1084,-0.7071,-0.7071,0.0,-0.5449,-0.8315,-0.1084,-0.6935,-0.7071,-0.1379,-0.6935,-0.7071,-0.1379,-0.5449,-0.8315,-0.1084,-0.5133,-0.8315,-0.2126,-0.6935,-0.7071,-0.1379,-0.5133,-0.8315,-0.2126,-0.6533,-0.7071,-0.2706,-0.6533,-0.7071,-0.2706,-0.5133,-0.8315,-0.2126,-0.4619,-0.8315,-0.3087,-0.6533,-0.7071,-0.2706,-0.4619,-0.8315,-0.3087,-0.5879,-0.7071,-0.3928,-0.5879,-0.7071,-0.3928,-0.4619,-0.8315,-0.3087,-0.3928,-0.8315,-0.3928,-0.5879,-0.7071,-0.3928,-0.3928,-0.8315,-0.3928,-0.5,-0.7071,-0.5,-0.5,-0.7071,-0.5,-0.3928,-0.8315,-0.3928,-0.3087,-0.8315,-0.4619,-0.5,-0.7071,-0.5,-0.3087,-0.8315,-0.4619,-0.3928,-0.7071,-0.5879,-0.3928,-0.7071,-0.5879,-0.3087,-0.8315,-0.4619,-0.2126,-0.8315,-0.5133,-0.3928,-0.7071,-0.5879,-0.2126,-0.8315,-0.5133,-0.2706,-0.7071,-0.6533,-0.2706,-0.7071,-0.6533,-0.2126,-0.8315,-0.5133,-0.1084,-0.8315,-0.5449,-0.2706,-0.7071,-0.6533,-0.1084,-0.8315,-0.5449,-0.1379,-0.7071,-0.6935,-0.1379,-0.7071,-0.6935,-0.1084,-0.8315,-0.5449,0.0,-0.8315,-0.5556,-0.1379,-0.7071,-0.6935,0.0,-0.8315,-0.5556,0.0,-0.7071,-0.7071,0.0,-0.7071,-0.7071,0.0,-0.8315,-0.5556,0.1084,-0.8315,-0.5449,0.0,-0.7071,-0.7071,0.1084,-0.8315,-0.5449,0.138,-0.7071,-0.6935,0.138,-0.7071,-0.6935,0.1084,-0.8315,-0.5449,0.2126,-0.8315,-0.5133,0.138,-0.7071,-0.6935,0.2126,-0.8315,-0.5133,0.2706,-0.7071,-0.6533,0.2706,-0.7071,-0.6533,0.2126,-0.8315,-0.5133,0.3087,-0.8315,-0.4619,0.2706,-0.7071,-0.6533,0.3087,-0.8315,-0.4619,0.3928,-0.7071,-0.5879,0.3928,-0.7071,-0.5879,0.3087,-0.8315,-0.4619,0.3928,-0.8315,-0.3928,0.3928,-0.7071,-0.5879,0.3928,-0.8315,-0.3928,0.5,-0.7071,-0.5,0.5,-0.7071,-0.5,0.3928,-0.8315,-0.3928,0.4619,-0.8315,-0.3087,0.5,-0.7071,-0.5,0.4619,-0.8315,-0.3087,0.5879,-0.7071,-0.3928,0.5879,-0.7071,-0.3928,0.4619,-0.8315,-0.3087,0.5133,-0.8315,-0.2126,0.5879,-0.7071,-0.3928,0.5133,-0.8315,-0.2126,0.6533,-0.7071,-0.2706,0.6533,-0.7071,-0.2706,0.5133,-0.8315,-0.2126,0.5449,-0.8315,-0.1084,0.6533,-0.7071,-0.2706,0.5449,-0.8315,-0.1084,0.6935,-0.7071,-0.1379,0.6935,-0.7071,-0.1379,0.5449,-0.8315,-0.1084,0.5556,-0.8315,0.0,0.6935,-0.7071,-0.1379,0.5556,-0.8315,0.0,0.7071,-0.7071,0.0,0.7071,-0.7071,0.0,0.5556,-0.8315,0.0,0.5449,-0.8315,0.1084,0.7071,-0.7071,0.0,0.5449,-0.8315,0.1084,0.6935,-0.7071,0.138,0.6935,-0.7071,0.138,0.5449,-0.8315,0.1084,0.5133,-0.8315,0.2126,0.6935,-0.7071,0.138,0.5133,-0.8315,0.2126,0.6533,-0.7071,0.2706,0.6533,-0.7071,0.2706,0.5133,-0.8315,0.2126,0.4619,-0.8315,0.3087,0.6533,-0.7071,0.2706,0.4619,-0.8315,0.3087,0.5879,-0.7071,0.3928,0.5879,-0.7071,0.3928,0.4619,-0.8315,0.3087,0.3928,-0.8315,0.3928,0.5879,-0.7071,0.3928,0.3928,-0.8315,0.3928,0.5,-0.7071,0.5,0.5,-0.7071,0.5,0.3928,-0.8315,0.3928,0.3087,-0.8315,0.4619,0.5,-0.7071,0.5,0.3087,-0.8315,0.4619,0.3928,-0.7071,0.5879,0.3928,-0.7071,0.5879,0.3087,-0.8315,0.4619,0.2126,-0.8315,0.5133,0.3928,-0.7071,0.5879,0.2126,-0.8315,0.5133,0.2706,-0.7071,0.6533,0.2706,-0.7071,0.6533,0.2126,-0.8315,0.5133,0.1084,-0.8315,0.5449,0.2706,-0.7071,0.6533,0.1084,-0.8315,0.5449,0.1379,-0.7071,0.6935,0.1379,-0.7071,0.6935,0.1084,-0.8315,0.5449,0.0,-0.8315,0.5556,0.1379,-0.7071,0.6935,0.0,-0.8315,0.5556,0.0,-0.7071,0.7071,0.0,-0.8315,0.5556,0.0,-0.9239,0.3827,-0.0747,-0.9239,0.3753,0.0,-0.8315,0.5556,-0.0747,-0.9239,0.3753,-0.1084,-0.8315,0.5449,-0.1084,-0.8315,0.5449,-0.0747,-0.9239,0.3753,-0.1464,-0.9239,0.3536,-0.1084,-0.8315,0.5449,-0.1464,-0.9239,0.3536,-0.2126,-0.8315,0.5133,-0.2126,-0.8315,0.5133,-0.1464,-0.9239,0.3536,-0.2126,-0.9239,0.3182,-0.2126,-0.8315,0.5133,-0.2126,-0.9239,0.3182,-0.3087,-0.8315,0.4619,-0.3087,-0.8315,0.4619,-0.2126,-0.9239,0.3182,-0.2706,-0.9239,0.2706,-0.3087,-0.8315,0.4619,-0.2706,-0.9239,0.2706,-0.3928,-0.8315,0.3928,-0.3928,-0.8315,0.3928,-0.2706,-0.9239,0.2706,-0.3182,-0.9239,0.2126,-0.3928,-0.8315,0.3928,-0.3182,-0.9239,0.2126,-0.4619,-0.8315,0.3087,-0.4619,-0.8315,0.3087,-0.3182,-0.9239,0.2126,-0.3536,-0.9239,0.1464,-0.4619,-0.8315,0.3087,-0.3536,-0.9239,0.1464,-0.5133,-0.8315,0.2126,-0.5133,-0.8315,0.2126,-0.3536,-0.9239,0.1464,-0.3753,-0.9239,0.0747,-0.5133,-0.8315,0.2126,-0.3753,-0.9239,0.0747,-0.5449,-0.8315,0.1084,-0.5449,-0.8315,0.1084,-0.3753,-0.9239,0.0747,-0.3827,-0.9239,0.0,-0.5449,-0.8315,0.1084,-0.3827,-0.9239,0.0,-0.5556,-0.8315,0.0,-0.5556,-0.8315,0.0,-0.3827,-0.9239,0.0,-0.3753,-0.9239,-0.0747,-0.5556,-0.8315,0.0,-0.3753,-0.9239,-0.0747,-0.5449,-0.8315,-0.1084,-0.5449,-0.8315,-0.1084,-0.3753,-0.9239,-0.0747,-0.3536,-0.9239,-0.1464,-0.5449,-0.8315,-0.1084,-0.3536,-0.9239,-0.1464,-0.5133,-0.8315,-0.2126,-0.5133,-0.8315,-0.2126,-0.3536,-0.9239,-0.1464,-0.3182,-0.9239,-0.2126,-0.5133,-0.8315,-0.2126,-0.3182,-0.9239,-0.2126,-0.4619,-0.8315,-0.3087,-0.4619,-0.8315,-0.3087,-0.3182,-0.9239,-0.2126,-0.2706,-0.9239,-0.2706,-0.4619,-0.8315,-0.3087,-0.2706,-0.9239,-0.2706,-0.3928,-0.8315,-0.3928,-0.3928,-0.8315,-0.3928,-0.2706,-0.9239,-0.2706,-0.2126,-0.9239,-0.3182,-0.3928,-0.8315,-0.3928,-0.2126,-0.9239,-0.3182,-0.3087,-0.8315,-0.4619,-0.3087,-0.8315,-0.4619,-0.2126,-0.9239,-0.3182,-0.1464,-0.9239,-0.3536,-0.3087,-0.8315,-0.4619,-0.1464,-0.9239,-0.3536,-0.2126,-0.8315,-0.5133,-0.2126,-0.8315,-0.5133,-0.1464,-0.9239,-0.3536,-0.0747,-0.9239,-0.3753,-0.2126,-0.8315,-0.5133,-0.0747,-0.9239,-0.3753,-0.1084,-0.8315,-0.5449,-0.1084,-0.8315,-0.5449,-0.0747,-0.9239,-0.3753,0.0,-0.9239,-0.3827,-0.1084,-0.8315,-0.5449,0.0,-0.9239,-0.3827,0.0,-0.8315,-0.5556,0.0,-0.8315,-0.5556,0.0,-0.9239,-0.3827,0.0747,-0.9239,-0.3753,0.0,-0.8315,-0.5556,0.0747,-0.9239,-0.3753,0.1084,-0.8315,-0.5449,0.1084,-0.8315,-0.5449,0.0747,-0.9239,-0.3753,0.1464,-0.9239,-0.3536,0.1084,-0.8315,-0.5449,0.1464,-0.9239,-0.3536,0.2126,-0.8315,-0.5133,0.2126,-0.8315,-0.5133,0.1464,-0.9239,-0.3536,0.2126,-0.9239,-0.3182,0.2126,-0.8315,-0.5133,0.2126,-0.9239,-0.3182,0.3087,-0.8315,-0.4619,0.3087,-0.8315,-0.4619,0.2126,-0.9239,-0.3182,0.2706,-0.9239,-0.2706,0.3087,-0.8315,-0.4619,0.2706,-0.9239,-0.2706,0.3928,-0.8315,-0.3928,0.3928,-0.8315,-0.3928,0.2706,-0.9239,-0.2706,0.3182,-0.9239,-0.2126,0.3928,-0.8315,-0.3928,0.3182,-0.9239,-0.2126,0.4619,-0.8315,-0.3087,0.4619,-0.8315,-0.3087,0.3182,-0.9239,-0.2126,0.3536,-0.9239,-0.1464,0.4619,-0.8315,-0.3087,0.3536,-0.9239,-0.1464,0.5133,-0.8315,-0.2126,0.5133,-0.8315,-0.2126,0.3536,-0.9239,-0.1464,0.3753,-0.9239,-0.0747,0.5133,-0.8315,-0.2126,0.3753,-0.9239,-0.0747,0.5449,-0.8315,-0.1084,0.5449,-0.8315,-0.1084,0.3753,-0.9239,-0.0747,0.3827,-0.9239,0.0,0.5449,-0.8315,-0.1084,0.3827,-0.9239,0.0,0.5556,-0.8315,0.0,0.5556,-0.8315,0.0,0.3827,-0.9239,0.0,0.3753,-0.9239,0.0747,0.5556,-0.8315,0.0,0.3753,-0.9239,0.0747,0.5449,-0.8315,0.1084,0.5449,-0.8315,0.1084,0.3753,-0.9239,0.0747,0.3536,-0.9239,0.1464,0.5449,-0.8315,0.1084,0.3536,-0.9239,0.1464,0.5133,-0.8315,0.2126,0.5133,-0.8315,0.2126,0.3536,-0.9239,0.1464,0.3182,-0.9239,0.2126,0.5133,-0.8315,0.2126,0.3182,-0.9239,0.2126,0.4619,-0.8315,0.3087,0.4619,-0.8315,0.3087,0.3182,-0.9239,0.2126,0.2706,-0.9239,0.2706,0.4619,-0.8315,0.3087,0.2706,-0.9239,0.2706,0.3928,-0.8315,0.3928,0.3928,-0.8315,0.3928,0.2706,-0.9239,0.2706,0.2126,-0.9239,0.3182,0.3928,-0.8315,0.3928,0.2126,-0.9239,0.3182,0.3087,-0.8315,0.4619,0.3087,-0.8315,0.4619,0.2126,-0.9239,0.3182,0.1464,-0.9239,0.3536,0.3087,-0.8315,0.4619,0.1464,-0.9239,0.3536,0.2126,-0.8315,0.5133,0.2126,-0.8315,0.5133,0.1464,-0.9239,0.3536,0.0747,-0.9239,0.3753,0.2126,-0.8315,0.5133,0.0747,-0.9239,0.3753,0.1084,-0.8315,0.5449,0.1084,-0.8315,0.5449,0.0747,-0.9239,0.3753,0.0,-0.9239,0.3827,0.1084,-0.8315,0.5449,0.0,-0.9239,0.3827,0.0,-0.8315,0.5556,0.0,-0.9239,0.3827,0.0,-0.9808,0.1951,-0.0381,-0.9808,0.1913,0.0,-0.9239,0.3827,-0.0381,-0.9808,0.1913,-0.0747,-0.9239,0.3753,-0.0747,-0.9239,0.3753,-0.0381,-0.9808,0.1913,-0.0747,-0.9808,0.1802,-0.0747,-0.9239,0.3753,-0.0747,-0.9808,0.1802,-0.1464,-0.9239,0.3536,-0.1464,-0.9239,0.3536,-0.0747,-0.9808,0.1802,-0.1084,-0.9808,0.1622,-0.1464,-0.9239,0.3536,-0.1084,-0.9808,0.1622,-0.2126,-0.9239,0.3182,-0.2126,-0.9239,0.3182,-0.1084,-0.9808,0.1622,-0.1379,-0.9808,0.1379,-0.2126,-0.9239,0.3182,-0.1379,-0.9808,0.1379,-0.2706,-0.9239,0.2706,-0.2706,-0.9239,0.2706,-0.1379,-0.9808,0.1379,-0.1622,-0.9808,0.1084,-0.2706,-0.9239,0.2706,-0.1622,-0.9808,0.1084,-0.3182,-0.9239,0.2126,-0.3182,-0.9239,0.2126,-0.1622,-0.9808,0.1084,-0.1802,-0.9808,0.0747,-0.3182,-0.9239,0.2126,-0.1802,-0.9808,0.0747,-0.3536,-0.9239,0.1464,-0.3536,-0.9239,0.1464,-0.1802,-0.9808,0.0747,-0.1913,-0.9808,0.0381,-0.3536,-0.9239,0.1464,-0.1913,-0.9808,0.0381,-0.3753,-0.9239,0.0747,-0.3753,-0.9239,0.0747,-0.1913,-0.9808,0.0381,-0.1951,-0.9808,0.0,-0.3753,-0.9239,0.0747,-0.1951,-0.9808,0.0,-0.3827,-0.9239,0.0,-0.3827,-0.9239,0.0,-0.1951,-0.9808,0.0,-0.1913,-0.9808,-0.0381,-0.3827,-0.9239,0.0,-0.1913,-0.9808,-0.0381,-0.3753,-0.9239,-0.0747,-0.3753,-0.9239,-0.0747,-0.1913,-0.9808,-0.0381,-0.1802,-0.9808,-0.0747,-0.3753,-0.9239,-0.0747,-0.1802,-0.9808,-0.0747,-0.3536,-0.9239,-0.1464,-0.3536,-0.9239,-0.1464,-0.1802,-0.9808,-0.0747,-0.1622,-0.9808,-0.1084,-0.3536,-0.9239,-0.1464,-0.1622,-0.9808,-0.1084,-0.3182,-0.9239,-0.2126,-0.3182,-0.9239,-0.2126,-0.1622,-0.9808,-0.1084,-0.1379,-0.9808,-0.1379,-0.3182,-0.9239,-0.2126,-0.1379,-0.9808,-0.1379,-0.2706,-0.9239,-0.2706,-0.2706,-0.9239,-0.2706,-0.1379,-0.9808,-0.1379,-0.1084,-0.9808,-0.1622,-0.2706,-0.9239,-0.2706,-0.1084,-0.9808,-0.1622,-0.2126,-0.9239,-0.3182,-0.2126,-0.9239,-0.3182,-0.1084,-0.9808,-0.1622,-0.0747,-0.9808,-0.1802,-0.2126,-0.9239,-0.3182,-0.0747,-0.9808,-0.1802,-0.1464,-0.9239,-0.3536,-0.1464,-0.9239,-0.3536,-0.0747,-0.9808,-0.1802,-0.0381,-0.9808,-0.1913,-0.1464,-0.9239,-0.3536,-0.0381,-0.9808,-0.1913,-0.0747,-0.9239,-0.3753,-0.0747,-0.9239,-0.3753,-0.0381,-0.9808,-0.1913,0.0,-0.9808,-0.1951,-0.0747,-0.9239,-0.3753,0.0,-0.9808,-0.1951,0.0,-0.9239,-0.3827,0.0,-0.9239,-0.3827,0.0,-0.9808,-0.1951,0.0381,-0.9808,-0.1913,0.0,-0.9239,-0.3827,0.0381,-0.9808,-0.1913,0.0747,-0.9239,-0.3753,0.0747,-0.9239,-0.3753,0.0381,-0.9808,-0.1913,0.0747,-0.9808,-0.1802,0.0747,-0.9239,-0.3753,0.0747,-0.9808,-0.1802,0.1464,-0.9239,-0.3536,0.1464,-0.9239,-0.3536,0.0747,-0.9808,-0.1802,0.1084,-0.9808,-0.1622,0.1464,-0.9239,-0.3536,0.1084,-0.9808,-0.1622,0.2126,-0.9239,-0.3182,0.2126,-0.9239,-0.3182,0.1084,-0.9808,-0.1622,0.1379,-0.9808,-0.1379,0.2126,-0.9239,-0.3182,0.1379,-0.9808,-0.1379,0.2706,-0.9239,-0.2706,0.2706,-0.9239,-0.2706,0.1379,-0.9808,-0.1379,0.1622,-0.9808,-0.1084,0.2706,-0.9239,-0.2706,0.1622,-0.9808,-0.1084,0.3182,-0.9239,-0.2126,0.3182,-0.9239,-0.2126,0.1622,-0.9808,-0.1084,0.1802,-0.9808,-0.0747,0.3182,-0.9239,-0.2126,0.1802,-0.9808,-0.0747,0.3536,-0.9239,-0.1464,0.3536,-0.9239,-0.1464,0.1802,-0.9808,-0.0747,0.1913,-0.9808,-0.0381,0.3536,-0.9239,-0.1464,0.1913,-0.9808,-0.0381,0.3753,-0.9239,-0.0747,0.3753,-0.9239,-0.0747,0.1913,-0.9808,-0.0381,0.1951,-0.9808,0.0,0.3753,-0.9239,-0.0747,0.1951,-0.9808,0.0,0.3827,-0.9239,0.0,0.3827,-0.9239,0.0,0.1951,-0.9808,0.0,0.1913,-0.9808,0.0381,0.3827,-0.9239,0.0,0.1913,-0.9808,0.0381,0.3753,-0.9239,0.0747,0.3753,-0.9239,0.0747,0.1913,-0.9808,0.0381,0.1802,-0.9808,0.0747,0.3753,-0.9239,0.0747,0.1802,-0.9808,0.0747,0.3536,-0.9239,0.1464,0.3536,-0.9239,0.1464,0.1802,-0.9808,0.0747,0.1622,-0.9808,0.1084,0.3536,-0.9239,0.1464,0.1622,-0.9808,0.1084,0.3182,-0.9239,0.2126,0.3182,-0.9239,0.2126,0.1622,-0.9808,0.1084,0.1379,-0.9808,0.1379,0.3182,-0.9239,0.2126,0.1379,-0.9808,0.1379,0.2706,-0.9239,0.2706,0.2706,-0.9239,0.2706,0.1379,-0.9808,0.1379,0.1084,-0.9808,0.1622,0.2706,-0.9239,0.2706,0.1084,-0.9808,0.1622,0.2126,-0.9239,0.3182,0.2126,-0.9239,0.3182,0.1084,-0.9808,0.1622,0.0747,-0.9808,0.1802,0.2126,-0.9239,0.3182,0.0747,-0.9808,0.1802,0.1464,-0.9239,0.3536,0.1464,-0.9239,0.3536,0.0747,-0.9808,0.1802,0.0381,-0.9808,0.1913,0.1464,-0.9239,0.3536,0.0381,-0.9808,0.1913,0.0747,-0.9239,0.3753,0.0747,-0.9239,0.3753,0.0381,-0.9808,0.1913,0.0,-0.9808,0.1951,0.0747,-0.9239,0.3753,0.0,-0.9808,0.1951,0.0,-0.9239,0.3827,0.0,-1.0,0.0,-0.0381,-0.9808,0.1913,0.0,-0.9808,0.1951,0.0,-1.0,0.0,-0.0747,-0.9808,0.1802,-0.0381,-0.9808,0.1913,0.0,-1.0,0.0,-0.1084,-0.9808,0.1622,-0.0747,-0.9808,0.1802,0.0,-1.0,0.0,-0.1379,-0.9808,0.1379,-0.1084,-0.9808,0.1622,0.0,-1.0,0.0,-0.1622,-0.9808,0.1084,-0.1379,-0.9808,0.1379,0.0,-1.0,0.0,-0.1802,-0.9808,0.0747,-0.1622,-0.9808,0.1084,0.0,-1.0,0.0,-0.1913,-0.9808,0.0381,-0.1802,-0.9808,0.0747,0.0,-1.0,0.0,-0.1951,-0.9808,0.0,-0.1913,-0.9808,0.0381,0.0,-1.0,0.0,-0.1913,-0.9808,-0.0381,-0.1951,-0.9808,0.0,0.0,-1.0,0.0,-0.1802,-0.9808,-0.0747,-0.1913,-0.9808,-0.0381,0.0,-1.0,0.0,-0.1622,-0.9808,-0.1084,-0.1802,-0.9808,-0.0747,0.0,-1.0,0.0,-0.1379,-0.9808,-0.1379,-0.1622,-0.9808,-0.1084,0.0,-1.0,0.0,-0.1084,-0.9808,-0.1622,-0.1379,-0.9808,-0.1379,0.0,-1.0,0.0,-0.0747,-0.9808,-0.1802,-0.1084,-0.9808,-0.1622,0.0,-1.0,0.0,-0.0381,-0.9808,-0.1913,-0.0747,-0.9808,-0.1802,0.0,-1.0,0.0,0.0,-0.9808,-0.1951,-0.0381,-0.9808,-0.1913,0.0,-1.0,0.0,0.0381,-0.9808,-0.1913,0.0,-0.9808,-0.1951,0.0,-1.0,0.0,0.0747,-0.9808,-0.1802,0.0381,-0.9808,-0.1913,0.0,-1.0,0.0,0.1084,-0.9808,-0.1622,0.0747,-0.9808,-0.1802,0.0,-1.0,0.0,0.1379,-0.9808,-0.1379,0.1084,-0.9808,-0.1622,0.0,-1.0,0.0,0.1622,-0.9808,-0.1084,0.1379,-0.9808,-0.1379,0.0,-1.0,0.0,0.1802,-0.9808,-0.0747,0.1622,-0.9808,-0.1084,0.0,-1.0,0.0,0.1913,-0.9808,-0.0381,0.1802,-0.9808,-0.0747,0.0,-1.0,0.0,0.1951,-0.9808,0.0,0.1913,-0.9808,-0.0381,0.0,-1.0,0.0,0.1913,-0.9808,0.0381,0.1951,-0.9808,0.0,0.0,-1.0,0.0,0.1802,-0.9808,0.0747,0.1913,-0.9808,0.0381,0.0,-1.0,0.0,0.1622,-0.9808,0.1084,0.1802,-0.9808,0.0747,0.0,-1.0,0.0,0.1379,-0.9808,0.1379,0.1622,-0.9808,0.1084,0.0,-1.0,0.0,0.1084,-0.9808,0.1622,0.1379,-0.9808,0.1379,0.0,-1.0,0.0,0.0747,-0.9808,0.1802,0.1084,-0.9808,0.1622,0.0,-1.0,0.0,0.0381,-0.9808,0.1913,0.0747,-0.9808,0.1802,0.0,-1.0,0.0,0.0,-0.9808,0.1951,0.0381,-0.9808,0.1913],"normals":[0.0,1.0,0.0,0.0,0.9796,0.201,-0.0392,0.9796,0.1971,0.0,1.0,0.0,-0.0392,0.9796,0.1971,-0.0769,0.9796,0.1857,0.0,1.0,0.0,-0.0769,0.9796,0.1857,-0.1117,0.9796,0.1671,0.0,1.0,0.0,-0.1117,0.9796,0.1671,-0.1421,0.9796,0.1421,0.0,1.0,0.0,-0.1421,0.9796,0.1421,-0.1671,0.9796,0.1117,0.0,1.0,0.0,-0.1671,0.9796,0.1117,-0.1857,0.9796,0.0769,0.0,1.0,0.0,-0.1857,0.9796,0.0769,-0.1971,0.9796,0.0392,0.0,1.0,0.0,-0.1971,0.9796,0.0392,-0.201,0.9796,0.0,0.0,1.0,0.0,-0.201,0.9796,0.0,-0.1971,0.9796,-0.0392,0.0,1.0,0.0,-0.1971,0.9796,-0.0392,-0.1857,0.9796,-0.0769,0.0,1.0,0.0,-0.1857,0.9796,-0.0769,-0.1671,0.9796,-0.1117,0.0,1.0,0.0,-0.1671,0.9796,-0.1117,-0.1421,0.9796,-0.1421,0.0,1.0,0.0,-0.1421,0.9796,-0.1421,-0.1117,0.9796,-0.1671,0.0,1.0,0.0,-0.1117,0.9796,-0.1671,-0.0769,0.9796,-0.1857,0.0,1.0,0.0,-0.0769,0.9796,-0.1857,-0.0392,0.9796,-0.1971,0.0,1.0,0.0,-0.0392,0.9796,-0.1971,0.0,0.9796,-0.201,0.0,1.0,0.0,0.0,0.9796,-0.201,0.0392,0.9796,-0.1971,0.0,1.0,0.0,0.0392,0.9796,-0.1971,0.0769,0.9796,-0.1857,0.0,1.0,0.0,0.0769,0.9796,-0.1857,0.1117,0.9796,-0.1671,0.0,1.0,0.0,0.1117,0.9796,-0.1671,0.1421,0.9796,-0.1421,0.0,1.0,0.0,0.1421,0.9796,-0.1421,0.1671,0.9796,-0.1117,0.0,1.0,0.0,0.1671,0.9796,-0.1117,0.1857,0.9796,-0.0769,0.0,1.0,0.0,0.1857,0.9796,-0.0769,0.1971,0.9796,-0.0392,0.0,1.0,0.0,0.1971,0.9796,-0.0392,0.201,0.9796,0.0,0.0,1.0,0.0,0.201,0.9796,0.0,0.1971,0.9796,0.0392,0.0,1.0,0.0,0.1971,0.9796,0.0392,0.1857,0.9796,0.0769,0.0,1.0,0.0,0.1857,0.9796,0.0769,0.1671,0.9796,0.1117,0.0,1.0,0.0,0.1671,0.9796,0.1117,0.1421,0.9796,0.1421,0.0,1.0,0.0,0.1421,0.9796,0.1421,0.1117,0.9796,0.1671,0.0,1.0,0.0,0.1117,0.9796,0.1671,0.0769,0.9796,0.1857,0.0,1.0,0.0,0.0769,0.9796,0.1857,0.0392,0.9796,0.1971,0.0,1.0,0.0,0.0392,0.9796,0.1971,0.0,0.9796,0.201,0.0,0.9796,0.201,0.0,0.9217,0.3879,-0.0757,0.9217,0.3804,0.0,0.9796,0.201,-0.0757,0.9217,0.3804,-0.0392,0.9796,0.1971,-0.0392,0.9796,0.1971,-0.0757,0.9217,0.3804,-0.1484,0.9217,0.3584,-0.0392,0.9796,0.1971,-0.1484,0.9217,0.3584,-0.0769,0.9796,0.1857,-0.0769,0.9796,0.1857,-0.1484,0.9217,0.3584,-0.2155,0.9217,0.3225,-0.0769,0.9796,0.1857,-0.2155,0.9217,0.3225,-0.1117,0.9796,0.1671,-0.1117,0.9796,0.1671,-0.2155,0.9217,0.3225,-0.2743,0.9217,0.2743,-0.1117,0.9796,0.1671,-0.2743,0.9217,0.2743,-0.1421,0.9796,0.1421,-0.1421,0.9796,0.1421,-0.2743,0.9217,0.2743,-0.3225,0.9217,0.2155,-0.1421,0.9796,0.1421,-0.3225,0.9217,0.2155,-0.1671,0.9796,0.1117,-0.1671,0.9796,0.1117,-0.3225,0.9217,0.2155,-0.3584,0.9217,0.1484,-0.1671,0.9796,0.1117,-0.3584,0.9217,0.1484,-0.1857,0.9796,0.0769,-0.1857,0.9796,0.0769,-0.3584,0.9217,0.1484,-0.3804,0.9217,0.0757,-0.1857,0.9796,0.0769,-0.3804,0.9217,0.0757,-0.1971,0.9796,0.0392,-0.1971,0.9796,0.0392,-0.3804,0.9217,0.0757,-0.3879,0.9217,0.0,-0.1971,0.9796,0.0392,-0.3879,0.9217,0.0,-0.201,0.9796,0.0,-0.201,0.9796,0.0,-0.3879,0.9217,0.0,-0.3804,0.9217,-0.0757,-0.201,0.9796,0.0,-0.3804,0.9217,-0.0757,-0.1971,0.9796,-0.0392,-0.1971,0.9796,-0.0392,-0.3804,0.9217,-0.0757,-0.3584,0.9217,-0.1484,-0.1971,0.9796,-0.0392,-0.3584,0.9217,-0.1484,-0.1857,0.9796,-0.0769,-0.1857,0.9796,-0.0769,-0.3584,0.9217,-0.1484,-0.3225,0.9217,-0.2155,-0.1857,0.9796,-0.0769,-0.3225,0.9217,-0.2155,-0.1671,0.9796,-0.1117,-0.1671,0.9796,-0.1117,-0.3225,0.9217,-0.2155,-0.2743,0.9217,-0.2743,-0.1671,0.9796,-0.1117,-0.2743,0.9217,-0.2743,-0.1421,0.9796,-0.1421,-0.1421,0.9796,-0.1421,-0.2743,0.9217,-0.2743,-0.2155,0.9217,-0.3225,-0.1421,0.9796,-0.1421,-0.2155,0.9217,-0.3225,-0.1117,0.9796,-0.1671,-0.1117,0.9796,-0.1671,-0.2155,0.9217,-0.3225,-0.1484,0.9217,-0.3584,-0.1117,0.9796,-0.1671,-0.1484,0.9217,-0.3584,-0.0769,0.9796,-0.1857,-0.0769,0.9796,-0.1857,-0.1484,0.9217,-0.3584,-0.0757,0.9217,-0.3804,-0.0769,0.9796,-0.1857,-0.0757,0.9217,-0.3804,-0.0392,0.9796,-0.1971,-0.0392,0.9796,-0.1971,-0.0757,0.9217,-0.3804,0.0,0.9217,-0.3879,-0.0392,0.9796,-0.1971,0.0,0.9217,-0.3879,0.0,0.9796,-0.201,0.0,0.9796,-0.201,0.0,0.9217,-0.3879,0.0757,0.9217,-0.3804,0.0,0.9796,-0.201,0.0757,0.9217,-0.3804,0.0392,0.9796,-0.1971,0.0392,0.9796,-0.1971,0.0757,0.9217,-0.3804,0.1484,0.9217,-0.3584,0.0392,0.9796,-0.1971,0.1484,0.9217,-0.3584,0.0769,0.9796,-0.1857,0.0769,0.9796,-0.1857,0.1484,0.9217,-0.3584,0.2155,0.9217,-0.3225,0.0769,0.9796,-0.1857,0.2155,0.9217,-0.3225,0.1117,0.9796,-0.1671,0.1117,0.9796,-0.1671,0.2155,0.9217,-0.3225,0.2743,0.9217,-0.2743,0.1117,0.9796,-0.1671,0.2743,0.9217,-0.2743,0.1421,0.9796,-0.1421,0.1421,0.9796,-0.1421,0.2743,0.9217,-0.2743,0.3225,0.9217,-0.2155,0.1421,0.9796,-0.1421,0.3225,0.9217,-0.2155,0.1671,0.9796,-0.1117,0.1671,0.9796,-0.1117,0.3225,0.9217,-0.2155,0.3584,0.9217,-0.1484,0.1671,0.9796,-0.1117,0.3584,0.9217,-0.1484,0.1857,0.9796,-0.0769,0.1857,0.9796,-0.0769,0.3584,0.9217,-0.1484,0.3804,0.9217,-0.0757,0.1857,0.9796,-0.0769,0.3804,0.9217,-0.0757,0.1971,0.9796,-0.0392,0.1971,0.9796,-0.0392,0.3804,0.9217,-0.0757,0.3879,0.9217,0.0,0.1971,0.9796,-0.0392,0.3879,0.9217,0.0,0.201,0.9796,0.0,0.201,0.9796,0.0,0.3879,0.9217,0.0,0.3804,0.9217,0.0757,0.201,0.9796,0.0,0.3804,0.9217,0.0757,0.1971,0.9796,0.0392,0.1971,0.9796,0.0392,0.3804,0.9217,0.0757,0.3584,0.9217,0.1484,0.1971,0.9796,0.0392,0.3584,0.9217,0.1484,0.1857,0.9796,0.0769,0.1857,0.9796,0.0769,0.3584,0.9217,0.1484,0.3225,0.9217,0.2155,0.1857,0.9796,0.0769,0.3225,0.9217,0.2155,0.1671,0.9796,0.1117,0.1671,0.9796,0.1117,0.3225,0.9217,0.2155,0.2743,0.9217,0.2743,0.1671,0.9796,0.1117,0.2743,0.9217,0.2743,0.1421,0.9796,0.1421,0.1421,0.9796,0.1421,0.2743,0.9217,0.2743,0.2155,0.9217,0.3225,0.1421,0.9796,0.1421,0.2155,0.9217,0.3225,0.1117,0.9796,0.1671,0.1117,0.9796,0.1671,0.2155,0.9217,0.3225,0.1484,0.9217,0.3584,0.1117,0.9796,0.1671,0.1484,0.9217,0.3584,0.0769,0.9796,0.1857,0.0769,0.9796,0.1857,0.1484,0.9217,0.3584,0.0757,0.9217,0.3804,0.0769,0.9796,0.1857,0.0757,0.9217,0.3804,0.0392,0.9796,0.1971,0.0392,0.9796,0.1971,0.0757,0.9217,0.3804,0.0,0.9217,0.3879,0.0392,0.9796,0.1971,0.0,0.9217,0.3879,0.0,0.9796,0.201,0.0,0.9217,0.3879,0.0,0.8286,0.5598,-0.1092,0.8286,0.549,0.0,0.9217,0.3879,-0.1092,0.8286,0.549,-0.0757,0.9217,0.3804,-0.0757,0.9217,0.3804,-0.1092,0.8286,0.549,-0.2142,0.8286,0.5172,-0.0757,0.9217,0.3804,-0.2142,0.8286,0.5172,-0.1484,0.9217,0.3584,-0.1484,0.9217,0.3584,-0.2142,0.8286,0.5172,-0.311,0.8286,0.4654,-0.1484,0.9217,0.3584,-0.311,0.8286,0.4654,-0.2155,0.9217,0.3225,-0.2155,0.9217,0.3225,-0.311,0.8286,0.4654,-0.3958,0.8286,0.3958,-0.2155,0.9217,0.3225,-0.3958,0.8286,0.3958,-0.2743,0.9217,0.2743,-0.2743,0.9217,0.2743,-0.3958,0.8286,0.3958,-0.4654,0.8286,0.311,-0.2743,0.9217,0.2743,-0.4654,0.8286,0.311,-0.3225,0.9217,0.2155,-0.3225,0.9217,0.2155,-0.4654,0.8286,0.311,-0.5172,0.8286,0.2142,-0.3225,0.9217,0.2155,-0.5172,0.8286,0.2142,-0.3584,0.9217,0.1484,-0.3584,0.9217,0.1484,-0.5172,0.8286,0.2142,-0.549,0.8286,0.1092,-0.3584,0.9217,0.1484,-0.549,0.8286,0.1092,-0.3804,0.9217,0.0757,-0.3804,0.9217,0.0757,-0.549,0.8286,0.1092,-0.5598,0.8286,0.0,-0.3804,0.9217,0.0757,-0.5598,0.8286,0.0,-0.3879,0.9217,0.0,-0.3879,0.9217,0.0,-0.5598,0.8286,0.0,-0.549,0.8286,-0.1092,-0.3879,0.9217,0.0,-0.549,0.8286,-0.1092,-0.3804,0.9217,-0.0757,-0.3804,0.9217,-0.0757,-0.549,0.8286,-0.1092,-0.5172,0.8286,-0.2142,-0.3804,0.9217,-0.0757,-0.5172,0.8286,-0.2142,-0.3584,0.9217,-0.1484,-0.3584,0.9217,-0.1484,-0.5172,0.8286,-0.2142,-0.4654,0.8286,-0.311,-0.3584,0.9217,-0.1484,-0.4654,0.8286,-0.311,-0.3225,0.9217,-0.2155,-0.3225,0.9217,-0.2155,-0.4654,0.8286,-0.311,-0.3958,0.8286,-0.3958,-0.3225,0.9217,-0.2155,-0.3958,0.8286,-0.3958,-0.2743,0.9217,-0.2743,-0.2743,0.9217,-0.2743,-0.3958,0.8286,-0.3958,-0.311,0.8286,-0.4654,-0.2743,0.9217,-0.2743,-0.311,0.8286,-0.4654,-0.2155,0.9217,-0.3225,-0.2155,0.9217,-0.3225,-0.311,0.8286,-0.4654,-0.2142,0.8286,-0.5172,-0.2155,0.9217,-0.3225,-0.2142,0.8286,-0.5172,-0.1484,0.9217,-0.3584,-0.1484,0.9217,-0.3584,-0.2142,0.8286,-0.5172,-0.1092,0.8286,-0.549,-0.1484,0.9217,-0.3584,-0.1092,0.8286,-0.549,-0.0757,0.9217,-0.3804,-0.0757,0.9217,-0.3804,-0.1092,0.8286,-0.549,0.0,0.8286,-0.5598,-0.0757,0.9217,-0.3804,0.0,0.8286,-0.5598,0.0,0.9217,-0.3879,0.0,0.9217,-0.3879,0.0,0.8286,-0.5598,0.1092,0.8286,-0.549,0.0,0.9217,-0.3879,0.1092,0.8286,-0.549,0.0757,0.9217,-0.3804,0.0757,0.9217,-0.3804,0.1092,0.8286,-0.549,0.2142,0.8286,-0.5172,0.0757,0.9217,-0.3804,0.2142,0.8286,-0.5172,0.1484,0.9217,-0.3584,0.1484,0.9217,-0.3584,0.2142,0.8286,-0.5172,0.311,0.8286,-0.4654,0.1484,0.9217,-0.3584,0.311,0.8286,-0.4654,0.2155,0.9217,-0.3225,0.2155,0.9217,-0.3225,0.311,0.8286,-0.4654,0.3958,0.8286,-0.3958,0.2155,0.9217,-0.3225,0.3958,0.8286,-0.3958,0.2743,0.9217,-0.2743,0.2743,0.9217,-0.2743,0.3958,0.8286,-0.3958,0.4654,0.8286,-0.311,0.2743,0.9217,-0.2743,0.4654,0.8286,-0.311,0.3225,0.9217,-0.2155,0.3225,0.9217,-0.2155,0.4654,0.8286,-0.311,0.5172,0.8286,-0.2142,0.3225,0.9217,-0.2155,0.5172,0.8286,-0.2142,0.3584,0.9217,-0.1484,0.3584,0.9217,-0.1484,0.5172,0.8286,-0.2142,0.549,0.8286,-0.1092,0.3584,0.9217,-0.1484,0.549,0.8286,-0.1092,0.3804,0.9217,-0.0757,0.3804,0.9217,-0.0757,0.549,0.8286,-0.1092,0.5598,0.8286,0.0,0.3804,0.9217,-0.0757,0.5598,0.8286,0.0,0.3879,0.9217,0.0,0.3879,0.9217,0.0,0.5598,0.8286,0.0,0.549,0.8286,0.1092,0.3879,0.9217,0.0,0.549,0.8286,0.1092,0.3804,0.9217,0.0757,0.3804,0.9217,0.0757,0.549,0.8286,0.1092,0.5172,0.8286,0.2142,0.3804,0.9217,0.0757,0.5172,0.8286,0.2142,0.3584,0.9217,0.1484,0.3584,0.9217,0.1484,0.5172,0.8286,0.2142,0.4654,0.8286,0.311,0.3584,0.9217,0.1484,0.4654,0.8286,0.311,0.3225,0.9217,0.2155,0.3225,0.9217,0.2155,0.4654,0.8286,0.311,0.3958,0.8286,0.3958,0.3225,0.9217,0.2155,0.3958,0.8286,0.3958,0.2743,0.9217,0.2743,0.2743,0.9217,0.2743,0.3958,0.8286,0.3958,0.311,0.8286,0.4654,0.2743,0.9217,0.2743,0.311,0.8286,0.4654,0.2155,0.9217,0.3225,0.2155,0.9217,0.3225,0.311,0.8286,0.4654,0.2142,0.8286,0.5172,0.2155,0.9217,0.3225,0.2142,0.8286,0.5172,0.1484,0.9217,0.3584,0.1484,0.9217,0.3584,0.2142,0.8286,0.5172,0.1092,0.8286,0.549,0.1484,0.9217,0.3584,0.1092,0.8286,0.549,0.0757,0.9217,0.3804,0.0757,0.9217,0.3804,0.1092,0.8286,0.549,0.0,0.8286,0.5598,0.0757,0.9217,0.3804,0.0,0.8286,0.5598,0.0,0.9217,0.3879,0.0,0.8286,0.5598,0.0,0.7041,0.7101,-0.1385,0.7041,0.6965,0.0,0.8286,0.5598,-0.1385,0.7041,0.6965,-0.1092,0.8286,0.549,-0.1092,0.8286,0.549,-0.1385,0.7041,0.6965,-0.2718,0.7041,0.6561,-0.1092,0.8286,0.549,-0.2718,0.7041,0.6561,-0.2142,0.8286,0.5172,-0.2142,0.8286,0.5172,-0.2718,0.7041,0.6561,-0.3945,0.7041,0.5905,-0.2142,0.8286,0.5172,-0.3945,0.7041,0.5905,-0.311,0.8286,0.4654,-0.311,0.8286,0.4654,-0.3945,0.7041,0.5905,-0.5021,0.7041,0.5021,-0.311,0.8286,0.4654,-0.5021,0.7041,0.5021,-0.3958,0.8286,0.3958,-0.3958,0.8286,0.3958,-0.5021,0.7041,0.5021,-0.5905,0.7041,0.3945,-0.3958,0.8286,0.3958,-0.5905,0.7041,0.3945,-0.4654,0.8286,0.311,-0.4654,0.8286,0.311,-0.5905,0.7041,0.3945,-0.6561,0.7041,0.2718,-0.4654,0.8286,0.311,-0.6561,0.7041,0.2718,-0.5172,0.8286,0.2142,-0.5172,0.8286,0.2142,-0.6561,0.7041,0.2718,-0.6965,0.7041,0.1385,-0.5172,0.8286,0.2142,-0.6965,0.7041,0.1385,-0.549,0.8286,0.1092,-0.549,0.8286,0.1092,-0.6965,0.7041,0.1385,-0.7101,0.7041,0.0,-0.549,0.8286,0.1092,-0.7101,0.7041,0.0,-0.5598,0.8286,0.0,-0.5598,0.8286,0.0,-0.7101,0.7041,0.0,-0.6965,0.7041,-0.1385,-0.5598,0.8286,0.0,-0.6965,0.7041,-0.1385,-0.549,0.8286,-0.1092,-0.549,0.8286,-0.1092,-0.6965,0.7041,-0.1385,-0.6561,0.7041,-0.2718,-0.549,0.8286,-0.1092,-0.6561,0.7041,-0.2718,-0.5172,0.8286,-0.2142,-0.5172,0.8286,-0.2142,-0.6561,0.7041,-0.2718,-0.5905,0.7041,-0.3945,-0.5172,0.8286,-0.2142,-0.5905,0.7041,-0.3945,-0.4654,0.8286,-0.311,-0.4654,0.8286,-0.311,-0.5905,0.7041,-0.3945,-0.5021,0.7041,-0.5021,-0.4654,0.8286,-0.311,-0.5021,0.7041,-0.5021,-0.3958,0.8286,-0.3958,-0.3958,0.8286,-0.3958,-0.5021,0.7041,-0.5021,-0.3945,0.7041,-0.5905,-0.3958,0.8286,-0.3958,-0.3945,0.7041,-0.5905,-0.311,0.8286,-0.4654,-0.311,0.8286,-0.4654,-0.3945,0.7041,-0.5905,-0.2718,0.7041,-0.6561,-0.311,0.8286,-0.4654,-0.2718,0.7041,-0.6561,-0.2142,0.8286,-0.5172,-0.2142,0.8286,-0.5172,-0.2718,0.7041,-0.6561,-0.1385,0.7041,-0.6965,-0.2142,0.8286,-0.5172,-0.1385,0.7041,-0.6965,-0.1092,0.8286,-0.549,-0.1092,0.8286,-0.549,-0.1385,0.7041,-0.6965,0.0,0.7041,-0.7101,-0.1092,0.8286,-0.549,0.0,0.7041,-0.7101,0.0,0.8286,-0.5598,0.0,0.8286,-0.5598,0.0,0.7041,-0.7101,0.1385,0.7041,-0.6965,0.0,0.8286,-0.5598,0.1385,0.7041,-0.6965,0.1092,0.8286,-0.549,0.1092,0.8286,-0.549,0.1385,0.7041,-0.6965,0.2718,0.7041,-0.6561,0.1092,0.8286,-0.549,0.2718,0.7041,-0.6561,0.2142,0.8286,-0.5172,0.2142,0.8286,-0.5172,0.2718,0.7041,-0.6561,0.3945,0.7041,-0.5905,0.2142,0.8286,-0.5172,0.3945,0.7041,-0.5905,0.311,0.8286,-0.4654,0.311,0.8286,-0.4654,0.3945,0.7041,-0.5905,0.5021,0.7041,-0.5021,0.311,0.8286,-0.4654,0.5021,0.7041,-0.5021,0.3958,0.8286,-0.3958,0.3958,0.8286,-0.3958,0.5021,0.7041,-0.5021,0.5905,0.7041,-0.3945,0.3958,0.8286,-0.3958,0.5905,0.7041,-0.3945,0.4654,0.8286,-0.311,0.4654,0.8286,-0.311,0.5905,0.7041,-0.3945,0.6561,0.7041,-0.2718,0.4654,0.8286,-0.311,0.6561,0.7041,-0.2718,0.5172,0.8286,-0.2142,0.5172,0.8286,-0.2142,0.6561,0.7041,-0.2718,0.6965,0.7041,-0.1385,0.5172,0.8286,-0.2142,0.6965,0.7041,-0.1385,0.549,0.8286,-0.1092,0.549,0.8286,-0.1092,0.6965,0.7041,-0.1385,0.7101,0.7041,0.0,0.549,0.8286,-0.1092,0.7101,0.7041,0.0,0.5598,0.8286,0.0,0.5598,0.8286,0.0,0.7101,0.7041,0.0,0.6965,0.7041,0.1385,0.5598,0.8286,0.0,0.6965,0.7041,0.1385,0.549,0.8286,0.1092,0.549,0.8286,0.1092,0.6965,0.7041,0.1385,0.6561,0.7041,0.2718,0.549,0.8286,0.1092,0.6561,0.7041,0.2718,0.5172,0.8286,0.2142,0.5172,0.8286,0.2142,0.6561,0.7041,0.2718,0.5905,0.7041,0.3945,0.5172,0.8286,0.2142,0.5905,0.7041,0.3945,0.4654,0.8286,0.311,0.4654,0.8286,0.311,0.5905,0.7041,0.3945,0.5021,0.7041,0.5021,0.4654,0.8286,0.311,0.5021,0.7041,0.5021,0.3958,0.8286,0.3958,0.3958,0.8286,0.3958,0.5021,0.7041,0.5021,0.3945,0.7041,0.5905,0.3958,0.8286,0.3958,0.3945,0.7041,0.5905,0.311,0.8286,0.4654,0.311,0.8286,0.4654,0.3945,0.7041,0.5905,0.2718,0.7041,0.6561,0.311,0.8286,0.4654,0.2718,0.7041,0.6561,0.2142,0.8286,0.5172,0.2142,0.8286,0.5172,0.2718,0.7041,0.6561,0.1385,0.7041,0.6965,0.2142,0.8286,0.5172,0.1385,0.7041,0.6965,0.1092,0.8286,0.549,0.1092,0.8286,0.549,0.1385,0.7041,0.6965,0.0,0.7041,0.7101,0.1092,0.8286,0.549,0.0,0.7041,0.7101,0.0,0.8286,0.5598,0.0,0.7041,0.7101,0.0,0.5528,0.8333,-0.1626,0.5528,0.8173,0.0,0.7041,0.7101,-0.1626,0.5528,0.8173,-0.1385,0.7041,0.6965,-0.1385,0.7041,0.6965,-0.1626,0.5528,0.8173,-0.3189,0.5528,0.7699,-0.1385,0.7041,0.6965,-0.3189,0.5528,0.7699,-0.2718,0.7041,0.6561,-0.2718,0.7041,0.6561,-0.3189,0.5528,0.7699,-0.463,0.5528,0.6929,-0.2718,0.7041,0.6561,-0.463,0.5528,0.6929,-0.3945,0.7041,0.5905,-0.3945,0.7041,0.5905,-0.463,0.5528,0.6929,-0.5893,0.5528,0.5893,-0.3945,0.7041,0.5905,-0.5893,0.5528,0.5893,-0.5021,0.7041,0.5021,-0.5021,0.7041,0.5021,-0.5893,0.5528,0.5893,-0.6929,0.5528,0.463,-0.5021,0.7041,0.5021,-0.6929,0.5528,0.463,-0.5905,0.7041,0.3945,-0.5905,0.7041,0.3945,-0.6929,0.5528,0.463,-0.7699,0.5528,0.3189,-0.5905,0.7041,0.3945,-0.7699,0.5528,0.3189,-0.6561,0.7041,0.2718,-0.6561,0.7041,0.2718,-0.7699,0.5528,0.3189,-0.8173,0.5528,0.1626,-0.6561,0.7041,0.2718,-0.8173,0.5528,0.1626,-0.6965,0.7041,0.1385,-0.6965,0.7041,0.1385,-0.8173,0.5528,0.1626,-0.8333,0.5528,0.0,-0.6965,0.7041,0.1385,-0.8333,0.5528,0.0,-0.7101,0.7041,0.0,-0.7101,0.7041,0.0,-0.8333,0.5528,0.0,-0.8173,0.5528,-0.1626,-0.7101,0.7041,0.0,-0.8173,0.5528,-0.1626,-0.6965,0.7041,-0.1385,-0.6965,0.7041,-0.1385,-0.8173,0.5528,-0.1626,-0.7699,0.5528,-0.3189,-0.6965,0.7041,-0.1385,-0.7699,0.5528,-0.3189,-0.6561,0.7041,-0.2718,-0.6561,0.7041,-0.2718,-0.7699,0.5528,-0.3189,-0.6929,0.5528,-0.463,-0.6561,0.7041,-0.2718,-0.6929,0.5528,-0.463,-0.5905,0.7041,-0.3945,-0.5905,0.7041,-0.3945,-0.6929,0.5528,-0.463,-0.5893,0.5528,-0.5893,-0.5905,0.7041,-0.3945,-0.5893,0.5528,-0.5893,-0.5021,0.7041,-0.5021,-0.5021,0.7041,-0.5021,-0.5893,0.5528,-0.5893,-0.463,0.5528,-0.6929,-0.5021,0.7041,-0.5021,-0.463,0.5528,-0.6929,-0.3945,0.7041,-0.5905,-0.3945,0.7041,-0.5905,-0.463,0.5528,-0.6929,-0.3189,0.5528,-0.7699,-0.3945,0.7041,-0.5905,-0.3189,0.5528,-0.7699,-0.2718,0.7041,-0.6561,-0.2718,0.7041,-0.6561,-0.3189,0.5528,-0.7699,-0.1626,0.5528,-0.8173,-0.2718,0.7041,-0.6561,-0.1626,0.5528,-0.8173,-0.1385,0.7041,-0.6965,-0.1385,0.7041,-0.6965,-0.1626,0.5528,-0.8173,0.0,0.5528,-0.8333,-0.1385,0.7041,-0.6965,0.0,0.5528,-0.8333,0.0,0.7041,-0.7101,0.0,0.7041,-0.7101,0.0,0.5528,-0.8333,0.1626,0.5528,-0.8173,0.0,0.7041,-0.7101,0.1626,0.5528,-0.8173,0.1385,0.7041,-0.6965,0.1385,0.7041,-0.6965,0.1626,0.5528,-0.8173,0.3189,0.5528,-0.7699,0.1385,0.7041,-0.6965,0.3189,0.5528,-0.7699,0.2718,0.7041,-0.6561,0.2718,0.7041,-0.6561,0.3189,0.5528,-0.7699,0.463,0.5528,-0.6929,0.2718,0.7041,-0.6561,0.463,0.5528,-0.6929,0.3945,0.7041,-0.5905,0.3945,0.7041,-0.5905,0.463,0.5528,-0.6929,0.5893,0.5528,-0.5893,0.3945,0.7041,-0.5905,0.5893,0.5528,-0.5893,0.5021,0.7041,-0.5021,0.5021,0.7041,-0.5021,0.5893,0.5528,-0.5893,0.6929,0.5528,-0.463,0.5021,0.7041,-0.5021,0.6929,0.5528,-0.463,0.5905,0.7041,-0.3945,0.5905,0.7041,-0.3945,0.6929,0.5528,-0.463,0.7699,0.5528,-0.3189,0.5905,0.7041,-0.3945,0.7699,0.5528,-0.3189,0.6561,0.7041,-0.2718,0.6561,0.7041,-0.2718,0.7699,0.5528,-0.3189,0.8173,0.5528,-0.1626,0.6561,0.7041,-0.2718,0.8173,0.5528,-0.1626,0.6965,0.7041,-0.1385,0.6965,0.7041,-0.1385,0.8173,0.5528,-0.1626,0.8333,0.5528,0.0,0.6965,0.7041,-0.1385,0.8333,0.5528,0.0,0.7101,0.7041,0.0,0.7101,0.7041,0.0,0.8333,0.5528,0.0,0.8173,0.5528,0.1626,0.7101,0.7041,0.0,0.8173,0.5528,0.1626,0.6965,0.7041,0.1385,0.6965,0.7041,0.1385,0.8173,0.5528,0.1626,0.7699,0.5528,0.3189,0.6965,0.7041,0.1385,0.7699,0.5528,0.3189,0.6561,0.7041,0.2718,0.6561,0.7041,0.2718,0.7699,0.5528,0.3189,0.6929,0.5528,0.463,0.6561,0.7041,0.2718,0.6929,0.5528,0.463,0.5905,0.7041,0.3945,0.5905,0.7041,0.3945,0.6929,0.5528,0.463,0.5893,0.5528,0.5893,0.5905,0.7041,0.3945,0.5893,0.5528,0.5893,0.5021,0.7041,0.5021,0.5021,0.7041,0.5021,0.5893,0.5528,0.5893,0.463,0.5528,0.6929,0.5021,0.7041,0.5021,0.463,0.5528,0.6929,0.3945,0.7041,0.5905,0.3945,0.7041,0.5905,0.463,0.5528,0.6929,0.3189,0.5528,0.7699,0.3945,0.7041,0.5905,0.3189,0.5528,0.7699,0.2718,0.7041,0.6561,0.2718,0.7041,0.6561,0.3189,0.5528,0.7699,0.1626,0.5528,0.8173,0.2718,0.7041,0.6561,0.1626,0.5528,0.8173,0.1385,0.7041,0.6965,0.1385,0.7041,0.6965,0.1626,0.5528,0.8173,0.0,0.5528,0.8333,0.1385,0.7041,0.6965,0.0,0.5528,0.8333,0.0,0.7041,0.7101,0.0,0.5528,0.8333,0.0,0.3805,0.9248,-0.1804,0.3805,0.907,0.0,0.5528,0.8333,-0.1804,0.3805,0.907,-0.1626,0.5528,0.8173,-0.1626,0.5528,0.8173,-0.1804,0.3805,0.907,-0.3539,0.3805,0.8544,-0.1626,0.5528,0.8173,-0.3539,0.3805,0.8544,-0.3189,0.5528,0.7699,-0.3189,0.5528,0.7699,-0.3539,0.3805,0.8544,-0.5138,0.3805,0.7689,-0.3189,0.5528,0.7699,-0.5138,0.3805,0.7689,-0.463,0.5528,0.6929,-0.463,0.5528,0.6929,-0.5138,0.3805,0.7689,-0.6539,0.3805,0.6539,-0.463,0.5528,0.6929,-0.6539,0.3805,0.6539,-0.5893,0.5528,0.5893,-0.5893,0.5528,0.5893,-0.6539,0.3805,0.6539,-0.7689,0.3805,0.5138,-0.5893,0.5528,0.5893,-0.7689,0.3805,0.5138,-0.6929,0.5528,0.463,-0.6929,0.5528,0.463,-0.7689,0.3805,0.5138,-0.8544,0.3805,0.3539,-0.6929,0.5528,0.463,-0.8544,0.3805,0.3539,-0.7699,0.5528,0.3189,-0.7699,0.5528,0.3189,-0.8544,0.3805,0.3539,-0.907,0.3805,0.1804,-0.7699,0.5528,0.3189,-0.907,0.3805,0.1804,-0.8173,0.5528,0.1626,-0.8173,0.5528,0.1626,-0.907,0.3805,0.1804,-0.9248,0.3805,0.0,-0.8173,0.5528,0.1626,-0.9248,0.3805,0.0,-0.8333,0.5528,0.0,-0.8333,0.5528,0.0,-0.9248,0.3805,0.0,-0.907,0.3805,-0.1804,-0.8333,0.5528,0.0,-0.907,0.3805,-0.1804,-0.8173,0.5528,-0.1626,-0.8173,0.5528,-0.1626,-0.907,0.3805,-0.1804,-0.8544,0.3805,-0.3539,-0.8173,0.5528,-0.1626,-0.8544,0.3805,-0.3539,-0.7699,0.5528,-0.3189,-0.7699,0.5528,-0.3189,-0.8544,0.3805,-0.3539,-0.7689,0.3805,-0.5138,-0.7699,0.5528,-0.3189,-0.7689,0.3805,-0.5138,-0.6929,0.5528,-0.463,-0.6929,0.5528,-0.463,-0.7689,0.3805,-0.5138,-0.6539,0.3805,-0.6539,-0.6929,0.5528,-0.463,-0.6539,0.3805,-0.6539,-0.5893,0.5528,-0.5893,-0.5893,0.5528,-0.5893,-0.6539,0.3805,-0.6539,-0.5138,0.3805,-0.7689,-0.5893,0.5528,-0.5893,-0.5138,0.3805,-0.7689,-0.463,0.5528,-0.6929,-0.463,0.5528,-0.6929,-0.5138,0.3805,-0.7689,-0.3539,0.3805,-0.8544,-0.463,0.5528,-0.6929,-0.3539,0.3805,-0.8544,-0.3189,0.5528,-0.7699,-0.3189,0.5528,-0.7699,-0.3539,0.3805,-0.8544,-0.1804,0.3805,-0.907,-0.3189,0.5528,-0.7699,-0.1804,0.3805,-0.907,-0.1626,0.5528,-0.8173,-0.1626,0.5528,-0.8173,-0.1804,0.3805,-0.907,0.0,0.3805,-0.9248,-0.1626,0.5528,-0.8173,0.0,0.3805,-0.9248,0.0,0.5528,-0.8333,0.0,0.5528,-0.8333,0.0,0.3805,-0.9248,0.1804,0.3805,-0.907,0.0,0.5528,-0.8333,0.1804,0.3805,-0.907,0.1626,0.5528,-0.8173,0.1626,0.5528,-0.8173,0.1804,0.3805,-0.907,0.3539,0.3805,-0.8544,0.1626,0.5528,-0.8173,0.3539,0.3805,-0.8544,0.3189,0.5528,-0.7699,0.3189,0.5528,-0.7699,0.3539,0.3805,-0.8544,0.5138,0.3805,-0.7689,0.3189,0.5528,-0.7699,0.5138,0.3805,-0.7689,0.463,0.5528,-0.6929,0.463,0.5528,-0.6929,0.5138,0.3805,-0.7689,0.6539,0.3805,-0.6539,0.463,0.5528,-0.6929,0.6539,0.3805,-0.6539,0.5893,0.5528,-0.5893,0.5893,0.5528,-0.5893,0.6539,0.3805,-0.6539,0.7689,0.3805,-0.5138,0.5893,0.5528,-0.5893,0.7689,0.3805,-0.5138,0.6929,0.5528,-0.463,0.6929,0.5528,-0.463,0.7689,0.3805,-0.5138,0.8544,0.3805,-0.3539,0.6929,0.5528,-0.463,0.8544,0.3805,-0.3539,0.7699,0.5528,-0.3189,0.7699,0.5528,-0.3189,0.8544,0.3805,-0.3539,0.907,0.3805,-0.1804,0.7699,0.5528,-0.3189,0.907,0.3805,-0.1804,0.8173,0.5528,-0.1626,0.8173,0.5528,-0.1626,0.907,0.3805,-0.1804,0.9248,0.3805,0.0,0.8173,0.5528,-0.1626,0.9248,0.3805,0.0,0.8333,0.5528,0.0,0.8333,0.5528,0.0,0.9248,0.3805,0.0,0.907,0.3805,0.1804,0.8333,0.5528,0.0,0.907,0.3805,0.1804,0.8173,0.5528,0.1626,0.8173,0.5528,0.1626,0.907,0.3805,0.1804,0.8544,0.3805,0.3539,0.8173,0.5528,0.1626,0.8544,0.3805,0.3539,0.7699,0.5528,0.3189,0.7699,0.5528,0.3189,0.8544,0.3805,0.3539,0.7689,0.3805,0.5138,0.7699,0.5528,0.3189,0.7689,0.3805,0.5138,0.6929,0.5528,0.463,0.6929,0.5528,0.463,0.7689,0.3805,0.5138,0.6539,0.3805,0.6539,0.6929,0.5528,0.463,0.6539,0.3805,0.6539,0.5893,0.5528,0.5893,0.5893,0.5528,0.5893,0.6539,0.3805,0.6539,0.5138,0.3805,0.7689,0.5893,0.5528,0.5893,0.5138,0.3805,0.7689,0.463,0.5528,0.6929,0.463,0.5528,0.6929,0.5138,0.3805,0.7689,0.3539,0.3805,0.8544,0.463,0.5528,0.6929,0.3539,0.3805,0.8544,0.3189,0.5528,0.7699,0.3189,0.5528,0.7699,0.3539,0.3805,0.8544,0.1804,0.3805,0.907,0.3189,0.5528,0.7699,0.1804,0.3805,0.907,0.1626,0.5528,0.8173,0.1626,0.5528,0.8173,0.1804,0.3805,0.907,0.0,0.3805,0.9248,0.1626,0.5528,0.8173,0.0,0.3805,0.9248,0.0,0.5528,0.8333,0.0,0.3805,0.9248,0.0,0.1939,0.981,-0.1914,0.1939,0.9622,0.0,0.3805,0.9248,-0.1914,0.1939,0.9622,-0.1804,0.3805,0.907,-0.1804,0.3805,0.907,-0.1914,0.1939,0.9622,-0.3754,0.1939,0.9063,-0.1804,0.3805,0.907,-0.3754,0.1939,0.9063,-0.3539,0.3805,0.8544,-0.3539,0.3805,0.8544,-0.3754,0.1939,0.9063,-0.545,0.1939,0.8157,-0.3539,0.3805,0.8544,-0.545,0.1939,0.8157,-0.5138,0.3805,0.7689,-0.5138,0.3805,0.7689,-0.545,0.1939,0.8157,-0.6937,0.1939,0.6937,-0.5138,0.3805,0.7689,-0.6937,0.1939,0.6937,-0.6539,0.3805,0.6539,-0.6539,0.3805,0.6539,-0.6937,0.1939,0.6937,-0.8157,0.1939,0.545,-0.6539,0.3805,0.6539,-0.8157,0.1939,0.545,-0.7689,0.3805,0.5138,-0.7689,0.3805,0.5138,-0.8157,0.1939,0.545,-0.9063,0.1939,0.3754,-0.7689,0.3805,0.5138,-0.9063,0.1939,0.3754,-0.8544,0.3805,0.3539,-0.8544,0.3805,0.3539,-0.9063,0.1939,0.3754,-0.9622,0.1939,0.1914,-0.8544,0.3805,0.3539,-0.9622,0.1939,0.1914,-0.907,0.3805,0.1804,-0.907,0.3805,0.1804,-0.9622,0.1939,0.1914,-0.981,0.1939,0.0,-0.907,0.3805,0.1804,-0.981,0.1939,0.0,-0.9248,0.3805,0.0,-0.9248,0.3805,0.0,-0.981,0.1939,0.0,-0.9622,0.1939,-0.1914,-0.9248,0.3805,0.0,-0.9622,0.1939,-0.1914,-0.907,0.3805,-0.1804,-0.907,0.3805,-0.1804,-0.9622,0.1939,-0.1914,-0.9063,0.1939,-0.3754,-0.907,0.3805,-0.1804,-0.9063,0.1939,-0.3754,-0.8544,0.3805,-0.3539,-0.8544,0.3805,-0.3539,-0.9063,0.1939,-0.3754,-0.8157,0.1939,-0.545,-0.8544,0.3805,-0.3539,-0.8157,0.1939,-0.545,-0.7689,0.3805,-0.5138,-0.7689,0.3805,-0.5138,-0.8157,0.1939,-0.545,-0.6937,0.1939,-0.6937,-0.7689,0.3805,-0.5138,-0.6937,0.1939,-0.6937,-0.6539,0.3805,-0.6539,-0.6539,0.3805,-0.6539,-0.6937,0.1939,-0.6937,-0.545,0.1939,-0.8157,-0.6539,0.3805,-0.6539,-0.545,0.1939,-0.8157,-0.5138,0.3805,-0.7689,-0.5138,0.3805,-0.7689,-0.545,0.1939,-0.8157,-0.3754,0.1939,-0.9063,-0.5138,0.3805,-0.7689,-0.3754,0.1939,-0.9063,-0.3539,0.3805,-0.8544,-0.3539,0.3805,-0.8544,-0.3754,0.1939,-0.9063,-0.1914,0.1939,-0.9622,-0.3539,0.3805,-0.8544,-0.1914,0.1939,-0.9622,-0.1804,0.3805,-0.907,-0.1804,0.3805,-0.907,-0.1914,0.1939,-0.9622,0.0,0.1939,-0.981,-0.1804,0.3805,-0.907,0.0,0.1939,-0.981,0.0,0.3805,-0.9248,0.0,0.3805,-0.9248,0.0,0.1939,-0.981,0.1914,0.1939,-0.9622,0.0,0.3805,-0.9248,0.1914,0.1939,-0.9622,0.1804,0.3805,-0.907,0.1804,0.3805,-0.907,0.1914,0.1939,-0.9622,0.3754,0.1939,-0.9063,0.1804,0.3805,-0.907,0.3754,0.1939,-0.9063,0.3539,0.3805,-0.8544,0.3539,0.3805,-0.8544,0.3754,0.1939,-0.9063,0.545,0.1939,-0.8157,0.3539,0.3805,-0.8544,0.545,0.1939,-0.8157,0.5138,0.3805,-0.7689,0.5138,0.3805,-0.7689,0.545,0.1939,-0.8157,0.6937,0.1939,-0.6937,0.5138,0.3805,-0.7689,0.6937,0.1939,-0.6937,0.6539,0.3805,-0.6539,0.6539,0.3805,-0.6539,0.6937,0.1939,-0.6937,0.8157,0.1939,-0.545,0.6539,0.3805,-0.6539,0.8157,0.1939,-0.545,0.7689,0.3805,-0.5138,0.7689,0.3805,-0.5138,0.8157,0.1939,-0.545,0.9063,0.1939,-0.3754,0.7689,0.3805,-0.5138,0.9063,0.1939,-0.3754,0.8544,0.3805,-0.3539,0.8544,0.3805,-0.3539,0.9063,0.1939,-0.3754,0.9622,0.1939,-0.1914,0.8544,0.3805,-0.3539,0.9622,0.1939,-0.1914,0.907,0.3805,-0.1804,0.907,0.3805,-0.1804,0.9622,0.1939,-0.1914,0.981,0.1939,0.0,0.907,0.3805,-0.1804,0.981,0.1939,0.0,0.9248,0.3805,0.0,0.9248,0.3805,0.0,0.981,0.1939,0.0,0.9622,0.1939,0.1914,0.9248,0.3805,0.0,0.9622,0.1939,0.1914,0.907,0.3805,0.1804,0.907,0.3805,0.1804,0.9622,0.1939,0.1914,0.9063,0.1939,0.3754,0.907,0.3805,0.1804,0.9063,0.1939,0.3754,0.8544,0.3805,0.3539,0.8544,0.3805,0.3539,0.9063,0.1939,0.3754,0.8157,0.1939,0.545,0.8544,0.3805,0.3539,0.8157,0.1939,0.545,0.7689,0.3805,0.5138,0.7689,0.3805,0.5138,0.8157,0.1939,0.545,0.6937,0.1939,0.6937,0.7689,0.3805,0.5138,0.6937,0.1939,0.6937,0.6539,0.3805,0.6539,0.6539,0.3805,0.6539,0.6937,0.1939,0.6937,0.545,0.1939,0.8157,0.6539,0.3805,0.6539,0.545,0.1939,0.8157,0.5138,0.3805,0.7689,0.5138,0.3805,0.7689,0.545,0.1939,0.8157,0.3754,0.1939,0.9063,0.5138,0.3805,0.7689,0.3754,0.1939,0.9063,0.3539,0.3805,0.8544,0.3539,0.3805,0.8544,0.3754,0.1939,0.9063,0.1914,0.1939,0.9622,0.3539,0.3805,0.8544,0.1914,0.1939,0.9622,0.1804,0.3805,0.907,0.1804,0.3805,0.907,0.1914,0.1939,0.9622,0.0,0.1939,0.981,0.1804,0.3805,0.907,0.0,0.1939,0.981,0.0,0.3805,0.9248,0.0,0.1939,0.981,0.0,0.0,1.0,-0.1951,0.0,0.9808,0.0,0.1939,0.981,-0.1951,0.0,0.9808,-0.1914,0.1939,0.9622,-0.1914,0.1939,0.9622,-0.1951,0.0,0.9808,-0.3827,0.0,0.9239,-0.1914,0.1939,0.9622,-0.3827,0.0,0.9239,-0.3754,0.1939,0.9063,-0.3754,0.1939,0.9063,-0.3827,0.0,0.9239,-0.5556,0.0,0.8315,-0.3754,0.1939,0.9063,-0.5556,0.0,0.8315,-0.545,0.1939,0.8157,-0.545,0.1939,0.8157,-0.5556,0.0,0.8315,-0.7071,0.0,0.7071,-0.545,0.1939,0.8157,-0.7071,0.0,0.7071,-0.6937,0.1939,0.6937,-0.6937,0.1939,0.6937,-0.7071,0.0,0.7071,-0.8315,0.0,0.5556,-0.6937,0.1939,0.6937,-0.8315,0.0,0.5556,-0.8157,0.1939,0.545,-0.8157,0.1939,0.545,-0.8315,0.0,0.5556,-0.9239,0.0,0.3827,-0.8157,0.1939,0.545,-0.9239,0.0,0.3827,-0.9063,0.1939,0.3754,-0.9063,0.1939,0.3754,-0.9239,0.0,0.3827,-0.9808,0.0,0.1951,-0.9063,0.1939,0.3754,-0.9808,0.0,0.1951,-0.9622,0.1939,0.1914,-0.9622,0.1939,0.1914,-0.9808,0.0,0.1951,-1.0,0.0,0.0,-0.9622,0.1939,0.1914,-1.0,0.0,0.0,-0.981,0.1939,0.0,-0.981,0.1939,0.0,-1.0,0.0,0.0,-0.9808,0.0,-0.1951,-0.981,0.1939,0.0,-0.9808,0.0,-0.1951,-0.9622,0.1939,-0.1914,-0.9622,0.1939,-0.1914,-0.9808,0.0,-0.1951,-0.9239,0.0,-0.3827,-0.9622,0.1939,-0.1914,-0.9239,0.0,-0.3827,-0.9063,0.1939,-0.3754,-0.9063,0.1939,-0.3754,-0.9239,0.0,-0.3827,-0.8315,0.0,-0.5556,-0.9063,0.1939,-0.3754,-0.8315,0.0,-0.5556,-0.8157,0.1939,-0.545,-0.8157,0.1939,-0.545,-0.8315,0.0,-0.5556,-0.7071,0.0,-0.7071,-0.8157,0.1939,-0.545,-0.7071,0.0,-0.7071,-0.6937,0.1939,-0.6937,-0.6937,0.1939,-0.6937,-0.7071,0.0,-0.7071,-0.5556,0.0,-0.8315,-0.6937,0.1939,-0.6937,-0.5556,0.0,-0.8315,-0.545,0.1939,-0.8157,-0.545,0.1939,-0.8157,-0.5556,0.0,-0.8315,-0.3827,0.0,-0.9239,-0.545,0.1939,-0.8157,-0.3827,0.0,-0.9239,-0.3754,0.1939,-0.9063,-0.3754,0.1939,-0.9063,-0.3827,0.0,-0.9239,-0.1951,0.0,-0.9808,-0.3754,0.1939,-0.9063,-0.1951,0.0,-0.9808,-0.1914,0.1939,-0.9622,-0.1914,0.1939,-0.9622,-0.1951,0.0,-0.9808,0.0,0.0,-1.0,-0.1914,0.1939,-0.9622,0.0,0.0,-1.0,0.0,0.1939,-0.981,0.0,0.1939,-0.981,0.0,0.0,-1.0,0.1951,0.0,-0.9808,0.0,0.1939,-0.981,0.1951,0.0,-0.9808,0.1914,0.1939,-0.9622,0.1914,0.1939,-0.9622,0.1951,0.0,-0.9808,0.3827,0.0,-0.9239,0.1914,0.1939,-0.9622,0.3827,0.0,-0.9239,0.3754,0.1939,-0.9063,0.3754,0.1939,-0.9063,0.3827,0.0,-0.9239,0.5556,0.0,-0.8315,0.3754,0.1939,-0.9063,0.5556,0.0,-0.8315,0.545,0.1939,-0.8157,0.545,0.1939,-0.8157,0.5556,0.0,-0.8315,0.7071,0.0,-0.7071,0.545,0.1939,-0.8157,0.7071,0.0,-0.7071,0.6937,0.1939,-0.6937,0.6937,0.1939,-0.6937,0.7071,0.0,-0.7071,0.8315,0.0,-0.5556,0.6937,0.1939,-0.6937,0.8315,0.0,-0.5556,0.8157,0.1939,-0.545,0.8157,0.1939,-0.545,0.8315,0.0,-0.5556,0.9239,0.0,-0.3827,0.8157,0.1939,-0.545,0.9239,0.0,-0.3827,0.9063,0.1939,-0.3754,0.9063,0.1939,-0.3754,0.9239,0.0,-0.3827,0.9808,0.0,-0.1951,0.9063,0.1939,-0.3754,0.9808,0.0,-0.1951,0.9622,0.1939,-0.1914,0.9622,0.1939,-0.1914,0.9808,0.0,-0.1951,1.0,0.0,0.0,0.9622,0.1939,-0.1914,1.0,0.0,0.0,0.981,0.1939,0.0,0.981,0.1939,0.0,1.0,0.0,0.0,0.9808,0.0,0.1951,0.981,0.1939,0.0,0.9808,0.0,0.1951,0.9622,0.1939,0.1914,0.9622,0.1939,0.1914,0.9808,0.0,0.1951,0.9239,0.0,0.3827,0.9622,0.1939,0.1914,0.9239,0.0,0.3827,0.9063,0.1939,0.3754,0.9063,0.1939,0.3754,0.9239,0.0,0.3827,0.8315,0.0,0.5556,0.9063,0.1939,0.3754,0.8315,0.0,0.5556,0.8157,0.1939,0.545,0.8157,0.1939,0.545,0.8315,0.0,0.5556,0.7071,0.0,0.7071,0.8157,0.1939,0.545,0.7071,0.0,0.7071,0.6937,0.1939,0.6937,0.6937,0.1939,0.6937,0.7071,0.0,0.7071,0.5556,0.0,0.8315,0.6937,0.1939,0.6937,0.5556,0.0,0.8315,0.545,0.1939,0.8157,0.545,0.1939,0.8157,0.5556,0.0,0.8315,0.3827,0.0,0.9239,0.545,0.1939,0.8157,0.3827,0.0,0.9239,0.3754,0.1939,0.9063,0.3754,0.1939,0.9063,0.3827,0.0,0.9239,0.1951,0.0,0.9808,0.3754,0.1939,0.9063,0.1951,0.0,0.9808,0.1914,0.1939,0.9622,0.1914,0.1939,0.9622,0.1951,0.0,0.9808,0.0,0.0,1.0,0.1914,0.1939,0.9622,0.0,0.0,1.0,0.0,0.1939,0.981,0.0,0.0,1.0,0.0,-0.1939,0.981,-0.1914,-0.1939,0.9622,0.0,0.0,1.0,-0.1914,-0.1939,0.9622,-0.1951,0.0,0.9808,-0.1951,0.0,0.9808,-0.1914,-0.1939,0.9622,-0.3754,-0.1939,0.9063,-0.1951,0.0,0.9808,-0.3754,-0.1939,0.9063,-0.3827,0.0,0.9239,-0.3827,0.0,0.9239,-0.3754,-0.1939,0.9063,-0.545,-0.1939,0.8157,-0.3827,0.0,0.9239,-0.545,-0.1939,0.8157,-0.5556,0.0,0.8315,-0.5556,0.0,0.8315,-0.545,-0.1939,0.8157,-0.6937,-0.1939,0.6937,-0.5556,0.0,0.8315,-0.6937,-0.1939,0.6937,-0.7071,0.0,0.7071,-0.7071,0.0,0.7071,-0.6937,-0.1939,0.6937,-0.8157,-0.1939,0.545,-0.7071,0.0,0.7071,-0.8157,-0.1939,0.545,-0.8315,0.0,0.5556,-0.8315,0.0,0.5556,-0.8157,-0.1939,0.545,-0.9063,-0.1939,0.3754,-0.8315,0.0,0.5556,-0.9063,-0.1939,0.3754,-0.9239,0.0,0.3827,-0.9239,0.0,0.3827,-0.9063,-0.1939,0.3754,-0.9622,-0.1939,0.1914,-0.9239,0.0,0.3827,-0.9622,-0.1939,0.1914,-0.9808,0.0,0.1951,-0.9808,0.0,0.1951,-0.9622,-0.1939,0.1914,-0.981,-0.1939,0.0,-0.9808,0.0,0.1951,-0.981,-0.1939,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-0.981,-0.1939,0.0,-0.9622,-0.1939,-0.1914,-1.0,0.0,0.0,-0.9622,-0.1939,-0.1914,-0.9808,0.0,-0.1951,-0.9808,0.0,-0.1951,-0.9622,-0.1939,-0.1914,-0.9063,-0.1939,-0.3754,-0.9808,0.0,-0.1951,-0.9063,-0.1939,-0.3754,-0.9239,0.0,-0.3827,-0.9239,0.0,-0.3827,-0.9063,-0.1939,-0.3754,-0.8157,-0.1939,-0.545,-0.9239,0.0,-0.3827,-0.8157,-0.1939,-0.545,-0.8315,0.0,-0.5556,-0.8315,0.0,-0.5556,-0.8157,-0.1939,-0.545,-0.6937,-0.1939,-0.6937,-0.8315,0.0,-0.5556,-0.6937,-0.1939,-0.6937,-0.7071,0.0,-0.7071,-0.7071,0.0,-0.7071,-0.6937,-0.1939,-0.6937,-0.545,-0.1939,-0.8157,-0.7071,0.0,-0.7071,-0.545,-0.1939,-0.8157,-0.5556,0.0,-0.8315,-0.5556,0.0,-0.8315,-0.545,-0.1939,-0.8157,-0.3754,-0.1939,-0.9063,-0.5556,0.0,-0.8315,-0.3754,-0.1939,-0.9063,-0.3827,0.0,-0.9239,-0.3827,0.0,-0.9239,-0.3754,-0.1939,-0.9063,-0.1914,-0.1939,-0.9622,-0.3827,0.0,-0.9239,-0.1914,-0.1939,-0.9622,-0.1951,0.0,-0.9808,-0.1951,0.0,-0.9808,-0.1914,-0.1939,-0.9622,0.0,-0.1939,-0.981,-0.1951,0.0,-0.9808,0.0,-0.1939,-0.981,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,-0.1939,-0.981,0.1914,-0.1939,-0.9622,0.0,0.0,-1.0,0.1914,-0.1939,-0.9622,0.1951,0.0,-0.9808,0.1951,0.0,-0.9808,0.1914,-0.1939,-0.9622,0.3754,-0.1939,-0.9063,0.1951,0.0,-0.9808,0.3754,-0.1939,-0.9063,0.3827,0.0,-0.9239,0.3827,0.0,-0.9239,0.3754,-0.1939,-0.9063,0.545,-0.1939,-0.8157,0.3827,0.0,-0.9239,0.545,-0.1939,-0.8157,0.5556,0.0,-0.8315,0.5556,0.0,-0.8315,0.545,-0.1939,-0.8157,0.6937,-0.1939,-0.6937,0.5556,0.0,-0.8315,0.6937,-0.1939,-0.6937,0.7071,0.0,-0.7071,0.7071,0.0,-0.7071,0.6937,-0.1939,-0.6937,0.8157,-0.1939,-0.545,0.7071,0.0,-0.7071,0.8157,-0.1939,-0.545,0.8315,0.0,-0.5556,0.8315,0.0,-0.5556,0.8157,-0.1939,-0.545,0.9063,-0.1939,-0.3754,0.8315,0.0,-0.5556,0.9063,-0.1939,-0.3754,0.9239,0.0,-0.3827,0.9239,0.0,-0.3827,0.9063,-0.1939,-0.3754,0.9622,-0.1939,-0.1914,0.9239,0.0,-0.3827,0.9622,-0.1939,-0.1914,0.9808,0.0,-0.1951,0.9808,0.0,-0.1951,0.9622,-0.1939,-0.1914,0.981,-0.1939,0.0,0.9808,0.0,-0.1951,0.981,-0.1939,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.981,-0.1939,0.0,0.9622,-0.1939,0.1914,1.0,0.0,0.0,0.9622,-0.1939,0.1914,0.9808,0.0,0.1951,0.9808,0.0,0.1951,0.9622,-0.1939,0.1914,0.9063,-0.1939,0.3754,0.9808,0.0,0.1951,0.9063,-0.1939,0.3754,0.9239,0.0,0.3827,0.9239,0.0,0.3827,0.9063,-0.1939,0.3754,0.8157,-0.1939,0.545,0.9239,0.0,0.3827,0.8157,-0.1939,0.545,0.8315,0.0,0.5556,0.8315,0.0,0.5556,0.8157,-0.1939,0.545,0.6937,-0.1939,0.6937,0.8315,0.0,0.5556,0.6937,-0.1939,0.6937,0.7071,0.0,0.7071,0.7071,0.0,0.7071,0.6937,-0.1939,0.6937,0.545,-0.1939,0.8157,0.7071,0.0,0.7071,0.545,-0.1939,0.8157,0.5556,0.0,0.8315,0.5556,0.0,0.8315,0.545,-0.1939,0.8157,0.3754,-0.1939,0.9063,0.5556,0.0,0.8315,0.3754,-0.1939,0.9063,0.3827,0.0,0.9239,0.3827,0.0,0.9239,0.3754,-0.1939,0.9063,0.1914,-0.1939,0.9622,0.3827,0.0,0.9239,0.1914,-0.1939,0.9622,0.1951,0.0,0.9808,0.1951,0.0,0.9808,0.1914,-0.1939,0.9622,0.0,-0.1939,0.981,0.1951,0.0,0.9808,0.0,-0.1939,0.981,0.0,0.0,1.0,0.0,-0.1939,0.981,0.0,-0.3805,0.9248,-0.1804,-0.3805,0.907,0.0,-0.1939,0.981,-0.1804,-0.3805,0.907,-0.1914,-0.1939,0.9622,-0.1914,-0.1939,0.9622,-0.1804,-0.3805,0.907,-0.3539,-0.3805,0.8544,-0.1914,-0.1939,0.9622,-0.3539,-0.3805,0.8544,-0.3754,-0.1939,0.9063,-0.3754,-0.1939,0.9063,-0.3539,-0.3805,0.8544,-0.5138,-0.3805,0.7689,-0.3754,-0.1939,0.9063,-0.5138,-0.3805,0.7689,-0.545,-0.1939,0.8157,-0.545,-0.1939,0.8157,-0.5138,-0.3805,0.7689,-0.6539,-0.3805,0.6539,-0.545,-0.1939,0.8157,-0.6539,-0.3805,0.6539,-0.6937,-0.1939,0.6937,-0.6937,-0.1939,0.6937,-0.6539,-0.3805,0.6539,-0.7689,-0.3805,0.5138,-0.6937,-0.1939,0.6937,-0.7689,-0.3805,0.5138,-0.8157,-0.1939,0.545,-0.8157,-0.1939,0.545,-0.7689,-0.3805,0.5138,-0.8544,-0.3805,0.3539,-0.8157,-0.1939,0.545,-0.8544,-0.3805,0.3539,-0.9063,-0.1939,0.3754,-0.9063,-0.1939,0.3754,-0.8544,-0.3805,0.3539,-0.907,-0.3805,0.1804,-0.9063,-0.1939,0.3754,-0.907,-0.3805,0.1804,-0.9622,-0.1939,0.1914,-0.9622,-0.1939,0.1914,-0.907,-0.3805,0.1804,-0.9248,-0.3805,0.0,-0.9622,-0.1939,0.1914,-0.9248,-0.3805,0.0,-0.981,-0.1939,0.0,-0.981,-0.1939,0.0,-0.9248,-0.3805,0.0,-0.907,-0.3805,-0.1804,-0.981,-0.1939,0.0,-0.907,-0.3805,-0.1804,-0.9622,-0.1939,-0.1914,-0.9622,-0.1939,-0.1914,-0.907,-0.3805,-0.1804,-0.8544,-0.3805,-0.3539,-0.9622,-0.1939,-0.1914,-0.8544,-0.3805,-0.3539,-0.9063,-0.1939,-0.3754,-0.9063,-0.1939,-0.3754,-0.8544,-0.3805,-0.3539,-0.7689,-0.3805,-0.5138,-0.9063,-0.1939,-0.3754,-0.7689,-0.3805,-0.5138,-0.8157,-0.1939,-0.545,-0.8157,-0.1939,-0.545,-0.7689,-0.3805,-0.5138,-0.6539,-0.3805,-0.6539,-0.8157,-0.1939,-0.545,-0.6539,-0.3805,-0.6539,-0.6937,-0.1939,-0.6937,-0.6937,-0.1939,-0.6937,-0.6539,-0.3805,-0.6539,-0.5138,-0.3805,-0.7689,-0.6937,-0.1939,-0.6937,-0.5138,-0.3805,-0.7689,-0.545,-0.1939,-0.8157,-0.545,-0.1939,-0.8157,-0.5138,-0.3805,-0.7689,-0.3539,-0.3805,-0.8544,-0.545,-0.1939,-0.8157,-0.3539,-0.3805,-0.8544,-0.3754,-0.1939,-0.9063,-0.3754,-0.1939,-0.9063,-0.3539,-0.3805,-0.8544,-0.1804,-0.3805,-0.907,-0.3754,-0.1939,-0.9063,-0.1804,-0.3805,-0.907,-0.1914,-0.1939,-0.9622,-0.1914,-0.1939,-0.9622,-0.1804,-0.3805,-0.907,0.0,-0.3805,-0.9248,-0.1914,-0.1939,-0.9622,0.0,-0.3805,-0.9248,0.0,-0.1939,-0.981,0.0,-0.1939,-0.981,0.0,-0.3805,-0.9248,0.1804,-0.3805,-0.907,0.0,-0.1939,-0.981,0.1804,-0.3805,-0.907,0.1914,-0.1939,-0.9622,0.1914,-0.1939,-0.9622,0.1804,-0.3805,-0.907,0.3539,-0.3805,-0.8544,0.1914,-0.1939,-0.9622,0.3539,-0.3805,-0.8544,0.3754,-0.1939,-0.9063,0.3754,-0.1939,-0.9063,0.3539,-0.3805,-0.8544,0.5138,-0.3805,-0.7689,0.3754,-0.1939,-0.9063,0.5138,-0.3805,-0.7689,0.545,-0.1939,-0.8157,0.545,-0.1939,-0.8157,0.5138,-0.3805,-0.7689,0.6539,-0.3805,-0.6539,0.545,-0.1939,-0.8157,0.6539,-0.3805,-0.6539,0.6937,-0.1939,-0.6937,0.6937,-0.1939,-0.6937,0.6539,-0.3805,-0.6539,0.7689,-0.3805,-0.5138,0.6937,-0.1939,-0.6937,0.7689,-0.3805,-0.5138,0.8157,-0.1939,-0.545,0.8157,-0.1939,-0.545,0.7689,-0.3805,-0.5138,0.8544,-0.3805,-0.3539,0.8157,-0.1939,-0.545,0.8544,-0.3805,-0.3539,0.9063,-0.1939,-0.3754,0.9063,-0.1939,-0.3754,0.8544,-0.3805,-0.3539,0.907,-0.3805,-0.1804,0.9063,-0.1939,-0.3754,0.907,-0.3805,-0.1804,0.9622,-0.1939,-0.1914,0.9622,-0.1939,-0.1914,0.907,-0.3805,-0.1804,0.9248,-0.3805,0.0,0.9622,-0.1939,-0.1914,0.9248,-0.3805,0.0,0.981,-0.1939,0.0,0.981,-0.1939,0.0,0.9248,-0.3805,0.0,0.907,-0.3805,0.1804,0.981,-0.1939,0.0,0.907,-0.3805,0.1804,0.9622,-0.1939,0.1914,0.9622,-0.1939,0.1914,0.907,-0.3805,0.1804,0.8544,-0.3805,0.3539,0.9622,-0.1939,0.1914,0.8544,-0.3805,0.3539,0.9063,-0.1939,0.3754,0.9063,-0.1939,0.3754,0.8544,-0.3805,0.3539,0.7689,-0.3805,0.5138,0.9063,-0.1939,0.3754,0.7689,-0.3805,0.5138,0.8157,-0.1939,0.545,0.8157,-0.1939,0.545,0.7689,-0.3805,0.5138,0.6539,-0.3805,0.6539,0.8157,-0.1939,0.545,0.6539,-0.3805,0.6539,0.6937,-0.1939,0.6937,0.6937,-0.1939,0.6937,0.6539,-0.3805,0.6539,0.5138,-0.3805,0.7689,0.6937,-0.1939,0.6937,0.5138,-0.3805,0.7689,0.545,-0.1939,0.8157,0.545,-0.1939,0.8157,0.5138,-0.3805,0.7689,0.3539,-0.3805,0.8544,0.545,-0.1939,0.8157,0.3539,-0.3805,0.8544,0.3754,-0.1939,0.9063,0.3754,-0.1939,0.9063,0.3539,-0.3805,0.8544,0.1804,-0.3805,0.907,0.3754,-0.1939,0.9063,0.1804,-0.3805,0.907,0.1914,-0.1939,0.9622,0.1914,-0.1939,0.9622,0.1804,-0.3805,0.907,0.0,-0.3805,0.9248,0.1914,-0.1939,0.9622,0.0,-0.3805,0.9248,0.0,-0.1939,0.981,0.0,-0.3805,0.9248,0.0,-0.5528,0.8333,-0.1626,-0.5528,0.8173,0.0,-0.3805,0.9248,-0.1626,-0.5528,0.8173,-0.1804,-0.3805,0.907,-0.1804,-0.3805,0.907,-0.1626,-0.5528,0.8173,-0.3189,-0.5528,0.7699,-0.1804,-0.3805,0.907,-0.3189,-0.5528,0.7699,-0.3539,-0.3805,0.8544,-0.3539,-0.3805,0.8544,-0.3189,-0.5528,0.7699,-0.463,-0.5528,0.6929,-0.3539,-0.3805,0.8544,-0.463,-0.5528,0.6929,-0.5138,-0.3805,0.7689,-0.5138,-0.3805,0.7689,-0.463,-0.5528,0.6929,-0.5893,-0.5528,0.5893,-0.5138,-0.3805,0.7689,-0.5893,-0.5528,0.5893,-0.6539,-0.3805,0.6539,-0.6539,-0.3805,0.6539,-0.5893,-0.5528,0.5893,-0.6929,-0.5528,0.463,-0.6539,-0.3805,0.6539,-0.6929,-0.5528,0.463,-0.7689,-0.3805,0.5138,-0.7689,-0.3805,0.5138,-0.6929,-0.5528,0.463,-0.7699,-0.5528,0.3189,-0.7689,-0.3805,0.5138,-0.7699,-0.5528,0.3189,-0.8544,-0.3805,0.3539,-0.8544,-0.3805,0.3539,-0.7699,-0.5528,0.3189,-0.8173,-0.5528,0.1626,-0.8544,-0.3805,0.3539,-0.8173,-0.5528,0.1626,-0.907,-0.3805,0.1804,-0.907,-0.3805,0.1804,-0.8173,-0.5528,0.1626,-0.8333,-0.5528,0.0,-0.907,-0.3805,0.1804,-0.8333,-0.5528,0.0,-0.9248,-0.3805,0.0,-0.9248,-0.3805,0.0,-0.8333,-0.5528,0.0,-0.8173,-0.5528,-0.1626,-0.9248,-0.3805,0.0,-0.8173,-0.5528,-0.1626,-0.907,-0.3805,-0.1804,-0.907,-0.3805,-0.1804,-0.8173,-0.5528,-0.1626,-0.7699,-0.5528,-0.3189,-0.907,-0.3805,-0.1804,-0.7699,-0.5528,-0.3189,-0.8544,-0.3805,-0.3539,-0.8544,-0.3805,-0.3539,-0.7699,-0.5528,-0.3189,-0.6929,-0.5528,-0.463,-0.8544,-0.3805,-0.3539,-0.6929,-0.5528,-0.463,-0.7689,-0.3805,-0.5138,-0.7689,-0.3805,-0.5138,-0.6929,-0.5528,-0.463,-0.5893,-0.5528,-0.5893,-0.7689,-0.3805,-0.5138,-0.5893,-0.5528,-0.5893,-0.6539,-0.3805,-0.6539,-0.6539,-0.3805,-0.6539,-0.5893,-0.5528,-0.5893,-0.463,-0.5528,-0.6929,-0.6539,-0.3805,-0.6539,-0.463,-0.5528,-0.6929,-0.5138,-0.3805,-0.7689,-0.5138,-0.3805,-0.7689,-0.463,-0.5528,-0.6929,-0.3189,-0.5528,-0.7699,-0.5138,-0.3805,-0.7689,-0.3189,-0.5528,-0.7699,-0.3539,-0.3805,-0.8544,-0.3539,-0.3805,-0.8544,-0.3189,-0.5528,-0.7699,-0.1626,-0.5528,-0.8173,-0.3539,-0.3805,-0.8544,-0.1626,-0.5528,-0.8173,-0.1804,-0.3805,-0.907,-0.1804,-0.3805,-0.907,-0.1626,-0.5528,-0.8173,0.0,-0.5528,-0.8333,-0.1804,-0.3805,-0.907,0.0,-0.5528,-0.8333,0.0,-0.3805,-0.9248,0.0,-0.3805,-0.9248,0.0,-0.5528,-0.8333,0.1626,-0.5528,-0.8173,0.0,-0.3805,-0.9248,0.1626,-0.5528,-0.8173,0.1804,-0.3805,-0.907,0.1804,-0.3805,-0.907,0.1626,-0.5528,-0.8173,0.3189,-0.5528,-0.7699,0.1804,-0.3805,-0.907,0.3189,-0.5528,-0.7699,0.3539,-0.3805,-0.8544,0.3539,-0.3805,-0.8544,0.3189,-0.5528,-0.7699,0.463,-0.5528,-0.6929,0.3539,-0.3805,-0.8544,0.463,-0.5528,-0.6929,0.5138,-0.3805,-0.7689,0.5138,-0.3805,-0.7689,0.463,-0.5528,-0.6929,0.5893,-0.5528,-0.5893,0.5138,-0.3805,-0.7689,0.5893,-0.5528,-0.5893,0.6539,-0.3805,-0.6539,0.6539,-0.3805,-0.6539,0.5893,-0.5528,-0.5893,0.6929,-0.5528,-0.463,0.6539,-0.3805,-0.6539,0.6929,-0.5528,-0.463,0.7689,-0.3805,-0.5138,0.7689,-0.3805,-0.5138,0.6929,-0.5528,-0.463,0.7699,-0.5528,-0.3189,0.7689,-0.3805,-0.5138,0.7699,-0.5528,-0.3189,0.8544,-0.3805,-0.3539,0.8544,-0.3805,-0.3539,0.7699,-0.5528,-0.3189,0.8173,-0.5528,-0.1626,0.8544,-0.3805,-0.3539,0.8173,-0.5528,-0.1626,0.907,-0.3805,-0.1804,0.907,-0.3805,-0.1804,0.8173,-0.5528,-0.1626,0.8333,-0.5528,0.0,0.907,-0.3805,-0.1804,0.8333,-0.5528,0.0,0.9248,-0.3805,0.0,0.9248,-0.3805,0.0,0.8333,-0.5528,0.0,0.8173,-0.5528,0.1626,0.9248,-0.3805,0.0,0.8173,-0.5528,0.1626,0.907,-0.3805,0.1804,0.907,-0.3805,0.1804,0.8173,-0.5528,0.1626,0.7699,-0.5528,0.3189,0.907,-0.3805,0.1804,0.7699,-0.5528,0.3189,0.8544,-0.3805,0.3539,0.8544,-0.3805,0.3539,0.7699,-0.5528,0.3189,0.6929,-0.5528,0.463,0.8544,-0.3805,0.3539,0.6929,-0.5528,0.463,0.7689,-0.3805,0.5138,0.7689,-0.3805,0.5138,0.6929,-0.5528,0.463,0.5893,-0.5528,0.5893,0.7689,-0.3805,0.5138,0.5893,-0.5528,0.5893,0.6539,-0.3805,0.6539,0.6539,-0.3805,0.6539,0.5893,-0.5528,0.5893,0.463,-0.5528,0.6929,0.6539,-0.3805,0.6539,0.463,-0.5528,0.6929,0.5138,-0.3805,0.7689,0.5138,-0.3805,0.7689,0.463,-0.5528,0.6929,0.3189,-0.5528,0.7699,0.5138,-0.3805,0.7689,0.3189,-0.5528,0.7699,0.3539,-0.3805,0.8544,0.3539,-0.3805,0.8544,0.3189,-0.5528,0.7699,0.1626,-0.5528,0.8173,0.3539,-0.3805,0.8544,0.1626,-0.5528,0.8173,0.1804,-0.3805,0.907,0.1804,-0.3805,0.907,0.1626,-0.5528,0.8173,0.0,-0.5528,0.8333,0.1804,-0.3805,0.907,0.0,-0.5528,0.8333,0.0,-0.3805,0.9248,0.0,-0.5528,0.8333,0.0,-0.7041,0.7101,-0.1385,-0.7041,0.6965,0.0,-0.5528,0.8333,-0.1385,-0.7041,0.6965,-0.1626,-0.5528,0.8173,-0.1626,-0.5528,0.8173,-0.1385,-0.7041,0.6965,-0.2718,-0.7041,0.6561,-0.1626,-0.5528,0.8173,-0.2718,-0.7041,0.6561,-0.3189,-0.5528,0.7699,-0.3189,-0.5528,0.7699,-0.2718,-0.7041,0.6561,-0.3945,-0.7041,0.5905,-0.3189,-0.5528,0.7699,-0.3945,-0.7041,0.5905,-0.463,-0.5528,0.6929,-0.463,-0.5528,0.6929,-0.3945,-0.7041,0.5905,-0.5021,-0.7041,0.5021,-0.463,-0.5528,0.6929,-0.5021,-0.7041,0.5021,-0.5893,-0.5528,0.5893,-0.5893,-0.5528,0.5893,-0.5021,-0.7041,0.5021,-0.5905,-0.7041,0.3945,-0.5893,-0.5528,0.5893,-0.5905,-0.7041,0.3945,-0.6929,-0.5528,0.463,-0.6929,-0.5528,0.463,-0.5905,-0.7041,0.3945,-0.6561,-0.7041,0.2718,-0.6929,-0.5528,0.463,-0.6561,-0.7041,0.2718,-0.7699,-0.5528,0.3189,-0.7699,-0.5528,0.3189,-0.6561,-0.7041,0.2718,-0.6965,-0.7041,0.1385,-0.7699,-0.5528,0.3189,-0.6965,-0.7041,0.1385,-0.8173,-0.5528,0.1626,-0.8173,-0.5528,0.1626,-0.6965,-0.7041,0.1385,-0.7101,-0.7041,0.0,-0.8173,-0.5528,0.1626,-0.7101,-0.7041,0.0,-0.8333,-0.5528,0.0,-0.8333,-0.5528,0.0,-0.7101,-0.7041,0.0,-0.6965,-0.7041,-0.1385,-0.8333,-0.5528,0.0,-0.6965,-0.7041,-0.1385,-0.8173,-0.5528,-0.1626,-0.8173,-0.5528,-0.1626,-0.6965,-0.7041,-0.1385,-0.6561,-0.7041,-0.2718,-0.8173,-0.5528,-0.1626,-0.6561,-0.7041,-0.2718,-0.7699,-0.5528,-0.3189,-0.7699,-0.5528,-0.3189,-0.6561,-0.7041,-0.2718,-0.5905,-0.7041,-0.3945,-0.7699,-0.5528,-0.3189,-0.5905,-0.7041,-0.3945,-0.6929,-0.5528,-0.463,-0.6929,-0.5528,-0.463,-0.5905,-0.7041,-0.3945,-0.5021,-0.7041,-0.5021,-0.6929,-0.5528,-0.463,-0.5021,-0.7041,-0.5021,-0.5893,-0.5528,-0.5893,-0.5893,-0.5528,-0.5893,-0.5021,-0.7041,-0.5021,-0.3945,-0.7041,-0.5905,-0.5893,-0.5528,-0.5893,-0.3945,-0.7041,-0.5905,-0.463,-0.5528,-0.6929,-0.463,-0.5528,-0.6929,-0.3945,-0.7041,-0.5905,-0.2718,-0.7041,-0.6561,-0.463,-0.5528,-0.6929,-0.2718,-0.7041,-0.6561,-0.3189,-0.5528,-0.7699,-0.3189,-0.5528,-0.7699,-0.2718,-0.7041,-0.6561,-0.1385,-0.7041,-0.6965,-0.3189,-0.5528,-0.7699,-0.1385,-0.7041,-0.6965,-0.1626,-0.5528,-0.8173,-0.1626,-0.5528,-0.8173,-0.1385,-0.7041,-0.6965,0.0,-0.7041,-0.7101,-0.1626,-0.5528,-0.8173,0.0,-0.7041,-0.7101,0.0,-0.5528,-0.8333,0.0,-0.5528,-0.8333,0.0,-0.7041,-0.7101,0.1385,-0.7041,-0.6965,0.0,-0.5528,-0.8333,0.1385,-0.7041,-0.6965,0.1626,-0.5528,-0.8173,0.1626,-0.5528,-0.8173,0.1385,-0.7041,-0.6965,0.2718,-0.7041,-0.6561,0.1626,-0.5528,-0.8173,0.2718,-0.7041,-0.6561,0.3189,-0.5528,-0.7699,0.3189,-0.5528,-0.7699,0.2718,-0.7041,-0.6561,0.3945,-0.7041,-0.5905,0.3189,-0.5528,-0.7699,0.3945,-0.7041,-0.5905,0.463,-0.5528,-0.6929,0.463,-0.5528,-0.6929,0.3945,-0.7041,-0.5905,0.5021,-0.7041,-0.5021,0.463,-0.5528,-0.6929,0.5021,-0.7041,-0.5021,0.5893,-0.5528,-0.5893,0.5893,-0.5528,-0.5893,0.5021,-0.7041,-0.5021,0.5905,-0.7041,-0.3945,0.5893,-0.5528,-0.5893,0.5905,-0.7041,-0.3945,0.6929,-0.5528,-0.463,0.6929,-0.5528,-0.463,0.5905,-0.7041,-0.3945,0.6561,-0.7041,-0.2718,0.6929,-0.5528,-0.463,0.6561,-0.7041,-0.2718,0.7699,-0.5528,-0.3189,0.7699,-0.5528,-0.3189,0.6561,-0.7041,-0.2718,0.6965,-0.7041,-0.1385,0.7699,-0.5528,-0.3189,0.6965,-0.7041,-0.1385,0.8173,-0.5528,-0.1626,0.8173,-0.5528,-0.1626,0.6965,-0.7041,-0.1385,0.7101,-0.7041,0.0,0.8173,-0.5528,-0.1626,0.7101,-0.7041,0.0,0.8333,-0.5528,0.0,0.8333,-0.5528,0.0,0.7101,-0.7041,0.0,0.6965,-0.7041,0.1385,0.8333,-0.5528,0.0,0.6965,-0.7041,0.1385,0.8173,-0.5528,0.1626,0.8173,-0.5528,0.1626,0.6965,-0.7041,0.1385,0.6561,-0.7041,0.2718,0.8173,-0.5528,0.1626,0.6561,-0.7041,0.2718,0.7699,-0.5528,0.3189,0.7699,-0.5528,0.3189,0.6561,-0.7041,0.2718,0.5905,-0.7041,0.3945,0.7699,-0.5528,0.3189,0.5905,-0.7041,0.3945,0.6929,-0.5528,0.463,0.6929,-0.5528,0.463,0.5905,-0.7041,0.3945,0.5021,-0.7041,0.5021,0.6929,-0.5528,0.463,0.5021,-0.7041,0.5021,0.5893,-0.5528,0.5893,0.5893,-0.5528,0.5893,0.5021,-0.7041,0.5021,0.3945,-0.7041,0.5905,0.5893,-0.5528,0.5893,0.3945,-0.7041,0.5905,0.463,-0.5528,0.6929,0.463,-0.5528,0.6929,0.3945,-0.7041,0.5905,0.2718,-0.7041,0.6561,0.463,-0.5528,0.6929,0.2718,-0.7041,0.6561,0.3189,-0.5528,0.7699,0.3189,-0.5528,0.7699,0.2718,-0.7041,0.6561,0.1385,-0.7041,0.6965,0.3189,-0.5528,0.7699,0.1385,-0.7041,0.6965,0.1626,-0.5528,0.8173,0.1626,-0.5528,0.8173,0.1385,-0.7041,0.6965,0.0,-0.7041,0.7101,0.1626,-0.5528,0.8173,0.0,-0.7041,0.7101,0.0,-0.5528,0.8333,0.0,-0.7041,0.7101,0.0,-0.8286,0.5598,-0.1092,-0.8286,0.549,0.0,-0.7041,0.7101,-0.1092,-0.8286,0.549,-0.1385,-0.7041,0.6965,-0.1385,-0.7041,0.6965,-0.1092,-0.8286,0.549,-0.2142,-0.8286,0.5172,-0.1385,-0.7041,0.6965,-0.2142,-0.8286,0.5172,-0.2718,-0.7041,0.6561,-0.2718,-0.7041,0.6561,-0.2142,-0.8286,0.5172,-0.311,-0.8286,0.4654,-0.2718,-0.7041,0.6561,-0.311,-0.8286,0.4654,-0.3945,-0.7041,0.5905,-0.3945,-0.7041,0.5905,-0.311,-0.8286,0.4654,-0.3958,-0.8286,0.3958,-0.3945,-0.7041,0.5905,-0.3958,-0.8286,0.3958,-0.5021,-0.7041,0.5021,-0.5021,-0.7041,0.5021,-0.3958,-0.8286,0.3958,-0.4654,-0.8286,0.311,-0.5021,-0.7041,0.5021,-0.4654,-0.8286,0.311,-0.5905,-0.7041,0.3945,-0.5905,-0.7041,0.3945,-0.4654,-0.8286,0.311,-0.5172,-0.8286,0.2142,-0.5905,-0.7041,0.3945,-0.5172,-0.8286,0.2142,-0.6561,-0.7041,0.2718,-0.6561,-0.7041,0.2718,-0.5172,-0.8286,0.2142,-0.549,-0.8286,0.1092,-0.6561,-0.7041,0.2718,-0.549,-0.8286,0.1092,-0.6965,-0.7041,0.1385,-0.6965,-0.7041,0.1385,-0.549,-0.8286,0.1092,-0.5598,-0.8286,0.0,-0.6965,-0.7041,0.1385,-0.5598,-0.8286,0.0,-0.7101,-0.7041,0.0,-0.7101,-0.7041,0.0,-0.5598,-0.8286,0.0,-0.549,-0.8286,-0.1092,-0.7101,-0.7041,0.0,-0.549,-0.8286,-0.1092,-0.6965,-0.7041,-0.1385,-0.6965,-0.7041,-0.1385,-0.549,-0.8286,-0.1092,-0.5172,-0.8286,-0.2142,-0.6965,-0.7041,-0.1385,-0.5172,-0.8286,-0.2142,-0.6561,-0.7041,-0.2718,-0.6561,-0.7041,-0.2718,-0.5172,-0.8286,-0.2142,-0.4654,-0.8286,-0.311,-0.6561,-0.7041,-0.2718,-0.4654,-0.8286,-0.311,-0.5905,-0.7041,-0.3945,-0.5905,-0.7041,-0.3945,-0.4654,-0.8286,-0.311,-0.3958,-0.8286,-0.3958,-0.5905,-0.7041,-0.3945,-0.3958,-0.8286,-0.3958,-0.5021,-0.7041,-0.5021,-0.5021,-0.7041,-0.5021,-0.3958,-0.8286,-0.3958,-0.311,-0.8286,-0.4654,-0.5021,-0.7041,-0.5021,-0.311,-0.8286,-0.4654,-0.3945,-0.7041,-0.5905,-0.3945,-0.7041,-0.5905,-0.311,-0.8286,-0.4654,-0.2142,-0.8286,-0.5172,-0.3945,-0.7041,-0.5905,-0.2142,-0.8286,-0.5172,-0.2718,-0.7041,-0.6561,-0.2718,-0.7041,-0.6561,-0.2142,-0.8286,-0.5172,-0.1092,-0.8286,-0.549,-0.2718,-0.7041,-0.6561,-0.1092,-0.8286,-0.549,-0.1385,-0.7041,-0.6965,-0.1385,-0.7041,-0.6965,-0.1092,-0.8286,-0.549,0.0,-0.8286,-0.5598,-0.1385,-0.7041,-0.6965,0.0,-0.8286,-0.5598,0.0,-0.7041,-0.7101,0.0,-0.7041,-0.7101,0.0,-0.8286,-0.5598,0.1092,-0.8286,-0.549,0.0,-0.7041,-0.7101,0.1092,-0.8286,-0.549,0.1385,-0.7041,-0.6965,0.1385,-0.7041,-0.6965,0.1092,-0.8286,-0.549,0.2142,-0.8286,-0.5172,0.1385,-0.7041,-0.6965,0.2142,-0.8286,-0.5172,0.2718,-0.7041,-0.6561,0.2718,-0.7041,-0.6561,0.2142,-0.8286,-0.5172,0.311,-0.8286,-0.4654,0.2718,-0.7041,-0.6561,0.311,-0.8286,-0.4654,0.3945,-0.7041,-0.5905,0.3945,-0.7041,-0.5905,0.311,-0.8286,-0.4654,0.3958,-0.8286,-0.3958,0.3945,-0.7041,-0.5905,0.3958,-0.8286,-0.3958,0.5021,-0.7041,-0.5021,0.5021,-0.7041,-0.5021,0.3958,-0.8286,-0.3958,0.4654,-0.8286,-0.311,0.5021,-0.7041,-0.5021,0.4654,-0.8286,-0.311,0.5905,-0.7041,-0.3945,0.5905,-0.7041,-0.3945,0.4654,-0.8286,-0.311,0.5172,-0.8286,-0.2142,0.5905,-0.7041,-0.3945,0.5172,-0.8286,-0.2142,0.6561,-0.7041,-0.2718,0.6561,-0.7041,-0.2718,0.5172,-0.8286,-0.2142,0.549,-0.8286,-0.1092,0.6561,-0.7041,-0.2718,0.549,-0.8286,-0.1092,0.6965,-0.7041,-0.1385,0.6965,-0.7041,-0.1385,0.549,-0.8286,-0.1092,0.5598,-0.8286,0.0,0.6965,-0.7041,-0.1385,0.5598,-0.8286,0.0,0.7101,-0.7041,0.0,0.7101,-0.7041,0.0,0.5598,-0.8286,0.0,0.549,-0.8286,0.1092,0.7101,-0.7041,0.0,0.549,-0.8286,0.1092,0.6965,-0.7041,0.1385,0.6965,-0.7041,0.1385,0.549,-0.8286,0.1092,0.5172,-0.8286,0.2142,0.6965,-0.7041,0.1385,0.5172,-0.8286,0.2142,0.6561,-0.7041,0.2718,0.6561,-0.7041,0.2718,0.5172,-0.8286,0.2142,0.4654,-0.8286,0.311,0.6561,-0.7041,0.2718,0.4654,-0.8286,0.311,0.5905,-0.7041,0.3945,0.5905,-0.7041,0.3945,0.4654,-0.8286,0.311,0.3958,-0.8286,0.3958,0.5905,-0.7041,0.3945,0.3958,-0.8286,0.3958,0.5021,-0.7041,0.5021,0.5021,-0.7041,0.5021,0.3958,-0.8286,0.3958,0.311,-0.8286,0.4654,0.5021,-0.7041,0.5021,0.311,-0.8286,0.4654,0.3945,-0.7041,0.5905,0.3945,-0.7041,0.5905,0.311,-0.8286,0.4654,0.2142,-0.8286,0.5172,0.3945,-0.7041,0.5905,0.2142,-0.8286,0.5172,0.2718,-0.7041,0.6561,0.2718,-0.7041,0.6561,0.2142,-0.8286,0.5172,0.1092,-0.8286,0.549,0.2718,-0.7041,0.6561,0.1092,-0.8286,0.549,0.1385,-0.7041,0.6965,0.1385,-0.7041,0.6965,0.1092,-0.8286,0.549,0.0,-0.8286,0.5598,0.1385,-0.7041,0.6965,0.0,-0.8286,0.5598,0.0,-0.7041,0.7101,0.0,-0.8286,0.5598,0.0,-0.9217,0.3879,-0.0757,-0.9217,0.3804,0.0,-0.8286,0.5598,-0.0757,-0.9217,0.3804,-0.1092,-0.8286,0.549,-0.1092,-0.8286,0.549,-0.0757,-0.9217,0.3804,-0.1484,-0.9217,0.3584,-0.1092,-0.8286,0.549,-0.1484,-0.9217,0.3584,-0.2142,-0.8286,0.5172,-0.2142,-0.8286,0.5172,-0.1484,-0.9217,0.3584,-0.2155,-0.9217,0.3225,-0.2142,-0.8286,0.5172,-0.2155,-0.9217,0.3225,-0.311,-0.8286,0.4654,-0.311,-0.8286,0.4654,-0.2155,-0.9217,0.3225,-0.2743,-0.9217,0.2743,-0.311,-0.8286,0.4654,-0.2743,-0.9217,0.2743,-0.3958,-0.8286,0.3958,-0.3958,-0.8286,0.3958,-0.2743,-0.9217,0.2743,-0.3225,-0.9217,0.2155,-0.3958,-0.8286,0.3958,-0.3225,-0.9217,0.2155,-0.4654,-0.8286,0.311,-0.4654,-0.8286,0.311,-0.3225,-0.9217,0.2155,-0.3584,-0.9217,0.1484,-0.4654,-0.8286,0.311,-0.3584,-0.9217,0.1484,-0.5172,-0.8286,0.2142,-0.5172,-0.8286,0.2142,-0.3584,-0.9217,0.1484,-0.3804,-0.9217,0.0757,-0.5172,-0.8286,0.2142,-0.3804,-0.9217,0.0757,-0.549,-0.8286,0.1092,-0.549,-0.8286,0.1092,-0.3804,-0.9217,0.0757,-0.3879,-0.9217,0.0,-0.549,-0.8286,0.1092,-0.3879,-0.9217,0.0,-0.5598,-0.8286,0.0,-0.5598,-0.8286,0.0,-0.3879,-0.9217,0.0,-0.3804,-0.9217,-0.0757,-0.5598,-0.8286,0.0,-0.3804,-0.9217,-0.0757,-0.549,-0.8286,-0.1092,-0.549,-0.8286,-0.1092,-0.3804,-0.9217,-0.0757,-0.3584,-0.9217,-0.1484,-0.549,-0.8286,-0.1092,-0.3584,-0.9217,-0.1484,-0.5172,-0.8286,-0.2142,-0.5172,-0.8286,-0.2142,-0.3584,-0.9217,-0.1484,-0.3225,-0.9217,-0.2155,-0.5172,-0.8286,-0.2142,-0.3225,-0.9217,-0.2155,-0.4654,-0.8286,-0.311,-0.4654,-0.8286,-0.311,-0.3225,-0.9217,-0.2155,-0.2743,-0.9217,-0.2743,-0.4654,-0.8286,-0.311,-0.2743,-0.9217,-0.2743,-0.3958,-0.8286,-0.3958,-0.3958,-0.8286,-0.3958,-0.2743,-0.9217,-0.2743,-0.2155,-0.9217,-0.3225,-0.3958,-0.8286,-0.3958,-0.2155,-0.9217,-0.3225,-0.311,-0.8286,-0.4654,-0.311,-0.8286,-0.4654,-0.2155,-0.9217,-0.3225,-0.1484,-0.9217,-0.3584,-0.311,-0.8286,-0.4654,-0.1484,-0.9217,-0.3584,-0.2142,-0.8286,-0.5172,-0.2142,-0.8286,-0.5172,-0.1484,-0.9217,-0.3584,-0.0757,-0.9217,-0.3804,-0.2142,-0.8286,-0.5172,-0.0757,-0.9217,-0.3804,-0.1092,-0.8286,-0.549,-0.1092,-0.8286,-0.549,-0.0757,-0.9217,-0.3804,0.0,-0.9217,-0.3879,-0.1092,-0.8286,-0.549,0.0,-0.9217,-0.3879,0.0,-0.8286,-0.5598,0.0,-0.8286,-0.5598,0.0,-0.9217,-0.3879,0.0757,-0.9217,-0.3804,0.0,-0.8286,-0.5598,0.0757,-0.9217,-0.3804,0.1092,-0.8286,-0.549,0.1092,-0.8286,-0.549,0.0757,-0.9217,-0.3804,0.1484,-0.9217,-0.3584,0.1092,-0.8286,-0.549,0.1484,-0.9217,-0.3584,0.2142,-0.8286,-0.5172,0.2142,-0.8286,-0.5172,0.1484,-0.9217,-0.3584,0.2155,-0.9217,-0.3225,0.2142,-0.8286,-0.5172,0.2155,-0.9217,-0.3225,0.311,-0.8286,-0.4654,0.311,-0.8286,-0.4654,0.2155,-0.9217,-0.3225,0.2743,-0.9217,-0.2743,0.311,-0.8286,-0.4654,0.2743,-0.9217,-0.2743,0.3958,-0.8286,-0.3958,0.3958,-0.8286,-0.3958,0.2743,-0.9217,-0.2743,0.3225,-0.9217,-0.2155,0.3958,-0.8286,-0.3958,0.3225,-0.9217,-0.2155,0.4654,-0.8286,-0.311,0.4654,-0.8286,-0.311,0.3225,-0.9217,-0.2155,0.3584,-0.9217,-0.1484,0.4654,-0.8286,-0.311,0.3584,-0.9217,-0.1484,0.5172,-0.8286,-0.2142,0.5172,-0.8286,-0.2142,0.3584,-0.9217,-0.1484,0.3804,-0.9217,-0.0757,0.5172,-0.8286,-0.2142,0.3804,-0.9217,-0.0757,0.549,-0.8286,-0.1092,0.549,-0.8286,-0.1092,0.3804,-0.9217,-0.0757,0.3879,-0.9217,0.0,0.549,-0.8286,-0.1092,0.3879,-0.9217,0.0,0.5598,-0.8286,0.0,0.5598,-0.8286,0.0,0.3879,-0.9217,0.0,0.3804,-0.9217,0.0757,0.5598,-0.8286,0.0,0.3804,-0.9217,0.0757,0.549,-0.8286,0.1092,0.549,-0.8286,0.1092,0.3804,-0.9217,0.0757,0.3584,-0.9217,0.1484,0.549,-0.8286,0.1092,0.3584,-0.9217,0.1484,0.5172,-0.8286,0.2142,0.5172,-0.8286,0.2142,0.3584,-0.9217,0.1484,0.3225,-0.9217,0.2155,0.5172,-0.8286,0.2142,0.3225,-0.9217,0.2155,0.4654,-0.8286,0.311,0.4654,-0.8286,0.311,0.3225,-0.9217,0.2155,0.2743,-0.9217,0.2743,0.4654,-0.8286,0.311,0.2743,-0.9217,0.2743,0.3958,-0.8286,0.3958,0.3958,-0.8286,0.3958,0.2743,-0.9217,0.2743,0.2155,-0.9217,0.3225,0.3958,-0.8286,0.3958,0.2155,-0.9217,0.3225,0.311,-0.8286,0.4654,0.311,-0.8286,0.4654,0.2155,-0.9217,0.3225,0.1484,-0.9217,0.3584,0.311,-0.8286,0.4654,0.1484,-0.9217,0.3584,0.2142,-0.8286,0.5172,0.2142,-0.8286,0.5172,0.1484,-0.9217,0.3584,0.0757,-0.9217,0.3804,0.2142,-0.8286,0.5172,0.0757,-0.9217,0.3804,0.1092,-0.8286,0.549,0.1092,-0.8286,0.549,0.0757,-0.9217,0.3804,0.0,-0.9217,0.3879,0.1092,-0.8286,0.549,0.0,-0.9217,0.3879,0.0,-0.8286,0.5598,0.0,-0.9217,0.3879,0.0,-0.9796,0.201,-0.0392,-0.9796,0.1971,0.0,-0.9217,0.3879,-0.0392,-0.9796,0.1971,-0.0757,-0.9217,0.3804,-0.0757,-0.9217,0.3804,-0.0392,-0.9796,0.1971,-0.0769,-0.9796,0.1857,-0.0757,-0.9217,0.3804,-0.0769,-0.9796,0.1857,-0.1484,-0.9217,0.3584,-0.1484,-0.9217,0.3584,-0.0769,-0.9796,0.1857,-0.1117,-0.9796,0.1671,-0.1484,-0.9217,0.3584,-0.1117,-0.9796,0.1671,-0.2155,-0.9217,0.3225,-0.2155,-0.9217,0.3225,-0.1117,-0.9796,0.1671,-0.1421,-0.9796,0.1421,-0.2155,-0.9217,0.3225,-0.1421,-0.9796,0.1421,-0.2743,-0.9217,0.2743,-0.2743,-0.9217,0.2743,-0.1421,-0.9796,0.1421,-0.1671,-0.9796,0.1117,-0.2743,-0.9217,0.2743,-0.1671,-0.9796,0.1117,-0.3225,-0.9217,0.2155,-0.3225,-0.9217,0.2155,-0.1671,-0.9796,0.1117,-0.1857,-0.9796,0.0769,-0.3225,-0.9217,0.2155,-0.1857,-0.9796,0.0769,-0.3584,-0.9217,0.1484,-0.3584,-0.9217,0.1484,-0.1857,-0.9796,0.0769,-0.1971,-0.9796,0.0392,-0.3584,-0.9217,0.1484,-0.1971,-0.9796,0.0392,-0.3804,-0.9217,0.0757,-0.3804,-0.9217,0.0757,-0.1971,-0.9796,0.0392,-0.201,-0.9796,0.0,-0.3804,-0.9217,0.0757,-0.201,-0.9796,0.0,-0.3879,-0.9217,0.0,-0.3879,-0.9217,0.0,-0.201,-0.9796,0.0,-0.1971,-0.9796,-0.0392,-0.3879,-0.9217,0.0,-0.1971,-0.9796,-0.0392,-0.3804,-0.9217,-0.0757,-0.3804,-0.9217,-0.0757,-0.1971,-0.9796,-0.0392,-0.1857,-0.9796,-0.0769,-0.3804,-0.9217,-0.0757,-0.1857,-0.9796,-0.0769,-0.3584,-0.9217,-0.1484,-0.3584,-0.9217,-0.1484,-0.1857,-0.9796,-0.0769,-0.1671,-0.9796,-0.1117,-0.3584,-0.9217,-0.1484,-0.1671,-0.9796,-0.1117,-0.3225,-0.9217,-0.2155,-0.3225,-0.9217,-0.2155,-0.1671,-0.9796,-0.1117,-0.1421,-0.9796,-0.1421,-0.3225,-0.9217,-0.2155,-0.1421,-0.9796,-0.1421,-0.2743,-0.9217,-0.2743,-0.2743,-0.9217,-0.2743,-0.1421,-0.9796,-0.1421,-0.1117,-0.9796,-0.1671,-0.2743,-0.9217,-0.2743,-0.1117,-0.9796,-0.1671,-0.2155,-0.9217,-0.3225,-0.2155,-0.9217,-0.3225,-0.1117,-0.9796,-0.1671,-0.0769,-0.9796,-0.1857,-0.2155,-0.9217,-0.3225,-0.0769,-0.9796,-0.1857,-0.1484,-0.9217,-0.3584,-0.1484,-0.9217,-0.3584,-0.0769,-0.9796,-0.1857,-0.0392,-0.9796,-0.1971,-0.1484,-0.9217,-0.3584,-0.0392,-0.9796,-0.1971,-0.0757,-0.9217,-0.3804,-0.0757,-0.9217,-0.3804,-0.0392,-0.9796,-0.1971,0.0,-0.9796,-0.201,-0.0757,-0.9217,-0.3804,0.0,-0.9796,-0.201,0.0,-0.9217,-0.3879,0.0,-0.9217,-0.3879,0.0,-0.9796,-0.201,0.0392,-0.9796,-0.1971,0.0,-0.9217,-0.3879,0.0392,-0.9796,-0.1971,0.0757,-0.9217,-0.3804,0.0757,-0.9217,-0.3804,0.0392,-0.9796,-0.1971,0.0769,-0.9796,-0.1857,0.0757,-0.9217,-0.3804,0.0769,-0.9796,-0.1857,0.1484,-0.9217,-0.3584,0.1484,-0.9217,-0.3584,0.0769,-0.9796,-0.1857,0.1117,-0.9796,-0.1671,0.1484,-0.9217,-0.3584,0.1117,-0.9796,-0.1671,0.2155,-0.9217,-0.3225,0.2155,-0.9217,-0.3225,0.1117,-0.9796,-0.1671,0.1421,-0.9796,-0.1421,0.2155,-0.9217,-0.3225,0.1421,-0.9796,-0.1421,0.2743,-0.9217,-0.2743,0.2743,-0.9217,-0.2743,0.1421,-0.9796,-0.1421,0.1671,-0.9796,-0.1117,0.2743,-0.9217,-0.2743,0.1671,-0.9796,-0.1117,0.3225,-0.9217,-0.2155,0.3225,-0.9217,-0.2155,0.1671,-0.9796,-0.1117,0.1857,-0.9796,-0.0769,0.3225,-0.9217,-0.2155,0.1857,-0.9796,-0.0769,0.3584,-0.9217,-0.1484,0.3584,-0.9217,-0.1484,0.1857,-0.9796,-0.0769,0.1971,-0.9796,-0.0392,0.3584,-0.9217,-0.1484,0.1971,-0.9796,-0.0392,0.3804,-0.9217,-0.0757,0.3804,-0.9217,-0.0757,0.1971,-0.9796,-0.0392,0.201,-0.9796,0.0,0.3804,-0.9217,-0.0757,0.201,-0.9796,0.0,0.3879,-0.9217,0.0,0.3879,-0.9217,0.0,0.201,-0.9796,0.0,0.1971,-0.9796,0.0392,0.3879,-0.9217,0.0,0.1971,-0.9796,0.0392,0.3804,-0.9217,0.0757,0.3804,-0.9217,0.0757,0.1971,-0.9796,0.0392,0.1857,-0.9796,0.0769,0.3804,-0.9217,0.0757,0.1857,-0.9796,0.0769,0.3584,-0.9217,0.1484,0.3584,-0.9217,0.1484,0.1857,-0.9796,0.0769,0.1671,-0.9796,0.1117,0.3584,-0.9217,0.1484,0.1671,-0.9796,0.1117,0.3225,-0.9217,0.2155,0.3225,-0.9217,0.2155,0.1671,-0.9796,0.1117,0.1421,-0.9796,0.1421,0.3225,-0.9217,0.2155,0.1421,-0.9796,0.1421,0.2743,-0.9217,0.2743,0.2743,-0.9217,0.2743,0.1421,-0.9796,0.1421,0.1117,-0.9796,0.1671,0.2743,-0.9217,0.2743,0.1117,-0.9796,0.1671,0.2155,-0.9217,0.3225,0.2155,-0.9217,0.3225,0.1117,-0.9796,0.1671,0.0769,-0.9796,0.1857,0.2155,-0.9217,0.3225,0.0769,-0.9796,0.1857,0.1484,-0.9217,0.3584,0.1484,-0.9217,0.3584,0.0769,-0.9796,0.1857,0.0392,-0.9796,0.1971,0.1484,-0.9217,0.3584,0.0392,-0.9796,0.1971,0.0757,-0.9217,0.3804,0.0757,-0.9217,0.3804,0.0392,-0.9796,0.1971,0.0,-0.9796,0.201,0.0757,-0.9217,0.3804,0.0,-0.9796,0.201,0.0,-0.9217,0.3879,0.0,-1.0,0.0,-0.0392,-0.9796,0.1971,0.0,-0.9796,0.201,0.0,-1.0,0.0,-0.0769,-0.9796,0.1857,-0.0392,-0.9796,0.1971,0.0,-1.0,0.0,-0.1117,-0.9796,0.1671,-0.0769,-0.9796,0.1857,0.0,-1.0,0.0,-0.1421,-0.9796,0.1421,-0.1117,-0.9796,0.1671,0.0,-1.0,0.0,-0.1671,-0.9796,0.1117,-0.1421,-0.9796,0.1421,0.0,-1.0,0.0,-0.1857,-0.9796,0.0769,-0.1671,-0.9796,0.1117,0.0,-1.0,0.0,-0.1971,-0.9796,0.0392,-0.1857,-0.9796,0.0769,0.0,-1.0,0.0,-0.201,-0.9796,0.0,-0.1971,-0.9796,0.0392,0.0,-1.0,0.0,-0.1971,-0.9796,-0.0392,-0.201,-0.9796,0.0,0.0,-1.0,0.0,-0.1857,-0.9796,-0.0769,-0.1971,-0.9796,-0.0392,0.0,-1.0,0.0,-0.1671,-0.9796,-0.1117,-0.1857,-0.9796,-0.0769,0.0,-1.0,0.0,-0.1421,-0.9796,-0.1421,-0.1671,-0.9796,-0.1117,0.0,-1.0,0.0,-0.1117,-0.9796,-0.1671,-0.1421,-0.9796,-0.1421,0.0,-1.0,0.0,-0.0769,-0.9796,-0.1857,-0.1117,-0.9796,-0.1671,0.0,-1.0,0.0,-0.0392,-0.9796,-0.1971,-0.0769,-0.9796,-0.1857,0.0,-1.0,0.0,0.0,-0.9796,-0.201,-0.0392,-0.9796,-0.1971,0.0,-1.0,0.0,0.0392,-0.9796,-0.1971,0.0,-0.9796,-0.201,0.0,-1.0,0.0,0.0769,-0.9796,-0.1857,0.0392,-0.9796,-0.1971,0.0,-1.0,0.0,0.1117,-0.9796,-0.1671,0.0769,-0.9796,-0.1857,0.0,-1.0,0.0,0.1421,-0.9796,-0.1421,0.1117,-0.9796,-0.1671,0.0,-1.0,0.0,0.1671,-0.9796,-0.1117,0.1421,-0.9796,-0.1421,0.0,-1.0,0.0,0.1857,-0.9796,-0.0769,0.1671,-0.9796,-0.1117,0.0,-1.0,0.0,0.1971,-0.9796,-0.0392,0.1857,-0.9796,-0.0769,0.0,-1.0,0.0,0.201,-0.9796,0.0,0.1971,-0.9796,-0.0392,0.0,-1.0,0.0,0.1971,-0.9796,0.0392,0.201,-0.9796,0.0,0.0,-1.0,0.0,0.1857,-0.9796,0.0769,0.1971,-0.9796,0.0392,0.0,-1.0,0.0,0.1671,-0.9796,0.1117,0.1857,-0.9796,0.0769,0.0,-1.0,0.0,0.1421,-0.9796,0.1421,0.1671,-0.9796,0.1117,0.0,-1.0,0.0,0.1117,-0.9796,0.1671,0.1421,-0.9796,0.1421,0.0,-1.0,0.0,0.0769,-0.9796,0.1857,0.1117,-0.9796,0.1671,0.0,-1.0,0.0,0.0392,-0.9796,0.1971,0.0769,-0.9796,0.1857,0.0,-1.0,0.0,0.0,-0.9796,0.201,0.0392,-0.9796,0.1971],"tangents":null,"uvs":[0.0,2.0,0.0,1.9375,0.0312,1.9375,0.0312,2.0,0.0312,1.9375,0.0625,1.9375,0.0625,2.0,0.0625,1.9375,0.0938,1.9375,0.0938,2.0,0.0938,1.9375,0.125,1.9375,0.125,2.0,0.125,1.9375,0.1562,1.9375,0.1562,2.0,0.1562,1.9375,0.1875,1.9375,0.1875,2.0,0.1875,1.9375,0.2187,1.9375,0.2187,2.0,0.2187,1.9375,0.25,1.9375,0.25,2.0,0.25,1.9375,0.2812,1.9375,0.2812,2.0,0.2812,1.9375,0.3125,1.9375,0.3125,2.0,0.3125,1.9375,0.3437,1.9375,0.3437,2.0,0.3437,1.9375,0.375,1.9375,0.375,2.0,0.375,1.9375,0.4062,1.9375,0.4062,2.0,0.4062,1.9375,0.4375,1.9375,0.4375,2.0,0.4375,1.9375,0.4688,1.9375,0.4688,2.0,0.4688,1.9375,0.5,1.9375,0.5,2.0,0.5,1.9375,0.5313,1.9375,0.5313,2.0,0.5313,1.9375,0.5625,1.9375,0.5625,2.0,0.5625,1.9375,0.5938,1.9375,0.5938,2.0,0.5938,1.9375,0.625,1.9375,0.625,2.0,0.625,1.9375,0.6563,1.9375,0.6563,2.0,0.6563,1.9375,0.6875,1.9375,0.6875,2.0,0.6875,1.9375,0.7188,1.9375,0.7188,2.0,0.7188,1.9375,0.75,1.9375,0.75,2.0,0.75,1.9375,0.7813,1.9375,0.7813,2.0,0.7813,1.9375,0.8125,1.9375,0.8125,2.0,0.8125,1.9375,0.8438,1.9375,0.8438,2.0,0.8438,1.9375,0.875,1.9375,0.875,2.0,0.875,1.9375,0.9063,1.9375,0.9063,2.0,0.9063,1.9375,0.9375,1.9375,0.9375,2.0,0.9375,1.9375,0.9688,1.9375,0.9688,2.0,0.9688,1.9375,1.0,1.9375,0.0,1.9375,0.0,1.875,0.0312,1.875,0.0,1.9375,0.0312,1.875,0.0312,1.9375,0.0312,1.9375,0.0312,1.875,0.0625,1.875,0.0312,1.9375,0.0625,1.875,0.0625,1.9375,0.0625,1.9375,0.0625,1.875,0.0938,1.875,0.0625,1.9375,0.0938,1.875,0.0938,1.9375,0.0938,1.9375,0.0938,1.875,0.125,1.875,0.0938,1.9375,0.125,1.875,0.125,1.9375,0.125,1.9375,0.125,1.875,0.1562,1.875,0.125,1.9375,0.1562,1.875,0.1562,1.9375,0.1562,1.9375,0.1562,1.875,0.1875,1.875,0.1562,1.9375,0.1875,1.875,0.1875,1.9375,0.1875,1.9375,0.1875,1.875,0.2187,1.875,0.1875,1.9375,0.2187,1.875,0.2187,1.9375,0.2187,1.9375,0.2187,1.875,0.25,1.875,0.2187,1.9375,0.25,1.875,0.25,1.9375,0.25,1.9375,0.25,1.875,0.2812,1.875,0.25,1.9375,0.2812,1.875,0.2812,1.9375,0.2812,1.9375,0.2812,1.875,0.3125,1.875,0.2812,1.9375,0.3125,1.875,0.3125,1.9375,0.3125,1.9375,0.3125,1.875,0.3437,1.875,0.3125,1.9375,0.3437,1.875,0.3437,1.9375,0.3437,1.9375,0.3437,1.875,0.375,1.875,0.3437,1.9375,0.375,1.875,0.375,1.9375,0.375,1.9375,0.375,1.875,0.4062,1.875,0.375,1.9375,0.4062,1.875,0.4062,1.9375,0.4062,1.9375,0.4062,1.875,0.4375,1.875,0.4062,1.9375,0.4375,1.875,0.4375,1.9375,0.4375,1.9375,0.4375,1.875,0.4688,1.875,0.4375,1.9375,0.4688,1.875,0.4688,1.9375,0.4688,1.9375,0.4688,1.875,0.5,1.875,0.4688,1.9375,0.5,1.875,0.5,1.9375,0.5,1.9375,0.5,1.875,0.5313,1.875,0.5,1.9375,0.5313,1.875,0.5313,1.9375,0.5313,1.9375,0.5313,1.875,0.5625,1.875,0.5313,1.9375,0.5625,1.875,0.5625,1.9375,0.5625,1.9375,0.5625,1.875,0.5938,1.875,0.5625,1.9375,0.5938,1.875,0.5938,1.9375,0.5938,1.9375,0.5938,1.875,0.625,1.875,0.5938,1.9375,0.625,1.875,0.625,1.9375,0.625,1.9375,0.625,1.875,0.6563,1.875,0.625,1.9375,0.6563,1.875,0.6563,1.9375,0.6563,1.9375,0.6563,1.875,0.6875,1.875,0.6563,1.9375,0.6875,1.875,0.6875,1.9375,0.6875,1.9375,0.6875,1.875,0.7188,1.875,0.6875,1.9375,0.7188,1.875,0.7188,1.9375,0.7188,1.9375,0.7188,1.875,0.75,1.875,0.7188,1.9375,0.75,1.875,0.75,1.9375,0.75,1.9375,0.75,1.875,0.7813,1.875,0.75,1.9375,0.7813,1.875,0.7813,1.9375,0.7813,1.9375,0.7813,1.875,0.8125,1.875,0.7813,1.9375,0.8125,1.875,0.8125,1.9375,0.8125,1.9375,0.8125,1.875,0.8438,1.875,0.8125,1.9375,0.8438,1.875,0.8438,1.9375,0.8438,1.9375,0.8438,1.875,0.875,1.875,0.8438,1.9375,0.875,1.875,0.875,1.9375,0.875,1.9375,0.875,1.875,0.9063,1.875,0.875,1.9375,0.9063,1.875,0.9063,1.9375,0.9063,1.9375,0.9063,1.875,0.9375,1.875,0.9063,1.9375,0.9375,1.875,0.9375,1.9375,0.9375,1.9375,0.9375,1.875,0.9688,1.875,0.9375,1.9375,0.9688,1.875,0.9688,1.9375,0.9688,1.9375,0.9688,1.875,1.0,1.875,0.9688,1.9375,1.0,1.875,1.0,1.9375,0.0,1.875,0.0,1.8125,0.0312,1.8125,0.0,1.875,0.0312,1.8125,0.0312,1.875,0.0312,1.875,0.0312,1.8125,0.0625,1.8125,0.0312,1.875,0.0625,1.8125,0.0625,1.875,0.0625,1.875,0.0625,1.8125,0.0938,1.8125,0.0625,1.875,0.0938,1.8125,0.0938,1.875,0.0938,1.875,0.0938,1.8125,0.125,1.8125,0.0938,1.875,0.125,1.8125,0.125,1.875,0.125,1.875,0.125,1.8125,0.1562,1.8125,0.125,1.875,0.1562,1.8125,0.1562,1.875,0.1562,1.875,0.1562,1.8125,0.1875,1.8125,0.1562,1.875,0.1875,1.8125,0.1875,1.875,0.1875,1.875,0.1875,1.8125,0.2187,1.8125,0.1875,1.875,0.2187,1.8125,0.2187,1.875,0.2187,1.875,0.2187,1.8125,0.25,1.8125,0.2187,1.875,0.25,1.8125,0.25,1.875,0.25,1.875,0.25,1.8125,0.2812,1.8125,0.25,1.875,0.2812,1.8125,0.2812,1.875,0.2812,1.875,0.2812,1.8125,0.3125,1.8125,0.2812,1.875,0.3125,1.8125,0.3125,1.875,0.3125,1.875,0.3125,1.8125,0.3437,1.8125,0.3125,1.875,0.3437,1.8125,0.3437,1.875,0.3437,1.875,0.3437,1.8125,0.375,1.8125,0.3437,1.875,0.375,1.8125,0.375,1.875,0.375,1.875,0.375,1.8125,0.4062,1.8125,0.375,1.875,0.4062,1.8125,0.4062,1.875,0.4062,1.875,0.4062,1.8125,0.4375,1.8125,0.4062,1.875,0.4375,1.8125,0.4375,1.875,0.4375,1.875,0.4375,1.8125,0.4688,1.8125,0.4375,1.875,0.4688,1.8125,0.4688,1.875,0.4688,1.875,0.4688,1.8125,0.5,1.8125,0.4688,1.875,0.5,1.8125,0.5,1.875,0.5,1.875,0.5,1.8125,0.5313,1.8125,0.5,1.875,0.5313,1.8125,0.5313,1.875,0.5313,1.875,0.5313,1.8125,0.5625,1.8125,0.5313,1.875,0.5625,1.8125,0.5625,1.875,0.5625,1.875,0.5625,1.8125,0.5938,1.8125,0.5625,1.875,0.5938,1.8125,0.5938,1.875,0.5938,1.875,0.5938,1.8125,0.625,1.8125,0.5938,1.875,0.625,1.8125,0.625,1.875,0.625,1.875,0.625,1.8125,0.6563,1.8125,0.625,1.875,0.6563,1.8125,0.6563,1.875,0.6563,1.875,0.6563,1.8125,0.6875,1.8125,0.6563,1.875,0.6875,1.8125,0.6875,1.875,0.6875,1.875,0.6875,1.8125,0.7188,1.8125,0.6875,1.875,0.7188,1.8125,0.7188,1.875,0.7188,1.875,0.7188,1.8125,0.75,1.8125,0.7188,1.875,0.75,1.8125,0.75,1.875,0.75,1.875,0.75,1.8125,0.7813,1.8125,0.75,1.875,0.7813,1.8125,0.7813,1.875,0.7813,1.875,0.7813,1.8125,0.8125,1.8125,0.7813,1.875,0.8125,1.8125,0.8125,1.875,0.8125,1.875,0.8125,1.8125,0.8438,1.8125,0.8125,1.875,0.8438,1.8125,0.8438,1.875,0.8438,1.875,0.8438,1.8125,0.875,1.8125,0.8438,1.875,0.875,1.8125,0.875,1.875,0.875,1.875,0.875,1.8125,0.9063,1.8125,0.875,1.875,0.9063,1.8125,0.9063,1.875,0.9063,1.875,0.9063,1.8125,0.9375,1.8125,0.9063,1.875,0.9375,1.8125,0.9375,1.875,0.9375,1.875,0.9375,1.8125,0.9688,1.8125,0.9375,1.875,0.9688,1.8125,0.9688,1.875,0.9688,1.875,0.9688,1.8125,1.0,1.8125,0.9688,1.875,1.0,1.8125,1.0,1.875,0.0,1.8125,0.0,1.75,0.0312,1.75,0.0,1.8125,0.0312,1.75,0.0312,1.8125,0.0312,1.8125,0.0312,1.75,0.0625,1.75,0.0312,1.8125,0.0625,1.75,0.0625,1.8125,0.0625,1.8125,0.0625,1.75,0.0938,1.75,0.0625,1.8125,0.0938,1.75,0.0938,1.8125,0.0938,1.8125,0.0938,1.75,0.125,1.75,0.0938,1.8125,0.125,1.75,0.125,1.8125,0.125,1.8125,0.125,1.75,0.1562,1.75,0.125,1.8125,0.1562,1.75,0.1562,1.8125,0.1562,1.8125,0.1562,1.75,0.1875,1.75,0.1562,1.8125,0.1875,1.75,0.1875,1.8125,0.1875,1.8125,0.1875,1.75,0.2187,1.75,0.1875,1.8125,0.2187,1.75,0.2187,1.8125,0.2187,1.8125,0.2187,1.75,0.25,1.75,0.2187,1.8125,0.25,1.75,0.25,1.8125,0.25,1.8125,0.25,1.75,0.2812,1.75,0.25,1.8125,0.2812,1.75,0.2812,1.8125,0.2812,1.8125,0.2812,1.75,0.3125,1.75,0.2812,1.8125,0.3125,1.75,0.3125,1.8125,0.3125,1.8125,0.3125,1.75,0.3437,1.75,0.3125,1.8125,0.3437,1.75,0.3437,1.8125,0.3437,1.8125,0.3437,1.75,0.375,1.75,0.3437,1.8125,0.375,1.75,0.375,1.8125,0.375,1.8125,0.375,1.75,0.4062,1.75,0.375,1.8125,0.4062,1.75,0.4062,1.8125,0.4062,1.8125,0.4062,1.75,0.4375,1.75,0.4062,1.8125,0.4375,1.75,0.4375,1.8125,0.4375,1.8125,0.4375,1.75,0.4688,1.75,0.4375,1.8125,0.4688,1.75,0.4688,1.8125,0.4688,1.8125,0.4688,1.75,0.5,1.75,0.4688,1.8125,0.5,1.75,0.5,1.8125,0.5,1.8125,0.5,1.75,0.5313,1.75,0.5,1.8125,0.5313,1.75,0.5313,1.8125,0.5313,1.8125,0.5313,1.75,0.5625,1.75,0.5313,1.8125,0.5625,1.75,0.5625,1.8125,0.5625,1.8125,0.5625,1.75,0.5938,1.75,0.5625,1.8125,0.5938,1.75,0.5938,1.8125,0.5938,1.8125,0.5938,1.75,0.625,1.75,0.5938,1.8125,0.625,1.75,0.625,1.8125,0.625,1.8125,0.625,1.75,0.6563,1.75,0.625,1.8125,0.6563,1.75,0.6563,1.8125,0.6563,1.8125,0.6563,1.75,0.6875,1.75,0.6563,1.8125,0.6875,1.75,0.6875,1.8125,0.6875,1.8125,0.6875,1.75,0.7188,1.75,0.6875,1.8125,0.7188,1.75,0.7188,1.8125,0.7188,1.8125,0.7188,1.75,0.75,1.75,0.7188,1.8125,0.75,1.75,0.75,1.8125,0.75,1.8125,0.75,1.75,0.7813,1.75,0.75,1.8125,0.7813,1.75,0.7813,1.8125,0.7813,1.8125,0.7813,1.75,0.8125,1.75,0.7813,1.8125,0.8125,1.75,0.8125,1.8125,0.8125,1.8125,0.8125,1.75,0.8438,1.75,0.8125,1.8125,0.8438,1.75,0.8438,1.8125,0.8438,1.8125,0.8438,1.75,0.875,1.75,0.8438,1.8125,0.875,1.75,0.875,1.8125,0.875,1.8125,0.875,1.75,0.9063,1.75,0.875,1.8125,0.9063,1.75,0.9063,1.8125,0.9063,1.8125,0.9063,1.75,0.9375,1.75,0.9063,1.8125,0.9375,1.75,0.9375,1.8125,0.9375,1.8125,0.9375,1.75,0.9688,1.75,0.9375,1.8125,0.9688,1.75,0.9688,1.8125,0.9688,1.8125,0.9688,1.75,1.0,1.75,0.9688,1.8125,1.0,1.75,1.0,1.8125,0.0,1.75,0.0,1.6875,0.0312,1.6875,0.0,1.75,0.0312,1.6875,0.0312,1.75,0.0312,1.75,0.0312,1.6875,0.0625,1.6875,0.0312,1.75,0.0625,1.6875,0.0625,1.75,0.0625,1.75,0.0625,1.6875,0.0938,1.6875,0.0625,1.75,0.0938,1.6875,0.0938,1.75,0.0938,1.75,0.0938,1.6875,0.125,1.6875,0.0938,1.75,0.125,1.6875,0.125,1.75,0.125,1.75,0.125,1.6875,0.1562,1.6875,0.125,1.75,0.1562,1.6875,0.1562,1.75,0.1562,1.75,0.1562,1.6875,0.1875,1.6875,0.1562,1.75,0.1875,1.6875,0.1875,1.75,0.1875,1.75,0.1875,1.6875,0.2187,1.6875,0.1875,1.75,0.2187,1.6875,0.2187,1.75,0.2187,1.75,0.2187,1.6875,0.25,1.6875,0.2187,1.75,0.25,1.6875,0.25,1.75,0.25,1.75,0.25,1.6875,0.2812,1.6875,0.25,1.75,0.2812,1.6875,0.2812,1.75,0.2812,1.75,0.2812,1.6875,0.3125,1.6875,0.2812,1.75,0.3125,1.6875,0.3125,1.75,0.3125,1.75,0.3125,1.6875,0.3437,1.6875,0.3125,1.75,0.3437,1.6875,0.3437,1.75,0.3437,1.75,0.3437,1.6875,0.375,1.6875,0.3437,1.75,0.375,1.6875,0.375,1.75,0.375,1.75,0.375,1.6875,0.4062,1.6875,0.375,1.75,0.4062,1.6875,0.4062,1.75,0.4062,1.75,0.4062,1.6875,0.4375,1.6875,0.4062,1.75,0.4375,1.6875,0.4375,1.75,0.4375,1.75,0.4375,1.6875,0.4688,1.6875,0.4375,1.75,0.4688,1.6875,0.4688,1.75,0.4688,1.75,0.4688,1.6875,0.5,1.6875,0.4688,1.75,0.5,1.6875,0.5,1.75,0.5,1.75,0.5,1.6875,0.5313,1.6875,0.5,1.75,0.5313,1.6875,0.5313,1.75,0.5313,1.75,0.5313,1.6875,0.5625,1.6875,0.5313,1.75,0.5625,1.6875,0.5625,1.75,0.5625,1.75,0.5625,1.6875,0.5938,1.6875,0.5625,1.75,0.5938,1.6875,0.5938,1.75,0.5938,1.75,0.5938,1.6875,0.625,1.6875,0.5938,1.75,0.625,1.6875,0.625,1.75,0.625,1.75,0.625,1.6875,0.6563,1.6875,0.625,1.75,0.6563,1.6875,0.6563,1.75,0.6563,1.75,0.6563,1.6875,0.6875,1.6875,0.6563,1.75,0.6875,1.6875,0.6875,1.75,0.6875,1.75,0.6875,1.6875,0.7188,1.6875,0.6875,1.75,0.7188,1.6875,0.7188,1.75,0.7188,1.75,0.7188,1.6875,0.75,1.6875,0.7188,1.75,0.75,1.6875,0.75,1.75,0.75,1.75,0.75,1.6875,0.7813,1.6875,0.75,1.75,0.7813,1.6875,0.7813,1.75,0.7813,1.75,0.7813,1.6875,0.8125,1.6875,0.7813,1.75,0.8125,1.6875,0.8125,1.75,0.8125,1.75,0.8125,1.6875,0.8438,1.6875,0.8125,1.75,0.8438,1.6875,0.8438,1.75,0.8438,1.75,0.8438,1.6875,0.875,1.6875,0.8438,1.75,0.875,1.6875,0.875,1.75,0.875,1.75,0.875,1.6875,0.9063,1.6875,0.875,1.75,0.9063,1.6875,0.9063,1.75,0.9063,1.75,0.9063,1.6875,0.9375,1.6875,0.9063,1.75,0.9375,1.6875,0.9375,1.75,0.9375,1.75,0.9375,1.6875,0.9688,1.6875,0.9375,1.75,0.9688,1.6875,0.9688,1.75,0.9688,1.75,0.9688,1.6875,1.0,1.6875,0.9688,1.75,1.0,1.6875,1.0,1.75,0.0,1.6875,0.0,1.625,0.0312,1.625,0.0,1.6875,0.0312,1.625,0.0312,1.6875,0.0312,1.6875,0.0312,1.625,0.0625,1.625,0.0312,1.6875,0.0625,1.625,0.0625,1.6875,0.0625,1.6875,0.0625,1.625,0.0938,1.625,0.0625,1.6875,0.0938,1.625,0.0938,1.6875,0.0938,1.6875,0.0938,1.625,0.125,1.625,0.0938,1.6875,0.125,1.625,0.125,1.6875,0.125,1.6875,0.125,1.625,0.1562,1.625,0.125,1.6875,0.1562,1.625,0.1562,1.6875,0.1562,1.6875,0.1562,1.625,0.1875,1.625,0.1562,1.6875,0.1875,1.625,0.1875,1.6875,0.1875,1.6875,0.1875,1.625,0.2187,1.625,0.1875,1.6875,0.2187,1.625,0.2187,1.6875,0.2187,1.6875,0.2187,1.625,0.25,1.625,0.2187,1.6875,0.25,1.625,0.25,1.6875,0.25,1.6875,0.25,1.625,0.2812,1.625,0.25,1.6875,0.2812,1.625,0.2812,1.6875,0.2812,1.6875,0.2812,1.625,0.3125,1.625,0.2812,1.6875,0.3125,1.625,0.3125,1.6875,0.3125,1.6875,0.3125,1.625,0.3437,1.625,0.3125,1.6875,0.3437,1.625,0.3437,1.6875,0.3437,1.6875,0.3437,1.625,0.375,1.625,0.3437,1.6875,0.375,1.625,0.375,1.6875,0.375,1.6875,0.375,1.625,0.4062,1.625,0.375,1.6875,0.4062,1.625,0.4062,1.6875,0.4062,1.6875,0.4062,1.625,0.4375,1.625,0.4062,1.6875,0.4375,1.625,0.4375,1.6875,0.4375,1.6875,0.4375,1.625,0.4688,1.625,0.4375,1.6875,0.4688,1.625,0.4688,1.6875,0.4688,1.6875,0.4688,1.625,0.5,1.625,0.4688,1.6875,0.5,1.625,0.5,1.6875,0.5,1.6875,0.5,1.625,0.5313,1.625,0.5,1.6875,0.5313,1.625,0.5313,1.6875,0.5313,1.6875,0.5313,1.625,0.5625,1.625,0.5313,1.6875,0.5625,1.625,0.5625,1.6875,0.5625,1.6875,0.5625,1.625,0.5938,1.625,0.5625,1.6875,0.5938,1.625,0.5938,1.6875,0.5938,1.6875,0.5938,1.625,0.625,1.625,0.5938,1.6875,0.625,1.625,0.625,1.6875,0.625,1.6875,0.625,1.625,0.6563,1.625,0.625,1.6875,0.6563,1.625,0.6563,1.6875,0.6563,1.6875,0.6563,1.625,0.6875,1.625,0.6563,1.6875,0.6875,1.625,0.6875,1.6875,0.6875,1.6875,0.6875,1.625,0.7188,1.625,0.6875,1.6875,0.7188,1.625,0.7188,1.6875,0.7188,1.6875,0.7188,1.625,0.75,1.625,0.7188,1.6875,0.75,1.625,0.75,1.6875,0.75,1.6875,0.75,1.625,0.7813,1.625,0.75,1.6875,0.7813,1.625,0.7813,1.6875,0.7813,1.6875,0.7813,1.625,0.8125,1.625,0.7813,1.6875,0.8125,1.625,0.8125,1.6875,0.8125,1.6875,0.8125,1.625,0.8438,1.625,0.8125,1.6875,0.8438,1.625,0.8438,1.6875,0.8438,1.6875,0.8438,1.625,0.875,1.625,0.8438,1.6875,0.875,1.625,0.875,1.6875,0.875,1.6875,0.875,1.625,0.9063,1.625,0.875,1.6875,0.9063,1.625,0.9063,1.6875,0.9063,1.6875,0.9063,1.625,0.9375,1.625,0.9063,1.6875,0.9375,1.625,0.9375,1.6875,0.9375,1.6875,0.9375,1.625,0.9688,1.625,0.9375,1.6875,0.9688,1.625,0.9688,1.6875,0.9688,1.6875,0.9688,1.625,1.0,1.625,0.9688,1.6875,1.0,1.625,1.0,1.6875,0.0,1.625,0.0,1.5625,0.0312,1.5625,0.0,1.625,0.0312,1.5625,0.0312,1.625,0.0312,1.625,0.0312,1.5625,0.0625,1.5625,0.0312,1.625,0.0625,1.5625,0.0625,1.625,0.0625,1.625,0.0625,1.5625,0.0938,1.5625,0.0625,1.625,0.0938,1.5625,0.0938,1.625,0.0938,1.625,0.0938,1.5625,0.125,1.5625,0.0938,1.625,0.125,1.5625,0.125,1.625,0.125,1.625,0.125,1.5625,0.1562,1.5625,0.125,1.625,0.1562,1.5625,0.1562,1.625,0.1562,1.625,0.1562,1.5625,0.1875,1.5625,0.1562,1.625,0.1875,1.5625,0.1875,1.625,0.1875,1.625,0.1875,1.5625,0.2187,1.5625,0.1875,1.625,0.2187,1.5625,0.2187,1.625,0.2187,1.625,0.2187,1.5625,0.25,1.5625,0.2187,1.625,0.25,1.5625,0.25,1.625,0.25,1.625,0.25,1.5625,0.2812,1.5625,0.25,1.625,0.2812,1.5625,0.2812,1.625,0.2812,1.625,0.2812,1.5625,0.3125,1.5625,0.2812,1.625,0.3125,1.5625,0.3125,1.625,0.3125,1.625,0.3125,1.5625,0.3437,1.5625,0.3125,1.625,0.3437,1.5625,0.3437,1.625,0.3437,1.625,0.3437,1.5625,0.375,1.5625,0.3437,1.625,0.375,1.5625,0.375,1.625,0.375,1.625,0.375,1.5625,0.4062,1.5625,0.375,1.625,0.4062,1.5625,0.4062,1.625,0.4062,1.625,0.4062,1.5625,0.4375,1.5625,0.4062,1.625,0.4375,1.5625,0.4375,1.625,0.4375,1.625,0.4375,1.5625,0.4688,1.5625,0.4375,1.625,0.4688,1.5625,0.4688,1.625,0.4688,1.625,0.4688,1.5625,0.5,1.5625,0.4688,1.625,0.5,1.5625,0.5,1.625,0.5,1.625,0.5,1.5625,0.5313,1.5625,0.5,1.625,0.5313,1.5625,0.5313,1.625,0.5313,1.625,0.5313,1.5625,0.5625,1.5625,0.5313,1.625,0.5625,1.5625,0.5625,1.625,0.5625,1.625,0.5625,1.5625,0.5938,1.5625,0.5625,1.625,0.5938,1.5625,0.5938,1.625,0.5938,1.625,0.5938,1.5625,0.625,1.5625,0.5938,1.625,0.625,1.5625,0.625,1.625,0.625,1.625,0.625,1.5625,0.6563,1.5625,0.625,1.625,0.6563,1.5625,0.6563,1.625,0.6563,1.625,0.6563,1.5625,0.6875,1.5625,0.6563,1.625,0.6875,1.5625,0.6875,1.625,0.6875,1.625,0.6875,1.5625,0.7188,1.5625,0.6875,1.625,0.7188,1.5625,0.7188,1.625,0.7188,1.625,0.7188,1.5625,0.75,1.5625,0.7188,1.625,0.75,1.5625,0.75,1.625,0.75,1.625,0.75,1.5625,0.7813,1.5625,0.75,1.625,0.7813,1.5625,0.7813,1.625,0.7813,1.625,0.7813,1.5625,0.8125,1.5625,0.7813,1.625,0.8125,1.5625,0.8125,1.625,0.8125,1.625,0.8125,1.5625,0.8438,1.5625,0.8125,1.625,0.8438,1.5625,0.8438,1.625,0.8438,1.625,0.8438,1.5625,0.875,1.5625,0.8438,1.625,0.875,1.5625,0.875,1.625,0.875,1.625,0.875,1.5625,0.9063,1.5625,0.875,1.625,0.9063,1.5625,0.9063,1.625,0.9063,1.625,0.9063,1.5625,0.9375,1.5625,0.9063,1.625,0.9375,1.5625,0.9375,1.625,0.9375,1.625,0.9375,1.5625,0.9688,1.5625,0.9375,1.625,0.9688,1.5625,0.9688,1.625,0.9688,1.625,0.9688,1.5625,1.0,1.5625,0.9688,1.625,1.0,1.5625,1.0,1.625,0.0,1.5625,0.0,1.5,0.0312,1.5,0.0,1.5625,0.0312,1.5,0.0312,1.5625,0.0312,1.5625,0.0312,1.5,0.0625,1.5,0.0312,1.5625,0.0625,1.5,0.0625,1.5625,0.0625,1.5625,0.0625,1.5,0.0938,1.5,0.0625,1.5625,0.0938,1.5,0.0938,1.5625,0.0938,1.5625,0.0938,1.5,0.125,1.5,0.0938,1.5625,0.125,1.5,0.125,1.5625,0.125,1.5625,0.125,1.5,0.1562,1.5,0.125,1.5625,0.1562,1.5,0.1562,1.5625,0.1562,1.5625,0.1562,1.5,0.1875,1.5,0.1562,1.5625,0.1875,1.5,0.1875,1.5625,0.1875,1.5625,0.1875,1.5,0.2187,1.5,0.1875,1.5625,0.2187,1.5,0.2187,1.5625,0.2187,1.5625,0.2187,1.5,0.25,1.5,0.2187,1.5625,0.25,1.5,0.25,1.5625,0.25,1.5625,0.25,1.5,0.2812,1.5,0.25,1.5625,0.2812,1.5,0.2812,1.5625,0.2812,1.5625,0.2812,1.5,0.3125,1.5,0.2812,1.5625,0.3125,1.5,0.3125,1.5625,0.3125,1.5625,0.3125,1.5,0.3437,1.5,0.3125,1.5625,0.3437,1.5,0.3437,1.5625,0.3437,1.5625,0.3437,1.5,0.375,1.5,0.3437,1.5625,0.375,1.5,0.375,1.5625,0.375,1.5625,0.375,1.5,0.4062,1.5,0.375,1.5625,0.4062,1.5,0.4062,1.5625,0.4062,1.5625,0.4062,1.5,0.4375,1.5,0.4062,1.5625,0.4375,1.5,0.4375,1.5625,0.4375,1.5625,0.4375,1.5,0.4688,1.5,0.4375,1.5625,0.4688,1.5,0.4688,1.5625,0.4688,1.5625,0.4688,1.5,0.5,1.5,0.4688,1.5625,0.5,1.5,0.5,1.5625,0.5,1.5625,0.5,1.5,0.5313,1.5,0.5,1.5625,0.5313,1.5,0.5313,1.5625,0.5313,1.5625,0.5313,1.5,0.5625,1.5,0.5313,1.5625,0.5625,1.5,0.5625,1.5625,0.5625,1.5625,0.5625,1.5,0.5938,1.5,0.5625,1.5625,0.5938,1.5,0.5938,1.5625,0.5938,1.5625,0.5938,1.5,0.625,1.5,0.5938,1.5625,0.625,1.5,0.625,1.5625,0.625,1.5625,0.625,1.5,0.6563,1.5,0.625,1.5625,0.6563,1.5,0.6563,1.5625,0.6563,1.5625,0.6563,1.5,0.6875,1.5,0.6563,1.5625,0.6875,1.5,0.6875,1.5625,0.6875,1.5625,0.6875,1.5,0.7188,1.5,0.6875,1.5625,0.7188,1.5,0.7188,1.5625,0.7188,1.5625,0.7188,1.5,0.75,1.5,0.7188,1.5625,0.75,1.5,0.75,1.5625,0.75,1.5625,0.75,1.5,0.7813,1.5,0.75,1.5625,0.7813,1.5,0.7813,1.5625,0.7813,1.5625,0.7813,1.5,0.8125,1.5,0.7813,1.5625,0.8125,1.5,0.8125,1.5625,0.8125,1.5625,0.8125,1.5,0.8438,1.5,0.8125,1.5625,0.8438,1.5,0.8438,1.5625,0.8438,1.5625,0.8438,1.5,0.875,1.5,0.8438,1.5625,0.875,1.5,0.875,1.5625,0.875,1.5625,0.875,1.5,0.9063,1.5,0.875,1.5625,0.9063,1.5,0.9063,1.5625,0.9063,1.5625,0.9063,1.5,0.9375,1.5,0.9063,1.5625,0.9375,1.5,0.9375,1.5625,0.9375,1.5625,0.9375,1.5,0.9688,1.5,0.9375,1.5625,0.9688,1.5,0.9688,1.5625,0.9688,1.5625,0.9688,1.5,1.0,1.5,0.9688,1.5625,1.0,1.5,1.0,1.5625,0.0,1.5,0.0,1.4375,0.0312,1.4375,0.0,1.5,0.0312,1.4375,0.0312,1.5,0.0312,1.5,0.0312,1.4375,0.0625,1.4375,0.0312,1.5,0.0625,1.4375,0.0625,1.5,0.0625,1.5,0.0625,1.4375,0.0938,1.4375,0.0625,1.5,0.0938,1.4375,0.0938,1.5,0.0938,1.5,0.0938,1.4375,0.125,1.4375,0.0938,1.5,0.125,1.4375,0.125,1.5,0.125,1.5,0.125,1.4375,0.1562,1.4375,0.125,1.5,0.1562,1.4375,0.1562,1.5,0.1562,1.5,0.1562,1.4375,0.1875,1.4375,0.1562,1.5,0.1875,1.4375,0.1875,1.5,0.1875,1.5,0.1875,1.4375,0.2187,1.4375,0.1875,1.5,0.2187,1.4375,0.2187,1.5,0.2187,1.5,0.2187,1.4375,0.25,1.4375,0.2187,1.5,0.25,1.4375,0.25,1.5,0.25,1.5,0.25,1.4375,0.2812,1.4375,0.25,1.5,0.2812,1.4375,0.2812,1.5,0.2812,1.5,0.2812,1.4375,0.3125,1.4375,0.2812,1.5,0.3125,1.4375,0.3125,1.5,0.3125,1.5,0.3125,1.4375,0.3437,1.4375,0.3125,1.5,0.3437,1.4375,0.3437,1.5,0.3437,1.5,0.3437,1.4375,0.375,1.4375,0.3437,1.5,0.375,1.4375,0.375,1.5,0.375,1.5,0.375,1.4375,0.4062,1.4375,0.375,1.5,0.4062,1.4375,0.4062,1.5,0.4062,1.5,0.4062,1.4375,0.4375,1.4375,0.4062,1.5,0.4375,1.4375,0.4375,1.5,0.4375,1.5,0.4375,1.4375,0.4688,1.4375,0.4375,1.5,0.4688,1.4375,0.4688,1.5,0.4688,1.5,0.4688,1.4375,0.5,1.4375,0.4688,1.5,0.5,1.4375,0.5,1.5,0.5,1.5,0.5,1.4375,0.5313,1.4375,0.5,1.5,0.5313,1.4375,0.5313,1.5,0.5313,1.5,0.5313,1.4375,0.5625,1.4375,0.5313,1.5,0.5625,1.4375,0.5625,1.5,0.5625,1.5,0.5625,1.4375,0.5938,1.4375,0.5625,1.5,0.5938,1.4375,0.5938,1.5,0.5938,1.5,0.5938,1.4375,0.625,1.4375,0.5938,1.5,0.625,1.4375,0.625,1.5,0.625,1.5,0.625,1.4375,0.6563,1.4375,0.625,1.5,0.6563,1.4375,0.6563,1.5,0.6563,1.5,0.6563,1.4375,0.6875,1.4375,0.6563,1.5,0.6875,1.4375,0.6875,1.5,0.6875,1.5,0.6875,1.4375,0.7188,1.4375,0.6875,1.5,0.7188,1.4375,0.7188,1.5,0.7188,1.5,0.7188,1.4375,0.75,1.4375,0.7188,1.5,0.75,1.4375,0.75,1.5,0.75,1.5,0.75,1.4375,0.7813,1.4375,0.75,1.5,0.7813,1.4375,0.7813,1.5,0.7813,1.5,0.7813,1.4375,0.8125,1.4375,0.7813,1.5,0.8125,1.4375,0.8125,1.5,0.8125,1.5,0.8125,1.4375,0.8438,1.4375,0.8125,1.5,0.8438,1.4375,0.8438,1.5,0.8438,1.5,0.8438,1.4375,0.875,1.4375,0.8438,1.5,0.875,1.4375,0.875,1.5,0.875,1.5,0.875,1.4375,0.9063,1.4375,0.875,1.5,0.9063,1.4375,0.9063,1.5,0.9063,1.5,0.9063,1.4375,0.9375,1.4375,0.9063,1.5,0.9375,1.4375,0.9375,1.5,0.9375,1.5,0.9375,1.4375,0.9688,1.4375,0.9375,1.5,0.9688,1.4375,0.9688,1.5,0.9688,1.5,0.9688,1.4375,1.0,1.4375,0.9688,1.5,1.0,1.4375,1.0,1.5,0.0,1.4375,0.0,1.375,0.0312,1.375,0.0,1.4375,0.0312,1.375,0.0312,1.4375,0.0312,1.4375,0.0312,1.375,0.0625,1.375,0.0312,1.4375,0.0625,1.375,0.0625,1.4375,0.0625,1.4375,0.0625,1.375,0.0938,1.375,0.0625,1.4375,0.0938,1.375,0.0938,1.4375,0.0938,1.4375,0.0938,1.375,0.125,1.375,0.0938,1.4375,0.125,1.375,0.125,1.4375,0.125,1.4375,0.125,1.375,0.1562,1.375,0.125,1.4375,0.1562,1.375,0.1562,1.4375,0.1562,1.4375,0.1562,1.375,0.1875,1.375,0.1562,1.4375,0.1875,1.375,0.1875,1.4375,0.1875,1.4375,0.1875,1.375,0.2187,1.375,0.1875,1.4375,0.2187,1.375,0.2187,1.4375,0.2187,1.4375,0.2187,1.375,0.25,1.375,0.2187,1.4375,0.25,1.375,0.25,1.4375,0.25,1.4375,0.25,1.375,0.2812,1.375,0.25,1.4375,0.2812,1.375,0.2812,1.4375,0.2812,1.4375,0.2812,1.375,0.3125,1.375,0.2812,1.4375,0.3125,1.375,0.3125,1.4375,0.3125,1.4375,0.3125,1.375,0.3437,1.375,0.3125,1.4375,0.3437,1.375,0.3437,1.4375,0.3437,1.4375,0.3437,1.375,0.375,1.375,0.3437,1.4375,0.375,1.375,0.375,1.4375,0.375,1.4375,0.375,1.375,0.4062,1.375,0.375,1.4375,0.4062,1.375,0.4062,1.4375,0.4062,1.4375,0.4062,1.375,0.4375,1.375,0.4062,1.4375,0.4375,1.375,0.4375,1.4375,0.4375,1.4375,0.4375,1.375,0.4688,1.375,0.4375,1.4375,0.4688,1.375,0.4688,1.4375,0.4688,1.4375,0.4688,1.375,0.5,1.375,0.4688,1.4375,0.5,1.375,0.5,1.4375,0.5,1.4375,0.5,1.375,0.5313,1.375,0.5,1.4375,0.5313,1.375,0.5313,1.4375,0.5313,1.4375,0.5313,1.375,0.5625,1.375,0.5313,1.4375,0.5625,1.375,0.5625,1.4375,0.5625,1.4375,0.5625,1.375,0.5938,1.375,0.5625,1.4375,0.5938,1.375,0.5938,1.4375,0.5938,1.4375,0.5938,1.375,0.625,1.375,0.5938,1.4375,0.625,1.375,0.625,1.4375,0.625,1.4375,0.625,1.375,0.6563,1.375,0.625,1.4375,0.6563,1.375,0.6563,1.4375,0.6563,1.4375,0.6563,1.375,0.6875,1.375,0.6563,1.4375,0.6875,1.375,0.6875,1.4375,0.6875,1.4375,0.6875,1.375,0.7188,1.375,0.6875,1.4375,0.7188,1.375,0.7188,1.4375,0.7188,1.4375,0.7188,1.375,0.75,1.375,0.7188,1.4375,0.75,1.375,0.75,1.4375,0.75,1.4375,0.75,1.375,0.7813,1.375,0.75,1.4375,0.7813,1.375,0.7813,1.4375,0.7813,1.4375,0.7813,1.375,0.8125,1.375,0.7813,1.4375,0.8125,1.375,0.8125,1.4375,0.8125,1.4375,0.8125,1.375,0.8438,1.375,0.8125,1.4375,0.8438,1.375,0.8438,1.4375,0.8438,1.4375,0.8438,1.375,0.875,1.375,0.8438,1.4375,0.875,1.375,0.875,1.4375,0.875,1.4375,0.875,1.375,0.9063,1.375,0.875,1.4375,0.9063,1.375,0.9063,1.4375,0.9063,1.4375,0.9063,1.375,0.9375,1.375,0.9063,1.4375,0.9375,1.375,0.9375,1.4375,0.9375,1.4375,0.9375,1.375,0.9688,1.375,0.9375,1.4375,0.9688,1.375,0.9688,1.4375,0.9688,1.4375,0.9688,1.375,1.0,1.375,0.9688,1.4375,1.0,1.375,1.0,1.4375,0.0,1.375,0.0,1.3125,0.0312,1.3125,0.0,1.375,0.0312,1.3125,0.0312,1.375,0.0312,1.375,0.0312,1.3125,0.0625,1.3125,0.0312,1.375,0.0625,1.3125,0.0625,1.375,0.0625,1.375,0.0625,1.3125,0.0938,1.3125,0.0625,1.375,0.0938,1.3125,0.0938,1.375,0.0938,1.375,0.0938,1.3125,0.125,1.3125,0.0938,1.375,0.125,1.3125,0.125,1.375,0.125,1.375,0.125,1.3125,0.1562,1.3125,0.125,1.375,0.1562,1.3125,0.1562,1.375,0.1562,1.375,0.1562,1.3125,0.1875,1.3125,0.1562,1.375,0.1875,1.3125,0.1875,1.375,0.1875,1.375,0.1875,1.3125,0.2187,1.3125,0.1875,1.375,0.2187,1.3125,0.2187,1.375,0.2187,1.375,0.2187,1.3125,0.25,1.3125,0.2187,1.375,0.25,1.3125,0.25,1.375,0.25,1.375,0.25,1.3125,0.2812,1.3125,0.25,1.375,0.2812,1.3125,0.2812,1.375,0.2812,1.375,0.2812,1.3125,0.3125,1.3125,0.2812,1.375,0.3125,1.3125,0.3125,1.375,0.3125,1.375,0.3125,1.3125,0.3437,1.3125,0.3125,1.375,0.3437,1.3125,0.3437,1.375,0.3437,1.375,0.3437,1.3125,0.375,1.3125,0.3437,1.375,0.375,1.3125,0.375,1.375,0.375,1.375,0.375,1.3125,0.4062,1.3125,0.375,1.375,0.4062,1.3125,0.4062,1.375,0.4062,1.375,0.4062,1.3125,0.4375,1.3125,0.4062,1.375,0.4375,1.3125,0.4375,1.375,0.4375,1.375,0.4375,1.3125,0.4688,1.3125,0.4375,1.375,0.4688,1.3125,0.4688,1.375,0.4688,1.375,0.4688,1.3125,0.5,1.3125,0.4688,1.375,0.5,1.3125,0.5,1.375,0.5,1.375,0.5,1.3125,0.5313,1.3125,0.5,1.375,0.5313,1.3125,0.5313,1.375,0.5313,1.375,0.5313,1.3125,0.5625,1.3125,0.5313,1.375,0.5625,1.3125,0.5625,1.375,0.5625,1.375,0.5625,1.3125,0.5938,1.3125,0.5625,1.375,0.5938,1.3125,0.5938,1.375,0.5938,1.375,0.5938,1.3125,0.625,1.3125,0.5938,1.375,0.625,1.3125,0.625,1.375,0.625,1.375,0.625,1.3125,0.6563,1.3125,0.625,1.375,0.6563,1.3125,0.6563,1.375,0.6563,1.375,0.6563,1.3125,0.6875,1.3125,0.6563,1.375,0.6875,1.3125,0.6875,1.375,0.6875,1.375,0.6875,1.3125,0.7188,1.3125,0.6875,1.375,0.7188,1.3125,0.7188,1.375,0.7188,1.375,0.7188,1.3125,0.75,1.3125,0.7188,1.375,0.75,1.3125,0.75,1.375,0.75,1.375,0.75,1.3125,0.7813,1.3125,0.75,1.375,0.7813,1.3125,0.7813,1.375,0.7813,1.375,0.7813,1.3125,0.8125,1.3125,0.7813,1.375,0.8125,1.3125,0.8125,1.375,0.8125,1.375,0.8125,1.3125,0.8438,1.3125,0.8125,1.375,0.8438,1.3125,0.8438,1.375,0.8438,1.375,0.8438,1.3125,0.875,1.3125,0.8438,1.375,0.875,1.3125,0.875,1.375,0.875,1.375,0.875,1.3125,0.9063,1.3125,0.875,1.375,0.9063,1.3125,0.9063,1.375,0.9063,1.375,0.9063,1.3125,0.9375,1.3125,0.9063,1.375,0.9375,1.3125,0.9375,1.375,0.9375,1.375,0.9375,1.3125,0.9688,1.3125,0.9375,1.375,0.9688,1.3125,0.9688,1.375,0.9688,1.375,0.9688,1.3125,1.0,1.3125,0.9688,1.375,1.0,1.3125,1.0,1.375,0.0,1.3125,0.0,1.25,0.0312,1.25,0.0,1.3125,0.0312,1.25,0.0312,1.3125,0.0312,1.3125,0.0312,1.25,0.0625,1.25,0.0312,1.3125,0.0625,1.25,0.0625,1.3125,0.0625,1.3125,0.0625,1.25,0.0938,1.25,0.0625,1.3125,0.0938,1.25,0.0938,1.3125,0.0938,1.3125,0.0938,1.25,0.125,1.25,0.0938,1.3125,0.125,1.25,0.125,1.3125,0.125,1.3125,0.125,1.25,0.1562,1.25,0.125,1.3125,0.1562,1.25,0.1562,1.3125,0.1562,1.3125,0.1562,1.25,0.1875,1.25,0.1562,1.3125,0.1875,1.25,0.1875,1.3125,0.1875,1.3125,0.1875,1.25,0.2187,1.25,0.1875,1.3125,0.2187,1.25,0.2187,1.3125,0.2187,1.3125,0.2187,1.25,0.25,1.25,0.2187,1.3125,0.25,1.25,0.25,1.3125,0.25,1.3125,0.25,1.25,0.2812,1.25,0.25,1.3125,0.2812,1.25,0.2812,1.3125,0.2812,1.3125,0.2812,1.25,0.3125,1.25,0.2812,1.3125,0.3125,1.25,0.3125,1.3125,0.3125,1.3125,0.3125,1.25,0.3437,1.25,0.3125,1.3125,0.3437,1.25,0.3437,1.3125,0.3437,1.3125,0.3437,1.25,0.375,1.25,0.3437,1.3125,0.375,1.25,0.375,1.3125,0.375,1.3125,0.375,1.25,0.4062,1.25,0.375,1.3125,0.4062,1.25,0.4062,1.3125,0.4062,1.3125,0.4062,1.25,0.4375,1.25,0.4062,1.3125,0.4375,1.25,0.4375,1.3125,0.4375,1.3125,0.4375,1.25,0.4688,1.25,0.4375,1.3125,0.4688,1.25,0.4688,1.3125,0.4688,1.3125,0.4688,1.25,0.5,1.25,0.4688,1.3125,0.5,1.25,0.5,1.3125,0.5,1.3125,0.5,1.25,0.5313,1.25,0.5,1.3125,0.5313,1.25,0.5313,1.3125,0.5313,1.3125,0.5313,1.25,0.5625,1.25,0.5313,1.3125,0.5625,1.25,0.5625,1.3125,0.5625,1.3125,0.5625,1.25,0.5938,1.25,0.5625,1.3125,0.5938,1.25,0.5938,1.3125,0.5938,1.3125,0.5938,1.25,0.625,1.25,0.5938,1.3125,0.625,1.25,0.625,1.3125,0.625,1.3125,0.625,1.25,0.6563,1.25,0.625,1.3125,0.6563,1.25,0.6563,1.3125,0.6563,1.3125,0.6563,1.25,0.6875,1.25,0.6563,1.3125,0.6875,1.25,0.6875,1.3125,0.6875,1.3125,0.6875,1.25,0.7188,1.25,0.6875,1.3125,0.7188,1.25,0.7188,1.3125,0.7188,1.3125,0.7188,1.25,0.75,1.25,0.7188,1.3125,0.75,1.25,0.75,1.3125,0.75,1.3125,0.75,1.25,0.7813,1.25,0.75,1.3125,0.7813,1.25,0.7813,1.3125,0.7813,1.3125,0.7813,1.25,0.8125,1.25,0.7813,1.3125,0.8125,1.25,0.8125,1.3125,0.8125,1.3125,0.8125,1.25,0.8438,1.25,0.8125,1.3125,0.8438,1.25,0.8438,1.3125,0.8438,1.3125,0.8438,1.25,0.875,1.25,0.8438,1.3125,0.875,1.25,0.875,1.3125,0.875,1.3125,0.875,1.25,0.9063,1.25,0.875,1.3125,0.9063,1.25,0.9063,1.3125,0.9063,1.3125,0.9063,1.25,0.9375,1.25,0.9063,1.3125,0.9375,1.25,0.9375,1.3125,0.9375,1.3125,0.9375,1.25,0.9688,1.25,0.9375,1.3125,0.9688,1.25,0.9688,1.3125,0.9688,1.3125,0.9688,1.25,1.0,1.25,0.9688,1.3125,1.0,1.25,1.0,1.3125,0.0,1.25,0.0,1.1875,0.0312,1.1875,0.0,1.25,0.0312,1.1875,0.0312,1.25,0.0312,1.25,0.0312,1.1875,0.0625,1.1875,0.0312,1.25,0.0625,1.1875,0.0625,1.25,0.0625,1.25,0.0625,1.1875,0.0938,1.1875,0.0625,1.25,0.0938,1.1875,0.0938,1.25,0.0938,1.25,0.0938,1.1875,0.125,1.1875,0.0938,1.25,0.125,1.1875,0.125,1.25,0.125,1.25,0.125,1.1875,0.1562,1.1875,0.125,1.25,0.1562,1.1875,0.1562,1.25,0.1562,1.25,0.1562,1.1875,0.1875,1.1875,0.1562,1.25,0.1875,1.1875,0.1875,1.25,0.1875,1.25,0.1875,1.1875,0.2187,1.1875,0.1875,1.25,0.2187,1.1875,0.2187,1.25,0.2187,1.25,0.2187,1.1875,0.25,1.1875,0.2187,1.25,0.25,1.1875,0.25,1.25,0.25,1.25,0.25,1.1875,0.2812,1.1875,0.25,1.25,0.2812,1.1875,0.2812,1.25,0.2812,1.25,0.2812,1.1875,0.3125,1.1875,0.2812,1.25,0.3125,1.1875,0.3125,1.25,0.3125,1.25,0.3125,1.1875,0.3437,1.1875,0.3125,1.25,0.3437,1.1875,0.3437,1.25,0.3437,1.25,0.3437,1.1875,0.375,1.1875,0.3437,1.25,0.375,1.1875,0.375,1.25,0.375,1.25,0.375,1.1875,0.4062,1.1875,0.375,1.25,0.4062,1.1875,0.4062,1.25,0.4062,1.25,0.4062,1.1875,0.4375,1.1875,0.4062,1.25,0.4375,1.1875,0.4375,1.25,0.4375,1.25,0.4375,1.1875,0.4688,1.1875,0.4375,1.25,0.4688,1.1875,0.4688,1.25,0.4688,1.25,0.4688,1.1875,0.5,1.1875,0.4688,1.25,0.5,1.1875,0.5,1.25,0.5,1.25,0.5,1.1875,0.5313,1.1875,0.5,1.25,0.5313,1.1875,0.5313,1.25,0.5313,1.25,0.5313,1.1875,0.5625,1.1875,0.5313,1.25,0.5625,1.1875,0.5625,1.25,0.5625,1.25,0.5625,1.1875,0.5938,1.1875,0.5625,1.25,0.5938,1.1875,0.5938,1.25,0.5938,1.25,0.5938,1.1875,0.625,1.1875,0.5938,1.25,0.625,1.1875,0.625,1.25,0.625,1.25,0.625,1.1875,0.6563,1.1875,0.625,1.25,0.6563,1.1875,0.6563,1.25,0.6563,1.25,0.6563,1.1875,0.6875,1.1875,0.6563,1.25,0.6875,1.1875,0.6875,1.25,0.6875,1.25,0.6875,1.1875,0.7188,1.1875,0.6875,1.25,0.7188,1.1875,0.7188,1.25,0.7188,1.25,0.7188,1.1875,0.75,1.1875,0.7188,1.25,0.75,1.1875,0.75,1.25,0.75,1.25,0.75,1.1875,0.7813,1.1875,0.75,1.25,0.7813,1.1875,0.7813,1.25,0.7813,1.25,0.7813,1.1875,0.8125,1.1875,0.7813,1.25,0.8125,1.1875,0.8125,1.25,0.8125,1.25,0.8125,1.1875,0.8438,1.1875,0.8125,1.25,0.8438,1.1875,0.8438,1.25,0.8438,1.25,0.8438,1.1875,0.875,1.1875,0.8438,1.25,0.875,1.1875,0.875,1.25,0.875,1.25,0.875,1.1875,0.9063,1.1875,0.875,1.25,0.9063,1.1875,0.9063,1.25,0.9063,1.25,0.9063,1.1875,0.9375,1.1875,0.9063,1.25,0.9375,1.1875,0.9375,1.25,0.9375,1.25,0.9375,1.1875,0.9688,1.1875,0.9375,1.25,0.9688,1.1875,0.9688,1.25,0.9688,1.25,0.9688,1.1875,1.0,1.1875,0.9688,1.25,1.0,1.1875,1.0,1.25,0.0,1.1875,0.0,1.125,0.0312,1.125,0.0,1.1875,0.0312,1.125,0.0312,1.1875,0.0312,1.1875,0.0312,1.125,0.0625,1.125,0.0312,1.1875,0.0625,1.125,0.0625,1.1875,0.0625,1.1875,0.0625,1.125,0.0938,1.125,0.0625,1.1875,0.0938,1.125,0.0938,1.1875,0.0938,1.1875,0.0938,1.125,0.125,1.125,0.0938,1.1875,0.125,1.125,0.125,1.1875,0.125,1.1875,0.125,1.125,0.1562,1.125,0.125,1.1875,0.1562,1.125,0.1562,1.1875,0.1562,1.1875,0.1562,1.125,0.1875,1.125,0.1562,1.1875,0.1875,1.125,0.1875,1.1875,0.1875,1.1875,0.1875,1.125,0.2187,1.125,0.1875,1.1875,0.2187,1.125,0.2187,1.1875,0.2187,1.1875,0.2187,1.125,0.25,1.125,0.2187,1.1875,0.25,1.125,0.25,1.1875,0.25,1.1875,0.25,1.125,0.2812,1.125,0.25,1.1875,0.2812,1.125,0.2812,1.1875,0.2812,1.1875,0.2812,1.125,0.3125,1.125,0.2812,1.1875,0.3125,1.125,0.3125,1.1875,0.3125,1.1875,0.3125,1.125,0.3437,1.125,0.3125,1.1875,0.3437,1.125,0.3437,1.1875,0.3437,1.1875,0.3437,1.125,0.375,1.125,0.3437,1.1875,0.375,1.125,0.375,1.1875,0.375,1.1875,0.375,1.125,0.4062,1.125,0.375,1.1875,0.4062,1.125,0.4062,1.1875,0.4062,1.1875,0.4062,1.125,0.4375,1.125,0.4062,1.1875,0.4375,1.125,0.4375,1.1875,0.4375,1.1875,0.4375,1.125,0.4688,1.125,0.4375,1.1875,0.4688,1.125,0.4688,1.1875,0.4688,1.1875,0.4688,1.125,0.5,1.125,0.4688,1.1875,0.5,1.125,0.5,1.1875,0.5,1.1875,0.5,1.125,0.5313,1.125,0.5,1.1875,0.5313,1.125,0.5313,1.1875,0.5313,1.1875,0.5313,1.125,0.5625,1.125,0.5313,1.1875,0.5625,1.125,0.5625,1.1875,0.5625,1.1875,0.5625,1.125,0.5938,1.125,0.5625,1.1875,0.5938,1.125,0.5938,1.1875,0.5938,1.1875,0.5938,1.125,0.625,1.125,0.5938,1.1875,0.625,1.125,0.625,1.1875,0.625,1.1875,0.625,1.125,0.6563,1.125,0.625,1.1875,0.6563,1.125,0.6563,1.1875,0.6563,1.1875,0.6563,1.125,0.6875,1.125,0.6563,1.1875,0.6875,1.125,0.6875,1.1875,0.6875,1.1875,0.6875,1.125,0.7188,1.125,0.6875,1.1875,0.7188,1.125,0.7188,1.1875,0.7188,1.1875,0.7188,1.125,0.75,1.125,0.7188,1.1875,0.75,1.125,0.75,1.1875,0.75,1.1875,0.75,1.125,0.7813,1.125,0.75,1.1875,0.7813,1.125,0.7813,1.1875,0.7813,1.1875,0.7813,1.125,0.8125,1.125,0.7813,1.1875,0.8125,1.125,0.8125,1.1875,0.8125,1.1875,0.8125,1.125,0.8438,1.125,0.8125,1.1875,0.8438,1.125,0.8438,1.1875,0.8438,1.1875,0.8438,1.125,0.875,1.125,0.8438,1.1875,0.875,1.125,0.875,1.1875,0.875,1.1875,0.875,1.125,0.9063,1.125,0.875,1.1875,0.9063,1.125,0.9063,1.1875,0.9063,1.1875,0.9063,1.125,0.9375,1.125,0.9063,1.1875,0.9375,1.125,0.9375,1.1875,0.9375,1.1875,0.9375,1.125,0.9688,1.125,0.9375,1.1875,0.9688,1.125,0.9688,1.1875,0.9688,1.1875,0.9688,1.125,1.0,1.125,0.9688,1.1875,1.0,1.125,1.0,1.1875,0.0,1.125,0.0,1.0625,0.0312,1.0625,0.0,1.125,0.0312,1.0625,0.0312,1.125,0.0312,1.125,0.0312,1.0625,0.0625,1.0625,0.0312,1.125,0.0625,1.0625,0.0625,1.125,0.0625,1.125,0.0625,1.0625,0.0938,1.0625,0.0625,1.125,0.0938,1.0625,0.0938,1.125,0.0938,1.125,0.0938,1.0625,0.125,1.0625,0.0938,1.125,0.125,1.0625,0.125,1.125,0.125,1.125,0.125,1.0625,0.1562,1.0625,0.125,1.125,0.1562,1.0625,0.1562,1.125,0.1562,1.125,0.1562,1.0625,0.1875,1.0625,0.1562,1.125,0.1875,1.0625,0.1875,1.125,0.1875,1.125,0.1875,1.0625,0.2187,1.0625,0.1875,1.125,0.2187,1.0625,0.2187,1.125,0.2187,1.125,0.2187,1.0625,0.25,1.0625,0.2187,1.125,0.25,1.0625,0.25,1.125,0.25,1.125,0.25,1.0625,0.2812,1.0625,0.25,1.125,0.2812,1.0625,0.2812,1.125,0.2812,1.125,0.2812,1.0625,0.3125,1.0625,0.2812,1.125,0.3125,1.0625,0.3125,1.125,0.3125,1.125,0.3125,1.0625,0.3437,1.0625,0.3125,1.125,0.3437,1.0625,0.3437,1.125,0.3437,1.125,0.3437,1.0625,0.375,1.0625,0.3437,1.125,0.375,1.0625,0.375,1.125,0.375,1.125,0.375,1.0625,0.4062,1.0625,0.375,1.125,0.4062,1.0625,0.4062,1.125,0.4062,1.125,0.4062,1.0625,0.4375,1.0625,0.4062,1.125,0.4375,1.0625,0.4375,1.125,0.4375,1.125,0.4375,1.0625,0.4688,1.0625,0.4375,1.125,0.4688,1.0625,0.4688,1.125,0.4688,1.125,0.4688,1.0625,0.5,1.0625,0.4688,1.125,0.5,1.0625,0.5,1.125,0.5,1.125,0.5,1.0625,0.5313,1.0625,0.5,1.125,0.5313,1.0625,0.5313,1.125,0.5313,1.125,0.5313,1.0625,0.5625,1.0625,0.5313,1.125,0.5625,1.0625,0.5625,1.125,0.5625,1.125,0.5625,1.0625,0.5938,1.0625,0.5625,1.125,0.5938,1.0625,0.5938,1.125,0.5938,1.125,0.5938,1.0625,0.625,1.0625,0.5938,1.125,0.625,1.0625,0.625,1.125,0.625,1.125,0.625,1.0625,0.6563,1.0625,0.625,1.125,0.6563,1.0625,0.6563,1.125,0.6563,1.125,0.6563,1.0625,0.6875,1.0625,0.6563,1.125,0.6875,1.0625,0.6875,1.125,0.6875,1.125,0.6875,1.0625,0.7188,1.0625,0.6875,1.125,0.7188,1.0625,0.7188,1.125,0.7188,1.125,0.7188,1.0625,0.75,1.0625,0.7188,1.125,0.75,1.0625,0.75,1.125,0.75,1.125,0.75,1.0625,0.7813,1.0625,0.75,1.125,0.7813,1.0625,0.7813,1.125,0.7813,1.125,0.7813,1.0625,0.8125,1.0625,0.7813,1.125,0.8125,1.0625,0.8125,1.125,0.8125,1.125,0.8125,1.0625,0.8438,1.0625,0.8125,1.125,0.8438,1.0625,0.8438,1.125,0.8438,1.125,0.8438,1.0625,0.875,1.0625,0.8438,1.125,0.875,1.0625,0.875,1.125,0.875,1.125,0.875,1.0625,0.9063,1.0625,0.875,1.125,0.9063,1.0625,0.9063,1.125,0.9063,1.125,0.9063,1.0625,0.9375,1.0625,0.9063,1.125,0.9375,1.0625,0.9375,1.125,0.9375,1.125,0.9375,1.0625,0.9688,1.0625,0.9375,1.125,0.9688,1.0625,0.9688,1.125,0.9688,1.125,0.9688,1.0625,1.0,1.0625,0.9688,1.125,1.0,1.0625,1.0,1.125,0.0,1.0,0.0312,1.0625,0.0,1.0625,0.0312,1.0,0.0625,1.0625,0.0312,1.0625,0.0625,1.0,0.0938,1.0625,0.0625,1.0625,0.0938,1.0,0.125,1.0625,0.0938,1.0625,0.125,1.0,0.1562,1.0625,0.125,1.0625,0.1562,1.0,0.1875,1.0625,0.1562,1.0625,0.1875,1.0,0.2187,1.0625,0.1875,1.0625,0.2187,1.0,0.25,1.0625,0.2187,1.0625,0.25,1.0,0.2812,1.0625,0.25,1.0625,0.2812,1.0,0.3125,1.0625,0.2812,1.0625,0.3125,1.0,0.3437,1.0625,0.3125,1.0625,0.3437,1.0,0.375,1.0625,0.3437,1.0625,0.375,1.0,0.4062,1.0625,0.375,1.0625,0.4062,1.0,0.4375,1.0625,0.4062,1.0625,0.4375,1.0,0.4688,1.0625,0.4375,1.0625,0.4688,1.0,0.5,1.0625,0.4688,1.0625,0.5,1.0,0.5313,1.0625,0.5,1.0625,0.5313,1.0,0.5625,1.0625,0.5313,1.0625,0.5625,1.0,0.5938,1.0625,0.5625,1.0625,0.5938,1.0,0.625,1.0625,0.5938,1.0625,0.625,1.0,0.6563,1.0625,0.625,1.0625,0.6563,1.0,0.6875,1.0625,0.6563,1.0625,0.6875,1.0,0.7188,1.0625,0.6875,1.0625,0.7188,1.0,0.75,1.0625,0.7188,1.0625,0.75,1.0,0.7813,1.0625,0.75,1.0625,0.7813,1.0,0.8125,1.0625,0.7813,1.0625,0.8125,1.0,0.8438,1.0625,0.8125,1.0625,0.8438,1.0,0.875,1.0625,0.8438,1.0625,0.875,1.0,0.9063,1.0625,0.875,1.0625,0.9063,1.0,0.9375,1.0625,0.9063,1.0625,0.9375,1.0,0.9688,1.0625,0.9375,1.0625,0.9688,1.0,1.0,1.0625,0.9688,1.0625],"uvs2":null,"colors":null,"hasVertexAlpha":false,"matricesIndices":null,"matricesWeights":null,"matricesIndicesExtra":null,"matricesWeightsExtra":null,"indices":[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,1984,1985,1986,1987,1988,1989,1990,1991,1992,1993,1994,1995,1996,1997,1998,1999,2000,2001,2002,2003,2004,2005,2006,2007,2008,2009,2010,2011,2012,2013,2014,2015,2016,2017,2018,2019,2020,2021,2022,2023,2024,2025,2026,2027,2028,2029,2030,2031,2032,2033,2034,2035,2036,2037,2038,2039,2040,2041,2042,2043,2044,2045,2046,2047,2048,2049,2050,2051,2052,2053,2054,2055,2056,2057,2058,2059,2060,2061,2062,2063,2064,2065,2066,2067,2068,2069,2070,2071,2072,2073,2074,2075,2076,2077,2078,2079,2080,2081,2082,2083,2084,2085,2086,2087,2088,2089,2090,2091,2092,2093,2094,2095,2096,2097,2098,2099,2100,2101,2102,2103,2104,2105,2106,2107,2108,2109,2110,2111,2112,2113,2114,2115,2116,2117,2118,2119,2120,2121,2122,2123,2124,2125,2126,2127,2128,2129,2130,2131,2132,2133,2134,2135,2136,2137,2138,2139,2140,2141,2142,2143,2144,2145,2146,2147,2148,2149,2150,2151,2152,2153,2154,2155,2156,2157,2158,2159,2160,2161,2162,2163,2164,2165,2166,2167,2168,2169,2170,2171,2172,2173,2174,2175,2176,2177,2178,2179,2180,2181,2182,2183,2184,2185,2186,2187,2188,2189,2190,2191,2192,2193,2194,2195,2196,2197,2198,2199,2200,2201,2202,2203,2204,2205,2206,2207,2208,2209,2210,2211,2212,2213,2214,2215,2216,2217,2218,2219,2220,2221,2222,2223,2224,2225,2226,2227,2228,2229,2230,2231,2232,2233,2234,2235,2236,2237,2238,2239,2240,2241,2242,2243,2244,2245,2246,2247,2248,2249,2250,2251,2252,2253,2254,2255,2256,2257,2258,2259,2260,2261,2262,2263,2264,2265,2266,2267,2268,2269,2270,2271,2272,2273,2274,2275,2276,2277,2278,2279,2280,2281,2282,2283,2284,2285,2286,2287,2288,2289,2290,2291,2292,2293,2294,2295,2296,2297,2298,2299,2300,2301,2302,2303,2304,2305,2306,2307,2308,2309,2310,2311,2312,2313,2314,2315,2316,2317,2318,2319,2320,2321,2322,2323,2324,2325,2326,2327,2328,2329,2330,2331,2332,2333,2334,2335,2336,2337,2338,2339,2340,2341,2342,2343,2344,2345,2346,2347,2348,2349,2350,2351,2352,2353,2354,2355,2356,2357,2358,2359,2360,2361,2362,2363,2364,2365,2366,2367,2368,2369,2370,2371,2372,2373,2374,2375,2376,2377,2378,2379,2380,2381,2382,2383,2384,2385,2386,2387,2388,2389,2390,2391,2392,2393,2394,2395,2396,2397,2398,2399,2400,2401,2402,2403,2404,2405,2406,2407,2408,2409,2410,2411,2412,2413,2414,2415,2416,2417,2418,2419,2420,2421,2422,2423,2424,2425,2426,2427,2428,2429,2430,2431,2432,2433,2434,2435,2436,2437,2438,2439,2440,2441,2442,2443,2444,2445,2446,2447,2448,2449,2450,2451,2452,2453,2454,2455,2456,2457,2458,2459,2460,2461,2462,2463,2464,2465,2466,2467,2468,2469,2470,2471,2472,2473,2474,2475,2476,2477,2478,2479,2480,2481,2482,2483,2484,2485,2486,2487,2488,2489,2490,2491,2492,2493,2494,2495,2496,2497,2498,2499,2500,2501,2502,2503,2504,2505,2506,2507,2508,2509,2510,2511,2512,2513,2514,2515,2516,2517,2518,2519,2520,2521,2522,2523,2524,2525,2526,2527,2528,2529,2530,2531,2532,2533,2534,2535,2536,2537,2538,2539,2540,2541,2542,2543,2544,2545,2546,2547,2548,2549,2550,2551,2552,2553,2554,2555,2556,2557,2558,2559,2560,2561,2562,2563,2564,2565,2566,2567,2568,2569,2570,2571,2572,2573,2574,2575,2576,2577,2578,2579,2580,2581,2582,2583,2584,2585,2586,2587,2588,2589,2590,2591,2592,2593,2594,2595,2596,2597,2598,2599,2600,2601,2602,2603,2604,2605,2606,2607,2608,2609,2610,2611,2612,2613,2614,2615,2616,2617,2618,2619,2620,2621,2622,2623,2624,2625,2626,2627,2628,2629,2630,2631,2632,2633,2634,2635,2636,2637,2638,2639,2640,2641,2642,2643,2644,2645,2646,2647,2648,2649,2650,2651,2652,2653,2654,2655,2656,2657,2658,2659,2660,2661,2662,2663,2664,2665,2666,2667,2668,2669,2670,2671,2672,2673,2674,2675,2676,2677,2678,2679,2680,2681,2682,2683,2684,2685,2686,2687,2688,2689,2690,2691,2692,2693,2694,2695,2696,2697,2698,2699,2700,2701,2702,2703,2704,2705,2706,2707,2708,2709,2710,2711,2712,2713,2714,2715,2716,2717,2718,2719,2720,2721,2722,2723,2724,2725,2726,2727,2728,2729,2730,2731,2732,2733,2734,2735,2736,2737,2738,2739,2740,2741,2742,2743,2744,2745,2746,2747,2748,2749,2750,2751,2752,2753,2754,2755,2756,2757,2758,2759,2760,2761,2762,2763,2764,2765,2766,2767,2768,2769,2770,2771,2772,2773,2774,2775,2776,2777,2778,2779,2780,2781,2782,2783,2784,2785,2786,2787,2788,2789,2790,2791,2792,2793,2794,2795,2796,2797,2798,2799,2800,2801,2802,2803,2804,2805,2806,2807,2808,2809,2810,2811,2812,2813,2814,2815,2816,2817,2818,2819,2820,2821,2822,2823,2824,2825,2826,2827,2828,2829,2830,2831,2832,2833,2834,2835,2836,2837,2838,2839,2840,2841,2842,2843,2844,2845,2846,2847,2848,2849,2850,2851,2852,2853,2854,2855,2856,2857,2858,2859,2860,2861,2862,2863,2864,2865,2866,2867,2868,2869,2870,2871,2872,2873,2874,2875,2876,2877,2878,2879],"receiveShadows":true,"infiniteDistance":false,"billboardMode":0,"visibility":1.0,"subMeshes":[{"materialIndex":0,"verticesStart":0,"verticesCount":2880,"indexStart":0,"indexCount":2880}],"instances":null,"skeletonId":-1,"numBoneInfluencers":4,"applyFog":true,"lodMeshIds":null,"lodDistances":null,"lodCoverages":null,"rotation":null,"scaling":[1.0,1.0,1.0],"rotationQuaternion":[0.0,0.7071,0.0,0.7071],"actions":null,"checkCollisions":false,"pickable":false,"showBoundingBox":false,"showSubMeshesBoundingBox":false,"alphaIndex":1000,"physicsImpostor":0,"physicsMass":0.0,"physicsFriction":0.0,"physicsRestitution":0.0,"name":"PhysicalMesh","id":"311381f0-8487-4fc5-89fa-7d01dfda5e2f","parentId":null,"position":[3.0,0.0,0.0],"animations":[],"autoAnimate":true,"autoAnimateFrom":0,"autoAnimateTo":100,"autoAnimateLoop":true,"metadata":null},{"materialId":"21006084-7a66-4fb3-9835-48193f2ce19a","isEnabled":true,"isVisible":true,"positions":[0.0,1.0,0.0,0.0,0.9808,0.1951,-0.0381,0.9808,0.1913,0.0,1.0,0.0,-0.0381,0.9808,0.1913,-0.0747,0.9808,0.1802,0.0,1.0,0.0,-0.0747,0.9808,0.1802,-0.1084,0.9808,0.1622,0.0,1.0,0.0,-0.1084,0.9808,0.1622,-0.1379,0.9808,0.1379,0.0,1.0,0.0,-0.1379,0.9808,0.1379,-0.1622,0.9808,0.1084,0.0,1.0,0.0,-0.1622,0.9808,0.1084,-0.1802,0.9808,0.0747,0.0,1.0,0.0,-0.1802,0.9808,0.0747,-0.1913,0.9808,0.0381,0.0,1.0,0.0,-0.1913,0.9808,0.0381,-0.1951,0.9808,0.0,0.0,1.0,0.0,-0.1951,0.9808,0.0,-0.1913,0.9808,-0.0381,0.0,1.0,0.0,-0.1913,0.9808,-0.0381,-0.1802,0.9808,-0.0747,0.0,1.0,0.0,-0.1802,0.9808,-0.0747,-0.1622,0.9808,-0.1084,0.0,1.0,0.0,-0.1622,0.9808,-0.1084,-0.1379,0.9808,-0.1379,0.0,1.0,0.0,-0.1379,0.9808,-0.1379,-0.1084,0.9808,-0.1622,0.0,1.0,0.0,-0.1084,0.9808,-0.1622,-0.0747,0.9808,-0.1802,0.0,1.0,0.0,-0.0747,0.9808,-0.1802,-0.0381,0.9808,-0.1913,0.0,1.0,0.0,-0.0381,0.9808,-0.1913,0.0,0.9808,-0.1951,0.0,1.0,0.0,0.0,0.9808,-0.1951,0.0381,0.9808,-0.1913,0.0,1.0,0.0,0.0381,0.9808,-0.1913,0.0747,0.9808,-0.1802,0.0,1.0,0.0,0.0747,0.9808,-0.1802,0.1084,0.9808,-0.1622,0.0,1.0,0.0,0.1084,0.9808,-0.1622,0.1379,0.9808,-0.1379,0.0,1.0,0.0,0.1379,0.9808,-0.1379,0.1622,0.9808,-0.1084,0.0,1.0,0.0,0.1622,0.9808,-0.1084,0.1802,0.9808,-0.0747,0.0,1.0,0.0,0.1802,0.9808,-0.0747,0.1913,0.9808,-0.0381,0.0,1.0,0.0,0.1913,0.9808,-0.0381,0.1951,0.9808,0.0,0.0,1.0,0.0,0.1951,0.9808,0.0,0.1913,0.9808,0.0381,0.0,1.0,0.0,0.1913,0.9808,0.0381,0.1802,0.9808,0.0747,0.0,1.0,0.0,0.1802,0.9808,0.0747,0.1622,0.9808,0.1084,0.0,1.0,0.0,0.1622,0.9808,0.1084,0.1379,0.9808,0.1379,0.0,1.0,0.0,0.1379,0.9808,0.1379,0.1084,0.9808,0.1622,0.0,1.0,0.0,0.1084,0.9808,0.1622,0.0747,0.9808,0.1802,0.0,1.0,0.0,0.0747,0.9808,0.1802,0.0381,0.9808,0.1913,0.0,1.0,0.0,0.0381,0.9808,0.1913,0.0,0.9808,0.1951,0.0,0.9808,0.1951,0.0,0.9239,0.3827,-0.0747,0.9239,0.3753,0.0,0.9808,0.1951,-0.0747,0.9239,0.3753,-0.0381,0.9808,0.1913,-0.0381,0.9808,0.1913,-0.0747,0.9239,0.3753,-0.1464,0.9239,0.3536,-0.0381,0.9808,0.1913,-0.1464,0.9239,0.3536,-0.0747,0.9808,0.1802,-0.0747,0.9808,0.1802,-0.1464,0.9239,0.3536,-0.2126,0.9239,0.3182,-0.0747,0.9808,0.1802,-0.2126,0.9239,0.3182,-0.1084,0.9808,0.1622,-0.1084,0.9808,0.1622,-0.2126,0.9239,0.3182,-0.2706,0.9239,0.2706,-0.1084,0.9808,0.1622,-0.2706,0.9239,0.2706,-0.1379,0.9808,0.1379,-0.1379,0.9808,0.1379,-0.2706,0.9239,0.2706,-0.3182,0.9239,0.2126,-0.1379,0.9808,0.1379,-0.3182,0.9239,0.2126,-0.1622,0.9808,0.1084,-0.1622,0.9808,0.1084,-0.3182,0.9239,0.2126,-0.3536,0.9239,0.1464,-0.1622,0.9808,0.1084,-0.3536,0.9239,0.1464,-0.1802,0.9808,0.0747,-0.1802,0.9808,0.0747,-0.3536,0.9239,0.1464,-0.3753,0.9239,0.0747,-0.1802,0.9808,0.0747,-0.3753,0.9239,0.0747,-0.1913,0.9808,0.0381,-0.1913,0.9808,0.0381,-0.3753,0.9239,0.0747,-0.3827,0.9239,0.0,-0.1913,0.9808,0.0381,-0.3827,0.9239,0.0,-0.1951,0.9808,0.0,-0.1951,0.9808,0.0,-0.3827,0.9239,0.0,-0.3753,0.9239,-0.0747,-0.1951,0.9808,0.0,-0.3753,0.9239,-0.0747,-0.1913,0.9808,-0.0381,-0.1913,0.9808,-0.0381,-0.3753,0.9239,-0.0747,-0.3536,0.9239,-0.1464,-0.1913,0.9808,-0.0381,-0.3536,0.9239,-0.1464,-0.1802,0.9808,-0.0747,-0.1802,0.9808,-0.0747,-0.3536,0.9239,-0.1464,-0.3182,0.9239,-0.2126,-0.1802,0.9808,-0.0747,-0.3182,0.9239,-0.2126,-0.1622,0.9808,-0.1084,-0.1622,0.9808,-0.1084,-0.3182,0.9239,-0.2126,-0.2706,0.9239,-0.2706,-0.1622,0.9808,-0.1084,-0.2706,0.9239,-0.2706,-0.1379,0.9808,-0.1379,-0.1379,0.9808,-0.1379,-0.2706,0.9239,-0.2706,-0.2126,0.9239,-0.3182,-0.1379,0.9808,-0.1379,-0.2126,0.9239,-0.3182,-0.1084,0.9808,-0.1622,-0.1084,0.9808,-0.1622,-0.2126,0.9239,-0.3182,-0.1464,0.9239,-0.3536,-0.1084,0.9808,-0.1622,-0.1464,0.9239,-0.3536,-0.0747,0.9808,-0.1802,-0.0747,0.9808,-0.1802,-0.1464,0.9239,-0.3536,-0.0747,0.9239,-0.3753,-0.0747,0.9808,-0.1802,-0.0747,0.9239,-0.3753,-0.0381,0.9808,-0.1913,-0.0381,0.9808,-0.1913,-0.0747,0.9239,-0.3753,0.0,0.9239,-0.3827,-0.0381,0.9808,-0.1913,0.0,0.9239,-0.3827,0.0,0.9808,-0.1951,0.0,0.9808,-0.1951,0.0,0.9239,-0.3827,0.0747,0.9239,-0.3753,0.0,0.9808,-0.1951,0.0747,0.9239,-0.3753,0.0381,0.9808,-0.1913,0.0381,0.9808,-0.1913,0.0747,0.9239,-0.3753,0.1464,0.9239,-0.3536,0.0381,0.9808,-0.1913,0.1464,0.9239,-0.3536,0.0747,0.9808,-0.1802,0.0747,0.9808,-0.1802,0.1464,0.9239,-0.3536,0.2126,0.9239,-0.3182,0.0747,0.9808,-0.1802,0.2126,0.9239,-0.3182,0.1084,0.9808,-0.1622,0.1084,0.9808,-0.1622,0.2126,0.9239,-0.3182,0.2706,0.9239,-0.2706,0.1084,0.9808,-0.1622,0.2706,0.9239,-0.2706,0.1379,0.9808,-0.1379,0.1379,0.9808,-0.1379,0.2706,0.9239,-0.2706,0.3182,0.9239,-0.2126,0.1379,0.9808,-0.1379,0.3182,0.9239,-0.2126,0.1622,0.9808,-0.1084,0.1622,0.9808,-0.1084,0.3182,0.9239,-0.2126,0.3536,0.9239,-0.1464,0.1622,0.9808,-0.1084,0.3536,0.9239,-0.1464,0.1802,0.9808,-0.0747,0.1802,0.9808,-0.0747,0.3536,0.9239,-0.1464,0.3753,0.9239,-0.0747,0.1802,0.9808,-0.0747,0.3753,0.9239,-0.0747,0.1913,0.9808,-0.0381,0.1913,0.9808,-0.0381,0.3753,0.9239,-0.0747,0.3827,0.9239,0.0,0.1913,0.9808,-0.0381,0.3827,0.9239,0.0,0.1951,0.9808,0.0,0.1951,0.9808,0.0,0.3827,0.9239,0.0,0.3753,0.9239,0.0747,0.1951,0.9808,0.0,0.3753,0.9239,0.0747,0.1913,0.9808,0.0381,0.1913,0.9808,0.0381,0.3753,0.9239,0.0747,0.3536,0.9239,0.1464,0.1913,0.9808,0.0381,0.3536,0.9239,0.1464,0.1802,0.9808,0.0747,0.1802,0.9808,0.0747,0.3536,0.9239,0.1464,0.3182,0.9239,0.2126,0.1802,0.9808,0.0747,0.3182,0.9239,0.2126,0.1622,0.9808,0.1084,0.1622,0.9808,0.1084,0.3182,0.9239,0.2126,0.2706,0.9239,0.2706,0.1622,0.9808,0.1084,0.2706,0.9239,0.2706,0.1379,0.9808,0.1379,0.1379,0.9808,0.1379,0.2706,0.9239,0.2706,0.2126,0.9239,0.3182,0.1379,0.9808,0.1379,0.2126,0.9239,0.3182,0.1084,0.9808,0.1622,0.1084,0.9808,0.1622,0.2126,0.9239,0.3182,0.1464,0.9239,0.3536,0.1084,0.9808,0.1622,0.1464,0.9239,0.3536,0.0747,0.9808,0.1802,0.0747,0.9808,0.1802,0.1464,0.9239,0.3536,0.0747,0.9239,0.3753,0.0747,0.9808,0.1802,0.0747,0.9239,0.3753,0.0381,0.9808,0.1913,0.0381,0.9808,0.1913,0.0747,0.9239,0.3753,0.0,0.9239,0.3827,0.0381,0.9808,0.1913,0.0,0.9239,0.3827,0.0,0.9808,0.1951,0.0,0.9239,0.3827,0.0,0.8315,0.5556,-0.1084,0.8315,0.5449,0.0,0.9239,0.3827,-0.1084,0.8315,0.5449,-0.0747,0.9239,0.3753,-0.0747,0.9239,0.3753,-0.1084,0.8315,0.5449,-0.2126,0.8315,0.5133,-0.0747,0.9239,0.3753,-0.2126,0.8315,0.5133,-0.1464,0.9239,0.3536,-0.1464,0.9239,0.3536,-0.2126,0.8315,0.5133,-0.3087,0.8315,0.4619,-0.1464,0.9239,0.3536,-0.3087,0.8315,0.4619,-0.2126,0.9239,0.3182,-0.2126,0.9239,0.3182,-0.3087,0.8315,0.4619,-0.3928,0.8315,0.3928,-0.2126,0.9239,0.3182,-0.3928,0.8315,0.3928,-0.2706,0.9239,0.2706,-0.2706,0.9239,0.2706,-0.3928,0.8315,0.3928,-0.4619,0.8315,0.3087,-0.2706,0.9239,0.2706,-0.4619,0.8315,0.3087,-0.3182,0.9239,0.2126,-0.3182,0.9239,0.2126,-0.4619,0.8315,0.3087,-0.5133,0.8315,0.2126,-0.3182,0.9239,0.2126,-0.5133,0.8315,0.2126,-0.3536,0.9239,0.1464,-0.3536,0.9239,0.1464,-0.5133,0.8315,0.2126,-0.5449,0.8315,0.1084,-0.3536,0.9239,0.1464,-0.5449,0.8315,0.1084,-0.3753,0.9239,0.0747,-0.3753,0.9239,0.0747,-0.5449,0.8315,0.1084,-0.5556,0.8315,0.0,-0.3753,0.9239,0.0747,-0.5556,0.8315,0.0,-0.3827,0.9239,0.0,-0.3827,0.9239,0.0,-0.5556,0.8315,0.0,-0.5449,0.8315,-0.1084,-0.3827,0.9239,0.0,-0.5449,0.8315,-0.1084,-0.3753,0.9239,-0.0747,-0.3753,0.9239,-0.0747,-0.5449,0.8315,-0.1084,-0.5133,0.8315,-0.2126,-0.3753,0.9239,-0.0747,-0.5133,0.8315,-0.2126,-0.3536,0.9239,-0.1464,-0.3536,0.9239,-0.1464,-0.5133,0.8315,-0.2126,-0.4619,0.8315,-0.3087,-0.3536,0.9239,-0.1464,-0.4619,0.8315,-0.3087,-0.3182,0.9239,-0.2126,-0.3182,0.9239,-0.2126,-0.4619,0.8315,-0.3087,-0.3928,0.8315,-0.3928,-0.3182,0.9239,-0.2126,-0.3928,0.8315,-0.3928,-0.2706,0.9239,-0.2706,-0.2706,0.9239,-0.2706,-0.3928,0.8315,-0.3928,-0.3087,0.8315,-0.4619,-0.2706,0.9239,-0.2706,-0.3087,0.8315,-0.4619,-0.2126,0.9239,-0.3182,-0.2126,0.9239,-0.3182,-0.3087,0.8315,-0.4619,-0.2126,0.8315,-0.5133,-0.2126,0.9239,-0.3182,-0.2126,0.8315,-0.5133,-0.1464,0.9239,-0.3536,-0.1464,0.9239,-0.3536,-0.2126,0.8315,-0.5133,-0.1084,0.8315,-0.5449,-0.1464,0.9239,-0.3536,-0.1084,0.8315,-0.5449,-0.0747,0.9239,-0.3753,-0.0747,0.9239,-0.3753,-0.1084,0.8315,-0.5449,0.0,0.8315,-0.5556,-0.0747,0.9239,-0.3753,0.0,0.8315,-0.5556,0.0,0.9239,-0.3827,0.0,0.9239,-0.3827,0.0,0.8315,-0.5556,0.1084,0.8315,-0.5449,0.0,0.9239,-0.3827,0.1084,0.8315,-0.5449,0.0747,0.9239,-0.3753,0.0747,0.9239,-0.3753,0.1084,0.8315,-0.5449,0.2126,0.8315,-0.5133,0.0747,0.9239,-0.3753,0.2126,0.8315,-0.5133,0.1464,0.9239,-0.3536,0.1464,0.9239,-0.3536,0.2126,0.8315,-0.5133,0.3087,0.8315,-0.4619,0.1464,0.9239,-0.3536,0.3087,0.8315,-0.4619,0.2126,0.9239,-0.3182,0.2126,0.9239,-0.3182,0.3087,0.8315,-0.4619,0.3928,0.8315,-0.3928,0.2126,0.9239,-0.3182,0.3928,0.8315,-0.3928,0.2706,0.9239,-0.2706,0.2706,0.9239,-0.2706,0.3928,0.8315,-0.3928,0.4619,0.8315,-0.3087,0.2706,0.9239,-0.2706,0.4619,0.8315,-0.3087,0.3182,0.9239,-0.2126,0.3182,0.9239,-0.2126,0.4619,0.8315,-0.3087,0.5133,0.8315,-0.2126,0.3182,0.9239,-0.2126,0.5133,0.8315,-0.2126,0.3536,0.9239,-0.1464,0.3536,0.9239,-0.1464,0.5133,0.8315,-0.2126,0.5449,0.8315,-0.1084,0.3536,0.9239,-0.1464,0.5449,0.8315,-0.1084,0.3753,0.9239,-0.0747,0.3753,0.9239,-0.0747,0.5449,0.8315,-0.1084,0.5556,0.8315,0.0,0.3753,0.9239,-0.0747,0.5556,0.8315,0.0,0.3827,0.9239,0.0,0.3827,0.9239,0.0,0.5556,0.8315,0.0,0.5449,0.8315,0.1084,0.3827,0.9239,0.0,0.5449,0.8315,0.1084,0.3753,0.9239,0.0747,0.3753,0.9239,0.0747,0.5449,0.8315,0.1084,0.5133,0.8315,0.2126,0.3753,0.9239,0.0747,0.5133,0.8315,0.2126,0.3536,0.9239,0.1464,0.3536,0.9239,0.1464,0.5133,0.8315,0.2126,0.4619,0.8315,0.3087,0.3536,0.9239,0.1464,0.4619,0.8315,0.3087,0.3182,0.9239,0.2126,0.3182,0.9239,0.2126,0.4619,0.8315,0.3087,0.3928,0.8315,0.3928,0.3182,0.9239,0.2126,0.3928,0.8315,0.3928,0.2706,0.9239,0.2706,0.2706,0.9239,0.2706,0.3928,0.8315,0.3928,0.3087,0.8315,0.4619,0.2706,0.9239,0.2706,0.3087,0.8315,0.4619,0.2126,0.9239,0.3182,0.2126,0.9239,0.3182,0.3087,0.8315,0.4619,0.2126,0.8315,0.5133,0.2126,0.9239,0.3182,0.2126,0.8315,0.5133,0.1464,0.9239,0.3536,0.1464,0.9239,0.3536,0.2126,0.8315,0.5133,0.1084,0.8315,0.5449,0.1464,0.9239,0.3536,0.1084,0.8315,0.5449,0.0747,0.9239,0.3753,0.0747,0.9239,0.3753,0.1084,0.8315,0.5449,0.0,0.8315,0.5556,0.0747,0.9239,0.3753,0.0,0.8315,0.5556,0.0,0.9239,0.3827,0.0,0.8315,0.5556,0.0,0.7071,0.7071,-0.1379,0.7071,0.6935,0.0,0.8315,0.5556,-0.1379,0.7071,0.6935,-0.1084,0.8315,0.5449,-0.1084,0.8315,0.5449,-0.1379,0.7071,0.6935,-0.2706,0.7071,0.6533,-0.1084,0.8315,0.5449,-0.2706,0.7071,0.6533,-0.2126,0.8315,0.5133,-0.2126,0.8315,0.5133,-0.2706,0.7071,0.6533,-0.3928,0.7071,0.5879,-0.2126,0.8315,0.5133,-0.3928,0.7071,0.5879,-0.3087,0.8315,0.4619,-0.3087,0.8315,0.4619,-0.3928,0.7071,0.5879,-0.5,0.7071,0.5,-0.3087,0.8315,0.4619,-0.5,0.7071,0.5,-0.3928,0.8315,0.3928,-0.3928,0.8315,0.3928,-0.5,0.7071,0.5,-0.5879,0.7071,0.3928,-0.3928,0.8315,0.3928,-0.5879,0.7071,0.3928,-0.4619,0.8315,0.3087,-0.4619,0.8315,0.3087,-0.5879,0.7071,0.3928,-0.6533,0.7071,0.2706,-0.4619,0.8315,0.3087,-0.6533,0.7071,0.2706,-0.5133,0.8315,0.2126,-0.5133,0.8315,0.2126,-0.6533,0.7071,0.2706,-0.6935,0.7071,0.1379,-0.5133,0.8315,0.2126,-0.6935,0.7071,0.1379,-0.5449,0.8315,0.1084,-0.5449,0.8315,0.1084,-0.6935,0.7071,0.1379,-0.7071,0.7071,0.0,-0.5449,0.8315,0.1084,-0.7071,0.7071,0.0,-0.5556,0.8315,0.0,-0.5556,0.8315,0.0,-0.7071,0.7071,0.0,-0.6935,0.7071,-0.1379,-0.5556,0.8315,0.0,-0.6935,0.7071,-0.1379,-0.5449,0.8315,-0.1084,-0.5449,0.8315,-0.1084,-0.6935,0.7071,-0.1379,-0.6533,0.7071,-0.2706,-0.5449,0.8315,-0.1084,-0.6533,0.7071,-0.2706,-0.5133,0.8315,-0.2126,-0.5133,0.8315,-0.2126,-0.6533,0.7071,-0.2706,-0.5879,0.7071,-0.3928,-0.5133,0.8315,-0.2126,-0.5879,0.7071,-0.3928,-0.4619,0.8315,-0.3087,-0.4619,0.8315,-0.3087,-0.5879,0.7071,-0.3928,-0.5,0.7071,-0.5,-0.4619,0.8315,-0.3087,-0.5,0.7071,-0.5,-0.3928,0.8315,-0.3928,-0.3928,0.8315,-0.3928,-0.5,0.7071,-0.5,-0.3928,0.7071,-0.5879,-0.3928,0.8315,-0.3928,-0.3928,0.7071,-0.5879,-0.3087,0.8315,-0.4619,-0.3087,0.8315,-0.4619,-0.3928,0.7071,-0.5879,-0.2706,0.7071,-0.6533,-0.3087,0.8315,-0.4619,-0.2706,0.7071,-0.6533,-0.2126,0.8315,-0.5133,-0.2126,0.8315,-0.5133,-0.2706,0.7071,-0.6533,-0.1379,0.7071,-0.6935,-0.2126,0.8315,-0.5133,-0.1379,0.7071,-0.6935,-0.1084,0.8315,-0.5449,-0.1084,0.8315,-0.5449,-0.1379,0.7071,-0.6935,0.0,0.7071,-0.7071,-0.1084,0.8315,-0.5449,0.0,0.7071,-0.7071,0.0,0.8315,-0.5556,0.0,0.8315,-0.5556,0.0,0.7071,-0.7071,0.138,0.7071,-0.6935,0.0,0.8315,-0.5556,0.138,0.7071,-0.6935,0.1084,0.8315,-0.5449,0.1084,0.8315,-0.5449,0.138,0.7071,-0.6935,0.2706,0.7071,-0.6533,0.1084,0.8315,-0.5449,0.2706,0.7071,-0.6533,0.2126,0.8315,-0.5133,0.2126,0.8315,-0.5133,0.2706,0.7071,-0.6533,0.3928,0.7071,-0.5879,0.2126,0.8315,-0.5133,0.3928,0.7071,-0.5879,0.3087,0.8315,-0.4619,0.3087,0.8315,-0.4619,0.3928,0.7071,-0.5879,0.5,0.7071,-0.5,0.3087,0.8315,-0.4619,0.5,0.7071,-0.5,0.3928,0.8315,-0.3928,0.3928,0.8315,-0.3928,0.5,0.7071,-0.5,0.5879,0.7071,-0.3928,0.3928,0.8315,-0.3928,0.5879,0.7071,-0.3928,0.4619,0.8315,-0.3087,0.4619,0.8315,-0.3087,0.5879,0.7071,-0.3928,0.6533,0.7071,-0.2706,0.4619,0.8315,-0.3087,0.6533,0.7071,-0.2706,0.5133,0.8315,-0.2126,0.5133,0.8315,-0.2126,0.6533,0.7071,-0.2706,0.6935,0.7071,-0.1379,0.5133,0.8315,-0.2126,0.6935,0.7071,-0.1379,0.5449,0.8315,-0.1084,0.5449,0.8315,-0.1084,0.6935,0.7071,-0.1379,0.7071,0.7071,0.0,0.5449,0.8315,-0.1084,0.7071,0.7071,0.0,0.5556,0.8315,0.0,0.5556,0.8315,0.0,0.7071,0.7071,0.0,0.6935,0.7071,0.138,0.5556,0.8315,0.0,0.6935,0.7071,0.138,0.5449,0.8315,0.1084,0.5449,0.8315,0.1084,0.6935,0.7071,0.138,0.6533,0.7071,0.2706,0.5449,0.8315,0.1084,0.6533,0.7071,0.2706,0.5133,0.8315,0.2126,0.5133,0.8315,0.2126,0.6533,0.7071,0.2706,0.5879,0.7071,0.3928,0.5133,0.8315,0.2126,0.5879,0.7071,0.3928,0.4619,0.8315,0.3087,0.4619,0.8315,0.3087,0.5879,0.7071,0.3928,0.5,0.7071,0.5,0.4619,0.8315,0.3087,0.5,0.7071,0.5,0.3928,0.8315,0.3928,0.3928,0.8315,0.3928,0.5,0.7071,0.5,0.3928,0.7071,0.5879,0.3928,0.8315,0.3928,0.3928,0.7071,0.5879,0.3087,0.8315,0.4619,0.3087,0.8315,0.4619,0.3928,0.7071,0.5879,0.2706,0.7071,0.6533,0.3087,0.8315,0.4619,0.2706,0.7071,0.6533,0.2126,0.8315,0.5133,0.2126,0.8315,0.5133,0.2706,0.7071,0.6533,0.1379,0.7071,0.6935,0.2126,0.8315,0.5133,0.1379,0.7071,0.6935,0.1084,0.8315,0.5449,0.1084,0.8315,0.5449,0.1379,0.7071,0.6935,0.0,0.7071,0.7071,0.1084,0.8315,0.5449,0.0,0.7071,0.7071,0.0,0.8315,0.5556,0.0,0.7071,0.7071,0.0,0.5556,0.8315,-0.1622,0.5556,0.8155,0.0,0.7071,0.7071,-0.1622,0.5556,0.8155,-0.1379,0.7071,0.6935,-0.1379,0.7071,0.6935,-0.1622,0.5556,0.8155,-0.3182,0.5556,0.7682,-0.1379,0.7071,0.6935,-0.3182,0.5556,0.7682,-0.2706,0.7071,0.6533,-0.2706,0.7071,0.6533,-0.3182,0.5556,0.7682,-0.4619,0.5556,0.6913,-0.2706,0.7071,0.6533,-0.4619,0.5556,0.6913,-0.3928,0.7071,0.5879,-0.3928,0.7071,0.5879,-0.4619,0.5556,0.6913,-0.5879,0.5556,0.5879,-0.3928,0.7071,0.5879,-0.5879,0.5556,0.5879,-0.5,0.7071,0.5,-0.5,0.7071,0.5,-0.5879,0.5556,0.5879,-0.6913,0.5556,0.4619,-0.5,0.7071,0.5,-0.6913,0.5556,0.4619,-0.5879,0.7071,0.3928,-0.5879,0.7071,0.3928,-0.6913,0.5556,0.4619,-0.7682,0.5556,0.3182,-0.5879,0.7071,0.3928,-0.7682,0.5556,0.3182,-0.6533,0.7071,0.2706,-0.6533,0.7071,0.2706,-0.7682,0.5556,0.3182,-0.8155,0.5556,0.1622,-0.6533,0.7071,0.2706,-0.8155,0.5556,0.1622,-0.6935,0.7071,0.1379,-0.6935,0.7071,0.1379,-0.8155,0.5556,0.1622,-0.8315,0.5556,0.0,-0.6935,0.7071,0.1379,-0.8315,0.5556,0.0,-0.7071,0.7071,0.0,-0.7071,0.7071,0.0,-0.8315,0.5556,0.0,-0.8155,0.5556,-0.1622,-0.7071,0.7071,0.0,-0.8155,0.5556,-0.1622,-0.6935,0.7071,-0.1379,-0.6935,0.7071,-0.1379,-0.8155,0.5556,-0.1622,-0.7682,0.5556,-0.3182,-0.6935,0.7071,-0.1379,-0.7682,0.5556,-0.3182,-0.6533,0.7071,-0.2706,-0.6533,0.7071,-0.2706,-0.7682,0.5556,-0.3182,-0.6913,0.5556,-0.4619,-0.6533,0.7071,-0.2706,-0.6913,0.5556,-0.4619,-0.5879,0.7071,-0.3928,-0.5879,0.7071,-0.3928,-0.6913,0.5556,-0.4619,-0.5879,0.5556,-0.5879,-0.5879,0.7071,-0.3928,-0.5879,0.5556,-0.5879,-0.5,0.7071,-0.5,-0.5,0.7071,-0.5,-0.5879,0.5556,-0.5879,-0.4619,0.5556,-0.6913,-0.5,0.7071,-0.5,-0.4619,0.5556,-0.6913,-0.3928,0.7071,-0.5879,-0.3928,0.7071,-0.5879,-0.4619,0.5556,-0.6913,-0.3182,0.5556,-0.7682,-0.3928,0.7071,-0.5879,-0.3182,0.5556,-0.7682,-0.2706,0.7071,-0.6533,-0.2706,0.7071,-0.6533,-0.3182,0.5556,-0.7682,-0.1622,0.5556,-0.8155,-0.2706,0.7071,-0.6533,-0.1622,0.5556,-0.8155,-0.1379,0.7071,-0.6935,-0.1379,0.7071,-0.6935,-0.1622,0.5556,-0.8155,0.0,0.5556,-0.8315,-0.1379,0.7071,-0.6935,0.0,0.5556,-0.8315,0.0,0.7071,-0.7071,0.0,0.7071,-0.7071,0.0,0.5556,-0.8315,0.1622,0.5556,-0.8155,0.0,0.7071,-0.7071,0.1622,0.5556,-0.8155,0.138,0.7071,-0.6935,0.138,0.7071,-0.6935,0.1622,0.5556,-0.8155,0.3182,0.5556,-0.7682,0.138,0.7071,-0.6935,0.3182,0.5556,-0.7682,0.2706,0.7071,-0.6533,0.2706,0.7071,-0.6533,0.3182,0.5556,-0.7682,0.4619,0.5556,-0.6913,0.2706,0.7071,-0.6533,0.4619,0.5556,-0.6913,0.3928,0.7071,-0.5879,0.3928,0.7071,-0.5879,0.4619,0.5556,-0.6913,0.5879,0.5556,-0.5879,0.3928,0.7071,-0.5879,0.5879,0.5556,-0.5879,0.5,0.7071,-0.5,0.5,0.7071,-0.5,0.5879,0.5556,-0.5879,0.6913,0.5556,-0.4619,0.5,0.7071,-0.5,0.6913,0.5556,-0.4619,0.5879,0.7071,-0.3928,0.5879,0.7071,-0.3928,0.6913,0.5556,-0.4619,0.7682,0.5556,-0.3182,0.5879,0.7071,-0.3928,0.7682,0.5556,-0.3182,0.6533,0.7071,-0.2706,0.6533,0.7071,-0.2706,0.7682,0.5556,-0.3182,0.8155,0.5556,-0.1622,0.6533,0.7071,-0.2706,0.8155,0.5556,-0.1622,0.6935,0.7071,-0.1379,0.6935,0.7071,-0.1379,0.8155,0.5556,-0.1622,0.8315,0.5556,0.0,0.6935,0.7071,-0.1379,0.8315,0.5556,0.0,0.7071,0.7071,0.0,0.7071,0.7071,0.0,0.8315,0.5556,0.0,0.8155,0.5556,0.1622,0.7071,0.7071,0.0,0.8155,0.5556,0.1622,0.6935,0.7071,0.138,0.6935,0.7071,0.138,0.8155,0.5556,0.1622,0.7682,0.5556,0.3182,0.6935,0.7071,0.138,0.7682,0.5556,0.3182,0.6533,0.7071,0.2706,0.6533,0.7071,0.2706,0.7682,0.5556,0.3182,0.6913,0.5556,0.4619,0.6533,0.7071,0.2706,0.6913,0.5556,0.4619,0.5879,0.7071,0.3928,0.5879,0.7071,0.3928,0.6913,0.5556,0.4619,0.5879,0.5556,0.5879,0.5879,0.7071,0.3928,0.5879,0.5556,0.5879,0.5,0.7071,0.5,0.5,0.7071,0.5,0.5879,0.5556,0.5879,0.4619,0.5556,0.6913,0.5,0.7071,0.5,0.4619,0.5556,0.6913,0.3928,0.7071,0.5879,0.3928,0.7071,0.5879,0.4619,0.5556,0.6913,0.3182,0.5556,0.7682,0.3928,0.7071,0.5879,0.3182,0.5556,0.7682,0.2706,0.7071,0.6533,0.2706,0.7071,0.6533,0.3182,0.5556,0.7682,0.1622,0.5556,0.8155,0.2706,0.7071,0.6533,0.1622,0.5556,0.8155,0.1379,0.7071,0.6935,0.1379,0.7071,0.6935,0.1622,0.5556,0.8155,0.0,0.5556,0.8315,0.1379,0.7071,0.6935,0.0,0.5556,0.8315,0.0,0.7071,0.7071,0.0,0.5556,0.8315,0.0,0.3827,0.9239,-0.1802,0.3827,0.9061,0.0,0.5556,0.8315,-0.1802,0.3827,0.9061,-0.1622,0.5556,0.8155,-0.1622,0.5556,0.8155,-0.1802,0.3827,0.9061,-0.3536,0.3827,0.8536,-0.1622,0.5556,0.8155,-0.3536,0.3827,0.8536,-0.3182,0.5556,0.7682,-0.3182,0.5556,0.7682,-0.3536,0.3827,0.8536,-0.5133,0.3827,0.7682,-0.3182,0.5556,0.7682,-0.5133,0.3827,0.7682,-0.4619,0.5556,0.6913,-0.4619,0.5556,0.6913,-0.5133,0.3827,0.7682,-0.6533,0.3827,0.6533,-0.4619,0.5556,0.6913,-0.6533,0.3827,0.6533,-0.5879,0.5556,0.5879,-0.5879,0.5556,0.5879,-0.6533,0.3827,0.6533,-0.7682,0.3827,0.5133,-0.5879,0.5556,0.5879,-0.7682,0.3827,0.5133,-0.6913,0.5556,0.4619,-0.6913,0.5556,0.4619,-0.7682,0.3827,0.5133,-0.8536,0.3827,0.3536,-0.6913,0.5556,0.4619,-0.8536,0.3827,0.3536,-0.7682,0.5556,0.3182,-0.7682,0.5556,0.3182,-0.8536,0.3827,0.3536,-0.9061,0.3827,0.1802,-0.7682,0.5556,0.3182,-0.9061,0.3827,0.1802,-0.8155,0.5556,0.1622,-0.8155,0.5556,0.1622,-0.9061,0.3827,0.1802,-0.9239,0.3827,0.0,-0.8155,0.5556,0.1622,-0.9239,0.3827,0.0,-0.8315,0.5556,0.0,-0.8315,0.5556,0.0,-0.9239,0.3827,0.0,-0.9061,0.3827,-0.1802,-0.8315,0.5556,0.0,-0.9061,0.3827,-0.1802,-0.8155,0.5556,-0.1622,-0.8155,0.5556,-0.1622,-0.9061,0.3827,-0.1802,-0.8536,0.3827,-0.3536,-0.8155,0.5556,-0.1622,-0.8536,0.3827,-0.3536,-0.7682,0.5556,-0.3182,-0.7682,0.5556,-0.3182,-0.8536,0.3827,-0.3536,-0.7682,0.3827,-0.5133,-0.7682,0.5556,-0.3182,-0.7682,0.3827,-0.5133,-0.6913,0.5556,-0.4619,-0.6913,0.5556,-0.4619,-0.7682,0.3827,-0.5133,-0.6533,0.3827,-0.6533,-0.6913,0.5556,-0.4619,-0.6533,0.3827,-0.6533,-0.5879,0.5556,-0.5879,-0.5879,0.5556,-0.5879,-0.6533,0.3827,-0.6533,-0.5133,0.3827,-0.7682,-0.5879,0.5556,-0.5879,-0.5133,0.3827,-0.7682,-0.4619,0.5556,-0.6913,-0.4619,0.5556,-0.6913,-0.5133,0.3827,-0.7682,-0.3536,0.3827,-0.8536,-0.4619,0.5556,-0.6913,-0.3536,0.3827,-0.8536,-0.3182,0.5556,-0.7682,-0.3182,0.5556,-0.7682,-0.3536,0.3827,-0.8536,-0.1802,0.3827,-0.9061,-0.3182,0.5556,-0.7682,-0.1802,0.3827,-0.9061,-0.1622,0.5556,-0.8155,-0.1622,0.5556,-0.8155,-0.1802,0.3827,-0.9061,0.0,0.3827,-0.9239,-0.1622,0.5556,-0.8155,0.0,0.3827,-0.9239,0.0,0.5556,-0.8315,0.0,0.5556,-0.8315,0.0,0.3827,-0.9239,0.1802,0.3827,-0.9061,0.0,0.5556,-0.8315,0.1802,0.3827,-0.9061,0.1622,0.5556,-0.8155,0.1622,0.5556,-0.8155,0.1802,0.3827,-0.9061,0.3536,0.3827,-0.8536,0.1622,0.5556,-0.8155,0.3536,0.3827,-0.8536,0.3182,0.5556,-0.7682,0.3182,0.5556,-0.7682,0.3536,0.3827,-0.8536,0.5133,0.3827,-0.7682,0.3182,0.5556,-0.7682,0.5133,0.3827,-0.7682,0.4619,0.5556,-0.6913,0.4619,0.5556,-0.6913,0.5133,0.3827,-0.7682,0.6533,0.3827,-0.6533,0.4619,0.5556,-0.6913,0.6533,0.3827,-0.6533,0.5879,0.5556,-0.5879,0.5879,0.5556,-0.5879,0.6533,0.3827,-0.6533,0.7682,0.3827,-0.5133,0.5879,0.5556,-0.5879,0.7682,0.3827,-0.5133,0.6913,0.5556,-0.4619,0.6913,0.5556,-0.4619,0.7682,0.3827,-0.5133,0.8536,0.3827,-0.3536,0.6913,0.5556,-0.4619,0.8536,0.3827,-0.3536,0.7682,0.5556,-0.3182,0.7682,0.5556,-0.3182,0.8536,0.3827,-0.3536,0.9061,0.3827,-0.1802,0.7682,0.5556,-0.3182,0.9061,0.3827,-0.1802,0.8155,0.5556,-0.1622,0.8155,0.5556,-0.1622,0.9061,0.3827,-0.1802,0.9239,0.3827,0.0,0.8155,0.5556,-0.1622,0.9239,0.3827,0.0,0.8315,0.5556,0.0,0.8315,0.5556,0.0,0.9239,0.3827,0.0,0.9061,0.3827,0.1802,0.8315,0.5556,0.0,0.9061,0.3827,0.1802,0.8155,0.5556,0.1622,0.8155,0.5556,0.1622,0.9061,0.3827,0.1802,0.8536,0.3827,0.3536,0.8155,0.5556,0.1622,0.8536,0.3827,0.3536,0.7682,0.5556,0.3182,0.7682,0.5556,0.3182,0.8536,0.3827,0.3536,0.7682,0.3827,0.5133,0.7682,0.5556,0.3182,0.7682,0.3827,0.5133,0.6913,0.5556,0.4619,0.6913,0.5556,0.4619,0.7682,0.3827,0.5133,0.6533,0.3827,0.6533,0.6913,0.5556,0.4619,0.6533,0.3827,0.6533,0.5879,0.5556,0.5879,0.5879,0.5556,0.5879,0.6533,0.3827,0.6533,0.5133,0.3827,0.7682,0.5879,0.5556,0.5879,0.5133,0.3827,0.7682,0.4619,0.5556,0.6913,0.4619,0.5556,0.6913,0.5133,0.3827,0.7682,0.3536,0.3827,0.8536,0.4619,0.5556,0.6913,0.3536,0.3827,0.8536,0.3182,0.5556,0.7682,0.3182,0.5556,0.7682,0.3536,0.3827,0.8536,0.1802,0.3827,0.9061,0.3182,0.5556,0.7682,0.1802,0.3827,0.9061,0.1622,0.5556,0.8155,0.1622,0.5556,0.8155,0.1802,0.3827,0.9061,0.0,0.3827,0.9239,0.1622,0.5556,0.8155,0.0,0.3827,0.9239,0.0,0.5556,0.8315,0.0,0.3827,0.9239,0.0,0.1951,0.9808,-0.1913,0.1951,0.9619,0.0,0.3827,0.9239,-0.1913,0.1951,0.9619,-0.1802,0.3827,0.9061,-0.1802,0.3827,0.9061,-0.1913,0.1951,0.9619,-0.3753,0.1951,0.9061,-0.1802,0.3827,0.9061,-0.3753,0.1951,0.9061,-0.3536,0.3827,0.8536,-0.3536,0.3827,0.8536,-0.3753,0.1951,0.9061,-0.5449,0.1951,0.8155,-0.3536,0.3827,0.8536,-0.5449,0.1951,0.8155,-0.5133,0.3827,0.7682,-0.5133,0.3827,0.7682,-0.5449,0.1951,0.8155,-0.6935,0.1951,0.6935,-0.5133,0.3827,0.7682,-0.6935,0.1951,0.6935,-0.6533,0.3827,0.6533,-0.6533,0.3827,0.6533,-0.6935,0.1951,0.6935,-0.8155,0.1951,0.5449,-0.6533,0.3827,0.6533,-0.8155,0.1951,0.5449,-0.7682,0.3827,0.5133,-0.7682,0.3827,0.5133,-0.8155,0.1951,0.5449,-0.9061,0.1951,0.3753,-0.7682,0.3827,0.5133,-0.9061,0.1951,0.3753,-0.8536,0.3827,0.3536,-0.8536,0.3827,0.3536,-0.9061,0.1951,0.3753,-0.9619,0.1951,0.1913,-0.8536,0.3827,0.3536,-0.9619,0.1951,0.1913,-0.9061,0.3827,0.1802,-0.9061,0.3827,0.1802,-0.9619,0.1951,0.1913,-0.9808,0.1951,0.0,-0.9061,0.3827,0.1802,-0.9808,0.1951,0.0,-0.9239,0.3827,0.0,-0.9239,0.3827,0.0,-0.9808,0.1951,0.0,-0.9619,0.1951,-0.1913,-0.9239,0.3827,0.0,-0.9619,0.1951,-0.1913,-0.9061,0.3827,-0.1802,-0.9061,0.3827,-0.1802,-0.9619,0.1951,-0.1913,-0.9061,0.1951,-0.3753,-0.9061,0.3827,-0.1802,-0.9061,0.1951,-0.3753,-0.8536,0.3827,-0.3536,-0.8536,0.3827,-0.3536,-0.9061,0.1951,-0.3753,-0.8155,0.1951,-0.5449,-0.8536,0.3827,-0.3536,-0.8155,0.1951,-0.5449,-0.7682,0.3827,-0.5133,-0.7682,0.3827,-0.5133,-0.8155,0.1951,-0.5449,-0.6935,0.1951,-0.6935,-0.7682,0.3827,-0.5133,-0.6935,0.1951,-0.6935,-0.6533,0.3827,-0.6533,-0.6533,0.3827,-0.6533,-0.6935,0.1951,-0.6935,-0.5449,0.1951,-0.8155,-0.6533,0.3827,-0.6533,-0.5449,0.1951,-0.8155,-0.5133,0.3827,-0.7682,-0.5133,0.3827,-0.7682,-0.5449,0.1951,-0.8155,-0.3753,0.1951,-0.9061,-0.5133,0.3827,-0.7682,-0.3753,0.1951,-0.9061,-0.3536,0.3827,-0.8536,-0.3536,0.3827,-0.8536,-0.3753,0.1951,-0.9061,-0.1913,0.1951,-0.9619,-0.3536,0.3827,-0.8536,-0.1913,0.1951,-0.9619,-0.1802,0.3827,-0.9061,-0.1802,0.3827,-0.9061,-0.1913,0.1951,-0.9619,0.0,0.1951,-0.9808,-0.1802,0.3827,-0.9061,0.0,0.1951,-0.9808,0.0,0.3827,-0.9239,0.0,0.3827,-0.9239,0.0,0.1951,-0.9808,0.1913,0.1951,-0.9619,0.0,0.3827,-0.9239,0.1913,0.1951,-0.9619,0.1802,0.3827,-0.9061,0.1802,0.3827,-0.9061,0.1913,0.1951,-0.9619,0.3753,0.1951,-0.9061,0.1802,0.3827,-0.9061,0.3753,0.1951,-0.9061,0.3536,0.3827,-0.8536,0.3536,0.3827,-0.8536,0.3753,0.1951,-0.9061,0.5449,0.1951,-0.8155,0.3536,0.3827,-0.8536,0.5449,0.1951,-0.8155,0.5133,0.3827,-0.7682,0.5133,0.3827,-0.7682,0.5449,0.1951,-0.8155,0.6935,0.1951,-0.6935,0.5133,0.3827,-0.7682,0.6935,0.1951,-0.6935,0.6533,0.3827,-0.6533,0.6533,0.3827,-0.6533,0.6935,0.1951,-0.6935,0.8155,0.1951,-0.5449,0.6533,0.3827,-0.6533,0.8155,0.1951,-0.5449,0.7682,0.3827,-0.5133,0.7682,0.3827,-0.5133,0.8155,0.1951,-0.5449,0.9061,0.1951,-0.3753,0.7682,0.3827,-0.5133,0.9061,0.1951,-0.3753,0.8536,0.3827,-0.3536,0.8536,0.3827,-0.3536,0.9061,0.1951,-0.3753,0.9619,0.1951,-0.1913,0.8536,0.3827,-0.3536,0.9619,0.1951,-0.1913,0.9061,0.3827,-0.1802,0.9061,0.3827,-0.1802,0.9619,0.1951,-0.1913,0.9808,0.1951,0.0,0.9061,0.3827,-0.1802,0.9808,0.1951,0.0,0.9239,0.3827,0.0,0.9239,0.3827,0.0,0.9808,0.1951,0.0,0.9619,0.1951,0.1913,0.9239,0.3827,0.0,0.9619,0.1951,0.1913,0.9061,0.3827,0.1802,0.9061,0.3827,0.1802,0.9619,0.1951,0.1913,0.9061,0.1951,0.3753,0.9061,0.3827,0.1802,0.9061,0.1951,0.3753,0.8536,0.3827,0.3536,0.8536,0.3827,0.3536,0.9061,0.1951,0.3753,0.8155,0.1951,0.5449,0.8536,0.3827,0.3536,0.8155,0.1951,0.5449,0.7682,0.3827,0.5133,0.7682,0.3827,0.5133,0.8155,0.1951,0.5449,0.6935,0.1951,0.6935,0.7682,0.3827,0.5133,0.6935,0.1951,0.6935,0.6533,0.3827,0.6533,0.6533,0.3827,0.6533,0.6935,0.1951,0.6935,0.5449,0.1951,0.8155,0.6533,0.3827,0.6533,0.5449,0.1951,0.8155,0.5133,0.3827,0.7682,0.5133,0.3827,0.7682,0.5449,0.1951,0.8155,0.3753,0.1951,0.9061,0.5133,0.3827,0.7682,0.3753,0.1951,0.9061,0.3536,0.3827,0.8536,0.3536,0.3827,0.8536,0.3753,0.1951,0.9061,0.1913,0.1951,0.9619,0.3536,0.3827,0.8536,0.1913,0.1951,0.9619,0.1802,0.3827,0.9061,0.1802,0.3827,0.9061,0.1913,0.1951,0.9619,0.0,0.1951,0.9808,0.1802,0.3827,0.9061,0.0,0.1951,0.9808,0.0,0.3827,0.9239,0.0,0.1951,0.9808,0.0,0.0,1.0,-0.1951,0.0,0.9808,0.0,0.1951,0.9808,-0.1951,0.0,0.9808,-0.1913,0.1951,0.9619,-0.1913,0.1951,0.9619,-0.1951,0.0,0.9808,-0.3827,0.0,0.9239,-0.1913,0.1951,0.9619,-0.3827,0.0,0.9239,-0.3753,0.1951,0.9061,-0.3753,0.1951,0.9061,-0.3827,0.0,0.9239,-0.5556,0.0,0.8315,-0.3753,0.1951,0.9061,-0.5556,0.0,0.8315,-0.5449,0.1951,0.8155,-0.5449,0.1951,0.8155,-0.5556,0.0,0.8315,-0.7071,0.0,0.7071,-0.5449,0.1951,0.8155,-0.7071,0.0,0.7071,-0.6935,0.1951,0.6935,-0.6935,0.1951,0.6935,-0.7071,0.0,0.7071,-0.8315,0.0,0.5556,-0.6935,0.1951,0.6935,-0.8315,0.0,0.5556,-0.8155,0.1951,0.5449,-0.8155,0.1951,0.5449,-0.8315,0.0,0.5556,-0.9239,0.0,0.3827,-0.8155,0.1951,0.5449,-0.9239,0.0,0.3827,-0.9061,0.1951,0.3753,-0.9061,0.1951,0.3753,-0.9239,0.0,0.3827,-0.9808,0.0,0.1951,-0.9061,0.1951,0.3753,-0.9808,0.0,0.1951,-0.9619,0.1951,0.1913,-0.9619,0.1951,0.1913,-0.9808,0.0,0.1951,-1.0,0.0,0.0,-0.9619,0.1951,0.1913,-1.0,0.0,0.0,-0.9808,0.1951,0.0,-0.9808,0.1951,0.0,-1.0,0.0,0.0,-0.9808,0.0,-0.1951,-0.9808,0.1951,0.0,-0.9808,0.0,-0.1951,-0.9619,0.1951,-0.1913,-0.9619,0.1951,-0.1913,-0.9808,0.0,-0.1951,-0.9239,0.0,-0.3827,-0.9619,0.1951,-0.1913,-0.9239,0.0,-0.3827,-0.9061,0.1951,-0.3753,-0.9061,0.1951,-0.3753,-0.9239,0.0,-0.3827,-0.8315,0.0,-0.5556,-0.9061,0.1951,-0.3753,-0.8315,0.0,-0.5556,-0.8155,0.1951,-0.5449,-0.8155,0.1951,-0.5449,-0.8315,0.0,-0.5556,-0.7071,0.0,-0.7071,-0.8155,0.1951,-0.5449,-0.7071,0.0,-0.7071,-0.6935,0.1951,-0.6935,-0.6935,0.1951,-0.6935,-0.7071,0.0,-0.7071,-0.5556,0.0,-0.8315,-0.6935,0.1951,-0.6935,-0.5556,0.0,-0.8315,-0.5449,0.1951,-0.8155,-0.5449,0.1951,-0.8155,-0.5556,0.0,-0.8315,-0.3827,0.0,-0.9239,-0.5449,0.1951,-0.8155,-0.3827,0.0,-0.9239,-0.3753,0.1951,-0.9061,-0.3753,0.1951,-0.9061,-0.3827,0.0,-0.9239,-0.1951,0.0,-0.9808,-0.3753,0.1951,-0.9061,-0.1951,0.0,-0.9808,-0.1913,0.1951,-0.9619,-0.1913,0.1951,-0.9619,-0.1951,0.0,-0.9808,0.0,0.0,-1.0,-0.1913,0.1951,-0.9619,0.0,0.0,-1.0,0.0,0.1951,-0.9808,0.0,0.1951,-0.9808,0.0,0.0,-1.0,0.1951,0.0,-0.9808,0.0,0.1951,-0.9808,0.1951,0.0,-0.9808,0.1913,0.1951,-0.9619,0.1913,0.1951,-0.9619,0.1951,0.0,-0.9808,0.3827,0.0,-0.9239,0.1913,0.1951,-0.9619,0.3827,0.0,-0.9239,0.3753,0.1951,-0.9061,0.3753,0.1951,-0.9061,0.3827,0.0,-0.9239,0.5556,0.0,-0.8315,0.3753,0.1951,-0.9061,0.5556,0.0,-0.8315,0.5449,0.1951,-0.8155,0.5449,0.1951,-0.8155,0.5556,0.0,-0.8315,0.7071,0.0,-0.7071,0.5449,0.1951,-0.8155,0.7071,0.0,-0.7071,0.6935,0.1951,-0.6935,0.6935,0.1951,-0.6935,0.7071,0.0,-0.7071,0.8315,0.0,-0.5556,0.6935,0.1951,-0.6935,0.8315,0.0,-0.5556,0.8155,0.1951,-0.5449,0.8155,0.1951,-0.5449,0.8315,0.0,-0.5556,0.9239,0.0,-0.3827,0.8155,0.1951,-0.5449,0.9239,0.0,-0.3827,0.9061,0.1951,-0.3753,0.9061,0.1951,-0.3753,0.9239,0.0,-0.3827,0.9808,0.0,-0.1951,0.9061,0.1951,-0.3753,0.9808,0.0,-0.1951,0.9619,0.1951,-0.1913,0.9619,0.1951,-0.1913,0.9808,0.0,-0.1951,1.0,0.0,0.0,0.9619,0.1951,-0.1913,1.0,0.0,0.0,0.9808,0.1951,0.0,0.9808,0.1951,0.0,1.0,0.0,0.0,0.9808,0.0,0.1951,0.9808,0.1951,0.0,0.9808,0.0,0.1951,0.9619,0.1951,0.1913,0.9619,0.1951,0.1913,0.9808,0.0,0.1951,0.9239,0.0,0.3827,0.9619,0.1951,0.1913,0.9239,0.0,0.3827,0.9061,0.1951,0.3753,0.9061,0.1951,0.3753,0.9239,0.0,0.3827,0.8315,0.0,0.5556,0.9061,0.1951,0.3753,0.8315,0.0,0.5556,0.8155,0.1951,0.5449,0.8155,0.1951,0.5449,0.8315,0.0,0.5556,0.7071,0.0,0.7071,0.8155,0.1951,0.5449,0.7071,0.0,0.7071,0.6935,0.1951,0.6935,0.6935,0.1951,0.6935,0.7071,0.0,0.7071,0.5556,0.0,0.8315,0.6935,0.1951,0.6935,0.5556,0.0,0.8315,0.5449,0.1951,0.8155,0.5449,0.1951,0.8155,0.5556,0.0,0.8315,0.3827,0.0,0.9239,0.5449,0.1951,0.8155,0.3827,0.0,0.9239,0.3753,0.1951,0.9061,0.3753,0.1951,0.9061,0.3827,0.0,0.9239,0.1951,0.0,0.9808,0.3753,0.1951,0.9061,0.1951,0.0,0.9808,0.1913,0.1951,0.9619,0.1913,0.1951,0.9619,0.1951,0.0,0.9808,0.0,0.0,1.0,0.1913,0.1951,0.9619,0.0,0.0,1.0,0.0,0.1951,0.9808,0.0,0.0,1.0,0.0,-0.1951,0.9808,-0.1913,-0.1951,0.9619,0.0,0.0,1.0,-0.1913,-0.1951,0.9619,-0.1951,0.0,0.9808,-0.1951,0.0,0.9808,-0.1913,-0.1951,0.9619,-0.3753,-0.1951,0.9061,-0.1951,0.0,0.9808,-0.3753,-0.1951,0.9061,-0.3827,0.0,0.9239,-0.3827,0.0,0.9239,-0.3753,-0.1951,0.9061,-0.5449,-0.1951,0.8155,-0.3827,0.0,0.9239,-0.5449,-0.1951,0.8155,-0.5556,0.0,0.8315,-0.5556,0.0,0.8315,-0.5449,-0.1951,0.8155,-0.6935,-0.1951,0.6935,-0.5556,0.0,0.8315,-0.6935,-0.1951,0.6935,-0.7071,0.0,0.7071,-0.7071,0.0,0.7071,-0.6935,-0.1951,0.6935,-0.8155,-0.1951,0.5449,-0.7071,0.0,0.7071,-0.8155,-0.1951,0.5449,-0.8315,0.0,0.5556,-0.8315,0.0,0.5556,-0.8155,-0.1951,0.5449,-0.9061,-0.1951,0.3753,-0.8315,0.0,0.5556,-0.9061,-0.1951,0.3753,-0.9239,0.0,0.3827,-0.9239,0.0,0.3827,-0.9061,-0.1951,0.3753,-0.9619,-0.1951,0.1913,-0.9239,0.0,0.3827,-0.9619,-0.1951,0.1913,-0.9808,0.0,0.1951,-0.9808,0.0,0.1951,-0.9619,-0.1951,0.1913,-0.9808,-0.1951,0.0,-0.9808,0.0,0.1951,-0.9808,-0.1951,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-0.9808,-0.1951,0.0,-0.9619,-0.1951,-0.1913,-1.0,0.0,0.0,-0.9619,-0.1951,-0.1913,-0.9808,0.0,-0.1951,-0.9808,0.0,-0.1951,-0.9619,-0.1951,-0.1913,-0.9061,-0.1951,-0.3753,-0.9808,0.0,-0.1951,-0.9061,-0.1951,-0.3753,-0.9239,0.0,-0.3827,-0.9239,0.0,-0.3827,-0.9061,-0.1951,-0.3753,-0.8155,-0.1951,-0.5449,-0.9239,0.0,-0.3827,-0.8155,-0.1951,-0.5449,-0.8315,0.0,-0.5556,-0.8315,0.0,-0.5556,-0.8155,-0.1951,-0.5449,-0.6935,-0.1951,-0.6935,-0.8315,0.0,-0.5556,-0.6935,-0.1951,-0.6935,-0.7071,0.0,-0.7071,-0.7071,0.0,-0.7071,-0.6935,-0.1951,-0.6935,-0.5449,-0.1951,-0.8155,-0.7071,0.0,-0.7071,-0.5449,-0.1951,-0.8155,-0.5556,0.0,-0.8315,-0.5556,0.0,-0.8315,-0.5449,-0.1951,-0.8155,-0.3753,-0.1951,-0.9061,-0.5556,0.0,-0.8315,-0.3753,-0.1951,-0.9061,-0.3827,0.0,-0.9239,-0.3827,0.0,-0.9239,-0.3753,-0.1951,-0.9061,-0.1913,-0.1951,-0.9619,-0.3827,0.0,-0.9239,-0.1913,-0.1951,-0.9619,-0.1951,0.0,-0.9808,-0.1951,0.0,-0.9808,-0.1913,-0.1951,-0.9619,0.0,-0.1951,-0.9808,-0.1951,0.0,-0.9808,0.0,-0.1951,-0.9808,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,-0.1951,-0.9808,0.1913,-0.1951,-0.9619,0.0,0.0,-1.0,0.1913,-0.1951,-0.9619,0.1951,0.0,-0.9808,0.1951,0.0,-0.9808,0.1913,-0.1951,-0.9619,0.3753,-0.1951,-0.9061,0.1951,0.0,-0.9808,0.3753,-0.1951,-0.9061,0.3827,0.0,-0.9239,0.3827,0.0,-0.9239,0.3753,-0.1951,-0.9061,0.5449,-0.1951,-0.8155,0.3827,0.0,-0.9239,0.5449,-0.1951,-0.8155,0.5556,0.0,-0.8315,0.5556,0.0,-0.8315,0.5449,-0.1951,-0.8155,0.6935,-0.1951,-0.6935,0.5556,0.0,-0.8315,0.6935,-0.1951,-0.6935,0.7071,0.0,-0.7071,0.7071,0.0,-0.7071,0.6935,-0.1951,-0.6935,0.8155,-0.1951,-0.5449,0.7071,0.0,-0.7071,0.8155,-0.1951,-0.5449,0.8315,0.0,-0.5556,0.8315,0.0,-0.5556,0.8155,-0.1951,-0.5449,0.9061,-0.1951,-0.3753,0.8315,0.0,-0.5556,0.9061,-0.1951,-0.3753,0.9239,0.0,-0.3827,0.9239,0.0,-0.3827,0.9061,-0.1951,-0.3753,0.9619,-0.1951,-0.1913,0.9239,0.0,-0.3827,0.9619,-0.1951,-0.1913,0.9808,0.0,-0.1951,0.9808,0.0,-0.1951,0.9619,-0.1951,-0.1913,0.9808,-0.1951,0.0,0.9808,0.0,-0.1951,0.9808,-0.1951,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.9808,-0.1951,0.0,0.9619,-0.1951,0.1913,1.0,0.0,0.0,0.9619,-0.1951,0.1913,0.9808,0.0,0.1951,0.9808,0.0,0.1951,0.9619,-0.1951,0.1913,0.9061,-0.1951,0.3753,0.9808,0.0,0.1951,0.9061,-0.1951,0.3753,0.9239,0.0,0.3827,0.9239,0.0,0.3827,0.9061,-0.1951,0.3753,0.8155,-0.1951,0.5449,0.9239,0.0,0.3827,0.8155,-0.1951,0.5449,0.8315,0.0,0.5556,0.8315,0.0,0.5556,0.8155,-0.1951,0.5449,0.6935,-0.1951,0.6935,0.8315,0.0,0.5556,0.6935,-0.1951,0.6935,0.7071,0.0,0.7071,0.7071,0.0,0.7071,0.6935,-0.1951,0.6935,0.5449,-0.1951,0.8155,0.7071,0.0,0.7071,0.5449,-0.1951,0.8155,0.5556,0.0,0.8315,0.5556,0.0,0.8315,0.5449,-0.1951,0.8155,0.3753,-0.1951,0.9061,0.5556,0.0,0.8315,0.3753,-0.1951,0.9061,0.3827,0.0,0.9239,0.3827,0.0,0.9239,0.3753,-0.1951,0.9061,0.1913,-0.1951,0.9619,0.3827,0.0,0.9239,0.1913,-0.1951,0.9619,0.1951,0.0,0.9808,0.1951,0.0,0.9808,0.1913,-0.1951,0.9619,0.0,-0.1951,0.9808,0.1951,0.0,0.9808,0.0,-0.1951,0.9808,0.0,0.0,1.0,0.0,-0.1951,0.9808,0.0,-0.3827,0.9239,-0.1802,-0.3827,0.9061,0.0,-0.1951,0.9808,-0.1802,-0.3827,0.9061,-0.1913,-0.1951,0.9619,-0.1913,-0.1951,0.9619,-0.1802,-0.3827,0.9061,-0.3536,-0.3827,0.8536,-0.1913,-0.1951,0.9619,-0.3536,-0.3827,0.8536,-0.3753,-0.1951,0.9061,-0.3753,-0.1951,0.9061,-0.3536,-0.3827,0.8536,-0.5133,-0.3827,0.7682,-0.3753,-0.1951,0.9061,-0.5133,-0.3827,0.7682,-0.5449,-0.1951,0.8155,-0.5449,-0.1951,0.8155,-0.5133,-0.3827,0.7682,-0.6533,-0.3827,0.6533,-0.5449,-0.1951,0.8155,-0.6533,-0.3827,0.6533,-0.6935,-0.1951,0.6935,-0.6935,-0.1951,0.6935,-0.6533,-0.3827,0.6533,-0.7682,-0.3827,0.5133,-0.6935,-0.1951,0.6935,-0.7682,-0.3827,0.5133,-0.8155,-0.1951,0.5449,-0.8155,-0.1951,0.5449,-0.7682,-0.3827,0.5133,-0.8536,-0.3827,0.3536,-0.8155,-0.1951,0.5449,-0.8536,-0.3827,0.3536,-0.9061,-0.1951,0.3753,-0.9061,-0.1951,0.3753,-0.8536,-0.3827,0.3536,-0.9061,-0.3827,0.1802,-0.9061,-0.1951,0.3753,-0.9061,-0.3827,0.1802,-0.9619,-0.1951,0.1913,-0.9619,-0.1951,0.1913,-0.9061,-0.3827,0.1802,-0.9239,-0.3827,0.0,-0.9619,-0.1951,0.1913,-0.9239,-0.3827,0.0,-0.9808,-0.1951,0.0,-0.9808,-0.1951,0.0,-0.9239,-0.3827,0.0,-0.9061,-0.3827,-0.1802,-0.9808,-0.1951,0.0,-0.9061,-0.3827,-0.1802,-0.9619,-0.1951,-0.1913,-0.9619,-0.1951,-0.1913,-0.9061,-0.3827,-0.1802,-0.8536,-0.3827,-0.3536,-0.9619,-0.1951,-0.1913,-0.8536,-0.3827,-0.3536,-0.9061,-0.1951,-0.3753,-0.9061,-0.1951,-0.3753,-0.8536,-0.3827,-0.3536,-0.7682,-0.3827,-0.5133,-0.9061,-0.1951,-0.3753,-0.7682,-0.3827,-0.5133,-0.8155,-0.1951,-0.5449,-0.8155,-0.1951,-0.5449,-0.7682,-0.3827,-0.5133,-0.6533,-0.3827,-0.6533,-0.8155,-0.1951,-0.5449,-0.6533,-0.3827,-0.6533,-0.6935,-0.1951,-0.6935,-0.6935,-0.1951,-0.6935,-0.6533,-0.3827,-0.6533,-0.5133,-0.3827,-0.7682,-0.6935,-0.1951,-0.6935,-0.5133,-0.3827,-0.7682,-0.5449,-0.1951,-0.8155,-0.5449,-0.1951,-0.8155,-0.5133,-0.3827,-0.7682,-0.3536,-0.3827,-0.8536,-0.5449,-0.1951,-0.8155,-0.3536,-0.3827,-0.8536,-0.3753,-0.1951,-0.9061,-0.3753,-0.1951,-0.9061,-0.3536,-0.3827,-0.8536,-0.1802,-0.3827,-0.9061,-0.3753,-0.1951,-0.9061,-0.1802,-0.3827,-0.9061,-0.1913,-0.1951,-0.9619,-0.1913,-0.1951,-0.9619,-0.1802,-0.3827,-0.9061,0.0,-0.3827,-0.9239,-0.1913,-0.1951,-0.9619,0.0,-0.3827,-0.9239,0.0,-0.1951,-0.9808,0.0,-0.1951,-0.9808,0.0,-0.3827,-0.9239,0.1802,-0.3827,-0.9061,0.0,-0.1951,-0.9808,0.1802,-0.3827,-0.9061,0.1913,-0.1951,-0.9619,0.1913,-0.1951,-0.9619,0.1802,-0.3827,-0.9061,0.3536,-0.3827,-0.8536,0.1913,-0.1951,-0.9619,0.3536,-0.3827,-0.8536,0.3753,-0.1951,-0.9061,0.3753,-0.1951,-0.9061,0.3536,-0.3827,-0.8536,0.5133,-0.3827,-0.7682,0.3753,-0.1951,-0.9061,0.5133,-0.3827,-0.7682,0.5449,-0.1951,-0.8155,0.5449,-0.1951,-0.8155,0.5133,-0.3827,-0.7682,0.6533,-0.3827,-0.6533,0.5449,-0.1951,-0.8155,0.6533,-0.3827,-0.6533,0.6935,-0.1951,-0.6935,0.6935,-0.1951,-0.6935,0.6533,-0.3827,-0.6533,0.7682,-0.3827,-0.5133,0.6935,-0.1951,-0.6935,0.7682,-0.3827,-0.5133,0.8155,-0.1951,-0.5449,0.8155,-0.1951,-0.5449,0.7682,-0.3827,-0.5133,0.8536,-0.3827,-0.3536,0.8155,-0.1951,-0.5449,0.8536,-0.3827,-0.3536,0.9061,-0.1951,-0.3753,0.9061,-0.1951,-0.3753,0.8536,-0.3827,-0.3536,0.9061,-0.3827,-0.1802,0.9061,-0.1951,-0.3753,0.9061,-0.3827,-0.1802,0.9619,-0.1951,-0.1913,0.9619,-0.1951,-0.1913,0.9061,-0.3827,-0.1802,0.9239,-0.3827,0.0,0.9619,-0.1951,-0.1913,0.9239,-0.3827,0.0,0.9808,-0.1951,0.0,0.9808,-0.1951,0.0,0.9239,-0.3827,0.0,0.9061,-0.3827,0.1802,0.9808,-0.1951,0.0,0.9061,-0.3827,0.1802,0.9619,-0.1951,0.1913,0.9619,-0.1951,0.1913,0.9061,-0.3827,0.1802,0.8536,-0.3827,0.3536,0.9619,-0.1951,0.1913,0.8536,-0.3827,0.3536,0.9061,-0.1951,0.3753,0.9061,-0.1951,0.3753,0.8536,-0.3827,0.3536,0.7682,-0.3827,0.5133,0.9061,-0.1951,0.3753,0.7682,-0.3827,0.5133,0.8155,-0.1951,0.5449,0.8155,-0.1951,0.5449,0.7682,-0.3827,0.5133,0.6533,-0.3827,0.6533,0.8155,-0.1951,0.5449,0.6533,-0.3827,0.6533,0.6935,-0.1951,0.6935,0.6935,-0.1951,0.6935,0.6533,-0.3827,0.6533,0.5133,-0.3827,0.7682,0.6935,-0.1951,0.6935,0.5133,-0.3827,0.7682,0.5449,-0.1951,0.8155,0.5449,-0.1951,0.8155,0.5133,-0.3827,0.7682,0.3536,-0.3827,0.8536,0.5449,-0.1951,0.8155,0.3536,-0.3827,0.8536,0.3753,-0.1951,0.9061,0.3753,-0.1951,0.9061,0.3536,-0.3827,0.8536,0.1802,-0.3827,0.9061,0.3753,-0.1951,0.9061,0.1802,-0.3827,0.9061,0.1913,-0.1951,0.9619,0.1913,-0.1951,0.9619,0.1802,-0.3827,0.9061,0.0,-0.3827,0.9239,0.1913,-0.1951,0.9619,0.0,-0.3827,0.9239,0.0,-0.1951,0.9808,0.0,-0.3827,0.9239,0.0,-0.5556,0.8315,-0.1622,-0.5556,0.8155,0.0,-0.3827,0.9239,-0.1622,-0.5556,0.8155,-0.1802,-0.3827,0.9061,-0.1802,-0.3827,0.9061,-0.1622,-0.5556,0.8155,-0.3182,-0.5556,0.7682,-0.1802,-0.3827,0.9061,-0.3182,-0.5556,0.7682,-0.3536,-0.3827,0.8536,-0.3536,-0.3827,0.8536,-0.3182,-0.5556,0.7682,-0.4619,-0.5556,0.6913,-0.3536,-0.3827,0.8536,-0.4619,-0.5556,0.6913,-0.5133,-0.3827,0.7682,-0.5133,-0.3827,0.7682,-0.4619,-0.5556,0.6913,-0.5879,-0.5556,0.5879,-0.5133,-0.3827,0.7682,-0.5879,-0.5556,0.5879,-0.6533,-0.3827,0.6533,-0.6533,-0.3827,0.6533,-0.5879,-0.5556,0.5879,-0.6913,-0.5556,0.4619,-0.6533,-0.3827,0.6533,-0.6913,-0.5556,0.4619,-0.7682,-0.3827,0.5133,-0.7682,-0.3827,0.5133,-0.6913,-0.5556,0.4619,-0.7682,-0.5556,0.3182,-0.7682,-0.3827,0.5133,-0.7682,-0.5556,0.3182,-0.8536,-0.3827,0.3536,-0.8536,-0.3827,0.3536,-0.7682,-0.5556,0.3182,-0.8155,-0.5556,0.1622,-0.8536,-0.3827,0.3536,-0.8155,-0.5556,0.1622,-0.9061,-0.3827,0.1802,-0.9061,-0.3827,0.1802,-0.8155,-0.5556,0.1622,-0.8315,-0.5556,0.0,-0.9061,-0.3827,0.1802,-0.8315,-0.5556,0.0,-0.9239,-0.3827,0.0,-0.9239,-0.3827,0.0,-0.8315,-0.5556,0.0,-0.8155,-0.5556,-0.1622,-0.9239,-0.3827,0.0,-0.8155,-0.5556,-0.1622,-0.9061,-0.3827,-0.1802,-0.9061,-0.3827,-0.1802,-0.8155,-0.5556,-0.1622,-0.7682,-0.5556,-0.3182,-0.9061,-0.3827,-0.1802,-0.7682,-0.5556,-0.3182,-0.8536,-0.3827,-0.3536,-0.8536,-0.3827,-0.3536,-0.7682,-0.5556,-0.3182,-0.6913,-0.5556,-0.4619,-0.8536,-0.3827,-0.3536,-0.6913,-0.5556,-0.4619,-0.7682,-0.3827,-0.5133,-0.7682,-0.3827,-0.5133,-0.6913,-0.5556,-0.4619,-0.5879,-0.5556,-0.5879,-0.7682,-0.3827,-0.5133,-0.5879,-0.5556,-0.5879,-0.6533,-0.3827,-0.6533,-0.6533,-0.3827,-0.6533,-0.5879,-0.5556,-0.5879,-0.4619,-0.5556,-0.6913,-0.6533,-0.3827,-0.6533,-0.4619,-0.5556,-0.6913,-0.5133,-0.3827,-0.7682,-0.5133,-0.3827,-0.7682,-0.4619,-0.5556,-0.6913,-0.3182,-0.5556,-0.7682,-0.5133,-0.3827,-0.7682,-0.3182,-0.5556,-0.7682,-0.3536,-0.3827,-0.8536,-0.3536,-0.3827,-0.8536,-0.3182,-0.5556,-0.7682,-0.1622,-0.5556,-0.8155,-0.3536,-0.3827,-0.8536,-0.1622,-0.5556,-0.8155,-0.1802,-0.3827,-0.9061,-0.1802,-0.3827,-0.9061,-0.1622,-0.5556,-0.8155,0.0,-0.5556,-0.8315,-0.1802,-0.3827,-0.9061,0.0,-0.5556,-0.8315,0.0,-0.3827,-0.9239,0.0,-0.3827,-0.9239,0.0,-0.5556,-0.8315,0.1622,-0.5556,-0.8155,0.0,-0.3827,-0.9239,0.1622,-0.5556,-0.8155,0.1802,-0.3827,-0.9061,0.1802,-0.3827,-0.9061,0.1622,-0.5556,-0.8155,0.3182,-0.5556,-0.7682,0.1802,-0.3827,-0.9061,0.3182,-0.5556,-0.7682,0.3536,-0.3827,-0.8536,0.3536,-0.3827,-0.8536,0.3182,-0.5556,-0.7682,0.4619,-0.5556,-0.6913,0.3536,-0.3827,-0.8536,0.4619,-0.5556,-0.6913,0.5133,-0.3827,-0.7682,0.5133,-0.3827,-0.7682,0.4619,-0.5556,-0.6913,0.5879,-0.5556,-0.5879,0.5133,-0.3827,-0.7682,0.5879,-0.5556,-0.5879,0.6533,-0.3827,-0.6533,0.6533,-0.3827,-0.6533,0.5879,-0.5556,-0.5879,0.6913,-0.5556,-0.4619,0.6533,-0.3827,-0.6533,0.6913,-0.5556,-0.4619,0.7682,-0.3827,-0.5133,0.7682,-0.3827,-0.5133,0.6913,-0.5556,-0.4619,0.7682,-0.5556,-0.3182,0.7682,-0.3827,-0.5133,0.7682,-0.5556,-0.3182,0.8536,-0.3827,-0.3536,0.8536,-0.3827,-0.3536,0.7682,-0.5556,-0.3182,0.8155,-0.5556,-0.1622,0.8536,-0.3827,-0.3536,0.8155,-0.5556,-0.1622,0.9061,-0.3827,-0.1802,0.9061,-0.3827,-0.1802,0.8155,-0.5556,-0.1622,0.8315,-0.5556,0.0,0.9061,-0.3827,-0.1802,0.8315,-0.5556,0.0,0.9239,-0.3827,0.0,0.9239,-0.3827,0.0,0.8315,-0.5556,0.0,0.8155,-0.5556,0.1622,0.9239,-0.3827,0.0,0.8155,-0.5556,0.1622,0.9061,-0.3827,0.1802,0.9061,-0.3827,0.1802,0.8155,-0.5556,0.1622,0.7682,-0.5556,0.3182,0.9061,-0.3827,0.1802,0.7682,-0.5556,0.3182,0.8536,-0.3827,0.3536,0.8536,-0.3827,0.3536,0.7682,-0.5556,0.3182,0.6913,-0.5556,0.4619,0.8536,-0.3827,0.3536,0.6913,-0.5556,0.4619,0.7682,-0.3827,0.5133,0.7682,-0.3827,0.5133,0.6913,-0.5556,0.4619,0.5879,-0.5556,0.5879,0.7682,-0.3827,0.5133,0.5879,-0.5556,0.5879,0.6533,-0.3827,0.6533,0.6533,-0.3827,0.6533,0.5879,-0.5556,0.5879,0.4619,-0.5556,0.6913,0.6533,-0.3827,0.6533,0.4619,-0.5556,0.6913,0.5133,-0.3827,0.7682,0.5133,-0.3827,0.7682,0.4619,-0.5556,0.6913,0.3182,-0.5556,0.7682,0.5133,-0.3827,0.7682,0.3182,-0.5556,0.7682,0.3536,-0.3827,0.8536,0.3536,-0.3827,0.8536,0.3182,-0.5556,0.7682,0.1622,-0.5556,0.8155,0.3536,-0.3827,0.8536,0.1622,-0.5556,0.8155,0.1802,-0.3827,0.9061,0.1802,-0.3827,0.9061,0.1622,-0.5556,0.8155,0.0,-0.5556,0.8315,0.1802,-0.3827,0.9061,0.0,-0.5556,0.8315,0.0,-0.3827,0.9239,0.0,-0.5556,0.8315,0.0,-0.7071,0.7071,-0.1379,-0.7071,0.6935,0.0,-0.5556,0.8315,-0.1379,-0.7071,0.6935,-0.1622,-0.5556,0.8155,-0.1622,-0.5556,0.8155,-0.1379,-0.7071,0.6935,-0.2706,-0.7071,0.6533,-0.1622,-0.5556,0.8155,-0.2706,-0.7071,0.6533,-0.3182,-0.5556,0.7682,-0.3182,-0.5556,0.7682,-0.2706,-0.7071,0.6533,-0.3928,-0.7071,0.5879,-0.3182,-0.5556,0.7682,-0.3928,-0.7071,0.5879,-0.4619,-0.5556,0.6913,-0.4619,-0.5556,0.6913,-0.3928,-0.7071,0.5879,-0.5,-0.7071,0.5,-0.4619,-0.5556,0.6913,-0.5,-0.7071,0.5,-0.5879,-0.5556,0.5879,-0.5879,-0.5556,0.5879,-0.5,-0.7071,0.5,-0.5879,-0.7071,0.3928,-0.5879,-0.5556,0.5879,-0.5879,-0.7071,0.3928,-0.6913,-0.5556,0.4619,-0.6913,-0.5556,0.4619,-0.5879,-0.7071,0.3928,-0.6533,-0.7071,0.2706,-0.6913,-0.5556,0.4619,-0.6533,-0.7071,0.2706,-0.7682,-0.5556,0.3182,-0.7682,-0.5556,0.3182,-0.6533,-0.7071,0.2706,-0.6935,-0.7071,0.1379,-0.7682,-0.5556,0.3182,-0.6935,-0.7071,0.1379,-0.8155,-0.5556,0.1622,-0.8155,-0.5556,0.1622,-0.6935,-0.7071,0.1379,-0.7071,-0.7071,0.0,-0.8155,-0.5556,0.1622,-0.7071,-0.7071,0.0,-0.8315,-0.5556,0.0,-0.8315,-0.5556,0.0,-0.7071,-0.7071,0.0,-0.6935,-0.7071,-0.1379,-0.8315,-0.5556,0.0,-0.6935,-0.7071,-0.1379,-0.8155,-0.5556,-0.1622,-0.8155,-0.5556,-0.1622,-0.6935,-0.7071,-0.1379,-0.6533,-0.7071,-0.2706,-0.8155,-0.5556,-0.1622,-0.6533,-0.7071,-0.2706,-0.7682,-0.5556,-0.3182,-0.7682,-0.5556,-0.3182,-0.6533,-0.7071,-0.2706,-0.5879,-0.7071,-0.3928,-0.7682,-0.5556,-0.3182,-0.5879,-0.7071,-0.3928,-0.6913,-0.5556,-0.4619,-0.6913,-0.5556,-0.4619,-0.5879,-0.7071,-0.3928,-0.5,-0.7071,-0.5,-0.6913,-0.5556,-0.4619,-0.5,-0.7071,-0.5,-0.5879,-0.5556,-0.5879,-0.5879,-0.5556,-0.5879,-0.5,-0.7071,-0.5,-0.3928,-0.7071,-0.5879,-0.5879,-0.5556,-0.5879,-0.3928,-0.7071,-0.5879,-0.4619,-0.5556,-0.6913,-0.4619,-0.5556,-0.6913,-0.3928,-0.7071,-0.5879,-0.2706,-0.7071,-0.6533,-0.4619,-0.5556,-0.6913,-0.2706,-0.7071,-0.6533,-0.3182,-0.5556,-0.7682,-0.3182,-0.5556,-0.7682,-0.2706,-0.7071,-0.6533,-0.1379,-0.7071,-0.6935,-0.3182,-0.5556,-0.7682,-0.1379,-0.7071,-0.6935,-0.1622,-0.5556,-0.8155,-0.1622,-0.5556,-0.8155,-0.1379,-0.7071,-0.6935,0.0,-0.7071,-0.7071,-0.1622,-0.5556,-0.8155,0.0,-0.7071,-0.7071,0.0,-0.5556,-0.8315,0.0,-0.5556,-0.8315,0.0,-0.7071,-0.7071,0.138,-0.7071,-0.6935,0.0,-0.5556,-0.8315,0.138,-0.7071,-0.6935,0.1622,-0.5556,-0.8155,0.1622,-0.5556,-0.8155,0.138,-0.7071,-0.6935,0.2706,-0.7071,-0.6533,0.1622,-0.5556,-0.8155,0.2706,-0.7071,-0.6533,0.3182,-0.5556,-0.7682,0.3182,-0.5556,-0.7682,0.2706,-0.7071,-0.6533,0.3928,-0.7071,-0.5879,0.3182,-0.5556,-0.7682,0.3928,-0.7071,-0.5879,0.4619,-0.5556,-0.6913,0.4619,-0.5556,-0.6913,0.3928,-0.7071,-0.5879,0.5,-0.7071,-0.5,0.4619,-0.5556,-0.6913,0.5,-0.7071,-0.5,0.5879,-0.5556,-0.5879,0.5879,-0.5556,-0.5879,0.5,-0.7071,-0.5,0.5879,-0.7071,-0.3928,0.5879,-0.5556,-0.5879,0.5879,-0.7071,-0.3928,0.6913,-0.5556,-0.4619,0.6913,-0.5556,-0.4619,0.5879,-0.7071,-0.3928,0.6533,-0.7071,-0.2706,0.6913,-0.5556,-0.4619,0.6533,-0.7071,-0.2706,0.7682,-0.5556,-0.3182,0.7682,-0.5556,-0.3182,0.6533,-0.7071,-0.2706,0.6935,-0.7071,-0.1379,0.7682,-0.5556,-0.3182,0.6935,-0.7071,-0.1379,0.8155,-0.5556,-0.1622,0.8155,-0.5556,-0.1622,0.6935,-0.7071,-0.1379,0.7071,-0.7071,0.0,0.8155,-0.5556,-0.1622,0.7071,-0.7071,0.0,0.8315,-0.5556,0.0,0.8315,-0.5556,0.0,0.7071,-0.7071,0.0,0.6935,-0.7071,0.138,0.8315,-0.5556,0.0,0.6935,-0.7071,0.138,0.8155,-0.5556,0.1622,0.8155,-0.5556,0.1622,0.6935,-0.7071,0.138,0.6533,-0.7071,0.2706,0.8155,-0.5556,0.1622,0.6533,-0.7071,0.2706,0.7682,-0.5556,0.3182,0.7682,-0.5556,0.3182,0.6533,-0.7071,0.2706,0.5879,-0.7071,0.3928,0.7682,-0.5556,0.3182,0.5879,-0.7071,0.3928,0.6913,-0.5556,0.4619,0.6913,-0.5556,0.4619,0.5879,-0.7071,0.3928,0.5,-0.7071,0.5,0.6913,-0.5556,0.4619,0.5,-0.7071,0.5,0.5879,-0.5556,0.5879,0.5879,-0.5556,0.5879,0.5,-0.7071,0.5,0.3928,-0.7071,0.5879,0.5879,-0.5556,0.5879,0.3928,-0.7071,0.5879,0.4619,-0.5556,0.6913,0.4619,-0.5556,0.6913,0.3928,-0.7071,0.5879,0.2706,-0.7071,0.6533,0.4619,-0.5556,0.6913,0.2706,-0.7071,0.6533,0.3182,-0.5556,0.7682,0.3182,-0.5556,0.7682,0.2706,-0.7071,0.6533,0.1379,-0.7071,0.6935,0.3182,-0.5556,0.7682,0.1379,-0.7071,0.6935,0.1622,-0.5556,0.8155,0.1622,-0.5556,0.8155,0.1379,-0.7071,0.6935,0.0,-0.7071,0.7071,0.1622,-0.5556,0.8155,0.0,-0.7071,0.7071,0.0,-0.5556,0.8315,0.0,-0.7071,0.7071,0.0,-0.8315,0.5556,-0.1084,-0.8315,0.5449,0.0,-0.7071,0.7071,-0.1084,-0.8315,0.5449,-0.1379,-0.7071,0.6935,-0.1379,-0.7071,0.6935,-0.1084,-0.8315,0.5449,-0.2126,-0.8315,0.5133,-0.1379,-0.7071,0.6935,-0.2126,-0.8315,0.5133,-0.2706,-0.7071,0.6533,-0.2706,-0.7071,0.6533,-0.2126,-0.8315,0.5133,-0.3087,-0.8315,0.4619,-0.2706,-0.7071,0.6533,-0.3087,-0.8315,0.4619,-0.3928,-0.7071,0.5879,-0.3928,-0.7071,0.5879,-0.3087,-0.8315,0.4619,-0.3928,-0.8315,0.3928,-0.3928,-0.7071,0.5879,-0.3928,-0.8315,0.3928,-0.5,-0.7071,0.5,-0.5,-0.7071,0.5,-0.3928,-0.8315,0.3928,-0.4619,-0.8315,0.3087,-0.5,-0.7071,0.5,-0.4619,-0.8315,0.3087,-0.5879,-0.7071,0.3928,-0.5879,-0.7071,0.3928,-0.4619,-0.8315,0.3087,-0.5133,-0.8315,0.2126,-0.5879,-0.7071,0.3928,-0.5133,-0.8315,0.2126,-0.6533,-0.7071,0.2706,-0.6533,-0.7071,0.2706,-0.5133,-0.8315,0.2126,-0.5449,-0.8315,0.1084,-0.6533,-0.7071,0.2706,-0.5449,-0.8315,0.1084,-0.6935,-0.7071,0.1379,-0.6935,-0.7071,0.1379,-0.5449,-0.8315,0.1084,-0.5556,-0.8315,0.0,-0.6935,-0.7071,0.1379,-0.5556,-0.8315,0.0,-0.7071,-0.7071,0.0,-0.7071,-0.7071,0.0,-0.5556,-0.8315,0.0,-0.5449,-0.8315,-0.1084,-0.7071,-0.7071,0.0,-0.5449,-0.8315,-0.1084,-0.6935,-0.7071,-0.1379,-0.6935,-0.7071,-0.1379,-0.5449,-0.8315,-0.1084,-0.5133,-0.8315,-0.2126,-0.6935,-0.7071,-0.1379,-0.5133,-0.8315,-0.2126,-0.6533,-0.7071,-0.2706,-0.6533,-0.7071,-0.2706,-0.5133,-0.8315,-0.2126,-0.4619,-0.8315,-0.3087,-0.6533,-0.7071,-0.2706,-0.4619,-0.8315,-0.3087,-0.5879,-0.7071,-0.3928,-0.5879,-0.7071,-0.3928,-0.4619,-0.8315,-0.3087,-0.3928,-0.8315,-0.3928,-0.5879,-0.7071,-0.3928,-0.3928,-0.8315,-0.3928,-0.5,-0.7071,-0.5,-0.5,-0.7071,-0.5,-0.3928,-0.8315,-0.3928,-0.3087,-0.8315,-0.4619,-0.5,-0.7071,-0.5,-0.3087,-0.8315,-0.4619,-0.3928,-0.7071,-0.5879,-0.3928,-0.7071,-0.5879,-0.3087,-0.8315,-0.4619,-0.2126,-0.8315,-0.5133,-0.3928,-0.7071,-0.5879,-0.2126,-0.8315,-0.5133,-0.2706,-0.7071,-0.6533,-0.2706,-0.7071,-0.6533,-0.2126,-0.8315,-0.5133,-0.1084,-0.8315,-0.5449,-0.2706,-0.7071,-0.6533,-0.1084,-0.8315,-0.5449,-0.1379,-0.7071,-0.6935,-0.1379,-0.7071,-0.6935,-0.1084,-0.8315,-0.5449,0.0,-0.8315,-0.5556,-0.1379,-0.7071,-0.6935,0.0,-0.8315,-0.5556,0.0,-0.7071,-0.7071,0.0,-0.7071,-0.7071,0.0,-0.8315,-0.5556,0.1084,-0.8315,-0.5449,0.0,-0.7071,-0.7071,0.1084,-0.8315,-0.5449,0.138,-0.7071,-0.6935,0.138,-0.7071,-0.6935,0.1084,-0.8315,-0.5449,0.2126,-0.8315,-0.5133,0.138,-0.7071,-0.6935,0.2126,-0.8315,-0.5133,0.2706,-0.7071,-0.6533,0.2706,-0.7071,-0.6533,0.2126,-0.8315,-0.5133,0.3087,-0.8315,-0.4619,0.2706,-0.7071,-0.6533,0.3087,-0.8315,-0.4619,0.3928,-0.7071,-0.5879,0.3928,-0.7071,-0.5879,0.3087,-0.8315,-0.4619,0.3928,-0.8315,-0.3928,0.3928,-0.7071,-0.5879,0.3928,-0.8315,-0.3928,0.5,-0.7071,-0.5,0.5,-0.7071,-0.5,0.3928,-0.8315,-0.3928,0.4619,-0.8315,-0.3087,0.5,-0.7071,-0.5,0.4619,-0.8315,-0.3087,0.5879,-0.7071,-0.3928,0.5879,-0.7071,-0.3928,0.4619,-0.8315,-0.3087,0.5133,-0.8315,-0.2126,0.5879,-0.7071,-0.3928,0.5133,-0.8315,-0.2126,0.6533,-0.7071,-0.2706,0.6533,-0.7071,-0.2706,0.5133,-0.8315,-0.2126,0.5449,-0.8315,-0.1084,0.6533,-0.7071,-0.2706,0.5449,-0.8315,-0.1084,0.6935,-0.7071,-0.1379,0.6935,-0.7071,-0.1379,0.5449,-0.8315,-0.1084,0.5556,-0.8315,0.0,0.6935,-0.7071,-0.1379,0.5556,-0.8315,0.0,0.7071,-0.7071,0.0,0.7071,-0.7071,0.0,0.5556,-0.8315,0.0,0.5449,-0.8315,0.1084,0.7071,-0.7071,0.0,0.5449,-0.8315,0.1084,0.6935,-0.7071,0.138,0.6935,-0.7071,0.138,0.5449,-0.8315,0.1084,0.5133,-0.8315,0.2126,0.6935,-0.7071,0.138,0.5133,-0.8315,0.2126,0.6533,-0.7071,0.2706,0.6533,-0.7071,0.2706,0.5133,-0.8315,0.2126,0.4619,-0.8315,0.3087,0.6533,-0.7071,0.2706,0.4619,-0.8315,0.3087,0.5879,-0.7071,0.3928,0.5879,-0.7071,0.3928,0.4619,-0.8315,0.3087,0.3928,-0.8315,0.3928,0.5879,-0.7071,0.3928,0.3928,-0.8315,0.3928,0.5,-0.7071,0.5,0.5,-0.7071,0.5,0.3928,-0.8315,0.3928,0.3087,-0.8315,0.4619,0.5,-0.7071,0.5,0.3087,-0.8315,0.4619,0.3928,-0.7071,0.5879,0.3928,-0.7071,0.5879,0.3087,-0.8315,0.4619,0.2126,-0.8315,0.5133,0.3928,-0.7071,0.5879,0.2126,-0.8315,0.5133,0.2706,-0.7071,0.6533,0.2706,-0.7071,0.6533,0.2126,-0.8315,0.5133,0.1084,-0.8315,0.5449,0.2706,-0.7071,0.6533,0.1084,-0.8315,0.5449,0.1379,-0.7071,0.6935,0.1379,-0.7071,0.6935,0.1084,-0.8315,0.5449,0.0,-0.8315,0.5556,0.1379,-0.7071,0.6935,0.0,-0.8315,0.5556,0.0,-0.7071,0.7071,0.0,-0.8315,0.5556,0.0,-0.9239,0.3827,-0.0747,-0.9239,0.3753,0.0,-0.8315,0.5556,-0.0747,-0.9239,0.3753,-0.1084,-0.8315,0.5449,-0.1084,-0.8315,0.5449,-0.0747,-0.9239,0.3753,-0.1464,-0.9239,0.3536,-0.1084,-0.8315,0.5449,-0.1464,-0.9239,0.3536,-0.2126,-0.8315,0.5133,-0.2126,-0.8315,0.5133,-0.1464,-0.9239,0.3536,-0.2126,-0.9239,0.3182,-0.2126,-0.8315,0.5133,-0.2126,-0.9239,0.3182,-0.3087,-0.8315,0.4619,-0.3087,-0.8315,0.4619,-0.2126,-0.9239,0.3182,-0.2706,-0.9239,0.2706,-0.3087,-0.8315,0.4619,-0.2706,-0.9239,0.2706,-0.3928,-0.8315,0.3928,-0.3928,-0.8315,0.3928,-0.2706,-0.9239,0.2706,-0.3182,-0.9239,0.2126,-0.3928,-0.8315,0.3928,-0.3182,-0.9239,0.2126,-0.4619,-0.8315,0.3087,-0.4619,-0.8315,0.3087,-0.3182,-0.9239,0.2126,-0.3536,-0.9239,0.1464,-0.4619,-0.8315,0.3087,-0.3536,-0.9239,0.1464,-0.5133,-0.8315,0.2126,-0.5133,-0.8315,0.2126,-0.3536,-0.9239,0.1464,-0.3753,-0.9239,0.0747,-0.5133,-0.8315,0.2126,-0.3753,-0.9239,0.0747,-0.5449,-0.8315,0.1084,-0.5449,-0.8315,0.1084,-0.3753,-0.9239,0.0747,-0.3827,-0.9239,0.0,-0.5449,-0.8315,0.1084,-0.3827,-0.9239,0.0,-0.5556,-0.8315,0.0,-0.5556,-0.8315,0.0,-0.3827,-0.9239,0.0,-0.3753,-0.9239,-0.0747,-0.5556,-0.8315,0.0,-0.3753,-0.9239,-0.0747,-0.5449,-0.8315,-0.1084,-0.5449,-0.8315,-0.1084,-0.3753,-0.9239,-0.0747,-0.3536,-0.9239,-0.1464,-0.5449,-0.8315,-0.1084,-0.3536,-0.9239,-0.1464,-0.5133,-0.8315,-0.2126,-0.5133,-0.8315,-0.2126,-0.3536,-0.9239,-0.1464,-0.3182,-0.9239,-0.2126,-0.5133,-0.8315,-0.2126,-0.3182,-0.9239,-0.2126,-0.4619,-0.8315,-0.3087,-0.4619,-0.8315,-0.3087,-0.3182,-0.9239,-0.2126,-0.2706,-0.9239,-0.2706,-0.4619,-0.8315,-0.3087,-0.2706,-0.9239,-0.2706,-0.3928,-0.8315,-0.3928,-0.3928,-0.8315,-0.3928,-0.2706,-0.9239,-0.2706,-0.2126,-0.9239,-0.3182,-0.3928,-0.8315,-0.3928,-0.2126,-0.9239,-0.3182,-0.3087,-0.8315,-0.4619,-0.3087,-0.8315,-0.4619,-0.2126,-0.9239,-0.3182,-0.1464,-0.9239,-0.3536,-0.3087,-0.8315,-0.4619,-0.1464,-0.9239,-0.3536,-0.2126,-0.8315,-0.5133,-0.2126,-0.8315,-0.5133,-0.1464,-0.9239,-0.3536,-0.0747,-0.9239,-0.3753,-0.2126,-0.8315,-0.5133,-0.0747,-0.9239,-0.3753,-0.1084,-0.8315,-0.5449,-0.1084,-0.8315,-0.5449,-0.0747,-0.9239,-0.3753,0.0,-0.9239,-0.3827,-0.1084,-0.8315,-0.5449,0.0,-0.9239,-0.3827,0.0,-0.8315,-0.5556,0.0,-0.8315,-0.5556,0.0,-0.9239,-0.3827,0.0747,-0.9239,-0.3753,0.0,-0.8315,-0.5556,0.0747,-0.9239,-0.3753,0.1084,-0.8315,-0.5449,0.1084,-0.8315,-0.5449,0.0747,-0.9239,-0.3753,0.1464,-0.9239,-0.3536,0.1084,-0.8315,-0.5449,0.1464,-0.9239,-0.3536,0.2126,-0.8315,-0.5133,0.2126,-0.8315,-0.5133,0.1464,-0.9239,-0.3536,0.2126,-0.9239,-0.3182,0.2126,-0.8315,-0.5133,0.2126,-0.9239,-0.3182,0.3087,-0.8315,-0.4619,0.3087,-0.8315,-0.4619,0.2126,-0.9239,-0.3182,0.2706,-0.9239,-0.2706,0.3087,-0.8315,-0.4619,0.2706,-0.9239,-0.2706,0.3928,-0.8315,-0.3928,0.3928,-0.8315,-0.3928,0.2706,-0.9239,-0.2706,0.3182,-0.9239,-0.2126,0.3928,-0.8315,-0.3928,0.3182,-0.9239,-0.2126,0.4619,-0.8315,-0.3087,0.4619,-0.8315,-0.3087,0.3182,-0.9239,-0.2126,0.3536,-0.9239,-0.1464,0.4619,-0.8315,-0.3087,0.3536,-0.9239,-0.1464,0.5133,-0.8315,-0.2126,0.5133,-0.8315,-0.2126,0.3536,-0.9239,-0.1464,0.3753,-0.9239,-0.0747,0.5133,-0.8315,-0.2126,0.3753,-0.9239,-0.0747,0.5449,-0.8315,-0.1084,0.5449,-0.8315,-0.1084,0.3753,-0.9239,-0.0747,0.3827,-0.9239,0.0,0.5449,-0.8315,-0.1084,0.3827,-0.9239,0.0,0.5556,-0.8315,0.0,0.5556,-0.8315,0.0,0.3827,-0.9239,0.0,0.3753,-0.9239,0.0747,0.5556,-0.8315,0.0,0.3753,-0.9239,0.0747,0.5449,-0.8315,0.1084,0.5449,-0.8315,0.1084,0.3753,-0.9239,0.0747,0.3536,-0.9239,0.1464,0.5449,-0.8315,0.1084,0.3536,-0.9239,0.1464,0.5133,-0.8315,0.2126,0.5133,-0.8315,0.2126,0.3536,-0.9239,0.1464,0.3182,-0.9239,0.2126,0.5133,-0.8315,0.2126,0.3182,-0.9239,0.2126,0.4619,-0.8315,0.3087,0.4619,-0.8315,0.3087,0.3182,-0.9239,0.2126,0.2706,-0.9239,0.2706,0.4619,-0.8315,0.3087,0.2706,-0.9239,0.2706,0.3928,-0.8315,0.3928,0.3928,-0.8315,0.3928,0.2706,-0.9239,0.2706,0.2126,-0.9239,0.3182,0.3928,-0.8315,0.3928,0.2126,-0.9239,0.3182,0.3087,-0.8315,0.4619,0.3087,-0.8315,0.4619,0.2126,-0.9239,0.3182,0.1464,-0.9239,0.3536,0.3087,-0.8315,0.4619,0.1464,-0.9239,0.3536,0.2126,-0.8315,0.5133,0.2126,-0.8315,0.5133,0.1464,-0.9239,0.3536,0.0747,-0.9239,0.3753,0.2126,-0.8315,0.5133,0.0747,-0.9239,0.3753,0.1084,-0.8315,0.5449,0.1084,-0.8315,0.5449,0.0747,-0.9239,0.3753,0.0,-0.9239,0.3827,0.1084,-0.8315,0.5449,0.0,-0.9239,0.3827,0.0,-0.8315,0.5556,0.0,-0.9239,0.3827,0.0,-0.9808,0.1951,-0.0381,-0.9808,0.1913,0.0,-0.9239,0.3827,-0.0381,-0.9808,0.1913,-0.0747,-0.9239,0.3753,-0.0747,-0.9239,0.3753,-0.0381,-0.9808,0.1913,-0.0747,-0.9808,0.1802,-0.0747,-0.9239,0.3753,-0.0747,-0.9808,0.1802,-0.1464,-0.9239,0.3536,-0.1464,-0.9239,0.3536,-0.0747,-0.9808,0.1802,-0.1084,-0.9808,0.1622,-0.1464,-0.9239,0.3536,-0.1084,-0.9808,0.1622,-0.2126,-0.9239,0.3182,-0.2126,-0.9239,0.3182,-0.1084,-0.9808,0.1622,-0.1379,-0.9808,0.1379,-0.2126,-0.9239,0.3182,-0.1379,-0.9808,0.1379,-0.2706,-0.9239,0.2706,-0.2706,-0.9239,0.2706,-0.1379,-0.9808,0.1379,-0.1622,-0.9808,0.1084,-0.2706,-0.9239,0.2706,-0.1622,-0.9808,0.1084,-0.3182,-0.9239,0.2126,-0.3182,-0.9239,0.2126,-0.1622,-0.9808,0.1084,-0.1802,-0.9808,0.0747,-0.3182,-0.9239,0.2126,-0.1802,-0.9808,0.0747,-0.3536,-0.9239,0.1464,-0.3536,-0.9239,0.1464,-0.1802,-0.9808,0.0747,-0.1913,-0.9808,0.0381,-0.3536,-0.9239,0.1464,-0.1913,-0.9808,0.0381,-0.3753,-0.9239,0.0747,-0.3753,-0.9239,0.0747,-0.1913,-0.9808,0.0381,-0.1951,-0.9808,0.0,-0.3753,-0.9239,0.0747,-0.1951,-0.9808,0.0,-0.3827,-0.9239,0.0,-0.3827,-0.9239,0.0,-0.1951,-0.9808,0.0,-0.1913,-0.9808,-0.0381,-0.3827,-0.9239,0.0,-0.1913,-0.9808,-0.0381,-0.3753,-0.9239,-0.0747,-0.3753,-0.9239,-0.0747,-0.1913,-0.9808,-0.0381,-0.1802,-0.9808,-0.0747,-0.3753,-0.9239,-0.0747,-0.1802,-0.9808,-0.0747,-0.3536,-0.9239,-0.1464,-0.3536,-0.9239,-0.1464,-0.1802,-0.9808,-0.0747,-0.1622,-0.9808,-0.1084,-0.3536,-0.9239,-0.1464,-0.1622,-0.9808,-0.1084,-0.3182,-0.9239,-0.2126,-0.3182,-0.9239,-0.2126,-0.1622,-0.9808,-0.1084,-0.1379,-0.9808,-0.1379,-0.3182,-0.9239,-0.2126,-0.1379,-0.9808,-0.1379,-0.2706,-0.9239,-0.2706,-0.2706,-0.9239,-0.2706,-0.1379,-0.9808,-0.1379,-0.1084,-0.9808,-0.1622,-0.2706,-0.9239,-0.2706,-0.1084,-0.9808,-0.1622,-0.2126,-0.9239,-0.3182,-0.2126,-0.9239,-0.3182,-0.1084,-0.9808,-0.1622,-0.0747,-0.9808,-0.1802,-0.2126,-0.9239,-0.3182,-0.0747,-0.9808,-0.1802,-0.1464,-0.9239,-0.3536,-0.1464,-0.9239,-0.3536,-0.0747,-0.9808,-0.1802,-0.0381,-0.9808,-0.1913,-0.1464,-0.9239,-0.3536,-0.0381,-0.9808,-0.1913,-0.0747,-0.9239,-0.3753,-0.0747,-0.9239,-0.3753,-0.0381,-0.9808,-0.1913,0.0,-0.9808,-0.1951,-0.0747,-0.9239,-0.3753,0.0,-0.9808,-0.1951,0.0,-0.9239,-0.3827,0.0,-0.9239,-0.3827,0.0,-0.9808,-0.1951,0.0381,-0.9808,-0.1913,0.0,-0.9239,-0.3827,0.0381,-0.9808,-0.1913,0.0747,-0.9239,-0.3753,0.0747,-0.9239,-0.3753,0.0381,-0.9808,-0.1913,0.0747,-0.9808,-0.1802,0.0747,-0.9239,-0.3753,0.0747,-0.9808,-0.1802,0.1464,-0.9239,-0.3536,0.1464,-0.9239,-0.3536,0.0747,-0.9808,-0.1802,0.1084,-0.9808,-0.1622,0.1464,-0.9239,-0.3536,0.1084,-0.9808,-0.1622,0.2126,-0.9239,-0.3182,0.2126,-0.9239,-0.3182,0.1084,-0.9808,-0.1622,0.1379,-0.9808,-0.1379,0.2126,-0.9239,-0.3182,0.1379,-0.9808,-0.1379,0.2706,-0.9239,-0.2706,0.2706,-0.9239,-0.2706,0.1379,-0.9808,-0.1379,0.1622,-0.9808,-0.1084,0.2706,-0.9239,-0.2706,0.1622,-0.9808,-0.1084,0.3182,-0.9239,-0.2126,0.3182,-0.9239,-0.2126,0.1622,-0.9808,-0.1084,0.1802,-0.9808,-0.0747,0.3182,-0.9239,-0.2126,0.1802,-0.9808,-0.0747,0.3536,-0.9239,-0.1464,0.3536,-0.9239,-0.1464,0.1802,-0.9808,-0.0747,0.1913,-0.9808,-0.0381,0.3536,-0.9239,-0.1464,0.1913,-0.9808,-0.0381,0.3753,-0.9239,-0.0747,0.3753,-0.9239,-0.0747,0.1913,-0.9808,-0.0381,0.1951,-0.9808,0.0,0.3753,-0.9239,-0.0747,0.1951,-0.9808,0.0,0.3827,-0.9239,0.0,0.3827,-0.9239,0.0,0.1951,-0.9808,0.0,0.1913,-0.9808,0.0381,0.3827,-0.9239,0.0,0.1913,-0.9808,0.0381,0.3753,-0.9239,0.0747,0.3753,-0.9239,0.0747,0.1913,-0.9808,0.0381,0.1802,-0.9808,0.0747,0.3753,-0.9239,0.0747,0.1802,-0.9808,0.0747,0.3536,-0.9239,0.1464,0.3536,-0.9239,0.1464,0.1802,-0.9808,0.0747,0.1622,-0.9808,0.1084,0.3536,-0.9239,0.1464,0.1622,-0.9808,0.1084,0.3182,-0.9239,0.2126,0.3182,-0.9239,0.2126,0.1622,-0.9808,0.1084,0.1379,-0.9808,0.1379,0.3182,-0.9239,0.2126,0.1379,-0.9808,0.1379,0.2706,-0.9239,0.2706,0.2706,-0.9239,0.2706,0.1379,-0.9808,0.1379,0.1084,-0.9808,0.1622,0.2706,-0.9239,0.2706,0.1084,-0.9808,0.1622,0.2126,-0.9239,0.3182,0.2126,-0.9239,0.3182,0.1084,-0.9808,0.1622,0.0747,-0.9808,0.1802,0.2126,-0.9239,0.3182,0.0747,-0.9808,0.1802,0.1464,-0.9239,0.3536,0.1464,-0.9239,0.3536,0.0747,-0.9808,0.1802,0.0381,-0.9808,0.1913,0.1464,-0.9239,0.3536,0.0381,-0.9808,0.1913,0.0747,-0.9239,0.3753,0.0747,-0.9239,0.3753,0.0381,-0.9808,0.1913,0.0,-0.9808,0.1951,0.0747,-0.9239,0.3753,0.0,-0.9808,0.1951,0.0,-0.9239,0.3827,0.0,-1.0,0.0,-0.0381,-0.9808,0.1913,0.0,-0.9808,0.1951,0.0,-1.0,0.0,-0.0747,-0.9808,0.1802,-0.0381,-0.9808,0.1913,0.0,-1.0,0.0,-0.1084,-0.9808,0.1622,-0.0747,-0.9808,0.1802,0.0,-1.0,0.0,-0.1379,-0.9808,0.1379,-0.1084,-0.9808,0.1622,0.0,-1.0,0.0,-0.1622,-0.9808,0.1084,-0.1379,-0.9808,0.1379,0.0,-1.0,0.0,-0.1802,-0.9808,0.0747,-0.1622,-0.9808,0.1084,0.0,-1.0,0.0,-0.1913,-0.9808,0.0381,-0.1802,-0.9808,0.0747,0.0,-1.0,0.0,-0.1951,-0.9808,0.0,-0.1913,-0.9808,0.0381,0.0,-1.0,0.0,-0.1913,-0.9808,-0.0381,-0.1951,-0.9808,0.0,0.0,-1.0,0.0,-0.1802,-0.9808,-0.0747,-0.1913,-0.9808,-0.0381,0.0,-1.0,0.0,-0.1622,-0.9808,-0.1084,-0.1802,-0.9808,-0.0747,0.0,-1.0,0.0,-0.1379,-0.9808,-0.1379,-0.1622,-0.9808,-0.1084,0.0,-1.0,0.0,-0.1084,-0.9808,-0.1622,-0.1379,-0.9808,-0.1379,0.0,-1.0,0.0,-0.0747,-0.9808,-0.1802,-0.1084,-0.9808,-0.1622,0.0,-1.0,0.0,-0.0381,-0.9808,-0.1913,-0.0747,-0.9808,-0.1802,0.0,-1.0,0.0,0.0,-0.9808,-0.1951,-0.0381,-0.9808,-0.1913,0.0,-1.0,0.0,0.0381,-0.9808,-0.1913,0.0,-0.9808,-0.1951,0.0,-1.0,0.0,0.0747,-0.9808,-0.1802,0.0381,-0.9808,-0.1913,0.0,-1.0,0.0,0.1084,-0.9808,-0.1622,0.0747,-0.9808,-0.1802,0.0,-1.0,0.0,0.1379,-0.9808,-0.1379,0.1084,-0.9808,-0.1622,0.0,-1.0,0.0,0.1622,-0.9808,-0.1084,0.1379,-0.9808,-0.1379,0.0,-1.0,0.0,0.1802,-0.9808,-0.0747,0.1622,-0.9808,-0.1084,0.0,-1.0,0.0,0.1913,-0.9808,-0.0381,0.1802,-0.9808,-0.0747,0.0,-1.0,0.0,0.1951,-0.9808,0.0,0.1913,-0.9808,-0.0381,0.0,-1.0,0.0,0.1913,-0.9808,0.0381,0.1951,-0.9808,0.0,0.0,-1.0,0.0,0.1802,-0.9808,0.0747,0.1913,-0.9808,0.0381,0.0,-1.0,0.0,0.1622,-0.9808,0.1084,0.1802,-0.9808,0.0747,0.0,-1.0,0.0,0.1379,-0.9808,0.1379,0.1622,-0.9808,0.1084,0.0,-1.0,0.0,0.1084,-0.9808,0.1622,0.1379,-0.9808,0.1379,0.0,-1.0,0.0,0.0747,-0.9808,0.1802,0.1084,-0.9808,0.1622,0.0,-1.0,0.0,0.0381,-0.9808,0.1913,0.0747,-0.9808,0.1802,0.0,-1.0,0.0,0.0,-0.9808,0.1951,0.0381,-0.9808,0.1913],"normals":[0.0,1.0,0.0,0.0,0.9796,0.201,-0.0392,0.9796,0.1971,0.0,1.0,0.0,-0.0392,0.9796,0.1971,-0.0769,0.9796,0.1857,0.0,1.0,0.0,-0.0769,0.9796,0.1857,-0.1117,0.9796,0.1671,0.0,1.0,0.0,-0.1117,0.9796,0.1671,-0.1421,0.9796,0.1421,0.0,1.0,0.0,-0.1421,0.9796,0.1421,-0.1671,0.9796,0.1117,0.0,1.0,0.0,-0.1671,0.9796,0.1117,-0.1857,0.9796,0.0769,0.0,1.0,0.0,-0.1857,0.9796,0.0769,-0.1971,0.9796,0.0392,0.0,1.0,0.0,-0.1971,0.9796,0.0392,-0.201,0.9796,0.0,0.0,1.0,0.0,-0.201,0.9796,0.0,-0.1971,0.9796,-0.0392,0.0,1.0,0.0,-0.1971,0.9796,-0.0392,-0.1857,0.9796,-0.0769,0.0,1.0,0.0,-0.1857,0.9796,-0.0769,-0.1671,0.9796,-0.1117,0.0,1.0,0.0,-0.1671,0.9796,-0.1117,-0.1421,0.9796,-0.1421,0.0,1.0,0.0,-0.1421,0.9796,-0.1421,-0.1117,0.9796,-0.1671,0.0,1.0,0.0,-0.1117,0.9796,-0.1671,-0.0769,0.9796,-0.1857,0.0,1.0,0.0,-0.0769,0.9796,-0.1857,-0.0392,0.9796,-0.1971,0.0,1.0,0.0,-0.0392,0.9796,-0.1971,0.0,0.9796,-0.201,0.0,1.0,0.0,0.0,0.9796,-0.201,0.0392,0.9796,-0.1971,0.0,1.0,0.0,0.0392,0.9796,-0.1971,0.0769,0.9796,-0.1857,0.0,1.0,0.0,0.0769,0.9796,-0.1857,0.1117,0.9796,-0.1671,0.0,1.0,0.0,0.1117,0.9796,-0.1671,0.1421,0.9796,-0.1421,0.0,1.0,0.0,0.1421,0.9796,-0.1421,0.1671,0.9796,-0.1117,0.0,1.0,0.0,0.1671,0.9796,-0.1117,0.1857,0.9796,-0.0769,0.0,1.0,0.0,0.1857,0.9796,-0.0769,0.1971,0.9796,-0.0392,0.0,1.0,0.0,0.1971,0.9796,-0.0392,0.201,0.9796,0.0,0.0,1.0,0.0,0.201,0.9796,0.0,0.1971,0.9796,0.0392,0.0,1.0,0.0,0.1971,0.9796,0.0392,0.1857,0.9796,0.0769,0.0,1.0,0.0,0.1857,0.9796,0.0769,0.1671,0.9796,0.1117,0.0,1.0,0.0,0.1671,0.9796,0.1117,0.1421,0.9796,0.1421,0.0,1.0,0.0,0.1421,0.9796,0.1421,0.1117,0.9796,0.1671,0.0,1.0,0.0,0.1117,0.9796,0.1671,0.0769,0.9796,0.1857,0.0,1.0,0.0,0.0769,0.9796,0.1857,0.0392,0.9796,0.1971,0.0,1.0,0.0,0.0392,0.9796,0.1971,0.0,0.9796,0.201,0.0,0.9796,0.201,0.0,0.9217,0.3879,-0.0757,0.9217,0.3804,0.0,0.9796,0.201,-0.0757,0.9217,0.3804,-0.0392,0.9796,0.1971,-0.0392,0.9796,0.1971,-0.0757,0.9217,0.3804,-0.1484,0.9217,0.3584,-0.0392,0.9796,0.1971,-0.1484,0.9217,0.3584,-0.0769,0.9796,0.1857,-0.0769,0.9796,0.1857,-0.1484,0.9217,0.3584,-0.2155,0.9217,0.3225,-0.0769,0.9796,0.1857,-0.2155,0.9217,0.3225,-0.1117,0.9796,0.1671,-0.1117,0.9796,0.1671,-0.2155,0.9217,0.3225,-0.2743,0.9217,0.2743,-0.1117,0.9796,0.1671,-0.2743,0.9217,0.2743,-0.1421,0.9796,0.1421,-0.1421,0.9796,0.1421,-0.2743,0.9217,0.2743,-0.3225,0.9217,0.2155,-0.1421,0.9796,0.1421,-0.3225,0.9217,0.2155,-0.1671,0.9796,0.1117,-0.1671,0.9796,0.1117,-0.3225,0.9217,0.2155,-0.3584,0.9217,0.1484,-0.1671,0.9796,0.1117,-0.3584,0.9217,0.1484,-0.1857,0.9796,0.0769,-0.1857,0.9796,0.0769,-0.3584,0.9217,0.1484,-0.3804,0.9217,0.0757,-0.1857,0.9796,0.0769,-0.3804,0.9217,0.0757,-0.1971,0.9796,0.0392,-0.1971,0.9796,0.0392,-0.3804,0.9217,0.0757,-0.3879,0.9217,0.0,-0.1971,0.9796,0.0392,-0.3879,0.9217,0.0,-0.201,0.9796,0.0,-0.201,0.9796,0.0,-0.3879,0.9217,0.0,-0.3804,0.9217,-0.0757,-0.201,0.9796,0.0,-0.3804,0.9217,-0.0757,-0.1971,0.9796,-0.0392,-0.1971,0.9796,-0.0392,-0.3804,0.9217,-0.0757,-0.3584,0.9217,-0.1484,-0.1971,0.9796,-0.0392,-0.3584,0.9217,-0.1484,-0.1857,0.9796,-0.0769,-0.1857,0.9796,-0.0769,-0.3584,0.9217,-0.1484,-0.3225,0.9217,-0.2155,-0.1857,0.9796,-0.0769,-0.3225,0.9217,-0.2155,-0.1671,0.9796,-0.1117,-0.1671,0.9796,-0.1117,-0.3225,0.9217,-0.2155,-0.2743,0.9217,-0.2743,-0.1671,0.9796,-0.1117,-0.2743,0.9217,-0.2743,-0.1421,0.9796,-0.1421,-0.1421,0.9796,-0.1421,-0.2743,0.9217,-0.2743,-0.2155,0.9217,-0.3225,-0.1421,0.9796,-0.1421,-0.2155,0.9217,-0.3225,-0.1117,0.9796,-0.1671,-0.1117,0.9796,-0.1671,-0.2155,0.9217,-0.3225,-0.1484,0.9217,-0.3584,-0.1117,0.9796,-0.1671,-0.1484,0.9217,-0.3584,-0.0769,0.9796,-0.1857,-0.0769,0.9796,-0.1857,-0.1484,0.9217,-0.3584,-0.0757,0.9217,-0.3804,-0.0769,0.9796,-0.1857,-0.0757,0.9217,-0.3804,-0.0392,0.9796,-0.1971,-0.0392,0.9796,-0.1971,-0.0757,0.9217,-0.3804,0.0,0.9217,-0.3879,-0.0392,0.9796,-0.1971,0.0,0.9217,-0.3879,0.0,0.9796,-0.201,0.0,0.9796,-0.201,0.0,0.9217,-0.3879,0.0757,0.9217,-0.3804,0.0,0.9796,-0.201,0.0757,0.9217,-0.3804,0.0392,0.9796,-0.1971,0.0392,0.9796,-0.1971,0.0757,0.9217,-0.3804,0.1484,0.9217,-0.3584,0.0392,0.9796,-0.1971,0.1484,0.9217,-0.3584,0.0769,0.9796,-0.1857,0.0769,0.9796,-0.1857,0.1484,0.9217,-0.3584,0.2155,0.9217,-0.3225,0.0769,0.9796,-0.1857,0.2155,0.9217,-0.3225,0.1117,0.9796,-0.1671,0.1117,0.9796,-0.1671,0.2155,0.9217,-0.3225,0.2743,0.9217,-0.2743,0.1117,0.9796,-0.1671,0.2743,0.9217,-0.2743,0.1421,0.9796,-0.1421,0.1421,0.9796,-0.1421,0.2743,0.9217,-0.2743,0.3225,0.9217,-0.2155,0.1421,0.9796,-0.1421,0.3225,0.9217,-0.2155,0.1671,0.9796,-0.1117,0.1671,0.9796,-0.1117,0.3225,0.9217,-0.2155,0.3584,0.9217,-0.1484,0.1671,0.9796,-0.1117,0.3584,0.9217,-0.1484,0.1857,0.9796,-0.0769,0.1857,0.9796,-0.0769,0.3584,0.9217,-0.1484,0.3804,0.9217,-0.0757,0.1857,0.9796,-0.0769,0.3804,0.9217,-0.0757,0.1971,0.9796,-0.0392,0.1971,0.9796,-0.0392,0.3804,0.9217,-0.0757,0.3879,0.9217,0.0,0.1971,0.9796,-0.0392,0.3879,0.9217,0.0,0.201,0.9796,0.0,0.201,0.9796,0.0,0.3879,0.9217,0.0,0.3804,0.9217,0.0757,0.201,0.9796,0.0,0.3804,0.9217,0.0757,0.1971,0.9796,0.0392,0.1971,0.9796,0.0392,0.3804,0.9217,0.0757,0.3584,0.9217,0.1484,0.1971,0.9796,0.0392,0.3584,0.9217,0.1484,0.1857,0.9796,0.0769,0.1857,0.9796,0.0769,0.3584,0.9217,0.1484,0.3225,0.9217,0.2155,0.1857,0.9796,0.0769,0.3225,0.9217,0.2155,0.1671,0.9796,0.1117,0.1671,0.9796,0.1117,0.3225,0.9217,0.2155,0.2743,0.9217,0.2743,0.1671,0.9796,0.1117,0.2743,0.9217,0.2743,0.1421,0.9796,0.1421,0.1421,0.9796,0.1421,0.2743,0.9217,0.2743,0.2155,0.9217,0.3225,0.1421,0.9796,0.1421,0.2155,0.9217,0.3225,0.1117,0.9796,0.1671,0.1117,0.9796,0.1671,0.2155,0.9217,0.3225,0.1484,0.9217,0.3584,0.1117,0.9796,0.1671,0.1484,0.9217,0.3584,0.0769,0.9796,0.1857,0.0769,0.9796,0.1857,0.1484,0.9217,0.3584,0.0757,0.9217,0.3804,0.0769,0.9796,0.1857,0.0757,0.9217,0.3804,0.0392,0.9796,0.1971,0.0392,0.9796,0.1971,0.0757,0.9217,0.3804,0.0,0.9217,0.3879,0.0392,0.9796,0.1971,0.0,0.9217,0.3879,0.0,0.9796,0.201,0.0,0.9217,0.3879,0.0,0.8286,0.5598,-0.1092,0.8286,0.549,0.0,0.9217,0.3879,-0.1092,0.8286,0.549,-0.0757,0.9217,0.3804,-0.0757,0.9217,0.3804,-0.1092,0.8286,0.549,-0.2142,0.8286,0.5172,-0.0757,0.9217,0.3804,-0.2142,0.8286,0.5172,-0.1484,0.9217,0.3584,-0.1484,0.9217,0.3584,-0.2142,0.8286,0.5172,-0.311,0.8286,0.4654,-0.1484,0.9217,0.3584,-0.311,0.8286,0.4654,-0.2155,0.9217,0.3225,-0.2155,0.9217,0.3225,-0.311,0.8286,0.4654,-0.3958,0.8286,0.3958,-0.2155,0.9217,0.3225,-0.3958,0.8286,0.3958,-0.2743,0.9217,0.2743,-0.2743,0.9217,0.2743,-0.3958,0.8286,0.3958,-0.4654,0.8286,0.311,-0.2743,0.9217,0.2743,-0.4654,0.8286,0.311,-0.3225,0.9217,0.2155,-0.3225,0.9217,0.2155,-0.4654,0.8286,0.311,-0.5172,0.8286,0.2142,-0.3225,0.9217,0.2155,-0.5172,0.8286,0.2142,-0.3584,0.9217,0.1484,-0.3584,0.9217,0.1484,-0.5172,0.8286,0.2142,-0.549,0.8286,0.1092,-0.3584,0.9217,0.1484,-0.549,0.8286,0.1092,-0.3804,0.9217,0.0757,-0.3804,0.9217,0.0757,-0.549,0.8286,0.1092,-0.5598,0.8286,0.0,-0.3804,0.9217,0.0757,-0.5598,0.8286,0.0,-0.3879,0.9217,0.0,-0.3879,0.9217,0.0,-0.5598,0.8286,0.0,-0.549,0.8286,-0.1092,-0.3879,0.9217,0.0,-0.549,0.8286,-0.1092,-0.3804,0.9217,-0.0757,-0.3804,0.9217,-0.0757,-0.549,0.8286,-0.1092,-0.5172,0.8286,-0.2142,-0.3804,0.9217,-0.0757,-0.5172,0.8286,-0.2142,-0.3584,0.9217,-0.1484,-0.3584,0.9217,-0.1484,-0.5172,0.8286,-0.2142,-0.4654,0.8286,-0.311,-0.3584,0.9217,-0.1484,-0.4654,0.8286,-0.311,-0.3225,0.9217,-0.2155,-0.3225,0.9217,-0.2155,-0.4654,0.8286,-0.311,-0.3958,0.8286,-0.3958,-0.3225,0.9217,-0.2155,-0.3958,0.8286,-0.3958,-0.2743,0.9217,-0.2743,-0.2743,0.9217,-0.2743,-0.3958,0.8286,-0.3958,-0.311,0.8286,-0.4654,-0.2743,0.9217,-0.2743,-0.311,0.8286,-0.4654,-0.2155,0.9217,-0.3225,-0.2155,0.9217,-0.3225,-0.311,0.8286,-0.4654,-0.2142,0.8286,-0.5172,-0.2155,0.9217,-0.3225,-0.2142,0.8286,-0.5172,-0.1484,0.9217,-0.3584,-0.1484,0.9217,-0.3584,-0.2142,0.8286,-0.5172,-0.1092,0.8286,-0.549,-0.1484,0.9217,-0.3584,-0.1092,0.8286,-0.549,-0.0757,0.9217,-0.3804,-0.0757,0.9217,-0.3804,-0.1092,0.8286,-0.549,0.0,0.8286,-0.5598,-0.0757,0.9217,-0.3804,0.0,0.8286,-0.5598,0.0,0.9217,-0.3879,0.0,0.9217,-0.3879,0.0,0.8286,-0.5598,0.1092,0.8286,-0.549,0.0,0.9217,-0.3879,0.1092,0.8286,-0.549,0.0757,0.9217,-0.3804,0.0757,0.9217,-0.3804,0.1092,0.8286,-0.549,0.2142,0.8286,-0.5172,0.0757,0.9217,-0.3804,0.2142,0.8286,-0.5172,0.1484,0.9217,-0.3584,0.1484,0.9217,-0.3584,0.2142,0.8286,-0.5172,0.311,0.8286,-0.4654,0.1484,0.9217,-0.3584,0.311,0.8286,-0.4654,0.2155,0.9217,-0.3225,0.2155,0.9217,-0.3225,0.311,0.8286,-0.4654,0.3958,0.8286,-0.3958,0.2155,0.9217,-0.3225,0.3958,0.8286,-0.3958,0.2743,0.9217,-0.2743,0.2743,0.9217,-0.2743,0.3958,0.8286,-0.3958,0.4654,0.8286,-0.311,0.2743,0.9217,-0.2743,0.4654,0.8286,-0.311,0.3225,0.9217,-0.2155,0.3225,0.9217,-0.2155,0.4654,0.8286,-0.311,0.5172,0.8286,-0.2142,0.3225,0.9217,-0.2155,0.5172,0.8286,-0.2142,0.3584,0.9217,-0.1484,0.3584,0.9217,-0.1484,0.5172,0.8286,-0.2142,0.549,0.8286,-0.1092,0.3584,0.9217,-0.1484,0.549,0.8286,-0.1092,0.3804,0.9217,-0.0757,0.3804,0.9217,-0.0757,0.549,0.8286,-0.1092,0.5598,0.8286,0.0,0.3804,0.9217,-0.0757,0.5598,0.8286,0.0,0.3879,0.9217,0.0,0.3879,0.9217,0.0,0.5598,0.8286,0.0,0.549,0.8286,0.1092,0.3879,0.9217,0.0,0.549,0.8286,0.1092,0.3804,0.9217,0.0757,0.3804,0.9217,0.0757,0.549,0.8286,0.1092,0.5172,0.8286,0.2142,0.3804,0.9217,0.0757,0.5172,0.8286,0.2142,0.3584,0.9217,0.1484,0.3584,0.9217,0.1484,0.5172,0.8286,0.2142,0.4654,0.8286,0.311,0.3584,0.9217,0.1484,0.4654,0.8286,0.311,0.3225,0.9217,0.2155,0.3225,0.9217,0.2155,0.4654,0.8286,0.311,0.3958,0.8286,0.3958,0.3225,0.9217,0.2155,0.3958,0.8286,0.3958,0.2743,0.9217,0.2743,0.2743,0.9217,0.2743,0.3958,0.8286,0.3958,0.311,0.8286,0.4654,0.2743,0.9217,0.2743,0.311,0.8286,0.4654,0.2155,0.9217,0.3225,0.2155,0.9217,0.3225,0.311,0.8286,0.4654,0.2142,0.8286,0.5172,0.2155,0.9217,0.3225,0.2142,0.8286,0.5172,0.1484,0.9217,0.3584,0.1484,0.9217,0.3584,0.2142,0.8286,0.5172,0.1092,0.8286,0.549,0.1484,0.9217,0.3584,0.1092,0.8286,0.549,0.0757,0.9217,0.3804,0.0757,0.9217,0.3804,0.1092,0.8286,0.549,0.0,0.8286,0.5598,0.0757,0.9217,0.3804,0.0,0.8286,0.5598,0.0,0.9217,0.3879,0.0,0.8286,0.5598,0.0,0.7041,0.7101,-0.1385,0.7041,0.6965,0.0,0.8286,0.5598,-0.1385,0.7041,0.6965,-0.1092,0.8286,0.549,-0.1092,0.8286,0.549,-0.1385,0.7041,0.6965,-0.2718,0.7041,0.6561,-0.1092,0.8286,0.549,-0.2718,0.7041,0.6561,-0.2142,0.8286,0.5172,-0.2142,0.8286,0.5172,-0.2718,0.7041,0.6561,-0.3945,0.7041,0.5905,-0.2142,0.8286,0.5172,-0.3945,0.7041,0.5905,-0.311,0.8286,0.4654,-0.311,0.8286,0.4654,-0.3945,0.7041,0.5905,-0.5021,0.7041,0.5021,-0.311,0.8286,0.4654,-0.5021,0.7041,0.5021,-0.3958,0.8286,0.3958,-0.3958,0.8286,0.3958,-0.5021,0.7041,0.5021,-0.5905,0.7041,0.3945,-0.3958,0.8286,0.3958,-0.5905,0.7041,0.3945,-0.4654,0.8286,0.311,-0.4654,0.8286,0.311,-0.5905,0.7041,0.3945,-0.6561,0.7041,0.2718,-0.4654,0.8286,0.311,-0.6561,0.7041,0.2718,-0.5172,0.8286,0.2142,-0.5172,0.8286,0.2142,-0.6561,0.7041,0.2718,-0.6965,0.7041,0.1385,-0.5172,0.8286,0.2142,-0.6965,0.7041,0.1385,-0.549,0.8286,0.1092,-0.549,0.8286,0.1092,-0.6965,0.7041,0.1385,-0.7101,0.7041,0.0,-0.549,0.8286,0.1092,-0.7101,0.7041,0.0,-0.5598,0.8286,0.0,-0.5598,0.8286,0.0,-0.7101,0.7041,0.0,-0.6965,0.7041,-0.1385,-0.5598,0.8286,0.0,-0.6965,0.7041,-0.1385,-0.549,0.8286,-0.1092,-0.549,0.8286,-0.1092,-0.6965,0.7041,-0.1385,-0.6561,0.7041,-0.2718,-0.549,0.8286,-0.1092,-0.6561,0.7041,-0.2718,-0.5172,0.8286,-0.2142,-0.5172,0.8286,-0.2142,-0.6561,0.7041,-0.2718,-0.5905,0.7041,-0.3945,-0.5172,0.8286,-0.2142,-0.5905,0.7041,-0.3945,-0.4654,0.8286,-0.311,-0.4654,0.8286,-0.311,-0.5905,0.7041,-0.3945,-0.5021,0.7041,-0.5021,-0.4654,0.8286,-0.311,-0.5021,0.7041,-0.5021,-0.3958,0.8286,-0.3958,-0.3958,0.8286,-0.3958,-0.5021,0.7041,-0.5021,-0.3945,0.7041,-0.5905,-0.3958,0.8286,-0.3958,-0.3945,0.7041,-0.5905,-0.311,0.8286,-0.4654,-0.311,0.8286,-0.4654,-0.3945,0.7041,-0.5905,-0.2718,0.7041,-0.6561,-0.311,0.8286,-0.4654,-0.2718,0.7041,-0.6561,-0.2142,0.8286,-0.5172,-0.2142,0.8286,-0.5172,-0.2718,0.7041,-0.6561,-0.1385,0.7041,-0.6965,-0.2142,0.8286,-0.5172,-0.1385,0.7041,-0.6965,-0.1092,0.8286,-0.549,-0.1092,0.8286,-0.549,-0.1385,0.7041,-0.6965,0.0,0.7041,-0.7101,-0.1092,0.8286,-0.549,0.0,0.7041,-0.7101,0.0,0.8286,-0.5598,0.0,0.8286,-0.5598,0.0,0.7041,-0.7101,0.1385,0.7041,-0.6965,0.0,0.8286,-0.5598,0.1385,0.7041,-0.6965,0.1092,0.8286,-0.549,0.1092,0.8286,-0.549,0.1385,0.7041,-0.6965,0.2718,0.7041,-0.6561,0.1092,0.8286,-0.549,0.2718,0.7041,-0.6561,0.2142,0.8286,-0.5172,0.2142,0.8286,-0.5172,0.2718,0.7041,-0.6561,0.3945,0.7041,-0.5905,0.2142,0.8286,-0.5172,0.3945,0.7041,-0.5905,0.311,0.8286,-0.4654,0.311,0.8286,-0.4654,0.3945,0.7041,-0.5905,0.5021,0.7041,-0.5021,0.311,0.8286,-0.4654,0.5021,0.7041,-0.5021,0.3958,0.8286,-0.3958,0.3958,0.8286,-0.3958,0.5021,0.7041,-0.5021,0.5905,0.7041,-0.3945,0.3958,0.8286,-0.3958,0.5905,0.7041,-0.3945,0.4654,0.8286,-0.311,0.4654,0.8286,-0.311,0.5905,0.7041,-0.3945,0.6561,0.7041,-0.2718,0.4654,0.8286,-0.311,0.6561,0.7041,-0.2718,0.5172,0.8286,-0.2142,0.5172,0.8286,-0.2142,0.6561,0.7041,-0.2718,0.6965,0.7041,-0.1385,0.5172,0.8286,-0.2142,0.6965,0.7041,-0.1385,0.549,0.8286,-0.1092,0.549,0.8286,-0.1092,0.6965,0.7041,-0.1385,0.7101,0.7041,0.0,0.549,0.8286,-0.1092,0.7101,0.7041,0.0,0.5598,0.8286,0.0,0.5598,0.8286,0.0,0.7101,0.7041,0.0,0.6965,0.7041,0.1385,0.5598,0.8286,0.0,0.6965,0.7041,0.1385,0.549,0.8286,0.1092,0.549,0.8286,0.1092,0.6965,0.7041,0.1385,0.6561,0.7041,0.2718,0.549,0.8286,0.1092,0.6561,0.7041,0.2718,0.5172,0.8286,0.2142,0.5172,0.8286,0.2142,0.6561,0.7041,0.2718,0.5905,0.7041,0.3945,0.5172,0.8286,0.2142,0.5905,0.7041,0.3945,0.4654,0.8286,0.311,0.4654,0.8286,0.311,0.5905,0.7041,0.3945,0.5021,0.7041,0.5021,0.4654,0.8286,0.311,0.5021,0.7041,0.5021,0.3958,0.8286,0.3958,0.3958,0.8286,0.3958,0.5021,0.7041,0.5021,0.3945,0.7041,0.5905,0.3958,0.8286,0.3958,0.3945,0.7041,0.5905,0.311,0.8286,0.4654,0.311,0.8286,0.4654,0.3945,0.7041,0.5905,0.2718,0.7041,0.6561,0.311,0.8286,0.4654,0.2718,0.7041,0.6561,0.2142,0.8286,0.5172,0.2142,0.8286,0.5172,0.2718,0.7041,0.6561,0.1385,0.7041,0.6965,0.2142,0.8286,0.5172,0.1385,0.7041,0.6965,0.1092,0.8286,0.549,0.1092,0.8286,0.549,0.1385,0.7041,0.6965,0.0,0.7041,0.7101,0.1092,0.8286,0.549,0.0,0.7041,0.7101,0.0,0.8286,0.5598,0.0,0.7041,0.7101,0.0,0.5528,0.8333,-0.1626,0.5528,0.8173,0.0,0.7041,0.7101,-0.1626,0.5528,0.8173,-0.1385,0.7041,0.6965,-0.1385,0.7041,0.6965,-0.1626,0.5528,0.8173,-0.3189,0.5528,0.7699,-0.1385,0.7041,0.6965,-0.3189,0.5528,0.7699,-0.2718,0.7041,0.6561,-0.2718,0.7041,0.6561,-0.3189,0.5528,0.7699,-0.463,0.5528,0.6929,-0.2718,0.7041,0.6561,-0.463,0.5528,0.6929,-0.3945,0.7041,0.5905,-0.3945,0.7041,0.5905,-0.463,0.5528,0.6929,-0.5893,0.5528,0.5893,-0.3945,0.7041,0.5905,-0.5893,0.5528,0.5893,-0.5021,0.7041,0.5021,-0.5021,0.7041,0.5021,-0.5893,0.5528,0.5893,-0.6929,0.5528,0.463,-0.5021,0.7041,0.5021,-0.6929,0.5528,0.463,-0.5905,0.7041,0.3945,-0.5905,0.7041,0.3945,-0.6929,0.5528,0.463,-0.7699,0.5528,0.3189,-0.5905,0.7041,0.3945,-0.7699,0.5528,0.3189,-0.6561,0.7041,0.2718,-0.6561,0.7041,0.2718,-0.7699,0.5528,0.3189,-0.8173,0.5528,0.1626,-0.6561,0.7041,0.2718,-0.8173,0.5528,0.1626,-0.6965,0.7041,0.1385,-0.6965,0.7041,0.1385,-0.8173,0.5528,0.1626,-0.8333,0.5528,0.0,-0.6965,0.7041,0.1385,-0.8333,0.5528,0.0,-0.7101,0.7041,0.0,-0.7101,0.7041,0.0,-0.8333,0.5528,0.0,-0.8173,0.5528,-0.1626,-0.7101,0.7041,0.0,-0.8173,0.5528,-0.1626,-0.6965,0.7041,-0.1385,-0.6965,0.7041,-0.1385,-0.8173,0.5528,-0.1626,-0.7699,0.5528,-0.3189,-0.6965,0.7041,-0.1385,-0.7699,0.5528,-0.3189,-0.6561,0.7041,-0.2718,-0.6561,0.7041,-0.2718,-0.7699,0.5528,-0.3189,-0.6929,0.5528,-0.463,-0.6561,0.7041,-0.2718,-0.6929,0.5528,-0.463,-0.5905,0.7041,-0.3945,-0.5905,0.7041,-0.3945,-0.6929,0.5528,-0.463,-0.5893,0.5528,-0.5893,-0.5905,0.7041,-0.3945,-0.5893,0.5528,-0.5893,-0.5021,0.7041,-0.5021,-0.5021,0.7041,-0.5021,-0.5893,0.5528,-0.5893,-0.463,0.5528,-0.6929,-0.5021,0.7041,-0.5021,-0.463,0.5528,-0.6929,-0.3945,0.7041,-0.5905,-0.3945,0.7041,-0.5905,-0.463,0.5528,-0.6929,-0.3189,0.5528,-0.7699,-0.3945,0.7041,-0.5905,-0.3189,0.5528,-0.7699,-0.2718,0.7041,-0.6561,-0.2718,0.7041,-0.6561,-0.3189,0.5528,-0.7699,-0.1626,0.5528,-0.8173,-0.2718,0.7041,-0.6561,-0.1626,0.5528,-0.8173,-0.1385,0.7041,-0.6965,-0.1385,0.7041,-0.6965,-0.1626,0.5528,-0.8173,0.0,0.5528,-0.8333,-0.1385,0.7041,-0.6965,0.0,0.5528,-0.8333,0.0,0.7041,-0.7101,0.0,0.7041,-0.7101,0.0,0.5528,-0.8333,0.1626,0.5528,-0.8173,0.0,0.7041,-0.7101,0.1626,0.5528,-0.8173,0.1385,0.7041,-0.6965,0.1385,0.7041,-0.6965,0.1626,0.5528,-0.8173,0.3189,0.5528,-0.7699,0.1385,0.7041,-0.6965,0.3189,0.5528,-0.7699,0.2718,0.7041,-0.6561,0.2718,0.7041,-0.6561,0.3189,0.5528,-0.7699,0.463,0.5528,-0.6929,0.2718,0.7041,-0.6561,0.463,0.5528,-0.6929,0.3945,0.7041,-0.5905,0.3945,0.7041,-0.5905,0.463,0.5528,-0.6929,0.5893,0.5528,-0.5893,0.3945,0.7041,-0.5905,0.5893,0.5528,-0.5893,0.5021,0.7041,-0.5021,0.5021,0.7041,-0.5021,0.5893,0.5528,-0.5893,0.6929,0.5528,-0.463,0.5021,0.7041,-0.5021,0.6929,0.5528,-0.463,0.5905,0.7041,-0.3945,0.5905,0.7041,-0.3945,0.6929,0.5528,-0.463,0.7699,0.5528,-0.3189,0.5905,0.7041,-0.3945,0.7699,0.5528,-0.3189,0.6561,0.7041,-0.2718,0.6561,0.7041,-0.2718,0.7699,0.5528,-0.3189,0.8173,0.5528,-0.1626,0.6561,0.7041,-0.2718,0.8173,0.5528,-0.1626,0.6965,0.7041,-0.1385,0.6965,0.7041,-0.1385,0.8173,0.5528,-0.1626,0.8333,0.5528,0.0,0.6965,0.7041,-0.1385,0.8333,0.5528,0.0,0.7101,0.7041,0.0,0.7101,0.7041,0.0,0.8333,0.5528,0.0,0.8173,0.5528,0.1626,0.7101,0.7041,0.0,0.8173,0.5528,0.1626,0.6965,0.7041,0.1385,0.6965,0.7041,0.1385,0.8173,0.5528,0.1626,0.7699,0.5528,0.3189,0.6965,0.7041,0.1385,0.7699,0.5528,0.3189,0.6561,0.7041,0.2718,0.6561,0.7041,0.2718,0.7699,0.5528,0.3189,0.6929,0.5528,0.463,0.6561,0.7041,0.2718,0.6929,0.5528,0.463,0.5905,0.7041,0.3945,0.5905,0.7041,0.3945,0.6929,0.5528,0.463,0.5893,0.5528,0.5893,0.5905,0.7041,0.3945,0.5893,0.5528,0.5893,0.5021,0.7041,0.5021,0.5021,0.7041,0.5021,0.5893,0.5528,0.5893,0.463,0.5528,0.6929,0.5021,0.7041,0.5021,0.463,0.5528,0.6929,0.3945,0.7041,0.5905,0.3945,0.7041,0.5905,0.463,0.5528,0.6929,0.3189,0.5528,0.7699,0.3945,0.7041,0.5905,0.3189,0.5528,0.7699,0.2718,0.7041,0.6561,0.2718,0.7041,0.6561,0.3189,0.5528,0.7699,0.1626,0.5528,0.8173,0.2718,0.7041,0.6561,0.1626,0.5528,0.8173,0.1385,0.7041,0.6965,0.1385,0.7041,0.6965,0.1626,0.5528,0.8173,0.0,0.5528,0.8333,0.1385,0.7041,0.6965,0.0,0.5528,0.8333,0.0,0.7041,0.7101,0.0,0.5528,0.8333,0.0,0.3805,0.9248,-0.1804,0.3805,0.907,0.0,0.5528,0.8333,-0.1804,0.3805,0.907,-0.1626,0.5528,0.8173,-0.1626,0.5528,0.8173,-0.1804,0.3805,0.907,-0.3539,0.3805,0.8544,-0.1626,0.5528,0.8173,-0.3539,0.3805,0.8544,-0.3189,0.5528,0.7699,-0.3189,0.5528,0.7699,-0.3539,0.3805,0.8544,-0.5138,0.3805,0.7689,-0.3189,0.5528,0.7699,-0.5138,0.3805,0.7689,-0.463,0.5528,0.6929,-0.463,0.5528,0.6929,-0.5138,0.3805,0.7689,-0.6539,0.3805,0.6539,-0.463,0.5528,0.6929,-0.6539,0.3805,0.6539,-0.5893,0.5528,0.5893,-0.5893,0.5528,0.5893,-0.6539,0.3805,0.6539,-0.7689,0.3805,0.5138,-0.5893,0.5528,0.5893,-0.7689,0.3805,0.5138,-0.6929,0.5528,0.463,-0.6929,0.5528,0.463,-0.7689,0.3805,0.5138,-0.8544,0.3805,0.3539,-0.6929,0.5528,0.463,-0.8544,0.3805,0.3539,-0.7699,0.5528,0.3189,-0.7699,0.5528,0.3189,-0.8544,0.3805,0.3539,-0.907,0.3805,0.1804,-0.7699,0.5528,0.3189,-0.907,0.3805,0.1804,-0.8173,0.5528,0.1626,-0.8173,0.5528,0.1626,-0.907,0.3805,0.1804,-0.9248,0.3805,0.0,-0.8173,0.5528,0.1626,-0.9248,0.3805,0.0,-0.8333,0.5528,0.0,-0.8333,0.5528,0.0,-0.9248,0.3805,0.0,-0.907,0.3805,-0.1804,-0.8333,0.5528,0.0,-0.907,0.3805,-0.1804,-0.8173,0.5528,-0.1626,-0.8173,0.5528,-0.1626,-0.907,0.3805,-0.1804,-0.8544,0.3805,-0.3539,-0.8173,0.5528,-0.1626,-0.8544,0.3805,-0.3539,-0.7699,0.5528,-0.3189,-0.7699,0.5528,-0.3189,-0.8544,0.3805,-0.3539,-0.7689,0.3805,-0.5138,-0.7699,0.5528,-0.3189,-0.7689,0.3805,-0.5138,-0.6929,0.5528,-0.463,-0.6929,0.5528,-0.463,-0.7689,0.3805,-0.5138,-0.6539,0.3805,-0.6539,-0.6929,0.5528,-0.463,-0.6539,0.3805,-0.6539,-0.5893,0.5528,-0.5893,-0.5893,0.5528,-0.5893,-0.6539,0.3805,-0.6539,-0.5138,0.3805,-0.7689,-0.5893,0.5528,-0.5893,-0.5138,0.3805,-0.7689,-0.463,0.5528,-0.6929,-0.463,0.5528,-0.6929,-0.5138,0.3805,-0.7689,-0.3539,0.3805,-0.8544,-0.463,0.5528,-0.6929,-0.3539,0.3805,-0.8544,-0.3189,0.5528,-0.7699,-0.3189,0.5528,-0.7699,-0.3539,0.3805,-0.8544,-0.1804,0.3805,-0.907,-0.3189,0.5528,-0.7699,-0.1804,0.3805,-0.907,-0.1626,0.5528,-0.8173,-0.1626,0.5528,-0.8173,-0.1804,0.3805,-0.907,0.0,0.3805,-0.9248,-0.1626,0.5528,-0.8173,0.0,0.3805,-0.9248,0.0,0.5528,-0.8333,0.0,0.5528,-0.8333,0.0,0.3805,-0.9248,0.1804,0.3805,-0.907,0.0,0.5528,-0.8333,0.1804,0.3805,-0.907,0.1626,0.5528,-0.8173,0.1626,0.5528,-0.8173,0.1804,0.3805,-0.907,0.3539,0.3805,-0.8544,0.1626,0.5528,-0.8173,0.3539,0.3805,-0.8544,0.3189,0.5528,-0.7699,0.3189,0.5528,-0.7699,0.3539,0.3805,-0.8544,0.5138,0.3805,-0.7689,0.3189,0.5528,-0.7699,0.5138,0.3805,-0.7689,0.463,0.5528,-0.6929,0.463,0.5528,-0.6929,0.5138,0.3805,-0.7689,0.6539,0.3805,-0.6539,0.463,0.5528,-0.6929,0.6539,0.3805,-0.6539,0.5893,0.5528,-0.5893,0.5893,0.5528,-0.5893,0.6539,0.3805,-0.6539,0.7689,0.3805,-0.5138,0.5893,0.5528,-0.5893,0.7689,0.3805,-0.5138,0.6929,0.5528,-0.463,0.6929,0.5528,-0.463,0.7689,0.3805,-0.5138,0.8544,0.3805,-0.3539,0.6929,0.5528,-0.463,0.8544,0.3805,-0.3539,0.7699,0.5528,-0.3189,0.7699,0.5528,-0.3189,0.8544,0.3805,-0.3539,0.907,0.3805,-0.1804,0.7699,0.5528,-0.3189,0.907,0.3805,-0.1804,0.8173,0.5528,-0.1626,0.8173,0.5528,-0.1626,0.907,0.3805,-0.1804,0.9248,0.3805,0.0,0.8173,0.5528,-0.1626,0.9248,0.3805,0.0,0.8333,0.5528,0.0,0.8333,0.5528,0.0,0.9248,0.3805,0.0,0.907,0.3805,0.1804,0.8333,0.5528,0.0,0.907,0.3805,0.1804,0.8173,0.5528,0.1626,0.8173,0.5528,0.1626,0.907,0.3805,0.1804,0.8544,0.3805,0.3539,0.8173,0.5528,0.1626,0.8544,0.3805,0.3539,0.7699,0.5528,0.3189,0.7699,0.5528,0.3189,0.8544,0.3805,0.3539,0.7689,0.3805,0.5138,0.7699,0.5528,0.3189,0.7689,0.3805,0.5138,0.6929,0.5528,0.463,0.6929,0.5528,0.463,0.7689,0.3805,0.5138,0.6539,0.3805,0.6539,0.6929,0.5528,0.463,0.6539,0.3805,0.6539,0.5893,0.5528,0.5893,0.5893,0.5528,0.5893,0.6539,0.3805,0.6539,0.5138,0.3805,0.7689,0.5893,0.5528,0.5893,0.5138,0.3805,0.7689,0.463,0.5528,0.6929,0.463,0.5528,0.6929,0.5138,0.3805,0.7689,0.3539,0.3805,0.8544,0.463,0.5528,0.6929,0.3539,0.3805,0.8544,0.3189,0.5528,0.7699,0.3189,0.5528,0.7699,0.3539,0.3805,0.8544,0.1804,0.3805,0.907,0.3189,0.5528,0.7699,0.1804,0.3805,0.907,0.1626,0.5528,0.8173,0.1626,0.5528,0.8173,0.1804,0.3805,0.907,0.0,0.3805,0.9248,0.1626,0.5528,0.8173,0.0,0.3805,0.9248,0.0,0.5528,0.8333,0.0,0.3805,0.9248,0.0,0.1939,0.981,-0.1914,0.1939,0.9622,0.0,0.3805,0.9248,-0.1914,0.1939,0.9622,-0.1804,0.3805,0.907,-0.1804,0.3805,0.907,-0.1914,0.1939,0.9622,-0.3754,0.1939,0.9063,-0.1804,0.3805,0.907,-0.3754,0.1939,0.9063,-0.3539,0.3805,0.8544,-0.3539,0.3805,0.8544,-0.3754,0.1939,0.9063,-0.545,0.1939,0.8157,-0.3539,0.3805,0.8544,-0.545,0.1939,0.8157,-0.5138,0.3805,0.7689,-0.5138,0.3805,0.7689,-0.545,0.1939,0.8157,-0.6937,0.1939,0.6937,-0.5138,0.3805,0.7689,-0.6937,0.1939,0.6937,-0.6539,0.3805,0.6539,-0.6539,0.3805,0.6539,-0.6937,0.1939,0.6937,-0.8157,0.1939,0.545,-0.6539,0.3805,0.6539,-0.8157,0.1939,0.545,-0.7689,0.3805,0.5138,-0.7689,0.3805,0.5138,-0.8157,0.1939,0.545,-0.9063,0.1939,0.3754,-0.7689,0.3805,0.5138,-0.9063,0.1939,0.3754,-0.8544,0.3805,0.3539,-0.8544,0.3805,0.3539,-0.9063,0.1939,0.3754,-0.9622,0.1939,0.1914,-0.8544,0.3805,0.3539,-0.9622,0.1939,0.1914,-0.907,0.3805,0.1804,-0.907,0.3805,0.1804,-0.9622,0.1939,0.1914,-0.981,0.1939,0.0,-0.907,0.3805,0.1804,-0.981,0.1939,0.0,-0.9248,0.3805,0.0,-0.9248,0.3805,0.0,-0.981,0.1939,0.0,-0.9622,0.1939,-0.1914,-0.9248,0.3805,0.0,-0.9622,0.1939,-0.1914,-0.907,0.3805,-0.1804,-0.907,0.3805,-0.1804,-0.9622,0.1939,-0.1914,-0.9063,0.1939,-0.3754,-0.907,0.3805,-0.1804,-0.9063,0.1939,-0.3754,-0.8544,0.3805,-0.3539,-0.8544,0.3805,-0.3539,-0.9063,0.1939,-0.3754,-0.8157,0.1939,-0.545,-0.8544,0.3805,-0.3539,-0.8157,0.1939,-0.545,-0.7689,0.3805,-0.5138,-0.7689,0.3805,-0.5138,-0.8157,0.1939,-0.545,-0.6937,0.1939,-0.6937,-0.7689,0.3805,-0.5138,-0.6937,0.1939,-0.6937,-0.6539,0.3805,-0.6539,-0.6539,0.3805,-0.6539,-0.6937,0.1939,-0.6937,-0.545,0.1939,-0.8157,-0.6539,0.3805,-0.6539,-0.545,0.1939,-0.8157,-0.5138,0.3805,-0.7689,-0.5138,0.3805,-0.7689,-0.545,0.1939,-0.8157,-0.3754,0.1939,-0.9063,-0.5138,0.3805,-0.7689,-0.3754,0.1939,-0.9063,-0.3539,0.3805,-0.8544,-0.3539,0.3805,-0.8544,-0.3754,0.1939,-0.9063,-0.1914,0.1939,-0.9622,-0.3539,0.3805,-0.8544,-0.1914,0.1939,-0.9622,-0.1804,0.3805,-0.907,-0.1804,0.3805,-0.907,-0.1914,0.1939,-0.9622,0.0,0.1939,-0.981,-0.1804,0.3805,-0.907,0.0,0.1939,-0.981,0.0,0.3805,-0.9248,0.0,0.3805,-0.9248,0.0,0.1939,-0.981,0.1914,0.1939,-0.9622,0.0,0.3805,-0.9248,0.1914,0.1939,-0.9622,0.1804,0.3805,-0.907,0.1804,0.3805,-0.907,0.1914,0.1939,-0.9622,0.3754,0.1939,-0.9063,0.1804,0.3805,-0.907,0.3754,0.1939,-0.9063,0.3539,0.3805,-0.8544,0.3539,0.3805,-0.8544,0.3754,0.1939,-0.9063,0.545,0.1939,-0.8157,0.3539,0.3805,-0.8544,0.545,0.1939,-0.8157,0.5138,0.3805,-0.7689,0.5138,0.3805,-0.7689,0.545,0.1939,-0.8157,0.6937,0.1939,-0.6937,0.5138,0.3805,-0.7689,0.6937,0.1939,-0.6937,0.6539,0.3805,-0.6539,0.6539,0.3805,-0.6539,0.6937,0.1939,-0.6937,0.8157,0.1939,-0.545,0.6539,0.3805,-0.6539,0.8157,0.1939,-0.545,0.7689,0.3805,-0.5138,0.7689,0.3805,-0.5138,0.8157,0.1939,-0.545,0.9063,0.1939,-0.3754,0.7689,0.3805,-0.5138,0.9063,0.1939,-0.3754,0.8544,0.3805,-0.3539,0.8544,0.3805,-0.3539,0.9063,0.1939,-0.3754,0.9622,0.1939,-0.1914,0.8544,0.3805,-0.3539,0.9622,0.1939,-0.1914,0.907,0.3805,-0.1804,0.907,0.3805,-0.1804,0.9622,0.1939,-0.1914,0.981,0.1939,0.0,0.907,0.3805,-0.1804,0.981,0.1939,0.0,0.9248,0.3805,0.0,0.9248,0.3805,0.0,0.981,0.1939,0.0,0.9622,0.1939,0.1914,0.9248,0.3805,0.0,0.9622,0.1939,0.1914,0.907,0.3805,0.1804,0.907,0.3805,0.1804,0.9622,0.1939,0.1914,0.9063,0.1939,0.3754,0.907,0.3805,0.1804,0.9063,0.1939,0.3754,0.8544,0.3805,0.3539,0.8544,0.3805,0.3539,0.9063,0.1939,0.3754,0.8157,0.1939,0.545,0.8544,0.3805,0.3539,0.8157,0.1939,0.545,0.7689,0.3805,0.5138,0.7689,0.3805,0.5138,0.8157,0.1939,0.545,0.6937,0.1939,0.6937,0.7689,0.3805,0.5138,0.6937,0.1939,0.6937,0.6539,0.3805,0.6539,0.6539,0.3805,0.6539,0.6937,0.1939,0.6937,0.545,0.1939,0.8157,0.6539,0.3805,0.6539,0.545,0.1939,0.8157,0.5138,0.3805,0.7689,0.5138,0.3805,0.7689,0.545,0.1939,0.8157,0.3754,0.1939,0.9063,0.5138,0.3805,0.7689,0.3754,0.1939,0.9063,0.3539,0.3805,0.8544,0.3539,0.3805,0.8544,0.3754,0.1939,0.9063,0.1914,0.1939,0.9622,0.3539,0.3805,0.8544,0.1914,0.1939,0.9622,0.1804,0.3805,0.907,0.1804,0.3805,0.907,0.1914,0.1939,0.9622,0.0,0.1939,0.981,0.1804,0.3805,0.907,0.0,0.1939,0.981,0.0,0.3805,0.9248,0.0,0.1939,0.981,0.0,0.0,1.0,-0.1951,0.0,0.9808,0.0,0.1939,0.981,-0.1951,0.0,0.9808,-0.1914,0.1939,0.9622,-0.1914,0.1939,0.9622,-0.1951,0.0,0.9808,-0.3827,0.0,0.9239,-0.1914,0.1939,0.9622,-0.3827,0.0,0.9239,-0.3754,0.1939,0.9063,-0.3754,0.1939,0.9063,-0.3827,0.0,0.9239,-0.5556,0.0,0.8315,-0.3754,0.1939,0.9063,-0.5556,0.0,0.8315,-0.545,0.1939,0.8157,-0.545,0.1939,0.8157,-0.5556,0.0,0.8315,-0.7071,0.0,0.7071,-0.545,0.1939,0.8157,-0.7071,0.0,0.7071,-0.6937,0.1939,0.6937,-0.6937,0.1939,0.6937,-0.7071,0.0,0.7071,-0.8315,0.0,0.5556,-0.6937,0.1939,0.6937,-0.8315,0.0,0.5556,-0.8157,0.1939,0.545,-0.8157,0.1939,0.545,-0.8315,0.0,0.5556,-0.9239,0.0,0.3827,-0.8157,0.1939,0.545,-0.9239,0.0,0.3827,-0.9063,0.1939,0.3754,-0.9063,0.1939,0.3754,-0.9239,0.0,0.3827,-0.9808,0.0,0.1951,-0.9063,0.1939,0.3754,-0.9808,0.0,0.1951,-0.9622,0.1939,0.1914,-0.9622,0.1939,0.1914,-0.9808,0.0,0.1951,-1.0,0.0,0.0,-0.9622,0.1939,0.1914,-1.0,0.0,0.0,-0.981,0.1939,0.0,-0.981,0.1939,0.0,-1.0,0.0,0.0,-0.9808,0.0,-0.1951,-0.981,0.1939,0.0,-0.9808,0.0,-0.1951,-0.9622,0.1939,-0.1914,-0.9622,0.1939,-0.1914,-0.9808,0.0,-0.1951,-0.9239,0.0,-0.3827,-0.9622,0.1939,-0.1914,-0.9239,0.0,-0.3827,-0.9063,0.1939,-0.3754,-0.9063,0.1939,-0.3754,-0.9239,0.0,-0.3827,-0.8315,0.0,-0.5556,-0.9063,0.1939,-0.3754,-0.8315,0.0,-0.5556,-0.8157,0.1939,-0.545,-0.8157,0.1939,-0.545,-0.8315,0.0,-0.5556,-0.7071,0.0,-0.7071,-0.8157,0.1939,-0.545,-0.7071,0.0,-0.7071,-0.6937,0.1939,-0.6937,-0.6937,0.1939,-0.6937,-0.7071,0.0,-0.7071,-0.5556,0.0,-0.8315,-0.6937,0.1939,-0.6937,-0.5556,0.0,-0.8315,-0.545,0.1939,-0.8157,-0.545,0.1939,-0.8157,-0.5556,0.0,-0.8315,-0.3827,0.0,-0.9239,-0.545,0.1939,-0.8157,-0.3827,0.0,-0.9239,-0.3754,0.1939,-0.9063,-0.3754,0.1939,-0.9063,-0.3827,0.0,-0.9239,-0.1951,0.0,-0.9808,-0.3754,0.1939,-0.9063,-0.1951,0.0,-0.9808,-0.1914,0.1939,-0.9622,-0.1914,0.1939,-0.9622,-0.1951,0.0,-0.9808,0.0,0.0,-1.0,-0.1914,0.1939,-0.9622,0.0,0.0,-1.0,0.0,0.1939,-0.981,0.0,0.1939,-0.981,0.0,0.0,-1.0,0.1951,0.0,-0.9808,0.0,0.1939,-0.981,0.1951,0.0,-0.9808,0.1914,0.1939,-0.9622,0.1914,0.1939,-0.9622,0.1951,0.0,-0.9808,0.3827,0.0,-0.9239,0.1914,0.1939,-0.9622,0.3827,0.0,-0.9239,0.3754,0.1939,-0.9063,0.3754,0.1939,-0.9063,0.3827,0.0,-0.9239,0.5556,0.0,-0.8315,0.3754,0.1939,-0.9063,0.5556,0.0,-0.8315,0.545,0.1939,-0.8157,0.545,0.1939,-0.8157,0.5556,0.0,-0.8315,0.7071,0.0,-0.7071,0.545,0.1939,-0.8157,0.7071,0.0,-0.7071,0.6937,0.1939,-0.6937,0.6937,0.1939,-0.6937,0.7071,0.0,-0.7071,0.8315,0.0,-0.5556,0.6937,0.1939,-0.6937,0.8315,0.0,-0.5556,0.8157,0.1939,-0.545,0.8157,0.1939,-0.545,0.8315,0.0,-0.5556,0.9239,0.0,-0.3827,0.8157,0.1939,-0.545,0.9239,0.0,-0.3827,0.9063,0.1939,-0.3754,0.9063,0.1939,-0.3754,0.9239,0.0,-0.3827,0.9808,0.0,-0.1951,0.9063,0.1939,-0.3754,0.9808,0.0,-0.1951,0.9622,0.1939,-0.1914,0.9622,0.1939,-0.1914,0.9808,0.0,-0.1951,1.0,0.0,0.0,0.9622,0.1939,-0.1914,1.0,0.0,0.0,0.981,0.1939,0.0,0.981,0.1939,0.0,1.0,0.0,0.0,0.9808,0.0,0.1951,0.981,0.1939,0.0,0.9808,0.0,0.1951,0.9622,0.1939,0.1914,0.9622,0.1939,0.1914,0.9808,0.0,0.1951,0.9239,0.0,0.3827,0.9622,0.1939,0.1914,0.9239,0.0,0.3827,0.9063,0.1939,0.3754,0.9063,0.1939,0.3754,0.9239,0.0,0.3827,0.8315,0.0,0.5556,0.9063,0.1939,0.3754,0.8315,0.0,0.5556,0.8157,0.1939,0.545,0.8157,0.1939,0.545,0.8315,0.0,0.5556,0.7071,0.0,0.7071,0.8157,0.1939,0.545,0.7071,0.0,0.7071,0.6937,0.1939,0.6937,0.6937,0.1939,0.6937,0.7071,0.0,0.7071,0.5556,0.0,0.8315,0.6937,0.1939,0.6937,0.5556,0.0,0.8315,0.545,0.1939,0.8157,0.545,0.1939,0.8157,0.5556,0.0,0.8315,0.3827,0.0,0.9239,0.545,0.1939,0.8157,0.3827,0.0,0.9239,0.3754,0.1939,0.9063,0.3754,0.1939,0.9063,0.3827,0.0,0.9239,0.1951,0.0,0.9808,0.3754,0.1939,0.9063,0.1951,0.0,0.9808,0.1914,0.1939,0.9622,0.1914,0.1939,0.9622,0.1951,0.0,0.9808,0.0,0.0,1.0,0.1914,0.1939,0.9622,0.0,0.0,1.0,0.0,0.1939,0.981,0.0,0.0,1.0,0.0,-0.1939,0.981,-0.1914,-0.1939,0.9622,0.0,0.0,1.0,-0.1914,-0.1939,0.9622,-0.1951,0.0,0.9808,-0.1951,0.0,0.9808,-0.1914,-0.1939,0.9622,-0.3754,-0.1939,0.9063,-0.1951,0.0,0.9808,-0.3754,-0.1939,0.9063,-0.3827,0.0,0.9239,-0.3827,0.0,0.9239,-0.3754,-0.1939,0.9063,-0.545,-0.1939,0.8157,-0.3827,0.0,0.9239,-0.545,-0.1939,0.8157,-0.5556,0.0,0.8315,-0.5556,0.0,0.8315,-0.545,-0.1939,0.8157,-0.6937,-0.1939,0.6937,-0.5556,0.0,0.8315,-0.6937,-0.1939,0.6937,-0.7071,0.0,0.7071,-0.7071,0.0,0.7071,-0.6937,-0.1939,0.6937,-0.8157,-0.1939,0.545,-0.7071,0.0,0.7071,-0.8157,-0.1939,0.545,-0.8315,0.0,0.5556,-0.8315,0.0,0.5556,-0.8157,-0.1939,0.545,-0.9063,-0.1939,0.3754,-0.8315,0.0,0.5556,-0.9063,-0.1939,0.3754,-0.9239,0.0,0.3827,-0.9239,0.0,0.3827,-0.9063,-0.1939,0.3754,-0.9622,-0.1939,0.1914,-0.9239,0.0,0.3827,-0.9622,-0.1939,0.1914,-0.9808,0.0,0.1951,-0.9808,0.0,0.1951,-0.9622,-0.1939,0.1914,-0.981,-0.1939,0.0,-0.9808,0.0,0.1951,-0.981,-0.1939,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-0.981,-0.1939,0.0,-0.9622,-0.1939,-0.1914,-1.0,0.0,0.0,-0.9622,-0.1939,-0.1914,-0.9808,0.0,-0.1951,-0.9808,0.0,-0.1951,-0.9622,-0.1939,-0.1914,-0.9063,-0.1939,-0.3754,-0.9808,0.0,-0.1951,-0.9063,-0.1939,-0.3754,-0.9239,0.0,-0.3827,-0.9239,0.0,-0.3827,-0.9063,-0.1939,-0.3754,-0.8157,-0.1939,-0.545,-0.9239,0.0,-0.3827,-0.8157,-0.1939,-0.545,-0.8315,0.0,-0.5556,-0.8315,0.0,-0.5556,-0.8157,-0.1939,-0.545,-0.6937,-0.1939,-0.6937,-0.8315,0.0,-0.5556,-0.6937,-0.1939,-0.6937,-0.7071,0.0,-0.7071,-0.7071,0.0,-0.7071,-0.6937,-0.1939,-0.6937,-0.545,-0.1939,-0.8157,-0.7071,0.0,-0.7071,-0.545,-0.1939,-0.8157,-0.5556,0.0,-0.8315,-0.5556,0.0,-0.8315,-0.545,-0.1939,-0.8157,-0.3754,-0.1939,-0.9063,-0.5556,0.0,-0.8315,-0.3754,-0.1939,-0.9063,-0.3827,0.0,-0.9239,-0.3827,0.0,-0.9239,-0.3754,-0.1939,-0.9063,-0.1914,-0.1939,-0.9622,-0.3827,0.0,-0.9239,-0.1914,-0.1939,-0.9622,-0.1951,0.0,-0.9808,-0.1951,0.0,-0.9808,-0.1914,-0.1939,-0.9622,0.0,-0.1939,-0.981,-0.1951,0.0,-0.9808,0.0,-0.1939,-0.981,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,-0.1939,-0.981,0.1914,-0.1939,-0.9622,0.0,0.0,-1.0,0.1914,-0.1939,-0.9622,0.1951,0.0,-0.9808,0.1951,0.0,-0.9808,0.1914,-0.1939,-0.9622,0.3754,-0.1939,-0.9063,0.1951,0.0,-0.9808,0.3754,-0.1939,-0.9063,0.3827,0.0,-0.9239,0.3827,0.0,-0.9239,0.3754,-0.1939,-0.9063,0.545,-0.1939,-0.8157,0.3827,0.0,-0.9239,0.545,-0.1939,-0.8157,0.5556,0.0,-0.8315,0.5556,0.0,-0.8315,0.545,-0.1939,-0.8157,0.6937,-0.1939,-0.6937,0.5556,0.0,-0.8315,0.6937,-0.1939,-0.6937,0.7071,0.0,-0.7071,0.7071,0.0,-0.7071,0.6937,-0.1939,-0.6937,0.8157,-0.1939,-0.545,0.7071,0.0,-0.7071,0.8157,-0.1939,-0.545,0.8315,0.0,-0.5556,0.8315,0.0,-0.5556,0.8157,-0.1939,-0.545,0.9063,-0.1939,-0.3754,0.8315,0.0,-0.5556,0.9063,-0.1939,-0.3754,0.9239,0.0,-0.3827,0.9239,0.0,-0.3827,0.9063,-0.1939,-0.3754,0.9622,-0.1939,-0.1914,0.9239,0.0,-0.3827,0.9622,-0.1939,-0.1914,0.9808,0.0,-0.1951,0.9808,0.0,-0.1951,0.9622,-0.1939,-0.1914,0.981,-0.1939,0.0,0.9808,0.0,-0.1951,0.981,-0.1939,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.981,-0.1939,0.0,0.9622,-0.1939,0.1914,1.0,0.0,0.0,0.9622,-0.1939,0.1914,0.9808,0.0,0.1951,0.9808,0.0,0.1951,0.9622,-0.1939,0.1914,0.9063,-0.1939,0.3754,0.9808,0.0,0.1951,0.9063,-0.1939,0.3754,0.9239,0.0,0.3827,0.9239,0.0,0.3827,0.9063,-0.1939,0.3754,0.8157,-0.1939,0.545,0.9239,0.0,0.3827,0.8157,-0.1939,0.545,0.8315,0.0,0.5556,0.8315,0.0,0.5556,0.8157,-0.1939,0.545,0.6937,-0.1939,0.6937,0.8315,0.0,0.5556,0.6937,-0.1939,0.6937,0.7071,0.0,0.7071,0.7071,0.0,0.7071,0.6937,-0.1939,0.6937,0.545,-0.1939,0.8157,0.7071,0.0,0.7071,0.545,-0.1939,0.8157,0.5556,0.0,0.8315,0.5556,0.0,0.8315,0.545,-0.1939,0.8157,0.3754,-0.1939,0.9063,0.5556,0.0,0.8315,0.3754,-0.1939,0.9063,0.3827,0.0,0.9239,0.3827,0.0,0.9239,0.3754,-0.1939,0.9063,0.1914,-0.1939,0.9622,0.3827,0.0,0.9239,0.1914,-0.1939,0.9622,0.1951,0.0,0.9808,0.1951,0.0,0.9808,0.1914,-0.1939,0.9622,0.0,-0.1939,0.981,0.1951,0.0,0.9808,0.0,-0.1939,0.981,0.0,0.0,1.0,0.0,-0.1939,0.981,0.0,-0.3805,0.9248,-0.1804,-0.3805,0.907,0.0,-0.1939,0.981,-0.1804,-0.3805,0.907,-0.1914,-0.1939,0.9622,-0.1914,-0.1939,0.9622,-0.1804,-0.3805,0.907,-0.3539,-0.3805,0.8544,-0.1914,-0.1939,0.9622,-0.3539,-0.3805,0.8544,-0.3754,-0.1939,0.9063,-0.3754,-0.1939,0.9063,-0.3539,-0.3805,0.8544,-0.5138,-0.3805,0.7689,-0.3754,-0.1939,0.9063,-0.5138,-0.3805,0.7689,-0.545,-0.1939,0.8157,-0.545,-0.1939,0.8157,-0.5138,-0.3805,0.7689,-0.6539,-0.3805,0.6539,-0.545,-0.1939,0.8157,-0.6539,-0.3805,0.6539,-0.6937,-0.1939,0.6937,-0.6937,-0.1939,0.6937,-0.6539,-0.3805,0.6539,-0.7689,-0.3805,0.5138,-0.6937,-0.1939,0.6937,-0.7689,-0.3805,0.5138,-0.8157,-0.1939,0.545,-0.8157,-0.1939,0.545,-0.7689,-0.3805,0.5138,-0.8544,-0.3805,0.3539,-0.8157,-0.1939,0.545,-0.8544,-0.3805,0.3539,-0.9063,-0.1939,0.3754,-0.9063,-0.1939,0.3754,-0.8544,-0.3805,0.3539,-0.907,-0.3805,0.1804,-0.9063,-0.1939,0.3754,-0.907,-0.3805,0.1804,-0.9622,-0.1939,0.1914,-0.9622,-0.1939,0.1914,-0.907,-0.3805,0.1804,-0.9248,-0.3805,0.0,-0.9622,-0.1939,0.1914,-0.9248,-0.3805,0.0,-0.981,-0.1939,0.0,-0.981,-0.1939,0.0,-0.9248,-0.3805,0.0,-0.907,-0.3805,-0.1804,-0.981,-0.1939,0.0,-0.907,-0.3805,-0.1804,-0.9622,-0.1939,-0.1914,-0.9622,-0.1939,-0.1914,-0.907,-0.3805,-0.1804,-0.8544,-0.3805,-0.3539,-0.9622,-0.1939,-0.1914,-0.8544,-0.3805,-0.3539,-0.9063,-0.1939,-0.3754,-0.9063,-0.1939,-0.3754,-0.8544,-0.3805,-0.3539,-0.7689,-0.3805,-0.5138,-0.9063,-0.1939,-0.3754,-0.7689,-0.3805,-0.5138,-0.8157,-0.1939,-0.545,-0.8157,-0.1939,-0.545,-0.7689,-0.3805,-0.5138,-0.6539,-0.3805,-0.6539,-0.8157,-0.1939,-0.545,-0.6539,-0.3805,-0.6539,-0.6937,-0.1939,-0.6937,-0.6937,-0.1939,-0.6937,-0.6539,-0.3805,-0.6539,-0.5138,-0.3805,-0.7689,-0.6937,-0.1939,-0.6937,-0.5138,-0.3805,-0.7689,-0.545,-0.1939,-0.8157,-0.545,-0.1939,-0.8157,-0.5138,-0.3805,-0.7689,-0.3539,-0.3805,-0.8544,-0.545,-0.1939,-0.8157,-0.3539,-0.3805,-0.8544,-0.3754,-0.1939,-0.9063,-0.3754,-0.1939,-0.9063,-0.3539,-0.3805,-0.8544,-0.1804,-0.3805,-0.907,-0.3754,-0.1939,-0.9063,-0.1804,-0.3805,-0.907,-0.1914,-0.1939,-0.9622,-0.1914,-0.1939,-0.9622,-0.1804,-0.3805,-0.907,0.0,-0.3805,-0.9248,-0.1914,-0.1939,-0.9622,0.0,-0.3805,-0.9248,0.0,-0.1939,-0.981,0.0,-0.1939,-0.981,0.0,-0.3805,-0.9248,0.1804,-0.3805,-0.907,0.0,-0.1939,-0.981,0.1804,-0.3805,-0.907,0.1914,-0.1939,-0.9622,0.1914,-0.1939,-0.9622,0.1804,-0.3805,-0.907,0.3539,-0.3805,-0.8544,0.1914,-0.1939,-0.9622,0.3539,-0.3805,-0.8544,0.3754,-0.1939,-0.9063,0.3754,-0.1939,-0.9063,0.3539,-0.3805,-0.8544,0.5138,-0.3805,-0.7689,0.3754,-0.1939,-0.9063,0.5138,-0.3805,-0.7689,0.545,-0.1939,-0.8157,0.545,-0.1939,-0.8157,0.5138,-0.3805,-0.7689,0.6539,-0.3805,-0.6539,0.545,-0.1939,-0.8157,0.6539,-0.3805,-0.6539,0.6937,-0.1939,-0.6937,0.6937,-0.1939,-0.6937,0.6539,-0.3805,-0.6539,0.7689,-0.3805,-0.5138,0.6937,-0.1939,-0.6937,0.7689,-0.3805,-0.5138,0.8157,-0.1939,-0.545,0.8157,-0.1939,-0.545,0.7689,-0.3805,-0.5138,0.8544,-0.3805,-0.3539,0.8157,-0.1939,-0.545,0.8544,-0.3805,-0.3539,0.9063,-0.1939,-0.3754,0.9063,-0.1939,-0.3754,0.8544,-0.3805,-0.3539,0.907,-0.3805,-0.1804,0.9063,-0.1939,-0.3754,0.907,-0.3805,-0.1804,0.9622,-0.1939,-0.1914,0.9622,-0.1939,-0.1914,0.907,-0.3805,-0.1804,0.9248,-0.3805,0.0,0.9622,-0.1939,-0.1914,0.9248,-0.3805,0.0,0.981,-0.1939,0.0,0.981,-0.1939,0.0,0.9248,-0.3805,0.0,0.907,-0.3805,0.1804,0.981,-0.1939,0.0,0.907,-0.3805,0.1804,0.9622,-0.1939,0.1914,0.9622,-0.1939,0.1914,0.907,-0.3805,0.1804,0.8544,-0.3805,0.3539,0.9622,-0.1939,0.1914,0.8544,-0.3805,0.3539,0.9063,-0.1939,0.3754,0.9063,-0.1939,0.3754,0.8544,-0.3805,0.3539,0.7689,-0.3805,0.5138,0.9063,-0.1939,0.3754,0.7689,-0.3805,0.5138,0.8157,-0.1939,0.545,0.8157,-0.1939,0.545,0.7689,-0.3805,0.5138,0.6539,-0.3805,0.6539,0.8157,-0.1939,0.545,0.6539,-0.3805,0.6539,0.6937,-0.1939,0.6937,0.6937,-0.1939,0.6937,0.6539,-0.3805,0.6539,0.5138,-0.3805,0.7689,0.6937,-0.1939,0.6937,0.5138,-0.3805,0.7689,0.545,-0.1939,0.8157,0.545,-0.1939,0.8157,0.5138,-0.3805,0.7689,0.3539,-0.3805,0.8544,0.545,-0.1939,0.8157,0.3539,-0.3805,0.8544,0.3754,-0.1939,0.9063,0.3754,-0.1939,0.9063,0.3539,-0.3805,0.8544,0.1804,-0.3805,0.907,0.3754,-0.1939,0.9063,0.1804,-0.3805,0.907,0.1914,-0.1939,0.9622,0.1914,-0.1939,0.9622,0.1804,-0.3805,0.907,0.0,-0.3805,0.9248,0.1914,-0.1939,0.9622,0.0,-0.3805,0.9248,0.0,-0.1939,0.981,0.0,-0.3805,0.9248,0.0,-0.5528,0.8333,-0.1626,-0.5528,0.8173,0.0,-0.3805,0.9248,-0.1626,-0.5528,0.8173,-0.1804,-0.3805,0.907,-0.1804,-0.3805,0.907,-0.1626,-0.5528,0.8173,-0.3189,-0.5528,0.7699,-0.1804,-0.3805,0.907,-0.3189,-0.5528,0.7699,-0.3539,-0.3805,0.8544,-0.3539,-0.3805,0.8544,-0.3189,-0.5528,0.7699,-0.463,-0.5528,0.6929,-0.3539,-0.3805,0.8544,-0.463,-0.5528,0.6929,-0.5138,-0.3805,0.7689,-0.5138,-0.3805,0.7689,-0.463,-0.5528,0.6929,-0.5893,-0.5528,0.5893,-0.5138,-0.3805,0.7689,-0.5893,-0.5528,0.5893,-0.6539,-0.3805,0.6539,-0.6539,-0.3805,0.6539,-0.5893,-0.5528,0.5893,-0.6929,-0.5528,0.463,-0.6539,-0.3805,0.6539,-0.6929,-0.5528,0.463,-0.7689,-0.3805,0.5138,-0.7689,-0.3805,0.5138,-0.6929,-0.5528,0.463,-0.7699,-0.5528,0.3189,-0.7689,-0.3805,0.5138,-0.7699,-0.5528,0.3189,-0.8544,-0.3805,0.3539,-0.8544,-0.3805,0.3539,-0.7699,-0.5528,0.3189,-0.8173,-0.5528,0.1626,-0.8544,-0.3805,0.3539,-0.8173,-0.5528,0.1626,-0.907,-0.3805,0.1804,-0.907,-0.3805,0.1804,-0.8173,-0.5528,0.1626,-0.8333,-0.5528,0.0,-0.907,-0.3805,0.1804,-0.8333,-0.5528,0.0,-0.9248,-0.3805,0.0,-0.9248,-0.3805,0.0,-0.8333,-0.5528,0.0,-0.8173,-0.5528,-0.1626,-0.9248,-0.3805,0.0,-0.8173,-0.5528,-0.1626,-0.907,-0.3805,-0.1804,-0.907,-0.3805,-0.1804,-0.8173,-0.5528,-0.1626,-0.7699,-0.5528,-0.3189,-0.907,-0.3805,-0.1804,-0.7699,-0.5528,-0.3189,-0.8544,-0.3805,-0.3539,-0.8544,-0.3805,-0.3539,-0.7699,-0.5528,-0.3189,-0.6929,-0.5528,-0.463,-0.8544,-0.3805,-0.3539,-0.6929,-0.5528,-0.463,-0.7689,-0.3805,-0.5138,-0.7689,-0.3805,-0.5138,-0.6929,-0.5528,-0.463,-0.5893,-0.5528,-0.5893,-0.7689,-0.3805,-0.5138,-0.5893,-0.5528,-0.5893,-0.6539,-0.3805,-0.6539,-0.6539,-0.3805,-0.6539,-0.5893,-0.5528,-0.5893,-0.463,-0.5528,-0.6929,-0.6539,-0.3805,-0.6539,-0.463,-0.5528,-0.6929,-0.5138,-0.3805,-0.7689,-0.5138,-0.3805,-0.7689,-0.463,-0.5528,-0.6929,-0.3189,-0.5528,-0.7699,-0.5138,-0.3805,-0.7689,-0.3189,-0.5528,-0.7699,-0.3539,-0.3805,-0.8544,-0.3539,-0.3805,-0.8544,-0.3189,-0.5528,-0.7699,-0.1626,-0.5528,-0.8173,-0.3539,-0.3805,-0.8544,-0.1626,-0.5528,-0.8173,-0.1804,-0.3805,-0.907,-0.1804,-0.3805,-0.907,-0.1626,-0.5528,-0.8173,0.0,-0.5528,-0.8333,-0.1804,-0.3805,-0.907,0.0,-0.5528,-0.8333,0.0,-0.3805,-0.9248,0.0,-0.3805,-0.9248,0.0,-0.5528,-0.8333,0.1626,-0.5528,-0.8173,0.0,-0.3805,-0.9248,0.1626,-0.5528,-0.8173,0.1804,-0.3805,-0.907,0.1804,-0.3805,-0.907,0.1626,-0.5528,-0.8173,0.3189,-0.5528,-0.7699,0.1804,-0.3805,-0.907,0.3189,-0.5528,-0.7699,0.3539,-0.3805,-0.8544,0.3539,-0.3805,-0.8544,0.3189,-0.5528,-0.7699,0.463,-0.5528,-0.6929,0.3539,-0.3805,-0.8544,0.463,-0.5528,-0.6929,0.5138,-0.3805,-0.7689,0.5138,-0.3805,-0.7689,0.463,-0.5528,-0.6929,0.5893,-0.5528,-0.5893,0.5138,-0.3805,-0.7689,0.5893,-0.5528,-0.5893,0.6539,-0.3805,-0.6539,0.6539,-0.3805,-0.6539,0.5893,-0.5528,-0.5893,0.6929,-0.5528,-0.463,0.6539,-0.3805,-0.6539,0.6929,-0.5528,-0.463,0.7689,-0.3805,-0.5138,0.7689,-0.3805,-0.5138,0.6929,-0.5528,-0.463,0.7699,-0.5528,-0.3189,0.7689,-0.3805,-0.5138,0.7699,-0.5528,-0.3189,0.8544,-0.3805,-0.3539,0.8544,-0.3805,-0.3539,0.7699,-0.5528,-0.3189,0.8173,-0.5528,-0.1626,0.8544,-0.3805,-0.3539,0.8173,-0.5528,-0.1626,0.907,-0.3805,-0.1804,0.907,-0.3805,-0.1804,0.8173,-0.5528,-0.1626,0.8333,-0.5528,0.0,0.907,-0.3805,-0.1804,0.8333,-0.5528,0.0,0.9248,-0.3805,0.0,0.9248,-0.3805,0.0,0.8333,-0.5528,0.0,0.8173,-0.5528,0.1626,0.9248,-0.3805,0.0,0.8173,-0.5528,0.1626,0.907,-0.3805,0.1804,0.907,-0.3805,0.1804,0.8173,-0.5528,0.1626,0.7699,-0.5528,0.3189,0.907,-0.3805,0.1804,0.7699,-0.5528,0.3189,0.8544,-0.3805,0.3539,0.8544,-0.3805,0.3539,0.7699,-0.5528,0.3189,0.6929,-0.5528,0.463,0.8544,-0.3805,0.3539,0.6929,-0.5528,0.463,0.7689,-0.3805,0.5138,0.7689,-0.3805,0.5138,0.6929,-0.5528,0.463,0.5893,-0.5528,0.5893,0.7689,-0.3805,0.5138,0.5893,-0.5528,0.5893,0.6539,-0.3805,0.6539,0.6539,-0.3805,0.6539,0.5893,-0.5528,0.5893,0.463,-0.5528,0.6929,0.6539,-0.3805,0.6539,0.463,-0.5528,0.6929,0.5138,-0.3805,0.7689,0.5138,-0.3805,0.7689,0.463,-0.5528,0.6929,0.3189,-0.5528,0.7699,0.5138,-0.3805,0.7689,0.3189,-0.5528,0.7699,0.3539,-0.3805,0.8544,0.3539,-0.3805,0.8544,0.3189,-0.5528,0.7699,0.1626,-0.5528,0.8173,0.3539,-0.3805,0.8544,0.1626,-0.5528,0.8173,0.1804,-0.3805,0.907,0.1804,-0.3805,0.907,0.1626,-0.5528,0.8173,0.0,-0.5528,0.8333,0.1804,-0.3805,0.907,0.0,-0.5528,0.8333,0.0,-0.3805,0.9248,0.0,-0.5528,0.8333,0.0,-0.7041,0.7101,-0.1385,-0.7041,0.6965,0.0,-0.5528,0.8333,-0.1385,-0.7041,0.6965,-0.1626,-0.5528,0.8173,-0.1626,-0.5528,0.8173,-0.1385,-0.7041,0.6965,-0.2718,-0.7041,0.6561,-0.1626,-0.5528,0.8173,-0.2718,-0.7041,0.6561,-0.3189,-0.5528,0.7699,-0.3189,-0.5528,0.7699,-0.2718,-0.7041,0.6561,-0.3945,-0.7041,0.5905,-0.3189,-0.5528,0.7699,-0.3945,-0.7041,0.5905,-0.463,-0.5528,0.6929,-0.463,-0.5528,0.6929,-0.3945,-0.7041,0.5905,-0.5021,-0.7041,0.5021,-0.463,-0.5528,0.6929,-0.5021,-0.7041,0.5021,-0.5893,-0.5528,0.5893,-0.5893,-0.5528,0.5893,-0.5021,-0.7041,0.5021,-0.5905,-0.7041,0.3945,-0.5893,-0.5528,0.5893,-0.5905,-0.7041,0.3945,-0.6929,-0.5528,0.463,-0.6929,-0.5528,0.463,-0.5905,-0.7041,0.3945,-0.6561,-0.7041,0.2718,-0.6929,-0.5528,0.463,-0.6561,-0.7041,0.2718,-0.7699,-0.5528,0.3189,-0.7699,-0.5528,0.3189,-0.6561,-0.7041,0.2718,-0.6965,-0.7041,0.1385,-0.7699,-0.5528,0.3189,-0.6965,-0.7041,0.1385,-0.8173,-0.5528,0.1626,-0.8173,-0.5528,0.1626,-0.6965,-0.7041,0.1385,-0.7101,-0.7041,0.0,-0.8173,-0.5528,0.1626,-0.7101,-0.7041,0.0,-0.8333,-0.5528,0.0,-0.8333,-0.5528,0.0,-0.7101,-0.7041,0.0,-0.6965,-0.7041,-0.1385,-0.8333,-0.5528,0.0,-0.6965,-0.7041,-0.1385,-0.8173,-0.5528,-0.1626,-0.8173,-0.5528,-0.1626,-0.6965,-0.7041,-0.1385,-0.6561,-0.7041,-0.2718,-0.8173,-0.5528,-0.1626,-0.6561,-0.7041,-0.2718,-0.7699,-0.5528,-0.3189,-0.7699,-0.5528,-0.3189,-0.6561,-0.7041,-0.2718,-0.5905,-0.7041,-0.3945,-0.7699,-0.5528,-0.3189,-0.5905,-0.7041,-0.3945,-0.6929,-0.5528,-0.463,-0.6929,-0.5528,-0.463,-0.5905,-0.7041,-0.3945,-0.5021,-0.7041,-0.5021,-0.6929,-0.5528,-0.463,-0.5021,-0.7041,-0.5021,-0.5893,-0.5528,-0.5893,-0.5893,-0.5528,-0.5893,-0.5021,-0.7041,-0.5021,-0.3945,-0.7041,-0.5905,-0.5893,-0.5528,-0.5893,-0.3945,-0.7041,-0.5905,-0.463,-0.5528,-0.6929,-0.463,-0.5528,-0.6929,-0.3945,-0.7041,-0.5905,-0.2718,-0.7041,-0.6561,-0.463,-0.5528,-0.6929,-0.2718,-0.7041,-0.6561,-0.3189,-0.5528,-0.7699,-0.3189,-0.5528,-0.7699,-0.2718,-0.7041,-0.6561,-0.1385,-0.7041,-0.6965,-0.3189,-0.5528,-0.7699,-0.1385,-0.7041,-0.6965,-0.1626,-0.5528,-0.8173,-0.1626,-0.5528,-0.8173,-0.1385,-0.7041,-0.6965,0.0,-0.7041,-0.7101,-0.1626,-0.5528,-0.8173,0.0,-0.7041,-0.7101,0.0,-0.5528,-0.8333,0.0,-0.5528,-0.8333,0.0,-0.7041,-0.7101,0.1385,-0.7041,-0.6965,0.0,-0.5528,-0.8333,0.1385,-0.7041,-0.6965,0.1626,-0.5528,-0.8173,0.1626,-0.5528,-0.8173,0.1385,-0.7041,-0.6965,0.2718,-0.7041,-0.6561,0.1626,-0.5528,-0.8173,0.2718,-0.7041,-0.6561,0.3189,-0.5528,-0.7699,0.3189,-0.5528,-0.7699,0.2718,-0.7041,-0.6561,0.3945,-0.7041,-0.5905,0.3189,-0.5528,-0.7699,0.3945,-0.7041,-0.5905,0.463,-0.5528,-0.6929,0.463,-0.5528,-0.6929,0.3945,-0.7041,-0.5905,0.5021,-0.7041,-0.5021,0.463,-0.5528,-0.6929,0.5021,-0.7041,-0.5021,0.5893,-0.5528,-0.5893,0.5893,-0.5528,-0.5893,0.5021,-0.7041,-0.5021,0.5905,-0.7041,-0.3945,0.5893,-0.5528,-0.5893,0.5905,-0.7041,-0.3945,0.6929,-0.5528,-0.463,0.6929,-0.5528,-0.463,0.5905,-0.7041,-0.3945,0.6561,-0.7041,-0.2718,0.6929,-0.5528,-0.463,0.6561,-0.7041,-0.2718,0.7699,-0.5528,-0.3189,0.7699,-0.5528,-0.3189,0.6561,-0.7041,-0.2718,0.6965,-0.7041,-0.1385,0.7699,-0.5528,-0.3189,0.6965,-0.7041,-0.1385,0.8173,-0.5528,-0.1626,0.8173,-0.5528,-0.1626,0.6965,-0.7041,-0.1385,0.7101,-0.7041,0.0,0.8173,-0.5528,-0.1626,0.7101,-0.7041,0.0,0.8333,-0.5528,0.0,0.8333,-0.5528,0.0,0.7101,-0.7041,0.0,0.6965,-0.7041,0.1385,0.8333,-0.5528,0.0,0.6965,-0.7041,0.1385,0.8173,-0.5528,0.1626,0.8173,-0.5528,0.1626,0.6965,-0.7041,0.1385,0.6561,-0.7041,0.2718,0.8173,-0.5528,0.1626,0.6561,-0.7041,0.2718,0.7699,-0.5528,0.3189,0.7699,-0.5528,0.3189,0.6561,-0.7041,0.2718,0.5905,-0.7041,0.3945,0.7699,-0.5528,0.3189,0.5905,-0.7041,0.3945,0.6929,-0.5528,0.463,0.6929,-0.5528,0.463,0.5905,-0.7041,0.3945,0.5021,-0.7041,0.5021,0.6929,-0.5528,0.463,0.5021,-0.7041,0.5021,0.5893,-0.5528,0.5893,0.5893,-0.5528,0.5893,0.5021,-0.7041,0.5021,0.3945,-0.7041,0.5905,0.5893,-0.5528,0.5893,0.3945,-0.7041,0.5905,0.463,-0.5528,0.6929,0.463,-0.5528,0.6929,0.3945,-0.7041,0.5905,0.2718,-0.7041,0.6561,0.463,-0.5528,0.6929,0.2718,-0.7041,0.6561,0.3189,-0.5528,0.7699,0.3189,-0.5528,0.7699,0.2718,-0.7041,0.6561,0.1385,-0.7041,0.6965,0.3189,-0.5528,0.7699,0.1385,-0.7041,0.6965,0.1626,-0.5528,0.8173,0.1626,-0.5528,0.8173,0.1385,-0.7041,0.6965,0.0,-0.7041,0.7101,0.1626,-0.5528,0.8173,0.0,-0.7041,0.7101,0.0,-0.5528,0.8333,0.0,-0.7041,0.7101,0.0,-0.8286,0.5598,-0.1092,-0.8286,0.549,0.0,-0.7041,0.7101,-0.1092,-0.8286,0.549,-0.1385,-0.7041,0.6965,-0.1385,-0.7041,0.6965,-0.1092,-0.8286,0.549,-0.2142,-0.8286,0.5172,-0.1385,-0.7041,0.6965,-0.2142,-0.8286,0.5172,-0.2718,-0.7041,0.6561,-0.2718,-0.7041,0.6561,-0.2142,-0.8286,0.5172,-0.311,-0.8286,0.4654,-0.2718,-0.7041,0.6561,-0.311,-0.8286,0.4654,-0.3945,-0.7041,0.5905,-0.3945,-0.7041,0.5905,-0.311,-0.8286,0.4654,-0.3958,-0.8286,0.3958,-0.3945,-0.7041,0.5905,-0.3958,-0.8286,0.3958,-0.5021,-0.7041,0.5021,-0.5021,-0.7041,0.5021,-0.3958,-0.8286,0.3958,-0.4654,-0.8286,0.311,-0.5021,-0.7041,0.5021,-0.4654,-0.8286,0.311,-0.5905,-0.7041,0.3945,-0.5905,-0.7041,0.3945,-0.4654,-0.8286,0.311,-0.5172,-0.8286,0.2142,-0.5905,-0.7041,0.3945,-0.5172,-0.8286,0.2142,-0.6561,-0.7041,0.2718,-0.6561,-0.7041,0.2718,-0.5172,-0.8286,0.2142,-0.549,-0.8286,0.1092,-0.6561,-0.7041,0.2718,-0.549,-0.8286,0.1092,-0.6965,-0.7041,0.1385,-0.6965,-0.7041,0.1385,-0.549,-0.8286,0.1092,-0.5598,-0.8286,0.0,-0.6965,-0.7041,0.1385,-0.5598,-0.8286,0.0,-0.7101,-0.7041,0.0,-0.7101,-0.7041,0.0,-0.5598,-0.8286,0.0,-0.549,-0.8286,-0.1092,-0.7101,-0.7041,0.0,-0.549,-0.8286,-0.1092,-0.6965,-0.7041,-0.1385,-0.6965,-0.7041,-0.1385,-0.549,-0.8286,-0.1092,-0.5172,-0.8286,-0.2142,-0.6965,-0.7041,-0.1385,-0.5172,-0.8286,-0.2142,-0.6561,-0.7041,-0.2718,-0.6561,-0.7041,-0.2718,-0.5172,-0.8286,-0.2142,-0.4654,-0.8286,-0.311,-0.6561,-0.7041,-0.2718,-0.4654,-0.8286,-0.311,-0.5905,-0.7041,-0.3945,-0.5905,-0.7041,-0.3945,-0.4654,-0.8286,-0.311,-0.3958,-0.8286,-0.3958,-0.5905,-0.7041,-0.3945,-0.3958,-0.8286,-0.3958,-0.5021,-0.7041,-0.5021,-0.5021,-0.7041,-0.5021,-0.3958,-0.8286,-0.3958,-0.311,-0.8286,-0.4654,-0.5021,-0.7041,-0.5021,-0.311,-0.8286,-0.4654,-0.3945,-0.7041,-0.5905,-0.3945,-0.7041,-0.5905,-0.311,-0.8286,-0.4654,-0.2142,-0.8286,-0.5172,-0.3945,-0.7041,-0.5905,-0.2142,-0.8286,-0.5172,-0.2718,-0.7041,-0.6561,-0.2718,-0.7041,-0.6561,-0.2142,-0.8286,-0.5172,-0.1092,-0.8286,-0.549,-0.2718,-0.7041,-0.6561,-0.1092,-0.8286,-0.549,-0.1385,-0.7041,-0.6965,-0.1385,-0.7041,-0.6965,-0.1092,-0.8286,-0.549,0.0,-0.8286,-0.5598,-0.1385,-0.7041,-0.6965,0.0,-0.8286,-0.5598,0.0,-0.7041,-0.7101,0.0,-0.7041,-0.7101,0.0,-0.8286,-0.5598,0.1092,-0.8286,-0.549,0.0,-0.7041,-0.7101,0.1092,-0.8286,-0.549,0.1385,-0.7041,-0.6965,0.1385,-0.7041,-0.6965,0.1092,-0.8286,-0.549,0.2142,-0.8286,-0.5172,0.1385,-0.7041,-0.6965,0.2142,-0.8286,-0.5172,0.2718,-0.7041,-0.6561,0.2718,-0.7041,-0.6561,0.2142,-0.8286,-0.5172,0.311,-0.8286,-0.4654,0.2718,-0.7041,-0.6561,0.311,-0.8286,-0.4654,0.3945,-0.7041,-0.5905,0.3945,-0.7041,-0.5905,0.311,-0.8286,-0.4654,0.3958,-0.8286,-0.3958,0.3945,-0.7041,-0.5905,0.3958,-0.8286,-0.3958,0.5021,-0.7041,-0.5021,0.5021,-0.7041,-0.5021,0.3958,-0.8286,-0.3958,0.4654,-0.8286,-0.311,0.5021,-0.7041,-0.5021,0.4654,-0.8286,-0.311,0.5905,-0.7041,-0.3945,0.5905,-0.7041,-0.3945,0.4654,-0.8286,-0.311,0.5172,-0.8286,-0.2142,0.5905,-0.7041,-0.3945,0.5172,-0.8286,-0.2142,0.6561,-0.7041,-0.2718,0.6561,-0.7041,-0.2718,0.5172,-0.8286,-0.2142,0.549,-0.8286,-0.1092,0.6561,-0.7041,-0.2718,0.549,-0.8286,-0.1092,0.6965,-0.7041,-0.1385,0.6965,-0.7041,-0.1385,0.549,-0.8286,-0.1092,0.5598,-0.8286,0.0,0.6965,-0.7041,-0.1385,0.5598,-0.8286,0.0,0.7101,-0.7041,0.0,0.7101,-0.7041,0.0,0.5598,-0.8286,0.0,0.549,-0.8286,0.1092,0.7101,-0.7041,0.0,0.549,-0.8286,0.1092,0.6965,-0.7041,0.1385,0.6965,-0.7041,0.1385,0.549,-0.8286,0.1092,0.5172,-0.8286,0.2142,0.6965,-0.7041,0.1385,0.5172,-0.8286,0.2142,0.6561,-0.7041,0.2718,0.6561,-0.7041,0.2718,0.5172,-0.8286,0.2142,0.4654,-0.8286,0.311,0.6561,-0.7041,0.2718,0.4654,-0.8286,0.311,0.5905,-0.7041,0.3945,0.5905,-0.7041,0.3945,0.4654,-0.8286,0.311,0.3958,-0.8286,0.3958,0.5905,-0.7041,0.3945,0.3958,-0.8286,0.3958,0.5021,-0.7041,0.5021,0.5021,-0.7041,0.5021,0.3958,-0.8286,0.3958,0.311,-0.8286,0.4654,0.5021,-0.7041,0.5021,0.311,-0.8286,0.4654,0.3945,-0.7041,0.5905,0.3945,-0.7041,0.5905,0.311,-0.8286,0.4654,0.2142,-0.8286,0.5172,0.3945,-0.7041,0.5905,0.2142,-0.8286,0.5172,0.2718,-0.7041,0.6561,0.2718,-0.7041,0.6561,0.2142,-0.8286,0.5172,0.1092,-0.8286,0.549,0.2718,-0.7041,0.6561,0.1092,-0.8286,0.549,0.1385,-0.7041,0.6965,0.1385,-0.7041,0.6965,0.1092,-0.8286,0.549,0.0,-0.8286,0.5598,0.1385,-0.7041,0.6965,0.0,-0.8286,0.5598,0.0,-0.7041,0.7101,0.0,-0.8286,0.5598,0.0,-0.9217,0.3879,-0.0757,-0.9217,0.3804,0.0,-0.8286,0.5598,-0.0757,-0.9217,0.3804,-0.1092,-0.8286,0.549,-0.1092,-0.8286,0.549,-0.0757,-0.9217,0.3804,-0.1484,-0.9217,0.3584,-0.1092,-0.8286,0.549,-0.1484,-0.9217,0.3584,-0.2142,-0.8286,0.5172,-0.2142,-0.8286,0.5172,-0.1484,-0.9217,0.3584,-0.2155,-0.9217,0.3225,-0.2142,-0.8286,0.5172,-0.2155,-0.9217,0.3225,-0.311,-0.8286,0.4654,-0.311,-0.8286,0.4654,-0.2155,-0.9217,0.3225,-0.2743,-0.9217,0.2743,-0.311,-0.8286,0.4654,-0.2743,-0.9217,0.2743,-0.3958,-0.8286,0.3958,-0.3958,-0.8286,0.3958,-0.2743,-0.9217,0.2743,-0.3225,-0.9217,0.2155,-0.3958,-0.8286,0.3958,-0.3225,-0.9217,0.2155,-0.4654,-0.8286,0.311,-0.4654,-0.8286,0.311,-0.3225,-0.9217,0.2155,-0.3584,-0.9217,0.1484,-0.4654,-0.8286,0.311,-0.3584,-0.9217,0.1484,-0.5172,-0.8286,0.2142,-0.5172,-0.8286,0.2142,-0.3584,-0.9217,0.1484,-0.3804,-0.9217,0.0757,-0.5172,-0.8286,0.2142,-0.3804,-0.9217,0.0757,-0.549,-0.8286,0.1092,-0.549,-0.8286,0.1092,-0.3804,-0.9217,0.0757,-0.3879,-0.9217,0.0,-0.549,-0.8286,0.1092,-0.3879,-0.9217,0.0,-0.5598,-0.8286,0.0,-0.5598,-0.8286,0.0,-0.3879,-0.9217,0.0,-0.3804,-0.9217,-0.0757,-0.5598,-0.8286,0.0,-0.3804,-0.9217,-0.0757,-0.549,-0.8286,-0.1092,-0.549,-0.8286,-0.1092,-0.3804,-0.9217,-0.0757,-0.3584,-0.9217,-0.1484,-0.549,-0.8286,-0.1092,-0.3584,-0.9217,-0.1484,-0.5172,-0.8286,-0.2142,-0.5172,-0.8286,-0.2142,-0.3584,-0.9217,-0.1484,-0.3225,-0.9217,-0.2155,-0.5172,-0.8286,-0.2142,-0.3225,-0.9217,-0.2155,-0.4654,-0.8286,-0.311,-0.4654,-0.8286,-0.311,-0.3225,-0.9217,-0.2155,-0.2743,-0.9217,-0.2743,-0.4654,-0.8286,-0.311,-0.2743,-0.9217,-0.2743,-0.3958,-0.8286,-0.3958,-0.3958,-0.8286,-0.3958,-0.2743,-0.9217,-0.2743,-0.2155,-0.9217,-0.3225,-0.3958,-0.8286,-0.3958,-0.2155,-0.9217,-0.3225,-0.311,-0.8286,-0.4654,-0.311,-0.8286,-0.4654,-0.2155,-0.9217,-0.3225,-0.1484,-0.9217,-0.3584,-0.311,-0.8286,-0.4654,-0.1484,-0.9217,-0.3584,-0.2142,-0.8286,-0.5172,-0.2142,-0.8286,-0.5172,-0.1484,-0.9217,-0.3584,-0.0757,-0.9217,-0.3804,-0.2142,-0.8286,-0.5172,-0.0757,-0.9217,-0.3804,-0.1092,-0.8286,-0.549,-0.1092,-0.8286,-0.549,-0.0757,-0.9217,-0.3804,0.0,-0.9217,-0.3879,-0.1092,-0.8286,-0.549,0.0,-0.9217,-0.3879,0.0,-0.8286,-0.5598,0.0,-0.8286,-0.5598,0.0,-0.9217,-0.3879,0.0757,-0.9217,-0.3804,0.0,-0.8286,-0.5598,0.0757,-0.9217,-0.3804,0.1092,-0.8286,-0.549,0.1092,-0.8286,-0.549,0.0757,-0.9217,-0.3804,0.1484,-0.9217,-0.3584,0.1092,-0.8286,-0.549,0.1484,-0.9217,-0.3584,0.2142,-0.8286,-0.5172,0.2142,-0.8286,-0.5172,0.1484,-0.9217,-0.3584,0.2155,-0.9217,-0.3225,0.2142,-0.8286,-0.5172,0.2155,-0.9217,-0.3225,0.311,-0.8286,-0.4654,0.311,-0.8286,-0.4654,0.2155,-0.9217,-0.3225,0.2743,-0.9217,-0.2743,0.311,-0.8286,-0.4654,0.2743,-0.9217,-0.2743,0.3958,-0.8286,-0.3958,0.3958,-0.8286,-0.3958,0.2743,-0.9217,-0.2743,0.3225,-0.9217,-0.2155,0.3958,-0.8286,-0.3958,0.3225,-0.9217,-0.2155,0.4654,-0.8286,-0.311,0.4654,-0.8286,-0.311,0.3225,-0.9217,-0.2155,0.3584,-0.9217,-0.1484,0.4654,-0.8286,-0.311,0.3584,-0.9217,-0.1484,0.5172,-0.8286,-0.2142,0.5172,-0.8286,-0.2142,0.3584,-0.9217,-0.1484,0.3804,-0.9217,-0.0757,0.5172,-0.8286,-0.2142,0.3804,-0.9217,-0.0757,0.549,-0.8286,-0.1092,0.549,-0.8286,-0.1092,0.3804,-0.9217,-0.0757,0.3879,-0.9217,0.0,0.549,-0.8286,-0.1092,0.3879,-0.9217,0.0,0.5598,-0.8286,0.0,0.5598,-0.8286,0.0,0.3879,-0.9217,0.0,0.3804,-0.9217,0.0757,0.5598,-0.8286,0.0,0.3804,-0.9217,0.0757,0.549,-0.8286,0.1092,0.549,-0.8286,0.1092,0.3804,-0.9217,0.0757,0.3584,-0.9217,0.1484,0.549,-0.8286,0.1092,0.3584,-0.9217,0.1484,0.5172,-0.8286,0.2142,0.5172,-0.8286,0.2142,0.3584,-0.9217,0.1484,0.3225,-0.9217,0.2155,0.5172,-0.8286,0.2142,0.3225,-0.9217,0.2155,0.4654,-0.8286,0.311,0.4654,-0.8286,0.311,0.3225,-0.9217,0.2155,0.2743,-0.9217,0.2743,0.4654,-0.8286,0.311,0.2743,-0.9217,0.2743,0.3958,-0.8286,0.3958,0.3958,-0.8286,0.3958,0.2743,-0.9217,0.2743,0.2155,-0.9217,0.3225,0.3958,-0.8286,0.3958,0.2155,-0.9217,0.3225,0.311,-0.8286,0.4654,0.311,-0.8286,0.4654,0.2155,-0.9217,0.3225,0.1484,-0.9217,0.3584,0.311,-0.8286,0.4654,0.1484,-0.9217,0.3584,0.2142,-0.8286,0.5172,0.2142,-0.8286,0.5172,0.1484,-0.9217,0.3584,0.0757,-0.9217,0.3804,0.2142,-0.8286,0.5172,0.0757,-0.9217,0.3804,0.1092,-0.8286,0.549,0.1092,-0.8286,0.549,0.0757,-0.9217,0.3804,0.0,-0.9217,0.3879,0.1092,-0.8286,0.549,0.0,-0.9217,0.3879,0.0,-0.8286,0.5598,0.0,-0.9217,0.3879,0.0,-0.9796,0.201,-0.0392,-0.9796,0.1971,0.0,-0.9217,0.3879,-0.0392,-0.9796,0.1971,-0.0757,-0.9217,0.3804,-0.0757,-0.9217,0.3804,-0.0392,-0.9796,0.1971,-0.0769,-0.9796,0.1857,-0.0757,-0.9217,0.3804,-0.0769,-0.9796,0.1857,-0.1484,-0.9217,0.3584,-0.1484,-0.9217,0.3584,-0.0769,-0.9796,0.1857,-0.1117,-0.9796,0.1671,-0.1484,-0.9217,0.3584,-0.1117,-0.9796,0.1671,-0.2155,-0.9217,0.3225,-0.2155,-0.9217,0.3225,-0.1117,-0.9796,0.1671,-0.1421,-0.9796,0.1421,-0.2155,-0.9217,0.3225,-0.1421,-0.9796,0.1421,-0.2743,-0.9217,0.2743,-0.2743,-0.9217,0.2743,-0.1421,-0.9796,0.1421,-0.1671,-0.9796,0.1117,-0.2743,-0.9217,0.2743,-0.1671,-0.9796,0.1117,-0.3225,-0.9217,0.2155,-0.3225,-0.9217,0.2155,-0.1671,-0.9796,0.1117,-0.1857,-0.9796,0.0769,-0.3225,-0.9217,0.2155,-0.1857,-0.9796,0.0769,-0.3584,-0.9217,0.1484,-0.3584,-0.9217,0.1484,-0.1857,-0.9796,0.0769,-0.1971,-0.9796,0.0392,-0.3584,-0.9217,0.1484,-0.1971,-0.9796,0.0392,-0.3804,-0.9217,0.0757,-0.3804,-0.9217,0.0757,-0.1971,-0.9796,0.0392,-0.201,-0.9796,0.0,-0.3804,-0.9217,0.0757,-0.201,-0.9796,0.0,-0.3879,-0.9217,0.0,-0.3879,-0.9217,0.0,-0.201,-0.9796,0.0,-0.1971,-0.9796,-0.0392,-0.3879,-0.9217,0.0,-0.1971,-0.9796,-0.0392,-0.3804,-0.9217,-0.0757,-0.3804,-0.9217,-0.0757,-0.1971,-0.9796,-0.0392,-0.1857,-0.9796,-0.0769,-0.3804,-0.9217,-0.0757,-0.1857,-0.9796,-0.0769,-0.3584,-0.9217,-0.1484,-0.3584,-0.9217,-0.1484,-0.1857,-0.9796,-0.0769,-0.1671,-0.9796,-0.1117,-0.3584,-0.9217,-0.1484,-0.1671,-0.9796,-0.1117,-0.3225,-0.9217,-0.2155,-0.3225,-0.9217,-0.2155,-0.1671,-0.9796,-0.1117,-0.1421,-0.9796,-0.1421,-0.3225,-0.9217,-0.2155,-0.1421,-0.9796,-0.1421,-0.2743,-0.9217,-0.2743,-0.2743,-0.9217,-0.2743,-0.1421,-0.9796,-0.1421,-0.1117,-0.9796,-0.1671,-0.2743,-0.9217,-0.2743,-0.1117,-0.9796,-0.1671,-0.2155,-0.9217,-0.3225,-0.2155,-0.9217,-0.3225,-0.1117,-0.9796,-0.1671,-0.0769,-0.9796,-0.1857,-0.2155,-0.9217,-0.3225,-0.0769,-0.9796,-0.1857,-0.1484,-0.9217,-0.3584,-0.1484,-0.9217,-0.3584,-0.0769,-0.9796,-0.1857,-0.0392,-0.9796,-0.1971,-0.1484,-0.9217,-0.3584,-0.0392,-0.9796,-0.1971,-0.0757,-0.9217,-0.3804,-0.0757,-0.9217,-0.3804,-0.0392,-0.9796,-0.1971,0.0,-0.9796,-0.201,-0.0757,-0.9217,-0.3804,0.0,-0.9796,-0.201,0.0,-0.9217,-0.3879,0.0,-0.9217,-0.3879,0.0,-0.9796,-0.201,0.0392,-0.9796,-0.1971,0.0,-0.9217,-0.3879,0.0392,-0.9796,-0.1971,0.0757,-0.9217,-0.3804,0.0757,-0.9217,-0.3804,0.0392,-0.9796,-0.1971,0.0769,-0.9796,-0.1857,0.0757,-0.9217,-0.3804,0.0769,-0.9796,-0.1857,0.1484,-0.9217,-0.3584,0.1484,-0.9217,-0.3584,0.0769,-0.9796,-0.1857,0.1117,-0.9796,-0.1671,0.1484,-0.9217,-0.3584,0.1117,-0.9796,-0.1671,0.2155,-0.9217,-0.3225,0.2155,-0.9217,-0.3225,0.1117,-0.9796,-0.1671,0.1421,-0.9796,-0.1421,0.2155,-0.9217,-0.3225,0.1421,-0.9796,-0.1421,0.2743,-0.9217,-0.2743,0.2743,-0.9217,-0.2743,0.1421,-0.9796,-0.1421,0.1671,-0.9796,-0.1117,0.2743,-0.9217,-0.2743,0.1671,-0.9796,-0.1117,0.3225,-0.9217,-0.2155,0.3225,-0.9217,-0.2155,0.1671,-0.9796,-0.1117,0.1857,-0.9796,-0.0769,0.3225,-0.9217,-0.2155,0.1857,-0.9796,-0.0769,0.3584,-0.9217,-0.1484,0.3584,-0.9217,-0.1484,0.1857,-0.9796,-0.0769,0.1971,-0.9796,-0.0392,0.3584,-0.9217,-0.1484,0.1971,-0.9796,-0.0392,0.3804,-0.9217,-0.0757,0.3804,-0.9217,-0.0757,0.1971,-0.9796,-0.0392,0.201,-0.9796,0.0,0.3804,-0.9217,-0.0757,0.201,-0.9796,0.0,0.3879,-0.9217,0.0,0.3879,-0.9217,0.0,0.201,-0.9796,0.0,0.1971,-0.9796,0.0392,0.3879,-0.9217,0.0,0.1971,-0.9796,0.0392,0.3804,-0.9217,0.0757,0.3804,-0.9217,0.0757,0.1971,-0.9796,0.0392,0.1857,-0.9796,0.0769,0.3804,-0.9217,0.0757,0.1857,-0.9796,0.0769,0.3584,-0.9217,0.1484,0.3584,-0.9217,0.1484,0.1857,-0.9796,0.0769,0.1671,-0.9796,0.1117,0.3584,-0.9217,0.1484,0.1671,-0.9796,0.1117,0.3225,-0.9217,0.2155,0.3225,-0.9217,0.2155,0.1671,-0.9796,0.1117,0.1421,-0.9796,0.1421,0.3225,-0.9217,0.2155,0.1421,-0.9796,0.1421,0.2743,-0.9217,0.2743,0.2743,-0.9217,0.2743,0.1421,-0.9796,0.1421,0.1117,-0.9796,0.1671,0.2743,-0.9217,0.2743,0.1117,-0.9796,0.1671,0.2155,-0.9217,0.3225,0.2155,-0.9217,0.3225,0.1117,-0.9796,0.1671,0.0769,-0.9796,0.1857,0.2155,-0.9217,0.3225,0.0769,-0.9796,0.1857,0.1484,-0.9217,0.3584,0.1484,-0.9217,0.3584,0.0769,-0.9796,0.1857,0.0392,-0.9796,0.1971,0.1484,-0.9217,0.3584,0.0392,-0.9796,0.1971,0.0757,-0.9217,0.3804,0.0757,-0.9217,0.3804,0.0392,-0.9796,0.1971,0.0,-0.9796,0.201,0.0757,-0.9217,0.3804,0.0,-0.9796,0.201,0.0,-0.9217,0.3879,0.0,-1.0,0.0,-0.0392,-0.9796,0.1971,0.0,-0.9796,0.201,0.0,-1.0,0.0,-0.0769,-0.9796,0.1857,-0.0392,-0.9796,0.1971,0.0,-1.0,0.0,-0.1117,-0.9796,0.1671,-0.0769,-0.9796,0.1857,0.0,-1.0,0.0,-0.1421,-0.9796,0.1421,-0.1117,-0.9796,0.1671,0.0,-1.0,0.0,-0.1671,-0.9796,0.1117,-0.1421,-0.9796,0.1421,0.0,-1.0,0.0,-0.1857,-0.9796,0.0769,-0.1671,-0.9796,0.1117,0.0,-1.0,0.0,-0.1971,-0.9796,0.0392,-0.1857,-0.9796,0.0769,0.0,-1.0,0.0,-0.201,-0.9796,0.0,-0.1971,-0.9796,0.0392,0.0,-1.0,0.0,-0.1971,-0.9796,-0.0392,-0.201,-0.9796,0.0,0.0,-1.0,0.0,-0.1857,-0.9796,-0.0769,-0.1971,-0.9796,-0.0392,0.0,-1.0,0.0,-0.1671,-0.9796,-0.1117,-0.1857,-0.9796,-0.0769,0.0,-1.0,0.0,-0.1421,-0.9796,-0.1421,-0.1671,-0.9796,-0.1117,0.0,-1.0,0.0,-0.1117,-0.9796,-0.1671,-0.1421,-0.9796,-0.1421,0.0,-1.0,0.0,-0.0769,-0.9796,-0.1857,-0.1117,-0.9796,-0.1671,0.0,-1.0,0.0,-0.0392,-0.9796,-0.1971,-0.0769,-0.9796,-0.1857,0.0,-1.0,0.0,0.0,-0.9796,-0.201,-0.0392,-0.9796,-0.1971,0.0,-1.0,0.0,0.0392,-0.9796,-0.1971,0.0,-0.9796,-0.201,0.0,-1.0,0.0,0.0769,-0.9796,-0.1857,0.0392,-0.9796,-0.1971,0.0,-1.0,0.0,0.1117,-0.9796,-0.1671,0.0769,-0.9796,-0.1857,0.0,-1.0,0.0,0.1421,-0.9796,-0.1421,0.1117,-0.9796,-0.1671,0.0,-1.0,0.0,0.1671,-0.9796,-0.1117,0.1421,-0.9796,-0.1421,0.0,-1.0,0.0,0.1857,-0.9796,-0.0769,0.1671,-0.9796,-0.1117,0.0,-1.0,0.0,0.1971,-0.9796,-0.0392,0.1857,-0.9796,-0.0769,0.0,-1.0,0.0,0.201,-0.9796,0.0,0.1971,-0.9796,-0.0392,0.0,-1.0,0.0,0.1971,-0.9796,0.0392,0.201,-0.9796,0.0,0.0,-1.0,0.0,0.1857,-0.9796,0.0769,0.1971,-0.9796,0.0392,0.0,-1.0,0.0,0.1671,-0.9796,0.1117,0.1857,-0.9796,0.0769,0.0,-1.0,0.0,0.1421,-0.9796,0.1421,0.1671,-0.9796,0.1117,0.0,-1.0,0.0,0.1117,-0.9796,0.1671,0.1421,-0.9796,0.1421,0.0,-1.0,0.0,0.0769,-0.9796,0.1857,0.1117,-0.9796,0.1671,0.0,-1.0,0.0,0.0392,-0.9796,0.1971,0.0769,-0.9796,0.1857,0.0,-1.0,0.0,0.0,-0.9796,0.201,0.0392,-0.9796,0.1971],"tangents":null,"uvs":[0.0,2.0,0.0,1.9375,0.0312,1.9375,0.0312,2.0,0.0312,1.9375,0.0625,1.9375,0.0625,2.0,0.0625,1.9375,0.0938,1.9375,0.0938,2.0,0.0938,1.9375,0.125,1.9375,0.125,2.0,0.125,1.9375,0.1562,1.9375,0.1562,2.0,0.1562,1.9375,0.1875,1.9375,0.1875,2.0,0.1875,1.9375,0.2187,1.9375,0.2187,2.0,0.2187,1.9375,0.25,1.9375,0.25,2.0,0.25,1.9375,0.2812,1.9375,0.2812,2.0,0.2812,1.9375,0.3125,1.9375,0.3125,2.0,0.3125,1.9375,0.3437,1.9375,0.3437,2.0,0.3437,1.9375,0.375,1.9375,0.375,2.0,0.375,1.9375,0.4062,1.9375,0.4062,2.0,0.4062,1.9375,0.4375,1.9375,0.4375,2.0,0.4375,1.9375,0.4688,1.9375,0.4688,2.0,0.4688,1.9375,0.5,1.9375,0.5,2.0,0.5,1.9375,0.5313,1.9375,0.5313,2.0,0.5313,1.9375,0.5625,1.9375,0.5625,2.0,0.5625,1.9375,0.5938,1.9375,0.5938,2.0,0.5938,1.9375,0.625,1.9375,0.625,2.0,0.625,1.9375,0.6563,1.9375,0.6563,2.0,0.6563,1.9375,0.6875,1.9375,0.6875,2.0,0.6875,1.9375,0.7188,1.9375,0.7188,2.0,0.7188,1.9375,0.75,1.9375,0.75,2.0,0.75,1.9375,0.7813,1.9375,0.7813,2.0,0.7813,1.9375,0.8125,1.9375,0.8125,2.0,0.8125,1.9375,0.8438,1.9375,0.8438,2.0,0.8438,1.9375,0.875,1.9375,0.875,2.0,0.875,1.9375,0.9063,1.9375,0.9063,2.0,0.9063,1.9375,0.9375,1.9375,0.9375,2.0,0.9375,1.9375,0.9688,1.9375,0.9688,2.0,0.9688,1.9375,1.0,1.9375,0.0,1.9375,0.0,1.875,0.0312,1.875,0.0,1.9375,0.0312,1.875,0.0312,1.9375,0.0312,1.9375,0.0312,1.875,0.0625,1.875,0.0312,1.9375,0.0625,1.875,0.0625,1.9375,0.0625,1.9375,0.0625,1.875,0.0938,1.875,0.0625,1.9375,0.0938,1.875,0.0938,1.9375,0.0938,1.9375,0.0938,1.875,0.125,1.875,0.0938,1.9375,0.125,1.875,0.125,1.9375,0.125,1.9375,0.125,1.875,0.1562,1.875,0.125,1.9375,0.1562,1.875,0.1562,1.9375,0.1562,1.9375,0.1562,1.875,0.1875,1.875,0.1562,1.9375,0.1875,1.875,0.1875,1.9375,0.1875,1.9375,0.1875,1.875,0.2187,1.875,0.1875,1.9375,0.2187,1.875,0.2187,1.9375,0.2187,1.9375,0.2187,1.875,0.25,1.875,0.2187,1.9375,0.25,1.875,0.25,1.9375,0.25,1.9375,0.25,1.875,0.2812,1.875,0.25,1.9375,0.2812,1.875,0.2812,1.9375,0.2812,1.9375,0.2812,1.875,0.3125,1.875,0.2812,1.9375,0.3125,1.875,0.3125,1.9375,0.3125,1.9375,0.3125,1.875,0.3437,1.875,0.3125,1.9375,0.3437,1.875,0.3437,1.9375,0.3437,1.9375,0.3437,1.875,0.375,1.875,0.3437,1.9375,0.375,1.875,0.375,1.9375,0.375,1.9375,0.375,1.875,0.4062,1.875,0.375,1.9375,0.4062,1.875,0.4062,1.9375,0.4062,1.9375,0.4062,1.875,0.4375,1.875,0.4062,1.9375,0.4375,1.875,0.4375,1.9375,0.4375,1.9375,0.4375,1.875,0.4688,1.875,0.4375,1.9375,0.4688,1.875,0.4688,1.9375,0.4688,1.9375,0.4688,1.875,0.5,1.875,0.4688,1.9375,0.5,1.875,0.5,1.9375,0.5,1.9375,0.5,1.875,0.5313,1.875,0.5,1.9375,0.5313,1.875,0.5313,1.9375,0.5313,1.9375,0.5313,1.875,0.5625,1.875,0.5313,1.9375,0.5625,1.875,0.5625,1.9375,0.5625,1.9375,0.5625,1.875,0.5938,1.875,0.5625,1.9375,0.5938,1.875,0.5938,1.9375,0.5938,1.9375,0.5938,1.875,0.625,1.875,0.5938,1.9375,0.625,1.875,0.625,1.9375,0.625,1.9375,0.625,1.875,0.6563,1.875,0.625,1.9375,0.6563,1.875,0.6563,1.9375,0.6563,1.9375,0.6563,1.875,0.6875,1.875,0.6563,1.9375,0.6875,1.875,0.6875,1.9375,0.6875,1.9375,0.6875,1.875,0.7188,1.875,0.6875,1.9375,0.7188,1.875,0.7188,1.9375,0.7188,1.9375,0.7188,1.875,0.75,1.875,0.7188,1.9375,0.75,1.875,0.75,1.9375,0.75,1.9375,0.75,1.875,0.7813,1.875,0.75,1.9375,0.7813,1.875,0.7813,1.9375,0.7813,1.9375,0.7813,1.875,0.8125,1.875,0.7813,1.9375,0.8125,1.875,0.8125,1.9375,0.8125,1.9375,0.8125,1.875,0.8438,1.875,0.8125,1.9375,0.8438,1.875,0.8438,1.9375,0.8438,1.9375,0.8438,1.875,0.875,1.875,0.8438,1.9375,0.875,1.875,0.875,1.9375,0.875,1.9375,0.875,1.875,0.9063,1.875,0.875,1.9375,0.9063,1.875,0.9063,1.9375,0.9063,1.9375,0.9063,1.875,0.9375,1.875,0.9063,1.9375,0.9375,1.875,0.9375,1.9375,0.9375,1.9375,0.9375,1.875,0.9688,1.875,0.9375,1.9375,0.9688,1.875,0.9688,1.9375,0.9688,1.9375,0.9688,1.875,1.0,1.875,0.9688,1.9375,1.0,1.875,1.0,1.9375,0.0,1.875,0.0,1.8125,0.0312,1.8125,0.0,1.875,0.0312,1.8125,0.0312,1.875,0.0312,1.875,0.0312,1.8125,0.0625,1.8125,0.0312,1.875,0.0625,1.8125,0.0625,1.875,0.0625,1.875,0.0625,1.8125,0.0938,1.8125,0.0625,1.875,0.0938,1.8125,0.0938,1.875,0.0938,1.875,0.0938,1.8125,0.125,1.8125,0.0938,1.875,0.125,1.8125,0.125,1.875,0.125,1.875,0.125,1.8125,0.1562,1.8125,0.125,1.875,0.1562,1.8125,0.1562,1.875,0.1562,1.875,0.1562,1.8125,0.1875,1.8125,0.1562,1.875,0.1875,1.8125,0.1875,1.875,0.1875,1.875,0.1875,1.8125,0.2187,1.8125,0.1875,1.875,0.2187,1.8125,0.2187,1.875,0.2187,1.875,0.2187,1.8125,0.25,1.8125,0.2187,1.875,0.25,1.8125,0.25,1.875,0.25,1.875,0.25,1.8125,0.2812,1.8125,0.25,1.875,0.2812,1.8125,0.2812,1.875,0.2812,1.875,0.2812,1.8125,0.3125,1.8125,0.2812,1.875,0.3125,1.8125,0.3125,1.875,0.3125,1.875,0.3125,1.8125,0.3437,1.8125,0.3125,1.875,0.3437,1.8125,0.3437,1.875,0.3437,1.875,0.3437,1.8125,0.375,1.8125,0.3437,1.875,0.375,1.8125,0.375,1.875,0.375,1.875,0.375,1.8125,0.4062,1.8125,0.375,1.875,0.4062,1.8125,0.4062,1.875,0.4062,1.875,0.4062,1.8125,0.4375,1.8125,0.4062,1.875,0.4375,1.8125,0.4375,1.875,0.4375,1.875,0.4375,1.8125,0.4688,1.8125,0.4375,1.875,0.4688,1.8125,0.4688,1.875,0.4688,1.875,0.4688,1.8125,0.5,1.8125,0.4688,1.875,0.5,1.8125,0.5,1.875,0.5,1.875,0.5,1.8125,0.5313,1.8125,0.5,1.875,0.5313,1.8125,0.5313,1.875,0.5313,1.875,0.5313,1.8125,0.5625,1.8125,0.5313,1.875,0.5625,1.8125,0.5625,1.875,0.5625,1.875,0.5625,1.8125,0.5938,1.8125,0.5625,1.875,0.5938,1.8125,0.5938,1.875,0.5938,1.875,0.5938,1.8125,0.625,1.8125,0.5938,1.875,0.625,1.8125,0.625,1.875,0.625,1.875,0.625,1.8125,0.6563,1.8125,0.625,1.875,0.6563,1.8125,0.6563,1.875,0.6563,1.875,0.6563,1.8125,0.6875,1.8125,0.6563,1.875,0.6875,1.8125,0.6875,1.875,0.6875,1.875,0.6875,1.8125,0.7188,1.8125,0.6875,1.875,0.7188,1.8125,0.7188,1.875,0.7188,1.875,0.7188,1.8125,0.75,1.8125,0.7188,1.875,0.75,1.8125,0.75,1.875,0.75,1.875,0.75,1.8125,0.7813,1.8125,0.75,1.875,0.7813,1.8125,0.7813,1.875,0.7813,1.875,0.7813,1.8125,0.8125,1.8125,0.7813,1.875,0.8125,1.8125,0.8125,1.875,0.8125,1.875,0.8125,1.8125,0.8438,1.8125,0.8125,1.875,0.8438,1.8125,0.8438,1.875,0.8438,1.875,0.8438,1.8125,0.875,1.8125,0.8438,1.875,0.875,1.8125,0.875,1.875,0.875,1.875,0.875,1.8125,0.9063,1.8125,0.875,1.875,0.9063,1.8125,0.9063,1.875,0.9063,1.875,0.9063,1.8125,0.9375,1.8125,0.9063,1.875,0.9375,1.8125,0.9375,1.875,0.9375,1.875,0.9375,1.8125,0.9688,1.8125,0.9375,1.875,0.9688,1.8125,0.9688,1.875,0.9688,1.875,0.9688,1.8125,1.0,1.8125,0.9688,1.875,1.0,1.8125,1.0,1.875,0.0,1.8125,0.0,1.75,0.0312,1.75,0.0,1.8125,0.0312,1.75,0.0312,1.8125,0.0312,1.8125,0.0312,1.75,0.0625,1.75,0.0312,1.8125,0.0625,1.75,0.0625,1.8125,0.0625,1.8125,0.0625,1.75,0.0938,1.75,0.0625,1.8125,0.0938,1.75,0.0938,1.8125,0.0938,1.8125,0.0938,1.75,0.125,1.75,0.0938,1.8125,0.125,1.75,0.125,1.8125,0.125,1.8125,0.125,1.75,0.1562,1.75,0.125,1.8125,0.1562,1.75,0.1562,1.8125,0.1562,1.8125,0.1562,1.75,0.1875,1.75,0.1562,1.8125,0.1875,1.75,0.1875,1.8125,0.1875,1.8125,0.1875,1.75,0.2187,1.75,0.1875,1.8125,0.2187,1.75,0.2187,1.8125,0.2187,1.8125,0.2187,1.75,0.25,1.75,0.2187,1.8125,0.25,1.75,0.25,1.8125,0.25,1.8125,0.25,1.75,0.2812,1.75,0.25,1.8125,0.2812,1.75,0.2812,1.8125,0.2812,1.8125,0.2812,1.75,0.3125,1.75,0.2812,1.8125,0.3125,1.75,0.3125,1.8125,0.3125,1.8125,0.3125,1.75,0.3437,1.75,0.3125,1.8125,0.3437,1.75,0.3437,1.8125,0.3437,1.8125,0.3437,1.75,0.375,1.75,0.3437,1.8125,0.375,1.75,0.375,1.8125,0.375,1.8125,0.375,1.75,0.4062,1.75,0.375,1.8125,0.4062,1.75,0.4062,1.8125,0.4062,1.8125,0.4062,1.75,0.4375,1.75,0.4062,1.8125,0.4375,1.75,0.4375,1.8125,0.4375,1.8125,0.4375,1.75,0.4688,1.75,0.4375,1.8125,0.4688,1.75,0.4688,1.8125,0.4688,1.8125,0.4688,1.75,0.5,1.75,0.4688,1.8125,0.5,1.75,0.5,1.8125,0.5,1.8125,0.5,1.75,0.5313,1.75,0.5,1.8125,0.5313,1.75,0.5313,1.8125,0.5313,1.8125,0.5313,1.75,0.5625,1.75,0.5313,1.8125,0.5625,1.75,0.5625,1.8125,0.5625,1.8125,0.5625,1.75,0.5938,1.75,0.5625,1.8125,0.5938,1.75,0.5938,1.8125,0.5938,1.8125,0.5938,1.75,0.625,1.75,0.5938,1.8125,0.625,1.75,0.625,1.8125,0.625,1.8125,0.625,1.75,0.6563,1.75,0.625,1.8125,0.6563,1.75,0.6563,1.8125,0.6563,1.8125,0.6563,1.75,0.6875,1.75,0.6563,1.8125,0.6875,1.75,0.6875,1.8125,0.6875,1.8125,0.6875,1.75,0.7188,1.75,0.6875,1.8125,0.7188,1.75,0.7188,1.8125,0.7188,1.8125,0.7188,1.75,0.75,1.75,0.7188,1.8125,0.75,1.75,0.75,1.8125,0.75,1.8125,0.75,1.75,0.7813,1.75,0.75,1.8125,0.7813,1.75,0.7813,1.8125,0.7813,1.8125,0.7813,1.75,0.8125,1.75,0.7813,1.8125,0.8125,1.75,0.8125,1.8125,0.8125,1.8125,0.8125,1.75,0.8438,1.75,0.8125,1.8125,0.8438,1.75,0.8438,1.8125,0.8438,1.8125,0.8438,1.75,0.875,1.75,0.8438,1.8125,0.875,1.75,0.875,1.8125,0.875,1.8125,0.875,1.75,0.9063,1.75,0.875,1.8125,0.9063,1.75,0.9063,1.8125,0.9063,1.8125,0.9063,1.75,0.9375,1.75,0.9063,1.8125,0.9375,1.75,0.9375,1.8125,0.9375,1.8125,0.9375,1.75,0.9688,1.75,0.9375,1.8125,0.9688,1.75,0.9688,1.8125,0.9688,1.8125,0.9688,1.75,1.0,1.75,0.9688,1.8125,1.0,1.75,1.0,1.8125,0.0,1.75,0.0,1.6875,0.0312,1.6875,0.0,1.75,0.0312,1.6875,0.0312,1.75,0.0312,1.75,0.0312,1.6875,0.0625,1.6875,0.0312,1.75,0.0625,1.6875,0.0625,1.75,0.0625,1.75,0.0625,1.6875,0.0938,1.6875,0.0625,1.75,0.0938,1.6875,0.0938,1.75,0.0938,1.75,0.0938,1.6875,0.125,1.6875,0.0938,1.75,0.125,1.6875,0.125,1.75,0.125,1.75,0.125,1.6875,0.1562,1.6875,0.125,1.75,0.1562,1.6875,0.1562,1.75,0.1562,1.75,0.1562,1.6875,0.1875,1.6875,0.1562,1.75,0.1875,1.6875,0.1875,1.75,0.1875,1.75,0.1875,1.6875,0.2187,1.6875,0.1875,1.75,0.2187,1.6875,0.2187,1.75,0.2187,1.75,0.2187,1.6875,0.25,1.6875,0.2187,1.75,0.25,1.6875,0.25,1.75,0.25,1.75,0.25,1.6875,0.2812,1.6875,0.25,1.75,0.2812,1.6875,0.2812,1.75,0.2812,1.75,0.2812,1.6875,0.3125,1.6875,0.2812,1.75,0.3125,1.6875,0.3125,1.75,0.3125,1.75,0.3125,1.6875,0.3437,1.6875,0.3125,1.75,0.3437,1.6875,0.3437,1.75,0.3437,1.75,0.3437,1.6875,0.375,1.6875,0.3437,1.75,0.375,1.6875,0.375,1.75,0.375,1.75,0.375,1.6875,0.4062,1.6875,0.375,1.75,0.4062,1.6875,0.4062,1.75,0.4062,1.75,0.4062,1.6875,0.4375,1.6875,0.4062,1.75,0.4375,1.6875,0.4375,1.75,0.4375,1.75,0.4375,1.6875,0.4688,1.6875,0.4375,1.75,0.4688,1.6875,0.4688,1.75,0.4688,1.75,0.4688,1.6875,0.5,1.6875,0.4688,1.75,0.5,1.6875,0.5,1.75,0.5,1.75,0.5,1.6875,0.5313,1.6875,0.5,1.75,0.5313,1.6875,0.5313,1.75,0.5313,1.75,0.5313,1.6875,0.5625,1.6875,0.5313,1.75,0.5625,1.6875,0.5625,1.75,0.5625,1.75,0.5625,1.6875,0.5938,1.6875,0.5625,1.75,0.5938,1.6875,0.5938,1.75,0.5938,1.75,0.5938,1.6875,0.625,1.6875,0.5938,1.75,0.625,1.6875,0.625,1.75,0.625,1.75,0.625,1.6875,0.6563,1.6875,0.625,1.75,0.6563,1.6875,0.6563,1.75,0.6563,1.75,0.6563,1.6875,0.6875,1.6875,0.6563,1.75,0.6875,1.6875,0.6875,1.75,0.6875,1.75,0.6875,1.6875,0.7188,1.6875,0.6875,1.75,0.7188,1.6875,0.7188,1.75,0.7188,1.75,0.7188,1.6875,0.75,1.6875,0.7188,1.75,0.75,1.6875,0.75,1.75,0.75,1.75,0.75,1.6875,0.7813,1.6875,0.75,1.75,0.7813,1.6875,0.7813,1.75,0.7813,1.75,0.7813,1.6875,0.8125,1.6875,0.7813,1.75,0.8125,1.6875,0.8125,1.75,0.8125,1.75,0.8125,1.6875,0.8438,1.6875,0.8125,1.75,0.8438,1.6875,0.8438,1.75,0.8438,1.75,0.8438,1.6875,0.875,1.6875,0.8438,1.75,0.875,1.6875,0.875,1.75,0.875,1.75,0.875,1.6875,0.9063,1.6875,0.875,1.75,0.9063,1.6875,0.9063,1.75,0.9063,1.75,0.9063,1.6875,0.9375,1.6875,0.9063,1.75,0.9375,1.6875,0.9375,1.75,0.9375,1.75,0.9375,1.6875,0.9688,1.6875,0.9375,1.75,0.9688,1.6875,0.9688,1.75,0.9688,1.75,0.9688,1.6875,1.0,1.6875,0.9688,1.75,1.0,1.6875,1.0,1.75,0.0,1.6875,0.0,1.625,0.0312,1.625,0.0,1.6875,0.0312,1.625,0.0312,1.6875,0.0312,1.6875,0.0312,1.625,0.0625,1.625,0.0312,1.6875,0.0625,1.625,0.0625,1.6875,0.0625,1.6875,0.0625,1.625,0.0938,1.625,0.0625,1.6875,0.0938,1.625,0.0938,1.6875,0.0938,1.6875,0.0938,1.625,0.125,1.625,0.0938,1.6875,0.125,1.625,0.125,1.6875,0.125,1.6875,0.125,1.625,0.1562,1.625,0.125,1.6875,0.1562,1.625,0.1562,1.6875,0.1562,1.6875,0.1562,1.625,0.1875,1.625,0.1562,1.6875,0.1875,1.625,0.1875,1.6875,0.1875,1.6875,0.1875,1.625,0.2187,1.625,0.1875,1.6875,0.2187,1.625,0.2187,1.6875,0.2187,1.6875,0.2187,1.625,0.25,1.625,0.2187,1.6875,0.25,1.625,0.25,1.6875,0.25,1.6875,0.25,1.625,0.2812,1.625,0.25,1.6875,0.2812,1.625,0.2812,1.6875,0.2812,1.6875,0.2812,1.625,0.3125,1.625,0.2812,1.6875,0.3125,1.625,0.3125,1.6875,0.3125,1.6875,0.3125,1.625,0.3437,1.625,0.3125,1.6875,0.3437,1.625,0.3437,1.6875,0.3437,1.6875,0.3437,1.625,0.375,1.625,0.3437,1.6875,0.375,1.625,0.375,1.6875,0.375,1.6875,0.375,1.625,0.4062,1.625,0.375,1.6875,0.4062,1.625,0.4062,1.6875,0.4062,1.6875,0.4062,1.625,0.4375,1.625,0.4062,1.6875,0.4375,1.625,0.4375,1.6875,0.4375,1.6875,0.4375,1.625,0.4688,1.625,0.4375,1.6875,0.4688,1.625,0.4688,1.6875,0.4688,1.6875,0.4688,1.625,0.5,1.625,0.4688,1.6875,0.5,1.625,0.5,1.6875,0.5,1.6875,0.5,1.625,0.5313,1.625,0.5,1.6875,0.5313,1.625,0.5313,1.6875,0.5313,1.6875,0.5313,1.625,0.5625,1.625,0.5313,1.6875,0.5625,1.625,0.5625,1.6875,0.5625,1.6875,0.5625,1.625,0.5938,1.625,0.5625,1.6875,0.5938,1.625,0.5938,1.6875,0.5938,1.6875,0.5938,1.625,0.625,1.625,0.5938,1.6875,0.625,1.625,0.625,1.6875,0.625,1.6875,0.625,1.625,0.6563,1.625,0.625,1.6875,0.6563,1.625,0.6563,1.6875,0.6563,1.6875,0.6563,1.625,0.6875,1.625,0.6563,1.6875,0.6875,1.625,0.6875,1.6875,0.6875,1.6875,0.6875,1.625,0.7188,1.625,0.6875,1.6875,0.7188,1.625,0.7188,1.6875,0.7188,1.6875,0.7188,1.625,0.75,1.625,0.7188,1.6875,0.75,1.625,0.75,1.6875,0.75,1.6875,0.75,1.625,0.7813,1.625,0.75,1.6875,0.7813,1.625,0.7813,1.6875,0.7813,1.6875,0.7813,1.625,0.8125,1.625,0.7813,1.6875,0.8125,1.625,0.8125,1.6875,0.8125,1.6875,0.8125,1.625,0.8438,1.625,0.8125,1.6875,0.8438,1.625,0.8438,1.6875,0.8438,1.6875,0.8438,1.625,0.875,1.625,0.8438,1.6875,0.875,1.625,0.875,1.6875,0.875,1.6875,0.875,1.625,0.9063,1.625,0.875,1.6875,0.9063,1.625,0.9063,1.6875,0.9063,1.6875,0.9063,1.625,0.9375,1.625,0.9063,1.6875,0.9375,1.625,0.9375,1.6875,0.9375,1.6875,0.9375,1.625,0.9688,1.625,0.9375,1.6875,0.9688,1.625,0.9688,1.6875,0.9688,1.6875,0.9688,1.625,1.0,1.625,0.9688,1.6875,1.0,1.625,1.0,1.6875,0.0,1.625,0.0,1.5625,0.0312,1.5625,0.0,1.625,0.0312,1.5625,0.0312,1.625,0.0312,1.625,0.0312,1.5625,0.0625,1.5625,0.0312,1.625,0.0625,1.5625,0.0625,1.625,0.0625,1.625,0.0625,1.5625,0.0938,1.5625,0.0625,1.625,0.0938,1.5625,0.0938,1.625,0.0938,1.625,0.0938,1.5625,0.125,1.5625,0.0938,1.625,0.125,1.5625,0.125,1.625,0.125,1.625,0.125,1.5625,0.1562,1.5625,0.125,1.625,0.1562,1.5625,0.1562,1.625,0.1562,1.625,0.1562,1.5625,0.1875,1.5625,0.1562,1.625,0.1875,1.5625,0.1875,1.625,0.1875,1.625,0.1875,1.5625,0.2187,1.5625,0.1875,1.625,0.2187,1.5625,0.2187,1.625,0.2187,1.625,0.2187,1.5625,0.25,1.5625,0.2187,1.625,0.25,1.5625,0.25,1.625,0.25,1.625,0.25,1.5625,0.2812,1.5625,0.25,1.625,0.2812,1.5625,0.2812,1.625,0.2812,1.625,0.2812,1.5625,0.3125,1.5625,0.2812,1.625,0.3125,1.5625,0.3125,1.625,0.3125,1.625,0.3125,1.5625,0.3437,1.5625,0.3125,1.625,0.3437,1.5625,0.3437,1.625,0.3437,1.625,0.3437,1.5625,0.375,1.5625,0.3437,1.625,0.375,1.5625,0.375,1.625,0.375,1.625,0.375,1.5625,0.4062,1.5625,0.375,1.625,0.4062,1.5625,0.4062,1.625,0.4062,1.625,0.4062,1.5625,0.4375,1.5625,0.4062,1.625,0.4375,1.5625,0.4375,1.625,0.4375,1.625,0.4375,1.5625,0.4688,1.5625,0.4375,1.625,0.4688,1.5625,0.4688,1.625,0.4688,1.625,0.4688,1.5625,0.5,1.5625,0.4688,1.625,0.5,1.5625,0.5,1.625,0.5,1.625,0.5,1.5625,0.5313,1.5625,0.5,1.625,0.5313,1.5625,0.5313,1.625,0.5313,1.625,0.5313,1.5625,0.5625,1.5625,0.5313,1.625,0.5625,1.5625,0.5625,1.625,0.5625,1.625,0.5625,1.5625,0.5938,1.5625,0.5625,1.625,0.5938,1.5625,0.5938,1.625,0.5938,1.625,0.5938,1.5625,0.625,1.5625,0.5938,1.625,0.625,1.5625,0.625,1.625,0.625,1.625,0.625,1.5625,0.6563,1.5625,0.625,1.625,0.6563,1.5625,0.6563,1.625,0.6563,1.625,0.6563,1.5625,0.6875,1.5625,0.6563,1.625,0.6875,1.5625,0.6875,1.625,0.6875,1.625,0.6875,1.5625,0.7188,1.5625,0.6875,1.625,0.7188,1.5625,0.7188,1.625,0.7188,1.625,0.7188,1.5625,0.75,1.5625,0.7188,1.625,0.75,1.5625,0.75,1.625,0.75,1.625,0.75,1.5625,0.7813,1.5625,0.75,1.625,0.7813,1.5625,0.7813,1.625,0.7813,1.625,0.7813,1.5625,0.8125,1.5625,0.7813,1.625,0.8125,1.5625,0.8125,1.625,0.8125,1.625,0.8125,1.5625,0.8438,1.5625,0.8125,1.625,0.8438,1.5625,0.8438,1.625,0.8438,1.625,0.8438,1.5625,0.875,1.5625,0.8438,1.625,0.875,1.5625,0.875,1.625,0.875,1.625,0.875,1.5625,0.9063,1.5625,0.875,1.625,0.9063,1.5625,0.9063,1.625,0.9063,1.625,0.9063,1.5625,0.9375,1.5625,0.9063,1.625,0.9375,1.5625,0.9375,1.625,0.9375,1.625,0.9375,1.5625,0.9688,1.5625,0.9375,1.625,0.9688,1.5625,0.9688,1.625,0.9688,1.625,0.9688,1.5625,1.0,1.5625,0.9688,1.625,1.0,1.5625,1.0,1.625,0.0,1.5625,0.0,1.5,0.0312,1.5,0.0,1.5625,0.0312,1.5,0.0312,1.5625,0.0312,1.5625,0.0312,1.5,0.0625,1.5,0.0312,1.5625,0.0625,1.5,0.0625,1.5625,0.0625,1.5625,0.0625,1.5,0.0938,1.5,0.0625,1.5625,0.0938,1.5,0.0938,1.5625,0.0938,1.5625,0.0938,1.5,0.125,1.5,0.0938,1.5625,0.125,1.5,0.125,1.5625,0.125,1.5625,0.125,1.5,0.1562,1.5,0.125,1.5625,0.1562,1.5,0.1562,1.5625,0.1562,1.5625,0.1562,1.5,0.1875,1.5,0.1562,1.5625,0.1875,1.5,0.1875,1.5625,0.1875,1.5625,0.1875,1.5,0.2187,1.5,0.1875,1.5625,0.2187,1.5,0.2187,1.5625,0.2187,1.5625,0.2187,1.5,0.25,1.5,0.2187,1.5625,0.25,1.5,0.25,1.5625,0.25,1.5625,0.25,1.5,0.2812,1.5,0.25,1.5625,0.2812,1.5,0.2812,1.5625,0.2812,1.5625,0.2812,1.5,0.3125,1.5,0.2812,1.5625,0.3125,1.5,0.3125,1.5625,0.3125,1.5625,0.3125,1.5,0.3437,1.5,0.3125,1.5625,0.3437,1.5,0.3437,1.5625,0.3437,1.5625,0.3437,1.5,0.375,1.5,0.3437,1.5625,0.375,1.5,0.375,1.5625,0.375,1.5625,0.375,1.5,0.4062,1.5,0.375,1.5625,0.4062,1.5,0.4062,1.5625,0.4062,1.5625,0.4062,1.5,0.4375,1.5,0.4062,1.5625,0.4375,1.5,0.4375,1.5625,0.4375,1.5625,0.4375,1.5,0.4688,1.5,0.4375,1.5625,0.4688,1.5,0.4688,1.5625,0.4688,1.5625,0.4688,1.5,0.5,1.5,0.4688,1.5625,0.5,1.5,0.5,1.5625,0.5,1.5625,0.5,1.5,0.5313,1.5,0.5,1.5625,0.5313,1.5,0.5313,1.5625,0.5313,1.5625,0.5313,1.5,0.5625,1.5,0.5313,1.5625,0.5625,1.5,0.5625,1.5625,0.5625,1.5625,0.5625,1.5,0.5938,1.5,0.5625,1.5625,0.5938,1.5,0.5938,1.5625,0.5938,1.5625,0.5938,1.5,0.625,1.5,0.5938,1.5625,0.625,1.5,0.625,1.5625,0.625,1.5625,0.625,1.5,0.6563,1.5,0.625,1.5625,0.6563,1.5,0.6563,1.5625,0.6563,1.5625,0.6563,1.5,0.6875,1.5,0.6563,1.5625,0.6875,1.5,0.6875,1.5625,0.6875,1.5625,0.6875,1.5,0.7188,1.5,0.6875,1.5625,0.7188,1.5,0.7188,1.5625,0.7188,1.5625,0.7188,1.5,0.75,1.5,0.7188,1.5625,0.75,1.5,0.75,1.5625,0.75,1.5625,0.75,1.5,0.7813,1.5,0.75,1.5625,0.7813,1.5,0.7813,1.5625,0.7813,1.5625,0.7813,1.5,0.8125,1.5,0.7813,1.5625,0.8125,1.5,0.8125,1.5625,0.8125,1.5625,0.8125,1.5,0.8438,1.5,0.8125,1.5625,0.8438,1.5,0.8438,1.5625,0.8438,1.5625,0.8438,1.5,0.875,1.5,0.8438,1.5625,0.875,1.5,0.875,1.5625,0.875,1.5625,0.875,1.5,0.9063,1.5,0.875,1.5625,0.9063,1.5,0.9063,1.5625,0.9063,1.5625,0.9063,1.5,0.9375,1.5,0.9063,1.5625,0.9375,1.5,0.9375,1.5625,0.9375,1.5625,0.9375,1.5,0.9688,1.5,0.9375,1.5625,0.9688,1.5,0.9688,1.5625,0.9688,1.5625,0.9688,1.5,1.0,1.5,0.9688,1.5625,1.0,1.5,1.0,1.5625,0.0,1.5,0.0,1.4375,0.0312,1.4375,0.0,1.5,0.0312,1.4375,0.0312,1.5,0.0312,1.5,0.0312,1.4375,0.0625,1.4375,0.0312,1.5,0.0625,1.4375,0.0625,1.5,0.0625,1.5,0.0625,1.4375,0.0938,1.4375,0.0625,1.5,0.0938,1.4375,0.0938,1.5,0.0938,1.5,0.0938,1.4375,0.125,1.4375,0.0938,1.5,0.125,1.4375,0.125,1.5,0.125,1.5,0.125,1.4375,0.1562,1.4375,0.125,1.5,0.1562,1.4375,0.1562,1.5,0.1562,1.5,0.1562,1.4375,0.1875,1.4375,0.1562,1.5,0.1875,1.4375,0.1875,1.5,0.1875,1.5,0.1875,1.4375,0.2187,1.4375,0.1875,1.5,0.2187,1.4375,0.2187,1.5,0.2187,1.5,0.2187,1.4375,0.25,1.4375,0.2187,1.5,0.25,1.4375,0.25,1.5,0.25,1.5,0.25,1.4375,0.2812,1.4375,0.25,1.5,0.2812,1.4375,0.2812,1.5,0.2812,1.5,0.2812,1.4375,0.3125,1.4375,0.2812,1.5,0.3125,1.4375,0.3125,1.5,0.3125,1.5,0.3125,1.4375,0.3437,1.4375,0.3125,1.5,0.3437,1.4375,0.3437,1.5,0.3437,1.5,0.3437,1.4375,0.375,1.4375,0.3437,1.5,0.375,1.4375,0.375,1.5,0.375,1.5,0.375,1.4375,0.4062,1.4375,0.375,1.5,0.4062,1.4375,0.4062,1.5,0.4062,1.5,0.4062,1.4375,0.4375,1.4375,0.4062,1.5,0.4375,1.4375,0.4375,1.5,0.4375,1.5,0.4375,1.4375,0.4688,1.4375,0.4375,1.5,0.4688,1.4375,0.4688,1.5,0.4688,1.5,0.4688,1.4375,0.5,1.4375,0.4688,1.5,0.5,1.4375,0.5,1.5,0.5,1.5,0.5,1.4375,0.5313,1.4375,0.5,1.5,0.5313,1.4375,0.5313,1.5,0.5313,1.5,0.5313,1.4375,0.5625,1.4375,0.5313,1.5,0.5625,1.4375,0.5625,1.5,0.5625,1.5,0.5625,1.4375,0.5938,1.4375,0.5625,1.5,0.5938,1.4375,0.5938,1.5,0.5938,1.5,0.5938,1.4375,0.625,1.4375,0.5938,1.5,0.625,1.4375,0.625,1.5,0.625,1.5,0.625,1.4375,0.6563,1.4375,0.625,1.5,0.6563,1.4375,0.6563,1.5,0.6563,1.5,0.6563,1.4375,0.6875,1.4375,0.6563,1.5,0.6875,1.4375,0.6875,1.5,0.6875,1.5,0.6875,1.4375,0.7188,1.4375,0.6875,1.5,0.7188,1.4375,0.7188,1.5,0.7188,1.5,0.7188,1.4375,0.75,1.4375,0.7188,1.5,0.75,1.4375,0.75,1.5,0.75,1.5,0.75,1.4375,0.7813,1.4375,0.75,1.5,0.7813,1.4375,0.7813,1.5,0.7813,1.5,0.7813,1.4375,0.8125,1.4375,0.7813,1.5,0.8125,1.4375,0.8125,1.5,0.8125,1.5,0.8125,1.4375,0.8438,1.4375,0.8125,1.5,0.8438,1.4375,0.8438,1.5,0.8438,1.5,0.8438,1.4375,0.875,1.4375,0.8438,1.5,0.875,1.4375,0.875,1.5,0.875,1.5,0.875,1.4375,0.9063,1.4375,0.875,1.5,0.9063,1.4375,0.9063,1.5,0.9063,1.5,0.9063,1.4375,0.9375,1.4375,0.9063,1.5,0.9375,1.4375,0.9375,1.5,0.9375,1.5,0.9375,1.4375,0.9688,1.4375,0.9375,1.5,0.9688,1.4375,0.9688,1.5,0.9688,1.5,0.9688,1.4375,1.0,1.4375,0.9688,1.5,1.0,1.4375,1.0,1.5,0.0,1.4375,0.0,1.375,0.0312,1.375,0.0,1.4375,0.0312,1.375,0.0312,1.4375,0.0312,1.4375,0.0312,1.375,0.0625,1.375,0.0312,1.4375,0.0625,1.375,0.0625,1.4375,0.0625,1.4375,0.0625,1.375,0.0938,1.375,0.0625,1.4375,0.0938,1.375,0.0938,1.4375,0.0938,1.4375,0.0938,1.375,0.125,1.375,0.0938,1.4375,0.125,1.375,0.125,1.4375,0.125,1.4375,0.125,1.375,0.1562,1.375,0.125,1.4375,0.1562,1.375,0.1562,1.4375,0.1562,1.4375,0.1562,1.375,0.1875,1.375,0.1562,1.4375,0.1875,1.375,0.1875,1.4375,0.1875,1.4375,0.1875,1.375,0.2187,1.375,0.1875,1.4375,0.2187,1.375,0.2187,1.4375,0.2187,1.4375,0.2187,1.375,0.25,1.375,0.2187,1.4375,0.25,1.375,0.25,1.4375,0.25,1.4375,0.25,1.375,0.2812,1.375,0.25,1.4375,0.2812,1.375,0.2812,1.4375,0.2812,1.4375,0.2812,1.375,0.3125,1.375,0.2812,1.4375,0.3125,1.375,0.3125,1.4375,0.3125,1.4375,0.3125,1.375,0.3437,1.375,0.3125,1.4375,0.3437,1.375,0.3437,1.4375,0.3437,1.4375,0.3437,1.375,0.375,1.375,0.3437,1.4375,0.375,1.375,0.375,1.4375,0.375,1.4375,0.375,1.375,0.4062,1.375,0.375,1.4375,0.4062,1.375,0.4062,1.4375,0.4062,1.4375,0.4062,1.375,0.4375,1.375,0.4062,1.4375,0.4375,1.375,0.4375,1.4375,0.4375,1.4375,0.4375,1.375,0.4688,1.375,0.4375,1.4375,0.4688,1.375,0.4688,1.4375,0.4688,1.4375,0.4688,1.375,0.5,1.375,0.4688,1.4375,0.5,1.375,0.5,1.4375,0.5,1.4375,0.5,1.375,0.5313,1.375,0.5,1.4375,0.5313,1.375,0.5313,1.4375,0.5313,1.4375,0.5313,1.375,0.5625,1.375,0.5313,1.4375,0.5625,1.375,0.5625,1.4375,0.5625,1.4375,0.5625,1.375,0.5938,1.375,0.5625,1.4375,0.5938,1.375,0.5938,1.4375,0.5938,1.4375,0.5938,1.375,0.625,1.375,0.5938,1.4375,0.625,1.375,0.625,1.4375,0.625,1.4375,0.625,1.375,0.6563,1.375,0.625,1.4375,0.6563,1.375,0.6563,1.4375,0.6563,1.4375,0.6563,1.375,0.6875,1.375,0.6563,1.4375,0.6875,1.375,0.6875,1.4375,0.6875,1.4375,0.6875,1.375,0.7188,1.375,0.6875,1.4375,0.7188,1.375,0.7188,1.4375,0.7188,1.4375,0.7188,1.375,0.75,1.375,0.7188,1.4375,0.75,1.375,0.75,1.4375,0.75,1.4375,0.75,1.375,0.7813,1.375,0.75,1.4375,0.7813,1.375,0.7813,1.4375,0.7813,1.4375,0.7813,1.375,0.8125,1.375,0.7813,1.4375,0.8125,1.375,0.8125,1.4375,0.8125,1.4375,0.8125,1.375,0.8438,1.375,0.8125,1.4375,0.8438,1.375,0.8438,1.4375,0.8438,1.4375,0.8438,1.375,0.875,1.375,0.8438,1.4375,0.875,1.375,0.875,1.4375,0.875,1.4375,0.875,1.375,0.9063,1.375,0.875,1.4375,0.9063,1.375,0.9063,1.4375,0.9063,1.4375,0.9063,1.375,0.9375,1.375,0.9063,1.4375,0.9375,1.375,0.9375,1.4375,0.9375,1.4375,0.9375,1.375,0.9688,1.375,0.9375,1.4375,0.9688,1.375,0.9688,1.4375,0.9688,1.4375,0.9688,1.375,1.0,1.375,0.9688,1.4375,1.0,1.375,1.0,1.4375,0.0,1.375,0.0,1.3125,0.0312,1.3125,0.0,1.375,0.0312,1.3125,0.0312,1.375,0.0312,1.375,0.0312,1.3125,0.0625,1.3125,0.0312,1.375,0.0625,1.3125,0.0625,1.375,0.0625,1.375,0.0625,1.3125,0.0938,1.3125,0.0625,1.375,0.0938,1.3125,0.0938,1.375,0.0938,1.375,0.0938,1.3125,0.125,1.3125,0.0938,1.375,0.125,1.3125,0.125,1.375,0.125,1.375,0.125,1.3125,0.1562,1.3125,0.125,1.375,0.1562,1.3125,0.1562,1.375,0.1562,1.375,0.1562,1.3125,0.1875,1.3125,0.1562,1.375,0.1875,1.3125,0.1875,1.375,0.1875,1.375,0.1875,1.3125,0.2187,1.3125,0.1875,1.375,0.2187,1.3125,0.2187,1.375,0.2187,1.375,0.2187,1.3125,0.25,1.3125,0.2187,1.375,0.25,1.3125,0.25,1.375,0.25,1.375,0.25,1.3125,0.2812,1.3125,0.25,1.375,0.2812,1.3125,0.2812,1.375,0.2812,1.375,0.2812,1.3125,0.3125,1.3125,0.2812,1.375,0.3125,1.3125,0.3125,1.375,0.3125,1.375,0.3125,1.3125,0.3437,1.3125,0.3125,1.375,0.3437,1.3125,0.3437,1.375,0.3437,1.375,0.3437,1.3125,0.375,1.3125,0.3437,1.375,0.375,1.3125,0.375,1.375,0.375,1.375,0.375,1.3125,0.4062,1.3125,0.375,1.375,0.4062,1.3125,0.4062,1.375,0.4062,1.375,0.4062,1.3125,0.4375,1.3125,0.4062,1.375,0.4375,1.3125,0.4375,1.375,0.4375,1.375,0.4375,1.3125,0.4688,1.3125,0.4375,1.375,0.4688,1.3125,0.4688,1.375,0.4688,1.375,0.4688,1.3125,0.5,1.3125,0.4688,1.375,0.5,1.3125,0.5,1.375,0.5,1.375,0.5,1.3125,0.5313,1.3125,0.5,1.375,0.5313,1.3125,0.5313,1.375,0.5313,1.375,0.5313,1.3125,0.5625,1.3125,0.5313,1.375,0.5625,1.3125,0.5625,1.375,0.5625,1.375,0.5625,1.3125,0.5938,1.3125,0.5625,1.375,0.5938,1.3125,0.5938,1.375,0.5938,1.375,0.5938,1.3125,0.625,1.3125,0.5938,1.375,0.625,1.3125,0.625,1.375,0.625,1.375,0.625,1.3125,0.6563,1.3125,0.625,1.375,0.6563,1.3125,0.6563,1.375,0.6563,1.375,0.6563,1.3125,0.6875,1.3125,0.6563,1.375,0.6875,1.3125,0.6875,1.375,0.6875,1.375,0.6875,1.3125,0.7188,1.3125,0.6875,1.375,0.7188,1.3125,0.7188,1.375,0.7188,1.375,0.7188,1.3125,0.75,1.3125,0.7188,1.375,0.75,1.3125,0.75,1.375,0.75,1.375,0.75,1.3125,0.7813,1.3125,0.75,1.375,0.7813,1.3125,0.7813,1.375,0.7813,1.375,0.7813,1.3125,0.8125,1.3125,0.7813,1.375,0.8125,1.3125,0.8125,1.375,0.8125,1.375,0.8125,1.3125,0.8438,1.3125,0.8125,1.375,0.8438,1.3125,0.8438,1.375,0.8438,1.375,0.8438,1.3125,0.875,1.3125,0.8438,1.375,0.875,1.3125,0.875,1.375,0.875,1.375,0.875,1.3125,0.9063,1.3125,0.875,1.375,0.9063,1.3125,0.9063,1.375,0.9063,1.375,0.9063,1.3125,0.9375,1.3125,0.9063,1.375,0.9375,1.3125,0.9375,1.375,0.9375,1.375,0.9375,1.3125,0.9688,1.3125,0.9375,1.375,0.9688,1.3125,0.9688,1.375,0.9688,1.375,0.9688,1.3125,1.0,1.3125,0.9688,1.375,1.0,1.3125,1.0,1.375,0.0,1.3125,0.0,1.25,0.0312,1.25,0.0,1.3125,0.0312,1.25,0.0312,1.3125,0.0312,1.3125,0.0312,1.25,0.0625,1.25,0.0312,1.3125,0.0625,1.25,0.0625,1.3125,0.0625,1.3125,0.0625,1.25,0.0938,1.25,0.0625,1.3125,0.0938,1.25,0.0938,1.3125,0.0938,1.3125,0.0938,1.25,0.125,1.25,0.0938,1.3125,0.125,1.25,0.125,1.3125,0.125,1.3125,0.125,1.25,0.1562,1.25,0.125,1.3125,0.1562,1.25,0.1562,1.3125,0.1562,1.3125,0.1562,1.25,0.1875,1.25,0.1562,1.3125,0.1875,1.25,0.1875,1.3125,0.1875,1.3125,0.1875,1.25,0.2187,1.25,0.1875,1.3125,0.2187,1.25,0.2187,1.3125,0.2187,1.3125,0.2187,1.25,0.25,1.25,0.2187,1.3125,0.25,1.25,0.25,1.3125,0.25,1.3125,0.25,1.25,0.2812,1.25,0.25,1.3125,0.2812,1.25,0.2812,1.3125,0.2812,1.3125,0.2812,1.25,0.3125,1.25,0.2812,1.3125,0.3125,1.25,0.3125,1.3125,0.3125,1.3125,0.3125,1.25,0.3437,1.25,0.3125,1.3125,0.3437,1.25,0.3437,1.3125,0.3437,1.3125,0.3437,1.25,0.375,1.25,0.3437,1.3125,0.375,1.25,0.375,1.3125,0.375,1.3125,0.375,1.25,0.4062,1.25,0.375,1.3125,0.4062,1.25,0.4062,1.3125,0.4062,1.3125,0.4062,1.25,0.4375,1.25,0.4062,1.3125,0.4375,1.25,0.4375,1.3125,0.4375,1.3125,0.4375,1.25,0.4688,1.25,0.4375,1.3125,0.4688,1.25,0.4688,1.3125,0.4688,1.3125,0.4688,1.25,0.5,1.25,0.4688,1.3125,0.5,1.25,0.5,1.3125,0.5,1.3125,0.5,1.25,0.5313,1.25,0.5,1.3125,0.5313,1.25,0.5313,1.3125,0.5313,1.3125,0.5313,1.25,0.5625,1.25,0.5313,1.3125,0.5625,1.25,0.5625,1.3125,0.5625,1.3125,0.5625,1.25,0.5938,1.25,0.5625,1.3125,0.5938,1.25,0.5938,1.3125,0.5938,1.3125,0.5938,1.25,0.625,1.25,0.5938,1.3125,0.625,1.25,0.625,1.3125,0.625,1.3125,0.625,1.25,0.6563,1.25,0.625,1.3125,0.6563,1.25,0.6563,1.3125,0.6563,1.3125,0.6563,1.25,0.6875,1.25,0.6563,1.3125,0.6875,1.25,0.6875,1.3125,0.6875,1.3125,0.6875,1.25,0.7188,1.25,0.6875,1.3125,0.7188,1.25,0.7188,1.3125,0.7188,1.3125,0.7188,1.25,0.75,1.25,0.7188,1.3125,0.75,1.25,0.75,1.3125,0.75,1.3125,0.75,1.25,0.7813,1.25,0.75,1.3125,0.7813,1.25,0.7813,1.3125,0.7813,1.3125,0.7813,1.25,0.8125,1.25,0.7813,1.3125,0.8125,1.25,0.8125,1.3125,0.8125,1.3125,0.8125,1.25,0.8438,1.25,0.8125,1.3125,0.8438,1.25,0.8438,1.3125,0.8438,1.3125,0.8438,1.25,0.875,1.25,0.8438,1.3125,0.875,1.25,0.875,1.3125,0.875,1.3125,0.875,1.25,0.9063,1.25,0.875,1.3125,0.9063,1.25,0.9063,1.3125,0.9063,1.3125,0.9063,1.25,0.9375,1.25,0.9063,1.3125,0.9375,1.25,0.9375,1.3125,0.9375,1.3125,0.9375,1.25,0.9688,1.25,0.9375,1.3125,0.9688,1.25,0.9688,1.3125,0.9688,1.3125,0.9688,1.25,1.0,1.25,0.9688,1.3125,1.0,1.25,1.0,1.3125,0.0,1.25,0.0,1.1875,0.0312,1.1875,0.0,1.25,0.0312,1.1875,0.0312,1.25,0.0312,1.25,0.0312,1.1875,0.0625,1.1875,0.0312,1.25,0.0625,1.1875,0.0625,1.25,0.0625,1.25,0.0625,1.1875,0.0938,1.1875,0.0625,1.25,0.0938,1.1875,0.0938,1.25,0.0938,1.25,0.0938,1.1875,0.125,1.1875,0.0938,1.25,0.125,1.1875,0.125,1.25,0.125,1.25,0.125,1.1875,0.1562,1.1875,0.125,1.25,0.1562,1.1875,0.1562,1.25,0.1562,1.25,0.1562,1.1875,0.1875,1.1875,0.1562,1.25,0.1875,1.1875,0.1875,1.25,0.1875,1.25,0.1875,1.1875,0.2187,1.1875,0.1875,1.25,0.2187,1.1875,0.2187,1.25,0.2187,1.25,0.2187,1.1875,0.25,1.1875,0.2187,1.25,0.25,1.1875,0.25,1.25,0.25,1.25,0.25,1.1875,0.2812,1.1875,0.25,1.25,0.2812,1.1875,0.2812,1.25,0.2812,1.25,0.2812,1.1875,0.3125,1.1875,0.2812,1.25,0.3125,1.1875,0.3125,1.25,0.3125,1.25,0.3125,1.1875,0.3437,1.1875,0.3125,1.25,0.3437,1.1875,0.3437,1.25,0.3437,1.25,0.3437,1.1875,0.375,1.1875,0.3437,1.25,0.375,1.1875,0.375,1.25,0.375,1.25,0.375,1.1875,0.4062,1.1875,0.375,1.25,0.4062,1.1875,0.4062,1.25,0.4062,1.25,0.4062,1.1875,0.4375,1.1875,0.4062,1.25,0.4375,1.1875,0.4375,1.25,0.4375,1.25,0.4375,1.1875,0.4688,1.1875,0.4375,1.25,0.4688,1.1875,0.4688,1.25,0.4688,1.25,0.4688,1.1875,0.5,1.1875,0.4688,1.25,0.5,1.1875,0.5,1.25,0.5,1.25,0.5,1.1875,0.5313,1.1875,0.5,1.25,0.5313,1.1875,0.5313,1.25,0.5313,1.25,0.5313,1.1875,0.5625,1.1875,0.5313,1.25,0.5625,1.1875,0.5625,1.25,0.5625,1.25,0.5625,1.1875,0.5938,1.1875,0.5625,1.25,0.5938,1.1875,0.5938,1.25,0.5938,1.25,0.5938,1.1875,0.625,1.1875,0.5938,1.25,0.625,1.1875,0.625,1.25,0.625,1.25,0.625,1.1875,0.6563,1.1875,0.625,1.25,0.6563,1.1875,0.6563,1.25,0.6563,1.25,0.6563,1.1875,0.6875,1.1875,0.6563,1.25,0.6875,1.1875,0.6875,1.25,0.6875,1.25,0.6875,1.1875,0.7188,1.1875,0.6875,1.25,0.7188,1.1875,0.7188,1.25,0.7188,1.25,0.7188,1.1875,0.75,1.1875,0.7188,1.25,0.75,1.1875,0.75,1.25,0.75,1.25,0.75,1.1875,0.7813,1.1875,0.75,1.25,0.7813,1.1875,0.7813,1.25,0.7813,1.25,0.7813,1.1875,0.8125,1.1875,0.7813,1.25,0.8125,1.1875,0.8125,1.25,0.8125,1.25,0.8125,1.1875,0.8438,1.1875,0.8125,1.25,0.8438,1.1875,0.8438,1.25,0.8438,1.25,0.8438,1.1875,0.875,1.1875,0.8438,1.25,0.875,1.1875,0.875,1.25,0.875,1.25,0.875,1.1875,0.9063,1.1875,0.875,1.25,0.9063,1.1875,0.9063,1.25,0.9063,1.25,0.9063,1.1875,0.9375,1.1875,0.9063,1.25,0.9375,1.1875,0.9375,1.25,0.9375,1.25,0.9375,1.1875,0.9688,1.1875,0.9375,1.25,0.9688,1.1875,0.9688,1.25,0.9688,1.25,0.9688,1.1875,1.0,1.1875,0.9688,1.25,1.0,1.1875,1.0,1.25,0.0,1.1875,0.0,1.125,0.0312,1.125,0.0,1.1875,0.0312,1.125,0.0312,1.1875,0.0312,1.1875,0.0312,1.125,0.0625,1.125,0.0312,1.1875,0.0625,1.125,0.0625,1.1875,0.0625,1.1875,0.0625,1.125,0.0938,1.125,0.0625,1.1875,0.0938,1.125,0.0938,1.1875,0.0938,1.1875,0.0938,1.125,0.125,1.125,0.0938,1.1875,0.125,1.125,0.125,1.1875,0.125,1.1875,0.125,1.125,0.1562,1.125,0.125,1.1875,0.1562,1.125,0.1562,1.1875,0.1562,1.1875,0.1562,1.125,0.1875,1.125,0.1562,1.1875,0.1875,1.125,0.1875,1.1875,0.1875,1.1875,0.1875,1.125,0.2187,1.125,0.1875,1.1875,0.2187,1.125,0.2187,1.1875,0.2187,1.1875,0.2187,1.125,0.25,1.125,0.2187,1.1875,0.25,1.125,0.25,1.1875,0.25,1.1875,0.25,1.125,0.2812,1.125,0.25,1.1875,0.2812,1.125,0.2812,1.1875,0.2812,1.1875,0.2812,1.125,0.3125,1.125,0.2812,1.1875,0.3125,1.125,0.3125,1.1875,0.3125,1.1875,0.3125,1.125,0.3437,1.125,0.3125,1.1875,0.3437,1.125,0.3437,1.1875,0.3437,1.1875,0.3437,1.125,0.375,1.125,0.3437,1.1875,0.375,1.125,0.375,1.1875,0.375,1.1875,0.375,1.125,0.4062,1.125,0.375,1.1875,0.4062,1.125,0.4062,1.1875,0.4062,1.1875,0.4062,1.125,0.4375,1.125,0.4062,1.1875,0.4375,1.125,0.4375,1.1875,0.4375,1.1875,0.4375,1.125,0.4688,1.125,0.4375,1.1875,0.4688,1.125,0.4688,1.1875,0.4688,1.1875,0.4688,1.125,0.5,1.125,0.4688,1.1875,0.5,1.125,0.5,1.1875,0.5,1.1875,0.5,1.125,0.5313,1.125,0.5,1.1875,0.5313,1.125,0.5313,1.1875,0.5313,1.1875,0.5313,1.125,0.5625,1.125,0.5313,1.1875,0.5625,1.125,0.5625,1.1875,0.5625,1.1875,0.5625,1.125,0.5938,1.125,0.5625,1.1875,0.5938,1.125,0.5938,1.1875,0.5938,1.1875,0.5938,1.125,0.625,1.125,0.5938,1.1875,0.625,1.125,0.625,1.1875,0.625,1.1875,0.625,1.125,0.6563,1.125,0.625,1.1875,0.6563,1.125,0.6563,1.1875,0.6563,1.1875,0.6563,1.125,0.6875,1.125,0.6563,1.1875,0.6875,1.125,0.6875,1.1875,0.6875,1.1875,0.6875,1.125,0.7188,1.125,0.6875,1.1875,0.7188,1.125,0.7188,1.1875,0.7188,1.1875,0.7188,1.125,0.75,1.125,0.7188,1.1875,0.75,1.125,0.75,1.1875,0.75,1.1875,0.75,1.125,0.7813,1.125,0.75,1.1875,0.7813,1.125,0.7813,1.1875,0.7813,1.1875,0.7813,1.125,0.8125,1.125,0.7813,1.1875,0.8125,1.125,0.8125,1.1875,0.8125,1.1875,0.8125,1.125,0.8438,1.125,0.8125,1.1875,0.8438,1.125,0.8438,1.1875,0.8438,1.1875,0.8438,1.125,0.875,1.125,0.8438,1.1875,0.875,1.125,0.875,1.1875,0.875,1.1875,0.875,1.125,0.9063,1.125,0.875,1.1875,0.9063,1.125,0.9063,1.1875,0.9063,1.1875,0.9063,1.125,0.9375,1.125,0.9063,1.1875,0.9375,1.125,0.9375,1.1875,0.9375,1.1875,0.9375,1.125,0.9688,1.125,0.9375,1.1875,0.9688,1.125,0.9688,1.1875,0.9688,1.1875,0.9688,1.125,1.0,1.125,0.9688,1.1875,1.0,1.125,1.0,1.1875,0.0,1.125,0.0,1.0625,0.0312,1.0625,0.0,1.125,0.0312,1.0625,0.0312,1.125,0.0312,1.125,0.0312,1.0625,0.0625,1.0625,0.0312,1.125,0.0625,1.0625,0.0625,1.125,0.0625,1.125,0.0625,1.0625,0.0938,1.0625,0.0625,1.125,0.0938,1.0625,0.0938,1.125,0.0938,1.125,0.0938,1.0625,0.125,1.0625,0.0938,1.125,0.125,1.0625,0.125,1.125,0.125,1.125,0.125,1.0625,0.1562,1.0625,0.125,1.125,0.1562,1.0625,0.1562,1.125,0.1562,1.125,0.1562,1.0625,0.1875,1.0625,0.1562,1.125,0.1875,1.0625,0.1875,1.125,0.1875,1.125,0.1875,1.0625,0.2187,1.0625,0.1875,1.125,0.2187,1.0625,0.2187,1.125,0.2187,1.125,0.2187,1.0625,0.25,1.0625,0.2187,1.125,0.25,1.0625,0.25,1.125,0.25,1.125,0.25,1.0625,0.2812,1.0625,0.25,1.125,0.2812,1.0625,0.2812,1.125,0.2812,1.125,0.2812,1.0625,0.3125,1.0625,0.2812,1.125,0.3125,1.0625,0.3125,1.125,0.3125,1.125,0.3125,1.0625,0.3437,1.0625,0.3125,1.125,0.3437,1.0625,0.3437,1.125,0.3437,1.125,0.3437,1.0625,0.375,1.0625,0.3437,1.125,0.375,1.0625,0.375,1.125,0.375,1.125,0.375,1.0625,0.4062,1.0625,0.375,1.125,0.4062,1.0625,0.4062,1.125,0.4062,1.125,0.4062,1.0625,0.4375,1.0625,0.4062,1.125,0.4375,1.0625,0.4375,1.125,0.4375,1.125,0.4375,1.0625,0.4688,1.0625,0.4375,1.125,0.4688,1.0625,0.4688,1.125,0.4688,1.125,0.4688,1.0625,0.5,1.0625,0.4688,1.125,0.5,1.0625,0.5,1.125,0.5,1.125,0.5,1.0625,0.5313,1.0625,0.5,1.125,0.5313,1.0625,0.5313,1.125,0.5313,1.125,0.5313,1.0625,0.5625,1.0625,0.5313,1.125,0.5625,1.0625,0.5625,1.125,0.5625,1.125,0.5625,1.0625,0.5938,1.0625,0.5625,1.125,0.5938,1.0625,0.5938,1.125,0.5938,1.125,0.5938,1.0625,0.625,1.0625,0.5938,1.125,0.625,1.0625,0.625,1.125,0.625,1.125,0.625,1.0625,0.6563,1.0625,0.625,1.125,0.6563,1.0625,0.6563,1.125,0.6563,1.125,0.6563,1.0625,0.6875,1.0625,0.6563,1.125,0.6875,1.0625,0.6875,1.125,0.6875,1.125,0.6875,1.0625,0.7188,1.0625,0.6875,1.125,0.7188,1.0625,0.7188,1.125,0.7188,1.125,0.7188,1.0625,0.75,1.0625,0.7188,1.125,0.75,1.0625,0.75,1.125,0.75,1.125,0.75,1.0625,0.7813,1.0625,0.75,1.125,0.7813,1.0625,0.7813,1.125,0.7813,1.125,0.7813,1.0625,0.8125,1.0625,0.7813,1.125,0.8125,1.0625,0.8125,1.125,0.8125,1.125,0.8125,1.0625,0.8438,1.0625,0.8125,1.125,0.8438,1.0625,0.8438,1.125,0.8438,1.125,0.8438,1.0625,0.875,1.0625,0.8438,1.125,0.875,1.0625,0.875,1.125,0.875,1.125,0.875,1.0625,0.9063,1.0625,0.875,1.125,0.9063,1.0625,0.9063,1.125,0.9063,1.125,0.9063,1.0625,0.9375,1.0625,0.9063,1.125,0.9375,1.0625,0.9375,1.125,0.9375,1.125,0.9375,1.0625,0.9688,1.0625,0.9375,1.125,0.9688,1.0625,0.9688,1.125,0.9688,1.125,0.9688,1.0625,1.0,1.0625,0.9688,1.125,1.0,1.0625,1.0,1.125,0.0,1.0,0.0312,1.0625,0.0,1.0625,0.0312,1.0,0.0625,1.0625,0.0312,1.0625,0.0625,1.0,0.0938,1.0625,0.0625,1.0625,0.0938,1.0,0.125,1.0625,0.0938,1.0625,0.125,1.0,0.1562,1.0625,0.125,1.0625,0.1562,1.0,0.1875,1.0625,0.1562,1.0625,0.1875,1.0,0.2187,1.0625,0.1875,1.0625,0.2187,1.0,0.25,1.0625,0.2187,1.0625,0.25,1.0,0.2812,1.0625,0.25,1.0625,0.2812,1.0,0.3125,1.0625,0.2812,1.0625,0.3125,1.0,0.3437,1.0625,0.3125,1.0625,0.3437,1.0,0.375,1.0625,0.3437,1.0625,0.375,1.0,0.4062,1.0625,0.375,1.0625,0.4062,1.0,0.4375,1.0625,0.4062,1.0625,0.4375,1.0,0.4688,1.0625,0.4375,1.0625,0.4688,1.0,0.5,1.0625,0.4688,1.0625,0.5,1.0,0.5313,1.0625,0.5,1.0625,0.5313,1.0,0.5625,1.0625,0.5313,1.0625,0.5625,1.0,0.5938,1.0625,0.5625,1.0625,0.5938,1.0,0.625,1.0625,0.5938,1.0625,0.625,1.0,0.6563,1.0625,0.625,1.0625,0.6563,1.0,0.6875,1.0625,0.6563,1.0625,0.6875,1.0,0.7188,1.0625,0.6875,1.0625,0.7188,1.0,0.75,1.0625,0.7188,1.0625,0.75,1.0,0.7813,1.0625,0.75,1.0625,0.7813,1.0,0.8125,1.0625,0.7813,1.0625,0.8125,1.0,0.8438,1.0625,0.8125,1.0625,0.8438,1.0,0.875,1.0625,0.8438,1.0625,0.875,1.0,0.9063,1.0625,0.875,1.0625,0.9063,1.0,0.9375,1.0625,0.9063,1.0625,0.9375,1.0,0.9688,1.0625,0.9375,1.0625,0.9688,1.0,1.0,1.0625,0.9688,1.0625],"uvs2":null,"colors":null,"hasVertexAlpha":false,"matricesIndices":null,"matricesWeights":null,"matricesIndicesExtra":null,"matricesWeightsExtra":null,"indices":[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,1984,1985,1986,1987,1988,1989,1990,1991,1992,1993,1994,1995,1996,1997,1998,1999,2000,2001,2002,2003,2004,2005,2006,2007,2008,2009,2010,2011,2012,2013,2014,2015,2016,2017,2018,2019,2020,2021,2022,2023,2024,2025,2026,2027,2028,2029,2030,2031,2032,2033,2034,2035,2036,2037,2038,2039,2040,2041,2042,2043,2044,2045,2046,2047,2048,2049,2050,2051,2052,2053,2054,2055,2056,2057,2058,2059,2060,2061,2062,2063,2064,2065,2066,2067,2068,2069,2070,2071,2072,2073,2074,2075,2076,2077,2078,2079,2080,2081,2082,2083,2084,2085,2086,2087,2088,2089,2090,2091,2092,2093,2094,2095,2096,2097,2098,2099,2100,2101,2102,2103,2104,2105,2106,2107,2108,2109,2110,2111,2112,2113,2114,2115,2116,2117,2118,2119,2120,2121,2122,2123,2124,2125,2126,2127,2128,2129,2130,2131,2132,2133,2134,2135,2136,2137,2138,2139,2140,2141,2142,2143,2144,2145,2146,2147,2148,2149,2150,2151,2152,2153,2154,2155,2156,2157,2158,2159,2160,2161,2162,2163,2164,2165,2166,2167,2168,2169,2170,2171,2172,2173,2174,2175,2176,2177,2178,2179,2180,2181,2182,2183,2184,2185,2186,2187,2188,2189,2190,2191,2192,2193,2194,2195,2196,2197,2198,2199,2200,2201,2202,2203,2204,2205,2206,2207,2208,2209,2210,2211,2212,2213,2214,2215,2216,2217,2218,2219,2220,2221,2222,2223,2224,2225,2226,2227,2228,2229,2230,2231,2232,2233,2234,2235,2236,2237,2238,2239,2240,2241,2242,2243,2244,2245,2246,2247,2248,2249,2250,2251,2252,2253,2254,2255,2256,2257,2258,2259,2260,2261,2262,2263,2264,2265,2266,2267,2268,2269,2270,2271,2272,2273,2274,2275,2276,2277,2278,2279,2280,2281,2282,2283,2284,2285,2286,2287,2288,2289,2290,2291,2292,2293,2294,2295,2296,2297,2298,2299,2300,2301,2302,2303,2304,2305,2306,2307,2308,2309,2310,2311,2312,2313,2314,2315,2316,2317,2318,2319,2320,2321,2322,2323,2324,2325,2326,2327,2328,2329,2330,2331,2332,2333,2334,2335,2336,2337,2338,2339,2340,2341,2342,2343,2344,2345,2346,2347,2348,2349,2350,2351,2352,2353,2354,2355,2356,2357,2358,2359,2360,2361,2362,2363,2364,2365,2366,2367,2368,2369,2370,2371,2372,2373,2374,2375,2376,2377,2378,2379,2380,2381,2382,2383,2384,2385,2386,2387,2388,2389,2390,2391,2392,2393,2394,2395,2396,2397,2398,2399,2400,2401,2402,2403,2404,2405,2406,2407,2408,2409,2410,2411,2412,2413,2414,2415,2416,2417,2418,2419,2420,2421,2422,2423,2424,2425,2426,2427,2428,2429,2430,2431,2432,2433,2434,2435,2436,2437,2438,2439,2440,2441,2442,2443,2444,2445,2446,2447,2448,2449,2450,2451,2452,2453,2454,2455,2456,2457,2458,2459,2460,2461,2462,2463,2464,2465,2466,2467,2468,2469,2470,2471,2472,2473,2474,2475,2476,2477,2478,2479,2480,2481,2482,2483,2484,2485,2486,2487,2488,2489,2490,2491,2492,2493,2494,2495,2496,2497,2498,2499,2500,2501,2502,2503,2504,2505,2506,2507,2508,2509,2510,2511,2512,2513,2514,2515,2516,2517,2518,2519,2520,2521,2522,2523,2524,2525,2526,2527,2528,2529,2530,2531,2532,2533,2534,2535,2536,2537,2538,2539,2540,2541,2542,2543,2544,2545,2546,2547,2548,2549,2550,2551,2552,2553,2554,2555,2556,2557,2558,2559,2560,2561,2562,2563,2564,2565,2566,2567,2568,2569,2570,2571,2572,2573,2574,2575,2576,2577,2578,2579,2580,2581,2582,2583,2584,2585,2586,2587,2588,2589,2590,2591,2592,2593,2594,2595,2596,2597,2598,2599,2600,2601,2602,2603,2604,2605,2606,2607,2608,2609,2610,2611,2612,2613,2614,2615,2616,2617,2618,2619,2620,2621,2622,2623,2624,2625,2626,2627,2628,2629,2630,2631,2632,2633,2634,2635,2636,2637,2638,2639,2640,2641,2642,2643,2644,2645,2646,2647,2648,2649,2650,2651,2652,2653,2654,2655,2656,2657,2658,2659,2660,2661,2662,2663,2664,2665,2666,2667,2668,2669,2670,2671,2672,2673,2674,2675,2676,2677,2678,2679,2680,2681,2682,2683,2684,2685,2686,2687,2688,2689,2690,2691,2692,2693,2694,2695,2696,2697,2698,2699,2700,2701,2702,2703,2704,2705,2706,2707,2708,2709,2710,2711,2712,2713,2714,2715,2716,2717,2718,2719,2720,2721,2722,2723,2724,2725,2726,2727,2728,2729,2730,2731,2732,2733,2734,2735,2736,2737,2738,2739,2740,2741,2742,2743,2744,2745,2746,2747,2748,2749,2750,2751,2752,2753,2754,2755,2756,2757,2758,2759,2760,2761,2762,2763,2764,2765,2766,2767,2768,2769,2770,2771,2772,2773,2774,2775,2776,2777,2778,2779,2780,2781,2782,2783,2784,2785,2786,2787,2788,2789,2790,2791,2792,2793,2794,2795,2796,2797,2798,2799,2800,2801,2802,2803,2804,2805,2806,2807,2808,2809,2810,2811,2812,2813,2814,2815,2816,2817,2818,2819,2820,2821,2822,2823,2824,2825,2826,2827,2828,2829,2830,2831,2832,2833,2834,2835,2836,2837,2838,2839,2840,2841,2842,2843,2844,2845,2846,2847,2848,2849,2850,2851,2852,2853,2854,2855,2856,2857,2858,2859,2860,2861,2862,2863,2864,2865,2866,2867,2868,2869,2870,2871,2872,2873,2874,2875,2876,2877,2878,2879],"receiveShadows":true,"infiniteDistance":false,"billboardMode":0,"visibility":1.0,"subMeshes":[{"materialIndex":0,"verticesStart":0,"verticesCount":2880,"indexStart":0,"indexCount":2880}],"instances":null,"skeletonId":-1,"numBoneInfluencers":4,"applyFog":true,"lodMeshIds":null,"lodDistances":null,"lodCoverages":null,"rotation":null,"scaling":[1.0,1.0,1.0],"rotationQuaternion":[0.0,0.7071,0.0,0.7071],"actions":null,"checkCollisions":false,"pickable":false,"showBoundingBox":false,"showSubMeshesBoundingBox":false,"alphaIndex":1000,"physicsImpostor":0,"physicsMass":0.0,"physicsFriction":0.0,"physicsRestitution":0.0,"name":"StandardSurfaceMesh","id":"57bbf667-4bf9-4453-8787-dd1f8673b543","parentId":null,"position":[6.0,0.0,0.0],"animations":[],"autoAnimate":true,"autoAnimateFrom":0,"autoAnimateTo":100,"autoAnimateLoop":true,"metadata":null}],"sounds":[],"materials":[{"customType":"BABYLON.StandardMaterial","ambient":[1.0,0.0,0.0],"diffuse":[1.0,0.0,0.0],"specular":[0.0,0.0,0.0],"emissive":[0.0,0.0,0.0],"specularPower":25.6,"diffuseTexture":null,"diffuseFresnelParameters":null,"ambientTexture":null,"opacityTexture":{"name":"gradation_horizontal.jpg","level":1.0,"hasAlpha":true,"getAlphaFromRGB":true,"coordinatesMode":0,"isCube":false,"uOffset":0.0,"vOffset":0.0,"uScale":1.0,"vScale":-1.0,"uRotationCenter":0.0,"vRotationCenter":0.0,"wRotationCenter":0.5,"invertY":false,"uAng":0.0,"vAng":0.0,"wAng":0.0,"wrapU":1,"wrapV":1,"coordinatesIndex":0,"isRenderTarget":false,"renderTargetSize":0,"mirrorPlane":null,"renderList":null,"animations":[],"extensions":null,"samplingMode":3},"opacityFresnelParameters":null,"reflectionTexture":null,"reflectionFresnelParameters":null,"emissiveTexture":null,"lightmapTexture":null,"useLightmapAsShadowmap":false,"emissiveFresnelParameters":null,"specularTexture":null,"bumpTexture":null,"useSpecularOverAlpha":true,"disableLighting":false,"useEmissiveAsIllumination":false,"linkEmissiveWithDiffuse":true,"twoSidedLighting":false,"useGlossinessFromSpecularMapAlpha":false,"name":"StandardMaterialBlend","id":"814decf0-a4ea-454e-a404-277528478ef5","backFaceCulling":true,"wireframe":false,"alpha":1.0,"alphaMode":2,"maxSimultaneousLights":4,"metadata":{}},{"customType":"BABYLON.PBRMetallicRoughnessMaterial","baseColor":[0.0,1.0,0.0],"baseTexture":{"name":"02550.png","level":1.0,"hasAlpha":true,"getAlphaFromRGB":false,"coordinatesMode":0,"isCube":false,"uOffset":0.0,"vOffset":0.0,"uScale":1.0,"vScale":-1.0,"uRotationCenter":0.0,"vRotationCenter":0.0,"wRotationCenter":0.5,"invertY":false,"uAng":0.0,"vAng":0.0,"wAng":0.0,"wrapU":1,"wrapV":1,"coordinatesIndex":0,"isRenderTarget":false,"renderTargetSize":0,"mirrorPlane":null,"renderList":null,"animations":null,"extensions":null,"samplingMode":3},"metallic":0.0,"roughness":0.0,"metallicRoughnessTexture":null,"disableLighting":false,"invertNormalMapX":false,"invertNormalMapY":false,"normalTexture":null,"emissive":[0.0,0.0,0.0],"emissiveTexture":null,"occlusionStrength":1.0,"occlusionTexture":null,"transparencyMode":2,"doubleSided":false,"clearCoat":{"isEnabled":false,"intensity":1.0,"roughness":0.0,"indexOfRefraction":1.5,"texture":null,"bumpTexture":null,"isTintEnabled":false,"tintColor":[1.0,1.0,1.0],"tintThickness":1.0,"tintTexture":null},"name":"PhysicalMaterialBlend","id":"e8d366dc-9a25-4d46-80f2-60a95ec88505","backFaceCulling":true,"wireframe":false,"alpha":1.0,"alphaMode":2,"maxSimultaneousLights":4,"metadata":{}},{"customType":"BABYLON.PBRMetallicRoughnessMaterial","baseColor":[1.0,1.0,1.0],"baseTexture":{"name":"00204.png","level":1.0,"hasAlpha":true,"getAlphaFromRGB":false,"coordinatesMode":0,"isCube":false,"uOffset":0.0,"vOffset":0.0,"uScale":1.0,"vScale":-1.0,"uRotationCenter":0.0,"vRotationCenter":0.0,"wRotationCenter":0.5,"invertY":false,"uAng":0.0,"vAng":0.0,"wAng":0.0,"wrapU":1,"wrapV":1,"coordinatesIndex":0,"isRenderTarget":false,"renderTargetSize":0,"mirrorPlane":null,"renderList":null,"animations":null,"extensions":null,"samplingMode":3},"metallic":0.0,"roughness":0.2,"metallicRoughnessTexture":null,"disableLighting":false,"invertNormalMapX":false,"invertNormalMapY":false,"normalTexture":null,"emissive":[0.0,0.0,0.0],"emissiveTexture":null,"occlusionStrength":1.0,"occlusionTexture":null,"transparencyMode":2,"doubleSided":false,"clearCoat":{"isEnabled":false,"intensity":1.0,"roughness":0.0,"indexOfRefraction":1.5,"texture":null,"bumpTexture":null,"isTintEnabled":false,"tintColor":[1.0,1.0,1.0],"tintThickness":1.0,"tintTexture":null},"name":"StandardSurfaceMaterialBlend","id":"21006084-7a66-4fb3-9835-48193f2ce19a","backFaceCulling":true,"wireframe":false,"alpha":1.0,"alphaMode":2,"maxSimultaneousLights":4,"metadata":{}}],"multiMaterials":[],"particleSystems":null,"lensFlareSystems":null,"shadowGenerators":[],"skeletons":[],"actions":null,"metadata":null,"workerCollisions":false}
\ No newline at end of file
diff --git a/3ds Max/Samples/babylon/BabylonMaterialAttributes/TransparencyMode/Blend/Blend.binary.babylon b/3ds Max/Samples/babylon/BabylonMaterialAttributes/TransparencyMode/Blend/Blend.binary.babylon
new file mode 100644
index 00000000..b05f60db
--- /dev/null
+++ b/3ds Max/Samples/babylon/BabylonMaterialAttributes/TransparencyMode/Blend/Blend.binary.babylon
@@ -0,0 +1,655 @@
+{
+ "producer": {
+ "name": "3dsmax",
+ "version": "2019",
+ "exporter_version": "1.5.0",
+ "file": "Blend.babylon"
+ },
+ "autoClear": true,
+ "clearColor": [
+ 0.0,
+ 0.0,
+ 0.0
+ ],
+ "ambientColor": [
+ 0.0,
+ 0.0,
+ 0.0
+ ],
+ "fogMode": 0,
+ "fogColor": null,
+ "fogStart": 0.0,
+ "fogEnd": 0.0,
+ "fogDensity": 0.0,
+ "gravity": [
+ 0.0,
+ 0.0,
+ 0.0
+ ],
+ "physicsEngine": null,
+ "physicsEnabled": false,
+ "physicsGravity": null,
+ "lights": [
+ {
+ "direction": [
+ 0.0,
+ 1.0,
+ 0.0
+ ],
+ "type": 3,
+ "diffuse": [
+ 1.0,
+ 1.0,
+ 1.0
+ ],
+ "specular": [
+ 1.0,
+ 1.0,
+ 1.0
+ ],
+ "intensity": 1.0,
+ "range": 3.40282347E+38,
+ "exponent": 0.0,
+ "angle": 0.0,
+ "groundColor": [
+ 0.0,
+ 0.0,
+ 0.0
+ ],
+ "excludedMeshesIds": null,
+ "includedOnlyMeshesIds": null,
+ "lightmapMode": null,
+ "falloffType": null,
+ "name": "Default light",
+ "id": "8e4c816c-d658-40cc-8b9e-05311761585d",
+ "parentId": null,
+ "position": [
+ 0.0,
+ 0.0,
+ 0.0
+ ],
+ "animations": null,
+ "autoAnimate": false,
+ "autoAnimateFrom": 0,
+ "autoAnimateTo": 0,
+ "autoAnimateLoop": false,
+ "metadata": null
+ }
+ ],
+ "meshes": [
+ {
+ "materialId": "814decf0-a4ea-454e-a404-277528478ef5",
+ "isEnabled": true,
+ "isVisible": true,
+ "positions": null,
+ "normals": null,
+ "tangents": null,
+ "uvs": null,
+ "uvs2": null,
+ "colors": null,
+ "hasVertexAlpha": false,
+ "matricesIndices": null,
+ "matricesWeights": null,
+ "matricesIndicesExtra": null,
+ "matricesWeightsExtra": null,
+ "indices": null,
+ "receiveShadows": true,
+ "infiniteDistance": false,
+ "billboardMode": 0,
+ "visibility": 1.0,
+ "subMeshes": null,
+ "instances": null,
+ "skeletonId": -1,
+ "numBoneInfluencers": 4,
+ "applyFog": true,
+ "lodMeshIds": null,
+ "lodDistances": null,
+ "lodCoverages": null,
+ "rotation": null,
+ "scaling": [
+ 1.0,
+ 1.0,
+ 1.0
+ ],
+ "rotationQuaternion": [
+ 0.0,
+ 0.7071,
+ 0.0,
+ 0.7071
+ ],
+ "actions": null,
+ "checkCollisions": false,
+ "pickable": false,
+ "showBoundingBox": false,
+ "showSubMeshesBoundingBox": false,
+ "alphaIndex": 1000,
+ "physicsImpostor": 0,
+ "physicsMass": 0.0,
+ "physicsFriction": 0.0,
+ "physicsRestitution": 0.0,
+ "name": "StandardMesh",
+ "id": "113f2dbc-dce1-4faa-be71-35277504433b",
+ "parentId": null,
+ "position": [
+ 0.0,
+ 0.0,
+ 0.0
+ ],
+ "animations": [],
+ "autoAnimate": true,
+ "autoAnimateFrom": 0,
+ "autoAnimateTo": 100,
+ "autoAnimateLoop": true,
+ "metadata": null,
+ "boundingBoxMinimum": [
+ -1.0,
+ -1.0,
+ -1.0
+ ],
+ "boundingBoxMaximum": [
+ 1.0,
+ 1.0,
+ 1.0
+ ],
+ "delayLoadingFile": "Blend.StandardMesh.113f2dbc-dce1-4faa-be71-35277504433b.babylonbinarymeshdata",
+ "hasUVs": true,
+ "_binaryInfo": {
+ "positionsAttrDesc": {
+ "count": 8640,
+ "stride": 3,
+ "offset": 0,
+ "dataType": 1
+ },
+ "normalsAttrDesc": {
+ "count": 8640,
+ "stride": 3,
+ "offset": 34560,
+ "dataType": 1
+ },
+ "uvsAttrDesc": {
+ "count": 5760,
+ "stride": 2,
+ "offset": 69120,
+ "dataType": 1
+ },
+ "indicesAttrDesc": {
+ "count": 2880,
+ "stride": 1,
+ "offset": 92160,
+ "dataType": 0
+ },
+ "subMeshesAttrDesc": {
+ "count": 1,
+ "stride": 5,
+ "offset": 103680,
+ "dataType": 0
+ }
+ }
+ },
+ {
+ "materialId": "e8d366dc-9a25-4d46-80f2-60a95ec88505",
+ "isEnabled": true,
+ "isVisible": true,
+ "positions": null,
+ "normals": null,
+ "tangents": null,
+ "uvs": null,
+ "uvs2": null,
+ "colors": null,
+ "hasVertexAlpha": false,
+ "matricesIndices": null,
+ "matricesWeights": null,
+ "matricesIndicesExtra": null,
+ "matricesWeightsExtra": null,
+ "indices": null,
+ "receiveShadows": true,
+ "infiniteDistance": false,
+ "billboardMode": 0,
+ "visibility": 1.0,
+ "subMeshes": null,
+ "instances": null,
+ "skeletonId": -1,
+ "numBoneInfluencers": 4,
+ "applyFog": true,
+ "lodMeshIds": null,
+ "lodDistances": null,
+ "lodCoverages": null,
+ "rotation": null,
+ "scaling": [
+ 1.0,
+ 1.0,
+ 1.0
+ ],
+ "rotationQuaternion": [
+ 0.0,
+ 0.7071,
+ 0.0,
+ 0.7071
+ ],
+ "actions": null,
+ "checkCollisions": false,
+ "pickable": false,
+ "showBoundingBox": false,
+ "showSubMeshesBoundingBox": false,
+ "alphaIndex": 1000,
+ "physicsImpostor": 0,
+ "physicsMass": 0.0,
+ "physicsFriction": 0.0,
+ "physicsRestitution": 0.0,
+ "name": "PhysicalMesh",
+ "id": "311381f0-8487-4fc5-89fa-7d01dfda5e2f",
+ "parentId": null,
+ "position": [
+ 3.0,
+ 0.0,
+ 0.0
+ ],
+ "animations": [],
+ "autoAnimate": true,
+ "autoAnimateFrom": 0,
+ "autoAnimateTo": 100,
+ "autoAnimateLoop": true,
+ "metadata": null,
+ "boundingBoxMinimum": [
+ -1.0,
+ -1.0,
+ -1.0
+ ],
+ "boundingBoxMaximum": [
+ 1.0,
+ 1.0,
+ 1.0
+ ],
+ "delayLoadingFile": "Blend.PhysicalMesh.311381f0-8487-4fc5-89fa-7d01dfda5e2f.babylonbinarymeshdata",
+ "hasUVs": true,
+ "_binaryInfo": {
+ "positionsAttrDesc": {
+ "count": 8640,
+ "stride": 3,
+ "offset": 0,
+ "dataType": 1
+ },
+ "normalsAttrDesc": {
+ "count": 8640,
+ "stride": 3,
+ "offset": 34560,
+ "dataType": 1
+ },
+ "uvsAttrDesc": {
+ "count": 5760,
+ "stride": 2,
+ "offset": 69120,
+ "dataType": 1
+ },
+ "indicesAttrDesc": {
+ "count": 2880,
+ "stride": 1,
+ "offset": 92160,
+ "dataType": 0
+ },
+ "subMeshesAttrDesc": {
+ "count": 1,
+ "stride": 5,
+ "offset": 103680,
+ "dataType": 0
+ }
+ }
+ },
+ {
+ "materialId": "21006084-7a66-4fb3-9835-48193f2ce19a",
+ "isEnabled": true,
+ "isVisible": true,
+ "positions": null,
+ "normals": null,
+ "tangents": null,
+ "uvs": null,
+ "uvs2": null,
+ "colors": null,
+ "hasVertexAlpha": false,
+ "matricesIndices": null,
+ "matricesWeights": null,
+ "matricesIndicesExtra": null,
+ "matricesWeightsExtra": null,
+ "indices": null,
+ "receiveShadows": true,
+ "infiniteDistance": false,
+ "billboardMode": 0,
+ "visibility": 1.0,
+ "subMeshes": null,
+ "instances": null,
+ "skeletonId": -1,
+ "numBoneInfluencers": 4,
+ "applyFog": true,
+ "lodMeshIds": null,
+ "lodDistances": null,
+ "lodCoverages": null,
+ "rotation": null,
+ "scaling": [
+ 1.0,
+ 1.0,
+ 1.0
+ ],
+ "rotationQuaternion": [
+ 0.0,
+ 0.7071,
+ 0.0,
+ 0.7071
+ ],
+ "actions": null,
+ "checkCollisions": false,
+ "pickable": false,
+ "showBoundingBox": false,
+ "showSubMeshesBoundingBox": false,
+ "alphaIndex": 1000,
+ "physicsImpostor": 0,
+ "physicsMass": 0.0,
+ "physicsFriction": 0.0,
+ "physicsRestitution": 0.0,
+ "name": "StandardSurfaceMesh",
+ "id": "57bbf667-4bf9-4453-8787-dd1f8673b543",
+ "parentId": null,
+ "position": [
+ 6.0,
+ 0.0,
+ 0.0
+ ],
+ "animations": [],
+ "autoAnimate": true,
+ "autoAnimateFrom": 0,
+ "autoAnimateTo": 100,
+ "autoAnimateLoop": true,
+ "metadata": null,
+ "boundingBoxMinimum": [
+ -1.0,
+ -1.0,
+ -1.0
+ ],
+ "boundingBoxMaximum": [
+ 1.0,
+ 1.0,
+ 1.0
+ ],
+ "delayLoadingFile": "Blend.StandardSurfaceMesh.57bbf667-4bf9-4453-8787-dd1f8673b543.babylonbinarymeshdata",
+ "hasUVs": true,
+ "_binaryInfo": {
+ "positionsAttrDesc": {
+ "count": 8640,
+ "stride": 3,
+ "offset": 0,
+ "dataType": 1
+ },
+ "normalsAttrDesc": {
+ "count": 8640,
+ "stride": 3,
+ "offset": 34560,
+ "dataType": 1
+ },
+ "uvsAttrDesc": {
+ "count": 5760,
+ "stride": 2,
+ "offset": 69120,
+ "dataType": 1
+ },
+ "indicesAttrDesc": {
+ "count": 2880,
+ "stride": 1,
+ "offset": 92160,
+ "dataType": 0
+ },
+ "subMeshesAttrDesc": {
+ "count": 1,
+ "stride": 5,
+ "offset": 103680,
+ "dataType": 0
+ }
+ }
+ }
+ ],
+ "sounds": [],
+ "materials": [
+ {
+ "customType": "BABYLON.StandardMaterial",
+ "ambient": [
+ 1.0,
+ 0.0,
+ 0.0
+ ],
+ "diffuse": [
+ 1.0,
+ 0.0,
+ 0.0
+ ],
+ "specular": [
+ 0.0,
+ 0.0,
+ 0.0
+ ],
+ "emissive": [
+ 0.0,
+ 0.0,
+ 0.0
+ ],
+ "specularPower": 25.6,
+ "diffuseTexture": null,
+ "diffuseFresnelParameters": null,
+ "ambientTexture": null,
+ "opacityTexture": {
+ "name": "gradation_horizontal.jpg",
+ "level": 1.0,
+ "hasAlpha": true,
+ "getAlphaFromRGB": true,
+ "coordinatesMode": 0,
+ "isCube": false,
+ "uOffset": 0.0,
+ "vOffset": 0.0,
+ "uScale": 1.0,
+ "vScale": -1.0,
+ "uRotationCenter": 0.0,
+ "vRotationCenter": 0.0,
+ "wRotationCenter": 0.5,
+ "invertY": false,
+ "uAng": 0.0,
+ "vAng": 0.0,
+ "wAng": 0.0,
+ "wrapU": 1,
+ "wrapV": 1,
+ "coordinatesIndex": 0,
+ "isRenderTarget": false,
+ "renderTargetSize": 0,
+ "mirrorPlane": null,
+ "renderList": null,
+ "animations": [],
+ "extensions": null,
+ "samplingMode": 3
+ },
+ "opacityFresnelParameters": null,
+ "reflectionTexture": null,
+ "reflectionFresnelParameters": null,
+ "emissiveTexture": null,
+ "lightmapTexture": null,
+ "useLightmapAsShadowmap": false,
+ "emissiveFresnelParameters": null,
+ "specularTexture": null,
+ "bumpTexture": null,
+ "useSpecularOverAlpha": true,
+ "disableLighting": false,
+ "useEmissiveAsIllumination": false,
+ "linkEmissiveWithDiffuse": true,
+ "twoSidedLighting": false,
+ "useGlossinessFromSpecularMapAlpha": false,
+ "name": "StandardMaterialBlend",
+ "id": "814decf0-a4ea-454e-a404-277528478ef5",
+ "backFaceCulling": true,
+ "wireframe": false,
+ "alpha": 1.0,
+ "alphaMode": 2,
+ "maxSimultaneousLights": 4,
+ "metadata": {}
+ },
+ {
+ "customType": "BABYLON.PBRMetallicRoughnessMaterial",
+ "baseColor": [
+ 0.0,
+ 1.0,
+ 0.0
+ ],
+ "baseTexture": {
+ "name": "02550.png",
+ "level": 1.0,
+ "hasAlpha": true,
+ "getAlphaFromRGB": false,
+ "coordinatesMode": 0,
+ "isCube": false,
+ "uOffset": 0.0,
+ "vOffset": 0.0,
+ "uScale": 1.0,
+ "vScale": -1.0,
+ "uRotationCenter": 0.0,
+ "vRotationCenter": 0.0,
+ "wRotationCenter": 0.5,
+ "invertY": false,
+ "uAng": 0.0,
+ "vAng": 0.0,
+ "wAng": 0.0,
+ "wrapU": 1,
+ "wrapV": 1,
+ "coordinatesIndex": 0,
+ "isRenderTarget": false,
+ "renderTargetSize": 0,
+ "mirrorPlane": null,
+ "renderList": null,
+ "animations": null,
+ "extensions": null,
+ "samplingMode": 3
+ },
+ "metallic": 0.0,
+ "roughness": 0.0,
+ "metallicRoughnessTexture": null,
+ "disableLighting": false,
+ "invertNormalMapX": false,
+ "invertNormalMapY": false,
+ "normalTexture": null,
+ "emissive": [
+ 0.0,
+ 0.0,
+ 0.0
+ ],
+ "emissiveTexture": null,
+ "occlusionStrength": 1.0,
+ "occlusionTexture": null,
+ "transparencyMode": 2,
+ "doubleSided": false,
+ "clearCoat": {
+ "isEnabled": false,
+ "intensity": 1.0,
+ "roughness": 0.0,
+ "indexOfRefraction": 1.5,
+ "texture": null,
+ "bumpTexture": null,
+ "isTintEnabled": false,
+ "tintColor": [
+ 1.0,
+ 1.0,
+ 1.0
+ ],
+ "tintThickness": 1.0,
+ "tintTexture": null
+ },
+ "name": "PhysicalMaterialBlend",
+ "id": "e8d366dc-9a25-4d46-80f2-60a95ec88505",
+ "backFaceCulling": true,
+ "wireframe": false,
+ "alpha": 1.0,
+ "alphaMode": 2,
+ "maxSimultaneousLights": 4,
+ "metadata": {}
+ },
+ {
+ "customType": "BABYLON.PBRMetallicRoughnessMaterial",
+ "baseColor": [
+ 1.0,
+ 1.0,
+ 1.0
+ ],
+ "baseTexture": {
+ "name": "00204.png",
+ "level": 1.0,
+ "hasAlpha": true,
+ "getAlphaFromRGB": false,
+ "coordinatesMode": 0,
+ "isCube": false,
+ "uOffset": 0.0,
+ "vOffset": 0.0,
+ "uScale": 1.0,
+ "vScale": -1.0,
+ "uRotationCenter": 0.0,
+ "vRotationCenter": 0.0,
+ "wRotationCenter": 0.5,
+ "invertY": false,
+ "uAng": 0.0,
+ "vAng": 0.0,
+ "wAng": 0.0,
+ "wrapU": 1,
+ "wrapV": 1,
+ "coordinatesIndex": 0,
+ "isRenderTarget": false,
+ "renderTargetSize": 0,
+ "mirrorPlane": null,
+ "renderList": null,
+ "animations": null,
+ "extensions": null,
+ "samplingMode": 3
+ },
+ "metallic": 0.0,
+ "roughness": 0.2,
+ "metallicRoughnessTexture": null,
+ "disableLighting": false,
+ "invertNormalMapX": false,
+ "invertNormalMapY": false,
+ "normalTexture": null,
+ "emissive": [
+ 0.0,
+ 0.0,
+ 0.0
+ ],
+ "emissiveTexture": null,
+ "occlusionStrength": 1.0,
+ "occlusionTexture": null,
+ "transparencyMode": 2,
+ "doubleSided": false,
+ "clearCoat": {
+ "isEnabled": false,
+ "intensity": 1.0,
+ "roughness": 0.0,
+ "indexOfRefraction": 1.5,
+ "texture": null,
+ "bumpTexture": null,
+ "isTintEnabled": false,
+ "tintColor": [
+ 1.0,
+ 1.0,
+ 1.0
+ ],
+ "tintThickness": 1.0,
+ "tintTexture": null
+ },
+ "name": "StandardSurfaceMaterialBlend",
+ "id": "21006084-7a66-4fb3-9835-48193f2ce19a",
+ "backFaceCulling": true,
+ "wireframe": false,
+ "alpha": 1.0,
+ "alphaMode": 2,
+ "maxSimultaneousLights": 4,
+ "metadata": {}
+ }
+ ],
+ "multiMaterials": [],
+ "particleSystems": null,
+ "lensFlareSystems": null,
+ "shadowGenerators": [],
+ "skeletons": [],
+ "actions": null,
+ "metadata": null,
+ "workerCollisions": false,
+ "useDelayedTextureLoading": true
+}
\ No newline at end of file
diff --git a/3ds Max/Samples/babylon/BabylonMaterialAttributes/TransparencyMode/Blend/gradation_horizontal.jpg b/3ds Max/Samples/babylon/BabylonMaterialAttributes/TransparencyMode/Blend/gradation_horizontal.jpg
new file mode 100644
index 00000000..7437068c
Binary files /dev/null and b/3ds Max/Samples/babylon/BabylonMaterialAttributes/TransparencyMode/Blend/gradation_horizontal.jpg differ
diff --git a/3ds Max/Samples/babylon/BabylonMaterialAttributes/TransparencyMode/Mask/00204.png b/3ds Max/Samples/babylon/BabylonMaterialAttributes/TransparencyMode/Mask/00204.png
new file mode 100644
index 00000000..91919912
Binary files /dev/null and b/3ds Max/Samples/babylon/BabylonMaterialAttributes/TransparencyMode/Mask/00204.png differ
diff --git a/3ds Max/Samples/babylon/BabylonMaterialAttributes/TransparencyMode/Mask/02550.png b/3ds Max/Samples/babylon/BabylonMaterialAttributes/TransparencyMode/Mask/02550.png
new file mode 100644
index 00000000..9a946ab8
Binary files /dev/null and b/3ds Max/Samples/babylon/BabylonMaterialAttributes/TransparencyMode/Mask/02550.png differ
diff --git a/3ds Max/Samples/babylon/BabylonMaterialAttributes/TransparencyMode/Mask/25500.png b/3ds Max/Samples/babylon/BabylonMaterialAttributes/TransparencyMode/Mask/25500.png
new file mode 100644
index 00000000..fcd01433
Binary files /dev/null and b/3ds Max/Samples/babylon/BabylonMaterialAttributes/TransparencyMode/Mask/25500.png differ
diff --git a/3ds Max/Samples/babylon/BabylonMaterialAttributes/TransparencyMode/Mask/Mask.PhysicalMesh.311381f0-8487-4fc5-89fa-7d01dfda5e2f.babylonbinarymeshdata b/3ds Max/Samples/babylon/BabylonMaterialAttributes/TransparencyMode/Mask/Mask.PhysicalMesh.311381f0-8487-4fc5-89fa-7d01dfda5e2f.babylonbinarymeshdata
new file mode 100644
index 00000000..e862fd1a
Binary files /dev/null and b/3ds Max/Samples/babylon/BabylonMaterialAttributes/TransparencyMode/Mask/Mask.PhysicalMesh.311381f0-8487-4fc5-89fa-7d01dfda5e2f.babylonbinarymeshdata differ
diff --git a/3ds Max/Samples/babylon/BabylonMaterialAttributes/TransparencyMode/Mask/Mask.StandardMesh.113f2dbc-dce1-4faa-be71-35277504433b.babylonbinarymeshdata b/3ds Max/Samples/babylon/BabylonMaterialAttributes/TransparencyMode/Mask/Mask.StandardMesh.113f2dbc-dce1-4faa-be71-35277504433b.babylonbinarymeshdata
new file mode 100644
index 00000000..e862fd1a
Binary files /dev/null and b/3ds Max/Samples/babylon/BabylonMaterialAttributes/TransparencyMode/Mask/Mask.StandardMesh.113f2dbc-dce1-4faa-be71-35277504433b.babylonbinarymeshdata differ
diff --git a/3ds Max/Samples/babylon/BabylonMaterialAttributes/TransparencyMode/Mask/Mask.StandardSurfaceMesh.57bbf667-4bf9-4453-8787-dd1f8673b543.babylonbinarymeshdata b/3ds Max/Samples/babylon/BabylonMaterialAttributes/TransparencyMode/Mask/Mask.StandardSurfaceMesh.57bbf667-4bf9-4453-8787-dd1f8673b543.babylonbinarymeshdata
new file mode 100644
index 00000000..e862fd1a
Binary files /dev/null and b/3ds Max/Samples/babylon/BabylonMaterialAttributes/TransparencyMode/Mask/Mask.StandardSurfaceMesh.57bbf667-4bf9-4453-8787-dd1f8673b543.babylonbinarymeshdata differ
diff --git a/3ds Max/Samples/babylon/BabylonMaterialAttributes/TransparencyMode/Mask/Mask.babylon b/3ds Max/Samples/babylon/BabylonMaterialAttributes/TransparencyMode/Mask/Mask.babylon
new file mode 100644
index 00000000..8bfd2110
--- /dev/null
+++ b/3ds Max/Samples/babylon/BabylonMaterialAttributes/TransparencyMode/Mask/Mask.babylon
@@ -0,0 +1 @@
+{"producer":{"name":"3dsmax","version":"2019","exporter_version":"1.5.0","file":"Mask.babylon"},"autoClear":true,"clearColor":[0.0,0.0,0.0],"ambientColor":[0.0,0.0,0.0],"fogMode":0,"fogColor":null,"fogStart":0.0,"fogEnd":0.0,"fogDensity":0.0,"gravity":[0.0,0.0,0.0],"physicsEngine":null,"physicsEnabled":false,"physicsGravity":null,"lights":[{"direction":[0.0,1.0,0.0],"type":3,"diffuse":[1.0,1.0,1.0],"specular":[1.0,1.0,1.0],"intensity":1.0,"range":3.40282347E+38,"exponent":0.0,"angle":0.0,"groundColor":[0.0,0.0,0.0],"excludedMeshesIds":null,"includedOnlyMeshesIds":null,"lightmapMode":null,"falloffType":null,"name":"Default light","id":"395bc502-f06b-42d7-a1c5-0f2218e9dbdd","parentId":null,"position":[0.0,0.0,0.0],"animations":null,"autoAnimate":false,"autoAnimateFrom":0,"autoAnimateTo":0,"autoAnimateLoop":false,"metadata":null}],"meshes":[{"materialId":"814decf0-a4ea-454e-a404-277528478ef5","isEnabled":true,"isVisible":true,"positions":[0.0,1.0,0.0,0.0,0.9808,0.1951,-0.0381,0.9808,0.1913,0.0,1.0,0.0,-0.0381,0.9808,0.1913,-0.0747,0.9808,0.1802,0.0,1.0,0.0,-0.0747,0.9808,0.1802,-0.1084,0.9808,0.1622,0.0,1.0,0.0,-0.1084,0.9808,0.1622,-0.1379,0.9808,0.1379,0.0,1.0,0.0,-0.1379,0.9808,0.1379,-0.1622,0.9808,0.1084,0.0,1.0,0.0,-0.1622,0.9808,0.1084,-0.1802,0.9808,0.0747,0.0,1.0,0.0,-0.1802,0.9808,0.0747,-0.1913,0.9808,0.0381,0.0,1.0,0.0,-0.1913,0.9808,0.0381,-0.1951,0.9808,0.0,0.0,1.0,0.0,-0.1951,0.9808,0.0,-0.1913,0.9808,-0.0381,0.0,1.0,0.0,-0.1913,0.9808,-0.0381,-0.1802,0.9808,-0.0747,0.0,1.0,0.0,-0.1802,0.9808,-0.0747,-0.1622,0.9808,-0.1084,0.0,1.0,0.0,-0.1622,0.9808,-0.1084,-0.1379,0.9808,-0.1379,0.0,1.0,0.0,-0.1379,0.9808,-0.1379,-0.1084,0.9808,-0.1622,0.0,1.0,0.0,-0.1084,0.9808,-0.1622,-0.0747,0.9808,-0.1802,0.0,1.0,0.0,-0.0747,0.9808,-0.1802,-0.0381,0.9808,-0.1913,0.0,1.0,0.0,-0.0381,0.9808,-0.1913,0.0,0.9808,-0.1951,0.0,1.0,0.0,0.0,0.9808,-0.1951,0.0381,0.9808,-0.1913,0.0,1.0,0.0,0.0381,0.9808,-0.1913,0.0747,0.9808,-0.1802,0.0,1.0,0.0,0.0747,0.9808,-0.1802,0.1084,0.9808,-0.1622,0.0,1.0,0.0,0.1084,0.9808,-0.1622,0.1379,0.9808,-0.1379,0.0,1.0,0.0,0.1379,0.9808,-0.1379,0.1622,0.9808,-0.1084,0.0,1.0,0.0,0.1622,0.9808,-0.1084,0.1802,0.9808,-0.0747,0.0,1.0,0.0,0.1802,0.9808,-0.0747,0.1913,0.9808,-0.0381,0.0,1.0,0.0,0.1913,0.9808,-0.0381,0.1951,0.9808,0.0,0.0,1.0,0.0,0.1951,0.9808,0.0,0.1913,0.9808,0.0381,0.0,1.0,0.0,0.1913,0.9808,0.0381,0.1802,0.9808,0.0747,0.0,1.0,0.0,0.1802,0.9808,0.0747,0.1622,0.9808,0.1084,0.0,1.0,0.0,0.1622,0.9808,0.1084,0.1379,0.9808,0.1379,0.0,1.0,0.0,0.1379,0.9808,0.1379,0.1084,0.9808,0.1622,0.0,1.0,0.0,0.1084,0.9808,0.1622,0.0747,0.9808,0.1802,0.0,1.0,0.0,0.0747,0.9808,0.1802,0.0381,0.9808,0.1913,0.0,1.0,0.0,0.0381,0.9808,0.1913,0.0,0.9808,0.1951,0.0,0.9808,0.1951,0.0,0.9239,0.3827,-0.0747,0.9239,0.3753,0.0,0.9808,0.1951,-0.0747,0.9239,0.3753,-0.0381,0.9808,0.1913,-0.0381,0.9808,0.1913,-0.0747,0.9239,0.3753,-0.1464,0.9239,0.3536,-0.0381,0.9808,0.1913,-0.1464,0.9239,0.3536,-0.0747,0.9808,0.1802,-0.0747,0.9808,0.1802,-0.1464,0.9239,0.3536,-0.2126,0.9239,0.3182,-0.0747,0.9808,0.1802,-0.2126,0.9239,0.3182,-0.1084,0.9808,0.1622,-0.1084,0.9808,0.1622,-0.2126,0.9239,0.3182,-0.2706,0.9239,0.2706,-0.1084,0.9808,0.1622,-0.2706,0.9239,0.2706,-0.1379,0.9808,0.1379,-0.1379,0.9808,0.1379,-0.2706,0.9239,0.2706,-0.3182,0.9239,0.2126,-0.1379,0.9808,0.1379,-0.3182,0.9239,0.2126,-0.1622,0.9808,0.1084,-0.1622,0.9808,0.1084,-0.3182,0.9239,0.2126,-0.3536,0.9239,0.1464,-0.1622,0.9808,0.1084,-0.3536,0.9239,0.1464,-0.1802,0.9808,0.0747,-0.1802,0.9808,0.0747,-0.3536,0.9239,0.1464,-0.3753,0.9239,0.0747,-0.1802,0.9808,0.0747,-0.3753,0.9239,0.0747,-0.1913,0.9808,0.0381,-0.1913,0.9808,0.0381,-0.3753,0.9239,0.0747,-0.3827,0.9239,0.0,-0.1913,0.9808,0.0381,-0.3827,0.9239,0.0,-0.1951,0.9808,0.0,-0.1951,0.9808,0.0,-0.3827,0.9239,0.0,-0.3753,0.9239,-0.0747,-0.1951,0.9808,0.0,-0.3753,0.9239,-0.0747,-0.1913,0.9808,-0.0381,-0.1913,0.9808,-0.0381,-0.3753,0.9239,-0.0747,-0.3536,0.9239,-0.1464,-0.1913,0.9808,-0.0381,-0.3536,0.9239,-0.1464,-0.1802,0.9808,-0.0747,-0.1802,0.9808,-0.0747,-0.3536,0.9239,-0.1464,-0.3182,0.9239,-0.2126,-0.1802,0.9808,-0.0747,-0.3182,0.9239,-0.2126,-0.1622,0.9808,-0.1084,-0.1622,0.9808,-0.1084,-0.3182,0.9239,-0.2126,-0.2706,0.9239,-0.2706,-0.1622,0.9808,-0.1084,-0.2706,0.9239,-0.2706,-0.1379,0.9808,-0.1379,-0.1379,0.9808,-0.1379,-0.2706,0.9239,-0.2706,-0.2126,0.9239,-0.3182,-0.1379,0.9808,-0.1379,-0.2126,0.9239,-0.3182,-0.1084,0.9808,-0.1622,-0.1084,0.9808,-0.1622,-0.2126,0.9239,-0.3182,-0.1464,0.9239,-0.3536,-0.1084,0.9808,-0.1622,-0.1464,0.9239,-0.3536,-0.0747,0.9808,-0.1802,-0.0747,0.9808,-0.1802,-0.1464,0.9239,-0.3536,-0.0747,0.9239,-0.3753,-0.0747,0.9808,-0.1802,-0.0747,0.9239,-0.3753,-0.0381,0.9808,-0.1913,-0.0381,0.9808,-0.1913,-0.0747,0.9239,-0.3753,0.0,0.9239,-0.3827,-0.0381,0.9808,-0.1913,0.0,0.9239,-0.3827,0.0,0.9808,-0.1951,0.0,0.9808,-0.1951,0.0,0.9239,-0.3827,0.0747,0.9239,-0.3753,0.0,0.9808,-0.1951,0.0747,0.9239,-0.3753,0.0381,0.9808,-0.1913,0.0381,0.9808,-0.1913,0.0747,0.9239,-0.3753,0.1464,0.9239,-0.3536,0.0381,0.9808,-0.1913,0.1464,0.9239,-0.3536,0.0747,0.9808,-0.1802,0.0747,0.9808,-0.1802,0.1464,0.9239,-0.3536,0.2126,0.9239,-0.3182,0.0747,0.9808,-0.1802,0.2126,0.9239,-0.3182,0.1084,0.9808,-0.1622,0.1084,0.9808,-0.1622,0.2126,0.9239,-0.3182,0.2706,0.9239,-0.2706,0.1084,0.9808,-0.1622,0.2706,0.9239,-0.2706,0.1379,0.9808,-0.1379,0.1379,0.9808,-0.1379,0.2706,0.9239,-0.2706,0.3182,0.9239,-0.2126,0.1379,0.9808,-0.1379,0.3182,0.9239,-0.2126,0.1622,0.9808,-0.1084,0.1622,0.9808,-0.1084,0.3182,0.9239,-0.2126,0.3536,0.9239,-0.1464,0.1622,0.9808,-0.1084,0.3536,0.9239,-0.1464,0.1802,0.9808,-0.0747,0.1802,0.9808,-0.0747,0.3536,0.9239,-0.1464,0.3753,0.9239,-0.0747,0.1802,0.9808,-0.0747,0.3753,0.9239,-0.0747,0.1913,0.9808,-0.0381,0.1913,0.9808,-0.0381,0.3753,0.9239,-0.0747,0.3827,0.9239,0.0,0.1913,0.9808,-0.0381,0.3827,0.9239,0.0,0.1951,0.9808,0.0,0.1951,0.9808,0.0,0.3827,0.9239,0.0,0.3753,0.9239,0.0747,0.1951,0.9808,0.0,0.3753,0.9239,0.0747,0.1913,0.9808,0.0381,0.1913,0.9808,0.0381,0.3753,0.9239,0.0747,0.3536,0.9239,0.1464,0.1913,0.9808,0.0381,0.3536,0.9239,0.1464,0.1802,0.9808,0.0747,0.1802,0.9808,0.0747,0.3536,0.9239,0.1464,0.3182,0.9239,0.2126,0.1802,0.9808,0.0747,0.3182,0.9239,0.2126,0.1622,0.9808,0.1084,0.1622,0.9808,0.1084,0.3182,0.9239,0.2126,0.2706,0.9239,0.2706,0.1622,0.9808,0.1084,0.2706,0.9239,0.2706,0.1379,0.9808,0.1379,0.1379,0.9808,0.1379,0.2706,0.9239,0.2706,0.2126,0.9239,0.3182,0.1379,0.9808,0.1379,0.2126,0.9239,0.3182,0.1084,0.9808,0.1622,0.1084,0.9808,0.1622,0.2126,0.9239,0.3182,0.1464,0.9239,0.3536,0.1084,0.9808,0.1622,0.1464,0.9239,0.3536,0.0747,0.9808,0.1802,0.0747,0.9808,0.1802,0.1464,0.9239,0.3536,0.0747,0.9239,0.3753,0.0747,0.9808,0.1802,0.0747,0.9239,0.3753,0.0381,0.9808,0.1913,0.0381,0.9808,0.1913,0.0747,0.9239,0.3753,0.0,0.9239,0.3827,0.0381,0.9808,0.1913,0.0,0.9239,0.3827,0.0,0.9808,0.1951,0.0,0.9239,0.3827,0.0,0.8315,0.5556,-0.1084,0.8315,0.5449,0.0,0.9239,0.3827,-0.1084,0.8315,0.5449,-0.0747,0.9239,0.3753,-0.0747,0.9239,0.3753,-0.1084,0.8315,0.5449,-0.2126,0.8315,0.5133,-0.0747,0.9239,0.3753,-0.2126,0.8315,0.5133,-0.1464,0.9239,0.3536,-0.1464,0.9239,0.3536,-0.2126,0.8315,0.5133,-0.3087,0.8315,0.4619,-0.1464,0.9239,0.3536,-0.3087,0.8315,0.4619,-0.2126,0.9239,0.3182,-0.2126,0.9239,0.3182,-0.3087,0.8315,0.4619,-0.3928,0.8315,0.3928,-0.2126,0.9239,0.3182,-0.3928,0.8315,0.3928,-0.2706,0.9239,0.2706,-0.2706,0.9239,0.2706,-0.3928,0.8315,0.3928,-0.4619,0.8315,0.3087,-0.2706,0.9239,0.2706,-0.4619,0.8315,0.3087,-0.3182,0.9239,0.2126,-0.3182,0.9239,0.2126,-0.4619,0.8315,0.3087,-0.5133,0.8315,0.2126,-0.3182,0.9239,0.2126,-0.5133,0.8315,0.2126,-0.3536,0.9239,0.1464,-0.3536,0.9239,0.1464,-0.5133,0.8315,0.2126,-0.5449,0.8315,0.1084,-0.3536,0.9239,0.1464,-0.5449,0.8315,0.1084,-0.3753,0.9239,0.0747,-0.3753,0.9239,0.0747,-0.5449,0.8315,0.1084,-0.5556,0.8315,0.0,-0.3753,0.9239,0.0747,-0.5556,0.8315,0.0,-0.3827,0.9239,0.0,-0.3827,0.9239,0.0,-0.5556,0.8315,0.0,-0.5449,0.8315,-0.1084,-0.3827,0.9239,0.0,-0.5449,0.8315,-0.1084,-0.3753,0.9239,-0.0747,-0.3753,0.9239,-0.0747,-0.5449,0.8315,-0.1084,-0.5133,0.8315,-0.2126,-0.3753,0.9239,-0.0747,-0.5133,0.8315,-0.2126,-0.3536,0.9239,-0.1464,-0.3536,0.9239,-0.1464,-0.5133,0.8315,-0.2126,-0.4619,0.8315,-0.3087,-0.3536,0.9239,-0.1464,-0.4619,0.8315,-0.3087,-0.3182,0.9239,-0.2126,-0.3182,0.9239,-0.2126,-0.4619,0.8315,-0.3087,-0.3928,0.8315,-0.3928,-0.3182,0.9239,-0.2126,-0.3928,0.8315,-0.3928,-0.2706,0.9239,-0.2706,-0.2706,0.9239,-0.2706,-0.3928,0.8315,-0.3928,-0.3087,0.8315,-0.4619,-0.2706,0.9239,-0.2706,-0.3087,0.8315,-0.4619,-0.2126,0.9239,-0.3182,-0.2126,0.9239,-0.3182,-0.3087,0.8315,-0.4619,-0.2126,0.8315,-0.5133,-0.2126,0.9239,-0.3182,-0.2126,0.8315,-0.5133,-0.1464,0.9239,-0.3536,-0.1464,0.9239,-0.3536,-0.2126,0.8315,-0.5133,-0.1084,0.8315,-0.5449,-0.1464,0.9239,-0.3536,-0.1084,0.8315,-0.5449,-0.0747,0.9239,-0.3753,-0.0747,0.9239,-0.3753,-0.1084,0.8315,-0.5449,0.0,0.8315,-0.5556,-0.0747,0.9239,-0.3753,0.0,0.8315,-0.5556,0.0,0.9239,-0.3827,0.0,0.9239,-0.3827,0.0,0.8315,-0.5556,0.1084,0.8315,-0.5449,0.0,0.9239,-0.3827,0.1084,0.8315,-0.5449,0.0747,0.9239,-0.3753,0.0747,0.9239,-0.3753,0.1084,0.8315,-0.5449,0.2126,0.8315,-0.5133,0.0747,0.9239,-0.3753,0.2126,0.8315,-0.5133,0.1464,0.9239,-0.3536,0.1464,0.9239,-0.3536,0.2126,0.8315,-0.5133,0.3087,0.8315,-0.4619,0.1464,0.9239,-0.3536,0.3087,0.8315,-0.4619,0.2126,0.9239,-0.3182,0.2126,0.9239,-0.3182,0.3087,0.8315,-0.4619,0.3928,0.8315,-0.3928,0.2126,0.9239,-0.3182,0.3928,0.8315,-0.3928,0.2706,0.9239,-0.2706,0.2706,0.9239,-0.2706,0.3928,0.8315,-0.3928,0.4619,0.8315,-0.3087,0.2706,0.9239,-0.2706,0.4619,0.8315,-0.3087,0.3182,0.9239,-0.2126,0.3182,0.9239,-0.2126,0.4619,0.8315,-0.3087,0.5133,0.8315,-0.2126,0.3182,0.9239,-0.2126,0.5133,0.8315,-0.2126,0.3536,0.9239,-0.1464,0.3536,0.9239,-0.1464,0.5133,0.8315,-0.2126,0.5449,0.8315,-0.1084,0.3536,0.9239,-0.1464,0.5449,0.8315,-0.1084,0.3753,0.9239,-0.0747,0.3753,0.9239,-0.0747,0.5449,0.8315,-0.1084,0.5556,0.8315,0.0,0.3753,0.9239,-0.0747,0.5556,0.8315,0.0,0.3827,0.9239,0.0,0.3827,0.9239,0.0,0.5556,0.8315,0.0,0.5449,0.8315,0.1084,0.3827,0.9239,0.0,0.5449,0.8315,0.1084,0.3753,0.9239,0.0747,0.3753,0.9239,0.0747,0.5449,0.8315,0.1084,0.5133,0.8315,0.2126,0.3753,0.9239,0.0747,0.5133,0.8315,0.2126,0.3536,0.9239,0.1464,0.3536,0.9239,0.1464,0.5133,0.8315,0.2126,0.4619,0.8315,0.3087,0.3536,0.9239,0.1464,0.4619,0.8315,0.3087,0.3182,0.9239,0.2126,0.3182,0.9239,0.2126,0.4619,0.8315,0.3087,0.3928,0.8315,0.3928,0.3182,0.9239,0.2126,0.3928,0.8315,0.3928,0.2706,0.9239,0.2706,0.2706,0.9239,0.2706,0.3928,0.8315,0.3928,0.3087,0.8315,0.4619,0.2706,0.9239,0.2706,0.3087,0.8315,0.4619,0.2126,0.9239,0.3182,0.2126,0.9239,0.3182,0.3087,0.8315,0.4619,0.2126,0.8315,0.5133,0.2126,0.9239,0.3182,0.2126,0.8315,0.5133,0.1464,0.9239,0.3536,0.1464,0.9239,0.3536,0.2126,0.8315,0.5133,0.1084,0.8315,0.5449,0.1464,0.9239,0.3536,0.1084,0.8315,0.5449,0.0747,0.9239,0.3753,0.0747,0.9239,0.3753,0.1084,0.8315,0.5449,0.0,0.8315,0.5556,0.0747,0.9239,0.3753,0.0,0.8315,0.5556,0.0,0.9239,0.3827,0.0,0.8315,0.5556,0.0,0.7071,0.7071,-0.1379,0.7071,0.6935,0.0,0.8315,0.5556,-0.1379,0.7071,0.6935,-0.1084,0.8315,0.5449,-0.1084,0.8315,0.5449,-0.1379,0.7071,0.6935,-0.2706,0.7071,0.6533,-0.1084,0.8315,0.5449,-0.2706,0.7071,0.6533,-0.2126,0.8315,0.5133,-0.2126,0.8315,0.5133,-0.2706,0.7071,0.6533,-0.3928,0.7071,0.5879,-0.2126,0.8315,0.5133,-0.3928,0.7071,0.5879,-0.3087,0.8315,0.4619,-0.3087,0.8315,0.4619,-0.3928,0.7071,0.5879,-0.5,0.7071,0.5,-0.3087,0.8315,0.4619,-0.5,0.7071,0.5,-0.3928,0.8315,0.3928,-0.3928,0.8315,0.3928,-0.5,0.7071,0.5,-0.5879,0.7071,0.3928,-0.3928,0.8315,0.3928,-0.5879,0.7071,0.3928,-0.4619,0.8315,0.3087,-0.4619,0.8315,0.3087,-0.5879,0.7071,0.3928,-0.6533,0.7071,0.2706,-0.4619,0.8315,0.3087,-0.6533,0.7071,0.2706,-0.5133,0.8315,0.2126,-0.5133,0.8315,0.2126,-0.6533,0.7071,0.2706,-0.6935,0.7071,0.1379,-0.5133,0.8315,0.2126,-0.6935,0.7071,0.1379,-0.5449,0.8315,0.1084,-0.5449,0.8315,0.1084,-0.6935,0.7071,0.1379,-0.7071,0.7071,0.0,-0.5449,0.8315,0.1084,-0.7071,0.7071,0.0,-0.5556,0.8315,0.0,-0.5556,0.8315,0.0,-0.7071,0.7071,0.0,-0.6935,0.7071,-0.1379,-0.5556,0.8315,0.0,-0.6935,0.7071,-0.1379,-0.5449,0.8315,-0.1084,-0.5449,0.8315,-0.1084,-0.6935,0.7071,-0.1379,-0.6533,0.7071,-0.2706,-0.5449,0.8315,-0.1084,-0.6533,0.7071,-0.2706,-0.5133,0.8315,-0.2126,-0.5133,0.8315,-0.2126,-0.6533,0.7071,-0.2706,-0.5879,0.7071,-0.3928,-0.5133,0.8315,-0.2126,-0.5879,0.7071,-0.3928,-0.4619,0.8315,-0.3087,-0.4619,0.8315,-0.3087,-0.5879,0.7071,-0.3928,-0.5,0.7071,-0.5,-0.4619,0.8315,-0.3087,-0.5,0.7071,-0.5,-0.3928,0.8315,-0.3928,-0.3928,0.8315,-0.3928,-0.5,0.7071,-0.5,-0.3928,0.7071,-0.5879,-0.3928,0.8315,-0.3928,-0.3928,0.7071,-0.5879,-0.3087,0.8315,-0.4619,-0.3087,0.8315,-0.4619,-0.3928,0.7071,-0.5879,-0.2706,0.7071,-0.6533,-0.3087,0.8315,-0.4619,-0.2706,0.7071,-0.6533,-0.2126,0.8315,-0.5133,-0.2126,0.8315,-0.5133,-0.2706,0.7071,-0.6533,-0.1379,0.7071,-0.6935,-0.2126,0.8315,-0.5133,-0.1379,0.7071,-0.6935,-0.1084,0.8315,-0.5449,-0.1084,0.8315,-0.5449,-0.1379,0.7071,-0.6935,0.0,0.7071,-0.7071,-0.1084,0.8315,-0.5449,0.0,0.7071,-0.7071,0.0,0.8315,-0.5556,0.0,0.8315,-0.5556,0.0,0.7071,-0.7071,0.138,0.7071,-0.6935,0.0,0.8315,-0.5556,0.138,0.7071,-0.6935,0.1084,0.8315,-0.5449,0.1084,0.8315,-0.5449,0.138,0.7071,-0.6935,0.2706,0.7071,-0.6533,0.1084,0.8315,-0.5449,0.2706,0.7071,-0.6533,0.2126,0.8315,-0.5133,0.2126,0.8315,-0.5133,0.2706,0.7071,-0.6533,0.3928,0.7071,-0.5879,0.2126,0.8315,-0.5133,0.3928,0.7071,-0.5879,0.3087,0.8315,-0.4619,0.3087,0.8315,-0.4619,0.3928,0.7071,-0.5879,0.5,0.7071,-0.5,0.3087,0.8315,-0.4619,0.5,0.7071,-0.5,0.3928,0.8315,-0.3928,0.3928,0.8315,-0.3928,0.5,0.7071,-0.5,0.5879,0.7071,-0.3928,0.3928,0.8315,-0.3928,0.5879,0.7071,-0.3928,0.4619,0.8315,-0.3087,0.4619,0.8315,-0.3087,0.5879,0.7071,-0.3928,0.6533,0.7071,-0.2706,0.4619,0.8315,-0.3087,0.6533,0.7071,-0.2706,0.5133,0.8315,-0.2126,0.5133,0.8315,-0.2126,0.6533,0.7071,-0.2706,0.6935,0.7071,-0.1379,0.5133,0.8315,-0.2126,0.6935,0.7071,-0.1379,0.5449,0.8315,-0.1084,0.5449,0.8315,-0.1084,0.6935,0.7071,-0.1379,0.7071,0.7071,0.0,0.5449,0.8315,-0.1084,0.7071,0.7071,0.0,0.5556,0.8315,0.0,0.5556,0.8315,0.0,0.7071,0.7071,0.0,0.6935,0.7071,0.138,0.5556,0.8315,0.0,0.6935,0.7071,0.138,0.5449,0.8315,0.1084,0.5449,0.8315,0.1084,0.6935,0.7071,0.138,0.6533,0.7071,0.2706,0.5449,0.8315,0.1084,0.6533,0.7071,0.2706,0.5133,0.8315,0.2126,0.5133,0.8315,0.2126,0.6533,0.7071,0.2706,0.5879,0.7071,0.3928,0.5133,0.8315,0.2126,0.5879,0.7071,0.3928,0.4619,0.8315,0.3087,0.4619,0.8315,0.3087,0.5879,0.7071,0.3928,0.5,0.7071,0.5,0.4619,0.8315,0.3087,0.5,0.7071,0.5,0.3928,0.8315,0.3928,0.3928,0.8315,0.3928,0.5,0.7071,0.5,0.3928,0.7071,0.5879,0.3928,0.8315,0.3928,0.3928,0.7071,0.5879,0.3087,0.8315,0.4619,0.3087,0.8315,0.4619,0.3928,0.7071,0.5879,0.2706,0.7071,0.6533,0.3087,0.8315,0.4619,0.2706,0.7071,0.6533,0.2126,0.8315,0.5133,0.2126,0.8315,0.5133,0.2706,0.7071,0.6533,0.1379,0.7071,0.6935,0.2126,0.8315,0.5133,0.1379,0.7071,0.6935,0.1084,0.8315,0.5449,0.1084,0.8315,0.5449,0.1379,0.7071,0.6935,0.0,0.7071,0.7071,0.1084,0.8315,0.5449,0.0,0.7071,0.7071,0.0,0.8315,0.5556,0.0,0.7071,0.7071,0.0,0.5556,0.8315,-0.1622,0.5556,0.8155,0.0,0.7071,0.7071,-0.1622,0.5556,0.8155,-0.1379,0.7071,0.6935,-0.1379,0.7071,0.6935,-0.1622,0.5556,0.8155,-0.3182,0.5556,0.7682,-0.1379,0.7071,0.6935,-0.3182,0.5556,0.7682,-0.2706,0.7071,0.6533,-0.2706,0.7071,0.6533,-0.3182,0.5556,0.7682,-0.4619,0.5556,0.6913,-0.2706,0.7071,0.6533,-0.4619,0.5556,0.6913,-0.3928,0.7071,0.5879,-0.3928,0.7071,0.5879,-0.4619,0.5556,0.6913,-0.5879,0.5556,0.5879,-0.3928,0.7071,0.5879,-0.5879,0.5556,0.5879,-0.5,0.7071,0.5,-0.5,0.7071,0.5,-0.5879,0.5556,0.5879,-0.6913,0.5556,0.4619,-0.5,0.7071,0.5,-0.6913,0.5556,0.4619,-0.5879,0.7071,0.3928,-0.5879,0.7071,0.3928,-0.6913,0.5556,0.4619,-0.7682,0.5556,0.3182,-0.5879,0.7071,0.3928,-0.7682,0.5556,0.3182,-0.6533,0.7071,0.2706,-0.6533,0.7071,0.2706,-0.7682,0.5556,0.3182,-0.8155,0.5556,0.1622,-0.6533,0.7071,0.2706,-0.8155,0.5556,0.1622,-0.6935,0.7071,0.1379,-0.6935,0.7071,0.1379,-0.8155,0.5556,0.1622,-0.8315,0.5556,0.0,-0.6935,0.7071,0.1379,-0.8315,0.5556,0.0,-0.7071,0.7071,0.0,-0.7071,0.7071,0.0,-0.8315,0.5556,0.0,-0.8155,0.5556,-0.1622,-0.7071,0.7071,0.0,-0.8155,0.5556,-0.1622,-0.6935,0.7071,-0.1379,-0.6935,0.7071,-0.1379,-0.8155,0.5556,-0.1622,-0.7682,0.5556,-0.3182,-0.6935,0.7071,-0.1379,-0.7682,0.5556,-0.3182,-0.6533,0.7071,-0.2706,-0.6533,0.7071,-0.2706,-0.7682,0.5556,-0.3182,-0.6913,0.5556,-0.4619,-0.6533,0.7071,-0.2706,-0.6913,0.5556,-0.4619,-0.5879,0.7071,-0.3928,-0.5879,0.7071,-0.3928,-0.6913,0.5556,-0.4619,-0.5879,0.5556,-0.5879,-0.5879,0.7071,-0.3928,-0.5879,0.5556,-0.5879,-0.5,0.7071,-0.5,-0.5,0.7071,-0.5,-0.5879,0.5556,-0.5879,-0.4619,0.5556,-0.6913,-0.5,0.7071,-0.5,-0.4619,0.5556,-0.6913,-0.3928,0.7071,-0.5879,-0.3928,0.7071,-0.5879,-0.4619,0.5556,-0.6913,-0.3182,0.5556,-0.7682,-0.3928,0.7071,-0.5879,-0.3182,0.5556,-0.7682,-0.2706,0.7071,-0.6533,-0.2706,0.7071,-0.6533,-0.3182,0.5556,-0.7682,-0.1622,0.5556,-0.8155,-0.2706,0.7071,-0.6533,-0.1622,0.5556,-0.8155,-0.1379,0.7071,-0.6935,-0.1379,0.7071,-0.6935,-0.1622,0.5556,-0.8155,0.0,0.5556,-0.8315,-0.1379,0.7071,-0.6935,0.0,0.5556,-0.8315,0.0,0.7071,-0.7071,0.0,0.7071,-0.7071,0.0,0.5556,-0.8315,0.1622,0.5556,-0.8155,0.0,0.7071,-0.7071,0.1622,0.5556,-0.8155,0.138,0.7071,-0.6935,0.138,0.7071,-0.6935,0.1622,0.5556,-0.8155,0.3182,0.5556,-0.7682,0.138,0.7071,-0.6935,0.3182,0.5556,-0.7682,0.2706,0.7071,-0.6533,0.2706,0.7071,-0.6533,0.3182,0.5556,-0.7682,0.4619,0.5556,-0.6913,0.2706,0.7071,-0.6533,0.4619,0.5556,-0.6913,0.3928,0.7071,-0.5879,0.3928,0.7071,-0.5879,0.4619,0.5556,-0.6913,0.5879,0.5556,-0.5879,0.3928,0.7071,-0.5879,0.5879,0.5556,-0.5879,0.5,0.7071,-0.5,0.5,0.7071,-0.5,0.5879,0.5556,-0.5879,0.6913,0.5556,-0.4619,0.5,0.7071,-0.5,0.6913,0.5556,-0.4619,0.5879,0.7071,-0.3928,0.5879,0.7071,-0.3928,0.6913,0.5556,-0.4619,0.7682,0.5556,-0.3182,0.5879,0.7071,-0.3928,0.7682,0.5556,-0.3182,0.6533,0.7071,-0.2706,0.6533,0.7071,-0.2706,0.7682,0.5556,-0.3182,0.8155,0.5556,-0.1622,0.6533,0.7071,-0.2706,0.8155,0.5556,-0.1622,0.6935,0.7071,-0.1379,0.6935,0.7071,-0.1379,0.8155,0.5556,-0.1622,0.8315,0.5556,0.0,0.6935,0.7071,-0.1379,0.8315,0.5556,0.0,0.7071,0.7071,0.0,0.7071,0.7071,0.0,0.8315,0.5556,0.0,0.8155,0.5556,0.1622,0.7071,0.7071,0.0,0.8155,0.5556,0.1622,0.6935,0.7071,0.138,0.6935,0.7071,0.138,0.8155,0.5556,0.1622,0.7682,0.5556,0.3182,0.6935,0.7071,0.138,0.7682,0.5556,0.3182,0.6533,0.7071,0.2706,0.6533,0.7071,0.2706,0.7682,0.5556,0.3182,0.6913,0.5556,0.4619,0.6533,0.7071,0.2706,0.6913,0.5556,0.4619,0.5879,0.7071,0.3928,0.5879,0.7071,0.3928,0.6913,0.5556,0.4619,0.5879,0.5556,0.5879,0.5879,0.7071,0.3928,0.5879,0.5556,0.5879,0.5,0.7071,0.5,0.5,0.7071,0.5,0.5879,0.5556,0.5879,0.4619,0.5556,0.6913,0.5,0.7071,0.5,0.4619,0.5556,0.6913,0.3928,0.7071,0.5879,0.3928,0.7071,0.5879,0.4619,0.5556,0.6913,0.3182,0.5556,0.7682,0.3928,0.7071,0.5879,0.3182,0.5556,0.7682,0.2706,0.7071,0.6533,0.2706,0.7071,0.6533,0.3182,0.5556,0.7682,0.1622,0.5556,0.8155,0.2706,0.7071,0.6533,0.1622,0.5556,0.8155,0.1379,0.7071,0.6935,0.1379,0.7071,0.6935,0.1622,0.5556,0.8155,0.0,0.5556,0.8315,0.1379,0.7071,0.6935,0.0,0.5556,0.8315,0.0,0.7071,0.7071,0.0,0.5556,0.8315,0.0,0.3827,0.9239,-0.1802,0.3827,0.9061,0.0,0.5556,0.8315,-0.1802,0.3827,0.9061,-0.1622,0.5556,0.8155,-0.1622,0.5556,0.8155,-0.1802,0.3827,0.9061,-0.3536,0.3827,0.8536,-0.1622,0.5556,0.8155,-0.3536,0.3827,0.8536,-0.3182,0.5556,0.7682,-0.3182,0.5556,0.7682,-0.3536,0.3827,0.8536,-0.5133,0.3827,0.7682,-0.3182,0.5556,0.7682,-0.5133,0.3827,0.7682,-0.4619,0.5556,0.6913,-0.4619,0.5556,0.6913,-0.5133,0.3827,0.7682,-0.6533,0.3827,0.6533,-0.4619,0.5556,0.6913,-0.6533,0.3827,0.6533,-0.5879,0.5556,0.5879,-0.5879,0.5556,0.5879,-0.6533,0.3827,0.6533,-0.7682,0.3827,0.5133,-0.5879,0.5556,0.5879,-0.7682,0.3827,0.5133,-0.6913,0.5556,0.4619,-0.6913,0.5556,0.4619,-0.7682,0.3827,0.5133,-0.8536,0.3827,0.3536,-0.6913,0.5556,0.4619,-0.8536,0.3827,0.3536,-0.7682,0.5556,0.3182,-0.7682,0.5556,0.3182,-0.8536,0.3827,0.3536,-0.9061,0.3827,0.1802,-0.7682,0.5556,0.3182,-0.9061,0.3827,0.1802,-0.8155,0.5556,0.1622,-0.8155,0.5556,0.1622,-0.9061,0.3827,0.1802,-0.9239,0.3827,0.0,-0.8155,0.5556,0.1622,-0.9239,0.3827,0.0,-0.8315,0.5556,0.0,-0.8315,0.5556,0.0,-0.9239,0.3827,0.0,-0.9061,0.3827,-0.1802,-0.8315,0.5556,0.0,-0.9061,0.3827,-0.1802,-0.8155,0.5556,-0.1622,-0.8155,0.5556,-0.1622,-0.9061,0.3827,-0.1802,-0.8536,0.3827,-0.3536,-0.8155,0.5556,-0.1622,-0.8536,0.3827,-0.3536,-0.7682,0.5556,-0.3182,-0.7682,0.5556,-0.3182,-0.8536,0.3827,-0.3536,-0.7682,0.3827,-0.5133,-0.7682,0.5556,-0.3182,-0.7682,0.3827,-0.5133,-0.6913,0.5556,-0.4619,-0.6913,0.5556,-0.4619,-0.7682,0.3827,-0.5133,-0.6533,0.3827,-0.6533,-0.6913,0.5556,-0.4619,-0.6533,0.3827,-0.6533,-0.5879,0.5556,-0.5879,-0.5879,0.5556,-0.5879,-0.6533,0.3827,-0.6533,-0.5133,0.3827,-0.7682,-0.5879,0.5556,-0.5879,-0.5133,0.3827,-0.7682,-0.4619,0.5556,-0.6913,-0.4619,0.5556,-0.6913,-0.5133,0.3827,-0.7682,-0.3536,0.3827,-0.8536,-0.4619,0.5556,-0.6913,-0.3536,0.3827,-0.8536,-0.3182,0.5556,-0.7682,-0.3182,0.5556,-0.7682,-0.3536,0.3827,-0.8536,-0.1802,0.3827,-0.9061,-0.3182,0.5556,-0.7682,-0.1802,0.3827,-0.9061,-0.1622,0.5556,-0.8155,-0.1622,0.5556,-0.8155,-0.1802,0.3827,-0.9061,0.0,0.3827,-0.9239,-0.1622,0.5556,-0.8155,0.0,0.3827,-0.9239,0.0,0.5556,-0.8315,0.0,0.5556,-0.8315,0.0,0.3827,-0.9239,0.1802,0.3827,-0.9061,0.0,0.5556,-0.8315,0.1802,0.3827,-0.9061,0.1622,0.5556,-0.8155,0.1622,0.5556,-0.8155,0.1802,0.3827,-0.9061,0.3536,0.3827,-0.8536,0.1622,0.5556,-0.8155,0.3536,0.3827,-0.8536,0.3182,0.5556,-0.7682,0.3182,0.5556,-0.7682,0.3536,0.3827,-0.8536,0.5133,0.3827,-0.7682,0.3182,0.5556,-0.7682,0.5133,0.3827,-0.7682,0.4619,0.5556,-0.6913,0.4619,0.5556,-0.6913,0.5133,0.3827,-0.7682,0.6533,0.3827,-0.6533,0.4619,0.5556,-0.6913,0.6533,0.3827,-0.6533,0.5879,0.5556,-0.5879,0.5879,0.5556,-0.5879,0.6533,0.3827,-0.6533,0.7682,0.3827,-0.5133,0.5879,0.5556,-0.5879,0.7682,0.3827,-0.5133,0.6913,0.5556,-0.4619,0.6913,0.5556,-0.4619,0.7682,0.3827,-0.5133,0.8536,0.3827,-0.3536,0.6913,0.5556,-0.4619,0.8536,0.3827,-0.3536,0.7682,0.5556,-0.3182,0.7682,0.5556,-0.3182,0.8536,0.3827,-0.3536,0.9061,0.3827,-0.1802,0.7682,0.5556,-0.3182,0.9061,0.3827,-0.1802,0.8155,0.5556,-0.1622,0.8155,0.5556,-0.1622,0.9061,0.3827,-0.1802,0.9239,0.3827,0.0,0.8155,0.5556,-0.1622,0.9239,0.3827,0.0,0.8315,0.5556,0.0,0.8315,0.5556,0.0,0.9239,0.3827,0.0,0.9061,0.3827,0.1802,0.8315,0.5556,0.0,0.9061,0.3827,0.1802,0.8155,0.5556,0.1622,0.8155,0.5556,0.1622,0.9061,0.3827,0.1802,0.8536,0.3827,0.3536,0.8155,0.5556,0.1622,0.8536,0.3827,0.3536,0.7682,0.5556,0.3182,0.7682,0.5556,0.3182,0.8536,0.3827,0.3536,0.7682,0.3827,0.5133,0.7682,0.5556,0.3182,0.7682,0.3827,0.5133,0.6913,0.5556,0.4619,0.6913,0.5556,0.4619,0.7682,0.3827,0.5133,0.6533,0.3827,0.6533,0.6913,0.5556,0.4619,0.6533,0.3827,0.6533,0.5879,0.5556,0.5879,0.5879,0.5556,0.5879,0.6533,0.3827,0.6533,0.5133,0.3827,0.7682,0.5879,0.5556,0.5879,0.5133,0.3827,0.7682,0.4619,0.5556,0.6913,0.4619,0.5556,0.6913,0.5133,0.3827,0.7682,0.3536,0.3827,0.8536,0.4619,0.5556,0.6913,0.3536,0.3827,0.8536,0.3182,0.5556,0.7682,0.3182,0.5556,0.7682,0.3536,0.3827,0.8536,0.1802,0.3827,0.9061,0.3182,0.5556,0.7682,0.1802,0.3827,0.9061,0.1622,0.5556,0.8155,0.1622,0.5556,0.8155,0.1802,0.3827,0.9061,0.0,0.3827,0.9239,0.1622,0.5556,0.8155,0.0,0.3827,0.9239,0.0,0.5556,0.8315,0.0,0.3827,0.9239,0.0,0.1951,0.9808,-0.1913,0.1951,0.9619,0.0,0.3827,0.9239,-0.1913,0.1951,0.9619,-0.1802,0.3827,0.9061,-0.1802,0.3827,0.9061,-0.1913,0.1951,0.9619,-0.3753,0.1951,0.9061,-0.1802,0.3827,0.9061,-0.3753,0.1951,0.9061,-0.3536,0.3827,0.8536,-0.3536,0.3827,0.8536,-0.3753,0.1951,0.9061,-0.5449,0.1951,0.8155,-0.3536,0.3827,0.8536,-0.5449,0.1951,0.8155,-0.5133,0.3827,0.7682,-0.5133,0.3827,0.7682,-0.5449,0.1951,0.8155,-0.6935,0.1951,0.6935,-0.5133,0.3827,0.7682,-0.6935,0.1951,0.6935,-0.6533,0.3827,0.6533,-0.6533,0.3827,0.6533,-0.6935,0.1951,0.6935,-0.8155,0.1951,0.5449,-0.6533,0.3827,0.6533,-0.8155,0.1951,0.5449,-0.7682,0.3827,0.5133,-0.7682,0.3827,0.5133,-0.8155,0.1951,0.5449,-0.9061,0.1951,0.3753,-0.7682,0.3827,0.5133,-0.9061,0.1951,0.3753,-0.8536,0.3827,0.3536,-0.8536,0.3827,0.3536,-0.9061,0.1951,0.3753,-0.9619,0.1951,0.1913,-0.8536,0.3827,0.3536,-0.9619,0.1951,0.1913,-0.9061,0.3827,0.1802,-0.9061,0.3827,0.1802,-0.9619,0.1951,0.1913,-0.9808,0.1951,0.0,-0.9061,0.3827,0.1802,-0.9808,0.1951,0.0,-0.9239,0.3827,0.0,-0.9239,0.3827,0.0,-0.9808,0.1951,0.0,-0.9619,0.1951,-0.1913,-0.9239,0.3827,0.0,-0.9619,0.1951,-0.1913,-0.9061,0.3827,-0.1802,-0.9061,0.3827,-0.1802,-0.9619,0.1951,-0.1913,-0.9061,0.1951,-0.3753,-0.9061,0.3827,-0.1802,-0.9061,0.1951,-0.3753,-0.8536,0.3827,-0.3536,-0.8536,0.3827,-0.3536,-0.9061,0.1951,-0.3753,-0.8155,0.1951,-0.5449,-0.8536,0.3827,-0.3536,-0.8155,0.1951,-0.5449,-0.7682,0.3827,-0.5133,-0.7682,0.3827,-0.5133,-0.8155,0.1951,-0.5449,-0.6935,0.1951,-0.6935,-0.7682,0.3827,-0.5133,-0.6935,0.1951,-0.6935,-0.6533,0.3827,-0.6533,-0.6533,0.3827,-0.6533,-0.6935,0.1951,-0.6935,-0.5449,0.1951,-0.8155,-0.6533,0.3827,-0.6533,-0.5449,0.1951,-0.8155,-0.5133,0.3827,-0.7682,-0.5133,0.3827,-0.7682,-0.5449,0.1951,-0.8155,-0.3753,0.1951,-0.9061,-0.5133,0.3827,-0.7682,-0.3753,0.1951,-0.9061,-0.3536,0.3827,-0.8536,-0.3536,0.3827,-0.8536,-0.3753,0.1951,-0.9061,-0.1913,0.1951,-0.9619,-0.3536,0.3827,-0.8536,-0.1913,0.1951,-0.9619,-0.1802,0.3827,-0.9061,-0.1802,0.3827,-0.9061,-0.1913,0.1951,-0.9619,0.0,0.1951,-0.9808,-0.1802,0.3827,-0.9061,0.0,0.1951,-0.9808,0.0,0.3827,-0.9239,0.0,0.3827,-0.9239,0.0,0.1951,-0.9808,0.1913,0.1951,-0.9619,0.0,0.3827,-0.9239,0.1913,0.1951,-0.9619,0.1802,0.3827,-0.9061,0.1802,0.3827,-0.9061,0.1913,0.1951,-0.9619,0.3753,0.1951,-0.9061,0.1802,0.3827,-0.9061,0.3753,0.1951,-0.9061,0.3536,0.3827,-0.8536,0.3536,0.3827,-0.8536,0.3753,0.1951,-0.9061,0.5449,0.1951,-0.8155,0.3536,0.3827,-0.8536,0.5449,0.1951,-0.8155,0.5133,0.3827,-0.7682,0.5133,0.3827,-0.7682,0.5449,0.1951,-0.8155,0.6935,0.1951,-0.6935,0.5133,0.3827,-0.7682,0.6935,0.1951,-0.6935,0.6533,0.3827,-0.6533,0.6533,0.3827,-0.6533,0.6935,0.1951,-0.6935,0.8155,0.1951,-0.5449,0.6533,0.3827,-0.6533,0.8155,0.1951,-0.5449,0.7682,0.3827,-0.5133,0.7682,0.3827,-0.5133,0.8155,0.1951,-0.5449,0.9061,0.1951,-0.3753,0.7682,0.3827,-0.5133,0.9061,0.1951,-0.3753,0.8536,0.3827,-0.3536,0.8536,0.3827,-0.3536,0.9061,0.1951,-0.3753,0.9619,0.1951,-0.1913,0.8536,0.3827,-0.3536,0.9619,0.1951,-0.1913,0.9061,0.3827,-0.1802,0.9061,0.3827,-0.1802,0.9619,0.1951,-0.1913,0.9808,0.1951,0.0,0.9061,0.3827,-0.1802,0.9808,0.1951,0.0,0.9239,0.3827,0.0,0.9239,0.3827,0.0,0.9808,0.1951,0.0,0.9619,0.1951,0.1913,0.9239,0.3827,0.0,0.9619,0.1951,0.1913,0.9061,0.3827,0.1802,0.9061,0.3827,0.1802,0.9619,0.1951,0.1913,0.9061,0.1951,0.3753,0.9061,0.3827,0.1802,0.9061,0.1951,0.3753,0.8536,0.3827,0.3536,0.8536,0.3827,0.3536,0.9061,0.1951,0.3753,0.8155,0.1951,0.5449,0.8536,0.3827,0.3536,0.8155,0.1951,0.5449,0.7682,0.3827,0.5133,0.7682,0.3827,0.5133,0.8155,0.1951,0.5449,0.6935,0.1951,0.6935,0.7682,0.3827,0.5133,0.6935,0.1951,0.6935,0.6533,0.3827,0.6533,0.6533,0.3827,0.6533,0.6935,0.1951,0.6935,0.5449,0.1951,0.8155,0.6533,0.3827,0.6533,0.5449,0.1951,0.8155,0.5133,0.3827,0.7682,0.5133,0.3827,0.7682,0.5449,0.1951,0.8155,0.3753,0.1951,0.9061,0.5133,0.3827,0.7682,0.3753,0.1951,0.9061,0.3536,0.3827,0.8536,0.3536,0.3827,0.8536,0.3753,0.1951,0.9061,0.1913,0.1951,0.9619,0.3536,0.3827,0.8536,0.1913,0.1951,0.9619,0.1802,0.3827,0.9061,0.1802,0.3827,0.9061,0.1913,0.1951,0.9619,0.0,0.1951,0.9808,0.1802,0.3827,0.9061,0.0,0.1951,0.9808,0.0,0.3827,0.9239,0.0,0.1951,0.9808,0.0,0.0,1.0,-0.1951,0.0,0.9808,0.0,0.1951,0.9808,-0.1951,0.0,0.9808,-0.1913,0.1951,0.9619,-0.1913,0.1951,0.9619,-0.1951,0.0,0.9808,-0.3827,0.0,0.9239,-0.1913,0.1951,0.9619,-0.3827,0.0,0.9239,-0.3753,0.1951,0.9061,-0.3753,0.1951,0.9061,-0.3827,0.0,0.9239,-0.5556,0.0,0.8315,-0.3753,0.1951,0.9061,-0.5556,0.0,0.8315,-0.5449,0.1951,0.8155,-0.5449,0.1951,0.8155,-0.5556,0.0,0.8315,-0.7071,0.0,0.7071,-0.5449,0.1951,0.8155,-0.7071,0.0,0.7071,-0.6935,0.1951,0.6935,-0.6935,0.1951,0.6935,-0.7071,0.0,0.7071,-0.8315,0.0,0.5556,-0.6935,0.1951,0.6935,-0.8315,0.0,0.5556,-0.8155,0.1951,0.5449,-0.8155,0.1951,0.5449,-0.8315,0.0,0.5556,-0.9239,0.0,0.3827,-0.8155,0.1951,0.5449,-0.9239,0.0,0.3827,-0.9061,0.1951,0.3753,-0.9061,0.1951,0.3753,-0.9239,0.0,0.3827,-0.9808,0.0,0.1951,-0.9061,0.1951,0.3753,-0.9808,0.0,0.1951,-0.9619,0.1951,0.1913,-0.9619,0.1951,0.1913,-0.9808,0.0,0.1951,-1.0,0.0,0.0,-0.9619,0.1951,0.1913,-1.0,0.0,0.0,-0.9808,0.1951,0.0,-0.9808,0.1951,0.0,-1.0,0.0,0.0,-0.9808,0.0,-0.1951,-0.9808,0.1951,0.0,-0.9808,0.0,-0.1951,-0.9619,0.1951,-0.1913,-0.9619,0.1951,-0.1913,-0.9808,0.0,-0.1951,-0.9239,0.0,-0.3827,-0.9619,0.1951,-0.1913,-0.9239,0.0,-0.3827,-0.9061,0.1951,-0.3753,-0.9061,0.1951,-0.3753,-0.9239,0.0,-0.3827,-0.8315,0.0,-0.5556,-0.9061,0.1951,-0.3753,-0.8315,0.0,-0.5556,-0.8155,0.1951,-0.5449,-0.8155,0.1951,-0.5449,-0.8315,0.0,-0.5556,-0.7071,0.0,-0.7071,-0.8155,0.1951,-0.5449,-0.7071,0.0,-0.7071,-0.6935,0.1951,-0.6935,-0.6935,0.1951,-0.6935,-0.7071,0.0,-0.7071,-0.5556,0.0,-0.8315,-0.6935,0.1951,-0.6935,-0.5556,0.0,-0.8315,-0.5449,0.1951,-0.8155,-0.5449,0.1951,-0.8155,-0.5556,0.0,-0.8315,-0.3827,0.0,-0.9239,-0.5449,0.1951,-0.8155,-0.3827,0.0,-0.9239,-0.3753,0.1951,-0.9061,-0.3753,0.1951,-0.9061,-0.3827,0.0,-0.9239,-0.1951,0.0,-0.9808,-0.3753,0.1951,-0.9061,-0.1951,0.0,-0.9808,-0.1913,0.1951,-0.9619,-0.1913,0.1951,-0.9619,-0.1951,0.0,-0.9808,0.0,0.0,-1.0,-0.1913,0.1951,-0.9619,0.0,0.0,-1.0,0.0,0.1951,-0.9808,0.0,0.1951,-0.9808,0.0,0.0,-1.0,0.1951,0.0,-0.9808,0.0,0.1951,-0.9808,0.1951,0.0,-0.9808,0.1913,0.1951,-0.9619,0.1913,0.1951,-0.9619,0.1951,0.0,-0.9808,0.3827,0.0,-0.9239,0.1913,0.1951,-0.9619,0.3827,0.0,-0.9239,0.3753,0.1951,-0.9061,0.3753,0.1951,-0.9061,0.3827,0.0,-0.9239,0.5556,0.0,-0.8315,0.3753,0.1951,-0.9061,0.5556,0.0,-0.8315,0.5449,0.1951,-0.8155,0.5449,0.1951,-0.8155,0.5556,0.0,-0.8315,0.7071,0.0,-0.7071,0.5449,0.1951,-0.8155,0.7071,0.0,-0.7071,0.6935,0.1951,-0.6935,0.6935,0.1951,-0.6935,0.7071,0.0,-0.7071,0.8315,0.0,-0.5556,0.6935,0.1951,-0.6935,0.8315,0.0,-0.5556,0.8155,0.1951,-0.5449,0.8155,0.1951,-0.5449,0.8315,0.0,-0.5556,0.9239,0.0,-0.3827,0.8155,0.1951,-0.5449,0.9239,0.0,-0.3827,0.9061,0.1951,-0.3753,0.9061,0.1951,-0.3753,0.9239,0.0,-0.3827,0.9808,0.0,-0.1951,0.9061,0.1951,-0.3753,0.9808,0.0,-0.1951,0.9619,0.1951,-0.1913,0.9619,0.1951,-0.1913,0.9808,0.0,-0.1951,1.0,0.0,0.0,0.9619,0.1951,-0.1913,1.0,0.0,0.0,0.9808,0.1951,0.0,0.9808,0.1951,0.0,1.0,0.0,0.0,0.9808,0.0,0.1951,0.9808,0.1951,0.0,0.9808,0.0,0.1951,0.9619,0.1951,0.1913,0.9619,0.1951,0.1913,0.9808,0.0,0.1951,0.9239,0.0,0.3827,0.9619,0.1951,0.1913,0.9239,0.0,0.3827,0.9061,0.1951,0.3753,0.9061,0.1951,0.3753,0.9239,0.0,0.3827,0.8315,0.0,0.5556,0.9061,0.1951,0.3753,0.8315,0.0,0.5556,0.8155,0.1951,0.5449,0.8155,0.1951,0.5449,0.8315,0.0,0.5556,0.7071,0.0,0.7071,0.8155,0.1951,0.5449,0.7071,0.0,0.7071,0.6935,0.1951,0.6935,0.6935,0.1951,0.6935,0.7071,0.0,0.7071,0.5556,0.0,0.8315,0.6935,0.1951,0.6935,0.5556,0.0,0.8315,0.5449,0.1951,0.8155,0.5449,0.1951,0.8155,0.5556,0.0,0.8315,0.3827,0.0,0.9239,0.5449,0.1951,0.8155,0.3827,0.0,0.9239,0.3753,0.1951,0.9061,0.3753,0.1951,0.9061,0.3827,0.0,0.9239,0.1951,0.0,0.9808,0.3753,0.1951,0.9061,0.1951,0.0,0.9808,0.1913,0.1951,0.9619,0.1913,0.1951,0.9619,0.1951,0.0,0.9808,0.0,0.0,1.0,0.1913,0.1951,0.9619,0.0,0.0,1.0,0.0,0.1951,0.9808,0.0,0.0,1.0,0.0,-0.1951,0.9808,-0.1913,-0.1951,0.9619,0.0,0.0,1.0,-0.1913,-0.1951,0.9619,-0.1951,0.0,0.9808,-0.1951,0.0,0.9808,-0.1913,-0.1951,0.9619,-0.3753,-0.1951,0.9061,-0.1951,0.0,0.9808,-0.3753,-0.1951,0.9061,-0.3827,0.0,0.9239,-0.3827,0.0,0.9239,-0.3753,-0.1951,0.9061,-0.5449,-0.1951,0.8155,-0.3827,0.0,0.9239,-0.5449,-0.1951,0.8155,-0.5556,0.0,0.8315,-0.5556,0.0,0.8315,-0.5449,-0.1951,0.8155,-0.6935,-0.1951,0.6935,-0.5556,0.0,0.8315,-0.6935,-0.1951,0.6935,-0.7071,0.0,0.7071,-0.7071,0.0,0.7071,-0.6935,-0.1951,0.6935,-0.8155,-0.1951,0.5449,-0.7071,0.0,0.7071,-0.8155,-0.1951,0.5449,-0.8315,0.0,0.5556,-0.8315,0.0,0.5556,-0.8155,-0.1951,0.5449,-0.9061,-0.1951,0.3753,-0.8315,0.0,0.5556,-0.9061,-0.1951,0.3753,-0.9239,0.0,0.3827,-0.9239,0.0,0.3827,-0.9061,-0.1951,0.3753,-0.9619,-0.1951,0.1913,-0.9239,0.0,0.3827,-0.9619,-0.1951,0.1913,-0.9808,0.0,0.1951,-0.9808,0.0,0.1951,-0.9619,-0.1951,0.1913,-0.9808,-0.1951,0.0,-0.9808,0.0,0.1951,-0.9808,-0.1951,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-0.9808,-0.1951,0.0,-0.9619,-0.1951,-0.1913,-1.0,0.0,0.0,-0.9619,-0.1951,-0.1913,-0.9808,0.0,-0.1951,-0.9808,0.0,-0.1951,-0.9619,-0.1951,-0.1913,-0.9061,-0.1951,-0.3753,-0.9808,0.0,-0.1951,-0.9061,-0.1951,-0.3753,-0.9239,0.0,-0.3827,-0.9239,0.0,-0.3827,-0.9061,-0.1951,-0.3753,-0.8155,-0.1951,-0.5449,-0.9239,0.0,-0.3827,-0.8155,-0.1951,-0.5449,-0.8315,0.0,-0.5556,-0.8315,0.0,-0.5556,-0.8155,-0.1951,-0.5449,-0.6935,-0.1951,-0.6935,-0.8315,0.0,-0.5556,-0.6935,-0.1951,-0.6935,-0.7071,0.0,-0.7071,-0.7071,0.0,-0.7071,-0.6935,-0.1951,-0.6935,-0.5449,-0.1951,-0.8155,-0.7071,0.0,-0.7071,-0.5449,-0.1951,-0.8155,-0.5556,0.0,-0.8315,-0.5556,0.0,-0.8315,-0.5449,-0.1951,-0.8155,-0.3753,-0.1951,-0.9061,-0.5556,0.0,-0.8315,-0.3753,-0.1951,-0.9061,-0.3827,0.0,-0.9239,-0.3827,0.0,-0.9239,-0.3753,-0.1951,-0.9061,-0.1913,-0.1951,-0.9619,-0.3827,0.0,-0.9239,-0.1913,-0.1951,-0.9619,-0.1951,0.0,-0.9808,-0.1951,0.0,-0.9808,-0.1913,-0.1951,-0.9619,0.0,-0.1951,-0.9808,-0.1951,0.0,-0.9808,0.0,-0.1951,-0.9808,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,-0.1951,-0.9808,0.1913,-0.1951,-0.9619,0.0,0.0,-1.0,0.1913,-0.1951,-0.9619,0.1951,0.0,-0.9808,0.1951,0.0,-0.9808,0.1913,-0.1951,-0.9619,0.3753,-0.1951,-0.9061,0.1951,0.0,-0.9808,0.3753,-0.1951,-0.9061,0.3827,0.0,-0.9239,0.3827,0.0,-0.9239,0.3753,-0.1951,-0.9061,0.5449,-0.1951,-0.8155,0.3827,0.0,-0.9239,0.5449,-0.1951,-0.8155,0.5556,0.0,-0.8315,0.5556,0.0,-0.8315,0.5449,-0.1951,-0.8155,0.6935,-0.1951,-0.6935,0.5556,0.0,-0.8315,0.6935,-0.1951,-0.6935,0.7071,0.0,-0.7071,0.7071,0.0,-0.7071,0.6935,-0.1951,-0.6935,0.8155,-0.1951,-0.5449,0.7071,0.0,-0.7071,0.8155,-0.1951,-0.5449,0.8315,0.0,-0.5556,0.8315,0.0,-0.5556,0.8155,-0.1951,-0.5449,0.9061,-0.1951,-0.3753,0.8315,0.0,-0.5556,0.9061,-0.1951,-0.3753,0.9239,0.0,-0.3827,0.9239,0.0,-0.3827,0.9061,-0.1951,-0.3753,0.9619,-0.1951,-0.1913,0.9239,0.0,-0.3827,0.9619,-0.1951,-0.1913,0.9808,0.0,-0.1951,0.9808,0.0,-0.1951,0.9619,-0.1951,-0.1913,0.9808,-0.1951,0.0,0.9808,0.0,-0.1951,0.9808,-0.1951,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.9808,-0.1951,0.0,0.9619,-0.1951,0.1913,1.0,0.0,0.0,0.9619,-0.1951,0.1913,0.9808,0.0,0.1951,0.9808,0.0,0.1951,0.9619,-0.1951,0.1913,0.9061,-0.1951,0.3753,0.9808,0.0,0.1951,0.9061,-0.1951,0.3753,0.9239,0.0,0.3827,0.9239,0.0,0.3827,0.9061,-0.1951,0.3753,0.8155,-0.1951,0.5449,0.9239,0.0,0.3827,0.8155,-0.1951,0.5449,0.8315,0.0,0.5556,0.8315,0.0,0.5556,0.8155,-0.1951,0.5449,0.6935,-0.1951,0.6935,0.8315,0.0,0.5556,0.6935,-0.1951,0.6935,0.7071,0.0,0.7071,0.7071,0.0,0.7071,0.6935,-0.1951,0.6935,0.5449,-0.1951,0.8155,0.7071,0.0,0.7071,0.5449,-0.1951,0.8155,0.5556,0.0,0.8315,0.5556,0.0,0.8315,0.5449,-0.1951,0.8155,0.3753,-0.1951,0.9061,0.5556,0.0,0.8315,0.3753,-0.1951,0.9061,0.3827,0.0,0.9239,0.3827,0.0,0.9239,0.3753,-0.1951,0.9061,0.1913,-0.1951,0.9619,0.3827,0.0,0.9239,0.1913,-0.1951,0.9619,0.1951,0.0,0.9808,0.1951,0.0,0.9808,0.1913,-0.1951,0.9619,0.0,-0.1951,0.9808,0.1951,0.0,0.9808,0.0,-0.1951,0.9808,0.0,0.0,1.0,0.0,-0.1951,0.9808,0.0,-0.3827,0.9239,-0.1802,-0.3827,0.9061,0.0,-0.1951,0.9808,-0.1802,-0.3827,0.9061,-0.1913,-0.1951,0.9619,-0.1913,-0.1951,0.9619,-0.1802,-0.3827,0.9061,-0.3536,-0.3827,0.8536,-0.1913,-0.1951,0.9619,-0.3536,-0.3827,0.8536,-0.3753,-0.1951,0.9061,-0.3753,-0.1951,0.9061,-0.3536,-0.3827,0.8536,-0.5133,-0.3827,0.7682,-0.3753,-0.1951,0.9061,-0.5133,-0.3827,0.7682,-0.5449,-0.1951,0.8155,-0.5449,-0.1951,0.8155,-0.5133,-0.3827,0.7682,-0.6533,-0.3827,0.6533,-0.5449,-0.1951,0.8155,-0.6533,-0.3827,0.6533,-0.6935,-0.1951,0.6935,-0.6935,-0.1951,0.6935,-0.6533,-0.3827,0.6533,-0.7682,-0.3827,0.5133,-0.6935,-0.1951,0.6935,-0.7682,-0.3827,0.5133,-0.8155,-0.1951,0.5449,-0.8155,-0.1951,0.5449,-0.7682,-0.3827,0.5133,-0.8536,-0.3827,0.3536,-0.8155,-0.1951,0.5449,-0.8536,-0.3827,0.3536,-0.9061,-0.1951,0.3753,-0.9061,-0.1951,0.3753,-0.8536,-0.3827,0.3536,-0.9061,-0.3827,0.1802,-0.9061,-0.1951,0.3753,-0.9061,-0.3827,0.1802,-0.9619,-0.1951,0.1913,-0.9619,-0.1951,0.1913,-0.9061,-0.3827,0.1802,-0.9239,-0.3827,0.0,-0.9619,-0.1951,0.1913,-0.9239,-0.3827,0.0,-0.9808,-0.1951,0.0,-0.9808,-0.1951,0.0,-0.9239,-0.3827,0.0,-0.9061,-0.3827,-0.1802,-0.9808,-0.1951,0.0,-0.9061,-0.3827,-0.1802,-0.9619,-0.1951,-0.1913,-0.9619,-0.1951,-0.1913,-0.9061,-0.3827,-0.1802,-0.8536,-0.3827,-0.3536,-0.9619,-0.1951,-0.1913,-0.8536,-0.3827,-0.3536,-0.9061,-0.1951,-0.3753,-0.9061,-0.1951,-0.3753,-0.8536,-0.3827,-0.3536,-0.7682,-0.3827,-0.5133,-0.9061,-0.1951,-0.3753,-0.7682,-0.3827,-0.5133,-0.8155,-0.1951,-0.5449,-0.8155,-0.1951,-0.5449,-0.7682,-0.3827,-0.5133,-0.6533,-0.3827,-0.6533,-0.8155,-0.1951,-0.5449,-0.6533,-0.3827,-0.6533,-0.6935,-0.1951,-0.6935,-0.6935,-0.1951,-0.6935,-0.6533,-0.3827,-0.6533,-0.5133,-0.3827,-0.7682,-0.6935,-0.1951,-0.6935,-0.5133,-0.3827,-0.7682,-0.5449,-0.1951,-0.8155,-0.5449,-0.1951,-0.8155,-0.5133,-0.3827,-0.7682,-0.3536,-0.3827,-0.8536,-0.5449,-0.1951,-0.8155,-0.3536,-0.3827,-0.8536,-0.3753,-0.1951,-0.9061,-0.3753,-0.1951,-0.9061,-0.3536,-0.3827,-0.8536,-0.1802,-0.3827,-0.9061,-0.3753,-0.1951,-0.9061,-0.1802,-0.3827,-0.9061,-0.1913,-0.1951,-0.9619,-0.1913,-0.1951,-0.9619,-0.1802,-0.3827,-0.9061,0.0,-0.3827,-0.9239,-0.1913,-0.1951,-0.9619,0.0,-0.3827,-0.9239,0.0,-0.1951,-0.9808,0.0,-0.1951,-0.9808,0.0,-0.3827,-0.9239,0.1802,-0.3827,-0.9061,0.0,-0.1951,-0.9808,0.1802,-0.3827,-0.9061,0.1913,-0.1951,-0.9619,0.1913,-0.1951,-0.9619,0.1802,-0.3827,-0.9061,0.3536,-0.3827,-0.8536,0.1913,-0.1951,-0.9619,0.3536,-0.3827,-0.8536,0.3753,-0.1951,-0.9061,0.3753,-0.1951,-0.9061,0.3536,-0.3827,-0.8536,0.5133,-0.3827,-0.7682,0.3753,-0.1951,-0.9061,0.5133,-0.3827,-0.7682,0.5449,-0.1951,-0.8155,0.5449,-0.1951,-0.8155,0.5133,-0.3827,-0.7682,0.6533,-0.3827,-0.6533,0.5449,-0.1951,-0.8155,0.6533,-0.3827,-0.6533,0.6935,-0.1951,-0.6935,0.6935,-0.1951,-0.6935,0.6533,-0.3827,-0.6533,0.7682,-0.3827,-0.5133,0.6935,-0.1951,-0.6935,0.7682,-0.3827,-0.5133,0.8155,-0.1951,-0.5449,0.8155,-0.1951,-0.5449,0.7682,-0.3827,-0.5133,0.8536,-0.3827,-0.3536,0.8155,-0.1951,-0.5449,0.8536,-0.3827,-0.3536,0.9061,-0.1951,-0.3753,0.9061,-0.1951,-0.3753,0.8536,-0.3827,-0.3536,0.9061,-0.3827,-0.1802,0.9061,-0.1951,-0.3753,0.9061,-0.3827,-0.1802,0.9619,-0.1951,-0.1913,0.9619,-0.1951,-0.1913,0.9061,-0.3827,-0.1802,0.9239,-0.3827,0.0,0.9619,-0.1951,-0.1913,0.9239,-0.3827,0.0,0.9808,-0.1951,0.0,0.9808,-0.1951,0.0,0.9239,-0.3827,0.0,0.9061,-0.3827,0.1802,0.9808,-0.1951,0.0,0.9061,-0.3827,0.1802,0.9619,-0.1951,0.1913,0.9619,-0.1951,0.1913,0.9061,-0.3827,0.1802,0.8536,-0.3827,0.3536,0.9619,-0.1951,0.1913,0.8536,-0.3827,0.3536,0.9061,-0.1951,0.3753,0.9061,-0.1951,0.3753,0.8536,-0.3827,0.3536,0.7682,-0.3827,0.5133,0.9061,-0.1951,0.3753,0.7682,-0.3827,0.5133,0.8155,-0.1951,0.5449,0.8155,-0.1951,0.5449,0.7682,-0.3827,0.5133,0.6533,-0.3827,0.6533,0.8155,-0.1951,0.5449,0.6533,-0.3827,0.6533,0.6935,-0.1951,0.6935,0.6935,-0.1951,0.6935,0.6533,-0.3827,0.6533,0.5133,-0.3827,0.7682,0.6935,-0.1951,0.6935,0.5133,-0.3827,0.7682,0.5449,-0.1951,0.8155,0.5449,-0.1951,0.8155,0.5133,-0.3827,0.7682,0.3536,-0.3827,0.8536,0.5449,-0.1951,0.8155,0.3536,-0.3827,0.8536,0.3753,-0.1951,0.9061,0.3753,-0.1951,0.9061,0.3536,-0.3827,0.8536,0.1802,-0.3827,0.9061,0.3753,-0.1951,0.9061,0.1802,-0.3827,0.9061,0.1913,-0.1951,0.9619,0.1913,-0.1951,0.9619,0.1802,-0.3827,0.9061,0.0,-0.3827,0.9239,0.1913,-0.1951,0.9619,0.0,-0.3827,0.9239,0.0,-0.1951,0.9808,0.0,-0.3827,0.9239,0.0,-0.5556,0.8315,-0.1622,-0.5556,0.8155,0.0,-0.3827,0.9239,-0.1622,-0.5556,0.8155,-0.1802,-0.3827,0.9061,-0.1802,-0.3827,0.9061,-0.1622,-0.5556,0.8155,-0.3182,-0.5556,0.7682,-0.1802,-0.3827,0.9061,-0.3182,-0.5556,0.7682,-0.3536,-0.3827,0.8536,-0.3536,-0.3827,0.8536,-0.3182,-0.5556,0.7682,-0.4619,-0.5556,0.6913,-0.3536,-0.3827,0.8536,-0.4619,-0.5556,0.6913,-0.5133,-0.3827,0.7682,-0.5133,-0.3827,0.7682,-0.4619,-0.5556,0.6913,-0.5879,-0.5556,0.5879,-0.5133,-0.3827,0.7682,-0.5879,-0.5556,0.5879,-0.6533,-0.3827,0.6533,-0.6533,-0.3827,0.6533,-0.5879,-0.5556,0.5879,-0.6913,-0.5556,0.4619,-0.6533,-0.3827,0.6533,-0.6913,-0.5556,0.4619,-0.7682,-0.3827,0.5133,-0.7682,-0.3827,0.5133,-0.6913,-0.5556,0.4619,-0.7682,-0.5556,0.3182,-0.7682,-0.3827,0.5133,-0.7682,-0.5556,0.3182,-0.8536,-0.3827,0.3536,-0.8536,-0.3827,0.3536,-0.7682,-0.5556,0.3182,-0.8155,-0.5556,0.1622,-0.8536,-0.3827,0.3536,-0.8155,-0.5556,0.1622,-0.9061,-0.3827,0.1802,-0.9061,-0.3827,0.1802,-0.8155,-0.5556,0.1622,-0.8315,-0.5556,0.0,-0.9061,-0.3827,0.1802,-0.8315,-0.5556,0.0,-0.9239,-0.3827,0.0,-0.9239,-0.3827,0.0,-0.8315,-0.5556,0.0,-0.8155,-0.5556,-0.1622,-0.9239,-0.3827,0.0,-0.8155,-0.5556,-0.1622,-0.9061,-0.3827,-0.1802,-0.9061,-0.3827,-0.1802,-0.8155,-0.5556,-0.1622,-0.7682,-0.5556,-0.3182,-0.9061,-0.3827,-0.1802,-0.7682,-0.5556,-0.3182,-0.8536,-0.3827,-0.3536,-0.8536,-0.3827,-0.3536,-0.7682,-0.5556,-0.3182,-0.6913,-0.5556,-0.4619,-0.8536,-0.3827,-0.3536,-0.6913,-0.5556,-0.4619,-0.7682,-0.3827,-0.5133,-0.7682,-0.3827,-0.5133,-0.6913,-0.5556,-0.4619,-0.5879,-0.5556,-0.5879,-0.7682,-0.3827,-0.5133,-0.5879,-0.5556,-0.5879,-0.6533,-0.3827,-0.6533,-0.6533,-0.3827,-0.6533,-0.5879,-0.5556,-0.5879,-0.4619,-0.5556,-0.6913,-0.6533,-0.3827,-0.6533,-0.4619,-0.5556,-0.6913,-0.5133,-0.3827,-0.7682,-0.5133,-0.3827,-0.7682,-0.4619,-0.5556,-0.6913,-0.3182,-0.5556,-0.7682,-0.5133,-0.3827,-0.7682,-0.3182,-0.5556,-0.7682,-0.3536,-0.3827,-0.8536,-0.3536,-0.3827,-0.8536,-0.3182,-0.5556,-0.7682,-0.1622,-0.5556,-0.8155,-0.3536,-0.3827,-0.8536,-0.1622,-0.5556,-0.8155,-0.1802,-0.3827,-0.9061,-0.1802,-0.3827,-0.9061,-0.1622,-0.5556,-0.8155,0.0,-0.5556,-0.8315,-0.1802,-0.3827,-0.9061,0.0,-0.5556,-0.8315,0.0,-0.3827,-0.9239,0.0,-0.3827,-0.9239,0.0,-0.5556,-0.8315,0.1622,-0.5556,-0.8155,0.0,-0.3827,-0.9239,0.1622,-0.5556,-0.8155,0.1802,-0.3827,-0.9061,0.1802,-0.3827,-0.9061,0.1622,-0.5556,-0.8155,0.3182,-0.5556,-0.7682,0.1802,-0.3827,-0.9061,0.3182,-0.5556,-0.7682,0.3536,-0.3827,-0.8536,0.3536,-0.3827,-0.8536,0.3182,-0.5556,-0.7682,0.4619,-0.5556,-0.6913,0.3536,-0.3827,-0.8536,0.4619,-0.5556,-0.6913,0.5133,-0.3827,-0.7682,0.5133,-0.3827,-0.7682,0.4619,-0.5556,-0.6913,0.5879,-0.5556,-0.5879,0.5133,-0.3827,-0.7682,0.5879,-0.5556,-0.5879,0.6533,-0.3827,-0.6533,0.6533,-0.3827,-0.6533,0.5879,-0.5556,-0.5879,0.6913,-0.5556,-0.4619,0.6533,-0.3827,-0.6533,0.6913,-0.5556,-0.4619,0.7682,-0.3827,-0.5133,0.7682,-0.3827,-0.5133,0.6913,-0.5556,-0.4619,0.7682,-0.5556,-0.3182,0.7682,-0.3827,-0.5133,0.7682,-0.5556,-0.3182,0.8536,-0.3827,-0.3536,0.8536,-0.3827,-0.3536,0.7682,-0.5556,-0.3182,0.8155,-0.5556,-0.1622,0.8536,-0.3827,-0.3536,0.8155,-0.5556,-0.1622,0.9061,-0.3827,-0.1802,0.9061,-0.3827,-0.1802,0.8155,-0.5556,-0.1622,0.8315,-0.5556,0.0,0.9061,-0.3827,-0.1802,0.8315,-0.5556,0.0,0.9239,-0.3827,0.0,0.9239,-0.3827,0.0,0.8315,-0.5556,0.0,0.8155,-0.5556,0.1622,0.9239,-0.3827,0.0,0.8155,-0.5556,0.1622,0.9061,-0.3827,0.1802,0.9061,-0.3827,0.1802,0.8155,-0.5556,0.1622,0.7682,-0.5556,0.3182,0.9061,-0.3827,0.1802,0.7682,-0.5556,0.3182,0.8536,-0.3827,0.3536,0.8536,-0.3827,0.3536,0.7682,-0.5556,0.3182,0.6913,-0.5556,0.4619,0.8536,-0.3827,0.3536,0.6913,-0.5556,0.4619,0.7682,-0.3827,0.5133,0.7682,-0.3827,0.5133,0.6913,-0.5556,0.4619,0.5879,-0.5556,0.5879,0.7682,-0.3827,0.5133,0.5879,-0.5556,0.5879,0.6533,-0.3827,0.6533,0.6533,-0.3827,0.6533,0.5879,-0.5556,0.5879,0.4619,-0.5556,0.6913,0.6533,-0.3827,0.6533,0.4619,-0.5556,0.6913,0.5133,-0.3827,0.7682,0.5133,-0.3827,0.7682,0.4619,-0.5556,0.6913,0.3182,-0.5556,0.7682,0.5133,-0.3827,0.7682,0.3182,-0.5556,0.7682,0.3536,-0.3827,0.8536,0.3536,-0.3827,0.8536,0.3182,-0.5556,0.7682,0.1622,-0.5556,0.8155,0.3536,-0.3827,0.8536,0.1622,-0.5556,0.8155,0.1802,-0.3827,0.9061,0.1802,-0.3827,0.9061,0.1622,-0.5556,0.8155,0.0,-0.5556,0.8315,0.1802,-0.3827,0.9061,0.0,-0.5556,0.8315,0.0,-0.3827,0.9239,0.0,-0.5556,0.8315,0.0,-0.7071,0.7071,-0.1379,-0.7071,0.6935,0.0,-0.5556,0.8315,-0.1379,-0.7071,0.6935,-0.1622,-0.5556,0.8155,-0.1622,-0.5556,0.8155,-0.1379,-0.7071,0.6935,-0.2706,-0.7071,0.6533,-0.1622,-0.5556,0.8155,-0.2706,-0.7071,0.6533,-0.3182,-0.5556,0.7682,-0.3182,-0.5556,0.7682,-0.2706,-0.7071,0.6533,-0.3928,-0.7071,0.5879,-0.3182,-0.5556,0.7682,-0.3928,-0.7071,0.5879,-0.4619,-0.5556,0.6913,-0.4619,-0.5556,0.6913,-0.3928,-0.7071,0.5879,-0.5,-0.7071,0.5,-0.4619,-0.5556,0.6913,-0.5,-0.7071,0.5,-0.5879,-0.5556,0.5879,-0.5879,-0.5556,0.5879,-0.5,-0.7071,0.5,-0.5879,-0.7071,0.3928,-0.5879,-0.5556,0.5879,-0.5879,-0.7071,0.3928,-0.6913,-0.5556,0.4619,-0.6913,-0.5556,0.4619,-0.5879,-0.7071,0.3928,-0.6533,-0.7071,0.2706,-0.6913,-0.5556,0.4619,-0.6533,-0.7071,0.2706,-0.7682,-0.5556,0.3182,-0.7682,-0.5556,0.3182,-0.6533,-0.7071,0.2706,-0.6935,-0.7071,0.1379,-0.7682,-0.5556,0.3182,-0.6935,-0.7071,0.1379,-0.8155,-0.5556,0.1622,-0.8155,-0.5556,0.1622,-0.6935,-0.7071,0.1379,-0.7071,-0.7071,0.0,-0.8155,-0.5556,0.1622,-0.7071,-0.7071,0.0,-0.8315,-0.5556,0.0,-0.8315,-0.5556,0.0,-0.7071,-0.7071,0.0,-0.6935,-0.7071,-0.1379,-0.8315,-0.5556,0.0,-0.6935,-0.7071,-0.1379,-0.8155,-0.5556,-0.1622,-0.8155,-0.5556,-0.1622,-0.6935,-0.7071,-0.1379,-0.6533,-0.7071,-0.2706,-0.8155,-0.5556,-0.1622,-0.6533,-0.7071,-0.2706,-0.7682,-0.5556,-0.3182,-0.7682,-0.5556,-0.3182,-0.6533,-0.7071,-0.2706,-0.5879,-0.7071,-0.3928,-0.7682,-0.5556,-0.3182,-0.5879,-0.7071,-0.3928,-0.6913,-0.5556,-0.4619,-0.6913,-0.5556,-0.4619,-0.5879,-0.7071,-0.3928,-0.5,-0.7071,-0.5,-0.6913,-0.5556,-0.4619,-0.5,-0.7071,-0.5,-0.5879,-0.5556,-0.5879,-0.5879,-0.5556,-0.5879,-0.5,-0.7071,-0.5,-0.3928,-0.7071,-0.5879,-0.5879,-0.5556,-0.5879,-0.3928,-0.7071,-0.5879,-0.4619,-0.5556,-0.6913,-0.4619,-0.5556,-0.6913,-0.3928,-0.7071,-0.5879,-0.2706,-0.7071,-0.6533,-0.4619,-0.5556,-0.6913,-0.2706,-0.7071,-0.6533,-0.3182,-0.5556,-0.7682,-0.3182,-0.5556,-0.7682,-0.2706,-0.7071,-0.6533,-0.1379,-0.7071,-0.6935,-0.3182,-0.5556,-0.7682,-0.1379,-0.7071,-0.6935,-0.1622,-0.5556,-0.8155,-0.1622,-0.5556,-0.8155,-0.1379,-0.7071,-0.6935,0.0,-0.7071,-0.7071,-0.1622,-0.5556,-0.8155,0.0,-0.7071,-0.7071,0.0,-0.5556,-0.8315,0.0,-0.5556,-0.8315,0.0,-0.7071,-0.7071,0.138,-0.7071,-0.6935,0.0,-0.5556,-0.8315,0.138,-0.7071,-0.6935,0.1622,-0.5556,-0.8155,0.1622,-0.5556,-0.8155,0.138,-0.7071,-0.6935,0.2706,-0.7071,-0.6533,0.1622,-0.5556,-0.8155,0.2706,-0.7071,-0.6533,0.3182,-0.5556,-0.7682,0.3182,-0.5556,-0.7682,0.2706,-0.7071,-0.6533,0.3928,-0.7071,-0.5879,0.3182,-0.5556,-0.7682,0.3928,-0.7071,-0.5879,0.4619,-0.5556,-0.6913,0.4619,-0.5556,-0.6913,0.3928,-0.7071,-0.5879,0.5,-0.7071,-0.5,0.4619,-0.5556,-0.6913,0.5,-0.7071,-0.5,0.5879,-0.5556,-0.5879,0.5879,-0.5556,-0.5879,0.5,-0.7071,-0.5,0.5879,-0.7071,-0.3928,0.5879,-0.5556,-0.5879,0.5879,-0.7071,-0.3928,0.6913,-0.5556,-0.4619,0.6913,-0.5556,-0.4619,0.5879,-0.7071,-0.3928,0.6533,-0.7071,-0.2706,0.6913,-0.5556,-0.4619,0.6533,-0.7071,-0.2706,0.7682,-0.5556,-0.3182,0.7682,-0.5556,-0.3182,0.6533,-0.7071,-0.2706,0.6935,-0.7071,-0.1379,0.7682,-0.5556,-0.3182,0.6935,-0.7071,-0.1379,0.8155,-0.5556,-0.1622,0.8155,-0.5556,-0.1622,0.6935,-0.7071,-0.1379,0.7071,-0.7071,0.0,0.8155,-0.5556,-0.1622,0.7071,-0.7071,0.0,0.8315,-0.5556,0.0,0.8315,-0.5556,0.0,0.7071,-0.7071,0.0,0.6935,-0.7071,0.138,0.8315,-0.5556,0.0,0.6935,-0.7071,0.138,0.8155,-0.5556,0.1622,0.8155,-0.5556,0.1622,0.6935,-0.7071,0.138,0.6533,-0.7071,0.2706,0.8155,-0.5556,0.1622,0.6533,-0.7071,0.2706,0.7682,-0.5556,0.3182,0.7682,-0.5556,0.3182,0.6533,-0.7071,0.2706,0.5879,-0.7071,0.3928,0.7682,-0.5556,0.3182,0.5879,-0.7071,0.3928,0.6913,-0.5556,0.4619,0.6913,-0.5556,0.4619,0.5879,-0.7071,0.3928,0.5,-0.7071,0.5,0.6913,-0.5556,0.4619,0.5,-0.7071,0.5,0.5879,-0.5556,0.5879,0.5879,-0.5556,0.5879,0.5,-0.7071,0.5,0.3928,-0.7071,0.5879,0.5879,-0.5556,0.5879,0.3928,-0.7071,0.5879,0.4619,-0.5556,0.6913,0.4619,-0.5556,0.6913,0.3928,-0.7071,0.5879,0.2706,-0.7071,0.6533,0.4619,-0.5556,0.6913,0.2706,-0.7071,0.6533,0.3182,-0.5556,0.7682,0.3182,-0.5556,0.7682,0.2706,-0.7071,0.6533,0.1379,-0.7071,0.6935,0.3182,-0.5556,0.7682,0.1379,-0.7071,0.6935,0.1622,-0.5556,0.8155,0.1622,-0.5556,0.8155,0.1379,-0.7071,0.6935,0.0,-0.7071,0.7071,0.1622,-0.5556,0.8155,0.0,-0.7071,0.7071,0.0,-0.5556,0.8315,0.0,-0.7071,0.7071,0.0,-0.8315,0.5556,-0.1084,-0.8315,0.5449,0.0,-0.7071,0.7071,-0.1084,-0.8315,0.5449,-0.1379,-0.7071,0.6935,-0.1379,-0.7071,0.6935,-0.1084,-0.8315,0.5449,-0.2126,-0.8315,0.5133,-0.1379,-0.7071,0.6935,-0.2126,-0.8315,0.5133,-0.2706,-0.7071,0.6533,-0.2706,-0.7071,0.6533,-0.2126,-0.8315,0.5133,-0.3087,-0.8315,0.4619,-0.2706,-0.7071,0.6533,-0.3087,-0.8315,0.4619,-0.3928,-0.7071,0.5879,-0.3928,-0.7071,0.5879,-0.3087,-0.8315,0.4619,-0.3928,-0.8315,0.3928,-0.3928,-0.7071,0.5879,-0.3928,-0.8315,0.3928,-0.5,-0.7071,0.5,-0.5,-0.7071,0.5,-0.3928,-0.8315,0.3928,-0.4619,-0.8315,0.3087,-0.5,-0.7071,0.5,-0.4619,-0.8315,0.3087,-0.5879,-0.7071,0.3928,-0.5879,-0.7071,0.3928,-0.4619,-0.8315,0.3087,-0.5133,-0.8315,0.2126,-0.5879,-0.7071,0.3928,-0.5133,-0.8315,0.2126,-0.6533,-0.7071,0.2706,-0.6533,-0.7071,0.2706,-0.5133,-0.8315,0.2126,-0.5449,-0.8315,0.1084,-0.6533,-0.7071,0.2706,-0.5449,-0.8315,0.1084,-0.6935,-0.7071,0.1379,-0.6935,-0.7071,0.1379,-0.5449,-0.8315,0.1084,-0.5556,-0.8315,0.0,-0.6935,-0.7071,0.1379,-0.5556,-0.8315,0.0,-0.7071,-0.7071,0.0,-0.7071,-0.7071,0.0,-0.5556,-0.8315,0.0,-0.5449,-0.8315,-0.1084,-0.7071,-0.7071,0.0,-0.5449,-0.8315,-0.1084,-0.6935,-0.7071,-0.1379,-0.6935,-0.7071,-0.1379,-0.5449,-0.8315,-0.1084,-0.5133,-0.8315,-0.2126,-0.6935,-0.7071,-0.1379,-0.5133,-0.8315,-0.2126,-0.6533,-0.7071,-0.2706,-0.6533,-0.7071,-0.2706,-0.5133,-0.8315,-0.2126,-0.4619,-0.8315,-0.3087,-0.6533,-0.7071,-0.2706,-0.4619,-0.8315,-0.3087,-0.5879,-0.7071,-0.3928,-0.5879,-0.7071,-0.3928,-0.4619,-0.8315,-0.3087,-0.3928,-0.8315,-0.3928,-0.5879,-0.7071,-0.3928,-0.3928,-0.8315,-0.3928,-0.5,-0.7071,-0.5,-0.5,-0.7071,-0.5,-0.3928,-0.8315,-0.3928,-0.3087,-0.8315,-0.4619,-0.5,-0.7071,-0.5,-0.3087,-0.8315,-0.4619,-0.3928,-0.7071,-0.5879,-0.3928,-0.7071,-0.5879,-0.3087,-0.8315,-0.4619,-0.2126,-0.8315,-0.5133,-0.3928,-0.7071,-0.5879,-0.2126,-0.8315,-0.5133,-0.2706,-0.7071,-0.6533,-0.2706,-0.7071,-0.6533,-0.2126,-0.8315,-0.5133,-0.1084,-0.8315,-0.5449,-0.2706,-0.7071,-0.6533,-0.1084,-0.8315,-0.5449,-0.1379,-0.7071,-0.6935,-0.1379,-0.7071,-0.6935,-0.1084,-0.8315,-0.5449,0.0,-0.8315,-0.5556,-0.1379,-0.7071,-0.6935,0.0,-0.8315,-0.5556,0.0,-0.7071,-0.7071,0.0,-0.7071,-0.7071,0.0,-0.8315,-0.5556,0.1084,-0.8315,-0.5449,0.0,-0.7071,-0.7071,0.1084,-0.8315,-0.5449,0.138,-0.7071,-0.6935,0.138,-0.7071,-0.6935,0.1084,-0.8315,-0.5449,0.2126,-0.8315,-0.5133,0.138,-0.7071,-0.6935,0.2126,-0.8315,-0.5133,0.2706,-0.7071,-0.6533,0.2706,-0.7071,-0.6533,0.2126,-0.8315,-0.5133,0.3087,-0.8315,-0.4619,0.2706,-0.7071,-0.6533,0.3087,-0.8315,-0.4619,0.3928,-0.7071,-0.5879,0.3928,-0.7071,-0.5879,0.3087,-0.8315,-0.4619,0.3928,-0.8315,-0.3928,0.3928,-0.7071,-0.5879,0.3928,-0.8315,-0.3928,0.5,-0.7071,-0.5,0.5,-0.7071,-0.5,0.3928,-0.8315,-0.3928,0.4619,-0.8315,-0.3087,0.5,-0.7071,-0.5,0.4619,-0.8315,-0.3087,0.5879,-0.7071,-0.3928,0.5879,-0.7071,-0.3928,0.4619,-0.8315,-0.3087,0.5133,-0.8315,-0.2126,0.5879,-0.7071,-0.3928,0.5133,-0.8315,-0.2126,0.6533,-0.7071,-0.2706,0.6533,-0.7071,-0.2706,0.5133,-0.8315,-0.2126,0.5449,-0.8315,-0.1084,0.6533,-0.7071,-0.2706,0.5449,-0.8315,-0.1084,0.6935,-0.7071,-0.1379,0.6935,-0.7071,-0.1379,0.5449,-0.8315,-0.1084,0.5556,-0.8315,0.0,0.6935,-0.7071,-0.1379,0.5556,-0.8315,0.0,0.7071,-0.7071,0.0,0.7071,-0.7071,0.0,0.5556,-0.8315,0.0,0.5449,-0.8315,0.1084,0.7071,-0.7071,0.0,0.5449,-0.8315,0.1084,0.6935,-0.7071,0.138,0.6935,-0.7071,0.138,0.5449,-0.8315,0.1084,0.5133,-0.8315,0.2126,0.6935,-0.7071,0.138,0.5133,-0.8315,0.2126,0.6533,-0.7071,0.2706,0.6533,-0.7071,0.2706,0.5133,-0.8315,0.2126,0.4619,-0.8315,0.3087,0.6533,-0.7071,0.2706,0.4619,-0.8315,0.3087,0.5879,-0.7071,0.3928,0.5879,-0.7071,0.3928,0.4619,-0.8315,0.3087,0.3928,-0.8315,0.3928,0.5879,-0.7071,0.3928,0.3928,-0.8315,0.3928,0.5,-0.7071,0.5,0.5,-0.7071,0.5,0.3928,-0.8315,0.3928,0.3087,-0.8315,0.4619,0.5,-0.7071,0.5,0.3087,-0.8315,0.4619,0.3928,-0.7071,0.5879,0.3928,-0.7071,0.5879,0.3087,-0.8315,0.4619,0.2126,-0.8315,0.5133,0.3928,-0.7071,0.5879,0.2126,-0.8315,0.5133,0.2706,-0.7071,0.6533,0.2706,-0.7071,0.6533,0.2126,-0.8315,0.5133,0.1084,-0.8315,0.5449,0.2706,-0.7071,0.6533,0.1084,-0.8315,0.5449,0.1379,-0.7071,0.6935,0.1379,-0.7071,0.6935,0.1084,-0.8315,0.5449,0.0,-0.8315,0.5556,0.1379,-0.7071,0.6935,0.0,-0.8315,0.5556,0.0,-0.7071,0.7071,0.0,-0.8315,0.5556,0.0,-0.9239,0.3827,-0.0747,-0.9239,0.3753,0.0,-0.8315,0.5556,-0.0747,-0.9239,0.3753,-0.1084,-0.8315,0.5449,-0.1084,-0.8315,0.5449,-0.0747,-0.9239,0.3753,-0.1464,-0.9239,0.3536,-0.1084,-0.8315,0.5449,-0.1464,-0.9239,0.3536,-0.2126,-0.8315,0.5133,-0.2126,-0.8315,0.5133,-0.1464,-0.9239,0.3536,-0.2126,-0.9239,0.3182,-0.2126,-0.8315,0.5133,-0.2126,-0.9239,0.3182,-0.3087,-0.8315,0.4619,-0.3087,-0.8315,0.4619,-0.2126,-0.9239,0.3182,-0.2706,-0.9239,0.2706,-0.3087,-0.8315,0.4619,-0.2706,-0.9239,0.2706,-0.3928,-0.8315,0.3928,-0.3928,-0.8315,0.3928,-0.2706,-0.9239,0.2706,-0.3182,-0.9239,0.2126,-0.3928,-0.8315,0.3928,-0.3182,-0.9239,0.2126,-0.4619,-0.8315,0.3087,-0.4619,-0.8315,0.3087,-0.3182,-0.9239,0.2126,-0.3536,-0.9239,0.1464,-0.4619,-0.8315,0.3087,-0.3536,-0.9239,0.1464,-0.5133,-0.8315,0.2126,-0.5133,-0.8315,0.2126,-0.3536,-0.9239,0.1464,-0.3753,-0.9239,0.0747,-0.5133,-0.8315,0.2126,-0.3753,-0.9239,0.0747,-0.5449,-0.8315,0.1084,-0.5449,-0.8315,0.1084,-0.3753,-0.9239,0.0747,-0.3827,-0.9239,0.0,-0.5449,-0.8315,0.1084,-0.3827,-0.9239,0.0,-0.5556,-0.8315,0.0,-0.5556,-0.8315,0.0,-0.3827,-0.9239,0.0,-0.3753,-0.9239,-0.0747,-0.5556,-0.8315,0.0,-0.3753,-0.9239,-0.0747,-0.5449,-0.8315,-0.1084,-0.5449,-0.8315,-0.1084,-0.3753,-0.9239,-0.0747,-0.3536,-0.9239,-0.1464,-0.5449,-0.8315,-0.1084,-0.3536,-0.9239,-0.1464,-0.5133,-0.8315,-0.2126,-0.5133,-0.8315,-0.2126,-0.3536,-0.9239,-0.1464,-0.3182,-0.9239,-0.2126,-0.5133,-0.8315,-0.2126,-0.3182,-0.9239,-0.2126,-0.4619,-0.8315,-0.3087,-0.4619,-0.8315,-0.3087,-0.3182,-0.9239,-0.2126,-0.2706,-0.9239,-0.2706,-0.4619,-0.8315,-0.3087,-0.2706,-0.9239,-0.2706,-0.3928,-0.8315,-0.3928,-0.3928,-0.8315,-0.3928,-0.2706,-0.9239,-0.2706,-0.2126,-0.9239,-0.3182,-0.3928,-0.8315,-0.3928,-0.2126,-0.9239,-0.3182,-0.3087,-0.8315,-0.4619,-0.3087,-0.8315,-0.4619,-0.2126,-0.9239,-0.3182,-0.1464,-0.9239,-0.3536,-0.3087,-0.8315,-0.4619,-0.1464,-0.9239,-0.3536,-0.2126,-0.8315,-0.5133,-0.2126,-0.8315,-0.5133,-0.1464,-0.9239,-0.3536,-0.0747,-0.9239,-0.3753,-0.2126,-0.8315,-0.5133,-0.0747,-0.9239,-0.3753,-0.1084,-0.8315,-0.5449,-0.1084,-0.8315,-0.5449,-0.0747,-0.9239,-0.3753,0.0,-0.9239,-0.3827,-0.1084,-0.8315,-0.5449,0.0,-0.9239,-0.3827,0.0,-0.8315,-0.5556,0.0,-0.8315,-0.5556,0.0,-0.9239,-0.3827,0.0747,-0.9239,-0.3753,0.0,-0.8315,-0.5556,0.0747,-0.9239,-0.3753,0.1084,-0.8315,-0.5449,0.1084,-0.8315,-0.5449,0.0747,-0.9239,-0.3753,0.1464,-0.9239,-0.3536,0.1084,-0.8315,-0.5449,0.1464,-0.9239,-0.3536,0.2126,-0.8315,-0.5133,0.2126,-0.8315,-0.5133,0.1464,-0.9239,-0.3536,0.2126,-0.9239,-0.3182,0.2126,-0.8315,-0.5133,0.2126,-0.9239,-0.3182,0.3087,-0.8315,-0.4619,0.3087,-0.8315,-0.4619,0.2126,-0.9239,-0.3182,0.2706,-0.9239,-0.2706,0.3087,-0.8315,-0.4619,0.2706,-0.9239,-0.2706,0.3928,-0.8315,-0.3928,0.3928,-0.8315,-0.3928,0.2706,-0.9239,-0.2706,0.3182,-0.9239,-0.2126,0.3928,-0.8315,-0.3928,0.3182,-0.9239,-0.2126,0.4619,-0.8315,-0.3087,0.4619,-0.8315,-0.3087,0.3182,-0.9239,-0.2126,0.3536,-0.9239,-0.1464,0.4619,-0.8315,-0.3087,0.3536,-0.9239,-0.1464,0.5133,-0.8315,-0.2126,0.5133,-0.8315,-0.2126,0.3536,-0.9239,-0.1464,0.3753,-0.9239,-0.0747,0.5133,-0.8315,-0.2126,0.3753,-0.9239,-0.0747,0.5449,-0.8315,-0.1084,0.5449,-0.8315,-0.1084,0.3753,-0.9239,-0.0747,0.3827,-0.9239,0.0,0.5449,-0.8315,-0.1084,0.3827,-0.9239,0.0,0.5556,-0.8315,0.0,0.5556,-0.8315,0.0,0.3827,-0.9239,0.0,0.3753,-0.9239,0.0747,0.5556,-0.8315,0.0,0.3753,-0.9239,0.0747,0.5449,-0.8315,0.1084,0.5449,-0.8315,0.1084,0.3753,-0.9239,0.0747,0.3536,-0.9239,0.1464,0.5449,-0.8315,0.1084,0.3536,-0.9239,0.1464,0.5133,-0.8315,0.2126,0.5133,-0.8315,0.2126,0.3536,-0.9239,0.1464,0.3182,-0.9239,0.2126,0.5133,-0.8315,0.2126,0.3182,-0.9239,0.2126,0.4619,-0.8315,0.3087,0.4619,-0.8315,0.3087,0.3182,-0.9239,0.2126,0.2706,-0.9239,0.2706,0.4619,-0.8315,0.3087,0.2706,-0.9239,0.2706,0.3928,-0.8315,0.3928,0.3928,-0.8315,0.3928,0.2706,-0.9239,0.2706,0.2126,-0.9239,0.3182,0.3928,-0.8315,0.3928,0.2126,-0.9239,0.3182,0.3087,-0.8315,0.4619,0.3087,-0.8315,0.4619,0.2126,-0.9239,0.3182,0.1464,-0.9239,0.3536,0.3087,-0.8315,0.4619,0.1464,-0.9239,0.3536,0.2126,-0.8315,0.5133,0.2126,-0.8315,0.5133,0.1464,-0.9239,0.3536,0.0747,-0.9239,0.3753,0.2126,-0.8315,0.5133,0.0747,-0.9239,0.3753,0.1084,-0.8315,0.5449,0.1084,-0.8315,0.5449,0.0747,-0.9239,0.3753,0.0,-0.9239,0.3827,0.1084,-0.8315,0.5449,0.0,-0.9239,0.3827,0.0,-0.8315,0.5556,0.0,-0.9239,0.3827,0.0,-0.9808,0.1951,-0.0381,-0.9808,0.1913,0.0,-0.9239,0.3827,-0.0381,-0.9808,0.1913,-0.0747,-0.9239,0.3753,-0.0747,-0.9239,0.3753,-0.0381,-0.9808,0.1913,-0.0747,-0.9808,0.1802,-0.0747,-0.9239,0.3753,-0.0747,-0.9808,0.1802,-0.1464,-0.9239,0.3536,-0.1464,-0.9239,0.3536,-0.0747,-0.9808,0.1802,-0.1084,-0.9808,0.1622,-0.1464,-0.9239,0.3536,-0.1084,-0.9808,0.1622,-0.2126,-0.9239,0.3182,-0.2126,-0.9239,0.3182,-0.1084,-0.9808,0.1622,-0.1379,-0.9808,0.1379,-0.2126,-0.9239,0.3182,-0.1379,-0.9808,0.1379,-0.2706,-0.9239,0.2706,-0.2706,-0.9239,0.2706,-0.1379,-0.9808,0.1379,-0.1622,-0.9808,0.1084,-0.2706,-0.9239,0.2706,-0.1622,-0.9808,0.1084,-0.3182,-0.9239,0.2126,-0.3182,-0.9239,0.2126,-0.1622,-0.9808,0.1084,-0.1802,-0.9808,0.0747,-0.3182,-0.9239,0.2126,-0.1802,-0.9808,0.0747,-0.3536,-0.9239,0.1464,-0.3536,-0.9239,0.1464,-0.1802,-0.9808,0.0747,-0.1913,-0.9808,0.0381,-0.3536,-0.9239,0.1464,-0.1913,-0.9808,0.0381,-0.3753,-0.9239,0.0747,-0.3753,-0.9239,0.0747,-0.1913,-0.9808,0.0381,-0.1951,-0.9808,0.0,-0.3753,-0.9239,0.0747,-0.1951,-0.9808,0.0,-0.3827,-0.9239,0.0,-0.3827,-0.9239,0.0,-0.1951,-0.9808,0.0,-0.1913,-0.9808,-0.0381,-0.3827,-0.9239,0.0,-0.1913,-0.9808,-0.0381,-0.3753,-0.9239,-0.0747,-0.3753,-0.9239,-0.0747,-0.1913,-0.9808,-0.0381,-0.1802,-0.9808,-0.0747,-0.3753,-0.9239,-0.0747,-0.1802,-0.9808,-0.0747,-0.3536,-0.9239,-0.1464,-0.3536,-0.9239,-0.1464,-0.1802,-0.9808,-0.0747,-0.1622,-0.9808,-0.1084,-0.3536,-0.9239,-0.1464,-0.1622,-0.9808,-0.1084,-0.3182,-0.9239,-0.2126,-0.3182,-0.9239,-0.2126,-0.1622,-0.9808,-0.1084,-0.1379,-0.9808,-0.1379,-0.3182,-0.9239,-0.2126,-0.1379,-0.9808,-0.1379,-0.2706,-0.9239,-0.2706,-0.2706,-0.9239,-0.2706,-0.1379,-0.9808,-0.1379,-0.1084,-0.9808,-0.1622,-0.2706,-0.9239,-0.2706,-0.1084,-0.9808,-0.1622,-0.2126,-0.9239,-0.3182,-0.2126,-0.9239,-0.3182,-0.1084,-0.9808,-0.1622,-0.0747,-0.9808,-0.1802,-0.2126,-0.9239,-0.3182,-0.0747,-0.9808,-0.1802,-0.1464,-0.9239,-0.3536,-0.1464,-0.9239,-0.3536,-0.0747,-0.9808,-0.1802,-0.0381,-0.9808,-0.1913,-0.1464,-0.9239,-0.3536,-0.0381,-0.9808,-0.1913,-0.0747,-0.9239,-0.3753,-0.0747,-0.9239,-0.3753,-0.0381,-0.9808,-0.1913,0.0,-0.9808,-0.1951,-0.0747,-0.9239,-0.3753,0.0,-0.9808,-0.1951,0.0,-0.9239,-0.3827,0.0,-0.9239,-0.3827,0.0,-0.9808,-0.1951,0.0381,-0.9808,-0.1913,0.0,-0.9239,-0.3827,0.0381,-0.9808,-0.1913,0.0747,-0.9239,-0.3753,0.0747,-0.9239,-0.3753,0.0381,-0.9808,-0.1913,0.0747,-0.9808,-0.1802,0.0747,-0.9239,-0.3753,0.0747,-0.9808,-0.1802,0.1464,-0.9239,-0.3536,0.1464,-0.9239,-0.3536,0.0747,-0.9808,-0.1802,0.1084,-0.9808,-0.1622,0.1464,-0.9239,-0.3536,0.1084,-0.9808,-0.1622,0.2126,-0.9239,-0.3182,0.2126,-0.9239,-0.3182,0.1084,-0.9808,-0.1622,0.1379,-0.9808,-0.1379,0.2126,-0.9239,-0.3182,0.1379,-0.9808,-0.1379,0.2706,-0.9239,-0.2706,0.2706,-0.9239,-0.2706,0.1379,-0.9808,-0.1379,0.1622,-0.9808,-0.1084,0.2706,-0.9239,-0.2706,0.1622,-0.9808,-0.1084,0.3182,-0.9239,-0.2126,0.3182,-0.9239,-0.2126,0.1622,-0.9808,-0.1084,0.1802,-0.9808,-0.0747,0.3182,-0.9239,-0.2126,0.1802,-0.9808,-0.0747,0.3536,-0.9239,-0.1464,0.3536,-0.9239,-0.1464,0.1802,-0.9808,-0.0747,0.1913,-0.9808,-0.0381,0.3536,-0.9239,-0.1464,0.1913,-0.9808,-0.0381,0.3753,-0.9239,-0.0747,0.3753,-0.9239,-0.0747,0.1913,-0.9808,-0.0381,0.1951,-0.9808,0.0,0.3753,-0.9239,-0.0747,0.1951,-0.9808,0.0,0.3827,-0.9239,0.0,0.3827,-0.9239,0.0,0.1951,-0.9808,0.0,0.1913,-0.9808,0.0381,0.3827,-0.9239,0.0,0.1913,-0.9808,0.0381,0.3753,-0.9239,0.0747,0.3753,-0.9239,0.0747,0.1913,-0.9808,0.0381,0.1802,-0.9808,0.0747,0.3753,-0.9239,0.0747,0.1802,-0.9808,0.0747,0.3536,-0.9239,0.1464,0.3536,-0.9239,0.1464,0.1802,-0.9808,0.0747,0.1622,-0.9808,0.1084,0.3536,-0.9239,0.1464,0.1622,-0.9808,0.1084,0.3182,-0.9239,0.2126,0.3182,-0.9239,0.2126,0.1622,-0.9808,0.1084,0.1379,-0.9808,0.1379,0.3182,-0.9239,0.2126,0.1379,-0.9808,0.1379,0.2706,-0.9239,0.2706,0.2706,-0.9239,0.2706,0.1379,-0.9808,0.1379,0.1084,-0.9808,0.1622,0.2706,-0.9239,0.2706,0.1084,-0.9808,0.1622,0.2126,-0.9239,0.3182,0.2126,-0.9239,0.3182,0.1084,-0.9808,0.1622,0.0747,-0.9808,0.1802,0.2126,-0.9239,0.3182,0.0747,-0.9808,0.1802,0.1464,-0.9239,0.3536,0.1464,-0.9239,0.3536,0.0747,-0.9808,0.1802,0.0381,-0.9808,0.1913,0.1464,-0.9239,0.3536,0.0381,-0.9808,0.1913,0.0747,-0.9239,0.3753,0.0747,-0.9239,0.3753,0.0381,-0.9808,0.1913,0.0,-0.9808,0.1951,0.0747,-0.9239,0.3753,0.0,-0.9808,0.1951,0.0,-0.9239,0.3827,0.0,-1.0,0.0,-0.0381,-0.9808,0.1913,0.0,-0.9808,0.1951,0.0,-1.0,0.0,-0.0747,-0.9808,0.1802,-0.0381,-0.9808,0.1913,0.0,-1.0,0.0,-0.1084,-0.9808,0.1622,-0.0747,-0.9808,0.1802,0.0,-1.0,0.0,-0.1379,-0.9808,0.1379,-0.1084,-0.9808,0.1622,0.0,-1.0,0.0,-0.1622,-0.9808,0.1084,-0.1379,-0.9808,0.1379,0.0,-1.0,0.0,-0.1802,-0.9808,0.0747,-0.1622,-0.9808,0.1084,0.0,-1.0,0.0,-0.1913,-0.9808,0.0381,-0.1802,-0.9808,0.0747,0.0,-1.0,0.0,-0.1951,-0.9808,0.0,-0.1913,-0.9808,0.0381,0.0,-1.0,0.0,-0.1913,-0.9808,-0.0381,-0.1951,-0.9808,0.0,0.0,-1.0,0.0,-0.1802,-0.9808,-0.0747,-0.1913,-0.9808,-0.0381,0.0,-1.0,0.0,-0.1622,-0.9808,-0.1084,-0.1802,-0.9808,-0.0747,0.0,-1.0,0.0,-0.1379,-0.9808,-0.1379,-0.1622,-0.9808,-0.1084,0.0,-1.0,0.0,-0.1084,-0.9808,-0.1622,-0.1379,-0.9808,-0.1379,0.0,-1.0,0.0,-0.0747,-0.9808,-0.1802,-0.1084,-0.9808,-0.1622,0.0,-1.0,0.0,-0.0381,-0.9808,-0.1913,-0.0747,-0.9808,-0.1802,0.0,-1.0,0.0,0.0,-0.9808,-0.1951,-0.0381,-0.9808,-0.1913,0.0,-1.0,0.0,0.0381,-0.9808,-0.1913,0.0,-0.9808,-0.1951,0.0,-1.0,0.0,0.0747,-0.9808,-0.1802,0.0381,-0.9808,-0.1913,0.0,-1.0,0.0,0.1084,-0.9808,-0.1622,0.0747,-0.9808,-0.1802,0.0,-1.0,0.0,0.1379,-0.9808,-0.1379,0.1084,-0.9808,-0.1622,0.0,-1.0,0.0,0.1622,-0.9808,-0.1084,0.1379,-0.9808,-0.1379,0.0,-1.0,0.0,0.1802,-0.9808,-0.0747,0.1622,-0.9808,-0.1084,0.0,-1.0,0.0,0.1913,-0.9808,-0.0381,0.1802,-0.9808,-0.0747,0.0,-1.0,0.0,0.1951,-0.9808,0.0,0.1913,-0.9808,-0.0381,0.0,-1.0,0.0,0.1913,-0.9808,0.0381,0.1951,-0.9808,0.0,0.0,-1.0,0.0,0.1802,-0.9808,0.0747,0.1913,-0.9808,0.0381,0.0,-1.0,0.0,0.1622,-0.9808,0.1084,0.1802,-0.9808,0.0747,0.0,-1.0,0.0,0.1379,-0.9808,0.1379,0.1622,-0.9808,0.1084,0.0,-1.0,0.0,0.1084,-0.9808,0.1622,0.1379,-0.9808,0.1379,0.0,-1.0,0.0,0.0747,-0.9808,0.1802,0.1084,-0.9808,0.1622,0.0,-1.0,0.0,0.0381,-0.9808,0.1913,0.0747,-0.9808,0.1802,0.0,-1.0,0.0,0.0,-0.9808,0.1951,0.0381,-0.9808,0.1913],"normals":[0.0,1.0,0.0,0.0,0.9796,0.201,-0.0392,0.9796,0.1971,0.0,1.0,0.0,-0.0392,0.9796,0.1971,-0.0769,0.9796,0.1857,0.0,1.0,0.0,-0.0769,0.9796,0.1857,-0.1117,0.9796,0.1671,0.0,1.0,0.0,-0.1117,0.9796,0.1671,-0.1421,0.9796,0.1421,0.0,1.0,0.0,-0.1421,0.9796,0.1421,-0.1671,0.9796,0.1117,0.0,1.0,0.0,-0.1671,0.9796,0.1117,-0.1857,0.9796,0.0769,0.0,1.0,0.0,-0.1857,0.9796,0.0769,-0.1971,0.9796,0.0392,0.0,1.0,0.0,-0.1971,0.9796,0.0392,-0.201,0.9796,0.0,0.0,1.0,0.0,-0.201,0.9796,0.0,-0.1971,0.9796,-0.0392,0.0,1.0,0.0,-0.1971,0.9796,-0.0392,-0.1857,0.9796,-0.0769,0.0,1.0,0.0,-0.1857,0.9796,-0.0769,-0.1671,0.9796,-0.1117,0.0,1.0,0.0,-0.1671,0.9796,-0.1117,-0.1421,0.9796,-0.1421,0.0,1.0,0.0,-0.1421,0.9796,-0.1421,-0.1117,0.9796,-0.1671,0.0,1.0,0.0,-0.1117,0.9796,-0.1671,-0.0769,0.9796,-0.1857,0.0,1.0,0.0,-0.0769,0.9796,-0.1857,-0.0392,0.9796,-0.1971,0.0,1.0,0.0,-0.0392,0.9796,-0.1971,0.0,0.9796,-0.201,0.0,1.0,0.0,0.0,0.9796,-0.201,0.0392,0.9796,-0.1971,0.0,1.0,0.0,0.0392,0.9796,-0.1971,0.0769,0.9796,-0.1857,0.0,1.0,0.0,0.0769,0.9796,-0.1857,0.1117,0.9796,-0.1671,0.0,1.0,0.0,0.1117,0.9796,-0.1671,0.1421,0.9796,-0.1421,0.0,1.0,0.0,0.1421,0.9796,-0.1421,0.1671,0.9796,-0.1117,0.0,1.0,0.0,0.1671,0.9796,-0.1117,0.1857,0.9796,-0.0769,0.0,1.0,0.0,0.1857,0.9796,-0.0769,0.1971,0.9796,-0.0392,0.0,1.0,0.0,0.1971,0.9796,-0.0392,0.201,0.9796,0.0,0.0,1.0,0.0,0.201,0.9796,0.0,0.1971,0.9796,0.0392,0.0,1.0,0.0,0.1971,0.9796,0.0392,0.1857,0.9796,0.0769,0.0,1.0,0.0,0.1857,0.9796,0.0769,0.1671,0.9796,0.1117,0.0,1.0,0.0,0.1671,0.9796,0.1117,0.1421,0.9796,0.1421,0.0,1.0,0.0,0.1421,0.9796,0.1421,0.1117,0.9796,0.1671,0.0,1.0,0.0,0.1117,0.9796,0.1671,0.0769,0.9796,0.1857,0.0,1.0,0.0,0.0769,0.9796,0.1857,0.0392,0.9796,0.1971,0.0,1.0,0.0,0.0392,0.9796,0.1971,0.0,0.9796,0.201,0.0,0.9796,0.201,0.0,0.9217,0.3879,-0.0757,0.9217,0.3804,0.0,0.9796,0.201,-0.0757,0.9217,0.3804,-0.0392,0.9796,0.1971,-0.0392,0.9796,0.1971,-0.0757,0.9217,0.3804,-0.1484,0.9217,0.3584,-0.0392,0.9796,0.1971,-0.1484,0.9217,0.3584,-0.0769,0.9796,0.1857,-0.0769,0.9796,0.1857,-0.1484,0.9217,0.3584,-0.2155,0.9217,0.3225,-0.0769,0.9796,0.1857,-0.2155,0.9217,0.3225,-0.1117,0.9796,0.1671,-0.1117,0.9796,0.1671,-0.2155,0.9217,0.3225,-0.2743,0.9217,0.2743,-0.1117,0.9796,0.1671,-0.2743,0.9217,0.2743,-0.1421,0.9796,0.1421,-0.1421,0.9796,0.1421,-0.2743,0.9217,0.2743,-0.3225,0.9217,0.2155,-0.1421,0.9796,0.1421,-0.3225,0.9217,0.2155,-0.1671,0.9796,0.1117,-0.1671,0.9796,0.1117,-0.3225,0.9217,0.2155,-0.3584,0.9217,0.1484,-0.1671,0.9796,0.1117,-0.3584,0.9217,0.1484,-0.1857,0.9796,0.0769,-0.1857,0.9796,0.0769,-0.3584,0.9217,0.1484,-0.3804,0.9217,0.0757,-0.1857,0.9796,0.0769,-0.3804,0.9217,0.0757,-0.1971,0.9796,0.0392,-0.1971,0.9796,0.0392,-0.3804,0.9217,0.0757,-0.3879,0.9217,0.0,-0.1971,0.9796,0.0392,-0.3879,0.9217,0.0,-0.201,0.9796,0.0,-0.201,0.9796,0.0,-0.3879,0.9217,0.0,-0.3804,0.9217,-0.0757,-0.201,0.9796,0.0,-0.3804,0.9217,-0.0757,-0.1971,0.9796,-0.0392,-0.1971,0.9796,-0.0392,-0.3804,0.9217,-0.0757,-0.3584,0.9217,-0.1484,-0.1971,0.9796,-0.0392,-0.3584,0.9217,-0.1484,-0.1857,0.9796,-0.0769,-0.1857,0.9796,-0.0769,-0.3584,0.9217,-0.1484,-0.3225,0.9217,-0.2155,-0.1857,0.9796,-0.0769,-0.3225,0.9217,-0.2155,-0.1671,0.9796,-0.1117,-0.1671,0.9796,-0.1117,-0.3225,0.9217,-0.2155,-0.2743,0.9217,-0.2743,-0.1671,0.9796,-0.1117,-0.2743,0.9217,-0.2743,-0.1421,0.9796,-0.1421,-0.1421,0.9796,-0.1421,-0.2743,0.9217,-0.2743,-0.2155,0.9217,-0.3225,-0.1421,0.9796,-0.1421,-0.2155,0.9217,-0.3225,-0.1117,0.9796,-0.1671,-0.1117,0.9796,-0.1671,-0.2155,0.9217,-0.3225,-0.1484,0.9217,-0.3584,-0.1117,0.9796,-0.1671,-0.1484,0.9217,-0.3584,-0.0769,0.9796,-0.1857,-0.0769,0.9796,-0.1857,-0.1484,0.9217,-0.3584,-0.0757,0.9217,-0.3804,-0.0769,0.9796,-0.1857,-0.0757,0.9217,-0.3804,-0.0392,0.9796,-0.1971,-0.0392,0.9796,-0.1971,-0.0757,0.9217,-0.3804,0.0,0.9217,-0.3879,-0.0392,0.9796,-0.1971,0.0,0.9217,-0.3879,0.0,0.9796,-0.201,0.0,0.9796,-0.201,0.0,0.9217,-0.3879,0.0757,0.9217,-0.3804,0.0,0.9796,-0.201,0.0757,0.9217,-0.3804,0.0392,0.9796,-0.1971,0.0392,0.9796,-0.1971,0.0757,0.9217,-0.3804,0.1484,0.9217,-0.3584,0.0392,0.9796,-0.1971,0.1484,0.9217,-0.3584,0.0769,0.9796,-0.1857,0.0769,0.9796,-0.1857,0.1484,0.9217,-0.3584,0.2155,0.9217,-0.3225,0.0769,0.9796,-0.1857,0.2155,0.9217,-0.3225,0.1117,0.9796,-0.1671,0.1117,0.9796,-0.1671,0.2155,0.9217,-0.3225,0.2743,0.9217,-0.2743,0.1117,0.9796,-0.1671,0.2743,0.9217,-0.2743,0.1421,0.9796,-0.1421,0.1421,0.9796,-0.1421,0.2743,0.9217,-0.2743,0.3225,0.9217,-0.2155,0.1421,0.9796,-0.1421,0.3225,0.9217,-0.2155,0.1671,0.9796,-0.1117,0.1671,0.9796,-0.1117,0.3225,0.9217,-0.2155,0.3584,0.9217,-0.1484,0.1671,0.9796,-0.1117,0.3584,0.9217,-0.1484,0.1857,0.9796,-0.0769,0.1857,0.9796,-0.0769,0.3584,0.9217,-0.1484,0.3804,0.9217,-0.0757,0.1857,0.9796,-0.0769,0.3804,0.9217,-0.0757,0.1971,0.9796,-0.0392,0.1971,0.9796,-0.0392,0.3804,0.9217,-0.0757,0.3879,0.9217,0.0,0.1971,0.9796,-0.0392,0.3879,0.9217,0.0,0.201,0.9796,0.0,0.201,0.9796,0.0,0.3879,0.9217,0.0,0.3804,0.9217,0.0757,0.201,0.9796,0.0,0.3804,0.9217,0.0757,0.1971,0.9796,0.0392,0.1971,0.9796,0.0392,0.3804,0.9217,0.0757,0.3584,0.9217,0.1484,0.1971,0.9796,0.0392,0.3584,0.9217,0.1484,0.1857,0.9796,0.0769,0.1857,0.9796,0.0769,0.3584,0.9217,0.1484,0.3225,0.9217,0.2155,0.1857,0.9796,0.0769,0.3225,0.9217,0.2155,0.1671,0.9796,0.1117,0.1671,0.9796,0.1117,0.3225,0.9217,0.2155,0.2743,0.9217,0.2743,0.1671,0.9796,0.1117,0.2743,0.9217,0.2743,0.1421,0.9796,0.1421,0.1421,0.9796,0.1421,0.2743,0.9217,0.2743,0.2155,0.9217,0.3225,0.1421,0.9796,0.1421,0.2155,0.9217,0.3225,0.1117,0.9796,0.1671,0.1117,0.9796,0.1671,0.2155,0.9217,0.3225,0.1484,0.9217,0.3584,0.1117,0.9796,0.1671,0.1484,0.9217,0.3584,0.0769,0.9796,0.1857,0.0769,0.9796,0.1857,0.1484,0.9217,0.3584,0.0757,0.9217,0.3804,0.0769,0.9796,0.1857,0.0757,0.9217,0.3804,0.0392,0.9796,0.1971,0.0392,0.9796,0.1971,0.0757,0.9217,0.3804,0.0,0.9217,0.3879,0.0392,0.9796,0.1971,0.0,0.9217,0.3879,0.0,0.9796,0.201,0.0,0.9217,0.3879,0.0,0.8286,0.5598,-0.1092,0.8286,0.549,0.0,0.9217,0.3879,-0.1092,0.8286,0.549,-0.0757,0.9217,0.3804,-0.0757,0.9217,0.3804,-0.1092,0.8286,0.549,-0.2142,0.8286,0.5172,-0.0757,0.9217,0.3804,-0.2142,0.8286,0.5172,-0.1484,0.9217,0.3584,-0.1484,0.9217,0.3584,-0.2142,0.8286,0.5172,-0.311,0.8286,0.4654,-0.1484,0.9217,0.3584,-0.311,0.8286,0.4654,-0.2155,0.9217,0.3225,-0.2155,0.9217,0.3225,-0.311,0.8286,0.4654,-0.3958,0.8286,0.3958,-0.2155,0.9217,0.3225,-0.3958,0.8286,0.3958,-0.2743,0.9217,0.2743,-0.2743,0.9217,0.2743,-0.3958,0.8286,0.3958,-0.4654,0.8286,0.311,-0.2743,0.9217,0.2743,-0.4654,0.8286,0.311,-0.3225,0.9217,0.2155,-0.3225,0.9217,0.2155,-0.4654,0.8286,0.311,-0.5172,0.8286,0.2142,-0.3225,0.9217,0.2155,-0.5172,0.8286,0.2142,-0.3584,0.9217,0.1484,-0.3584,0.9217,0.1484,-0.5172,0.8286,0.2142,-0.549,0.8286,0.1092,-0.3584,0.9217,0.1484,-0.549,0.8286,0.1092,-0.3804,0.9217,0.0757,-0.3804,0.9217,0.0757,-0.549,0.8286,0.1092,-0.5598,0.8286,0.0,-0.3804,0.9217,0.0757,-0.5598,0.8286,0.0,-0.3879,0.9217,0.0,-0.3879,0.9217,0.0,-0.5598,0.8286,0.0,-0.549,0.8286,-0.1092,-0.3879,0.9217,0.0,-0.549,0.8286,-0.1092,-0.3804,0.9217,-0.0757,-0.3804,0.9217,-0.0757,-0.549,0.8286,-0.1092,-0.5172,0.8286,-0.2142,-0.3804,0.9217,-0.0757,-0.5172,0.8286,-0.2142,-0.3584,0.9217,-0.1484,-0.3584,0.9217,-0.1484,-0.5172,0.8286,-0.2142,-0.4654,0.8286,-0.311,-0.3584,0.9217,-0.1484,-0.4654,0.8286,-0.311,-0.3225,0.9217,-0.2155,-0.3225,0.9217,-0.2155,-0.4654,0.8286,-0.311,-0.3958,0.8286,-0.3958,-0.3225,0.9217,-0.2155,-0.3958,0.8286,-0.3958,-0.2743,0.9217,-0.2743,-0.2743,0.9217,-0.2743,-0.3958,0.8286,-0.3958,-0.311,0.8286,-0.4654,-0.2743,0.9217,-0.2743,-0.311,0.8286,-0.4654,-0.2155,0.9217,-0.3225,-0.2155,0.9217,-0.3225,-0.311,0.8286,-0.4654,-0.2142,0.8286,-0.5172,-0.2155,0.9217,-0.3225,-0.2142,0.8286,-0.5172,-0.1484,0.9217,-0.3584,-0.1484,0.9217,-0.3584,-0.2142,0.8286,-0.5172,-0.1092,0.8286,-0.549,-0.1484,0.9217,-0.3584,-0.1092,0.8286,-0.549,-0.0757,0.9217,-0.3804,-0.0757,0.9217,-0.3804,-0.1092,0.8286,-0.549,0.0,0.8286,-0.5598,-0.0757,0.9217,-0.3804,0.0,0.8286,-0.5598,0.0,0.9217,-0.3879,0.0,0.9217,-0.3879,0.0,0.8286,-0.5598,0.1092,0.8286,-0.549,0.0,0.9217,-0.3879,0.1092,0.8286,-0.549,0.0757,0.9217,-0.3804,0.0757,0.9217,-0.3804,0.1092,0.8286,-0.549,0.2142,0.8286,-0.5172,0.0757,0.9217,-0.3804,0.2142,0.8286,-0.5172,0.1484,0.9217,-0.3584,0.1484,0.9217,-0.3584,0.2142,0.8286,-0.5172,0.311,0.8286,-0.4654,0.1484,0.9217,-0.3584,0.311,0.8286,-0.4654,0.2155,0.9217,-0.3225,0.2155,0.9217,-0.3225,0.311,0.8286,-0.4654,0.3958,0.8286,-0.3958,0.2155,0.9217,-0.3225,0.3958,0.8286,-0.3958,0.2743,0.9217,-0.2743,0.2743,0.9217,-0.2743,0.3958,0.8286,-0.3958,0.4654,0.8286,-0.311,0.2743,0.9217,-0.2743,0.4654,0.8286,-0.311,0.3225,0.9217,-0.2155,0.3225,0.9217,-0.2155,0.4654,0.8286,-0.311,0.5172,0.8286,-0.2142,0.3225,0.9217,-0.2155,0.5172,0.8286,-0.2142,0.3584,0.9217,-0.1484,0.3584,0.9217,-0.1484,0.5172,0.8286,-0.2142,0.549,0.8286,-0.1092,0.3584,0.9217,-0.1484,0.549,0.8286,-0.1092,0.3804,0.9217,-0.0757,0.3804,0.9217,-0.0757,0.549,0.8286,-0.1092,0.5598,0.8286,0.0,0.3804,0.9217,-0.0757,0.5598,0.8286,0.0,0.3879,0.9217,0.0,0.3879,0.9217,0.0,0.5598,0.8286,0.0,0.549,0.8286,0.1092,0.3879,0.9217,0.0,0.549,0.8286,0.1092,0.3804,0.9217,0.0757,0.3804,0.9217,0.0757,0.549,0.8286,0.1092,0.5172,0.8286,0.2142,0.3804,0.9217,0.0757,0.5172,0.8286,0.2142,0.3584,0.9217,0.1484,0.3584,0.9217,0.1484,0.5172,0.8286,0.2142,0.4654,0.8286,0.311,0.3584,0.9217,0.1484,0.4654,0.8286,0.311,0.3225,0.9217,0.2155,0.3225,0.9217,0.2155,0.4654,0.8286,0.311,0.3958,0.8286,0.3958,0.3225,0.9217,0.2155,0.3958,0.8286,0.3958,0.2743,0.9217,0.2743,0.2743,0.9217,0.2743,0.3958,0.8286,0.3958,0.311,0.8286,0.4654,0.2743,0.9217,0.2743,0.311,0.8286,0.4654,0.2155,0.9217,0.3225,0.2155,0.9217,0.3225,0.311,0.8286,0.4654,0.2142,0.8286,0.5172,0.2155,0.9217,0.3225,0.2142,0.8286,0.5172,0.1484,0.9217,0.3584,0.1484,0.9217,0.3584,0.2142,0.8286,0.5172,0.1092,0.8286,0.549,0.1484,0.9217,0.3584,0.1092,0.8286,0.549,0.0757,0.9217,0.3804,0.0757,0.9217,0.3804,0.1092,0.8286,0.549,0.0,0.8286,0.5598,0.0757,0.9217,0.3804,0.0,0.8286,0.5598,0.0,0.9217,0.3879,0.0,0.8286,0.5598,0.0,0.7041,0.7101,-0.1385,0.7041,0.6965,0.0,0.8286,0.5598,-0.1385,0.7041,0.6965,-0.1092,0.8286,0.549,-0.1092,0.8286,0.549,-0.1385,0.7041,0.6965,-0.2718,0.7041,0.6561,-0.1092,0.8286,0.549,-0.2718,0.7041,0.6561,-0.2142,0.8286,0.5172,-0.2142,0.8286,0.5172,-0.2718,0.7041,0.6561,-0.3945,0.7041,0.5905,-0.2142,0.8286,0.5172,-0.3945,0.7041,0.5905,-0.311,0.8286,0.4654,-0.311,0.8286,0.4654,-0.3945,0.7041,0.5905,-0.5021,0.7041,0.5021,-0.311,0.8286,0.4654,-0.5021,0.7041,0.5021,-0.3958,0.8286,0.3958,-0.3958,0.8286,0.3958,-0.5021,0.7041,0.5021,-0.5905,0.7041,0.3945,-0.3958,0.8286,0.3958,-0.5905,0.7041,0.3945,-0.4654,0.8286,0.311,-0.4654,0.8286,0.311,-0.5905,0.7041,0.3945,-0.6561,0.7041,0.2718,-0.4654,0.8286,0.311,-0.6561,0.7041,0.2718,-0.5172,0.8286,0.2142,-0.5172,0.8286,0.2142,-0.6561,0.7041,0.2718,-0.6965,0.7041,0.1385,-0.5172,0.8286,0.2142,-0.6965,0.7041,0.1385,-0.549,0.8286,0.1092,-0.549,0.8286,0.1092,-0.6965,0.7041,0.1385,-0.7101,0.7041,0.0,-0.549,0.8286,0.1092,-0.7101,0.7041,0.0,-0.5598,0.8286,0.0,-0.5598,0.8286,0.0,-0.7101,0.7041,0.0,-0.6965,0.7041,-0.1385,-0.5598,0.8286,0.0,-0.6965,0.7041,-0.1385,-0.549,0.8286,-0.1092,-0.549,0.8286,-0.1092,-0.6965,0.7041,-0.1385,-0.6561,0.7041,-0.2718,-0.549,0.8286,-0.1092,-0.6561,0.7041,-0.2718,-0.5172,0.8286,-0.2142,-0.5172,0.8286,-0.2142,-0.6561,0.7041,-0.2718,-0.5905,0.7041,-0.3945,-0.5172,0.8286,-0.2142,-0.5905,0.7041,-0.3945,-0.4654,0.8286,-0.311,-0.4654,0.8286,-0.311,-0.5905,0.7041,-0.3945,-0.5021,0.7041,-0.5021,-0.4654,0.8286,-0.311,-0.5021,0.7041,-0.5021,-0.3958,0.8286,-0.3958,-0.3958,0.8286,-0.3958,-0.5021,0.7041,-0.5021,-0.3945,0.7041,-0.5905,-0.3958,0.8286,-0.3958,-0.3945,0.7041,-0.5905,-0.311,0.8286,-0.4654,-0.311,0.8286,-0.4654,-0.3945,0.7041,-0.5905,-0.2718,0.7041,-0.6561,-0.311,0.8286,-0.4654,-0.2718,0.7041,-0.6561,-0.2142,0.8286,-0.5172,-0.2142,0.8286,-0.5172,-0.2718,0.7041,-0.6561,-0.1385,0.7041,-0.6965,-0.2142,0.8286,-0.5172,-0.1385,0.7041,-0.6965,-0.1092,0.8286,-0.549,-0.1092,0.8286,-0.549,-0.1385,0.7041,-0.6965,0.0,0.7041,-0.7101,-0.1092,0.8286,-0.549,0.0,0.7041,-0.7101,0.0,0.8286,-0.5598,0.0,0.8286,-0.5598,0.0,0.7041,-0.7101,0.1385,0.7041,-0.6965,0.0,0.8286,-0.5598,0.1385,0.7041,-0.6965,0.1092,0.8286,-0.549,0.1092,0.8286,-0.549,0.1385,0.7041,-0.6965,0.2718,0.7041,-0.6561,0.1092,0.8286,-0.549,0.2718,0.7041,-0.6561,0.2142,0.8286,-0.5172,0.2142,0.8286,-0.5172,0.2718,0.7041,-0.6561,0.3945,0.7041,-0.5905,0.2142,0.8286,-0.5172,0.3945,0.7041,-0.5905,0.311,0.8286,-0.4654,0.311,0.8286,-0.4654,0.3945,0.7041,-0.5905,0.5021,0.7041,-0.5021,0.311,0.8286,-0.4654,0.5021,0.7041,-0.5021,0.3958,0.8286,-0.3958,0.3958,0.8286,-0.3958,0.5021,0.7041,-0.5021,0.5905,0.7041,-0.3945,0.3958,0.8286,-0.3958,0.5905,0.7041,-0.3945,0.4654,0.8286,-0.311,0.4654,0.8286,-0.311,0.5905,0.7041,-0.3945,0.6561,0.7041,-0.2718,0.4654,0.8286,-0.311,0.6561,0.7041,-0.2718,0.5172,0.8286,-0.2142,0.5172,0.8286,-0.2142,0.6561,0.7041,-0.2718,0.6965,0.7041,-0.1385,0.5172,0.8286,-0.2142,0.6965,0.7041,-0.1385,0.549,0.8286,-0.1092,0.549,0.8286,-0.1092,0.6965,0.7041,-0.1385,0.7101,0.7041,0.0,0.549,0.8286,-0.1092,0.7101,0.7041,0.0,0.5598,0.8286,0.0,0.5598,0.8286,0.0,0.7101,0.7041,0.0,0.6965,0.7041,0.1385,0.5598,0.8286,0.0,0.6965,0.7041,0.1385,0.549,0.8286,0.1092,0.549,0.8286,0.1092,0.6965,0.7041,0.1385,0.6561,0.7041,0.2718,0.549,0.8286,0.1092,0.6561,0.7041,0.2718,0.5172,0.8286,0.2142,0.5172,0.8286,0.2142,0.6561,0.7041,0.2718,0.5905,0.7041,0.3945,0.5172,0.8286,0.2142,0.5905,0.7041,0.3945,0.4654,0.8286,0.311,0.4654,0.8286,0.311,0.5905,0.7041,0.3945,0.5021,0.7041,0.5021,0.4654,0.8286,0.311,0.5021,0.7041,0.5021,0.3958,0.8286,0.3958,0.3958,0.8286,0.3958,0.5021,0.7041,0.5021,0.3945,0.7041,0.5905,0.3958,0.8286,0.3958,0.3945,0.7041,0.5905,0.311,0.8286,0.4654,0.311,0.8286,0.4654,0.3945,0.7041,0.5905,0.2718,0.7041,0.6561,0.311,0.8286,0.4654,0.2718,0.7041,0.6561,0.2142,0.8286,0.5172,0.2142,0.8286,0.5172,0.2718,0.7041,0.6561,0.1385,0.7041,0.6965,0.2142,0.8286,0.5172,0.1385,0.7041,0.6965,0.1092,0.8286,0.549,0.1092,0.8286,0.549,0.1385,0.7041,0.6965,0.0,0.7041,0.7101,0.1092,0.8286,0.549,0.0,0.7041,0.7101,0.0,0.8286,0.5598,0.0,0.7041,0.7101,0.0,0.5528,0.8333,-0.1626,0.5528,0.8173,0.0,0.7041,0.7101,-0.1626,0.5528,0.8173,-0.1385,0.7041,0.6965,-0.1385,0.7041,0.6965,-0.1626,0.5528,0.8173,-0.3189,0.5528,0.7699,-0.1385,0.7041,0.6965,-0.3189,0.5528,0.7699,-0.2718,0.7041,0.6561,-0.2718,0.7041,0.6561,-0.3189,0.5528,0.7699,-0.463,0.5528,0.6929,-0.2718,0.7041,0.6561,-0.463,0.5528,0.6929,-0.3945,0.7041,0.5905,-0.3945,0.7041,0.5905,-0.463,0.5528,0.6929,-0.5893,0.5528,0.5893,-0.3945,0.7041,0.5905,-0.5893,0.5528,0.5893,-0.5021,0.7041,0.5021,-0.5021,0.7041,0.5021,-0.5893,0.5528,0.5893,-0.6929,0.5528,0.463,-0.5021,0.7041,0.5021,-0.6929,0.5528,0.463,-0.5905,0.7041,0.3945,-0.5905,0.7041,0.3945,-0.6929,0.5528,0.463,-0.7699,0.5528,0.3189,-0.5905,0.7041,0.3945,-0.7699,0.5528,0.3189,-0.6561,0.7041,0.2718,-0.6561,0.7041,0.2718,-0.7699,0.5528,0.3189,-0.8173,0.5528,0.1626,-0.6561,0.7041,0.2718,-0.8173,0.5528,0.1626,-0.6965,0.7041,0.1385,-0.6965,0.7041,0.1385,-0.8173,0.5528,0.1626,-0.8333,0.5528,0.0,-0.6965,0.7041,0.1385,-0.8333,0.5528,0.0,-0.7101,0.7041,0.0,-0.7101,0.7041,0.0,-0.8333,0.5528,0.0,-0.8173,0.5528,-0.1626,-0.7101,0.7041,0.0,-0.8173,0.5528,-0.1626,-0.6965,0.7041,-0.1385,-0.6965,0.7041,-0.1385,-0.8173,0.5528,-0.1626,-0.7699,0.5528,-0.3189,-0.6965,0.7041,-0.1385,-0.7699,0.5528,-0.3189,-0.6561,0.7041,-0.2718,-0.6561,0.7041,-0.2718,-0.7699,0.5528,-0.3189,-0.6929,0.5528,-0.463,-0.6561,0.7041,-0.2718,-0.6929,0.5528,-0.463,-0.5905,0.7041,-0.3945,-0.5905,0.7041,-0.3945,-0.6929,0.5528,-0.463,-0.5893,0.5528,-0.5893,-0.5905,0.7041,-0.3945,-0.5893,0.5528,-0.5893,-0.5021,0.7041,-0.5021,-0.5021,0.7041,-0.5021,-0.5893,0.5528,-0.5893,-0.463,0.5528,-0.6929,-0.5021,0.7041,-0.5021,-0.463,0.5528,-0.6929,-0.3945,0.7041,-0.5905,-0.3945,0.7041,-0.5905,-0.463,0.5528,-0.6929,-0.3189,0.5528,-0.7699,-0.3945,0.7041,-0.5905,-0.3189,0.5528,-0.7699,-0.2718,0.7041,-0.6561,-0.2718,0.7041,-0.6561,-0.3189,0.5528,-0.7699,-0.1626,0.5528,-0.8173,-0.2718,0.7041,-0.6561,-0.1626,0.5528,-0.8173,-0.1385,0.7041,-0.6965,-0.1385,0.7041,-0.6965,-0.1626,0.5528,-0.8173,0.0,0.5528,-0.8333,-0.1385,0.7041,-0.6965,0.0,0.5528,-0.8333,0.0,0.7041,-0.7101,0.0,0.7041,-0.7101,0.0,0.5528,-0.8333,0.1626,0.5528,-0.8173,0.0,0.7041,-0.7101,0.1626,0.5528,-0.8173,0.1385,0.7041,-0.6965,0.1385,0.7041,-0.6965,0.1626,0.5528,-0.8173,0.3189,0.5528,-0.7699,0.1385,0.7041,-0.6965,0.3189,0.5528,-0.7699,0.2718,0.7041,-0.6561,0.2718,0.7041,-0.6561,0.3189,0.5528,-0.7699,0.463,0.5528,-0.6929,0.2718,0.7041,-0.6561,0.463,0.5528,-0.6929,0.3945,0.7041,-0.5905,0.3945,0.7041,-0.5905,0.463,0.5528,-0.6929,0.5893,0.5528,-0.5893,0.3945,0.7041,-0.5905,0.5893,0.5528,-0.5893,0.5021,0.7041,-0.5021,0.5021,0.7041,-0.5021,0.5893,0.5528,-0.5893,0.6929,0.5528,-0.463,0.5021,0.7041,-0.5021,0.6929,0.5528,-0.463,0.5905,0.7041,-0.3945,0.5905,0.7041,-0.3945,0.6929,0.5528,-0.463,0.7699,0.5528,-0.3189,0.5905,0.7041,-0.3945,0.7699,0.5528,-0.3189,0.6561,0.7041,-0.2718,0.6561,0.7041,-0.2718,0.7699,0.5528,-0.3189,0.8173,0.5528,-0.1626,0.6561,0.7041,-0.2718,0.8173,0.5528,-0.1626,0.6965,0.7041,-0.1385,0.6965,0.7041,-0.1385,0.8173,0.5528,-0.1626,0.8333,0.5528,0.0,0.6965,0.7041,-0.1385,0.8333,0.5528,0.0,0.7101,0.7041,0.0,0.7101,0.7041,0.0,0.8333,0.5528,0.0,0.8173,0.5528,0.1626,0.7101,0.7041,0.0,0.8173,0.5528,0.1626,0.6965,0.7041,0.1385,0.6965,0.7041,0.1385,0.8173,0.5528,0.1626,0.7699,0.5528,0.3189,0.6965,0.7041,0.1385,0.7699,0.5528,0.3189,0.6561,0.7041,0.2718,0.6561,0.7041,0.2718,0.7699,0.5528,0.3189,0.6929,0.5528,0.463,0.6561,0.7041,0.2718,0.6929,0.5528,0.463,0.5905,0.7041,0.3945,0.5905,0.7041,0.3945,0.6929,0.5528,0.463,0.5893,0.5528,0.5893,0.5905,0.7041,0.3945,0.5893,0.5528,0.5893,0.5021,0.7041,0.5021,0.5021,0.7041,0.5021,0.5893,0.5528,0.5893,0.463,0.5528,0.6929,0.5021,0.7041,0.5021,0.463,0.5528,0.6929,0.3945,0.7041,0.5905,0.3945,0.7041,0.5905,0.463,0.5528,0.6929,0.3189,0.5528,0.7699,0.3945,0.7041,0.5905,0.3189,0.5528,0.7699,0.2718,0.7041,0.6561,0.2718,0.7041,0.6561,0.3189,0.5528,0.7699,0.1626,0.5528,0.8173,0.2718,0.7041,0.6561,0.1626,0.5528,0.8173,0.1385,0.7041,0.6965,0.1385,0.7041,0.6965,0.1626,0.5528,0.8173,0.0,0.5528,0.8333,0.1385,0.7041,0.6965,0.0,0.5528,0.8333,0.0,0.7041,0.7101,0.0,0.5528,0.8333,0.0,0.3805,0.9248,-0.1804,0.3805,0.907,0.0,0.5528,0.8333,-0.1804,0.3805,0.907,-0.1626,0.5528,0.8173,-0.1626,0.5528,0.8173,-0.1804,0.3805,0.907,-0.3539,0.3805,0.8544,-0.1626,0.5528,0.8173,-0.3539,0.3805,0.8544,-0.3189,0.5528,0.7699,-0.3189,0.5528,0.7699,-0.3539,0.3805,0.8544,-0.5138,0.3805,0.7689,-0.3189,0.5528,0.7699,-0.5138,0.3805,0.7689,-0.463,0.5528,0.6929,-0.463,0.5528,0.6929,-0.5138,0.3805,0.7689,-0.6539,0.3805,0.6539,-0.463,0.5528,0.6929,-0.6539,0.3805,0.6539,-0.5893,0.5528,0.5893,-0.5893,0.5528,0.5893,-0.6539,0.3805,0.6539,-0.7689,0.3805,0.5138,-0.5893,0.5528,0.5893,-0.7689,0.3805,0.5138,-0.6929,0.5528,0.463,-0.6929,0.5528,0.463,-0.7689,0.3805,0.5138,-0.8544,0.3805,0.3539,-0.6929,0.5528,0.463,-0.8544,0.3805,0.3539,-0.7699,0.5528,0.3189,-0.7699,0.5528,0.3189,-0.8544,0.3805,0.3539,-0.907,0.3805,0.1804,-0.7699,0.5528,0.3189,-0.907,0.3805,0.1804,-0.8173,0.5528,0.1626,-0.8173,0.5528,0.1626,-0.907,0.3805,0.1804,-0.9248,0.3805,0.0,-0.8173,0.5528,0.1626,-0.9248,0.3805,0.0,-0.8333,0.5528,0.0,-0.8333,0.5528,0.0,-0.9248,0.3805,0.0,-0.907,0.3805,-0.1804,-0.8333,0.5528,0.0,-0.907,0.3805,-0.1804,-0.8173,0.5528,-0.1626,-0.8173,0.5528,-0.1626,-0.907,0.3805,-0.1804,-0.8544,0.3805,-0.3539,-0.8173,0.5528,-0.1626,-0.8544,0.3805,-0.3539,-0.7699,0.5528,-0.3189,-0.7699,0.5528,-0.3189,-0.8544,0.3805,-0.3539,-0.7689,0.3805,-0.5138,-0.7699,0.5528,-0.3189,-0.7689,0.3805,-0.5138,-0.6929,0.5528,-0.463,-0.6929,0.5528,-0.463,-0.7689,0.3805,-0.5138,-0.6539,0.3805,-0.6539,-0.6929,0.5528,-0.463,-0.6539,0.3805,-0.6539,-0.5893,0.5528,-0.5893,-0.5893,0.5528,-0.5893,-0.6539,0.3805,-0.6539,-0.5138,0.3805,-0.7689,-0.5893,0.5528,-0.5893,-0.5138,0.3805,-0.7689,-0.463,0.5528,-0.6929,-0.463,0.5528,-0.6929,-0.5138,0.3805,-0.7689,-0.3539,0.3805,-0.8544,-0.463,0.5528,-0.6929,-0.3539,0.3805,-0.8544,-0.3189,0.5528,-0.7699,-0.3189,0.5528,-0.7699,-0.3539,0.3805,-0.8544,-0.1804,0.3805,-0.907,-0.3189,0.5528,-0.7699,-0.1804,0.3805,-0.907,-0.1626,0.5528,-0.8173,-0.1626,0.5528,-0.8173,-0.1804,0.3805,-0.907,0.0,0.3805,-0.9248,-0.1626,0.5528,-0.8173,0.0,0.3805,-0.9248,0.0,0.5528,-0.8333,0.0,0.5528,-0.8333,0.0,0.3805,-0.9248,0.1804,0.3805,-0.907,0.0,0.5528,-0.8333,0.1804,0.3805,-0.907,0.1626,0.5528,-0.8173,0.1626,0.5528,-0.8173,0.1804,0.3805,-0.907,0.3539,0.3805,-0.8544,0.1626,0.5528,-0.8173,0.3539,0.3805,-0.8544,0.3189,0.5528,-0.7699,0.3189,0.5528,-0.7699,0.3539,0.3805,-0.8544,0.5138,0.3805,-0.7689,0.3189,0.5528,-0.7699,0.5138,0.3805,-0.7689,0.463,0.5528,-0.6929,0.463,0.5528,-0.6929,0.5138,0.3805,-0.7689,0.6539,0.3805,-0.6539,0.463,0.5528,-0.6929,0.6539,0.3805,-0.6539,0.5893,0.5528,-0.5893,0.5893,0.5528,-0.5893,0.6539,0.3805,-0.6539,0.7689,0.3805,-0.5138,0.5893,0.5528,-0.5893,0.7689,0.3805,-0.5138,0.6929,0.5528,-0.463,0.6929,0.5528,-0.463,0.7689,0.3805,-0.5138,0.8544,0.3805,-0.3539,0.6929,0.5528,-0.463,0.8544,0.3805,-0.3539,0.7699,0.5528,-0.3189,0.7699,0.5528,-0.3189,0.8544,0.3805,-0.3539,0.907,0.3805,-0.1804,0.7699,0.5528,-0.3189,0.907,0.3805,-0.1804,0.8173,0.5528,-0.1626,0.8173,0.5528,-0.1626,0.907,0.3805,-0.1804,0.9248,0.3805,0.0,0.8173,0.5528,-0.1626,0.9248,0.3805,0.0,0.8333,0.5528,0.0,0.8333,0.5528,0.0,0.9248,0.3805,0.0,0.907,0.3805,0.1804,0.8333,0.5528,0.0,0.907,0.3805,0.1804,0.8173,0.5528,0.1626,0.8173,0.5528,0.1626,0.907,0.3805,0.1804,0.8544,0.3805,0.3539,0.8173,0.5528,0.1626,0.8544,0.3805,0.3539,0.7699,0.5528,0.3189,0.7699,0.5528,0.3189,0.8544,0.3805,0.3539,0.7689,0.3805,0.5138,0.7699,0.5528,0.3189,0.7689,0.3805,0.5138,0.6929,0.5528,0.463,0.6929,0.5528,0.463,0.7689,0.3805,0.5138,0.6539,0.3805,0.6539,0.6929,0.5528,0.463,0.6539,0.3805,0.6539,0.5893,0.5528,0.5893,0.5893,0.5528,0.5893,0.6539,0.3805,0.6539,0.5138,0.3805,0.7689,0.5893,0.5528,0.5893,0.5138,0.3805,0.7689,0.463,0.5528,0.6929,0.463,0.5528,0.6929,0.5138,0.3805,0.7689,0.3539,0.3805,0.8544,0.463,0.5528,0.6929,0.3539,0.3805,0.8544,0.3189,0.5528,0.7699,0.3189,0.5528,0.7699,0.3539,0.3805,0.8544,0.1804,0.3805,0.907,0.3189,0.5528,0.7699,0.1804,0.3805,0.907,0.1626,0.5528,0.8173,0.1626,0.5528,0.8173,0.1804,0.3805,0.907,0.0,0.3805,0.9248,0.1626,0.5528,0.8173,0.0,0.3805,0.9248,0.0,0.5528,0.8333,0.0,0.3805,0.9248,0.0,0.1939,0.981,-0.1914,0.1939,0.9622,0.0,0.3805,0.9248,-0.1914,0.1939,0.9622,-0.1804,0.3805,0.907,-0.1804,0.3805,0.907,-0.1914,0.1939,0.9622,-0.3754,0.1939,0.9063,-0.1804,0.3805,0.907,-0.3754,0.1939,0.9063,-0.3539,0.3805,0.8544,-0.3539,0.3805,0.8544,-0.3754,0.1939,0.9063,-0.545,0.1939,0.8157,-0.3539,0.3805,0.8544,-0.545,0.1939,0.8157,-0.5138,0.3805,0.7689,-0.5138,0.3805,0.7689,-0.545,0.1939,0.8157,-0.6937,0.1939,0.6937,-0.5138,0.3805,0.7689,-0.6937,0.1939,0.6937,-0.6539,0.3805,0.6539,-0.6539,0.3805,0.6539,-0.6937,0.1939,0.6937,-0.8157,0.1939,0.545,-0.6539,0.3805,0.6539,-0.8157,0.1939,0.545,-0.7689,0.3805,0.5138,-0.7689,0.3805,0.5138,-0.8157,0.1939,0.545,-0.9063,0.1939,0.3754,-0.7689,0.3805,0.5138,-0.9063,0.1939,0.3754,-0.8544,0.3805,0.3539,-0.8544,0.3805,0.3539,-0.9063,0.1939,0.3754,-0.9622,0.1939,0.1914,-0.8544,0.3805,0.3539,-0.9622,0.1939,0.1914,-0.907,0.3805,0.1804,-0.907,0.3805,0.1804,-0.9622,0.1939,0.1914,-0.981,0.1939,0.0,-0.907,0.3805,0.1804,-0.981,0.1939,0.0,-0.9248,0.3805,0.0,-0.9248,0.3805,0.0,-0.981,0.1939,0.0,-0.9622,0.1939,-0.1914,-0.9248,0.3805,0.0,-0.9622,0.1939,-0.1914,-0.907,0.3805,-0.1804,-0.907,0.3805,-0.1804,-0.9622,0.1939,-0.1914,-0.9063,0.1939,-0.3754,-0.907,0.3805,-0.1804,-0.9063,0.1939,-0.3754,-0.8544,0.3805,-0.3539,-0.8544,0.3805,-0.3539,-0.9063,0.1939,-0.3754,-0.8157,0.1939,-0.545,-0.8544,0.3805,-0.3539,-0.8157,0.1939,-0.545,-0.7689,0.3805,-0.5138,-0.7689,0.3805,-0.5138,-0.8157,0.1939,-0.545,-0.6937,0.1939,-0.6937,-0.7689,0.3805,-0.5138,-0.6937,0.1939,-0.6937,-0.6539,0.3805,-0.6539,-0.6539,0.3805,-0.6539,-0.6937,0.1939,-0.6937,-0.545,0.1939,-0.8157,-0.6539,0.3805,-0.6539,-0.545,0.1939,-0.8157,-0.5138,0.3805,-0.7689,-0.5138,0.3805,-0.7689,-0.545,0.1939,-0.8157,-0.3754,0.1939,-0.9063,-0.5138,0.3805,-0.7689,-0.3754,0.1939,-0.9063,-0.3539,0.3805,-0.8544,-0.3539,0.3805,-0.8544,-0.3754,0.1939,-0.9063,-0.1914,0.1939,-0.9622,-0.3539,0.3805,-0.8544,-0.1914,0.1939,-0.9622,-0.1804,0.3805,-0.907,-0.1804,0.3805,-0.907,-0.1914,0.1939,-0.9622,0.0,0.1939,-0.981,-0.1804,0.3805,-0.907,0.0,0.1939,-0.981,0.0,0.3805,-0.9248,0.0,0.3805,-0.9248,0.0,0.1939,-0.981,0.1914,0.1939,-0.9622,0.0,0.3805,-0.9248,0.1914,0.1939,-0.9622,0.1804,0.3805,-0.907,0.1804,0.3805,-0.907,0.1914,0.1939,-0.9622,0.3754,0.1939,-0.9063,0.1804,0.3805,-0.907,0.3754,0.1939,-0.9063,0.3539,0.3805,-0.8544,0.3539,0.3805,-0.8544,0.3754,0.1939,-0.9063,0.545,0.1939,-0.8157,0.3539,0.3805,-0.8544,0.545,0.1939,-0.8157,0.5138,0.3805,-0.7689,0.5138,0.3805,-0.7689,0.545,0.1939,-0.8157,0.6937,0.1939,-0.6937,0.5138,0.3805,-0.7689,0.6937,0.1939,-0.6937,0.6539,0.3805,-0.6539,0.6539,0.3805,-0.6539,0.6937,0.1939,-0.6937,0.8157,0.1939,-0.545,0.6539,0.3805,-0.6539,0.8157,0.1939,-0.545,0.7689,0.3805,-0.5138,0.7689,0.3805,-0.5138,0.8157,0.1939,-0.545,0.9063,0.1939,-0.3754,0.7689,0.3805,-0.5138,0.9063,0.1939,-0.3754,0.8544,0.3805,-0.3539,0.8544,0.3805,-0.3539,0.9063,0.1939,-0.3754,0.9622,0.1939,-0.1914,0.8544,0.3805,-0.3539,0.9622,0.1939,-0.1914,0.907,0.3805,-0.1804,0.907,0.3805,-0.1804,0.9622,0.1939,-0.1914,0.981,0.1939,0.0,0.907,0.3805,-0.1804,0.981,0.1939,0.0,0.9248,0.3805,0.0,0.9248,0.3805,0.0,0.981,0.1939,0.0,0.9622,0.1939,0.1914,0.9248,0.3805,0.0,0.9622,0.1939,0.1914,0.907,0.3805,0.1804,0.907,0.3805,0.1804,0.9622,0.1939,0.1914,0.9063,0.1939,0.3754,0.907,0.3805,0.1804,0.9063,0.1939,0.3754,0.8544,0.3805,0.3539,0.8544,0.3805,0.3539,0.9063,0.1939,0.3754,0.8157,0.1939,0.545,0.8544,0.3805,0.3539,0.8157,0.1939,0.545,0.7689,0.3805,0.5138,0.7689,0.3805,0.5138,0.8157,0.1939,0.545,0.6937,0.1939,0.6937,0.7689,0.3805,0.5138,0.6937,0.1939,0.6937,0.6539,0.3805,0.6539,0.6539,0.3805,0.6539,0.6937,0.1939,0.6937,0.545,0.1939,0.8157,0.6539,0.3805,0.6539,0.545,0.1939,0.8157,0.5138,0.3805,0.7689,0.5138,0.3805,0.7689,0.545,0.1939,0.8157,0.3754,0.1939,0.9063,0.5138,0.3805,0.7689,0.3754,0.1939,0.9063,0.3539,0.3805,0.8544,0.3539,0.3805,0.8544,0.3754,0.1939,0.9063,0.1914,0.1939,0.9622,0.3539,0.3805,0.8544,0.1914,0.1939,0.9622,0.1804,0.3805,0.907,0.1804,0.3805,0.907,0.1914,0.1939,0.9622,0.0,0.1939,0.981,0.1804,0.3805,0.907,0.0,0.1939,0.981,0.0,0.3805,0.9248,0.0,0.1939,0.981,0.0,0.0,1.0,-0.1951,0.0,0.9808,0.0,0.1939,0.981,-0.1951,0.0,0.9808,-0.1914,0.1939,0.9622,-0.1914,0.1939,0.9622,-0.1951,0.0,0.9808,-0.3827,0.0,0.9239,-0.1914,0.1939,0.9622,-0.3827,0.0,0.9239,-0.3754,0.1939,0.9063,-0.3754,0.1939,0.9063,-0.3827,0.0,0.9239,-0.5556,0.0,0.8315,-0.3754,0.1939,0.9063,-0.5556,0.0,0.8315,-0.545,0.1939,0.8157,-0.545,0.1939,0.8157,-0.5556,0.0,0.8315,-0.7071,0.0,0.7071,-0.545,0.1939,0.8157,-0.7071,0.0,0.7071,-0.6937,0.1939,0.6937,-0.6937,0.1939,0.6937,-0.7071,0.0,0.7071,-0.8315,0.0,0.5556,-0.6937,0.1939,0.6937,-0.8315,0.0,0.5556,-0.8157,0.1939,0.545,-0.8157,0.1939,0.545,-0.8315,0.0,0.5556,-0.9239,0.0,0.3827,-0.8157,0.1939,0.545,-0.9239,0.0,0.3827,-0.9063,0.1939,0.3754,-0.9063,0.1939,0.3754,-0.9239,0.0,0.3827,-0.9808,0.0,0.1951,-0.9063,0.1939,0.3754,-0.9808,0.0,0.1951,-0.9622,0.1939,0.1914,-0.9622,0.1939,0.1914,-0.9808,0.0,0.1951,-1.0,0.0,0.0,-0.9622,0.1939,0.1914,-1.0,0.0,0.0,-0.981,0.1939,0.0,-0.981,0.1939,0.0,-1.0,0.0,0.0,-0.9808,0.0,-0.1951,-0.981,0.1939,0.0,-0.9808,0.0,-0.1951,-0.9622,0.1939,-0.1914,-0.9622,0.1939,-0.1914,-0.9808,0.0,-0.1951,-0.9239,0.0,-0.3827,-0.9622,0.1939,-0.1914,-0.9239,0.0,-0.3827,-0.9063,0.1939,-0.3754,-0.9063,0.1939,-0.3754,-0.9239,0.0,-0.3827,-0.8315,0.0,-0.5556,-0.9063,0.1939,-0.3754,-0.8315,0.0,-0.5556,-0.8157,0.1939,-0.545,-0.8157,0.1939,-0.545,-0.8315,0.0,-0.5556,-0.7071,0.0,-0.7071,-0.8157,0.1939,-0.545,-0.7071,0.0,-0.7071,-0.6937,0.1939,-0.6937,-0.6937,0.1939,-0.6937,-0.7071,0.0,-0.7071,-0.5556,0.0,-0.8315,-0.6937,0.1939,-0.6937,-0.5556,0.0,-0.8315,-0.545,0.1939,-0.8157,-0.545,0.1939,-0.8157,-0.5556,0.0,-0.8315,-0.3827,0.0,-0.9239,-0.545,0.1939,-0.8157,-0.3827,0.0,-0.9239,-0.3754,0.1939,-0.9063,-0.3754,0.1939,-0.9063,-0.3827,0.0,-0.9239,-0.1951,0.0,-0.9808,-0.3754,0.1939,-0.9063,-0.1951,0.0,-0.9808,-0.1914,0.1939,-0.9622,-0.1914,0.1939,-0.9622,-0.1951,0.0,-0.9808,0.0,0.0,-1.0,-0.1914,0.1939,-0.9622,0.0,0.0,-1.0,0.0,0.1939,-0.981,0.0,0.1939,-0.981,0.0,0.0,-1.0,0.1951,0.0,-0.9808,0.0,0.1939,-0.981,0.1951,0.0,-0.9808,0.1914,0.1939,-0.9622,0.1914,0.1939,-0.9622,0.1951,0.0,-0.9808,0.3827,0.0,-0.9239,0.1914,0.1939,-0.9622,0.3827,0.0,-0.9239,0.3754,0.1939,-0.9063,0.3754,0.1939,-0.9063,0.3827,0.0,-0.9239,0.5556,0.0,-0.8315,0.3754,0.1939,-0.9063,0.5556,0.0,-0.8315,0.545,0.1939,-0.8157,0.545,0.1939,-0.8157,0.5556,0.0,-0.8315,0.7071,0.0,-0.7071,0.545,0.1939,-0.8157,0.7071,0.0,-0.7071,0.6937,0.1939,-0.6937,0.6937,0.1939,-0.6937,0.7071,0.0,-0.7071,0.8315,0.0,-0.5556,0.6937,0.1939,-0.6937,0.8315,0.0,-0.5556,0.8157,0.1939,-0.545,0.8157,0.1939,-0.545,0.8315,0.0,-0.5556,0.9239,0.0,-0.3827,0.8157,0.1939,-0.545,0.9239,0.0,-0.3827,0.9063,0.1939,-0.3754,0.9063,0.1939,-0.3754,0.9239,0.0,-0.3827,0.9808,0.0,-0.1951,0.9063,0.1939,-0.3754,0.9808,0.0,-0.1951,0.9622,0.1939,-0.1914,0.9622,0.1939,-0.1914,0.9808,0.0,-0.1951,1.0,0.0,0.0,0.9622,0.1939,-0.1914,1.0,0.0,0.0,0.981,0.1939,0.0,0.981,0.1939,0.0,1.0,0.0,0.0,0.9808,0.0,0.1951,0.981,0.1939,0.0,0.9808,0.0,0.1951,0.9622,0.1939,0.1914,0.9622,0.1939,0.1914,0.9808,0.0,0.1951,0.9239,0.0,0.3827,0.9622,0.1939,0.1914,0.9239,0.0,0.3827,0.9063,0.1939,0.3754,0.9063,0.1939,0.3754,0.9239,0.0,0.3827,0.8315,0.0,0.5556,0.9063,0.1939,0.3754,0.8315,0.0,0.5556,0.8157,0.1939,0.545,0.8157,0.1939,0.545,0.8315,0.0,0.5556,0.7071,0.0,0.7071,0.8157,0.1939,0.545,0.7071,0.0,0.7071,0.6937,0.1939,0.6937,0.6937,0.1939,0.6937,0.7071,0.0,0.7071,0.5556,0.0,0.8315,0.6937,0.1939,0.6937,0.5556,0.0,0.8315,0.545,0.1939,0.8157,0.545,0.1939,0.8157,0.5556,0.0,0.8315,0.3827,0.0,0.9239,0.545,0.1939,0.8157,0.3827,0.0,0.9239,0.3754,0.1939,0.9063,0.3754,0.1939,0.9063,0.3827,0.0,0.9239,0.1951,0.0,0.9808,0.3754,0.1939,0.9063,0.1951,0.0,0.9808,0.1914,0.1939,0.9622,0.1914,0.1939,0.9622,0.1951,0.0,0.9808,0.0,0.0,1.0,0.1914,0.1939,0.9622,0.0,0.0,1.0,0.0,0.1939,0.981,0.0,0.0,1.0,0.0,-0.1939,0.981,-0.1914,-0.1939,0.9622,0.0,0.0,1.0,-0.1914,-0.1939,0.9622,-0.1951,0.0,0.9808,-0.1951,0.0,0.9808,-0.1914,-0.1939,0.9622,-0.3754,-0.1939,0.9063,-0.1951,0.0,0.9808,-0.3754,-0.1939,0.9063,-0.3827,0.0,0.9239,-0.3827,0.0,0.9239,-0.3754,-0.1939,0.9063,-0.545,-0.1939,0.8157,-0.3827,0.0,0.9239,-0.545,-0.1939,0.8157,-0.5556,0.0,0.8315,-0.5556,0.0,0.8315,-0.545,-0.1939,0.8157,-0.6937,-0.1939,0.6937,-0.5556,0.0,0.8315,-0.6937,-0.1939,0.6937,-0.7071,0.0,0.7071,-0.7071,0.0,0.7071,-0.6937,-0.1939,0.6937,-0.8157,-0.1939,0.545,-0.7071,0.0,0.7071,-0.8157,-0.1939,0.545,-0.8315,0.0,0.5556,-0.8315,0.0,0.5556,-0.8157,-0.1939,0.545,-0.9063,-0.1939,0.3754,-0.8315,0.0,0.5556,-0.9063,-0.1939,0.3754,-0.9239,0.0,0.3827,-0.9239,0.0,0.3827,-0.9063,-0.1939,0.3754,-0.9622,-0.1939,0.1914,-0.9239,0.0,0.3827,-0.9622,-0.1939,0.1914,-0.9808,0.0,0.1951,-0.9808,0.0,0.1951,-0.9622,-0.1939,0.1914,-0.981,-0.1939,0.0,-0.9808,0.0,0.1951,-0.981,-0.1939,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-0.981,-0.1939,0.0,-0.9622,-0.1939,-0.1914,-1.0,0.0,0.0,-0.9622,-0.1939,-0.1914,-0.9808,0.0,-0.1951,-0.9808,0.0,-0.1951,-0.9622,-0.1939,-0.1914,-0.9063,-0.1939,-0.3754,-0.9808,0.0,-0.1951,-0.9063,-0.1939,-0.3754,-0.9239,0.0,-0.3827,-0.9239,0.0,-0.3827,-0.9063,-0.1939,-0.3754,-0.8157,-0.1939,-0.545,-0.9239,0.0,-0.3827,-0.8157,-0.1939,-0.545,-0.8315,0.0,-0.5556,-0.8315,0.0,-0.5556,-0.8157,-0.1939,-0.545,-0.6937,-0.1939,-0.6937,-0.8315,0.0,-0.5556,-0.6937,-0.1939,-0.6937,-0.7071,0.0,-0.7071,-0.7071,0.0,-0.7071,-0.6937,-0.1939,-0.6937,-0.545,-0.1939,-0.8157,-0.7071,0.0,-0.7071,-0.545,-0.1939,-0.8157,-0.5556,0.0,-0.8315,-0.5556,0.0,-0.8315,-0.545,-0.1939,-0.8157,-0.3754,-0.1939,-0.9063,-0.5556,0.0,-0.8315,-0.3754,-0.1939,-0.9063,-0.3827,0.0,-0.9239,-0.3827,0.0,-0.9239,-0.3754,-0.1939,-0.9063,-0.1914,-0.1939,-0.9622,-0.3827,0.0,-0.9239,-0.1914,-0.1939,-0.9622,-0.1951,0.0,-0.9808,-0.1951,0.0,-0.9808,-0.1914,-0.1939,-0.9622,0.0,-0.1939,-0.981,-0.1951,0.0,-0.9808,0.0,-0.1939,-0.981,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,-0.1939,-0.981,0.1914,-0.1939,-0.9622,0.0,0.0,-1.0,0.1914,-0.1939,-0.9622,0.1951,0.0,-0.9808,0.1951,0.0,-0.9808,0.1914,-0.1939,-0.9622,0.3754,-0.1939,-0.9063,0.1951,0.0,-0.9808,0.3754,-0.1939,-0.9063,0.3827,0.0,-0.9239,0.3827,0.0,-0.9239,0.3754,-0.1939,-0.9063,0.545,-0.1939,-0.8157,0.3827,0.0,-0.9239,0.545,-0.1939,-0.8157,0.5556,0.0,-0.8315,0.5556,0.0,-0.8315,0.545,-0.1939,-0.8157,0.6937,-0.1939,-0.6937,0.5556,0.0,-0.8315,0.6937,-0.1939,-0.6937,0.7071,0.0,-0.7071,0.7071,0.0,-0.7071,0.6937,-0.1939,-0.6937,0.8157,-0.1939,-0.545,0.7071,0.0,-0.7071,0.8157,-0.1939,-0.545,0.8315,0.0,-0.5556,0.8315,0.0,-0.5556,0.8157,-0.1939,-0.545,0.9063,-0.1939,-0.3754,0.8315,0.0,-0.5556,0.9063,-0.1939,-0.3754,0.9239,0.0,-0.3827,0.9239,0.0,-0.3827,0.9063,-0.1939,-0.3754,0.9622,-0.1939,-0.1914,0.9239,0.0,-0.3827,0.9622,-0.1939,-0.1914,0.9808,0.0,-0.1951,0.9808,0.0,-0.1951,0.9622,-0.1939,-0.1914,0.981,-0.1939,0.0,0.9808,0.0,-0.1951,0.981,-0.1939,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.981,-0.1939,0.0,0.9622,-0.1939,0.1914,1.0,0.0,0.0,0.9622,-0.1939,0.1914,0.9808,0.0,0.1951,0.9808,0.0,0.1951,0.9622,-0.1939,0.1914,0.9063,-0.1939,0.3754,0.9808,0.0,0.1951,0.9063,-0.1939,0.3754,0.9239,0.0,0.3827,0.9239,0.0,0.3827,0.9063,-0.1939,0.3754,0.8157,-0.1939,0.545,0.9239,0.0,0.3827,0.8157,-0.1939,0.545,0.8315,0.0,0.5556,0.8315,0.0,0.5556,0.8157,-0.1939,0.545,0.6937,-0.1939,0.6937,0.8315,0.0,0.5556,0.6937,-0.1939,0.6937,0.7071,0.0,0.7071,0.7071,0.0,0.7071,0.6937,-0.1939,0.6937,0.545,-0.1939,0.8157,0.7071,0.0,0.7071,0.545,-0.1939,0.8157,0.5556,0.0,0.8315,0.5556,0.0,0.8315,0.545,-0.1939,0.8157,0.3754,-0.1939,0.9063,0.5556,0.0,0.8315,0.3754,-0.1939,0.9063,0.3827,0.0,0.9239,0.3827,0.0,0.9239,0.3754,-0.1939,0.9063,0.1914,-0.1939,0.9622,0.3827,0.0,0.9239,0.1914,-0.1939,0.9622,0.1951,0.0,0.9808,0.1951,0.0,0.9808,0.1914,-0.1939,0.9622,0.0,-0.1939,0.981,0.1951,0.0,0.9808,0.0,-0.1939,0.981,0.0,0.0,1.0,0.0,-0.1939,0.981,0.0,-0.3805,0.9248,-0.1804,-0.3805,0.907,0.0,-0.1939,0.981,-0.1804,-0.3805,0.907,-0.1914,-0.1939,0.9622,-0.1914,-0.1939,0.9622,-0.1804,-0.3805,0.907,-0.3539,-0.3805,0.8544,-0.1914,-0.1939,0.9622,-0.3539,-0.3805,0.8544,-0.3754,-0.1939,0.9063,-0.3754,-0.1939,0.9063,-0.3539,-0.3805,0.8544,-0.5138,-0.3805,0.7689,-0.3754,-0.1939,0.9063,-0.5138,-0.3805,0.7689,-0.545,-0.1939,0.8157,-0.545,-0.1939,0.8157,-0.5138,-0.3805,0.7689,-0.6539,-0.3805,0.6539,-0.545,-0.1939,0.8157,-0.6539,-0.3805,0.6539,-0.6937,-0.1939,0.6937,-0.6937,-0.1939,0.6937,-0.6539,-0.3805,0.6539,-0.7689,-0.3805,0.5138,-0.6937,-0.1939,0.6937,-0.7689,-0.3805,0.5138,-0.8157,-0.1939,0.545,-0.8157,-0.1939,0.545,-0.7689,-0.3805,0.5138,-0.8544,-0.3805,0.3539,-0.8157,-0.1939,0.545,-0.8544,-0.3805,0.3539,-0.9063,-0.1939,0.3754,-0.9063,-0.1939,0.3754,-0.8544,-0.3805,0.3539,-0.907,-0.3805,0.1804,-0.9063,-0.1939,0.3754,-0.907,-0.3805,0.1804,-0.9622,-0.1939,0.1914,-0.9622,-0.1939,0.1914,-0.907,-0.3805,0.1804,-0.9248,-0.3805,0.0,-0.9622,-0.1939,0.1914,-0.9248,-0.3805,0.0,-0.981,-0.1939,0.0,-0.981,-0.1939,0.0,-0.9248,-0.3805,0.0,-0.907,-0.3805,-0.1804,-0.981,-0.1939,0.0,-0.907,-0.3805,-0.1804,-0.9622,-0.1939,-0.1914,-0.9622,-0.1939,-0.1914,-0.907,-0.3805,-0.1804,-0.8544,-0.3805,-0.3539,-0.9622,-0.1939,-0.1914,-0.8544,-0.3805,-0.3539,-0.9063,-0.1939,-0.3754,-0.9063,-0.1939,-0.3754,-0.8544,-0.3805,-0.3539,-0.7689,-0.3805,-0.5138,-0.9063,-0.1939,-0.3754,-0.7689,-0.3805,-0.5138,-0.8157,-0.1939,-0.545,-0.8157,-0.1939,-0.545,-0.7689,-0.3805,-0.5138,-0.6539,-0.3805,-0.6539,-0.8157,-0.1939,-0.545,-0.6539,-0.3805,-0.6539,-0.6937,-0.1939,-0.6937,-0.6937,-0.1939,-0.6937,-0.6539,-0.3805,-0.6539,-0.5138,-0.3805,-0.7689,-0.6937,-0.1939,-0.6937,-0.5138,-0.3805,-0.7689,-0.545,-0.1939,-0.8157,-0.545,-0.1939,-0.8157,-0.5138,-0.3805,-0.7689,-0.3539,-0.3805,-0.8544,-0.545,-0.1939,-0.8157,-0.3539,-0.3805,-0.8544,-0.3754,-0.1939,-0.9063,-0.3754,-0.1939,-0.9063,-0.3539,-0.3805,-0.8544,-0.1804,-0.3805,-0.907,-0.3754,-0.1939,-0.9063,-0.1804,-0.3805,-0.907,-0.1914,-0.1939,-0.9622,-0.1914,-0.1939,-0.9622,-0.1804,-0.3805,-0.907,0.0,-0.3805,-0.9248,-0.1914,-0.1939,-0.9622,0.0,-0.3805,-0.9248,0.0,-0.1939,-0.981,0.0,-0.1939,-0.981,0.0,-0.3805,-0.9248,0.1804,-0.3805,-0.907,0.0,-0.1939,-0.981,0.1804,-0.3805,-0.907,0.1914,-0.1939,-0.9622,0.1914,-0.1939,-0.9622,0.1804,-0.3805,-0.907,0.3539,-0.3805,-0.8544,0.1914,-0.1939,-0.9622,0.3539,-0.3805,-0.8544,0.3754,-0.1939,-0.9063,0.3754,-0.1939,-0.9063,0.3539,-0.3805,-0.8544,0.5138,-0.3805,-0.7689,0.3754,-0.1939,-0.9063,0.5138,-0.3805,-0.7689,0.545,-0.1939,-0.8157,0.545,-0.1939,-0.8157,0.5138,-0.3805,-0.7689,0.6539,-0.3805,-0.6539,0.545,-0.1939,-0.8157,0.6539,-0.3805,-0.6539,0.6937,-0.1939,-0.6937,0.6937,-0.1939,-0.6937,0.6539,-0.3805,-0.6539,0.7689,-0.3805,-0.5138,0.6937,-0.1939,-0.6937,0.7689,-0.3805,-0.5138,0.8157,-0.1939,-0.545,0.8157,-0.1939,-0.545,0.7689,-0.3805,-0.5138,0.8544,-0.3805,-0.3539,0.8157,-0.1939,-0.545,0.8544,-0.3805,-0.3539,0.9063,-0.1939,-0.3754,0.9063,-0.1939,-0.3754,0.8544,-0.3805,-0.3539,0.907,-0.3805,-0.1804,0.9063,-0.1939,-0.3754,0.907,-0.3805,-0.1804,0.9622,-0.1939,-0.1914,0.9622,-0.1939,-0.1914,0.907,-0.3805,-0.1804,0.9248,-0.3805,0.0,0.9622,-0.1939,-0.1914,0.9248,-0.3805,0.0,0.981,-0.1939,0.0,0.981,-0.1939,0.0,0.9248,-0.3805,0.0,0.907,-0.3805,0.1804,0.981,-0.1939,0.0,0.907,-0.3805,0.1804,0.9622,-0.1939,0.1914,0.9622,-0.1939,0.1914,0.907,-0.3805,0.1804,0.8544,-0.3805,0.3539,0.9622,-0.1939,0.1914,0.8544,-0.3805,0.3539,0.9063,-0.1939,0.3754,0.9063,-0.1939,0.3754,0.8544,-0.3805,0.3539,0.7689,-0.3805,0.5138,0.9063,-0.1939,0.3754,0.7689,-0.3805,0.5138,0.8157,-0.1939,0.545,0.8157,-0.1939,0.545,0.7689,-0.3805,0.5138,0.6539,-0.3805,0.6539,0.8157,-0.1939,0.545,0.6539,-0.3805,0.6539,0.6937,-0.1939,0.6937,0.6937,-0.1939,0.6937,0.6539,-0.3805,0.6539,0.5138,-0.3805,0.7689,0.6937,-0.1939,0.6937,0.5138,-0.3805,0.7689,0.545,-0.1939,0.8157,0.545,-0.1939,0.8157,0.5138,-0.3805,0.7689,0.3539,-0.3805,0.8544,0.545,-0.1939,0.8157,0.3539,-0.3805,0.8544,0.3754,-0.1939,0.9063,0.3754,-0.1939,0.9063,0.3539,-0.3805,0.8544,0.1804,-0.3805,0.907,0.3754,-0.1939,0.9063,0.1804,-0.3805,0.907,0.1914,-0.1939,0.9622,0.1914,-0.1939,0.9622,0.1804,-0.3805,0.907,0.0,-0.3805,0.9248,0.1914,-0.1939,0.9622,0.0,-0.3805,0.9248,0.0,-0.1939,0.981,0.0,-0.3805,0.9248,0.0,-0.5528,0.8333,-0.1626,-0.5528,0.8173,0.0,-0.3805,0.9248,-0.1626,-0.5528,0.8173,-0.1804,-0.3805,0.907,-0.1804,-0.3805,0.907,-0.1626,-0.5528,0.8173,-0.3189,-0.5528,0.7699,-0.1804,-0.3805,0.907,-0.3189,-0.5528,0.7699,-0.3539,-0.3805,0.8544,-0.3539,-0.3805,0.8544,-0.3189,-0.5528,0.7699,-0.463,-0.5528,0.6929,-0.3539,-0.3805,0.8544,-0.463,-0.5528,0.6929,-0.5138,-0.3805,0.7689,-0.5138,-0.3805,0.7689,-0.463,-0.5528,0.6929,-0.5893,-0.5528,0.5893,-0.5138,-0.3805,0.7689,-0.5893,-0.5528,0.5893,-0.6539,-0.3805,0.6539,-0.6539,-0.3805,0.6539,-0.5893,-0.5528,0.5893,-0.6929,-0.5528,0.463,-0.6539,-0.3805,0.6539,-0.6929,-0.5528,0.463,-0.7689,-0.3805,0.5138,-0.7689,-0.3805,0.5138,-0.6929,-0.5528,0.463,-0.7699,-0.5528,0.3189,-0.7689,-0.3805,0.5138,-0.7699,-0.5528,0.3189,-0.8544,-0.3805,0.3539,-0.8544,-0.3805,0.3539,-0.7699,-0.5528,0.3189,-0.8173,-0.5528,0.1626,-0.8544,-0.3805,0.3539,-0.8173,-0.5528,0.1626,-0.907,-0.3805,0.1804,-0.907,-0.3805,0.1804,-0.8173,-0.5528,0.1626,-0.8333,-0.5528,0.0,-0.907,-0.3805,0.1804,-0.8333,-0.5528,0.0,-0.9248,-0.3805,0.0,-0.9248,-0.3805,0.0,-0.8333,-0.5528,0.0,-0.8173,-0.5528,-0.1626,-0.9248,-0.3805,0.0,-0.8173,-0.5528,-0.1626,-0.907,-0.3805,-0.1804,-0.907,-0.3805,-0.1804,-0.8173,-0.5528,-0.1626,-0.7699,-0.5528,-0.3189,-0.907,-0.3805,-0.1804,-0.7699,-0.5528,-0.3189,-0.8544,-0.3805,-0.3539,-0.8544,-0.3805,-0.3539,-0.7699,-0.5528,-0.3189,-0.6929,-0.5528,-0.463,-0.8544,-0.3805,-0.3539,-0.6929,-0.5528,-0.463,-0.7689,-0.3805,-0.5138,-0.7689,-0.3805,-0.5138,-0.6929,-0.5528,-0.463,-0.5893,-0.5528,-0.5893,-0.7689,-0.3805,-0.5138,-0.5893,-0.5528,-0.5893,-0.6539,-0.3805,-0.6539,-0.6539,-0.3805,-0.6539,-0.5893,-0.5528,-0.5893,-0.463,-0.5528,-0.6929,-0.6539,-0.3805,-0.6539,-0.463,-0.5528,-0.6929,-0.5138,-0.3805,-0.7689,-0.5138,-0.3805,-0.7689,-0.463,-0.5528,-0.6929,-0.3189,-0.5528,-0.7699,-0.5138,-0.3805,-0.7689,-0.3189,-0.5528,-0.7699,-0.3539,-0.3805,-0.8544,-0.3539,-0.3805,-0.8544,-0.3189,-0.5528,-0.7699,-0.1626,-0.5528,-0.8173,-0.3539,-0.3805,-0.8544,-0.1626,-0.5528,-0.8173,-0.1804,-0.3805,-0.907,-0.1804,-0.3805,-0.907,-0.1626,-0.5528,-0.8173,0.0,-0.5528,-0.8333,-0.1804,-0.3805,-0.907,0.0,-0.5528,-0.8333,0.0,-0.3805,-0.9248,0.0,-0.3805,-0.9248,0.0,-0.5528,-0.8333,0.1626,-0.5528,-0.8173,0.0,-0.3805,-0.9248,0.1626,-0.5528,-0.8173,0.1804,-0.3805,-0.907,0.1804,-0.3805,-0.907,0.1626,-0.5528,-0.8173,0.3189,-0.5528,-0.7699,0.1804,-0.3805,-0.907,0.3189,-0.5528,-0.7699,0.3539,-0.3805,-0.8544,0.3539,-0.3805,-0.8544,0.3189,-0.5528,-0.7699,0.463,-0.5528,-0.6929,0.3539,-0.3805,-0.8544,0.463,-0.5528,-0.6929,0.5138,-0.3805,-0.7689,0.5138,-0.3805,-0.7689,0.463,-0.5528,-0.6929,0.5893,-0.5528,-0.5893,0.5138,-0.3805,-0.7689,0.5893,-0.5528,-0.5893,0.6539,-0.3805,-0.6539,0.6539,-0.3805,-0.6539,0.5893,-0.5528,-0.5893,0.6929,-0.5528,-0.463,0.6539,-0.3805,-0.6539,0.6929,-0.5528,-0.463,0.7689,-0.3805,-0.5138,0.7689,-0.3805,-0.5138,0.6929,-0.5528,-0.463,0.7699,-0.5528,-0.3189,0.7689,-0.3805,-0.5138,0.7699,-0.5528,-0.3189,0.8544,-0.3805,-0.3539,0.8544,-0.3805,-0.3539,0.7699,-0.5528,-0.3189,0.8173,-0.5528,-0.1626,0.8544,-0.3805,-0.3539,0.8173,-0.5528,-0.1626,0.907,-0.3805,-0.1804,0.907,-0.3805,-0.1804,0.8173,-0.5528,-0.1626,0.8333,-0.5528,0.0,0.907,-0.3805,-0.1804,0.8333,-0.5528,0.0,0.9248,-0.3805,0.0,0.9248,-0.3805,0.0,0.8333,-0.5528,0.0,0.8173,-0.5528,0.1626,0.9248,-0.3805,0.0,0.8173,-0.5528,0.1626,0.907,-0.3805,0.1804,0.907,-0.3805,0.1804,0.8173,-0.5528,0.1626,0.7699,-0.5528,0.3189,0.907,-0.3805,0.1804,0.7699,-0.5528,0.3189,0.8544,-0.3805,0.3539,0.8544,-0.3805,0.3539,0.7699,-0.5528,0.3189,0.6929,-0.5528,0.463,0.8544,-0.3805,0.3539,0.6929,-0.5528,0.463,0.7689,-0.3805,0.5138,0.7689,-0.3805,0.5138,0.6929,-0.5528,0.463,0.5893,-0.5528,0.5893,0.7689,-0.3805,0.5138,0.5893,-0.5528,0.5893,0.6539,-0.3805,0.6539,0.6539,-0.3805,0.6539,0.5893,-0.5528,0.5893,0.463,-0.5528,0.6929,0.6539,-0.3805,0.6539,0.463,-0.5528,0.6929,0.5138,-0.3805,0.7689,0.5138,-0.3805,0.7689,0.463,-0.5528,0.6929,0.3189,-0.5528,0.7699,0.5138,-0.3805,0.7689,0.3189,-0.5528,0.7699,0.3539,-0.3805,0.8544,0.3539,-0.3805,0.8544,0.3189,-0.5528,0.7699,0.1626,-0.5528,0.8173,0.3539,-0.3805,0.8544,0.1626,-0.5528,0.8173,0.1804,-0.3805,0.907,0.1804,-0.3805,0.907,0.1626,-0.5528,0.8173,0.0,-0.5528,0.8333,0.1804,-0.3805,0.907,0.0,-0.5528,0.8333,0.0,-0.3805,0.9248,0.0,-0.5528,0.8333,0.0,-0.7041,0.7101,-0.1385,-0.7041,0.6965,0.0,-0.5528,0.8333,-0.1385,-0.7041,0.6965,-0.1626,-0.5528,0.8173,-0.1626,-0.5528,0.8173,-0.1385,-0.7041,0.6965,-0.2718,-0.7041,0.6561,-0.1626,-0.5528,0.8173,-0.2718,-0.7041,0.6561,-0.3189,-0.5528,0.7699,-0.3189,-0.5528,0.7699,-0.2718,-0.7041,0.6561,-0.3945,-0.7041,0.5905,-0.3189,-0.5528,0.7699,-0.3945,-0.7041,0.5905,-0.463,-0.5528,0.6929,-0.463,-0.5528,0.6929,-0.3945,-0.7041,0.5905,-0.5021,-0.7041,0.5021,-0.463,-0.5528,0.6929,-0.5021,-0.7041,0.5021,-0.5893,-0.5528,0.5893,-0.5893,-0.5528,0.5893,-0.5021,-0.7041,0.5021,-0.5905,-0.7041,0.3945,-0.5893,-0.5528,0.5893,-0.5905,-0.7041,0.3945,-0.6929,-0.5528,0.463,-0.6929,-0.5528,0.463,-0.5905,-0.7041,0.3945,-0.6561,-0.7041,0.2718,-0.6929,-0.5528,0.463,-0.6561,-0.7041,0.2718,-0.7699,-0.5528,0.3189,-0.7699,-0.5528,0.3189,-0.6561,-0.7041,0.2718,-0.6965,-0.7041,0.1385,-0.7699,-0.5528,0.3189,-0.6965,-0.7041,0.1385,-0.8173,-0.5528,0.1626,-0.8173,-0.5528,0.1626,-0.6965,-0.7041,0.1385,-0.7101,-0.7041,0.0,-0.8173,-0.5528,0.1626,-0.7101,-0.7041,0.0,-0.8333,-0.5528,0.0,-0.8333,-0.5528,0.0,-0.7101,-0.7041,0.0,-0.6965,-0.7041,-0.1385,-0.8333,-0.5528,0.0,-0.6965,-0.7041,-0.1385,-0.8173,-0.5528,-0.1626,-0.8173,-0.5528,-0.1626,-0.6965,-0.7041,-0.1385,-0.6561,-0.7041,-0.2718,-0.8173,-0.5528,-0.1626,-0.6561,-0.7041,-0.2718,-0.7699,-0.5528,-0.3189,-0.7699,-0.5528,-0.3189,-0.6561,-0.7041,-0.2718,-0.5905,-0.7041,-0.3945,-0.7699,-0.5528,-0.3189,-0.5905,-0.7041,-0.3945,-0.6929,-0.5528,-0.463,-0.6929,-0.5528,-0.463,-0.5905,-0.7041,-0.3945,-0.5021,-0.7041,-0.5021,-0.6929,-0.5528,-0.463,-0.5021,-0.7041,-0.5021,-0.5893,-0.5528,-0.5893,-0.5893,-0.5528,-0.5893,-0.5021,-0.7041,-0.5021,-0.3945,-0.7041,-0.5905,-0.5893,-0.5528,-0.5893,-0.3945,-0.7041,-0.5905,-0.463,-0.5528,-0.6929,-0.463,-0.5528,-0.6929,-0.3945,-0.7041,-0.5905,-0.2718,-0.7041,-0.6561,-0.463,-0.5528,-0.6929,-0.2718,-0.7041,-0.6561,-0.3189,-0.5528,-0.7699,-0.3189,-0.5528,-0.7699,-0.2718,-0.7041,-0.6561,-0.1385,-0.7041,-0.6965,-0.3189,-0.5528,-0.7699,-0.1385,-0.7041,-0.6965,-0.1626,-0.5528,-0.8173,-0.1626,-0.5528,-0.8173,-0.1385,-0.7041,-0.6965,0.0,-0.7041,-0.7101,-0.1626,-0.5528,-0.8173,0.0,-0.7041,-0.7101,0.0,-0.5528,-0.8333,0.0,-0.5528,-0.8333,0.0,-0.7041,-0.7101,0.1385,-0.7041,-0.6965,0.0,-0.5528,-0.8333,0.1385,-0.7041,-0.6965,0.1626,-0.5528,-0.8173,0.1626,-0.5528,-0.8173,0.1385,-0.7041,-0.6965,0.2718,-0.7041,-0.6561,0.1626,-0.5528,-0.8173,0.2718,-0.7041,-0.6561,0.3189,-0.5528,-0.7699,0.3189,-0.5528,-0.7699,0.2718,-0.7041,-0.6561,0.3945,-0.7041,-0.5905,0.3189,-0.5528,-0.7699,0.3945,-0.7041,-0.5905,0.463,-0.5528,-0.6929,0.463,-0.5528,-0.6929,0.3945,-0.7041,-0.5905,0.5021,-0.7041,-0.5021,0.463,-0.5528,-0.6929,0.5021,-0.7041,-0.5021,0.5893,-0.5528,-0.5893,0.5893,-0.5528,-0.5893,0.5021,-0.7041,-0.5021,0.5905,-0.7041,-0.3945,0.5893,-0.5528,-0.5893,0.5905,-0.7041,-0.3945,0.6929,-0.5528,-0.463,0.6929,-0.5528,-0.463,0.5905,-0.7041,-0.3945,0.6561,-0.7041,-0.2718,0.6929,-0.5528,-0.463,0.6561,-0.7041,-0.2718,0.7699,-0.5528,-0.3189,0.7699,-0.5528,-0.3189,0.6561,-0.7041,-0.2718,0.6965,-0.7041,-0.1385,0.7699,-0.5528,-0.3189,0.6965,-0.7041,-0.1385,0.8173,-0.5528,-0.1626,0.8173,-0.5528,-0.1626,0.6965,-0.7041,-0.1385,0.7101,-0.7041,0.0,0.8173,-0.5528,-0.1626,0.7101,-0.7041,0.0,0.8333,-0.5528,0.0,0.8333,-0.5528,0.0,0.7101,-0.7041,0.0,0.6965,-0.7041,0.1385,0.8333,-0.5528,0.0,0.6965,-0.7041,0.1385,0.8173,-0.5528,0.1626,0.8173,-0.5528,0.1626,0.6965,-0.7041,0.1385,0.6561,-0.7041,0.2718,0.8173,-0.5528,0.1626,0.6561,-0.7041,0.2718,0.7699,-0.5528,0.3189,0.7699,-0.5528,0.3189,0.6561,-0.7041,0.2718,0.5905,-0.7041,0.3945,0.7699,-0.5528,0.3189,0.5905,-0.7041,0.3945,0.6929,-0.5528,0.463,0.6929,-0.5528,0.463,0.5905,-0.7041,0.3945,0.5021,-0.7041,0.5021,0.6929,-0.5528,0.463,0.5021,-0.7041,0.5021,0.5893,-0.5528,0.5893,0.5893,-0.5528,0.5893,0.5021,-0.7041,0.5021,0.3945,-0.7041,0.5905,0.5893,-0.5528,0.5893,0.3945,-0.7041,0.5905,0.463,-0.5528,0.6929,0.463,-0.5528,0.6929,0.3945,-0.7041,0.5905,0.2718,-0.7041,0.6561,0.463,-0.5528,0.6929,0.2718,-0.7041,0.6561,0.3189,-0.5528,0.7699,0.3189,-0.5528,0.7699,0.2718,-0.7041,0.6561,0.1385,-0.7041,0.6965,0.3189,-0.5528,0.7699,0.1385,-0.7041,0.6965,0.1626,-0.5528,0.8173,0.1626,-0.5528,0.8173,0.1385,-0.7041,0.6965,0.0,-0.7041,0.7101,0.1626,-0.5528,0.8173,0.0,-0.7041,0.7101,0.0,-0.5528,0.8333,0.0,-0.7041,0.7101,0.0,-0.8286,0.5598,-0.1092,-0.8286,0.549,0.0,-0.7041,0.7101,-0.1092,-0.8286,0.549,-0.1385,-0.7041,0.6965,-0.1385,-0.7041,0.6965,-0.1092,-0.8286,0.549,-0.2142,-0.8286,0.5172,-0.1385,-0.7041,0.6965,-0.2142,-0.8286,0.5172,-0.2718,-0.7041,0.6561,-0.2718,-0.7041,0.6561,-0.2142,-0.8286,0.5172,-0.311,-0.8286,0.4654,-0.2718,-0.7041,0.6561,-0.311,-0.8286,0.4654,-0.3945,-0.7041,0.5905,-0.3945,-0.7041,0.5905,-0.311,-0.8286,0.4654,-0.3958,-0.8286,0.3958,-0.3945,-0.7041,0.5905,-0.3958,-0.8286,0.3958,-0.5021,-0.7041,0.5021,-0.5021,-0.7041,0.5021,-0.3958,-0.8286,0.3958,-0.4654,-0.8286,0.311,-0.5021,-0.7041,0.5021,-0.4654,-0.8286,0.311,-0.5905,-0.7041,0.3945,-0.5905,-0.7041,0.3945,-0.4654,-0.8286,0.311,-0.5172,-0.8286,0.2142,-0.5905,-0.7041,0.3945,-0.5172,-0.8286,0.2142,-0.6561,-0.7041,0.2718,-0.6561,-0.7041,0.2718,-0.5172,-0.8286,0.2142,-0.549,-0.8286,0.1092,-0.6561,-0.7041,0.2718,-0.549,-0.8286,0.1092,-0.6965,-0.7041,0.1385,-0.6965,-0.7041,0.1385,-0.549,-0.8286,0.1092,-0.5598,-0.8286,0.0,-0.6965,-0.7041,0.1385,-0.5598,-0.8286,0.0,-0.7101,-0.7041,0.0,-0.7101,-0.7041,0.0,-0.5598,-0.8286,0.0,-0.549,-0.8286,-0.1092,-0.7101,-0.7041,0.0,-0.549,-0.8286,-0.1092,-0.6965,-0.7041,-0.1385,-0.6965,-0.7041,-0.1385,-0.549,-0.8286,-0.1092,-0.5172,-0.8286,-0.2142,-0.6965,-0.7041,-0.1385,-0.5172,-0.8286,-0.2142,-0.6561,-0.7041,-0.2718,-0.6561,-0.7041,-0.2718,-0.5172,-0.8286,-0.2142,-0.4654,-0.8286,-0.311,-0.6561,-0.7041,-0.2718,-0.4654,-0.8286,-0.311,-0.5905,-0.7041,-0.3945,-0.5905,-0.7041,-0.3945,-0.4654,-0.8286,-0.311,-0.3958,-0.8286,-0.3958,-0.5905,-0.7041,-0.3945,-0.3958,-0.8286,-0.3958,-0.5021,-0.7041,-0.5021,-0.5021,-0.7041,-0.5021,-0.3958,-0.8286,-0.3958,-0.311,-0.8286,-0.4654,-0.5021,-0.7041,-0.5021,-0.311,-0.8286,-0.4654,-0.3945,-0.7041,-0.5905,-0.3945,-0.7041,-0.5905,-0.311,-0.8286,-0.4654,-0.2142,-0.8286,-0.5172,-0.3945,-0.7041,-0.5905,-0.2142,-0.8286,-0.5172,-0.2718,-0.7041,-0.6561,-0.2718,-0.7041,-0.6561,-0.2142,-0.8286,-0.5172,-0.1092,-0.8286,-0.549,-0.2718,-0.7041,-0.6561,-0.1092,-0.8286,-0.549,-0.1385,-0.7041,-0.6965,-0.1385,-0.7041,-0.6965,-0.1092,-0.8286,-0.549,0.0,-0.8286,-0.5598,-0.1385,-0.7041,-0.6965,0.0,-0.8286,-0.5598,0.0,-0.7041,-0.7101,0.0,-0.7041,-0.7101,0.0,-0.8286,-0.5598,0.1092,-0.8286,-0.549,0.0,-0.7041,-0.7101,0.1092,-0.8286,-0.549,0.1385,-0.7041,-0.6965,0.1385,-0.7041,-0.6965,0.1092,-0.8286,-0.549,0.2142,-0.8286,-0.5172,0.1385,-0.7041,-0.6965,0.2142,-0.8286,-0.5172,0.2718,-0.7041,-0.6561,0.2718,-0.7041,-0.6561,0.2142,-0.8286,-0.5172,0.311,-0.8286,-0.4654,0.2718,-0.7041,-0.6561,0.311,-0.8286,-0.4654,0.3945,-0.7041,-0.5905,0.3945,-0.7041,-0.5905,0.311,-0.8286,-0.4654,0.3958,-0.8286,-0.3958,0.3945,-0.7041,-0.5905,0.3958,-0.8286,-0.3958,0.5021,-0.7041,-0.5021,0.5021,-0.7041,-0.5021,0.3958,-0.8286,-0.3958,0.4654,-0.8286,-0.311,0.5021,-0.7041,-0.5021,0.4654,-0.8286,-0.311,0.5905,-0.7041,-0.3945,0.5905,-0.7041,-0.3945,0.4654,-0.8286,-0.311,0.5172,-0.8286,-0.2142,0.5905,-0.7041,-0.3945,0.5172,-0.8286,-0.2142,0.6561,-0.7041,-0.2718,0.6561,-0.7041,-0.2718,0.5172,-0.8286,-0.2142,0.549,-0.8286,-0.1092,0.6561,-0.7041,-0.2718,0.549,-0.8286,-0.1092,0.6965,-0.7041,-0.1385,0.6965,-0.7041,-0.1385,0.549,-0.8286,-0.1092,0.5598,-0.8286,0.0,0.6965,-0.7041,-0.1385,0.5598,-0.8286,0.0,0.7101,-0.7041,0.0,0.7101,-0.7041,0.0,0.5598,-0.8286,0.0,0.549,-0.8286,0.1092,0.7101,-0.7041,0.0,0.549,-0.8286,0.1092,0.6965,-0.7041,0.1385,0.6965,-0.7041,0.1385,0.549,-0.8286,0.1092,0.5172,-0.8286,0.2142,0.6965,-0.7041,0.1385,0.5172,-0.8286,0.2142,0.6561,-0.7041,0.2718,0.6561,-0.7041,0.2718,0.5172,-0.8286,0.2142,0.4654,-0.8286,0.311,0.6561,-0.7041,0.2718,0.4654,-0.8286,0.311,0.5905,-0.7041,0.3945,0.5905,-0.7041,0.3945,0.4654,-0.8286,0.311,0.3958,-0.8286,0.3958,0.5905,-0.7041,0.3945,0.3958,-0.8286,0.3958,0.5021,-0.7041,0.5021,0.5021,-0.7041,0.5021,0.3958,-0.8286,0.3958,0.311,-0.8286,0.4654,0.5021,-0.7041,0.5021,0.311,-0.8286,0.4654,0.3945,-0.7041,0.5905,0.3945,-0.7041,0.5905,0.311,-0.8286,0.4654,0.2142,-0.8286,0.5172,0.3945,-0.7041,0.5905,0.2142,-0.8286,0.5172,0.2718,-0.7041,0.6561,0.2718,-0.7041,0.6561,0.2142,-0.8286,0.5172,0.1092,-0.8286,0.549,0.2718,-0.7041,0.6561,0.1092,-0.8286,0.549,0.1385,-0.7041,0.6965,0.1385,-0.7041,0.6965,0.1092,-0.8286,0.549,0.0,-0.8286,0.5598,0.1385,-0.7041,0.6965,0.0,-0.8286,0.5598,0.0,-0.7041,0.7101,0.0,-0.8286,0.5598,0.0,-0.9217,0.3879,-0.0757,-0.9217,0.3804,0.0,-0.8286,0.5598,-0.0757,-0.9217,0.3804,-0.1092,-0.8286,0.549,-0.1092,-0.8286,0.549,-0.0757,-0.9217,0.3804,-0.1484,-0.9217,0.3584,-0.1092,-0.8286,0.549,-0.1484,-0.9217,0.3584,-0.2142,-0.8286,0.5172,-0.2142,-0.8286,0.5172,-0.1484,-0.9217,0.3584,-0.2155,-0.9217,0.3225,-0.2142,-0.8286,0.5172,-0.2155,-0.9217,0.3225,-0.311,-0.8286,0.4654,-0.311,-0.8286,0.4654,-0.2155,-0.9217,0.3225,-0.2743,-0.9217,0.2743,-0.311,-0.8286,0.4654,-0.2743,-0.9217,0.2743,-0.3958,-0.8286,0.3958,-0.3958,-0.8286,0.3958,-0.2743,-0.9217,0.2743,-0.3225,-0.9217,0.2155,-0.3958,-0.8286,0.3958,-0.3225,-0.9217,0.2155,-0.4654,-0.8286,0.311,-0.4654,-0.8286,0.311,-0.3225,-0.9217,0.2155,-0.3584,-0.9217,0.1484,-0.4654,-0.8286,0.311,-0.3584,-0.9217,0.1484,-0.5172,-0.8286,0.2142,-0.5172,-0.8286,0.2142,-0.3584,-0.9217,0.1484,-0.3804,-0.9217,0.0757,-0.5172,-0.8286,0.2142,-0.3804,-0.9217,0.0757,-0.549,-0.8286,0.1092,-0.549,-0.8286,0.1092,-0.3804,-0.9217,0.0757,-0.3879,-0.9217,0.0,-0.549,-0.8286,0.1092,-0.3879,-0.9217,0.0,-0.5598,-0.8286,0.0,-0.5598,-0.8286,0.0,-0.3879,-0.9217,0.0,-0.3804,-0.9217,-0.0757,-0.5598,-0.8286,0.0,-0.3804,-0.9217,-0.0757,-0.549,-0.8286,-0.1092,-0.549,-0.8286,-0.1092,-0.3804,-0.9217,-0.0757,-0.3584,-0.9217,-0.1484,-0.549,-0.8286,-0.1092,-0.3584,-0.9217,-0.1484,-0.5172,-0.8286,-0.2142,-0.5172,-0.8286,-0.2142,-0.3584,-0.9217,-0.1484,-0.3225,-0.9217,-0.2155,-0.5172,-0.8286,-0.2142,-0.3225,-0.9217,-0.2155,-0.4654,-0.8286,-0.311,-0.4654,-0.8286,-0.311,-0.3225,-0.9217,-0.2155,-0.2743,-0.9217,-0.2743,-0.4654,-0.8286,-0.311,-0.2743,-0.9217,-0.2743,-0.3958,-0.8286,-0.3958,-0.3958,-0.8286,-0.3958,-0.2743,-0.9217,-0.2743,-0.2155,-0.9217,-0.3225,-0.3958,-0.8286,-0.3958,-0.2155,-0.9217,-0.3225,-0.311,-0.8286,-0.4654,-0.311,-0.8286,-0.4654,-0.2155,-0.9217,-0.3225,-0.1484,-0.9217,-0.3584,-0.311,-0.8286,-0.4654,-0.1484,-0.9217,-0.3584,-0.2142,-0.8286,-0.5172,-0.2142,-0.8286,-0.5172,-0.1484,-0.9217,-0.3584,-0.0757,-0.9217,-0.3804,-0.2142,-0.8286,-0.5172,-0.0757,-0.9217,-0.3804,-0.1092,-0.8286,-0.549,-0.1092,-0.8286,-0.549,-0.0757,-0.9217,-0.3804,0.0,-0.9217,-0.3879,-0.1092,-0.8286,-0.549,0.0,-0.9217,-0.3879,0.0,-0.8286,-0.5598,0.0,-0.8286,-0.5598,0.0,-0.9217,-0.3879,0.0757,-0.9217,-0.3804,0.0,-0.8286,-0.5598,0.0757,-0.9217,-0.3804,0.1092,-0.8286,-0.549,0.1092,-0.8286,-0.549,0.0757,-0.9217,-0.3804,0.1484,-0.9217,-0.3584,0.1092,-0.8286,-0.549,0.1484,-0.9217,-0.3584,0.2142,-0.8286,-0.5172,0.2142,-0.8286,-0.5172,0.1484,-0.9217,-0.3584,0.2155,-0.9217,-0.3225,0.2142,-0.8286,-0.5172,0.2155,-0.9217,-0.3225,0.311,-0.8286,-0.4654,0.311,-0.8286,-0.4654,0.2155,-0.9217,-0.3225,0.2743,-0.9217,-0.2743,0.311,-0.8286,-0.4654,0.2743,-0.9217,-0.2743,0.3958,-0.8286,-0.3958,0.3958,-0.8286,-0.3958,0.2743,-0.9217,-0.2743,0.3225,-0.9217,-0.2155,0.3958,-0.8286,-0.3958,0.3225,-0.9217,-0.2155,0.4654,-0.8286,-0.311,0.4654,-0.8286,-0.311,0.3225,-0.9217,-0.2155,0.3584,-0.9217,-0.1484,0.4654,-0.8286,-0.311,0.3584,-0.9217,-0.1484,0.5172,-0.8286,-0.2142,0.5172,-0.8286,-0.2142,0.3584,-0.9217,-0.1484,0.3804,-0.9217,-0.0757,0.5172,-0.8286,-0.2142,0.3804,-0.9217,-0.0757,0.549,-0.8286,-0.1092,0.549,-0.8286,-0.1092,0.3804,-0.9217,-0.0757,0.3879,-0.9217,0.0,0.549,-0.8286,-0.1092,0.3879,-0.9217,0.0,0.5598,-0.8286,0.0,0.5598,-0.8286,0.0,0.3879,-0.9217,0.0,0.3804,-0.9217,0.0757,0.5598,-0.8286,0.0,0.3804,-0.9217,0.0757,0.549,-0.8286,0.1092,0.549,-0.8286,0.1092,0.3804,-0.9217,0.0757,0.3584,-0.9217,0.1484,0.549,-0.8286,0.1092,0.3584,-0.9217,0.1484,0.5172,-0.8286,0.2142,0.5172,-0.8286,0.2142,0.3584,-0.9217,0.1484,0.3225,-0.9217,0.2155,0.5172,-0.8286,0.2142,0.3225,-0.9217,0.2155,0.4654,-0.8286,0.311,0.4654,-0.8286,0.311,0.3225,-0.9217,0.2155,0.2743,-0.9217,0.2743,0.4654,-0.8286,0.311,0.2743,-0.9217,0.2743,0.3958,-0.8286,0.3958,0.3958,-0.8286,0.3958,0.2743,-0.9217,0.2743,0.2155,-0.9217,0.3225,0.3958,-0.8286,0.3958,0.2155,-0.9217,0.3225,0.311,-0.8286,0.4654,0.311,-0.8286,0.4654,0.2155,-0.9217,0.3225,0.1484,-0.9217,0.3584,0.311,-0.8286,0.4654,0.1484,-0.9217,0.3584,0.2142,-0.8286,0.5172,0.2142,-0.8286,0.5172,0.1484,-0.9217,0.3584,0.0757,-0.9217,0.3804,0.2142,-0.8286,0.5172,0.0757,-0.9217,0.3804,0.1092,-0.8286,0.549,0.1092,-0.8286,0.549,0.0757,-0.9217,0.3804,0.0,-0.9217,0.3879,0.1092,-0.8286,0.549,0.0,-0.9217,0.3879,0.0,-0.8286,0.5598,0.0,-0.9217,0.3879,0.0,-0.9796,0.201,-0.0392,-0.9796,0.1971,0.0,-0.9217,0.3879,-0.0392,-0.9796,0.1971,-0.0757,-0.9217,0.3804,-0.0757,-0.9217,0.3804,-0.0392,-0.9796,0.1971,-0.0769,-0.9796,0.1857,-0.0757,-0.9217,0.3804,-0.0769,-0.9796,0.1857,-0.1484,-0.9217,0.3584,-0.1484,-0.9217,0.3584,-0.0769,-0.9796,0.1857,-0.1117,-0.9796,0.1671,-0.1484,-0.9217,0.3584,-0.1117,-0.9796,0.1671,-0.2155,-0.9217,0.3225,-0.2155,-0.9217,0.3225,-0.1117,-0.9796,0.1671,-0.1421,-0.9796,0.1421,-0.2155,-0.9217,0.3225,-0.1421,-0.9796,0.1421,-0.2743,-0.9217,0.2743,-0.2743,-0.9217,0.2743,-0.1421,-0.9796,0.1421,-0.1671,-0.9796,0.1117,-0.2743,-0.9217,0.2743,-0.1671,-0.9796,0.1117,-0.3225,-0.9217,0.2155,-0.3225,-0.9217,0.2155,-0.1671,-0.9796,0.1117,-0.1857,-0.9796,0.0769,-0.3225,-0.9217,0.2155,-0.1857,-0.9796,0.0769,-0.3584,-0.9217,0.1484,-0.3584,-0.9217,0.1484,-0.1857,-0.9796,0.0769,-0.1971,-0.9796,0.0392,-0.3584,-0.9217,0.1484,-0.1971,-0.9796,0.0392,-0.3804,-0.9217,0.0757,-0.3804,-0.9217,0.0757,-0.1971,-0.9796,0.0392,-0.201,-0.9796,0.0,-0.3804,-0.9217,0.0757,-0.201,-0.9796,0.0,-0.3879,-0.9217,0.0,-0.3879,-0.9217,0.0,-0.201,-0.9796,0.0,-0.1971,-0.9796,-0.0392,-0.3879,-0.9217,0.0,-0.1971,-0.9796,-0.0392,-0.3804,-0.9217,-0.0757,-0.3804,-0.9217,-0.0757,-0.1971,-0.9796,-0.0392,-0.1857,-0.9796,-0.0769,-0.3804,-0.9217,-0.0757,-0.1857,-0.9796,-0.0769,-0.3584,-0.9217,-0.1484,-0.3584,-0.9217,-0.1484,-0.1857,-0.9796,-0.0769,-0.1671,-0.9796,-0.1117,-0.3584,-0.9217,-0.1484,-0.1671,-0.9796,-0.1117,-0.3225,-0.9217,-0.2155,-0.3225,-0.9217,-0.2155,-0.1671,-0.9796,-0.1117,-0.1421,-0.9796,-0.1421,-0.3225,-0.9217,-0.2155,-0.1421,-0.9796,-0.1421,-0.2743,-0.9217,-0.2743,-0.2743,-0.9217,-0.2743,-0.1421,-0.9796,-0.1421,-0.1117,-0.9796,-0.1671,-0.2743,-0.9217,-0.2743,-0.1117,-0.9796,-0.1671,-0.2155,-0.9217,-0.3225,-0.2155,-0.9217,-0.3225,-0.1117,-0.9796,-0.1671,-0.0769,-0.9796,-0.1857,-0.2155,-0.9217,-0.3225,-0.0769,-0.9796,-0.1857,-0.1484,-0.9217,-0.3584,-0.1484,-0.9217,-0.3584,-0.0769,-0.9796,-0.1857,-0.0392,-0.9796,-0.1971,-0.1484,-0.9217,-0.3584,-0.0392,-0.9796,-0.1971,-0.0757,-0.9217,-0.3804,-0.0757,-0.9217,-0.3804,-0.0392,-0.9796,-0.1971,0.0,-0.9796,-0.201,-0.0757,-0.9217,-0.3804,0.0,-0.9796,-0.201,0.0,-0.9217,-0.3879,0.0,-0.9217,-0.3879,0.0,-0.9796,-0.201,0.0392,-0.9796,-0.1971,0.0,-0.9217,-0.3879,0.0392,-0.9796,-0.1971,0.0757,-0.9217,-0.3804,0.0757,-0.9217,-0.3804,0.0392,-0.9796,-0.1971,0.0769,-0.9796,-0.1857,0.0757,-0.9217,-0.3804,0.0769,-0.9796,-0.1857,0.1484,-0.9217,-0.3584,0.1484,-0.9217,-0.3584,0.0769,-0.9796,-0.1857,0.1117,-0.9796,-0.1671,0.1484,-0.9217,-0.3584,0.1117,-0.9796,-0.1671,0.2155,-0.9217,-0.3225,0.2155,-0.9217,-0.3225,0.1117,-0.9796,-0.1671,0.1421,-0.9796,-0.1421,0.2155,-0.9217,-0.3225,0.1421,-0.9796,-0.1421,0.2743,-0.9217,-0.2743,0.2743,-0.9217,-0.2743,0.1421,-0.9796,-0.1421,0.1671,-0.9796,-0.1117,0.2743,-0.9217,-0.2743,0.1671,-0.9796,-0.1117,0.3225,-0.9217,-0.2155,0.3225,-0.9217,-0.2155,0.1671,-0.9796,-0.1117,0.1857,-0.9796,-0.0769,0.3225,-0.9217,-0.2155,0.1857,-0.9796,-0.0769,0.3584,-0.9217,-0.1484,0.3584,-0.9217,-0.1484,0.1857,-0.9796,-0.0769,0.1971,-0.9796,-0.0392,0.3584,-0.9217,-0.1484,0.1971,-0.9796,-0.0392,0.3804,-0.9217,-0.0757,0.3804,-0.9217,-0.0757,0.1971,-0.9796,-0.0392,0.201,-0.9796,0.0,0.3804,-0.9217,-0.0757,0.201,-0.9796,0.0,0.3879,-0.9217,0.0,0.3879,-0.9217,0.0,0.201,-0.9796,0.0,0.1971,-0.9796,0.0392,0.3879,-0.9217,0.0,0.1971,-0.9796,0.0392,0.3804,-0.9217,0.0757,0.3804,-0.9217,0.0757,0.1971,-0.9796,0.0392,0.1857,-0.9796,0.0769,0.3804,-0.9217,0.0757,0.1857,-0.9796,0.0769,0.3584,-0.9217,0.1484,0.3584,-0.9217,0.1484,0.1857,-0.9796,0.0769,0.1671,-0.9796,0.1117,0.3584,-0.9217,0.1484,0.1671,-0.9796,0.1117,0.3225,-0.9217,0.2155,0.3225,-0.9217,0.2155,0.1671,-0.9796,0.1117,0.1421,-0.9796,0.1421,0.3225,-0.9217,0.2155,0.1421,-0.9796,0.1421,0.2743,-0.9217,0.2743,0.2743,-0.9217,0.2743,0.1421,-0.9796,0.1421,0.1117,-0.9796,0.1671,0.2743,-0.9217,0.2743,0.1117,-0.9796,0.1671,0.2155,-0.9217,0.3225,0.2155,-0.9217,0.3225,0.1117,-0.9796,0.1671,0.0769,-0.9796,0.1857,0.2155,-0.9217,0.3225,0.0769,-0.9796,0.1857,0.1484,-0.9217,0.3584,0.1484,-0.9217,0.3584,0.0769,-0.9796,0.1857,0.0392,-0.9796,0.1971,0.1484,-0.9217,0.3584,0.0392,-0.9796,0.1971,0.0757,-0.9217,0.3804,0.0757,-0.9217,0.3804,0.0392,-0.9796,0.1971,0.0,-0.9796,0.201,0.0757,-0.9217,0.3804,0.0,-0.9796,0.201,0.0,-0.9217,0.3879,0.0,-1.0,0.0,-0.0392,-0.9796,0.1971,0.0,-0.9796,0.201,0.0,-1.0,0.0,-0.0769,-0.9796,0.1857,-0.0392,-0.9796,0.1971,0.0,-1.0,0.0,-0.1117,-0.9796,0.1671,-0.0769,-0.9796,0.1857,0.0,-1.0,0.0,-0.1421,-0.9796,0.1421,-0.1117,-0.9796,0.1671,0.0,-1.0,0.0,-0.1671,-0.9796,0.1117,-0.1421,-0.9796,0.1421,0.0,-1.0,0.0,-0.1857,-0.9796,0.0769,-0.1671,-0.9796,0.1117,0.0,-1.0,0.0,-0.1971,-0.9796,0.0392,-0.1857,-0.9796,0.0769,0.0,-1.0,0.0,-0.201,-0.9796,0.0,-0.1971,-0.9796,0.0392,0.0,-1.0,0.0,-0.1971,-0.9796,-0.0392,-0.201,-0.9796,0.0,0.0,-1.0,0.0,-0.1857,-0.9796,-0.0769,-0.1971,-0.9796,-0.0392,0.0,-1.0,0.0,-0.1671,-0.9796,-0.1117,-0.1857,-0.9796,-0.0769,0.0,-1.0,0.0,-0.1421,-0.9796,-0.1421,-0.1671,-0.9796,-0.1117,0.0,-1.0,0.0,-0.1117,-0.9796,-0.1671,-0.1421,-0.9796,-0.1421,0.0,-1.0,0.0,-0.0769,-0.9796,-0.1857,-0.1117,-0.9796,-0.1671,0.0,-1.0,0.0,-0.0392,-0.9796,-0.1971,-0.0769,-0.9796,-0.1857,0.0,-1.0,0.0,0.0,-0.9796,-0.201,-0.0392,-0.9796,-0.1971,0.0,-1.0,0.0,0.0392,-0.9796,-0.1971,0.0,-0.9796,-0.201,0.0,-1.0,0.0,0.0769,-0.9796,-0.1857,0.0392,-0.9796,-0.1971,0.0,-1.0,0.0,0.1117,-0.9796,-0.1671,0.0769,-0.9796,-0.1857,0.0,-1.0,0.0,0.1421,-0.9796,-0.1421,0.1117,-0.9796,-0.1671,0.0,-1.0,0.0,0.1671,-0.9796,-0.1117,0.1421,-0.9796,-0.1421,0.0,-1.0,0.0,0.1857,-0.9796,-0.0769,0.1671,-0.9796,-0.1117,0.0,-1.0,0.0,0.1971,-0.9796,-0.0392,0.1857,-0.9796,-0.0769,0.0,-1.0,0.0,0.201,-0.9796,0.0,0.1971,-0.9796,-0.0392,0.0,-1.0,0.0,0.1971,-0.9796,0.0392,0.201,-0.9796,0.0,0.0,-1.0,0.0,0.1857,-0.9796,0.0769,0.1971,-0.9796,0.0392,0.0,-1.0,0.0,0.1671,-0.9796,0.1117,0.1857,-0.9796,0.0769,0.0,-1.0,0.0,0.1421,-0.9796,0.1421,0.1671,-0.9796,0.1117,0.0,-1.0,0.0,0.1117,-0.9796,0.1671,0.1421,-0.9796,0.1421,0.0,-1.0,0.0,0.0769,-0.9796,0.1857,0.1117,-0.9796,0.1671,0.0,-1.0,0.0,0.0392,-0.9796,0.1971,0.0769,-0.9796,0.1857,0.0,-1.0,0.0,0.0,-0.9796,0.201,0.0392,-0.9796,0.1971],"tangents":null,"uvs":[0.0,2.0,0.0,1.9375,0.0312,1.9375,0.0312,2.0,0.0312,1.9375,0.0625,1.9375,0.0625,2.0,0.0625,1.9375,0.0938,1.9375,0.0938,2.0,0.0938,1.9375,0.125,1.9375,0.125,2.0,0.125,1.9375,0.1562,1.9375,0.1562,2.0,0.1562,1.9375,0.1875,1.9375,0.1875,2.0,0.1875,1.9375,0.2187,1.9375,0.2187,2.0,0.2187,1.9375,0.25,1.9375,0.25,2.0,0.25,1.9375,0.2812,1.9375,0.2812,2.0,0.2812,1.9375,0.3125,1.9375,0.3125,2.0,0.3125,1.9375,0.3437,1.9375,0.3437,2.0,0.3437,1.9375,0.375,1.9375,0.375,2.0,0.375,1.9375,0.4062,1.9375,0.4062,2.0,0.4062,1.9375,0.4375,1.9375,0.4375,2.0,0.4375,1.9375,0.4688,1.9375,0.4688,2.0,0.4688,1.9375,0.5,1.9375,0.5,2.0,0.5,1.9375,0.5313,1.9375,0.5313,2.0,0.5313,1.9375,0.5625,1.9375,0.5625,2.0,0.5625,1.9375,0.5938,1.9375,0.5938,2.0,0.5938,1.9375,0.625,1.9375,0.625,2.0,0.625,1.9375,0.6563,1.9375,0.6563,2.0,0.6563,1.9375,0.6875,1.9375,0.6875,2.0,0.6875,1.9375,0.7188,1.9375,0.7188,2.0,0.7188,1.9375,0.75,1.9375,0.75,2.0,0.75,1.9375,0.7813,1.9375,0.7813,2.0,0.7813,1.9375,0.8125,1.9375,0.8125,2.0,0.8125,1.9375,0.8438,1.9375,0.8438,2.0,0.8438,1.9375,0.875,1.9375,0.875,2.0,0.875,1.9375,0.9063,1.9375,0.9063,2.0,0.9063,1.9375,0.9375,1.9375,0.9375,2.0,0.9375,1.9375,0.9688,1.9375,0.9688,2.0,0.9688,1.9375,1.0,1.9375,0.0,1.9375,0.0,1.875,0.0312,1.875,0.0,1.9375,0.0312,1.875,0.0312,1.9375,0.0312,1.9375,0.0312,1.875,0.0625,1.875,0.0312,1.9375,0.0625,1.875,0.0625,1.9375,0.0625,1.9375,0.0625,1.875,0.0938,1.875,0.0625,1.9375,0.0938,1.875,0.0938,1.9375,0.0938,1.9375,0.0938,1.875,0.125,1.875,0.0938,1.9375,0.125,1.875,0.125,1.9375,0.125,1.9375,0.125,1.875,0.1562,1.875,0.125,1.9375,0.1562,1.875,0.1562,1.9375,0.1562,1.9375,0.1562,1.875,0.1875,1.875,0.1562,1.9375,0.1875,1.875,0.1875,1.9375,0.1875,1.9375,0.1875,1.875,0.2187,1.875,0.1875,1.9375,0.2187,1.875,0.2187,1.9375,0.2187,1.9375,0.2187,1.875,0.25,1.875,0.2187,1.9375,0.25,1.875,0.25,1.9375,0.25,1.9375,0.25,1.875,0.2812,1.875,0.25,1.9375,0.2812,1.875,0.2812,1.9375,0.2812,1.9375,0.2812,1.875,0.3125,1.875,0.2812,1.9375,0.3125,1.875,0.3125,1.9375,0.3125,1.9375,0.3125,1.875,0.3437,1.875,0.3125,1.9375,0.3437,1.875,0.3437,1.9375,0.3437,1.9375,0.3437,1.875,0.375,1.875,0.3437,1.9375,0.375,1.875,0.375,1.9375,0.375,1.9375,0.375,1.875,0.4062,1.875,0.375,1.9375,0.4062,1.875,0.4062,1.9375,0.4062,1.9375,0.4062,1.875,0.4375,1.875,0.4062,1.9375,0.4375,1.875,0.4375,1.9375,0.4375,1.9375,0.4375,1.875,0.4688,1.875,0.4375,1.9375,0.4688,1.875,0.4688,1.9375,0.4688,1.9375,0.4688,1.875,0.5,1.875,0.4688,1.9375,0.5,1.875,0.5,1.9375,0.5,1.9375,0.5,1.875,0.5313,1.875,0.5,1.9375,0.5313,1.875,0.5313,1.9375,0.5313,1.9375,0.5313,1.875,0.5625,1.875,0.5313,1.9375,0.5625,1.875,0.5625,1.9375,0.5625,1.9375,0.5625,1.875,0.5938,1.875,0.5625,1.9375,0.5938,1.875,0.5938,1.9375,0.5938,1.9375,0.5938,1.875,0.625,1.875,0.5938,1.9375,0.625,1.875,0.625,1.9375,0.625,1.9375,0.625,1.875,0.6563,1.875,0.625,1.9375,0.6563,1.875,0.6563,1.9375,0.6563,1.9375,0.6563,1.875,0.6875,1.875,0.6563,1.9375,0.6875,1.875,0.6875,1.9375,0.6875,1.9375,0.6875,1.875,0.7188,1.875,0.6875,1.9375,0.7188,1.875,0.7188,1.9375,0.7188,1.9375,0.7188,1.875,0.75,1.875,0.7188,1.9375,0.75,1.875,0.75,1.9375,0.75,1.9375,0.75,1.875,0.7813,1.875,0.75,1.9375,0.7813,1.875,0.7813,1.9375,0.7813,1.9375,0.7813,1.875,0.8125,1.875,0.7813,1.9375,0.8125,1.875,0.8125,1.9375,0.8125,1.9375,0.8125,1.875,0.8438,1.875,0.8125,1.9375,0.8438,1.875,0.8438,1.9375,0.8438,1.9375,0.8438,1.875,0.875,1.875,0.8438,1.9375,0.875,1.875,0.875,1.9375,0.875,1.9375,0.875,1.875,0.9063,1.875,0.875,1.9375,0.9063,1.875,0.9063,1.9375,0.9063,1.9375,0.9063,1.875,0.9375,1.875,0.9063,1.9375,0.9375,1.875,0.9375,1.9375,0.9375,1.9375,0.9375,1.875,0.9688,1.875,0.9375,1.9375,0.9688,1.875,0.9688,1.9375,0.9688,1.9375,0.9688,1.875,1.0,1.875,0.9688,1.9375,1.0,1.875,1.0,1.9375,0.0,1.875,0.0,1.8125,0.0312,1.8125,0.0,1.875,0.0312,1.8125,0.0312,1.875,0.0312,1.875,0.0312,1.8125,0.0625,1.8125,0.0312,1.875,0.0625,1.8125,0.0625,1.875,0.0625,1.875,0.0625,1.8125,0.0938,1.8125,0.0625,1.875,0.0938,1.8125,0.0938,1.875,0.0938,1.875,0.0938,1.8125,0.125,1.8125,0.0938,1.875,0.125,1.8125,0.125,1.875,0.125,1.875,0.125,1.8125,0.1562,1.8125,0.125,1.875,0.1562,1.8125,0.1562,1.875,0.1562,1.875,0.1562,1.8125,0.1875,1.8125,0.1562,1.875,0.1875,1.8125,0.1875,1.875,0.1875,1.875,0.1875,1.8125,0.2187,1.8125,0.1875,1.875,0.2187,1.8125,0.2187,1.875,0.2187,1.875,0.2187,1.8125,0.25,1.8125,0.2187,1.875,0.25,1.8125,0.25,1.875,0.25,1.875,0.25,1.8125,0.2812,1.8125,0.25,1.875,0.2812,1.8125,0.2812,1.875,0.2812,1.875,0.2812,1.8125,0.3125,1.8125,0.2812,1.875,0.3125,1.8125,0.3125,1.875,0.3125,1.875,0.3125,1.8125,0.3437,1.8125,0.3125,1.875,0.3437,1.8125,0.3437,1.875,0.3437,1.875,0.3437,1.8125,0.375,1.8125,0.3437,1.875,0.375,1.8125,0.375,1.875,0.375,1.875,0.375,1.8125,0.4062,1.8125,0.375,1.875,0.4062,1.8125,0.4062,1.875,0.4062,1.875,0.4062,1.8125,0.4375,1.8125,0.4062,1.875,0.4375,1.8125,0.4375,1.875,0.4375,1.875,0.4375,1.8125,0.4688,1.8125,0.4375,1.875,0.4688,1.8125,0.4688,1.875,0.4688,1.875,0.4688,1.8125,0.5,1.8125,0.4688,1.875,0.5,1.8125,0.5,1.875,0.5,1.875,0.5,1.8125,0.5313,1.8125,0.5,1.875,0.5313,1.8125,0.5313,1.875,0.5313,1.875,0.5313,1.8125,0.5625,1.8125,0.5313,1.875,0.5625,1.8125,0.5625,1.875,0.5625,1.875,0.5625,1.8125,0.5938,1.8125,0.5625,1.875,0.5938,1.8125,0.5938,1.875,0.5938,1.875,0.5938,1.8125,0.625,1.8125,0.5938,1.875,0.625,1.8125,0.625,1.875,0.625,1.875,0.625,1.8125,0.6563,1.8125,0.625,1.875,0.6563,1.8125,0.6563,1.875,0.6563,1.875,0.6563,1.8125,0.6875,1.8125,0.6563,1.875,0.6875,1.8125,0.6875,1.875,0.6875,1.875,0.6875,1.8125,0.7188,1.8125,0.6875,1.875,0.7188,1.8125,0.7188,1.875,0.7188,1.875,0.7188,1.8125,0.75,1.8125,0.7188,1.875,0.75,1.8125,0.75,1.875,0.75,1.875,0.75,1.8125,0.7813,1.8125,0.75,1.875,0.7813,1.8125,0.7813,1.875,0.7813,1.875,0.7813,1.8125,0.8125,1.8125,0.7813,1.875,0.8125,1.8125,0.8125,1.875,0.8125,1.875,0.8125,1.8125,0.8438,1.8125,0.8125,1.875,0.8438,1.8125,0.8438,1.875,0.8438,1.875,0.8438,1.8125,0.875,1.8125,0.8438,1.875,0.875,1.8125,0.875,1.875,0.875,1.875,0.875,1.8125,0.9063,1.8125,0.875,1.875,0.9063,1.8125,0.9063,1.875,0.9063,1.875,0.9063,1.8125,0.9375,1.8125,0.9063,1.875,0.9375,1.8125,0.9375,1.875,0.9375,1.875,0.9375,1.8125,0.9688,1.8125,0.9375,1.875,0.9688,1.8125,0.9688,1.875,0.9688,1.875,0.9688,1.8125,1.0,1.8125,0.9688,1.875,1.0,1.8125,1.0,1.875,0.0,1.8125,0.0,1.75,0.0312,1.75,0.0,1.8125,0.0312,1.75,0.0312,1.8125,0.0312,1.8125,0.0312,1.75,0.0625,1.75,0.0312,1.8125,0.0625,1.75,0.0625,1.8125,0.0625,1.8125,0.0625,1.75,0.0938,1.75,0.0625,1.8125,0.0938,1.75,0.0938,1.8125,0.0938,1.8125,0.0938,1.75,0.125,1.75,0.0938,1.8125,0.125,1.75,0.125,1.8125,0.125,1.8125,0.125,1.75,0.1562,1.75,0.125,1.8125,0.1562,1.75,0.1562,1.8125,0.1562,1.8125,0.1562,1.75,0.1875,1.75,0.1562,1.8125,0.1875,1.75,0.1875,1.8125,0.1875,1.8125,0.1875,1.75,0.2187,1.75,0.1875,1.8125,0.2187,1.75,0.2187,1.8125,0.2187,1.8125,0.2187,1.75,0.25,1.75,0.2187,1.8125,0.25,1.75,0.25,1.8125,0.25,1.8125,0.25,1.75,0.2812,1.75,0.25,1.8125,0.2812,1.75,0.2812,1.8125,0.2812,1.8125,0.2812,1.75,0.3125,1.75,0.2812,1.8125,0.3125,1.75,0.3125,1.8125,0.3125,1.8125,0.3125,1.75,0.3437,1.75,0.3125,1.8125,0.3437,1.75,0.3437,1.8125,0.3437,1.8125,0.3437,1.75,0.375,1.75,0.3437,1.8125,0.375,1.75,0.375,1.8125,0.375,1.8125,0.375,1.75,0.4062,1.75,0.375,1.8125,0.4062,1.75,0.4062,1.8125,0.4062,1.8125,0.4062,1.75,0.4375,1.75,0.4062,1.8125,0.4375,1.75,0.4375,1.8125,0.4375,1.8125,0.4375,1.75,0.4688,1.75,0.4375,1.8125,0.4688,1.75,0.4688,1.8125,0.4688,1.8125,0.4688,1.75,0.5,1.75,0.4688,1.8125,0.5,1.75,0.5,1.8125,0.5,1.8125,0.5,1.75,0.5313,1.75,0.5,1.8125,0.5313,1.75,0.5313,1.8125,0.5313,1.8125,0.5313,1.75,0.5625,1.75,0.5313,1.8125,0.5625,1.75,0.5625,1.8125,0.5625,1.8125,0.5625,1.75,0.5938,1.75,0.5625,1.8125,0.5938,1.75,0.5938,1.8125,0.5938,1.8125,0.5938,1.75,0.625,1.75,0.5938,1.8125,0.625,1.75,0.625,1.8125,0.625,1.8125,0.625,1.75,0.6563,1.75,0.625,1.8125,0.6563,1.75,0.6563,1.8125,0.6563,1.8125,0.6563,1.75,0.6875,1.75,0.6563,1.8125,0.6875,1.75,0.6875,1.8125,0.6875,1.8125,0.6875,1.75,0.7188,1.75,0.6875,1.8125,0.7188,1.75,0.7188,1.8125,0.7188,1.8125,0.7188,1.75,0.75,1.75,0.7188,1.8125,0.75,1.75,0.75,1.8125,0.75,1.8125,0.75,1.75,0.7813,1.75,0.75,1.8125,0.7813,1.75,0.7813,1.8125,0.7813,1.8125,0.7813,1.75,0.8125,1.75,0.7813,1.8125,0.8125,1.75,0.8125,1.8125,0.8125,1.8125,0.8125,1.75,0.8438,1.75,0.8125,1.8125,0.8438,1.75,0.8438,1.8125,0.8438,1.8125,0.8438,1.75,0.875,1.75,0.8438,1.8125,0.875,1.75,0.875,1.8125,0.875,1.8125,0.875,1.75,0.9063,1.75,0.875,1.8125,0.9063,1.75,0.9063,1.8125,0.9063,1.8125,0.9063,1.75,0.9375,1.75,0.9063,1.8125,0.9375,1.75,0.9375,1.8125,0.9375,1.8125,0.9375,1.75,0.9688,1.75,0.9375,1.8125,0.9688,1.75,0.9688,1.8125,0.9688,1.8125,0.9688,1.75,1.0,1.75,0.9688,1.8125,1.0,1.75,1.0,1.8125,0.0,1.75,0.0,1.6875,0.0312,1.6875,0.0,1.75,0.0312,1.6875,0.0312,1.75,0.0312,1.75,0.0312,1.6875,0.0625,1.6875,0.0312,1.75,0.0625,1.6875,0.0625,1.75,0.0625,1.75,0.0625,1.6875,0.0938,1.6875,0.0625,1.75,0.0938,1.6875,0.0938,1.75,0.0938,1.75,0.0938,1.6875,0.125,1.6875,0.0938,1.75,0.125,1.6875,0.125,1.75,0.125,1.75,0.125,1.6875,0.1562,1.6875,0.125,1.75,0.1562,1.6875,0.1562,1.75,0.1562,1.75,0.1562,1.6875,0.1875,1.6875,0.1562,1.75,0.1875,1.6875,0.1875,1.75,0.1875,1.75,0.1875,1.6875,0.2187,1.6875,0.1875,1.75,0.2187,1.6875,0.2187,1.75,0.2187,1.75,0.2187,1.6875,0.25,1.6875,0.2187,1.75,0.25,1.6875,0.25,1.75,0.25,1.75,0.25,1.6875,0.2812,1.6875,0.25,1.75,0.2812,1.6875,0.2812,1.75,0.2812,1.75,0.2812,1.6875,0.3125,1.6875,0.2812,1.75,0.3125,1.6875,0.3125,1.75,0.3125,1.75,0.3125,1.6875,0.3437,1.6875,0.3125,1.75,0.3437,1.6875,0.3437,1.75,0.3437,1.75,0.3437,1.6875,0.375,1.6875,0.3437,1.75,0.375,1.6875,0.375,1.75,0.375,1.75,0.375,1.6875,0.4062,1.6875,0.375,1.75,0.4062,1.6875,0.4062,1.75,0.4062,1.75,0.4062,1.6875,0.4375,1.6875,0.4062,1.75,0.4375,1.6875,0.4375,1.75,0.4375,1.75,0.4375,1.6875,0.4688,1.6875,0.4375,1.75,0.4688,1.6875,0.4688,1.75,0.4688,1.75,0.4688,1.6875,0.5,1.6875,0.4688,1.75,0.5,1.6875,0.5,1.75,0.5,1.75,0.5,1.6875,0.5313,1.6875,0.5,1.75,0.5313,1.6875,0.5313,1.75,0.5313,1.75,0.5313,1.6875,0.5625,1.6875,0.5313,1.75,0.5625,1.6875,0.5625,1.75,0.5625,1.75,0.5625,1.6875,0.5938,1.6875,0.5625,1.75,0.5938,1.6875,0.5938,1.75,0.5938,1.75,0.5938,1.6875,0.625,1.6875,0.5938,1.75,0.625,1.6875,0.625,1.75,0.625,1.75,0.625,1.6875,0.6563,1.6875,0.625,1.75,0.6563,1.6875,0.6563,1.75,0.6563,1.75,0.6563,1.6875,0.6875,1.6875,0.6563,1.75,0.6875,1.6875,0.6875,1.75,0.6875,1.75,0.6875,1.6875,0.7188,1.6875,0.6875,1.75,0.7188,1.6875,0.7188,1.75,0.7188,1.75,0.7188,1.6875,0.75,1.6875,0.7188,1.75,0.75,1.6875,0.75,1.75,0.75,1.75,0.75,1.6875,0.7813,1.6875,0.75,1.75,0.7813,1.6875,0.7813,1.75,0.7813,1.75,0.7813,1.6875,0.8125,1.6875,0.7813,1.75,0.8125,1.6875,0.8125,1.75,0.8125,1.75,0.8125,1.6875,0.8438,1.6875,0.8125,1.75,0.8438,1.6875,0.8438,1.75,0.8438,1.75,0.8438,1.6875,0.875,1.6875,0.8438,1.75,0.875,1.6875,0.875,1.75,0.875,1.75,0.875,1.6875,0.9063,1.6875,0.875,1.75,0.9063,1.6875,0.9063,1.75,0.9063,1.75,0.9063,1.6875,0.9375,1.6875,0.9063,1.75,0.9375,1.6875,0.9375,1.75,0.9375,1.75,0.9375,1.6875,0.9688,1.6875,0.9375,1.75,0.9688,1.6875,0.9688,1.75,0.9688,1.75,0.9688,1.6875,1.0,1.6875,0.9688,1.75,1.0,1.6875,1.0,1.75,0.0,1.6875,0.0,1.625,0.0312,1.625,0.0,1.6875,0.0312,1.625,0.0312,1.6875,0.0312,1.6875,0.0312,1.625,0.0625,1.625,0.0312,1.6875,0.0625,1.625,0.0625,1.6875,0.0625,1.6875,0.0625,1.625,0.0938,1.625,0.0625,1.6875,0.0938,1.625,0.0938,1.6875,0.0938,1.6875,0.0938,1.625,0.125,1.625,0.0938,1.6875,0.125,1.625,0.125,1.6875,0.125,1.6875,0.125,1.625,0.1562,1.625,0.125,1.6875,0.1562,1.625,0.1562,1.6875,0.1562,1.6875,0.1562,1.625,0.1875,1.625,0.1562,1.6875,0.1875,1.625,0.1875,1.6875,0.1875,1.6875,0.1875,1.625,0.2187,1.625,0.1875,1.6875,0.2187,1.625,0.2187,1.6875,0.2187,1.6875,0.2187,1.625,0.25,1.625,0.2187,1.6875,0.25,1.625,0.25,1.6875,0.25,1.6875,0.25,1.625,0.2812,1.625,0.25,1.6875,0.2812,1.625,0.2812,1.6875,0.2812,1.6875,0.2812,1.625,0.3125,1.625,0.2812,1.6875,0.3125,1.625,0.3125,1.6875,0.3125,1.6875,0.3125,1.625,0.3437,1.625,0.3125,1.6875,0.3437,1.625,0.3437,1.6875,0.3437,1.6875,0.3437,1.625,0.375,1.625,0.3437,1.6875,0.375,1.625,0.375,1.6875,0.375,1.6875,0.375,1.625,0.4062,1.625,0.375,1.6875,0.4062,1.625,0.4062,1.6875,0.4062,1.6875,0.4062,1.625,0.4375,1.625,0.4062,1.6875,0.4375,1.625,0.4375,1.6875,0.4375,1.6875,0.4375,1.625,0.4688,1.625,0.4375,1.6875,0.4688,1.625,0.4688,1.6875,0.4688,1.6875,0.4688,1.625,0.5,1.625,0.4688,1.6875,0.5,1.625,0.5,1.6875,0.5,1.6875,0.5,1.625,0.5313,1.625,0.5,1.6875,0.5313,1.625,0.5313,1.6875,0.5313,1.6875,0.5313,1.625,0.5625,1.625,0.5313,1.6875,0.5625,1.625,0.5625,1.6875,0.5625,1.6875,0.5625,1.625,0.5938,1.625,0.5625,1.6875,0.5938,1.625,0.5938,1.6875,0.5938,1.6875,0.5938,1.625,0.625,1.625,0.5938,1.6875,0.625,1.625,0.625,1.6875,0.625,1.6875,0.625,1.625,0.6563,1.625,0.625,1.6875,0.6563,1.625,0.6563,1.6875,0.6563,1.6875,0.6563,1.625,0.6875,1.625,0.6563,1.6875,0.6875,1.625,0.6875,1.6875,0.6875,1.6875,0.6875,1.625,0.7188,1.625,0.6875,1.6875,0.7188,1.625,0.7188,1.6875,0.7188,1.6875,0.7188,1.625,0.75,1.625,0.7188,1.6875,0.75,1.625,0.75,1.6875,0.75,1.6875,0.75,1.625,0.7813,1.625,0.75,1.6875,0.7813,1.625,0.7813,1.6875,0.7813,1.6875,0.7813,1.625,0.8125,1.625,0.7813,1.6875,0.8125,1.625,0.8125,1.6875,0.8125,1.6875,0.8125,1.625,0.8438,1.625,0.8125,1.6875,0.8438,1.625,0.8438,1.6875,0.8438,1.6875,0.8438,1.625,0.875,1.625,0.8438,1.6875,0.875,1.625,0.875,1.6875,0.875,1.6875,0.875,1.625,0.9063,1.625,0.875,1.6875,0.9063,1.625,0.9063,1.6875,0.9063,1.6875,0.9063,1.625,0.9375,1.625,0.9063,1.6875,0.9375,1.625,0.9375,1.6875,0.9375,1.6875,0.9375,1.625,0.9688,1.625,0.9375,1.6875,0.9688,1.625,0.9688,1.6875,0.9688,1.6875,0.9688,1.625,1.0,1.625,0.9688,1.6875,1.0,1.625,1.0,1.6875,0.0,1.625,0.0,1.5625,0.0312,1.5625,0.0,1.625,0.0312,1.5625,0.0312,1.625,0.0312,1.625,0.0312,1.5625,0.0625,1.5625,0.0312,1.625,0.0625,1.5625,0.0625,1.625,0.0625,1.625,0.0625,1.5625,0.0938,1.5625,0.0625,1.625,0.0938,1.5625,0.0938,1.625,0.0938,1.625,0.0938,1.5625,0.125,1.5625,0.0938,1.625,0.125,1.5625,0.125,1.625,0.125,1.625,0.125,1.5625,0.1562,1.5625,0.125,1.625,0.1562,1.5625,0.1562,1.625,0.1562,1.625,0.1562,1.5625,0.1875,1.5625,0.1562,1.625,0.1875,1.5625,0.1875,1.625,0.1875,1.625,0.1875,1.5625,0.2187,1.5625,0.1875,1.625,0.2187,1.5625,0.2187,1.625,0.2187,1.625,0.2187,1.5625,0.25,1.5625,0.2187,1.625,0.25,1.5625,0.25,1.625,0.25,1.625,0.25,1.5625,0.2812,1.5625,0.25,1.625,0.2812,1.5625,0.2812,1.625,0.2812,1.625,0.2812,1.5625,0.3125,1.5625,0.2812,1.625,0.3125,1.5625,0.3125,1.625,0.3125,1.625,0.3125,1.5625,0.3437,1.5625,0.3125,1.625,0.3437,1.5625,0.3437,1.625,0.3437,1.625,0.3437,1.5625,0.375,1.5625,0.3437,1.625,0.375,1.5625,0.375,1.625,0.375,1.625,0.375,1.5625,0.4062,1.5625,0.375,1.625,0.4062,1.5625,0.4062,1.625,0.4062,1.625,0.4062,1.5625,0.4375,1.5625,0.4062,1.625,0.4375,1.5625,0.4375,1.625,0.4375,1.625,0.4375,1.5625,0.4688,1.5625,0.4375,1.625,0.4688,1.5625,0.4688,1.625,0.4688,1.625,0.4688,1.5625,0.5,1.5625,0.4688,1.625,0.5,1.5625,0.5,1.625,0.5,1.625,0.5,1.5625,0.5313,1.5625,0.5,1.625,0.5313,1.5625,0.5313,1.625,0.5313,1.625,0.5313,1.5625,0.5625,1.5625,0.5313,1.625,0.5625,1.5625,0.5625,1.625,0.5625,1.625,0.5625,1.5625,0.5938,1.5625,0.5625,1.625,0.5938,1.5625,0.5938,1.625,0.5938,1.625,0.5938,1.5625,0.625,1.5625,0.5938,1.625,0.625,1.5625,0.625,1.625,0.625,1.625,0.625,1.5625,0.6563,1.5625,0.625,1.625,0.6563,1.5625,0.6563,1.625,0.6563,1.625,0.6563,1.5625,0.6875,1.5625,0.6563,1.625,0.6875,1.5625,0.6875,1.625,0.6875,1.625,0.6875,1.5625,0.7188,1.5625,0.6875,1.625,0.7188,1.5625,0.7188,1.625,0.7188,1.625,0.7188,1.5625,0.75,1.5625,0.7188,1.625,0.75,1.5625,0.75,1.625,0.75,1.625,0.75,1.5625,0.7813,1.5625,0.75,1.625,0.7813,1.5625,0.7813,1.625,0.7813,1.625,0.7813,1.5625,0.8125,1.5625,0.7813,1.625,0.8125,1.5625,0.8125,1.625,0.8125,1.625,0.8125,1.5625,0.8438,1.5625,0.8125,1.625,0.8438,1.5625,0.8438,1.625,0.8438,1.625,0.8438,1.5625,0.875,1.5625,0.8438,1.625,0.875,1.5625,0.875,1.625,0.875,1.625,0.875,1.5625,0.9063,1.5625,0.875,1.625,0.9063,1.5625,0.9063,1.625,0.9063,1.625,0.9063,1.5625,0.9375,1.5625,0.9063,1.625,0.9375,1.5625,0.9375,1.625,0.9375,1.625,0.9375,1.5625,0.9688,1.5625,0.9375,1.625,0.9688,1.5625,0.9688,1.625,0.9688,1.625,0.9688,1.5625,1.0,1.5625,0.9688,1.625,1.0,1.5625,1.0,1.625,0.0,1.5625,0.0,1.5,0.0312,1.5,0.0,1.5625,0.0312,1.5,0.0312,1.5625,0.0312,1.5625,0.0312,1.5,0.0625,1.5,0.0312,1.5625,0.0625,1.5,0.0625,1.5625,0.0625,1.5625,0.0625,1.5,0.0938,1.5,0.0625,1.5625,0.0938,1.5,0.0938,1.5625,0.0938,1.5625,0.0938,1.5,0.125,1.5,0.0938,1.5625,0.125,1.5,0.125,1.5625,0.125,1.5625,0.125,1.5,0.1562,1.5,0.125,1.5625,0.1562,1.5,0.1562,1.5625,0.1562,1.5625,0.1562,1.5,0.1875,1.5,0.1562,1.5625,0.1875,1.5,0.1875,1.5625,0.1875,1.5625,0.1875,1.5,0.2187,1.5,0.1875,1.5625,0.2187,1.5,0.2187,1.5625,0.2187,1.5625,0.2187,1.5,0.25,1.5,0.2187,1.5625,0.25,1.5,0.25,1.5625,0.25,1.5625,0.25,1.5,0.2812,1.5,0.25,1.5625,0.2812,1.5,0.2812,1.5625,0.2812,1.5625,0.2812,1.5,0.3125,1.5,0.2812,1.5625,0.3125,1.5,0.3125,1.5625,0.3125,1.5625,0.3125,1.5,0.3437,1.5,0.3125,1.5625,0.3437,1.5,0.3437,1.5625,0.3437,1.5625,0.3437,1.5,0.375,1.5,0.3437,1.5625,0.375,1.5,0.375,1.5625,0.375,1.5625,0.375,1.5,0.4062,1.5,0.375,1.5625,0.4062,1.5,0.4062,1.5625,0.4062,1.5625,0.4062,1.5,0.4375,1.5,0.4062,1.5625,0.4375,1.5,0.4375,1.5625,0.4375,1.5625,0.4375,1.5,0.4688,1.5,0.4375,1.5625,0.4688,1.5,0.4688,1.5625,0.4688,1.5625,0.4688,1.5,0.5,1.5,0.4688,1.5625,0.5,1.5,0.5,1.5625,0.5,1.5625,0.5,1.5,0.5313,1.5,0.5,1.5625,0.5313,1.5,0.5313,1.5625,0.5313,1.5625,0.5313,1.5,0.5625,1.5,0.5313,1.5625,0.5625,1.5,0.5625,1.5625,0.5625,1.5625,0.5625,1.5,0.5938,1.5,0.5625,1.5625,0.5938,1.5,0.5938,1.5625,0.5938,1.5625,0.5938,1.5,0.625,1.5,0.5938,1.5625,0.625,1.5,0.625,1.5625,0.625,1.5625,0.625,1.5,0.6563,1.5,0.625,1.5625,0.6563,1.5,0.6563,1.5625,0.6563,1.5625,0.6563,1.5,0.6875,1.5,0.6563,1.5625,0.6875,1.5,0.6875,1.5625,0.6875,1.5625,0.6875,1.5,0.7188,1.5,0.6875,1.5625,0.7188,1.5,0.7188,1.5625,0.7188,1.5625,0.7188,1.5,0.75,1.5,0.7188,1.5625,0.75,1.5,0.75,1.5625,0.75,1.5625,0.75,1.5,0.7813,1.5,0.75,1.5625,0.7813,1.5,0.7813,1.5625,0.7813,1.5625,0.7813,1.5,0.8125,1.5,0.7813,1.5625,0.8125,1.5,0.8125,1.5625,0.8125,1.5625,0.8125,1.5,0.8438,1.5,0.8125,1.5625,0.8438,1.5,0.8438,1.5625,0.8438,1.5625,0.8438,1.5,0.875,1.5,0.8438,1.5625,0.875,1.5,0.875,1.5625,0.875,1.5625,0.875,1.5,0.9063,1.5,0.875,1.5625,0.9063,1.5,0.9063,1.5625,0.9063,1.5625,0.9063,1.5,0.9375,1.5,0.9063,1.5625,0.9375,1.5,0.9375,1.5625,0.9375,1.5625,0.9375,1.5,0.9688,1.5,0.9375,1.5625,0.9688,1.5,0.9688,1.5625,0.9688,1.5625,0.9688,1.5,1.0,1.5,0.9688,1.5625,1.0,1.5,1.0,1.5625,0.0,1.5,0.0,1.4375,0.0312,1.4375,0.0,1.5,0.0312,1.4375,0.0312,1.5,0.0312,1.5,0.0312,1.4375,0.0625,1.4375,0.0312,1.5,0.0625,1.4375,0.0625,1.5,0.0625,1.5,0.0625,1.4375,0.0938,1.4375,0.0625,1.5,0.0938,1.4375,0.0938,1.5,0.0938,1.5,0.0938,1.4375,0.125,1.4375,0.0938,1.5,0.125,1.4375,0.125,1.5,0.125,1.5,0.125,1.4375,0.1562,1.4375,0.125,1.5,0.1562,1.4375,0.1562,1.5,0.1562,1.5,0.1562,1.4375,0.1875,1.4375,0.1562,1.5,0.1875,1.4375,0.1875,1.5,0.1875,1.5,0.1875,1.4375,0.2187,1.4375,0.1875,1.5,0.2187,1.4375,0.2187,1.5,0.2187,1.5,0.2187,1.4375,0.25,1.4375,0.2187,1.5,0.25,1.4375,0.25,1.5,0.25,1.5,0.25,1.4375,0.2812,1.4375,0.25,1.5,0.2812,1.4375,0.2812,1.5,0.2812,1.5,0.2812,1.4375,0.3125,1.4375,0.2812,1.5,0.3125,1.4375,0.3125,1.5,0.3125,1.5,0.3125,1.4375,0.3437,1.4375,0.3125,1.5,0.3437,1.4375,0.3437,1.5,0.3437,1.5,0.3437,1.4375,0.375,1.4375,0.3437,1.5,0.375,1.4375,0.375,1.5,0.375,1.5,0.375,1.4375,0.4062,1.4375,0.375,1.5,0.4062,1.4375,0.4062,1.5,0.4062,1.5,0.4062,1.4375,0.4375,1.4375,0.4062,1.5,0.4375,1.4375,0.4375,1.5,0.4375,1.5,0.4375,1.4375,0.4688,1.4375,0.4375,1.5,0.4688,1.4375,0.4688,1.5,0.4688,1.5,0.4688,1.4375,0.5,1.4375,0.4688,1.5,0.5,1.4375,0.5,1.5,0.5,1.5,0.5,1.4375,0.5313,1.4375,0.5,1.5,0.5313,1.4375,0.5313,1.5,0.5313,1.5,0.5313,1.4375,0.5625,1.4375,0.5313,1.5,0.5625,1.4375,0.5625,1.5,0.5625,1.5,0.5625,1.4375,0.5938,1.4375,0.5625,1.5,0.5938,1.4375,0.5938,1.5,0.5938,1.5,0.5938,1.4375,0.625,1.4375,0.5938,1.5,0.625,1.4375,0.625,1.5,0.625,1.5,0.625,1.4375,0.6563,1.4375,0.625,1.5,0.6563,1.4375,0.6563,1.5,0.6563,1.5,0.6563,1.4375,0.6875,1.4375,0.6563,1.5,0.6875,1.4375,0.6875,1.5,0.6875,1.5,0.6875,1.4375,0.7188,1.4375,0.6875,1.5,0.7188,1.4375,0.7188,1.5,0.7188,1.5,0.7188,1.4375,0.75,1.4375,0.7188,1.5,0.75,1.4375,0.75,1.5,0.75,1.5,0.75,1.4375,0.7813,1.4375,0.75,1.5,0.7813,1.4375,0.7813,1.5,0.7813,1.5,0.7813,1.4375,0.8125,1.4375,0.7813,1.5,0.8125,1.4375,0.8125,1.5,0.8125,1.5,0.8125,1.4375,0.8438,1.4375,0.8125,1.5,0.8438,1.4375,0.8438,1.5,0.8438,1.5,0.8438,1.4375,0.875,1.4375,0.8438,1.5,0.875,1.4375,0.875,1.5,0.875,1.5,0.875,1.4375,0.9063,1.4375,0.875,1.5,0.9063,1.4375,0.9063,1.5,0.9063,1.5,0.9063,1.4375,0.9375,1.4375,0.9063,1.5,0.9375,1.4375,0.9375,1.5,0.9375,1.5,0.9375,1.4375,0.9688,1.4375,0.9375,1.5,0.9688,1.4375,0.9688,1.5,0.9688,1.5,0.9688,1.4375,1.0,1.4375,0.9688,1.5,1.0,1.4375,1.0,1.5,0.0,1.4375,0.0,1.375,0.0312,1.375,0.0,1.4375,0.0312,1.375,0.0312,1.4375,0.0312,1.4375,0.0312,1.375,0.0625,1.375,0.0312,1.4375,0.0625,1.375,0.0625,1.4375,0.0625,1.4375,0.0625,1.375,0.0938,1.375,0.0625,1.4375,0.0938,1.375,0.0938,1.4375,0.0938,1.4375,0.0938,1.375,0.125,1.375,0.0938,1.4375,0.125,1.375,0.125,1.4375,0.125,1.4375,0.125,1.375,0.1562,1.375,0.125,1.4375,0.1562,1.375,0.1562,1.4375,0.1562,1.4375,0.1562,1.375,0.1875,1.375,0.1562,1.4375,0.1875,1.375,0.1875,1.4375,0.1875,1.4375,0.1875,1.375,0.2187,1.375,0.1875,1.4375,0.2187,1.375,0.2187,1.4375,0.2187,1.4375,0.2187,1.375,0.25,1.375,0.2187,1.4375,0.25,1.375,0.25,1.4375,0.25,1.4375,0.25,1.375,0.2812,1.375,0.25,1.4375,0.2812,1.375,0.2812,1.4375,0.2812,1.4375,0.2812,1.375,0.3125,1.375,0.2812,1.4375,0.3125,1.375,0.3125,1.4375,0.3125,1.4375,0.3125,1.375,0.3437,1.375,0.3125,1.4375,0.3437,1.375,0.3437,1.4375,0.3437,1.4375,0.3437,1.375,0.375,1.375,0.3437,1.4375,0.375,1.375,0.375,1.4375,0.375,1.4375,0.375,1.375,0.4062,1.375,0.375,1.4375,0.4062,1.375,0.4062,1.4375,0.4062,1.4375,0.4062,1.375,0.4375,1.375,0.4062,1.4375,0.4375,1.375,0.4375,1.4375,0.4375,1.4375,0.4375,1.375,0.4688,1.375,0.4375,1.4375,0.4688,1.375,0.4688,1.4375,0.4688,1.4375,0.4688,1.375,0.5,1.375,0.4688,1.4375,0.5,1.375,0.5,1.4375,0.5,1.4375,0.5,1.375,0.5313,1.375,0.5,1.4375,0.5313,1.375,0.5313,1.4375,0.5313,1.4375,0.5313,1.375,0.5625,1.375,0.5313,1.4375,0.5625,1.375,0.5625,1.4375,0.5625,1.4375,0.5625,1.375,0.5938,1.375,0.5625,1.4375,0.5938,1.375,0.5938,1.4375,0.5938,1.4375,0.5938,1.375,0.625,1.375,0.5938,1.4375,0.625,1.375,0.625,1.4375,0.625,1.4375,0.625,1.375,0.6563,1.375,0.625,1.4375,0.6563,1.375,0.6563,1.4375,0.6563,1.4375,0.6563,1.375,0.6875,1.375,0.6563,1.4375,0.6875,1.375,0.6875,1.4375,0.6875,1.4375,0.6875,1.375,0.7188,1.375,0.6875,1.4375,0.7188,1.375,0.7188,1.4375,0.7188,1.4375,0.7188,1.375,0.75,1.375,0.7188,1.4375,0.75,1.375,0.75,1.4375,0.75,1.4375,0.75,1.375,0.7813,1.375,0.75,1.4375,0.7813,1.375,0.7813,1.4375,0.7813,1.4375,0.7813,1.375,0.8125,1.375,0.7813,1.4375,0.8125,1.375,0.8125,1.4375,0.8125,1.4375,0.8125,1.375,0.8438,1.375,0.8125,1.4375,0.8438,1.375,0.8438,1.4375,0.8438,1.4375,0.8438,1.375,0.875,1.375,0.8438,1.4375,0.875,1.375,0.875,1.4375,0.875,1.4375,0.875,1.375,0.9063,1.375,0.875,1.4375,0.9063,1.375,0.9063,1.4375,0.9063,1.4375,0.9063,1.375,0.9375,1.375,0.9063,1.4375,0.9375,1.375,0.9375,1.4375,0.9375,1.4375,0.9375,1.375,0.9688,1.375,0.9375,1.4375,0.9688,1.375,0.9688,1.4375,0.9688,1.4375,0.9688,1.375,1.0,1.375,0.9688,1.4375,1.0,1.375,1.0,1.4375,0.0,1.375,0.0,1.3125,0.0312,1.3125,0.0,1.375,0.0312,1.3125,0.0312,1.375,0.0312,1.375,0.0312,1.3125,0.0625,1.3125,0.0312,1.375,0.0625,1.3125,0.0625,1.375,0.0625,1.375,0.0625,1.3125,0.0938,1.3125,0.0625,1.375,0.0938,1.3125,0.0938,1.375,0.0938,1.375,0.0938,1.3125,0.125,1.3125,0.0938,1.375,0.125,1.3125,0.125,1.375,0.125,1.375,0.125,1.3125,0.1562,1.3125,0.125,1.375,0.1562,1.3125,0.1562,1.375,0.1562,1.375,0.1562,1.3125,0.1875,1.3125,0.1562,1.375,0.1875,1.3125,0.1875,1.375,0.1875,1.375,0.1875,1.3125,0.2187,1.3125,0.1875,1.375,0.2187,1.3125,0.2187,1.375,0.2187,1.375,0.2187,1.3125,0.25,1.3125,0.2187,1.375,0.25,1.3125,0.25,1.375,0.25,1.375,0.25,1.3125,0.2812,1.3125,0.25,1.375,0.2812,1.3125,0.2812,1.375,0.2812,1.375,0.2812,1.3125,0.3125,1.3125,0.2812,1.375,0.3125,1.3125,0.3125,1.375,0.3125,1.375,0.3125,1.3125,0.3437,1.3125,0.3125,1.375,0.3437,1.3125,0.3437,1.375,0.3437,1.375,0.3437,1.3125,0.375,1.3125,0.3437,1.375,0.375,1.3125,0.375,1.375,0.375,1.375,0.375,1.3125,0.4062,1.3125,0.375,1.375,0.4062,1.3125,0.4062,1.375,0.4062,1.375,0.4062,1.3125,0.4375,1.3125,0.4062,1.375,0.4375,1.3125,0.4375,1.375,0.4375,1.375,0.4375,1.3125,0.4688,1.3125,0.4375,1.375,0.4688,1.3125,0.4688,1.375,0.4688,1.375,0.4688,1.3125,0.5,1.3125,0.4688,1.375,0.5,1.3125,0.5,1.375,0.5,1.375,0.5,1.3125,0.5313,1.3125,0.5,1.375,0.5313,1.3125,0.5313,1.375,0.5313,1.375,0.5313,1.3125,0.5625,1.3125,0.5313,1.375,0.5625,1.3125,0.5625,1.375,0.5625,1.375,0.5625,1.3125,0.5938,1.3125,0.5625,1.375,0.5938,1.3125,0.5938,1.375,0.5938,1.375,0.5938,1.3125,0.625,1.3125,0.5938,1.375,0.625,1.3125,0.625,1.375,0.625,1.375,0.625,1.3125,0.6563,1.3125,0.625,1.375,0.6563,1.3125,0.6563,1.375,0.6563,1.375,0.6563,1.3125,0.6875,1.3125,0.6563,1.375,0.6875,1.3125,0.6875,1.375,0.6875,1.375,0.6875,1.3125,0.7188,1.3125,0.6875,1.375,0.7188,1.3125,0.7188,1.375,0.7188,1.375,0.7188,1.3125,0.75,1.3125,0.7188,1.375,0.75,1.3125,0.75,1.375,0.75,1.375,0.75,1.3125,0.7813,1.3125,0.75,1.375,0.7813,1.3125,0.7813,1.375,0.7813,1.375,0.7813,1.3125,0.8125,1.3125,0.7813,1.375,0.8125,1.3125,0.8125,1.375,0.8125,1.375,0.8125,1.3125,0.8438,1.3125,0.8125,1.375,0.8438,1.3125,0.8438,1.375,0.8438,1.375,0.8438,1.3125,0.875,1.3125,0.8438,1.375,0.875,1.3125,0.875,1.375,0.875,1.375,0.875,1.3125,0.9063,1.3125,0.875,1.375,0.9063,1.3125,0.9063,1.375,0.9063,1.375,0.9063,1.3125,0.9375,1.3125,0.9063,1.375,0.9375,1.3125,0.9375,1.375,0.9375,1.375,0.9375,1.3125,0.9688,1.3125,0.9375,1.375,0.9688,1.3125,0.9688,1.375,0.9688,1.375,0.9688,1.3125,1.0,1.3125,0.9688,1.375,1.0,1.3125,1.0,1.375,0.0,1.3125,0.0,1.25,0.0312,1.25,0.0,1.3125,0.0312,1.25,0.0312,1.3125,0.0312,1.3125,0.0312,1.25,0.0625,1.25,0.0312,1.3125,0.0625,1.25,0.0625,1.3125,0.0625,1.3125,0.0625,1.25,0.0938,1.25,0.0625,1.3125,0.0938,1.25,0.0938,1.3125,0.0938,1.3125,0.0938,1.25,0.125,1.25,0.0938,1.3125,0.125,1.25,0.125,1.3125,0.125,1.3125,0.125,1.25,0.1562,1.25,0.125,1.3125,0.1562,1.25,0.1562,1.3125,0.1562,1.3125,0.1562,1.25,0.1875,1.25,0.1562,1.3125,0.1875,1.25,0.1875,1.3125,0.1875,1.3125,0.1875,1.25,0.2187,1.25,0.1875,1.3125,0.2187,1.25,0.2187,1.3125,0.2187,1.3125,0.2187,1.25,0.25,1.25,0.2187,1.3125,0.25,1.25,0.25,1.3125,0.25,1.3125,0.25,1.25,0.2812,1.25,0.25,1.3125,0.2812,1.25,0.2812,1.3125,0.2812,1.3125,0.2812,1.25,0.3125,1.25,0.2812,1.3125,0.3125,1.25,0.3125,1.3125,0.3125,1.3125,0.3125,1.25,0.3437,1.25,0.3125,1.3125,0.3437,1.25,0.3437,1.3125,0.3437,1.3125,0.3437,1.25,0.375,1.25,0.3437,1.3125,0.375,1.25,0.375,1.3125,0.375,1.3125,0.375,1.25,0.4062,1.25,0.375,1.3125,0.4062,1.25,0.4062,1.3125,0.4062,1.3125,0.4062,1.25,0.4375,1.25,0.4062,1.3125,0.4375,1.25,0.4375,1.3125,0.4375,1.3125,0.4375,1.25,0.4688,1.25,0.4375,1.3125,0.4688,1.25,0.4688,1.3125,0.4688,1.3125,0.4688,1.25,0.5,1.25,0.4688,1.3125,0.5,1.25,0.5,1.3125,0.5,1.3125,0.5,1.25,0.5313,1.25,0.5,1.3125,0.5313,1.25,0.5313,1.3125,0.5313,1.3125,0.5313,1.25,0.5625,1.25,0.5313,1.3125,0.5625,1.25,0.5625,1.3125,0.5625,1.3125,0.5625,1.25,0.5938,1.25,0.5625,1.3125,0.5938,1.25,0.5938,1.3125,0.5938,1.3125,0.5938,1.25,0.625,1.25,0.5938,1.3125,0.625,1.25,0.625,1.3125,0.625,1.3125,0.625,1.25,0.6563,1.25,0.625,1.3125,0.6563,1.25,0.6563,1.3125,0.6563,1.3125,0.6563,1.25,0.6875,1.25,0.6563,1.3125,0.6875,1.25,0.6875,1.3125,0.6875,1.3125,0.6875,1.25,0.7188,1.25,0.6875,1.3125,0.7188,1.25,0.7188,1.3125,0.7188,1.3125,0.7188,1.25,0.75,1.25,0.7188,1.3125,0.75,1.25,0.75,1.3125,0.75,1.3125,0.75,1.25,0.7813,1.25,0.75,1.3125,0.7813,1.25,0.7813,1.3125,0.7813,1.3125,0.7813,1.25,0.8125,1.25,0.7813,1.3125,0.8125,1.25,0.8125,1.3125,0.8125,1.3125,0.8125,1.25,0.8438,1.25,0.8125,1.3125,0.8438,1.25,0.8438,1.3125,0.8438,1.3125,0.8438,1.25,0.875,1.25,0.8438,1.3125,0.875,1.25,0.875,1.3125,0.875,1.3125,0.875,1.25,0.9063,1.25,0.875,1.3125,0.9063,1.25,0.9063,1.3125,0.9063,1.3125,0.9063,1.25,0.9375,1.25,0.9063,1.3125,0.9375,1.25,0.9375,1.3125,0.9375,1.3125,0.9375,1.25,0.9688,1.25,0.9375,1.3125,0.9688,1.25,0.9688,1.3125,0.9688,1.3125,0.9688,1.25,1.0,1.25,0.9688,1.3125,1.0,1.25,1.0,1.3125,0.0,1.25,0.0,1.1875,0.0312,1.1875,0.0,1.25,0.0312,1.1875,0.0312,1.25,0.0312,1.25,0.0312,1.1875,0.0625,1.1875,0.0312,1.25,0.0625,1.1875,0.0625,1.25,0.0625,1.25,0.0625,1.1875,0.0938,1.1875,0.0625,1.25,0.0938,1.1875,0.0938,1.25,0.0938,1.25,0.0938,1.1875,0.125,1.1875,0.0938,1.25,0.125,1.1875,0.125,1.25,0.125,1.25,0.125,1.1875,0.1562,1.1875,0.125,1.25,0.1562,1.1875,0.1562,1.25,0.1562,1.25,0.1562,1.1875,0.1875,1.1875,0.1562,1.25,0.1875,1.1875,0.1875,1.25,0.1875,1.25,0.1875,1.1875,0.2187,1.1875,0.1875,1.25,0.2187,1.1875,0.2187,1.25,0.2187,1.25,0.2187,1.1875,0.25,1.1875,0.2187,1.25,0.25,1.1875,0.25,1.25,0.25,1.25,0.25,1.1875,0.2812,1.1875,0.25,1.25,0.2812,1.1875,0.2812,1.25,0.2812,1.25,0.2812,1.1875,0.3125,1.1875,0.2812,1.25,0.3125,1.1875,0.3125,1.25,0.3125,1.25,0.3125,1.1875,0.3437,1.1875,0.3125,1.25,0.3437,1.1875,0.3437,1.25,0.3437,1.25,0.3437,1.1875,0.375,1.1875,0.3437,1.25,0.375,1.1875,0.375,1.25,0.375,1.25,0.375,1.1875,0.4062,1.1875,0.375,1.25,0.4062,1.1875,0.4062,1.25,0.4062,1.25,0.4062,1.1875,0.4375,1.1875,0.4062,1.25,0.4375,1.1875,0.4375,1.25,0.4375,1.25,0.4375,1.1875,0.4688,1.1875,0.4375,1.25,0.4688,1.1875,0.4688,1.25,0.4688,1.25,0.4688,1.1875,0.5,1.1875,0.4688,1.25,0.5,1.1875,0.5,1.25,0.5,1.25,0.5,1.1875,0.5313,1.1875,0.5,1.25,0.5313,1.1875,0.5313,1.25,0.5313,1.25,0.5313,1.1875,0.5625,1.1875,0.5313,1.25,0.5625,1.1875,0.5625,1.25,0.5625,1.25,0.5625,1.1875,0.5938,1.1875,0.5625,1.25,0.5938,1.1875,0.5938,1.25,0.5938,1.25,0.5938,1.1875,0.625,1.1875,0.5938,1.25,0.625,1.1875,0.625,1.25,0.625,1.25,0.625,1.1875,0.6563,1.1875,0.625,1.25,0.6563,1.1875,0.6563,1.25,0.6563,1.25,0.6563,1.1875,0.6875,1.1875,0.6563,1.25,0.6875,1.1875,0.6875,1.25,0.6875,1.25,0.6875,1.1875,0.7188,1.1875,0.6875,1.25,0.7188,1.1875,0.7188,1.25,0.7188,1.25,0.7188,1.1875,0.75,1.1875,0.7188,1.25,0.75,1.1875,0.75,1.25,0.75,1.25,0.75,1.1875,0.7813,1.1875,0.75,1.25,0.7813,1.1875,0.7813,1.25,0.7813,1.25,0.7813,1.1875,0.8125,1.1875,0.7813,1.25,0.8125,1.1875,0.8125,1.25,0.8125,1.25,0.8125,1.1875,0.8438,1.1875,0.8125,1.25,0.8438,1.1875,0.8438,1.25,0.8438,1.25,0.8438,1.1875,0.875,1.1875,0.8438,1.25,0.875,1.1875,0.875,1.25,0.875,1.25,0.875,1.1875,0.9063,1.1875,0.875,1.25,0.9063,1.1875,0.9063,1.25,0.9063,1.25,0.9063,1.1875,0.9375,1.1875,0.9063,1.25,0.9375,1.1875,0.9375,1.25,0.9375,1.25,0.9375,1.1875,0.9688,1.1875,0.9375,1.25,0.9688,1.1875,0.9688,1.25,0.9688,1.25,0.9688,1.1875,1.0,1.1875,0.9688,1.25,1.0,1.1875,1.0,1.25,0.0,1.1875,0.0,1.125,0.0312,1.125,0.0,1.1875,0.0312,1.125,0.0312,1.1875,0.0312,1.1875,0.0312,1.125,0.0625,1.125,0.0312,1.1875,0.0625,1.125,0.0625,1.1875,0.0625,1.1875,0.0625,1.125,0.0938,1.125,0.0625,1.1875,0.0938,1.125,0.0938,1.1875,0.0938,1.1875,0.0938,1.125,0.125,1.125,0.0938,1.1875,0.125,1.125,0.125,1.1875,0.125,1.1875,0.125,1.125,0.1562,1.125,0.125,1.1875,0.1562,1.125,0.1562,1.1875,0.1562,1.1875,0.1562,1.125,0.1875,1.125,0.1562,1.1875,0.1875,1.125,0.1875,1.1875,0.1875,1.1875,0.1875,1.125,0.2187,1.125,0.1875,1.1875,0.2187,1.125,0.2187,1.1875,0.2187,1.1875,0.2187,1.125,0.25,1.125,0.2187,1.1875,0.25,1.125,0.25,1.1875,0.25,1.1875,0.25,1.125,0.2812,1.125,0.25,1.1875,0.2812,1.125,0.2812,1.1875,0.2812,1.1875,0.2812,1.125,0.3125,1.125,0.2812,1.1875,0.3125,1.125,0.3125,1.1875,0.3125,1.1875,0.3125,1.125,0.3437,1.125,0.3125,1.1875,0.3437,1.125,0.3437,1.1875,0.3437,1.1875,0.3437,1.125,0.375,1.125,0.3437,1.1875,0.375,1.125,0.375,1.1875,0.375,1.1875,0.375,1.125,0.4062,1.125,0.375,1.1875,0.4062,1.125,0.4062,1.1875,0.4062,1.1875,0.4062,1.125,0.4375,1.125,0.4062,1.1875,0.4375,1.125,0.4375,1.1875,0.4375,1.1875,0.4375,1.125,0.4688,1.125,0.4375,1.1875,0.4688,1.125,0.4688,1.1875,0.4688,1.1875,0.4688,1.125,0.5,1.125,0.4688,1.1875,0.5,1.125,0.5,1.1875,0.5,1.1875,0.5,1.125,0.5313,1.125,0.5,1.1875,0.5313,1.125,0.5313,1.1875,0.5313,1.1875,0.5313,1.125,0.5625,1.125,0.5313,1.1875,0.5625,1.125,0.5625,1.1875,0.5625,1.1875,0.5625,1.125,0.5938,1.125,0.5625,1.1875,0.5938,1.125,0.5938,1.1875,0.5938,1.1875,0.5938,1.125,0.625,1.125,0.5938,1.1875,0.625,1.125,0.625,1.1875,0.625,1.1875,0.625,1.125,0.6563,1.125,0.625,1.1875,0.6563,1.125,0.6563,1.1875,0.6563,1.1875,0.6563,1.125,0.6875,1.125,0.6563,1.1875,0.6875,1.125,0.6875,1.1875,0.6875,1.1875,0.6875,1.125,0.7188,1.125,0.6875,1.1875,0.7188,1.125,0.7188,1.1875,0.7188,1.1875,0.7188,1.125,0.75,1.125,0.7188,1.1875,0.75,1.125,0.75,1.1875,0.75,1.1875,0.75,1.125,0.7813,1.125,0.75,1.1875,0.7813,1.125,0.7813,1.1875,0.7813,1.1875,0.7813,1.125,0.8125,1.125,0.7813,1.1875,0.8125,1.125,0.8125,1.1875,0.8125,1.1875,0.8125,1.125,0.8438,1.125,0.8125,1.1875,0.8438,1.125,0.8438,1.1875,0.8438,1.1875,0.8438,1.125,0.875,1.125,0.8438,1.1875,0.875,1.125,0.875,1.1875,0.875,1.1875,0.875,1.125,0.9063,1.125,0.875,1.1875,0.9063,1.125,0.9063,1.1875,0.9063,1.1875,0.9063,1.125,0.9375,1.125,0.9063,1.1875,0.9375,1.125,0.9375,1.1875,0.9375,1.1875,0.9375,1.125,0.9688,1.125,0.9375,1.1875,0.9688,1.125,0.9688,1.1875,0.9688,1.1875,0.9688,1.125,1.0,1.125,0.9688,1.1875,1.0,1.125,1.0,1.1875,0.0,1.125,0.0,1.0625,0.0312,1.0625,0.0,1.125,0.0312,1.0625,0.0312,1.125,0.0312,1.125,0.0312,1.0625,0.0625,1.0625,0.0312,1.125,0.0625,1.0625,0.0625,1.125,0.0625,1.125,0.0625,1.0625,0.0938,1.0625,0.0625,1.125,0.0938,1.0625,0.0938,1.125,0.0938,1.125,0.0938,1.0625,0.125,1.0625,0.0938,1.125,0.125,1.0625,0.125,1.125,0.125,1.125,0.125,1.0625,0.1562,1.0625,0.125,1.125,0.1562,1.0625,0.1562,1.125,0.1562,1.125,0.1562,1.0625,0.1875,1.0625,0.1562,1.125,0.1875,1.0625,0.1875,1.125,0.1875,1.125,0.1875,1.0625,0.2187,1.0625,0.1875,1.125,0.2187,1.0625,0.2187,1.125,0.2187,1.125,0.2187,1.0625,0.25,1.0625,0.2187,1.125,0.25,1.0625,0.25,1.125,0.25,1.125,0.25,1.0625,0.2812,1.0625,0.25,1.125,0.2812,1.0625,0.2812,1.125,0.2812,1.125,0.2812,1.0625,0.3125,1.0625,0.2812,1.125,0.3125,1.0625,0.3125,1.125,0.3125,1.125,0.3125,1.0625,0.3437,1.0625,0.3125,1.125,0.3437,1.0625,0.3437,1.125,0.3437,1.125,0.3437,1.0625,0.375,1.0625,0.3437,1.125,0.375,1.0625,0.375,1.125,0.375,1.125,0.375,1.0625,0.4062,1.0625,0.375,1.125,0.4062,1.0625,0.4062,1.125,0.4062,1.125,0.4062,1.0625,0.4375,1.0625,0.4062,1.125,0.4375,1.0625,0.4375,1.125,0.4375,1.125,0.4375,1.0625,0.4688,1.0625,0.4375,1.125,0.4688,1.0625,0.4688,1.125,0.4688,1.125,0.4688,1.0625,0.5,1.0625,0.4688,1.125,0.5,1.0625,0.5,1.125,0.5,1.125,0.5,1.0625,0.5313,1.0625,0.5,1.125,0.5313,1.0625,0.5313,1.125,0.5313,1.125,0.5313,1.0625,0.5625,1.0625,0.5313,1.125,0.5625,1.0625,0.5625,1.125,0.5625,1.125,0.5625,1.0625,0.5938,1.0625,0.5625,1.125,0.5938,1.0625,0.5938,1.125,0.5938,1.125,0.5938,1.0625,0.625,1.0625,0.5938,1.125,0.625,1.0625,0.625,1.125,0.625,1.125,0.625,1.0625,0.6563,1.0625,0.625,1.125,0.6563,1.0625,0.6563,1.125,0.6563,1.125,0.6563,1.0625,0.6875,1.0625,0.6563,1.125,0.6875,1.0625,0.6875,1.125,0.6875,1.125,0.6875,1.0625,0.7188,1.0625,0.6875,1.125,0.7188,1.0625,0.7188,1.125,0.7188,1.125,0.7188,1.0625,0.75,1.0625,0.7188,1.125,0.75,1.0625,0.75,1.125,0.75,1.125,0.75,1.0625,0.7813,1.0625,0.75,1.125,0.7813,1.0625,0.7813,1.125,0.7813,1.125,0.7813,1.0625,0.8125,1.0625,0.7813,1.125,0.8125,1.0625,0.8125,1.125,0.8125,1.125,0.8125,1.0625,0.8438,1.0625,0.8125,1.125,0.8438,1.0625,0.8438,1.125,0.8438,1.125,0.8438,1.0625,0.875,1.0625,0.8438,1.125,0.875,1.0625,0.875,1.125,0.875,1.125,0.875,1.0625,0.9063,1.0625,0.875,1.125,0.9063,1.0625,0.9063,1.125,0.9063,1.125,0.9063,1.0625,0.9375,1.0625,0.9063,1.125,0.9375,1.0625,0.9375,1.125,0.9375,1.125,0.9375,1.0625,0.9688,1.0625,0.9375,1.125,0.9688,1.0625,0.9688,1.125,0.9688,1.125,0.9688,1.0625,1.0,1.0625,0.9688,1.125,1.0,1.0625,1.0,1.125,0.0,1.0,0.0312,1.0625,0.0,1.0625,0.0312,1.0,0.0625,1.0625,0.0312,1.0625,0.0625,1.0,0.0938,1.0625,0.0625,1.0625,0.0938,1.0,0.125,1.0625,0.0938,1.0625,0.125,1.0,0.1562,1.0625,0.125,1.0625,0.1562,1.0,0.1875,1.0625,0.1562,1.0625,0.1875,1.0,0.2187,1.0625,0.1875,1.0625,0.2187,1.0,0.25,1.0625,0.2187,1.0625,0.25,1.0,0.2812,1.0625,0.25,1.0625,0.2812,1.0,0.3125,1.0625,0.2812,1.0625,0.3125,1.0,0.3437,1.0625,0.3125,1.0625,0.3437,1.0,0.375,1.0625,0.3437,1.0625,0.375,1.0,0.4062,1.0625,0.375,1.0625,0.4062,1.0,0.4375,1.0625,0.4062,1.0625,0.4375,1.0,0.4688,1.0625,0.4375,1.0625,0.4688,1.0,0.5,1.0625,0.4688,1.0625,0.5,1.0,0.5313,1.0625,0.5,1.0625,0.5313,1.0,0.5625,1.0625,0.5313,1.0625,0.5625,1.0,0.5938,1.0625,0.5625,1.0625,0.5938,1.0,0.625,1.0625,0.5938,1.0625,0.625,1.0,0.6563,1.0625,0.625,1.0625,0.6563,1.0,0.6875,1.0625,0.6563,1.0625,0.6875,1.0,0.7188,1.0625,0.6875,1.0625,0.7188,1.0,0.75,1.0625,0.7188,1.0625,0.75,1.0,0.7813,1.0625,0.75,1.0625,0.7813,1.0,0.8125,1.0625,0.7813,1.0625,0.8125,1.0,0.8438,1.0625,0.8125,1.0625,0.8438,1.0,0.875,1.0625,0.8438,1.0625,0.875,1.0,0.9063,1.0625,0.875,1.0625,0.9063,1.0,0.9375,1.0625,0.9063,1.0625,0.9375,1.0,0.9688,1.0625,0.9375,1.0625,0.9688,1.0,1.0,1.0625,0.9688,1.0625],"uvs2":null,"colors":null,"hasVertexAlpha":false,"matricesIndices":null,"matricesWeights":null,"matricesIndicesExtra":null,"matricesWeightsExtra":null,"indices":[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,1984,1985,1986,1987,1988,1989,1990,1991,1992,1993,1994,1995,1996,1997,1998,1999,2000,2001,2002,2003,2004,2005,2006,2007,2008,2009,2010,2011,2012,2013,2014,2015,2016,2017,2018,2019,2020,2021,2022,2023,2024,2025,2026,2027,2028,2029,2030,2031,2032,2033,2034,2035,2036,2037,2038,2039,2040,2041,2042,2043,2044,2045,2046,2047,2048,2049,2050,2051,2052,2053,2054,2055,2056,2057,2058,2059,2060,2061,2062,2063,2064,2065,2066,2067,2068,2069,2070,2071,2072,2073,2074,2075,2076,2077,2078,2079,2080,2081,2082,2083,2084,2085,2086,2087,2088,2089,2090,2091,2092,2093,2094,2095,2096,2097,2098,2099,2100,2101,2102,2103,2104,2105,2106,2107,2108,2109,2110,2111,2112,2113,2114,2115,2116,2117,2118,2119,2120,2121,2122,2123,2124,2125,2126,2127,2128,2129,2130,2131,2132,2133,2134,2135,2136,2137,2138,2139,2140,2141,2142,2143,2144,2145,2146,2147,2148,2149,2150,2151,2152,2153,2154,2155,2156,2157,2158,2159,2160,2161,2162,2163,2164,2165,2166,2167,2168,2169,2170,2171,2172,2173,2174,2175,2176,2177,2178,2179,2180,2181,2182,2183,2184,2185,2186,2187,2188,2189,2190,2191,2192,2193,2194,2195,2196,2197,2198,2199,2200,2201,2202,2203,2204,2205,2206,2207,2208,2209,2210,2211,2212,2213,2214,2215,2216,2217,2218,2219,2220,2221,2222,2223,2224,2225,2226,2227,2228,2229,2230,2231,2232,2233,2234,2235,2236,2237,2238,2239,2240,2241,2242,2243,2244,2245,2246,2247,2248,2249,2250,2251,2252,2253,2254,2255,2256,2257,2258,2259,2260,2261,2262,2263,2264,2265,2266,2267,2268,2269,2270,2271,2272,2273,2274,2275,2276,2277,2278,2279,2280,2281,2282,2283,2284,2285,2286,2287,2288,2289,2290,2291,2292,2293,2294,2295,2296,2297,2298,2299,2300,2301,2302,2303,2304,2305,2306,2307,2308,2309,2310,2311,2312,2313,2314,2315,2316,2317,2318,2319,2320,2321,2322,2323,2324,2325,2326,2327,2328,2329,2330,2331,2332,2333,2334,2335,2336,2337,2338,2339,2340,2341,2342,2343,2344,2345,2346,2347,2348,2349,2350,2351,2352,2353,2354,2355,2356,2357,2358,2359,2360,2361,2362,2363,2364,2365,2366,2367,2368,2369,2370,2371,2372,2373,2374,2375,2376,2377,2378,2379,2380,2381,2382,2383,2384,2385,2386,2387,2388,2389,2390,2391,2392,2393,2394,2395,2396,2397,2398,2399,2400,2401,2402,2403,2404,2405,2406,2407,2408,2409,2410,2411,2412,2413,2414,2415,2416,2417,2418,2419,2420,2421,2422,2423,2424,2425,2426,2427,2428,2429,2430,2431,2432,2433,2434,2435,2436,2437,2438,2439,2440,2441,2442,2443,2444,2445,2446,2447,2448,2449,2450,2451,2452,2453,2454,2455,2456,2457,2458,2459,2460,2461,2462,2463,2464,2465,2466,2467,2468,2469,2470,2471,2472,2473,2474,2475,2476,2477,2478,2479,2480,2481,2482,2483,2484,2485,2486,2487,2488,2489,2490,2491,2492,2493,2494,2495,2496,2497,2498,2499,2500,2501,2502,2503,2504,2505,2506,2507,2508,2509,2510,2511,2512,2513,2514,2515,2516,2517,2518,2519,2520,2521,2522,2523,2524,2525,2526,2527,2528,2529,2530,2531,2532,2533,2534,2535,2536,2537,2538,2539,2540,2541,2542,2543,2544,2545,2546,2547,2548,2549,2550,2551,2552,2553,2554,2555,2556,2557,2558,2559,2560,2561,2562,2563,2564,2565,2566,2567,2568,2569,2570,2571,2572,2573,2574,2575,2576,2577,2578,2579,2580,2581,2582,2583,2584,2585,2586,2587,2588,2589,2590,2591,2592,2593,2594,2595,2596,2597,2598,2599,2600,2601,2602,2603,2604,2605,2606,2607,2608,2609,2610,2611,2612,2613,2614,2615,2616,2617,2618,2619,2620,2621,2622,2623,2624,2625,2626,2627,2628,2629,2630,2631,2632,2633,2634,2635,2636,2637,2638,2639,2640,2641,2642,2643,2644,2645,2646,2647,2648,2649,2650,2651,2652,2653,2654,2655,2656,2657,2658,2659,2660,2661,2662,2663,2664,2665,2666,2667,2668,2669,2670,2671,2672,2673,2674,2675,2676,2677,2678,2679,2680,2681,2682,2683,2684,2685,2686,2687,2688,2689,2690,2691,2692,2693,2694,2695,2696,2697,2698,2699,2700,2701,2702,2703,2704,2705,2706,2707,2708,2709,2710,2711,2712,2713,2714,2715,2716,2717,2718,2719,2720,2721,2722,2723,2724,2725,2726,2727,2728,2729,2730,2731,2732,2733,2734,2735,2736,2737,2738,2739,2740,2741,2742,2743,2744,2745,2746,2747,2748,2749,2750,2751,2752,2753,2754,2755,2756,2757,2758,2759,2760,2761,2762,2763,2764,2765,2766,2767,2768,2769,2770,2771,2772,2773,2774,2775,2776,2777,2778,2779,2780,2781,2782,2783,2784,2785,2786,2787,2788,2789,2790,2791,2792,2793,2794,2795,2796,2797,2798,2799,2800,2801,2802,2803,2804,2805,2806,2807,2808,2809,2810,2811,2812,2813,2814,2815,2816,2817,2818,2819,2820,2821,2822,2823,2824,2825,2826,2827,2828,2829,2830,2831,2832,2833,2834,2835,2836,2837,2838,2839,2840,2841,2842,2843,2844,2845,2846,2847,2848,2849,2850,2851,2852,2853,2854,2855,2856,2857,2858,2859,2860,2861,2862,2863,2864,2865,2866,2867,2868,2869,2870,2871,2872,2873,2874,2875,2876,2877,2878,2879],"receiveShadows":true,"infiniteDistance":false,"billboardMode":0,"visibility":1.0,"subMeshes":[{"materialIndex":0,"verticesStart":0,"verticesCount":2880,"indexStart":0,"indexCount":2880}],"instances":null,"skeletonId":-1,"numBoneInfluencers":4,"applyFog":true,"lodMeshIds":null,"lodDistances":null,"lodCoverages":null,"rotation":null,"scaling":[1.0,1.0,1.0],"rotationQuaternion":[0.0,0.7071,0.0,0.7071],"actions":null,"checkCollisions":false,"pickable":false,"showBoundingBox":false,"showSubMeshesBoundingBox":false,"alphaIndex":1000,"physicsImpostor":0,"physicsMass":0.0,"physicsFriction":0.0,"physicsRestitution":0.0,"name":"StandardMesh","id":"113f2dbc-dce1-4faa-be71-35277504433b","parentId":null,"position":[0.0,0.0,0.0],"animations":[],"autoAnimate":true,"autoAnimateFrom":0,"autoAnimateTo":100,"autoAnimateLoop":true,"metadata":null},{"materialId":"e8d366dc-9a25-4d46-80f2-60a95ec88505","isEnabled":true,"isVisible":true,"positions":[0.0,1.0,0.0,0.0,0.9808,0.1951,-0.0381,0.9808,0.1913,0.0,1.0,0.0,-0.0381,0.9808,0.1913,-0.0747,0.9808,0.1802,0.0,1.0,0.0,-0.0747,0.9808,0.1802,-0.1084,0.9808,0.1622,0.0,1.0,0.0,-0.1084,0.9808,0.1622,-0.1379,0.9808,0.1379,0.0,1.0,0.0,-0.1379,0.9808,0.1379,-0.1622,0.9808,0.1084,0.0,1.0,0.0,-0.1622,0.9808,0.1084,-0.1802,0.9808,0.0747,0.0,1.0,0.0,-0.1802,0.9808,0.0747,-0.1913,0.9808,0.0381,0.0,1.0,0.0,-0.1913,0.9808,0.0381,-0.1951,0.9808,0.0,0.0,1.0,0.0,-0.1951,0.9808,0.0,-0.1913,0.9808,-0.0381,0.0,1.0,0.0,-0.1913,0.9808,-0.0381,-0.1802,0.9808,-0.0747,0.0,1.0,0.0,-0.1802,0.9808,-0.0747,-0.1622,0.9808,-0.1084,0.0,1.0,0.0,-0.1622,0.9808,-0.1084,-0.1379,0.9808,-0.1379,0.0,1.0,0.0,-0.1379,0.9808,-0.1379,-0.1084,0.9808,-0.1622,0.0,1.0,0.0,-0.1084,0.9808,-0.1622,-0.0747,0.9808,-0.1802,0.0,1.0,0.0,-0.0747,0.9808,-0.1802,-0.0381,0.9808,-0.1913,0.0,1.0,0.0,-0.0381,0.9808,-0.1913,0.0,0.9808,-0.1951,0.0,1.0,0.0,0.0,0.9808,-0.1951,0.0381,0.9808,-0.1913,0.0,1.0,0.0,0.0381,0.9808,-0.1913,0.0747,0.9808,-0.1802,0.0,1.0,0.0,0.0747,0.9808,-0.1802,0.1084,0.9808,-0.1622,0.0,1.0,0.0,0.1084,0.9808,-0.1622,0.1379,0.9808,-0.1379,0.0,1.0,0.0,0.1379,0.9808,-0.1379,0.1622,0.9808,-0.1084,0.0,1.0,0.0,0.1622,0.9808,-0.1084,0.1802,0.9808,-0.0747,0.0,1.0,0.0,0.1802,0.9808,-0.0747,0.1913,0.9808,-0.0381,0.0,1.0,0.0,0.1913,0.9808,-0.0381,0.1951,0.9808,0.0,0.0,1.0,0.0,0.1951,0.9808,0.0,0.1913,0.9808,0.0381,0.0,1.0,0.0,0.1913,0.9808,0.0381,0.1802,0.9808,0.0747,0.0,1.0,0.0,0.1802,0.9808,0.0747,0.1622,0.9808,0.1084,0.0,1.0,0.0,0.1622,0.9808,0.1084,0.1379,0.9808,0.1379,0.0,1.0,0.0,0.1379,0.9808,0.1379,0.1084,0.9808,0.1622,0.0,1.0,0.0,0.1084,0.9808,0.1622,0.0747,0.9808,0.1802,0.0,1.0,0.0,0.0747,0.9808,0.1802,0.0381,0.9808,0.1913,0.0,1.0,0.0,0.0381,0.9808,0.1913,0.0,0.9808,0.1951,0.0,0.9808,0.1951,0.0,0.9239,0.3827,-0.0747,0.9239,0.3753,0.0,0.9808,0.1951,-0.0747,0.9239,0.3753,-0.0381,0.9808,0.1913,-0.0381,0.9808,0.1913,-0.0747,0.9239,0.3753,-0.1464,0.9239,0.3536,-0.0381,0.9808,0.1913,-0.1464,0.9239,0.3536,-0.0747,0.9808,0.1802,-0.0747,0.9808,0.1802,-0.1464,0.9239,0.3536,-0.2126,0.9239,0.3182,-0.0747,0.9808,0.1802,-0.2126,0.9239,0.3182,-0.1084,0.9808,0.1622,-0.1084,0.9808,0.1622,-0.2126,0.9239,0.3182,-0.2706,0.9239,0.2706,-0.1084,0.9808,0.1622,-0.2706,0.9239,0.2706,-0.1379,0.9808,0.1379,-0.1379,0.9808,0.1379,-0.2706,0.9239,0.2706,-0.3182,0.9239,0.2126,-0.1379,0.9808,0.1379,-0.3182,0.9239,0.2126,-0.1622,0.9808,0.1084,-0.1622,0.9808,0.1084,-0.3182,0.9239,0.2126,-0.3536,0.9239,0.1464,-0.1622,0.9808,0.1084,-0.3536,0.9239,0.1464,-0.1802,0.9808,0.0747,-0.1802,0.9808,0.0747,-0.3536,0.9239,0.1464,-0.3753,0.9239,0.0747,-0.1802,0.9808,0.0747,-0.3753,0.9239,0.0747,-0.1913,0.9808,0.0381,-0.1913,0.9808,0.0381,-0.3753,0.9239,0.0747,-0.3827,0.9239,0.0,-0.1913,0.9808,0.0381,-0.3827,0.9239,0.0,-0.1951,0.9808,0.0,-0.1951,0.9808,0.0,-0.3827,0.9239,0.0,-0.3753,0.9239,-0.0747,-0.1951,0.9808,0.0,-0.3753,0.9239,-0.0747,-0.1913,0.9808,-0.0381,-0.1913,0.9808,-0.0381,-0.3753,0.9239,-0.0747,-0.3536,0.9239,-0.1464,-0.1913,0.9808,-0.0381,-0.3536,0.9239,-0.1464,-0.1802,0.9808,-0.0747,-0.1802,0.9808,-0.0747,-0.3536,0.9239,-0.1464,-0.3182,0.9239,-0.2126,-0.1802,0.9808,-0.0747,-0.3182,0.9239,-0.2126,-0.1622,0.9808,-0.1084,-0.1622,0.9808,-0.1084,-0.3182,0.9239,-0.2126,-0.2706,0.9239,-0.2706,-0.1622,0.9808,-0.1084,-0.2706,0.9239,-0.2706,-0.1379,0.9808,-0.1379,-0.1379,0.9808,-0.1379,-0.2706,0.9239,-0.2706,-0.2126,0.9239,-0.3182,-0.1379,0.9808,-0.1379,-0.2126,0.9239,-0.3182,-0.1084,0.9808,-0.1622,-0.1084,0.9808,-0.1622,-0.2126,0.9239,-0.3182,-0.1464,0.9239,-0.3536,-0.1084,0.9808,-0.1622,-0.1464,0.9239,-0.3536,-0.0747,0.9808,-0.1802,-0.0747,0.9808,-0.1802,-0.1464,0.9239,-0.3536,-0.0747,0.9239,-0.3753,-0.0747,0.9808,-0.1802,-0.0747,0.9239,-0.3753,-0.0381,0.9808,-0.1913,-0.0381,0.9808,-0.1913,-0.0747,0.9239,-0.3753,0.0,0.9239,-0.3827,-0.0381,0.9808,-0.1913,0.0,0.9239,-0.3827,0.0,0.9808,-0.1951,0.0,0.9808,-0.1951,0.0,0.9239,-0.3827,0.0747,0.9239,-0.3753,0.0,0.9808,-0.1951,0.0747,0.9239,-0.3753,0.0381,0.9808,-0.1913,0.0381,0.9808,-0.1913,0.0747,0.9239,-0.3753,0.1464,0.9239,-0.3536,0.0381,0.9808,-0.1913,0.1464,0.9239,-0.3536,0.0747,0.9808,-0.1802,0.0747,0.9808,-0.1802,0.1464,0.9239,-0.3536,0.2126,0.9239,-0.3182,0.0747,0.9808,-0.1802,0.2126,0.9239,-0.3182,0.1084,0.9808,-0.1622,0.1084,0.9808,-0.1622,0.2126,0.9239,-0.3182,0.2706,0.9239,-0.2706,0.1084,0.9808,-0.1622,0.2706,0.9239,-0.2706,0.1379,0.9808,-0.1379,0.1379,0.9808,-0.1379,0.2706,0.9239,-0.2706,0.3182,0.9239,-0.2126,0.1379,0.9808,-0.1379,0.3182,0.9239,-0.2126,0.1622,0.9808,-0.1084,0.1622,0.9808,-0.1084,0.3182,0.9239,-0.2126,0.3536,0.9239,-0.1464,0.1622,0.9808,-0.1084,0.3536,0.9239,-0.1464,0.1802,0.9808,-0.0747,0.1802,0.9808,-0.0747,0.3536,0.9239,-0.1464,0.3753,0.9239,-0.0747,0.1802,0.9808,-0.0747,0.3753,0.9239,-0.0747,0.1913,0.9808,-0.0381,0.1913,0.9808,-0.0381,0.3753,0.9239,-0.0747,0.3827,0.9239,0.0,0.1913,0.9808,-0.0381,0.3827,0.9239,0.0,0.1951,0.9808,0.0,0.1951,0.9808,0.0,0.3827,0.9239,0.0,0.3753,0.9239,0.0747,0.1951,0.9808,0.0,0.3753,0.9239,0.0747,0.1913,0.9808,0.0381,0.1913,0.9808,0.0381,0.3753,0.9239,0.0747,0.3536,0.9239,0.1464,0.1913,0.9808,0.0381,0.3536,0.9239,0.1464,0.1802,0.9808,0.0747,0.1802,0.9808,0.0747,0.3536,0.9239,0.1464,0.3182,0.9239,0.2126,0.1802,0.9808,0.0747,0.3182,0.9239,0.2126,0.1622,0.9808,0.1084,0.1622,0.9808,0.1084,0.3182,0.9239,0.2126,0.2706,0.9239,0.2706,0.1622,0.9808,0.1084,0.2706,0.9239,0.2706,0.1379,0.9808,0.1379,0.1379,0.9808,0.1379,0.2706,0.9239,0.2706,0.2126,0.9239,0.3182,0.1379,0.9808,0.1379,0.2126,0.9239,0.3182,0.1084,0.9808,0.1622,0.1084,0.9808,0.1622,0.2126,0.9239,0.3182,0.1464,0.9239,0.3536,0.1084,0.9808,0.1622,0.1464,0.9239,0.3536,0.0747,0.9808,0.1802,0.0747,0.9808,0.1802,0.1464,0.9239,0.3536,0.0747,0.9239,0.3753,0.0747,0.9808,0.1802,0.0747,0.9239,0.3753,0.0381,0.9808,0.1913,0.0381,0.9808,0.1913,0.0747,0.9239,0.3753,0.0,0.9239,0.3827,0.0381,0.9808,0.1913,0.0,0.9239,0.3827,0.0,0.9808,0.1951,0.0,0.9239,0.3827,0.0,0.8315,0.5556,-0.1084,0.8315,0.5449,0.0,0.9239,0.3827,-0.1084,0.8315,0.5449,-0.0747,0.9239,0.3753,-0.0747,0.9239,0.3753,-0.1084,0.8315,0.5449,-0.2126,0.8315,0.5133,-0.0747,0.9239,0.3753,-0.2126,0.8315,0.5133,-0.1464,0.9239,0.3536,-0.1464,0.9239,0.3536,-0.2126,0.8315,0.5133,-0.3087,0.8315,0.4619,-0.1464,0.9239,0.3536,-0.3087,0.8315,0.4619,-0.2126,0.9239,0.3182,-0.2126,0.9239,0.3182,-0.3087,0.8315,0.4619,-0.3928,0.8315,0.3928,-0.2126,0.9239,0.3182,-0.3928,0.8315,0.3928,-0.2706,0.9239,0.2706,-0.2706,0.9239,0.2706,-0.3928,0.8315,0.3928,-0.4619,0.8315,0.3087,-0.2706,0.9239,0.2706,-0.4619,0.8315,0.3087,-0.3182,0.9239,0.2126,-0.3182,0.9239,0.2126,-0.4619,0.8315,0.3087,-0.5133,0.8315,0.2126,-0.3182,0.9239,0.2126,-0.5133,0.8315,0.2126,-0.3536,0.9239,0.1464,-0.3536,0.9239,0.1464,-0.5133,0.8315,0.2126,-0.5449,0.8315,0.1084,-0.3536,0.9239,0.1464,-0.5449,0.8315,0.1084,-0.3753,0.9239,0.0747,-0.3753,0.9239,0.0747,-0.5449,0.8315,0.1084,-0.5556,0.8315,0.0,-0.3753,0.9239,0.0747,-0.5556,0.8315,0.0,-0.3827,0.9239,0.0,-0.3827,0.9239,0.0,-0.5556,0.8315,0.0,-0.5449,0.8315,-0.1084,-0.3827,0.9239,0.0,-0.5449,0.8315,-0.1084,-0.3753,0.9239,-0.0747,-0.3753,0.9239,-0.0747,-0.5449,0.8315,-0.1084,-0.5133,0.8315,-0.2126,-0.3753,0.9239,-0.0747,-0.5133,0.8315,-0.2126,-0.3536,0.9239,-0.1464,-0.3536,0.9239,-0.1464,-0.5133,0.8315,-0.2126,-0.4619,0.8315,-0.3087,-0.3536,0.9239,-0.1464,-0.4619,0.8315,-0.3087,-0.3182,0.9239,-0.2126,-0.3182,0.9239,-0.2126,-0.4619,0.8315,-0.3087,-0.3928,0.8315,-0.3928,-0.3182,0.9239,-0.2126,-0.3928,0.8315,-0.3928,-0.2706,0.9239,-0.2706,-0.2706,0.9239,-0.2706,-0.3928,0.8315,-0.3928,-0.3087,0.8315,-0.4619,-0.2706,0.9239,-0.2706,-0.3087,0.8315,-0.4619,-0.2126,0.9239,-0.3182,-0.2126,0.9239,-0.3182,-0.3087,0.8315,-0.4619,-0.2126,0.8315,-0.5133,-0.2126,0.9239,-0.3182,-0.2126,0.8315,-0.5133,-0.1464,0.9239,-0.3536,-0.1464,0.9239,-0.3536,-0.2126,0.8315,-0.5133,-0.1084,0.8315,-0.5449,-0.1464,0.9239,-0.3536,-0.1084,0.8315,-0.5449,-0.0747,0.9239,-0.3753,-0.0747,0.9239,-0.3753,-0.1084,0.8315,-0.5449,0.0,0.8315,-0.5556,-0.0747,0.9239,-0.3753,0.0,0.8315,-0.5556,0.0,0.9239,-0.3827,0.0,0.9239,-0.3827,0.0,0.8315,-0.5556,0.1084,0.8315,-0.5449,0.0,0.9239,-0.3827,0.1084,0.8315,-0.5449,0.0747,0.9239,-0.3753,0.0747,0.9239,-0.3753,0.1084,0.8315,-0.5449,0.2126,0.8315,-0.5133,0.0747,0.9239,-0.3753,0.2126,0.8315,-0.5133,0.1464,0.9239,-0.3536,0.1464,0.9239,-0.3536,0.2126,0.8315,-0.5133,0.3087,0.8315,-0.4619,0.1464,0.9239,-0.3536,0.3087,0.8315,-0.4619,0.2126,0.9239,-0.3182,0.2126,0.9239,-0.3182,0.3087,0.8315,-0.4619,0.3928,0.8315,-0.3928,0.2126,0.9239,-0.3182,0.3928,0.8315,-0.3928,0.2706,0.9239,-0.2706,0.2706,0.9239,-0.2706,0.3928,0.8315,-0.3928,0.4619,0.8315,-0.3087,0.2706,0.9239,-0.2706,0.4619,0.8315,-0.3087,0.3182,0.9239,-0.2126,0.3182,0.9239,-0.2126,0.4619,0.8315,-0.3087,0.5133,0.8315,-0.2126,0.3182,0.9239,-0.2126,0.5133,0.8315,-0.2126,0.3536,0.9239,-0.1464,0.3536,0.9239,-0.1464,0.5133,0.8315,-0.2126,0.5449,0.8315,-0.1084,0.3536,0.9239,-0.1464,0.5449,0.8315,-0.1084,0.3753,0.9239,-0.0747,0.3753,0.9239,-0.0747,0.5449,0.8315,-0.1084,0.5556,0.8315,0.0,0.3753,0.9239,-0.0747,0.5556,0.8315,0.0,0.3827,0.9239,0.0,0.3827,0.9239,0.0,0.5556,0.8315,0.0,0.5449,0.8315,0.1084,0.3827,0.9239,0.0,0.5449,0.8315,0.1084,0.3753,0.9239,0.0747,0.3753,0.9239,0.0747,0.5449,0.8315,0.1084,0.5133,0.8315,0.2126,0.3753,0.9239,0.0747,0.5133,0.8315,0.2126,0.3536,0.9239,0.1464,0.3536,0.9239,0.1464,0.5133,0.8315,0.2126,0.4619,0.8315,0.3087,0.3536,0.9239,0.1464,0.4619,0.8315,0.3087,0.3182,0.9239,0.2126,0.3182,0.9239,0.2126,0.4619,0.8315,0.3087,0.3928,0.8315,0.3928,0.3182,0.9239,0.2126,0.3928,0.8315,0.3928,0.2706,0.9239,0.2706,0.2706,0.9239,0.2706,0.3928,0.8315,0.3928,0.3087,0.8315,0.4619,0.2706,0.9239,0.2706,0.3087,0.8315,0.4619,0.2126,0.9239,0.3182,0.2126,0.9239,0.3182,0.3087,0.8315,0.4619,0.2126,0.8315,0.5133,0.2126,0.9239,0.3182,0.2126,0.8315,0.5133,0.1464,0.9239,0.3536,0.1464,0.9239,0.3536,0.2126,0.8315,0.5133,0.1084,0.8315,0.5449,0.1464,0.9239,0.3536,0.1084,0.8315,0.5449,0.0747,0.9239,0.3753,0.0747,0.9239,0.3753,0.1084,0.8315,0.5449,0.0,0.8315,0.5556,0.0747,0.9239,0.3753,0.0,0.8315,0.5556,0.0,0.9239,0.3827,0.0,0.8315,0.5556,0.0,0.7071,0.7071,-0.1379,0.7071,0.6935,0.0,0.8315,0.5556,-0.1379,0.7071,0.6935,-0.1084,0.8315,0.5449,-0.1084,0.8315,0.5449,-0.1379,0.7071,0.6935,-0.2706,0.7071,0.6533,-0.1084,0.8315,0.5449,-0.2706,0.7071,0.6533,-0.2126,0.8315,0.5133,-0.2126,0.8315,0.5133,-0.2706,0.7071,0.6533,-0.3928,0.7071,0.5879,-0.2126,0.8315,0.5133,-0.3928,0.7071,0.5879,-0.3087,0.8315,0.4619,-0.3087,0.8315,0.4619,-0.3928,0.7071,0.5879,-0.5,0.7071,0.5,-0.3087,0.8315,0.4619,-0.5,0.7071,0.5,-0.3928,0.8315,0.3928,-0.3928,0.8315,0.3928,-0.5,0.7071,0.5,-0.5879,0.7071,0.3928,-0.3928,0.8315,0.3928,-0.5879,0.7071,0.3928,-0.4619,0.8315,0.3087,-0.4619,0.8315,0.3087,-0.5879,0.7071,0.3928,-0.6533,0.7071,0.2706,-0.4619,0.8315,0.3087,-0.6533,0.7071,0.2706,-0.5133,0.8315,0.2126,-0.5133,0.8315,0.2126,-0.6533,0.7071,0.2706,-0.6935,0.7071,0.1379,-0.5133,0.8315,0.2126,-0.6935,0.7071,0.1379,-0.5449,0.8315,0.1084,-0.5449,0.8315,0.1084,-0.6935,0.7071,0.1379,-0.7071,0.7071,0.0,-0.5449,0.8315,0.1084,-0.7071,0.7071,0.0,-0.5556,0.8315,0.0,-0.5556,0.8315,0.0,-0.7071,0.7071,0.0,-0.6935,0.7071,-0.1379,-0.5556,0.8315,0.0,-0.6935,0.7071,-0.1379,-0.5449,0.8315,-0.1084,-0.5449,0.8315,-0.1084,-0.6935,0.7071,-0.1379,-0.6533,0.7071,-0.2706,-0.5449,0.8315,-0.1084,-0.6533,0.7071,-0.2706,-0.5133,0.8315,-0.2126,-0.5133,0.8315,-0.2126,-0.6533,0.7071,-0.2706,-0.5879,0.7071,-0.3928,-0.5133,0.8315,-0.2126,-0.5879,0.7071,-0.3928,-0.4619,0.8315,-0.3087,-0.4619,0.8315,-0.3087,-0.5879,0.7071,-0.3928,-0.5,0.7071,-0.5,-0.4619,0.8315,-0.3087,-0.5,0.7071,-0.5,-0.3928,0.8315,-0.3928,-0.3928,0.8315,-0.3928,-0.5,0.7071,-0.5,-0.3928,0.7071,-0.5879,-0.3928,0.8315,-0.3928,-0.3928,0.7071,-0.5879,-0.3087,0.8315,-0.4619,-0.3087,0.8315,-0.4619,-0.3928,0.7071,-0.5879,-0.2706,0.7071,-0.6533,-0.3087,0.8315,-0.4619,-0.2706,0.7071,-0.6533,-0.2126,0.8315,-0.5133,-0.2126,0.8315,-0.5133,-0.2706,0.7071,-0.6533,-0.1379,0.7071,-0.6935,-0.2126,0.8315,-0.5133,-0.1379,0.7071,-0.6935,-0.1084,0.8315,-0.5449,-0.1084,0.8315,-0.5449,-0.1379,0.7071,-0.6935,0.0,0.7071,-0.7071,-0.1084,0.8315,-0.5449,0.0,0.7071,-0.7071,0.0,0.8315,-0.5556,0.0,0.8315,-0.5556,0.0,0.7071,-0.7071,0.138,0.7071,-0.6935,0.0,0.8315,-0.5556,0.138,0.7071,-0.6935,0.1084,0.8315,-0.5449,0.1084,0.8315,-0.5449,0.138,0.7071,-0.6935,0.2706,0.7071,-0.6533,0.1084,0.8315,-0.5449,0.2706,0.7071,-0.6533,0.2126,0.8315,-0.5133,0.2126,0.8315,-0.5133,0.2706,0.7071,-0.6533,0.3928,0.7071,-0.5879,0.2126,0.8315,-0.5133,0.3928,0.7071,-0.5879,0.3087,0.8315,-0.4619,0.3087,0.8315,-0.4619,0.3928,0.7071,-0.5879,0.5,0.7071,-0.5,0.3087,0.8315,-0.4619,0.5,0.7071,-0.5,0.3928,0.8315,-0.3928,0.3928,0.8315,-0.3928,0.5,0.7071,-0.5,0.5879,0.7071,-0.3928,0.3928,0.8315,-0.3928,0.5879,0.7071,-0.3928,0.4619,0.8315,-0.3087,0.4619,0.8315,-0.3087,0.5879,0.7071,-0.3928,0.6533,0.7071,-0.2706,0.4619,0.8315,-0.3087,0.6533,0.7071,-0.2706,0.5133,0.8315,-0.2126,0.5133,0.8315,-0.2126,0.6533,0.7071,-0.2706,0.6935,0.7071,-0.1379,0.5133,0.8315,-0.2126,0.6935,0.7071,-0.1379,0.5449,0.8315,-0.1084,0.5449,0.8315,-0.1084,0.6935,0.7071,-0.1379,0.7071,0.7071,0.0,0.5449,0.8315,-0.1084,0.7071,0.7071,0.0,0.5556,0.8315,0.0,0.5556,0.8315,0.0,0.7071,0.7071,0.0,0.6935,0.7071,0.138,0.5556,0.8315,0.0,0.6935,0.7071,0.138,0.5449,0.8315,0.1084,0.5449,0.8315,0.1084,0.6935,0.7071,0.138,0.6533,0.7071,0.2706,0.5449,0.8315,0.1084,0.6533,0.7071,0.2706,0.5133,0.8315,0.2126,0.5133,0.8315,0.2126,0.6533,0.7071,0.2706,0.5879,0.7071,0.3928,0.5133,0.8315,0.2126,0.5879,0.7071,0.3928,0.4619,0.8315,0.3087,0.4619,0.8315,0.3087,0.5879,0.7071,0.3928,0.5,0.7071,0.5,0.4619,0.8315,0.3087,0.5,0.7071,0.5,0.3928,0.8315,0.3928,0.3928,0.8315,0.3928,0.5,0.7071,0.5,0.3928,0.7071,0.5879,0.3928,0.8315,0.3928,0.3928,0.7071,0.5879,0.3087,0.8315,0.4619,0.3087,0.8315,0.4619,0.3928,0.7071,0.5879,0.2706,0.7071,0.6533,0.3087,0.8315,0.4619,0.2706,0.7071,0.6533,0.2126,0.8315,0.5133,0.2126,0.8315,0.5133,0.2706,0.7071,0.6533,0.1379,0.7071,0.6935,0.2126,0.8315,0.5133,0.1379,0.7071,0.6935,0.1084,0.8315,0.5449,0.1084,0.8315,0.5449,0.1379,0.7071,0.6935,0.0,0.7071,0.7071,0.1084,0.8315,0.5449,0.0,0.7071,0.7071,0.0,0.8315,0.5556,0.0,0.7071,0.7071,0.0,0.5556,0.8315,-0.1622,0.5556,0.8155,0.0,0.7071,0.7071,-0.1622,0.5556,0.8155,-0.1379,0.7071,0.6935,-0.1379,0.7071,0.6935,-0.1622,0.5556,0.8155,-0.3182,0.5556,0.7682,-0.1379,0.7071,0.6935,-0.3182,0.5556,0.7682,-0.2706,0.7071,0.6533,-0.2706,0.7071,0.6533,-0.3182,0.5556,0.7682,-0.4619,0.5556,0.6913,-0.2706,0.7071,0.6533,-0.4619,0.5556,0.6913,-0.3928,0.7071,0.5879,-0.3928,0.7071,0.5879,-0.4619,0.5556,0.6913,-0.5879,0.5556,0.5879,-0.3928,0.7071,0.5879,-0.5879,0.5556,0.5879,-0.5,0.7071,0.5,-0.5,0.7071,0.5,-0.5879,0.5556,0.5879,-0.6913,0.5556,0.4619,-0.5,0.7071,0.5,-0.6913,0.5556,0.4619,-0.5879,0.7071,0.3928,-0.5879,0.7071,0.3928,-0.6913,0.5556,0.4619,-0.7682,0.5556,0.3182,-0.5879,0.7071,0.3928,-0.7682,0.5556,0.3182,-0.6533,0.7071,0.2706,-0.6533,0.7071,0.2706,-0.7682,0.5556,0.3182,-0.8155,0.5556,0.1622,-0.6533,0.7071,0.2706,-0.8155,0.5556,0.1622,-0.6935,0.7071,0.1379,-0.6935,0.7071,0.1379,-0.8155,0.5556,0.1622,-0.8315,0.5556,0.0,-0.6935,0.7071,0.1379,-0.8315,0.5556,0.0,-0.7071,0.7071,0.0,-0.7071,0.7071,0.0,-0.8315,0.5556,0.0,-0.8155,0.5556,-0.1622,-0.7071,0.7071,0.0,-0.8155,0.5556,-0.1622,-0.6935,0.7071,-0.1379,-0.6935,0.7071,-0.1379,-0.8155,0.5556,-0.1622,-0.7682,0.5556,-0.3182,-0.6935,0.7071,-0.1379,-0.7682,0.5556,-0.3182,-0.6533,0.7071,-0.2706,-0.6533,0.7071,-0.2706,-0.7682,0.5556,-0.3182,-0.6913,0.5556,-0.4619,-0.6533,0.7071,-0.2706,-0.6913,0.5556,-0.4619,-0.5879,0.7071,-0.3928,-0.5879,0.7071,-0.3928,-0.6913,0.5556,-0.4619,-0.5879,0.5556,-0.5879,-0.5879,0.7071,-0.3928,-0.5879,0.5556,-0.5879,-0.5,0.7071,-0.5,-0.5,0.7071,-0.5,-0.5879,0.5556,-0.5879,-0.4619,0.5556,-0.6913,-0.5,0.7071,-0.5,-0.4619,0.5556,-0.6913,-0.3928,0.7071,-0.5879,-0.3928,0.7071,-0.5879,-0.4619,0.5556,-0.6913,-0.3182,0.5556,-0.7682,-0.3928,0.7071,-0.5879,-0.3182,0.5556,-0.7682,-0.2706,0.7071,-0.6533,-0.2706,0.7071,-0.6533,-0.3182,0.5556,-0.7682,-0.1622,0.5556,-0.8155,-0.2706,0.7071,-0.6533,-0.1622,0.5556,-0.8155,-0.1379,0.7071,-0.6935,-0.1379,0.7071,-0.6935,-0.1622,0.5556,-0.8155,0.0,0.5556,-0.8315,-0.1379,0.7071,-0.6935,0.0,0.5556,-0.8315,0.0,0.7071,-0.7071,0.0,0.7071,-0.7071,0.0,0.5556,-0.8315,0.1622,0.5556,-0.8155,0.0,0.7071,-0.7071,0.1622,0.5556,-0.8155,0.138,0.7071,-0.6935,0.138,0.7071,-0.6935,0.1622,0.5556,-0.8155,0.3182,0.5556,-0.7682,0.138,0.7071,-0.6935,0.3182,0.5556,-0.7682,0.2706,0.7071,-0.6533,0.2706,0.7071,-0.6533,0.3182,0.5556,-0.7682,0.4619,0.5556,-0.6913,0.2706,0.7071,-0.6533,0.4619,0.5556,-0.6913,0.3928,0.7071,-0.5879,0.3928,0.7071,-0.5879,0.4619,0.5556,-0.6913,0.5879,0.5556,-0.5879,0.3928,0.7071,-0.5879,0.5879,0.5556,-0.5879,0.5,0.7071,-0.5,0.5,0.7071,-0.5,0.5879,0.5556,-0.5879,0.6913,0.5556,-0.4619,0.5,0.7071,-0.5,0.6913,0.5556,-0.4619,0.5879,0.7071,-0.3928,0.5879,0.7071,-0.3928,0.6913,0.5556,-0.4619,0.7682,0.5556,-0.3182,0.5879,0.7071,-0.3928,0.7682,0.5556,-0.3182,0.6533,0.7071,-0.2706,0.6533,0.7071,-0.2706,0.7682,0.5556,-0.3182,0.8155,0.5556,-0.1622,0.6533,0.7071,-0.2706,0.8155,0.5556,-0.1622,0.6935,0.7071,-0.1379,0.6935,0.7071,-0.1379,0.8155,0.5556,-0.1622,0.8315,0.5556,0.0,0.6935,0.7071,-0.1379,0.8315,0.5556,0.0,0.7071,0.7071,0.0,0.7071,0.7071,0.0,0.8315,0.5556,0.0,0.8155,0.5556,0.1622,0.7071,0.7071,0.0,0.8155,0.5556,0.1622,0.6935,0.7071,0.138,0.6935,0.7071,0.138,0.8155,0.5556,0.1622,0.7682,0.5556,0.3182,0.6935,0.7071,0.138,0.7682,0.5556,0.3182,0.6533,0.7071,0.2706,0.6533,0.7071,0.2706,0.7682,0.5556,0.3182,0.6913,0.5556,0.4619,0.6533,0.7071,0.2706,0.6913,0.5556,0.4619,0.5879,0.7071,0.3928,0.5879,0.7071,0.3928,0.6913,0.5556,0.4619,0.5879,0.5556,0.5879,0.5879,0.7071,0.3928,0.5879,0.5556,0.5879,0.5,0.7071,0.5,0.5,0.7071,0.5,0.5879,0.5556,0.5879,0.4619,0.5556,0.6913,0.5,0.7071,0.5,0.4619,0.5556,0.6913,0.3928,0.7071,0.5879,0.3928,0.7071,0.5879,0.4619,0.5556,0.6913,0.3182,0.5556,0.7682,0.3928,0.7071,0.5879,0.3182,0.5556,0.7682,0.2706,0.7071,0.6533,0.2706,0.7071,0.6533,0.3182,0.5556,0.7682,0.1622,0.5556,0.8155,0.2706,0.7071,0.6533,0.1622,0.5556,0.8155,0.1379,0.7071,0.6935,0.1379,0.7071,0.6935,0.1622,0.5556,0.8155,0.0,0.5556,0.8315,0.1379,0.7071,0.6935,0.0,0.5556,0.8315,0.0,0.7071,0.7071,0.0,0.5556,0.8315,0.0,0.3827,0.9239,-0.1802,0.3827,0.9061,0.0,0.5556,0.8315,-0.1802,0.3827,0.9061,-0.1622,0.5556,0.8155,-0.1622,0.5556,0.8155,-0.1802,0.3827,0.9061,-0.3536,0.3827,0.8536,-0.1622,0.5556,0.8155,-0.3536,0.3827,0.8536,-0.3182,0.5556,0.7682,-0.3182,0.5556,0.7682,-0.3536,0.3827,0.8536,-0.5133,0.3827,0.7682,-0.3182,0.5556,0.7682,-0.5133,0.3827,0.7682,-0.4619,0.5556,0.6913,-0.4619,0.5556,0.6913,-0.5133,0.3827,0.7682,-0.6533,0.3827,0.6533,-0.4619,0.5556,0.6913,-0.6533,0.3827,0.6533,-0.5879,0.5556,0.5879,-0.5879,0.5556,0.5879,-0.6533,0.3827,0.6533,-0.7682,0.3827,0.5133,-0.5879,0.5556,0.5879,-0.7682,0.3827,0.5133,-0.6913,0.5556,0.4619,-0.6913,0.5556,0.4619,-0.7682,0.3827,0.5133,-0.8536,0.3827,0.3536,-0.6913,0.5556,0.4619,-0.8536,0.3827,0.3536,-0.7682,0.5556,0.3182,-0.7682,0.5556,0.3182,-0.8536,0.3827,0.3536,-0.9061,0.3827,0.1802,-0.7682,0.5556,0.3182,-0.9061,0.3827,0.1802,-0.8155,0.5556,0.1622,-0.8155,0.5556,0.1622,-0.9061,0.3827,0.1802,-0.9239,0.3827,0.0,-0.8155,0.5556,0.1622,-0.9239,0.3827,0.0,-0.8315,0.5556,0.0,-0.8315,0.5556,0.0,-0.9239,0.3827,0.0,-0.9061,0.3827,-0.1802,-0.8315,0.5556,0.0,-0.9061,0.3827,-0.1802,-0.8155,0.5556,-0.1622,-0.8155,0.5556,-0.1622,-0.9061,0.3827,-0.1802,-0.8536,0.3827,-0.3536,-0.8155,0.5556,-0.1622,-0.8536,0.3827,-0.3536,-0.7682,0.5556,-0.3182,-0.7682,0.5556,-0.3182,-0.8536,0.3827,-0.3536,-0.7682,0.3827,-0.5133,-0.7682,0.5556,-0.3182,-0.7682,0.3827,-0.5133,-0.6913,0.5556,-0.4619,-0.6913,0.5556,-0.4619,-0.7682,0.3827,-0.5133,-0.6533,0.3827,-0.6533,-0.6913,0.5556,-0.4619,-0.6533,0.3827,-0.6533,-0.5879,0.5556,-0.5879,-0.5879,0.5556,-0.5879,-0.6533,0.3827,-0.6533,-0.5133,0.3827,-0.7682,-0.5879,0.5556,-0.5879,-0.5133,0.3827,-0.7682,-0.4619,0.5556,-0.6913,-0.4619,0.5556,-0.6913,-0.5133,0.3827,-0.7682,-0.3536,0.3827,-0.8536,-0.4619,0.5556,-0.6913,-0.3536,0.3827,-0.8536,-0.3182,0.5556,-0.7682,-0.3182,0.5556,-0.7682,-0.3536,0.3827,-0.8536,-0.1802,0.3827,-0.9061,-0.3182,0.5556,-0.7682,-0.1802,0.3827,-0.9061,-0.1622,0.5556,-0.8155,-0.1622,0.5556,-0.8155,-0.1802,0.3827,-0.9061,0.0,0.3827,-0.9239,-0.1622,0.5556,-0.8155,0.0,0.3827,-0.9239,0.0,0.5556,-0.8315,0.0,0.5556,-0.8315,0.0,0.3827,-0.9239,0.1802,0.3827,-0.9061,0.0,0.5556,-0.8315,0.1802,0.3827,-0.9061,0.1622,0.5556,-0.8155,0.1622,0.5556,-0.8155,0.1802,0.3827,-0.9061,0.3536,0.3827,-0.8536,0.1622,0.5556,-0.8155,0.3536,0.3827,-0.8536,0.3182,0.5556,-0.7682,0.3182,0.5556,-0.7682,0.3536,0.3827,-0.8536,0.5133,0.3827,-0.7682,0.3182,0.5556,-0.7682,0.5133,0.3827,-0.7682,0.4619,0.5556,-0.6913,0.4619,0.5556,-0.6913,0.5133,0.3827,-0.7682,0.6533,0.3827,-0.6533,0.4619,0.5556,-0.6913,0.6533,0.3827,-0.6533,0.5879,0.5556,-0.5879,0.5879,0.5556,-0.5879,0.6533,0.3827,-0.6533,0.7682,0.3827,-0.5133,0.5879,0.5556,-0.5879,0.7682,0.3827,-0.5133,0.6913,0.5556,-0.4619,0.6913,0.5556,-0.4619,0.7682,0.3827,-0.5133,0.8536,0.3827,-0.3536,0.6913,0.5556,-0.4619,0.8536,0.3827,-0.3536,0.7682,0.5556,-0.3182,0.7682,0.5556,-0.3182,0.8536,0.3827,-0.3536,0.9061,0.3827,-0.1802,0.7682,0.5556,-0.3182,0.9061,0.3827,-0.1802,0.8155,0.5556,-0.1622,0.8155,0.5556,-0.1622,0.9061,0.3827,-0.1802,0.9239,0.3827,0.0,0.8155,0.5556,-0.1622,0.9239,0.3827,0.0,0.8315,0.5556,0.0,0.8315,0.5556,0.0,0.9239,0.3827,0.0,0.9061,0.3827,0.1802,0.8315,0.5556,0.0,0.9061,0.3827,0.1802,0.8155,0.5556,0.1622,0.8155,0.5556,0.1622,0.9061,0.3827,0.1802,0.8536,0.3827,0.3536,0.8155,0.5556,0.1622,0.8536,0.3827,0.3536,0.7682,0.5556,0.3182,0.7682,0.5556,0.3182,0.8536,0.3827,0.3536,0.7682,0.3827,0.5133,0.7682,0.5556,0.3182,0.7682,0.3827,0.5133,0.6913,0.5556,0.4619,0.6913,0.5556,0.4619,0.7682,0.3827,0.5133,0.6533,0.3827,0.6533,0.6913,0.5556,0.4619,0.6533,0.3827,0.6533,0.5879,0.5556,0.5879,0.5879,0.5556,0.5879,0.6533,0.3827,0.6533,0.5133,0.3827,0.7682,0.5879,0.5556,0.5879,0.5133,0.3827,0.7682,0.4619,0.5556,0.6913,0.4619,0.5556,0.6913,0.5133,0.3827,0.7682,0.3536,0.3827,0.8536,0.4619,0.5556,0.6913,0.3536,0.3827,0.8536,0.3182,0.5556,0.7682,0.3182,0.5556,0.7682,0.3536,0.3827,0.8536,0.1802,0.3827,0.9061,0.3182,0.5556,0.7682,0.1802,0.3827,0.9061,0.1622,0.5556,0.8155,0.1622,0.5556,0.8155,0.1802,0.3827,0.9061,0.0,0.3827,0.9239,0.1622,0.5556,0.8155,0.0,0.3827,0.9239,0.0,0.5556,0.8315,0.0,0.3827,0.9239,0.0,0.1951,0.9808,-0.1913,0.1951,0.9619,0.0,0.3827,0.9239,-0.1913,0.1951,0.9619,-0.1802,0.3827,0.9061,-0.1802,0.3827,0.9061,-0.1913,0.1951,0.9619,-0.3753,0.1951,0.9061,-0.1802,0.3827,0.9061,-0.3753,0.1951,0.9061,-0.3536,0.3827,0.8536,-0.3536,0.3827,0.8536,-0.3753,0.1951,0.9061,-0.5449,0.1951,0.8155,-0.3536,0.3827,0.8536,-0.5449,0.1951,0.8155,-0.5133,0.3827,0.7682,-0.5133,0.3827,0.7682,-0.5449,0.1951,0.8155,-0.6935,0.1951,0.6935,-0.5133,0.3827,0.7682,-0.6935,0.1951,0.6935,-0.6533,0.3827,0.6533,-0.6533,0.3827,0.6533,-0.6935,0.1951,0.6935,-0.8155,0.1951,0.5449,-0.6533,0.3827,0.6533,-0.8155,0.1951,0.5449,-0.7682,0.3827,0.5133,-0.7682,0.3827,0.5133,-0.8155,0.1951,0.5449,-0.9061,0.1951,0.3753,-0.7682,0.3827,0.5133,-0.9061,0.1951,0.3753,-0.8536,0.3827,0.3536,-0.8536,0.3827,0.3536,-0.9061,0.1951,0.3753,-0.9619,0.1951,0.1913,-0.8536,0.3827,0.3536,-0.9619,0.1951,0.1913,-0.9061,0.3827,0.1802,-0.9061,0.3827,0.1802,-0.9619,0.1951,0.1913,-0.9808,0.1951,0.0,-0.9061,0.3827,0.1802,-0.9808,0.1951,0.0,-0.9239,0.3827,0.0,-0.9239,0.3827,0.0,-0.9808,0.1951,0.0,-0.9619,0.1951,-0.1913,-0.9239,0.3827,0.0,-0.9619,0.1951,-0.1913,-0.9061,0.3827,-0.1802,-0.9061,0.3827,-0.1802,-0.9619,0.1951,-0.1913,-0.9061,0.1951,-0.3753,-0.9061,0.3827,-0.1802,-0.9061,0.1951,-0.3753,-0.8536,0.3827,-0.3536,-0.8536,0.3827,-0.3536,-0.9061,0.1951,-0.3753,-0.8155,0.1951,-0.5449,-0.8536,0.3827,-0.3536,-0.8155,0.1951,-0.5449,-0.7682,0.3827,-0.5133,-0.7682,0.3827,-0.5133,-0.8155,0.1951,-0.5449,-0.6935,0.1951,-0.6935,-0.7682,0.3827,-0.5133,-0.6935,0.1951,-0.6935,-0.6533,0.3827,-0.6533,-0.6533,0.3827,-0.6533,-0.6935,0.1951,-0.6935,-0.5449,0.1951,-0.8155,-0.6533,0.3827,-0.6533,-0.5449,0.1951,-0.8155,-0.5133,0.3827,-0.7682,-0.5133,0.3827,-0.7682,-0.5449,0.1951,-0.8155,-0.3753,0.1951,-0.9061,-0.5133,0.3827,-0.7682,-0.3753,0.1951,-0.9061,-0.3536,0.3827,-0.8536,-0.3536,0.3827,-0.8536,-0.3753,0.1951,-0.9061,-0.1913,0.1951,-0.9619,-0.3536,0.3827,-0.8536,-0.1913,0.1951,-0.9619,-0.1802,0.3827,-0.9061,-0.1802,0.3827,-0.9061,-0.1913,0.1951,-0.9619,0.0,0.1951,-0.9808,-0.1802,0.3827,-0.9061,0.0,0.1951,-0.9808,0.0,0.3827,-0.9239,0.0,0.3827,-0.9239,0.0,0.1951,-0.9808,0.1913,0.1951,-0.9619,0.0,0.3827,-0.9239,0.1913,0.1951,-0.9619,0.1802,0.3827,-0.9061,0.1802,0.3827,-0.9061,0.1913,0.1951,-0.9619,0.3753,0.1951,-0.9061,0.1802,0.3827,-0.9061,0.3753,0.1951,-0.9061,0.3536,0.3827,-0.8536,0.3536,0.3827,-0.8536,0.3753,0.1951,-0.9061,0.5449,0.1951,-0.8155,0.3536,0.3827,-0.8536,0.5449,0.1951,-0.8155,0.5133,0.3827,-0.7682,0.5133,0.3827,-0.7682,0.5449,0.1951,-0.8155,0.6935,0.1951,-0.6935,0.5133,0.3827,-0.7682,0.6935,0.1951,-0.6935,0.6533,0.3827,-0.6533,0.6533,0.3827,-0.6533,0.6935,0.1951,-0.6935,0.8155,0.1951,-0.5449,0.6533,0.3827,-0.6533,0.8155,0.1951,-0.5449,0.7682,0.3827,-0.5133,0.7682,0.3827,-0.5133,0.8155,0.1951,-0.5449,0.9061,0.1951,-0.3753,0.7682,0.3827,-0.5133,0.9061,0.1951,-0.3753,0.8536,0.3827,-0.3536,0.8536,0.3827,-0.3536,0.9061,0.1951,-0.3753,0.9619,0.1951,-0.1913,0.8536,0.3827,-0.3536,0.9619,0.1951,-0.1913,0.9061,0.3827,-0.1802,0.9061,0.3827,-0.1802,0.9619,0.1951,-0.1913,0.9808,0.1951,0.0,0.9061,0.3827,-0.1802,0.9808,0.1951,0.0,0.9239,0.3827,0.0,0.9239,0.3827,0.0,0.9808,0.1951,0.0,0.9619,0.1951,0.1913,0.9239,0.3827,0.0,0.9619,0.1951,0.1913,0.9061,0.3827,0.1802,0.9061,0.3827,0.1802,0.9619,0.1951,0.1913,0.9061,0.1951,0.3753,0.9061,0.3827,0.1802,0.9061,0.1951,0.3753,0.8536,0.3827,0.3536,0.8536,0.3827,0.3536,0.9061,0.1951,0.3753,0.8155,0.1951,0.5449,0.8536,0.3827,0.3536,0.8155,0.1951,0.5449,0.7682,0.3827,0.5133,0.7682,0.3827,0.5133,0.8155,0.1951,0.5449,0.6935,0.1951,0.6935,0.7682,0.3827,0.5133,0.6935,0.1951,0.6935,0.6533,0.3827,0.6533,0.6533,0.3827,0.6533,0.6935,0.1951,0.6935,0.5449,0.1951,0.8155,0.6533,0.3827,0.6533,0.5449,0.1951,0.8155,0.5133,0.3827,0.7682,0.5133,0.3827,0.7682,0.5449,0.1951,0.8155,0.3753,0.1951,0.9061,0.5133,0.3827,0.7682,0.3753,0.1951,0.9061,0.3536,0.3827,0.8536,0.3536,0.3827,0.8536,0.3753,0.1951,0.9061,0.1913,0.1951,0.9619,0.3536,0.3827,0.8536,0.1913,0.1951,0.9619,0.1802,0.3827,0.9061,0.1802,0.3827,0.9061,0.1913,0.1951,0.9619,0.0,0.1951,0.9808,0.1802,0.3827,0.9061,0.0,0.1951,0.9808,0.0,0.3827,0.9239,0.0,0.1951,0.9808,0.0,0.0,1.0,-0.1951,0.0,0.9808,0.0,0.1951,0.9808,-0.1951,0.0,0.9808,-0.1913,0.1951,0.9619,-0.1913,0.1951,0.9619,-0.1951,0.0,0.9808,-0.3827,0.0,0.9239,-0.1913,0.1951,0.9619,-0.3827,0.0,0.9239,-0.3753,0.1951,0.9061,-0.3753,0.1951,0.9061,-0.3827,0.0,0.9239,-0.5556,0.0,0.8315,-0.3753,0.1951,0.9061,-0.5556,0.0,0.8315,-0.5449,0.1951,0.8155,-0.5449,0.1951,0.8155,-0.5556,0.0,0.8315,-0.7071,0.0,0.7071,-0.5449,0.1951,0.8155,-0.7071,0.0,0.7071,-0.6935,0.1951,0.6935,-0.6935,0.1951,0.6935,-0.7071,0.0,0.7071,-0.8315,0.0,0.5556,-0.6935,0.1951,0.6935,-0.8315,0.0,0.5556,-0.8155,0.1951,0.5449,-0.8155,0.1951,0.5449,-0.8315,0.0,0.5556,-0.9239,0.0,0.3827,-0.8155,0.1951,0.5449,-0.9239,0.0,0.3827,-0.9061,0.1951,0.3753,-0.9061,0.1951,0.3753,-0.9239,0.0,0.3827,-0.9808,0.0,0.1951,-0.9061,0.1951,0.3753,-0.9808,0.0,0.1951,-0.9619,0.1951,0.1913,-0.9619,0.1951,0.1913,-0.9808,0.0,0.1951,-1.0,0.0,0.0,-0.9619,0.1951,0.1913,-1.0,0.0,0.0,-0.9808,0.1951,0.0,-0.9808,0.1951,0.0,-1.0,0.0,0.0,-0.9808,0.0,-0.1951,-0.9808,0.1951,0.0,-0.9808,0.0,-0.1951,-0.9619,0.1951,-0.1913,-0.9619,0.1951,-0.1913,-0.9808,0.0,-0.1951,-0.9239,0.0,-0.3827,-0.9619,0.1951,-0.1913,-0.9239,0.0,-0.3827,-0.9061,0.1951,-0.3753,-0.9061,0.1951,-0.3753,-0.9239,0.0,-0.3827,-0.8315,0.0,-0.5556,-0.9061,0.1951,-0.3753,-0.8315,0.0,-0.5556,-0.8155,0.1951,-0.5449,-0.8155,0.1951,-0.5449,-0.8315,0.0,-0.5556,-0.7071,0.0,-0.7071,-0.8155,0.1951,-0.5449,-0.7071,0.0,-0.7071,-0.6935,0.1951,-0.6935,-0.6935,0.1951,-0.6935,-0.7071,0.0,-0.7071,-0.5556,0.0,-0.8315,-0.6935,0.1951,-0.6935,-0.5556,0.0,-0.8315,-0.5449,0.1951,-0.8155,-0.5449,0.1951,-0.8155,-0.5556,0.0,-0.8315,-0.3827,0.0,-0.9239,-0.5449,0.1951,-0.8155,-0.3827,0.0,-0.9239,-0.3753,0.1951,-0.9061,-0.3753,0.1951,-0.9061,-0.3827,0.0,-0.9239,-0.1951,0.0,-0.9808,-0.3753,0.1951,-0.9061,-0.1951,0.0,-0.9808,-0.1913,0.1951,-0.9619,-0.1913,0.1951,-0.9619,-0.1951,0.0,-0.9808,0.0,0.0,-1.0,-0.1913,0.1951,-0.9619,0.0,0.0,-1.0,0.0,0.1951,-0.9808,0.0,0.1951,-0.9808,0.0,0.0,-1.0,0.1951,0.0,-0.9808,0.0,0.1951,-0.9808,0.1951,0.0,-0.9808,0.1913,0.1951,-0.9619,0.1913,0.1951,-0.9619,0.1951,0.0,-0.9808,0.3827,0.0,-0.9239,0.1913,0.1951,-0.9619,0.3827,0.0,-0.9239,0.3753,0.1951,-0.9061,0.3753,0.1951,-0.9061,0.3827,0.0,-0.9239,0.5556,0.0,-0.8315,0.3753,0.1951,-0.9061,0.5556,0.0,-0.8315,0.5449,0.1951,-0.8155,0.5449,0.1951,-0.8155,0.5556,0.0,-0.8315,0.7071,0.0,-0.7071,0.5449,0.1951,-0.8155,0.7071,0.0,-0.7071,0.6935,0.1951,-0.6935,0.6935,0.1951,-0.6935,0.7071,0.0,-0.7071,0.8315,0.0,-0.5556,0.6935,0.1951,-0.6935,0.8315,0.0,-0.5556,0.8155,0.1951,-0.5449,0.8155,0.1951,-0.5449,0.8315,0.0,-0.5556,0.9239,0.0,-0.3827,0.8155,0.1951,-0.5449,0.9239,0.0,-0.3827,0.9061,0.1951,-0.3753,0.9061,0.1951,-0.3753,0.9239,0.0,-0.3827,0.9808,0.0,-0.1951,0.9061,0.1951,-0.3753,0.9808,0.0,-0.1951,0.9619,0.1951,-0.1913,0.9619,0.1951,-0.1913,0.9808,0.0,-0.1951,1.0,0.0,0.0,0.9619,0.1951,-0.1913,1.0,0.0,0.0,0.9808,0.1951,0.0,0.9808,0.1951,0.0,1.0,0.0,0.0,0.9808,0.0,0.1951,0.9808,0.1951,0.0,0.9808,0.0,0.1951,0.9619,0.1951,0.1913,0.9619,0.1951,0.1913,0.9808,0.0,0.1951,0.9239,0.0,0.3827,0.9619,0.1951,0.1913,0.9239,0.0,0.3827,0.9061,0.1951,0.3753,0.9061,0.1951,0.3753,0.9239,0.0,0.3827,0.8315,0.0,0.5556,0.9061,0.1951,0.3753,0.8315,0.0,0.5556,0.8155,0.1951,0.5449,0.8155,0.1951,0.5449,0.8315,0.0,0.5556,0.7071,0.0,0.7071,0.8155,0.1951,0.5449,0.7071,0.0,0.7071,0.6935,0.1951,0.6935,0.6935,0.1951,0.6935,0.7071,0.0,0.7071,0.5556,0.0,0.8315,0.6935,0.1951,0.6935,0.5556,0.0,0.8315,0.5449,0.1951,0.8155,0.5449,0.1951,0.8155,0.5556,0.0,0.8315,0.3827,0.0,0.9239,0.5449,0.1951,0.8155,0.3827,0.0,0.9239,0.3753,0.1951,0.9061,0.3753,0.1951,0.9061,0.3827,0.0,0.9239,0.1951,0.0,0.9808,0.3753,0.1951,0.9061,0.1951,0.0,0.9808,0.1913,0.1951,0.9619,0.1913,0.1951,0.9619,0.1951,0.0,0.9808,0.0,0.0,1.0,0.1913,0.1951,0.9619,0.0,0.0,1.0,0.0,0.1951,0.9808,0.0,0.0,1.0,0.0,-0.1951,0.9808,-0.1913,-0.1951,0.9619,0.0,0.0,1.0,-0.1913,-0.1951,0.9619,-0.1951,0.0,0.9808,-0.1951,0.0,0.9808,-0.1913,-0.1951,0.9619,-0.3753,-0.1951,0.9061,-0.1951,0.0,0.9808,-0.3753,-0.1951,0.9061,-0.3827,0.0,0.9239,-0.3827,0.0,0.9239,-0.3753,-0.1951,0.9061,-0.5449,-0.1951,0.8155,-0.3827,0.0,0.9239,-0.5449,-0.1951,0.8155,-0.5556,0.0,0.8315,-0.5556,0.0,0.8315,-0.5449,-0.1951,0.8155,-0.6935,-0.1951,0.6935,-0.5556,0.0,0.8315,-0.6935,-0.1951,0.6935,-0.7071,0.0,0.7071,-0.7071,0.0,0.7071,-0.6935,-0.1951,0.6935,-0.8155,-0.1951,0.5449,-0.7071,0.0,0.7071,-0.8155,-0.1951,0.5449,-0.8315,0.0,0.5556,-0.8315,0.0,0.5556,-0.8155,-0.1951,0.5449,-0.9061,-0.1951,0.3753,-0.8315,0.0,0.5556,-0.9061,-0.1951,0.3753,-0.9239,0.0,0.3827,-0.9239,0.0,0.3827,-0.9061,-0.1951,0.3753,-0.9619,-0.1951,0.1913,-0.9239,0.0,0.3827,-0.9619,-0.1951,0.1913,-0.9808,0.0,0.1951,-0.9808,0.0,0.1951,-0.9619,-0.1951,0.1913,-0.9808,-0.1951,0.0,-0.9808,0.0,0.1951,-0.9808,-0.1951,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-0.9808,-0.1951,0.0,-0.9619,-0.1951,-0.1913,-1.0,0.0,0.0,-0.9619,-0.1951,-0.1913,-0.9808,0.0,-0.1951,-0.9808,0.0,-0.1951,-0.9619,-0.1951,-0.1913,-0.9061,-0.1951,-0.3753,-0.9808,0.0,-0.1951,-0.9061,-0.1951,-0.3753,-0.9239,0.0,-0.3827,-0.9239,0.0,-0.3827,-0.9061,-0.1951,-0.3753,-0.8155,-0.1951,-0.5449,-0.9239,0.0,-0.3827,-0.8155,-0.1951,-0.5449,-0.8315,0.0,-0.5556,-0.8315,0.0,-0.5556,-0.8155,-0.1951,-0.5449,-0.6935,-0.1951,-0.6935,-0.8315,0.0,-0.5556,-0.6935,-0.1951,-0.6935,-0.7071,0.0,-0.7071,-0.7071,0.0,-0.7071,-0.6935,-0.1951,-0.6935,-0.5449,-0.1951,-0.8155,-0.7071,0.0,-0.7071,-0.5449,-0.1951,-0.8155,-0.5556,0.0,-0.8315,-0.5556,0.0,-0.8315,-0.5449,-0.1951,-0.8155,-0.3753,-0.1951,-0.9061,-0.5556,0.0,-0.8315,-0.3753,-0.1951,-0.9061,-0.3827,0.0,-0.9239,-0.3827,0.0,-0.9239,-0.3753,-0.1951,-0.9061,-0.1913,-0.1951,-0.9619,-0.3827,0.0,-0.9239,-0.1913,-0.1951,-0.9619,-0.1951,0.0,-0.9808,-0.1951,0.0,-0.9808,-0.1913,-0.1951,-0.9619,0.0,-0.1951,-0.9808,-0.1951,0.0,-0.9808,0.0,-0.1951,-0.9808,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,-0.1951,-0.9808,0.1913,-0.1951,-0.9619,0.0,0.0,-1.0,0.1913,-0.1951,-0.9619,0.1951,0.0,-0.9808,0.1951,0.0,-0.9808,0.1913,-0.1951,-0.9619,0.3753,-0.1951,-0.9061,0.1951,0.0,-0.9808,0.3753,-0.1951,-0.9061,0.3827,0.0,-0.9239,0.3827,0.0,-0.9239,0.3753,-0.1951,-0.9061,0.5449,-0.1951,-0.8155,0.3827,0.0,-0.9239,0.5449,-0.1951,-0.8155,0.5556,0.0,-0.8315,0.5556,0.0,-0.8315,0.5449,-0.1951,-0.8155,0.6935,-0.1951,-0.6935,0.5556,0.0,-0.8315,0.6935,-0.1951,-0.6935,0.7071,0.0,-0.7071,0.7071,0.0,-0.7071,0.6935,-0.1951,-0.6935,0.8155,-0.1951,-0.5449,0.7071,0.0,-0.7071,0.8155,-0.1951,-0.5449,0.8315,0.0,-0.5556,0.8315,0.0,-0.5556,0.8155,-0.1951,-0.5449,0.9061,-0.1951,-0.3753,0.8315,0.0,-0.5556,0.9061,-0.1951,-0.3753,0.9239,0.0,-0.3827,0.9239,0.0,-0.3827,0.9061,-0.1951,-0.3753,0.9619,-0.1951,-0.1913,0.9239,0.0,-0.3827,0.9619,-0.1951,-0.1913,0.9808,0.0,-0.1951,0.9808,0.0,-0.1951,0.9619,-0.1951,-0.1913,0.9808,-0.1951,0.0,0.9808,0.0,-0.1951,0.9808,-0.1951,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.9808,-0.1951,0.0,0.9619,-0.1951,0.1913,1.0,0.0,0.0,0.9619,-0.1951,0.1913,0.9808,0.0,0.1951,0.9808,0.0,0.1951,0.9619,-0.1951,0.1913,0.9061,-0.1951,0.3753,0.9808,0.0,0.1951,0.9061,-0.1951,0.3753,0.9239,0.0,0.3827,0.9239,0.0,0.3827,0.9061,-0.1951,0.3753,0.8155,-0.1951,0.5449,0.9239,0.0,0.3827,0.8155,-0.1951,0.5449,0.8315,0.0,0.5556,0.8315,0.0,0.5556,0.8155,-0.1951,0.5449,0.6935,-0.1951,0.6935,0.8315,0.0,0.5556,0.6935,-0.1951,0.6935,0.7071,0.0,0.7071,0.7071,0.0,0.7071,0.6935,-0.1951,0.6935,0.5449,-0.1951,0.8155,0.7071,0.0,0.7071,0.5449,-0.1951,0.8155,0.5556,0.0,0.8315,0.5556,0.0,0.8315,0.5449,-0.1951,0.8155,0.3753,-0.1951,0.9061,0.5556,0.0,0.8315,0.3753,-0.1951,0.9061,0.3827,0.0,0.9239,0.3827,0.0,0.9239,0.3753,-0.1951,0.9061,0.1913,-0.1951,0.9619,0.3827,0.0,0.9239,0.1913,-0.1951,0.9619,0.1951,0.0,0.9808,0.1951,0.0,0.9808,0.1913,-0.1951,0.9619,0.0,-0.1951,0.9808,0.1951,0.0,0.9808,0.0,-0.1951,0.9808,0.0,0.0,1.0,0.0,-0.1951,0.9808,0.0,-0.3827,0.9239,-0.1802,-0.3827,0.9061,0.0,-0.1951,0.9808,-0.1802,-0.3827,0.9061,-0.1913,-0.1951,0.9619,-0.1913,-0.1951,0.9619,-0.1802,-0.3827,0.9061,-0.3536,-0.3827,0.8536,-0.1913,-0.1951,0.9619,-0.3536,-0.3827,0.8536,-0.3753,-0.1951,0.9061,-0.3753,-0.1951,0.9061,-0.3536,-0.3827,0.8536,-0.5133,-0.3827,0.7682,-0.3753,-0.1951,0.9061,-0.5133,-0.3827,0.7682,-0.5449,-0.1951,0.8155,-0.5449,-0.1951,0.8155,-0.5133,-0.3827,0.7682,-0.6533,-0.3827,0.6533,-0.5449,-0.1951,0.8155,-0.6533,-0.3827,0.6533,-0.6935,-0.1951,0.6935,-0.6935,-0.1951,0.6935,-0.6533,-0.3827,0.6533,-0.7682,-0.3827,0.5133,-0.6935,-0.1951,0.6935,-0.7682,-0.3827,0.5133,-0.8155,-0.1951,0.5449,-0.8155,-0.1951,0.5449,-0.7682,-0.3827,0.5133,-0.8536,-0.3827,0.3536,-0.8155,-0.1951,0.5449,-0.8536,-0.3827,0.3536,-0.9061,-0.1951,0.3753,-0.9061,-0.1951,0.3753,-0.8536,-0.3827,0.3536,-0.9061,-0.3827,0.1802,-0.9061,-0.1951,0.3753,-0.9061,-0.3827,0.1802,-0.9619,-0.1951,0.1913,-0.9619,-0.1951,0.1913,-0.9061,-0.3827,0.1802,-0.9239,-0.3827,0.0,-0.9619,-0.1951,0.1913,-0.9239,-0.3827,0.0,-0.9808,-0.1951,0.0,-0.9808,-0.1951,0.0,-0.9239,-0.3827,0.0,-0.9061,-0.3827,-0.1802,-0.9808,-0.1951,0.0,-0.9061,-0.3827,-0.1802,-0.9619,-0.1951,-0.1913,-0.9619,-0.1951,-0.1913,-0.9061,-0.3827,-0.1802,-0.8536,-0.3827,-0.3536,-0.9619,-0.1951,-0.1913,-0.8536,-0.3827,-0.3536,-0.9061,-0.1951,-0.3753,-0.9061,-0.1951,-0.3753,-0.8536,-0.3827,-0.3536,-0.7682,-0.3827,-0.5133,-0.9061,-0.1951,-0.3753,-0.7682,-0.3827,-0.5133,-0.8155,-0.1951,-0.5449,-0.8155,-0.1951,-0.5449,-0.7682,-0.3827,-0.5133,-0.6533,-0.3827,-0.6533,-0.8155,-0.1951,-0.5449,-0.6533,-0.3827,-0.6533,-0.6935,-0.1951,-0.6935,-0.6935,-0.1951,-0.6935,-0.6533,-0.3827,-0.6533,-0.5133,-0.3827,-0.7682,-0.6935,-0.1951,-0.6935,-0.5133,-0.3827,-0.7682,-0.5449,-0.1951,-0.8155,-0.5449,-0.1951,-0.8155,-0.5133,-0.3827,-0.7682,-0.3536,-0.3827,-0.8536,-0.5449,-0.1951,-0.8155,-0.3536,-0.3827,-0.8536,-0.3753,-0.1951,-0.9061,-0.3753,-0.1951,-0.9061,-0.3536,-0.3827,-0.8536,-0.1802,-0.3827,-0.9061,-0.3753,-0.1951,-0.9061,-0.1802,-0.3827,-0.9061,-0.1913,-0.1951,-0.9619,-0.1913,-0.1951,-0.9619,-0.1802,-0.3827,-0.9061,0.0,-0.3827,-0.9239,-0.1913,-0.1951,-0.9619,0.0,-0.3827,-0.9239,0.0,-0.1951,-0.9808,0.0,-0.1951,-0.9808,0.0,-0.3827,-0.9239,0.1802,-0.3827,-0.9061,0.0,-0.1951,-0.9808,0.1802,-0.3827,-0.9061,0.1913,-0.1951,-0.9619,0.1913,-0.1951,-0.9619,0.1802,-0.3827,-0.9061,0.3536,-0.3827,-0.8536,0.1913,-0.1951,-0.9619,0.3536,-0.3827,-0.8536,0.3753,-0.1951,-0.9061,0.3753,-0.1951,-0.9061,0.3536,-0.3827,-0.8536,0.5133,-0.3827,-0.7682,0.3753,-0.1951,-0.9061,0.5133,-0.3827,-0.7682,0.5449,-0.1951,-0.8155,0.5449,-0.1951,-0.8155,0.5133,-0.3827,-0.7682,0.6533,-0.3827,-0.6533,0.5449,-0.1951,-0.8155,0.6533,-0.3827,-0.6533,0.6935,-0.1951,-0.6935,0.6935,-0.1951,-0.6935,0.6533,-0.3827,-0.6533,0.7682,-0.3827,-0.5133,0.6935,-0.1951,-0.6935,0.7682,-0.3827,-0.5133,0.8155,-0.1951,-0.5449,0.8155,-0.1951,-0.5449,0.7682,-0.3827,-0.5133,0.8536,-0.3827,-0.3536,0.8155,-0.1951,-0.5449,0.8536,-0.3827,-0.3536,0.9061,-0.1951,-0.3753,0.9061,-0.1951,-0.3753,0.8536,-0.3827,-0.3536,0.9061,-0.3827,-0.1802,0.9061,-0.1951,-0.3753,0.9061,-0.3827,-0.1802,0.9619,-0.1951,-0.1913,0.9619,-0.1951,-0.1913,0.9061,-0.3827,-0.1802,0.9239,-0.3827,0.0,0.9619,-0.1951,-0.1913,0.9239,-0.3827,0.0,0.9808,-0.1951,0.0,0.9808,-0.1951,0.0,0.9239,-0.3827,0.0,0.9061,-0.3827,0.1802,0.9808,-0.1951,0.0,0.9061,-0.3827,0.1802,0.9619,-0.1951,0.1913,0.9619,-0.1951,0.1913,0.9061,-0.3827,0.1802,0.8536,-0.3827,0.3536,0.9619,-0.1951,0.1913,0.8536,-0.3827,0.3536,0.9061,-0.1951,0.3753,0.9061,-0.1951,0.3753,0.8536,-0.3827,0.3536,0.7682,-0.3827,0.5133,0.9061,-0.1951,0.3753,0.7682,-0.3827,0.5133,0.8155,-0.1951,0.5449,0.8155,-0.1951,0.5449,0.7682,-0.3827,0.5133,0.6533,-0.3827,0.6533,0.8155,-0.1951,0.5449,0.6533,-0.3827,0.6533,0.6935,-0.1951,0.6935,0.6935,-0.1951,0.6935,0.6533,-0.3827,0.6533,0.5133,-0.3827,0.7682,0.6935,-0.1951,0.6935,0.5133,-0.3827,0.7682,0.5449,-0.1951,0.8155,0.5449,-0.1951,0.8155,0.5133,-0.3827,0.7682,0.3536,-0.3827,0.8536,0.5449,-0.1951,0.8155,0.3536,-0.3827,0.8536,0.3753,-0.1951,0.9061,0.3753,-0.1951,0.9061,0.3536,-0.3827,0.8536,0.1802,-0.3827,0.9061,0.3753,-0.1951,0.9061,0.1802,-0.3827,0.9061,0.1913,-0.1951,0.9619,0.1913,-0.1951,0.9619,0.1802,-0.3827,0.9061,0.0,-0.3827,0.9239,0.1913,-0.1951,0.9619,0.0,-0.3827,0.9239,0.0,-0.1951,0.9808,0.0,-0.3827,0.9239,0.0,-0.5556,0.8315,-0.1622,-0.5556,0.8155,0.0,-0.3827,0.9239,-0.1622,-0.5556,0.8155,-0.1802,-0.3827,0.9061,-0.1802,-0.3827,0.9061,-0.1622,-0.5556,0.8155,-0.3182,-0.5556,0.7682,-0.1802,-0.3827,0.9061,-0.3182,-0.5556,0.7682,-0.3536,-0.3827,0.8536,-0.3536,-0.3827,0.8536,-0.3182,-0.5556,0.7682,-0.4619,-0.5556,0.6913,-0.3536,-0.3827,0.8536,-0.4619,-0.5556,0.6913,-0.5133,-0.3827,0.7682,-0.5133,-0.3827,0.7682,-0.4619,-0.5556,0.6913,-0.5879,-0.5556,0.5879,-0.5133,-0.3827,0.7682,-0.5879,-0.5556,0.5879,-0.6533,-0.3827,0.6533,-0.6533,-0.3827,0.6533,-0.5879,-0.5556,0.5879,-0.6913,-0.5556,0.4619,-0.6533,-0.3827,0.6533,-0.6913,-0.5556,0.4619,-0.7682,-0.3827,0.5133,-0.7682,-0.3827,0.5133,-0.6913,-0.5556,0.4619,-0.7682,-0.5556,0.3182,-0.7682,-0.3827,0.5133,-0.7682,-0.5556,0.3182,-0.8536,-0.3827,0.3536,-0.8536,-0.3827,0.3536,-0.7682,-0.5556,0.3182,-0.8155,-0.5556,0.1622,-0.8536,-0.3827,0.3536,-0.8155,-0.5556,0.1622,-0.9061,-0.3827,0.1802,-0.9061,-0.3827,0.1802,-0.8155,-0.5556,0.1622,-0.8315,-0.5556,0.0,-0.9061,-0.3827,0.1802,-0.8315,-0.5556,0.0,-0.9239,-0.3827,0.0,-0.9239,-0.3827,0.0,-0.8315,-0.5556,0.0,-0.8155,-0.5556,-0.1622,-0.9239,-0.3827,0.0,-0.8155,-0.5556,-0.1622,-0.9061,-0.3827,-0.1802,-0.9061,-0.3827,-0.1802,-0.8155,-0.5556,-0.1622,-0.7682,-0.5556,-0.3182,-0.9061,-0.3827,-0.1802,-0.7682,-0.5556,-0.3182,-0.8536,-0.3827,-0.3536,-0.8536,-0.3827,-0.3536,-0.7682,-0.5556,-0.3182,-0.6913,-0.5556,-0.4619,-0.8536,-0.3827,-0.3536,-0.6913,-0.5556,-0.4619,-0.7682,-0.3827,-0.5133,-0.7682,-0.3827,-0.5133,-0.6913,-0.5556,-0.4619,-0.5879,-0.5556,-0.5879,-0.7682,-0.3827,-0.5133,-0.5879,-0.5556,-0.5879,-0.6533,-0.3827,-0.6533,-0.6533,-0.3827,-0.6533,-0.5879,-0.5556,-0.5879,-0.4619,-0.5556,-0.6913,-0.6533,-0.3827,-0.6533,-0.4619,-0.5556,-0.6913,-0.5133,-0.3827,-0.7682,-0.5133,-0.3827,-0.7682,-0.4619,-0.5556,-0.6913,-0.3182,-0.5556,-0.7682,-0.5133,-0.3827,-0.7682,-0.3182,-0.5556,-0.7682,-0.3536,-0.3827,-0.8536,-0.3536,-0.3827,-0.8536,-0.3182,-0.5556,-0.7682,-0.1622,-0.5556,-0.8155,-0.3536,-0.3827,-0.8536,-0.1622,-0.5556,-0.8155,-0.1802,-0.3827,-0.9061,-0.1802,-0.3827,-0.9061,-0.1622,-0.5556,-0.8155,0.0,-0.5556,-0.8315,-0.1802,-0.3827,-0.9061,0.0,-0.5556,-0.8315,0.0,-0.3827,-0.9239,0.0,-0.3827,-0.9239,0.0,-0.5556,-0.8315,0.1622,-0.5556,-0.8155,0.0,-0.3827,-0.9239,0.1622,-0.5556,-0.8155,0.1802,-0.3827,-0.9061,0.1802,-0.3827,-0.9061,0.1622,-0.5556,-0.8155,0.3182,-0.5556,-0.7682,0.1802,-0.3827,-0.9061,0.3182,-0.5556,-0.7682,0.3536,-0.3827,-0.8536,0.3536,-0.3827,-0.8536,0.3182,-0.5556,-0.7682,0.4619,-0.5556,-0.6913,0.3536,-0.3827,-0.8536,0.4619,-0.5556,-0.6913,0.5133,-0.3827,-0.7682,0.5133,-0.3827,-0.7682,0.4619,-0.5556,-0.6913,0.5879,-0.5556,-0.5879,0.5133,-0.3827,-0.7682,0.5879,-0.5556,-0.5879,0.6533,-0.3827,-0.6533,0.6533,-0.3827,-0.6533,0.5879,-0.5556,-0.5879,0.6913,-0.5556,-0.4619,0.6533,-0.3827,-0.6533,0.6913,-0.5556,-0.4619,0.7682,-0.3827,-0.5133,0.7682,-0.3827,-0.5133,0.6913,-0.5556,-0.4619,0.7682,-0.5556,-0.3182,0.7682,-0.3827,-0.5133,0.7682,-0.5556,-0.3182,0.8536,-0.3827,-0.3536,0.8536,-0.3827,-0.3536,0.7682,-0.5556,-0.3182,0.8155,-0.5556,-0.1622,0.8536,-0.3827,-0.3536,0.8155,-0.5556,-0.1622,0.9061,-0.3827,-0.1802,0.9061,-0.3827,-0.1802,0.8155,-0.5556,-0.1622,0.8315,-0.5556,0.0,0.9061,-0.3827,-0.1802,0.8315,-0.5556,0.0,0.9239,-0.3827,0.0,0.9239,-0.3827,0.0,0.8315,-0.5556,0.0,0.8155,-0.5556,0.1622,0.9239,-0.3827,0.0,0.8155,-0.5556,0.1622,0.9061,-0.3827,0.1802,0.9061,-0.3827,0.1802,0.8155,-0.5556,0.1622,0.7682,-0.5556,0.3182,0.9061,-0.3827,0.1802,0.7682,-0.5556,0.3182,0.8536,-0.3827,0.3536,0.8536,-0.3827,0.3536,0.7682,-0.5556,0.3182,0.6913,-0.5556,0.4619,0.8536,-0.3827,0.3536,0.6913,-0.5556,0.4619,0.7682,-0.3827,0.5133,0.7682,-0.3827,0.5133,0.6913,-0.5556,0.4619,0.5879,-0.5556,0.5879,0.7682,-0.3827,0.5133,0.5879,-0.5556,0.5879,0.6533,-0.3827,0.6533,0.6533,-0.3827,0.6533,0.5879,-0.5556,0.5879,0.4619,-0.5556,0.6913,0.6533,-0.3827,0.6533,0.4619,-0.5556,0.6913,0.5133,-0.3827,0.7682,0.5133,-0.3827,0.7682,0.4619,-0.5556,0.6913,0.3182,-0.5556,0.7682,0.5133,-0.3827,0.7682,0.3182,-0.5556,0.7682,0.3536,-0.3827,0.8536,0.3536,-0.3827,0.8536,0.3182,-0.5556,0.7682,0.1622,-0.5556,0.8155,0.3536,-0.3827,0.8536,0.1622,-0.5556,0.8155,0.1802,-0.3827,0.9061,0.1802,-0.3827,0.9061,0.1622,-0.5556,0.8155,0.0,-0.5556,0.8315,0.1802,-0.3827,0.9061,0.0,-0.5556,0.8315,0.0,-0.3827,0.9239,0.0,-0.5556,0.8315,0.0,-0.7071,0.7071,-0.1379,-0.7071,0.6935,0.0,-0.5556,0.8315,-0.1379,-0.7071,0.6935,-0.1622,-0.5556,0.8155,-0.1622,-0.5556,0.8155,-0.1379,-0.7071,0.6935,-0.2706,-0.7071,0.6533,-0.1622,-0.5556,0.8155,-0.2706,-0.7071,0.6533,-0.3182,-0.5556,0.7682,-0.3182,-0.5556,0.7682,-0.2706,-0.7071,0.6533,-0.3928,-0.7071,0.5879,-0.3182,-0.5556,0.7682,-0.3928,-0.7071,0.5879,-0.4619,-0.5556,0.6913,-0.4619,-0.5556,0.6913,-0.3928,-0.7071,0.5879,-0.5,-0.7071,0.5,-0.4619,-0.5556,0.6913,-0.5,-0.7071,0.5,-0.5879,-0.5556,0.5879,-0.5879,-0.5556,0.5879,-0.5,-0.7071,0.5,-0.5879,-0.7071,0.3928,-0.5879,-0.5556,0.5879,-0.5879,-0.7071,0.3928,-0.6913,-0.5556,0.4619,-0.6913,-0.5556,0.4619,-0.5879,-0.7071,0.3928,-0.6533,-0.7071,0.2706,-0.6913,-0.5556,0.4619,-0.6533,-0.7071,0.2706,-0.7682,-0.5556,0.3182,-0.7682,-0.5556,0.3182,-0.6533,-0.7071,0.2706,-0.6935,-0.7071,0.1379,-0.7682,-0.5556,0.3182,-0.6935,-0.7071,0.1379,-0.8155,-0.5556,0.1622,-0.8155,-0.5556,0.1622,-0.6935,-0.7071,0.1379,-0.7071,-0.7071,0.0,-0.8155,-0.5556,0.1622,-0.7071,-0.7071,0.0,-0.8315,-0.5556,0.0,-0.8315,-0.5556,0.0,-0.7071,-0.7071,0.0,-0.6935,-0.7071,-0.1379,-0.8315,-0.5556,0.0,-0.6935,-0.7071,-0.1379,-0.8155,-0.5556,-0.1622,-0.8155,-0.5556,-0.1622,-0.6935,-0.7071,-0.1379,-0.6533,-0.7071,-0.2706,-0.8155,-0.5556,-0.1622,-0.6533,-0.7071,-0.2706,-0.7682,-0.5556,-0.3182,-0.7682,-0.5556,-0.3182,-0.6533,-0.7071,-0.2706,-0.5879,-0.7071,-0.3928,-0.7682,-0.5556,-0.3182,-0.5879,-0.7071,-0.3928,-0.6913,-0.5556,-0.4619,-0.6913,-0.5556,-0.4619,-0.5879,-0.7071,-0.3928,-0.5,-0.7071,-0.5,-0.6913,-0.5556,-0.4619,-0.5,-0.7071,-0.5,-0.5879,-0.5556,-0.5879,-0.5879,-0.5556,-0.5879,-0.5,-0.7071,-0.5,-0.3928,-0.7071,-0.5879,-0.5879,-0.5556,-0.5879,-0.3928,-0.7071,-0.5879,-0.4619,-0.5556,-0.6913,-0.4619,-0.5556,-0.6913,-0.3928,-0.7071,-0.5879,-0.2706,-0.7071,-0.6533,-0.4619,-0.5556,-0.6913,-0.2706,-0.7071,-0.6533,-0.3182,-0.5556,-0.7682,-0.3182,-0.5556,-0.7682,-0.2706,-0.7071,-0.6533,-0.1379,-0.7071,-0.6935,-0.3182,-0.5556,-0.7682,-0.1379,-0.7071,-0.6935,-0.1622,-0.5556,-0.8155,-0.1622,-0.5556,-0.8155,-0.1379,-0.7071,-0.6935,0.0,-0.7071,-0.7071,-0.1622,-0.5556,-0.8155,0.0,-0.7071,-0.7071,0.0,-0.5556,-0.8315,0.0,-0.5556,-0.8315,0.0,-0.7071,-0.7071,0.138,-0.7071,-0.6935,0.0,-0.5556,-0.8315,0.138,-0.7071,-0.6935,0.1622,-0.5556,-0.8155,0.1622,-0.5556,-0.8155,0.138,-0.7071,-0.6935,0.2706,-0.7071,-0.6533,0.1622,-0.5556,-0.8155,0.2706,-0.7071,-0.6533,0.3182,-0.5556,-0.7682,0.3182,-0.5556,-0.7682,0.2706,-0.7071,-0.6533,0.3928,-0.7071,-0.5879,0.3182,-0.5556,-0.7682,0.3928,-0.7071,-0.5879,0.4619,-0.5556,-0.6913,0.4619,-0.5556,-0.6913,0.3928,-0.7071,-0.5879,0.5,-0.7071,-0.5,0.4619,-0.5556,-0.6913,0.5,-0.7071,-0.5,0.5879,-0.5556,-0.5879,0.5879,-0.5556,-0.5879,0.5,-0.7071,-0.5,0.5879,-0.7071,-0.3928,0.5879,-0.5556,-0.5879,0.5879,-0.7071,-0.3928,0.6913,-0.5556,-0.4619,0.6913,-0.5556,-0.4619,0.5879,-0.7071,-0.3928,0.6533,-0.7071,-0.2706,0.6913,-0.5556,-0.4619,0.6533,-0.7071,-0.2706,0.7682,-0.5556,-0.3182,0.7682,-0.5556,-0.3182,0.6533,-0.7071,-0.2706,0.6935,-0.7071,-0.1379,0.7682,-0.5556,-0.3182,0.6935,-0.7071,-0.1379,0.8155,-0.5556,-0.1622,0.8155,-0.5556,-0.1622,0.6935,-0.7071,-0.1379,0.7071,-0.7071,0.0,0.8155,-0.5556,-0.1622,0.7071,-0.7071,0.0,0.8315,-0.5556,0.0,0.8315,-0.5556,0.0,0.7071,-0.7071,0.0,0.6935,-0.7071,0.138,0.8315,-0.5556,0.0,0.6935,-0.7071,0.138,0.8155,-0.5556,0.1622,0.8155,-0.5556,0.1622,0.6935,-0.7071,0.138,0.6533,-0.7071,0.2706,0.8155,-0.5556,0.1622,0.6533,-0.7071,0.2706,0.7682,-0.5556,0.3182,0.7682,-0.5556,0.3182,0.6533,-0.7071,0.2706,0.5879,-0.7071,0.3928,0.7682,-0.5556,0.3182,0.5879,-0.7071,0.3928,0.6913,-0.5556,0.4619,0.6913,-0.5556,0.4619,0.5879,-0.7071,0.3928,0.5,-0.7071,0.5,0.6913,-0.5556,0.4619,0.5,-0.7071,0.5,0.5879,-0.5556,0.5879,0.5879,-0.5556,0.5879,0.5,-0.7071,0.5,0.3928,-0.7071,0.5879,0.5879,-0.5556,0.5879,0.3928,-0.7071,0.5879,0.4619,-0.5556,0.6913,0.4619,-0.5556,0.6913,0.3928,-0.7071,0.5879,0.2706,-0.7071,0.6533,0.4619,-0.5556,0.6913,0.2706,-0.7071,0.6533,0.3182,-0.5556,0.7682,0.3182,-0.5556,0.7682,0.2706,-0.7071,0.6533,0.1379,-0.7071,0.6935,0.3182,-0.5556,0.7682,0.1379,-0.7071,0.6935,0.1622,-0.5556,0.8155,0.1622,-0.5556,0.8155,0.1379,-0.7071,0.6935,0.0,-0.7071,0.7071,0.1622,-0.5556,0.8155,0.0,-0.7071,0.7071,0.0,-0.5556,0.8315,0.0,-0.7071,0.7071,0.0,-0.8315,0.5556,-0.1084,-0.8315,0.5449,0.0,-0.7071,0.7071,-0.1084,-0.8315,0.5449,-0.1379,-0.7071,0.6935,-0.1379,-0.7071,0.6935,-0.1084,-0.8315,0.5449,-0.2126,-0.8315,0.5133,-0.1379,-0.7071,0.6935,-0.2126,-0.8315,0.5133,-0.2706,-0.7071,0.6533,-0.2706,-0.7071,0.6533,-0.2126,-0.8315,0.5133,-0.3087,-0.8315,0.4619,-0.2706,-0.7071,0.6533,-0.3087,-0.8315,0.4619,-0.3928,-0.7071,0.5879,-0.3928,-0.7071,0.5879,-0.3087,-0.8315,0.4619,-0.3928,-0.8315,0.3928,-0.3928,-0.7071,0.5879,-0.3928,-0.8315,0.3928,-0.5,-0.7071,0.5,-0.5,-0.7071,0.5,-0.3928,-0.8315,0.3928,-0.4619,-0.8315,0.3087,-0.5,-0.7071,0.5,-0.4619,-0.8315,0.3087,-0.5879,-0.7071,0.3928,-0.5879,-0.7071,0.3928,-0.4619,-0.8315,0.3087,-0.5133,-0.8315,0.2126,-0.5879,-0.7071,0.3928,-0.5133,-0.8315,0.2126,-0.6533,-0.7071,0.2706,-0.6533,-0.7071,0.2706,-0.5133,-0.8315,0.2126,-0.5449,-0.8315,0.1084,-0.6533,-0.7071,0.2706,-0.5449,-0.8315,0.1084,-0.6935,-0.7071,0.1379,-0.6935,-0.7071,0.1379,-0.5449,-0.8315,0.1084,-0.5556,-0.8315,0.0,-0.6935,-0.7071,0.1379,-0.5556,-0.8315,0.0,-0.7071,-0.7071,0.0,-0.7071,-0.7071,0.0,-0.5556,-0.8315,0.0,-0.5449,-0.8315,-0.1084,-0.7071,-0.7071,0.0,-0.5449,-0.8315,-0.1084,-0.6935,-0.7071,-0.1379,-0.6935,-0.7071,-0.1379,-0.5449,-0.8315,-0.1084,-0.5133,-0.8315,-0.2126,-0.6935,-0.7071,-0.1379,-0.5133,-0.8315,-0.2126,-0.6533,-0.7071,-0.2706,-0.6533,-0.7071,-0.2706,-0.5133,-0.8315,-0.2126,-0.4619,-0.8315,-0.3087,-0.6533,-0.7071,-0.2706,-0.4619,-0.8315,-0.3087,-0.5879,-0.7071,-0.3928,-0.5879,-0.7071,-0.3928,-0.4619,-0.8315,-0.3087,-0.3928,-0.8315,-0.3928,-0.5879,-0.7071,-0.3928,-0.3928,-0.8315,-0.3928,-0.5,-0.7071,-0.5,-0.5,-0.7071,-0.5,-0.3928,-0.8315,-0.3928,-0.3087,-0.8315,-0.4619,-0.5,-0.7071,-0.5,-0.3087,-0.8315,-0.4619,-0.3928,-0.7071,-0.5879,-0.3928,-0.7071,-0.5879,-0.3087,-0.8315,-0.4619,-0.2126,-0.8315,-0.5133,-0.3928,-0.7071,-0.5879,-0.2126,-0.8315,-0.5133,-0.2706,-0.7071,-0.6533,-0.2706,-0.7071,-0.6533,-0.2126,-0.8315,-0.5133,-0.1084,-0.8315,-0.5449,-0.2706,-0.7071,-0.6533,-0.1084,-0.8315,-0.5449,-0.1379,-0.7071,-0.6935,-0.1379,-0.7071,-0.6935,-0.1084,-0.8315,-0.5449,0.0,-0.8315,-0.5556,-0.1379,-0.7071,-0.6935,0.0,-0.8315,-0.5556,0.0,-0.7071,-0.7071,0.0,-0.7071,-0.7071,0.0,-0.8315,-0.5556,0.1084,-0.8315,-0.5449,0.0,-0.7071,-0.7071,0.1084,-0.8315,-0.5449,0.138,-0.7071,-0.6935,0.138,-0.7071,-0.6935,0.1084,-0.8315,-0.5449,0.2126,-0.8315,-0.5133,0.138,-0.7071,-0.6935,0.2126,-0.8315,-0.5133,0.2706,-0.7071,-0.6533,0.2706,-0.7071,-0.6533,0.2126,-0.8315,-0.5133,0.3087,-0.8315,-0.4619,0.2706,-0.7071,-0.6533,0.3087,-0.8315,-0.4619,0.3928,-0.7071,-0.5879,0.3928,-0.7071,-0.5879,0.3087,-0.8315,-0.4619,0.3928,-0.8315,-0.3928,0.3928,-0.7071,-0.5879,0.3928,-0.8315,-0.3928,0.5,-0.7071,-0.5,0.5,-0.7071,-0.5,0.3928,-0.8315,-0.3928,0.4619,-0.8315,-0.3087,0.5,-0.7071,-0.5,0.4619,-0.8315,-0.3087,0.5879,-0.7071,-0.3928,0.5879,-0.7071,-0.3928,0.4619,-0.8315,-0.3087,0.5133,-0.8315,-0.2126,0.5879,-0.7071,-0.3928,0.5133,-0.8315,-0.2126,0.6533,-0.7071,-0.2706,0.6533,-0.7071,-0.2706,0.5133,-0.8315,-0.2126,0.5449,-0.8315,-0.1084,0.6533,-0.7071,-0.2706,0.5449,-0.8315,-0.1084,0.6935,-0.7071,-0.1379,0.6935,-0.7071,-0.1379,0.5449,-0.8315,-0.1084,0.5556,-0.8315,0.0,0.6935,-0.7071,-0.1379,0.5556,-0.8315,0.0,0.7071,-0.7071,0.0,0.7071,-0.7071,0.0,0.5556,-0.8315,0.0,0.5449,-0.8315,0.1084,0.7071,-0.7071,0.0,0.5449,-0.8315,0.1084,0.6935,-0.7071,0.138,0.6935,-0.7071,0.138,0.5449,-0.8315,0.1084,0.5133,-0.8315,0.2126,0.6935,-0.7071,0.138,0.5133,-0.8315,0.2126,0.6533,-0.7071,0.2706,0.6533,-0.7071,0.2706,0.5133,-0.8315,0.2126,0.4619,-0.8315,0.3087,0.6533,-0.7071,0.2706,0.4619,-0.8315,0.3087,0.5879,-0.7071,0.3928,0.5879,-0.7071,0.3928,0.4619,-0.8315,0.3087,0.3928,-0.8315,0.3928,0.5879,-0.7071,0.3928,0.3928,-0.8315,0.3928,0.5,-0.7071,0.5,0.5,-0.7071,0.5,0.3928,-0.8315,0.3928,0.3087,-0.8315,0.4619,0.5,-0.7071,0.5,0.3087,-0.8315,0.4619,0.3928,-0.7071,0.5879,0.3928,-0.7071,0.5879,0.3087,-0.8315,0.4619,0.2126,-0.8315,0.5133,0.3928,-0.7071,0.5879,0.2126,-0.8315,0.5133,0.2706,-0.7071,0.6533,0.2706,-0.7071,0.6533,0.2126,-0.8315,0.5133,0.1084,-0.8315,0.5449,0.2706,-0.7071,0.6533,0.1084,-0.8315,0.5449,0.1379,-0.7071,0.6935,0.1379,-0.7071,0.6935,0.1084,-0.8315,0.5449,0.0,-0.8315,0.5556,0.1379,-0.7071,0.6935,0.0,-0.8315,0.5556,0.0,-0.7071,0.7071,0.0,-0.8315,0.5556,0.0,-0.9239,0.3827,-0.0747,-0.9239,0.3753,0.0,-0.8315,0.5556,-0.0747,-0.9239,0.3753,-0.1084,-0.8315,0.5449,-0.1084,-0.8315,0.5449,-0.0747,-0.9239,0.3753,-0.1464,-0.9239,0.3536,-0.1084,-0.8315,0.5449,-0.1464,-0.9239,0.3536,-0.2126,-0.8315,0.5133,-0.2126,-0.8315,0.5133,-0.1464,-0.9239,0.3536,-0.2126,-0.9239,0.3182,-0.2126,-0.8315,0.5133,-0.2126,-0.9239,0.3182,-0.3087,-0.8315,0.4619,-0.3087,-0.8315,0.4619,-0.2126,-0.9239,0.3182,-0.2706,-0.9239,0.2706,-0.3087,-0.8315,0.4619,-0.2706,-0.9239,0.2706,-0.3928,-0.8315,0.3928,-0.3928,-0.8315,0.3928,-0.2706,-0.9239,0.2706,-0.3182,-0.9239,0.2126,-0.3928,-0.8315,0.3928,-0.3182,-0.9239,0.2126,-0.4619,-0.8315,0.3087,-0.4619,-0.8315,0.3087,-0.3182,-0.9239,0.2126,-0.3536,-0.9239,0.1464,-0.4619,-0.8315,0.3087,-0.3536,-0.9239,0.1464,-0.5133,-0.8315,0.2126,-0.5133,-0.8315,0.2126,-0.3536,-0.9239,0.1464,-0.3753,-0.9239,0.0747,-0.5133,-0.8315,0.2126,-0.3753,-0.9239,0.0747,-0.5449,-0.8315,0.1084,-0.5449,-0.8315,0.1084,-0.3753,-0.9239,0.0747,-0.3827,-0.9239,0.0,-0.5449,-0.8315,0.1084,-0.3827,-0.9239,0.0,-0.5556,-0.8315,0.0,-0.5556,-0.8315,0.0,-0.3827,-0.9239,0.0,-0.3753,-0.9239,-0.0747,-0.5556,-0.8315,0.0,-0.3753,-0.9239,-0.0747,-0.5449,-0.8315,-0.1084,-0.5449,-0.8315,-0.1084,-0.3753,-0.9239,-0.0747,-0.3536,-0.9239,-0.1464,-0.5449,-0.8315,-0.1084,-0.3536,-0.9239,-0.1464,-0.5133,-0.8315,-0.2126,-0.5133,-0.8315,-0.2126,-0.3536,-0.9239,-0.1464,-0.3182,-0.9239,-0.2126,-0.5133,-0.8315,-0.2126,-0.3182,-0.9239,-0.2126,-0.4619,-0.8315,-0.3087,-0.4619,-0.8315,-0.3087,-0.3182,-0.9239,-0.2126,-0.2706,-0.9239,-0.2706,-0.4619,-0.8315,-0.3087,-0.2706,-0.9239,-0.2706,-0.3928,-0.8315,-0.3928,-0.3928,-0.8315,-0.3928,-0.2706,-0.9239,-0.2706,-0.2126,-0.9239,-0.3182,-0.3928,-0.8315,-0.3928,-0.2126,-0.9239,-0.3182,-0.3087,-0.8315,-0.4619,-0.3087,-0.8315,-0.4619,-0.2126,-0.9239,-0.3182,-0.1464,-0.9239,-0.3536,-0.3087,-0.8315,-0.4619,-0.1464,-0.9239,-0.3536,-0.2126,-0.8315,-0.5133,-0.2126,-0.8315,-0.5133,-0.1464,-0.9239,-0.3536,-0.0747,-0.9239,-0.3753,-0.2126,-0.8315,-0.5133,-0.0747,-0.9239,-0.3753,-0.1084,-0.8315,-0.5449,-0.1084,-0.8315,-0.5449,-0.0747,-0.9239,-0.3753,0.0,-0.9239,-0.3827,-0.1084,-0.8315,-0.5449,0.0,-0.9239,-0.3827,0.0,-0.8315,-0.5556,0.0,-0.8315,-0.5556,0.0,-0.9239,-0.3827,0.0747,-0.9239,-0.3753,0.0,-0.8315,-0.5556,0.0747,-0.9239,-0.3753,0.1084,-0.8315,-0.5449,0.1084,-0.8315,-0.5449,0.0747,-0.9239,-0.3753,0.1464,-0.9239,-0.3536,0.1084,-0.8315,-0.5449,0.1464,-0.9239,-0.3536,0.2126,-0.8315,-0.5133,0.2126,-0.8315,-0.5133,0.1464,-0.9239,-0.3536,0.2126,-0.9239,-0.3182,0.2126,-0.8315,-0.5133,0.2126,-0.9239,-0.3182,0.3087,-0.8315,-0.4619,0.3087,-0.8315,-0.4619,0.2126,-0.9239,-0.3182,0.2706,-0.9239,-0.2706,0.3087,-0.8315,-0.4619,0.2706,-0.9239,-0.2706,0.3928,-0.8315,-0.3928,0.3928,-0.8315,-0.3928,0.2706,-0.9239,-0.2706,0.3182,-0.9239,-0.2126,0.3928,-0.8315,-0.3928,0.3182,-0.9239,-0.2126,0.4619,-0.8315,-0.3087,0.4619,-0.8315,-0.3087,0.3182,-0.9239,-0.2126,0.3536,-0.9239,-0.1464,0.4619,-0.8315,-0.3087,0.3536,-0.9239,-0.1464,0.5133,-0.8315,-0.2126,0.5133,-0.8315,-0.2126,0.3536,-0.9239,-0.1464,0.3753,-0.9239,-0.0747,0.5133,-0.8315,-0.2126,0.3753,-0.9239,-0.0747,0.5449,-0.8315,-0.1084,0.5449,-0.8315,-0.1084,0.3753,-0.9239,-0.0747,0.3827,-0.9239,0.0,0.5449,-0.8315,-0.1084,0.3827,-0.9239,0.0,0.5556,-0.8315,0.0,0.5556,-0.8315,0.0,0.3827,-0.9239,0.0,0.3753,-0.9239,0.0747,0.5556,-0.8315,0.0,0.3753,-0.9239,0.0747,0.5449,-0.8315,0.1084,0.5449,-0.8315,0.1084,0.3753,-0.9239,0.0747,0.3536,-0.9239,0.1464,0.5449,-0.8315,0.1084,0.3536,-0.9239,0.1464,0.5133,-0.8315,0.2126,0.5133,-0.8315,0.2126,0.3536,-0.9239,0.1464,0.3182,-0.9239,0.2126,0.5133,-0.8315,0.2126,0.3182,-0.9239,0.2126,0.4619,-0.8315,0.3087,0.4619,-0.8315,0.3087,0.3182,-0.9239,0.2126,0.2706,-0.9239,0.2706,0.4619,-0.8315,0.3087,0.2706,-0.9239,0.2706,0.3928,-0.8315,0.3928,0.3928,-0.8315,0.3928,0.2706,-0.9239,0.2706,0.2126,-0.9239,0.3182,0.3928,-0.8315,0.3928,0.2126,-0.9239,0.3182,0.3087,-0.8315,0.4619,0.3087,-0.8315,0.4619,0.2126,-0.9239,0.3182,0.1464,-0.9239,0.3536,0.3087,-0.8315,0.4619,0.1464,-0.9239,0.3536,0.2126,-0.8315,0.5133,0.2126,-0.8315,0.5133,0.1464,-0.9239,0.3536,0.0747,-0.9239,0.3753,0.2126,-0.8315,0.5133,0.0747,-0.9239,0.3753,0.1084,-0.8315,0.5449,0.1084,-0.8315,0.5449,0.0747,-0.9239,0.3753,0.0,-0.9239,0.3827,0.1084,-0.8315,0.5449,0.0,-0.9239,0.3827,0.0,-0.8315,0.5556,0.0,-0.9239,0.3827,0.0,-0.9808,0.1951,-0.0381,-0.9808,0.1913,0.0,-0.9239,0.3827,-0.0381,-0.9808,0.1913,-0.0747,-0.9239,0.3753,-0.0747,-0.9239,0.3753,-0.0381,-0.9808,0.1913,-0.0747,-0.9808,0.1802,-0.0747,-0.9239,0.3753,-0.0747,-0.9808,0.1802,-0.1464,-0.9239,0.3536,-0.1464,-0.9239,0.3536,-0.0747,-0.9808,0.1802,-0.1084,-0.9808,0.1622,-0.1464,-0.9239,0.3536,-0.1084,-0.9808,0.1622,-0.2126,-0.9239,0.3182,-0.2126,-0.9239,0.3182,-0.1084,-0.9808,0.1622,-0.1379,-0.9808,0.1379,-0.2126,-0.9239,0.3182,-0.1379,-0.9808,0.1379,-0.2706,-0.9239,0.2706,-0.2706,-0.9239,0.2706,-0.1379,-0.9808,0.1379,-0.1622,-0.9808,0.1084,-0.2706,-0.9239,0.2706,-0.1622,-0.9808,0.1084,-0.3182,-0.9239,0.2126,-0.3182,-0.9239,0.2126,-0.1622,-0.9808,0.1084,-0.1802,-0.9808,0.0747,-0.3182,-0.9239,0.2126,-0.1802,-0.9808,0.0747,-0.3536,-0.9239,0.1464,-0.3536,-0.9239,0.1464,-0.1802,-0.9808,0.0747,-0.1913,-0.9808,0.0381,-0.3536,-0.9239,0.1464,-0.1913,-0.9808,0.0381,-0.3753,-0.9239,0.0747,-0.3753,-0.9239,0.0747,-0.1913,-0.9808,0.0381,-0.1951,-0.9808,0.0,-0.3753,-0.9239,0.0747,-0.1951,-0.9808,0.0,-0.3827,-0.9239,0.0,-0.3827,-0.9239,0.0,-0.1951,-0.9808,0.0,-0.1913,-0.9808,-0.0381,-0.3827,-0.9239,0.0,-0.1913,-0.9808,-0.0381,-0.3753,-0.9239,-0.0747,-0.3753,-0.9239,-0.0747,-0.1913,-0.9808,-0.0381,-0.1802,-0.9808,-0.0747,-0.3753,-0.9239,-0.0747,-0.1802,-0.9808,-0.0747,-0.3536,-0.9239,-0.1464,-0.3536,-0.9239,-0.1464,-0.1802,-0.9808,-0.0747,-0.1622,-0.9808,-0.1084,-0.3536,-0.9239,-0.1464,-0.1622,-0.9808,-0.1084,-0.3182,-0.9239,-0.2126,-0.3182,-0.9239,-0.2126,-0.1622,-0.9808,-0.1084,-0.1379,-0.9808,-0.1379,-0.3182,-0.9239,-0.2126,-0.1379,-0.9808,-0.1379,-0.2706,-0.9239,-0.2706,-0.2706,-0.9239,-0.2706,-0.1379,-0.9808,-0.1379,-0.1084,-0.9808,-0.1622,-0.2706,-0.9239,-0.2706,-0.1084,-0.9808,-0.1622,-0.2126,-0.9239,-0.3182,-0.2126,-0.9239,-0.3182,-0.1084,-0.9808,-0.1622,-0.0747,-0.9808,-0.1802,-0.2126,-0.9239,-0.3182,-0.0747,-0.9808,-0.1802,-0.1464,-0.9239,-0.3536,-0.1464,-0.9239,-0.3536,-0.0747,-0.9808,-0.1802,-0.0381,-0.9808,-0.1913,-0.1464,-0.9239,-0.3536,-0.0381,-0.9808,-0.1913,-0.0747,-0.9239,-0.3753,-0.0747,-0.9239,-0.3753,-0.0381,-0.9808,-0.1913,0.0,-0.9808,-0.1951,-0.0747,-0.9239,-0.3753,0.0,-0.9808,-0.1951,0.0,-0.9239,-0.3827,0.0,-0.9239,-0.3827,0.0,-0.9808,-0.1951,0.0381,-0.9808,-0.1913,0.0,-0.9239,-0.3827,0.0381,-0.9808,-0.1913,0.0747,-0.9239,-0.3753,0.0747,-0.9239,-0.3753,0.0381,-0.9808,-0.1913,0.0747,-0.9808,-0.1802,0.0747,-0.9239,-0.3753,0.0747,-0.9808,-0.1802,0.1464,-0.9239,-0.3536,0.1464,-0.9239,-0.3536,0.0747,-0.9808,-0.1802,0.1084,-0.9808,-0.1622,0.1464,-0.9239,-0.3536,0.1084,-0.9808,-0.1622,0.2126,-0.9239,-0.3182,0.2126,-0.9239,-0.3182,0.1084,-0.9808,-0.1622,0.1379,-0.9808,-0.1379,0.2126,-0.9239,-0.3182,0.1379,-0.9808,-0.1379,0.2706,-0.9239,-0.2706,0.2706,-0.9239,-0.2706,0.1379,-0.9808,-0.1379,0.1622,-0.9808,-0.1084,0.2706,-0.9239,-0.2706,0.1622,-0.9808,-0.1084,0.3182,-0.9239,-0.2126,0.3182,-0.9239,-0.2126,0.1622,-0.9808,-0.1084,0.1802,-0.9808,-0.0747,0.3182,-0.9239,-0.2126,0.1802,-0.9808,-0.0747,0.3536,-0.9239,-0.1464,0.3536,-0.9239,-0.1464,0.1802,-0.9808,-0.0747,0.1913,-0.9808,-0.0381,0.3536,-0.9239,-0.1464,0.1913,-0.9808,-0.0381,0.3753,-0.9239,-0.0747,0.3753,-0.9239,-0.0747,0.1913,-0.9808,-0.0381,0.1951,-0.9808,0.0,0.3753,-0.9239,-0.0747,0.1951,-0.9808,0.0,0.3827,-0.9239,0.0,0.3827,-0.9239,0.0,0.1951,-0.9808,0.0,0.1913,-0.9808,0.0381,0.3827,-0.9239,0.0,0.1913,-0.9808,0.0381,0.3753,-0.9239,0.0747,0.3753,-0.9239,0.0747,0.1913,-0.9808,0.0381,0.1802,-0.9808,0.0747,0.3753,-0.9239,0.0747,0.1802,-0.9808,0.0747,0.3536,-0.9239,0.1464,0.3536,-0.9239,0.1464,0.1802,-0.9808,0.0747,0.1622,-0.9808,0.1084,0.3536,-0.9239,0.1464,0.1622,-0.9808,0.1084,0.3182,-0.9239,0.2126,0.3182,-0.9239,0.2126,0.1622,-0.9808,0.1084,0.1379,-0.9808,0.1379,0.3182,-0.9239,0.2126,0.1379,-0.9808,0.1379,0.2706,-0.9239,0.2706,0.2706,-0.9239,0.2706,0.1379,-0.9808,0.1379,0.1084,-0.9808,0.1622,0.2706,-0.9239,0.2706,0.1084,-0.9808,0.1622,0.2126,-0.9239,0.3182,0.2126,-0.9239,0.3182,0.1084,-0.9808,0.1622,0.0747,-0.9808,0.1802,0.2126,-0.9239,0.3182,0.0747,-0.9808,0.1802,0.1464,-0.9239,0.3536,0.1464,-0.9239,0.3536,0.0747,-0.9808,0.1802,0.0381,-0.9808,0.1913,0.1464,-0.9239,0.3536,0.0381,-0.9808,0.1913,0.0747,-0.9239,0.3753,0.0747,-0.9239,0.3753,0.0381,-0.9808,0.1913,0.0,-0.9808,0.1951,0.0747,-0.9239,0.3753,0.0,-0.9808,0.1951,0.0,-0.9239,0.3827,0.0,-1.0,0.0,-0.0381,-0.9808,0.1913,0.0,-0.9808,0.1951,0.0,-1.0,0.0,-0.0747,-0.9808,0.1802,-0.0381,-0.9808,0.1913,0.0,-1.0,0.0,-0.1084,-0.9808,0.1622,-0.0747,-0.9808,0.1802,0.0,-1.0,0.0,-0.1379,-0.9808,0.1379,-0.1084,-0.9808,0.1622,0.0,-1.0,0.0,-0.1622,-0.9808,0.1084,-0.1379,-0.9808,0.1379,0.0,-1.0,0.0,-0.1802,-0.9808,0.0747,-0.1622,-0.9808,0.1084,0.0,-1.0,0.0,-0.1913,-0.9808,0.0381,-0.1802,-0.9808,0.0747,0.0,-1.0,0.0,-0.1951,-0.9808,0.0,-0.1913,-0.9808,0.0381,0.0,-1.0,0.0,-0.1913,-0.9808,-0.0381,-0.1951,-0.9808,0.0,0.0,-1.0,0.0,-0.1802,-0.9808,-0.0747,-0.1913,-0.9808,-0.0381,0.0,-1.0,0.0,-0.1622,-0.9808,-0.1084,-0.1802,-0.9808,-0.0747,0.0,-1.0,0.0,-0.1379,-0.9808,-0.1379,-0.1622,-0.9808,-0.1084,0.0,-1.0,0.0,-0.1084,-0.9808,-0.1622,-0.1379,-0.9808,-0.1379,0.0,-1.0,0.0,-0.0747,-0.9808,-0.1802,-0.1084,-0.9808,-0.1622,0.0,-1.0,0.0,-0.0381,-0.9808,-0.1913,-0.0747,-0.9808,-0.1802,0.0,-1.0,0.0,0.0,-0.9808,-0.1951,-0.0381,-0.9808,-0.1913,0.0,-1.0,0.0,0.0381,-0.9808,-0.1913,0.0,-0.9808,-0.1951,0.0,-1.0,0.0,0.0747,-0.9808,-0.1802,0.0381,-0.9808,-0.1913,0.0,-1.0,0.0,0.1084,-0.9808,-0.1622,0.0747,-0.9808,-0.1802,0.0,-1.0,0.0,0.1379,-0.9808,-0.1379,0.1084,-0.9808,-0.1622,0.0,-1.0,0.0,0.1622,-0.9808,-0.1084,0.1379,-0.9808,-0.1379,0.0,-1.0,0.0,0.1802,-0.9808,-0.0747,0.1622,-0.9808,-0.1084,0.0,-1.0,0.0,0.1913,-0.9808,-0.0381,0.1802,-0.9808,-0.0747,0.0,-1.0,0.0,0.1951,-0.9808,0.0,0.1913,-0.9808,-0.0381,0.0,-1.0,0.0,0.1913,-0.9808,0.0381,0.1951,-0.9808,0.0,0.0,-1.0,0.0,0.1802,-0.9808,0.0747,0.1913,-0.9808,0.0381,0.0,-1.0,0.0,0.1622,-0.9808,0.1084,0.1802,-0.9808,0.0747,0.0,-1.0,0.0,0.1379,-0.9808,0.1379,0.1622,-0.9808,0.1084,0.0,-1.0,0.0,0.1084,-0.9808,0.1622,0.1379,-0.9808,0.1379,0.0,-1.0,0.0,0.0747,-0.9808,0.1802,0.1084,-0.9808,0.1622,0.0,-1.0,0.0,0.0381,-0.9808,0.1913,0.0747,-0.9808,0.1802,0.0,-1.0,0.0,0.0,-0.9808,0.1951,0.0381,-0.9808,0.1913],"normals":[0.0,1.0,0.0,0.0,0.9796,0.201,-0.0392,0.9796,0.1971,0.0,1.0,0.0,-0.0392,0.9796,0.1971,-0.0769,0.9796,0.1857,0.0,1.0,0.0,-0.0769,0.9796,0.1857,-0.1117,0.9796,0.1671,0.0,1.0,0.0,-0.1117,0.9796,0.1671,-0.1421,0.9796,0.1421,0.0,1.0,0.0,-0.1421,0.9796,0.1421,-0.1671,0.9796,0.1117,0.0,1.0,0.0,-0.1671,0.9796,0.1117,-0.1857,0.9796,0.0769,0.0,1.0,0.0,-0.1857,0.9796,0.0769,-0.1971,0.9796,0.0392,0.0,1.0,0.0,-0.1971,0.9796,0.0392,-0.201,0.9796,0.0,0.0,1.0,0.0,-0.201,0.9796,0.0,-0.1971,0.9796,-0.0392,0.0,1.0,0.0,-0.1971,0.9796,-0.0392,-0.1857,0.9796,-0.0769,0.0,1.0,0.0,-0.1857,0.9796,-0.0769,-0.1671,0.9796,-0.1117,0.0,1.0,0.0,-0.1671,0.9796,-0.1117,-0.1421,0.9796,-0.1421,0.0,1.0,0.0,-0.1421,0.9796,-0.1421,-0.1117,0.9796,-0.1671,0.0,1.0,0.0,-0.1117,0.9796,-0.1671,-0.0769,0.9796,-0.1857,0.0,1.0,0.0,-0.0769,0.9796,-0.1857,-0.0392,0.9796,-0.1971,0.0,1.0,0.0,-0.0392,0.9796,-0.1971,0.0,0.9796,-0.201,0.0,1.0,0.0,0.0,0.9796,-0.201,0.0392,0.9796,-0.1971,0.0,1.0,0.0,0.0392,0.9796,-0.1971,0.0769,0.9796,-0.1857,0.0,1.0,0.0,0.0769,0.9796,-0.1857,0.1117,0.9796,-0.1671,0.0,1.0,0.0,0.1117,0.9796,-0.1671,0.1421,0.9796,-0.1421,0.0,1.0,0.0,0.1421,0.9796,-0.1421,0.1671,0.9796,-0.1117,0.0,1.0,0.0,0.1671,0.9796,-0.1117,0.1857,0.9796,-0.0769,0.0,1.0,0.0,0.1857,0.9796,-0.0769,0.1971,0.9796,-0.0392,0.0,1.0,0.0,0.1971,0.9796,-0.0392,0.201,0.9796,0.0,0.0,1.0,0.0,0.201,0.9796,0.0,0.1971,0.9796,0.0392,0.0,1.0,0.0,0.1971,0.9796,0.0392,0.1857,0.9796,0.0769,0.0,1.0,0.0,0.1857,0.9796,0.0769,0.1671,0.9796,0.1117,0.0,1.0,0.0,0.1671,0.9796,0.1117,0.1421,0.9796,0.1421,0.0,1.0,0.0,0.1421,0.9796,0.1421,0.1117,0.9796,0.1671,0.0,1.0,0.0,0.1117,0.9796,0.1671,0.0769,0.9796,0.1857,0.0,1.0,0.0,0.0769,0.9796,0.1857,0.0392,0.9796,0.1971,0.0,1.0,0.0,0.0392,0.9796,0.1971,0.0,0.9796,0.201,0.0,0.9796,0.201,0.0,0.9217,0.3879,-0.0757,0.9217,0.3804,0.0,0.9796,0.201,-0.0757,0.9217,0.3804,-0.0392,0.9796,0.1971,-0.0392,0.9796,0.1971,-0.0757,0.9217,0.3804,-0.1484,0.9217,0.3584,-0.0392,0.9796,0.1971,-0.1484,0.9217,0.3584,-0.0769,0.9796,0.1857,-0.0769,0.9796,0.1857,-0.1484,0.9217,0.3584,-0.2155,0.9217,0.3225,-0.0769,0.9796,0.1857,-0.2155,0.9217,0.3225,-0.1117,0.9796,0.1671,-0.1117,0.9796,0.1671,-0.2155,0.9217,0.3225,-0.2743,0.9217,0.2743,-0.1117,0.9796,0.1671,-0.2743,0.9217,0.2743,-0.1421,0.9796,0.1421,-0.1421,0.9796,0.1421,-0.2743,0.9217,0.2743,-0.3225,0.9217,0.2155,-0.1421,0.9796,0.1421,-0.3225,0.9217,0.2155,-0.1671,0.9796,0.1117,-0.1671,0.9796,0.1117,-0.3225,0.9217,0.2155,-0.3584,0.9217,0.1484,-0.1671,0.9796,0.1117,-0.3584,0.9217,0.1484,-0.1857,0.9796,0.0769,-0.1857,0.9796,0.0769,-0.3584,0.9217,0.1484,-0.3804,0.9217,0.0757,-0.1857,0.9796,0.0769,-0.3804,0.9217,0.0757,-0.1971,0.9796,0.0392,-0.1971,0.9796,0.0392,-0.3804,0.9217,0.0757,-0.3879,0.9217,0.0,-0.1971,0.9796,0.0392,-0.3879,0.9217,0.0,-0.201,0.9796,0.0,-0.201,0.9796,0.0,-0.3879,0.9217,0.0,-0.3804,0.9217,-0.0757,-0.201,0.9796,0.0,-0.3804,0.9217,-0.0757,-0.1971,0.9796,-0.0392,-0.1971,0.9796,-0.0392,-0.3804,0.9217,-0.0757,-0.3584,0.9217,-0.1484,-0.1971,0.9796,-0.0392,-0.3584,0.9217,-0.1484,-0.1857,0.9796,-0.0769,-0.1857,0.9796,-0.0769,-0.3584,0.9217,-0.1484,-0.3225,0.9217,-0.2155,-0.1857,0.9796,-0.0769,-0.3225,0.9217,-0.2155,-0.1671,0.9796,-0.1117,-0.1671,0.9796,-0.1117,-0.3225,0.9217,-0.2155,-0.2743,0.9217,-0.2743,-0.1671,0.9796,-0.1117,-0.2743,0.9217,-0.2743,-0.1421,0.9796,-0.1421,-0.1421,0.9796,-0.1421,-0.2743,0.9217,-0.2743,-0.2155,0.9217,-0.3225,-0.1421,0.9796,-0.1421,-0.2155,0.9217,-0.3225,-0.1117,0.9796,-0.1671,-0.1117,0.9796,-0.1671,-0.2155,0.9217,-0.3225,-0.1484,0.9217,-0.3584,-0.1117,0.9796,-0.1671,-0.1484,0.9217,-0.3584,-0.0769,0.9796,-0.1857,-0.0769,0.9796,-0.1857,-0.1484,0.9217,-0.3584,-0.0757,0.9217,-0.3804,-0.0769,0.9796,-0.1857,-0.0757,0.9217,-0.3804,-0.0392,0.9796,-0.1971,-0.0392,0.9796,-0.1971,-0.0757,0.9217,-0.3804,0.0,0.9217,-0.3879,-0.0392,0.9796,-0.1971,0.0,0.9217,-0.3879,0.0,0.9796,-0.201,0.0,0.9796,-0.201,0.0,0.9217,-0.3879,0.0757,0.9217,-0.3804,0.0,0.9796,-0.201,0.0757,0.9217,-0.3804,0.0392,0.9796,-0.1971,0.0392,0.9796,-0.1971,0.0757,0.9217,-0.3804,0.1484,0.9217,-0.3584,0.0392,0.9796,-0.1971,0.1484,0.9217,-0.3584,0.0769,0.9796,-0.1857,0.0769,0.9796,-0.1857,0.1484,0.9217,-0.3584,0.2155,0.9217,-0.3225,0.0769,0.9796,-0.1857,0.2155,0.9217,-0.3225,0.1117,0.9796,-0.1671,0.1117,0.9796,-0.1671,0.2155,0.9217,-0.3225,0.2743,0.9217,-0.2743,0.1117,0.9796,-0.1671,0.2743,0.9217,-0.2743,0.1421,0.9796,-0.1421,0.1421,0.9796,-0.1421,0.2743,0.9217,-0.2743,0.3225,0.9217,-0.2155,0.1421,0.9796,-0.1421,0.3225,0.9217,-0.2155,0.1671,0.9796,-0.1117,0.1671,0.9796,-0.1117,0.3225,0.9217,-0.2155,0.3584,0.9217,-0.1484,0.1671,0.9796,-0.1117,0.3584,0.9217,-0.1484,0.1857,0.9796,-0.0769,0.1857,0.9796,-0.0769,0.3584,0.9217,-0.1484,0.3804,0.9217,-0.0757,0.1857,0.9796,-0.0769,0.3804,0.9217,-0.0757,0.1971,0.9796,-0.0392,0.1971,0.9796,-0.0392,0.3804,0.9217,-0.0757,0.3879,0.9217,0.0,0.1971,0.9796,-0.0392,0.3879,0.9217,0.0,0.201,0.9796,0.0,0.201,0.9796,0.0,0.3879,0.9217,0.0,0.3804,0.9217,0.0757,0.201,0.9796,0.0,0.3804,0.9217,0.0757,0.1971,0.9796,0.0392,0.1971,0.9796,0.0392,0.3804,0.9217,0.0757,0.3584,0.9217,0.1484,0.1971,0.9796,0.0392,0.3584,0.9217,0.1484,0.1857,0.9796,0.0769,0.1857,0.9796,0.0769,0.3584,0.9217,0.1484,0.3225,0.9217,0.2155,0.1857,0.9796,0.0769,0.3225,0.9217,0.2155,0.1671,0.9796,0.1117,0.1671,0.9796,0.1117,0.3225,0.9217,0.2155,0.2743,0.9217,0.2743,0.1671,0.9796,0.1117,0.2743,0.9217,0.2743,0.1421,0.9796,0.1421,0.1421,0.9796,0.1421,0.2743,0.9217,0.2743,0.2155,0.9217,0.3225,0.1421,0.9796,0.1421,0.2155,0.9217,0.3225,0.1117,0.9796,0.1671,0.1117,0.9796,0.1671,0.2155,0.9217,0.3225,0.1484,0.9217,0.3584,0.1117,0.9796,0.1671,0.1484,0.9217,0.3584,0.0769,0.9796,0.1857,0.0769,0.9796,0.1857,0.1484,0.9217,0.3584,0.0757,0.9217,0.3804,0.0769,0.9796,0.1857,0.0757,0.9217,0.3804,0.0392,0.9796,0.1971,0.0392,0.9796,0.1971,0.0757,0.9217,0.3804,0.0,0.9217,0.3879,0.0392,0.9796,0.1971,0.0,0.9217,0.3879,0.0,0.9796,0.201,0.0,0.9217,0.3879,0.0,0.8286,0.5598,-0.1092,0.8286,0.549,0.0,0.9217,0.3879,-0.1092,0.8286,0.549,-0.0757,0.9217,0.3804,-0.0757,0.9217,0.3804,-0.1092,0.8286,0.549,-0.2142,0.8286,0.5172,-0.0757,0.9217,0.3804,-0.2142,0.8286,0.5172,-0.1484,0.9217,0.3584,-0.1484,0.9217,0.3584,-0.2142,0.8286,0.5172,-0.311,0.8286,0.4654,-0.1484,0.9217,0.3584,-0.311,0.8286,0.4654,-0.2155,0.9217,0.3225,-0.2155,0.9217,0.3225,-0.311,0.8286,0.4654,-0.3958,0.8286,0.3958,-0.2155,0.9217,0.3225,-0.3958,0.8286,0.3958,-0.2743,0.9217,0.2743,-0.2743,0.9217,0.2743,-0.3958,0.8286,0.3958,-0.4654,0.8286,0.311,-0.2743,0.9217,0.2743,-0.4654,0.8286,0.311,-0.3225,0.9217,0.2155,-0.3225,0.9217,0.2155,-0.4654,0.8286,0.311,-0.5172,0.8286,0.2142,-0.3225,0.9217,0.2155,-0.5172,0.8286,0.2142,-0.3584,0.9217,0.1484,-0.3584,0.9217,0.1484,-0.5172,0.8286,0.2142,-0.549,0.8286,0.1092,-0.3584,0.9217,0.1484,-0.549,0.8286,0.1092,-0.3804,0.9217,0.0757,-0.3804,0.9217,0.0757,-0.549,0.8286,0.1092,-0.5598,0.8286,0.0,-0.3804,0.9217,0.0757,-0.5598,0.8286,0.0,-0.3879,0.9217,0.0,-0.3879,0.9217,0.0,-0.5598,0.8286,0.0,-0.549,0.8286,-0.1092,-0.3879,0.9217,0.0,-0.549,0.8286,-0.1092,-0.3804,0.9217,-0.0757,-0.3804,0.9217,-0.0757,-0.549,0.8286,-0.1092,-0.5172,0.8286,-0.2142,-0.3804,0.9217,-0.0757,-0.5172,0.8286,-0.2142,-0.3584,0.9217,-0.1484,-0.3584,0.9217,-0.1484,-0.5172,0.8286,-0.2142,-0.4654,0.8286,-0.311,-0.3584,0.9217,-0.1484,-0.4654,0.8286,-0.311,-0.3225,0.9217,-0.2155,-0.3225,0.9217,-0.2155,-0.4654,0.8286,-0.311,-0.3958,0.8286,-0.3958,-0.3225,0.9217,-0.2155,-0.3958,0.8286,-0.3958,-0.2743,0.9217,-0.2743,-0.2743,0.9217,-0.2743,-0.3958,0.8286,-0.3958,-0.311,0.8286,-0.4654,-0.2743,0.9217,-0.2743,-0.311,0.8286,-0.4654,-0.2155,0.9217,-0.3225,-0.2155,0.9217,-0.3225,-0.311,0.8286,-0.4654,-0.2142,0.8286,-0.5172,-0.2155,0.9217,-0.3225,-0.2142,0.8286,-0.5172,-0.1484,0.9217,-0.3584,-0.1484,0.9217,-0.3584,-0.2142,0.8286,-0.5172,-0.1092,0.8286,-0.549,-0.1484,0.9217,-0.3584,-0.1092,0.8286,-0.549,-0.0757,0.9217,-0.3804,-0.0757,0.9217,-0.3804,-0.1092,0.8286,-0.549,0.0,0.8286,-0.5598,-0.0757,0.9217,-0.3804,0.0,0.8286,-0.5598,0.0,0.9217,-0.3879,0.0,0.9217,-0.3879,0.0,0.8286,-0.5598,0.1092,0.8286,-0.549,0.0,0.9217,-0.3879,0.1092,0.8286,-0.549,0.0757,0.9217,-0.3804,0.0757,0.9217,-0.3804,0.1092,0.8286,-0.549,0.2142,0.8286,-0.5172,0.0757,0.9217,-0.3804,0.2142,0.8286,-0.5172,0.1484,0.9217,-0.3584,0.1484,0.9217,-0.3584,0.2142,0.8286,-0.5172,0.311,0.8286,-0.4654,0.1484,0.9217,-0.3584,0.311,0.8286,-0.4654,0.2155,0.9217,-0.3225,0.2155,0.9217,-0.3225,0.311,0.8286,-0.4654,0.3958,0.8286,-0.3958,0.2155,0.9217,-0.3225,0.3958,0.8286,-0.3958,0.2743,0.9217,-0.2743,0.2743,0.9217,-0.2743,0.3958,0.8286,-0.3958,0.4654,0.8286,-0.311,0.2743,0.9217,-0.2743,0.4654,0.8286,-0.311,0.3225,0.9217,-0.2155,0.3225,0.9217,-0.2155,0.4654,0.8286,-0.311,0.5172,0.8286,-0.2142,0.3225,0.9217,-0.2155,0.5172,0.8286,-0.2142,0.3584,0.9217,-0.1484,0.3584,0.9217,-0.1484,0.5172,0.8286,-0.2142,0.549,0.8286,-0.1092,0.3584,0.9217,-0.1484,0.549,0.8286,-0.1092,0.3804,0.9217,-0.0757,0.3804,0.9217,-0.0757,0.549,0.8286,-0.1092,0.5598,0.8286,0.0,0.3804,0.9217,-0.0757,0.5598,0.8286,0.0,0.3879,0.9217,0.0,0.3879,0.9217,0.0,0.5598,0.8286,0.0,0.549,0.8286,0.1092,0.3879,0.9217,0.0,0.549,0.8286,0.1092,0.3804,0.9217,0.0757,0.3804,0.9217,0.0757,0.549,0.8286,0.1092,0.5172,0.8286,0.2142,0.3804,0.9217,0.0757,0.5172,0.8286,0.2142,0.3584,0.9217,0.1484,0.3584,0.9217,0.1484,0.5172,0.8286,0.2142,0.4654,0.8286,0.311,0.3584,0.9217,0.1484,0.4654,0.8286,0.311,0.3225,0.9217,0.2155,0.3225,0.9217,0.2155,0.4654,0.8286,0.311,0.3958,0.8286,0.3958,0.3225,0.9217,0.2155,0.3958,0.8286,0.3958,0.2743,0.9217,0.2743,0.2743,0.9217,0.2743,0.3958,0.8286,0.3958,0.311,0.8286,0.4654,0.2743,0.9217,0.2743,0.311,0.8286,0.4654,0.2155,0.9217,0.3225,0.2155,0.9217,0.3225,0.311,0.8286,0.4654,0.2142,0.8286,0.5172,0.2155,0.9217,0.3225,0.2142,0.8286,0.5172,0.1484,0.9217,0.3584,0.1484,0.9217,0.3584,0.2142,0.8286,0.5172,0.1092,0.8286,0.549,0.1484,0.9217,0.3584,0.1092,0.8286,0.549,0.0757,0.9217,0.3804,0.0757,0.9217,0.3804,0.1092,0.8286,0.549,0.0,0.8286,0.5598,0.0757,0.9217,0.3804,0.0,0.8286,0.5598,0.0,0.9217,0.3879,0.0,0.8286,0.5598,0.0,0.7041,0.7101,-0.1385,0.7041,0.6965,0.0,0.8286,0.5598,-0.1385,0.7041,0.6965,-0.1092,0.8286,0.549,-0.1092,0.8286,0.549,-0.1385,0.7041,0.6965,-0.2718,0.7041,0.6561,-0.1092,0.8286,0.549,-0.2718,0.7041,0.6561,-0.2142,0.8286,0.5172,-0.2142,0.8286,0.5172,-0.2718,0.7041,0.6561,-0.3945,0.7041,0.5905,-0.2142,0.8286,0.5172,-0.3945,0.7041,0.5905,-0.311,0.8286,0.4654,-0.311,0.8286,0.4654,-0.3945,0.7041,0.5905,-0.5021,0.7041,0.5021,-0.311,0.8286,0.4654,-0.5021,0.7041,0.5021,-0.3958,0.8286,0.3958,-0.3958,0.8286,0.3958,-0.5021,0.7041,0.5021,-0.5905,0.7041,0.3945,-0.3958,0.8286,0.3958,-0.5905,0.7041,0.3945,-0.4654,0.8286,0.311,-0.4654,0.8286,0.311,-0.5905,0.7041,0.3945,-0.6561,0.7041,0.2718,-0.4654,0.8286,0.311,-0.6561,0.7041,0.2718,-0.5172,0.8286,0.2142,-0.5172,0.8286,0.2142,-0.6561,0.7041,0.2718,-0.6965,0.7041,0.1385,-0.5172,0.8286,0.2142,-0.6965,0.7041,0.1385,-0.549,0.8286,0.1092,-0.549,0.8286,0.1092,-0.6965,0.7041,0.1385,-0.7101,0.7041,0.0,-0.549,0.8286,0.1092,-0.7101,0.7041,0.0,-0.5598,0.8286,0.0,-0.5598,0.8286,0.0,-0.7101,0.7041,0.0,-0.6965,0.7041,-0.1385,-0.5598,0.8286,0.0,-0.6965,0.7041,-0.1385,-0.549,0.8286,-0.1092,-0.549,0.8286,-0.1092,-0.6965,0.7041,-0.1385,-0.6561,0.7041,-0.2718,-0.549,0.8286,-0.1092,-0.6561,0.7041,-0.2718,-0.5172,0.8286,-0.2142,-0.5172,0.8286,-0.2142,-0.6561,0.7041,-0.2718,-0.5905,0.7041,-0.3945,-0.5172,0.8286,-0.2142,-0.5905,0.7041,-0.3945,-0.4654,0.8286,-0.311,-0.4654,0.8286,-0.311,-0.5905,0.7041,-0.3945,-0.5021,0.7041,-0.5021,-0.4654,0.8286,-0.311,-0.5021,0.7041,-0.5021,-0.3958,0.8286,-0.3958,-0.3958,0.8286,-0.3958,-0.5021,0.7041,-0.5021,-0.3945,0.7041,-0.5905,-0.3958,0.8286,-0.3958,-0.3945,0.7041,-0.5905,-0.311,0.8286,-0.4654,-0.311,0.8286,-0.4654,-0.3945,0.7041,-0.5905,-0.2718,0.7041,-0.6561,-0.311,0.8286,-0.4654,-0.2718,0.7041,-0.6561,-0.2142,0.8286,-0.5172,-0.2142,0.8286,-0.5172,-0.2718,0.7041,-0.6561,-0.1385,0.7041,-0.6965,-0.2142,0.8286,-0.5172,-0.1385,0.7041,-0.6965,-0.1092,0.8286,-0.549,-0.1092,0.8286,-0.549,-0.1385,0.7041,-0.6965,0.0,0.7041,-0.7101,-0.1092,0.8286,-0.549,0.0,0.7041,-0.7101,0.0,0.8286,-0.5598,0.0,0.8286,-0.5598,0.0,0.7041,-0.7101,0.1385,0.7041,-0.6965,0.0,0.8286,-0.5598,0.1385,0.7041,-0.6965,0.1092,0.8286,-0.549,0.1092,0.8286,-0.549,0.1385,0.7041,-0.6965,0.2718,0.7041,-0.6561,0.1092,0.8286,-0.549,0.2718,0.7041,-0.6561,0.2142,0.8286,-0.5172,0.2142,0.8286,-0.5172,0.2718,0.7041,-0.6561,0.3945,0.7041,-0.5905,0.2142,0.8286,-0.5172,0.3945,0.7041,-0.5905,0.311,0.8286,-0.4654,0.311,0.8286,-0.4654,0.3945,0.7041,-0.5905,0.5021,0.7041,-0.5021,0.311,0.8286,-0.4654,0.5021,0.7041,-0.5021,0.3958,0.8286,-0.3958,0.3958,0.8286,-0.3958,0.5021,0.7041,-0.5021,0.5905,0.7041,-0.3945,0.3958,0.8286,-0.3958,0.5905,0.7041,-0.3945,0.4654,0.8286,-0.311,0.4654,0.8286,-0.311,0.5905,0.7041,-0.3945,0.6561,0.7041,-0.2718,0.4654,0.8286,-0.311,0.6561,0.7041,-0.2718,0.5172,0.8286,-0.2142,0.5172,0.8286,-0.2142,0.6561,0.7041,-0.2718,0.6965,0.7041,-0.1385,0.5172,0.8286,-0.2142,0.6965,0.7041,-0.1385,0.549,0.8286,-0.1092,0.549,0.8286,-0.1092,0.6965,0.7041,-0.1385,0.7101,0.7041,0.0,0.549,0.8286,-0.1092,0.7101,0.7041,0.0,0.5598,0.8286,0.0,0.5598,0.8286,0.0,0.7101,0.7041,0.0,0.6965,0.7041,0.1385,0.5598,0.8286,0.0,0.6965,0.7041,0.1385,0.549,0.8286,0.1092,0.549,0.8286,0.1092,0.6965,0.7041,0.1385,0.6561,0.7041,0.2718,0.549,0.8286,0.1092,0.6561,0.7041,0.2718,0.5172,0.8286,0.2142,0.5172,0.8286,0.2142,0.6561,0.7041,0.2718,0.5905,0.7041,0.3945,0.5172,0.8286,0.2142,0.5905,0.7041,0.3945,0.4654,0.8286,0.311,0.4654,0.8286,0.311,0.5905,0.7041,0.3945,0.5021,0.7041,0.5021,0.4654,0.8286,0.311,0.5021,0.7041,0.5021,0.3958,0.8286,0.3958,0.3958,0.8286,0.3958,0.5021,0.7041,0.5021,0.3945,0.7041,0.5905,0.3958,0.8286,0.3958,0.3945,0.7041,0.5905,0.311,0.8286,0.4654,0.311,0.8286,0.4654,0.3945,0.7041,0.5905,0.2718,0.7041,0.6561,0.311,0.8286,0.4654,0.2718,0.7041,0.6561,0.2142,0.8286,0.5172,0.2142,0.8286,0.5172,0.2718,0.7041,0.6561,0.1385,0.7041,0.6965,0.2142,0.8286,0.5172,0.1385,0.7041,0.6965,0.1092,0.8286,0.549,0.1092,0.8286,0.549,0.1385,0.7041,0.6965,0.0,0.7041,0.7101,0.1092,0.8286,0.549,0.0,0.7041,0.7101,0.0,0.8286,0.5598,0.0,0.7041,0.7101,0.0,0.5528,0.8333,-0.1626,0.5528,0.8173,0.0,0.7041,0.7101,-0.1626,0.5528,0.8173,-0.1385,0.7041,0.6965,-0.1385,0.7041,0.6965,-0.1626,0.5528,0.8173,-0.3189,0.5528,0.7699,-0.1385,0.7041,0.6965,-0.3189,0.5528,0.7699,-0.2718,0.7041,0.6561,-0.2718,0.7041,0.6561,-0.3189,0.5528,0.7699,-0.463,0.5528,0.6929,-0.2718,0.7041,0.6561,-0.463,0.5528,0.6929,-0.3945,0.7041,0.5905,-0.3945,0.7041,0.5905,-0.463,0.5528,0.6929,-0.5893,0.5528,0.5893,-0.3945,0.7041,0.5905,-0.5893,0.5528,0.5893,-0.5021,0.7041,0.5021,-0.5021,0.7041,0.5021,-0.5893,0.5528,0.5893,-0.6929,0.5528,0.463,-0.5021,0.7041,0.5021,-0.6929,0.5528,0.463,-0.5905,0.7041,0.3945,-0.5905,0.7041,0.3945,-0.6929,0.5528,0.463,-0.7699,0.5528,0.3189,-0.5905,0.7041,0.3945,-0.7699,0.5528,0.3189,-0.6561,0.7041,0.2718,-0.6561,0.7041,0.2718,-0.7699,0.5528,0.3189,-0.8173,0.5528,0.1626,-0.6561,0.7041,0.2718,-0.8173,0.5528,0.1626,-0.6965,0.7041,0.1385,-0.6965,0.7041,0.1385,-0.8173,0.5528,0.1626,-0.8333,0.5528,0.0,-0.6965,0.7041,0.1385,-0.8333,0.5528,0.0,-0.7101,0.7041,0.0,-0.7101,0.7041,0.0,-0.8333,0.5528,0.0,-0.8173,0.5528,-0.1626,-0.7101,0.7041,0.0,-0.8173,0.5528,-0.1626,-0.6965,0.7041,-0.1385,-0.6965,0.7041,-0.1385,-0.8173,0.5528,-0.1626,-0.7699,0.5528,-0.3189,-0.6965,0.7041,-0.1385,-0.7699,0.5528,-0.3189,-0.6561,0.7041,-0.2718,-0.6561,0.7041,-0.2718,-0.7699,0.5528,-0.3189,-0.6929,0.5528,-0.463,-0.6561,0.7041,-0.2718,-0.6929,0.5528,-0.463,-0.5905,0.7041,-0.3945,-0.5905,0.7041,-0.3945,-0.6929,0.5528,-0.463,-0.5893,0.5528,-0.5893,-0.5905,0.7041,-0.3945,-0.5893,0.5528,-0.5893,-0.5021,0.7041,-0.5021,-0.5021,0.7041,-0.5021,-0.5893,0.5528,-0.5893,-0.463,0.5528,-0.6929,-0.5021,0.7041,-0.5021,-0.463,0.5528,-0.6929,-0.3945,0.7041,-0.5905,-0.3945,0.7041,-0.5905,-0.463,0.5528,-0.6929,-0.3189,0.5528,-0.7699,-0.3945,0.7041,-0.5905,-0.3189,0.5528,-0.7699,-0.2718,0.7041,-0.6561,-0.2718,0.7041,-0.6561,-0.3189,0.5528,-0.7699,-0.1626,0.5528,-0.8173,-0.2718,0.7041,-0.6561,-0.1626,0.5528,-0.8173,-0.1385,0.7041,-0.6965,-0.1385,0.7041,-0.6965,-0.1626,0.5528,-0.8173,0.0,0.5528,-0.8333,-0.1385,0.7041,-0.6965,0.0,0.5528,-0.8333,0.0,0.7041,-0.7101,0.0,0.7041,-0.7101,0.0,0.5528,-0.8333,0.1626,0.5528,-0.8173,0.0,0.7041,-0.7101,0.1626,0.5528,-0.8173,0.1385,0.7041,-0.6965,0.1385,0.7041,-0.6965,0.1626,0.5528,-0.8173,0.3189,0.5528,-0.7699,0.1385,0.7041,-0.6965,0.3189,0.5528,-0.7699,0.2718,0.7041,-0.6561,0.2718,0.7041,-0.6561,0.3189,0.5528,-0.7699,0.463,0.5528,-0.6929,0.2718,0.7041,-0.6561,0.463,0.5528,-0.6929,0.3945,0.7041,-0.5905,0.3945,0.7041,-0.5905,0.463,0.5528,-0.6929,0.5893,0.5528,-0.5893,0.3945,0.7041,-0.5905,0.5893,0.5528,-0.5893,0.5021,0.7041,-0.5021,0.5021,0.7041,-0.5021,0.5893,0.5528,-0.5893,0.6929,0.5528,-0.463,0.5021,0.7041,-0.5021,0.6929,0.5528,-0.463,0.5905,0.7041,-0.3945,0.5905,0.7041,-0.3945,0.6929,0.5528,-0.463,0.7699,0.5528,-0.3189,0.5905,0.7041,-0.3945,0.7699,0.5528,-0.3189,0.6561,0.7041,-0.2718,0.6561,0.7041,-0.2718,0.7699,0.5528,-0.3189,0.8173,0.5528,-0.1626,0.6561,0.7041,-0.2718,0.8173,0.5528,-0.1626,0.6965,0.7041,-0.1385,0.6965,0.7041,-0.1385,0.8173,0.5528,-0.1626,0.8333,0.5528,0.0,0.6965,0.7041,-0.1385,0.8333,0.5528,0.0,0.7101,0.7041,0.0,0.7101,0.7041,0.0,0.8333,0.5528,0.0,0.8173,0.5528,0.1626,0.7101,0.7041,0.0,0.8173,0.5528,0.1626,0.6965,0.7041,0.1385,0.6965,0.7041,0.1385,0.8173,0.5528,0.1626,0.7699,0.5528,0.3189,0.6965,0.7041,0.1385,0.7699,0.5528,0.3189,0.6561,0.7041,0.2718,0.6561,0.7041,0.2718,0.7699,0.5528,0.3189,0.6929,0.5528,0.463,0.6561,0.7041,0.2718,0.6929,0.5528,0.463,0.5905,0.7041,0.3945,0.5905,0.7041,0.3945,0.6929,0.5528,0.463,0.5893,0.5528,0.5893,0.5905,0.7041,0.3945,0.5893,0.5528,0.5893,0.5021,0.7041,0.5021,0.5021,0.7041,0.5021,0.5893,0.5528,0.5893,0.463,0.5528,0.6929,0.5021,0.7041,0.5021,0.463,0.5528,0.6929,0.3945,0.7041,0.5905,0.3945,0.7041,0.5905,0.463,0.5528,0.6929,0.3189,0.5528,0.7699,0.3945,0.7041,0.5905,0.3189,0.5528,0.7699,0.2718,0.7041,0.6561,0.2718,0.7041,0.6561,0.3189,0.5528,0.7699,0.1626,0.5528,0.8173,0.2718,0.7041,0.6561,0.1626,0.5528,0.8173,0.1385,0.7041,0.6965,0.1385,0.7041,0.6965,0.1626,0.5528,0.8173,0.0,0.5528,0.8333,0.1385,0.7041,0.6965,0.0,0.5528,0.8333,0.0,0.7041,0.7101,0.0,0.5528,0.8333,0.0,0.3805,0.9248,-0.1804,0.3805,0.907,0.0,0.5528,0.8333,-0.1804,0.3805,0.907,-0.1626,0.5528,0.8173,-0.1626,0.5528,0.8173,-0.1804,0.3805,0.907,-0.3539,0.3805,0.8544,-0.1626,0.5528,0.8173,-0.3539,0.3805,0.8544,-0.3189,0.5528,0.7699,-0.3189,0.5528,0.7699,-0.3539,0.3805,0.8544,-0.5138,0.3805,0.7689,-0.3189,0.5528,0.7699,-0.5138,0.3805,0.7689,-0.463,0.5528,0.6929,-0.463,0.5528,0.6929,-0.5138,0.3805,0.7689,-0.6539,0.3805,0.6539,-0.463,0.5528,0.6929,-0.6539,0.3805,0.6539,-0.5893,0.5528,0.5893,-0.5893,0.5528,0.5893,-0.6539,0.3805,0.6539,-0.7689,0.3805,0.5138,-0.5893,0.5528,0.5893,-0.7689,0.3805,0.5138,-0.6929,0.5528,0.463,-0.6929,0.5528,0.463,-0.7689,0.3805,0.5138,-0.8544,0.3805,0.3539,-0.6929,0.5528,0.463,-0.8544,0.3805,0.3539,-0.7699,0.5528,0.3189,-0.7699,0.5528,0.3189,-0.8544,0.3805,0.3539,-0.907,0.3805,0.1804,-0.7699,0.5528,0.3189,-0.907,0.3805,0.1804,-0.8173,0.5528,0.1626,-0.8173,0.5528,0.1626,-0.907,0.3805,0.1804,-0.9248,0.3805,0.0,-0.8173,0.5528,0.1626,-0.9248,0.3805,0.0,-0.8333,0.5528,0.0,-0.8333,0.5528,0.0,-0.9248,0.3805,0.0,-0.907,0.3805,-0.1804,-0.8333,0.5528,0.0,-0.907,0.3805,-0.1804,-0.8173,0.5528,-0.1626,-0.8173,0.5528,-0.1626,-0.907,0.3805,-0.1804,-0.8544,0.3805,-0.3539,-0.8173,0.5528,-0.1626,-0.8544,0.3805,-0.3539,-0.7699,0.5528,-0.3189,-0.7699,0.5528,-0.3189,-0.8544,0.3805,-0.3539,-0.7689,0.3805,-0.5138,-0.7699,0.5528,-0.3189,-0.7689,0.3805,-0.5138,-0.6929,0.5528,-0.463,-0.6929,0.5528,-0.463,-0.7689,0.3805,-0.5138,-0.6539,0.3805,-0.6539,-0.6929,0.5528,-0.463,-0.6539,0.3805,-0.6539,-0.5893,0.5528,-0.5893,-0.5893,0.5528,-0.5893,-0.6539,0.3805,-0.6539,-0.5138,0.3805,-0.7689,-0.5893,0.5528,-0.5893,-0.5138,0.3805,-0.7689,-0.463,0.5528,-0.6929,-0.463,0.5528,-0.6929,-0.5138,0.3805,-0.7689,-0.3539,0.3805,-0.8544,-0.463,0.5528,-0.6929,-0.3539,0.3805,-0.8544,-0.3189,0.5528,-0.7699,-0.3189,0.5528,-0.7699,-0.3539,0.3805,-0.8544,-0.1804,0.3805,-0.907,-0.3189,0.5528,-0.7699,-0.1804,0.3805,-0.907,-0.1626,0.5528,-0.8173,-0.1626,0.5528,-0.8173,-0.1804,0.3805,-0.907,0.0,0.3805,-0.9248,-0.1626,0.5528,-0.8173,0.0,0.3805,-0.9248,0.0,0.5528,-0.8333,0.0,0.5528,-0.8333,0.0,0.3805,-0.9248,0.1804,0.3805,-0.907,0.0,0.5528,-0.8333,0.1804,0.3805,-0.907,0.1626,0.5528,-0.8173,0.1626,0.5528,-0.8173,0.1804,0.3805,-0.907,0.3539,0.3805,-0.8544,0.1626,0.5528,-0.8173,0.3539,0.3805,-0.8544,0.3189,0.5528,-0.7699,0.3189,0.5528,-0.7699,0.3539,0.3805,-0.8544,0.5138,0.3805,-0.7689,0.3189,0.5528,-0.7699,0.5138,0.3805,-0.7689,0.463,0.5528,-0.6929,0.463,0.5528,-0.6929,0.5138,0.3805,-0.7689,0.6539,0.3805,-0.6539,0.463,0.5528,-0.6929,0.6539,0.3805,-0.6539,0.5893,0.5528,-0.5893,0.5893,0.5528,-0.5893,0.6539,0.3805,-0.6539,0.7689,0.3805,-0.5138,0.5893,0.5528,-0.5893,0.7689,0.3805,-0.5138,0.6929,0.5528,-0.463,0.6929,0.5528,-0.463,0.7689,0.3805,-0.5138,0.8544,0.3805,-0.3539,0.6929,0.5528,-0.463,0.8544,0.3805,-0.3539,0.7699,0.5528,-0.3189,0.7699,0.5528,-0.3189,0.8544,0.3805,-0.3539,0.907,0.3805,-0.1804,0.7699,0.5528,-0.3189,0.907,0.3805,-0.1804,0.8173,0.5528,-0.1626,0.8173,0.5528,-0.1626,0.907,0.3805,-0.1804,0.9248,0.3805,0.0,0.8173,0.5528,-0.1626,0.9248,0.3805,0.0,0.8333,0.5528,0.0,0.8333,0.5528,0.0,0.9248,0.3805,0.0,0.907,0.3805,0.1804,0.8333,0.5528,0.0,0.907,0.3805,0.1804,0.8173,0.5528,0.1626,0.8173,0.5528,0.1626,0.907,0.3805,0.1804,0.8544,0.3805,0.3539,0.8173,0.5528,0.1626,0.8544,0.3805,0.3539,0.7699,0.5528,0.3189,0.7699,0.5528,0.3189,0.8544,0.3805,0.3539,0.7689,0.3805,0.5138,0.7699,0.5528,0.3189,0.7689,0.3805,0.5138,0.6929,0.5528,0.463,0.6929,0.5528,0.463,0.7689,0.3805,0.5138,0.6539,0.3805,0.6539,0.6929,0.5528,0.463,0.6539,0.3805,0.6539,0.5893,0.5528,0.5893,0.5893,0.5528,0.5893,0.6539,0.3805,0.6539,0.5138,0.3805,0.7689,0.5893,0.5528,0.5893,0.5138,0.3805,0.7689,0.463,0.5528,0.6929,0.463,0.5528,0.6929,0.5138,0.3805,0.7689,0.3539,0.3805,0.8544,0.463,0.5528,0.6929,0.3539,0.3805,0.8544,0.3189,0.5528,0.7699,0.3189,0.5528,0.7699,0.3539,0.3805,0.8544,0.1804,0.3805,0.907,0.3189,0.5528,0.7699,0.1804,0.3805,0.907,0.1626,0.5528,0.8173,0.1626,0.5528,0.8173,0.1804,0.3805,0.907,0.0,0.3805,0.9248,0.1626,0.5528,0.8173,0.0,0.3805,0.9248,0.0,0.5528,0.8333,0.0,0.3805,0.9248,0.0,0.1939,0.981,-0.1914,0.1939,0.9622,0.0,0.3805,0.9248,-0.1914,0.1939,0.9622,-0.1804,0.3805,0.907,-0.1804,0.3805,0.907,-0.1914,0.1939,0.9622,-0.3754,0.1939,0.9063,-0.1804,0.3805,0.907,-0.3754,0.1939,0.9063,-0.3539,0.3805,0.8544,-0.3539,0.3805,0.8544,-0.3754,0.1939,0.9063,-0.545,0.1939,0.8157,-0.3539,0.3805,0.8544,-0.545,0.1939,0.8157,-0.5138,0.3805,0.7689,-0.5138,0.3805,0.7689,-0.545,0.1939,0.8157,-0.6937,0.1939,0.6937,-0.5138,0.3805,0.7689,-0.6937,0.1939,0.6937,-0.6539,0.3805,0.6539,-0.6539,0.3805,0.6539,-0.6937,0.1939,0.6937,-0.8157,0.1939,0.545,-0.6539,0.3805,0.6539,-0.8157,0.1939,0.545,-0.7689,0.3805,0.5138,-0.7689,0.3805,0.5138,-0.8157,0.1939,0.545,-0.9063,0.1939,0.3754,-0.7689,0.3805,0.5138,-0.9063,0.1939,0.3754,-0.8544,0.3805,0.3539,-0.8544,0.3805,0.3539,-0.9063,0.1939,0.3754,-0.9622,0.1939,0.1914,-0.8544,0.3805,0.3539,-0.9622,0.1939,0.1914,-0.907,0.3805,0.1804,-0.907,0.3805,0.1804,-0.9622,0.1939,0.1914,-0.981,0.1939,0.0,-0.907,0.3805,0.1804,-0.981,0.1939,0.0,-0.9248,0.3805,0.0,-0.9248,0.3805,0.0,-0.981,0.1939,0.0,-0.9622,0.1939,-0.1914,-0.9248,0.3805,0.0,-0.9622,0.1939,-0.1914,-0.907,0.3805,-0.1804,-0.907,0.3805,-0.1804,-0.9622,0.1939,-0.1914,-0.9063,0.1939,-0.3754,-0.907,0.3805,-0.1804,-0.9063,0.1939,-0.3754,-0.8544,0.3805,-0.3539,-0.8544,0.3805,-0.3539,-0.9063,0.1939,-0.3754,-0.8157,0.1939,-0.545,-0.8544,0.3805,-0.3539,-0.8157,0.1939,-0.545,-0.7689,0.3805,-0.5138,-0.7689,0.3805,-0.5138,-0.8157,0.1939,-0.545,-0.6937,0.1939,-0.6937,-0.7689,0.3805,-0.5138,-0.6937,0.1939,-0.6937,-0.6539,0.3805,-0.6539,-0.6539,0.3805,-0.6539,-0.6937,0.1939,-0.6937,-0.545,0.1939,-0.8157,-0.6539,0.3805,-0.6539,-0.545,0.1939,-0.8157,-0.5138,0.3805,-0.7689,-0.5138,0.3805,-0.7689,-0.545,0.1939,-0.8157,-0.3754,0.1939,-0.9063,-0.5138,0.3805,-0.7689,-0.3754,0.1939,-0.9063,-0.3539,0.3805,-0.8544,-0.3539,0.3805,-0.8544,-0.3754,0.1939,-0.9063,-0.1914,0.1939,-0.9622,-0.3539,0.3805,-0.8544,-0.1914,0.1939,-0.9622,-0.1804,0.3805,-0.907,-0.1804,0.3805,-0.907,-0.1914,0.1939,-0.9622,0.0,0.1939,-0.981,-0.1804,0.3805,-0.907,0.0,0.1939,-0.981,0.0,0.3805,-0.9248,0.0,0.3805,-0.9248,0.0,0.1939,-0.981,0.1914,0.1939,-0.9622,0.0,0.3805,-0.9248,0.1914,0.1939,-0.9622,0.1804,0.3805,-0.907,0.1804,0.3805,-0.907,0.1914,0.1939,-0.9622,0.3754,0.1939,-0.9063,0.1804,0.3805,-0.907,0.3754,0.1939,-0.9063,0.3539,0.3805,-0.8544,0.3539,0.3805,-0.8544,0.3754,0.1939,-0.9063,0.545,0.1939,-0.8157,0.3539,0.3805,-0.8544,0.545,0.1939,-0.8157,0.5138,0.3805,-0.7689,0.5138,0.3805,-0.7689,0.545,0.1939,-0.8157,0.6937,0.1939,-0.6937,0.5138,0.3805,-0.7689,0.6937,0.1939,-0.6937,0.6539,0.3805,-0.6539,0.6539,0.3805,-0.6539,0.6937,0.1939,-0.6937,0.8157,0.1939,-0.545,0.6539,0.3805,-0.6539,0.8157,0.1939,-0.545,0.7689,0.3805,-0.5138,0.7689,0.3805,-0.5138,0.8157,0.1939,-0.545,0.9063,0.1939,-0.3754,0.7689,0.3805,-0.5138,0.9063,0.1939,-0.3754,0.8544,0.3805,-0.3539,0.8544,0.3805,-0.3539,0.9063,0.1939,-0.3754,0.9622,0.1939,-0.1914,0.8544,0.3805,-0.3539,0.9622,0.1939,-0.1914,0.907,0.3805,-0.1804,0.907,0.3805,-0.1804,0.9622,0.1939,-0.1914,0.981,0.1939,0.0,0.907,0.3805,-0.1804,0.981,0.1939,0.0,0.9248,0.3805,0.0,0.9248,0.3805,0.0,0.981,0.1939,0.0,0.9622,0.1939,0.1914,0.9248,0.3805,0.0,0.9622,0.1939,0.1914,0.907,0.3805,0.1804,0.907,0.3805,0.1804,0.9622,0.1939,0.1914,0.9063,0.1939,0.3754,0.907,0.3805,0.1804,0.9063,0.1939,0.3754,0.8544,0.3805,0.3539,0.8544,0.3805,0.3539,0.9063,0.1939,0.3754,0.8157,0.1939,0.545,0.8544,0.3805,0.3539,0.8157,0.1939,0.545,0.7689,0.3805,0.5138,0.7689,0.3805,0.5138,0.8157,0.1939,0.545,0.6937,0.1939,0.6937,0.7689,0.3805,0.5138,0.6937,0.1939,0.6937,0.6539,0.3805,0.6539,0.6539,0.3805,0.6539,0.6937,0.1939,0.6937,0.545,0.1939,0.8157,0.6539,0.3805,0.6539,0.545,0.1939,0.8157,0.5138,0.3805,0.7689,0.5138,0.3805,0.7689,0.545,0.1939,0.8157,0.3754,0.1939,0.9063,0.5138,0.3805,0.7689,0.3754,0.1939,0.9063,0.3539,0.3805,0.8544,0.3539,0.3805,0.8544,0.3754,0.1939,0.9063,0.1914,0.1939,0.9622,0.3539,0.3805,0.8544,0.1914,0.1939,0.9622,0.1804,0.3805,0.907,0.1804,0.3805,0.907,0.1914,0.1939,0.9622,0.0,0.1939,0.981,0.1804,0.3805,0.907,0.0,0.1939,0.981,0.0,0.3805,0.9248,0.0,0.1939,0.981,0.0,0.0,1.0,-0.1951,0.0,0.9808,0.0,0.1939,0.981,-0.1951,0.0,0.9808,-0.1914,0.1939,0.9622,-0.1914,0.1939,0.9622,-0.1951,0.0,0.9808,-0.3827,0.0,0.9239,-0.1914,0.1939,0.9622,-0.3827,0.0,0.9239,-0.3754,0.1939,0.9063,-0.3754,0.1939,0.9063,-0.3827,0.0,0.9239,-0.5556,0.0,0.8315,-0.3754,0.1939,0.9063,-0.5556,0.0,0.8315,-0.545,0.1939,0.8157,-0.545,0.1939,0.8157,-0.5556,0.0,0.8315,-0.7071,0.0,0.7071,-0.545,0.1939,0.8157,-0.7071,0.0,0.7071,-0.6937,0.1939,0.6937,-0.6937,0.1939,0.6937,-0.7071,0.0,0.7071,-0.8315,0.0,0.5556,-0.6937,0.1939,0.6937,-0.8315,0.0,0.5556,-0.8157,0.1939,0.545,-0.8157,0.1939,0.545,-0.8315,0.0,0.5556,-0.9239,0.0,0.3827,-0.8157,0.1939,0.545,-0.9239,0.0,0.3827,-0.9063,0.1939,0.3754,-0.9063,0.1939,0.3754,-0.9239,0.0,0.3827,-0.9808,0.0,0.1951,-0.9063,0.1939,0.3754,-0.9808,0.0,0.1951,-0.9622,0.1939,0.1914,-0.9622,0.1939,0.1914,-0.9808,0.0,0.1951,-1.0,0.0,0.0,-0.9622,0.1939,0.1914,-1.0,0.0,0.0,-0.981,0.1939,0.0,-0.981,0.1939,0.0,-1.0,0.0,0.0,-0.9808,0.0,-0.1951,-0.981,0.1939,0.0,-0.9808,0.0,-0.1951,-0.9622,0.1939,-0.1914,-0.9622,0.1939,-0.1914,-0.9808,0.0,-0.1951,-0.9239,0.0,-0.3827,-0.9622,0.1939,-0.1914,-0.9239,0.0,-0.3827,-0.9063,0.1939,-0.3754,-0.9063,0.1939,-0.3754,-0.9239,0.0,-0.3827,-0.8315,0.0,-0.5556,-0.9063,0.1939,-0.3754,-0.8315,0.0,-0.5556,-0.8157,0.1939,-0.545,-0.8157,0.1939,-0.545,-0.8315,0.0,-0.5556,-0.7071,0.0,-0.7071,-0.8157,0.1939,-0.545,-0.7071,0.0,-0.7071,-0.6937,0.1939,-0.6937,-0.6937,0.1939,-0.6937,-0.7071,0.0,-0.7071,-0.5556,0.0,-0.8315,-0.6937,0.1939,-0.6937,-0.5556,0.0,-0.8315,-0.545,0.1939,-0.8157,-0.545,0.1939,-0.8157,-0.5556,0.0,-0.8315,-0.3827,0.0,-0.9239,-0.545,0.1939,-0.8157,-0.3827,0.0,-0.9239,-0.3754,0.1939,-0.9063,-0.3754,0.1939,-0.9063,-0.3827,0.0,-0.9239,-0.1951,0.0,-0.9808,-0.3754,0.1939,-0.9063,-0.1951,0.0,-0.9808,-0.1914,0.1939,-0.9622,-0.1914,0.1939,-0.9622,-0.1951,0.0,-0.9808,0.0,0.0,-1.0,-0.1914,0.1939,-0.9622,0.0,0.0,-1.0,0.0,0.1939,-0.981,0.0,0.1939,-0.981,0.0,0.0,-1.0,0.1951,0.0,-0.9808,0.0,0.1939,-0.981,0.1951,0.0,-0.9808,0.1914,0.1939,-0.9622,0.1914,0.1939,-0.9622,0.1951,0.0,-0.9808,0.3827,0.0,-0.9239,0.1914,0.1939,-0.9622,0.3827,0.0,-0.9239,0.3754,0.1939,-0.9063,0.3754,0.1939,-0.9063,0.3827,0.0,-0.9239,0.5556,0.0,-0.8315,0.3754,0.1939,-0.9063,0.5556,0.0,-0.8315,0.545,0.1939,-0.8157,0.545,0.1939,-0.8157,0.5556,0.0,-0.8315,0.7071,0.0,-0.7071,0.545,0.1939,-0.8157,0.7071,0.0,-0.7071,0.6937,0.1939,-0.6937,0.6937,0.1939,-0.6937,0.7071,0.0,-0.7071,0.8315,0.0,-0.5556,0.6937,0.1939,-0.6937,0.8315,0.0,-0.5556,0.8157,0.1939,-0.545,0.8157,0.1939,-0.545,0.8315,0.0,-0.5556,0.9239,0.0,-0.3827,0.8157,0.1939,-0.545,0.9239,0.0,-0.3827,0.9063,0.1939,-0.3754,0.9063,0.1939,-0.3754,0.9239,0.0,-0.3827,0.9808,0.0,-0.1951,0.9063,0.1939,-0.3754,0.9808,0.0,-0.1951,0.9622,0.1939,-0.1914,0.9622,0.1939,-0.1914,0.9808,0.0,-0.1951,1.0,0.0,0.0,0.9622,0.1939,-0.1914,1.0,0.0,0.0,0.981,0.1939,0.0,0.981,0.1939,0.0,1.0,0.0,0.0,0.9808,0.0,0.1951,0.981,0.1939,0.0,0.9808,0.0,0.1951,0.9622,0.1939,0.1914,0.9622,0.1939,0.1914,0.9808,0.0,0.1951,0.9239,0.0,0.3827,0.9622,0.1939,0.1914,0.9239,0.0,0.3827,0.9063,0.1939,0.3754,0.9063,0.1939,0.3754,0.9239,0.0,0.3827,0.8315,0.0,0.5556,0.9063,0.1939,0.3754,0.8315,0.0,0.5556,0.8157,0.1939,0.545,0.8157,0.1939,0.545,0.8315,0.0,0.5556,0.7071,0.0,0.7071,0.8157,0.1939,0.545,0.7071,0.0,0.7071,0.6937,0.1939,0.6937,0.6937,0.1939,0.6937,0.7071,0.0,0.7071,0.5556,0.0,0.8315,0.6937,0.1939,0.6937,0.5556,0.0,0.8315,0.545,0.1939,0.8157,0.545,0.1939,0.8157,0.5556,0.0,0.8315,0.3827,0.0,0.9239,0.545,0.1939,0.8157,0.3827,0.0,0.9239,0.3754,0.1939,0.9063,0.3754,0.1939,0.9063,0.3827,0.0,0.9239,0.1951,0.0,0.9808,0.3754,0.1939,0.9063,0.1951,0.0,0.9808,0.1914,0.1939,0.9622,0.1914,0.1939,0.9622,0.1951,0.0,0.9808,0.0,0.0,1.0,0.1914,0.1939,0.9622,0.0,0.0,1.0,0.0,0.1939,0.981,0.0,0.0,1.0,0.0,-0.1939,0.981,-0.1914,-0.1939,0.9622,0.0,0.0,1.0,-0.1914,-0.1939,0.9622,-0.1951,0.0,0.9808,-0.1951,0.0,0.9808,-0.1914,-0.1939,0.9622,-0.3754,-0.1939,0.9063,-0.1951,0.0,0.9808,-0.3754,-0.1939,0.9063,-0.3827,0.0,0.9239,-0.3827,0.0,0.9239,-0.3754,-0.1939,0.9063,-0.545,-0.1939,0.8157,-0.3827,0.0,0.9239,-0.545,-0.1939,0.8157,-0.5556,0.0,0.8315,-0.5556,0.0,0.8315,-0.545,-0.1939,0.8157,-0.6937,-0.1939,0.6937,-0.5556,0.0,0.8315,-0.6937,-0.1939,0.6937,-0.7071,0.0,0.7071,-0.7071,0.0,0.7071,-0.6937,-0.1939,0.6937,-0.8157,-0.1939,0.545,-0.7071,0.0,0.7071,-0.8157,-0.1939,0.545,-0.8315,0.0,0.5556,-0.8315,0.0,0.5556,-0.8157,-0.1939,0.545,-0.9063,-0.1939,0.3754,-0.8315,0.0,0.5556,-0.9063,-0.1939,0.3754,-0.9239,0.0,0.3827,-0.9239,0.0,0.3827,-0.9063,-0.1939,0.3754,-0.9622,-0.1939,0.1914,-0.9239,0.0,0.3827,-0.9622,-0.1939,0.1914,-0.9808,0.0,0.1951,-0.9808,0.0,0.1951,-0.9622,-0.1939,0.1914,-0.981,-0.1939,0.0,-0.9808,0.0,0.1951,-0.981,-0.1939,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-0.981,-0.1939,0.0,-0.9622,-0.1939,-0.1914,-1.0,0.0,0.0,-0.9622,-0.1939,-0.1914,-0.9808,0.0,-0.1951,-0.9808,0.0,-0.1951,-0.9622,-0.1939,-0.1914,-0.9063,-0.1939,-0.3754,-0.9808,0.0,-0.1951,-0.9063,-0.1939,-0.3754,-0.9239,0.0,-0.3827,-0.9239,0.0,-0.3827,-0.9063,-0.1939,-0.3754,-0.8157,-0.1939,-0.545,-0.9239,0.0,-0.3827,-0.8157,-0.1939,-0.545,-0.8315,0.0,-0.5556,-0.8315,0.0,-0.5556,-0.8157,-0.1939,-0.545,-0.6937,-0.1939,-0.6937,-0.8315,0.0,-0.5556,-0.6937,-0.1939,-0.6937,-0.7071,0.0,-0.7071,-0.7071,0.0,-0.7071,-0.6937,-0.1939,-0.6937,-0.545,-0.1939,-0.8157,-0.7071,0.0,-0.7071,-0.545,-0.1939,-0.8157,-0.5556,0.0,-0.8315,-0.5556,0.0,-0.8315,-0.545,-0.1939,-0.8157,-0.3754,-0.1939,-0.9063,-0.5556,0.0,-0.8315,-0.3754,-0.1939,-0.9063,-0.3827,0.0,-0.9239,-0.3827,0.0,-0.9239,-0.3754,-0.1939,-0.9063,-0.1914,-0.1939,-0.9622,-0.3827,0.0,-0.9239,-0.1914,-0.1939,-0.9622,-0.1951,0.0,-0.9808,-0.1951,0.0,-0.9808,-0.1914,-0.1939,-0.9622,0.0,-0.1939,-0.981,-0.1951,0.0,-0.9808,0.0,-0.1939,-0.981,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,-0.1939,-0.981,0.1914,-0.1939,-0.9622,0.0,0.0,-1.0,0.1914,-0.1939,-0.9622,0.1951,0.0,-0.9808,0.1951,0.0,-0.9808,0.1914,-0.1939,-0.9622,0.3754,-0.1939,-0.9063,0.1951,0.0,-0.9808,0.3754,-0.1939,-0.9063,0.3827,0.0,-0.9239,0.3827,0.0,-0.9239,0.3754,-0.1939,-0.9063,0.545,-0.1939,-0.8157,0.3827,0.0,-0.9239,0.545,-0.1939,-0.8157,0.5556,0.0,-0.8315,0.5556,0.0,-0.8315,0.545,-0.1939,-0.8157,0.6937,-0.1939,-0.6937,0.5556,0.0,-0.8315,0.6937,-0.1939,-0.6937,0.7071,0.0,-0.7071,0.7071,0.0,-0.7071,0.6937,-0.1939,-0.6937,0.8157,-0.1939,-0.545,0.7071,0.0,-0.7071,0.8157,-0.1939,-0.545,0.8315,0.0,-0.5556,0.8315,0.0,-0.5556,0.8157,-0.1939,-0.545,0.9063,-0.1939,-0.3754,0.8315,0.0,-0.5556,0.9063,-0.1939,-0.3754,0.9239,0.0,-0.3827,0.9239,0.0,-0.3827,0.9063,-0.1939,-0.3754,0.9622,-0.1939,-0.1914,0.9239,0.0,-0.3827,0.9622,-0.1939,-0.1914,0.9808,0.0,-0.1951,0.9808,0.0,-0.1951,0.9622,-0.1939,-0.1914,0.981,-0.1939,0.0,0.9808,0.0,-0.1951,0.981,-0.1939,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.981,-0.1939,0.0,0.9622,-0.1939,0.1914,1.0,0.0,0.0,0.9622,-0.1939,0.1914,0.9808,0.0,0.1951,0.9808,0.0,0.1951,0.9622,-0.1939,0.1914,0.9063,-0.1939,0.3754,0.9808,0.0,0.1951,0.9063,-0.1939,0.3754,0.9239,0.0,0.3827,0.9239,0.0,0.3827,0.9063,-0.1939,0.3754,0.8157,-0.1939,0.545,0.9239,0.0,0.3827,0.8157,-0.1939,0.545,0.8315,0.0,0.5556,0.8315,0.0,0.5556,0.8157,-0.1939,0.545,0.6937,-0.1939,0.6937,0.8315,0.0,0.5556,0.6937,-0.1939,0.6937,0.7071,0.0,0.7071,0.7071,0.0,0.7071,0.6937,-0.1939,0.6937,0.545,-0.1939,0.8157,0.7071,0.0,0.7071,0.545,-0.1939,0.8157,0.5556,0.0,0.8315,0.5556,0.0,0.8315,0.545,-0.1939,0.8157,0.3754,-0.1939,0.9063,0.5556,0.0,0.8315,0.3754,-0.1939,0.9063,0.3827,0.0,0.9239,0.3827,0.0,0.9239,0.3754,-0.1939,0.9063,0.1914,-0.1939,0.9622,0.3827,0.0,0.9239,0.1914,-0.1939,0.9622,0.1951,0.0,0.9808,0.1951,0.0,0.9808,0.1914,-0.1939,0.9622,0.0,-0.1939,0.981,0.1951,0.0,0.9808,0.0,-0.1939,0.981,0.0,0.0,1.0,0.0,-0.1939,0.981,0.0,-0.3805,0.9248,-0.1804,-0.3805,0.907,0.0,-0.1939,0.981,-0.1804,-0.3805,0.907,-0.1914,-0.1939,0.9622,-0.1914,-0.1939,0.9622,-0.1804,-0.3805,0.907,-0.3539,-0.3805,0.8544,-0.1914,-0.1939,0.9622,-0.3539,-0.3805,0.8544,-0.3754,-0.1939,0.9063,-0.3754,-0.1939,0.9063,-0.3539,-0.3805,0.8544,-0.5138,-0.3805,0.7689,-0.3754,-0.1939,0.9063,-0.5138,-0.3805,0.7689,-0.545,-0.1939,0.8157,-0.545,-0.1939,0.8157,-0.5138,-0.3805,0.7689,-0.6539,-0.3805,0.6539,-0.545,-0.1939,0.8157,-0.6539,-0.3805,0.6539,-0.6937,-0.1939,0.6937,-0.6937,-0.1939,0.6937,-0.6539,-0.3805,0.6539,-0.7689,-0.3805,0.5138,-0.6937,-0.1939,0.6937,-0.7689,-0.3805,0.5138,-0.8157,-0.1939,0.545,-0.8157,-0.1939,0.545,-0.7689,-0.3805,0.5138,-0.8544,-0.3805,0.3539,-0.8157,-0.1939,0.545,-0.8544,-0.3805,0.3539,-0.9063,-0.1939,0.3754,-0.9063,-0.1939,0.3754,-0.8544,-0.3805,0.3539,-0.907,-0.3805,0.1804,-0.9063,-0.1939,0.3754,-0.907,-0.3805,0.1804,-0.9622,-0.1939,0.1914,-0.9622,-0.1939,0.1914,-0.907,-0.3805,0.1804,-0.9248,-0.3805,0.0,-0.9622,-0.1939,0.1914,-0.9248,-0.3805,0.0,-0.981,-0.1939,0.0,-0.981,-0.1939,0.0,-0.9248,-0.3805,0.0,-0.907,-0.3805,-0.1804,-0.981,-0.1939,0.0,-0.907,-0.3805,-0.1804,-0.9622,-0.1939,-0.1914,-0.9622,-0.1939,-0.1914,-0.907,-0.3805,-0.1804,-0.8544,-0.3805,-0.3539,-0.9622,-0.1939,-0.1914,-0.8544,-0.3805,-0.3539,-0.9063,-0.1939,-0.3754,-0.9063,-0.1939,-0.3754,-0.8544,-0.3805,-0.3539,-0.7689,-0.3805,-0.5138,-0.9063,-0.1939,-0.3754,-0.7689,-0.3805,-0.5138,-0.8157,-0.1939,-0.545,-0.8157,-0.1939,-0.545,-0.7689,-0.3805,-0.5138,-0.6539,-0.3805,-0.6539,-0.8157,-0.1939,-0.545,-0.6539,-0.3805,-0.6539,-0.6937,-0.1939,-0.6937,-0.6937,-0.1939,-0.6937,-0.6539,-0.3805,-0.6539,-0.5138,-0.3805,-0.7689,-0.6937,-0.1939,-0.6937,-0.5138,-0.3805,-0.7689,-0.545,-0.1939,-0.8157,-0.545,-0.1939,-0.8157,-0.5138,-0.3805,-0.7689,-0.3539,-0.3805,-0.8544,-0.545,-0.1939,-0.8157,-0.3539,-0.3805,-0.8544,-0.3754,-0.1939,-0.9063,-0.3754,-0.1939,-0.9063,-0.3539,-0.3805,-0.8544,-0.1804,-0.3805,-0.907,-0.3754,-0.1939,-0.9063,-0.1804,-0.3805,-0.907,-0.1914,-0.1939,-0.9622,-0.1914,-0.1939,-0.9622,-0.1804,-0.3805,-0.907,0.0,-0.3805,-0.9248,-0.1914,-0.1939,-0.9622,0.0,-0.3805,-0.9248,0.0,-0.1939,-0.981,0.0,-0.1939,-0.981,0.0,-0.3805,-0.9248,0.1804,-0.3805,-0.907,0.0,-0.1939,-0.981,0.1804,-0.3805,-0.907,0.1914,-0.1939,-0.9622,0.1914,-0.1939,-0.9622,0.1804,-0.3805,-0.907,0.3539,-0.3805,-0.8544,0.1914,-0.1939,-0.9622,0.3539,-0.3805,-0.8544,0.3754,-0.1939,-0.9063,0.3754,-0.1939,-0.9063,0.3539,-0.3805,-0.8544,0.5138,-0.3805,-0.7689,0.3754,-0.1939,-0.9063,0.5138,-0.3805,-0.7689,0.545,-0.1939,-0.8157,0.545,-0.1939,-0.8157,0.5138,-0.3805,-0.7689,0.6539,-0.3805,-0.6539,0.545,-0.1939,-0.8157,0.6539,-0.3805,-0.6539,0.6937,-0.1939,-0.6937,0.6937,-0.1939,-0.6937,0.6539,-0.3805,-0.6539,0.7689,-0.3805,-0.5138,0.6937,-0.1939,-0.6937,0.7689,-0.3805,-0.5138,0.8157,-0.1939,-0.545,0.8157,-0.1939,-0.545,0.7689,-0.3805,-0.5138,0.8544,-0.3805,-0.3539,0.8157,-0.1939,-0.545,0.8544,-0.3805,-0.3539,0.9063,-0.1939,-0.3754,0.9063,-0.1939,-0.3754,0.8544,-0.3805,-0.3539,0.907,-0.3805,-0.1804,0.9063,-0.1939,-0.3754,0.907,-0.3805,-0.1804,0.9622,-0.1939,-0.1914,0.9622,-0.1939,-0.1914,0.907,-0.3805,-0.1804,0.9248,-0.3805,0.0,0.9622,-0.1939,-0.1914,0.9248,-0.3805,0.0,0.981,-0.1939,0.0,0.981,-0.1939,0.0,0.9248,-0.3805,0.0,0.907,-0.3805,0.1804,0.981,-0.1939,0.0,0.907,-0.3805,0.1804,0.9622,-0.1939,0.1914,0.9622,-0.1939,0.1914,0.907,-0.3805,0.1804,0.8544,-0.3805,0.3539,0.9622,-0.1939,0.1914,0.8544,-0.3805,0.3539,0.9063,-0.1939,0.3754,0.9063,-0.1939,0.3754,0.8544,-0.3805,0.3539,0.7689,-0.3805,0.5138,0.9063,-0.1939,0.3754,0.7689,-0.3805,0.5138,0.8157,-0.1939,0.545,0.8157,-0.1939,0.545,0.7689,-0.3805,0.5138,0.6539,-0.3805,0.6539,0.8157,-0.1939,0.545,0.6539,-0.3805,0.6539,0.6937,-0.1939,0.6937,0.6937,-0.1939,0.6937,0.6539,-0.3805,0.6539,0.5138,-0.3805,0.7689,0.6937,-0.1939,0.6937,0.5138,-0.3805,0.7689,0.545,-0.1939,0.8157,0.545,-0.1939,0.8157,0.5138,-0.3805,0.7689,0.3539,-0.3805,0.8544,0.545,-0.1939,0.8157,0.3539,-0.3805,0.8544,0.3754,-0.1939,0.9063,0.3754,-0.1939,0.9063,0.3539,-0.3805,0.8544,0.1804,-0.3805,0.907,0.3754,-0.1939,0.9063,0.1804,-0.3805,0.907,0.1914,-0.1939,0.9622,0.1914,-0.1939,0.9622,0.1804,-0.3805,0.907,0.0,-0.3805,0.9248,0.1914,-0.1939,0.9622,0.0,-0.3805,0.9248,0.0,-0.1939,0.981,0.0,-0.3805,0.9248,0.0,-0.5528,0.8333,-0.1626,-0.5528,0.8173,0.0,-0.3805,0.9248,-0.1626,-0.5528,0.8173,-0.1804,-0.3805,0.907,-0.1804,-0.3805,0.907,-0.1626,-0.5528,0.8173,-0.3189,-0.5528,0.7699,-0.1804,-0.3805,0.907,-0.3189,-0.5528,0.7699,-0.3539,-0.3805,0.8544,-0.3539,-0.3805,0.8544,-0.3189,-0.5528,0.7699,-0.463,-0.5528,0.6929,-0.3539,-0.3805,0.8544,-0.463,-0.5528,0.6929,-0.5138,-0.3805,0.7689,-0.5138,-0.3805,0.7689,-0.463,-0.5528,0.6929,-0.5893,-0.5528,0.5893,-0.5138,-0.3805,0.7689,-0.5893,-0.5528,0.5893,-0.6539,-0.3805,0.6539,-0.6539,-0.3805,0.6539,-0.5893,-0.5528,0.5893,-0.6929,-0.5528,0.463,-0.6539,-0.3805,0.6539,-0.6929,-0.5528,0.463,-0.7689,-0.3805,0.5138,-0.7689,-0.3805,0.5138,-0.6929,-0.5528,0.463,-0.7699,-0.5528,0.3189,-0.7689,-0.3805,0.5138,-0.7699,-0.5528,0.3189,-0.8544,-0.3805,0.3539,-0.8544,-0.3805,0.3539,-0.7699,-0.5528,0.3189,-0.8173,-0.5528,0.1626,-0.8544,-0.3805,0.3539,-0.8173,-0.5528,0.1626,-0.907,-0.3805,0.1804,-0.907,-0.3805,0.1804,-0.8173,-0.5528,0.1626,-0.8333,-0.5528,0.0,-0.907,-0.3805,0.1804,-0.8333,-0.5528,0.0,-0.9248,-0.3805,0.0,-0.9248,-0.3805,0.0,-0.8333,-0.5528,0.0,-0.8173,-0.5528,-0.1626,-0.9248,-0.3805,0.0,-0.8173,-0.5528,-0.1626,-0.907,-0.3805,-0.1804,-0.907,-0.3805,-0.1804,-0.8173,-0.5528,-0.1626,-0.7699,-0.5528,-0.3189,-0.907,-0.3805,-0.1804,-0.7699,-0.5528,-0.3189,-0.8544,-0.3805,-0.3539,-0.8544,-0.3805,-0.3539,-0.7699,-0.5528,-0.3189,-0.6929,-0.5528,-0.463,-0.8544,-0.3805,-0.3539,-0.6929,-0.5528,-0.463,-0.7689,-0.3805,-0.5138,-0.7689,-0.3805,-0.5138,-0.6929,-0.5528,-0.463,-0.5893,-0.5528,-0.5893,-0.7689,-0.3805,-0.5138,-0.5893,-0.5528,-0.5893,-0.6539,-0.3805,-0.6539,-0.6539,-0.3805,-0.6539,-0.5893,-0.5528,-0.5893,-0.463,-0.5528,-0.6929,-0.6539,-0.3805,-0.6539,-0.463,-0.5528,-0.6929,-0.5138,-0.3805,-0.7689,-0.5138,-0.3805,-0.7689,-0.463,-0.5528,-0.6929,-0.3189,-0.5528,-0.7699,-0.5138,-0.3805,-0.7689,-0.3189,-0.5528,-0.7699,-0.3539,-0.3805,-0.8544,-0.3539,-0.3805,-0.8544,-0.3189,-0.5528,-0.7699,-0.1626,-0.5528,-0.8173,-0.3539,-0.3805,-0.8544,-0.1626,-0.5528,-0.8173,-0.1804,-0.3805,-0.907,-0.1804,-0.3805,-0.907,-0.1626,-0.5528,-0.8173,0.0,-0.5528,-0.8333,-0.1804,-0.3805,-0.907,0.0,-0.5528,-0.8333,0.0,-0.3805,-0.9248,0.0,-0.3805,-0.9248,0.0,-0.5528,-0.8333,0.1626,-0.5528,-0.8173,0.0,-0.3805,-0.9248,0.1626,-0.5528,-0.8173,0.1804,-0.3805,-0.907,0.1804,-0.3805,-0.907,0.1626,-0.5528,-0.8173,0.3189,-0.5528,-0.7699,0.1804,-0.3805,-0.907,0.3189,-0.5528,-0.7699,0.3539,-0.3805,-0.8544,0.3539,-0.3805,-0.8544,0.3189,-0.5528,-0.7699,0.463,-0.5528,-0.6929,0.3539,-0.3805,-0.8544,0.463,-0.5528,-0.6929,0.5138,-0.3805,-0.7689,0.5138,-0.3805,-0.7689,0.463,-0.5528,-0.6929,0.5893,-0.5528,-0.5893,0.5138,-0.3805,-0.7689,0.5893,-0.5528,-0.5893,0.6539,-0.3805,-0.6539,0.6539,-0.3805,-0.6539,0.5893,-0.5528,-0.5893,0.6929,-0.5528,-0.463,0.6539,-0.3805,-0.6539,0.6929,-0.5528,-0.463,0.7689,-0.3805,-0.5138,0.7689,-0.3805,-0.5138,0.6929,-0.5528,-0.463,0.7699,-0.5528,-0.3189,0.7689,-0.3805,-0.5138,0.7699,-0.5528,-0.3189,0.8544,-0.3805,-0.3539,0.8544,-0.3805,-0.3539,0.7699,-0.5528,-0.3189,0.8173,-0.5528,-0.1626,0.8544,-0.3805,-0.3539,0.8173,-0.5528,-0.1626,0.907,-0.3805,-0.1804,0.907,-0.3805,-0.1804,0.8173,-0.5528,-0.1626,0.8333,-0.5528,0.0,0.907,-0.3805,-0.1804,0.8333,-0.5528,0.0,0.9248,-0.3805,0.0,0.9248,-0.3805,0.0,0.8333,-0.5528,0.0,0.8173,-0.5528,0.1626,0.9248,-0.3805,0.0,0.8173,-0.5528,0.1626,0.907,-0.3805,0.1804,0.907,-0.3805,0.1804,0.8173,-0.5528,0.1626,0.7699,-0.5528,0.3189,0.907,-0.3805,0.1804,0.7699,-0.5528,0.3189,0.8544,-0.3805,0.3539,0.8544,-0.3805,0.3539,0.7699,-0.5528,0.3189,0.6929,-0.5528,0.463,0.8544,-0.3805,0.3539,0.6929,-0.5528,0.463,0.7689,-0.3805,0.5138,0.7689,-0.3805,0.5138,0.6929,-0.5528,0.463,0.5893,-0.5528,0.5893,0.7689,-0.3805,0.5138,0.5893,-0.5528,0.5893,0.6539,-0.3805,0.6539,0.6539,-0.3805,0.6539,0.5893,-0.5528,0.5893,0.463,-0.5528,0.6929,0.6539,-0.3805,0.6539,0.463,-0.5528,0.6929,0.5138,-0.3805,0.7689,0.5138,-0.3805,0.7689,0.463,-0.5528,0.6929,0.3189,-0.5528,0.7699,0.5138,-0.3805,0.7689,0.3189,-0.5528,0.7699,0.3539,-0.3805,0.8544,0.3539,-0.3805,0.8544,0.3189,-0.5528,0.7699,0.1626,-0.5528,0.8173,0.3539,-0.3805,0.8544,0.1626,-0.5528,0.8173,0.1804,-0.3805,0.907,0.1804,-0.3805,0.907,0.1626,-0.5528,0.8173,0.0,-0.5528,0.8333,0.1804,-0.3805,0.907,0.0,-0.5528,0.8333,0.0,-0.3805,0.9248,0.0,-0.5528,0.8333,0.0,-0.7041,0.7101,-0.1385,-0.7041,0.6965,0.0,-0.5528,0.8333,-0.1385,-0.7041,0.6965,-0.1626,-0.5528,0.8173,-0.1626,-0.5528,0.8173,-0.1385,-0.7041,0.6965,-0.2718,-0.7041,0.6561,-0.1626,-0.5528,0.8173,-0.2718,-0.7041,0.6561,-0.3189,-0.5528,0.7699,-0.3189,-0.5528,0.7699,-0.2718,-0.7041,0.6561,-0.3945,-0.7041,0.5905,-0.3189,-0.5528,0.7699,-0.3945,-0.7041,0.5905,-0.463,-0.5528,0.6929,-0.463,-0.5528,0.6929,-0.3945,-0.7041,0.5905,-0.5021,-0.7041,0.5021,-0.463,-0.5528,0.6929,-0.5021,-0.7041,0.5021,-0.5893,-0.5528,0.5893,-0.5893,-0.5528,0.5893,-0.5021,-0.7041,0.5021,-0.5905,-0.7041,0.3945,-0.5893,-0.5528,0.5893,-0.5905,-0.7041,0.3945,-0.6929,-0.5528,0.463,-0.6929,-0.5528,0.463,-0.5905,-0.7041,0.3945,-0.6561,-0.7041,0.2718,-0.6929,-0.5528,0.463,-0.6561,-0.7041,0.2718,-0.7699,-0.5528,0.3189,-0.7699,-0.5528,0.3189,-0.6561,-0.7041,0.2718,-0.6965,-0.7041,0.1385,-0.7699,-0.5528,0.3189,-0.6965,-0.7041,0.1385,-0.8173,-0.5528,0.1626,-0.8173,-0.5528,0.1626,-0.6965,-0.7041,0.1385,-0.7101,-0.7041,0.0,-0.8173,-0.5528,0.1626,-0.7101,-0.7041,0.0,-0.8333,-0.5528,0.0,-0.8333,-0.5528,0.0,-0.7101,-0.7041,0.0,-0.6965,-0.7041,-0.1385,-0.8333,-0.5528,0.0,-0.6965,-0.7041,-0.1385,-0.8173,-0.5528,-0.1626,-0.8173,-0.5528,-0.1626,-0.6965,-0.7041,-0.1385,-0.6561,-0.7041,-0.2718,-0.8173,-0.5528,-0.1626,-0.6561,-0.7041,-0.2718,-0.7699,-0.5528,-0.3189,-0.7699,-0.5528,-0.3189,-0.6561,-0.7041,-0.2718,-0.5905,-0.7041,-0.3945,-0.7699,-0.5528,-0.3189,-0.5905,-0.7041,-0.3945,-0.6929,-0.5528,-0.463,-0.6929,-0.5528,-0.463,-0.5905,-0.7041,-0.3945,-0.5021,-0.7041,-0.5021,-0.6929,-0.5528,-0.463,-0.5021,-0.7041,-0.5021,-0.5893,-0.5528,-0.5893,-0.5893,-0.5528,-0.5893,-0.5021,-0.7041,-0.5021,-0.3945,-0.7041,-0.5905,-0.5893,-0.5528,-0.5893,-0.3945,-0.7041,-0.5905,-0.463,-0.5528,-0.6929,-0.463,-0.5528,-0.6929,-0.3945,-0.7041,-0.5905,-0.2718,-0.7041,-0.6561,-0.463,-0.5528,-0.6929,-0.2718,-0.7041,-0.6561,-0.3189,-0.5528,-0.7699,-0.3189,-0.5528,-0.7699,-0.2718,-0.7041,-0.6561,-0.1385,-0.7041,-0.6965,-0.3189,-0.5528,-0.7699,-0.1385,-0.7041,-0.6965,-0.1626,-0.5528,-0.8173,-0.1626,-0.5528,-0.8173,-0.1385,-0.7041,-0.6965,0.0,-0.7041,-0.7101,-0.1626,-0.5528,-0.8173,0.0,-0.7041,-0.7101,0.0,-0.5528,-0.8333,0.0,-0.5528,-0.8333,0.0,-0.7041,-0.7101,0.1385,-0.7041,-0.6965,0.0,-0.5528,-0.8333,0.1385,-0.7041,-0.6965,0.1626,-0.5528,-0.8173,0.1626,-0.5528,-0.8173,0.1385,-0.7041,-0.6965,0.2718,-0.7041,-0.6561,0.1626,-0.5528,-0.8173,0.2718,-0.7041,-0.6561,0.3189,-0.5528,-0.7699,0.3189,-0.5528,-0.7699,0.2718,-0.7041,-0.6561,0.3945,-0.7041,-0.5905,0.3189,-0.5528,-0.7699,0.3945,-0.7041,-0.5905,0.463,-0.5528,-0.6929,0.463,-0.5528,-0.6929,0.3945,-0.7041,-0.5905,0.5021,-0.7041,-0.5021,0.463,-0.5528,-0.6929,0.5021,-0.7041,-0.5021,0.5893,-0.5528,-0.5893,0.5893,-0.5528,-0.5893,0.5021,-0.7041,-0.5021,0.5905,-0.7041,-0.3945,0.5893,-0.5528,-0.5893,0.5905,-0.7041,-0.3945,0.6929,-0.5528,-0.463,0.6929,-0.5528,-0.463,0.5905,-0.7041,-0.3945,0.6561,-0.7041,-0.2718,0.6929,-0.5528,-0.463,0.6561,-0.7041,-0.2718,0.7699,-0.5528,-0.3189,0.7699,-0.5528,-0.3189,0.6561,-0.7041,-0.2718,0.6965,-0.7041,-0.1385,0.7699,-0.5528,-0.3189,0.6965,-0.7041,-0.1385,0.8173,-0.5528,-0.1626,0.8173,-0.5528,-0.1626,0.6965,-0.7041,-0.1385,0.7101,-0.7041,0.0,0.8173,-0.5528,-0.1626,0.7101,-0.7041,0.0,0.8333,-0.5528,0.0,0.8333,-0.5528,0.0,0.7101,-0.7041,0.0,0.6965,-0.7041,0.1385,0.8333,-0.5528,0.0,0.6965,-0.7041,0.1385,0.8173,-0.5528,0.1626,0.8173,-0.5528,0.1626,0.6965,-0.7041,0.1385,0.6561,-0.7041,0.2718,0.8173,-0.5528,0.1626,0.6561,-0.7041,0.2718,0.7699,-0.5528,0.3189,0.7699,-0.5528,0.3189,0.6561,-0.7041,0.2718,0.5905,-0.7041,0.3945,0.7699,-0.5528,0.3189,0.5905,-0.7041,0.3945,0.6929,-0.5528,0.463,0.6929,-0.5528,0.463,0.5905,-0.7041,0.3945,0.5021,-0.7041,0.5021,0.6929,-0.5528,0.463,0.5021,-0.7041,0.5021,0.5893,-0.5528,0.5893,0.5893,-0.5528,0.5893,0.5021,-0.7041,0.5021,0.3945,-0.7041,0.5905,0.5893,-0.5528,0.5893,0.3945,-0.7041,0.5905,0.463,-0.5528,0.6929,0.463,-0.5528,0.6929,0.3945,-0.7041,0.5905,0.2718,-0.7041,0.6561,0.463,-0.5528,0.6929,0.2718,-0.7041,0.6561,0.3189,-0.5528,0.7699,0.3189,-0.5528,0.7699,0.2718,-0.7041,0.6561,0.1385,-0.7041,0.6965,0.3189,-0.5528,0.7699,0.1385,-0.7041,0.6965,0.1626,-0.5528,0.8173,0.1626,-0.5528,0.8173,0.1385,-0.7041,0.6965,0.0,-0.7041,0.7101,0.1626,-0.5528,0.8173,0.0,-0.7041,0.7101,0.0,-0.5528,0.8333,0.0,-0.7041,0.7101,0.0,-0.8286,0.5598,-0.1092,-0.8286,0.549,0.0,-0.7041,0.7101,-0.1092,-0.8286,0.549,-0.1385,-0.7041,0.6965,-0.1385,-0.7041,0.6965,-0.1092,-0.8286,0.549,-0.2142,-0.8286,0.5172,-0.1385,-0.7041,0.6965,-0.2142,-0.8286,0.5172,-0.2718,-0.7041,0.6561,-0.2718,-0.7041,0.6561,-0.2142,-0.8286,0.5172,-0.311,-0.8286,0.4654,-0.2718,-0.7041,0.6561,-0.311,-0.8286,0.4654,-0.3945,-0.7041,0.5905,-0.3945,-0.7041,0.5905,-0.311,-0.8286,0.4654,-0.3958,-0.8286,0.3958,-0.3945,-0.7041,0.5905,-0.3958,-0.8286,0.3958,-0.5021,-0.7041,0.5021,-0.5021,-0.7041,0.5021,-0.3958,-0.8286,0.3958,-0.4654,-0.8286,0.311,-0.5021,-0.7041,0.5021,-0.4654,-0.8286,0.311,-0.5905,-0.7041,0.3945,-0.5905,-0.7041,0.3945,-0.4654,-0.8286,0.311,-0.5172,-0.8286,0.2142,-0.5905,-0.7041,0.3945,-0.5172,-0.8286,0.2142,-0.6561,-0.7041,0.2718,-0.6561,-0.7041,0.2718,-0.5172,-0.8286,0.2142,-0.549,-0.8286,0.1092,-0.6561,-0.7041,0.2718,-0.549,-0.8286,0.1092,-0.6965,-0.7041,0.1385,-0.6965,-0.7041,0.1385,-0.549,-0.8286,0.1092,-0.5598,-0.8286,0.0,-0.6965,-0.7041,0.1385,-0.5598,-0.8286,0.0,-0.7101,-0.7041,0.0,-0.7101,-0.7041,0.0,-0.5598,-0.8286,0.0,-0.549,-0.8286,-0.1092,-0.7101,-0.7041,0.0,-0.549,-0.8286,-0.1092,-0.6965,-0.7041,-0.1385,-0.6965,-0.7041,-0.1385,-0.549,-0.8286,-0.1092,-0.5172,-0.8286,-0.2142,-0.6965,-0.7041,-0.1385,-0.5172,-0.8286,-0.2142,-0.6561,-0.7041,-0.2718,-0.6561,-0.7041,-0.2718,-0.5172,-0.8286,-0.2142,-0.4654,-0.8286,-0.311,-0.6561,-0.7041,-0.2718,-0.4654,-0.8286,-0.311,-0.5905,-0.7041,-0.3945,-0.5905,-0.7041,-0.3945,-0.4654,-0.8286,-0.311,-0.3958,-0.8286,-0.3958,-0.5905,-0.7041,-0.3945,-0.3958,-0.8286,-0.3958,-0.5021,-0.7041,-0.5021,-0.5021,-0.7041,-0.5021,-0.3958,-0.8286,-0.3958,-0.311,-0.8286,-0.4654,-0.5021,-0.7041,-0.5021,-0.311,-0.8286,-0.4654,-0.3945,-0.7041,-0.5905,-0.3945,-0.7041,-0.5905,-0.311,-0.8286,-0.4654,-0.2142,-0.8286,-0.5172,-0.3945,-0.7041,-0.5905,-0.2142,-0.8286,-0.5172,-0.2718,-0.7041,-0.6561,-0.2718,-0.7041,-0.6561,-0.2142,-0.8286,-0.5172,-0.1092,-0.8286,-0.549,-0.2718,-0.7041,-0.6561,-0.1092,-0.8286,-0.549,-0.1385,-0.7041,-0.6965,-0.1385,-0.7041,-0.6965,-0.1092,-0.8286,-0.549,0.0,-0.8286,-0.5598,-0.1385,-0.7041,-0.6965,0.0,-0.8286,-0.5598,0.0,-0.7041,-0.7101,0.0,-0.7041,-0.7101,0.0,-0.8286,-0.5598,0.1092,-0.8286,-0.549,0.0,-0.7041,-0.7101,0.1092,-0.8286,-0.549,0.1385,-0.7041,-0.6965,0.1385,-0.7041,-0.6965,0.1092,-0.8286,-0.549,0.2142,-0.8286,-0.5172,0.1385,-0.7041,-0.6965,0.2142,-0.8286,-0.5172,0.2718,-0.7041,-0.6561,0.2718,-0.7041,-0.6561,0.2142,-0.8286,-0.5172,0.311,-0.8286,-0.4654,0.2718,-0.7041,-0.6561,0.311,-0.8286,-0.4654,0.3945,-0.7041,-0.5905,0.3945,-0.7041,-0.5905,0.311,-0.8286,-0.4654,0.3958,-0.8286,-0.3958,0.3945,-0.7041,-0.5905,0.3958,-0.8286,-0.3958,0.5021,-0.7041,-0.5021,0.5021,-0.7041,-0.5021,0.3958,-0.8286,-0.3958,0.4654,-0.8286,-0.311,0.5021,-0.7041,-0.5021,0.4654,-0.8286,-0.311,0.5905,-0.7041,-0.3945,0.5905,-0.7041,-0.3945,0.4654,-0.8286,-0.311,0.5172,-0.8286,-0.2142,0.5905,-0.7041,-0.3945,0.5172,-0.8286,-0.2142,0.6561,-0.7041,-0.2718,0.6561,-0.7041,-0.2718,0.5172,-0.8286,-0.2142,0.549,-0.8286,-0.1092,0.6561,-0.7041,-0.2718,0.549,-0.8286,-0.1092,0.6965,-0.7041,-0.1385,0.6965,-0.7041,-0.1385,0.549,-0.8286,-0.1092,0.5598,-0.8286,0.0,0.6965,-0.7041,-0.1385,0.5598,-0.8286,0.0,0.7101,-0.7041,0.0,0.7101,-0.7041,0.0,0.5598,-0.8286,0.0,0.549,-0.8286,0.1092,0.7101,-0.7041,0.0,0.549,-0.8286,0.1092,0.6965,-0.7041,0.1385,0.6965,-0.7041,0.1385,0.549,-0.8286,0.1092,0.5172,-0.8286,0.2142,0.6965,-0.7041,0.1385,0.5172,-0.8286,0.2142,0.6561,-0.7041,0.2718,0.6561,-0.7041,0.2718,0.5172,-0.8286,0.2142,0.4654,-0.8286,0.311,0.6561,-0.7041,0.2718,0.4654,-0.8286,0.311,0.5905,-0.7041,0.3945,0.5905,-0.7041,0.3945,0.4654,-0.8286,0.311,0.3958,-0.8286,0.3958,0.5905,-0.7041,0.3945,0.3958,-0.8286,0.3958,0.5021,-0.7041,0.5021,0.5021,-0.7041,0.5021,0.3958,-0.8286,0.3958,0.311,-0.8286,0.4654,0.5021,-0.7041,0.5021,0.311,-0.8286,0.4654,0.3945,-0.7041,0.5905,0.3945,-0.7041,0.5905,0.311,-0.8286,0.4654,0.2142,-0.8286,0.5172,0.3945,-0.7041,0.5905,0.2142,-0.8286,0.5172,0.2718,-0.7041,0.6561,0.2718,-0.7041,0.6561,0.2142,-0.8286,0.5172,0.1092,-0.8286,0.549,0.2718,-0.7041,0.6561,0.1092,-0.8286,0.549,0.1385,-0.7041,0.6965,0.1385,-0.7041,0.6965,0.1092,-0.8286,0.549,0.0,-0.8286,0.5598,0.1385,-0.7041,0.6965,0.0,-0.8286,0.5598,0.0,-0.7041,0.7101,0.0,-0.8286,0.5598,0.0,-0.9217,0.3879,-0.0757,-0.9217,0.3804,0.0,-0.8286,0.5598,-0.0757,-0.9217,0.3804,-0.1092,-0.8286,0.549,-0.1092,-0.8286,0.549,-0.0757,-0.9217,0.3804,-0.1484,-0.9217,0.3584,-0.1092,-0.8286,0.549,-0.1484,-0.9217,0.3584,-0.2142,-0.8286,0.5172,-0.2142,-0.8286,0.5172,-0.1484,-0.9217,0.3584,-0.2155,-0.9217,0.3225,-0.2142,-0.8286,0.5172,-0.2155,-0.9217,0.3225,-0.311,-0.8286,0.4654,-0.311,-0.8286,0.4654,-0.2155,-0.9217,0.3225,-0.2743,-0.9217,0.2743,-0.311,-0.8286,0.4654,-0.2743,-0.9217,0.2743,-0.3958,-0.8286,0.3958,-0.3958,-0.8286,0.3958,-0.2743,-0.9217,0.2743,-0.3225,-0.9217,0.2155,-0.3958,-0.8286,0.3958,-0.3225,-0.9217,0.2155,-0.4654,-0.8286,0.311,-0.4654,-0.8286,0.311,-0.3225,-0.9217,0.2155,-0.3584,-0.9217,0.1484,-0.4654,-0.8286,0.311,-0.3584,-0.9217,0.1484,-0.5172,-0.8286,0.2142,-0.5172,-0.8286,0.2142,-0.3584,-0.9217,0.1484,-0.3804,-0.9217,0.0757,-0.5172,-0.8286,0.2142,-0.3804,-0.9217,0.0757,-0.549,-0.8286,0.1092,-0.549,-0.8286,0.1092,-0.3804,-0.9217,0.0757,-0.3879,-0.9217,0.0,-0.549,-0.8286,0.1092,-0.3879,-0.9217,0.0,-0.5598,-0.8286,0.0,-0.5598,-0.8286,0.0,-0.3879,-0.9217,0.0,-0.3804,-0.9217,-0.0757,-0.5598,-0.8286,0.0,-0.3804,-0.9217,-0.0757,-0.549,-0.8286,-0.1092,-0.549,-0.8286,-0.1092,-0.3804,-0.9217,-0.0757,-0.3584,-0.9217,-0.1484,-0.549,-0.8286,-0.1092,-0.3584,-0.9217,-0.1484,-0.5172,-0.8286,-0.2142,-0.5172,-0.8286,-0.2142,-0.3584,-0.9217,-0.1484,-0.3225,-0.9217,-0.2155,-0.5172,-0.8286,-0.2142,-0.3225,-0.9217,-0.2155,-0.4654,-0.8286,-0.311,-0.4654,-0.8286,-0.311,-0.3225,-0.9217,-0.2155,-0.2743,-0.9217,-0.2743,-0.4654,-0.8286,-0.311,-0.2743,-0.9217,-0.2743,-0.3958,-0.8286,-0.3958,-0.3958,-0.8286,-0.3958,-0.2743,-0.9217,-0.2743,-0.2155,-0.9217,-0.3225,-0.3958,-0.8286,-0.3958,-0.2155,-0.9217,-0.3225,-0.311,-0.8286,-0.4654,-0.311,-0.8286,-0.4654,-0.2155,-0.9217,-0.3225,-0.1484,-0.9217,-0.3584,-0.311,-0.8286,-0.4654,-0.1484,-0.9217,-0.3584,-0.2142,-0.8286,-0.5172,-0.2142,-0.8286,-0.5172,-0.1484,-0.9217,-0.3584,-0.0757,-0.9217,-0.3804,-0.2142,-0.8286,-0.5172,-0.0757,-0.9217,-0.3804,-0.1092,-0.8286,-0.549,-0.1092,-0.8286,-0.549,-0.0757,-0.9217,-0.3804,0.0,-0.9217,-0.3879,-0.1092,-0.8286,-0.549,0.0,-0.9217,-0.3879,0.0,-0.8286,-0.5598,0.0,-0.8286,-0.5598,0.0,-0.9217,-0.3879,0.0757,-0.9217,-0.3804,0.0,-0.8286,-0.5598,0.0757,-0.9217,-0.3804,0.1092,-0.8286,-0.549,0.1092,-0.8286,-0.549,0.0757,-0.9217,-0.3804,0.1484,-0.9217,-0.3584,0.1092,-0.8286,-0.549,0.1484,-0.9217,-0.3584,0.2142,-0.8286,-0.5172,0.2142,-0.8286,-0.5172,0.1484,-0.9217,-0.3584,0.2155,-0.9217,-0.3225,0.2142,-0.8286,-0.5172,0.2155,-0.9217,-0.3225,0.311,-0.8286,-0.4654,0.311,-0.8286,-0.4654,0.2155,-0.9217,-0.3225,0.2743,-0.9217,-0.2743,0.311,-0.8286,-0.4654,0.2743,-0.9217,-0.2743,0.3958,-0.8286,-0.3958,0.3958,-0.8286,-0.3958,0.2743,-0.9217,-0.2743,0.3225,-0.9217,-0.2155,0.3958,-0.8286,-0.3958,0.3225,-0.9217,-0.2155,0.4654,-0.8286,-0.311,0.4654,-0.8286,-0.311,0.3225,-0.9217,-0.2155,0.3584,-0.9217,-0.1484,0.4654,-0.8286,-0.311,0.3584,-0.9217,-0.1484,0.5172,-0.8286,-0.2142,0.5172,-0.8286,-0.2142,0.3584,-0.9217,-0.1484,0.3804,-0.9217,-0.0757,0.5172,-0.8286,-0.2142,0.3804,-0.9217,-0.0757,0.549,-0.8286,-0.1092,0.549,-0.8286,-0.1092,0.3804,-0.9217,-0.0757,0.3879,-0.9217,0.0,0.549,-0.8286,-0.1092,0.3879,-0.9217,0.0,0.5598,-0.8286,0.0,0.5598,-0.8286,0.0,0.3879,-0.9217,0.0,0.3804,-0.9217,0.0757,0.5598,-0.8286,0.0,0.3804,-0.9217,0.0757,0.549,-0.8286,0.1092,0.549,-0.8286,0.1092,0.3804,-0.9217,0.0757,0.3584,-0.9217,0.1484,0.549,-0.8286,0.1092,0.3584,-0.9217,0.1484,0.5172,-0.8286,0.2142,0.5172,-0.8286,0.2142,0.3584,-0.9217,0.1484,0.3225,-0.9217,0.2155,0.5172,-0.8286,0.2142,0.3225,-0.9217,0.2155,0.4654,-0.8286,0.311,0.4654,-0.8286,0.311,0.3225,-0.9217,0.2155,0.2743,-0.9217,0.2743,0.4654,-0.8286,0.311,0.2743,-0.9217,0.2743,0.3958,-0.8286,0.3958,0.3958,-0.8286,0.3958,0.2743,-0.9217,0.2743,0.2155,-0.9217,0.3225,0.3958,-0.8286,0.3958,0.2155,-0.9217,0.3225,0.311,-0.8286,0.4654,0.311,-0.8286,0.4654,0.2155,-0.9217,0.3225,0.1484,-0.9217,0.3584,0.311,-0.8286,0.4654,0.1484,-0.9217,0.3584,0.2142,-0.8286,0.5172,0.2142,-0.8286,0.5172,0.1484,-0.9217,0.3584,0.0757,-0.9217,0.3804,0.2142,-0.8286,0.5172,0.0757,-0.9217,0.3804,0.1092,-0.8286,0.549,0.1092,-0.8286,0.549,0.0757,-0.9217,0.3804,0.0,-0.9217,0.3879,0.1092,-0.8286,0.549,0.0,-0.9217,0.3879,0.0,-0.8286,0.5598,0.0,-0.9217,0.3879,0.0,-0.9796,0.201,-0.0392,-0.9796,0.1971,0.0,-0.9217,0.3879,-0.0392,-0.9796,0.1971,-0.0757,-0.9217,0.3804,-0.0757,-0.9217,0.3804,-0.0392,-0.9796,0.1971,-0.0769,-0.9796,0.1857,-0.0757,-0.9217,0.3804,-0.0769,-0.9796,0.1857,-0.1484,-0.9217,0.3584,-0.1484,-0.9217,0.3584,-0.0769,-0.9796,0.1857,-0.1117,-0.9796,0.1671,-0.1484,-0.9217,0.3584,-0.1117,-0.9796,0.1671,-0.2155,-0.9217,0.3225,-0.2155,-0.9217,0.3225,-0.1117,-0.9796,0.1671,-0.1421,-0.9796,0.1421,-0.2155,-0.9217,0.3225,-0.1421,-0.9796,0.1421,-0.2743,-0.9217,0.2743,-0.2743,-0.9217,0.2743,-0.1421,-0.9796,0.1421,-0.1671,-0.9796,0.1117,-0.2743,-0.9217,0.2743,-0.1671,-0.9796,0.1117,-0.3225,-0.9217,0.2155,-0.3225,-0.9217,0.2155,-0.1671,-0.9796,0.1117,-0.1857,-0.9796,0.0769,-0.3225,-0.9217,0.2155,-0.1857,-0.9796,0.0769,-0.3584,-0.9217,0.1484,-0.3584,-0.9217,0.1484,-0.1857,-0.9796,0.0769,-0.1971,-0.9796,0.0392,-0.3584,-0.9217,0.1484,-0.1971,-0.9796,0.0392,-0.3804,-0.9217,0.0757,-0.3804,-0.9217,0.0757,-0.1971,-0.9796,0.0392,-0.201,-0.9796,0.0,-0.3804,-0.9217,0.0757,-0.201,-0.9796,0.0,-0.3879,-0.9217,0.0,-0.3879,-0.9217,0.0,-0.201,-0.9796,0.0,-0.1971,-0.9796,-0.0392,-0.3879,-0.9217,0.0,-0.1971,-0.9796,-0.0392,-0.3804,-0.9217,-0.0757,-0.3804,-0.9217,-0.0757,-0.1971,-0.9796,-0.0392,-0.1857,-0.9796,-0.0769,-0.3804,-0.9217,-0.0757,-0.1857,-0.9796,-0.0769,-0.3584,-0.9217,-0.1484,-0.3584,-0.9217,-0.1484,-0.1857,-0.9796,-0.0769,-0.1671,-0.9796,-0.1117,-0.3584,-0.9217,-0.1484,-0.1671,-0.9796,-0.1117,-0.3225,-0.9217,-0.2155,-0.3225,-0.9217,-0.2155,-0.1671,-0.9796,-0.1117,-0.1421,-0.9796,-0.1421,-0.3225,-0.9217,-0.2155,-0.1421,-0.9796,-0.1421,-0.2743,-0.9217,-0.2743,-0.2743,-0.9217,-0.2743,-0.1421,-0.9796,-0.1421,-0.1117,-0.9796,-0.1671,-0.2743,-0.9217,-0.2743,-0.1117,-0.9796,-0.1671,-0.2155,-0.9217,-0.3225,-0.2155,-0.9217,-0.3225,-0.1117,-0.9796,-0.1671,-0.0769,-0.9796,-0.1857,-0.2155,-0.9217,-0.3225,-0.0769,-0.9796,-0.1857,-0.1484,-0.9217,-0.3584,-0.1484,-0.9217,-0.3584,-0.0769,-0.9796,-0.1857,-0.0392,-0.9796,-0.1971,-0.1484,-0.9217,-0.3584,-0.0392,-0.9796,-0.1971,-0.0757,-0.9217,-0.3804,-0.0757,-0.9217,-0.3804,-0.0392,-0.9796,-0.1971,0.0,-0.9796,-0.201,-0.0757,-0.9217,-0.3804,0.0,-0.9796,-0.201,0.0,-0.9217,-0.3879,0.0,-0.9217,-0.3879,0.0,-0.9796,-0.201,0.0392,-0.9796,-0.1971,0.0,-0.9217,-0.3879,0.0392,-0.9796,-0.1971,0.0757,-0.9217,-0.3804,0.0757,-0.9217,-0.3804,0.0392,-0.9796,-0.1971,0.0769,-0.9796,-0.1857,0.0757,-0.9217,-0.3804,0.0769,-0.9796,-0.1857,0.1484,-0.9217,-0.3584,0.1484,-0.9217,-0.3584,0.0769,-0.9796,-0.1857,0.1117,-0.9796,-0.1671,0.1484,-0.9217,-0.3584,0.1117,-0.9796,-0.1671,0.2155,-0.9217,-0.3225,0.2155,-0.9217,-0.3225,0.1117,-0.9796,-0.1671,0.1421,-0.9796,-0.1421,0.2155,-0.9217,-0.3225,0.1421,-0.9796,-0.1421,0.2743,-0.9217,-0.2743,0.2743,-0.9217,-0.2743,0.1421,-0.9796,-0.1421,0.1671,-0.9796,-0.1117,0.2743,-0.9217,-0.2743,0.1671,-0.9796,-0.1117,0.3225,-0.9217,-0.2155,0.3225,-0.9217,-0.2155,0.1671,-0.9796,-0.1117,0.1857,-0.9796,-0.0769,0.3225,-0.9217,-0.2155,0.1857,-0.9796,-0.0769,0.3584,-0.9217,-0.1484,0.3584,-0.9217,-0.1484,0.1857,-0.9796,-0.0769,0.1971,-0.9796,-0.0392,0.3584,-0.9217,-0.1484,0.1971,-0.9796,-0.0392,0.3804,-0.9217,-0.0757,0.3804,-0.9217,-0.0757,0.1971,-0.9796,-0.0392,0.201,-0.9796,0.0,0.3804,-0.9217,-0.0757,0.201,-0.9796,0.0,0.3879,-0.9217,0.0,0.3879,-0.9217,0.0,0.201,-0.9796,0.0,0.1971,-0.9796,0.0392,0.3879,-0.9217,0.0,0.1971,-0.9796,0.0392,0.3804,-0.9217,0.0757,0.3804,-0.9217,0.0757,0.1971,-0.9796,0.0392,0.1857,-0.9796,0.0769,0.3804,-0.9217,0.0757,0.1857,-0.9796,0.0769,0.3584,-0.9217,0.1484,0.3584,-0.9217,0.1484,0.1857,-0.9796,0.0769,0.1671,-0.9796,0.1117,0.3584,-0.9217,0.1484,0.1671,-0.9796,0.1117,0.3225,-0.9217,0.2155,0.3225,-0.9217,0.2155,0.1671,-0.9796,0.1117,0.1421,-0.9796,0.1421,0.3225,-0.9217,0.2155,0.1421,-0.9796,0.1421,0.2743,-0.9217,0.2743,0.2743,-0.9217,0.2743,0.1421,-0.9796,0.1421,0.1117,-0.9796,0.1671,0.2743,-0.9217,0.2743,0.1117,-0.9796,0.1671,0.2155,-0.9217,0.3225,0.2155,-0.9217,0.3225,0.1117,-0.9796,0.1671,0.0769,-0.9796,0.1857,0.2155,-0.9217,0.3225,0.0769,-0.9796,0.1857,0.1484,-0.9217,0.3584,0.1484,-0.9217,0.3584,0.0769,-0.9796,0.1857,0.0392,-0.9796,0.1971,0.1484,-0.9217,0.3584,0.0392,-0.9796,0.1971,0.0757,-0.9217,0.3804,0.0757,-0.9217,0.3804,0.0392,-0.9796,0.1971,0.0,-0.9796,0.201,0.0757,-0.9217,0.3804,0.0,-0.9796,0.201,0.0,-0.9217,0.3879,0.0,-1.0,0.0,-0.0392,-0.9796,0.1971,0.0,-0.9796,0.201,0.0,-1.0,0.0,-0.0769,-0.9796,0.1857,-0.0392,-0.9796,0.1971,0.0,-1.0,0.0,-0.1117,-0.9796,0.1671,-0.0769,-0.9796,0.1857,0.0,-1.0,0.0,-0.1421,-0.9796,0.1421,-0.1117,-0.9796,0.1671,0.0,-1.0,0.0,-0.1671,-0.9796,0.1117,-0.1421,-0.9796,0.1421,0.0,-1.0,0.0,-0.1857,-0.9796,0.0769,-0.1671,-0.9796,0.1117,0.0,-1.0,0.0,-0.1971,-0.9796,0.0392,-0.1857,-0.9796,0.0769,0.0,-1.0,0.0,-0.201,-0.9796,0.0,-0.1971,-0.9796,0.0392,0.0,-1.0,0.0,-0.1971,-0.9796,-0.0392,-0.201,-0.9796,0.0,0.0,-1.0,0.0,-0.1857,-0.9796,-0.0769,-0.1971,-0.9796,-0.0392,0.0,-1.0,0.0,-0.1671,-0.9796,-0.1117,-0.1857,-0.9796,-0.0769,0.0,-1.0,0.0,-0.1421,-0.9796,-0.1421,-0.1671,-0.9796,-0.1117,0.0,-1.0,0.0,-0.1117,-0.9796,-0.1671,-0.1421,-0.9796,-0.1421,0.0,-1.0,0.0,-0.0769,-0.9796,-0.1857,-0.1117,-0.9796,-0.1671,0.0,-1.0,0.0,-0.0392,-0.9796,-0.1971,-0.0769,-0.9796,-0.1857,0.0,-1.0,0.0,0.0,-0.9796,-0.201,-0.0392,-0.9796,-0.1971,0.0,-1.0,0.0,0.0392,-0.9796,-0.1971,0.0,-0.9796,-0.201,0.0,-1.0,0.0,0.0769,-0.9796,-0.1857,0.0392,-0.9796,-0.1971,0.0,-1.0,0.0,0.1117,-0.9796,-0.1671,0.0769,-0.9796,-0.1857,0.0,-1.0,0.0,0.1421,-0.9796,-0.1421,0.1117,-0.9796,-0.1671,0.0,-1.0,0.0,0.1671,-0.9796,-0.1117,0.1421,-0.9796,-0.1421,0.0,-1.0,0.0,0.1857,-0.9796,-0.0769,0.1671,-0.9796,-0.1117,0.0,-1.0,0.0,0.1971,-0.9796,-0.0392,0.1857,-0.9796,-0.0769,0.0,-1.0,0.0,0.201,-0.9796,0.0,0.1971,-0.9796,-0.0392,0.0,-1.0,0.0,0.1971,-0.9796,0.0392,0.201,-0.9796,0.0,0.0,-1.0,0.0,0.1857,-0.9796,0.0769,0.1971,-0.9796,0.0392,0.0,-1.0,0.0,0.1671,-0.9796,0.1117,0.1857,-0.9796,0.0769,0.0,-1.0,0.0,0.1421,-0.9796,0.1421,0.1671,-0.9796,0.1117,0.0,-1.0,0.0,0.1117,-0.9796,0.1671,0.1421,-0.9796,0.1421,0.0,-1.0,0.0,0.0769,-0.9796,0.1857,0.1117,-0.9796,0.1671,0.0,-1.0,0.0,0.0392,-0.9796,0.1971,0.0769,-0.9796,0.1857,0.0,-1.0,0.0,0.0,-0.9796,0.201,0.0392,-0.9796,0.1971],"tangents":null,"uvs":[0.0,2.0,0.0,1.9375,0.0312,1.9375,0.0312,2.0,0.0312,1.9375,0.0625,1.9375,0.0625,2.0,0.0625,1.9375,0.0938,1.9375,0.0938,2.0,0.0938,1.9375,0.125,1.9375,0.125,2.0,0.125,1.9375,0.1562,1.9375,0.1562,2.0,0.1562,1.9375,0.1875,1.9375,0.1875,2.0,0.1875,1.9375,0.2187,1.9375,0.2187,2.0,0.2187,1.9375,0.25,1.9375,0.25,2.0,0.25,1.9375,0.2812,1.9375,0.2812,2.0,0.2812,1.9375,0.3125,1.9375,0.3125,2.0,0.3125,1.9375,0.3437,1.9375,0.3437,2.0,0.3437,1.9375,0.375,1.9375,0.375,2.0,0.375,1.9375,0.4062,1.9375,0.4062,2.0,0.4062,1.9375,0.4375,1.9375,0.4375,2.0,0.4375,1.9375,0.4688,1.9375,0.4688,2.0,0.4688,1.9375,0.5,1.9375,0.5,2.0,0.5,1.9375,0.5313,1.9375,0.5313,2.0,0.5313,1.9375,0.5625,1.9375,0.5625,2.0,0.5625,1.9375,0.5938,1.9375,0.5938,2.0,0.5938,1.9375,0.625,1.9375,0.625,2.0,0.625,1.9375,0.6563,1.9375,0.6563,2.0,0.6563,1.9375,0.6875,1.9375,0.6875,2.0,0.6875,1.9375,0.7188,1.9375,0.7188,2.0,0.7188,1.9375,0.75,1.9375,0.75,2.0,0.75,1.9375,0.7813,1.9375,0.7813,2.0,0.7813,1.9375,0.8125,1.9375,0.8125,2.0,0.8125,1.9375,0.8438,1.9375,0.8438,2.0,0.8438,1.9375,0.875,1.9375,0.875,2.0,0.875,1.9375,0.9063,1.9375,0.9063,2.0,0.9063,1.9375,0.9375,1.9375,0.9375,2.0,0.9375,1.9375,0.9688,1.9375,0.9688,2.0,0.9688,1.9375,1.0,1.9375,0.0,1.9375,0.0,1.875,0.0312,1.875,0.0,1.9375,0.0312,1.875,0.0312,1.9375,0.0312,1.9375,0.0312,1.875,0.0625,1.875,0.0312,1.9375,0.0625,1.875,0.0625,1.9375,0.0625,1.9375,0.0625,1.875,0.0938,1.875,0.0625,1.9375,0.0938,1.875,0.0938,1.9375,0.0938,1.9375,0.0938,1.875,0.125,1.875,0.0938,1.9375,0.125,1.875,0.125,1.9375,0.125,1.9375,0.125,1.875,0.1562,1.875,0.125,1.9375,0.1562,1.875,0.1562,1.9375,0.1562,1.9375,0.1562,1.875,0.1875,1.875,0.1562,1.9375,0.1875,1.875,0.1875,1.9375,0.1875,1.9375,0.1875,1.875,0.2187,1.875,0.1875,1.9375,0.2187,1.875,0.2187,1.9375,0.2187,1.9375,0.2187,1.875,0.25,1.875,0.2187,1.9375,0.25,1.875,0.25,1.9375,0.25,1.9375,0.25,1.875,0.2812,1.875,0.25,1.9375,0.2812,1.875,0.2812,1.9375,0.2812,1.9375,0.2812,1.875,0.3125,1.875,0.2812,1.9375,0.3125,1.875,0.3125,1.9375,0.3125,1.9375,0.3125,1.875,0.3437,1.875,0.3125,1.9375,0.3437,1.875,0.3437,1.9375,0.3437,1.9375,0.3437,1.875,0.375,1.875,0.3437,1.9375,0.375,1.875,0.375,1.9375,0.375,1.9375,0.375,1.875,0.4062,1.875,0.375,1.9375,0.4062,1.875,0.4062,1.9375,0.4062,1.9375,0.4062,1.875,0.4375,1.875,0.4062,1.9375,0.4375,1.875,0.4375,1.9375,0.4375,1.9375,0.4375,1.875,0.4688,1.875,0.4375,1.9375,0.4688,1.875,0.4688,1.9375,0.4688,1.9375,0.4688,1.875,0.5,1.875,0.4688,1.9375,0.5,1.875,0.5,1.9375,0.5,1.9375,0.5,1.875,0.5313,1.875,0.5,1.9375,0.5313,1.875,0.5313,1.9375,0.5313,1.9375,0.5313,1.875,0.5625,1.875,0.5313,1.9375,0.5625,1.875,0.5625,1.9375,0.5625,1.9375,0.5625,1.875,0.5938,1.875,0.5625,1.9375,0.5938,1.875,0.5938,1.9375,0.5938,1.9375,0.5938,1.875,0.625,1.875,0.5938,1.9375,0.625,1.875,0.625,1.9375,0.625,1.9375,0.625,1.875,0.6563,1.875,0.625,1.9375,0.6563,1.875,0.6563,1.9375,0.6563,1.9375,0.6563,1.875,0.6875,1.875,0.6563,1.9375,0.6875,1.875,0.6875,1.9375,0.6875,1.9375,0.6875,1.875,0.7188,1.875,0.6875,1.9375,0.7188,1.875,0.7188,1.9375,0.7188,1.9375,0.7188,1.875,0.75,1.875,0.7188,1.9375,0.75,1.875,0.75,1.9375,0.75,1.9375,0.75,1.875,0.7813,1.875,0.75,1.9375,0.7813,1.875,0.7813,1.9375,0.7813,1.9375,0.7813,1.875,0.8125,1.875,0.7813,1.9375,0.8125,1.875,0.8125,1.9375,0.8125,1.9375,0.8125,1.875,0.8438,1.875,0.8125,1.9375,0.8438,1.875,0.8438,1.9375,0.8438,1.9375,0.8438,1.875,0.875,1.875,0.8438,1.9375,0.875,1.875,0.875,1.9375,0.875,1.9375,0.875,1.875,0.9063,1.875,0.875,1.9375,0.9063,1.875,0.9063,1.9375,0.9063,1.9375,0.9063,1.875,0.9375,1.875,0.9063,1.9375,0.9375,1.875,0.9375,1.9375,0.9375,1.9375,0.9375,1.875,0.9688,1.875,0.9375,1.9375,0.9688,1.875,0.9688,1.9375,0.9688,1.9375,0.9688,1.875,1.0,1.875,0.9688,1.9375,1.0,1.875,1.0,1.9375,0.0,1.875,0.0,1.8125,0.0312,1.8125,0.0,1.875,0.0312,1.8125,0.0312,1.875,0.0312,1.875,0.0312,1.8125,0.0625,1.8125,0.0312,1.875,0.0625,1.8125,0.0625,1.875,0.0625,1.875,0.0625,1.8125,0.0938,1.8125,0.0625,1.875,0.0938,1.8125,0.0938,1.875,0.0938,1.875,0.0938,1.8125,0.125,1.8125,0.0938,1.875,0.125,1.8125,0.125,1.875,0.125,1.875,0.125,1.8125,0.1562,1.8125,0.125,1.875,0.1562,1.8125,0.1562,1.875,0.1562,1.875,0.1562,1.8125,0.1875,1.8125,0.1562,1.875,0.1875,1.8125,0.1875,1.875,0.1875,1.875,0.1875,1.8125,0.2187,1.8125,0.1875,1.875,0.2187,1.8125,0.2187,1.875,0.2187,1.875,0.2187,1.8125,0.25,1.8125,0.2187,1.875,0.25,1.8125,0.25,1.875,0.25,1.875,0.25,1.8125,0.2812,1.8125,0.25,1.875,0.2812,1.8125,0.2812,1.875,0.2812,1.875,0.2812,1.8125,0.3125,1.8125,0.2812,1.875,0.3125,1.8125,0.3125,1.875,0.3125,1.875,0.3125,1.8125,0.3437,1.8125,0.3125,1.875,0.3437,1.8125,0.3437,1.875,0.3437,1.875,0.3437,1.8125,0.375,1.8125,0.3437,1.875,0.375,1.8125,0.375,1.875,0.375,1.875,0.375,1.8125,0.4062,1.8125,0.375,1.875,0.4062,1.8125,0.4062,1.875,0.4062,1.875,0.4062,1.8125,0.4375,1.8125,0.4062,1.875,0.4375,1.8125,0.4375,1.875,0.4375,1.875,0.4375,1.8125,0.4688,1.8125,0.4375,1.875,0.4688,1.8125,0.4688,1.875,0.4688,1.875,0.4688,1.8125,0.5,1.8125,0.4688,1.875,0.5,1.8125,0.5,1.875,0.5,1.875,0.5,1.8125,0.5313,1.8125,0.5,1.875,0.5313,1.8125,0.5313,1.875,0.5313,1.875,0.5313,1.8125,0.5625,1.8125,0.5313,1.875,0.5625,1.8125,0.5625,1.875,0.5625,1.875,0.5625,1.8125,0.5938,1.8125,0.5625,1.875,0.5938,1.8125,0.5938,1.875,0.5938,1.875,0.5938,1.8125,0.625,1.8125,0.5938,1.875,0.625,1.8125,0.625,1.875,0.625,1.875,0.625,1.8125,0.6563,1.8125,0.625,1.875,0.6563,1.8125,0.6563,1.875,0.6563,1.875,0.6563,1.8125,0.6875,1.8125,0.6563,1.875,0.6875,1.8125,0.6875,1.875,0.6875,1.875,0.6875,1.8125,0.7188,1.8125,0.6875,1.875,0.7188,1.8125,0.7188,1.875,0.7188,1.875,0.7188,1.8125,0.75,1.8125,0.7188,1.875,0.75,1.8125,0.75,1.875,0.75,1.875,0.75,1.8125,0.7813,1.8125,0.75,1.875,0.7813,1.8125,0.7813,1.875,0.7813,1.875,0.7813,1.8125,0.8125,1.8125,0.7813,1.875,0.8125,1.8125,0.8125,1.875,0.8125,1.875,0.8125,1.8125,0.8438,1.8125,0.8125,1.875,0.8438,1.8125,0.8438,1.875,0.8438,1.875,0.8438,1.8125,0.875,1.8125,0.8438,1.875,0.875,1.8125,0.875,1.875,0.875,1.875,0.875,1.8125,0.9063,1.8125,0.875,1.875,0.9063,1.8125,0.9063,1.875,0.9063,1.875,0.9063,1.8125,0.9375,1.8125,0.9063,1.875,0.9375,1.8125,0.9375,1.875,0.9375,1.875,0.9375,1.8125,0.9688,1.8125,0.9375,1.875,0.9688,1.8125,0.9688,1.875,0.9688,1.875,0.9688,1.8125,1.0,1.8125,0.9688,1.875,1.0,1.8125,1.0,1.875,0.0,1.8125,0.0,1.75,0.0312,1.75,0.0,1.8125,0.0312,1.75,0.0312,1.8125,0.0312,1.8125,0.0312,1.75,0.0625,1.75,0.0312,1.8125,0.0625,1.75,0.0625,1.8125,0.0625,1.8125,0.0625,1.75,0.0938,1.75,0.0625,1.8125,0.0938,1.75,0.0938,1.8125,0.0938,1.8125,0.0938,1.75,0.125,1.75,0.0938,1.8125,0.125,1.75,0.125,1.8125,0.125,1.8125,0.125,1.75,0.1562,1.75,0.125,1.8125,0.1562,1.75,0.1562,1.8125,0.1562,1.8125,0.1562,1.75,0.1875,1.75,0.1562,1.8125,0.1875,1.75,0.1875,1.8125,0.1875,1.8125,0.1875,1.75,0.2187,1.75,0.1875,1.8125,0.2187,1.75,0.2187,1.8125,0.2187,1.8125,0.2187,1.75,0.25,1.75,0.2187,1.8125,0.25,1.75,0.25,1.8125,0.25,1.8125,0.25,1.75,0.2812,1.75,0.25,1.8125,0.2812,1.75,0.2812,1.8125,0.2812,1.8125,0.2812,1.75,0.3125,1.75,0.2812,1.8125,0.3125,1.75,0.3125,1.8125,0.3125,1.8125,0.3125,1.75,0.3437,1.75,0.3125,1.8125,0.3437,1.75,0.3437,1.8125,0.3437,1.8125,0.3437,1.75,0.375,1.75,0.3437,1.8125,0.375,1.75,0.375,1.8125,0.375,1.8125,0.375,1.75,0.4062,1.75,0.375,1.8125,0.4062,1.75,0.4062,1.8125,0.4062,1.8125,0.4062,1.75,0.4375,1.75,0.4062,1.8125,0.4375,1.75,0.4375,1.8125,0.4375,1.8125,0.4375,1.75,0.4688,1.75,0.4375,1.8125,0.4688,1.75,0.4688,1.8125,0.4688,1.8125,0.4688,1.75,0.5,1.75,0.4688,1.8125,0.5,1.75,0.5,1.8125,0.5,1.8125,0.5,1.75,0.5313,1.75,0.5,1.8125,0.5313,1.75,0.5313,1.8125,0.5313,1.8125,0.5313,1.75,0.5625,1.75,0.5313,1.8125,0.5625,1.75,0.5625,1.8125,0.5625,1.8125,0.5625,1.75,0.5938,1.75,0.5625,1.8125,0.5938,1.75,0.5938,1.8125,0.5938,1.8125,0.5938,1.75,0.625,1.75,0.5938,1.8125,0.625,1.75,0.625,1.8125,0.625,1.8125,0.625,1.75,0.6563,1.75,0.625,1.8125,0.6563,1.75,0.6563,1.8125,0.6563,1.8125,0.6563,1.75,0.6875,1.75,0.6563,1.8125,0.6875,1.75,0.6875,1.8125,0.6875,1.8125,0.6875,1.75,0.7188,1.75,0.6875,1.8125,0.7188,1.75,0.7188,1.8125,0.7188,1.8125,0.7188,1.75,0.75,1.75,0.7188,1.8125,0.75,1.75,0.75,1.8125,0.75,1.8125,0.75,1.75,0.7813,1.75,0.75,1.8125,0.7813,1.75,0.7813,1.8125,0.7813,1.8125,0.7813,1.75,0.8125,1.75,0.7813,1.8125,0.8125,1.75,0.8125,1.8125,0.8125,1.8125,0.8125,1.75,0.8438,1.75,0.8125,1.8125,0.8438,1.75,0.8438,1.8125,0.8438,1.8125,0.8438,1.75,0.875,1.75,0.8438,1.8125,0.875,1.75,0.875,1.8125,0.875,1.8125,0.875,1.75,0.9063,1.75,0.875,1.8125,0.9063,1.75,0.9063,1.8125,0.9063,1.8125,0.9063,1.75,0.9375,1.75,0.9063,1.8125,0.9375,1.75,0.9375,1.8125,0.9375,1.8125,0.9375,1.75,0.9688,1.75,0.9375,1.8125,0.9688,1.75,0.9688,1.8125,0.9688,1.8125,0.9688,1.75,1.0,1.75,0.9688,1.8125,1.0,1.75,1.0,1.8125,0.0,1.75,0.0,1.6875,0.0312,1.6875,0.0,1.75,0.0312,1.6875,0.0312,1.75,0.0312,1.75,0.0312,1.6875,0.0625,1.6875,0.0312,1.75,0.0625,1.6875,0.0625,1.75,0.0625,1.75,0.0625,1.6875,0.0938,1.6875,0.0625,1.75,0.0938,1.6875,0.0938,1.75,0.0938,1.75,0.0938,1.6875,0.125,1.6875,0.0938,1.75,0.125,1.6875,0.125,1.75,0.125,1.75,0.125,1.6875,0.1562,1.6875,0.125,1.75,0.1562,1.6875,0.1562,1.75,0.1562,1.75,0.1562,1.6875,0.1875,1.6875,0.1562,1.75,0.1875,1.6875,0.1875,1.75,0.1875,1.75,0.1875,1.6875,0.2187,1.6875,0.1875,1.75,0.2187,1.6875,0.2187,1.75,0.2187,1.75,0.2187,1.6875,0.25,1.6875,0.2187,1.75,0.25,1.6875,0.25,1.75,0.25,1.75,0.25,1.6875,0.2812,1.6875,0.25,1.75,0.2812,1.6875,0.2812,1.75,0.2812,1.75,0.2812,1.6875,0.3125,1.6875,0.2812,1.75,0.3125,1.6875,0.3125,1.75,0.3125,1.75,0.3125,1.6875,0.3437,1.6875,0.3125,1.75,0.3437,1.6875,0.3437,1.75,0.3437,1.75,0.3437,1.6875,0.375,1.6875,0.3437,1.75,0.375,1.6875,0.375,1.75,0.375,1.75,0.375,1.6875,0.4062,1.6875,0.375,1.75,0.4062,1.6875,0.4062,1.75,0.4062,1.75,0.4062,1.6875,0.4375,1.6875,0.4062,1.75,0.4375,1.6875,0.4375,1.75,0.4375,1.75,0.4375,1.6875,0.4688,1.6875,0.4375,1.75,0.4688,1.6875,0.4688,1.75,0.4688,1.75,0.4688,1.6875,0.5,1.6875,0.4688,1.75,0.5,1.6875,0.5,1.75,0.5,1.75,0.5,1.6875,0.5313,1.6875,0.5,1.75,0.5313,1.6875,0.5313,1.75,0.5313,1.75,0.5313,1.6875,0.5625,1.6875,0.5313,1.75,0.5625,1.6875,0.5625,1.75,0.5625,1.75,0.5625,1.6875,0.5938,1.6875,0.5625,1.75,0.5938,1.6875,0.5938,1.75,0.5938,1.75,0.5938,1.6875,0.625,1.6875,0.5938,1.75,0.625,1.6875,0.625,1.75,0.625,1.75,0.625,1.6875,0.6563,1.6875,0.625,1.75,0.6563,1.6875,0.6563,1.75,0.6563,1.75,0.6563,1.6875,0.6875,1.6875,0.6563,1.75,0.6875,1.6875,0.6875,1.75,0.6875,1.75,0.6875,1.6875,0.7188,1.6875,0.6875,1.75,0.7188,1.6875,0.7188,1.75,0.7188,1.75,0.7188,1.6875,0.75,1.6875,0.7188,1.75,0.75,1.6875,0.75,1.75,0.75,1.75,0.75,1.6875,0.7813,1.6875,0.75,1.75,0.7813,1.6875,0.7813,1.75,0.7813,1.75,0.7813,1.6875,0.8125,1.6875,0.7813,1.75,0.8125,1.6875,0.8125,1.75,0.8125,1.75,0.8125,1.6875,0.8438,1.6875,0.8125,1.75,0.8438,1.6875,0.8438,1.75,0.8438,1.75,0.8438,1.6875,0.875,1.6875,0.8438,1.75,0.875,1.6875,0.875,1.75,0.875,1.75,0.875,1.6875,0.9063,1.6875,0.875,1.75,0.9063,1.6875,0.9063,1.75,0.9063,1.75,0.9063,1.6875,0.9375,1.6875,0.9063,1.75,0.9375,1.6875,0.9375,1.75,0.9375,1.75,0.9375,1.6875,0.9688,1.6875,0.9375,1.75,0.9688,1.6875,0.9688,1.75,0.9688,1.75,0.9688,1.6875,1.0,1.6875,0.9688,1.75,1.0,1.6875,1.0,1.75,0.0,1.6875,0.0,1.625,0.0312,1.625,0.0,1.6875,0.0312,1.625,0.0312,1.6875,0.0312,1.6875,0.0312,1.625,0.0625,1.625,0.0312,1.6875,0.0625,1.625,0.0625,1.6875,0.0625,1.6875,0.0625,1.625,0.0938,1.625,0.0625,1.6875,0.0938,1.625,0.0938,1.6875,0.0938,1.6875,0.0938,1.625,0.125,1.625,0.0938,1.6875,0.125,1.625,0.125,1.6875,0.125,1.6875,0.125,1.625,0.1562,1.625,0.125,1.6875,0.1562,1.625,0.1562,1.6875,0.1562,1.6875,0.1562,1.625,0.1875,1.625,0.1562,1.6875,0.1875,1.625,0.1875,1.6875,0.1875,1.6875,0.1875,1.625,0.2187,1.625,0.1875,1.6875,0.2187,1.625,0.2187,1.6875,0.2187,1.6875,0.2187,1.625,0.25,1.625,0.2187,1.6875,0.25,1.625,0.25,1.6875,0.25,1.6875,0.25,1.625,0.2812,1.625,0.25,1.6875,0.2812,1.625,0.2812,1.6875,0.2812,1.6875,0.2812,1.625,0.3125,1.625,0.2812,1.6875,0.3125,1.625,0.3125,1.6875,0.3125,1.6875,0.3125,1.625,0.3437,1.625,0.3125,1.6875,0.3437,1.625,0.3437,1.6875,0.3437,1.6875,0.3437,1.625,0.375,1.625,0.3437,1.6875,0.375,1.625,0.375,1.6875,0.375,1.6875,0.375,1.625,0.4062,1.625,0.375,1.6875,0.4062,1.625,0.4062,1.6875,0.4062,1.6875,0.4062,1.625,0.4375,1.625,0.4062,1.6875,0.4375,1.625,0.4375,1.6875,0.4375,1.6875,0.4375,1.625,0.4688,1.625,0.4375,1.6875,0.4688,1.625,0.4688,1.6875,0.4688,1.6875,0.4688,1.625,0.5,1.625,0.4688,1.6875,0.5,1.625,0.5,1.6875,0.5,1.6875,0.5,1.625,0.5313,1.625,0.5,1.6875,0.5313,1.625,0.5313,1.6875,0.5313,1.6875,0.5313,1.625,0.5625,1.625,0.5313,1.6875,0.5625,1.625,0.5625,1.6875,0.5625,1.6875,0.5625,1.625,0.5938,1.625,0.5625,1.6875,0.5938,1.625,0.5938,1.6875,0.5938,1.6875,0.5938,1.625,0.625,1.625,0.5938,1.6875,0.625,1.625,0.625,1.6875,0.625,1.6875,0.625,1.625,0.6563,1.625,0.625,1.6875,0.6563,1.625,0.6563,1.6875,0.6563,1.6875,0.6563,1.625,0.6875,1.625,0.6563,1.6875,0.6875,1.625,0.6875,1.6875,0.6875,1.6875,0.6875,1.625,0.7188,1.625,0.6875,1.6875,0.7188,1.625,0.7188,1.6875,0.7188,1.6875,0.7188,1.625,0.75,1.625,0.7188,1.6875,0.75,1.625,0.75,1.6875,0.75,1.6875,0.75,1.625,0.7813,1.625,0.75,1.6875,0.7813,1.625,0.7813,1.6875,0.7813,1.6875,0.7813,1.625,0.8125,1.625,0.7813,1.6875,0.8125,1.625,0.8125,1.6875,0.8125,1.6875,0.8125,1.625,0.8438,1.625,0.8125,1.6875,0.8438,1.625,0.8438,1.6875,0.8438,1.6875,0.8438,1.625,0.875,1.625,0.8438,1.6875,0.875,1.625,0.875,1.6875,0.875,1.6875,0.875,1.625,0.9063,1.625,0.875,1.6875,0.9063,1.625,0.9063,1.6875,0.9063,1.6875,0.9063,1.625,0.9375,1.625,0.9063,1.6875,0.9375,1.625,0.9375,1.6875,0.9375,1.6875,0.9375,1.625,0.9688,1.625,0.9375,1.6875,0.9688,1.625,0.9688,1.6875,0.9688,1.6875,0.9688,1.625,1.0,1.625,0.9688,1.6875,1.0,1.625,1.0,1.6875,0.0,1.625,0.0,1.5625,0.0312,1.5625,0.0,1.625,0.0312,1.5625,0.0312,1.625,0.0312,1.625,0.0312,1.5625,0.0625,1.5625,0.0312,1.625,0.0625,1.5625,0.0625,1.625,0.0625,1.625,0.0625,1.5625,0.0938,1.5625,0.0625,1.625,0.0938,1.5625,0.0938,1.625,0.0938,1.625,0.0938,1.5625,0.125,1.5625,0.0938,1.625,0.125,1.5625,0.125,1.625,0.125,1.625,0.125,1.5625,0.1562,1.5625,0.125,1.625,0.1562,1.5625,0.1562,1.625,0.1562,1.625,0.1562,1.5625,0.1875,1.5625,0.1562,1.625,0.1875,1.5625,0.1875,1.625,0.1875,1.625,0.1875,1.5625,0.2187,1.5625,0.1875,1.625,0.2187,1.5625,0.2187,1.625,0.2187,1.625,0.2187,1.5625,0.25,1.5625,0.2187,1.625,0.25,1.5625,0.25,1.625,0.25,1.625,0.25,1.5625,0.2812,1.5625,0.25,1.625,0.2812,1.5625,0.2812,1.625,0.2812,1.625,0.2812,1.5625,0.3125,1.5625,0.2812,1.625,0.3125,1.5625,0.3125,1.625,0.3125,1.625,0.3125,1.5625,0.3437,1.5625,0.3125,1.625,0.3437,1.5625,0.3437,1.625,0.3437,1.625,0.3437,1.5625,0.375,1.5625,0.3437,1.625,0.375,1.5625,0.375,1.625,0.375,1.625,0.375,1.5625,0.4062,1.5625,0.375,1.625,0.4062,1.5625,0.4062,1.625,0.4062,1.625,0.4062,1.5625,0.4375,1.5625,0.4062,1.625,0.4375,1.5625,0.4375,1.625,0.4375,1.625,0.4375,1.5625,0.4688,1.5625,0.4375,1.625,0.4688,1.5625,0.4688,1.625,0.4688,1.625,0.4688,1.5625,0.5,1.5625,0.4688,1.625,0.5,1.5625,0.5,1.625,0.5,1.625,0.5,1.5625,0.5313,1.5625,0.5,1.625,0.5313,1.5625,0.5313,1.625,0.5313,1.625,0.5313,1.5625,0.5625,1.5625,0.5313,1.625,0.5625,1.5625,0.5625,1.625,0.5625,1.625,0.5625,1.5625,0.5938,1.5625,0.5625,1.625,0.5938,1.5625,0.5938,1.625,0.5938,1.625,0.5938,1.5625,0.625,1.5625,0.5938,1.625,0.625,1.5625,0.625,1.625,0.625,1.625,0.625,1.5625,0.6563,1.5625,0.625,1.625,0.6563,1.5625,0.6563,1.625,0.6563,1.625,0.6563,1.5625,0.6875,1.5625,0.6563,1.625,0.6875,1.5625,0.6875,1.625,0.6875,1.625,0.6875,1.5625,0.7188,1.5625,0.6875,1.625,0.7188,1.5625,0.7188,1.625,0.7188,1.625,0.7188,1.5625,0.75,1.5625,0.7188,1.625,0.75,1.5625,0.75,1.625,0.75,1.625,0.75,1.5625,0.7813,1.5625,0.75,1.625,0.7813,1.5625,0.7813,1.625,0.7813,1.625,0.7813,1.5625,0.8125,1.5625,0.7813,1.625,0.8125,1.5625,0.8125,1.625,0.8125,1.625,0.8125,1.5625,0.8438,1.5625,0.8125,1.625,0.8438,1.5625,0.8438,1.625,0.8438,1.625,0.8438,1.5625,0.875,1.5625,0.8438,1.625,0.875,1.5625,0.875,1.625,0.875,1.625,0.875,1.5625,0.9063,1.5625,0.875,1.625,0.9063,1.5625,0.9063,1.625,0.9063,1.625,0.9063,1.5625,0.9375,1.5625,0.9063,1.625,0.9375,1.5625,0.9375,1.625,0.9375,1.625,0.9375,1.5625,0.9688,1.5625,0.9375,1.625,0.9688,1.5625,0.9688,1.625,0.9688,1.625,0.9688,1.5625,1.0,1.5625,0.9688,1.625,1.0,1.5625,1.0,1.625,0.0,1.5625,0.0,1.5,0.0312,1.5,0.0,1.5625,0.0312,1.5,0.0312,1.5625,0.0312,1.5625,0.0312,1.5,0.0625,1.5,0.0312,1.5625,0.0625,1.5,0.0625,1.5625,0.0625,1.5625,0.0625,1.5,0.0938,1.5,0.0625,1.5625,0.0938,1.5,0.0938,1.5625,0.0938,1.5625,0.0938,1.5,0.125,1.5,0.0938,1.5625,0.125,1.5,0.125,1.5625,0.125,1.5625,0.125,1.5,0.1562,1.5,0.125,1.5625,0.1562,1.5,0.1562,1.5625,0.1562,1.5625,0.1562,1.5,0.1875,1.5,0.1562,1.5625,0.1875,1.5,0.1875,1.5625,0.1875,1.5625,0.1875,1.5,0.2187,1.5,0.1875,1.5625,0.2187,1.5,0.2187,1.5625,0.2187,1.5625,0.2187,1.5,0.25,1.5,0.2187,1.5625,0.25,1.5,0.25,1.5625,0.25,1.5625,0.25,1.5,0.2812,1.5,0.25,1.5625,0.2812,1.5,0.2812,1.5625,0.2812,1.5625,0.2812,1.5,0.3125,1.5,0.2812,1.5625,0.3125,1.5,0.3125,1.5625,0.3125,1.5625,0.3125,1.5,0.3437,1.5,0.3125,1.5625,0.3437,1.5,0.3437,1.5625,0.3437,1.5625,0.3437,1.5,0.375,1.5,0.3437,1.5625,0.375,1.5,0.375,1.5625,0.375,1.5625,0.375,1.5,0.4062,1.5,0.375,1.5625,0.4062,1.5,0.4062,1.5625,0.4062,1.5625,0.4062,1.5,0.4375,1.5,0.4062,1.5625,0.4375,1.5,0.4375,1.5625,0.4375,1.5625,0.4375,1.5,0.4688,1.5,0.4375,1.5625,0.4688,1.5,0.4688,1.5625,0.4688,1.5625,0.4688,1.5,0.5,1.5,0.4688,1.5625,0.5,1.5,0.5,1.5625,0.5,1.5625,0.5,1.5,0.5313,1.5,0.5,1.5625,0.5313,1.5,0.5313,1.5625,0.5313,1.5625,0.5313,1.5,0.5625,1.5,0.5313,1.5625,0.5625,1.5,0.5625,1.5625,0.5625,1.5625,0.5625,1.5,0.5938,1.5,0.5625,1.5625,0.5938,1.5,0.5938,1.5625,0.5938,1.5625,0.5938,1.5,0.625,1.5,0.5938,1.5625,0.625,1.5,0.625,1.5625,0.625,1.5625,0.625,1.5,0.6563,1.5,0.625,1.5625,0.6563,1.5,0.6563,1.5625,0.6563,1.5625,0.6563,1.5,0.6875,1.5,0.6563,1.5625,0.6875,1.5,0.6875,1.5625,0.6875,1.5625,0.6875,1.5,0.7188,1.5,0.6875,1.5625,0.7188,1.5,0.7188,1.5625,0.7188,1.5625,0.7188,1.5,0.75,1.5,0.7188,1.5625,0.75,1.5,0.75,1.5625,0.75,1.5625,0.75,1.5,0.7813,1.5,0.75,1.5625,0.7813,1.5,0.7813,1.5625,0.7813,1.5625,0.7813,1.5,0.8125,1.5,0.7813,1.5625,0.8125,1.5,0.8125,1.5625,0.8125,1.5625,0.8125,1.5,0.8438,1.5,0.8125,1.5625,0.8438,1.5,0.8438,1.5625,0.8438,1.5625,0.8438,1.5,0.875,1.5,0.8438,1.5625,0.875,1.5,0.875,1.5625,0.875,1.5625,0.875,1.5,0.9063,1.5,0.875,1.5625,0.9063,1.5,0.9063,1.5625,0.9063,1.5625,0.9063,1.5,0.9375,1.5,0.9063,1.5625,0.9375,1.5,0.9375,1.5625,0.9375,1.5625,0.9375,1.5,0.9688,1.5,0.9375,1.5625,0.9688,1.5,0.9688,1.5625,0.9688,1.5625,0.9688,1.5,1.0,1.5,0.9688,1.5625,1.0,1.5,1.0,1.5625,0.0,1.5,0.0,1.4375,0.0312,1.4375,0.0,1.5,0.0312,1.4375,0.0312,1.5,0.0312,1.5,0.0312,1.4375,0.0625,1.4375,0.0312,1.5,0.0625,1.4375,0.0625,1.5,0.0625,1.5,0.0625,1.4375,0.0938,1.4375,0.0625,1.5,0.0938,1.4375,0.0938,1.5,0.0938,1.5,0.0938,1.4375,0.125,1.4375,0.0938,1.5,0.125,1.4375,0.125,1.5,0.125,1.5,0.125,1.4375,0.1562,1.4375,0.125,1.5,0.1562,1.4375,0.1562,1.5,0.1562,1.5,0.1562,1.4375,0.1875,1.4375,0.1562,1.5,0.1875,1.4375,0.1875,1.5,0.1875,1.5,0.1875,1.4375,0.2187,1.4375,0.1875,1.5,0.2187,1.4375,0.2187,1.5,0.2187,1.5,0.2187,1.4375,0.25,1.4375,0.2187,1.5,0.25,1.4375,0.25,1.5,0.25,1.5,0.25,1.4375,0.2812,1.4375,0.25,1.5,0.2812,1.4375,0.2812,1.5,0.2812,1.5,0.2812,1.4375,0.3125,1.4375,0.2812,1.5,0.3125,1.4375,0.3125,1.5,0.3125,1.5,0.3125,1.4375,0.3437,1.4375,0.3125,1.5,0.3437,1.4375,0.3437,1.5,0.3437,1.5,0.3437,1.4375,0.375,1.4375,0.3437,1.5,0.375,1.4375,0.375,1.5,0.375,1.5,0.375,1.4375,0.4062,1.4375,0.375,1.5,0.4062,1.4375,0.4062,1.5,0.4062,1.5,0.4062,1.4375,0.4375,1.4375,0.4062,1.5,0.4375,1.4375,0.4375,1.5,0.4375,1.5,0.4375,1.4375,0.4688,1.4375,0.4375,1.5,0.4688,1.4375,0.4688,1.5,0.4688,1.5,0.4688,1.4375,0.5,1.4375,0.4688,1.5,0.5,1.4375,0.5,1.5,0.5,1.5,0.5,1.4375,0.5313,1.4375,0.5,1.5,0.5313,1.4375,0.5313,1.5,0.5313,1.5,0.5313,1.4375,0.5625,1.4375,0.5313,1.5,0.5625,1.4375,0.5625,1.5,0.5625,1.5,0.5625,1.4375,0.5938,1.4375,0.5625,1.5,0.5938,1.4375,0.5938,1.5,0.5938,1.5,0.5938,1.4375,0.625,1.4375,0.5938,1.5,0.625,1.4375,0.625,1.5,0.625,1.5,0.625,1.4375,0.6563,1.4375,0.625,1.5,0.6563,1.4375,0.6563,1.5,0.6563,1.5,0.6563,1.4375,0.6875,1.4375,0.6563,1.5,0.6875,1.4375,0.6875,1.5,0.6875,1.5,0.6875,1.4375,0.7188,1.4375,0.6875,1.5,0.7188,1.4375,0.7188,1.5,0.7188,1.5,0.7188,1.4375,0.75,1.4375,0.7188,1.5,0.75,1.4375,0.75,1.5,0.75,1.5,0.75,1.4375,0.7813,1.4375,0.75,1.5,0.7813,1.4375,0.7813,1.5,0.7813,1.5,0.7813,1.4375,0.8125,1.4375,0.7813,1.5,0.8125,1.4375,0.8125,1.5,0.8125,1.5,0.8125,1.4375,0.8438,1.4375,0.8125,1.5,0.8438,1.4375,0.8438,1.5,0.8438,1.5,0.8438,1.4375,0.875,1.4375,0.8438,1.5,0.875,1.4375,0.875,1.5,0.875,1.5,0.875,1.4375,0.9063,1.4375,0.875,1.5,0.9063,1.4375,0.9063,1.5,0.9063,1.5,0.9063,1.4375,0.9375,1.4375,0.9063,1.5,0.9375,1.4375,0.9375,1.5,0.9375,1.5,0.9375,1.4375,0.9688,1.4375,0.9375,1.5,0.9688,1.4375,0.9688,1.5,0.9688,1.5,0.9688,1.4375,1.0,1.4375,0.9688,1.5,1.0,1.4375,1.0,1.5,0.0,1.4375,0.0,1.375,0.0312,1.375,0.0,1.4375,0.0312,1.375,0.0312,1.4375,0.0312,1.4375,0.0312,1.375,0.0625,1.375,0.0312,1.4375,0.0625,1.375,0.0625,1.4375,0.0625,1.4375,0.0625,1.375,0.0938,1.375,0.0625,1.4375,0.0938,1.375,0.0938,1.4375,0.0938,1.4375,0.0938,1.375,0.125,1.375,0.0938,1.4375,0.125,1.375,0.125,1.4375,0.125,1.4375,0.125,1.375,0.1562,1.375,0.125,1.4375,0.1562,1.375,0.1562,1.4375,0.1562,1.4375,0.1562,1.375,0.1875,1.375,0.1562,1.4375,0.1875,1.375,0.1875,1.4375,0.1875,1.4375,0.1875,1.375,0.2187,1.375,0.1875,1.4375,0.2187,1.375,0.2187,1.4375,0.2187,1.4375,0.2187,1.375,0.25,1.375,0.2187,1.4375,0.25,1.375,0.25,1.4375,0.25,1.4375,0.25,1.375,0.2812,1.375,0.25,1.4375,0.2812,1.375,0.2812,1.4375,0.2812,1.4375,0.2812,1.375,0.3125,1.375,0.2812,1.4375,0.3125,1.375,0.3125,1.4375,0.3125,1.4375,0.3125,1.375,0.3437,1.375,0.3125,1.4375,0.3437,1.375,0.3437,1.4375,0.3437,1.4375,0.3437,1.375,0.375,1.375,0.3437,1.4375,0.375,1.375,0.375,1.4375,0.375,1.4375,0.375,1.375,0.4062,1.375,0.375,1.4375,0.4062,1.375,0.4062,1.4375,0.4062,1.4375,0.4062,1.375,0.4375,1.375,0.4062,1.4375,0.4375,1.375,0.4375,1.4375,0.4375,1.4375,0.4375,1.375,0.4688,1.375,0.4375,1.4375,0.4688,1.375,0.4688,1.4375,0.4688,1.4375,0.4688,1.375,0.5,1.375,0.4688,1.4375,0.5,1.375,0.5,1.4375,0.5,1.4375,0.5,1.375,0.5313,1.375,0.5,1.4375,0.5313,1.375,0.5313,1.4375,0.5313,1.4375,0.5313,1.375,0.5625,1.375,0.5313,1.4375,0.5625,1.375,0.5625,1.4375,0.5625,1.4375,0.5625,1.375,0.5938,1.375,0.5625,1.4375,0.5938,1.375,0.5938,1.4375,0.5938,1.4375,0.5938,1.375,0.625,1.375,0.5938,1.4375,0.625,1.375,0.625,1.4375,0.625,1.4375,0.625,1.375,0.6563,1.375,0.625,1.4375,0.6563,1.375,0.6563,1.4375,0.6563,1.4375,0.6563,1.375,0.6875,1.375,0.6563,1.4375,0.6875,1.375,0.6875,1.4375,0.6875,1.4375,0.6875,1.375,0.7188,1.375,0.6875,1.4375,0.7188,1.375,0.7188,1.4375,0.7188,1.4375,0.7188,1.375,0.75,1.375,0.7188,1.4375,0.75,1.375,0.75,1.4375,0.75,1.4375,0.75,1.375,0.7813,1.375,0.75,1.4375,0.7813,1.375,0.7813,1.4375,0.7813,1.4375,0.7813,1.375,0.8125,1.375,0.7813,1.4375,0.8125,1.375,0.8125,1.4375,0.8125,1.4375,0.8125,1.375,0.8438,1.375,0.8125,1.4375,0.8438,1.375,0.8438,1.4375,0.8438,1.4375,0.8438,1.375,0.875,1.375,0.8438,1.4375,0.875,1.375,0.875,1.4375,0.875,1.4375,0.875,1.375,0.9063,1.375,0.875,1.4375,0.9063,1.375,0.9063,1.4375,0.9063,1.4375,0.9063,1.375,0.9375,1.375,0.9063,1.4375,0.9375,1.375,0.9375,1.4375,0.9375,1.4375,0.9375,1.375,0.9688,1.375,0.9375,1.4375,0.9688,1.375,0.9688,1.4375,0.9688,1.4375,0.9688,1.375,1.0,1.375,0.9688,1.4375,1.0,1.375,1.0,1.4375,0.0,1.375,0.0,1.3125,0.0312,1.3125,0.0,1.375,0.0312,1.3125,0.0312,1.375,0.0312,1.375,0.0312,1.3125,0.0625,1.3125,0.0312,1.375,0.0625,1.3125,0.0625,1.375,0.0625,1.375,0.0625,1.3125,0.0938,1.3125,0.0625,1.375,0.0938,1.3125,0.0938,1.375,0.0938,1.375,0.0938,1.3125,0.125,1.3125,0.0938,1.375,0.125,1.3125,0.125,1.375,0.125,1.375,0.125,1.3125,0.1562,1.3125,0.125,1.375,0.1562,1.3125,0.1562,1.375,0.1562,1.375,0.1562,1.3125,0.1875,1.3125,0.1562,1.375,0.1875,1.3125,0.1875,1.375,0.1875,1.375,0.1875,1.3125,0.2187,1.3125,0.1875,1.375,0.2187,1.3125,0.2187,1.375,0.2187,1.375,0.2187,1.3125,0.25,1.3125,0.2187,1.375,0.25,1.3125,0.25,1.375,0.25,1.375,0.25,1.3125,0.2812,1.3125,0.25,1.375,0.2812,1.3125,0.2812,1.375,0.2812,1.375,0.2812,1.3125,0.3125,1.3125,0.2812,1.375,0.3125,1.3125,0.3125,1.375,0.3125,1.375,0.3125,1.3125,0.3437,1.3125,0.3125,1.375,0.3437,1.3125,0.3437,1.375,0.3437,1.375,0.3437,1.3125,0.375,1.3125,0.3437,1.375,0.375,1.3125,0.375,1.375,0.375,1.375,0.375,1.3125,0.4062,1.3125,0.375,1.375,0.4062,1.3125,0.4062,1.375,0.4062,1.375,0.4062,1.3125,0.4375,1.3125,0.4062,1.375,0.4375,1.3125,0.4375,1.375,0.4375,1.375,0.4375,1.3125,0.4688,1.3125,0.4375,1.375,0.4688,1.3125,0.4688,1.375,0.4688,1.375,0.4688,1.3125,0.5,1.3125,0.4688,1.375,0.5,1.3125,0.5,1.375,0.5,1.375,0.5,1.3125,0.5313,1.3125,0.5,1.375,0.5313,1.3125,0.5313,1.375,0.5313,1.375,0.5313,1.3125,0.5625,1.3125,0.5313,1.375,0.5625,1.3125,0.5625,1.375,0.5625,1.375,0.5625,1.3125,0.5938,1.3125,0.5625,1.375,0.5938,1.3125,0.5938,1.375,0.5938,1.375,0.5938,1.3125,0.625,1.3125,0.5938,1.375,0.625,1.3125,0.625,1.375,0.625,1.375,0.625,1.3125,0.6563,1.3125,0.625,1.375,0.6563,1.3125,0.6563,1.375,0.6563,1.375,0.6563,1.3125,0.6875,1.3125,0.6563,1.375,0.6875,1.3125,0.6875,1.375,0.6875,1.375,0.6875,1.3125,0.7188,1.3125,0.6875,1.375,0.7188,1.3125,0.7188,1.375,0.7188,1.375,0.7188,1.3125,0.75,1.3125,0.7188,1.375,0.75,1.3125,0.75,1.375,0.75,1.375,0.75,1.3125,0.7813,1.3125,0.75,1.375,0.7813,1.3125,0.7813,1.375,0.7813,1.375,0.7813,1.3125,0.8125,1.3125,0.7813,1.375,0.8125,1.3125,0.8125,1.375,0.8125,1.375,0.8125,1.3125,0.8438,1.3125,0.8125,1.375,0.8438,1.3125,0.8438,1.375,0.8438,1.375,0.8438,1.3125,0.875,1.3125,0.8438,1.375,0.875,1.3125,0.875,1.375,0.875,1.375,0.875,1.3125,0.9063,1.3125,0.875,1.375,0.9063,1.3125,0.9063,1.375,0.9063,1.375,0.9063,1.3125,0.9375,1.3125,0.9063,1.375,0.9375,1.3125,0.9375,1.375,0.9375,1.375,0.9375,1.3125,0.9688,1.3125,0.9375,1.375,0.9688,1.3125,0.9688,1.375,0.9688,1.375,0.9688,1.3125,1.0,1.3125,0.9688,1.375,1.0,1.3125,1.0,1.375,0.0,1.3125,0.0,1.25,0.0312,1.25,0.0,1.3125,0.0312,1.25,0.0312,1.3125,0.0312,1.3125,0.0312,1.25,0.0625,1.25,0.0312,1.3125,0.0625,1.25,0.0625,1.3125,0.0625,1.3125,0.0625,1.25,0.0938,1.25,0.0625,1.3125,0.0938,1.25,0.0938,1.3125,0.0938,1.3125,0.0938,1.25,0.125,1.25,0.0938,1.3125,0.125,1.25,0.125,1.3125,0.125,1.3125,0.125,1.25,0.1562,1.25,0.125,1.3125,0.1562,1.25,0.1562,1.3125,0.1562,1.3125,0.1562,1.25,0.1875,1.25,0.1562,1.3125,0.1875,1.25,0.1875,1.3125,0.1875,1.3125,0.1875,1.25,0.2187,1.25,0.1875,1.3125,0.2187,1.25,0.2187,1.3125,0.2187,1.3125,0.2187,1.25,0.25,1.25,0.2187,1.3125,0.25,1.25,0.25,1.3125,0.25,1.3125,0.25,1.25,0.2812,1.25,0.25,1.3125,0.2812,1.25,0.2812,1.3125,0.2812,1.3125,0.2812,1.25,0.3125,1.25,0.2812,1.3125,0.3125,1.25,0.3125,1.3125,0.3125,1.3125,0.3125,1.25,0.3437,1.25,0.3125,1.3125,0.3437,1.25,0.3437,1.3125,0.3437,1.3125,0.3437,1.25,0.375,1.25,0.3437,1.3125,0.375,1.25,0.375,1.3125,0.375,1.3125,0.375,1.25,0.4062,1.25,0.375,1.3125,0.4062,1.25,0.4062,1.3125,0.4062,1.3125,0.4062,1.25,0.4375,1.25,0.4062,1.3125,0.4375,1.25,0.4375,1.3125,0.4375,1.3125,0.4375,1.25,0.4688,1.25,0.4375,1.3125,0.4688,1.25,0.4688,1.3125,0.4688,1.3125,0.4688,1.25,0.5,1.25,0.4688,1.3125,0.5,1.25,0.5,1.3125,0.5,1.3125,0.5,1.25,0.5313,1.25,0.5,1.3125,0.5313,1.25,0.5313,1.3125,0.5313,1.3125,0.5313,1.25,0.5625,1.25,0.5313,1.3125,0.5625,1.25,0.5625,1.3125,0.5625,1.3125,0.5625,1.25,0.5938,1.25,0.5625,1.3125,0.5938,1.25,0.5938,1.3125,0.5938,1.3125,0.5938,1.25,0.625,1.25,0.5938,1.3125,0.625,1.25,0.625,1.3125,0.625,1.3125,0.625,1.25,0.6563,1.25,0.625,1.3125,0.6563,1.25,0.6563,1.3125,0.6563,1.3125,0.6563,1.25,0.6875,1.25,0.6563,1.3125,0.6875,1.25,0.6875,1.3125,0.6875,1.3125,0.6875,1.25,0.7188,1.25,0.6875,1.3125,0.7188,1.25,0.7188,1.3125,0.7188,1.3125,0.7188,1.25,0.75,1.25,0.7188,1.3125,0.75,1.25,0.75,1.3125,0.75,1.3125,0.75,1.25,0.7813,1.25,0.75,1.3125,0.7813,1.25,0.7813,1.3125,0.7813,1.3125,0.7813,1.25,0.8125,1.25,0.7813,1.3125,0.8125,1.25,0.8125,1.3125,0.8125,1.3125,0.8125,1.25,0.8438,1.25,0.8125,1.3125,0.8438,1.25,0.8438,1.3125,0.8438,1.3125,0.8438,1.25,0.875,1.25,0.8438,1.3125,0.875,1.25,0.875,1.3125,0.875,1.3125,0.875,1.25,0.9063,1.25,0.875,1.3125,0.9063,1.25,0.9063,1.3125,0.9063,1.3125,0.9063,1.25,0.9375,1.25,0.9063,1.3125,0.9375,1.25,0.9375,1.3125,0.9375,1.3125,0.9375,1.25,0.9688,1.25,0.9375,1.3125,0.9688,1.25,0.9688,1.3125,0.9688,1.3125,0.9688,1.25,1.0,1.25,0.9688,1.3125,1.0,1.25,1.0,1.3125,0.0,1.25,0.0,1.1875,0.0312,1.1875,0.0,1.25,0.0312,1.1875,0.0312,1.25,0.0312,1.25,0.0312,1.1875,0.0625,1.1875,0.0312,1.25,0.0625,1.1875,0.0625,1.25,0.0625,1.25,0.0625,1.1875,0.0938,1.1875,0.0625,1.25,0.0938,1.1875,0.0938,1.25,0.0938,1.25,0.0938,1.1875,0.125,1.1875,0.0938,1.25,0.125,1.1875,0.125,1.25,0.125,1.25,0.125,1.1875,0.1562,1.1875,0.125,1.25,0.1562,1.1875,0.1562,1.25,0.1562,1.25,0.1562,1.1875,0.1875,1.1875,0.1562,1.25,0.1875,1.1875,0.1875,1.25,0.1875,1.25,0.1875,1.1875,0.2187,1.1875,0.1875,1.25,0.2187,1.1875,0.2187,1.25,0.2187,1.25,0.2187,1.1875,0.25,1.1875,0.2187,1.25,0.25,1.1875,0.25,1.25,0.25,1.25,0.25,1.1875,0.2812,1.1875,0.25,1.25,0.2812,1.1875,0.2812,1.25,0.2812,1.25,0.2812,1.1875,0.3125,1.1875,0.2812,1.25,0.3125,1.1875,0.3125,1.25,0.3125,1.25,0.3125,1.1875,0.3437,1.1875,0.3125,1.25,0.3437,1.1875,0.3437,1.25,0.3437,1.25,0.3437,1.1875,0.375,1.1875,0.3437,1.25,0.375,1.1875,0.375,1.25,0.375,1.25,0.375,1.1875,0.4062,1.1875,0.375,1.25,0.4062,1.1875,0.4062,1.25,0.4062,1.25,0.4062,1.1875,0.4375,1.1875,0.4062,1.25,0.4375,1.1875,0.4375,1.25,0.4375,1.25,0.4375,1.1875,0.4688,1.1875,0.4375,1.25,0.4688,1.1875,0.4688,1.25,0.4688,1.25,0.4688,1.1875,0.5,1.1875,0.4688,1.25,0.5,1.1875,0.5,1.25,0.5,1.25,0.5,1.1875,0.5313,1.1875,0.5,1.25,0.5313,1.1875,0.5313,1.25,0.5313,1.25,0.5313,1.1875,0.5625,1.1875,0.5313,1.25,0.5625,1.1875,0.5625,1.25,0.5625,1.25,0.5625,1.1875,0.5938,1.1875,0.5625,1.25,0.5938,1.1875,0.5938,1.25,0.5938,1.25,0.5938,1.1875,0.625,1.1875,0.5938,1.25,0.625,1.1875,0.625,1.25,0.625,1.25,0.625,1.1875,0.6563,1.1875,0.625,1.25,0.6563,1.1875,0.6563,1.25,0.6563,1.25,0.6563,1.1875,0.6875,1.1875,0.6563,1.25,0.6875,1.1875,0.6875,1.25,0.6875,1.25,0.6875,1.1875,0.7188,1.1875,0.6875,1.25,0.7188,1.1875,0.7188,1.25,0.7188,1.25,0.7188,1.1875,0.75,1.1875,0.7188,1.25,0.75,1.1875,0.75,1.25,0.75,1.25,0.75,1.1875,0.7813,1.1875,0.75,1.25,0.7813,1.1875,0.7813,1.25,0.7813,1.25,0.7813,1.1875,0.8125,1.1875,0.7813,1.25,0.8125,1.1875,0.8125,1.25,0.8125,1.25,0.8125,1.1875,0.8438,1.1875,0.8125,1.25,0.8438,1.1875,0.8438,1.25,0.8438,1.25,0.8438,1.1875,0.875,1.1875,0.8438,1.25,0.875,1.1875,0.875,1.25,0.875,1.25,0.875,1.1875,0.9063,1.1875,0.875,1.25,0.9063,1.1875,0.9063,1.25,0.9063,1.25,0.9063,1.1875,0.9375,1.1875,0.9063,1.25,0.9375,1.1875,0.9375,1.25,0.9375,1.25,0.9375,1.1875,0.9688,1.1875,0.9375,1.25,0.9688,1.1875,0.9688,1.25,0.9688,1.25,0.9688,1.1875,1.0,1.1875,0.9688,1.25,1.0,1.1875,1.0,1.25,0.0,1.1875,0.0,1.125,0.0312,1.125,0.0,1.1875,0.0312,1.125,0.0312,1.1875,0.0312,1.1875,0.0312,1.125,0.0625,1.125,0.0312,1.1875,0.0625,1.125,0.0625,1.1875,0.0625,1.1875,0.0625,1.125,0.0938,1.125,0.0625,1.1875,0.0938,1.125,0.0938,1.1875,0.0938,1.1875,0.0938,1.125,0.125,1.125,0.0938,1.1875,0.125,1.125,0.125,1.1875,0.125,1.1875,0.125,1.125,0.1562,1.125,0.125,1.1875,0.1562,1.125,0.1562,1.1875,0.1562,1.1875,0.1562,1.125,0.1875,1.125,0.1562,1.1875,0.1875,1.125,0.1875,1.1875,0.1875,1.1875,0.1875,1.125,0.2187,1.125,0.1875,1.1875,0.2187,1.125,0.2187,1.1875,0.2187,1.1875,0.2187,1.125,0.25,1.125,0.2187,1.1875,0.25,1.125,0.25,1.1875,0.25,1.1875,0.25,1.125,0.2812,1.125,0.25,1.1875,0.2812,1.125,0.2812,1.1875,0.2812,1.1875,0.2812,1.125,0.3125,1.125,0.2812,1.1875,0.3125,1.125,0.3125,1.1875,0.3125,1.1875,0.3125,1.125,0.3437,1.125,0.3125,1.1875,0.3437,1.125,0.3437,1.1875,0.3437,1.1875,0.3437,1.125,0.375,1.125,0.3437,1.1875,0.375,1.125,0.375,1.1875,0.375,1.1875,0.375,1.125,0.4062,1.125,0.375,1.1875,0.4062,1.125,0.4062,1.1875,0.4062,1.1875,0.4062,1.125,0.4375,1.125,0.4062,1.1875,0.4375,1.125,0.4375,1.1875,0.4375,1.1875,0.4375,1.125,0.4688,1.125,0.4375,1.1875,0.4688,1.125,0.4688,1.1875,0.4688,1.1875,0.4688,1.125,0.5,1.125,0.4688,1.1875,0.5,1.125,0.5,1.1875,0.5,1.1875,0.5,1.125,0.5313,1.125,0.5,1.1875,0.5313,1.125,0.5313,1.1875,0.5313,1.1875,0.5313,1.125,0.5625,1.125,0.5313,1.1875,0.5625,1.125,0.5625,1.1875,0.5625,1.1875,0.5625,1.125,0.5938,1.125,0.5625,1.1875,0.5938,1.125,0.5938,1.1875,0.5938,1.1875,0.5938,1.125,0.625,1.125,0.5938,1.1875,0.625,1.125,0.625,1.1875,0.625,1.1875,0.625,1.125,0.6563,1.125,0.625,1.1875,0.6563,1.125,0.6563,1.1875,0.6563,1.1875,0.6563,1.125,0.6875,1.125,0.6563,1.1875,0.6875,1.125,0.6875,1.1875,0.6875,1.1875,0.6875,1.125,0.7188,1.125,0.6875,1.1875,0.7188,1.125,0.7188,1.1875,0.7188,1.1875,0.7188,1.125,0.75,1.125,0.7188,1.1875,0.75,1.125,0.75,1.1875,0.75,1.1875,0.75,1.125,0.7813,1.125,0.75,1.1875,0.7813,1.125,0.7813,1.1875,0.7813,1.1875,0.7813,1.125,0.8125,1.125,0.7813,1.1875,0.8125,1.125,0.8125,1.1875,0.8125,1.1875,0.8125,1.125,0.8438,1.125,0.8125,1.1875,0.8438,1.125,0.8438,1.1875,0.8438,1.1875,0.8438,1.125,0.875,1.125,0.8438,1.1875,0.875,1.125,0.875,1.1875,0.875,1.1875,0.875,1.125,0.9063,1.125,0.875,1.1875,0.9063,1.125,0.9063,1.1875,0.9063,1.1875,0.9063,1.125,0.9375,1.125,0.9063,1.1875,0.9375,1.125,0.9375,1.1875,0.9375,1.1875,0.9375,1.125,0.9688,1.125,0.9375,1.1875,0.9688,1.125,0.9688,1.1875,0.9688,1.1875,0.9688,1.125,1.0,1.125,0.9688,1.1875,1.0,1.125,1.0,1.1875,0.0,1.125,0.0,1.0625,0.0312,1.0625,0.0,1.125,0.0312,1.0625,0.0312,1.125,0.0312,1.125,0.0312,1.0625,0.0625,1.0625,0.0312,1.125,0.0625,1.0625,0.0625,1.125,0.0625,1.125,0.0625,1.0625,0.0938,1.0625,0.0625,1.125,0.0938,1.0625,0.0938,1.125,0.0938,1.125,0.0938,1.0625,0.125,1.0625,0.0938,1.125,0.125,1.0625,0.125,1.125,0.125,1.125,0.125,1.0625,0.1562,1.0625,0.125,1.125,0.1562,1.0625,0.1562,1.125,0.1562,1.125,0.1562,1.0625,0.1875,1.0625,0.1562,1.125,0.1875,1.0625,0.1875,1.125,0.1875,1.125,0.1875,1.0625,0.2187,1.0625,0.1875,1.125,0.2187,1.0625,0.2187,1.125,0.2187,1.125,0.2187,1.0625,0.25,1.0625,0.2187,1.125,0.25,1.0625,0.25,1.125,0.25,1.125,0.25,1.0625,0.2812,1.0625,0.25,1.125,0.2812,1.0625,0.2812,1.125,0.2812,1.125,0.2812,1.0625,0.3125,1.0625,0.2812,1.125,0.3125,1.0625,0.3125,1.125,0.3125,1.125,0.3125,1.0625,0.3437,1.0625,0.3125,1.125,0.3437,1.0625,0.3437,1.125,0.3437,1.125,0.3437,1.0625,0.375,1.0625,0.3437,1.125,0.375,1.0625,0.375,1.125,0.375,1.125,0.375,1.0625,0.4062,1.0625,0.375,1.125,0.4062,1.0625,0.4062,1.125,0.4062,1.125,0.4062,1.0625,0.4375,1.0625,0.4062,1.125,0.4375,1.0625,0.4375,1.125,0.4375,1.125,0.4375,1.0625,0.4688,1.0625,0.4375,1.125,0.4688,1.0625,0.4688,1.125,0.4688,1.125,0.4688,1.0625,0.5,1.0625,0.4688,1.125,0.5,1.0625,0.5,1.125,0.5,1.125,0.5,1.0625,0.5313,1.0625,0.5,1.125,0.5313,1.0625,0.5313,1.125,0.5313,1.125,0.5313,1.0625,0.5625,1.0625,0.5313,1.125,0.5625,1.0625,0.5625,1.125,0.5625,1.125,0.5625,1.0625,0.5938,1.0625,0.5625,1.125,0.5938,1.0625,0.5938,1.125,0.5938,1.125,0.5938,1.0625,0.625,1.0625,0.5938,1.125,0.625,1.0625,0.625,1.125,0.625,1.125,0.625,1.0625,0.6563,1.0625,0.625,1.125,0.6563,1.0625,0.6563,1.125,0.6563,1.125,0.6563,1.0625,0.6875,1.0625,0.6563,1.125,0.6875,1.0625,0.6875,1.125,0.6875,1.125,0.6875,1.0625,0.7188,1.0625,0.6875,1.125,0.7188,1.0625,0.7188,1.125,0.7188,1.125,0.7188,1.0625,0.75,1.0625,0.7188,1.125,0.75,1.0625,0.75,1.125,0.75,1.125,0.75,1.0625,0.7813,1.0625,0.75,1.125,0.7813,1.0625,0.7813,1.125,0.7813,1.125,0.7813,1.0625,0.8125,1.0625,0.7813,1.125,0.8125,1.0625,0.8125,1.125,0.8125,1.125,0.8125,1.0625,0.8438,1.0625,0.8125,1.125,0.8438,1.0625,0.8438,1.125,0.8438,1.125,0.8438,1.0625,0.875,1.0625,0.8438,1.125,0.875,1.0625,0.875,1.125,0.875,1.125,0.875,1.0625,0.9063,1.0625,0.875,1.125,0.9063,1.0625,0.9063,1.125,0.9063,1.125,0.9063,1.0625,0.9375,1.0625,0.9063,1.125,0.9375,1.0625,0.9375,1.125,0.9375,1.125,0.9375,1.0625,0.9688,1.0625,0.9375,1.125,0.9688,1.0625,0.9688,1.125,0.9688,1.125,0.9688,1.0625,1.0,1.0625,0.9688,1.125,1.0,1.0625,1.0,1.125,0.0,1.0,0.0312,1.0625,0.0,1.0625,0.0312,1.0,0.0625,1.0625,0.0312,1.0625,0.0625,1.0,0.0938,1.0625,0.0625,1.0625,0.0938,1.0,0.125,1.0625,0.0938,1.0625,0.125,1.0,0.1562,1.0625,0.125,1.0625,0.1562,1.0,0.1875,1.0625,0.1562,1.0625,0.1875,1.0,0.2187,1.0625,0.1875,1.0625,0.2187,1.0,0.25,1.0625,0.2187,1.0625,0.25,1.0,0.2812,1.0625,0.25,1.0625,0.2812,1.0,0.3125,1.0625,0.2812,1.0625,0.3125,1.0,0.3437,1.0625,0.3125,1.0625,0.3437,1.0,0.375,1.0625,0.3437,1.0625,0.375,1.0,0.4062,1.0625,0.375,1.0625,0.4062,1.0,0.4375,1.0625,0.4062,1.0625,0.4375,1.0,0.4688,1.0625,0.4375,1.0625,0.4688,1.0,0.5,1.0625,0.4688,1.0625,0.5,1.0,0.5313,1.0625,0.5,1.0625,0.5313,1.0,0.5625,1.0625,0.5313,1.0625,0.5625,1.0,0.5938,1.0625,0.5625,1.0625,0.5938,1.0,0.625,1.0625,0.5938,1.0625,0.625,1.0,0.6563,1.0625,0.625,1.0625,0.6563,1.0,0.6875,1.0625,0.6563,1.0625,0.6875,1.0,0.7188,1.0625,0.6875,1.0625,0.7188,1.0,0.75,1.0625,0.7188,1.0625,0.75,1.0,0.7813,1.0625,0.75,1.0625,0.7813,1.0,0.8125,1.0625,0.7813,1.0625,0.8125,1.0,0.8438,1.0625,0.8125,1.0625,0.8438,1.0,0.875,1.0625,0.8438,1.0625,0.875,1.0,0.9063,1.0625,0.875,1.0625,0.9063,1.0,0.9375,1.0625,0.9063,1.0625,0.9375,1.0,0.9688,1.0625,0.9375,1.0625,0.9688,1.0,1.0,1.0625,0.9688,1.0625],"uvs2":null,"colors":null,"hasVertexAlpha":false,"matricesIndices":null,"matricesWeights":null,"matricesIndicesExtra":null,"matricesWeightsExtra":null,"indices":[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,1984,1985,1986,1987,1988,1989,1990,1991,1992,1993,1994,1995,1996,1997,1998,1999,2000,2001,2002,2003,2004,2005,2006,2007,2008,2009,2010,2011,2012,2013,2014,2015,2016,2017,2018,2019,2020,2021,2022,2023,2024,2025,2026,2027,2028,2029,2030,2031,2032,2033,2034,2035,2036,2037,2038,2039,2040,2041,2042,2043,2044,2045,2046,2047,2048,2049,2050,2051,2052,2053,2054,2055,2056,2057,2058,2059,2060,2061,2062,2063,2064,2065,2066,2067,2068,2069,2070,2071,2072,2073,2074,2075,2076,2077,2078,2079,2080,2081,2082,2083,2084,2085,2086,2087,2088,2089,2090,2091,2092,2093,2094,2095,2096,2097,2098,2099,2100,2101,2102,2103,2104,2105,2106,2107,2108,2109,2110,2111,2112,2113,2114,2115,2116,2117,2118,2119,2120,2121,2122,2123,2124,2125,2126,2127,2128,2129,2130,2131,2132,2133,2134,2135,2136,2137,2138,2139,2140,2141,2142,2143,2144,2145,2146,2147,2148,2149,2150,2151,2152,2153,2154,2155,2156,2157,2158,2159,2160,2161,2162,2163,2164,2165,2166,2167,2168,2169,2170,2171,2172,2173,2174,2175,2176,2177,2178,2179,2180,2181,2182,2183,2184,2185,2186,2187,2188,2189,2190,2191,2192,2193,2194,2195,2196,2197,2198,2199,2200,2201,2202,2203,2204,2205,2206,2207,2208,2209,2210,2211,2212,2213,2214,2215,2216,2217,2218,2219,2220,2221,2222,2223,2224,2225,2226,2227,2228,2229,2230,2231,2232,2233,2234,2235,2236,2237,2238,2239,2240,2241,2242,2243,2244,2245,2246,2247,2248,2249,2250,2251,2252,2253,2254,2255,2256,2257,2258,2259,2260,2261,2262,2263,2264,2265,2266,2267,2268,2269,2270,2271,2272,2273,2274,2275,2276,2277,2278,2279,2280,2281,2282,2283,2284,2285,2286,2287,2288,2289,2290,2291,2292,2293,2294,2295,2296,2297,2298,2299,2300,2301,2302,2303,2304,2305,2306,2307,2308,2309,2310,2311,2312,2313,2314,2315,2316,2317,2318,2319,2320,2321,2322,2323,2324,2325,2326,2327,2328,2329,2330,2331,2332,2333,2334,2335,2336,2337,2338,2339,2340,2341,2342,2343,2344,2345,2346,2347,2348,2349,2350,2351,2352,2353,2354,2355,2356,2357,2358,2359,2360,2361,2362,2363,2364,2365,2366,2367,2368,2369,2370,2371,2372,2373,2374,2375,2376,2377,2378,2379,2380,2381,2382,2383,2384,2385,2386,2387,2388,2389,2390,2391,2392,2393,2394,2395,2396,2397,2398,2399,2400,2401,2402,2403,2404,2405,2406,2407,2408,2409,2410,2411,2412,2413,2414,2415,2416,2417,2418,2419,2420,2421,2422,2423,2424,2425,2426,2427,2428,2429,2430,2431,2432,2433,2434,2435,2436,2437,2438,2439,2440,2441,2442,2443,2444,2445,2446,2447,2448,2449,2450,2451,2452,2453,2454,2455,2456,2457,2458,2459,2460,2461,2462,2463,2464,2465,2466,2467,2468,2469,2470,2471,2472,2473,2474,2475,2476,2477,2478,2479,2480,2481,2482,2483,2484,2485,2486,2487,2488,2489,2490,2491,2492,2493,2494,2495,2496,2497,2498,2499,2500,2501,2502,2503,2504,2505,2506,2507,2508,2509,2510,2511,2512,2513,2514,2515,2516,2517,2518,2519,2520,2521,2522,2523,2524,2525,2526,2527,2528,2529,2530,2531,2532,2533,2534,2535,2536,2537,2538,2539,2540,2541,2542,2543,2544,2545,2546,2547,2548,2549,2550,2551,2552,2553,2554,2555,2556,2557,2558,2559,2560,2561,2562,2563,2564,2565,2566,2567,2568,2569,2570,2571,2572,2573,2574,2575,2576,2577,2578,2579,2580,2581,2582,2583,2584,2585,2586,2587,2588,2589,2590,2591,2592,2593,2594,2595,2596,2597,2598,2599,2600,2601,2602,2603,2604,2605,2606,2607,2608,2609,2610,2611,2612,2613,2614,2615,2616,2617,2618,2619,2620,2621,2622,2623,2624,2625,2626,2627,2628,2629,2630,2631,2632,2633,2634,2635,2636,2637,2638,2639,2640,2641,2642,2643,2644,2645,2646,2647,2648,2649,2650,2651,2652,2653,2654,2655,2656,2657,2658,2659,2660,2661,2662,2663,2664,2665,2666,2667,2668,2669,2670,2671,2672,2673,2674,2675,2676,2677,2678,2679,2680,2681,2682,2683,2684,2685,2686,2687,2688,2689,2690,2691,2692,2693,2694,2695,2696,2697,2698,2699,2700,2701,2702,2703,2704,2705,2706,2707,2708,2709,2710,2711,2712,2713,2714,2715,2716,2717,2718,2719,2720,2721,2722,2723,2724,2725,2726,2727,2728,2729,2730,2731,2732,2733,2734,2735,2736,2737,2738,2739,2740,2741,2742,2743,2744,2745,2746,2747,2748,2749,2750,2751,2752,2753,2754,2755,2756,2757,2758,2759,2760,2761,2762,2763,2764,2765,2766,2767,2768,2769,2770,2771,2772,2773,2774,2775,2776,2777,2778,2779,2780,2781,2782,2783,2784,2785,2786,2787,2788,2789,2790,2791,2792,2793,2794,2795,2796,2797,2798,2799,2800,2801,2802,2803,2804,2805,2806,2807,2808,2809,2810,2811,2812,2813,2814,2815,2816,2817,2818,2819,2820,2821,2822,2823,2824,2825,2826,2827,2828,2829,2830,2831,2832,2833,2834,2835,2836,2837,2838,2839,2840,2841,2842,2843,2844,2845,2846,2847,2848,2849,2850,2851,2852,2853,2854,2855,2856,2857,2858,2859,2860,2861,2862,2863,2864,2865,2866,2867,2868,2869,2870,2871,2872,2873,2874,2875,2876,2877,2878,2879],"receiveShadows":true,"infiniteDistance":false,"billboardMode":0,"visibility":1.0,"subMeshes":[{"materialIndex":0,"verticesStart":0,"verticesCount":2880,"indexStart":0,"indexCount":2880}],"instances":null,"skeletonId":-1,"numBoneInfluencers":4,"applyFog":true,"lodMeshIds":null,"lodDistances":null,"lodCoverages":null,"rotation":null,"scaling":[1.0,1.0,1.0],"rotationQuaternion":[0.0,0.7071,0.0,0.7071],"actions":null,"checkCollisions":false,"pickable":false,"showBoundingBox":false,"showSubMeshesBoundingBox":false,"alphaIndex":1000,"physicsImpostor":0,"physicsMass":0.0,"physicsFriction":0.0,"physicsRestitution":0.0,"name":"PhysicalMesh","id":"311381f0-8487-4fc5-89fa-7d01dfda5e2f","parentId":null,"position":[3.0,0.0,0.0],"animations":[],"autoAnimate":true,"autoAnimateFrom":0,"autoAnimateTo":100,"autoAnimateLoop":true,"metadata":null},{"materialId":"65f1f395-ccb5-4643-a9af-5dc53b87420f","isEnabled":true,"isVisible":true,"positions":[0.0,1.0,0.0,0.0,0.9808,0.1951,-0.0381,0.9808,0.1913,0.0,1.0,0.0,-0.0381,0.9808,0.1913,-0.0747,0.9808,0.1802,0.0,1.0,0.0,-0.0747,0.9808,0.1802,-0.1084,0.9808,0.1622,0.0,1.0,0.0,-0.1084,0.9808,0.1622,-0.1379,0.9808,0.1379,0.0,1.0,0.0,-0.1379,0.9808,0.1379,-0.1622,0.9808,0.1084,0.0,1.0,0.0,-0.1622,0.9808,0.1084,-0.1802,0.9808,0.0747,0.0,1.0,0.0,-0.1802,0.9808,0.0747,-0.1913,0.9808,0.0381,0.0,1.0,0.0,-0.1913,0.9808,0.0381,-0.1951,0.9808,0.0,0.0,1.0,0.0,-0.1951,0.9808,0.0,-0.1913,0.9808,-0.0381,0.0,1.0,0.0,-0.1913,0.9808,-0.0381,-0.1802,0.9808,-0.0747,0.0,1.0,0.0,-0.1802,0.9808,-0.0747,-0.1622,0.9808,-0.1084,0.0,1.0,0.0,-0.1622,0.9808,-0.1084,-0.1379,0.9808,-0.1379,0.0,1.0,0.0,-0.1379,0.9808,-0.1379,-0.1084,0.9808,-0.1622,0.0,1.0,0.0,-0.1084,0.9808,-0.1622,-0.0747,0.9808,-0.1802,0.0,1.0,0.0,-0.0747,0.9808,-0.1802,-0.0381,0.9808,-0.1913,0.0,1.0,0.0,-0.0381,0.9808,-0.1913,0.0,0.9808,-0.1951,0.0,1.0,0.0,0.0,0.9808,-0.1951,0.0381,0.9808,-0.1913,0.0,1.0,0.0,0.0381,0.9808,-0.1913,0.0747,0.9808,-0.1802,0.0,1.0,0.0,0.0747,0.9808,-0.1802,0.1084,0.9808,-0.1622,0.0,1.0,0.0,0.1084,0.9808,-0.1622,0.1379,0.9808,-0.1379,0.0,1.0,0.0,0.1379,0.9808,-0.1379,0.1622,0.9808,-0.1084,0.0,1.0,0.0,0.1622,0.9808,-0.1084,0.1802,0.9808,-0.0747,0.0,1.0,0.0,0.1802,0.9808,-0.0747,0.1913,0.9808,-0.0381,0.0,1.0,0.0,0.1913,0.9808,-0.0381,0.1951,0.9808,0.0,0.0,1.0,0.0,0.1951,0.9808,0.0,0.1913,0.9808,0.0381,0.0,1.0,0.0,0.1913,0.9808,0.0381,0.1802,0.9808,0.0747,0.0,1.0,0.0,0.1802,0.9808,0.0747,0.1622,0.9808,0.1084,0.0,1.0,0.0,0.1622,0.9808,0.1084,0.1379,0.9808,0.1379,0.0,1.0,0.0,0.1379,0.9808,0.1379,0.1084,0.9808,0.1622,0.0,1.0,0.0,0.1084,0.9808,0.1622,0.0747,0.9808,0.1802,0.0,1.0,0.0,0.0747,0.9808,0.1802,0.0381,0.9808,0.1913,0.0,1.0,0.0,0.0381,0.9808,0.1913,0.0,0.9808,0.1951,0.0,0.9808,0.1951,0.0,0.9239,0.3827,-0.0747,0.9239,0.3753,0.0,0.9808,0.1951,-0.0747,0.9239,0.3753,-0.0381,0.9808,0.1913,-0.0381,0.9808,0.1913,-0.0747,0.9239,0.3753,-0.1464,0.9239,0.3536,-0.0381,0.9808,0.1913,-0.1464,0.9239,0.3536,-0.0747,0.9808,0.1802,-0.0747,0.9808,0.1802,-0.1464,0.9239,0.3536,-0.2126,0.9239,0.3182,-0.0747,0.9808,0.1802,-0.2126,0.9239,0.3182,-0.1084,0.9808,0.1622,-0.1084,0.9808,0.1622,-0.2126,0.9239,0.3182,-0.2706,0.9239,0.2706,-0.1084,0.9808,0.1622,-0.2706,0.9239,0.2706,-0.1379,0.9808,0.1379,-0.1379,0.9808,0.1379,-0.2706,0.9239,0.2706,-0.3182,0.9239,0.2126,-0.1379,0.9808,0.1379,-0.3182,0.9239,0.2126,-0.1622,0.9808,0.1084,-0.1622,0.9808,0.1084,-0.3182,0.9239,0.2126,-0.3536,0.9239,0.1464,-0.1622,0.9808,0.1084,-0.3536,0.9239,0.1464,-0.1802,0.9808,0.0747,-0.1802,0.9808,0.0747,-0.3536,0.9239,0.1464,-0.3753,0.9239,0.0747,-0.1802,0.9808,0.0747,-0.3753,0.9239,0.0747,-0.1913,0.9808,0.0381,-0.1913,0.9808,0.0381,-0.3753,0.9239,0.0747,-0.3827,0.9239,0.0,-0.1913,0.9808,0.0381,-0.3827,0.9239,0.0,-0.1951,0.9808,0.0,-0.1951,0.9808,0.0,-0.3827,0.9239,0.0,-0.3753,0.9239,-0.0747,-0.1951,0.9808,0.0,-0.3753,0.9239,-0.0747,-0.1913,0.9808,-0.0381,-0.1913,0.9808,-0.0381,-0.3753,0.9239,-0.0747,-0.3536,0.9239,-0.1464,-0.1913,0.9808,-0.0381,-0.3536,0.9239,-0.1464,-0.1802,0.9808,-0.0747,-0.1802,0.9808,-0.0747,-0.3536,0.9239,-0.1464,-0.3182,0.9239,-0.2126,-0.1802,0.9808,-0.0747,-0.3182,0.9239,-0.2126,-0.1622,0.9808,-0.1084,-0.1622,0.9808,-0.1084,-0.3182,0.9239,-0.2126,-0.2706,0.9239,-0.2706,-0.1622,0.9808,-0.1084,-0.2706,0.9239,-0.2706,-0.1379,0.9808,-0.1379,-0.1379,0.9808,-0.1379,-0.2706,0.9239,-0.2706,-0.2126,0.9239,-0.3182,-0.1379,0.9808,-0.1379,-0.2126,0.9239,-0.3182,-0.1084,0.9808,-0.1622,-0.1084,0.9808,-0.1622,-0.2126,0.9239,-0.3182,-0.1464,0.9239,-0.3536,-0.1084,0.9808,-0.1622,-0.1464,0.9239,-0.3536,-0.0747,0.9808,-0.1802,-0.0747,0.9808,-0.1802,-0.1464,0.9239,-0.3536,-0.0747,0.9239,-0.3753,-0.0747,0.9808,-0.1802,-0.0747,0.9239,-0.3753,-0.0381,0.9808,-0.1913,-0.0381,0.9808,-0.1913,-0.0747,0.9239,-0.3753,0.0,0.9239,-0.3827,-0.0381,0.9808,-0.1913,0.0,0.9239,-0.3827,0.0,0.9808,-0.1951,0.0,0.9808,-0.1951,0.0,0.9239,-0.3827,0.0747,0.9239,-0.3753,0.0,0.9808,-0.1951,0.0747,0.9239,-0.3753,0.0381,0.9808,-0.1913,0.0381,0.9808,-0.1913,0.0747,0.9239,-0.3753,0.1464,0.9239,-0.3536,0.0381,0.9808,-0.1913,0.1464,0.9239,-0.3536,0.0747,0.9808,-0.1802,0.0747,0.9808,-0.1802,0.1464,0.9239,-0.3536,0.2126,0.9239,-0.3182,0.0747,0.9808,-0.1802,0.2126,0.9239,-0.3182,0.1084,0.9808,-0.1622,0.1084,0.9808,-0.1622,0.2126,0.9239,-0.3182,0.2706,0.9239,-0.2706,0.1084,0.9808,-0.1622,0.2706,0.9239,-0.2706,0.1379,0.9808,-0.1379,0.1379,0.9808,-0.1379,0.2706,0.9239,-0.2706,0.3182,0.9239,-0.2126,0.1379,0.9808,-0.1379,0.3182,0.9239,-0.2126,0.1622,0.9808,-0.1084,0.1622,0.9808,-0.1084,0.3182,0.9239,-0.2126,0.3536,0.9239,-0.1464,0.1622,0.9808,-0.1084,0.3536,0.9239,-0.1464,0.1802,0.9808,-0.0747,0.1802,0.9808,-0.0747,0.3536,0.9239,-0.1464,0.3753,0.9239,-0.0747,0.1802,0.9808,-0.0747,0.3753,0.9239,-0.0747,0.1913,0.9808,-0.0381,0.1913,0.9808,-0.0381,0.3753,0.9239,-0.0747,0.3827,0.9239,0.0,0.1913,0.9808,-0.0381,0.3827,0.9239,0.0,0.1951,0.9808,0.0,0.1951,0.9808,0.0,0.3827,0.9239,0.0,0.3753,0.9239,0.0747,0.1951,0.9808,0.0,0.3753,0.9239,0.0747,0.1913,0.9808,0.0381,0.1913,0.9808,0.0381,0.3753,0.9239,0.0747,0.3536,0.9239,0.1464,0.1913,0.9808,0.0381,0.3536,0.9239,0.1464,0.1802,0.9808,0.0747,0.1802,0.9808,0.0747,0.3536,0.9239,0.1464,0.3182,0.9239,0.2126,0.1802,0.9808,0.0747,0.3182,0.9239,0.2126,0.1622,0.9808,0.1084,0.1622,0.9808,0.1084,0.3182,0.9239,0.2126,0.2706,0.9239,0.2706,0.1622,0.9808,0.1084,0.2706,0.9239,0.2706,0.1379,0.9808,0.1379,0.1379,0.9808,0.1379,0.2706,0.9239,0.2706,0.2126,0.9239,0.3182,0.1379,0.9808,0.1379,0.2126,0.9239,0.3182,0.1084,0.9808,0.1622,0.1084,0.9808,0.1622,0.2126,0.9239,0.3182,0.1464,0.9239,0.3536,0.1084,0.9808,0.1622,0.1464,0.9239,0.3536,0.0747,0.9808,0.1802,0.0747,0.9808,0.1802,0.1464,0.9239,0.3536,0.0747,0.9239,0.3753,0.0747,0.9808,0.1802,0.0747,0.9239,0.3753,0.0381,0.9808,0.1913,0.0381,0.9808,0.1913,0.0747,0.9239,0.3753,0.0,0.9239,0.3827,0.0381,0.9808,0.1913,0.0,0.9239,0.3827,0.0,0.9808,0.1951,0.0,0.9239,0.3827,0.0,0.8315,0.5556,-0.1084,0.8315,0.5449,0.0,0.9239,0.3827,-0.1084,0.8315,0.5449,-0.0747,0.9239,0.3753,-0.0747,0.9239,0.3753,-0.1084,0.8315,0.5449,-0.2126,0.8315,0.5133,-0.0747,0.9239,0.3753,-0.2126,0.8315,0.5133,-0.1464,0.9239,0.3536,-0.1464,0.9239,0.3536,-0.2126,0.8315,0.5133,-0.3087,0.8315,0.4619,-0.1464,0.9239,0.3536,-0.3087,0.8315,0.4619,-0.2126,0.9239,0.3182,-0.2126,0.9239,0.3182,-0.3087,0.8315,0.4619,-0.3928,0.8315,0.3928,-0.2126,0.9239,0.3182,-0.3928,0.8315,0.3928,-0.2706,0.9239,0.2706,-0.2706,0.9239,0.2706,-0.3928,0.8315,0.3928,-0.4619,0.8315,0.3087,-0.2706,0.9239,0.2706,-0.4619,0.8315,0.3087,-0.3182,0.9239,0.2126,-0.3182,0.9239,0.2126,-0.4619,0.8315,0.3087,-0.5133,0.8315,0.2126,-0.3182,0.9239,0.2126,-0.5133,0.8315,0.2126,-0.3536,0.9239,0.1464,-0.3536,0.9239,0.1464,-0.5133,0.8315,0.2126,-0.5449,0.8315,0.1084,-0.3536,0.9239,0.1464,-0.5449,0.8315,0.1084,-0.3753,0.9239,0.0747,-0.3753,0.9239,0.0747,-0.5449,0.8315,0.1084,-0.5556,0.8315,0.0,-0.3753,0.9239,0.0747,-0.5556,0.8315,0.0,-0.3827,0.9239,0.0,-0.3827,0.9239,0.0,-0.5556,0.8315,0.0,-0.5449,0.8315,-0.1084,-0.3827,0.9239,0.0,-0.5449,0.8315,-0.1084,-0.3753,0.9239,-0.0747,-0.3753,0.9239,-0.0747,-0.5449,0.8315,-0.1084,-0.5133,0.8315,-0.2126,-0.3753,0.9239,-0.0747,-0.5133,0.8315,-0.2126,-0.3536,0.9239,-0.1464,-0.3536,0.9239,-0.1464,-0.5133,0.8315,-0.2126,-0.4619,0.8315,-0.3087,-0.3536,0.9239,-0.1464,-0.4619,0.8315,-0.3087,-0.3182,0.9239,-0.2126,-0.3182,0.9239,-0.2126,-0.4619,0.8315,-0.3087,-0.3928,0.8315,-0.3928,-0.3182,0.9239,-0.2126,-0.3928,0.8315,-0.3928,-0.2706,0.9239,-0.2706,-0.2706,0.9239,-0.2706,-0.3928,0.8315,-0.3928,-0.3087,0.8315,-0.4619,-0.2706,0.9239,-0.2706,-0.3087,0.8315,-0.4619,-0.2126,0.9239,-0.3182,-0.2126,0.9239,-0.3182,-0.3087,0.8315,-0.4619,-0.2126,0.8315,-0.5133,-0.2126,0.9239,-0.3182,-0.2126,0.8315,-0.5133,-0.1464,0.9239,-0.3536,-0.1464,0.9239,-0.3536,-0.2126,0.8315,-0.5133,-0.1084,0.8315,-0.5449,-0.1464,0.9239,-0.3536,-0.1084,0.8315,-0.5449,-0.0747,0.9239,-0.3753,-0.0747,0.9239,-0.3753,-0.1084,0.8315,-0.5449,0.0,0.8315,-0.5556,-0.0747,0.9239,-0.3753,0.0,0.8315,-0.5556,0.0,0.9239,-0.3827,0.0,0.9239,-0.3827,0.0,0.8315,-0.5556,0.1084,0.8315,-0.5449,0.0,0.9239,-0.3827,0.1084,0.8315,-0.5449,0.0747,0.9239,-0.3753,0.0747,0.9239,-0.3753,0.1084,0.8315,-0.5449,0.2126,0.8315,-0.5133,0.0747,0.9239,-0.3753,0.2126,0.8315,-0.5133,0.1464,0.9239,-0.3536,0.1464,0.9239,-0.3536,0.2126,0.8315,-0.5133,0.3087,0.8315,-0.4619,0.1464,0.9239,-0.3536,0.3087,0.8315,-0.4619,0.2126,0.9239,-0.3182,0.2126,0.9239,-0.3182,0.3087,0.8315,-0.4619,0.3928,0.8315,-0.3928,0.2126,0.9239,-0.3182,0.3928,0.8315,-0.3928,0.2706,0.9239,-0.2706,0.2706,0.9239,-0.2706,0.3928,0.8315,-0.3928,0.4619,0.8315,-0.3087,0.2706,0.9239,-0.2706,0.4619,0.8315,-0.3087,0.3182,0.9239,-0.2126,0.3182,0.9239,-0.2126,0.4619,0.8315,-0.3087,0.5133,0.8315,-0.2126,0.3182,0.9239,-0.2126,0.5133,0.8315,-0.2126,0.3536,0.9239,-0.1464,0.3536,0.9239,-0.1464,0.5133,0.8315,-0.2126,0.5449,0.8315,-0.1084,0.3536,0.9239,-0.1464,0.5449,0.8315,-0.1084,0.3753,0.9239,-0.0747,0.3753,0.9239,-0.0747,0.5449,0.8315,-0.1084,0.5556,0.8315,0.0,0.3753,0.9239,-0.0747,0.5556,0.8315,0.0,0.3827,0.9239,0.0,0.3827,0.9239,0.0,0.5556,0.8315,0.0,0.5449,0.8315,0.1084,0.3827,0.9239,0.0,0.5449,0.8315,0.1084,0.3753,0.9239,0.0747,0.3753,0.9239,0.0747,0.5449,0.8315,0.1084,0.5133,0.8315,0.2126,0.3753,0.9239,0.0747,0.5133,0.8315,0.2126,0.3536,0.9239,0.1464,0.3536,0.9239,0.1464,0.5133,0.8315,0.2126,0.4619,0.8315,0.3087,0.3536,0.9239,0.1464,0.4619,0.8315,0.3087,0.3182,0.9239,0.2126,0.3182,0.9239,0.2126,0.4619,0.8315,0.3087,0.3928,0.8315,0.3928,0.3182,0.9239,0.2126,0.3928,0.8315,0.3928,0.2706,0.9239,0.2706,0.2706,0.9239,0.2706,0.3928,0.8315,0.3928,0.3087,0.8315,0.4619,0.2706,0.9239,0.2706,0.3087,0.8315,0.4619,0.2126,0.9239,0.3182,0.2126,0.9239,0.3182,0.3087,0.8315,0.4619,0.2126,0.8315,0.5133,0.2126,0.9239,0.3182,0.2126,0.8315,0.5133,0.1464,0.9239,0.3536,0.1464,0.9239,0.3536,0.2126,0.8315,0.5133,0.1084,0.8315,0.5449,0.1464,0.9239,0.3536,0.1084,0.8315,0.5449,0.0747,0.9239,0.3753,0.0747,0.9239,0.3753,0.1084,0.8315,0.5449,0.0,0.8315,0.5556,0.0747,0.9239,0.3753,0.0,0.8315,0.5556,0.0,0.9239,0.3827,0.0,0.8315,0.5556,0.0,0.7071,0.7071,-0.1379,0.7071,0.6935,0.0,0.8315,0.5556,-0.1379,0.7071,0.6935,-0.1084,0.8315,0.5449,-0.1084,0.8315,0.5449,-0.1379,0.7071,0.6935,-0.2706,0.7071,0.6533,-0.1084,0.8315,0.5449,-0.2706,0.7071,0.6533,-0.2126,0.8315,0.5133,-0.2126,0.8315,0.5133,-0.2706,0.7071,0.6533,-0.3928,0.7071,0.5879,-0.2126,0.8315,0.5133,-0.3928,0.7071,0.5879,-0.3087,0.8315,0.4619,-0.3087,0.8315,0.4619,-0.3928,0.7071,0.5879,-0.5,0.7071,0.5,-0.3087,0.8315,0.4619,-0.5,0.7071,0.5,-0.3928,0.8315,0.3928,-0.3928,0.8315,0.3928,-0.5,0.7071,0.5,-0.5879,0.7071,0.3928,-0.3928,0.8315,0.3928,-0.5879,0.7071,0.3928,-0.4619,0.8315,0.3087,-0.4619,0.8315,0.3087,-0.5879,0.7071,0.3928,-0.6533,0.7071,0.2706,-0.4619,0.8315,0.3087,-0.6533,0.7071,0.2706,-0.5133,0.8315,0.2126,-0.5133,0.8315,0.2126,-0.6533,0.7071,0.2706,-0.6935,0.7071,0.1379,-0.5133,0.8315,0.2126,-0.6935,0.7071,0.1379,-0.5449,0.8315,0.1084,-0.5449,0.8315,0.1084,-0.6935,0.7071,0.1379,-0.7071,0.7071,0.0,-0.5449,0.8315,0.1084,-0.7071,0.7071,0.0,-0.5556,0.8315,0.0,-0.5556,0.8315,0.0,-0.7071,0.7071,0.0,-0.6935,0.7071,-0.1379,-0.5556,0.8315,0.0,-0.6935,0.7071,-0.1379,-0.5449,0.8315,-0.1084,-0.5449,0.8315,-0.1084,-0.6935,0.7071,-0.1379,-0.6533,0.7071,-0.2706,-0.5449,0.8315,-0.1084,-0.6533,0.7071,-0.2706,-0.5133,0.8315,-0.2126,-0.5133,0.8315,-0.2126,-0.6533,0.7071,-0.2706,-0.5879,0.7071,-0.3928,-0.5133,0.8315,-0.2126,-0.5879,0.7071,-0.3928,-0.4619,0.8315,-0.3087,-0.4619,0.8315,-0.3087,-0.5879,0.7071,-0.3928,-0.5,0.7071,-0.5,-0.4619,0.8315,-0.3087,-0.5,0.7071,-0.5,-0.3928,0.8315,-0.3928,-0.3928,0.8315,-0.3928,-0.5,0.7071,-0.5,-0.3928,0.7071,-0.5879,-0.3928,0.8315,-0.3928,-0.3928,0.7071,-0.5879,-0.3087,0.8315,-0.4619,-0.3087,0.8315,-0.4619,-0.3928,0.7071,-0.5879,-0.2706,0.7071,-0.6533,-0.3087,0.8315,-0.4619,-0.2706,0.7071,-0.6533,-0.2126,0.8315,-0.5133,-0.2126,0.8315,-0.5133,-0.2706,0.7071,-0.6533,-0.1379,0.7071,-0.6935,-0.2126,0.8315,-0.5133,-0.1379,0.7071,-0.6935,-0.1084,0.8315,-0.5449,-0.1084,0.8315,-0.5449,-0.1379,0.7071,-0.6935,0.0,0.7071,-0.7071,-0.1084,0.8315,-0.5449,0.0,0.7071,-0.7071,0.0,0.8315,-0.5556,0.0,0.8315,-0.5556,0.0,0.7071,-0.7071,0.138,0.7071,-0.6935,0.0,0.8315,-0.5556,0.138,0.7071,-0.6935,0.1084,0.8315,-0.5449,0.1084,0.8315,-0.5449,0.138,0.7071,-0.6935,0.2706,0.7071,-0.6533,0.1084,0.8315,-0.5449,0.2706,0.7071,-0.6533,0.2126,0.8315,-0.5133,0.2126,0.8315,-0.5133,0.2706,0.7071,-0.6533,0.3928,0.7071,-0.5879,0.2126,0.8315,-0.5133,0.3928,0.7071,-0.5879,0.3087,0.8315,-0.4619,0.3087,0.8315,-0.4619,0.3928,0.7071,-0.5879,0.5,0.7071,-0.5,0.3087,0.8315,-0.4619,0.5,0.7071,-0.5,0.3928,0.8315,-0.3928,0.3928,0.8315,-0.3928,0.5,0.7071,-0.5,0.5879,0.7071,-0.3928,0.3928,0.8315,-0.3928,0.5879,0.7071,-0.3928,0.4619,0.8315,-0.3087,0.4619,0.8315,-0.3087,0.5879,0.7071,-0.3928,0.6533,0.7071,-0.2706,0.4619,0.8315,-0.3087,0.6533,0.7071,-0.2706,0.5133,0.8315,-0.2126,0.5133,0.8315,-0.2126,0.6533,0.7071,-0.2706,0.6935,0.7071,-0.1379,0.5133,0.8315,-0.2126,0.6935,0.7071,-0.1379,0.5449,0.8315,-0.1084,0.5449,0.8315,-0.1084,0.6935,0.7071,-0.1379,0.7071,0.7071,0.0,0.5449,0.8315,-0.1084,0.7071,0.7071,0.0,0.5556,0.8315,0.0,0.5556,0.8315,0.0,0.7071,0.7071,0.0,0.6935,0.7071,0.138,0.5556,0.8315,0.0,0.6935,0.7071,0.138,0.5449,0.8315,0.1084,0.5449,0.8315,0.1084,0.6935,0.7071,0.138,0.6533,0.7071,0.2706,0.5449,0.8315,0.1084,0.6533,0.7071,0.2706,0.5133,0.8315,0.2126,0.5133,0.8315,0.2126,0.6533,0.7071,0.2706,0.5879,0.7071,0.3928,0.5133,0.8315,0.2126,0.5879,0.7071,0.3928,0.4619,0.8315,0.3087,0.4619,0.8315,0.3087,0.5879,0.7071,0.3928,0.5,0.7071,0.5,0.4619,0.8315,0.3087,0.5,0.7071,0.5,0.3928,0.8315,0.3928,0.3928,0.8315,0.3928,0.5,0.7071,0.5,0.3928,0.7071,0.5879,0.3928,0.8315,0.3928,0.3928,0.7071,0.5879,0.3087,0.8315,0.4619,0.3087,0.8315,0.4619,0.3928,0.7071,0.5879,0.2706,0.7071,0.6533,0.3087,0.8315,0.4619,0.2706,0.7071,0.6533,0.2126,0.8315,0.5133,0.2126,0.8315,0.5133,0.2706,0.7071,0.6533,0.1379,0.7071,0.6935,0.2126,0.8315,0.5133,0.1379,0.7071,0.6935,0.1084,0.8315,0.5449,0.1084,0.8315,0.5449,0.1379,0.7071,0.6935,0.0,0.7071,0.7071,0.1084,0.8315,0.5449,0.0,0.7071,0.7071,0.0,0.8315,0.5556,0.0,0.7071,0.7071,0.0,0.5556,0.8315,-0.1622,0.5556,0.8155,0.0,0.7071,0.7071,-0.1622,0.5556,0.8155,-0.1379,0.7071,0.6935,-0.1379,0.7071,0.6935,-0.1622,0.5556,0.8155,-0.3182,0.5556,0.7682,-0.1379,0.7071,0.6935,-0.3182,0.5556,0.7682,-0.2706,0.7071,0.6533,-0.2706,0.7071,0.6533,-0.3182,0.5556,0.7682,-0.4619,0.5556,0.6913,-0.2706,0.7071,0.6533,-0.4619,0.5556,0.6913,-0.3928,0.7071,0.5879,-0.3928,0.7071,0.5879,-0.4619,0.5556,0.6913,-0.5879,0.5556,0.5879,-0.3928,0.7071,0.5879,-0.5879,0.5556,0.5879,-0.5,0.7071,0.5,-0.5,0.7071,0.5,-0.5879,0.5556,0.5879,-0.6913,0.5556,0.4619,-0.5,0.7071,0.5,-0.6913,0.5556,0.4619,-0.5879,0.7071,0.3928,-0.5879,0.7071,0.3928,-0.6913,0.5556,0.4619,-0.7682,0.5556,0.3182,-0.5879,0.7071,0.3928,-0.7682,0.5556,0.3182,-0.6533,0.7071,0.2706,-0.6533,0.7071,0.2706,-0.7682,0.5556,0.3182,-0.8155,0.5556,0.1622,-0.6533,0.7071,0.2706,-0.8155,0.5556,0.1622,-0.6935,0.7071,0.1379,-0.6935,0.7071,0.1379,-0.8155,0.5556,0.1622,-0.8315,0.5556,0.0,-0.6935,0.7071,0.1379,-0.8315,0.5556,0.0,-0.7071,0.7071,0.0,-0.7071,0.7071,0.0,-0.8315,0.5556,0.0,-0.8155,0.5556,-0.1622,-0.7071,0.7071,0.0,-0.8155,0.5556,-0.1622,-0.6935,0.7071,-0.1379,-0.6935,0.7071,-0.1379,-0.8155,0.5556,-0.1622,-0.7682,0.5556,-0.3182,-0.6935,0.7071,-0.1379,-0.7682,0.5556,-0.3182,-0.6533,0.7071,-0.2706,-0.6533,0.7071,-0.2706,-0.7682,0.5556,-0.3182,-0.6913,0.5556,-0.4619,-0.6533,0.7071,-0.2706,-0.6913,0.5556,-0.4619,-0.5879,0.7071,-0.3928,-0.5879,0.7071,-0.3928,-0.6913,0.5556,-0.4619,-0.5879,0.5556,-0.5879,-0.5879,0.7071,-0.3928,-0.5879,0.5556,-0.5879,-0.5,0.7071,-0.5,-0.5,0.7071,-0.5,-0.5879,0.5556,-0.5879,-0.4619,0.5556,-0.6913,-0.5,0.7071,-0.5,-0.4619,0.5556,-0.6913,-0.3928,0.7071,-0.5879,-0.3928,0.7071,-0.5879,-0.4619,0.5556,-0.6913,-0.3182,0.5556,-0.7682,-0.3928,0.7071,-0.5879,-0.3182,0.5556,-0.7682,-0.2706,0.7071,-0.6533,-0.2706,0.7071,-0.6533,-0.3182,0.5556,-0.7682,-0.1622,0.5556,-0.8155,-0.2706,0.7071,-0.6533,-0.1622,0.5556,-0.8155,-0.1379,0.7071,-0.6935,-0.1379,0.7071,-0.6935,-0.1622,0.5556,-0.8155,0.0,0.5556,-0.8315,-0.1379,0.7071,-0.6935,0.0,0.5556,-0.8315,0.0,0.7071,-0.7071,0.0,0.7071,-0.7071,0.0,0.5556,-0.8315,0.1622,0.5556,-0.8155,0.0,0.7071,-0.7071,0.1622,0.5556,-0.8155,0.138,0.7071,-0.6935,0.138,0.7071,-0.6935,0.1622,0.5556,-0.8155,0.3182,0.5556,-0.7682,0.138,0.7071,-0.6935,0.3182,0.5556,-0.7682,0.2706,0.7071,-0.6533,0.2706,0.7071,-0.6533,0.3182,0.5556,-0.7682,0.4619,0.5556,-0.6913,0.2706,0.7071,-0.6533,0.4619,0.5556,-0.6913,0.3928,0.7071,-0.5879,0.3928,0.7071,-0.5879,0.4619,0.5556,-0.6913,0.5879,0.5556,-0.5879,0.3928,0.7071,-0.5879,0.5879,0.5556,-0.5879,0.5,0.7071,-0.5,0.5,0.7071,-0.5,0.5879,0.5556,-0.5879,0.6913,0.5556,-0.4619,0.5,0.7071,-0.5,0.6913,0.5556,-0.4619,0.5879,0.7071,-0.3928,0.5879,0.7071,-0.3928,0.6913,0.5556,-0.4619,0.7682,0.5556,-0.3182,0.5879,0.7071,-0.3928,0.7682,0.5556,-0.3182,0.6533,0.7071,-0.2706,0.6533,0.7071,-0.2706,0.7682,0.5556,-0.3182,0.8155,0.5556,-0.1622,0.6533,0.7071,-0.2706,0.8155,0.5556,-0.1622,0.6935,0.7071,-0.1379,0.6935,0.7071,-0.1379,0.8155,0.5556,-0.1622,0.8315,0.5556,0.0,0.6935,0.7071,-0.1379,0.8315,0.5556,0.0,0.7071,0.7071,0.0,0.7071,0.7071,0.0,0.8315,0.5556,0.0,0.8155,0.5556,0.1622,0.7071,0.7071,0.0,0.8155,0.5556,0.1622,0.6935,0.7071,0.138,0.6935,0.7071,0.138,0.8155,0.5556,0.1622,0.7682,0.5556,0.3182,0.6935,0.7071,0.138,0.7682,0.5556,0.3182,0.6533,0.7071,0.2706,0.6533,0.7071,0.2706,0.7682,0.5556,0.3182,0.6913,0.5556,0.4619,0.6533,0.7071,0.2706,0.6913,0.5556,0.4619,0.5879,0.7071,0.3928,0.5879,0.7071,0.3928,0.6913,0.5556,0.4619,0.5879,0.5556,0.5879,0.5879,0.7071,0.3928,0.5879,0.5556,0.5879,0.5,0.7071,0.5,0.5,0.7071,0.5,0.5879,0.5556,0.5879,0.4619,0.5556,0.6913,0.5,0.7071,0.5,0.4619,0.5556,0.6913,0.3928,0.7071,0.5879,0.3928,0.7071,0.5879,0.4619,0.5556,0.6913,0.3182,0.5556,0.7682,0.3928,0.7071,0.5879,0.3182,0.5556,0.7682,0.2706,0.7071,0.6533,0.2706,0.7071,0.6533,0.3182,0.5556,0.7682,0.1622,0.5556,0.8155,0.2706,0.7071,0.6533,0.1622,0.5556,0.8155,0.1379,0.7071,0.6935,0.1379,0.7071,0.6935,0.1622,0.5556,0.8155,0.0,0.5556,0.8315,0.1379,0.7071,0.6935,0.0,0.5556,0.8315,0.0,0.7071,0.7071,0.0,0.5556,0.8315,0.0,0.3827,0.9239,-0.1802,0.3827,0.9061,0.0,0.5556,0.8315,-0.1802,0.3827,0.9061,-0.1622,0.5556,0.8155,-0.1622,0.5556,0.8155,-0.1802,0.3827,0.9061,-0.3536,0.3827,0.8536,-0.1622,0.5556,0.8155,-0.3536,0.3827,0.8536,-0.3182,0.5556,0.7682,-0.3182,0.5556,0.7682,-0.3536,0.3827,0.8536,-0.5133,0.3827,0.7682,-0.3182,0.5556,0.7682,-0.5133,0.3827,0.7682,-0.4619,0.5556,0.6913,-0.4619,0.5556,0.6913,-0.5133,0.3827,0.7682,-0.6533,0.3827,0.6533,-0.4619,0.5556,0.6913,-0.6533,0.3827,0.6533,-0.5879,0.5556,0.5879,-0.5879,0.5556,0.5879,-0.6533,0.3827,0.6533,-0.7682,0.3827,0.5133,-0.5879,0.5556,0.5879,-0.7682,0.3827,0.5133,-0.6913,0.5556,0.4619,-0.6913,0.5556,0.4619,-0.7682,0.3827,0.5133,-0.8536,0.3827,0.3536,-0.6913,0.5556,0.4619,-0.8536,0.3827,0.3536,-0.7682,0.5556,0.3182,-0.7682,0.5556,0.3182,-0.8536,0.3827,0.3536,-0.9061,0.3827,0.1802,-0.7682,0.5556,0.3182,-0.9061,0.3827,0.1802,-0.8155,0.5556,0.1622,-0.8155,0.5556,0.1622,-0.9061,0.3827,0.1802,-0.9239,0.3827,0.0,-0.8155,0.5556,0.1622,-0.9239,0.3827,0.0,-0.8315,0.5556,0.0,-0.8315,0.5556,0.0,-0.9239,0.3827,0.0,-0.9061,0.3827,-0.1802,-0.8315,0.5556,0.0,-0.9061,0.3827,-0.1802,-0.8155,0.5556,-0.1622,-0.8155,0.5556,-0.1622,-0.9061,0.3827,-0.1802,-0.8536,0.3827,-0.3536,-0.8155,0.5556,-0.1622,-0.8536,0.3827,-0.3536,-0.7682,0.5556,-0.3182,-0.7682,0.5556,-0.3182,-0.8536,0.3827,-0.3536,-0.7682,0.3827,-0.5133,-0.7682,0.5556,-0.3182,-0.7682,0.3827,-0.5133,-0.6913,0.5556,-0.4619,-0.6913,0.5556,-0.4619,-0.7682,0.3827,-0.5133,-0.6533,0.3827,-0.6533,-0.6913,0.5556,-0.4619,-0.6533,0.3827,-0.6533,-0.5879,0.5556,-0.5879,-0.5879,0.5556,-0.5879,-0.6533,0.3827,-0.6533,-0.5133,0.3827,-0.7682,-0.5879,0.5556,-0.5879,-0.5133,0.3827,-0.7682,-0.4619,0.5556,-0.6913,-0.4619,0.5556,-0.6913,-0.5133,0.3827,-0.7682,-0.3536,0.3827,-0.8536,-0.4619,0.5556,-0.6913,-0.3536,0.3827,-0.8536,-0.3182,0.5556,-0.7682,-0.3182,0.5556,-0.7682,-0.3536,0.3827,-0.8536,-0.1802,0.3827,-0.9061,-0.3182,0.5556,-0.7682,-0.1802,0.3827,-0.9061,-0.1622,0.5556,-0.8155,-0.1622,0.5556,-0.8155,-0.1802,0.3827,-0.9061,0.0,0.3827,-0.9239,-0.1622,0.5556,-0.8155,0.0,0.3827,-0.9239,0.0,0.5556,-0.8315,0.0,0.5556,-0.8315,0.0,0.3827,-0.9239,0.1802,0.3827,-0.9061,0.0,0.5556,-0.8315,0.1802,0.3827,-0.9061,0.1622,0.5556,-0.8155,0.1622,0.5556,-0.8155,0.1802,0.3827,-0.9061,0.3536,0.3827,-0.8536,0.1622,0.5556,-0.8155,0.3536,0.3827,-0.8536,0.3182,0.5556,-0.7682,0.3182,0.5556,-0.7682,0.3536,0.3827,-0.8536,0.5133,0.3827,-0.7682,0.3182,0.5556,-0.7682,0.5133,0.3827,-0.7682,0.4619,0.5556,-0.6913,0.4619,0.5556,-0.6913,0.5133,0.3827,-0.7682,0.6533,0.3827,-0.6533,0.4619,0.5556,-0.6913,0.6533,0.3827,-0.6533,0.5879,0.5556,-0.5879,0.5879,0.5556,-0.5879,0.6533,0.3827,-0.6533,0.7682,0.3827,-0.5133,0.5879,0.5556,-0.5879,0.7682,0.3827,-0.5133,0.6913,0.5556,-0.4619,0.6913,0.5556,-0.4619,0.7682,0.3827,-0.5133,0.8536,0.3827,-0.3536,0.6913,0.5556,-0.4619,0.8536,0.3827,-0.3536,0.7682,0.5556,-0.3182,0.7682,0.5556,-0.3182,0.8536,0.3827,-0.3536,0.9061,0.3827,-0.1802,0.7682,0.5556,-0.3182,0.9061,0.3827,-0.1802,0.8155,0.5556,-0.1622,0.8155,0.5556,-0.1622,0.9061,0.3827,-0.1802,0.9239,0.3827,0.0,0.8155,0.5556,-0.1622,0.9239,0.3827,0.0,0.8315,0.5556,0.0,0.8315,0.5556,0.0,0.9239,0.3827,0.0,0.9061,0.3827,0.1802,0.8315,0.5556,0.0,0.9061,0.3827,0.1802,0.8155,0.5556,0.1622,0.8155,0.5556,0.1622,0.9061,0.3827,0.1802,0.8536,0.3827,0.3536,0.8155,0.5556,0.1622,0.8536,0.3827,0.3536,0.7682,0.5556,0.3182,0.7682,0.5556,0.3182,0.8536,0.3827,0.3536,0.7682,0.3827,0.5133,0.7682,0.5556,0.3182,0.7682,0.3827,0.5133,0.6913,0.5556,0.4619,0.6913,0.5556,0.4619,0.7682,0.3827,0.5133,0.6533,0.3827,0.6533,0.6913,0.5556,0.4619,0.6533,0.3827,0.6533,0.5879,0.5556,0.5879,0.5879,0.5556,0.5879,0.6533,0.3827,0.6533,0.5133,0.3827,0.7682,0.5879,0.5556,0.5879,0.5133,0.3827,0.7682,0.4619,0.5556,0.6913,0.4619,0.5556,0.6913,0.5133,0.3827,0.7682,0.3536,0.3827,0.8536,0.4619,0.5556,0.6913,0.3536,0.3827,0.8536,0.3182,0.5556,0.7682,0.3182,0.5556,0.7682,0.3536,0.3827,0.8536,0.1802,0.3827,0.9061,0.3182,0.5556,0.7682,0.1802,0.3827,0.9061,0.1622,0.5556,0.8155,0.1622,0.5556,0.8155,0.1802,0.3827,0.9061,0.0,0.3827,0.9239,0.1622,0.5556,0.8155,0.0,0.3827,0.9239,0.0,0.5556,0.8315,0.0,0.3827,0.9239,0.0,0.1951,0.9808,-0.1913,0.1951,0.9619,0.0,0.3827,0.9239,-0.1913,0.1951,0.9619,-0.1802,0.3827,0.9061,-0.1802,0.3827,0.9061,-0.1913,0.1951,0.9619,-0.3753,0.1951,0.9061,-0.1802,0.3827,0.9061,-0.3753,0.1951,0.9061,-0.3536,0.3827,0.8536,-0.3536,0.3827,0.8536,-0.3753,0.1951,0.9061,-0.5449,0.1951,0.8155,-0.3536,0.3827,0.8536,-0.5449,0.1951,0.8155,-0.5133,0.3827,0.7682,-0.5133,0.3827,0.7682,-0.5449,0.1951,0.8155,-0.6935,0.1951,0.6935,-0.5133,0.3827,0.7682,-0.6935,0.1951,0.6935,-0.6533,0.3827,0.6533,-0.6533,0.3827,0.6533,-0.6935,0.1951,0.6935,-0.8155,0.1951,0.5449,-0.6533,0.3827,0.6533,-0.8155,0.1951,0.5449,-0.7682,0.3827,0.5133,-0.7682,0.3827,0.5133,-0.8155,0.1951,0.5449,-0.9061,0.1951,0.3753,-0.7682,0.3827,0.5133,-0.9061,0.1951,0.3753,-0.8536,0.3827,0.3536,-0.8536,0.3827,0.3536,-0.9061,0.1951,0.3753,-0.9619,0.1951,0.1913,-0.8536,0.3827,0.3536,-0.9619,0.1951,0.1913,-0.9061,0.3827,0.1802,-0.9061,0.3827,0.1802,-0.9619,0.1951,0.1913,-0.9808,0.1951,0.0,-0.9061,0.3827,0.1802,-0.9808,0.1951,0.0,-0.9239,0.3827,0.0,-0.9239,0.3827,0.0,-0.9808,0.1951,0.0,-0.9619,0.1951,-0.1913,-0.9239,0.3827,0.0,-0.9619,0.1951,-0.1913,-0.9061,0.3827,-0.1802,-0.9061,0.3827,-0.1802,-0.9619,0.1951,-0.1913,-0.9061,0.1951,-0.3753,-0.9061,0.3827,-0.1802,-0.9061,0.1951,-0.3753,-0.8536,0.3827,-0.3536,-0.8536,0.3827,-0.3536,-0.9061,0.1951,-0.3753,-0.8155,0.1951,-0.5449,-0.8536,0.3827,-0.3536,-0.8155,0.1951,-0.5449,-0.7682,0.3827,-0.5133,-0.7682,0.3827,-0.5133,-0.8155,0.1951,-0.5449,-0.6935,0.1951,-0.6935,-0.7682,0.3827,-0.5133,-0.6935,0.1951,-0.6935,-0.6533,0.3827,-0.6533,-0.6533,0.3827,-0.6533,-0.6935,0.1951,-0.6935,-0.5449,0.1951,-0.8155,-0.6533,0.3827,-0.6533,-0.5449,0.1951,-0.8155,-0.5133,0.3827,-0.7682,-0.5133,0.3827,-0.7682,-0.5449,0.1951,-0.8155,-0.3753,0.1951,-0.9061,-0.5133,0.3827,-0.7682,-0.3753,0.1951,-0.9061,-0.3536,0.3827,-0.8536,-0.3536,0.3827,-0.8536,-0.3753,0.1951,-0.9061,-0.1913,0.1951,-0.9619,-0.3536,0.3827,-0.8536,-0.1913,0.1951,-0.9619,-0.1802,0.3827,-0.9061,-0.1802,0.3827,-0.9061,-0.1913,0.1951,-0.9619,0.0,0.1951,-0.9808,-0.1802,0.3827,-0.9061,0.0,0.1951,-0.9808,0.0,0.3827,-0.9239,0.0,0.3827,-0.9239,0.0,0.1951,-0.9808,0.1913,0.1951,-0.9619,0.0,0.3827,-0.9239,0.1913,0.1951,-0.9619,0.1802,0.3827,-0.9061,0.1802,0.3827,-0.9061,0.1913,0.1951,-0.9619,0.3753,0.1951,-0.9061,0.1802,0.3827,-0.9061,0.3753,0.1951,-0.9061,0.3536,0.3827,-0.8536,0.3536,0.3827,-0.8536,0.3753,0.1951,-0.9061,0.5449,0.1951,-0.8155,0.3536,0.3827,-0.8536,0.5449,0.1951,-0.8155,0.5133,0.3827,-0.7682,0.5133,0.3827,-0.7682,0.5449,0.1951,-0.8155,0.6935,0.1951,-0.6935,0.5133,0.3827,-0.7682,0.6935,0.1951,-0.6935,0.6533,0.3827,-0.6533,0.6533,0.3827,-0.6533,0.6935,0.1951,-0.6935,0.8155,0.1951,-0.5449,0.6533,0.3827,-0.6533,0.8155,0.1951,-0.5449,0.7682,0.3827,-0.5133,0.7682,0.3827,-0.5133,0.8155,0.1951,-0.5449,0.9061,0.1951,-0.3753,0.7682,0.3827,-0.5133,0.9061,0.1951,-0.3753,0.8536,0.3827,-0.3536,0.8536,0.3827,-0.3536,0.9061,0.1951,-0.3753,0.9619,0.1951,-0.1913,0.8536,0.3827,-0.3536,0.9619,0.1951,-0.1913,0.9061,0.3827,-0.1802,0.9061,0.3827,-0.1802,0.9619,0.1951,-0.1913,0.9808,0.1951,0.0,0.9061,0.3827,-0.1802,0.9808,0.1951,0.0,0.9239,0.3827,0.0,0.9239,0.3827,0.0,0.9808,0.1951,0.0,0.9619,0.1951,0.1913,0.9239,0.3827,0.0,0.9619,0.1951,0.1913,0.9061,0.3827,0.1802,0.9061,0.3827,0.1802,0.9619,0.1951,0.1913,0.9061,0.1951,0.3753,0.9061,0.3827,0.1802,0.9061,0.1951,0.3753,0.8536,0.3827,0.3536,0.8536,0.3827,0.3536,0.9061,0.1951,0.3753,0.8155,0.1951,0.5449,0.8536,0.3827,0.3536,0.8155,0.1951,0.5449,0.7682,0.3827,0.5133,0.7682,0.3827,0.5133,0.8155,0.1951,0.5449,0.6935,0.1951,0.6935,0.7682,0.3827,0.5133,0.6935,0.1951,0.6935,0.6533,0.3827,0.6533,0.6533,0.3827,0.6533,0.6935,0.1951,0.6935,0.5449,0.1951,0.8155,0.6533,0.3827,0.6533,0.5449,0.1951,0.8155,0.5133,0.3827,0.7682,0.5133,0.3827,0.7682,0.5449,0.1951,0.8155,0.3753,0.1951,0.9061,0.5133,0.3827,0.7682,0.3753,0.1951,0.9061,0.3536,0.3827,0.8536,0.3536,0.3827,0.8536,0.3753,0.1951,0.9061,0.1913,0.1951,0.9619,0.3536,0.3827,0.8536,0.1913,0.1951,0.9619,0.1802,0.3827,0.9061,0.1802,0.3827,0.9061,0.1913,0.1951,0.9619,0.0,0.1951,0.9808,0.1802,0.3827,0.9061,0.0,0.1951,0.9808,0.0,0.3827,0.9239,0.0,0.1951,0.9808,0.0,0.0,1.0,-0.1951,0.0,0.9808,0.0,0.1951,0.9808,-0.1951,0.0,0.9808,-0.1913,0.1951,0.9619,-0.1913,0.1951,0.9619,-0.1951,0.0,0.9808,-0.3827,0.0,0.9239,-0.1913,0.1951,0.9619,-0.3827,0.0,0.9239,-0.3753,0.1951,0.9061,-0.3753,0.1951,0.9061,-0.3827,0.0,0.9239,-0.5556,0.0,0.8315,-0.3753,0.1951,0.9061,-0.5556,0.0,0.8315,-0.5449,0.1951,0.8155,-0.5449,0.1951,0.8155,-0.5556,0.0,0.8315,-0.7071,0.0,0.7071,-0.5449,0.1951,0.8155,-0.7071,0.0,0.7071,-0.6935,0.1951,0.6935,-0.6935,0.1951,0.6935,-0.7071,0.0,0.7071,-0.8315,0.0,0.5556,-0.6935,0.1951,0.6935,-0.8315,0.0,0.5556,-0.8155,0.1951,0.5449,-0.8155,0.1951,0.5449,-0.8315,0.0,0.5556,-0.9239,0.0,0.3827,-0.8155,0.1951,0.5449,-0.9239,0.0,0.3827,-0.9061,0.1951,0.3753,-0.9061,0.1951,0.3753,-0.9239,0.0,0.3827,-0.9808,0.0,0.1951,-0.9061,0.1951,0.3753,-0.9808,0.0,0.1951,-0.9619,0.1951,0.1913,-0.9619,0.1951,0.1913,-0.9808,0.0,0.1951,-1.0,0.0,0.0,-0.9619,0.1951,0.1913,-1.0,0.0,0.0,-0.9808,0.1951,0.0,-0.9808,0.1951,0.0,-1.0,0.0,0.0,-0.9808,0.0,-0.1951,-0.9808,0.1951,0.0,-0.9808,0.0,-0.1951,-0.9619,0.1951,-0.1913,-0.9619,0.1951,-0.1913,-0.9808,0.0,-0.1951,-0.9239,0.0,-0.3827,-0.9619,0.1951,-0.1913,-0.9239,0.0,-0.3827,-0.9061,0.1951,-0.3753,-0.9061,0.1951,-0.3753,-0.9239,0.0,-0.3827,-0.8315,0.0,-0.5556,-0.9061,0.1951,-0.3753,-0.8315,0.0,-0.5556,-0.8155,0.1951,-0.5449,-0.8155,0.1951,-0.5449,-0.8315,0.0,-0.5556,-0.7071,0.0,-0.7071,-0.8155,0.1951,-0.5449,-0.7071,0.0,-0.7071,-0.6935,0.1951,-0.6935,-0.6935,0.1951,-0.6935,-0.7071,0.0,-0.7071,-0.5556,0.0,-0.8315,-0.6935,0.1951,-0.6935,-0.5556,0.0,-0.8315,-0.5449,0.1951,-0.8155,-0.5449,0.1951,-0.8155,-0.5556,0.0,-0.8315,-0.3827,0.0,-0.9239,-0.5449,0.1951,-0.8155,-0.3827,0.0,-0.9239,-0.3753,0.1951,-0.9061,-0.3753,0.1951,-0.9061,-0.3827,0.0,-0.9239,-0.1951,0.0,-0.9808,-0.3753,0.1951,-0.9061,-0.1951,0.0,-0.9808,-0.1913,0.1951,-0.9619,-0.1913,0.1951,-0.9619,-0.1951,0.0,-0.9808,0.0,0.0,-1.0,-0.1913,0.1951,-0.9619,0.0,0.0,-1.0,0.0,0.1951,-0.9808,0.0,0.1951,-0.9808,0.0,0.0,-1.0,0.1951,0.0,-0.9808,0.0,0.1951,-0.9808,0.1951,0.0,-0.9808,0.1913,0.1951,-0.9619,0.1913,0.1951,-0.9619,0.1951,0.0,-0.9808,0.3827,0.0,-0.9239,0.1913,0.1951,-0.9619,0.3827,0.0,-0.9239,0.3753,0.1951,-0.9061,0.3753,0.1951,-0.9061,0.3827,0.0,-0.9239,0.5556,0.0,-0.8315,0.3753,0.1951,-0.9061,0.5556,0.0,-0.8315,0.5449,0.1951,-0.8155,0.5449,0.1951,-0.8155,0.5556,0.0,-0.8315,0.7071,0.0,-0.7071,0.5449,0.1951,-0.8155,0.7071,0.0,-0.7071,0.6935,0.1951,-0.6935,0.6935,0.1951,-0.6935,0.7071,0.0,-0.7071,0.8315,0.0,-0.5556,0.6935,0.1951,-0.6935,0.8315,0.0,-0.5556,0.8155,0.1951,-0.5449,0.8155,0.1951,-0.5449,0.8315,0.0,-0.5556,0.9239,0.0,-0.3827,0.8155,0.1951,-0.5449,0.9239,0.0,-0.3827,0.9061,0.1951,-0.3753,0.9061,0.1951,-0.3753,0.9239,0.0,-0.3827,0.9808,0.0,-0.1951,0.9061,0.1951,-0.3753,0.9808,0.0,-0.1951,0.9619,0.1951,-0.1913,0.9619,0.1951,-0.1913,0.9808,0.0,-0.1951,1.0,0.0,0.0,0.9619,0.1951,-0.1913,1.0,0.0,0.0,0.9808,0.1951,0.0,0.9808,0.1951,0.0,1.0,0.0,0.0,0.9808,0.0,0.1951,0.9808,0.1951,0.0,0.9808,0.0,0.1951,0.9619,0.1951,0.1913,0.9619,0.1951,0.1913,0.9808,0.0,0.1951,0.9239,0.0,0.3827,0.9619,0.1951,0.1913,0.9239,0.0,0.3827,0.9061,0.1951,0.3753,0.9061,0.1951,0.3753,0.9239,0.0,0.3827,0.8315,0.0,0.5556,0.9061,0.1951,0.3753,0.8315,0.0,0.5556,0.8155,0.1951,0.5449,0.8155,0.1951,0.5449,0.8315,0.0,0.5556,0.7071,0.0,0.7071,0.8155,0.1951,0.5449,0.7071,0.0,0.7071,0.6935,0.1951,0.6935,0.6935,0.1951,0.6935,0.7071,0.0,0.7071,0.5556,0.0,0.8315,0.6935,0.1951,0.6935,0.5556,0.0,0.8315,0.5449,0.1951,0.8155,0.5449,0.1951,0.8155,0.5556,0.0,0.8315,0.3827,0.0,0.9239,0.5449,0.1951,0.8155,0.3827,0.0,0.9239,0.3753,0.1951,0.9061,0.3753,0.1951,0.9061,0.3827,0.0,0.9239,0.1951,0.0,0.9808,0.3753,0.1951,0.9061,0.1951,0.0,0.9808,0.1913,0.1951,0.9619,0.1913,0.1951,0.9619,0.1951,0.0,0.9808,0.0,0.0,1.0,0.1913,0.1951,0.9619,0.0,0.0,1.0,0.0,0.1951,0.9808,0.0,0.0,1.0,0.0,-0.1951,0.9808,-0.1913,-0.1951,0.9619,0.0,0.0,1.0,-0.1913,-0.1951,0.9619,-0.1951,0.0,0.9808,-0.1951,0.0,0.9808,-0.1913,-0.1951,0.9619,-0.3753,-0.1951,0.9061,-0.1951,0.0,0.9808,-0.3753,-0.1951,0.9061,-0.3827,0.0,0.9239,-0.3827,0.0,0.9239,-0.3753,-0.1951,0.9061,-0.5449,-0.1951,0.8155,-0.3827,0.0,0.9239,-0.5449,-0.1951,0.8155,-0.5556,0.0,0.8315,-0.5556,0.0,0.8315,-0.5449,-0.1951,0.8155,-0.6935,-0.1951,0.6935,-0.5556,0.0,0.8315,-0.6935,-0.1951,0.6935,-0.7071,0.0,0.7071,-0.7071,0.0,0.7071,-0.6935,-0.1951,0.6935,-0.8155,-0.1951,0.5449,-0.7071,0.0,0.7071,-0.8155,-0.1951,0.5449,-0.8315,0.0,0.5556,-0.8315,0.0,0.5556,-0.8155,-0.1951,0.5449,-0.9061,-0.1951,0.3753,-0.8315,0.0,0.5556,-0.9061,-0.1951,0.3753,-0.9239,0.0,0.3827,-0.9239,0.0,0.3827,-0.9061,-0.1951,0.3753,-0.9619,-0.1951,0.1913,-0.9239,0.0,0.3827,-0.9619,-0.1951,0.1913,-0.9808,0.0,0.1951,-0.9808,0.0,0.1951,-0.9619,-0.1951,0.1913,-0.9808,-0.1951,0.0,-0.9808,0.0,0.1951,-0.9808,-0.1951,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-0.9808,-0.1951,0.0,-0.9619,-0.1951,-0.1913,-1.0,0.0,0.0,-0.9619,-0.1951,-0.1913,-0.9808,0.0,-0.1951,-0.9808,0.0,-0.1951,-0.9619,-0.1951,-0.1913,-0.9061,-0.1951,-0.3753,-0.9808,0.0,-0.1951,-0.9061,-0.1951,-0.3753,-0.9239,0.0,-0.3827,-0.9239,0.0,-0.3827,-0.9061,-0.1951,-0.3753,-0.8155,-0.1951,-0.5449,-0.9239,0.0,-0.3827,-0.8155,-0.1951,-0.5449,-0.8315,0.0,-0.5556,-0.8315,0.0,-0.5556,-0.8155,-0.1951,-0.5449,-0.6935,-0.1951,-0.6935,-0.8315,0.0,-0.5556,-0.6935,-0.1951,-0.6935,-0.7071,0.0,-0.7071,-0.7071,0.0,-0.7071,-0.6935,-0.1951,-0.6935,-0.5449,-0.1951,-0.8155,-0.7071,0.0,-0.7071,-0.5449,-0.1951,-0.8155,-0.5556,0.0,-0.8315,-0.5556,0.0,-0.8315,-0.5449,-0.1951,-0.8155,-0.3753,-0.1951,-0.9061,-0.5556,0.0,-0.8315,-0.3753,-0.1951,-0.9061,-0.3827,0.0,-0.9239,-0.3827,0.0,-0.9239,-0.3753,-0.1951,-0.9061,-0.1913,-0.1951,-0.9619,-0.3827,0.0,-0.9239,-0.1913,-0.1951,-0.9619,-0.1951,0.0,-0.9808,-0.1951,0.0,-0.9808,-0.1913,-0.1951,-0.9619,0.0,-0.1951,-0.9808,-0.1951,0.0,-0.9808,0.0,-0.1951,-0.9808,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,-0.1951,-0.9808,0.1913,-0.1951,-0.9619,0.0,0.0,-1.0,0.1913,-0.1951,-0.9619,0.1951,0.0,-0.9808,0.1951,0.0,-0.9808,0.1913,-0.1951,-0.9619,0.3753,-0.1951,-0.9061,0.1951,0.0,-0.9808,0.3753,-0.1951,-0.9061,0.3827,0.0,-0.9239,0.3827,0.0,-0.9239,0.3753,-0.1951,-0.9061,0.5449,-0.1951,-0.8155,0.3827,0.0,-0.9239,0.5449,-0.1951,-0.8155,0.5556,0.0,-0.8315,0.5556,0.0,-0.8315,0.5449,-0.1951,-0.8155,0.6935,-0.1951,-0.6935,0.5556,0.0,-0.8315,0.6935,-0.1951,-0.6935,0.7071,0.0,-0.7071,0.7071,0.0,-0.7071,0.6935,-0.1951,-0.6935,0.8155,-0.1951,-0.5449,0.7071,0.0,-0.7071,0.8155,-0.1951,-0.5449,0.8315,0.0,-0.5556,0.8315,0.0,-0.5556,0.8155,-0.1951,-0.5449,0.9061,-0.1951,-0.3753,0.8315,0.0,-0.5556,0.9061,-0.1951,-0.3753,0.9239,0.0,-0.3827,0.9239,0.0,-0.3827,0.9061,-0.1951,-0.3753,0.9619,-0.1951,-0.1913,0.9239,0.0,-0.3827,0.9619,-0.1951,-0.1913,0.9808,0.0,-0.1951,0.9808,0.0,-0.1951,0.9619,-0.1951,-0.1913,0.9808,-0.1951,0.0,0.9808,0.0,-0.1951,0.9808,-0.1951,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.9808,-0.1951,0.0,0.9619,-0.1951,0.1913,1.0,0.0,0.0,0.9619,-0.1951,0.1913,0.9808,0.0,0.1951,0.9808,0.0,0.1951,0.9619,-0.1951,0.1913,0.9061,-0.1951,0.3753,0.9808,0.0,0.1951,0.9061,-0.1951,0.3753,0.9239,0.0,0.3827,0.9239,0.0,0.3827,0.9061,-0.1951,0.3753,0.8155,-0.1951,0.5449,0.9239,0.0,0.3827,0.8155,-0.1951,0.5449,0.8315,0.0,0.5556,0.8315,0.0,0.5556,0.8155,-0.1951,0.5449,0.6935,-0.1951,0.6935,0.8315,0.0,0.5556,0.6935,-0.1951,0.6935,0.7071,0.0,0.7071,0.7071,0.0,0.7071,0.6935,-0.1951,0.6935,0.5449,-0.1951,0.8155,0.7071,0.0,0.7071,0.5449,-0.1951,0.8155,0.5556,0.0,0.8315,0.5556,0.0,0.8315,0.5449,-0.1951,0.8155,0.3753,-0.1951,0.9061,0.5556,0.0,0.8315,0.3753,-0.1951,0.9061,0.3827,0.0,0.9239,0.3827,0.0,0.9239,0.3753,-0.1951,0.9061,0.1913,-0.1951,0.9619,0.3827,0.0,0.9239,0.1913,-0.1951,0.9619,0.1951,0.0,0.9808,0.1951,0.0,0.9808,0.1913,-0.1951,0.9619,0.0,-0.1951,0.9808,0.1951,0.0,0.9808,0.0,-0.1951,0.9808,0.0,0.0,1.0,0.0,-0.1951,0.9808,0.0,-0.3827,0.9239,-0.1802,-0.3827,0.9061,0.0,-0.1951,0.9808,-0.1802,-0.3827,0.9061,-0.1913,-0.1951,0.9619,-0.1913,-0.1951,0.9619,-0.1802,-0.3827,0.9061,-0.3536,-0.3827,0.8536,-0.1913,-0.1951,0.9619,-0.3536,-0.3827,0.8536,-0.3753,-0.1951,0.9061,-0.3753,-0.1951,0.9061,-0.3536,-0.3827,0.8536,-0.5133,-0.3827,0.7682,-0.3753,-0.1951,0.9061,-0.5133,-0.3827,0.7682,-0.5449,-0.1951,0.8155,-0.5449,-0.1951,0.8155,-0.5133,-0.3827,0.7682,-0.6533,-0.3827,0.6533,-0.5449,-0.1951,0.8155,-0.6533,-0.3827,0.6533,-0.6935,-0.1951,0.6935,-0.6935,-0.1951,0.6935,-0.6533,-0.3827,0.6533,-0.7682,-0.3827,0.5133,-0.6935,-0.1951,0.6935,-0.7682,-0.3827,0.5133,-0.8155,-0.1951,0.5449,-0.8155,-0.1951,0.5449,-0.7682,-0.3827,0.5133,-0.8536,-0.3827,0.3536,-0.8155,-0.1951,0.5449,-0.8536,-0.3827,0.3536,-0.9061,-0.1951,0.3753,-0.9061,-0.1951,0.3753,-0.8536,-0.3827,0.3536,-0.9061,-0.3827,0.1802,-0.9061,-0.1951,0.3753,-0.9061,-0.3827,0.1802,-0.9619,-0.1951,0.1913,-0.9619,-0.1951,0.1913,-0.9061,-0.3827,0.1802,-0.9239,-0.3827,0.0,-0.9619,-0.1951,0.1913,-0.9239,-0.3827,0.0,-0.9808,-0.1951,0.0,-0.9808,-0.1951,0.0,-0.9239,-0.3827,0.0,-0.9061,-0.3827,-0.1802,-0.9808,-0.1951,0.0,-0.9061,-0.3827,-0.1802,-0.9619,-0.1951,-0.1913,-0.9619,-0.1951,-0.1913,-0.9061,-0.3827,-0.1802,-0.8536,-0.3827,-0.3536,-0.9619,-0.1951,-0.1913,-0.8536,-0.3827,-0.3536,-0.9061,-0.1951,-0.3753,-0.9061,-0.1951,-0.3753,-0.8536,-0.3827,-0.3536,-0.7682,-0.3827,-0.5133,-0.9061,-0.1951,-0.3753,-0.7682,-0.3827,-0.5133,-0.8155,-0.1951,-0.5449,-0.8155,-0.1951,-0.5449,-0.7682,-0.3827,-0.5133,-0.6533,-0.3827,-0.6533,-0.8155,-0.1951,-0.5449,-0.6533,-0.3827,-0.6533,-0.6935,-0.1951,-0.6935,-0.6935,-0.1951,-0.6935,-0.6533,-0.3827,-0.6533,-0.5133,-0.3827,-0.7682,-0.6935,-0.1951,-0.6935,-0.5133,-0.3827,-0.7682,-0.5449,-0.1951,-0.8155,-0.5449,-0.1951,-0.8155,-0.5133,-0.3827,-0.7682,-0.3536,-0.3827,-0.8536,-0.5449,-0.1951,-0.8155,-0.3536,-0.3827,-0.8536,-0.3753,-0.1951,-0.9061,-0.3753,-0.1951,-0.9061,-0.3536,-0.3827,-0.8536,-0.1802,-0.3827,-0.9061,-0.3753,-0.1951,-0.9061,-0.1802,-0.3827,-0.9061,-0.1913,-0.1951,-0.9619,-0.1913,-0.1951,-0.9619,-0.1802,-0.3827,-0.9061,0.0,-0.3827,-0.9239,-0.1913,-0.1951,-0.9619,0.0,-0.3827,-0.9239,0.0,-0.1951,-0.9808,0.0,-0.1951,-0.9808,0.0,-0.3827,-0.9239,0.1802,-0.3827,-0.9061,0.0,-0.1951,-0.9808,0.1802,-0.3827,-0.9061,0.1913,-0.1951,-0.9619,0.1913,-0.1951,-0.9619,0.1802,-0.3827,-0.9061,0.3536,-0.3827,-0.8536,0.1913,-0.1951,-0.9619,0.3536,-0.3827,-0.8536,0.3753,-0.1951,-0.9061,0.3753,-0.1951,-0.9061,0.3536,-0.3827,-0.8536,0.5133,-0.3827,-0.7682,0.3753,-0.1951,-0.9061,0.5133,-0.3827,-0.7682,0.5449,-0.1951,-0.8155,0.5449,-0.1951,-0.8155,0.5133,-0.3827,-0.7682,0.6533,-0.3827,-0.6533,0.5449,-0.1951,-0.8155,0.6533,-0.3827,-0.6533,0.6935,-0.1951,-0.6935,0.6935,-0.1951,-0.6935,0.6533,-0.3827,-0.6533,0.7682,-0.3827,-0.5133,0.6935,-0.1951,-0.6935,0.7682,-0.3827,-0.5133,0.8155,-0.1951,-0.5449,0.8155,-0.1951,-0.5449,0.7682,-0.3827,-0.5133,0.8536,-0.3827,-0.3536,0.8155,-0.1951,-0.5449,0.8536,-0.3827,-0.3536,0.9061,-0.1951,-0.3753,0.9061,-0.1951,-0.3753,0.8536,-0.3827,-0.3536,0.9061,-0.3827,-0.1802,0.9061,-0.1951,-0.3753,0.9061,-0.3827,-0.1802,0.9619,-0.1951,-0.1913,0.9619,-0.1951,-0.1913,0.9061,-0.3827,-0.1802,0.9239,-0.3827,0.0,0.9619,-0.1951,-0.1913,0.9239,-0.3827,0.0,0.9808,-0.1951,0.0,0.9808,-0.1951,0.0,0.9239,-0.3827,0.0,0.9061,-0.3827,0.1802,0.9808,-0.1951,0.0,0.9061,-0.3827,0.1802,0.9619,-0.1951,0.1913,0.9619,-0.1951,0.1913,0.9061,-0.3827,0.1802,0.8536,-0.3827,0.3536,0.9619,-0.1951,0.1913,0.8536,-0.3827,0.3536,0.9061,-0.1951,0.3753,0.9061,-0.1951,0.3753,0.8536,-0.3827,0.3536,0.7682,-0.3827,0.5133,0.9061,-0.1951,0.3753,0.7682,-0.3827,0.5133,0.8155,-0.1951,0.5449,0.8155,-0.1951,0.5449,0.7682,-0.3827,0.5133,0.6533,-0.3827,0.6533,0.8155,-0.1951,0.5449,0.6533,-0.3827,0.6533,0.6935,-0.1951,0.6935,0.6935,-0.1951,0.6935,0.6533,-0.3827,0.6533,0.5133,-0.3827,0.7682,0.6935,-0.1951,0.6935,0.5133,-0.3827,0.7682,0.5449,-0.1951,0.8155,0.5449,-0.1951,0.8155,0.5133,-0.3827,0.7682,0.3536,-0.3827,0.8536,0.5449,-0.1951,0.8155,0.3536,-0.3827,0.8536,0.3753,-0.1951,0.9061,0.3753,-0.1951,0.9061,0.3536,-0.3827,0.8536,0.1802,-0.3827,0.9061,0.3753,-0.1951,0.9061,0.1802,-0.3827,0.9061,0.1913,-0.1951,0.9619,0.1913,-0.1951,0.9619,0.1802,-0.3827,0.9061,0.0,-0.3827,0.9239,0.1913,-0.1951,0.9619,0.0,-0.3827,0.9239,0.0,-0.1951,0.9808,0.0,-0.3827,0.9239,0.0,-0.5556,0.8315,-0.1622,-0.5556,0.8155,0.0,-0.3827,0.9239,-0.1622,-0.5556,0.8155,-0.1802,-0.3827,0.9061,-0.1802,-0.3827,0.9061,-0.1622,-0.5556,0.8155,-0.3182,-0.5556,0.7682,-0.1802,-0.3827,0.9061,-0.3182,-0.5556,0.7682,-0.3536,-0.3827,0.8536,-0.3536,-0.3827,0.8536,-0.3182,-0.5556,0.7682,-0.4619,-0.5556,0.6913,-0.3536,-0.3827,0.8536,-0.4619,-0.5556,0.6913,-0.5133,-0.3827,0.7682,-0.5133,-0.3827,0.7682,-0.4619,-0.5556,0.6913,-0.5879,-0.5556,0.5879,-0.5133,-0.3827,0.7682,-0.5879,-0.5556,0.5879,-0.6533,-0.3827,0.6533,-0.6533,-0.3827,0.6533,-0.5879,-0.5556,0.5879,-0.6913,-0.5556,0.4619,-0.6533,-0.3827,0.6533,-0.6913,-0.5556,0.4619,-0.7682,-0.3827,0.5133,-0.7682,-0.3827,0.5133,-0.6913,-0.5556,0.4619,-0.7682,-0.5556,0.3182,-0.7682,-0.3827,0.5133,-0.7682,-0.5556,0.3182,-0.8536,-0.3827,0.3536,-0.8536,-0.3827,0.3536,-0.7682,-0.5556,0.3182,-0.8155,-0.5556,0.1622,-0.8536,-0.3827,0.3536,-0.8155,-0.5556,0.1622,-0.9061,-0.3827,0.1802,-0.9061,-0.3827,0.1802,-0.8155,-0.5556,0.1622,-0.8315,-0.5556,0.0,-0.9061,-0.3827,0.1802,-0.8315,-0.5556,0.0,-0.9239,-0.3827,0.0,-0.9239,-0.3827,0.0,-0.8315,-0.5556,0.0,-0.8155,-0.5556,-0.1622,-0.9239,-0.3827,0.0,-0.8155,-0.5556,-0.1622,-0.9061,-0.3827,-0.1802,-0.9061,-0.3827,-0.1802,-0.8155,-0.5556,-0.1622,-0.7682,-0.5556,-0.3182,-0.9061,-0.3827,-0.1802,-0.7682,-0.5556,-0.3182,-0.8536,-0.3827,-0.3536,-0.8536,-0.3827,-0.3536,-0.7682,-0.5556,-0.3182,-0.6913,-0.5556,-0.4619,-0.8536,-0.3827,-0.3536,-0.6913,-0.5556,-0.4619,-0.7682,-0.3827,-0.5133,-0.7682,-0.3827,-0.5133,-0.6913,-0.5556,-0.4619,-0.5879,-0.5556,-0.5879,-0.7682,-0.3827,-0.5133,-0.5879,-0.5556,-0.5879,-0.6533,-0.3827,-0.6533,-0.6533,-0.3827,-0.6533,-0.5879,-0.5556,-0.5879,-0.4619,-0.5556,-0.6913,-0.6533,-0.3827,-0.6533,-0.4619,-0.5556,-0.6913,-0.5133,-0.3827,-0.7682,-0.5133,-0.3827,-0.7682,-0.4619,-0.5556,-0.6913,-0.3182,-0.5556,-0.7682,-0.5133,-0.3827,-0.7682,-0.3182,-0.5556,-0.7682,-0.3536,-0.3827,-0.8536,-0.3536,-0.3827,-0.8536,-0.3182,-0.5556,-0.7682,-0.1622,-0.5556,-0.8155,-0.3536,-0.3827,-0.8536,-0.1622,-0.5556,-0.8155,-0.1802,-0.3827,-0.9061,-0.1802,-0.3827,-0.9061,-0.1622,-0.5556,-0.8155,0.0,-0.5556,-0.8315,-0.1802,-0.3827,-0.9061,0.0,-0.5556,-0.8315,0.0,-0.3827,-0.9239,0.0,-0.3827,-0.9239,0.0,-0.5556,-0.8315,0.1622,-0.5556,-0.8155,0.0,-0.3827,-0.9239,0.1622,-0.5556,-0.8155,0.1802,-0.3827,-0.9061,0.1802,-0.3827,-0.9061,0.1622,-0.5556,-0.8155,0.3182,-0.5556,-0.7682,0.1802,-0.3827,-0.9061,0.3182,-0.5556,-0.7682,0.3536,-0.3827,-0.8536,0.3536,-0.3827,-0.8536,0.3182,-0.5556,-0.7682,0.4619,-0.5556,-0.6913,0.3536,-0.3827,-0.8536,0.4619,-0.5556,-0.6913,0.5133,-0.3827,-0.7682,0.5133,-0.3827,-0.7682,0.4619,-0.5556,-0.6913,0.5879,-0.5556,-0.5879,0.5133,-0.3827,-0.7682,0.5879,-0.5556,-0.5879,0.6533,-0.3827,-0.6533,0.6533,-0.3827,-0.6533,0.5879,-0.5556,-0.5879,0.6913,-0.5556,-0.4619,0.6533,-0.3827,-0.6533,0.6913,-0.5556,-0.4619,0.7682,-0.3827,-0.5133,0.7682,-0.3827,-0.5133,0.6913,-0.5556,-0.4619,0.7682,-0.5556,-0.3182,0.7682,-0.3827,-0.5133,0.7682,-0.5556,-0.3182,0.8536,-0.3827,-0.3536,0.8536,-0.3827,-0.3536,0.7682,-0.5556,-0.3182,0.8155,-0.5556,-0.1622,0.8536,-0.3827,-0.3536,0.8155,-0.5556,-0.1622,0.9061,-0.3827,-0.1802,0.9061,-0.3827,-0.1802,0.8155,-0.5556,-0.1622,0.8315,-0.5556,0.0,0.9061,-0.3827,-0.1802,0.8315,-0.5556,0.0,0.9239,-0.3827,0.0,0.9239,-0.3827,0.0,0.8315,-0.5556,0.0,0.8155,-0.5556,0.1622,0.9239,-0.3827,0.0,0.8155,-0.5556,0.1622,0.9061,-0.3827,0.1802,0.9061,-0.3827,0.1802,0.8155,-0.5556,0.1622,0.7682,-0.5556,0.3182,0.9061,-0.3827,0.1802,0.7682,-0.5556,0.3182,0.8536,-0.3827,0.3536,0.8536,-0.3827,0.3536,0.7682,-0.5556,0.3182,0.6913,-0.5556,0.4619,0.8536,-0.3827,0.3536,0.6913,-0.5556,0.4619,0.7682,-0.3827,0.5133,0.7682,-0.3827,0.5133,0.6913,-0.5556,0.4619,0.5879,-0.5556,0.5879,0.7682,-0.3827,0.5133,0.5879,-0.5556,0.5879,0.6533,-0.3827,0.6533,0.6533,-0.3827,0.6533,0.5879,-0.5556,0.5879,0.4619,-0.5556,0.6913,0.6533,-0.3827,0.6533,0.4619,-0.5556,0.6913,0.5133,-0.3827,0.7682,0.5133,-0.3827,0.7682,0.4619,-0.5556,0.6913,0.3182,-0.5556,0.7682,0.5133,-0.3827,0.7682,0.3182,-0.5556,0.7682,0.3536,-0.3827,0.8536,0.3536,-0.3827,0.8536,0.3182,-0.5556,0.7682,0.1622,-0.5556,0.8155,0.3536,-0.3827,0.8536,0.1622,-0.5556,0.8155,0.1802,-0.3827,0.9061,0.1802,-0.3827,0.9061,0.1622,-0.5556,0.8155,0.0,-0.5556,0.8315,0.1802,-0.3827,0.9061,0.0,-0.5556,0.8315,0.0,-0.3827,0.9239,0.0,-0.5556,0.8315,0.0,-0.7071,0.7071,-0.1379,-0.7071,0.6935,0.0,-0.5556,0.8315,-0.1379,-0.7071,0.6935,-0.1622,-0.5556,0.8155,-0.1622,-0.5556,0.8155,-0.1379,-0.7071,0.6935,-0.2706,-0.7071,0.6533,-0.1622,-0.5556,0.8155,-0.2706,-0.7071,0.6533,-0.3182,-0.5556,0.7682,-0.3182,-0.5556,0.7682,-0.2706,-0.7071,0.6533,-0.3928,-0.7071,0.5879,-0.3182,-0.5556,0.7682,-0.3928,-0.7071,0.5879,-0.4619,-0.5556,0.6913,-0.4619,-0.5556,0.6913,-0.3928,-0.7071,0.5879,-0.5,-0.7071,0.5,-0.4619,-0.5556,0.6913,-0.5,-0.7071,0.5,-0.5879,-0.5556,0.5879,-0.5879,-0.5556,0.5879,-0.5,-0.7071,0.5,-0.5879,-0.7071,0.3928,-0.5879,-0.5556,0.5879,-0.5879,-0.7071,0.3928,-0.6913,-0.5556,0.4619,-0.6913,-0.5556,0.4619,-0.5879,-0.7071,0.3928,-0.6533,-0.7071,0.2706,-0.6913,-0.5556,0.4619,-0.6533,-0.7071,0.2706,-0.7682,-0.5556,0.3182,-0.7682,-0.5556,0.3182,-0.6533,-0.7071,0.2706,-0.6935,-0.7071,0.1379,-0.7682,-0.5556,0.3182,-0.6935,-0.7071,0.1379,-0.8155,-0.5556,0.1622,-0.8155,-0.5556,0.1622,-0.6935,-0.7071,0.1379,-0.7071,-0.7071,0.0,-0.8155,-0.5556,0.1622,-0.7071,-0.7071,0.0,-0.8315,-0.5556,0.0,-0.8315,-0.5556,0.0,-0.7071,-0.7071,0.0,-0.6935,-0.7071,-0.1379,-0.8315,-0.5556,0.0,-0.6935,-0.7071,-0.1379,-0.8155,-0.5556,-0.1622,-0.8155,-0.5556,-0.1622,-0.6935,-0.7071,-0.1379,-0.6533,-0.7071,-0.2706,-0.8155,-0.5556,-0.1622,-0.6533,-0.7071,-0.2706,-0.7682,-0.5556,-0.3182,-0.7682,-0.5556,-0.3182,-0.6533,-0.7071,-0.2706,-0.5879,-0.7071,-0.3928,-0.7682,-0.5556,-0.3182,-0.5879,-0.7071,-0.3928,-0.6913,-0.5556,-0.4619,-0.6913,-0.5556,-0.4619,-0.5879,-0.7071,-0.3928,-0.5,-0.7071,-0.5,-0.6913,-0.5556,-0.4619,-0.5,-0.7071,-0.5,-0.5879,-0.5556,-0.5879,-0.5879,-0.5556,-0.5879,-0.5,-0.7071,-0.5,-0.3928,-0.7071,-0.5879,-0.5879,-0.5556,-0.5879,-0.3928,-0.7071,-0.5879,-0.4619,-0.5556,-0.6913,-0.4619,-0.5556,-0.6913,-0.3928,-0.7071,-0.5879,-0.2706,-0.7071,-0.6533,-0.4619,-0.5556,-0.6913,-0.2706,-0.7071,-0.6533,-0.3182,-0.5556,-0.7682,-0.3182,-0.5556,-0.7682,-0.2706,-0.7071,-0.6533,-0.1379,-0.7071,-0.6935,-0.3182,-0.5556,-0.7682,-0.1379,-0.7071,-0.6935,-0.1622,-0.5556,-0.8155,-0.1622,-0.5556,-0.8155,-0.1379,-0.7071,-0.6935,0.0,-0.7071,-0.7071,-0.1622,-0.5556,-0.8155,0.0,-0.7071,-0.7071,0.0,-0.5556,-0.8315,0.0,-0.5556,-0.8315,0.0,-0.7071,-0.7071,0.138,-0.7071,-0.6935,0.0,-0.5556,-0.8315,0.138,-0.7071,-0.6935,0.1622,-0.5556,-0.8155,0.1622,-0.5556,-0.8155,0.138,-0.7071,-0.6935,0.2706,-0.7071,-0.6533,0.1622,-0.5556,-0.8155,0.2706,-0.7071,-0.6533,0.3182,-0.5556,-0.7682,0.3182,-0.5556,-0.7682,0.2706,-0.7071,-0.6533,0.3928,-0.7071,-0.5879,0.3182,-0.5556,-0.7682,0.3928,-0.7071,-0.5879,0.4619,-0.5556,-0.6913,0.4619,-0.5556,-0.6913,0.3928,-0.7071,-0.5879,0.5,-0.7071,-0.5,0.4619,-0.5556,-0.6913,0.5,-0.7071,-0.5,0.5879,-0.5556,-0.5879,0.5879,-0.5556,-0.5879,0.5,-0.7071,-0.5,0.5879,-0.7071,-0.3928,0.5879,-0.5556,-0.5879,0.5879,-0.7071,-0.3928,0.6913,-0.5556,-0.4619,0.6913,-0.5556,-0.4619,0.5879,-0.7071,-0.3928,0.6533,-0.7071,-0.2706,0.6913,-0.5556,-0.4619,0.6533,-0.7071,-0.2706,0.7682,-0.5556,-0.3182,0.7682,-0.5556,-0.3182,0.6533,-0.7071,-0.2706,0.6935,-0.7071,-0.1379,0.7682,-0.5556,-0.3182,0.6935,-0.7071,-0.1379,0.8155,-0.5556,-0.1622,0.8155,-0.5556,-0.1622,0.6935,-0.7071,-0.1379,0.7071,-0.7071,0.0,0.8155,-0.5556,-0.1622,0.7071,-0.7071,0.0,0.8315,-0.5556,0.0,0.8315,-0.5556,0.0,0.7071,-0.7071,0.0,0.6935,-0.7071,0.138,0.8315,-0.5556,0.0,0.6935,-0.7071,0.138,0.8155,-0.5556,0.1622,0.8155,-0.5556,0.1622,0.6935,-0.7071,0.138,0.6533,-0.7071,0.2706,0.8155,-0.5556,0.1622,0.6533,-0.7071,0.2706,0.7682,-0.5556,0.3182,0.7682,-0.5556,0.3182,0.6533,-0.7071,0.2706,0.5879,-0.7071,0.3928,0.7682,-0.5556,0.3182,0.5879,-0.7071,0.3928,0.6913,-0.5556,0.4619,0.6913,-0.5556,0.4619,0.5879,-0.7071,0.3928,0.5,-0.7071,0.5,0.6913,-0.5556,0.4619,0.5,-0.7071,0.5,0.5879,-0.5556,0.5879,0.5879,-0.5556,0.5879,0.5,-0.7071,0.5,0.3928,-0.7071,0.5879,0.5879,-0.5556,0.5879,0.3928,-0.7071,0.5879,0.4619,-0.5556,0.6913,0.4619,-0.5556,0.6913,0.3928,-0.7071,0.5879,0.2706,-0.7071,0.6533,0.4619,-0.5556,0.6913,0.2706,-0.7071,0.6533,0.3182,-0.5556,0.7682,0.3182,-0.5556,0.7682,0.2706,-0.7071,0.6533,0.1379,-0.7071,0.6935,0.3182,-0.5556,0.7682,0.1379,-0.7071,0.6935,0.1622,-0.5556,0.8155,0.1622,-0.5556,0.8155,0.1379,-0.7071,0.6935,0.0,-0.7071,0.7071,0.1622,-0.5556,0.8155,0.0,-0.7071,0.7071,0.0,-0.5556,0.8315,0.0,-0.7071,0.7071,0.0,-0.8315,0.5556,-0.1084,-0.8315,0.5449,0.0,-0.7071,0.7071,-0.1084,-0.8315,0.5449,-0.1379,-0.7071,0.6935,-0.1379,-0.7071,0.6935,-0.1084,-0.8315,0.5449,-0.2126,-0.8315,0.5133,-0.1379,-0.7071,0.6935,-0.2126,-0.8315,0.5133,-0.2706,-0.7071,0.6533,-0.2706,-0.7071,0.6533,-0.2126,-0.8315,0.5133,-0.3087,-0.8315,0.4619,-0.2706,-0.7071,0.6533,-0.3087,-0.8315,0.4619,-0.3928,-0.7071,0.5879,-0.3928,-0.7071,0.5879,-0.3087,-0.8315,0.4619,-0.3928,-0.8315,0.3928,-0.3928,-0.7071,0.5879,-0.3928,-0.8315,0.3928,-0.5,-0.7071,0.5,-0.5,-0.7071,0.5,-0.3928,-0.8315,0.3928,-0.4619,-0.8315,0.3087,-0.5,-0.7071,0.5,-0.4619,-0.8315,0.3087,-0.5879,-0.7071,0.3928,-0.5879,-0.7071,0.3928,-0.4619,-0.8315,0.3087,-0.5133,-0.8315,0.2126,-0.5879,-0.7071,0.3928,-0.5133,-0.8315,0.2126,-0.6533,-0.7071,0.2706,-0.6533,-0.7071,0.2706,-0.5133,-0.8315,0.2126,-0.5449,-0.8315,0.1084,-0.6533,-0.7071,0.2706,-0.5449,-0.8315,0.1084,-0.6935,-0.7071,0.1379,-0.6935,-0.7071,0.1379,-0.5449,-0.8315,0.1084,-0.5556,-0.8315,0.0,-0.6935,-0.7071,0.1379,-0.5556,-0.8315,0.0,-0.7071,-0.7071,0.0,-0.7071,-0.7071,0.0,-0.5556,-0.8315,0.0,-0.5449,-0.8315,-0.1084,-0.7071,-0.7071,0.0,-0.5449,-0.8315,-0.1084,-0.6935,-0.7071,-0.1379,-0.6935,-0.7071,-0.1379,-0.5449,-0.8315,-0.1084,-0.5133,-0.8315,-0.2126,-0.6935,-0.7071,-0.1379,-0.5133,-0.8315,-0.2126,-0.6533,-0.7071,-0.2706,-0.6533,-0.7071,-0.2706,-0.5133,-0.8315,-0.2126,-0.4619,-0.8315,-0.3087,-0.6533,-0.7071,-0.2706,-0.4619,-0.8315,-0.3087,-0.5879,-0.7071,-0.3928,-0.5879,-0.7071,-0.3928,-0.4619,-0.8315,-0.3087,-0.3928,-0.8315,-0.3928,-0.5879,-0.7071,-0.3928,-0.3928,-0.8315,-0.3928,-0.5,-0.7071,-0.5,-0.5,-0.7071,-0.5,-0.3928,-0.8315,-0.3928,-0.3087,-0.8315,-0.4619,-0.5,-0.7071,-0.5,-0.3087,-0.8315,-0.4619,-0.3928,-0.7071,-0.5879,-0.3928,-0.7071,-0.5879,-0.3087,-0.8315,-0.4619,-0.2126,-0.8315,-0.5133,-0.3928,-0.7071,-0.5879,-0.2126,-0.8315,-0.5133,-0.2706,-0.7071,-0.6533,-0.2706,-0.7071,-0.6533,-0.2126,-0.8315,-0.5133,-0.1084,-0.8315,-0.5449,-0.2706,-0.7071,-0.6533,-0.1084,-0.8315,-0.5449,-0.1379,-0.7071,-0.6935,-0.1379,-0.7071,-0.6935,-0.1084,-0.8315,-0.5449,0.0,-0.8315,-0.5556,-0.1379,-0.7071,-0.6935,0.0,-0.8315,-0.5556,0.0,-0.7071,-0.7071,0.0,-0.7071,-0.7071,0.0,-0.8315,-0.5556,0.1084,-0.8315,-0.5449,0.0,-0.7071,-0.7071,0.1084,-0.8315,-0.5449,0.138,-0.7071,-0.6935,0.138,-0.7071,-0.6935,0.1084,-0.8315,-0.5449,0.2126,-0.8315,-0.5133,0.138,-0.7071,-0.6935,0.2126,-0.8315,-0.5133,0.2706,-0.7071,-0.6533,0.2706,-0.7071,-0.6533,0.2126,-0.8315,-0.5133,0.3087,-0.8315,-0.4619,0.2706,-0.7071,-0.6533,0.3087,-0.8315,-0.4619,0.3928,-0.7071,-0.5879,0.3928,-0.7071,-0.5879,0.3087,-0.8315,-0.4619,0.3928,-0.8315,-0.3928,0.3928,-0.7071,-0.5879,0.3928,-0.8315,-0.3928,0.5,-0.7071,-0.5,0.5,-0.7071,-0.5,0.3928,-0.8315,-0.3928,0.4619,-0.8315,-0.3087,0.5,-0.7071,-0.5,0.4619,-0.8315,-0.3087,0.5879,-0.7071,-0.3928,0.5879,-0.7071,-0.3928,0.4619,-0.8315,-0.3087,0.5133,-0.8315,-0.2126,0.5879,-0.7071,-0.3928,0.5133,-0.8315,-0.2126,0.6533,-0.7071,-0.2706,0.6533,-0.7071,-0.2706,0.5133,-0.8315,-0.2126,0.5449,-0.8315,-0.1084,0.6533,-0.7071,-0.2706,0.5449,-0.8315,-0.1084,0.6935,-0.7071,-0.1379,0.6935,-0.7071,-0.1379,0.5449,-0.8315,-0.1084,0.5556,-0.8315,0.0,0.6935,-0.7071,-0.1379,0.5556,-0.8315,0.0,0.7071,-0.7071,0.0,0.7071,-0.7071,0.0,0.5556,-0.8315,0.0,0.5449,-0.8315,0.1084,0.7071,-0.7071,0.0,0.5449,-0.8315,0.1084,0.6935,-0.7071,0.138,0.6935,-0.7071,0.138,0.5449,-0.8315,0.1084,0.5133,-0.8315,0.2126,0.6935,-0.7071,0.138,0.5133,-0.8315,0.2126,0.6533,-0.7071,0.2706,0.6533,-0.7071,0.2706,0.5133,-0.8315,0.2126,0.4619,-0.8315,0.3087,0.6533,-0.7071,0.2706,0.4619,-0.8315,0.3087,0.5879,-0.7071,0.3928,0.5879,-0.7071,0.3928,0.4619,-0.8315,0.3087,0.3928,-0.8315,0.3928,0.5879,-0.7071,0.3928,0.3928,-0.8315,0.3928,0.5,-0.7071,0.5,0.5,-0.7071,0.5,0.3928,-0.8315,0.3928,0.3087,-0.8315,0.4619,0.5,-0.7071,0.5,0.3087,-0.8315,0.4619,0.3928,-0.7071,0.5879,0.3928,-0.7071,0.5879,0.3087,-0.8315,0.4619,0.2126,-0.8315,0.5133,0.3928,-0.7071,0.5879,0.2126,-0.8315,0.5133,0.2706,-0.7071,0.6533,0.2706,-0.7071,0.6533,0.2126,-0.8315,0.5133,0.1084,-0.8315,0.5449,0.2706,-0.7071,0.6533,0.1084,-0.8315,0.5449,0.1379,-0.7071,0.6935,0.1379,-0.7071,0.6935,0.1084,-0.8315,0.5449,0.0,-0.8315,0.5556,0.1379,-0.7071,0.6935,0.0,-0.8315,0.5556,0.0,-0.7071,0.7071,0.0,-0.8315,0.5556,0.0,-0.9239,0.3827,-0.0747,-0.9239,0.3753,0.0,-0.8315,0.5556,-0.0747,-0.9239,0.3753,-0.1084,-0.8315,0.5449,-0.1084,-0.8315,0.5449,-0.0747,-0.9239,0.3753,-0.1464,-0.9239,0.3536,-0.1084,-0.8315,0.5449,-0.1464,-0.9239,0.3536,-0.2126,-0.8315,0.5133,-0.2126,-0.8315,0.5133,-0.1464,-0.9239,0.3536,-0.2126,-0.9239,0.3182,-0.2126,-0.8315,0.5133,-0.2126,-0.9239,0.3182,-0.3087,-0.8315,0.4619,-0.3087,-0.8315,0.4619,-0.2126,-0.9239,0.3182,-0.2706,-0.9239,0.2706,-0.3087,-0.8315,0.4619,-0.2706,-0.9239,0.2706,-0.3928,-0.8315,0.3928,-0.3928,-0.8315,0.3928,-0.2706,-0.9239,0.2706,-0.3182,-0.9239,0.2126,-0.3928,-0.8315,0.3928,-0.3182,-0.9239,0.2126,-0.4619,-0.8315,0.3087,-0.4619,-0.8315,0.3087,-0.3182,-0.9239,0.2126,-0.3536,-0.9239,0.1464,-0.4619,-0.8315,0.3087,-0.3536,-0.9239,0.1464,-0.5133,-0.8315,0.2126,-0.5133,-0.8315,0.2126,-0.3536,-0.9239,0.1464,-0.3753,-0.9239,0.0747,-0.5133,-0.8315,0.2126,-0.3753,-0.9239,0.0747,-0.5449,-0.8315,0.1084,-0.5449,-0.8315,0.1084,-0.3753,-0.9239,0.0747,-0.3827,-0.9239,0.0,-0.5449,-0.8315,0.1084,-0.3827,-0.9239,0.0,-0.5556,-0.8315,0.0,-0.5556,-0.8315,0.0,-0.3827,-0.9239,0.0,-0.3753,-0.9239,-0.0747,-0.5556,-0.8315,0.0,-0.3753,-0.9239,-0.0747,-0.5449,-0.8315,-0.1084,-0.5449,-0.8315,-0.1084,-0.3753,-0.9239,-0.0747,-0.3536,-0.9239,-0.1464,-0.5449,-0.8315,-0.1084,-0.3536,-0.9239,-0.1464,-0.5133,-0.8315,-0.2126,-0.5133,-0.8315,-0.2126,-0.3536,-0.9239,-0.1464,-0.3182,-0.9239,-0.2126,-0.5133,-0.8315,-0.2126,-0.3182,-0.9239,-0.2126,-0.4619,-0.8315,-0.3087,-0.4619,-0.8315,-0.3087,-0.3182,-0.9239,-0.2126,-0.2706,-0.9239,-0.2706,-0.4619,-0.8315,-0.3087,-0.2706,-0.9239,-0.2706,-0.3928,-0.8315,-0.3928,-0.3928,-0.8315,-0.3928,-0.2706,-0.9239,-0.2706,-0.2126,-0.9239,-0.3182,-0.3928,-0.8315,-0.3928,-0.2126,-0.9239,-0.3182,-0.3087,-0.8315,-0.4619,-0.3087,-0.8315,-0.4619,-0.2126,-0.9239,-0.3182,-0.1464,-0.9239,-0.3536,-0.3087,-0.8315,-0.4619,-0.1464,-0.9239,-0.3536,-0.2126,-0.8315,-0.5133,-0.2126,-0.8315,-0.5133,-0.1464,-0.9239,-0.3536,-0.0747,-0.9239,-0.3753,-0.2126,-0.8315,-0.5133,-0.0747,-0.9239,-0.3753,-0.1084,-0.8315,-0.5449,-0.1084,-0.8315,-0.5449,-0.0747,-0.9239,-0.3753,0.0,-0.9239,-0.3827,-0.1084,-0.8315,-0.5449,0.0,-0.9239,-0.3827,0.0,-0.8315,-0.5556,0.0,-0.8315,-0.5556,0.0,-0.9239,-0.3827,0.0747,-0.9239,-0.3753,0.0,-0.8315,-0.5556,0.0747,-0.9239,-0.3753,0.1084,-0.8315,-0.5449,0.1084,-0.8315,-0.5449,0.0747,-0.9239,-0.3753,0.1464,-0.9239,-0.3536,0.1084,-0.8315,-0.5449,0.1464,-0.9239,-0.3536,0.2126,-0.8315,-0.5133,0.2126,-0.8315,-0.5133,0.1464,-0.9239,-0.3536,0.2126,-0.9239,-0.3182,0.2126,-0.8315,-0.5133,0.2126,-0.9239,-0.3182,0.3087,-0.8315,-0.4619,0.3087,-0.8315,-0.4619,0.2126,-0.9239,-0.3182,0.2706,-0.9239,-0.2706,0.3087,-0.8315,-0.4619,0.2706,-0.9239,-0.2706,0.3928,-0.8315,-0.3928,0.3928,-0.8315,-0.3928,0.2706,-0.9239,-0.2706,0.3182,-0.9239,-0.2126,0.3928,-0.8315,-0.3928,0.3182,-0.9239,-0.2126,0.4619,-0.8315,-0.3087,0.4619,-0.8315,-0.3087,0.3182,-0.9239,-0.2126,0.3536,-0.9239,-0.1464,0.4619,-0.8315,-0.3087,0.3536,-0.9239,-0.1464,0.5133,-0.8315,-0.2126,0.5133,-0.8315,-0.2126,0.3536,-0.9239,-0.1464,0.3753,-0.9239,-0.0747,0.5133,-0.8315,-0.2126,0.3753,-0.9239,-0.0747,0.5449,-0.8315,-0.1084,0.5449,-0.8315,-0.1084,0.3753,-0.9239,-0.0747,0.3827,-0.9239,0.0,0.5449,-0.8315,-0.1084,0.3827,-0.9239,0.0,0.5556,-0.8315,0.0,0.5556,-0.8315,0.0,0.3827,-0.9239,0.0,0.3753,-0.9239,0.0747,0.5556,-0.8315,0.0,0.3753,-0.9239,0.0747,0.5449,-0.8315,0.1084,0.5449,-0.8315,0.1084,0.3753,-0.9239,0.0747,0.3536,-0.9239,0.1464,0.5449,-0.8315,0.1084,0.3536,-0.9239,0.1464,0.5133,-0.8315,0.2126,0.5133,-0.8315,0.2126,0.3536,-0.9239,0.1464,0.3182,-0.9239,0.2126,0.5133,-0.8315,0.2126,0.3182,-0.9239,0.2126,0.4619,-0.8315,0.3087,0.4619,-0.8315,0.3087,0.3182,-0.9239,0.2126,0.2706,-0.9239,0.2706,0.4619,-0.8315,0.3087,0.2706,-0.9239,0.2706,0.3928,-0.8315,0.3928,0.3928,-0.8315,0.3928,0.2706,-0.9239,0.2706,0.2126,-0.9239,0.3182,0.3928,-0.8315,0.3928,0.2126,-0.9239,0.3182,0.3087,-0.8315,0.4619,0.3087,-0.8315,0.4619,0.2126,-0.9239,0.3182,0.1464,-0.9239,0.3536,0.3087,-0.8315,0.4619,0.1464,-0.9239,0.3536,0.2126,-0.8315,0.5133,0.2126,-0.8315,0.5133,0.1464,-0.9239,0.3536,0.0747,-0.9239,0.3753,0.2126,-0.8315,0.5133,0.0747,-0.9239,0.3753,0.1084,-0.8315,0.5449,0.1084,-0.8315,0.5449,0.0747,-0.9239,0.3753,0.0,-0.9239,0.3827,0.1084,-0.8315,0.5449,0.0,-0.9239,0.3827,0.0,-0.8315,0.5556,0.0,-0.9239,0.3827,0.0,-0.9808,0.1951,-0.0381,-0.9808,0.1913,0.0,-0.9239,0.3827,-0.0381,-0.9808,0.1913,-0.0747,-0.9239,0.3753,-0.0747,-0.9239,0.3753,-0.0381,-0.9808,0.1913,-0.0747,-0.9808,0.1802,-0.0747,-0.9239,0.3753,-0.0747,-0.9808,0.1802,-0.1464,-0.9239,0.3536,-0.1464,-0.9239,0.3536,-0.0747,-0.9808,0.1802,-0.1084,-0.9808,0.1622,-0.1464,-0.9239,0.3536,-0.1084,-0.9808,0.1622,-0.2126,-0.9239,0.3182,-0.2126,-0.9239,0.3182,-0.1084,-0.9808,0.1622,-0.1379,-0.9808,0.1379,-0.2126,-0.9239,0.3182,-0.1379,-0.9808,0.1379,-0.2706,-0.9239,0.2706,-0.2706,-0.9239,0.2706,-0.1379,-0.9808,0.1379,-0.1622,-0.9808,0.1084,-0.2706,-0.9239,0.2706,-0.1622,-0.9808,0.1084,-0.3182,-0.9239,0.2126,-0.3182,-0.9239,0.2126,-0.1622,-0.9808,0.1084,-0.1802,-0.9808,0.0747,-0.3182,-0.9239,0.2126,-0.1802,-0.9808,0.0747,-0.3536,-0.9239,0.1464,-0.3536,-0.9239,0.1464,-0.1802,-0.9808,0.0747,-0.1913,-0.9808,0.0381,-0.3536,-0.9239,0.1464,-0.1913,-0.9808,0.0381,-0.3753,-0.9239,0.0747,-0.3753,-0.9239,0.0747,-0.1913,-0.9808,0.0381,-0.1951,-0.9808,0.0,-0.3753,-0.9239,0.0747,-0.1951,-0.9808,0.0,-0.3827,-0.9239,0.0,-0.3827,-0.9239,0.0,-0.1951,-0.9808,0.0,-0.1913,-0.9808,-0.0381,-0.3827,-0.9239,0.0,-0.1913,-0.9808,-0.0381,-0.3753,-0.9239,-0.0747,-0.3753,-0.9239,-0.0747,-0.1913,-0.9808,-0.0381,-0.1802,-0.9808,-0.0747,-0.3753,-0.9239,-0.0747,-0.1802,-0.9808,-0.0747,-0.3536,-0.9239,-0.1464,-0.3536,-0.9239,-0.1464,-0.1802,-0.9808,-0.0747,-0.1622,-0.9808,-0.1084,-0.3536,-0.9239,-0.1464,-0.1622,-0.9808,-0.1084,-0.3182,-0.9239,-0.2126,-0.3182,-0.9239,-0.2126,-0.1622,-0.9808,-0.1084,-0.1379,-0.9808,-0.1379,-0.3182,-0.9239,-0.2126,-0.1379,-0.9808,-0.1379,-0.2706,-0.9239,-0.2706,-0.2706,-0.9239,-0.2706,-0.1379,-0.9808,-0.1379,-0.1084,-0.9808,-0.1622,-0.2706,-0.9239,-0.2706,-0.1084,-0.9808,-0.1622,-0.2126,-0.9239,-0.3182,-0.2126,-0.9239,-0.3182,-0.1084,-0.9808,-0.1622,-0.0747,-0.9808,-0.1802,-0.2126,-0.9239,-0.3182,-0.0747,-0.9808,-0.1802,-0.1464,-0.9239,-0.3536,-0.1464,-0.9239,-0.3536,-0.0747,-0.9808,-0.1802,-0.0381,-0.9808,-0.1913,-0.1464,-0.9239,-0.3536,-0.0381,-0.9808,-0.1913,-0.0747,-0.9239,-0.3753,-0.0747,-0.9239,-0.3753,-0.0381,-0.9808,-0.1913,0.0,-0.9808,-0.1951,-0.0747,-0.9239,-0.3753,0.0,-0.9808,-0.1951,0.0,-0.9239,-0.3827,0.0,-0.9239,-0.3827,0.0,-0.9808,-0.1951,0.0381,-0.9808,-0.1913,0.0,-0.9239,-0.3827,0.0381,-0.9808,-0.1913,0.0747,-0.9239,-0.3753,0.0747,-0.9239,-0.3753,0.0381,-0.9808,-0.1913,0.0747,-0.9808,-0.1802,0.0747,-0.9239,-0.3753,0.0747,-0.9808,-0.1802,0.1464,-0.9239,-0.3536,0.1464,-0.9239,-0.3536,0.0747,-0.9808,-0.1802,0.1084,-0.9808,-0.1622,0.1464,-0.9239,-0.3536,0.1084,-0.9808,-0.1622,0.2126,-0.9239,-0.3182,0.2126,-0.9239,-0.3182,0.1084,-0.9808,-0.1622,0.1379,-0.9808,-0.1379,0.2126,-0.9239,-0.3182,0.1379,-0.9808,-0.1379,0.2706,-0.9239,-0.2706,0.2706,-0.9239,-0.2706,0.1379,-0.9808,-0.1379,0.1622,-0.9808,-0.1084,0.2706,-0.9239,-0.2706,0.1622,-0.9808,-0.1084,0.3182,-0.9239,-0.2126,0.3182,-0.9239,-0.2126,0.1622,-0.9808,-0.1084,0.1802,-0.9808,-0.0747,0.3182,-0.9239,-0.2126,0.1802,-0.9808,-0.0747,0.3536,-0.9239,-0.1464,0.3536,-0.9239,-0.1464,0.1802,-0.9808,-0.0747,0.1913,-0.9808,-0.0381,0.3536,-0.9239,-0.1464,0.1913,-0.9808,-0.0381,0.3753,-0.9239,-0.0747,0.3753,-0.9239,-0.0747,0.1913,-0.9808,-0.0381,0.1951,-0.9808,0.0,0.3753,-0.9239,-0.0747,0.1951,-0.9808,0.0,0.3827,-0.9239,0.0,0.3827,-0.9239,0.0,0.1951,-0.9808,0.0,0.1913,-0.9808,0.0381,0.3827,-0.9239,0.0,0.1913,-0.9808,0.0381,0.3753,-0.9239,0.0747,0.3753,-0.9239,0.0747,0.1913,-0.9808,0.0381,0.1802,-0.9808,0.0747,0.3753,-0.9239,0.0747,0.1802,-0.9808,0.0747,0.3536,-0.9239,0.1464,0.3536,-0.9239,0.1464,0.1802,-0.9808,0.0747,0.1622,-0.9808,0.1084,0.3536,-0.9239,0.1464,0.1622,-0.9808,0.1084,0.3182,-0.9239,0.2126,0.3182,-0.9239,0.2126,0.1622,-0.9808,0.1084,0.1379,-0.9808,0.1379,0.3182,-0.9239,0.2126,0.1379,-0.9808,0.1379,0.2706,-0.9239,0.2706,0.2706,-0.9239,0.2706,0.1379,-0.9808,0.1379,0.1084,-0.9808,0.1622,0.2706,-0.9239,0.2706,0.1084,-0.9808,0.1622,0.2126,-0.9239,0.3182,0.2126,-0.9239,0.3182,0.1084,-0.9808,0.1622,0.0747,-0.9808,0.1802,0.2126,-0.9239,0.3182,0.0747,-0.9808,0.1802,0.1464,-0.9239,0.3536,0.1464,-0.9239,0.3536,0.0747,-0.9808,0.1802,0.0381,-0.9808,0.1913,0.1464,-0.9239,0.3536,0.0381,-0.9808,0.1913,0.0747,-0.9239,0.3753,0.0747,-0.9239,0.3753,0.0381,-0.9808,0.1913,0.0,-0.9808,0.1951,0.0747,-0.9239,0.3753,0.0,-0.9808,0.1951,0.0,-0.9239,0.3827,0.0,-1.0,0.0,-0.0381,-0.9808,0.1913,0.0,-0.9808,0.1951,0.0,-1.0,0.0,-0.0747,-0.9808,0.1802,-0.0381,-0.9808,0.1913,0.0,-1.0,0.0,-0.1084,-0.9808,0.1622,-0.0747,-0.9808,0.1802,0.0,-1.0,0.0,-0.1379,-0.9808,0.1379,-0.1084,-0.9808,0.1622,0.0,-1.0,0.0,-0.1622,-0.9808,0.1084,-0.1379,-0.9808,0.1379,0.0,-1.0,0.0,-0.1802,-0.9808,0.0747,-0.1622,-0.9808,0.1084,0.0,-1.0,0.0,-0.1913,-0.9808,0.0381,-0.1802,-0.9808,0.0747,0.0,-1.0,0.0,-0.1951,-0.9808,0.0,-0.1913,-0.9808,0.0381,0.0,-1.0,0.0,-0.1913,-0.9808,-0.0381,-0.1951,-0.9808,0.0,0.0,-1.0,0.0,-0.1802,-0.9808,-0.0747,-0.1913,-0.9808,-0.0381,0.0,-1.0,0.0,-0.1622,-0.9808,-0.1084,-0.1802,-0.9808,-0.0747,0.0,-1.0,0.0,-0.1379,-0.9808,-0.1379,-0.1622,-0.9808,-0.1084,0.0,-1.0,0.0,-0.1084,-0.9808,-0.1622,-0.1379,-0.9808,-0.1379,0.0,-1.0,0.0,-0.0747,-0.9808,-0.1802,-0.1084,-0.9808,-0.1622,0.0,-1.0,0.0,-0.0381,-0.9808,-0.1913,-0.0747,-0.9808,-0.1802,0.0,-1.0,0.0,0.0,-0.9808,-0.1951,-0.0381,-0.9808,-0.1913,0.0,-1.0,0.0,0.0381,-0.9808,-0.1913,0.0,-0.9808,-0.1951,0.0,-1.0,0.0,0.0747,-0.9808,-0.1802,0.0381,-0.9808,-0.1913,0.0,-1.0,0.0,0.1084,-0.9808,-0.1622,0.0747,-0.9808,-0.1802,0.0,-1.0,0.0,0.1379,-0.9808,-0.1379,0.1084,-0.9808,-0.1622,0.0,-1.0,0.0,0.1622,-0.9808,-0.1084,0.1379,-0.9808,-0.1379,0.0,-1.0,0.0,0.1802,-0.9808,-0.0747,0.1622,-0.9808,-0.1084,0.0,-1.0,0.0,0.1913,-0.9808,-0.0381,0.1802,-0.9808,-0.0747,0.0,-1.0,0.0,0.1951,-0.9808,0.0,0.1913,-0.9808,-0.0381,0.0,-1.0,0.0,0.1913,-0.9808,0.0381,0.1951,-0.9808,0.0,0.0,-1.0,0.0,0.1802,-0.9808,0.0747,0.1913,-0.9808,0.0381,0.0,-1.0,0.0,0.1622,-0.9808,0.1084,0.1802,-0.9808,0.0747,0.0,-1.0,0.0,0.1379,-0.9808,0.1379,0.1622,-0.9808,0.1084,0.0,-1.0,0.0,0.1084,-0.9808,0.1622,0.1379,-0.9808,0.1379,0.0,-1.0,0.0,0.0747,-0.9808,0.1802,0.1084,-0.9808,0.1622,0.0,-1.0,0.0,0.0381,-0.9808,0.1913,0.0747,-0.9808,0.1802,0.0,-1.0,0.0,0.0,-0.9808,0.1951,0.0381,-0.9808,0.1913],"normals":[0.0,1.0,0.0,0.0,0.9796,0.201,-0.0392,0.9796,0.1971,0.0,1.0,0.0,-0.0392,0.9796,0.1971,-0.0769,0.9796,0.1857,0.0,1.0,0.0,-0.0769,0.9796,0.1857,-0.1117,0.9796,0.1671,0.0,1.0,0.0,-0.1117,0.9796,0.1671,-0.1421,0.9796,0.1421,0.0,1.0,0.0,-0.1421,0.9796,0.1421,-0.1671,0.9796,0.1117,0.0,1.0,0.0,-0.1671,0.9796,0.1117,-0.1857,0.9796,0.0769,0.0,1.0,0.0,-0.1857,0.9796,0.0769,-0.1971,0.9796,0.0392,0.0,1.0,0.0,-0.1971,0.9796,0.0392,-0.201,0.9796,0.0,0.0,1.0,0.0,-0.201,0.9796,0.0,-0.1971,0.9796,-0.0392,0.0,1.0,0.0,-0.1971,0.9796,-0.0392,-0.1857,0.9796,-0.0769,0.0,1.0,0.0,-0.1857,0.9796,-0.0769,-0.1671,0.9796,-0.1117,0.0,1.0,0.0,-0.1671,0.9796,-0.1117,-0.1421,0.9796,-0.1421,0.0,1.0,0.0,-0.1421,0.9796,-0.1421,-0.1117,0.9796,-0.1671,0.0,1.0,0.0,-0.1117,0.9796,-0.1671,-0.0769,0.9796,-0.1857,0.0,1.0,0.0,-0.0769,0.9796,-0.1857,-0.0392,0.9796,-0.1971,0.0,1.0,0.0,-0.0392,0.9796,-0.1971,0.0,0.9796,-0.201,0.0,1.0,0.0,0.0,0.9796,-0.201,0.0392,0.9796,-0.1971,0.0,1.0,0.0,0.0392,0.9796,-0.1971,0.0769,0.9796,-0.1857,0.0,1.0,0.0,0.0769,0.9796,-0.1857,0.1117,0.9796,-0.1671,0.0,1.0,0.0,0.1117,0.9796,-0.1671,0.1421,0.9796,-0.1421,0.0,1.0,0.0,0.1421,0.9796,-0.1421,0.1671,0.9796,-0.1117,0.0,1.0,0.0,0.1671,0.9796,-0.1117,0.1857,0.9796,-0.0769,0.0,1.0,0.0,0.1857,0.9796,-0.0769,0.1971,0.9796,-0.0392,0.0,1.0,0.0,0.1971,0.9796,-0.0392,0.201,0.9796,0.0,0.0,1.0,0.0,0.201,0.9796,0.0,0.1971,0.9796,0.0392,0.0,1.0,0.0,0.1971,0.9796,0.0392,0.1857,0.9796,0.0769,0.0,1.0,0.0,0.1857,0.9796,0.0769,0.1671,0.9796,0.1117,0.0,1.0,0.0,0.1671,0.9796,0.1117,0.1421,0.9796,0.1421,0.0,1.0,0.0,0.1421,0.9796,0.1421,0.1117,0.9796,0.1671,0.0,1.0,0.0,0.1117,0.9796,0.1671,0.0769,0.9796,0.1857,0.0,1.0,0.0,0.0769,0.9796,0.1857,0.0392,0.9796,0.1971,0.0,1.0,0.0,0.0392,0.9796,0.1971,0.0,0.9796,0.201,0.0,0.9796,0.201,0.0,0.9217,0.3879,-0.0757,0.9217,0.3804,0.0,0.9796,0.201,-0.0757,0.9217,0.3804,-0.0392,0.9796,0.1971,-0.0392,0.9796,0.1971,-0.0757,0.9217,0.3804,-0.1484,0.9217,0.3584,-0.0392,0.9796,0.1971,-0.1484,0.9217,0.3584,-0.0769,0.9796,0.1857,-0.0769,0.9796,0.1857,-0.1484,0.9217,0.3584,-0.2155,0.9217,0.3225,-0.0769,0.9796,0.1857,-0.2155,0.9217,0.3225,-0.1117,0.9796,0.1671,-0.1117,0.9796,0.1671,-0.2155,0.9217,0.3225,-0.2743,0.9217,0.2743,-0.1117,0.9796,0.1671,-0.2743,0.9217,0.2743,-0.1421,0.9796,0.1421,-0.1421,0.9796,0.1421,-0.2743,0.9217,0.2743,-0.3225,0.9217,0.2155,-0.1421,0.9796,0.1421,-0.3225,0.9217,0.2155,-0.1671,0.9796,0.1117,-0.1671,0.9796,0.1117,-0.3225,0.9217,0.2155,-0.3584,0.9217,0.1484,-0.1671,0.9796,0.1117,-0.3584,0.9217,0.1484,-0.1857,0.9796,0.0769,-0.1857,0.9796,0.0769,-0.3584,0.9217,0.1484,-0.3804,0.9217,0.0757,-0.1857,0.9796,0.0769,-0.3804,0.9217,0.0757,-0.1971,0.9796,0.0392,-0.1971,0.9796,0.0392,-0.3804,0.9217,0.0757,-0.3879,0.9217,0.0,-0.1971,0.9796,0.0392,-0.3879,0.9217,0.0,-0.201,0.9796,0.0,-0.201,0.9796,0.0,-0.3879,0.9217,0.0,-0.3804,0.9217,-0.0757,-0.201,0.9796,0.0,-0.3804,0.9217,-0.0757,-0.1971,0.9796,-0.0392,-0.1971,0.9796,-0.0392,-0.3804,0.9217,-0.0757,-0.3584,0.9217,-0.1484,-0.1971,0.9796,-0.0392,-0.3584,0.9217,-0.1484,-0.1857,0.9796,-0.0769,-0.1857,0.9796,-0.0769,-0.3584,0.9217,-0.1484,-0.3225,0.9217,-0.2155,-0.1857,0.9796,-0.0769,-0.3225,0.9217,-0.2155,-0.1671,0.9796,-0.1117,-0.1671,0.9796,-0.1117,-0.3225,0.9217,-0.2155,-0.2743,0.9217,-0.2743,-0.1671,0.9796,-0.1117,-0.2743,0.9217,-0.2743,-0.1421,0.9796,-0.1421,-0.1421,0.9796,-0.1421,-0.2743,0.9217,-0.2743,-0.2155,0.9217,-0.3225,-0.1421,0.9796,-0.1421,-0.2155,0.9217,-0.3225,-0.1117,0.9796,-0.1671,-0.1117,0.9796,-0.1671,-0.2155,0.9217,-0.3225,-0.1484,0.9217,-0.3584,-0.1117,0.9796,-0.1671,-0.1484,0.9217,-0.3584,-0.0769,0.9796,-0.1857,-0.0769,0.9796,-0.1857,-0.1484,0.9217,-0.3584,-0.0757,0.9217,-0.3804,-0.0769,0.9796,-0.1857,-0.0757,0.9217,-0.3804,-0.0392,0.9796,-0.1971,-0.0392,0.9796,-0.1971,-0.0757,0.9217,-0.3804,0.0,0.9217,-0.3879,-0.0392,0.9796,-0.1971,0.0,0.9217,-0.3879,0.0,0.9796,-0.201,0.0,0.9796,-0.201,0.0,0.9217,-0.3879,0.0757,0.9217,-0.3804,0.0,0.9796,-0.201,0.0757,0.9217,-0.3804,0.0392,0.9796,-0.1971,0.0392,0.9796,-0.1971,0.0757,0.9217,-0.3804,0.1484,0.9217,-0.3584,0.0392,0.9796,-0.1971,0.1484,0.9217,-0.3584,0.0769,0.9796,-0.1857,0.0769,0.9796,-0.1857,0.1484,0.9217,-0.3584,0.2155,0.9217,-0.3225,0.0769,0.9796,-0.1857,0.2155,0.9217,-0.3225,0.1117,0.9796,-0.1671,0.1117,0.9796,-0.1671,0.2155,0.9217,-0.3225,0.2743,0.9217,-0.2743,0.1117,0.9796,-0.1671,0.2743,0.9217,-0.2743,0.1421,0.9796,-0.1421,0.1421,0.9796,-0.1421,0.2743,0.9217,-0.2743,0.3225,0.9217,-0.2155,0.1421,0.9796,-0.1421,0.3225,0.9217,-0.2155,0.1671,0.9796,-0.1117,0.1671,0.9796,-0.1117,0.3225,0.9217,-0.2155,0.3584,0.9217,-0.1484,0.1671,0.9796,-0.1117,0.3584,0.9217,-0.1484,0.1857,0.9796,-0.0769,0.1857,0.9796,-0.0769,0.3584,0.9217,-0.1484,0.3804,0.9217,-0.0757,0.1857,0.9796,-0.0769,0.3804,0.9217,-0.0757,0.1971,0.9796,-0.0392,0.1971,0.9796,-0.0392,0.3804,0.9217,-0.0757,0.3879,0.9217,0.0,0.1971,0.9796,-0.0392,0.3879,0.9217,0.0,0.201,0.9796,0.0,0.201,0.9796,0.0,0.3879,0.9217,0.0,0.3804,0.9217,0.0757,0.201,0.9796,0.0,0.3804,0.9217,0.0757,0.1971,0.9796,0.0392,0.1971,0.9796,0.0392,0.3804,0.9217,0.0757,0.3584,0.9217,0.1484,0.1971,0.9796,0.0392,0.3584,0.9217,0.1484,0.1857,0.9796,0.0769,0.1857,0.9796,0.0769,0.3584,0.9217,0.1484,0.3225,0.9217,0.2155,0.1857,0.9796,0.0769,0.3225,0.9217,0.2155,0.1671,0.9796,0.1117,0.1671,0.9796,0.1117,0.3225,0.9217,0.2155,0.2743,0.9217,0.2743,0.1671,0.9796,0.1117,0.2743,0.9217,0.2743,0.1421,0.9796,0.1421,0.1421,0.9796,0.1421,0.2743,0.9217,0.2743,0.2155,0.9217,0.3225,0.1421,0.9796,0.1421,0.2155,0.9217,0.3225,0.1117,0.9796,0.1671,0.1117,0.9796,0.1671,0.2155,0.9217,0.3225,0.1484,0.9217,0.3584,0.1117,0.9796,0.1671,0.1484,0.9217,0.3584,0.0769,0.9796,0.1857,0.0769,0.9796,0.1857,0.1484,0.9217,0.3584,0.0757,0.9217,0.3804,0.0769,0.9796,0.1857,0.0757,0.9217,0.3804,0.0392,0.9796,0.1971,0.0392,0.9796,0.1971,0.0757,0.9217,0.3804,0.0,0.9217,0.3879,0.0392,0.9796,0.1971,0.0,0.9217,0.3879,0.0,0.9796,0.201,0.0,0.9217,0.3879,0.0,0.8286,0.5598,-0.1092,0.8286,0.549,0.0,0.9217,0.3879,-0.1092,0.8286,0.549,-0.0757,0.9217,0.3804,-0.0757,0.9217,0.3804,-0.1092,0.8286,0.549,-0.2142,0.8286,0.5172,-0.0757,0.9217,0.3804,-0.2142,0.8286,0.5172,-0.1484,0.9217,0.3584,-0.1484,0.9217,0.3584,-0.2142,0.8286,0.5172,-0.311,0.8286,0.4654,-0.1484,0.9217,0.3584,-0.311,0.8286,0.4654,-0.2155,0.9217,0.3225,-0.2155,0.9217,0.3225,-0.311,0.8286,0.4654,-0.3958,0.8286,0.3958,-0.2155,0.9217,0.3225,-0.3958,0.8286,0.3958,-0.2743,0.9217,0.2743,-0.2743,0.9217,0.2743,-0.3958,0.8286,0.3958,-0.4654,0.8286,0.311,-0.2743,0.9217,0.2743,-0.4654,0.8286,0.311,-0.3225,0.9217,0.2155,-0.3225,0.9217,0.2155,-0.4654,0.8286,0.311,-0.5172,0.8286,0.2142,-0.3225,0.9217,0.2155,-0.5172,0.8286,0.2142,-0.3584,0.9217,0.1484,-0.3584,0.9217,0.1484,-0.5172,0.8286,0.2142,-0.549,0.8286,0.1092,-0.3584,0.9217,0.1484,-0.549,0.8286,0.1092,-0.3804,0.9217,0.0757,-0.3804,0.9217,0.0757,-0.549,0.8286,0.1092,-0.5598,0.8286,0.0,-0.3804,0.9217,0.0757,-0.5598,0.8286,0.0,-0.3879,0.9217,0.0,-0.3879,0.9217,0.0,-0.5598,0.8286,0.0,-0.549,0.8286,-0.1092,-0.3879,0.9217,0.0,-0.549,0.8286,-0.1092,-0.3804,0.9217,-0.0757,-0.3804,0.9217,-0.0757,-0.549,0.8286,-0.1092,-0.5172,0.8286,-0.2142,-0.3804,0.9217,-0.0757,-0.5172,0.8286,-0.2142,-0.3584,0.9217,-0.1484,-0.3584,0.9217,-0.1484,-0.5172,0.8286,-0.2142,-0.4654,0.8286,-0.311,-0.3584,0.9217,-0.1484,-0.4654,0.8286,-0.311,-0.3225,0.9217,-0.2155,-0.3225,0.9217,-0.2155,-0.4654,0.8286,-0.311,-0.3958,0.8286,-0.3958,-0.3225,0.9217,-0.2155,-0.3958,0.8286,-0.3958,-0.2743,0.9217,-0.2743,-0.2743,0.9217,-0.2743,-0.3958,0.8286,-0.3958,-0.311,0.8286,-0.4654,-0.2743,0.9217,-0.2743,-0.311,0.8286,-0.4654,-0.2155,0.9217,-0.3225,-0.2155,0.9217,-0.3225,-0.311,0.8286,-0.4654,-0.2142,0.8286,-0.5172,-0.2155,0.9217,-0.3225,-0.2142,0.8286,-0.5172,-0.1484,0.9217,-0.3584,-0.1484,0.9217,-0.3584,-0.2142,0.8286,-0.5172,-0.1092,0.8286,-0.549,-0.1484,0.9217,-0.3584,-0.1092,0.8286,-0.549,-0.0757,0.9217,-0.3804,-0.0757,0.9217,-0.3804,-0.1092,0.8286,-0.549,0.0,0.8286,-0.5598,-0.0757,0.9217,-0.3804,0.0,0.8286,-0.5598,0.0,0.9217,-0.3879,0.0,0.9217,-0.3879,0.0,0.8286,-0.5598,0.1092,0.8286,-0.549,0.0,0.9217,-0.3879,0.1092,0.8286,-0.549,0.0757,0.9217,-0.3804,0.0757,0.9217,-0.3804,0.1092,0.8286,-0.549,0.2142,0.8286,-0.5172,0.0757,0.9217,-0.3804,0.2142,0.8286,-0.5172,0.1484,0.9217,-0.3584,0.1484,0.9217,-0.3584,0.2142,0.8286,-0.5172,0.311,0.8286,-0.4654,0.1484,0.9217,-0.3584,0.311,0.8286,-0.4654,0.2155,0.9217,-0.3225,0.2155,0.9217,-0.3225,0.311,0.8286,-0.4654,0.3958,0.8286,-0.3958,0.2155,0.9217,-0.3225,0.3958,0.8286,-0.3958,0.2743,0.9217,-0.2743,0.2743,0.9217,-0.2743,0.3958,0.8286,-0.3958,0.4654,0.8286,-0.311,0.2743,0.9217,-0.2743,0.4654,0.8286,-0.311,0.3225,0.9217,-0.2155,0.3225,0.9217,-0.2155,0.4654,0.8286,-0.311,0.5172,0.8286,-0.2142,0.3225,0.9217,-0.2155,0.5172,0.8286,-0.2142,0.3584,0.9217,-0.1484,0.3584,0.9217,-0.1484,0.5172,0.8286,-0.2142,0.549,0.8286,-0.1092,0.3584,0.9217,-0.1484,0.549,0.8286,-0.1092,0.3804,0.9217,-0.0757,0.3804,0.9217,-0.0757,0.549,0.8286,-0.1092,0.5598,0.8286,0.0,0.3804,0.9217,-0.0757,0.5598,0.8286,0.0,0.3879,0.9217,0.0,0.3879,0.9217,0.0,0.5598,0.8286,0.0,0.549,0.8286,0.1092,0.3879,0.9217,0.0,0.549,0.8286,0.1092,0.3804,0.9217,0.0757,0.3804,0.9217,0.0757,0.549,0.8286,0.1092,0.5172,0.8286,0.2142,0.3804,0.9217,0.0757,0.5172,0.8286,0.2142,0.3584,0.9217,0.1484,0.3584,0.9217,0.1484,0.5172,0.8286,0.2142,0.4654,0.8286,0.311,0.3584,0.9217,0.1484,0.4654,0.8286,0.311,0.3225,0.9217,0.2155,0.3225,0.9217,0.2155,0.4654,0.8286,0.311,0.3958,0.8286,0.3958,0.3225,0.9217,0.2155,0.3958,0.8286,0.3958,0.2743,0.9217,0.2743,0.2743,0.9217,0.2743,0.3958,0.8286,0.3958,0.311,0.8286,0.4654,0.2743,0.9217,0.2743,0.311,0.8286,0.4654,0.2155,0.9217,0.3225,0.2155,0.9217,0.3225,0.311,0.8286,0.4654,0.2142,0.8286,0.5172,0.2155,0.9217,0.3225,0.2142,0.8286,0.5172,0.1484,0.9217,0.3584,0.1484,0.9217,0.3584,0.2142,0.8286,0.5172,0.1092,0.8286,0.549,0.1484,0.9217,0.3584,0.1092,0.8286,0.549,0.0757,0.9217,0.3804,0.0757,0.9217,0.3804,0.1092,0.8286,0.549,0.0,0.8286,0.5598,0.0757,0.9217,0.3804,0.0,0.8286,0.5598,0.0,0.9217,0.3879,0.0,0.8286,0.5598,0.0,0.7041,0.7101,-0.1385,0.7041,0.6965,0.0,0.8286,0.5598,-0.1385,0.7041,0.6965,-0.1092,0.8286,0.549,-0.1092,0.8286,0.549,-0.1385,0.7041,0.6965,-0.2718,0.7041,0.6561,-0.1092,0.8286,0.549,-0.2718,0.7041,0.6561,-0.2142,0.8286,0.5172,-0.2142,0.8286,0.5172,-0.2718,0.7041,0.6561,-0.3945,0.7041,0.5905,-0.2142,0.8286,0.5172,-0.3945,0.7041,0.5905,-0.311,0.8286,0.4654,-0.311,0.8286,0.4654,-0.3945,0.7041,0.5905,-0.5021,0.7041,0.5021,-0.311,0.8286,0.4654,-0.5021,0.7041,0.5021,-0.3958,0.8286,0.3958,-0.3958,0.8286,0.3958,-0.5021,0.7041,0.5021,-0.5905,0.7041,0.3945,-0.3958,0.8286,0.3958,-0.5905,0.7041,0.3945,-0.4654,0.8286,0.311,-0.4654,0.8286,0.311,-0.5905,0.7041,0.3945,-0.6561,0.7041,0.2718,-0.4654,0.8286,0.311,-0.6561,0.7041,0.2718,-0.5172,0.8286,0.2142,-0.5172,0.8286,0.2142,-0.6561,0.7041,0.2718,-0.6965,0.7041,0.1385,-0.5172,0.8286,0.2142,-0.6965,0.7041,0.1385,-0.549,0.8286,0.1092,-0.549,0.8286,0.1092,-0.6965,0.7041,0.1385,-0.7101,0.7041,0.0,-0.549,0.8286,0.1092,-0.7101,0.7041,0.0,-0.5598,0.8286,0.0,-0.5598,0.8286,0.0,-0.7101,0.7041,0.0,-0.6965,0.7041,-0.1385,-0.5598,0.8286,0.0,-0.6965,0.7041,-0.1385,-0.549,0.8286,-0.1092,-0.549,0.8286,-0.1092,-0.6965,0.7041,-0.1385,-0.6561,0.7041,-0.2718,-0.549,0.8286,-0.1092,-0.6561,0.7041,-0.2718,-0.5172,0.8286,-0.2142,-0.5172,0.8286,-0.2142,-0.6561,0.7041,-0.2718,-0.5905,0.7041,-0.3945,-0.5172,0.8286,-0.2142,-0.5905,0.7041,-0.3945,-0.4654,0.8286,-0.311,-0.4654,0.8286,-0.311,-0.5905,0.7041,-0.3945,-0.5021,0.7041,-0.5021,-0.4654,0.8286,-0.311,-0.5021,0.7041,-0.5021,-0.3958,0.8286,-0.3958,-0.3958,0.8286,-0.3958,-0.5021,0.7041,-0.5021,-0.3945,0.7041,-0.5905,-0.3958,0.8286,-0.3958,-0.3945,0.7041,-0.5905,-0.311,0.8286,-0.4654,-0.311,0.8286,-0.4654,-0.3945,0.7041,-0.5905,-0.2718,0.7041,-0.6561,-0.311,0.8286,-0.4654,-0.2718,0.7041,-0.6561,-0.2142,0.8286,-0.5172,-0.2142,0.8286,-0.5172,-0.2718,0.7041,-0.6561,-0.1385,0.7041,-0.6965,-0.2142,0.8286,-0.5172,-0.1385,0.7041,-0.6965,-0.1092,0.8286,-0.549,-0.1092,0.8286,-0.549,-0.1385,0.7041,-0.6965,0.0,0.7041,-0.7101,-0.1092,0.8286,-0.549,0.0,0.7041,-0.7101,0.0,0.8286,-0.5598,0.0,0.8286,-0.5598,0.0,0.7041,-0.7101,0.1385,0.7041,-0.6965,0.0,0.8286,-0.5598,0.1385,0.7041,-0.6965,0.1092,0.8286,-0.549,0.1092,0.8286,-0.549,0.1385,0.7041,-0.6965,0.2718,0.7041,-0.6561,0.1092,0.8286,-0.549,0.2718,0.7041,-0.6561,0.2142,0.8286,-0.5172,0.2142,0.8286,-0.5172,0.2718,0.7041,-0.6561,0.3945,0.7041,-0.5905,0.2142,0.8286,-0.5172,0.3945,0.7041,-0.5905,0.311,0.8286,-0.4654,0.311,0.8286,-0.4654,0.3945,0.7041,-0.5905,0.5021,0.7041,-0.5021,0.311,0.8286,-0.4654,0.5021,0.7041,-0.5021,0.3958,0.8286,-0.3958,0.3958,0.8286,-0.3958,0.5021,0.7041,-0.5021,0.5905,0.7041,-0.3945,0.3958,0.8286,-0.3958,0.5905,0.7041,-0.3945,0.4654,0.8286,-0.311,0.4654,0.8286,-0.311,0.5905,0.7041,-0.3945,0.6561,0.7041,-0.2718,0.4654,0.8286,-0.311,0.6561,0.7041,-0.2718,0.5172,0.8286,-0.2142,0.5172,0.8286,-0.2142,0.6561,0.7041,-0.2718,0.6965,0.7041,-0.1385,0.5172,0.8286,-0.2142,0.6965,0.7041,-0.1385,0.549,0.8286,-0.1092,0.549,0.8286,-0.1092,0.6965,0.7041,-0.1385,0.7101,0.7041,0.0,0.549,0.8286,-0.1092,0.7101,0.7041,0.0,0.5598,0.8286,0.0,0.5598,0.8286,0.0,0.7101,0.7041,0.0,0.6965,0.7041,0.1385,0.5598,0.8286,0.0,0.6965,0.7041,0.1385,0.549,0.8286,0.1092,0.549,0.8286,0.1092,0.6965,0.7041,0.1385,0.6561,0.7041,0.2718,0.549,0.8286,0.1092,0.6561,0.7041,0.2718,0.5172,0.8286,0.2142,0.5172,0.8286,0.2142,0.6561,0.7041,0.2718,0.5905,0.7041,0.3945,0.5172,0.8286,0.2142,0.5905,0.7041,0.3945,0.4654,0.8286,0.311,0.4654,0.8286,0.311,0.5905,0.7041,0.3945,0.5021,0.7041,0.5021,0.4654,0.8286,0.311,0.5021,0.7041,0.5021,0.3958,0.8286,0.3958,0.3958,0.8286,0.3958,0.5021,0.7041,0.5021,0.3945,0.7041,0.5905,0.3958,0.8286,0.3958,0.3945,0.7041,0.5905,0.311,0.8286,0.4654,0.311,0.8286,0.4654,0.3945,0.7041,0.5905,0.2718,0.7041,0.6561,0.311,0.8286,0.4654,0.2718,0.7041,0.6561,0.2142,0.8286,0.5172,0.2142,0.8286,0.5172,0.2718,0.7041,0.6561,0.1385,0.7041,0.6965,0.2142,0.8286,0.5172,0.1385,0.7041,0.6965,0.1092,0.8286,0.549,0.1092,0.8286,0.549,0.1385,0.7041,0.6965,0.0,0.7041,0.7101,0.1092,0.8286,0.549,0.0,0.7041,0.7101,0.0,0.8286,0.5598,0.0,0.7041,0.7101,0.0,0.5528,0.8333,-0.1626,0.5528,0.8173,0.0,0.7041,0.7101,-0.1626,0.5528,0.8173,-0.1385,0.7041,0.6965,-0.1385,0.7041,0.6965,-0.1626,0.5528,0.8173,-0.3189,0.5528,0.7699,-0.1385,0.7041,0.6965,-0.3189,0.5528,0.7699,-0.2718,0.7041,0.6561,-0.2718,0.7041,0.6561,-0.3189,0.5528,0.7699,-0.463,0.5528,0.6929,-0.2718,0.7041,0.6561,-0.463,0.5528,0.6929,-0.3945,0.7041,0.5905,-0.3945,0.7041,0.5905,-0.463,0.5528,0.6929,-0.5893,0.5528,0.5893,-0.3945,0.7041,0.5905,-0.5893,0.5528,0.5893,-0.5021,0.7041,0.5021,-0.5021,0.7041,0.5021,-0.5893,0.5528,0.5893,-0.6929,0.5528,0.463,-0.5021,0.7041,0.5021,-0.6929,0.5528,0.463,-0.5905,0.7041,0.3945,-0.5905,0.7041,0.3945,-0.6929,0.5528,0.463,-0.7699,0.5528,0.3189,-0.5905,0.7041,0.3945,-0.7699,0.5528,0.3189,-0.6561,0.7041,0.2718,-0.6561,0.7041,0.2718,-0.7699,0.5528,0.3189,-0.8173,0.5528,0.1626,-0.6561,0.7041,0.2718,-0.8173,0.5528,0.1626,-0.6965,0.7041,0.1385,-0.6965,0.7041,0.1385,-0.8173,0.5528,0.1626,-0.8333,0.5528,0.0,-0.6965,0.7041,0.1385,-0.8333,0.5528,0.0,-0.7101,0.7041,0.0,-0.7101,0.7041,0.0,-0.8333,0.5528,0.0,-0.8173,0.5528,-0.1626,-0.7101,0.7041,0.0,-0.8173,0.5528,-0.1626,-0.6965,0.7041,-0.1385,-0.6965,0.7041,-0.1385,-0.8173,0.5528,-0.1626,-0.7699,0.5528,-0.3189,-0.6965,0.7041,-0.1385,-0.7699,0.5528,-0.3189,-0.6561,0.7041,-0.2718,-0.6561,0.7041,-0.2718,-0.7699,0.5528,-0.3189,-0.6929,0.5528,-0.463,-0.6561,0.7041,-0.2718,-0.6929,0.5528,-0.463,-0.5905,0.7041,-0.3945,-0.5905,0.7041,-0.3945,-0.6929,0.5528,-0.463,-0.5893,0.5528,-0.5893,-0.5905,0.7041,-0.3945,-0.5893,0.5528,-0.5893,-0.5021,0.7041,-0.5021,-0.5021,0.7041,-0.5021,-0.5893,0.5528,-0.5893,-0.463,0.5528,-0.6929,-0.5021,0.7041,-0.5021,-0.463,0.5528,-0.6929,-0.3945,0.7041,-0.5905,-0.3945,0.7041,-0.5905,-0.463,0.5528,-0.6929,-0.3189,0.5528,-0.7699,-0.3945,0.7041,-0.5905,-0.3189,0.5528,-0.7699,-0.2718,0.7041,-0.6561,-0.2718,0.7041,-0.6561,-0.3189,0.5528,-0.7699,-0.1626,0.5528,-0.8173,-0.2718,0.7041,-0.6561,-0.1626,0.5528,-0.8173,-0.1385,0.7041,-0.6965,-0.1385,0.7041,-0.6965,-0.1626,0.5528,-0.8173,0.0,0.5528,-0.8333,-0.1385,0.7041,-0.6965,0.0,0.5528,-0.8333,0.0,0.7041,-0.7101,0.0,0.7041,-0.7101,0.0,0.5528,-0.8333,0.1626,0.5528,-0.8173,0.0,0.7041,-0.7101,0.1626,0.5528,-0.8173,0.1385,0.7041,-0.6965,0.1385,0.7041,-0.6965,0.1626,0.5528,-0.8173,0.3189,0.5528,-0.7699,0.1385,0.7041,-0.6965,0.3189,0.5528,-0.7699,0.2718,0.7041,-0.6561,0.2718,0.7041,-0.6561,0.3189,0.5528,-0.7699,0.463,0.5528,-0.6929,0.2718,0.7041,-0.6561,0.463,0.5528,-0.6929,0.3945,0.7041,-0.5905,0.3945,0.7041,-0.5905,0.463,0.5528,-0.6929,0.5893,0.5528,-0.5893,0.3945,0.7041,-0.5905,0.5893,0.5528,-0.5893,0.5021,0.7041,-0.5021,0.5021,0.7041,-0.5021,0.5893,0.5528,-0.5893,0.6929,0.5528,-0.463,0.5021,0.7041,-0.5021,0.6929,0.5528,-0.463,0.5905,0.7041,-0.3945,0.5905,0.7041,-0.3945,0.6929,0.5528,-0.463,0.7699,0.5528,-0.3189,0.5905,0.7041,-0.3945,0.7699,0.5528,-0.3189,0.6561,0.7041,-0.2718,0.6561,0.7041,-0.2718,0.7699,0.5528,-0.3189,0.8173,0.5528,-0.1626,0.6561,0.7041,-0.2718,0.8173,0.5528,-0.1626,0.6965,0.7041,-0.1385,0.6965,0.7041,-0.1385,0.8173,0.5528,-0.1626,0.8333,0.5528,0.0,0.6965,0.7041,-0.1385,0.8333,0.5528,0.0,0.7101,0.7041,0.0,0.7101,0.7041,0.0,0.8333,0.5528,0.0,0.8173,0.5528,0.1626,0.7101,0.7041,0.0,0.8173,0.5528,0.1626,0.6965,0.7041,0.1385,0.6965,0.7041,0.1385,0.8173,0.5528,0.1626,0.7699,0.5528,0.3189,0.6965,0.7041,0.1385,0.7699,0.5528,0.3189,0.6561,0.7041,0.2718,0.6561,0.7041,0.2718,0.7699,0.5528,0.3189,0.6929,0.5528,0.463,0.6561,0.7041,0.2718,0.6929,0.5528,0.463,0.5905,0.7041,0.3945,0.5905,0.7041,0.3945,0.6929,0.5528,0.463,0.5893,0.5528,0.5893,0.5905,0.7041,0.3945,0.5893,0.5528,0.5893,0.5021,0.7041,0.5021,0.5021,0.7041,0.5021,0.5893,0.5528,0.5893,0.463,0.5528,0.6929,0.5021,0.7041,0.5021,0.463,0.5528,0.6929,0.3945,0.7041,0.5905,0.3945,0.7041,0.5905,0.463,0.5528,0.6929,0.3189,0.5528,0.7699,0.3945,0.7041,0.5905,0.3189,0.5528,0.7699,0.2718,0.7041,0.6561,0.2718,0.7041,0.6561,0.3189,0.5528,0.7699,0.1626,0.5528,0.8173,0.2718,0.7041,0.6561,0.1626,0.5528,0.8173,0.1385,0.7041,0.6965,0.1385,0.7041,0.6965,0.1626,0.5528,0.8173,0.0,0.5528,0.8333,0.1385,0.7041,0.6965,0.0,0.5528,0.8333,0.0,0.7041,0.7101,0.0,0.5528,0.8333,0.0,0.3805,0.9248,-0.1804,0.3805,0.907,0.0,0.5528,0.8333,-0.1804,0.3805,0.907,-0.1626,0.5528,0.8173,-0.1626,0.5528,0.8173,-0.1804,0.3805,0.907,-0.3539,0.3805,0.8544,-0.1626,0.5528,0.8173,-0.3539,0.3805,0.8544,-0.3189,0.5528,0.7699,-0.3189,0.5528,0.7699,-0.3539,0.3805,0.8544,-0.5138,0.3805,0.7689,-0.3189,0.5528,0.7699,-0.5138,0.3805,0.7689,-0.463,0.5528,0.6929,-0.463,0.5528,0.6929,-0.5138,0.3805,0.7689,-0.6539,0.3805,0.6539,-0.463,0.5528,0.6929,-0.6539,0.3805,0.6539,-0.5893,0.5528,0.5893,-0.5893,0.5528,0.5893,-0.6539,0.3805,0.6539,-0.7689,0.3805,0.5138,-0.5893,0.5528,0.5893,-0.7689,0.3805,0.5138,-0.6929,0.5528,0.463,-0.6929,0.5528,0.463,-0.7689,0.3805,0.5138,-0.8544,0.3805,0.3539,-0.6929,0.5528,0.463,-0.8544,0.3805,0.3539,-0.7699,0.5528,0.3189,-0.7699,0.5528,0.3189,-0.8544,0.3805,0.3539,-0.907,0.3805,0.1804,-0.7699,0.5528,0.3189,-0.907,0.3805,0.1804,-0.8173,0.5528,0.1626,-0.8173,0.5528,0.1626,-0.907,0.3805,0.1804,-0.9248,0.3805,0.0,-0.8173,0.5528,0.1626,-0.9248,0.3805,0.0,-0.8333,0.5528,0.0,-0.8333,0.5528,0.0,-0.9248,0.3805,0.0,-0.907,0.3805,-0.1804,-0.8333,0.5528,0.0,-0.907,0.3805,-0.1804,-0.8173,0.5528,-0.1626,-0.8173,0.5528,-0.1626,-0.907,0.3805,-0.1804,-0.8544,0.3805,-0.3539,-0.8173,0.5528,-0.1626,-0.8544,0.3805,-0.3539,-0.7699,0.5528,-0.3189,-0.7699,0.5528,-0.3189,-0.8544,0.3805,-0.3539,-0.7689,0.3805,-0.5138,-0.7699,0.5528,-0.3189,-0.7689,0.3805,-0.5138,-0.6929,0.5528,-0.463,-0.6929,0.5528,-0.463,-0.7689,0.3805,-0.5138,-0.6539,0.3805,-0.6539,-0.6929,0.5528,-0.463,-0.6539,0.3805,-0.6539,-0.5893,0.5528,-0.5893,-0.5893,0.5528,-0.5893,-0.6539,0.3805,-0.6539,-0.5138,0.3805,-0.7689,-0.5893,0.5528,-0.5893,-0.5138,0.3805,-0.7689,-0.463,0.5528,-0.6929,-0.463,0.5528,-0.6929,-0.5138,0.3805,-0.7689,-0.3539,0.3805,-0.8544,-0.463,0.5528,-0.6929,-0.3539,0.3805,-0.8544,-0.3189,0.5528,-0.7699,-0.3189,0.5528,-0.7699,-0.3539,0.3805,-0.8544,-0.1804,0.3805,-0.907,-0.3189,0.5528,-0.7699,-0.1804,0.3805,-0.907,-0.1626,0.5528,-0.8173,-0.1626,0.5528,-0.8173,-0.1804,0.3805,-0.907,0.0,0.3805,-0.9248,-0.1626,0.5528,-0.8173,0.0,0.3805,-0.9248,0.0,0.5528,-0.8333,0.0,0.5528,-0.8333,0.0,0.3805,-0.9248,0.1804,0.3805,-0.907,0.0,0.5528,-0.8333,0.1804,0.3805,-0.907,0.1626,0.5528,-0.8173,0.1626,0.5528,-0.8173,0.1804,0.3805,-0.907,0.3539,0.3805,-0.8544,0.1626,0.5528,-0.8173,0.3539,0.3805,-0.8544,0.3189,0.5528,-0.7699,0.3189,0.5528,-0.7699,0.3539,0.3805,-0.8544,0.5138,0.3805,-0.7689,0.3189,0.5528,-0.7699,0.5138,0.3805,-0.7689,0.463,0.5528,-0.6929,0.463,0.5528,-0.6929,0.5138,0.3805,-0.7689,0.6539,0.3805,-0.6539,0.463,0.5528,-0.6929,0.6539,0.3805,-0.6539,0.5893,0.5528,-0.5893,0.5893,0.5528,-0.5893,0.6539,0.3805,-0.6539,0.7689,0.3805,-0.5138,0.5893,0.5528,-0.5893,0.7689,0.3805,-0.5138,0.6929,0.5528,-0.463,0.6929,0.5528,-0.463,0.7689,0.3805,-0.5138,0.8544,0.3805,-0.3539,0.6929,0.5528,-0.463,0.8544,0.3805,-0.3539,0.7699,0.5528,-0.3189,0.7699,0.5528,-0.3189,0.8544,0.3805,-0.3539,0.907,0.3805,-0.1804,0.7699,0.5528,-0.3189,0.907,0.3805,-0.1804,0.8173,0.5528,-0.1626,0.8173,0.5528,-0.1626,0.907,0.3805,-0.1804,0.9248,0.3805,0.0,0.8173,0.5528,-0.1626,0.9248,0.3805,0.0,0.8333,0.5528,0.0,0.8333,0.5528,0.0,0.9248,0.3805,0.0,0.907,0.3805,0.1804,0.8333,0.5528,0.0,0.907,0.3805,0.1804,0.8173,0.5528,0.1626,0.8173,0.5528,0.1626,0.907,0.3805,0.1804,0.8544,0.3805,0.3539,0.8173,0.5528,0.1626,0.8544,0.3805,0.3539,0.7699,0.5528,0.3189,0.7699,0.5528,0.3189,0.8544,0.3805,0.3539,0.7689,0.3805,0.5138,0.7699,0.5528,0.3189,0.7689,0.3805,0.5138,0.6929,0.5528,0.463,0.6929,0.5528,0.463,0.7689,0.3805,0.5138,0.6539,0.3805,0.6539,0.6929,0.5528,0.463,0.6539,0.3805,0.6539,0.5893,0.5528,0.5893,0.5893,0.5528,0.5893,0.6539,0.3805,0.6539,0.5138,0.3805,0.7689,0.5893,0.5528,0.5893,0.5138,0.3805,0.7689,0.463,0.5528,0.6929,0.463,0.5528,0.6929,0.5138,0.3805,0.7689,0.3539,0.3805,0.8544,0.463,0.5528,0.6929,0.3539,0.3805,0.8544,0.3189,0.5528,0.7699,0.3189,0.5528,0.7699,0.3539,0.3805,0.8544,0.1804,0.3805,0.907,0.3189,0.5528,0.7699,0.1804,0.3805,0.907,0.1626,0.5528,0.8173,0.1626,0.5528,0.8173,0.1804,0.3805,0.907,0.0,0.3805,0.9248,0.1626,0.5528,0.8173,0.0,0.3805,0.9248,0.0,0.5528,0.8333,0.0,0.3805,0.9248,0.0,0.1939,0.981,-0.1914,0.1939,0.9622,0.0,0.3805,0.9248,-0.1914,0.1939,0.9622,-0.1804,0.3805,0.907,-0.1804,0.3805,0.907,-0.1914,0.1939,0.9622,-0.3754,0.1939,0.9063,-0.1804,0.3805,0.907,-0.3754,0.1939,0.9063,-0.3539,0.3805,0.8544,-0.3539,0.3805,0.8544,-0.3754,0.1939,0.9063,-0.545,0.1939,0.8157,-0.3539,0.3805,0.8544,-0.545,0.1939,0.8157,-0.5138,0.3805,0.7689,-0.5138,0.3805,0.7689,-0.545,0.1939,0.8157,-0.6937,0.1939,0.6937,-0.5138,0.3805,0.7689,-0.6937,0.1939,0.6937,-0.6539,0.3805,0.6539,-0.6539,0.3805,0.6539,-0.6937,0.1939,0.6937,-0.8157,0.1939,0.545,-0.6539,0.3805,0.6539,-0.8157,0.1939,0.545,-0.7689,0.3805,0.5138,-0.7689,0.3805,0.5138,-0.8157,0.1939,0.545,-0.9063,0.1939,0.3754,-0.7689,0.3805,0.5138,-0.9063,0.1939,0.3754,-0.8544,0.3805,0.3539,-0.8544,0.3805,0.3539,-0.9063,0.1939,0.3754,-0.9622,0.1939,0.1914,-0.8544,0.3805,0.3539,-0.9622,0.1939,0.1914,-0.907,0.3805,0.1804,-0.907,0.3805,0.1804,-0.9622,0.1939,0.1914,-0.981,0.1939,0.0,-0.907,0.3805,0.1804,-0.981,0.1939,0.0,-0.9248,0.3805,0.0,-0.9248,0.3805,0.0,-0.981,0.1939,0.0,-0.9622,0.1939,-0.1914,-0.9248,0.3805,0.0,-0.9622,0.1939,-0.1914,-0.907,0.3805,-0.1804,-0.907,0.3805,-0.1804,-0.9622,0.1939,-0.1914,-0.9063,0.1939,-0.3754,-0.907,0.3805,-0.1804,-0.9063,0.1939,-0.3754,-0.8544,0.3805,-0.3539,-0.8544,0.3805,-0.3539,-0.9063,0.1939,-0.3754,-0.8157,0.1939,-0.545,-0.8544,0.3805,-0.3539,-0.8157,0.1939,-0.545,-0.7689,0.3805,-0.5138,-0.7689,0.3805,-0.5138,-0.8157,0.1939,-0.545,-0.6937,0.1939,-0.6937,-0.7689,0.3805,-0.5138,-0.6937,0.1939,-0.6937,-0.6539,0.3805,-0.6539,-0.6539,0.3805,-0.6539,-0.6937,0.1939,-0.6937,-0.545,0.1939,-0.8157,-0.6539,0.3805,-0.6539,-0.545,0.1939,-0.8157,-0.5138,0.3805,-0.7689,-0.5138,0.3805,-0.7689,-0.545,0.1939,-0.8157,-0.3754,0.1939,-0.9063,-0.5138,0.3805,-0.7689,-0.3754,0.1939,-0.9063,-0.3539,0.3805,-0.8544,-0.3539,0.3805,-0.8544,-0.3754,0.1939,-0.9063,-0.1914,0.1939,-0.9622,-0.3539,0.3805,-0.8544,-0.1914,0.1939,-0.9622,-0.1804,0.3805,-0.907,-0.1804,0.3805,-0.907,-0.1914,0.1939,-0.9622,0.0,0.1939,-0.981,-0.1804,0.3805,-0.907,0.0,0.1939,-0.981,0.0,0.3805,-0.9248,0.0,0.3805,-0.9248,0.0,0.1939,-0.981,0.1914,0.1939,-0.9622,0.0,0.3805,-0.9248,0.1914,0.1939,-0.9622,0.1804,0.3805,-0.907,0.1804,0.3805,-0.907,0.1914,0.1939,-0.9622,0.3754,0.1939,-0.9063,0.1804,0.3805,-0.907,0.3754,0.1939,-0.9063,0.3539,0.3805,-0.8544,0.3539,0.3805,-0.8544,0.3754,0.1939,-0.9063,0.545,0.1939,-0.8157,0.3539,0.3805,-0.8544,0.545,0.1939,-0.8157,0.5138,0.3805,-0.7689,0.5138,0.3805,-0.7689,0.545,0.1939,-0.8157,0.6937,0.1939,-0.6937,0.5138,0.3805,-0.7689,0.6937,0.1939,-0.6937,0.6539,0.3805,-0.6539,0.6539,0.3805,-0.6539,0.6937,0.1939,-0.6937,0.8157,0.1939,-0.545,0.6539,0.3805,-0.6539,0.8157,0.1939,-0.545,0.7689,0.3805,-0.5138,0.7689,0.3805,-0.5138,0.8157,0.1939,-0.545,0.9063,0.1939,-0.3754,0.7689,0.3805,-0.5138,0.9063,0.1939,-0.3754,0.8544,0.3805,-0.3539,0.8544,0.3805,-0.3539,0.9063,0.1939,-0.3754,0.9622,0.1939,-0.1914,0.8544,0.3805,-0.3539,0.9622,0.1939,-0.1914,0.907,0.3805,-0.1804,0.907,0.3805,-0.1804,0.9622,0.1939,-0.1914,0.981,0.1939,0.0,0.907,0.3805,-0.1804,0.981,0.1939,0.0,0.9248,0.3805,0.0,0.9248,0.3805,0.0,0.981,0.1939,0.0,0.9622,0.1939,0.1914,0.9248,0.3805,0.0,0.9622,0.1939,0.1914,0.907,0.3805,0.1804,0.907,0.3805,0.1804,0.9622,0.1939,0.1914,0.9063,0.1939,0.3754,0.907,0.3805,0.1804,0.9063,0.1939,0.3754,0.8544,0.3805,0.3539,0.8544,0.3805,0.3539,0.9063,0.1939,0.3754,0.8157,0.1939,0.545,0.8544,0.3805,0.3539,0.8157,0.1939,0.545,0.7689,0.3805,0.5138,0.7689,0.3805,0.5138,0.8157,0.1939,0.545,0.6937,0.1939,0.6937,0.7689,0.3805,0.5138,0.6937,0.1939,0.6937,0.6539,0.3805,0.6539,0.6539,0.3805,0.6539,0.6937,0.1939,0.6937,0.545,0.1939,0.8157,0.6539,0.3805,0.6539,0.545,0.1939,0.8157,0.5138,0.3805,0.7689,0.5138,0.3805,0.7689,0.545,0.1939,0.8157,0.3754,0.1939,0.9063,0.5138,0.3805,0.7689,0.3754,0.1939,0.9063,0.3539,0.3805,0.8544,0.3539,0.3805,0.8544,0.3754,0.1939,0.9063,0.1914,0.1939,0.9622,0.3539,0.3805,0.8544,0.1914,0.1939,0.9622,0.1804,0.3805,0.907,0.1804,0.3805,0.907,0.1914,0.1939,0.9622,0.0,0.1939,0.981,0.1804,0.3805,0.907,0.0,0.1939,0.981,0.0,0.3805,0.9248,0.0,0.1939,0.981,0.0,0.0,1.0,-0.1951,0.0,0.9808,0.0,0.1939,0.981,-0.1951,0.0,0.9808,-0.1914,0.1939,0.9622,-0.1914,0.1939,0.9622,-0.1951,0.0,0.9808,-0.3827,0.0,0.9239,-0.1914,0.1939,0.9622,-0.3827,0.0,0.9239,-0.3754,0.1939,0.9063,-0.3754,0.1939,0.9063,-0.3827,0.0,0.9239,-0.5556,0.0,0.8315,-0.3754,0.1939,0.9063,-0.5556,0.0,0.8315,-0.545,0.1939,0.8157,-0.545,0.1939,0.8157,-0.5556,0.0,0.8315,-0.7071,0.0,0.7071,-0.545,0.1939,0.8157,-0.7071,0.0,0.7071,-0.6937,0.1939,0.6937,-0.6937,0.1939,0.6937,-0.7071,0.0,0.7071,-0.8315,0.0,0.5556,-0.6937,0.1939,0.6937,-0.8315,0.0,0.5556,-0.8157,0.1939,0.545,-0.8157,0.1939,0.545,-0.8315,0.0,0.5556,-0.9239,0.0,0.3827,-0.8157,0.1939,0.545,-0.9239,0.0,0.3827,-0.9063,0.1939,0.3754,-0.9063,0.1939,0.3754,-0.9239,0.0,0.3827,-0.9808,0.0,0.1951,-0.9063,0.1939,0.3754,-0.9808,0.0,0.1951,-0.9622,0.1939,0.1914,-0.9622,0.1939,0.1914,-0.9808,0.0,0.1951,-1.0,0.0,0.0,-0.9622,0.1939,0.1914,-1.0,0.0,0.0,-0.981,0.1939,0.0,-0.981,0.1939,0.0,-1.0,0.0,0.0,-0.9808,0.0,-0.1951,-0.981,0.1939,0.0,-0.9808,0.0,-0.1951,-0.9622,0.1939,-0.1914,-0.9622,0.1939,-0.1914,-0.9808,0.0,-0.1951,-0.9239,0.0,-0.3827,-0.9622,0.1939,-0.1914,-0.9239,0.0,-0.3827,-0.9063,0.1939,-0.3754,-0.9063,0.1939,-0.3754,-0.9239,0.0,-0.3827,-0.8315,0.0,-0.5556,-0.9063,0.1939,-0.3754,-0.8315,0.0,-0.5556,-0.8157,0.1939,-0.545,-0.8157,0.1939,-0.545,-0.8315,0.0,-0.5556,-0.7071,0.0,-0.7071,-0.8157,0.1939,-0.545,-0.7071,0.0,-0.7071,-0.6937,0.1939,-0.6937,-0.6937,0.1939,-0.6937,-0.7071,0.0,-0.7071,-0.5556,0.0,-0.8315,-0.6937,0.1939,-0.6937,-0.5556,0.0,-0.8315,-0.545,0.1939,-0.8157,-0.545,0.1939,-0.8157,-0.5556,0.0,-0.8315,-0.3827,0.0,-0.9239,-0.545,0.1939,-0.8157,-0.3827,0.0,-0.9239,-0.3754,0.1939,-0.9063,-0.3754,0.1939,-0.9063,-0.3827,0.0,-0.9239,-0.1951,0.0,-0.9808,-0.3754,0.1939,-0.9063,-0.1951,0.0,-0.9808,-0.1914,0.1939,-0.9622,-0.1914,0.1939,-0.9622,-0.1951,0.0,-0.9808,0.0,0.0,-1.0,-0.1914,0.1939,-0.9622,0.0,0.0,-1.0,0.0,0.1939,-0.981,0.0,0.1939,-0.981,0.0,0.0,-1.0,0.1951,0.0,-0.9808,0.0,0.1939,-0.981,0.1951,0.0,-0.9808,0.1914,0.1939,-0.9622,0.1914,0.1939,-0.9622,0.1951,0.0,-0.9808,0.3827,0.0,-0.9239,0.1914,0.1939,-0.9622,0.3827,0.0,-0.9239,0.3754,0.1939,-0.9063,0.3754,0.1939,-0.9063,0.3827,0.0,-0.9239,0.5556,0.0,-0.8315,0.3754,0.1939,-0.9063,0.5556,0.0,-0.8315,0.545,0.1939,-0.8157,0.545,0.1939,-0.8157,0.5556,0.0,-0.8315,0.7071,0.0,-0.7071,0.545,0.1939,-0.8157,0.7071,0.0,-0.7071,0.6937,0.1939,-0.6937,0.6937,0.1939,-0.6937,0.7071,0.0,-0.7071,0.8315,0.0,-0.5556,0.6937,0.1939,-0.6937,0.8315,0.0,-0.5556,0.8157,0.1939,-0.545,0.8157,0.1939,-0.545,0.8315,0.0,-0.5556,0.9239,0.0,-0.3827,0.8157,0.1939,-0.545,0.9239,0.0,-0.3827,0.9063,0.1939,-0.3754,0.9063,0.1939,-0.3754,0.9239,0.0,-0.3827,0.9808,0.0,-0.1951,0.9063,0.1939,-0.3754,0.9808,0.0,-0.1951,0.9622,0.1939,-0.1914,0.9622,0.1939,-0.1914,0.9808,0.0,-0.1951,1.0,0.0,0.0,0.9622,0.1939,-0.1914,1.0,0.0,0.0,0.981,0.1939,0.0,0.981,0.1939,0.0,1.0,0.0,0.0,0.9808,0.0,0.1951,0.981,0.1939,0.0,0.9808,0.0,0.1951,0.9622,0.1939,0.1914,0.9622,0.1939,0.1914,0.9808,0.0,0.1951,0.9239,0.0,0.3827,0.9622,0.1939,0.1914,0.9239,0.0,0.3827,0.9063,0.1939,0.3754,0.9063,0.1939,0.3754,0.9239,0.0,0.3827,0.8315,0.0,0.5556,0.9063,0.1939,0.3754,0.8315,0.0,0.5556,0.8157,0.1939,0.545,0.8157,0.1939,0.545,0.8315,0.0,0.5556,0.7071,0.0,0.7071,0.8157,0.1939,0.545,0.7071,0.0,0.7071,0.6937,0.1939,0.6937,0.6937,0.1939,0.6937,0.7071,0.0,0.7071,0.5556,0.0,0.8315,0.6937,0.1939,0.6937,0.5556,0.0,0.8315,0.545,0.1939,0.8157,0.545,0.1939,0.8157,0.5556,0.0,0.8315,0.3827,0.0,0.9239,0.545,0.1939,0.8157,0.3827,0.0,0.9239,0.3754,0.1939,0.9063,0.3754,0.1939,0.9063,0.3827,0.0,0.9239,0.1951,0.0,0.9808,0.3754,0.1939,0.9063,0.1951,0.0,0.9808,0.1914,0.1939,0.9622,0.1914,0.1939,0.9622,0.1951,0.0,0.9808,0.0,0.0,1.0,0.1914,0.1939,0.9622,0.0,0.0,1.0,0.0,0.1939,0.981,0.0,0.0,1.0,0.0,-0.1939,0.981,-0.1914,-0.1939,0.9622,0.0,0.0,1.0,-0.1914,-0.1939,0.9622,-0.1951,0.0,0.9808,-0.1951,0.0,0.9808,-0.1914,-0.1939,0.9622,-0.3754,-0.1939,0.9063,-0.1951,0.0,0.9808,-0.3754,-0.1939,0.9063,-0.3827,0.0,0.9239,-0.3827,0.0,0.9239,-0.3754,-0.1939,0.9063,-0.545,-0.1939,0.8157,-0.3827,0.0,0.9239,-0.545,-0.1939,0.8157,-0.5556,0.0,0.8315,-0.5556,0.0,0.8315,-0.545,-0.1939,0.8157,-0.6937,-0.1939,0.6937,-0.5556,0.0,0.8315,-0.6937,-0.1939,0.6937,-0.7071,0.0,0.7071,-0.7071,0.0,0.7071,-0.6937,-0.1939,0.6937,-0.8157,-0.1939,0.545,-0.7071,0.0,0.7071,-0.8157,-0.1939,0.545,-0.8315,0.0,0.5556,-0.8315,0.0,0.5556,-0.8157,-0.1939,0.545,-0.9063,-0.1939,0.3754,-0.8315,0.0,0.5556,-0.9063,-0.1939,0.3754,-0.9239,0.0,0.3827,-0.9239,0.0,0.3827,-0.9063,-0.1939,0.3754,-0.9622,-0.1939,0.1914,-0.9239,0.0,0.3827,-0.9622,-0.1939,0.1914,-0.9808,0.0,0.1951,-0.9808,0.0,0.1951,-0.9622,-0.1939,0.1914,-0.981,-0.1939,0.0,-0.9808,0.0,0.1951,-0.981,-0.1939,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-0.981,-0.1939,0.0,-0.9622,-0.1939,-0.1914,-1.0,0.0,0.0,-0.9622,-0.1939,-0.1914,-0.9808,0.0,-0.1951,-0.9808,0.0,-0.1951,-0.9622,-0.1939,-0.1914,-0.9063,-0.1939,-0.3754,-0.9808,0.0,-0.1951,-0.9063,-0.1939,-0.3754,-0.9239,0.0,-0.3827,-0.9239,0.0,-0.3827,-0.9063,-0.1939,-0.3754,-0.8157,-0.1939,-0.545,-0.9239,0.0,-0.3827,-0.8157,-0.1939,-0.545,-0.8315,0.0,-0.5556,-0.8315,0.0,-0.5556,-0.8157,-0.1939,-0.545,-0.6937,-0.1939,-0.6937,-0.8315,0.0,-0.5556,-0.6937,-0.1939,-0.6937,-0.7071,0.0,-0.7071,-0.7071,0.0,-0.7071,-0.6937,-0.1939,-0.6937,-0.545,-0.1939,-0.8157,-0.7071,0.0,-0.7071,-0.545,-0.1939,-0.8157,-0.5556,0.0,-0.8315,-0.5556,0.0,-0.8315,-0.545,-0.1939,-0.8157,-0.3754,-0.1939,-0.9063,-0.5556,0.0,-0.8315,-0.3754,-0.1939,-0.9063,-0.3827,0.0,-0.9239,-0.3827,0.0,-0.9239,-0.3754,-0.1939,-0.9063,-0.1914,-0.1939,-0.9622,-0.3827,0.0,-0.9239,-0.1914,-0.1939,-0.9622,-0.1951,0.0,-0.9808,-0.1951,0.0,-0.9808,-0.1914,-0.1939,-0.9622,0.0,-0.1939,-0.981,-0.1951,0.0,-0.9808,0.0,-0.1939,-0.981,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,-0.1939,-0.981,0.1914,-0.1939,-0.9622,0.0,0.0,-1.0,0.1914,-0.1939,-0.9622,0.1951,0.0,-0.9808,0.1951,0.0,-0.9808,0.1914,-0.1939,-0.9622,0.3754,-0.1939,-0.9063,0.1951,0.0,-0.9808,0.3754,-0.1939,-0.9063,0.3827,0.0,-0.9239,0.3827,0.0,-0.9239,0.3754,-0.1939,-0.9063,0.545,-0.1939,-0.8157,0.3827,0.0,-0.9239,0.545,-0.1939,-0.8157,0.5556,0.0,-0.8315,0.5556,0.0,-0.8315,0.545,-0.1939,-0.8157,0.6937,-0.1939,-0.6937,0.5556,0.0,-0.8315,0.6937,-0.1939,-0.6937,0.7071,0.0,-0.7071,0.7071,0.0,-0.7071,0.6937,-0.1939,-0.6937,0.8157,-0.1939,-0.545,0.7071,0.0,-0.7071,0.8157,-0.1939,-0.545,0.8315,0.0,-0.5556,0.8315,0.0,-0.5556,0.8157,-0.1939,-0.545,0.9063,-0.1939,-0.3754,0.8315,0.0,-0.5556,0.9063,-0.1939,-0.3754,0.9239,0.0,-0.3827,0.9239,0.0,-0.3827,0.9063,-0.1939,-0.3754,0.9622,-0.1939,-0.1914,0.9239,0.0,-0.3827,0.9622,-0.1939,-0.1914,0.9808,0.0,-0.1951,0.9808,0.0,-0.1951,0.9622,-0.1939,-0.1914,0.981,-0.1939,0.0,0.9808,0.0,-0.1951,0.981,-0.1939,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.981,-0.1939,0.0,0.9622,-0.1939,0.1914,1.0,0.0,0.0,0.9622,-0.1939,0.1914,0.9808,0.0,0.1951,0.9808,0.0,0.1951,0.9622,-0.1939,0.1914,0.9063,-0.1939,0.3754,0.9808,0.0,0.1951,0.9063,-0.1939,0.3754,0.9239,0.0,0.3827,0.9239,0.0,0.3827,0.9063,-0.1939,0.3754,0.8157,-0.1939,0.545,0.9239,0.0,0.3827,0.8157,-0.1939,0.545,0.8315,0.0,0.5556,0.8315,0.0,0.5556,0.8157,-0.1939,0.545,0.6937,-0.1939,0.6937,0.8315,0.0,0.5556,0.6937,-0.1939,0.6937,0.7071,0.0,0.7071,0.7071,0.0,0.7071,0.6937,-0.1939,0.6937,0.545,-0.1939,0.8157,0.7071,0.0,0.7071,0.545,-0.1939,0.8157,0.5556,0.0,0.8315,0.5556,0.0,0.8315,0.545,-0.1939,0.8157,0.3754,-0.1939,0.9063,0.5556,0.0,0.8315,0.3754,-0.1939,0.9063,0.3827,0.0,0.9239,0.3827,0.0,0.9239,0.3754,-0.1939,0.9063,0.1914,-0.1939,0.9622,0.3827,0.0,0.9239,0.1914,-0.1939,0.9622,0.1951,0.0,0.9808,0.1951,0.0,0.9808,0.1914,-0.1939,0.9622,0.0,-0.1939,0.981,0.1951,0.0,0.9808,0.0,-0.1939,0.981,0.0,0.0,1.0,0.0,-0.1939,0.981,0.0,-0.3805,0.9248,-0.1804,-0.3805,0.907,0.0,-0.1939,0.981,-0.1804,-0.3805,0.907,-0.1914,-0.1939,0.9622,-0.1914,-0.1939,0.9622,-0.1804,-0.3805,0.907,-0.3539,-0.3805,0.8544,-0.1914,-0.1939,0.9622,-0.3539,-0.3805,0.8544,-0.3754,-0.1939,0.9063,-0.3754,-0.1939,0.9063,-0.3539,-0.3805,0.8544,-0.5138,-0.3805,0.7689,-0.3754,-0.1939,0.9063,-0.5138,-0.3805,0.7689,-0.545,-0.1939,0.8157,-0.545,-0.1939,0.8157,-0.5138,-0.3805,0.7689,-0.6539,-0.3805,0.6539,-0.545,-0.1939,0.8157,-0.6539,-0.3805,0.6539,-0.6937,-0.1939,0.6937,-0.6937,-0.1939,0.6937,-0.6539,-0.3805,0.6539,-0.7689,-0.3805,0.5138,-0.6937,-0.1939,0.6937,-0.7689,-0.3805,0.5138,-0.8157,-0.1939,0.545,-0.8157,-0.1939,0.545,-0.7689,-0.3805,0.5138,-0.8544,-0.3805,0.3539,-0.8157,-0.1939,0.545,-0.8544,-0.3805,0.3539,-0.9063,-0.1939,0.3754,-0.9063,-0.1939,0.3754,-0.8544,-0.3805,0.3539,-0.907,-0.3805,0.1804,-0.9063,-0.1939,0.3754,-0.907,-0.3805,0.1804,-0.9622,-0.1939,0.1914,-0.9622,-0.1939,0.1914,-0.907,-0.3805,0.1804,-0.9248,-0.3805,0.0,-0.9622,-0.1939,0.1914,-0.9248,-0.3805,0.0,-0.981,-0.1939,0.0,-0.981,-0.1939,0.0,-0.9248,-0.3805,0.0,-0.907,-0.3805,-0.1804,-0.981,-0.1939,0.0,-0.907,-0.3805,-0.1804,-0.9622,-0.1939,-0.1914,-0.9622,-0.1939,-0.1914,-0.907,-0.3805,-0.1804,-0.8544,-0.3805,-0.3539,-0.9622,-0.1939,-0.1914,-0.8544,-0.3805,-0.3539,-0.9063,-0.1939,-0.3754,-0.9063,-0.1939,-0.3754,-0.8544,-0.3805,-0.3539,-0.7689,-0.3805,-0.5138,-0.9063,-0.1939,-0.3754,-0.7689,-0.3805,-0.5138,-0.8157,-0.1939,-0.545,-0.8157,-0.1939,-0.545,-0.7689,-0.3805,-0.5138,-0.6539,-0.3805,-0.6539,-0.8157,-0.1939,-0.545,-0.6539,-0.3805,-0.6539,-0.6937,-0.1939,-0.6937,-0.6937,-0.1939,-0.6937,-0.6539,-0.3805,-0.6539,-0.5138,-0.3805,-0.7689,-0.6937,-0.1939,-0.6937,-0.5138,-0.3805,-0.7689,-0.545,-0.1939,-0.8157,-0.545,-0.1939,-0.8157,-0.5138,-0.3805,-0.7689,-0.3539,-0.3805,-0.8544,-0.545,-0.1939,-0.8157,-0.3539,-0.3805,-0.8544,-0.3754,-0.1939,-0.9063,-0.3754,-0.1939,-0.9063,-0.3539,-0.3805,-0.8544,-0.1804,-0.3805,-0.907,-0.3754,-0.1939,-0.9063,-0.1804,-0.3805,-0.907,-0.1914,-0.1939,-0.9622,-0.1914,-0.1939,-0.9622,-0.1804,-0.3805,-0.907,0.0,-0.3805,-0.9248,-0.1914,-0.1939,-0.9622,0.0,-0.3805,-0.9248,0.0,-0.1939,-0.981,0.0,-0.1939,-0.981,0.0,-0.3805,-0.9248,0.1804,-0.3805,-0.907,0.0,-0.1939,-0.981,0.1804,-0.3805,-0.907,0.1914,-0.1939,-0.9622,0.1914,-0.1939,-0.9622,0.1804,-0.3805,-0.907,0.3539,-0.3805,-0.8544,0.1914,-0.1939,-0.9622,0.3539,-0.3805,-0.8544,0.3754,-0.1939,-0.9063,0.3754,-0.1939,-0.9063,0.3539,-0.3805,-0.8544,0.5138,-0.3805,-0.7689,0.3754,-0.1939,-0.9063,0.5138,-0.3805,-0.7689,0.545,-0.1939,-0.8157,0.545,-0.1939,-0.8157,0.5138,-0.3805,-0.7689,0.6539,-0.3805,-0.6539,0.545,-0.1939,-0.8157,0.6539,-0.3805,-0.6539,0.6937,-0.1939,-0.6937,0.6937,-0.1939,-0.6937,0.6539,-0.3805,-0.6539,0.7689,-0.3805,-0.5138,0.6937,-0.1939,-0.6937,0.7689,-0.3805,-0.5138,0.8157,-0.1939,-0.545,0.8157,-0.1939,-0.545,0.7689,-0.3805,-0.5138,0.8544,-0.3805,-0.3539,0.8157,-0.1939,-0.545,0.8544,-0.3805,-0.3539,0.9063,-0.1939,-0.3754,0.9063,-0.1939,-0.3754,0.8544,-0.3805,-0.3539,0.907,-0.3805,-0.1804,0.9063,-0.1939,-0.3754,0.907,-0.3805,-0.1804,0.9622,-0.1939,-0.1914,0.9622,-0.1939,-0.1914,0.907,-0.3805,-0.1804,0.9248,-0.3805,0.0,0.9622,-0.1939,-0.1914,0.9248,-0.3805,0.0,0.981,-0.1939,0.0,0.981,-0.1939,0.0,0.9248,-0.3805,0.0,0.907,-0.3805,0.1804,0.981,-0.1939,0.0,0.907,-0.3805,0.1804,0.9622,-0.1939,0.1914,0.9622,-0.1939,0.1914,0.907,-0.3805,0.1804,0.8544,-0.3805,0.3539,0.9622,-0.1939,0.1914,0.8544,-0.3805,0.3539,0.9063,-0.1939,0.3754,0.9063,-0.1939,0.3754,0.8544,-0.3805,0.3539,0.7689,-0.3805,0.5138,0.9063,-0.1939,0.3754,0.7689,-0.3805,0.5138,0.8157,-0.1939,0.545,0.8157,-0.1939,0.545,0.7689,-0.3805,0.5138,0.6539,-0.3805,0.6539,0.8157,-0.1939,0.545,0.6539,-0.3805,0.6539,0.6937,-0.1939,0.6937,0.6937,-0.1939,0.6937,0.6539,-0.3805,0.6539,0.5138,-0.3805,0.7689,0.6937,-0.1939,0.6937,0.5138,-0.3805,0.7689,0.545,-0.1939,0.8157,0.545,-0.1939,0.8157,0.5138,-0.3805,0.7689,0.3539,-0.3805,0.8544,0.545,-0.1939,0.8157,0.3539,-0.3805,0.8544,0.3754,-0.1939,0.9063,0.3754,-0.1939,0.9063,0.3539,-0.3805,0.8544,0.1804,-0.3805,0.907,0.3754,-0.1939,0.9063,0.1804,-0.3805,0.907,0.1914,-0.1939,0.9622,0.1914,-0.1939,0.9622,0.1804,-0.3805,0.907,0.0,-0.3805,0.9248,0.1914,-0.1939,0.9622,0.0,-0.3805,0.9248,0.0,-0.1939,0.981,0.0,-0.3805,0.9248,0.0,-0.5528,0.8333,-0.1626,-0.5528,0.8173,0.0,-0.3805,0.9248,-0.1626,-0.5528,0.8173,-0.1804,-0.3805,0.907,-0.1804,-0.3805,0.907,-0.1626,-0.5528,0.8173,-0.3189,-0.5528,0.7699,-0.1804,-0.3805,0.907,-0.3189,-0.5528,0.7699,-0.3539,-0.3805,0.8544,-0.3539,-0.3805,0.8544,-0.3189,-0.5528,0.7699,-0.463,-0.5528,0.6929,-0.3539,-0.3805,0.8544,-0.463,-0.5528,0.6929,-0.5138,-0.3805,0.7689,-0.5138,-0.3805,0.7689,-0.463,-0.5528,0.6929,-0.5893,-0.5528,0.5893,-0.5138,-0.3805,0.7689,-0.5893,-0.5528,0.5893,-0.6539,-0.3805,0.6539,-0.6539,-0.3805,0.6539,-0.5893,-0.5528,0.5893,-0.6929,-0.5528,0.463,-0.6539,-0.3805,0.6539,-0.6929,-0.5528,0.463,-0.7689,-0.3805,0.5138,-0.7689,-0.3805,0.5138,-0.6929,-0.5528,0.463,-0.7699,-0.5528,0.3189,-0.7689,-0.3805,0.5138,-0.7699,-0.5528,0.3189,-0.8544,-0.3805,0.3539,-0.8544,-0.3805,0.3539,-0.7699,-0.5528,0.3189,-0.8173,-0.5528,0.1626,-0.8544,-0.3805,0.3539,-0.8173,-0.5528,0.1626,-0.907,-0.3805,0.1804,-0.907,-0.3805,0.1804,-0.8173,-0.5528,0.1626,-0.8333,-0.5528,0.0,-0.907,-0.3805,0.1804,-0.8333,-0.5528,0.0,-0.9248,-0.3805,0.0,-0.9248,-0.3805,0.0,-0.8333,-0.5528,0.0,-0.8173,-0.5528,-0.1626,-0.9248,-0.3805,0.0,-0.8173,-0.5528,-0.1626,-0.907,-0.3805,-0.1804,-0.907,-0.3805,-0.1804,-0.8173,-0.5528,-0.1626,-0.7699,-0.5528,-0.3189,-0.907,-0.3805,-0.1804,-0.7699,-0.5528,-0.3189,-0.8544,-0.3805,-0.3539,-0.8544,-0.3805,-0.3539,-0.7699,-0.5528,-0.3189,-0.6929,-0.5528,-0.463,-0.8544,-0.3805,-0.3539,-0.6929,-0.5528,-0.463,-0.7689,-0.3805,-0.5138,-0.7689,-0.3805,-0.5138,-0.6929,-0.5528,-0.463,-0.5893,-0.5528,-0.5893,-0.7689,-0.3805,-0.5138,-0.5893,-0.5528,-0.5893,-0.6539,-0.3805,-0.6539,-0.6539,-0.3805,-0.6539,-0.5893,-0.5528,-0.5893,-0.463,-0.5528,-0.6929,-0.6539,-0.3805,-0.6539,-0.463,-0.5528,-0.6929,-0.5138,-0.3805,-0.7689,-0.5138,-0.3805,-0.7689,-0.463,-0.5528,-0.6929,-0.3189,-0.5528,-0.7699,-0.5138,-0.3805,-0.7689,-0.3189,-0.5528,-0.7699,-0.3539,-0.3805,-0.8544,-0.3539,-0.3805,-0.8544,-0.3189,-0.5528,-0.7699,-0.1626,-0.5528,-0.8173,-0.3539,-0.3805,-0.8544,-0.1626,-0.5528,-0.8173,-0.1804,-0.3805,-0.907,-0.1804,-0.3805,-0.907,-0.1626,-0.5528,-0.8173,0.0,-0.5528,-0.8333,-0.1804,-0.3805,-0.907,0.0,-0.5528,-0.8333,0.0,-0.3805,-0.9248,0.0,-0.3805,-0.9248,0.0,-0.5528,-0.8333,0.1626,-0.5528,-0.8173,0.0,-0.3805,-0.9248,0.1626,-0.5528,-0.8173,0.1804,-0.3805,-0.907,0.1804,-0.3805,-0.907,0.1626,-0.5528,-0.8173,0.3189,-0.5528,-0.7699,0.1804,-0.3805,-0.907,0.3189,-0.5528,-0.7699,0.3539,-0.3805,-0.8544,0.3539,-0.3805,-0.8544,0.3189,-0.5528,-0.7699,0.463,-0.5528,-0.6929,0.3539,-0.3805,-0.8544,0.463,-0.5528,-0.6929,0.5138,-0.3805,-0.7689,0.5138,-0.3805,-0.7689,0.463,-0.5528,-0.6929,0.5893,-0.5528,-0.5893,0.5138,-0.3805,-0.7689,0.5893,-0.5528,-0.5893,0.6539,-0.3805,-0.6539,0.6539,-0.3805,-0.6539,0.5893,-0.5528,-0.5893,0.6929,-0.5528,-0.463,0.6539,-0.3805,-0.6539,0.6929,-0.5528,-0.463,0.7689,-0.3805,-0.5138,0.7689,-0.3805,-0.5138,0.6929,-0.5528,-0.463,0.7699,-0.5528,-0.3189,0.7689,-0.3805,-0.5138,0.7699,-0.5528,-0.3189,0.8544,-0.3805,-0.3539,0.8544,-0.3805,-0.3539,0.7699,-0.5528,-0.3189,0.8173,-0.5528,-0.1626,0.8544,-0.3805,-0.3539,0.8173,-0.5528,-0.1626,0.907,-0.3805,-0.1804,0.907,-0.3805,-0.1804,0.8173,-0.5528,-0.1626,0.8333,-0.5528,0.0,0.907,-0.3805,-0.1804,0.8333,-0.5528,0.0,0.9248,-0.3805,0.0,0.9248,-0.3805,0.0,0.8333,-0.5528,0.0,0.8173,-0.5528,0.1626,0.9248,-0.3805,0.0,0.8173,-0.5528,0.1626,0.907,-0.3805,0.1804,0.907,-0.3805,0.1804,0.8173,-0.5528,0.1626,0.7699,-0.5528,0.3189,0.907,-0.3805,0.1804,0.7699,-0.5528,0.3189,0.8544,-0.3805,0.3539,0.8544,-0.3805,0.3539,0.7699,-0.5528,0.3189,0.6929,-0.5528,0.463,0.8544,-0.3805,0.3539,0.6929,-0.5528,0.463,0.7689,-0.3805,0.5138,0.7689,-0.3805,0.5138,0.6929,-0.5528,0.463,0.5893,-0.5528,0.5893,0.7689,-0.3805,0.5138,0.5893,-0.5528,0.5893,0.6539,-0.3805,0.6539,0.6539,-0.3805,0.6539,0.5893,-0.5528,0.5893,0.463,-0.5528,0.6929,0.6539,-0.3805,0.6539,0.463,-0.5528,0.6929,0.5138,-0.3805,0.7689,0.5138,-0.3805,0.7689,0.463,-0.5528,0.6929,0.3189,-0.5528,0.7699,0.5138,-0.3805,0.7689,0.3189,-0.5528,0.7699,0.3539,-0.3805,0.8544,0.3539,-0.3805,0.8544,0.3189,-0.5528,0.7699,0.1626,-0.5528,0.8173,0.3539,-0.3805,0.8544,0.1626,-0.5528,0.8173,0.1804,-0.3805,0.907,0.1804,-0.3805,0.907,0.1626,-0.5528,0.8173,0.0,-0.5528,0.8333,0.1804,-0.3805,0.907,0.0,-0.5528,0.8333,0.0,-0.3805,0.9248,0.0,-0.5528,0.8333,0.0,-0.7041,0.7101,-0.1385,-0.7041,0.6965,0.0,-0.5528,0.8333,-0.1385,-0.7041,0.6965,-0.1626,-0.5528,0.8173,-0.1626,-0.5528,0.8173,-0.1385,-0.7041,0.6965,-0.2718,-0.7041,0.6561,-0.1626,-0.5528,0.8173,-0.2718,-0.7041,0.6561,-0.3189,-0.5528,0.7699,-0.3189,-0.5528,0.7699,-0.2718,-0.7041,0.6561,-0.3945,-0.7041,0.5905,-0.3189,-0.5528,0.7699,-0.3945,-0.7041,0.5905,-0.463,-0.5528,0.6929,-0.463,-0.5528,0.6929,-0.3945,-0.7041,0.5905,-0.5021,-0.7041,0.5021,-0.463,-0.5528,0.6929,-0.5021,-0.7041,0.5021,-0.5893,-0.5528,0.5893,-0.5893,-0.5528,0.5893,-0.5021,-0.7041,0.5021,-0.5905,-0.7041,0.3945,-0.5893,-0.5528,0.5893,-0.5905,-0.7041,0.3945,-0.6929,-0.5528,0.463,-0.6929,-0.5528,0.463,-0.5905,-0.7041,0.3945,-0.6561,-0.7041,0.2718,-0.6929,-0.5528,0.463,-0.6561,-0.7041,0.2718,-0.7699,-0.5528,0.3189,-0.7699,-0.5528,0.3189,-0.6561,-0.7041,0.2718,-0.6965,-0.7041,0.1385,-0.7699,-0.5528,0.3189,-0.6965,-0.7041,0.1385,-0.8173,-0.5528,0.1626,-0.8173,-0.5528,0.1626,-0.6965,-0.7041,0.1385,-0.7101,-0.7041,0.0,-0.8173,-0.5528,0.1626,-0.7101,-0.7041,0.0,-0.8333,-0.5528,0.0,-0.8333,-0.5528,0.0,-0.7101,-0.7041,0.0,-0.6965,-0.7041,-0.1385,-0.8333,-0.5528,0.0,-0.6965,-0.7041,-0.1385,-0.8173,-0.5528,-0.1626,-0.8173,-0.5528,-0.1626,-0.6965,-0.7041,-0.1385,-0.6561,-0.7041,-0.2718,-0.8173,-0.5528,-0.1626,-0.6561,-0.7041,-0.2718,-0.7699,-0.5528,-0.3189,-0.7699,-0.5528,-0.3189,-0.6561,-0.7041,-0.2718,-0.5905,-0.7041,-0.3945,-0.7699,-0.5528,-0.3189,-0.5905,-0.7041,-0.3945,-0.6929,-0.5528,-0.463,-0.6929,-0.5528,-0.463,-0.5905,-0.7041,-0.3945,-0.5021,-0.7041,-0.5021,-0.6929,-0.5528,-0.463,-0.5021,-0.7041,-0.5021,-0.5893,-0.5528,-0.5893,-0.5893,-0.5528,-0.5893,-0.5021,-0.7041,-0.5021,-0.3945,-0.7041,-0.5905,-0.5893,-0.5528,-0.5893,-0.3945,-0.7041,-0.5905,-0.463,-0.5528,-0.6929,-0.463,-0.5528,-0.6929,-0.3945,-0.7041,-0.5905,-0.2718,-0.7041,-0.6561,-0.463,-0.5528,-0.6929,-0.2718,-0.7041,-0.6561,-0.3189,-0.5528,-0.7699,-0.3189,-0.5528,-0.7699,-0.2718,-0.7041,-0.6561,-0.1385,-0.7041,-0.6965,-0.3189,-0.5528,-0.7699,-0.1385,-0.7041,-0.6965,-0.1626,-0.5528,-0.8173,-0.1626,-0.5528,-0.8173,-0.1385,-0.7041,-0.6965,0.0,-0.7041,-0.7101,-0.1626,-0.5528,-0.8173,0.0,-0.7041,-0.7101,0.0,-0.5528,-0.8333,0.0,-0.5528,-0.8333,0.0,-0.7041,-0.7101,0.1385,-0.7041,-0.6965,0.0,-0.5528,-0.8333,0.1385,-0.7041,-0.6965,0.1626,-0.5528,-0.8173,0.1626,-0.5528,-0.8173,0.1385,-0.7041,-0.6965,0.2718,-0.7041,-0.6561,0.1626,-0.5528,-0.8173,0.2718,-0.7041,-0.6561,0.3189,-0.5528,-0.7699,0.3189,-0.5528,-0.7699,0.2718,-0.7041,-0.6561,0.3945,-0.7041,-0.5905,0.3189,-0.5528,-0.7699,0.3945,-0.7041,-0.5905,0.463,-0.5528,-0.6929,0.463,-0.5528,-0.6929,0.3945,-0.7041,-0.5905,0.5021,-0.7041,-0.5021,0.463,-0.5528,-0.6929,0.5021,-0.7041,-0.5021,0.5893,-0.5528,-0.5893,0.5893,-0.5528,-0.5893,0.5021,-0.7041,-0.5021,0.5905,-0.7041,-0.3945,0.5893,-0.5528,-0.5893,0.5905,-0.7041,-0.3945,0.6929,-0.5528,-0.463,0.6929,-0.5528,-0.463,0.5905,-0.7041,-0.3945,0.6561,-0.7041,-0.2718,0.6929,-0.5528,-0.463,0.6561,-0.7041,-0.2718,0.7699,-0.5528,-0.3189,0.7699,-0.5528,-0.3189,0.6561,-0.7041,-0.2718,0.6965,-0.7041,-0.1385,0.7699,-0.5528,-0.3189,0.6965,-0.7041,-0.1385,0.8173,-0.5528,-0.1626,0.8173,-0.5528,-0.1626,0.6965,-0.7041,-0.1385,0.7101,-0.7041,0.0,0.8173,-0.5528,-0.1626,0.7101,-0.7041,0.0,0.8333,-0.5528,0.0,0.8333,-0.5528,0.0,0.7101,-0.7041,0.0,0.6965,-0.7041,0.1385,0.8333,-0.5528,0.0,0.6965,-0.7041,0.1385,0.8173,-0.5528,0.1626,0.8173,-0.5528,0.1626,0.6965,-0.7041,0.1385,0.6561,-0.7041,0.2718,0.8173,-0.5528,0.1626,0.6561,-0.7041,0.2718,0.7699,-0.5528,0.3189,0.7699,-0.5528,0.3189,0.6561,-0.7041,0.2718,0.5905,-0.7041,0.3945,0.7699,-0.5528,0.3189,0.5905,-0.7041,0.3945,0.6929,-0.5528,0.463,0.6929,-0.5528,0.463,0.5905,-0.7041,0.3945,0.5021,-0.7041,0.5021,0.6929,-0.5528,0.463,0.5021,-0.7041,0.5021,0.5893,-0.5528,0.5893,0.5893,-0.5528,0.5893,0.5021,-0.7041,0.5021,0.3945,-0.7041,0.5905,0.5893,-0.5528,0.5893,0.3945,-0.7041,0.5905,0.463,-0.5528,0.6929,0.463,-0.5528,0.6929,0.3945,-0.7041,0.5905,0.2718,-0.7041,0.6561,0.463,-0.5528,0.6929,0.2718,-0.7041,0.6561,0.3189,-0.5528,0.7699,0.3189,-0.5528,0.7699,0.2718,-0.7041,0.6561,0.1385,-0.7041,0.6965,0.3189,-0.5528,0.7699,0.1385,-0.7041,0.6965,0.1626,-0.5528,0.8173,0.1626,-0.5528,0.8173,0.1385,-0.7041,0.6965,0.0,-0.7041,0.7101,0.1626,-0.5528,0.8173,0.0,-0.7041,0.7101,0.0,-0.5528,0.8333,0.0,-0.7041,0.7101,0.0,-0.8286,0.5598,-0.1092,-0.8286,0.549,0.0,-0.7041,0.7101,-0.1092,-0.8286,0.549,-0.1385,-0.7041,0.6965,-0.1385,-0.7041,0.6965,-0.1092,-0.8286,0.549,-0.2142,-0.8286,0.5172,-0.1385,-0.7041,0.6965,-0.2142,-0.8286,0.5172,-0.2718,-0.7041,0.6561,-0.2718,-0.7041,0.6561,-0.2142,-0.8286,0.5172,-0.311,-0.8286,0.4654,-0.2718,-0.7041,0.6561,-0.311,-0.8286,0.4654,-0.3945,-0.7041,0.5905,-0.3945,-0.7041,0.5905,-0.311,-0.8286,0.4654,-0.3958,-0.8286,0.3958,-0.3945,-0.7041,0.5905,-0.3958,-0.8286,0.3958,-0.5021,-0.7041,0.5021,-0.5021,-0.7041,0.5021,-0.3958,-0.8286,0.3958,-0.4654,-0.8286,0.311,-0.5021,-0.7041,0.5021,-0.4654,-0.8286,0.311,-0.5905,-0.7041,0.3945,-0.5905,-0.7041,0.3945,-0.4654,-0.8286,0.311,-0.5172,-0.8286,0.2142,-0.5905,-0.7041,0.3945,-0.5172,-0.8286,0.2142,-0.6561,-0.7041,0.2718,-0.6561,-0.7041,0.2718,-0.5172,-0.8286,0.2142,-0.549,-0.8286,0.1092,-0.6561,-0.7041,0.2718,-0.549,-0.8286,0.1092,-0.6965,-0.7041,0.1385,-0.6965,-0.7041,0.1385,-0.549,-0.8286,0.1092,-0.5598,-0.8286,0.0,-0.6965,-0.7041,0.1385,-0.5598,-0.8286,0.0,-0.7101,-0.7041,0.0,-0.7101,-0.7041,0.0,-0.5598,-0.8286,0.0,-0.549,-0.8286,-0.1092,-0.7101,-0.7041,0.0,-0.549,-0.8286,-0.1092,-0.6965,-0.7041,-0.1385,-0.6965,-0.7041,-0.1385,-0.549,-0.8286,-0.1092,-0.5172,-0.8286,-0.2142,-0.6965,-0.7041,-0.1385,-0.5172,-0.8286,-0.2142,-0.6561,-0.7041,-0.2718,-0.6561,-0.7041,-0.2718,-0.5172,-0.8286,-0.2142,-0.4654,-0.8286,-0.311,-0.6561,-0.7041,-0.2718,-0.4654,-0.8286,-0.311,-0.5905,-0.7041,-0.3945,-0.5905,-0.7041,-0.3945,-0.4654,-0.8286,-0.311,-0.3958,-0.8286,-0.3958,-0.5905,-0.7041,-0.3945,-0.3958,-0.8286,-0.3958,-0.5021,-0.7041,-0.5021,-0.5021,-0.7041,-0.5021,-0.3958,-0.8286,-0.3958,-0.311,-0.8286,-0.4654,-0.5021,-0.7041,-0.5021,-0.311,-0.8286,-0.4654,-0.3945,-0.7041,-0.5905,-0.3945,-0.7041,-0.5905,-0.311,-0.8286,-0.4654,-0.2142,-0.8286,-0.5172,-0.3945,-0.7041,-0.5905,-0.2142,-0.8286,-0.5172,-0.2718,-0.7041,-0.6561,-0.2718,-0.7041,-0.6561,-0.2142,-0.8286,-0.5172,-0.1092,-0.8286,-0.549,-0.2718,-0.7041,-0.6561,-0.1092,-0.8286,-0.549,-0.1385,-0.7041,-0.6965,-0.1385,-0.7041,-0.6965,-0.1092,-0.8286,-0.549,0.0,-0.8286,-0.5598,-0.1385,-0.7041,-0.6965,0.0,-0.8286,-0.5598,0.0,-0.7041,-0.7101,0.0,-0.7041,-0.7101,0.0,-0.8286,-0.5598,0.1092,-0.8286,-0.549,0.0,-0.7041,-0.7101,0.1092,-0.8286,-0.549,0.1385,-0.7041,-0.6965,0.1385,-0.7041,-0.6965,0.1092,-0.8286,-0.549,0.2142,-0.8286,-0.5172,0.1385,-0.7041,-0.6965,0.2142,-0.8286,-0.5172,0.2718,-0.7041,-0.6561,0.2718,-0.7041,-0.6561,0.2142,-0.8286,-0.5172,0.311,-0.8286,-0.4654,0.2718,-0.7041,-0.6561,0.311,-0.8286,-0.4654,0.3945,-0.7041,-0.5905,0.3945,-0.7041,-0.5905,0.311,-0.8286,-0.4654,0.3958,-0.8286,-0.3958,0.3945,-0.7041,-0.5905,0.3958,-0.8286,-0.3958,0.5021,-0.7041,-0.5021,0.5021,-0.7041,-0.5021,0.3958,-0.8286,-0.3958,0.4654,-0.8286,-0.311,0.5021,-0.7041,-0.5021,0.4654,-0.8286,-0.311,0.5905,-0.7041,-0.3945,0.5905,-0.7041,-0.3945,0.4654,-0.8286,-0.311,0.5172,-0.8286,-0.2142,0.5905,-0.7041,-0.3945,0.5172,-0.8286,-0.2142,0.6561,-0.7041,-0.2718,0.6561,-0.7041,-0.2718,0.5172,-0.8286,-0.2142,0.549,-0.8286,-0.1092,0.6561,-0.7041,-0.2718,0.549,-0.8286,-0.1092,0.6965,-0.7041,-0.1385,0.6965,-0.7041,-0.1385,0.549,-0.8286,-0.1092,0.5598,-0.8286,0.0,0.6965,-0.7041,-0.1385,0.5598,-0.8286,0.0,0.7101,-0.7041,0.0,0.7101,-0.7041,0.0,0.5598,-0.8286,0.0,0.549,-0.8286,0.1092,0.7101,-0.7041,0.0,0.549,-0.8286,0.1092,0.6965,-0.7041,0.1385,0.6965,-0.7041,0.1385,0.549,-0.8286,0.1092,0.5172,-0.8286,0.2142,0.6965,-0.7041,0.1385,0.5172,-0.8286,0.2142,0.6561,-0.7041,0.2718,0.6561,-0.7041,0.2718,0.5172,-0.8286,0.2142,0.4654,-0.8286,0.311,0.6561,-0.7041,0.2718,0.4654,-0.8286,0.311,0.5905,-0.7041,0.3945,0.5905,-0.7041,0.3945,0.4654,-0.8286,0.311,0.3958,-0.8286,0.3958,0.5905,-0.7041,0.3945,0.3958,-0.8286,0.3958,0.5021,-0.7041,0.5021,0.5021,-0.7041,0.5021,0.3958,-0.8286,0.3958,0.311,-0.8286,0.4654,0.5021,-0.7041,0.5021,0.311,-0.8286,0.4654,0.3945,-0.7041,0.5905,0.3945,-0.7041,0.5905,0.311,-0.8286,0.4654,0.2142,-0.8286,0.5172,0.3945,-0.7041,0.5905,0.2142,-0.8286,0.5172,0.2718,-0.7041,0.6561,0.2718,-0.7041,0.6561,0.2142,-0.8286,0.5172,0.1092,-0.8286,0.549,0.2718,-0.7041,0.6561,0.1092,-0.8286,0.549,0.1385,-0.7041,0.6965,0.1385,-0.7041,0.6965,0.1092,-0.8286,0.549,0.0,-0.8286,0.5598,0.1385,-0.7041,0.6965,0.0,-0.8286,0.5598,0.0,-0.7041,0.7101,0.0,-0.8286,0.5598,0.0,-0.9217,0.3879,-0.0757,-0.9217,0.3804,0.0,-0.8286,0.5598,-0.0757,-0.9217,0.3804,-0.1092,-0.8286,0.549,-0.1092,-0.8286,0.549,-0.0757,-0.9217,0.3804,-0.1484,-0.9217,0.3584,-0.1092,-0.8286,0.549,-0.1484,-0.9217,0.3584,-0.2142,-0.8286,0.5172,-0.2142,-0.8286,0.5172,-0.1484,-0.9217,0.3584,-0.2155,-0.9217,0.3225,-0.2142,-0.8286,0.5172,-0.2155,-0.9217,0.3225,-0.311,-0.8286,0.4654,-0.311,-0.8286,0.4654,-0.2155,-0.9217,0.3225,-0.2743,-0.9217,0.2743,-0.311,-0.8286,0.4654,-0.2743,-0.9217,0.2743,-0.3958,-0.8286,0.3958,-0.3958,-0.8286,0.3958,-0.2743,-0.9217,0.2743,-0.3225,-0.9217,0.2155,-0.3958,-0.8286,0.3958,-0.3225,-0.9217,0.2155,-0.4654,-0.8286,0.311,-0.4654,-0.8286,0.311,-0.3225,-0.9217,0.2155,-0.3584,-0.9217,0.1484,-0.4654,-0.8286,0.311,-0.3584,-0.9217,0.1484,-0.5172,-0.8286,0.2142,-0.5172,-0.8286,0.2142,-0.3584,-0.9217,0.1484,-0.3804,-0.9217,0.0757,-0.5172,-0.8286,0.2142,-0.3804,-0.9217,0.0757,-0.549,-0.8286,0.1092,-0.549,-0.8286,0.1092,-0.3804,-0.9217,0.0757,-0.3879,-0.9217,0.0,-0.549,-0.8286,0.1092,-0.3879,-0.9217,0.0,-0.5598,-0.8286,0.0,-0.5598,-0.8286,0.0,-0.3879,-0.9217,0.0,-0.3804,-0.9217,-0.0757,-0.5598,-0.8286,0.0,-0.3804,-0.9217,-0.0757,-0.549,-0.8286,-0.1092,-0.549,-0.8286,-0.1092,-0.3804,-0.9217,-0.0757,-0.3584,-0.9217,-0.1484,-0.549,-0.8286,-0.1092,-0.3584,-0.9217,-0.1484,-0.5172,-0.8286,-0.2142,-0.5172,-0.8286,-0.2142,-0.3584,-0.9217,-0.1484,-0.3225,-0.9217,-0.2155,-0.5172,-0.8286,-0.2142,-0.3225,-0.9217,-0.2155,-0.4654,-0.8286,-0.311,-0.4654,-0.8286,-0.311,-0.3225,-0.9217,-0.2155,-0.2743,-0.9217,-0.2743,-0.4654,-0.8286,-0.311,-0.2743,-0.9217,-0.2743,-0.3958,-0.8286,-0.3958,-0.3958,-0.8286,-0.3958,-0.2743,-0.9217,-0.2743,-0.2155,-0.9217,-0.3225,-0.3958,-0.8286,-0.3958,-0.2155,-0.9217,-0.3225,-0.311,-0.8286,-0.4654,-0.311,-0.8286,-0.4654,-0.2155,-0.9217,-0.3225,-0.1484,-0.9217,-0.3584,-0.311,-0.8286,-0.4654,-0.1484,-0.9217,-0.3584,-0.2142,-0.8286,-0.5172,-0.2142,-0.8286,-0.5172,-0.1484,-0.9217,-0.3584,-0.0757,-0.9217,-0.3804,-0.2142,-0.8286,-0.5172,-0.0757,-0.9217,-0.3804,-0.1092,-0.8286,-0.549,-0.1092,-0.8286,-0.549,-0.0757,-0.9217,-0.3804,0.0,-0.9217,-0.3879,-0.1092,-0.8286,-0.549,0.0,-0.9217,-0.3879,0.0,-0.8286,-0.5598,0.0,-0.8286,-0.5598,0.0,-0.9217,-0.3879,0.0757,-0.9217,-0.3804,0.0,-0.8286,-0.5598,0.0757,-0.9217,-0.3804,0.1092,-0.8286,-0.549,0.1092,-0.8286,-0.549,0.0757,-0.9217,-0.3804,0.1484,-0.9217,-0.3584,0.1092,-0.8286,-0.549,0.1484,-0.9217,-0.3584,0.2142,-0.8286,-0.5172,0.2142,-0.8286,-0.5172,0.1484,-0.9217,-0.3584,0.2155,-0.9217,-0.3225,0.2142,-0.8286,-0.5172,0.2155,-0.9217,-0.3225,0.311,-0.8286,-0.4654,0.311,-0.8286,-0.4654,0.2155,-0.9217,-0.3225,0.2743,-0.9217,-0.2743,0.311,-0.8286,-0.4654,0.2743,-0.9217,-0.2743,0.3958,-0.8286,-0.3958,0.3958,-0.8286,-0.3958,0.2743,-0.9217,-0.2743,0.3225,-0.9217,-0.2155,0.3958,-0.8286,-0.3958,0.3225,-0.9217,-0.2155,0.4654,-0.8286,-0.311,0.4654,-0.8286,-0.311,0.3225,-0.9217,-0.2155,0.3584,-0.9217,-0.1484,0.4654,-0.8286,-0.311,0.3584,-0.9217,-0.1484,0.5172,-0.8286,-0.2142,0.5172,-0.8286,-0.2142,0.3584,-0.9217,-0.1484,0.3804,-0.9217,-0.0757,0.5172,-0.8286,-0.2142,0.3804,-0.9217,-0.0757,0.549,-0.8286,-0.1092,0.549,-0.8286,-0.1092,0.3804,-0.9217,-0.0757,0.3879,-0.9217,0.0,0.549,-0.8286,-0.1092,0.3879,-0.9217,0.0,0.5598,-0.8286,0.0,0.5598,-0.8286,0.0,0.3879,-0.9217,0.0,0.3804,-0.9217,0.0757,0.5598,-0.8286,0.0,0.3804,-0.9217,0.0757,0.549,-0.8286,0.1092,0.549,-0.8286,0.1092,0.3804,-0.9217,0.0757,0.3584,-0.9217,0.1484,0.549,-0.8286,0.1092,0.3584,-0.9217,0.1484,0.5172,-0.8286,0.2142,0.5172,-0.8286,0.2142,0.3584,-0.9217,0.1484,0.3225,-0.9217,0.2155,0.5172,-0.8286,0.2142,0.3225,-0.9217,0.2155,0.4654,-0.8286,0.311,0.4654,-0.8286,0.311,0.3225,-0.9217,0.2155,0.2743,-0.9217,0.2743,0.4654,-0.8286,0.311,0.2743,-0.9217,0.2743,0.3958,-0.8286,0.3958,0.3958,-0.8286,0.3958,0.2743,-0.9217,0.2743,0.2155,-0.9217,0.3225,0.3958,-0.8286,0.3958,0.2155,-0.9217,0.3225,0.311,-0.8286,0.4654,0.311,-0.8286,0.4654,0.2155,-0.9217,0.3225,0.1484,-0.9217,0.3584,0.311,-0.8286,0.4654,0.1484,-0.9217,0.3584,0.2142,-0.8286,0.5172,0.2142,-0.8286,0.5172,0.1484,-0.9217,0.3584,0.0757,-0.9217,0.3804,0.2142,-0.8286,0.5172,0.0757,-0.9217,0.3804,0.1092,-0.8286,0.549,0.1092,-0.8286,0.549,0.0757,-0.9217,0.3804,0.0,-0.9217,0.3879,0.1092,-0.8286,0.549,0.0,-0.9217,0.3879,0.0,-0.8286,0.5598,0.0,-0.9217,0.3879,0.0,-0.9796,0.201,-0.0392,-0.9796,0.1971,0.0,-0.9217,0.3879,-0.0392,-0.9796,0.1971,-0.0757,-0.9217,0.3804,-0.0757,-0.9217,0.3804,-0.0392,-0.9796,0.1971,-0.0769,-0.9796,0.1857,-0.0757,-0.9217,0.3804,-0.0769,-0.9796,0.1857,-0.1484,-0.9217,0.3584,-0.1484,-0.9217,0.3584,-0.0769,-0.9796,0.1857,-0.1117,-0.9796,0.1671,-0.1484,-0.9217,0.3584,-0.1117,-0.9796,0.1671,-0.2155,-0.9217,0.3225,-0.2155,-0.9217,0.3225,-0.1117,-0.9796,0.1671,-0.1421,-0.9796,0.1421,-0.2155,-0.9217,0.3225,-0.1421,-0.9796,0.1421,-0.2743,-0.9217,0.2743,-0.2743,-0.9217,0.2743,-0.1421,-0.9796,0.1421,-0.1671,-0.9796,0.1117,-0.2743,-0.9217,0.2743,-0.1671,-0.9796,0.1117,-0.3225,-0.9217,0.2155,-0.3225,-0.9217,0.2155,-0.1671,-0.9796,0.1117,-0.1857,-0.9796,0.0769,-0.3225,-0.9217,0.2155,-0.1857,-0.9796,0.0769,-0.3584,-0.9217,0.1484,-0.3584,-0.9217,0.1484,-0.1857,-0.9796,0.0769,-0.1971,-0.9796,0.0392,-0.3584,-0.9217,0.1484,-0.1971,-0.9796,0.0392,-0.3804,-0.9217,0.0757,-0.3804,-0.9217,0.0757,-0.1971,-0.9796,0.0392,-0.201,-0.9796,0.0,-0.3804,-0.9217,0.0757,-0.201,-0.9796,0.0,-0.3879,-0.9217,0.0,-0.3879,-0.9217,0.0,-0.201,-0.9796,0.0,-0.1971,-0.9796,-0.0392,-0.3879,-0.9217,0.0,-0.1971,-0.9796,-0.0392,-0.3804,-0.9217,-0.0757,-0.3804,-0.9217,-0.0757,-0.1971,-0.9796,-0.0392,-0.1857,-0.9796,-0.0769,-0.3804,-0.9217,-0.0757,-0.1857,-0.9796,-0.0769,-0.3584,-0.9217,-0.1484,-0.3584,-0.9217,-0.1484,-0.1857,-0.9796,-0.0769,-0.1671,-0.9796,-0.1117,-0.3584,-0.9217,-0.1484,-0.1671,-0.9796,-0.1117,-0.3225,-0.9217,-0.2155,-0.3225,-0.9217,-0.2155,-0.1671,-0.9796,-0.1117,-0.1421,-0.9796,-0.1421,-0.3225,-0.9217,-0.2155,-0.1421,-0.9796,-0.1421,-0.2743,-0.9217,-0.2743,-0.2743,-0.9217,-0.2743,-0.1421,-0.9796,-0.1421,-0.1117,-0.9796,-0.1671,-0.2743,-0.9217,-0.2743,-0.1117,-0.9796,-0.1671,-0.2155,-0.9217,-0.3225,-0.2155,-0.9217,-0.3225,-0.1117,-0.9796,-0.1671,-0.0769,-0.9796,-0.1857,-0.2155,-0.9217,-0.3225,-0.0769,-0.9796,-0.1857,-0.1484,-0.9217,-0.3584,-0.1484,-0.9217,-0.3584,-0.0769,-0.9796,-0.1857,-0.0392,-0.9796,-0.1971,-0.1484,-0.9217,-0.3584,-0.0392,-0.9796,-0.1971,-0.0757,-0.9217,-0.3804,-0.0757,-0.9217,-0.3804,-0.0392,-0.9796,-0.1971,0.0,-0.9796,-0.201,-0.0757,-0.9217,-0.3804,0.0,-0.9796,-0.201,0.0,-0.9217,-0.3879,0.0,-0.9217,-0.3879,0.0,-0.9796,-0.201,0.0392,-0.9796,-0.1971,0.0,-0.9217,-0.3879,0.0392,-0.9796,-0.1971,0.0757,-0.9217,-0.3804,0.0757,-0.9217,-0.3804,0.0392,-0.9796,-0.1971,0.0769,-0.9796,-0.1857,0.0757,-0.9217,-0.3804,0.0769,-0.9796,-0.1857,0.1484,-0.9217,-0.3584,0.1484,-0.9217,-0.3584,0.0769,-0.9796,-0.1857,0.1117,-0.9796,-0.1671,0.1484,-0.9217,-0.3584,0.1117,-0.9796,-0.1671,0.2155,-0.9217,-0.3225,0.2155,-0.9217,-0.3225,0.1117,-0.9796,-0.1671,0.1421,-0.9796,-0.1421,0.2155,-0.9217,-0.3225,0.1421,-0.9796,-0.1421,0.2743,-0.9217,-0.2743,0.2743,-0.9217,-0.2743,0.1421,-0.9796,-0.1421,0.1671,-0.9796,-0.1117,0.2743,-0.9217,-0.2743,0.1671,-0.9796,-0.1117,0.3225,-0.9217,-0.2155,0.3225,-0.9217,-0.2155,0.1671,-0.9796,-0.1117,0.1857,-0.9796,-0.0769,0.3225,-0.9217,-0.2155,0.1857,-0.9796,-0.0769,0.3584,-0.9217,-0.1484,0.3584,-0.9217,-0.1484,0.1857,-0.9796,-0.0769,0.1971,-0.9796,-0.0392,0.3584,-0.9217,-0.1484,0.1971,-0.9796,-0.0392,0.3804,-0.9217,-0.0757,0.3804,-0.9217,-0.0757,0.1971,-0.9796,-0.0392,0.201,-0.9796,0.0,0.3804,-0.9217,-0.0757,0.201,-0.9796,0.0,0.3879,-0.9217,0.0,0.3879,-0.9217,0.0,0.201,-0.9796,0.0,0.1971,-0.9796,0.0392,0.3879,-0.9217,0.0,0.1971,-0.9796,0.0392,0.3804,-0.9217,0.0757,0.3804,-0.9217,0.0757,0.1971,-0.9796,0.0392,0.1857,-0.9796,0.0769,0.3804,-0.9217,0.0757,0.1857,-0.9796,0.0769,0.3584,-0.9217,0.1484,0.3584,-0.9217,0.1484,0.1857,-0.9796,0.0769,0.1671,-0.9796,0.1117,0.3584,-0.9217,0.1484,0.1671,-0.9796,0.1117,0.3225,-0.9217,0.2155,0.3225,-0.9217,0.2155,0.1671,-0.9796,0.1117,0.1421,-0.9796,0.1421,0.3225,-0.9217,0.2155,0.1421,-0.9796,0.1421,0.2743,-0.9217,0.2743,0.2743,-0.9217,0.2743,0.1421,-0.9796,0.1421,0.1117,-0.9796,0.1671,0.2743,-0.9217,0.2743,0.1117,-0.9796,0.1671,0.2155,-0.9217,0.3225,0.2155,-0.9217,0.3225,0.1117,-0.9796,0.1671,0.0769,-0.9796,0.1857,0.2155,-0.9217,0.3225,0.0769,-0.9796,0.1857,0.1484,-0.9217,0.3584,0.1484,-0.9217,0.3584,0.0769,-0.9796,0.1857,0.0392,-0.9796,0.1971,0.1484,-0.9217,0.3584,0.0392,-0.9796,0.1971,0.0757,-0.9217,0.3804,0.0757,-0.9217,0.3804,0.0392,-0.9796,0.1971,0.0,-0.9796,0.201,0.0757,-0.9217,0.3804,0.0,-0.9796,0.201,0.0,-0.9217,0.3879,0.0,-1.0,0.0,-0.0392,-0.9796,0.1971,0.0,-0.9796,0.201,0.0,-1.0,0.0,-0.0769,-0.9796,0.1857,-0.0392,-0.9796,0.1971,0.0,-1.0,0.0,-0.1117,-0.9796,0.1671,-0.0769,-0.9796,0.1857,0.0,-1.0,0.0,-0.1421,-0.9796,0.1421,-0.1117,-0.9796,0.1671,0.0,-1.0,0.0,-0.1671,-0.9796,0.1117,-0.1421,-0.9796,0.1421,0.0,-1.0,0.0,-0.1857,-0.9796,0.0769,-0.1671,-0.9796,0.1117,0.0,-1.0,0.0,-0.1971,-0.9796,0.0392,-0.1857,-0.9796,0.0769,0.0,-1.0,0.0,-0.201,-0.9796,0.0,-0.1971,-0.9796,0.0392,0.0,-1.0,0.0,-0.1971,-0.9796,-0.0392,-0.201,-0.9796,0.0,0.0,-1.0,0.0,-0.1857,-0.9796,-0.0769,-0.1971,-0.9796,-0.0392,0.0,-1.0,0.0,-0.1671,-0.9796,-0.1117,-0.1857,-0.9796,-0.0769,0.0,-1.0,0.0,-0.1421,-0.9796,-0.1421,-0.1671,-0.9796,-0.1117,0.0,-1.0,0.0,-0.1117,-0.9796,-0.1671,-0.1421,-0.9796,-0.1421,0.0,-1.0,0.0,-0.0769,-0.9796,-0.1857,-0.1117,-0.9796,-0.1671,0.0,-1.0,0.0,-0.0392,-0.9796,-0.1971,-0.0769,-0.9796,-0.1857,0.0,-1.0,0.0,0.0,-0.9796,-0.201,-0.0392,-0.9796,-0.1971,0.0,-1.0,0.0,0.0392,-0.9796,-0.1971,0.0,-0.9796,-0.201,0.0,-1.0,0.0,0.0769,-0.9796,-0.1857,0.0392,-0.9796,-0.1971,0.0,-1.0,0.0,0.1117,-0.9796,-0.1671,0.0769,-0.9796,-0.1857,0.0,-1.0,0.0,0.1421,-0.9796,-0.1421,0.1117,-0.9796,-0.1671,0.0,-1.0,0.0,0.1671,-0.9796,-0.1117,0.1421,-0.9796,-0.1421,0.0,-1.0,0.0,0.1857,-0.9796,-0.0769,0.1671,-0.9796,-0.1117,0.0,-1.0,0.0,0.1971,-0.9796,-0.0392,0.1857,-0.9796,-0.0769,0.0,-1.0,0.0,0.201,-0.9796,0.0,0.1971,-0.9796,-0.0392,0.0,-1.0,0.0,0.1971,-0.9796,0.0392,0.201,-0.9796,0.0,0.0,-1.0,0.0,0.1857,-0.9796,0.0769,0.1971,-0.9796,0.0392,0.0,-1.0,0.0,0.1671,-0.9796,0.1117,0.1857,-0.9796,0.0769,0.0,-1.0,0.0,0.1421,-0.9796,0.1421,0.1671,-0.9796,0.1117,0.0,-1.0,0.0,0.1117,-0.9796,0.1671,0.1421,-0.9796,0.1421,0.0,-1.0,0.0,0.0769,-0.9796,0.1857,0.1117,-0.9796,0.1671,0.0,-1.0,0.0,0.0392,-0.9796,0.1971,0.0769,-0.9796,0.1857,0.0,-1.0,0.0,0.0,-0.9796,0.201,0.0392,-0.9796,0.1971],"tangents":null,"uvs":[0.0,2.0,0.0,1.9375,0.0312,1.9375,0.0312,2.0,0.0312,1.9375,0.0625,1.9375,0.0625,2.0,0.0625,1.9375,0.0938,1.9375,0.0938,2.0,0.0938,1.9375,0.125,1.9375,0.125,2.0,0.125,1.9375,0.1562,1.9375,0.1562,2.0,0.1562,1.9375,0.1875,1.9375,0.1875,2.0,0.1875,1.9375,0.2187,1.9375,0.2187,2.0,0.2187,1.9375,0.25,1.9375,0.25,2.0,0.25,1.9375,0.2812,1.9375,0.2812,2.0,0.2812,1.9375,0.3125,1.9375,0.3125,2.0,0.3125,1.9375,0.3437,1.9375,0.3437,2.0,0.3437,1.9375,0.375,1.9375,0.375,2.0,0.375,1.9375,0.4062,1.9375,0.4062,2.0,0.4062,1.9375,0.4375,1.9375,0.4375,2.0,0.4375,1.9375,0.4688,1.9375,0.4688,2.0,0.4688,1.9375,0.5,1.9375,0.5,2.0,0.5,1.9375,0.5313,1.9375,0.5313,2.0,0.5313,1.9375,0.5625,1.9375,0.5625,2.0,0.5625,1.9375,0.5938,1.9375,0.5938,2.0,0.5938,1.9375,0.625,1.9375,0.625,2.0,0.625,1.9375,0.6563,1.9375,0.6563,2.0,0.6563,1.9375,0.6875,1.9375,0.6875,2.0,0.6875,1.9375,0.7188,1.9375,0.7188,2.0,0.7188,1.9375,0.75,1.9375,0.75,2.0,0.75,1.9375,0.7813,1.9375,0.7813,2.0,0.7813,1.9375,0.8125,1.9375,0.8125,2.0,0.8125,1.9375,0.8438,1.9375,0.8438,2.0,0.8438,1.9375,0.875,1.9375,0.875,2.0,0.875,1.9375,0.9063,1.9375,0.9063,2.0,0.9063,1.9375,0.9375,1.9375,0.9375,2.0,0.9375,1.9375,0.9688,1.9375,0.9688,2.0,0.9688,1.9375,1.0,1.9375,0.0,1.9375,0.0,1.875,0.0312,1.875,0.0,1.9375,0.0312,1.875,0.0312,1.9375,0.0312,1.9375,0.0312,1.875,0.0625,1.875,0.0312,1.9375,0.0625,1.875,0.0625,1.9375,0.0625,1.9375,0.0625,1.875,0.0938,1.875,0.0625,1.9375,0.0938,1.875,0.0938,1.9375,0.0938,1.9375,0.0938,1.875,0.125,1.875,0.0938,1.9375,0.125,1.875,0.125,1.9375,0.125,1.9375,0.125,1.875,0.1562,1.875,0.125,1.9375,0.1562,1.875,0.1562,1.9375,0.1562,1.9375,0.1562,1.875,0.1875,1.875,0.1562,1.9375,0.1875,1.875,0.1875,1.9375,0.1875,1.9375,0.1875,1.875,0.2187,1.875,0.1875,1.9375,0.2187,1.875,0.2187,1.9375,0.2187,1.9375,0.2187,1.875,0.25,1.875,0.2187,1.9375,0.25,1.875,0.25,1.9375,0.25,1.9375,0.25,1.875,0.2812,1.875,0.25,1.9375,0.2812,1.875,0.2812,1.9375,0.2812,1.9375,0.2812,1.875,0.3125,1.875,0.2812,1.9375,0.3125,1.875,0.3125,1.9375,0.3125,1.9375,0.3125,1.875,0.3437,1.875,0.3125,1.9375,0.3437,1.875,0.3437,1.9375,0.3437,1.9375,0.3437,1.875,0.375,1.875,0.3437,1.9375,0.375,1.875,0.375,1.9375,0.375,1.9375,0.375,1.875,0.4062,1.875,0.375,1.9375,0.4062,1.875,0.4062,1.9375,0.4062,1.9375,0.4062,1.875,0.4375,1.875,0.4062,1.9375,0.4375,1.875,0.4375,1.9375,0.4375,1.9375,0.4375,1.875,0.4688,1.875,0.4375,1.9375,0.4688,1.875,0.4688,1.9375,0.4688,1.9375,0.4688,1.875,0.5,1.875,0.4688,1.9375,0.5,1.875,0.5,1.9375,0.5,1.9375,0.5,1.875,0.5313,1.875,0.5,1.9375,0.5313,1.875,0.5313,1.9375,0.5313,1.9375,0.5313,1.875,0.5625,1.875,0.5313,1.9375,0.5625,1.875,0.5625,1.9375,0.5625,1.9375,0.5625,1.875,0.5938,1.875,0.5625,1.9375,0.5938,1.875,0.5938,1.9375,0.5938,1.9375,0.5938,1.875,0.625,1.875,0.5938,1.9375,0.625,1.875,0.625,1.9375,0.625,1.9375,0.625,1.875,0.6563,1.875,0.625,1.9375,0.6563,1.875,0.6563,1.9375,0.6563,1.9375,0.6563,1.875,0.6875,1.875,0.6563,1.9375,0.6875,1.875,0.6875,1.9375,0.6875,1.9375,0.6875,1.875,0.7188,1.875,0.6875,1.9375,0.7188,1.875,0.7188,1.9375,0.7188,1.9375,0.7188,1.875,0.75,1.875,0.7188,1.9375,0.75,1.875,0.75,1.9375,0.75,1.9375,0.75,1.875,0.7813,1.875,0.75,1.9375,0.7813,1.875,0.7813,1.9375,0.7813,1.9375,0.7813,1.875,0.8125,1.875,0.7813,1.9375,0.8125,1.875,0.8125,1.9375,0.8125,1.9375,0.8125,1.875,0.8438,1.875,0.8125,1.9375,0.8438,1.875,0.8438,1.9375,0.8438,1.9375,0.8438,1.875,0.875,1.875,0.8438,1.9375,0.875,1.875,0.875,1.9375,0.875,1.9375,0.875,1.875,0.9063,1.875,0.875,1.9375,0.9063,1.875,0.9063,1.9375,0.9063,1.9375,0.9063,1.875,0.9375,1.875,0.9063,1.9375,0.9375,1.875,0.9375,1.9375,0.9375,1.9375,0.9375,1.875,0.9688,1.875,0.9375,1.9375,0.9688,1.875,0.9688,1.9375,0.9688,1.9375,0.9688,1.875,1.0,1.875,0.9688,1.9375,1.0,1.875,1.0,1.9375,0.0,1.875,0.0,1.8125,0.0312,1.8125,0.0,1.875,0.0312,1.8125,0.0312,1.875,0.0312,1.875,0.0312,1.8125,0.0625,1.8125,0.0312,1.875,0.0625,1.8125,0.0625,1.875,0.0625,1.875,0.0625,1.8125,0.0938,1.8125,0.0625,1.875,0.0938,1.8125,0.0938,1.875,0.0938,1.875,0.0938,1.8125,0.125,1.8125,0.0938,1.875,0.125,1.8125,0.125,1.875,0.125,1.875,0.125,1.8125,0.1562,1.8125,0.125,1.875,0.1562,1.8125,0.1562,1.875,0.1562,1.875,0.1562,1.8125,0.1875,1.8125,0.1562,1.875,0.1875,1.8125,0.1875,1.875,0.1875,1.875,0.1875,1.8125,0.2187,1.8125,0.1875,1.875,0.2187,1.8125,0.2187,1.875,0.2187,1.875,0.2187,1.8125,0.25,1.8125,0.2187,1.875,0.25,1.8125,0.25,1.875,0.25,1.875,0.25,1.8125,0.2812,1.8125,0.25,1.875,0.2812,1.8125,0.2812,1.875,0.2812,1.875,0.2812,1.8125,0.3125,1.8125,0.2812,1.875,0.3125,1.8125,0.3125,1.875,0.3125,1.875,0.3125,1.8125,0.3437,1.8125,0.3125,1.875,0.3437,1.8125,0.3437,1.875,0.3437,1.875,0.3437,1.8125,0.375,1.8125,0.3437,1.875,0.375,1.8125,0.375,1.875,0.375,1.875,0.375,1.8125,0.4062,1.8125,0.375,1.875,0.4062,1.8125,0.4062,1.875,0.4062,1.875,0.4062,1.8125,0.4375,1.8125,0.4062,1.875,0.4375,1.8125,0.4375,1.875,0.4375,1.875,0.4375,1.8125,0.4688,1.8125,0.4375,1.875,0.4688,1.8125,0.4688,1.875,0.4688,1.875,0.4688,1.8125,0.5,1.8125,0.4688,1.875,0.5,1.8125,0.5,1.875,0.5,1.875,0.5,1.8125,0.5313,1.8125,0.5,1.875,0.5313,1.8125,0.5313,1.875,0.5313,1.875,0.5313,1.8125,0.5625,1.8125,0.5313,1.875,0.5625,1.8125,0.5625,1.875,0.5625,1.875,0.5625,1.8125,0.5938,1.8125,0.5625,1.875,0.5938,1.8125,0.5938,1.875,0.5938,1.875,0.5938,1.8125,0.625,1.8125,0.5938,1.875,0.625,1.8125,0.625,1.875,0.625,1.875,0.625,1.8125,0.6563,1.8125,0.625,1.875,0.6563,1.8125,0.6563,1.875,0.6563,1.875,0.6563,1.8125,0.6875,1.8125,0.6563,1.875,0.6875,1.8125,0.6875,1.875,0.6875,1.875,0.6875,1.8125,0.7188,1.8125,0.6875,1.875,0.7188,1.8125,0.7188,1.875,0.7188,1.875,0.7188,1.8125,0.75,1.8125,0.7188,1.875,0.75,1.8125,0.75,1.875,0.75,1.875,0.75,1.8125,0.7813,1.8125,0.75,1.875,0.7813,1.8125,0.7813,1.875,0.7813,1.875,0.7813,1.8125,0.8125,1.8125,0.7813,1.875,0.8125,1.8125,0.8125,1.875,0.8125,1.875,0.8125,1.8125,0.8438,1.8125,0.8125,1.875,0.8438,1.8125,0.8438,1.875,0.8438,1.875,0.8438,1.8125,0.875,1.8125,0.8438,1.875,0.875,1.8125,0.875,1.875,0.875,1.875,0.875,1.8125,0.9063,1.8125,0.875,1.875,0.9063,1.8125,0.9063,1.875,0.9063,1.875,0.9063,1.8125,0.9375,1.8125,0.9063,1.875,0.9375,1.8125,0.9375,1.875,0.9375,1.875,0.9375,1.8125,0.9688,1.8125,0.9375,1.875,0.9688,1.8125,0.9688,1.875,0.9688,1.875,0.9688,1.8125,1.0,1.8125,0.9688,1.875,1.0,1.8125,1.0,1.875,0.0,1.8125,0.0,1.75,0.0312,1.75,0.0,1.8125,0.0312,1.75,0.0312,1.8125,0.0312,1.8125,0.0312,1.75,0.0625,1.75,0.0312,1.8125,0.0625,1.75,0.0625,1.8125,0.0625,1.8125,0.0625,1.75,0.0938,1.75,0.0625,1.8125,0.0938,1.75,0.0938,1.8125,0.0938,1.8125,0.0938,1.75,0.125,1.75,0.0938,1.8125,0.125,1.75,0.125,1.8125,0.125,1.8125,0.125,1.75,0.1562,1.75,0.125,1.8125,0.1562,1.75,0.1562,1.8125,0.1562,1.8125,0.1562,1.75,0.1875,1.75,0.1562,1.8125,0.1875,1.75,0.1875,1.8125,0.1875,1.8125,0.1875,1.75,0.2187,1.75,0.1875,1.8125,0.2187,1.75,0.2187,1.8125,0.2187,1.8125,0.2187,1.75,0.25,1.75,0.2187,1.8125,0.25,1.75,0.25,1.8125,0.25,1.8125,0.25,1.75,0.2812,1.75,0.25,1.8125,0.2812,1.75,0.2812,1.8125,0.2812,1.8125,0.2812,1.75,0.3125,1.75,0.2812,1.8125,0.3125,1.75,0.3125,1.8125,0.3125,1.8125,0.3125,1.75,0.3437,1.75,0.3125,1.8125,0.3437,1.75,0.3437,1.8125,0.3437,1.8125,0.3437,1.75,0.375,1.75,0.3437,1.8125,0.375,1.75,0.375,1.8125,0.375,1.8125,0.375,1.75,0.4062,1.75,0.375,1.8125,0.4062,1.75,0.4062,1.8125,0.4062,1.8125,0.4062,1.75,0.4375,1.75,0.4062,1.8125,0.4375,1.75,0.4375,1.8125,0.4375,1.8125,0.4375,1.75,0.4688,1.75,0.4375,1.8125,0.4688,1.75,0.4688,1.8125,0.4688,1.8125,0.4688,1.75,0.5,1.75,0.4688,1.8125,0.5,1.75,0.5,1.8125,0.5,1.8125,0.5,1.75,0.5313,1.75,0.5,1.8125,0.5313,1.75,0.5313,1.8125,0.5313,1.8125,0.5313,1.75,0.5625,1.75,0.5313,1.8125,0.5625,1.75,0.5625,1.8125,0.5625,1.8125,0.5625,1.75,0.5938,1.75,0.5625,1.8125,0.5938,1.75,0.5938,1.8125,0.5938,1.8125,0.5938,1.75,0.625,1.75,0.5938,1.8125,0.625,1.75,0.625,1.8125,0.625,1.8125,0.625,1.75,0.6563,1.75,0.625,1.8125,0.6563,1.75,0.6563,1.8125,0.6563,1.8125,0.6563,1.75,0.6875,1.75,0.6563,1.8125,0.6875,1.75,0.6875,1.8125,0.6875,1.8125,0.6875,1.75,0.7188,1.75,0.6875,1.8125,0.7188,1.75,0.7188,1.8125,0.7188,1.8125,0.7188,1.75,0.75,1.75,0.7188,1.8125,0.75,1.75,0.75,1.8125,0.75,1.8125,0.75,1.75,0.7813,1.75,0.75,1.8125,0.7813,1.75,0.7813,1.8125,0.7813,1.8125,0.7813,1.75,0.8125,1.75,0.7813,1.8125,0.8125,1.75,0.8125,1.8125,0.8125,1.8125,0.8125,1.75,0.8438,1.75,0.8125,1.8125,0.8438,1.75,0.8438,1.8125,0.8438,1.8125,0.8438,1.75,0.875,1.75,0.8438,1.8125,0.875,1.75,0.875,1.8125,0.875,1.8125,0.875,1.75,0.9063,1.75,0.875,1.8125,0.9063,1.75,0.9063,1.8125,0.9063,1.8125,0.9063,1.75,0.9375,1.75,0.9063,1.8125,0.9375,1.75,0.9375,1.8125,0.9375,1.8125,0.9375,1.75,0.9688,1.75,0.9375,1.8125,0.9688,1.75,0.9688,1.8125,0.9688,1.8125,0.9688,1.75,1.0,1.75,0.9688,1.8125,1.0,1.75,1.0,1.8125,0.0,1.75,0.0,1.6875,0.0312,1.6875,0.0,1.75,0.0312,1.6875,0.0312,1.75,0.0312,1.75,0.0312,1.6875,0.0625,1.6875,0.0312,1.75,0.0625,1.6875,0.0625,1.75,0.0625,1.75,0.0625,1.6875,0.0938,1.6875,0.0625,1.75,0.0938,1.6875,0.0938,1.75,0.0938,1.75,0.0938,1.6875,0.125,1.6875,0.0938,1.75,0.125,1.6875,0.125,1.75,0.125,1.75,0.125,1.6875,0.1562,1.6875,0.125,1.75,0.1562,1.6875,0.1562,1.75,0.1562,1.75,0.1562,1.6875,0.1875,1.6875,0.1562,1.75,0.1875,1.6875,0.1875,1.75,0.1875,1.75,0.1875,1.6875,0.2187,1.6875,0.1875,1.75,0.2187,1.6875,0.2187,1.75,0.2187,1.75,0.2187,1.6875,0.25,1.6875,0.2187,1.75,0.25,1.6875,0.25,1.75,0.25,1.75,0.25,1.6875,0.2812,1.6875,0.25,1.75,0.2812,1.6875,0.2812,1.75,0.2812,1.75,0.2812,1.6875,0.3125,1.6875,0.2812,1.75,0.3125,1.6875,0.3125,1.75,0.3125,1.75,0.3125,1.6875,0.3437,1.6875,0.3125,1.75,0.3437,1.6875,0.3437,1.75,0.3437,1.75,0.3437,1.6875,0.375,1.6875,0.3437,1.75,0.375,1.6875,0.375,1.75,0.375,1.75,0.375,1.6875,0.4062,1.6875,0.375,1.75,0.4062,1.6875,0.4062,1.75,0.4062,1.75,0.4062,1.6875,0.4375,1.6875,0.4062,1.75,0.4375,1.6875,0.4375,1.75,0.4375,1.75,0.4375,1.6875,0.4688,1.6875,0.4375,1.75,0.4688,1.6875,0.4688,1.75,0.4688,1.75,0.4688,1.6875,0.5,1.6875,0.4688,1.75,0.5,1.6875,0.5,1.75,0.5,1.75,0.5,1.6875,0.5313,1.6875,0.5,1.75,0.5313,1.6875,0.5313,1.75,0.5313,1.75,0.5313,1.6875,0.5625,1.6875,0.5313,1.75,0.5625,1.6875,0.5625,1.75,0.5625,1.75,0.5625,1.6875,0.5938,1.6875,0.5625,1.75,0.5938,1.6875,0.5938,1.75,0.5938,1.75,0.5938,1.6875,0.625,1.6875,0.5938,1.75,0.625,1.6875,0.625,1.75,0.625,1.75,0.625,1.6875,0.6563,1.6875,0.625,1.75,0.6563,1.6875,0.6563,1.75,0.6563,1.75,0.6563,1.6875,0.6875,1.6875,0.6563,1.75,0.6875,1.6875,0.6875,1.75,0.6875,1.75,0.6875,1.6875,0.7188,1.6875,0.6875,1.75,0.7188,1.6875,0.7188,1.75,0.7188,1.75,0.7188,1.6875,0.75,1.6875,0.7188,1.75,0.75,1.6875,0.75,1.75,0.75,1.75,0.75,1.6875,0.7813,1.6875,0.75,1.75,0.7813,1.6875,0.7813,1.75,0.7813,1.75,0.7813,1.6875,0.8125,1.6875,0.7813,1.75,0.8125,1.6875,0.8125,1.75,0.8125,1.75,0.8125,1.6875,0.8438,1.6875,0.8125,1.75,0.8438,1.6875,0.8438,1.75,0.8438,1.75,0.8438,1.6875,0.875,1.6875,0.8438,1.75,0.875,1.6875,0.875,1.75,0.875,1.75,0.875,1.6875,0.9063,1.6875,0.875,1.75,0.9063,1.6875,0.9063,1.75,0.9063,1.75,0.9063,1.6875,0.9375,1.6875,0.9063,1.75,0.9375,1.6875,0.9375,1.75,0.9375,1.75,0.9375,1.6875,0.9688,1.6875,0.9375,1.75,0.9688,1.6875,0.9688,1.75,0.9688,1.75,0.9688,1.6875,1.0,1.6875,0.9688,1.75,1.0,1.6875,1.0,1.75,0.0,1.6875,0.0,1.625,0.0312,1.625,0.0,1.6875,0.0312,1.625,0.0312,1.6875,0.0312,1.6875,0.0312,1.625,0.0625,1.625,0.0312,1.6875,0.0625,1.625,0.0625,1.6875,0.0625,1.6875,0.0625,1.625,0.0938,1.625,0.0625,1.6875,0.0938,1.625,0.0938,1.6875,0.0938,1.6875,0.0938,1.625,0.125,1.625,0.0938,1.6875,0.125,1.625,0.125,1.6875,0.125,1.6875,0.125,1.625,0.1562,1.625,0.125,1.6875,0.1562,1.625,0.1562,1.6875,0.1562,1.6875,0.1562,1.625,0.1875,1.625,0.1562,1.6875,0.1875,1.625,0.1875,1.6875,0.1875,1.6875,0.1875,1.625,0.2187,1.625,0.1875,1.6875,0.2187,1.625,0.2187,1.6875,0.2187,1.6875,0.2187,1.625,0.25,1.625,0.2187,1.6875,0.25,1.625,0.25,1.6875,0.25,1.6875,0.25,1.625,0.2812,1.625,0.25,1.6875,0.2812,1.625,0.2812,1.6875,0.2812,1.6875,0.2812,1.625,0.3125,1.625,0.2812,1.6875,0.3125,1.625,0.3125,1.6875,0.3125,1.6875,0.3125,1.625,0.3437,1.625,0.3125,1.6875,0.3437,1.625,0.3437,1.6875,0.3437,1.6875,0.3437,1.625,0.375,1.625,0.3437,1.6875,0.375,1.625,0.375,1.6875,0.375,1.6875,0.375,1.625,0.4062,1.625,0.375,1.6875,0.4062,1.625,0.4062,1.6875,0.4062,1.6875,0.4062,1.625,0.4375,1.625,0.4062,1.6875,0.4375,1.625,0.4375,1.6875,0.4375,1.6875,0.4375,1.625,0.4688,1.625,0.4375,1.6875,0.4688,1.625,0.4688,1.6875,0.4688,1.6875,0.4688,1.625,0.5,1.625,0.4688,1.6875,0.5,1.625,0.5,1.6875,0.5,1.6875,0.5,1.625,0.5313,1.625,0.5,1.6875,0.5313,1.625,0.5313,1.6875,0.5313,1.6875,0.5313,1.625,0.5625,1.625,0.5313,1.6875,0.5625,1.625,0.5625,1.6875,0.5625,1.6875,0.5625,1.625,0.5938,1.625,0.5625,1.6875,0.5938,1.625,0.5938,1.6875,0.5938,1.6875,0.5938,1.625,0.625,1.625,0.5938,1.6875,0.625,1.625,0.625,1.6875,0.625,1.6875,0.625,1.625,0.6563,1.625,0.625,1.6875,0.6563,1.625,0.6563,1.6875,0.6563,1.6875,0.6563,1.625,0.6875,1.625,0.6563,1.6875,0.6875,1.625,0.6875,1.6875,0.6875,1.6875,0.6875,1.625,0.7188,1.625,0.6875,1.6875,0.7188,1.625,0.7188,1.6875,0.7188,1.6875,0.7188,1.625,0.75,1.625,0.7188,1.6875,0.75,1.625,0.75,1.6875,0.75,1.6875,0.75,1.625,0.7813,1.625,0.75,1.6875,0.7813,1.625,0.7813,1.6875,0.7813,1.6875,0.7813,1.625,0.8125,1.625,0.7813,1.6875,0.8125,1.625,0.8125,1.6875,0.8125,1.6875,0.8125,1.625,0.8438,1.625,0.8125,1.6875,0.8438,1.625,0.8438,1.6875,0.8438,1.6875,0.8438,1.625,0.875,1.625,0.8438,1.6875,0.875,1.625,0.875,1.6875,0.875,1.6875,0.875,1.625,0.9063,1.625,0.875,1.6875,0.9063,1.625,0.9063,1.6875,0.9063,1.6875,0.9063,1.625,0.9375,1.625,0.9063,1.6875,0.9375,1.625,0.9375,1.6875,0.9375,1.6875,0.9375,1.625,0.9688,1.625,0.9375,1.6875,0.9688,1.625,0.9688,1.6875,0.9688,1.6875,0.9688,1.625,1.0,1.625,0.9688,1.6875,1.0,1.625,1.0,1.6875,0.0,1.625,0.0,1.5625,0.0312,1.5625,0.0,1.625,0.0312,1.5625,0.0312,1.625,0.0312,1.625,0.0312,1.5625,0.0625,1.5625,0.0312,1.625,0.0625,1.5625,0.0625,1.625,0.0625,1.625,0.0625,1.5625,0.0938,1.5625,0.0625,1.625,0.0938,1.5625,0.0938,1.625,0.0938,1.625,0.0938,1.5625,0.125,1.5625,0.0938,1.625,0.125,1.5625,0.125,1.625,0.125,1.625,0.125,1.5625,0.1562,1.5625,0.125,1.625,0.1562,1.5625,0.1562,1.625,0.1562,1.625,0.1562,1.5625,0.1875,1.5625,0.1562,1.625,0.1875,1.5625,0.1875,1.625,0.1875,1.625,0.1875,1.5625,0.2187,1.5625,0.1875,1.625,0.2187,1.5625,0.2187,1.625,0.2187,1.625,0.2187,1.5625,0.25,1.5625,0.2187,1.625,0.25,1.5625,0.25,1.625,0.25,1.625,0.25,1.5625,0.2812,1.5625,0.25,1.625,0.2812,1.5625,0.2812,1.625,0.2812,1.625,0.2812,1.5625,0.3125,1.5625,0.2812,1.625,0.3125,1.5625,0.3125,1.625,0.3125,1.625,0.3125,1.5625,0.3437,1.5625,0.3125,1.625,0.3437,1.5625,0.3437,1.625,0.3437,1.625,0.3437,1.5625,0.375,1.5625,0.3437,1.625,0.375,1.5625,0.375,1.625,0.375,1.625,0.375,1.5625,0.4062,1.5625,0.375,1.625,0.4062,1.5625,0.4062,1.625,0.4062,1.625,0.4062,1.5625,0.4375,1.5625,0.4062,1.625,0.4375,1.5625,0.4375,1.625,0.4375,1.625,0.4375,1.5625,0.4688,1.5625,0.4375,1.625,0.4688,1.5625,0.4688,1.625,0.4688,1.625,0.4688,1.5625,0.5,1.5625,0.4688,1.625,0.5,1.5625,0.5,1.625,0.5,1.625,0.5,1.5625,0.5313,1.5625,0.5,1.625,0.5313,1.5625,0.5313,1.625,0.5313,1.625,0.5313,1.5625,0.5625,1.5625,0.5313,1.625,0.5625,1.5625,0.5625,1.625,0.5625,1.625,0.5625,1.5625,0.5938,1.5625,0.5625,1.625,0.5938,1.5625,0.5938,1.625,0.5938,1.625,0.5938,1.5625,0.625,1.5625,0.5938,1.625,0.625,1.5625,0.625,1.625,0.625,1.625,0.625,1.5625,0.6563,1.5625,0.625,1.625,0.6563,1.5625,0.6563,1.625,0.6563,1.625,0.6563,1.5625,0.6875,1.5625,0.6563,1.625,0.6875,1.5625,0.6875,1.625,0.6875,1.625,0.6875,1.5625,0.7188,1.5625,0.6875,1.625,0.7188,1.5625,0.7188,1.625,0.7188,1.625,0.7188,1.5625,0.75,1.5625,0.7188,1.625,0.75,1.5625,0.75,1.625,0.75,1.625,0.75,1.5625,0.7813,1.5625,0.75,1.625,0.7813,1.5625,0.7813,1.625,0.7813,1.625,0.7813,1.5625,0.8125,1.5625,0.7813,1.625,0.8125,1.5625,0.8125,1.625,0.8125,1.625,0.8125,1.5625,0.8438,1.5625,0.8125,1.625,0.8438,1.5625,0.8438,1.625,0.8438,1.625,0.8438,1.5625,0.875,1.5625,0.8438,1.625,0.875,1.5625,0.875,1.625,0.875,1.625,0.875,1.5625,0.9063,1.5625,0.875,1.625,0.9063,1.5625,0.9063,1.625,0.9063,1.625,0.9063,1.5625,0.9375,1.5625,0.9063,1.625,0.9375,1.5625,0.9375,1.625,0.9375,1.625,0.9375,1.5625,0.9688,1.5625,0.9375,1.625,0.9688,1.5625,0.9688,1.625,0.9688,1.625,0.9688,1.5625,1.0,1.5625,0.9688,1.625,1.0,1.5625,1.0,1.625,0.0,1.5625,0.0,1.5,0.0312,1.5,0.0,1.5625,0.0312,1.5,0.0312,1.5625,0.0312,1.5625,0.0312,1.5,0.0625,1.5,0.0312,1.5625,0.0625,1.5,0.0625,1.5625,0.0625,1.5625,0.0625,1.5,0.0938,1.5,0.0625,1.5625,0.0938,1.5,0.0938,1.5625,0.0938,1.5625,0.0938,1.5,0.125,1.5,0.0938,1.5625,0.125,1.5,0.125,1.5625,0.125,1.5625,0.125,1.5,0.1562,1.5,0.125,1.5625,0.1562,1.5,0.1562,1.5625,0.1562,1.5625,0.1562,1.5,0.1875,1.5,0.1562,1.5625,0.1875,1.5,0.1875,1.5625,0.1875,1.5625,0.1875,1.5,0.2187,1.5,0.1875,1.5625,0.2187,1.5,0.2187,1.5625,0.2187,1.5625,0.2187,1.5,0.25,1.5,0.2187,1.5625,0.25,1.5,0.25,1.5625,0.25,1.5625,0.25,1.5,0.2812,1.5,0.25,1.5625,0.2812,1.5,0.2812,1.5625,0.2812,1.5625,0.2812,1.5,0.3125,1.5,0.2812,1.5625,0.3125,1.5,0.3125,1.5625,0.3125,1.5625,0.3125,1.5,0.3437,1.5,0.3125,1.5625,0.3437,1.5,0.3437,1.5625,0.3437,1.5625,0.3437,1.5,0.375,1.5,0.3437,1.5625,0.375,1.5,0.375,1.5625,0.375,1.5625,0.375,1.5,0.4062,1.5,0.375,1.5625,0.4062,1.5,0.4062,1.5625,0.4062,1.5625,0.4062,1.5,0.4375,1.5,0.4062,1.5625,0.4375,1.5,0.4375,1.5625,0.4375,1.5625,0.4375,1.5,0.4688,1.5,0.4375,1.5625,0.4688,1.5,0.4688,1.5625,0.4688,1.5625,0.4688,1.5,0.5,1.5,0.4688,1.5625,0.5,1.5,0.5,1.5625,0.5,1.5625,0.5,1.5,0.5313,1.5,0.5,1.5625,0.5313,1.5,0.5313,1.5625,0.5313,1.5625,0.5313,1.5,0.5625,1.5,0.5313,1.5625,0.5625,1.5,0.5625,1.5625,0.5625,1.5625,0.5625,1.5,0.5938,1.5,0.5625,1.5625,0.5938,1.5,0.5938,1.5625,0.5938,1.5625,0.5938,1.5,0.625,1.5,0.5938,1.5625,0.625,1.5,0.625,1.5625,0.625,1.5625,0.625,1.5,0.6563,1.5,0.625,1.5625,0.6563,1.5,0.6563,1.5625,0.6563,1.5625,0.6563,1.5,0.6875,1.5,0.6563,1.5625,0.6875,1.5,0.6875,1.5625,0.6875,1.5625,0.6875,1.5,0.7188,1.5,0.6875,1.5625,0.7188,1.5,0.7188,1.5625,0.7188,1.5625,0.7188,1.5,0.75,1.5,0.7188,1.5625,0.75,1.5,0.75,1.5625,0.75,1.5625,0.75,1.5,0.7813,1.5,0.75,1.5625,0.7813,1.5,0.7813,1.5625,0.7813,1.5625,0.7813,1.5,0.8125,1.5,0.7813,1.5625,0.8125,1.5,0.8125,1.5625,0.8125,1.5625,0.8125,1.5,0.8438,1.5,0.8125,1.5625,0.8438,1.5,0.8438,1.5625,0.8438,1.5625,0.8438,1.5,0.875,1.5,0.8438,1.5625,0.875,1.5,0.875,1.5625,0.875,1.5625,0.875,1.5,0.9063,1.5,0.875,1.5625,0.9063,1.5,0.9063,1.5625,0.9063,1.5625,0.9063,1.5,0.9375,1.5,0.9063,1.5625,0.9375,1.5,0.9375,1.5625,0.9375,1.5625,0.9375,1.5,0.9688,1.5,0.9375,1.5625,0.9688,1.5,0.9688,1.5625,0.9688,1.5625,0.9688,1.5,1.0,1.5,0.9688,1.5625,1.0,1.5,1.0,1.5625,0.0,1.5,0.0,1.4375,0.0312,1.4375,0.0,1.5,0.0312,1.4375,0.0312,1.5,0.0312,1.5,0.0312,1.4375,0.0625,1.4375,0.0312,1.5,0.0625,1.4375,0.0625,1.5,0.0625,1.5,0.0625,1.4375,0.0938,1.4375,0.0625,1.5,0.0938,1.4375,0.0938,1.5,0.0938,1.5,0.0938,1.4375,0.125,1.4375,0.0938,1.5,0.125,1.4375,0.125,1.5,0.125,1.5,0.125,1.4375,0.1562,1.4375,0.125,1.5,0.1562,1.4375,0.1562,1.5,0.1562,1.5,0.1562,1.4375,0.1875,1.4375,0.1562,1.5,0.1875,1.4375,0.1875,1.5,0.1875,1.5,0.1875,1.4375,0.2187,1.4375,0.1875,1.5,0.2187,1.4375,0.2187,1.5,0.2187,1.5,0.2187,1.4375,0.25,1.4375,0.2187,1.5,0.25,1.4375,0.25,1.5,0.25,1.5,0.25,1.4375,0.2812,1.4375,0.25,1.5,0.2812,1.4375,0.2812,1.5,0.2812,1.5,0.2812,1.4375,0.3125,1.4375,0.2812,1.5,0.3125,1.4375,0.3125,1.5,0.3125,1.5,0.3125,1.4375,0.3437,1.4375,0.3125,1.5,0.3437,1.4375,0.3437,1.5,0.3437,1.5,0.3437,1.4375,0.375,1.4375,0.3437,1.5,0.375,1.4375,0.375,1.5,0.375,1.5,0.375,1.4375,0.4062,1.4375,0.375,1.5,0.4062,1.4375,0.4062,1.5,0.4062,1.5,0.4062,1.4375,0.4375,1.4375,0.4062,1.5,0.4375,1.4375,0.4375,1.5,0.4375,1.5,0.4375,1.4375,0.4688,1.4375,0.4375,1.5,0.4688,1.4375,0.4688,1.5,0.4688,1.5,0.4688,1.4375,0.5,1.4375,0.4688,1.5,0.5,1.4375,0.5,1.5,0.5,1.5,0.5,1.4375,0.5313,1.4375,0.5,1.5,0.5313,1.4375,0.5313,1.5,0.5313,1.5,0.5313,1.4375,0.5625,1.4375,0.5313,1.5,0.5625,1.4375,0.5625,1.5,0.5625,1.5,0.5625,1.4375,0.5938,1.4375,0.5625,1.5,0.5938,1.4375,0.5938,1.5,0.5938,1.5,0.5938,1.4375,0.625,1.4375,0.5938,1.5,0.625,1.4375,0.625,1.5,0.625,1.5,0.625,1.4375,0.6563,1.4375,0.625,1.5,0.6563,1.4375,0.6563,1.5,0.6563,1.5,0.6563,1.4375,0.6875,1.4375,0.6563,1.5,0.6875,1.4375,0.6875,1.5,0.6875,1.5,0.6875,1.4375,0.7188,1.4375,0.6875,1.5,0.7188,1.4375,0.7188,1.5,0.7188,1.5,0.7188,1.4375,0.75,1.4375,0.7188,1.5,0.75,1.4375,0.75,1.5,0.75,1.5,0.75,1.4375,0.7813,1.4375,0.75,1.5,0.7813,1.4375,0.7813,1.5,0.7813,1.5,0.7813,1.4375,0.8125,1.4375,0.7813,1.5,0.8125,1.4375,0.8125,1.5,0.8125,1.5,0.8125,1.4375,0.8438,1.4375,0.8125,1.5,0.8438,1.4375,0.8438,1.5,0.8438,1.5,0.8438,1.4375,0.875,1.4375,0.8438,1.5,0.875,1.4375,0.875,1.5,0.875,1.5,0.875,1.4375,0.9063,1.4375,0.875,1.5,0.9063,1.4375,0.9063,1.5,0.9063,1.5,0.9063,1.4375,0.9375,1.4375,0.9063,1.5,0.9375,1.4375,0.9375,1.5,0.9375,1.5,0.9375,1.4375,0.9688,1.4375,0.9375,1.5,0.9688,1.4375,0.9688,1.5,0.9688,1.5,0.9688,1.4375,1.0,1.4375,0.9688,1.5,1.0,1.4375,1.0,1.5,0.0,1.4375,0.0,1.375,0.0312,1.375,0.0,1.4375,0.0312,1.375,0.0312,1.4375,0.0312,1.4375,0.0312,1.375,0.0625,1.375,0.0312,1.4375,0.0625,1.375,0.0625,1.4375,0.0625,1.4375,0.0625,1.375,0.0938,1.375,0.0625,1.4375,0.0938,1.375,0.0938,1.4375,0.0938,1.4375,0.0938,1.375,0.125,1.375,0.0938,1.4375,0.125,1.375,0.125,1.4375,0.125,1.4375,0.125,1.375,0.1562,1.375,0.125,1.4375,0.1562,1.375,0.1562,1.4375,0.1562,1.4375,0.1562,1.375,0.1875,1.375,0.1562,1.4375,0.1875,1.375,0.1875,1.4375,0.1875,1.4375,0.1875,1.375,0.2187,1.375,0.1875,1.4375,0.2187,1.375,0.2187,1.4375,0.2187,1.4375,0.2187,1.375,0.25,1.375,0.2187,1.4375,0.25,1.375,0.25,1.4375,0.25,1.4375,0.25,1.375,0.2812,1.375,0.25,1.4375,0.2812,1.375,0.2812,1.4375,0.2812,1.4375,0.2812,1.375,0.3125,1.375,0.2812,1.4375,0.3125,1.375,0.3125,1.4375,0.3125,1.4375,0.3125,1.375,0.3437,1.375,0.3125,1.4375,0.3437,1.375,0.3437,1.4375,0.3437,1.4375,0.3437,1.375,0.375,1.375,0.3437,1.4375,0.375,1.375,0.375,1.4375,0.375,1.4375,0.375,1.375,0.4062,1.375,0.375,1.4375,0.4062,1.375,0.4062,1.4375,0.4062,1.4375,0.4062,1.375,0.4375,1.375,0.4062,1.4375,0.4375,1.375,0.4375,1.4375,0.4375,1.4375,0.4375,1.375,0.4688,1.375,0.4375,1.4375,0.4688,1.375,0.4688,1.4375,0.4688,1.4375,0.4688,1.375,0.5,1.375,0.4688,1.4375,0.5,1.375,0.5,1.4375,0.5,1.4375,0.5,1.375,0.5313,1.375,0.5,1.4375,0.5313,1.375,0.5313,1.4375,0.5313,1.4375,0.5313,1.375,0.5625,1.375,0.5313,1.4375,0.5625,1.375,0.5625,1.4375,0.5625,1.4375,0.5625,1.375,0.5938,1.375,0.5625,1.4375,0.5938,1.375,0.5938,1.4375,0.5938,1.4375,0.5938,1.375,0.625,1.375,0.5938,1.4375,0.625,1.375,0.625,1.4375,0.625,1.4375,0.625,1.375,0.6563,1.375,0.625,1.4375,0.6563,1.375,0.6563,1.4375,0.6563,1.4375,0.6563,1.375,0.6875,1.375,0.6563,1.4375,0.6875,1.375,0.6875,1.4375,0.6875,1.4375,0.6875,1.375,0.7188,1.375,0.6875,1.4375,0.7188,1.375,0.7188,1.4375,0.7188,1.4375,0.7188,1.375,0.75,1.375,0.7188,1.4375,0.75,1.375,0.75,1.4375,0.75,1.4375,0.75,1.375,0.7813,1.375,0.75,1.4375,0.7813,1.375,0.7813,1.4375,0.7813,1.4375,0.7813,1.375,0.8125,1.375,0.7813,1.4375,0.8125,1.375,0.8125,1.4375,0.8125,1.4375,0.8125,1.375,0.8438,1.375,0.8125,1.4375,0.8438,1.375,0.8438,1.4375,0.8438,1.4375,0.8438,1.375,0.875,1.375,0.8438,1.4375,0.875,1.375,0.875,1.4375,0.875,1.4375,0.875,1.375,0.9063,1.375,0.875,1.4375,0.9063,1.375,0.9063,1.4375,0.9063,1.4375,0.9063,1.375,0.9375,1.375,0.9063,1.4375,0.9375,1.375,0.9375,1.4375,0.9375,1.4375,0.9375,1.375,0.9688,1.375,0.9375,1.4375,0.9688,1.375,0.9688,1.4375,0.9688,1.4375,0.9688,1.375,1.0,1.375,0.9688,1.4375,1.0,1.375,1.0,1.4375,0.0,1.375,0.0,1.3125,0.0312,1.3125,0.0,1.375,0.0312,1.3125,0.0312,1.375,0.0312,1.375,0.0312,1.3125,0.0625,1.3125,0.0312,1.375,0.0625,1.3125,0.0625,1.375,0.0625,1.375,0.0625,1.3125,0.0938,1.3125,0.0625,1.375,0.0938,1.3125,0.0938,1.375,0.0938,1.375,0.0938,1.3125,0.125,1.3125,0.0938,1.375,0.125,1.3125,0.125,1.375,0.125,1.375,0.125,1.3125,0.1562,1.3125,0.125,1.375,0.1562,1.3125,0.1562,1.375,0.1562,1.375,0.1562,1.3125,0.1875,1.3125,0.1562,1.375,0.1875,1.3125,0.1875,1.375,0.1875,1.375,0.1875,1.3125,0.2187,1.3125,0.1875,1.375,0.2187,1.3125,0.2187,1.375,0.2187,1.375,0.2187,1.3125,0.25,1.3125,0.2187,1.375,0.25,1.3125,0.25,1.375,0.25,1.375,0.25,1.3125,0.2812,1.3125,0.25,1.375,0.2812,1.3125,0.2812,1.375,0.2812,1.375,0.2812,1.3125,0.3125,1.3125,0.2812,1.375,0.3125,1.3125,0.3125,1.375,0.3125,1.375,0.3125,1.3125,0.3437,1.3125,0.3125,1.375,0.3437,1.3125,0.3437,1.375,0.3437,1.375,0.3437,1.3125,0.375,1.3125,0.3437,1.375,0.375,1.3125,0.375,1.375,0.375,1.375,0.375,1.3125,0.4062,1.3125,0.375,1.375,0.4062,1.3125,0.4062,1.375,0.4062,1.375,0.4062,1.3125,0.4375,1.3125,0.4062,1.375,0.4375,1.3125,0.4375,1.375,0.4375,1.375,0.4375,1.3125,0.4688,1.3125,0.4375,1.375,0.4688,1.3125,0.4688,1.375,0.4688,1.375,0.4688,1.3125,0.5,1.3125,0.4688,1.375,0.5,1.3125,0.5,1.375,0.5,1.375,0.5,1.3125,0.5313,1.3125,0.5,1.375,0.5313,1.3125,0.5313,1.375,0.5313,1.375,0.5313,1.3125,0.5625,1.3125,0.5313,1.375,0.5625,1.3125,0.5625,1.375,0.5625,1.375,0.5625,1.3125,0.5938,1.3125,0.5625,1.375,0.5938,1.3125,0.5938,1.375,0.5938,1.375,0.5938,1.3125,0.625,1.3125,0.5938,1.375,0.625,1.3125,0.625,1.375,0.625,1.375,0.625,1.3125,0.6563,1.3125,0.625,1.375,0.6563,1.3125,0.6563,1.375,0.6563,1.375,0.6563,1.3125,0.6875,1.3125,0.6563,1.375,0.6875,1.3125,0.6875,1.375,0.6875,1.375,0.6875,1.3125,0.7188,1.3125,0.6875,1.375,0.7188,1.3125,0.7188,1.375,0.7188,1.375,0.7188,1.3125,0.75,1.3125,0.7188,1.375,0.75,1.3125,0.75,1.375,0.75,1.375,0.75,1.3125,0.7813,1.3125,0.75,1.375,0.7813,1.3125,0.7813,1.375,0.7813,1.375,0.7813,1.3125,0.8125,1.3125,0.7813,1.375,0.8125,1.3125,0.8125,1.375,0.8125,1.375,0.8125,1.3125,0.8438,1.3125,0.8125,1.375,0.8438,1.3125,0.8438,1.375,0.8438,1.375,0.8438,1.3125,0.875,1.3125,0.8438,1.375,0.875,1.3125,0.875,1.375,0.875,1.375,0.875,1.3125,0.9063,1.3125,0.875,1.375,0.9063,1.3125,0.9063,1.375,0.9063,1.375,0.9063,1.3125,0.9375,1.3125,0.9063,1.375,0.9375,1.3125,0.9375,1.375,0.9375,1.375,0.9375,1.3125,0.9688,1.3125,0.9375,1.375,0.9688,1.3125,0.9688,1.375,0.9688,1.375,0.9688,1.3125,1.0,1.3125,0.9688,1.375,1.0,1.3125,1.0,1.375,0.0,1.3125,0.0,1.25,0.0312,1.25,0.0,1.3125,0.0312,1.25,0.0312,1.3125,0.0312,1.3125,0.0312,1.25,0.0625,1.25,0.0312,1.3125,0.0625,1.25,0.0625,1.3125,0.0625,1.3125,0.0625,1.25,0.0938,1.25,0.0625,1.3125,0.0938,1.25,0.0938,1.3125,0.0938,1.3125,0.0938,1.25,0.125,1.25,0.0938,1.3125,0.125,1.25,0.125,1.3125,0.125,1.3125,0.125,1.25,0.1562,1.25,0.125,1.3125,0.1562,1.25,0.1562,1.3125,0.1562,1.3125,0.1562,1.25,0.1875,1.25,0.1562,1.3125,0.1875,1.25,0.1875,1.3125,0.1875,1.3125,0.1875,1.25,0.2187,1.25,0.1875,1.3125,0.2187,1.25,0.2187,1.3125,0.2187,1.3125,0.2187,1.25,0.25,1.25,0.2187,1.3125,0.25,1.25,0.25,1.3125,0.25,1.3125,0.25,1.25,0.2812,1.25,0.25,1.3125,0.2812,1.25,0.2812,1.3125,0.2812,1.3125,0.2812,1.25,0.3125,1.25,0.2812,1.3125,0.3125,1.25,0.3125,1.3125,0.3125,1.3125,0.3125,1.25,0.3437,1.25,0.3125,1.3125,0.3437,1.25,0.3437,1.3125,0.3437,1.3125,0.3437,1.25,0.375,1.25,0.3437,1.3125,0.375,1.25,0.375,1.3125,0.375,1.3125,0.375,1.25,0.4062,1.25,0.375,1.3125,0.4062,1.25,0.4062,1.3125,0.4062,1.3125,0.4062,1.25,0.4375,1.25,0.4062,1.3125,0.4375,1.25,0.4375,1.3125,0.4375,1.3125,0.4375,1.25,0.4688,1.25,0.4375,1.3125,0.4688,1.25,0.4688,1.3125,0.4688,1.3125,0.4688,1.25,0.5,1.25,0.4688,1.3125,0.5,1.25,0.5,1.3125,0.5,1.3125,0.5,1.25,0.5313,1.25,0.5,1.3125,0.5313,1.25,0.5313,1.3125,0.5313,1.3125,0.5313,1.25,0.5625,1.25,0.5313,1.3125,0.5625,1.25,0.5625,1.3125,0.5625,1.3125,0.5625,1.25,0.5938,1.25,0.5625,1.3125,0.5938,1.25,0.5938,1.3125,0.5938,1.3125,0.5938,1.25,0.625,1.25,0.5938,1.3125,0.625,1.25,0.625,1.3125,0.625,1.3125,0.625,1.25,0.6563,1.25,0.625,1.3125,0.6563,1.25,0.6563,1.3125,0.6563,1.3125,0.6563,1.25,0.6875,1.25,0.6563,1.3125,0.6875,1.25,0.6875,1.3125,0.6875,1.3125,0.6875,1.25,0.7188,1.25,0.6875,1.3125,0.7188,1.25,0.7188,1.3125,0.7188,1.3125,0.7188,1.25,0.75,1.25,0.7188,1.3125,0.75,1.25,0.75,1.3125,0.75,1.3125,0.75,1.25,0.7813,1.25,0.75,1.3125,0.7813,1.25,0.7813,1.3125,0.7813,1.3125,0.7813,1.25,0.8125,1.25,0.7813,1.3125,0.8125,1.25,0.8125,1.3125,0.8125,1.3125,0.8125,1.25,0.8438,1.25,0.8125,1.3125,0.8438,1.25,0.8438,1.3125,0.8438,1.3125,0.8438,1.25,0.875,1.25,0.8438,1.3125,0.875,1.25,0.875,1.3125,0.875,1.3125,0.875,1.25,0.9063,1.25,0.875,1.3125,0.9063,1.25,0.9063,1.3125,0.9063,1.3125,0.9063,1.25,0.9375,1.25,0.9063,1.3125,0.9375,1.25,0.9375,1.3125,0.9375,1.3125,0.9375,1.25,0.9688,1.25,0.9375,1.3125,0.9688,1.25,0.9688,1.3125,0.9688,1.3125,0.9688,1.25,1.0,1.25,0.9688,1.3125,1.0,1.25,1.0,1.3125,0.0,1.25,0.0,1.1875,0.0312,1.1875,0.0,1.25,0.0312,1.1875,0.0312,1.25,0.0312,1.25,0.0312,1.1875,0.0625,1.1875,0.0312,1.25,0.0625,1.1875,0.0625,1.25,0.0625,1.25,0.0625,1.1875,0.0938,1.1875,0.0625,1.25,0.0938,1.1875,0.0938,1.25,0.0938,1.25,0.0938,1.1875,0.125,1.1875,0.0938,1.25,0.125,1.1875,0.125,1.25,0.125,1.25,0.125,1.1875,0.1562,1.1875,0.125,1.25,0.1562,1.1875,0.1562,1.25,0.1562,1.25,0.1562,1.1875,0.1875,1.1875,0.1562,1.25,0.1875,1.1875,0.1875,1.25,0.1875,1.25,0.1875,1.1875,0.2187,1.1875,0.1875,1.25,0.2187,1.1875,0.2187,1.25,0.2187,1.25,0.2187,1.1875,0.25,1.1875,0.2187,1.25,0.25,1.1875,0.25,1.25,0.25,1.25,0.25,1.1875,0.2812,1.1875,0.25,1.25,0.2812,1.1875,0.2812,1.25,0.2812,1.25,0.2812,1.1875,0.3125,1.1875,0.2812,1.25,0.3125,1.1875,0.3125,1.25,0.3125,1.25,0.3125,1.1875,0.3437,1.1875,0.3125,1.25,0.3437,1.1875,0.3437,1.25,0.3437,1.25,0.3437,1.1875,0.375,1.1875,0.3437,1.25,0.375,1.1875,0.375,1.25,0.375,1.25,0.375,1.1875,0.4062,1.1875,0.375,1.25,0.4062,1.1875,0.4062,1.25,0.4062,1.25,0.4062,1.1875,0.4375,1.1875,0.4062,1.25,0.4375,1.1875,0.4375,1.25,0.4375,1.25,0.4375,1.1875,0.4688,1.1875,0.4375,1.25,0.4688,1.1875,0.4688,1.25,0.4688,1.25,0.4688,1.1875,0.5,1.1875,0.4688,1.25,0.5,1.1875,0.5,1.25,0.5,1.25,0.5,1.1875,0.5313,1.1875,0.5,1.25,0.5313,1.1875,0.5313,1.25,0.5313,1.25,0.5313,1.1875,0.5625,1.1875,0.5313,1.25,0.5625,1.1875,0.5625,1.25,0.5625,1.25,0.5625,1.1875,0.5938,1.1875,0.5625,1.25,0.5938,1.1875,0.5938,1.25,0.5938,1.25,0.5938,1.1875,0.625,1.1875,0.5938,1.25,0.625,1.1875,0.625,1.25,0.625,1.25,0.625,1.1875,0.6563,1.1875,0.625,1.25,0.6563,1.1875,0.6563,1.25,0.6563,1.25,0.6563,1.1875,0.6875,1.1875,0.6563,1.25,0.6875,1.1875,0.6875,1.25,0.6875,1.25,0.6875,1.1875,0.7188,1.1875,0.6875,1.25,0.7188,1.1875,0.7188,1.25,0.7188,1.25,0.7188,1.1875,0.75,1.1875,0.7188,1.25,0.75,1.1875,0.75,1.25,0.75,1.25,0.75,1.1875,0.7813,1.1875,0.75,1.25,0.7813,1.1875,0.7813,1.25,0.7813,1.25,0.7813,1.1875,0.8125,1.1875,0.7813,1.25,0.8125,1.1875,0.8125,1.25,0.8125,1.25,0.8125,1.1875,0.8438,1.1875,0.8125,1.25,0.8438,1.1875,0.8438,1.25,0.8438,1.25,0.8438,1.1875,0.875,1.1875,0.8438,1.25,0.875,1.1875,0.875,1.25,0.875,1.25,0.875,1.1875,0.9063,1.1875,0.875,1.25,0.9063,1.1875,0.9063,1.25,0.9063,1.25,0.9063,1.1875,0.9375,1.1875,0.9063,1.25,0.9375,1.1875,0.9375,1.25,0.9375,1.25,0.9375,1.1875,0.9688,1.1875,0.9375,1.25,0.9688,1.1875,0.9688,1.25,0.9688,1.25,0.9688,1.1875,1.0,1.1875,0.9688,1.25,1.0,1.1875,1.0,1.25,0.0,1.1875,0.0,1.125,0.0312,1.125,0.0,1.1875,0.0312,1.125,0.0312,1.1875,0.0312,1.1875,0.0312,1.125,0.0625,1.125,0.0312,1.1875,0.0625,1.125,0.0625,1.1875,0.0625,1.1875,0.0625,1.125,0.0938,1.125,0.0625,1.1875,0.0938,1.125,0.0938,1.1875,0.0938,1.1875,0.0938,1.125,0.125,1.125,0.0938,1.1875,0.125,1.125,0.125,1.1875,0.125,1.1875,0.125,1.125,0.1562,1.125,0.125,1.1875,0.1562,1.125,0.1562,1.1875,0.1562,1.1875,0.1562,1.125,0.1875,1.125,0.1562,1.1875,0.1875,1.125,0.1875,1.1875,0.1875,1.1875,0.1875,1.125,0.2187,1.125,0.1875,1.1875,0.2187,1.125,0.2187,1.1875,0.2187,1.1875,0.2187,1.125,0.25,1.125,0.2187,1.1875,0.25,1.125,0.25,1.1875,0.25,1.1875,0.25,1.125,0.2812,1.125,0.25,1.1875,0.2812,1.125,0.2812,1.1875,0.2812,1.1875,0.2812,1.125,0.3125,1.125,0.2812,1.1875,0.3125,1.125,0.3125,1.1875,0.3125,1.1875,0.3125,1.125,0.3437,1.125,0.3125,1.1875,0.3437,1.125,0.3437,1.1875,0.3437,1.1875,0.3437,1.125,0.375,1.125,0.3437,1.1875,0.375,1.125,0.375,1.1875,0.375,1.1875,0.375,1.125,0.4062,1.125,0.375,1.1875,0.4062,1.125,0.4062,1.1875,0.4062,1.1875,0.4062,1.125,0.4375,1.125,0.4062,1.1875,0.4375,1.125,0.4375,1.1875,0.4375,1.1875,0.4375,1.125,0.4688,1.125,0.4375,1.1875,0.4688,1.125,0.4688,1.1875,0.4688,1.1875,0.4688,1.125,0.5,1.125,0.4688,1.1875,0.5,1.125,0.5,1.1875,0.5,1.1875,0.5,1.125,0.5313,1.125,0.5,1.1875,0.5313,1.125,0.5313,1.1875,0.5313,1.1875,0.5313,1.125,0.5625,1.125,0.5313,1.1875,0.5625,1.125,0.5625,1.1875,0.5625,1.1875,0.5625,1.125,0.5938,1.125,0.5625,1.1875,0.5938,1.125,0.5938,1.1875,0.5938,1.1875,0.5938,1.125,0.625,1.125,0.5938,1.1875,0.625,1.125,0.625,1.1875,0.625,1.1875,0.625,1.125,0.6563,1.125,0.625,1.1875,0.6563,1.125,0.6563,1.1875,0.6563,1.1875,0.6563,1.125,0.6875,1.125,0.6563,1.1875,0.6875,1.125,0.6875,1.1875,0.6875,1.1875,0.6875,1.125,0.7188,1.125,0.6875,1.1875,0.7188,1.125,0.7188,1.1875,0.7188,1.1875,0.7188,1.125,0.75,1.125,0.7188,1.1875,0.75,1.125,0.75,1.1875,0.75,1.1875,0.75,1.125,0.7813,1.125,0.75,1.1875,0.7813,1.125,0.7813,1.1875,0.7813,1.1875,0.7813,1.125,0.8125,1.125,0.7813,1.1875,0.8125,1.125,0.8125,1.1875,0.8125,1.1875,0.8125,1.125,0.8438,1.125,0.8125,1.1875,0.8438,1.125,0.8438,1.1875,0.8438,1.1875,0.8438,1.125,0.875,1.125,0.8438,1.1875,0.875,1.125,0.875,1.1875,0.875,1.1875,0.875,1.125,0.9063,1.125,0.875,1.1875,0.9063,1.125,0.9063,1.1875,0.9063,1.1875,0.9063,1.125,0.9375,1.125,0.9063,1.1875,0.9375,1.125,0.9375,1.1875,0.9375,1.1875,0.9375,1.125,0.9688,1.125,0.9375,1.1875,0.9688,1.125,0.9688,1.1875,0.9688,1.1875,0.9688,1.125,1.0,1.125,0.9688,1.1875,1.0,1.125,1.0,1.1875,0.0,1.125,0.0,1.0625,0.0312,1.0625,0.0,1.125,0.0312,1.0625,0.0312,1.125,0.0312,1.125,0.0312,1.0625,0.0625,1.0625,0.0312,1.125,0.0625,1.0625,0.0625,1.125,0.0625,1.125,0.0625,1.0625,0.0938,1.0625,0.0625,1.125,0.0938,1.0625,0.0938,1.125,0.0938,1.125,0.0938,1.0625,0.125,1.0625,0.0938,1.125,0.125,1.0625,0.125,1.125,0.125,1.125,0.125,1.0625,0.1562,1.0625,0.125,1.125,0.1562,1.0625,0.1562,1.125,0.1562,1.125,0.1562,1.0625,0.1875,1.0625,0.1562,1.125,0.1875,1.0625,0.1875,1.125,0.1875,1.125,0.1875,1.0625,0.2187,1.0625,0.1875,1.125,0.2187,1.0625,0.2187,1.125,0.2187,1.125,0.2187,1.0625,0.25,1.0625,0.2187,1.125,0.25,1.0625,0.25,1.125,0.25,1.125,0.25,1.0625,0.2812,1.0625,0.25,1.125,0.2812,1.0625,0.2812,1.125,0.2812,1.125,0.2812,1.0625,0.3125,1.0625,0.2812,1.125,0.3125,1.0625,0.3125,1.125,0.3125,1.125,0.3125,1.0625,0.3437,1.0625,0.3125,1.125,0.3437,1.0625,0.3437,1.125,0.3437,1.125,0.3437,1.0625,0.375,1.0625,0.3437,1.125,0.375,1.0625,0.375,1.125,0.375,1.125,0.375,1.0625,0.4062,1.0625,0.375,1.125,0.4062,1.0625,0.4062,1.125,0.4062,1.125,0.4062,1.0625,0.4375,1.0625,0.4062,1.125,0.4375,1.0625,0.4375,1.125,0.4375,1.125,0.4375,1.0625,0.4688,1.0625,0.4375,1.125,0.4688,1.0625,0.4688,1.125,0.4688,1.125,0.4688,1.0625,0.5,1.0625,0.4688,1.125,0.5,1.0625,0.5,1.125,0.5,1.125,0.5,1.0625,0.5313,1.0625,0.5,1.125,0.5313,1.0625,0.5313,1.125,0.5313,1.125,0.5313,1.0625,0.5625,1.0625,0.5313,1.125,0.5625,1.0625,0.5625,1.125,0.5625,1.125,0.5625,1.0625,0.5938,1.0625,0.5625,1.125,0.5938,1.0625,0.5938,1.125,0.5938,1.125,0.5938,1.0625,0.625,1.0625,0.5938,1.125,0.625,1.0625,0.625,1.125,0.625,1.125,0.625,1.0625,0.6563,1.0625,0.625,1.125,0.6563,1.0625,0.6563,1.125,0.6563,1.125,0.6563,1.0625,0.6875,1.0625,0.6563,1.125,0.6875,1.0625,0.6875,1.125,0.6875,1.125,0.6875,1.0625,0.7188,1.0625,0.6875,1.125,0.7188,1.0625,0.7188,1.125,0.7188,1.125,0.7188,1.0625,0.75,1.0625,0.7188,1.125,0.75,1.0625,0.75,1.125,0.75,1.125,0.75,1.0625,0.7813,1.0625,0.75,1.125,0.7813,1.0625,0.7813,1.125,0.7813,1.125,0.7813,1.0625,0.8125,1.0625,0.7813,1.125,0.8125,1.0625,0.8125,1.125,0.8125,1.125,0.8125,1.0625,0.8438,1.0625,0.8125,1.125,0.8438,1.0625,0.8438,1.125,0.8438,1.125,0.8438,1.0625,0.875,1.0625,0.8438,1.125,0.875,1.0625,0.875,1.125,0.875,1.125,0.875,1.0625,0.9063,1.0625,0.875,1.125,0.9063,1.0625,0.9063,1.125,0.9063,1.125,0.9063,1.0625,0.9375,1.0625,0.9063,1.125,0.9375,1.0625,0.9375,1.125,0.9375,1.125,0.9375,1.0625,0.9688,1.0625,0.9375,1.125,0.9688,1.0625,0.9688,1.125,0.9688,1.125,0.9688,1.0625,1.0,1.0625,0.9688,1.125,1.0,1.0625,1.0,1.125,0.0,1.0,0.0312,1.0625,0.0,1.0625,0.0312,1.0,0.0625,1.0625,0.0312,1.0625,0.0625,1.0,0.0938,1.0625,0.0625,1.0625,0.0938,1.0,0.125,1.0625,0.0938,1.0625,0.125,1.0,0.1562,1.0625,0.125,1.0625,0.1562,1.0,0.1875,1.0625,0.1562,1.0625,0.1875,1.0,0.2187,1.0625,0.1875,1.0625,0.2187,1.0,0.25,1.0625,0.2187,1.0625,0.25,1.0,0.2812,1.0625,0.25,1.0625,0.2812,1.0,0.3125,1.0625,0.2812,1.0625,0.3125,1.0,0.3437,1.0625,0.3125,1.0625,0.3437,1.0,0.375,1.0625,0.3437,1.0625,0.375,1.0,0.4062,1.0625,0.375,1.0625,0.4062,1.0,0.4375,1.0625,0.4062,1.0625,0.4375,1.0,0.4688,1.0625,0.4375,1.0625,0.4688,1.0,0.5,1.0625,0.4688,1.0625,0.5,1.0,0.5313,1.0625,0.5,1.0625,0.5313,1.0,0.5625,1.0625,0.5313,1.0625,0.5625,1.0,0.5938,1.0625,0.5625,1.0625,0.5938,1.0,0.625,1.0625,0.5938,1.0625,0.625,1.0,0.6563,1.0625,0.625,1.0625,0.6563,1.0,0.6875,1.0625,0.6563,1.0625,0.6875,1.0,0.7188,1.0625,0.6875,1.0625,0.7188,1.0,0.75,1.0625,0.7188,1.0625,0.75,1.0,0.7813,1.0625,0.75,1.0625,0.7813,1.0,0.8125,1.0625,0.7813,1.0625,0.8125,1.0,0.8438,1.0625,0.8125,1.0625,0.8438,1.0,0.875,1.0625,0.8438,1.0625,0.875,1.0,0.9063,1.0625,0.875,1.0625,0.9063,1.0,0.9375,1.0625,0.9063,1.0625,0.9375,1.0,0.9688,1.0625,0.9375,1.0625,0.9688,1.0,1.0,1.0625,0.9688,1.0625],"uvs2":null,"colors":null,"hasVertexAlpha":false,"matricesIndices":null,"matricesWeights":null,"matricesIndicesExtra":null,"matricesWeightsExtra":null,"indices":[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,1984,1985,1986,1987,1988,1989,1990,1991,1992,1993,1994,1995,1996,1997,1998,1999,2000,2001,2002,2003,2004,2005,2006,2007,2008,2009,2010,2011,2012,2013,2014,2015,2016,2017,2018,2019,2020,2021,2022,2023,2024,2025,2026,2027,2028,2029,2030,2031,2032,2033,2034,2035,2036,2037,2038,2039,2040,2041,2042,2043,2044,2045,2046,2047,2048,2049,2050,2051,2052,2053,2054,2055,2056,2057,2058,2059,2060,2061,2062,2063,2064,2065,2066,2067,2068,2069,2070,2071,2072,2073,2074,2075,2076,2077,2078,2079,2080,2081,2082,2083,2084,2085,2086,2087,2088,2089,2090,2091,2092,2093,2094,2095,2096,2097,2098,2099,2100,2101,2102,2103,2104,2105,2106,2107,2108,2109,2110,2111,2112,2113,2114,2115,2116,2117,2118,2119,2120,2121,2122,2123,2124,2125,2126,2127,2128,2129,2130,2131,2132,2133,2134,2135,2136,2137,2138,2139,2140,2141,2142,2143,2144,2145,2146,2147,2148,2149,2150,2151,2152,2153,2154,2155,2156,2157,2158,2159,2160,2161,2162,2163,2164,2165,2166,2167,2168,2169,2170,2171,2172,2173,2174,2175,2176,2177,2178,2179,2180,2181,2182,2183,2184,2185,2186,2187,2188,2189,2190,2191,2192,2193,2194,2195,2196,2197,2198,2199,2200,2201,2202,2203,2204,2205,2206,2207,2208,2209,2210,2211,2212,2213,2214,2215,2216,2217,2218,2219,2220,2221,2222,2223,2224,2225,2226,2227,2228,2229,2230,2231,2232,2233,2234,2235,2236,2237,2238,2239,2240,2241,2242,2243,2244,2245,2246,2247,2248,2249,2250,2251,2252,2253,2254,2255,2256,2257,2258,2259,2260,2261,2262,2263,2264,2265,2266,2267,2268,2269,2270,2271,2272,2273,2274,2275,2276,2277,2278,2279,2280,2281,2282,2283,2284,2285,2286,2287,2288,2289,2290,2291,2292,2293,2294,2295,2296,2297,2298,2299,2300,2301,2302,2303,2304,2305,2306,2307,2308,2309,2310,2311,2312,2313,2314,2315,2316,2317,2318,2319,2320,2321,2322,2323,2324,2325,2326,2327,2328,2329,2330,2331,2332,2333,2334,2335,2336,2337,2338,2339,2340,2341,2342,2343,2344,2345,2346,2347,2348,2349,2350,2351,2352,2353,2354,2355,2356,2357,2358,2359,2360,2361,2362,2363,2364,2365,2366,2367,2368,2369,2370,2371,2372,2373,2374,2375,2376,2377,2378,2379,2380,2381,2382,2383,2384,2385,2386,2387,2388,2389,2390,2391,2392,2393,2394,2395,2396,2397,2398,2399,2400,2401,2402,2403,2404,2405,2406,2407,2408,2409,2410,2411,2412,2413,2414,2415,2416,2417,2418,2419,2420,2421,2422,2423,2424,2425,2426,2427,2428,2429,2430,2431,2432,2433,2434,2435,2436,2437,2438,2439,2440,2441,2442,2443,2444,2445,2446,2447,2448,2449,2450,2451,2452,2453,2454,2455,2456,2457,2458,2459,2460,2461,2462,2463,2464,2465,2466,2467,2468,2469,2470,2471,2472,2473,2474,2475,2476,2477,2478,2479,2480,2481,2482,2483,2484,2485,2486,2487,2488,2489,2490,2491,2492,2493,2494,2495,2496,2497,2498,2499,2500,2501,2502,2503,2504,2505,2506,2507,2508,2509,2510,2511,2512,2513,2514,2515,2516,2517,2518,2519,2520,2521,2522,2523,2524,2525,2526,2527,2528,2529,2530,2531,2532,2533,2534,2535,2536,2537,2538,2539,2540,2541,2542,2543,2544,2545,2546,2547,2548,2549,2550,2551,2552,2553,2554,2555,2556,2557,2558,2559,2560,2561,2562,2563,2564,2565,2566,2567,2568,2569,2570,2571,2572,2573,2574,2575,2576,2577,2578,2579,2580,2581,2582,2583,2584,2585,2586,2587,2588,2589,2590,2591,2592,2593,2594,2595,2596,2597,2598,2599,2600,2601,2602,2603,2604,2605,2606,2607,2608,2609,2610,2611,2612,2613,2614,2615,2616,2617,2618,2619,2620,2621,2622,2623,2624,2625,2626,2627,2628,2629,2630,2631,2632,2633,2634,2635,2636,2637,2638,2639,2640,2641,2642,2643,2644,2645,2646,2647,2648,2649,2650,2651,2652,2653,2654,2655,2656,2657,2658,2659,2660,2661,2662,2663,2664,2665,2666,2667,2668,2669,2670,2671,2672,2673,2674,2675,2676,2677,2678,2679,2680,2681,2682,2683,2684,2685,2686,2687,2688,2689,2690,2691,2692,2693,2694,2695,2696,2697,2698,2699,2700,2701,2702,2703,2704,2705,2706,2707,2708,2709,2710,2711,2712,2713,2714,2715,2716,2717,2718,2719,2720,2721,2722,2723,2724,2725,2726,2727,2728,2729,2730,2731,2732,2733,2734,2735,2736,2737,2738,2739,2740,2741,2742,2743,2744,2745,2746,2747,2748,2749,2750,2751,2752,2753,2754,2755,2756,2757,2758,2759,2760,2761,2762,2763,2764,2765,2766,2767,2768,2769,2770,2771,2772,2773,2774,2775,2776,2777,2778,2779,2780,2781,2782,2783,2784,2785,2786,2787,2788,2789,2790,2791,2792,2793,2794,2795,2796,2797,2798,2799,2800,2801,2802,2803,2804,2805,2806,2807,2808,2809,2810,2811,2812,2813,2814,2815,2816,2817,2818,2819,2820,2821,2822,2823,2824,2825,2826,2827,2828,2829,2830,2831,2832,2833,2834,2835,2836,2837,2838,2839,2840,2841,2842,2843,2844,2845,2846,2847,2848,2849,2850,2851,2852,2853,2854,2855,2856,2857,2858,2859,2860,2861,2862,2863,2864,2865,2866,2867,2868,2869,2870,2871,2872,2873,2874,2875,2876,2877,2878,2879],"receiveShadows":true,"infiniteDistance":false,"billboardMode":0,"visibility":1.0,"subMeshes":[{"materialIndex":0,"verticesStart":0,"verticesCount":2880,"indexStart":0,"indexCount":2880}],"instances":null,"skeletonId":-1,"numBoneInfluencers":4,"applyFog":true,"lodMeshIds":null,"lodDistances":null,"lodCoverages":null,"rotation":null,"scaling":[1.0,1.0,1.0],"rotationQuaternion":[0.0,0.7071,0.0,0.7071],"actions":null,"checkCollisions":false,"pickable":false,"showBoundingBox":false,"showSubMeshesBoundingBox":false,"alphaIndex":1000,"physicsImpostor":0,"physicsMass":0.0,"physicsFriction":0.0,"physicsRestitution":0.0,"name":"StandardSurfaceMesh","id":"57bbf667-4bf9-4453-8787-dd1f8673b543","parentId":null,"position":[6.0,0.0,0.0],"animations":[],"autoAnimate":true,"autoAnimateFrom":0,"autoAnimateTo":100,"autoAnimateLoop":true,"metadata":null}],"sounds":[],"materials":[{"customType":"BABYLON.StandardMaterial","ambient":[1.0,0.0,0.0],"diffuse":[1.0,0.0,0.0],"specular":[0.0,0.0,0.0],"emissive":[0.0,0.0,0.0],"specularPower":25.6,"diffuseTexture":{"name":"25500.png","level":1.0,"hasAlpha":true,"getAlphaFromRGB":false,"coordinatesMode":0,"isCube":false,"uOffset":0.0,"vOffset":0.0,"uScale":1.0,"vScale":-1.0,"uRotationCenter":0.0,"vRotationCenter":0.0,"wRotationCenter":0.5,"invertY":false,"uAng":0.0,"vAng":0.0,"wAng":0.0,"wrapU":1,"wrapV":1,"coordinatesIndex":0,"isRenderTarget":false,"renderTargetSize":0,"mirrorPlane":null,"renderList":null,"animations":null,"extensions":null,"samplingMode":3},"diffuseFresnelParameters":null,"ambientTexture":null,"opacityTexture":null,"opacityFresnelParameters":null,"reflectionTexture":null,"reflectionFresnelParameters":null,"emissiveTexture":null,"lightmapTexture":null,"useLightmapAsShadowmap":false,"emissiveFresnelParameters":null,"specularTexture":null,"bumpTexture":null,"useSpecularOverAlpha":true,"disableLighting":false,"useEmissiveAsIllumination":false,"linkEmissiveWithDiffuse":true,"twoSidedLighting":false,"useGlossinessFromSpecularMapAlpha":false,"alphaCutOff":0.5,"name":"StandardMaterialMask","id":"814decf0-a4ea-454e-a404-277528478ef5","backFaceCulling":true,"wireframe":false,"alpha":1.0,"alphaMode":2,"maxSimultaneousLights":4,"metadata":{}},{"customType":"BABYLON.PBRMetallicRoughnessMaterial","baseColor":[0.0,1.0,0.0],"baseTexture":{"name":"02550.png","level":1.0,"hasAlpha":true,"getAlphaFromRGB":false,"coordinatesMode":0,"isCube":false,"uOffset":0.0,"vOffset":0.0,"uScale":1.0,"vScale":-1.0,"uRotationCenter":0.0,"vRotationCenter":0.0,"wRotationCenter":0.5,"invertY":false,"uAng":0.0,"vAng":0.0,"wAng":0.0,"wrapU":1,"wrapV":1,"coordinatesIndex":0,"isRenderTarget":false,"renderTargetSize":0,"mirrorPlane":null,"renderList":null,"animations":null,"extensions":null,"samplingMode":3},"metallic":0.0,"roughness":0.0,"metallicRoughnessTexture":null,"disableLighting":false,"invertNormalMapX":false,"invertNormalMapY":false,"normalTexture":null,"emissive":[0.0,0.0,0.0],"emissiveTexture":null,"occlusionStrength":1.0,"occlusionTexture":null,"alphaCutOff":0.5,"transparencyMode":1,"doubleSided":false,"clearCoat":{"isEnabled":false,"intensity":1.0,"roughness":0.0,"indexOfRefraction":1.5,"texture":null,"bumpTexture":null,"isTintEnabled":false,"tintColor":[1.0,1.0,1.0],"tintThickness":1.0,"tintTexture":null},"name":"PhysicalMaterialMask","id":"e8d366dc-9a25-4d46-80f2-60a95ec88505","backFaceCulling":true,"wireframe":false,"alpha":1.0,"alphaMode":2,"maxSimultaneousLights":4,"metadata":{}},{"customType":"BABYLON.PBRMetallicRoughnessMaterial","baseColor":[1.0,1.0,1.0],"baseTexture":{"name":"00204.png","level":1.0,"hasAlpha":true,"getAlphaFromRGB":false,"coordinatesMode":0,"isCube":false,"uOffset":0.0,"vOffset":0.0,"uScale":1.0,"vScale":-1.0,"uRotationCenter":0.0,"vRotationCenter":0.0,"wRotationCenter":0.5,"invertY":false,"uAng":0.0,"vAng":0.0,"wAng":0.0,"wrapU":1,"wrapV":1,"coordinatesIndex":0,"isRenderTarget":false,"renderTargetSize":0,"mirrorPlane":null,"renderList":null,"animations":null,"extensions":null,"samplingMode":3},"metallic":0.0,"roughness":0.1,"metallicRoughnessTexture":null,"disableLighting":false,"invertNormalMapX":false,"invertNormalMapY":false,"normalTexture":null,"emissive":[0.0,0.0,0.0],"emissiveTexture":null,"occlusionStrength":1.0,"occlusionTexture":null,"alphaCutOff":0.5,"transparencyMode":1,"doubleSided":false,"clearCoat":{"isEnabled":false,"intensity":1.0,"roughness":0.0,"indexOfRefraction":1.5,"texture":null,"bumpTexture":null,"isTintEnabled":false,"tintColor":[1.0,1.0,1.0],"tintThickness":1.0,"tintTexture":null},"name":"StandardSurfaceMaterialMask","id":"65f1f395-ccb5-4643-a9af-5dc53b87420f","backFaceCulling":true,"wireframe":false,"alpha":1.0,"alphaMode":2,"maxSimultaneousLights":4,"metadata":{}}],"multiMaterials":[],"particleSystems":null,"lensFlareSystems":null,"shadowGenerators":[],"skeletons":[],"actions":null,"metadata":null,"workerCollisions":false}
\ No newline at end of file
diff --git a/3ds Max/Samples/babylon/BabylonMaterialAttributes/TransparencyMode/Mask/Mask.binary.babylon b/3ds Max/Samples/babylon/BabylonMaterialAttributes/TransparencyMode/Mask/Mask.binary.babylon
new file mode 100644
index 00000000..a9d9049a
--- /dev/null
+++ b/3ds Max/Samples/babylon/BabylonMaterialAttributes/TransparencyMode/Mask/Mask.binary.babylon
@@ -0,0 +1,658 @@
+{
+ "producer": {
+ "name": "3dsmax",
+ "version": "2019",
+ "exporter_version": "1.5.0",
+ "file": "Mask.babylon"
+ },
+ "autoClear": true,
+ "clearColor": [
+ 0.0,
+ 0.0,
+ 0.0
+ ],
+ "ambientColor": [
+ 0.0,
+ 0.0,
+ 0.0
+ ],
+ "fogMode": 0,
+ "fogColor": null,
+ "fogStart": 0.0,
+ "fogEnd": 0.0,
+ "fogDensity": 0.0,
+ "gravity": [
+ 0.0,
+ 0.0,
+ 0.0
+ ],
+ "physicsEngine": null,
+ "physicsEnabled": false,
+ "physicsGravity": null,
+ "lights": [
+ {
+ "direction": [
+ 0.0,
+ 1.0,
+ 0.0
+ ],
+ "type": 3,
+ "diffuse": [
+ 1.0,
+ 1.0,
+ 1.0
+ ],
+ "specular": [
+ 1.0,
+ 1.0,
+ 1.0
+ ],
+ "intensity": 1.0,
+ "range": 3.40282347E+38,
+ "exponent": 0.0,
+ "angle": 0.0,
+ "groundColor": [
+ 0.0,
+ 0.0,
+ 0.0
+ ],
+ "excludedMeshesIds": null,
+ "includedOnlyMeshesIds": null,
+ "lightmapMode": null,
+ "falloffType": null,
+ "name": "Default light",
+ "id": "395bc502-f06b-42d7-a1c5-0f2218e9dbdd",
+ "parentId": null,
+ "position": [
+ 0.0,
+ 0.0,
+ 0.0
+ ],
+ "animations": null,
+ "autoAnimate": false,
+ "autoAnimateFrom": 0,
+ "autoAnimateTo": 0,
+ "autoAnimateLoop": false,
+ "metadata": null
+ }
+ ],
+ "meshes": [
+ {
+ "materialId": "814decf0-a4ea-454e-a404-277528478ef5",
+ "isEnabled": true,
+ "isVisible": true,
+ "positions": null,
+ "normals": null,
+ "tangents": null,
+ "uvs": null,
+ "uvs2": null,
+ "colors": null,
+ "hasVertexAlpha": false,
+ "matricesIndices": null,
+ "matricesWeights": null,
+ "matricesIndicesExtra": null,
+ "matricesWeightsExtra": null,
+ "indices": null,
+ "receiveShadows": true,
+ "infiniteDistance": false,
+ "billboardMode": 0,
+ "visibility": 1.0,
+ "subMeshes": null,
+ "instances": null,
+ "skeletonId": -1,
+ "numBoneInfluencers": 4,
+ "applyFog": true,
+ "lodMeshIds": null,
+ "lodDistances": null,
+ "lodCoverages": null,
+ "rotation": null,
+ "scaling": [
+ 1.0,
+ 1.0,
+ 1.0
+ ],
+ "rotationQuaternion": [
+ 0.0,
+ 0.7071,
+ 0.0,
+ 0.7071
+ ],
+ "actions": null,
+ "checkCollisions": false,
+ "pickable": false,
+ "showBoundingBox": false,
+ "showSubMeshesBoundingBox": false,
+ "alphaIndex": 1000,
+ "physicsImpostor": 0,
+ "physicsMass": 0.0,
+ "physicsFriction": 0.0,
+ "physicsRestitution": 0.0,
+ "name": "StandardMesh",
+ "id": "113f2dbc-dce1-4faa-be71-35277504433b",
+ "parentId": null,
+ "position": [
+ 0.0,
+ 0.0,
+ 0.0
+ ],
+ "animations": [],
+ "autoAnimate": true,
+ "autoAnimateFrom": 0,
+ "autoAnimateTo": 100,
+ "autoAnimateLoop": true,
+ "metadata": null,
+ "boundingBoxMinimum": [
+ -1.0,
+ -1.0,
+ -1.0
+ ],
+ "boundingBoxMaximum": [
+ 1.0,
+ 1.0,
+ 1.0
+ ],
+ "delayLoadingFile": "Mask.StandardMesh.113f2dbc-dce1-4faa-be71-35277504433b.babylonbinarymeshdata",
+ "hasUVs": true,
+ "_binaryInfo": {
+ "positionsAttrDesc": {
+ "count": 8640,
+ "stride": 3,
+ "offset": 0,
+ "dataType": 1
+ },
+ "normalsAttrDesc": {
+ "count": 8640,
+ "stride": 3,
+ "offset": 34560,
+ "dataType": 1
+ },
+ "uvsAttrDesc": {
+ "count": 5760,
+ "stride": 2,
+ "offset": 69120,
+ "dataType": 1
+ },
+ "indicesAttrDesc": {
+ "count": 2880,
+ "stride": 1,
+ "offset": 92160,
+ "dataType": 0
+ },
+ "subMeshesAttrDesc": {
+ "count": 1,
+ "stride": 5,
+ "offset": 103680,
+ "dataType": 0
+ }
+ }
+ },
+ {
+ "materialId": "e8d366dc-9a25-4d46-80f2-60a95ec88505",
+ "isEnabled": true,
+ "isVisible": true,
+ "positions": null,
+ "normals": null,
+ "tangents": null,
+ "uvs": null,
+ "uvs2": null,
+ "colors": null,
+ "hasVertexAlpha": false,
+ "matricesIndices": null,
+ "matricesWeights": null,
+ "matricesIndicesExtra": null,
+ "matricesWeightsExtra": null,
+ "indices": null,
+ "receiveShadows": true,
+ "infiniteDistance": false,
+ "billboardMode": 0,
+ "visibility": 1.0,
+ "subMeshes": null,
+ "instances": null,
+ "skeletonId": -1,
+ "numBoneInfluencers": 4,
+ "applyFog": true,
+ "lodMeshIds": null,
+ "lodDistances": null,
+ "lodCoverages": null,
+ "rotation": null,
+ "scaling": [
+ 1.0,
+ 1.0,
+ 1.0
+ ],
+ "rotationQuaternion": [
+ 0.0,
+ 0.7071,
+ 0.0,
+ 0.7071
+ ],
+ "actions": null,
+ "checkCollisions": false,
+ "pickable": false,
+ "showBoundingBox": false,
+ "showSubMeshesBoundingBox": false,
+ "alphaIndex": 1000,
+ "physicsImpostor": 0,
+ "physicsMass": 0.0,
+ "physicsFriction": 0.0,
+ "physicsRestitution": 0.0,
+ "name": "PhysicalMesh",
+ "id": "311381f0-8487-4fc5-89fa-7d01dfda5e2f",
+ "parentId": null,
+ "position": [
+ 3.0,
+ 0.0,
+ 0.0
+ ],
+ "animations": [],
+ "autoAnimate": true,
+ "autoAnimateFrom": 0,
+ "autoAnimateTo": 100,
+ "autoAnimateLoop": true,
+ "metadata": null,
+ "boundingBoxMinimum": [
+ -1.0,
+ -1.0,
+ -1.0
+ ],
+ "boundingBoxMaximum": [
+ 1.0,
+ 1.0,
+ 1.0
+ ],
+ "delayLoadingFile": "Mask.PhysicalMesh.311381f0-8487-4fc5-89fa-7d01dfda5e2f.babylonbinarymeshdata",
+ "hasUVs": true,
+ "_binaryInfo": {
+ "positionsAttrDesc": {
+ "count": 8640,
+ "stride": 3,
+ "offset": 0,
+ "dataType": 1
+ },
+ "normalsAttrDesc": {
+ "count": 8640,
+ "stride": 3,
+ "offset": 34560,
+ "dataType": 1
+ },
+ "uvsAttrDesc": {
+ "count": 5760,
+ "stride": 2,
+ "offset": 69120,
+ "dataType": 1
+ },
+ "indicesAttrDesc": {
+ "count": 2880,
+ "stride": 1,
+ "offset": 92160,
+ "dataType": 0
+ },
+ "subMeshesAttrDesc": {
+ "count": 1,
+ "stride": 5,
+ "offset": 103680,
+ "dataType": 0
+ }
+ }
+ },
+ {
+ "materialId": "65f1f395-ccb5-4643-a9af-5dc53b87420f",
+ "isEnabled": true,
+ "isVisible": true,
+ "positions": null,
+ "normals": null,
+ "tangents": null,
+ "uvs": null,
+ "uvs2": null,
+ "colors": null,
+ "hasVertexAlpha": false,
+ "matricesIndices": null,
+ "matricesWeights": null,
+ "matricesIndicesExtra": null,
+ "matricesWeightsExtra": null,
+ "indices": null,
+ "receiveShadows": true,
+ "infiniteDistance": false,
+ "billboardMode": 0,
+ "visibility": 1.0,
+ "subMeshes": null,
+ "instances": null,
+ "skeletonId": -1,
+ "numBoneInfluencers": 4,
+ "applyFog": true,
+ "lodMeshIds": null,
+ "lodDistances": null,
+ "lodCoverages": null,
+ "rotation": null,
+ "scaling": [
+ 1.0,
+ 1.0,
+ 1.0
+ ],
+ "rotationQuaternion": [
+ 0.0,
+ 0.7071,
+ 0.0,
+ 0.7071
+ ],
+ "actions": null,
+ "checkCollisions": false,
+ "pickable": false,
+ "showBoundingBox": false,
+ "showSubMeshesBoundingBox": false,
+ "alphaIndex": 1000,
+ "physicsImpostor": 0,
+ "physicsMass": 0.0,
+ "physicsFriction": 0.0,
+ "physicsRestitution": 0.0,
+ "name": "StandardSurfaceMesh",
+ "id": "57bbf667-4bf9-4453-8787-dd1f8673b543",
+ "parentId": null,
+ "position": [
+ 6.0,
+ 0.0,
+ 0.0
+ ],
+ "animations": [],
+ "autoAnimate": true,
+ "autoAnimateFrom": 0,
+ "autoAnimateTo": 100,
+ "autoAnimateLoop": true,
+ "metadata": null,
+ "boundingBoxMinimum": [
+ -1.0,
+ -1.0,
+ -1.0
+ ],
+ "boundingBoxMaximum": [
+ 1.0,
+ 1.0,
+ 1.0
+ ],
+ "delayLoadingFile": "Mask.StandardSurfaceMesh.57bbf667-4bf9-4453-8787-dd1f8673b543.babylonbinarymeshdata",
+ "hasUVs": true,
+ "_binaryInfo": {
+ "positionsAttrDesc": {
+ "count": 8640,
+ "stride": 3,
+ "offset": 0,
+ "dataType": 1
+ },
+ "normalsAttrDesc": {
+ "count": 8640,
+ "stride": 3,
+ "offset": 34560,
+ "dataType": 1
+ },
+ "uvsAttrDesc": {
+ "count": 5760,
+ "stride": 2,
+ "offset": 69120,
+ "dataType": 1
+ },
+ "indicesAttrDesc": {
+ "count": 2880,
+ "stride": 1,
+ "offset": 92160,
+ "dataType": 0
+ },
+ "subMeshesAttrDesc": {
+ "count": 1,
+ "stride": 5,
+ "offset": 103680,
+ "dataType": 0
+ }
+ }
+ }
+ ],
+ "sounds": [],
+ "materials": [
+ {
+ "customType": "BABYLON.StandardMaterial",
+ "ambient": [
+ 1.0,
+ 0.0,
+ 0.0
+ ],
+ "diffuse": [
+ 1.0,
+ 0.0,
+ 0.0
+ ],
+ "specular": [
+ 0.0,
+ 0.0,
+ 0.0
+ ],
+ "emissive": [
+ 0.0,
+ 0.0,
+ 0.0
+ ],
+ "specularPower": 25.6,
+ "diffuseTexture": {
+ "name": "25500.png",
+ "level": 1.0,
+ "hasAlpha": true,
+ "getAlphaFromRGB": false,
+ "coordinatesMode": 0,
+ "isCube": false,
+ "uOffset": 0.0,
+ "vOffset": 0.0,
+ "uScale": 1.0,
+ "vScale": -1.0,
+ "uRotationCenter": 0.0,
+ "vRotationCenter": 0.0,
+ "wRotationCenter": 0.5,
+ "invertY": false,
+ "uAng": 0.0,
+ "vAng": 0.0,
+ "wAng": 0.0,
+ "wrapU": 1,
+ "wrapV": 1,
+ "coordinatesIndex": 0,
+ "isRenderTarget": false,
+ "renderTargetSize": 0,
+ "mirrorPlane": null,
+ "renderList": null,
+ "animations": null,
+ "extensions": null,
+ "samplingMode": 3
+ },
+ "diffuseFresnelParameters": null,
+ "ambientTexture": null,
+ "opacityTexture": null,
+ "opacityFresnelParameters": null,
+ "reflectionTexture": null,
+ "reflectionFresnelParameters": null,
+ "emissiveTexture": null,
+ "lightmapTexture": null,
+ "useLightmapAsShadowmap": false,
+ "emissiveFresnelParameters": null,
+ "specularTexture": null,
+ "bumpTexture": null,
+ "useSpecularOverAlpha": true,
+ "disableLighting": false,
+ "useEmissiveAsIllumination": false,
+ "linkEmissiveWithDiffuse": true,
+ "twoSidedLighting": false,
+ "useGlossinessFromSpecularMapAlpha": false,
+ "alphaCutOff": 0.5,
+ "name": "StandardMaterialMask",
+ "id": "814decf0-a4ea-454e-a404-277528478ef5",
+ "backFaceCulling": true,
+ "wireframe": false,
+ "alpha": 1.0,
+ "alphaMode": 2,
+ "maxSimultaneousLights": 4,
+ "metadata": {}
+ },
+ {
+ "customType": "BABYLON.PBRMetallicRoughnessMaterial",
+ "baseColor": [
+ 0.0,
+ 1.0,
+ 0.0
+ ],
+ "baseTexture": {
+ "name": "02550.png",
+ "level": 1.0,
+ "hasAlpha": true,
+ "getAlphaFromRGB": false,
+ "coordinatesMode": 0,
+ "isCube": false,
+ "uOffset": 0.0,
+ "vOffset": 0.0,
+ "uScale": 1.0,
+ "vScale": -1.0,
+ "uRotationCenter": 0.0,
+ "vRotationCenter": 0.0,
+ "wRotationCenter": 0.5,
+ "invertY": false,
+ "uAng": 0.0,
+ "vAng": 0.0,
+ "wAng": 0.0,
+ "wrapU": 1,
+ "wrapV": 1,
+ "coordinatesIndex": 0,
+ "isRenderTarget": false,
+ "renderTargetSize": 0,
+ "mirrorPlane": null,
+ "renderList": null,
+ "animations": null,
+ "extensions": null,
+ "samplingMode": 3
+ },
+ "metallic": 0.0,
+ "roughness": 0.0,
+ "metallicRoughnessTexture": null,
+ "disableLighting": false,
+ "invertNormalMapX": false,
+ "invertNormalMapY": false,
+ "normalTexture": null,
+ "emissive": [
+ 0.0,
+ 0.0,
+ 0.0
+ ],
+ "emissiveTexture": null,
+ "occlusionStrength": 1.0,
+ "occlusionTexture": null,
+ "alphaCutOff": 0.5,
+ "transparencyMode": 1,
+ "doubleSided": false,
+ "clearCoat": {
+ "isEnabled": false,
+ "intensity": 1.0,
+ "roughness": 0.0,
+ "indexOfRefraction": 1.5,
+ "texture": null,
+ "bumpTexture": null,
+ "isTintEnabled": false,
+ "tintColor": [
+ 1.0,
+ 1.0,
+ 1.0
+ ],
+ "tintThickness": 1.0,
+ "tintTexture": null
+ },
+ "name": "PhysicalMaterialMask",
+ "id": "e8d366dc-9a25-4d46-80f2-60a95ec88505",
+ "backFaceCulling": true,
+ "wireframe": false,
+ "alpha": 1.0,
+ "alphaMode": 2,
+ "maxSimultaneousLights": 4,
+ "metadata": {}
+ },
+ {
+ "customType": "BABYLON.PBRMetallicRoughnessMaterial",
+ "baseColor": [
+ 1.0,
+ 1.0,
+ 1.0
+ ],
+ "baseTexture": {
+ "name": "00204.png",
+ "level": 1.0,
+ "hasAlpha": true,
+ "getAlphaFromRGB": false,
+ "coordinatesMode": 0,
+ "isCube": false,
+ "uOffset": 0.0,
+ "vOffset": 0.0,
+ "uScale": 1.0,
+ "vScale": -1.0,
+ "uRotationCenter": 0.0,
+ "vRotationCenter": 0.0,
+ "wRotationCenter": 0.5,
+ "invertY": false,
+ "uAng": 0.0,
+ "vAng": 0.0,
+ "wAng": 0.0,
+ "wrapU": 1,
+ "wrapV": 1,
+ "coordinatesIndex": 0,
+ "isRenderTarget": false,
+ "renderTargetSize": 0,
+ "mirrorPlane": null,
+ "renderList": null,
+ "animations": null,
+ "extensions": null,
+ "samplingMode": 3
+ },
+ "metallic": 0.0,
+ "roughness": 0.1,
+ "metallicRoughnessTexture": null,
+ "disableLighting": false,
+ "invertNormalMapX": false,
+ "invertNormalMapY": false,
+ "normalTexture": null,
+ "emissive": [
+ 0.0,
+ 0.0,
+ 0.0
+ ],
+ "emissiveTexture": null,
+ "occlusionStrength": 1.0,
+ "occlusionTexture": null,
+ "alphaCutOff": 0.5,
+ "transparencyMode": 1,
+ "doubleSided": false,
+ "clearCoat": {
+ "isEnabled": false,
+ "intensity": 1.0,
+ "roughness": 0.0,
+ "indexOfRefraction": 1.5,
+ "texture": null,
+ "bumpTexture": null,
+ "isTintEnabled": false,
+ "tintColor": [
+ 1.0,
+ 1.0,
+ 1.0
+ ],
+ "tintThickness": 1.0,
+ "tintTexture": null
+ },
+ "name": "StandardSurfaceMaterialMask",
+ "id": "65f1f395-ccb5-4643-a9af-5dc53b87420f",
+ "backFaceCulling": true,
+ "wireframe": false,
+ "alpha": 1.0,
+ "alphaMode": 2,
+ "maxSimultaneousLights": 4,
+ "metadata": {}
+ }
+ ],
+ "multiMaterials": [],
+ "particleSystems": null,
+ "lensFlareSystems": null,
+ "shadowGenerators": [],
+ "skeletons": [],
+ "actions": null,
+ "metadata": null,
+ "workerCollisions": false,
+ "useDelayedTextureLoading": true
+}
\ No newline at end of file
diff --git a/3ds Max/Samples/babylon/BabylonMaterialAttributes/TransparencyMode/Mask/gradation_horizontal.jpg b/3ds Max/Samples/babylon/BabylonMaterialAttributes/TransparencyMode/Mask/gradation_horizontal.jpg
new file mode 100644
index 00000000..7437068c
Binary files /dev/null and b/3ds Max/Samples/babylon/BabylonMaterialAttributes/TransparencyMode/Mask/gradation_horizontal.jpg differ
diff --git a/3ds Max/Samples/babylon/BabylonMaterialAttributes/TransparencyMode/Opaque/Opaque.PhysicalMesh.311381f0-8487-4fc5-89fa-7d01dfda5e2f.babylonbinarymeshdata b/3ds Max/Samples/babylon/BabylonMaterialAttributes/TransparencyMode/Opaque/Opaque.PhysicalMesh.311381f0-8487-4fc5-89fa-7d01dfda5e2f.babylonbinarymeshdata
new file mode 100644
index 00000000..e862fd1a
Binary files /dev/null and b/3ds Max/Samples/babylon/BabylonMaterialAttributes/TransparencyMode/Opaque/Opaque.PhysicalMesh.311381f0-8487-4fc5-89fa-7d01dfda5e2f.babylonbinarymeshdata differ
diff --git a/3ds Max/Samples/babylon/BabylonMaterialAttributes/TransparencyMode/Opaque/Opaque.StandardMesh.113f2dbc-dce1-4faa-be71-35277504433b.babylonbinarymeshdata b/3ds Max/Samples/babylon/BabylonMaterialAttributes/TransparencyMode/Opaque/Opaque.StandardMesh.113f2dbc-dce1-4faa-be71-35277504433b.babylonbinarymeshdata
new file mode 100644
index 00000000..e862fd1a
Binary files /dev/null and b/3ds Max/Samples/babylon/BabylonMaterialAttributes/TransparencyMode/Opaque/Opaque.StandardMesh.113f2dbc-dce1-4faa-be71-35277504433b.babylonbinarymeshdata differ
diff --git a/3ds Max/Samples/babylon/BabylonMaterialAttributes/TransparencyMode/Opaque/Opaque.StandardSurfaceMesh.57bbf667-4bf9-4453-8787-dd1f8673b543.babylonbinarymeshdata b/3ds Max/Samples/babylon/BabylonMaterialAttributes/TransparencyMode/Opaque/Opaque.StandardSurfaceMesh.57bbf667-4bf9-4453-8787-dd1f8673b543.babylonbinarymeshdata
new file mode 100644
index 00000000..e862fd1a
Binary files /dev/null and b/3ds Max/Samples/babylon/BabylonMaterialAttributes/TransparencyMode/Opaque/Opaque.StandardSurfaceMesh.57bbf667-4bf9-4453-8787-dd1f8673b543.babylonbinarymeshdata differ
diff --git a/3ds Max/Samples/babylon/BabylonMaterialAttributes/TransparencyMode/Opaque/Opaque.babylon b/3ds Max/Samples/babylon/BabylonMaterialAttributes/TransparencyMode/Opaque/Opaque.babylon
new file mode 100644
index 00000000..e9f68978
--- /dev/null
+++ b/3ds Max/Samples/babylon/BabylonMaterialAttributes/TransparencyMode/Opaque/Opaque.babylon
@@ -0,0 +1 @@
+{"producer":{"name":"3dsmax","version":"2019","exporter_version":"1.5.0","file":"Opaque.babylon"},"autoClear":true,"clearColor":[0.0,0.0,0.0],"ambientColor":[0.0,0.0,0.0],"fogMode":0,"fogColor":null,"fogStart":0.0,"fogEnd":0.0,"fogDensity":0.0,"gravity":[0.0,0.0,0.0],"physicsEngine":null,"physicsEnabled":false,"physicsGravity":null,"lights":[{"direction":[0.0,1.0,0.0],"type":3,"diffuse":[1.0,1.0,1.0],"specular":[1.0,1.0,1.0],"intensity":1.0,"range":3.40282347E+38,"exponent":0.0,"angle":0.0,"groundColor":[0.0,0.0,0.0],"excludedMeshesIds":null,"includedOnlyMeshesIds":null,"lightmapMode":null,"falloffType":null,"name":"Default light","id":"4850b65e-9674-4644-baee-48c0a6eb1577","parentId":null,"position":[0.0,0.0,0.0],"animations":null,"autoAnimate":false,"autoAnimateFrom":0,"autoAnimateTo":0,"autoAnimateLoop":false,"metadata":null}],"meshes":[{"materialId":"814decf0-a4ea-454e-a404-277528478ef5","isEnabled":true,"isVisible":true,"positions":[0.0,1.0,0.0,0.0,0.9808,0.1951,-0.0381,0.9808,0.1913,0.0,1.0,0.0,-0.0381,0.9808,0.1913,-0.0747,0.9808,0.1802,0.0,1.0,0.0,-0.0747,0.9808,0.1802,-0.1084,0.9808,0.1622,0.0,1.0,0.0,-0.1084,0.9808,0.1622,-0.1379,0.9808,0.1379,0.0,1.0,0.0,-0.1379,0.9808,0.1379,-0.1622,0.9808,0.1084,0.0,1.0,0.0,-0.1622,0.9808,0.1084,-0.1802,0.9808,0.0747,0.0,1.0,0.0,-0.1802,0.9808,0.0747,-0.1913,0.9808,0.0381,0.0,1.0,0.0,-0.1913,0.9808,0.0381,-0.1951,0.9808,0.0,0.0,1.0,0.0,-0.1951,0.9808,0.0,-0.1913,0.9808,-0.0381,0.0,1.0,0.0,-0.1913,0.9808,-0.0381,-0.1802,0.9808,-0.0747,0.0,1.0,0.0,-0.1802,0.9808,-0.0747,-0.1622,0.9808,-0.1084,0.0,1.0,0.0,-0.1622,0.9808,-0.1084,-0.1379,0.9808,-0.1379,0.0,1.0,0.0,-0.1379,0.9808,-0.1379,-0.1084,0.9808,-0.1622,0.0,1.0,0.0,-0.1084,0.9808,-0.1622,-0.0747,0.9808,-0.1802,0.0,1.0,0.0,-0.0747,0.9808,-0.1802,-0.0381,0.9808,-0.1913,0.0,1.0,0.0,-0.0381,0.9808,-0.1913,0.0,0.9808,-0.1951,0.0,1.0,0.0,0.0,0.9808,-0.1951,0.0381,0.9808,-0.1913,0.0,1.0,0.0,0.0381,0.9808,-0.1913,0.0747,0.9808,-0.1802,0.0,1.0,0.0,0.0747,0.9808,-0.1802,0.1084,0.9808,-0.1622,0.0,1.0,0.0,0.1084,0.9808,-0.1622,0.1379,0.9808,-0.1379,0.0,1.0,0.0,0.1379,0.9808,-0.1379,0.1622,0.9808,-0.1084,0.0,1.0,0.0,0.1622,0.9808,-0.1084,0.1802,0.9808,-0.0747,0.0,1.0,0.0,0.1802,0.9808,-0.0747,0.1913,0.9808,-0.0381,0.0,1.0,0.0,0.1913,0.9808,-0.0381,0.1951,0.9808,0.0,0.0,1.0,0.0,0.1951,0.9808,0.0,0.1913,0.9808,0.0381,0.0,1.0,0.0,0.1913,0.9808,0.0381,0.1802,0.9808,0.0747,0.0,1.0,0.0,0.1802,0.9808,0.0747,0.1622,0.9808,0.1084,0.0,1.0,0.0,0.1622,0.9808,0.1084,0.1379,0.9808,0.1379,0.0,1.0,0.0,0.1379,0.9808,0.1379,0.1084,0.9808,0.1622,0.0,1.0,0.0,0.1084,0.9808,0.1622,0.0747,0.9808,0.1802,0.0,1.0,0.0,0.0747,0.9808,0.1802,0.0381,0.9808,0.1913,0.0,1.0,0.0,0.0381,0.9808,0.1913,0.0,0.9808,0.1951,0.0,0.9808,0.1951,0.0,0.9239,0.3827,-0.0747,0.9239,0.3753,0.0,0.9808,0.1951,-0.0747,0.9239,0.3753,-0.0381,0.9808,0.1913,-0.0381,0.9808,0.1913,-0.0747,0.9239,0.3753,-0.1464,0.9239,0.3536,-0.0381,0.9808,0.1913,-0.1464,0.9239,0.3536,-0.0747,0.9808,0.1802,-0.0747,0.9808,0.1802,-0.1464,0.9239,0.3536,-0.2126,0.9239,0.3182,-0.0747,0.9808,0.1802,-0.2126,0.9239,0.3182,-0.1084,0.9808,0.1622,-0.1084,0.9808,0.1622,-0.2126,0.9239,0.3182,-0.2706,0.9239,0.2706,-0.1084,0.9808,0.1622,-0.2706,0.9239,0.2706,-0.1379,0.9808,0.1379,-0.1379,0.9808,0.1379,-0.2706,0.9239,0.2706,-0.3182,0.9239,0.2126,-0.1379,0.9808,0.1379,-0.3182,0.9239,0.2126,-0.1622,0.9808,0.1084,-0.1622,0.9808,0.1084,-0.3182,0.9239,0.2126,-0.3536,0.9239,0.1464,-0.1622,0.9808,0.1084,-0.3536,0.9239,0.1464,-0.1802,0.9808,0.0747,-0.1802,0.9808,0.0747,-0.3536,0.9239,0.1464,-0.3753,0.9239,0.0747,-0.1802,0.9808,0.0747,-0.3753,0.9239,0.0747,-0.1913,0.9808,0.0381,-0.1913,0.9808,0.0381,-0.3753,0.9239,0.0747,-0.3827,0.9239,0.0,-0.1913,0.9808,0.0381,-0.3827,0.9239,0.0,-0.1951,0.9808,0.0,-0.1951,0.9808,0.0,-0.3827,0.9239,0.0,-0.3753,0.9239,-0.0747,-0.1951,0.9808,0.0,-0.3753,0.9239,-0.0747,-0.1913,0.9808,-0.0381,-0.1913,0.9808,-0.0381,-0.3753,0.9239,-0.0747,-0.3536,0.9239,-0.1464,-0.1913,0.9808,-0.0381,-0.3536,0.9239,-0.1464,-0.1802,0.9808,-0.0747,-0.1802,0.9808,-0.0747,-0.3536,0.9239,-0.1464,-0.3182,0.9239,-0.2126,-0.1802,0.9808,-0.0747,-0.3182,0.9239,-0.2126,-0.1622,0.9808,-0.1084,-0.1622,0.9808,-0.1084,-0.3182,0.9239,-0.2126,-0.2706,0.9239,-0.2706,-0.1622,0.9808,-0.1084,-0.2706,0.9239,-0.2706,-0.1379,0.9808,-0.1379,-0.1379,0.9808,-0.1379,-0.2706,0.9239,-0.2706,-0.2126,0.9239,-0.3182,-0.1379,0.9808,-0.1379,-0.2126,0.9239,-0.3182,-0.1084,0.9808,-0.1622,-0.1084,0.9808,-0.1622,-0.2126,0.9239,-0.3182,-0.1464,0.9239,-0.3536,-0.1084,0.9808,-0.1622,-0.1464,0.9239,-0.3536,-0.0747,0.9808,-0.1802,-0.0747,0.9808,-0.1802,-0.1464,0.9239,-0.3536,-0.0747,0.9239,-0.3753,-0.0747,0.9808,-0.1802,-0.0747,0.9239,-0.3753,-0.0381,0.9808,-0.1913,-0.0381,0.9808,-0.1913,-0.0747,0.9239,-0.3753,0.0,0.9239,-0.3827,-0.0381,0.9808,-0.1913,0.0,0.9239,-0.3827,0.0,0.9808,-0.1951,0.0,0.9808,-0.1951,0.0,0.9239,-0.3827,0.0747,0.9239,-0.3753,0.0,0.9808,-0.1951,0.0747,0.9239,-0.3753,0.0381,0.9808,-0.1913,0.0381,0.9808,-0.1913,0.0747,0.9239,-0.3753,0.1464,0.9239,-0.3536,0.0381,0.9808,-0.1913,0.1464,0.9239,-0.3536,0.0747,0.9808,-0.1802,0.0747,0.9808,-0.1802,0.1464,0.9239,-0.3536,0.2126,0.9239,-0.3182,0.0747,0.9808,-0.1802,0.2126,0.9239,-0.3182,0.1084,0.9808,-0.1622,0.1084,0.9808,-0.1622,0.2126,0.9239,-0.3182,0.2706,0.9239,-0.2706,0.1084,0.9808,-0.1622,0.2706,0.9239,-0.2706,0.1379,0.9808,-0.1379,0.1379,0.9808,-0.1379,0.2706,0.9239,-0.2706,0.3182,0.9239,-0.2126,0.1379,0.9808,-0.1379,0.3182,0.9239,-0.2126,0.1622,0.9808,-0.1084,0.1622,0.9808,-0.1084,0.3182,0.9239,-0.2126,0.3536,0.9239,-0.1464,0.1622,0.9808,-0.1084,0.3536,0.9239,-0.1464,0.1802,0.9808,-0.0747,0.1802,0.9808,-0.0747,0.3536,0.9239,-0.1464,0.3753,0.9239,-0.0747,0.1802,0.9808,-0.0747,0.3753,0.9239,-0.0747,0.1913,0.9808,-0.0381,0.1913,0.9808,-0.0381,0.3753,0.9239,-0.0747,0.3827,0.9239,0.0,0.1913,0.9808,-0.0381,0.3827,0.9239,0.0,0.1951,0.9808,0.0,0.1951,0.9808,0.0,0.3827,0.9239,0.0,0.3753,0.9239,0.0747,0.1951,0.9808,0.0,0.3753,0.9239,0.0747,0.1913,0.9808,0.0381,0.1913,0.9808,0.0381,0.3753,0.9239,0.0747,0.3536,0.9239,0.1464,0.1913,0.9808,0.0381,0.3536,0.9239,0.1464,0.1802,0.9808,0.0747,0.1802,0.9808,0.0747,0.3536,0.9239,0.1464,0.3182,0.9239,0.2126,0.1802,0.9808,0.0747,0.3182,0.9239,0.2126,0.1622,0.9808,0.1084,0.1622,0.9808,0.1084,0.3182,0.9239,0.2126,0.2706,0.9239,0.2706,0.1622,0.9808,0.1084,0.2706,0.9239,0.2706,0.1379,0.9808,0.1379,0.1379,0.9808,0.1379,0.2706,0.9239,0.2706,0.2126,0.9239,0.3182,0.1379,0.9808,0.1379,0.2126,0.9239,0.3182,0.1084,0.9808,0.1622,0.1084,0.9808,0.1622,0.2126,0.9239,0.3182,0.1464,0.9239,0.3536,0.1084,0.9808,0.1622,0.1464,0.9239,0.3536,0.0747,0.9808,0.1802,0.0747,0.9808,0.1802,0.1464,0.9239,0.3536,0.0747,0.9239,0.3753,0.0747,0.9808,0.1802,0.0747,0.9239,0.3753,0.0381,0.9808,0.1913,0.0381,0.9808,0.1913,0.0747,0.9239,0.3753,0.0,0.9239,0.3827,0.0381,0.9808,0.1913,0.0,0.9239,0.3827,0.0,0.9808,0.1951,0.0,0.9239,0.3827,0.0,0.8315,0.5556,-0.1084,0.8315,0.5449,0.0,0.9239,0.3827,-0.1084,0.8315,0.5449,-0.0747,0.9239,0.3753,-0.0747,0.9239,0.3753,-0.1084,0.8315,0.5449,-0.2126,0.8315,0.5133,-0.0747,0.9239,0.3753,-0.2126,0.8315,0.5133,-0.1464,0.9239,0.3536,-0.1464,0.9239,0.3536,-0.2126,0.8315,0.5133,-0.3087,0.8315,0.4619,-0.1464,0.9239,0.3536,-0.3087,0.8315,0.4619,-0.2126,0.9239,0.3182,-0.2126,0.9239,0.3182,-0.3087,0.8315,0.4619,-0.3928,0.8315,0.3928,-0.2126,0.9239,0.3182,-0.3928,0.8315,0.3928,-0.2706,0.9239,0.2706,-0.2706,0.9239,0.2706,-0.3928,0.8315,0.3928,-0.4619,0.8315,0.3087,-0.2706,0.9239,0.2706,-0.4619,0.8315,0.3087,-0.3182,0.9239,0.2126,-0.3182,0.9239,0.2126,-0.4619,0.8315,0.3087,-0.5133,0.8315,0.2126,-0.3182,0.9239,0.2126,-0.5133,0.8315,0.2126,-0.3536,0.9239,0.1464,-0.3536,0.9239,0.1464,-0.5133,0.8315,0.2126,-0.5449,0.8315,0.1084,-0.3536,0.9239,0.1464,-0.5449,0.8315,0.1084,-0.3753,0.9239,0.0747,-0.3753,0.9239,0.0747,-0.5449,0.8315,0.1084,-0.5556,0.8315,0.0,-0.3753,0.9239,0.0747,-0.5556,0.8315,0.0,-0.3827,0.9239,0.0,-0.3827,0.9239,0.0,-0.5556,0.8315,0.0,-0.5449,0.8315,-0.1084,-0.3827,0.9239,0.0,-0.5449,0.8315,-0.1084,-0.3753,0.9239,-0.0747,-0.3753,0.9239,-0.0747,-0.5449,0.8315,-0.1084,-0.5133,0.8315,-0.2126,-0.3753,0.9239,-0.0747,-0.5133,0.8315,-0.2126,-0.3536,0.9239,-0.1464,-0.3536,0.9239,-0.1464,-0.5133,0.8315,-0.2126,-0.4619,0.8315,-0.3087,-0.3536,0.9239,-0.1464,-0.4619,0.8315,-0.3087,-0.3182,0.9239,-0.2126,-0.3182,0.9239,-0.2126,-0.4619,0.8315,-0.3087,-0.3928,0.8315,-0.3928,-0.3182,0.9239,-0.2126,-0.3928,0.8315,-0.3928,-0.2706,0.9239,-0.2706,-0.2706,0.9239,-0.2706,-0.3928,0.8315,-0.3928,-0.3087,0.8315,-0.4619,-0.2706,0.9239,-0.2706,-0.3087,0.8315,-0.4619,-0.2126,0.9239,-0.3182,-0.2126,0.9239,-0.3182,-0.3087,0.8315,-0.4619,-0.2126,0.8315,-0.5133,-0.2126,0.9239,-0.3182,-0.2126,0.8315,-0.5133,-0.1464,0.9239,-0.3536,-0.1464,0.9239,-0.3536,-0.2126,0.8315,-0.5133,-0.1084,0.8315,-0.5449,-0.1464,0.9239,-0.3536,-0.1084,0.8315,-0.5449,-0.0747,0.9239,-0.3753,-0.0747,0.9239,-0.3753,-0.1084,0.8315,-0.5449,0.0,0.8315,-0.5556,-0.0747,0.9239,-0.3753,0.0,0.8315,-0.5556,0.0,0.9239,-0.3827,0.0,0.9239,-0.3827,0.0,0.8315,-0.5556,0.1084,0.8315,-0.5449,0.0,0.9239,-0.3827,0.1084,0.8315,-0.5449,0.0747,0.9239,-0.3753,0.0747,0.9239,-0.3753,0.1084,0.8315,-0.5449,0.2126,0.8315,-0.5133,0.0747,0.9239,-0.3753,0.2126,0.8315,-0.5133,0.1464,0.9239,-0.3536,0.1464,0.9239,-0.3536,0.2126,0.8315,-0.5133,0.3087,0.8315,-0.4619,0.1464,0.9239,-0.3536,0.3087,0.8315,-0.4619,0.2126,0.9239,-0.3182,0.2126,0.9239,-0.3182,0.3087,0.8315,-0.4619,0.3928,0.8315,-0.3928,0.2126,0.9239,-0.3182,0.3928,0.8315,-0.3928,0.2706,0.9239,-0.2706,0.2706,0.9239,-0.2706,0.3928,0.8315,-0.3928,0.4619,0.8315,-0.3087,0.2706,0.9239,-0.2706,0.4619,0.8315,-0.3087,0.3182,0.9239,-0.2126,0.3182,0.9239,-0.2126,0.4619,0.8315,-0.3087,0.5133,0.8315,-0.2126,0.3182,0.9239,-0.2126,0.5133,0.8315,-0.2126,0.3536,0.9239,-0.1464,0.3536,0.9239,-0.1464,0.5133,0.8315,-0.2126,0.5449,0.8315,-0.1084,0.3536,0.9239,-0.1464,0.5449,0.8315,-0.1084,0.3753,0.9239,-0.0747,0.3753,0.9239,-0.0747,0.5449,0.8315,-0.1084,0.5556,0.8315,0.0,0.3753,0.9239,-0.0747,0.5556,0.8315,0.0,0.3827,0.9239,0.0,0.3827,0.9239,0.0,0.5556,0.8315,0.0,0.5449,0.8315,0.1084,0.3827,0.9239,0.0,0.5449,0.8315,0.1084,0.3753,0.9239,0.0747,0.3753,0.9239,0.0747,0.5449,0.8315,0.1084,0.5133,0.8315,0.2126,0.3753,0.9239,0.0747,0.5133,0.8315,0.2126,0.3536,0.9239,0.1464,0.3536,0.9239,0.1464,0.5133,0.8315,0.2126,0.4619,0.8315,0.3087,0.3536,0.9239,0.1464,0.4619,0.8315,0.3087,0.3182,0.9239,0.2126,0.3182,0.9239,0.2126,0.4619,0.8315,0.3087,0.3928,0.8315,0.3928,0.3182,0.9239,0.2126,0.3928,0.8315,0.3928,0.2706,0.9239,0.2706,0.2706,0.9239,0.2706,0.3928,0.8315,0.3928,0.3087,0.8315,0.4619,0.2706,0.9239,0.2706,0.3087,0.8315,0.4619,0.2126,0.9239,0.3182,0.2126,0.9239,0.3182,0.3087,0.8315,0.4619,0.2126,0.8315,0.5133,0.2126,0.9239,0.3182,0.2126,0.8315,0.5133,0.1464,0.9239,0.3536,0.1464,0.9239,0.3536,0.2126,0.8315,0.5133,0.1084,0.8315,0.5449,0.1464,0.9239,0.3536,0.1084,0.8315,0.5449,0.0747,0.9239,0.3753,0.0747,0.9239,0.3753,0.1084,0.8315,0.5449,0.0,0.8315,0.5556,0.0747,0.9239,0.3753,0.0,0.8315,0.5556,0.0,0.9239,0.3827,0.0,0.8315,0.5556,0.0,0.7071,0.7071,-0.1379,0.7071,0.6935,0.0,0.8315,0.5556,-0.1379,0.7071,0.6935,-0.1084,0.8315,0.5449,-0.1084,0.8315,0.5449,-0.1379,0.7071,0.6935,-0.2706,0.7071,0.6533,-0.1084,0.8315,0.5449,-0.2706,0.7071,0.6533,-0.2126,0.8315,0.5133,-0.2126,0.8315,0.5133,-0.2706,0.7071,0.6533,-0.3928,0.7071,0.5879,-0.2126,0.8315,0.5133,-0.3928,0.7071,0.5879,-0.3087,0.8315,0.4619,-0.3087,0.8315,0.4619,-0.3928,0.7071,0.5879,-0.5,0.7071,0.5,-0.3087,0.8315,0.4619,-0.5,0.7071,0.5,-0.3928,0.8315,0.3928,-0.3928,0.8315,0.3928,-0.5,0.7071,0.5,-0.5879,0.7071,0.3928,-0.3928,0.8315,0.3928,-0.5879,0.7071,0.3928,-0.4619,0.8315,0.3087,-0.4619,0.8315,0.3087,-0.5879,0.7071,0.3928,-0.6533,0.7071,0.2706,-0.4619,0.8315,0.3087,-0.6533,0.7071,0.2706,-0.5133,0.8315,0.2126,-0.5133,0.8315,0.2126,-0.6533,0.7071,0.2706,-0.6935,0.7071,0.1379,-0.5133,0.8315,0.2126,-0.6935,0.7071,0.1379,-0.5449,0.8315,0.1084,-0.5449,0.8315,0.1084,-0.6935,0.7071,0.1379,-0.7071,0.7071,0.0,-0.5449,0.8315,0.1084,-0.7071,0.7071,0.0,-0.5556,0.8315,0.0,-0.5556,0.8315,0.0,-0.7071,0.7071,0.0,-0.6935,0.7071,-0.1379,-0.5556,0.8315,0.0,-0.6935,0.7071,-0.1379,-0.5449,0.8315,-0.1084,-0.5449,0.8315,-0.1084,-0.6935,0.7071,-0.1379,-0.6533,0.7071,-0.2706,-0.5449,0.8315,-0.1084,-0.6533,0.7071,-0.2706,-0.5133,0.8315,-0.2126,-0.5133,0.8315,-0.2126,-0.6533,0.7071,-0.2706,-0.5879,0.7071,-0.3928,-0.5133,0.8315,-0.2126,-0.5879,0.7071,-0.3928,-0.4619,0.8315,-0.3087,-0.4619,0.8315,-0.3087,-0.5879,0.7071,-0.3928,-0.5,0.7071,-0.5,-0.4619,0.8315,-0.3087,-0.5,0.7071,-0.5,-0.3928,0.8315,-0.3928,-0.3928,0.8315,-0.3928,-0.5,0.7071,-0.5,-0.3928,0.7071,-0.5879,-0.3928,0.8315,-0.3928,-0.3928,0.7071,-0.5879,-0.3087,0.8315,-0.4619,-0.3087,0.8315,-0.4619,-0.3928,0.7071,-0.5879,-0.2706,0.7071,-0.6533,-0.3087,0.8315,-0.4619,-0.2706,0.7071,-0.6533,-0.2126,0.8315,-0.5133,-0.2126,0.8315,-0.5133,-0.2706,0.7071,-0.6533,-0.1379,0.7071,-0.6935,-0.2126,0.8315,-0.5133,-0.1379,0.7071,-0.6935,-0.1084,0.8315,-0.5449,-0.1084,0.8315,-0.5449,-0.1379,0.7071,-0.6935,0.0,0.7071,-0.7071,-0.1084,0.8315,-0.5449,0.0,0.7071,-0.7071,0.0,0.8315,-0.5556,0.0,0.8315,-0.5556,0.0,0.7071,-0.7071,0.138,0.7071,-0.6935,0.0,0.8315,-0.5556,0.138,0.7071,-0.6935,0.1084,0.8315,-0.5449,0.1084,0.8315,-0.5449,0.138,0.7071,-0.6935,0.2706,0.7071,-0.6533,0.1084,0.8315,-0.5449,0.2706,0.7071,-0.6533,0.2126,0.8315,-0.5133,0.2126,0.8315,-0.5133,0.2706,0.7071,-0.6533,0.3928,0.7071,-0.5879,0.2126,0.8315,-0.5133,0.3928,0.7071,-0.5879,0.3087,0.8315,-0.4619,0.3087,0.8315,-0.4619,0.3928,0.7071,-0.5879,0.5,0.7071,-0.5,0.3087,0.8315,-0.4619,0.5,0.7071,-0.5,0.3928,0.8315,-0.3928,0.3928,0.8315,-0.3928,0.5,0.7071,-0.5,0.5879,0.7071,-0.3928,0.3928,0.8315,-0.3928,0.5879,0.7071,-0.3928,0.4619,0.8315,-0.3087,0.4619,0.8315,-0.3087,0.5879,0.7071,-0.3928,0.6533,0.7071,-0.2706,0.4619,0.8315,-0.3087,0.6533,0.7071,-0.2706,0.5133,0.8315,-0.2126,0.5133,0.8315,-0.2126,0.6533,0.7071,-0.2706,0.6935,0.7071,-0.1379,0.5133,0.8315,-0.2126,0.6935,0.7071,-0.1379,0.5449,0.8315,-0.1084,0.5449,0.8315,-0.1084,0.6935,0.7071,-0.1379,0.7071,0.7071,0.0,0.5449,0.8315,-0.1084,0.7071,0.7071,0.0,0.5556,0.8315,0.0,0.5556,0.8315,0.0,0.7071,0.7071,0.0,0.6935,0.7071,0.138,0.5556,0.8315,0.0,0.6935,0.7071,0.138,0.5449,0.8315,0.1084,0.5449,0.8315,0.1084,0.6935,0.7071,0.138,0.6533,0.7071,0.2706,0.5449,0.8315,0.1084,0.6533,0.7071,0.2706,0.5133,0.8315,0.2126,0.5133,0.8315,0.2126,0.6533,0.7071,0.2706,0.5879,0.7071,0.3928,0.5133,0.8315,0.2126,0.5879,0.7071,0.3928,0.4619,0.8315,0.3087,0.4619,0.8315,0.3087,0.5879,0.7071,0.3928,0.5,0.7071,0.5,0.4619,0.8315,0.3087,0.5,0.7071,0.5,0.3928,0.8315,0.3928,0.3928,0.8315,0.3928,0.5,0.7071,0.5,0.3928,0.7071,0.5879,0.3928,0.8315,0.3928,0.3928,0.7071,0.5879,0.3087,0.8315,0.4619,0.3087,0.8315,0.4619,0.3928,0.7071,0.5879,0.2706,0.7071,0.6533,0.3087,0.8315,0.4619,0.2706,0.7071,0.6533,0.2126,0.8315,0.5133,0.2126,0.8315,0.5133,0.2706,0.7071,0.6533,0.1379,0.7071,0.6935,0.2126,0.8315,0.5133,0.1379,0.7071,0.6935,0.1084,0.8315,0.5449,0.1084,0.8315,0.5449,0.1379,0.7071,0.6935,0.0,0.7071,0.7071,0.1084,0.8315,0.5449,0.0,0.7071,0.7071,0.0,0.8315,0.5556,0.0,0.7071,0.7071,0.0,0.5556,0.8315,-0.1622,0.5556,0.8155,0.0,0.7071,0.7071,-0.1622,0.5556,0.8155,-0.1379,0.7071,0.6935,-0.1379,0.7071,0.6935,-0.1622,0.5556,0.8155,-0.3182,0.5556,0.7682,-0.1379,0.7071,0.6935,-0.3182,0.5556,0.7682,-0.2706,0.7071,0.6533,-0.2706,0.7071,0.6533,-0.3182,0.5556,0.7682,-0.4619,0.5556,0.6913,-0.2706,0.7071,0.6533,-0.4619,0.5556,0.6913,-0.3928,0.7071,0.5879,-0.3928,0.7071,0.5879,-0.4619,0.5556,0.6913,-0.5879,0.5556,0.5879,-0.3928,0.7071,0.5879,-0.5879,0.5556,0.5879,-0.5,0.7071,0.5,-0.5,0.7071,0.5,-0.5879,0.5556,0.5879,-0.6913,0.5556,0.4619,-0.5,0.7071,0.5,-0.6913,0.5556,0.4619,-0.5879,0.7071,0.3928,-0.5879,0.7071,0.3928,-0.6913,0.5556,0.4619,-0.7682,0.5556,0.3182,-0.5879,0.7071,0.3928,-0.7682,0.5556,0.3182,-0.6533,0.7071,0.2706,-0.6533,0.7071,0.2706,-0.7682,0.5556,0.3182,-0.8155,0.5556,0.1622,-0.6533,0.7071,0.2706,-0.8155,0.5556,0.1622,-0.6935,0.7071,0.1379,-0.6935,0.7071,0.1379,-0.8155,0.5556,0.1622,-0.8315,0.5556,0.0,-0.6935,0.7071,0.1379,-0.8315,0.5556,0.0,-0.7071,0.7071,0.0,-0.7071,0.7071,0.0,-0.8315,0.5556,0.0,-0.8155,0.5556,-0.1622,-0.7071,0.7071,0.0,-0.8155,0.5556,-0.1622,-0.6935,0.7071,-0.1379,-0.6935,0.7071,-0.1379,-0.8155,0.5556,-0.1622,-0.7682,0.5556,-0.3182,-0.6935,0.7071,-0.1379,-0.7682,0.5556,-0.3182,-0.6533,0.7071,-0.2706,-0.6533,0.7071,-0.2706,-0.7682,0.5556,-0.3182,-0.6913,0.5556,-0.4619,-0.6533,0.7071,-0.2706,-0.6913,0.5556,-0.4619,-0.5879,0.7071,-0.3928,-0.5879,0.7071,-0.3928,-0.6913,0.5556,-0.4619,-0.5879,0.5556,-0.5879,-0.5879,0.7071,-0.3928,-0.5879,0.5556,-0.5879,-0.5,0.7071,-0.5,-0.5,0.7071,-0.5,-0.5879,0.5556,-0.5879,-0.4619,0.5556,-0.6913,-0.5,0.7071,-0.5,-0.4619,0.5556,-0.6913,-0.3928,0.7071,-0.5879,-0.3928,0.7071,-0.5879,-0.4619,0.5556,-0.6913,-0.3182,0.5556,-0.7682,-0.3928,0.7071,-0.5879,-0.3182,0.5556,-0.7682,-0.2706,0.7071,-0.6533,-0.2706,0.7071,-0.6533,-0.3182,0.5556,-0.7682,-0.1622,0.5556,-0.8155,-0.2706,0.7071,-0.6533,-0.1622,0.5556,-0.8155,-0.1379,0.7071,-0.6935,-0.1379,0.7071,-0.6935,-0.1622,0.5556,-0.8155,0.0,0.5556,-0.8315,-0.1379,0.7071,-0.6935,0.0,0.5556,-0.8315,0.0,0.7071,-0.7071,0.0,0.7071,-0.7071,0.0,0.5556,-0.8315,0.1622,0.5556,-0.8155,0.0,0.7071,-0.7071,0.1622,0.5556,-0.8155,0.138,0.7071,-0.6935,0.138,0.7071,-0.6935,0.1622,0.5556,-0.8155,0.3182,0.5556,-0.7682,0.138,0.7071,-0.6935,0.3182,0.5556,-0.7682,0.2706,0.7071,-0.6533,0.2706,0.7071,-0.6533,0.3182,0.5556,-0.7682,0.4619,0.5556,-0.6913,0.2706,0.7071,-0.6533,0.4619,0.5556,-0.6913,0.3928,0.7071,-0.5879,0.3928,0.7071,-0.5879,0.4619,0.5556,-0.6913,0.5879,0.5556,-0.5879,0.3928,0.7071,-0.5879,0.5879,0.5556,-0.5879,0.5,0.7071,-0.5,0.5,0.7071,-0.5,0.5879,0.5556,-0.5879,0.6913,0.5556,-0.4619,0.5,0.7071,-0.5,0.6913,0.5556,-0.4619,0.5879,0.7071,-0.3928,0.5879,0.7071,-0.3928,0.6913,0.5556,-0.4619,0.7682,0.5556,-0.3182,0.5879,0.7071,-0.3928,0.7682,0.5556,-0.3182,0.6533,0.7071,-0.2706,0.6533,0.7071,-0.2706,0.7682,0.5556,-0.3182,0.8155,0.5556,-0.1622,0.6533,0.7071,-0.2706,0.8155,0.5556,-0.1622,0.6935,0.7071,-0.1379,0.6935,0.7071,-0.1379,0.8155,0.5556,-0.1622,0.8315,0.5556,0.0,0.6935,0.7071,-0.1379,0.8315,0.5556,0.0,0.7071,0.7071,0.0,0.7071,0.7071,0.0,0.8315,0.5556,0.0,0.8155,0.5556,0.1622,0.7071,0.7071,0.0,0.8155,0.5556,0.1622,0.6935,0.7071,0.138,0.6935,0.7071,0.138,0.8155,0.5556,0.1622,0.7682,0.5556,0.3182,0.6935,0.7071,0.138,0.7682,0.5556,0.3182,0.6533,0.7071,0.2706,0.6533,0.7071,0.2706,0.7682,0.5556,0.3182,0.6913,0.5556,0.4619,0.6533,0.7071,0.2706,0.6913,0.5556,0.4619,0.5879,0.7071,0.3928,0.5879,0.7071,0.3928,0.6913,0.5556,0.4619,0.5879,0.5556,0.5879,0.5879,0.7071,0.3928,0.5879,0.5556,0.5879,0.5,0.7071,0.5,0.5,0.7071,0.5,0.5879,0.5556,0.5879,0.4619,0.5556,0.6913,0.5,0.7071,0.5,0.4619,0.5556,0.6913,0.3928,0.7071,0.5879,0.3928,0.7071,0.5879,0.4619,0.5556,0.6913,0.3182,0.5556,0.7682,0.3928,0.7071,0.5879,0.3182,0.5556,0.7682,0.2706,0.7071,0.6533,0.2706,0.7071,0.6533,0.3182,0.5556,0.7682,0.1622,0.5556,0.8155,0.2706,0.7071,0.6533,0.1622,0.5556,0.8155,0.1379,0.7071,0.6935,0.1379,0.7071,0.6935,0.1622,0.5556,0.8155,0.0,0.5556,0.8315,0.1379,0.7071,0.6935,0.0,0.5556,0.8315,0.0,0.7071,0.7071,0.0,0.5556,0.8315,0.0,0.3827,0.9239,-0.1802,0.3827,0.9061,0.0,0.5556,0.8315,-0.1802,0.3827,0.9061,-0.1622,0.5556,0.8155,-0.1622,0.5556,0.8155,-0.1802,0.3827,0.9061,-0.3536,0.3827,0.8536,-0.1622,0.5556,0.8155,-0.3536,0.3827,0.8536,-0.3182,0.5556,0.7682,-0.3182,0.5556,0.7682,-0.3536,0.3827,0.8536,-0.5133,0.3827,0.7682,-0.3182,0.5556,0.7682,-0.5133,0.3827,0.7682,-0.4619,0.5556,0.6913,-0.4619,0.5556,0.6913,-0.5133,0.3827,0.7682,-0.6533,0.3827,0.6533,-0.4619,0.5556,0.6913,-0.6533,0.3827,0.6533,-0.5879,0.5556,0.5879,-0.5879,0.5556,0.5879,-0.6533,0.3827,0.6533,-0.7682,0.3827,0.5133,-0.5879,0.5556,0.5879,-0.7682,0.3827,0.5133,-0.6913,0.5556,0.4619,-0.6913,0.5556,0.4619,-0.7682,0.3827,0.5133,-0.8536,0.3827,0.3536,-0.6913,0.5556,0.4619,-0.8536,0.3827,0.3536,-0.7682,0.5556,0.3182,-0.7682,0.5556,0.3182,-0.8536,0.3827,0.3536,-0.9061,0.3827,0.1802,-0.7682,0.5556,0.3182,-0.9061,0.3827,0.1802,-0.8155,0.5556,0.1622,-0.8155,0.5556,0.1622,-0.9061,0.3827,0.1802,-0.9239,0.3827,0.0,-0.8155,0.5556,0.1622,-0.9239,0.3827,0.0,-0.8315,0.5556,0.0,-0.8315,0.5556,0.0,-0.9239,0.3827,0.0,-0.9061,0.3827,-0.1802,-0.8315,0.5556,0.0,-0.9061,0.3827,-0.1802,-0.8155,0.5556,-0.1622,-0.8155,0.5556,-0.1622,-0.9061,0.3827,-0.1802,-0.8536,0.3827,-0.3536,-0.8155,0.5556,-0.1622,-0.8536,0.3827,-0.3536,-0.7682,0.5556,-0.3182,-0.7682,0.5556,-0.3182,-0.8536,0.3827,-0.3536,-0.7682,0.3827,-0.5133,-0.7682,0.5556,-0.3182,-0.7682,0.3827,-0.5133,-0.6913,0.5556,-0.4619,-0.6913,0.5556,-0.4619,-0.7682,0.3827,-0.5133,-0.6533,0.3827,-0.6533,-0.6913,0.5556,-0.4619,-0.6533,0.3827,-0.6533,-0.5879,0.5556,-0.5879,-0.5879,0.5556,-0.5879,-0.6533,0.3827,-0.6533,-0.5133,0.3827,-0.7682,-0.5879,0.5556,-0.5879,-0.5133,0.3827,-0.7682,-0.4619,0.5556,-0.6913,-0.4619,0.5556,-0.6913,-0.5133,0.3827,-0.7682,-0.3536,0.3827,-0.8536,-0.4619,0.5556,-0.6913,-0.3536,0.3827,-0.8536,-0.3182,0.5556,-0.7682,-0.3182,0.5556,-0.7682,-0.3536,0.3827,-0.8536,-0.1802,0.3827,-0.9061,-0.3182,0.5556,-0.7682,-0.1802,0.3827,-0.9061,-0.1622,0.5556,-0.8155,-0.1622,0.5556,-0.8155,-0.1802,0.3827,-0.9061,0.0,0.3827,-0.9239,-0.1622,0.5556,-0.8155,0.0,0.3827,-0.9239,0.0,0.5556,-0.8315,0.0,0.5556,-0.8315,0.0,0.3827,-0.9239,0.1802,0.3827,-0.9061,0.0,0.5556,-0.8315,0.1802,0.3827,-0.9061,0.1622,0.5556,-0.8155,0.1622,0.5556,-0.8155,0.1802,0.3827,-0.9061,0.3536,0.3827,-0.8536,0.1622,0.5556,-0.8155,0.3536,0.3827,-0.8536,0.3182,0.5556,-0.7682,0.3182,0.5556,-0.7682,0.3536,0.3827,-0.8536,0.5133,0.3827,-0.7682,0.3182,0.5556,-0.7682,0.5133,0.3827,-0.7682,0.4619,0.5556,-0.6913,0.4619,0.5556,-0.6913,0.5133,0.3827,-0.7682,0.6533,0.3827,-0.6533,0.4619,0.5556,-0.6913,0.6533,0.3827,-0.6533,0.5879,0.5556,-0.5879,0.5879,0.5556,-0.5879,0.6533,0.3827,-0.6533,0.7682,0.3827,-0.5133,0.5879,0.5556,-0.5879,0.7682,0.3827,-0.5133,0.6913,0.5556,-0.4619,0.6913,0.5556,-0.4619,0.7682,0.3827,-0.5133,0.8536,0.3827,-0.3536,0.6913,0.5556,-0.4619,0.8536,0.3827,-0.3536,0.7682,0.5556,-0.3182,0.7682,0.5556,-0.3182,0.8536,0.3827,-0.3536,0.9061,0.3827,-0.1802,0.7682,0.5556,-0.3182,0.9061,0.3827,-0.1802,0.8155,0.5556,-0.1622,0.8155,0.5556,-0.1622,0.9061,0.3827,-0.1802,0.9239,0.3827,0.0,0.8155,0.5556,-0.1622,0.9239,0.3827,0.0,0.8315,0.5556,0.0,0.8315,0.5556,0.0,0.9239,0.3827,0.0,0.9061,0.3827,0.1802,0.8315,0.5556,0.0,0.9061,0.3827,0.1802,0.8155,0.5556,0.1622,0.8155,0.5556,0.1622,0.9061,0.3827,0.1802,0.8536,0.3827,0.3536,0.8155,0.5556,0.1622,0.8536,0.3827,0.3536,0.7682,0.5556,0.3182,0.7682,0.5556,0.3182,0.8536,0.3827,0.3536,0.7682,0.3827,0.5133,0.7682,0.5556,0.3182,0.7682,0.3827,0.5133,0.6913,0.5556,0.4619,0.6913,0.5556,0.4619,0.7682,0.3827,0.5133,0.6533,0.3827,0.6533,0.6913,0.5556,0.4619,0.6533,0.3827,0.6533,0.5879,0.5556,0.5879,0.5879,0.5556,0.5879,0.6533,0.3827,0.6533,0.5133,0.3827,0.7682,0.5879,0.5556,0.5879,0.5133,0.3827,0.7682,0.4619,0.5556,0.6913,0.4619,0.5556,0.6913,0.5133,0.3827,0.7682,0.3536,0.3827,0.8536,0.4619,0.5556,0.6913,0.3536,0.3827,0.8536,0.3182,0.5556,0.7682,0.3182,0.5556,0.7682,0.3536,0.3827,0.8536,0.1802,0.3827,0.9061,0.3182,0.5556,0.7682,0.1802,0.3827,0.9061,0.1622,0.5556,0.8155,0.1622,0.5556,0.8155,0.1802,0.3827,0.9061,0.0,0.3827,0.9239,0.1622,0.5556,0.8155,0.0,0.3827,0.9239,0.0,0.5556,0.8315,0.0,0.3827,0.9239,0.0,0.1951,0.9808,-0.1913,0.1951,0.9619,0.0,0.3827,0.9239,-0.1913,0.1951,0.9619,-0.1802,0.3827,0.9061,-0.1802,0.3827,0.9061,-0.1913,0.1951,0.9619,-0.3753,0.1951,0.9061,-0.1802,0.3827,0.9061,-0.3753,0.1951,0.9061,-0.3536,0.3827,0.8536,-0.3536,0.3827,0.8536,-0.3753,0.1951,0.9061,-0.5449,0.1951,0.8155,-0.3536,0.3827,0.8536,-0.5449,0.1951,0.8155,-0.5133,0.3827,0.7682,-0.5133,0.3827,0.7682,-0.5449,0.1951,0.8155,-0.6935,0.1951,0.6935,-0.5133,0.3827,0.7682,-0.6935,0.1951,0.6935,-0.6533,0.3827,0.6533,-0.6533,0.3827,0.6533,-0.6935,0.1951,0.6935,-0.8155,0.1951,0.5449,-0.6533,0.3827,0.6533,-0.8155,0.1951,0.5449,-0.7682,0.3827,0.5133,-0.7682,0.3827,0.5133,-0.8155,0.1951,0.5449,-0.9061,0.1951,0.3753,-0.7682,0.3827,0.5133,-0.9061,0.1951,0.3753,-0.8536,0.3827,0.3536,-0.8536,0.3827,0.3536,-0.9061,0.1951,0.3753,-0.9619,0.1951,0.1913,-0.8536,0.3827,0.3536,-0.9619,0.1951,0.1913,-0.9061,0.3827,0.1802,-0.9061,0.3827,0.1802,-0.9619,0.1951,0.1913,-0.9808,0.1951,0.0,-0.9061,0.3827,0.1802,-0.9808,0.1951,0.0,-0.9239,0.3827,0.0,-0.9239,0.3827,0.0,-0.9808,0.1951,0.0,-0.9619,0.1951,-0.1913,-0.9239,0.3827,0.0,-0.9619,0.1951,-0.1913,-0.9061,0.3827,-0.1802,-0.9061,0.3827,-0.1802,-0.9619,0.1951,-0.1913,-0.9061,0.1951,-0.3753,-0.9061,0.3827,-0.1802,-0.9061,0.1951,-0.3753,-0.8536,0.3827,-0.3536,-0.8536,0.3827,-0.3536,-0.9061,0.1951,-0.3753,-0.8155,0.1951,-0.5449,-0.8536,0.3827,-0.3536,-0.8155,0.1951,-0.5449,-0.7682,0.3827,-0.5133,-0.7682,0.3827,-0.5133,-0.8155,0.1951,-0.5449,-0.6935,0.1951,-0.6935,-0.7682,0.3827,-0.5133,-0.6935,0.1951,-0.6935,-0.6533,0.3827,-0.6533,-0.6533,0.3827,-0.6533,-0.6935,0.1951,-0.6935,-0.5449,0.1951,-0.8155,-0.6533,0.3827,-0.6533,-0.5449,0.1951,-0.8155,-0.5133,0.3827,-0.7682,-0.5133,0.3827,-0.7682,-0.5449,0.1951,-0.8155,-0.3753,0.1951,-0.9061,-0.5133,0.3827,-0.7682,-0.3753,0.1951,-0.9061,-0.3536,0.3827,-0.8536,-0.3536,0.3827,-0.8536,-0.3753,0.1951,-0.9061,-0.1913,0.1951,-0.9619,-0.3536,0.3827,-0.8536,-0.1913,0.1951,-0.9619,-0.1802,0.3827,-0.9061,-0.1802,0.3827,-0.9061,-0.1913,0.1951,-0.9619,0.0,0.1951,-0.9808,-0.1802,0.3827,-0.9061,0.0,0.1951,-0.9808,0.0,0.3827,-0.9239,0.0,0.3827,-0.9239,0.0,0.1951,-0.9808,0.1913,0.1951,-0.9619,0.0,0.3827,-0.9239,0.1913,0.1951,-0.9619,0.1802,0.3827,-0.9061,0.1802,0.3827,-0.9061,0.1913,0.1951,-0.9619,0.3753,0.1951,-0.9061,0.1802,0.3827,-0.9061,0.3753,0.1951,-0.9061,0.3536,0.3827,-0.8536,0.3536,0.3827,-0.8536,0.3753,0.1951,-0.9061,0.5449,0.1951,-0.8155,0.3536,0.3827,-0.8536,0.5449,0.1951,-0.8155,0.5133,0.3827,-0.7682,0.5133,0.3827,-0.7682,0.5449,0.1951,-0.8155,0.6935,0.1951,-0.6935,0.5133,0.3827,-0.7682,0.6935,0.1951,-0.6935,0.6533,0.3827,-0.6533,0.6533,0.3827,-0.6533,0.6935,0.1951,-0.6935,0.8155,0.1951,-0.5449,0.6533,0.3827,-0.6533,0.8155,0.1951,-0.5449,0.7682,0.3827,-0.5133,0.7682,0.3827,-0.5133,0.8155,0.1951,-0.5449,0.9061,0.1951,-0.3753,0.7682,0.3827,-0.5133,0.9061,0.1951,-0.3753,0.8536,0.3827,-0.3536,0.8536,0.3827,-0.3536,0.9061,0.1951,-0.3753,0.9619,0.1951,-0.1913,0.8536,0.3827,-0.3536,0.9619,0.1951,-0.1913,0.9061,0.3827,-0.1802,0.9061,0.3827,-0.1802,0.9619,0.1951,-0.1913,0.9808,0.1951,0.0,0.9061,0.3827,-0.1802,0.9808,0.1951,0.0,0.9239,0.3827,0.0,0.9239,0.3827,0.0,0.9808,0.1951,0.0,0.9619,0.1951,0.1913,0.9239,0.3827,0.0,0.9619,0.1951,0.1913,0.9061,0.3827,0.1802,0.9061,0.3827,0.1802,0.9619,0.1951,0.1913,0.9061,0.1951,0.3753,0.9061,0.3827,0.1802,0.9061,0.1951,0.3753,0.8536,0.3827,0.3536,0.8536,0.3827,0.3536,0.9061,0.1951,0.3753,0.8155,0.1951,0.5449,0.8536,0.3827,0.3536,0.8155,0.1951,0.5449,0.7682,0.3827,0.5133,0.7682,0.3827,0.5133,0.8155,0.1951,0.5449,0.6935,0.1951,0.6935,0.7682,0.3827,0.5133,0.6935,0.1951,0.6935,0.6533,0.3827,0.6533,0.6533,0.3827,0.6533,0.6935,0.1951,0.6935,0.5449,0.1951,0.8155,0.6533,0.3827,0.6533,0.5449,0.1951,0.8155,0.5133,0.3827,0.7682,0.5133,0.3827,0.7682,0.5449,0.1951,0.8155,0.3753,0.1951,0.9061,0.5133,0.3827,0.7682,0.3753,0.1951,0.9061,0.3536,0.3827,0.8536,0.3536,0.3827,0.8536,0.3753,0.1951,0.9061,0.1913,0.1951,0.9619,0.3536,0.3827,0.8536,0.1913,0.1951,0.9619,0.1802,0.3827,0.9061,0.1802,0.3827,0.9061,0.1913,0.1951,0.9619,0.0,0.1951,0.9808,0.1802,0.3827,0.9061,0.0,0.1951,0.9808,0.0,0.3827,0.9239,0.0,0.1951,0.9808,0.0,0.0,1.0,-0.1951,0.0,0.9808,0.0,0.1951,0.9808,-0.1951,0.0,0.9808,-0.1913,0.1951,0.9619,-0.1913,0.1951,0.9619,-0.1951,0.0,0.9808,-0.3827,0.0,0.9239,-0.1913,0.1951,0.9619,-0.3827,0.0,0.9239,-0.3753,0.1951,0.9061,-0.3753,0.1951,0.9061,-0.3827,0.0,0.9239,-0.5556,0.0,0.8315,-0.3753,0.1951,0.9061,-0.5556,0.0,0.8315,-0.5449,0.1951,0.8155,-0.5449,0.1951,0.8155,-0.5556,0.0,0.8315,-0.7071,0.0,0.7071,-0.5449,0.1951,0.8155,-0.7071,0.0,0.7071,-0.6935,0.1951,0.6935,-0.6935,0.1951,0.6935,-0.7071,0.0,0.7071,-0.8315,0.0,0.5556,-0.6935,0.1951,0.6935,-0.8315,0.0,0.5556,-0.8155,0.1951,0.5449,-0.8155,0.1951,0.5449,-0.8315,0.0,0.5556,-0.9239,0.0,0.3827,-0.8155,0.1951,0.5449,-0.9239,0.0,0.3827,-0.9061,0.1951,0.3753,-0.9061,0.1951,0.3753,-0.9239,0.0,0.3827,-0.9808,0.0,0.1951,-0.9061,0.1951,0.3753,-0.9808,0.0,0.1951,-0.9619,0.1951,0.1913,-0.9619,0.1951,0.1913,-0.9808,0.0,0.1951,-1.0,0.0,0.0,-0.9619,0.1951,0.1913,-1.0,0.0,0.0,-0.9808,0.1951,0.0,-0.9808,0.1951,0.0,-1.0,0.0,0.0,-0.9808,0.0,-0.1951,-0.9808,0.1951,0.0,-0.9808,0.0,-0.1951,-0.9619,0.1951,-0.1913,-0.9619,0.1951,-0.1913,-0.9808,0.0,-0.1951,-0.9239,0.0,-0.3827,-0.9619,0.1951,-0.1913,-0.9239,0.0,-0.3827,-0.9061,0.1951,-0.3753,-0.9061,0.1951,-0.3753,-0.9239,0.0,-0.3827,-0.8315,0.0,-0.5556,-0.9061,0.1951,-0.3753,-0.8315,0.0,-0.5556,-0.8155,0.1951,-0.5449,-0.8155,0.1951,-0.5449,-0.8315,0.0,-0.5556,-0.7071,0.0,-0.7071,-0.8155,0.1951,-0.5449,-0.7071,0.0,-0.7071,-0.6935,0.1951,-0.6935,-0.6935,0.1951,-0.6935,-0.7071,0.0,-0.7071,-0.5556,0.0,-0.8315,-0.6935,0.1951,-0.6935,-0.5556,0.0,-0.8315,-0.5449,0.1951,-0.8155,-0.5449,0.1951,-0.8155,-0.5556,0.0,-0.8315,-0.3827,0.0,-0.9239,-0.5449,0.1951,-0.8155,-0.3827,0.0,-0.9239,-0.3753,0.1951,-0.9061,-0.3753,0.1951,-0.9061,-0.3827,0.0,-0.9239,-0.1951,0.0,-0.9808,-0.3753,0.1951,-0.9061,-0.1951,0.0,-0.9808,-0.1913,0.1951,-0.9619,-0.1913,0.1951,-0.9619,-0.1951,0.0,-0.9808,0.0,0.0,-1.0,-0.1913,0.1951,-0.9619,0.0,0.0,-1.0,0.0,0.1951,-0.9808,0.0,0.1951,-0.9808,0.0,0.0,-1.0,0.1951,0.0,-0.9808,0.0,0.1951,-0.9808,0.1951,0.0,-0.9808,0.1913,0.1951,-0.9619,0.1913,0.1951,-0.9619,0.1951,0.0,-0.9808,0.3827,0.0,-0.9239,0.1913,0.1951,-0.9619,0.3827,0.0,-0.9239,0.3753,0.1951,-0.9061,0.3753,0.1951,-0.9061,0.3827,0.0,-0.9239,0.5556,0.0,-0.8315,0.3753,0.1951,-0.9061,0.5556,0.0,-0.8315,0.5449,0.1951,-0.8155,0.5449,0.1951,-0.8155,0.5556,0.0,-0.8315,0.7071,0.0,-0.7071,0.5449,0.1951,-0.8155,0.7071,0.0,-0.7071,0.6935,0.1951,-0.6935,0.6935,0.1951,-0.6935,0.7071,0.0,-0.7071,0.8315,0.0,-0.5556,0.6935,0.1951,-0.6935,0.8315,0.0,-0.5556,0.8155,0.1951,-0.5449,0.8155,0.1951,-0.5449,0.8315,0.0,-0.5556,0.9239,0.0,-0.3827,0.8155,0.1951,-0.5449,0.9239,0.0,-0.3827,0.9061,0.1951,-0.3753,0.9061,0.1951,-0.3753,0.9239,0.0,-0.3827,0.9808,0.0,-0.1951,0.9061,0.1951,-0.3753,0.9808,0.0,-0.1951,0.9619,0.1951,-0.1913,0.9619,0.1951,-0.1913,0.9808,0.0,-0.1951,1.0,0.0,0.0,0.9619,0.1951,-0.1913,1.0,0.0,0.0,0.9808,0.1951,0.0,0.9808,0.1951,0.0,1.0,0.0,0.0,0.9808,0.0,0.1951,0.9808,0.1951,0.0,0.9808,0.0,0.1951,0.9619,0.1951,0.1913,0.9619,0.1951,0.1913,0.9808,0.0,0.1951,0.9239,0.0,0.3827,0.9619,0.1951,0.1913,0.9239,0.0,0.3827,0.9061,0.1951,0.3753,0.9061,0.1951,0.3753,0.9239,0.0,0.3827,0.8315,0.0,0.5556,0.9061,0.1951,0.3753,0.8315,0.0,0.5556,0.8155,0.1951,0.5449,0.8155,0.1951,0.5449,0.8315,0.0,0.5556,0.7071,0.0,0.7071,0.8155,0.1951,0.5449,0.7071,0.0,0.7071,0.6935,0.1951,0.6935,0.6935,0.1951,0.6935,0.7071,0.0,0.7071,0.5556,0.0,0.8315,0.6935,0.1951,0.6935,0.5556,0.0,0.8315,0.5449,0.1951,0.8155,0.5449,0.1951,0.8155,0.5556,0.0,0.8315,0.3827,0.0,0.9239,0.5449,0.1951,0.8155,0.3827,0.0,0.9239,0.3753,0.1951,0.9061,0.3753,0.1951,0.9061,0.3827,0.0,0.9239,0.1951,0.0,0.9808,0.3753,0.1951,0.9061,0.1951,0.0,0.9808,0.1913,0.1951,0.9619,0.1913,0.1951,0.9619,0.1951,0.0,0.9808,0.0,0.0,1.0,0.1913,0.1951,0.9619,0.0,0.0,1.0,0.0,0.1951,0.9808,0.0,0.0,1.0,0.0,-0.1951,0.9808,-0.1913,-0.1951,0.9619,0.0,0.0,1.0,-0.1913,-0.1951,0.9619,-0.1951,0.0,0.9808,-0.1951,0.0,0.9808,-0.1913,-0.1951,0.9619,-0.3753,-0.1951,0.9061,-0.1951,0.0,0.9808,-0.3753,-0.1951,0.9061,-0.3827,0.0,0.9239,-0.3827,0.0,0.9239,-0.3753,-0.1951,0.9061,-0.5449,-0.1951,0.8155,-0.3827,0.0,0.9239,-0.5449,-0.1951,0.8155,-0.5556,0.0,0.8315,-0.5556,0.0,0.8315,-0.5449,-0.1951,0.8155,-0.6935,-0.1951,0.6935,-0.5556,0.0,0.8315,-0.6935,-0.1951,0.6935,-0.7071,0.0,0.7071,-0.7071,0.0,0.7071,-0.6935,-0.1951,0.6935,-0.8155,-0.1951,0.5449,-0.7071,0.0,0.7071,-0.8155,-0.1951,0.5449,-0.8315,0.0,0.5556,-0.8315,0.0,0.5556,-0.8155,-0.1951,0.5449,-0.9061,-0.1951,0.3753,-0.8315,0.0,0.5556,-0.9061,-0.1951,0.3753,-0.9239,0.0,0.3827,-0.9239,0.0,0.3827,-0.9061,-0.1951,0.3753,-0.9619,-0.1951,0.1913,-0.9239,0.0,0.3827,-0.9619,-0.1951,0.1913,-0.9808,0.0,0.1951,-0.9808,0.0,0.1951,-0.9619,-0.1951,0.1913,-0.9808,-0.1951,0.0,-0.9808,0.0,0.1951,-0.9808,-0.1951,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-0.9808,-0.1951,0.0,-0.9619,-0.1951,-0.1913,-1.0,0.0,0.0,-0.9619,-0.1951,-0.1913,-0.9808,0.0,-0.1951,-0.9808,0.0,-0.1951,-0.9619,-0.1951,-0.1913,-0.9061,-0.1951,-0.3753,-0.9808,0.0,-0.1951,-0.9061,-0.1951,-0.3753,-0.9239,0.0,-0.3827,-0.9239,0.0,-0.3827,-0.9061,-0.1951,-0.3753,-0.8155,-0.1951,-0.5449,-0.9239,0.0,-0.3827,-0.8155,-0.1951,-0.5449,-0.8315,0.0,-0.5556,-0.8315,0.0,-0.5556,-0.8155,-0.1951,-0.5449,-0.6935,-0.1951,-0.6935,-0.8315,0.0,-0.5556,-0.6935,-0.1951,-0.6935,-0.7071,0.0,-0.7071,-0.7071,0.0,-0.7071,-0.6935,-0.1951,-0.6935,-0.5449,-0.1951,-0.8155,-0.7071,0.0,-0.7071,-0.5449,-0.1951,-0.8155,-0.5556,0.0,-0.8315,-0.5556,0.0,-0.8315,-0.5449,-0.1951,-0.8155,-0.3753,-0.1951,-0.9061,-0.5556,0.0,-0.8315,-0.3753,-0.1951,-0.9061,-0.3827,0.0,-0.9239,-0.3827,0.0,-0.9239,-0.3753,-0.1951,-0.9061,-0.1913,-0.1951,-0.9619,-0.3827,0.0,-0.9239,-0.1913,-0.1951,-0.9619,-0.1951,0.0,-0.9808,-0.1951,0.0,-0.9808,-0.1913,-0.1951,-0.9619,0.0,-0.1951,-0.9808,-0.1951,0.0,-0.9808,0.0,-0.1951,-0.9808,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,-0.1951,-0.9808,0.1913,-0.1951,-0.9619,0.0,0.0,-1.0,0.1913,-0.1951,-0.9619,0.1951,0.0,-0.9808,0.1951,0.0,-0.9808,0.1913,-0.1951,-0.9619,0.3753,-0.1951,-0.9061,0.1951,0.0,-0.9808,0.3753,-0.1951,-0.9061,0.3827,0.0,-0.9239,0.3827,0.0,-0.9239,0.3753,-0.1951,-0.9061,0.5449,-0.1951,-0.8155,0.3827,0.0,-0.9239,0.5449,-0.1951,-0.8155,0.5556,0.0,-0.8315,0.5556,0.0,-0.8315,0.5449,-0.1951,-0.8155,0.6935,-0.1951,-0.6935,0.5556,0.0,-0.8315,0.6935,-0.1951,-0.6935,0.7071,0.0,-0.7071,0.7071,0.0,-0.7071,0.6935,-0.1951,-0.6935,0.8155,-0.1951,-0.5449,0.7071,0.0,-0.7071,0.8155,-0.1951,-0.5449,0.8315,0.0,-0.5556,0.8315,0.0,-0.5556,0.8155,-0.1951,-0.5449,0.9061,-0.1951,-0.3753,0.8315,0.0,-0.5556,0.9061,-0.1951,-0.3753,0.9239,0.0,-0.3827,0.9239,0.0,-0.3827,0.9061,-0.1951,-0.3753,0.9619,-0.1951,-0.1913,0.9239,0.0,-0.3827,0.9619,-0.1951,-0.1913,0.9808,0.0,-0.1951,0.9808,0.0,-0.1951,0.9619,-0.1951,-0.1913,0.9808,-0.1951,0.0,0.9808,0.0,-0.1951,0.9808,-0.1951,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.9808,-0.1951,0.0,0.9619,-0.1951,0.1913,1.0,0.0,0.0,0.9619,-0.1951,0.1913,0.9808,0.0,0.1951,0.9808,0.0,0.1951,0.9619,-0.1951,0.1913,0.9061,-0.1951,0.3753,0.9808,0.0,0.1951,0.9061,-0.1951,0.3753,0.9239,0.0,0.3827,0.9239,0.0,0.3827,0.9061,-0.1951,0.3753,0.8155,-0.1951,0.5449,0.9239,0.0,0.3827,0.8155,-0.1951,0.5449,0.8315,0.0,0.5556,0.8315,0.0,0.5556,0.8155,-0.1951,0.5449,0.6935,-0.1951,0.6935,0.8315,0.0,0.5556,0.6935,-0.1951,0.6935,0.7071,0.0,0.7071,0.7071,0.0,0.7071,0.6935,-0.1951,0.6935,0.5449,-0.1951,0.8155,0.7071,0.0,0.7071,0.5449,-0.1951,0.8155,0.5556,0.0,0.8315,0.5556,0.0,0.8315,0.5449,-0.1951,0.8155,0.3753,-0.1951,0.9061,0.5556,0.0,0.8315,0.3753,-0.1951,0.9061,0.3827,0.0,0.9239,0.3827,0.0,0.9239,0.3753,-0.1951,0.9061,0.1913,-0.1951,0.9619,0.3827,0.0,0.9239,0.1913,-0.1951,0.9619,0.1951,0.0,0.9808,0.1951,0.0,0.9808,0.1913,-0.1951,0.9619,0.0,-0.1951,0.9808,0.1951,0.0,0.9808,0.0,-0.1951,0.9808,0.0,0.0,1.0,0.0,-0.1951,0.9808,0.0,-0.3827,0.9239,-0.1802,-0.3827,0.9061,0.0,-0.1951,0.9808,-0.1802,-0.3827,0.9061,-0.1913,-0.1951,0.9619,-0.1913,-0.1951,0.9619,-0.1802,-0.3827,0.9061,-0.3536,-0.3827,0.8536,-0.1913,-0.1951,0.9619,-0.3536,-0.3827,0.8536,-0.3753,-0.1951,0.9061,-0.3753,-0.1951,0.9061,-0.3536,-0.3827,0.8536,-0.5133,-0.3827,0.7682,-0.3753,-0.1951,0.9061,-0.5133,-0.3827,0.7682,-0.5449,-0.1951,0.8155,-0.5449,-0.1951,0.8155,-0.5133,-0.3827,0.7682,-0.6533,-0.3827,0.6533,-0.5449,-0.1951,0.8155,-0.6533,-0.3827,0.6533,-0.6935,-0.1951,0.6935,-0.6935,-0.1951,0.6935,-0.6533,-0.3827,0.6533,-0.7682,-0.3827,0.5133,-0.6935,-0.1951,0.6935,-0.7682,-0.3827,0.5133,-0.8155,-0.1951,0.5449,-0.8155,-0.1951,0.5449,-0.7682,-0.3827,0.5133,-0.8536,-0.3827,0.3536,-0.8155,-0.1951,0.5449,-0.8536,-0.3827,0.3536,-0.9061,-0.1951,0.3753,-0.9061,-0.1951,0.3753,-0.8536,-0.3827,0.3536,-0.9061,-0.3827,0.1802,-0.9061,-0.1951,0.3753,-0.9061,-0.3827,0.1802,-0.9619,-0.1951,0.1913,-0.9619,-0.1951,0.1913,-0.9061,-0.3827,0.1802,-0.9239,-0.3827,0.0,-0.9619,-0.1951,0.1913,-0.9239,-0.3827,0.0,-0.9808,-0.1951,0.0,-0.9808,-0.1951,0.0,-0.9239,-0.3827,0.0,-0.9061,-0.3827,-0.1802,-0.9808,-0.1951,0.0,-0.9061,-0.3827,-0.1802,-0.9619,-0.1951,-0.1913,-0.9619,-0.1951,-0.1913,-0.9061,-0.3827,-0.1802,-0.8536,-0.3827,-0.3536,-0.9619,-0.1951,-0.1913,-0.8536,-0.3827,-0.3536,-0.9061,-0.1951,-0.3753,-0.9061,-0.1951,-0.3753,-0.8536,-0.3827,-0.3536,-0.7682,-0.3827,-0.5133,-0.9061,-0.1951,-0.3753,-0.7682,-0.3827,-0.5133,-0.8155,-0.1951,-0.5449,-0.8155,-0.1951,-0.5449,-0.7682,-0.3827,-0.5133,-0.6533,-0.3827,-0.6533,-0.8155,-0.1951,-0.5449,-0.6533,-0.3827,-0.6533,-0.6935,-0.1951,-0.6935,-0.6935,-0.1951,-0.6935,-0.6533,-0.3827,-0.6533,-0.5133,-0.3827,-0.7682,-0.6935,-0.1951,-0.6935,-0.5133,-0.3827,-0.7682,-0.5449,-0.1951,-0.8155,-0.5449,-0.1951,-0.8155,-0.5133,-0.3827,-0.7682,-0.3536,-0.3827,-0.8536,-0.5449,-0.1951,-0.8155,-0.3536,-0.3827,-0.8536,-0.3753,-0.1951,-0.9061,-0.3753,-0.1951,-0.9061,-0.3536,-0.3827,-0.8536,-0.1802,-0.3827,-0.9061,-0.3753,-0.1951,-0.9061,-0.1802,-0.3827,-0.9061,-0.1913,-0.1951,-0.9619,-0.1913,-0.1951,-0.9619,-0.1802,-0.3827,-0.9061,0.0,-0.3827,-0.9239,-0.1913,-0.1951,-0.9619,0.0,-0.3827,-0.9239,0.0,-0.1951,-0.9808,0.0,-0.1951,-0.9808,0.0,-0.3827,-0.9239,0.1802,-0.3827,-0.9061,0.0,-0.1951,-0.9808,0.1802,-0.3827,-0.9061,0.1913,-0.1951,-0.9619,0.1913,-0.1951,-0.9619,0.1802,-0.3827,-0.9061,0.3536,-0.3827,-0.8536,0.1913,-0.1951,-0.9619,0.3536,-0.3827,-0.8536,0.3753,-0.1951,-0.9061,0.3753,-0.1951,-0.9061,0.3536,-0.3827,-0.8536,0.5133,-0.3827,-0.7682,0.3753,-0.1951,-0.9061,0.5133,-0.3827,-0.7682,0.5449,-0.1951,-0.8155,0.5449,-0.1951,-0.8155,0.5133,-0.3827,-0.7682,0.6533,-0.3827,-0.6533,0.5449,-0.1951,-0.8155,0.6533,-0.3827,-0.6533,0.6935,-0.1951,-0.6935,0.6935,-0.1951,-0.6935,0.6533,-0.3827,-0.6533,0.7682,-0.3827,-0.5133,0.6935,-0.1951,-0.6935,0.7682,-0.3827,-0.5133,0.8155,-0.1951,-0.5449,0.8155,-0.1951,-0.5449,0.7682,-0.3827,-0.5133,0.8536,-0.3827,-0.3536,0.8155,-0.1951,-0.5449,0.8536,-0.3827,-0.3536,0.9061,-0.1951,-0.3753,0.9061,-0.1951,-0.3753,0.8536,-0.3827,-0.3536,0.9061,-0.3827,-0.1802,0.9061,-0.1951,-0.3753,0.9061,-0.3827,-0.1802,0.9619,-0.1951,-0.1913,0.9619,-0.1951,-0.1913,0.9061,-0.3827,-0.1802,0.9239,-0.3827,0.0,0.9619,-0.1951,-0.1913,0.9239,-0.3827,0.0,0.9808,-0.1951,0.0,0.9808,-0.1951,0.0,0.9239,-0.3827,0.0,0.9061,-0.3827,0.1802,0.9808,-0.1951,0.0,0.9061,-0.3827,0.1802,0.9619,-0.1951,0.1913,0.9619,-0.1951,0.1913,0.9061,-0.3827,0.1802,0.8536,-0.3827,0.3536,0.9619,-0.1951,0.1913,0.8536,-0.3827,0.3536,0.9061,-0.1951,0.3753,0.9061,-0.1951,0.3753,0.8536,-0.3827,0.3536,0.7682,-0.3827,0.5133,0.9061,-0.1951,0.3753,0.7682,-0.3827,0.5133,0.8155,-0.1951,0.5449,0.8155,-0.1951,0.5449,0.7682,-0.3827,0.5133,0.6533,-0.3827,0.6533,0.8155,-0.1951,0.5449,0.6533,-0.3827,0.6533,0.6935,-0.1951,0.6935,0.6935,-0.1951,0.6935,0.6533,-0.3827,0.6533,0.5133,-0.3827,0.7682,0.6935,-0.1951,0.6935,0.5133,-0.3827,0.7682,0.5449,-0.1951,0.8155,0.5449,-0.1951,0.8155,0.5133,-0.3827,0.7682,0.3536,-0.3827,0.8536,0.5449,-0.1951,0.8155,0.3536,-0.3827,0.8536,0.3753,-0.1951,0.9061,0.3753,-0.1951,0.9061,0.3536,-0.3827,0.8536,0.1802,-0.3827,0.9061,0.3753,-0.1951,0.9061,0.1802,-0.3827,0.9061,0.1913,-0.1951,0.9619,0.1913,-0.1951,0.9619,0.1802,-0.3827,0.9061,0.0,-0.3827,0.9239,0.1913,-0.1951,0.9619,0.0,-0.3827,0.9239,0.0,-0.1951,0.9808,0.0,-0.3827,0.9239,0.0,-0.5556,0.8315,-0.1622,-0.5556,0.8155,0.0,-0.3827,0.9239,-0.1622,-0.5556,0.8155,-0.1802,-0.3827,0.9061,-0.1802,-0.3827,0.9061,-0.1622,-0.5556,0.8155,-0.3182,-0.5556,0.7682,-0.1802,-0.3827,0.9061,-0.3182,-0.5556,0.7682,-0.3536,-0.3827,0.8536,-0.3536,-0.3827,0.8536,-0.3182,-0.5556,0.7682,-0.4619,-0.5556,0.6913,-0.3536,-0.3827,0.8536,-0.4619,-0.5556,0.6913,-0.5133,-0.3827,0.7682,-0.5133,-0.3827,0.7682,-0.4619,-0.5556,0.6913,-0.5879,-0.5556,0.5879,-0.5133,-0.3827,0.7682,-0.5879,-0.5556,0.5879,-0.6533,-0.3827,0.6533,-0.6533,-0.3827,0.6533,-0.5879,-0.5556,0.5879,-0.6913,-0.5556,0.4619,-0.6533,-0.3827,0.6533,-0.6913,-0.5556,0.4619,-0.7682,-0.3827,0.5133,-0.7682,-0.3827,0.5133,-0.6913,-0.5556,0.4619,-0.7682,-0.5556,0.3182,-0.7682,-0.3827,0.5133,-0.7682,-0.5556,0.3182,-0.8536,-0.3827,0.3536,-0.8536,-0.3827,0.3536,-0.7682,-0.5556,0.3182,-0.8155,-0.5556,0.1622,-0.8536,-0.3827,0.3536,-0.8155,-0.5556,0.1622,-0.9061,-0.3827,0.1802,-0.9061,-0.3827,0.1802,-0.8155,-0.5556,0.1622,-0.8315,-0.5556,0.0,-0.9061,-0.3827,0.1802,-0.8315,-0.5556,0.0,-0.9239,-0.3827,0.0,-0.9239,-0.3827,0.0,-0.8315,-0.5556,0.0,-0.8155,-0.5556,-0.1622,-0.9239,-0.3827,0.0,-0.8155,-0.5556,-0.1622,-0.9061,-0.3827,-0.1802,-0.9061,-0.3827,-0.1802,-0.8155,-0.5556,-0.1622,-0.7682,-0.5556,-0.3182,-0.9061,-0.3827,-0.1802,-0.7682,-0.5556,-0.3182,-0.8536,-0.3827,-0.3536,-0.8536,-0.3827,-0.3536,-0.7682,-0.5556,-0.3182,-0.6913,-0.5556,-0.4619,-0.8536,-0.3827,-0.3536,-0.6913,-0.5556,-0.4619,-0.7682,-0.3827,-0.5133,-0.7682,-0.3827,-0.5133,-0.6913,-0.5556,-0.4619,-0.5879,-0.5556,-0.5879,-0.7682,-0.3827,-0.5133,-0.5879,-0.5556,-0.5879,-0.6533,-0.3827,-0.6533,-0.6533,-0.3827,-0.6533,-0.5879,-0.5556,-0.5879,-0.4619,-0.5556,-0.6913,-0.6533,-0.3827,-0.6533,-0.4619,-0.5556,-0.6913,-0.5133,-0.3827,-0.7682,-0.5133,-0.3827,-0.7682,-0.4619,-0.5556,-0.6913,-0.3182,-0.5556,-0.7682,-0.5133,-0.3827,-0.7682,-0.3182,-0.5556,-0.7682,-0.3536,-0.3827,-0.8536,-0.3536,-0.3827,-0.8536,-0.3182,-0.5556,-0.7682,-0.1622,-0.5556,-0.8155,-0.3536,-0.3827,-0.8536,-0.1622,-0.5556,-0.8155,-0.1802,-0.3827,-0.9061,-0.1802,-0.3827,-0.9061,-0.1622,-0.5556,-0.8155,0.0,-0.5556,-0.8315,-0.1802,-0.3827,-0.9061,0.0,-0.5556,-0.8315,0.0,-0.3827,-0.9239,0.0,-0.3827,-0.9239,0.0,-0.5556,-0.8315,0.1622,-0.5556,-0.8155,0.0,-0.3827,-0.9239,0.1622,-0.5556,-0.8155,0.1802,-0.3827,-0.9061,0.1802,-0.3827,-0.9061,0.1622,-0.5556,-0.8155,0.3182,-0.5556,-0.7682,0.1802,-0.3827,-0.9061,0.3182,-0.5556,-0.7682,0.3536,-0.3827,-0.8536,0.3536,-0.3827,-0.8536,0.3182,-0.5556,-0.7682,0.4619,-0.5556,-0.6913,0.3536,-0.3827,-0.8536,0.4619,-0.5556,-0.6913,0.5133,-0.3827,-0.7682,0.5133,-0.3827,-0.7682,0.4619,-0.5556,-0.6913,0.5879,-0.5556,-0.5879,0.5133,-0.3827,-0.7682,0.5879,-0.5556,-0.5879,0.6533,-0.3827,-0.6533,0.6533,-0.3827,-0.6533,0.5879,-0.5556,-0.5879,0.6913,-0.5556,-0.4619,0.6533,-0.3827,-0.6533,0.6913,-0.5556,-0.4619,0.7682,-0.3827,-0.5133,0.7682,-0.3827,-0.5133,0.6913,-0.5556,-0.4619,0.7682,-0.5556,-0.3182,0.7682,-0.3827,-0.5133,0.7682,-0.5556,-0.3182,0.8536,-0.3827,-0.3536,0.8536,-0.3827,-0.3536,0.7682,-0.5556,-0.3182,0.8155,-0.5556,-0.1622,0.8536,-0.3827,-0.3536,0.8155,-0.5556,-0.1622,0.9061,-0.3827,-0.1802,0.9061,-0.3827,-0.1802,0.8155,-0.5556,-0.1622,0.8315,-0.5556,0.0,0.9061,-0.3827,-0.1802,0.8315,-0.5556,0.0,0.9239,-0.3827,0.0,0.9239,-0.3827,0.0,0.8315,-0.5556,0.0,0.8155,-0.5556,0.1622,0.9239,-0.3827,0.0,0.8155,-0.5556,0.1622,0.9061,-0.3827,0.1802,0.9061,-0.3827,0.1802,0.8155,-0.5556,0.1622,0.7682,-0.5556,0.3182,0.9061,-0.3827,0.1802,0.7682,-0.5556,0.3182,0.8536,-0.3827,0.3536,0.8536,-0.3827,0.3536,0.7682,-0.5556,0.3182,0.6913,-0.5556,0.4619,0.8536,-0.3827,0.3536,0.6913,-0.5556,0.4619,0.7682,-0.3827,0.5133,0.7682,-0.3827,0.5133,0.6913,-0.5556,0.4619,0.5879,-0.5556,0.5879,0.7682,-0.3827,0.5133,0.5879,-0.5556,0.5879,0.6533,-0.3827,0.6533,0.6533,-0.3827,0.6533,0.5879,-0.5556,0.5879,0.4619,-0.5556,0.6913,0.6533,-0.3827,0.6533,0.4619,-0.5556,0.6913,0.5133,-0.3827,0.7682,0.5133,-0.3827,0.7682,0.4619,-0.5556,0.6913,0.3182,-0.5556,0.7682,0.5133,-0.3827,0.7682,0.3182,-0.5556,0.7682,0.3536,-0.3827,0.8536,0.3536,-0.3827,0.8536,0.3182,-0.5556,0.7682,0.1622,-0.5556,0.8155,0.3536,-0.3827,0.8536,0.1622,-0.5556,0.8155,0.1802,-0.3827,0.9061,0.1802,-0.3827,0.9061,0.1622,-0.5556,0.8155,0.0,-0.5556,0.8315,0.1802,-0.3827,0.9061,0.0,-0.5556,0.8315,0.0,-0.3827,0.9239,0.0,-0.5556,0.8315,0.0,-0.7071,0.7071,-0.1379,-0.7071,0.6935,0.0,-0.5556,0.8315,-0.1379,-0.7071,0.6935,-0.1622,-0.5556,0.8155,-0.1622,-0.5556,0.8155,-0.1379,-0.7071,0.6935,-0.2706,-0.7071,0.6533,-0.1622,-0.5556,0.8155,-0.2706,-0.7071,0.6533,-0.3182,-0.5556,0.7682,-0.3182,-0.5556,0.7682,-0.2706,-0.7071,0.6533,-0.3928,-0.7071,0.5879,-0.3182,-0.5556,0.7682,-0.3928,-0.7071,0.5879,-0.4619,-0.5556,0.6913,-0.4619,-0.5556,0.6913,-0.3928,-0.7071,0.5879,-0.5,-0.7071,0.5,-0.4619,-0.5556,0.6913,-0.5,-0.7071,0.5,-0.5879,-0.5556,0.5879,-0.5879,-0.5556,0.5879,-0.5,-0.7071,0.5,-0.5879,-0.7071,0.3928,-0.5879,-0.5556,0.5879,-0.5879,-0.7071,0.3928,-0.6913,-0.5556,0.4619,-0.6913,-0.5556,0.4619,-0.5879,-0.7071,0.3928,-0.6533,-0.7071,0.2706,-0.6913,-0.5556,0.4619,-0.6533,-0.7071,0.2706,-0.7682,-0.5556,0.3182,-0.7682,-0.5556,0.3182,-0.6533,-0.7071,0.2706,-0.6935,-0.7071,0.1379,-0.7682,-0.5556,0.3182,-0.6935,-0.7071,0.1379,-0.8155,-0.5556,0.1622,-0.8155,-0.5556,0.1622,-0.6935,-0.7071,0.1379,-0.7071,-0.7071,0.0,-0.8155,-0.5556,0.1622,-0.7071,-0.7071,0.0,-0.8315,-0.5556,0.0,-0.8315,-0.5556,0.0,-0.7071,-0.7071,0.0,-0.6935,-0.7071,-0.1379,-0.8315,-0.5556,0.0,-0.6935,-0.7071,-0.1379,-0.8155,-0.5556,-0.1622,-0.8155,-0.5556,-0.1622,-0.6935,-0.7071,-0.1379,-0.6533,-0.7071,-0.2706,-0.8155,-0.5556,-0.1622,-0.6533,-0.7071,-0.2706,-0.7682,-0.5556,-0.3182,-0.7682,-0.5556,-0.3182,-0.6533,-0.7071,-0.2706,-0.5879,-0.7071,-0.3928,-0.7682,-0.5556,-0.3182,-0.5879,-0.7071,-0.3928,-0.6913,-0.5556,-0.4619,-0.6913,-0.5556,-0.4619,-0.5879,-0.7071,-0.3928,-0.5,-0.7071,-0.5,-0.6913,-0.5556,-0.4619,-0.5,-0.7071,-0.5,-0.5879,-0.5556,-0.5879,-0.5879,-0.5556,-0.5879,-0.5,-0.7071,-0.5,-0.3928,-0.7071,-0.5879,-0.5879,-0.5556,-0.5879,-0.3928,-0.7071,-0.5879,-0.4619,-0.5556,-0.6913,-0.4619,-0.5556,-0.6913,-0.3928,-0.7071,-0.5879,-0.2706,-0.7071,-0.6533,-0.4619,-0.5556,-0.6913,-0.2706,-0.7071,-0.6533,-0.3182,-0.5556,-0.7682,-0.3182,-0.5556,-0.7682,-0.2706,-0.7071,-0.6533,-0.1379,-0.7071,-0.6935,-0.3182,-0.5556,-0.7682,-0.1379,-0.7071,-0.6935,-0.1622,-0.5556,-0.8155,-0.1622,-0.5556,-0.8155,-0.1379,-0.7071,-0.6935,0.0,-0.7071,-0.7071,-0.1622,-0.5556,-0.8155,0.0,-0.7071,-0.7071,0.0,-0.5556,-0.8315,0.0,-0.5556,-0.8315,0.0,-0.7071,-0.7071,0.138,-0.7071,-0.6935,0.0,-0.5556,-0.8315,0.138,-0.7071,-0.6935,0.1622,-0.5556,-0.8155,0.1622,-0.5556,-0.8155,0.138,-0.7071,-0.6935,0.2706,-0.7071,-0.6533,0.1622,-0.5556,-0.8155,0.2706,-0.7071,-0.6533,0.3182,-0.5556,-0.7682,0.3182,-0.5556,-0.7682,0.2706,-0.7071,-0.6533,0.3928,-0.7071,-0.5879,0.3182,-0.5556,-0.7682,0.3928,-0.7071,-0.5879,0.4619,-0.5556,-0.6913,0.4619,-0.5556,-0.6913,0.3928,-0.7071,-0.5879,0.5,-0.7071,-0.5,0.4619,-0.5556,-0.6913,0.5,-0.7071,-0.5,0.5879,-0.5556,-0.5879,0.5879,-0.5556,-0.5879,0.5,-0.7071,-0.5,0.5879,-0.7071,-0.3928,0.5879,-0.5556,-0.5879,0.5879,-0.7071,-0.3928,0.6913,-0.5556,-0.4619,0.6913,-0.5556,-0.4619,0.5879,-0.7071,-0.3928,0.6533,-0.7071,-0.2706,0.6913,-0.5556,-0.4619,0.6533,-0.7071,-0.2706,0.7682,-0.5556,-0.3182,0.7682,-0.5556,-0.3182,0.6533,-0.7071,-0.2706,0.6935,-0.7071,-0.1379,0.7682,-0.5556,-0.3182,0.6935,-0.7071,-0.1379,0.8155,-0.5556,-0.1622,0.8155,-0.5556,-0.1622,0.6935,-0.7071,-0.1379,0.7071,-0.7071,0.0,0.8155,-0.5556,-0.1622,0.7071,-0.7071,0.0,0.8315,-0.5556,0.0,0.8315,-0.5556,0.0,0.7071,-0.7071,0.0,0.6935,-0.7071,0.138,0.8315,-0.5556,0.0,0.6935,-0.7071,0.138,0.8155,-0.5556,0.1622,0.8155,-0.5556,0.1622,0.6935,-0.7071,0.138,0.6533,-0.7071,0.2706,0.8155,-0.5556,0.1622,0.6533,-0.7071,0.2706,0.7682,-0.5556,0.3182,0.7682,-0.5556,0.3182,0.6533,-0.7071,0.2706,0.5879,-0.7071,0.3928,0.7682,-0.5556,0.3182,0.5879,-0.7071,0.3928,0.6913,-0.5556,0.4619,0.6913,-0.5556,0.4619,0.5879,-0.7071,0.3928,0.5,-0.7071,0.5,0.6913,-0.5556,0.4619,0.5,-0.7071,0.5,0.5879,-0.5556,0.5879,0.5879,-0.5556,0.5879,0.5,-0.7071,0.5,0.3928,-0.7071,0.5879,0.5879,-0.5556,0.5879,0.3928,-0.7071,0.5879,0.4619,-0.5556,0.6913,0.4619,-0.5556,0.6913,0.3928,-0.7071,0.5879,0.2706,-0.7071,0.6533,0.4619,-0.5556,0.6913,0.2706,-0.7071,0.6533,0.3182,-0.5556,0.7682,0.3182,-0.5556,0.7682,0.2706,-0.7071,0.6533,0.1379,-0.7071,0.6935,0.3182,-0.5556,0.7682,0.1379,-0.7071,0.6935,0.1622,-0.5556,0.8155,0.1622,-0.5556,0.8155,0.1379,-0.7071,0.6935,0.0,-0.7071,0.7071,0.1622,-0.5556,0.8155,0.0,-0.7071,0.7071,0.0,-0.5556,0.8315,0.0,-0.7071,0.7071,0.0,-0.8315,0.5556,-0.1084,-0.8315,0.5449,0.0,-0.7071,0.7071,-0.1084,-0.8315,0.5449,-0.1379,-0.7071,0.6935,-0.1379,-0.7071,0.6935,-0.1084,-0.8315,0.5449,-0.2126,-0.8315,0.5133,-0.1379,-0.7071,0.6935,-0.2126,-0.8315,0.5133,-0.2706,-0.7071,0.6533,-0.2706,-0.7071,0.6533,-0.2126,-0.8315,0.5133,-0.3087,-0.8315,0.4619,-0.2706,-0.7071,0.6533,-0.3087,-0.8315,0.4619,-0.3928,-0.7071,0.5879,-0.3928,-0.7071,0.5879,-0.3087,-0.8315,0.4619,-0.3928,-0.8315,0.3928,-0.3928,-0.7071,0.5879,-0.3928,-0.8315,0.3928,-0.5,-0.7071,0.5,-0.5,-0.7071,0.5,-0.3928,-0.8315,0.3928,-0.4619,-0.8315,0.3087,-0.5,-0.7071,0.5,-0.4619,-0.8315,0.3087,-0.5879,-0.7071,0.3928,-0.5879,-0.7071,0.3928,-0.4619,-0.8315,0.3087,-0.5133,-0.8315,0.2126,-0.5879,-0.7071,0.3928,-0.5133,-0.8315,0.2126,-0.6533,-0.7071,0.2706,-0.6533,-0.7071,0.2706,-0.5133,-0.8315,0.2126,-0.5449,-0.8315,0.1084,-0.6533,-0.7071,0.2706,-0.5449,-0.8315,0.1084,-0.6935,-0.7071,0.1379,-0.6935,-0.7071,0.1379,-0.5449,-0.8315,0.1084,-0.5556,-0.8315,0.0,-0.6935,-0.7071,0.1379,-0.5556,-0.8315,0.0,-0.7071,-0.7071,0.0,-0.7071,-0.7071,0.0,-0.5556,-0.8315,0.0,-0.5449,-0.8315,-0.1084,-0.7071,-0.7071,0.0,-0.5449,-0.8315,-0.1084,-0.6935,-0.7071,-0.1379,-0.6935,-0.7071,-0.1379,-0.5449,-0.8315,-0.1084,-0.5133,-0.8315,-0.2126,-0.6935,-0.7071,-0.1379,-0.5133,-0.8315,-0.2126,-0.6533,-0.7071,-0.2706,-0.6533,-0.7071,-0.2706,-0.5133,-0.8315,-0.2126,-0.4619,-0.8315,-0.3087,-0.6533,-0.7071,-0.2706,-0.4619,-0.8315,-0.3087,-0.5879,-0.7071,-0.3928,-0.5879,-0.7071,-0.3928,-0.4619,-0.8315,-0.3087,-0.3928,-0.8315,-0.3928,-0.5879,-0.7071,-0.3928,-0.3928,-0.8315,-0.3928,-0.5,-0.7071,-0.5,-0.5,-0.7071,-0.5,-0.3928,-0.8315,-0.3928,-0.3087,-0.8315,-0.4619,-0.5,-0.7071,-0.5,-0.3087,-0.8315,-0.4619,-0.3928,-0.7071,-0.5879,-0.3928,-0.7071,-0.5879,-0.3087,-0.8315,-0.4619,-0.2126,-0.8315,-0.5133,-0.3928,-0.7071,-0.5879,-0.2126,-0.8315,-0.5133,-0.2706,-0.7071,-0.6533,-0.2706,-0.7071,-0.6533,-0.2126,-0.8315,-0.5133,-0.1084,-0.8315,-0.5449,-0.2706,-0.7071,-0.6533,-0.1084,-0.8315,-0.5449,-0.1379,-0.7071,-0.6935,-0.1379,-0.7071,-0.6935,-0.1084,-0.8315,-0.5449,0.0,-0.8315,-0.5556,-0.1379,-0.7071,-0.6935,0.0,-0.8315,-0.5556,0.0,-0.7071,-0.7071,0.0,-0.7071,-0.7071,0.0,-0.8315,-0.5556,0.1084,-0.8315,-0.5449,0.0,-0.7071,-0.7071,0.1084,-0.8315,-0.5449,0.138,-0.7071,-0.6935,0.138,-0.7071,-0.6935,0.1084,-0.8315,-0.5449,0.2126,-0.8315,-0.5133,0.138,-0.7071,-0.6935,0.2126,-0.8315,-0.5133,0.2706,-0.7071,-0.6533,0.2706,-0.7071,-0.6533,0.2126,-0.8315,-0.5133,0.3087,-0.8315,-0.4619,0.2706,-0.7071,-0.6533,0.3087,-0.8315,-0.4619,0.3928,-0.7071,-0.5879,0.3928,-0.7071,-0.5879,0.3087,-0.8315,-0.4619,0.3928,-0.8315,-0.3928,0.3928,-0.7071,-0.5879,0.3928,-0.8315,-0.3928,0.5,-0.7071,-0.5,0.5,-0.7071,-0.5,0.3928,-0.8315,-0.3928,0.4619,-0.8315,-0.3087,0.5,-0.7071,-0.5,0.4619,-0.8315,-0.3087,0.5879,-0.7071,-0.3928,0.5879,-0.7071,-0.3928,0.4619,-0.8315,-0.3087,0.5133,-0.8315,-0.2126,0.5879,-0.7071,-0.3928,0.5133,-0.8315,-0.2126,0.6533,-0.7071,-0.2706,0.6533,-0.7071,-0.2706,0.5133,-0.8315,-0.2126,0.5449,-0.8315,-0.1084,0.6533,-0.7071,-0.2706,0.5449,-0.8315,-0.1084,0.6935,-0.7071,-0.1379,0.6935,-0.7071,-0.1379,0.5449,-0.8315,-0.1084,0.5556,-0.8315,0.0,0.6935,-0.7071,-0.1379,0.5556,-0.8315,0.0,0.7071,-0.7071,0.0,0.7071,-0.7071,0.0,0.5556,-0.8315,0.0,0.5449,-0.8315,0.1084,0.7071,-0.7071,0.0,0.5449,-0.8315,0.1084,0.6935,-0.7071,0.138,0.6935,-0.7071,0.138,0.5449,-0.8315,0.1084,0.5133,-0.8315,0.2126,0.6935,-0.7071,0.138,0.5133,-0.8315,0.2126,0.6533,-0.7071,0.2706,0.6533,-0.7071,0.2706,0.5133,-0.8315,0.2126,0.4619,-0.8315,0.3087,0.6533,-0.7071,0.2706,0.4619,-0.8315,0.3087,0.5879,-0.7071,0.3928,0.5879,-0.7071,0.3928,0.4619,-0.8315,0.3087,0.3928,-0.8315,0.3928,0.5879,-0.7071,0.3928,0.3928,-0.8315,0.3928,0.5,-0.7071,0.5,0.5,-0.7071,0.5,0.3928,-0.8315,0.3928,0.3087,-0.8315,0.4619,0.5,-0.7071,0.5,0.3087,-0.8315,0.4619,0.3928,-0.7071,0.5879,0.3928,-0.7071,0.5879,0.3087,-0.8315,0.4619,0.2126,-0.8315,0.5133,0.3928,-0.7071,0.5879,0.2126,-0.8315,0.5133,0.2706,-0.7071,0.6533,0.2706,-0.7071,0.6533,0.2126,-0.8315,0.5133,0.1084,-0.8315,0.5449,0.2706,-0.7071,0.6533,0.1084,-0.8315,0.5449,0.1379,-0.7071,0.6935,0.1379,-0.7071,0.6935,0.1084,-0.8315,0.5449,0.0,-0.8315,0.5556,0.1379,-0.7071,0.6935,0.0,-0.8315,0.5556,0.0,-0.7071,0.7071,0.0,-0.8315,0.5556,0.0,-0.9239,0.3827,-0.0747,-0.9239,0.3753,0.0,-0.8315,0.5556,-0.0747,-0.9239,0.3753,-0.1084,-0.8315,0.5449,-0.1084,-0.8315,0.5449,-0.0747,-0.9239,0.3753,-0.1464,-0.9239,0.3536,-0.1084,-0.8315,0.5449,-0.1464,-0.9239,0.3536,-0.2126,-0.8315,0.5133,-0.2126,-0.8315,0.5133,-0.1464,-0.9239,0.3536,-0.2126,-0.9239,0.3182,-0.2126,-0.8315,0.5133,-0.2126,-0.9239,0.3182,-0.3087,-0.8315,0.4619,-0.3087,-0.8315,0.4619,-0.2126,-0.9239,0.3182,-0.2706,-0.9239,0.2706,-0.3087,-0.8315,0.4619,-0.2706,-0.9239,0.2706,-0.3928,-0.8315,0.3928,-0.3928,-0.8315,0.3928,-0.2706,-0.9239,0.2706,-0.3182,-0.9239,0.2126,-0.3928,-0.8315,0.3928,-0.3182,-0.9239,0.2126,-0.4619,-0.8315,0.3087,-0.4619,-0.8315,0.3087,-0.3182,-0.9239,0.2126,-0.3536,-0.9239,0.1464,-0.4619,-0.8315,0.3087,-0.3536,-0.9239,0.1464,-0.5133,-0.8315,0.2126,-0.5133,-0.8315,0.2126,-0.3536,-0.9239,0.1464,-0.3753,-0.9239,0.0747,-0.5133,-0.8315,0.2126,-0.3753,-0.9239,0.0747,-0.5449,-0.8315,0.1084,-0.5449,-0.8315,0.1084,-0.3753,-0.9239,0.0747,-0.3827,-0.9239,0.0,-0.5449,-0.8315,0.1084,-0.3827,-0.9239,0.0,-0.5556,-0.8315,0.0,-0.5556,-0.8315,0.0,-0.3827,-0.9239,0.0,-0.3753,-0.9239,-0.0747,-0.5556,-0.8315,0.0,-0.3753,-0.9239,-0.0747,-0.5449,-0.8315,-0.1084,-0.5449,-0.8315,-0.1084,-0.3753,-0.9239,-0.0747,-0.3536,-0.9239,-0.1464,-0.5449,-0.8315,-0.1084,-0.3536,-0.9239,-0.1464,-0.5133,-0.8315,-0.2126,-0.5133,-0.8315,-0.2126,-0.3536,-0.9239,-0.1464,-0.3182,-0.9239,-0.2126,-0.5133,-0.8315,-0.2126,-0.3182,-0.9239,-0.2126,-0.4619,-0.8315,-0.3087,-0.4619,-0.8315,-0.3087,-0.3182,-0.9239,-0.2126,-0.2706,-0.9239,-0.2706,-0.4619,-0.8315,-0.3087,-0.2706,-0.9239,-0.2706,-0.3928,-0.8315,-0.3928,-0.3928,-0.8315,-0.3928,-0.2706,-0.9239,-0.2706,-0.2126,-0.9239,-0.3182,-0.3928,-0.8315,-0.3928,-0.2126,-0.9239,-0.3182,-0.3087,-0.8315,-0.4619,-0.3087,-0.8315,-0.4619,-0.2126,-0.9239,-0.3182,-0.1464,-0.9239,-0.3536,-0.3087,-0.8315,-0.4619,-0.1464,-0.9239,-0.3536,-0.2126,-0.8315,-0.5133,-0.2126,-0.8315,-0.5133,-0.1464,-0.9239,-0.3536,-0.0747,-0.9239,-0.3753,-0.2126,-0.8315,-0.5133,-0.0747,-0.9239,-0.3753,-0.1084,-0.8315,-0.5449,-0.1084,-0.8315,-0.5449,-0.0747,-0.9239,-0.3753,0.0,-0.9239,-0.3827,-0.1084,-0.8315,-0.5449,0.0,-0.9239,-0.3827,0.0,-0.8315,-0.5556,0.0,-0.8315,-0.5556,0.0,-0.9239,-0.3827,0.0747,-0.9239,-0.3753,0.0,-0.8315,-0.5556,0.0747,-0.9239,-0.3753,0.1084,-0.8315,-0.5449,0.1084,-0.8315,-0.5449,0.0747,-0.9239,-0.3753,0.1464,-0.9239,-0.3536,0.1084,-0.8315,-0.5449,0.1464,-0.9239,-0.3536,0.2126,-0.8315,-0.5133,0.2126,-0.8315,-0.5133,0.1464,-0.9239,-0.3536,0.2126,-0.9239,-0.3182,0.2126,-0.8315,-0.5133,0.2126,-0.9239,-0.3182,0.3087,-0.8315,-0.4619,0.3087,-0.8315,-0.4619,0.2126,-0.9239,-0.3182,0.2706,-0.9239,-0.2706,0.3087,-0.8315,-0.4619,0.2706,-0.9239,-0.2706,0.3928,-0.8315,-0.3928,0.3928,-0.8315,-0.3928,0.2706,-0.9239,-0.2706,0.3182,-0.9239,-0.2126,0.3928,-0.8315,-0.3928,0.3182,-0.9239,-0.2126,0.4619,-0.8315,-0.3087,0.4619,-0.8315,-0.3087,0.3182,-0.9239,-0.2126,0.3536,-0.9239,-0.1464,0.4619,-0.8315,-0.3087,0.3536,-0.9239,-0.1464,0.5133,-0.8315,-0.2126,0.5133,-0.8315,-0.2126,0.3536,-0.9239,-0.1464,0.3753,-0.9239,-0.0747,0.5133,-0.8315,-0.2126,0.3753,-0.9239,-0.0747,0.5449,-0.8315,-0.1084,0.5449,-0.8315,-0.1084,0.3753,-0.9239,-0.0747,0.3827,-0.9239,0.0,0.5449,-0.8315,-0.1084,0.3827,-0.9239,0.0,0.5556,-0.8315,0.0,0.5556,-0.8315,0.0,0.3827,-0.9239,0.0,0.3753,-0.9239,0.0747,0.5556,-0.8315,0.0,0.3753,-0.9239,0.0747,0.5449,-0.8315,0.1084,0.5449,-0.8315,0.1084,0.3753,-0.9239,0.0747,0.3536,-0.9239,0.1464,0.5449,-0.8315,0.1084,0.3536,-0.9239,0.1464,0.5133,-0.8315,0.2126,0.5133,-0.8315,0.2126,0.3536,-0.9239,0.1464,0.3182,-0.9239,0.2126,0.5133,-0.8315,0.2126,0.3182,-0.9239,0.2126,0.4619,-0.8315,0.3087,0.4619,-0.8315,0.3087,0.3182,-0.9239,0.2126,0.2706,-0.9239,0.2706,0.4619,-0.8315,0.3087,0.2706,-0.9239,0.2706,0.3928,-0.8315,0.3928,0.3928,-0.8315,0.3928,0.2706,-0.9239,0.2706,0.2126,-0.9239,0.3182,0.3928,-0.8315,0.3928,0.2126,-0.9239,0.3182,0.3087,-0.8315,0.4619,0.3087,-0.8315,0.4619,0.2126,-0.9239,0.3182,0.1464,-0.9239,0.3536,0.3087,-0.8315,0.4619,0.1464,-0.9239,0.3536,0.2126,-0.8315,0.5133,0.2126,-0.8315,0.5133,0.1464,-0.9239,0.3536,0.0747,-0.9239,0.3753,0.2126,-0.8315,0.5133,0.0747,-0.9239,0.3753,0.1084,-0.8315,0.5449,0.1084,-0.8315,0.5449,0.0747,-0.9239,0.3753,0.0,-0.9239,0.3827,0.1084,-0.8315,0.5449,0.0,-0.9239,0.3827,0.0,-0.8315,0.5556,0.0,-0.9239,0.3827,0.0,-0.9808,0.1951,-0.0381,-0.9808,0.1913,0.0,-0.9239,0.3827,-0.0381,-0.9808,0.1913,-0.0747,-0.9239,0.3753,-0.0747,-0.9239,0.3753,-0.0381,-0.9808,0.1913,-0.0747,-0.9808,0.1802,-0.0747,-0.9239,0.3753,-0.0747,-0.9808,0.1802,-0.1464,-0.9239,0.3536,-0.1464,-0.9239,0.3536,-0.0747,-0.9808,0.1802,-0.1084,-0.9808,0.1622,-0.1464,-0.9239,0.3536,-0.1084,-0.9808,0.1622,-0.2126,-0.9239,0.3182,-0.2126,-0.9239,0.3182,-0.1084,-0.9808,0.1622,-0.1379,-0.9808,0.1379,-0.2126,-0.9239,0.3182,-0.1379,-0.9808,0.1379,-0.2706,-0.9239,0.2706,-0.2706,-0.9239,0.2706,-0.1379,-0.9808,0.1379,-0.1622,-0.9808,0.1084,-0.2706,-0.9239,0.2706,-0.1622,-0.9808,0.1084,-0.3182,-0.9239,0.2126,-0.3182,-0.9239,0.2126,-0.1622,-0.9808,0.1084,-0.1802,-0.9808,0.0747,-0.3182,-0.9239,0.2126,-0.1802,-0.9808,0.0747,-0.3536,-0.9239,0.1464,-0.3536,-0.9239,0.1464,-0.1802,-0.9808,0.0747,-0.1913,-0.9808,0.0381,-0.3536,-0.9239,0.1464,-0.1913,-0.9808,0.0381,-0.3753,-0.9239,0.0747,-0.3753,-0.9239,0.0747,-0.1913,-0.9808,0.0381,-0.1951,-0.9808,0.0,-0.3753,-0.9239,0.0747,-0.1951,-0.9808,0.0,-0.3827,-0.9239,0.0,-0.3827,-0.9239,0.0,-0.1951,-0.9808,0.0,-0.1913,-0.9808,-0.0381,-0.3827,-0.9239,0.0,-0.1913,-0.9808,-0.0381,-0.3753,-0.9239,-0.0747,-0.3753,-0.9239,-0.0747,-0.1913,-0.9808,-0.0381,-0.1802,-0.9808,-0.0747,-0.3753,-0.9239,-0.0747,-0.1802,-0.9808,-0.0747,-0.3536,-0.9239,-0.1464,-0.3536,-0.9239,-0.1464,-0.1802,-0.9808,-0.0747,-0.1622,-0.9808,-0.1084,-0.3536,-0.9239,-0.1464,-0.1622,-0.9808,-0.1084,-0.3182,-0.9239,-0.2126,-0.3182,-0.9239,-0.2126,-0.1622,-0.9808,-0.1084,-0.1379,-0.9808,-0.1379,-0.3182,-0.9239,-0.2126,-0.1379,-0.9808,-0.1379,-0.2706,-0.9239,-0.2706,-0.2706,-0.9239,-0.2706,-0.1379,-0.9808,-0.1379,-0.1084,-0.9808,-0.1622,-0.2706,-0.9239,-0.2706,-0.1084,-0.9808,-0.1622,-0.2126,-0.9239,-0.3182,-0.2126,-0.9239,-0.3182,-0.1084,-0.9808,-0.1622,-0.0747,-0.9808,-0.1802,-0.2126,-0.9239,-0.3182,-0.0747,-0.9808,-0.1802,-0.1464,-0.9239,-0.3536,-0.1464,-0.9239,-0.3536,-0.0747,-0.9808,-0.1802,-0.0381,-0.9808,-0.1913,-0.1464,-0.9239,-0.3536,-0.0381,-0.9808,-0.1913,-0.0747,-0.9239,-0.3753,-0.0747,-0.9239,-0.3753,-0.0381,-0.9808,-0.1913,0.0,-0.9808,-0.1951,-0.0747,-0.9239,-0.3753,0.0,-0.9808,-0.1951,0.0,-0.9239,-0.3827,0.0,-0.9239,-0.3827,0.0,-0.9808,-0.1951,0.0381,-0.9808,-0.1913,0.0,-0.9239,-0.3827,0.0381,-0.9808,-0.1913,0.0747,-0.9239,-0.3753,0.0747,-0.9239,-0.3753,0.0381,-0.9808,-0.1913,0.0747,-0.9808,-0.1802,0.0747,-0.9239,-0.3753,0.0747,-0.9808,-0.1802,0.1464,-0.9239,-0.3536,0.1464,-0.9239,-0.3536,0.0747,-0.9808,-0.1802,0.1084,-0.9808,-0.1622,0.1464,-0.9239,-0.3536,0.1084,-0.9808,-0.1622,0.2126,-0.9239,-0.3182,0.2126,-0.9239,-0.3182,0.1084,-0.9808,-0.1622,0.1379,-0.9808,-0.1379,0.2126,-0.9239,-0.3182,0.1379,-0.9808,-0.1379,0.2706,-0.9239,-0.2706,0.2706,-0.9239,-0.2706,0.1379,-0.9808,-0.1379,0.1622,-0.9808,-0.1084,0.2706,-0.9239,-0.2706,0.1622,-0.9808,-0.1084,0.3182,-0.9239,-0.2126,0.3182,-0.9239,-0.2126,0.1622,-0.9808,-0.1084,0.1802,-0.9808,-0.0747,0.3182,-0.9239,-0.2126,0.1802,-0.9808,-0.0747,0.3536,-0.9239,-0.1464,0.3536,-0.9239,-0.1464,0.1802,-0.9808,-0.0747,0.1913,-0.9808,-0.0381,0.3536,-0.9239,-0.1464,0.1913,-0.9808,-0.0381,0.3753,-0.9239,-0.0747,0.3753,-0.9239,-0.0747,0.1913,-0.9808,-0.0381,0.1951,-0.9808,0.0,0.3753,-0.9239,-0.0747,0.1951,-0.9808,0.0,0.3827,-0.9239,0.0,0.3827,-0.9239,0.0,0.1951,-0.9808,0.0,0.1913,-0.9808,0.0381,0.3827,-0.9239,0.0,0.1913,-0.9808,0.0381,0.3753,-0.9239,0.0747,0.3753,-0.9239,0.0747,0.1913,-0.9808,0.0381,0.1802,-0.9808,0.0747,0.3753,-0.9239,0.0747,0.1802,-0.9808,0.0747,0.3536,-0.9239,0.1464,0.3536,-0.9239,0.1464,0.1802,-0.9808,0.0747,0.1622,-0.9808,0.1084,0.3536,-0.9239,0.1464,0.1622,-0.9808,0.1084,0.3182,-0.9239,0.2126,0.3182,-0.9239,0.2126,0.1622,-0.9808,0.1084,0.1379,-0.9808,0.1379,0.3182,-0.9239,0.2126,0.1379,-0.9808,0.1379,0.2706,-0.9239,0.2706,0.2706,-0.9239,0.2706,0.1379,-0.9808,0.1379,0.1084,-0.9808,0.1622,0.2706,-0.9239,0.2706,0.1084,-0.9808,0.1622,0.2126,-0.9239,0.3182,0.2126,-0.9239,0.3182,0.1084,-0.9808,0.1622,0.0747,-0.9808,0.1802,0.2126,-0.9239,0.3182,0.0747,-0.9808,0.1802,0.1464,-0.9239,0.3536,0.1464,-0.9239,0.3536,0.0747,-0.9808,0.1802,0.0381,-0.9808,0.1913,0.1464,-0.9239,0.3536,0.0381,-0.9808,0.1913,0.0747,-0.9239,0.3753,0.0747,-0.9239,0.3753,0.0381,-0.9808,0.1913,0.0,-0.9808,0.1951,0.0747,-0.9239,0.3753,0.0,-0.9808,0.1951,0.0,-0.9239,0.3827,0.0,-1.0,0.0,-0.0381,-0.9808,0.1913,0.0,-0.9808,0.1951,0.0,-1.0,0.0,-0.0747,-0.9808,0.1802,-0.0381,-0.9808,0.1913,0.0,-1.0,0.0,-0.1084,-0.9808,0.1622,-0.0747,-0.9808,0.1802,0.0,-1.0,0.0,-0.1379,-0.9808,0.1379,-0.1084,-0.9808,0.1622,0.0,-1.0,0.0,-0.1622,-0.9808,0.1084,-0.1379,-0.9808,0.1379,0.0,-1.0,0.0,-0.1802,-0.9808,0.0747,-0.1622,-0.9808,0.1084,0.0,-1.0,0.0,-0.1913,-0.9808,0.0381,-0.1802,-0.9808,0.0747,0.0,-1.0,0.0,-0.1951,-0.9808,0.0,-0.1913,-0.9808,0.0381,0.0,-1.0,0.0,-0.1913,-0.9808,-0.0381,-0.1951,-0.9808,0.0,0.0,-1.0,0.0,-0.1802,-0.9808,-0.0747,-0.1913,-0.9808,-0.0381,0.0,-1.0,0.0,-0.1622,-0.9808,-0.1084,-0.1802,-0.9808,-0.0747,0.0,-1.0,0.0,-0.1379,-0.9808,-0.1379,-0.1622,-0.9808,-0.1084,0.0,-1.0,0.0,-0.1084,-0.9808,-0.1622,-0.1379,-0.9808,-0.1379,0.0,-1.0,0.0,-0.0747,-0.9808,-0.1802,-0.1084,-0.9808,-0.1622,0.0,-1.0,0.0,-0.0381,-0.9808,-0.1913,-0.0747,-0.9808,-0.1802,0.0,-1.0,0.0,0.0,-0.9808,-0.1951,-0.0381,-0.9808,-0.1913,0.0,-1.0,0.0,0.0381,-0.9808,-0.1913,0.0,-0.9808,-0.1951,0.0,-1.0,0.0,0.0747,-0.9808,-0.1802,0.0381,-0.9808,-0.1913,0.0,-1.0,0.0,0.1084,-0.9808,-0.1622,0.0747,-0.9808,-0.1802,0.0,-1.0,0.0,0.1379,-0.9808,-0.1379,0.1084,-0.9808,-0.1622,0.0,-1.0,0.0,0.1622,-0.9808,-0.1084,0.1379,-0.9808,-0.1379,0.0,-1.0,0.0,0.1802,-0.9808,-0.0747,0.1622,-0.9808,-0.1084,0.0,-1.0,0.0,0.1913,-0.9808,-0.0381,0.1802,-0.9808,-0.0747,0.0,-1.0,0.0,0.1951,-0.9808,0.0,0.1913,-0.9808,-0.0381,0.0,-1.0,0.0,0.1913,-0.9808,0.0381,0.1951,-0.9808,0.0,0.0,-1.0,0.0,0.1802,-0.9808,0.0747,0.1913,-0.9808,0.0381,0.0,-1.0,0.0,0.1622,-0.9808,0.1084,0.1802,-0.9808,0.0747,0.0,-1.0,0.0,0.1379,-0.9808,0.1379,0.1622,-0.9808,0.1084,0.0,-1.0,0.0,0.1084,-0.9808,0.1622,0.1379,-0.9808,0.1379,0.0,-1.0,0.0,0.0747,-0.9808,0.1802,0.1084,-0.9808,0.1622,0.0,-1.0,0.0,0.0381,-0.9808,0.1913,0.0747,-0.9808,0.1802,0.0,-1.0,0.0,0.0,-0.9808,0.1951,0.0381,-0.9808,0.1913],"normals":[0.0,1.0,0.0,0.0,0.9796,0.201,-0.0392,0.9796,0.1971,0.0,1.0,0.0,-0.0392,0.9796,0.1971,-0.0769,0.9796,0.1857,0.0,1.0,0.0,-0.0769,0.9796,0.1857,-0.1117,0.9796,0.1671,0.0,1.0,0.0,-0.1117,0.9796,0.1671,-0.1421,0.9796,0.1421,0.0,1.0,0.0,-0.1421,0.9796,0.1421,-0.1671,0.9796,0.1117,0.0,1.0,0.0,-0.1671,0.9796,0.1117,-0.1857,0.9796,0.0769,0.0,1.0,0.0,-0.1857,0.9796,0.0769,-0.1971,0.9796,0.0392,0.0,1.0,0.0,-0.1971,0.9796,0.0392,-0.201,0.9796,0.0,0.0,1.0,0.0,-0.201,0.9796,0.0,-0.1971,0.9796,-0.0392,0.0,1.0,0.0,-0.1971,0.9796,-0.0392,-0.1857,0.9796,-0.0769,0.0,1.0,0.0,-0.1857,0.9796,-0.0769,-0.1671,0.9796,-0.1117,0.0,1.0,0.0,-0.1671,0.9796,-0.1117,-0.1421,0.9796,-0.1421,0.0,1.0,0.0,-0.1421,0.9796,-0.1421,-0.1117,0.9796,-0.1671,0.0,1.0,0.0,-0.1117,0.9796,-0.1671,-0.0769,0.9796,-0.1857,0.0,1.0,0.0,-0.0769,0.9796,-0.1857,-0.0392,0.9796,-0.1971,0.0,1.0,0.0,-0.0392,0.9796,-0.1971,0.0,0.9796,-0.201,0.0,1.0,0.0,0.0,0.9796,-0.201,0.0392,0.9796,-0.1971,0.0,1.0,0.0,0.0392,0.9796,-0.1971,0.0769,0.9796,-0.1857,0.0,1.0,0.0,0.0769,0.9796,-0.1857,0.1117,0.9796,-0.1671,0.0,1.0,0.0,0.1117,0.9796,-0.1671,0.1421,0.9796,-0.1421,0.0,1.0,0.0,0.1421,0.9796,-0.1421,0.1671,0.9796,-0.1117,0.0,1.0,0.0,0.1671,0.9796,-0.1117,0.1857,0.9796,-0.0769,0.0,1.0,0.0,0.1857,0.9796,-0.0769,0.1971,0.9796,-0.0392,0.0,1.0,0.0,0.1971,0.9796,-0.0392,0.201,0.9796,0.0,0.0,1.0,0.0,0.201,0.9796,0.0,0.1971,0.9796,0.0392,0.0,1.0,0.0,0.1971,0.9796,0.0392,0.1857,0.9796,0.0769,0.0,1.0,0.0,0.1857,0.9796,0.0769,0.1671,0.9796,0.1117,0.0,1.0,0.0,0.1671,0.9796,0.1117,0.1421,0.9796,0.1421,0.0,1.0,0.0,0.1421,0.9796,0.1421,0.1117,0.9796,0.1671,0.0,1.0,0.0,0.1117,0.9796,0.1671,0.0769,0.9796,0.1857,0.0,1.0,0.0,0.0769,0.9796,0.1857,0.0392,0.9796,0.1971,0.0,1.0,0.0,0.0392,0.9796,0.1971,0.0,0.9796,0.201,0.0,0.9796,0.201,0.0,0.9217,0.3879,-0.0757,0.9217,0.3804,0.0,0.9796,0.201,-0.0757,0.9217,0.3804,-0.0392,0.9796,0.1971,-0.0392,0.9796,0.1971,-0.0757,0.9217,0.3804,-0.1484,0.9217,0.3584,-0.0392,0.9796,0.1971,-0.1484,0.9217,0.3584,-0.0769,0.9796,0.1857,-0.0769,0.9796,0.1857,-0.1484,0.9217,0.3584,-0.2155,0.9217,0.3225,-0.0769,0.9796,0.1857,-0.2155,0.9217,0.3225,-0.1117,0.9796,0.1671,-0.1117,0.9796,0.1671,-0.2155,0.9217,0.3225,-0.2743,0.9217,0.2743,-0.1117,0.9796,0.1671,-0.2743,0.9217,0.2743,-0.1421,0.9796,0.1421,-0.1421,0.9796,0.1421,-0.2743,0.9217,0.2743,-0.3225,0.9217,0.2155,-0.1421,0.9796,0.1421,-0.3225,0.9217,0.2155,-0.1671,0.9796,0.1117,-0.1671,0.9796,0.1117,-0.3225,0.9217,0.2155,-0.3584,0.9217,0.1484,-0.1671,0.9796,0.1117,-0.3584,0.9217,0.1484,-0.1857,0.9796,0.0769,-0.1857,0.9796,0.0769,-0.3584,0.9217,0.1484,-0.3804,0.9217,0.0757,-0.1857,0.9796,0.0769,-0.3804,0.9217,0.0757,-0.1971,0.9796,0.0392,-0.1971,0.9796,0.0392,-0.3804,0.9217,0.0757,-0.3879,0.9217,0.0,-0.1971,0.9796,0.0392,-0.3879,0.9217,0.0,-0.201,0.9796,0.0,-0.201,0.9796,0.0,-0.3879,0.9217,0.0,-0.3804,0.9217,-0.0757,-0.201,0.9796,0.0,-0.3804,0.9217,-0.0757,-0.1971,0.9796,-0.0392,-0.1971,0.9796,-0.0392,-0.3804,0.9217,-0.0757,-0.3584,0.9217,-0.1484,-0.1971,0.9796,-0.0392,-0.3584,0.9217,-0.1484,-0.1857,0.9796,-0.0769,-0.1857,0.9796,-0.0769,-0.3584,0.9217,-0.1484,-0.3225,0.9217,-0.2155,-0.1857,0.9796,-0.0769,-0.3225,0.9217,-0.2155,-0.1671,0.9796,-0.1117,-0.1671,0.9796,-0.1117,-0.3225,0.9217,-0.2155,-0.2743,0.9217,-0.2743,-0.1671,0.9796,-0.1117,-0.2743,0.9217,-0.2743,-0.1421,0.9796,-0.1421,-0.1421,0.9796,-0.1421,-0.2743,0.9217,-0.2743,-0.2155,0.9217,-0.3225,-0.1421,0.9796,-0.1421,-0.2155,0.9217,-0.3225,-0.1117,0.9796,-0.1671,-0.1117,0.9796,-0.1671,-0.2155,0.9217,-0.3225,-0.1484,0.9217,-0.3584,-0.1117,0.9796,-0.1671,-0.1484,0.9217,-0.3584,-0.0769,0.9796,-0.1857,-0.0769,0.9796,-0.1857,-0.1484,0.9217,-0.3584,-0.0757,0.9217,-0.3804,-0.0769,0.9796,-0.1857,-0.0757,0.9217,-0.3804,-0.0392,0.9796,-0.1971,-0.0392,0.9796,-0.1971,-0.0757,0.9217,-0.3804,0.0,0.9217,-0.3879,-0.0392,0.9796,-0.1971,0.0,0.9217,-0.3879,0.0,0.9796,-0.201,0.0,0.9796,-0.201,0.0,0.9217,-0.3879,0.0757,0.9217,-0.3804,0.0,0.9796,-0.201,0.0757,0.9217,-0.3804,0.0392,0.9796,-0.1971,0.0392,0.9796,-0.1971,0.0757,0.9217,-0.3804,0.1484,0.9217,-0.3584,0.0392,0.9796,-0.1971,0.1484,0.9217,-0.3584,0.0769,0.9796,-0.1857,0.0769,0.9796,-0.1857,0.1484,0.9217,-0.3584,0.2155,0.9217,-0.3225,0.0769,0.9796,-0.1857,0.2155,0.9217,-0.3225,0.1117,0.9796,-0.1671,0.1117,0.9796,-0.1671,0.2155,0.9217,-0.3225,0.2743,0.9217,-0.2743,0.1117,0.9796,-0.1671,0.2743,0.9217,-0.2743,0.1421,0.9796,-0.1421,0.1421,0.9796,-0.1421,0.2743,0.9217,-0.2743,0.3225,0.9217,-0.2155,0.1421,0.9796,-0.1421,0.3225,0.9217,-0.2155,0.1671,0.9796,-0.1117,0.1671,0.9796,-0.1117,0.3225,0.9217,-0.2155,0.3584,0.9217,-0.1484,0.1671,0.9796,-0.1117,0.3584,0.9217,-0.1484,0.1857,0.9796,-0.0769,0.1857,0.9796,-0.0769,0.3584,0.9217,-0.1484,0.3804,0.9217,-0.0757,0.1857,0.9796,-0.0769,0.3804,0.9217,-0.0757,0.1971,0.9796,-0.0392,0.1971,0.9796,-0.0392,0.3804,0.9217,-0.0757,0.3879,0.9217,0.0,0.1971,0.9796,-0.0392,0.3879,0.9217,0.0,0.201,0.9796,0.0,0.201,0.9796,0.0,0.3879,0.9217,0.0,0.3804,0.9217,0.0757,0.201,0.9796,0.0,0.3804,0.9217,0.0757,0.1971,0.9796,0.0392,0.1971,0.9796,0.0392,0.3804,0.9217,0.0757,0.3584,0.9217,0.1484,0.1971,0.9796,0.0392,0.3584,0.9217,0.1484,0.1857,0.9796,0.0769,0.1857,0.9796,0.0769,0.3584,0.9217,0.1484,0.3225,0.9217,0.2155,0.1857,0.9796,0.0769,0.3225,0.9217,0.2155,0.1671,0.9796,0.1117,0.1671,0.9796,0.1117,0.3225,0.9217,0.2155,0.2743,0.9217,0.2743,0.1671,0.9796,0.1117,0.2743,0.9217,0.2743,0.1421,0.9796,0.1421,0.1421,0.9796,0.1421,0.2743,0.9217,0.2743,0.2155,0.9217,0.3225,0.1421,0.9796,0.1421,0.2155,0.9217,0.3225,0.1117,0.9796,0.1671,0.1117,0.9796,0.1671,0.2155,0.9217,0.3225,0.1484,0.9217,0.3584,0.1117,0.9796,0.1671,0.1484,0.9217,0.3584,0.0769,0.9796,0.1857,0.0769,0.9796,0.1857,0.1484,0.9217,0.3584,0.0757,0.9217,0.3804,0.0769,0.9796,0.1857,0.0757,0.9217,0.3804,0.0392,0.9796,0.1971,0.0392,0.9796,0.1971,0.0757,0.9217,0.3804,0.0,0.9217,0.3879,0.0392,0.9796,0.1971,0.0,0.9217,0.3879,0.0,0.9796,0.201,0.0,0.9217,0.3879,0.0,0.8286,0.5598,-0.1092,0.8286,0.549,0.0,0.9217,0.3879,-0.1092,0.8286,0.549,-0.0757,0.9217,0.3804,-0.0757,0.9217,0.3804,-0.1092,0.8286,0.549,-0.2142,0.8286,0.5172,-0.0757,0.9217,0.3804,-0.2142,0.8286,0.5172,-0.1484,0.9217,0.3584,-0.1484,0.9217,0.3584,-0.2142,0.8286,0.5172,-0.311,0.8286,0.4654,-0.1484,0.9217,0.3584,-0.311,0.8286,0.4654,-0.2155,0.9217,0.3225,-0.2155,0.9217,0.3225,-0.311,0.8286,0.4654,-0.3958,0.8286,0.3958,-0.2155,0.9217,0.3225,-0.3958,0.8286,0.3958,-0.2743,0.9217,0.2743,-0.2743,0.9217,0.2743,-0.3958,0.8286,0.3958,-0.4654,0.8286,0.311,-0.2743,0.9217,0.2743,-0.4654,0.8286,0.311,-0.3225,0.9217,0.2155,-0.3225,0.9217,0.2155,-0.4654,0.8286,0.311,-0.5172,0.8286,0.2142,-0.3225,0.9217,0.2155,-0.5172,0.8286,0.2142,-0.3584,0.9217,0.1484,-0.3584,0.9217,0.1484,-0.5172,0.8286,0.2142,-0.549,0.8286,0.1092,-0.3584,0.9217,0.1484,-0.549,0.8286,0.1092,-0.3804,0.9217,0.0757,-0.3804,0.9217,0.0757,-0.549,0.8286,0.1092,-0.5598,0.8286,0.0,-0.3804,0.9217,0.0757,-0.5598,0.8286,0.0,-0.3879,0.9217,0.0,-0.3879,0.9217,0.0,-0.5598,0.8286,0.0,-0.549,0.8286,-0.1092,-0.3879,0.9217,0.0,-0.549,0.8286,-0.1092,-0.3804,0.9217,-0.0757,-0.3804,0.9217,-0.0757,-0.549,0.8286,-0.1092,-0.5172,0.8286,-0.2142,-0.3804,0.9217,-0.0757,-0.5172,0.8286,-0.2142,-0.3584,0.9217,-0.1484,-0.3584,0.9217,-0.1484,-0.5172,0.8286,-0.2142,-0.4654,0.8286,-0.311,-0.3584,0.9217,-0.1484,-0.4654,0.8286,-0.311,-0.3225,0.9217,-0.2155,-0.3225,0.9217,-0.2155,-0.4654,0.8286,-0.311,-0.3958,0.8286,-0.3958,-0.3225,0.9217,-0.2155,-0.3958,0.8286,-0.3958,-0.2743,0.9217,-0.2743,-0.2743,0.9217,-0.2743,-0.3958,0.8286,-0.3958,-0.311,0.8286,-0.4654,-0.2743,0.9217,-0.2743,-0.311,0.8286,-0.4654,-0.2155,0.9217,-0.3225,-0.2155,0.9217,-0.3225,-0.311,0.8286,-0.4654,-0.2142,0.8286,-0.5172,-0.2155,0.9217,-0.3225,-0.2142,0.8286,-0.5172,-0.1484,0.9217,-0.3584,-0.1484,0.9217,-0.3584,-0.2142,0.8286,-0.5172,-0.1092,0.8286,-0.549,-0.1484,0.9217,-0.3584,-0.1092,0.8286,-0.549,-0.0757,0.9217,-0.3804,-0.0757,0.9217,-0.3804,-0.1092,0.8286,-0.549,0.0,0.8286,-0.5598,-0.0757,0.9217,-0.3804,0.0,0.8286,-0.5598,0.0,0.9217,-0.3879,0.0,0.9217,-0.3879,0.0,0.8286,-0.5598,0.1092,0.8286,-0.549,0.0,0.9217,-0.3879,0.1092,0.8286,-0.549,0.0757,0.9217,-0.3804,0.0757,0.9217,-0.3804,0.1092,0.8286,-0.549,0.2142,0.8286,-0.5172,0.0757,0.9217,-0.3804,0.2142,0.8286,-0.5172,0.1484,0.9217,-0.3584,0.1484,0.9217,-0.3584,0.2142,0.8286,-0.5172,0.311,0.8286,-0.4654,0.1484,0.9217,-0.3584,0.311,0.8286,-0.4654,0.2155,0.9217,-0.3225,0.2155,0.9217,-0.3225,0.311,0.8286,-0.4654,0.3958,0.8286,-0.3958,0.2155,0.9217,-0.3225,0.3958,0.8286,-0.3958,0.2743,0.9217,-0.2743,0.2743,0.9217,-0.2743,0.3958,0.8286,-0.3958,0.4654,0.8286,-0.311,0.2743,0.9217,-0.2743,0.4654,0.8286,-0.311,0.3225,0.9217,-0.2155,0.3225,0.9217,-0.2155,0.4654,0.8286,-0.311,0.5172,0.8286,-0.2142,0.3225,0.9217,-0.2155,0.5172,0.8286,-0.2142,0.3584,0.9217,-0.1484,0.3584,0.9217,-0.1484,0.5172,0.8286,-0.2142,0.549,0.8286,-0.1092,0.3584,0.9217,-0.1484,0.549,0.8286,-0.1092,0.3804,0.9217,-0.0757,0.3804,0.9217,-0.0757,0.549,0.8286,-0.1092,0.5598,0.8286,0.0,0.3804,0.9217,-0.0757,0.5598,0.8286,0.0,0.3879,0.9217,0.0,0.3879,0.9217,0.0,0.5598,0.8286,0.0,0.549,0.8286,0.1092,0.3879,0.9217,0.0,0.549,0.8286,0.1092,0.3804,0.9217,0.0757,0.3804,0.9217,0.0757,0.549,0.8286,0.1092,0.5172,0.8286,0.2142,0.3804,0.9217,0.0757,0.5172,0.8286,0.2142,0.3584,0.9217,0.1484,0.3584,0.9217,0.1484,0.5172,0.8286,0.2142,0.4654,0.8286,0.311,0.3584,0.9217,0.1484,0.4654,0.8286,0.311,0.3225,0.9217,0.2155,0.3225,0.9217,0.2155,0.4654,0.8286,0.311,0.3958,0.8286,0.3958,0.3225,0.9217,0.2155,0.3958,0.8286,0.3958,0.2743,0.9217,0.2743,0.2743,0.9217,0.2743,0.3958,0.8286,0.3958,0.311,0.8286,0.4654,0.2743,0.9217,0.2743,0.311,0.8286,0.4654,0.2155,0.9217,0.3225,0.2155,0.9217,0.3225,0.311,0.8286,0.4654,0.2142,0.8286,0.5172,0.2155,0.9217,0.3225,0.2142,0.8286,0.5172,0.1484,0.9217,0.3584,0.1484,0.9217,0.3584,0.2142,0.8286,0.5172,0.1092,0.8286,0.549,0.1484,0.9217,0.3584,0.1092,0.8286,0.549,0.0757,0.9217,0.3804,0.0757,0.9217,0.3804,0.1092,0.8286,0.549,0.0,0.8286,0.5598,0.0757,0.9217,0.3804,0.0,0.8286,0.5598,0.0,0.9217,0.3879,0.0,0.8286,0.5598,0.0,0.7041,0.7101,-0.1385,0.7041,0.6965,0.0,0.8286,0.5598,-0.1385,0.7041,0.6965,-0.1092,0.8286,0.549,-0.1092,0.8286,0.549,-0.1385,0.7041,0.6965,-0.2718,0.7041,0.6561,-0.1092,0.8286,0.549,-0.2718,0.7041,0.6561,-0.2142,0.8286,0.5172,-0.2142,0.8286,0.5172,-0.2718,0.7041,0.6561,-0.3945,0.7041,0.5905,-0.2142,0.8286,0.5172,-0.3945,0.7041,0.5905,-0.311,0.8286,0.4654,-0.311,0.8286,0.4654,-0.3945,0.7041,0.5905,-0.5021,0.7041,0.5021,-0.311,0.8286,0.4654,-0.5021,0.7041,0.5021,-0.3958,0.8286,0.3958,-0.3958,0.8286,0.3958,-0.5021,0.7041,0.5021,-0.5905,0.7041,0.3945,-0.3958,0.8286,0.3958,-0.5905,0.7041,0.3945,-0.4654,0.8286,0.311,-0.4654,0.8286,0.311,-0.5905,0.7041,0.3945,-0.6561,0.7041,0.2718,-0.4654,0.8286,0.311,-0.6561,0.7041,0.2718,-0.5172,0.8286,0.2142,-0.5172,0.8286,0.2142,-0.6561,0.7041,0.2718,-0.6965,0.7041,0.1385,-0.5172,0.8286,0.2142,-0.6965,0.7041,0.1385,-0.549,0.8286,0.1092,-0.549,0.8286,0.1092,-0.6965,0.7041,0.1385,-0.7101,0.7041,0.0,-0.549,0.8286,0.1092,-0.7101,0.7041,0.0,-0.5598,0.8286,0.0,-0.5598,0.8286,0.0,-0.7101,0.7041,0.0,-0.6965,0.7041,-0.1385,-0.5598,0.8286,0.0,-0.6965,0.7041,-0.1385,-0.549,0.8286,-0.1092,-0.549,0.8286,-0.1092,-0.6965,0.7041,-0.1385,-0.6561,0.7041,-0.2718,-0.549,0.8286,-0.1092,-0.6561,0.7041,-0.2718,-0.5172,0.8286,-0.2142,-0.5172,0.8286,-0.2142,-0.6561,0.7041,-0.2718,-0.5905,0.7041,-0.3945,-0.5172,0.8286,-0.2142,-0.5905,0.7041,-0.3945,-0.4654,0.8286,-0.311,-0.4654,0.8286,-0.311,-0.5905,0.7041,-0.3945,-0.5021,0.7041,-0.5021,-0.4654,0.8286,-0.311,-0.5021,0.7041,-0.5021,-0.3958,0.8286,-0.3958,-0.3958,0.8286,-0.3958,-0.5021,0.7041,-0.5021,-0.3945,0.7041,-0.5905,-0.3958,0.8286,-0.3958,-0.3945,0.7041,-0.5905,-0.311,0.8286,-0.4654,-0.311,0.8286,-0.4654,-0.3945,0.7041,-0.5905,-0.2718,0.7041,-0.6561,-0.311,0.8286,-0.4654,-0.2718,0.7041,-0.6561,-0.2142,0.8286,-0.5172,-0.2142,0.8286,-0.5172,-0.2718,0.7041,-0.6561,-0.1385,0.7041,-0.6965,-0.2142,0.8286,-0.5172,-0.1385,0.7041,-0.6965,-0.1092,0.8286,-0.549,-0.1092,0.8286,-0.549,-0.1385,0.7041,-0.6965,0.0,0.7041,-0.7101,-0.1092,0.8286,-0.549,0.0,0.7041,-0.7101,0.0,0.8286,-0.5598,0.0,0.8286,-0.5598,0.0,0.7041,-0.7101,0.1385,0.7041,-0.6965,0.0,0.8286,-0.5598,0.1385,0.7041,-0.6965,0.1092,0.8286,-0.549,0.1092,0.8286,-0.549,0.1385,0.7041,-0.6965,0.2718,0.7041,-0.6561,0.1092,0.8286,-0.549,0.2718,0.7041,-0.6561,0.2142,0.8286,-0.5172,0.2142,0.8286,-0.5172,0.2718,0.7041,-0.6561,0.3945,0.7041,-0.5905,0.2142,0.8286,-0.5172,0.3945,0.7041,-0.5905,0.311,0.8286,-0.4654,0.311,0.8286,-0.4654,0.3945,0.7041,-0.5905,0.5021,0.7041,-0.5021,0.311,0.8286,-0.4654,0.5021,0.7041,-0.5021,0.3958,0.8286,-0.3958,0.3958,0.8286,-0.3958,0.5021,0.7041,-0.5021,0.5905,0.7041,-0.3945,0.3958,0.8286,-0.3958,0.5905,0.7041,-0.3945,0.4654,0.8286,-0.311,0.4654,0.8286,-0.311,0.5905,0.7041,-0.3945,0.6561,0.7041,-0.2718,0.4654,0.8286,-0.311,0.6561,0.7041,-0.2718,0.5172,0.8286,-0.2142,0.5172,0.8286,-0.2142,0.6561,0.7041,-0.2718,0.6965,0.7041,-0.1385,0.5172,0.8286,-0.2142,0.6965,0.7041,-0.1385,0.549,0.8286,-0.1092,0.549,0.8286,-0.1092,0.6965,0.7041,-0.1385,0.7101,0.7041,0.0,0.549,0.8286,-0.1092,0.7101,0.7041,0.0,0.5598,0.8286,0.0,0.5598,0.8286,0.0,0.7101,0.7041,0.0,0.6965,0.7041,0.1385,0.5598,0.8286,0.0,0.6965,0.7041,0.1385,0.549,0.8286,0.1092,0.549,0.8286,0.1092,0.6965,0.7041,0.1385,0.6561,0.7041,0.2718,0.549,0.8286,0.1092,0.6561,0.7041,0.2718,0.5172,0.8286,0.2142,0.5172,0.8286,0.2142,0.6561,0.7041,0.2718,0.5905,0.7041,0.3945,0.5172,0.8286,0.2142,0.5905,0.7041,0.3945,0.4654,0.8286,0.311,0.4654,0.8286,0.311,0.5905,0.7041,0.3945,0.5021,0.7041,0.5021,0.4654,0.8286,0.311,0.5021,0.7041,0.5021,0.3958,0.8286,0.3958,0.3958,0.8286,0.3958,0.5021,0.7041,0.5021,0.3945,0.7041,0.5905,0.3958,0.8286,0.3958,0.3945,0.7041,0.5905,0.311,0.8286,0.4654,0.311,0.8286,0.4654,0.3945,0.7041,0.5905,0.2718,0.7041,0.6561,0.311,0.8286,0.4654,0.2718,0.7041,0.6561,0.2142,0.8286,0.5172,0.2142,0.8286,0.5172,0.2718,0.7041,0.6561,0.1385,0.7041,0.6965,0.2142,0.8286,0.5172,0.1385,0.7041,0.6965,0.1092,0.8286,0.549,0.1092,0.8286,0.549,0.1385,0.7041,0.6965,0.0,0.7041,0.7101,0.1092,0.8286,0.549,0.0,0.7041,0.7101,0.0,0.8286,0.5598,0.0,0.7041,0.7101,0.0,0.5528,0.8333,-0.1626,0.5528,0.8173,0.0,0.7041,0.7101,-0.1626,0.5528,0.8173,-0.1385,0.7041,0.6965,-0.1385,0.7041,0.6965,-0.1626,0.5528,0.8173,-0.3189,0.5528,0.7699,-0.1385,0.7041,0.6965,-0.3189,0.5528,0.7699,-0.2718,0.7041,0.6561,-0.2718,0.7041,0.6561,-0.3189,0.5528,0.7699,-0.463,0.5528,0.6929,-0.2718,0.7041,0.6561,-0.463,0.5528,0.6929,-0.3945,0.7041,0.5905,-0.3945,0.7041,0.5905,-0.463,0.5528,0.6929,-0.5893,0.5528,0.5893,-0.3945,0.7041,0.5905,-0.5893,0.5528,0.5893,-0.5021,0.7041,0.5021,-0.5021,0.7041,0.5021,-0.5893,0.5528,0.5893,-0.6929,0.5528,0.463,-0.5021,0.7041,0.5021,-0.6929,0.5528,0.463,-0.5905,0.7041,0.3945,-0.5905,0.7041,0.3945,-0.6929,0.5528,0.463,-0.7699,0.5528,0.3189,-0.5905,0.7041,0.3945,-0.7699,0.5528,0.3189,-0.6561,0.7041,0.2718,-0.6561,0.7041,0.2718,-0.7699,0.5528,0.3189,-0.8173,0.5528,0.1626,-0.6561,0.7041,0.2718,-0.8173,0.5528,0.1626,-0.6965,0.7041,0.1385,-0.6965,0.7041,0.1385,-0.8173,0.5528,0.1626,-0.8333,0.5528,0.0,-0.6965,0.7041,0.1385,-0.8333,0.5528,0.0,-0.7101,0.7041,0.0,-0.7101,0.7041,0.0,-0.8333,0.5528,0.0,-0.8173,0.5528,-0.1626,-0.7101,0.7041,0.0,-0.8173,0.5528,-0.1626,-0.6965,0.7041,-0.1385,-0.6965,0.7041,-0.1385,-0.8173,0.5528,-0.1626,-0.7699,0.5528,-0.3189,-0.6965,0.7041,-0.1385,-0.7699,0.5528,-0.3189,-0.6561,0.7041,-0.2718,-0.6561,0.7041,-0.2718,-0.7699,0.5528,-0.3189,-0.6929,0.5528,-0.463,-0.6561,0.7041,-0.2718,-0.6929,0.5528,-0.463,-0.5905,0.7041,-0.3945,-0.5905,0.7041,-0.3945,-0.6929,0.5528,-0.463,-0.5893,0.5528,-0.5893,-0.5905,0.7041,-0.3945,-0.5893,0.5528,-0.5893,-0.5021,0.7041,-0.5021,-0.5021,0.7041,-0.5021,-0.5893,0.5528,-0.5893,-0.463,0.5528,-0.6929,-0.5021,0.7041,-0.5021,-0.463,0.5528,-0.6929,-0.3945,0.7041,-0.5905,-0.3945,0.7041,-0.5905,-0.463,0.5528,-0.6929,-0.3189,0.5528,-0.7699,-0.3945,0.7041,-0.5905,-0.3189,0.5528,-0.7699,-0.2718,0.7041,-0.6561,-0.2718,0.7041,-0.6561,-0.3189,0.5528,-0.7699,-0.1626,0.5528,-0.8173,-0.2718,0.7041,-0.6561,-0.1626,0.5528,-0.8173,-0.1385,0.7041,-0.6965,-0.1385,0.7041,-0.6965,-0.1626,0.5528,-0.8173,0.0,0.5528,-0.8333,-0.1385,0.7041,-0.6965,0.0,0.5528,-0.8333,0.0,0.7041,-0.7101,0.0,0.7041,-0.7101,0.0,0.5528,-0.8333,0.1626,0.5528,-0.8173,0.0,0.7041,-0.7101,0.1626,0.5528,-0.8173,0.1385,0.7041,-0.6965,0.1385,0.7041,-0.6965,0.1626,0.5528,-0.8173,0.3189,0.5528,-0.7699,0.1385,0.7041,-0.6965,0.3189,0.5528,-0.7699,0.2718,0.7041,-0.6561,0.2718,0.7041,-0.6561,0.3189,0.5528,-0.7699,0.463,0.5528,-0.6929,0.2718,0.7041,-0.6561,0.463,0.5528,-0.6929,0.3945,0.7041,-0.5905,0.3945,0.7041,-0.5905,0.463,0.5528,-0.6929,0.5893,0.5528,-0.5893,0.3945,0.7041,-0.5905,0.5893,0.5528,-0.5893,0.5021,0.7041,-0.5021,0.5021,0.7041,-0.5021,0.5893,0.5528,-0.5893,0.6929,0.5528,-0.463,0.5021,0.7041,-0.5021,0.6929,0.5528,-0.463,0.5905,0.7041,-0.3945,0.5905,0.7041,-0.3945,0.6929,0.5528,-0.463,0.7699,0.5528,-0.3189,0.5905,0.7041,-0.3945,0.7699,0.5528,-0.3189,0.6561,0.7041,-0.2718,0.6561,0.7041,-0.2718,0.7699,0.5528,-0.3189,0.8173,0.5528,-0.1626,0.6561,0.7041,-0.2718,0.8173,0.5528,-0.1626,0.6965,0.7041,-0.1385,0.6965,0.7041,-0.1385,0.8173,0.5528,-0.1626,0.8333,0.5528,0.0,0.6965,0.7041,-0.1385,0.8333,0.5528,0.0,0.7101,0.7041,0.0,0.7101,0.7041,0.0,0.8333,0.5528,0.0,0.8173,0.5528,0.1626,0.7101,0.7041,0.0,0.8173,0.5528,0.1626,0.6965,0.7041,0.1385,0.6965,0.7041,0.1385,0.8173,0.5528,0.1626,0.7699,0.5528,0.3189,0.6965,0.7041,0.1385,0.7699,0.5528,0.3189,0.6561,0.7041,0.2718,0.6561,0.7041,0.2718,0.7699,0.5528,0.3189,0.6929,0.5528,0.463,0.6561,0.7041,0.2718,0.6929,0.5528,0.463,0.5905,0.7041,0.3945,0.5905,0.7041,0.3945,0.6929,0.5528,0.463,0.5893,0.5528,0.5893,0.5905,0.7041,0.3945,0.5893,0.5528,0.5893,0.5021,0.7041,0.5021,0.5021,0.7041,0.5021,0.5893,0.5528,0.5893,0.463,0.5528,0.6929,0.5021,0.7041,0.5021,0.463,0.5528,0.6929,0.3945,0.7041,0.5905,0.3945,0.7041,0.5905,0.463,0.5528,0.6929,0.3189,0.5528,0.7699,0.3945,0.7041,0.5905,0.3189,0.5528,0.7699,0.2718,0.7041,0.6561,0.2718,0.7041,0.6561,0.3189,0.5528,0.7699,0.1626,0.5528,0.8173,0.2718,0.7041,0.6561,0.1626,0.5528,0.8173,0.1385,0.7041,0.6965,0.1385,0.7041,0.6965,0.1626,0.5528,0.8173,0.0,0.5528,0.8333,0.1385,0.7041,0.6965,0.0,0.5528,0.8333,0.0,0.7041,0.7101,0.0,0.5528,0.8333,0.0,0.3805,0.9248,-0.1804,0.3805,0.907,0.0,0.5528,0.8333,-0.1804,0.3805,0.907,-0.1626,0.5528,0.8173,-0.1626,0.5528,0.8173,-0.1804,0.3805,0.907,-0.3539,0.3805,0.8544,-0.1626,0.5528,0.8173,-0.3539,0.3805,0.8544,-0.3189,0.5528,0.7699,-0.3189,0.5528,0.7699,-0.3539,0.3805,0.8544,-0.5138,0.3805,0.7689,-0.3189,0.5528,0.7699,-0.5138,0.3805,0.7689,-0.463,0.5528,0.6929,-0.463,0.5528,0.6929,-0.5138,0.3805,0.7689,-0.6539,0.3805,0.6539,-0.463,0.5528,0.6929,-0.6539,0.3805,0.6539,-0.5893,0.5528,0.5893,-0.5893,0.5528,0.5893,-0.6539,0.3805,0.6539,-0.7689,0.3805,0.5138,-0.5893,0.5528,0.5893,-0.7689,0.3805,0.5138,-0.6929,0.5528,0.463,-0.6929,0.5528,0.463,-0.7689,0.3805,0.5138,-0.8544,0.3805,0.3539,-0.6929,0.5528,0.463,-0.8544,0.3805,0.3539,-0.7699,0.5528,0.3189,-0.7699,0.5528,0.3189,-0.8544,0.3805,0.3539,-0.907,0.3805,0.1804,-0.7699,0.5528,0.3189,-0.907,0.3805,0.1804,-0.8173,0.5528,0.1626,-0.8173,0.5528,0.1626,-0.907,0.3805,0.1804,-0.9248,0.3805,0.0,-0.8173,0.5528,0.1626,-0.9248,0.3805,0.0,-0.8333,0.5528,0.0,-0.8333,0.5528,0.0,-0.9248,0.3805,0.0,-0.907,0.3805,-0.1804,-0.8333,0.5528,0.0,-0.907,0.3805,-0.1804,-0.8173,0.5528,-0.1626,-0.8173,0.5528,-0.1626,-0.907,0.3805,-0.1804,-0.8544,0.3805,-0.3539,-0.8173,0.5528,-0.1626,-0.8544,0.3805,-0.3539,-0.7699,0.5528,-0.3189,-0.7699,0.5528,-0.3189,-0.8544,0.3805,-0.3539,-0.7689,0.3805,-0.5138,-0.7699,0.5528,-0.3189,-0.7689,0.3805,-0.5138,-0.6929,0.5528,-0.463,-0.6929,0.5528,-0.463,-0.7689,0.3805,-0.5138,-0.6539,0.3805,-0.6539,-0.6929,0.5528,-0.463,-0.6539,0.3805,-0.6539,-0.5893,0.5528,-0.5893,-0.5893,0.5528,-0.5893,-0.6539,0.3805,-0.6539,-0.5138,0.3805,-0.7689,-0.5893,0.5528,-0.5893,-0.5138,0.3805,-0.7689,-0.463,0.5528,-0.6929,-0.463,0.5528,-0.6929,-0.5138,0.3805,-0.7689,-0.3539,0.3805,-0.8544,-0.463,0.5528,-0.6929,-0.3539,0.3805,-0.8544,-0.3189,0.5528,-0.7699,-0.3189,0.5528,-0.7699,-0.3539,0.3805,-0.8544,-0.1804,0.3805,-0.907,-0.3189,0.5528,-0.7699,-0.1804,0.3805,-0.907,-0.1626,0.5528,-0.8173,-0.1626,0.5528,-0.8173,-0.1804,0.3805,-0.907,0.0,0.3805,-0.9248,-0.1626,0.5528,-0.8173,0.0,0.3805,-0.9248,0.0,0.5528,-0.8333,0.0,0.5528,-0.8333,0.0,0.3805,-0.9248,0.1804,0.3805,-0.907,0.0,0.5528,-0.8333,0.1804,0.3805,-0.907,0.1626,0.5528,-0.8173,0.1626,0.5528,-0.8173,0.1804,0.3805,-0.907,0.3539,0.3805,-0.8544,0.1626,0.5528,-0.8173,0.3539,0.3805,-0.8544,0.3189,0.5528,-0.7699,0.3189,0.5528,-0.7699,0.3539,0.3805,-0.8544,0.5138,0.3805,-0.7689,0.3189,0.5528,-0.7699,0.5138,0.3805,-0.7689,0.463,0.5528,-0.6929,0.463,0.5528,-0.6929,0.5138,0.3805,-0.7689,0.6539,0.3805,-0.6539,0.463,0.5528,-0.6929,0.6539,0.3805,-0.6539,0.5893,0.5528,-0.5893,0.5893,0.5528,-0.5893,0.6539,0.3805,-0.6539,0.7689,0.3805,-0.5138,0.5893,0.5528,-0.5893,0.7689,0.3805,-0.5138,0.6929,0.5528,-0.463,0.6929,0.5528,-0.463,0.7689,0.3805,-0.5138,0.8544,0.3805,-0.3539,0.6929,0.5528,-0.463,0.8544,0.3805,-0.3539,0.7699,0.5528,-0.3189,0.7699,0.5528,-0.3189,0.8544,0.3805,-0.3539,0.907,0.3805,-0.1804,0.7699,0.5528,-0.3189,0.907,0.3805,-0.1804,0.8173,0.5528,-0.1626,0.8173,0.5528,-0.1626,0.907,0.3805,-0.1804,0.9248,0.3805,0.0,0.8173,0.5528,-0.1626,0.9248,0.3805,0.0,0.8333,0.5528,0.0,0.8333,0.5528,0.0,0.9248,0.3805,0.0,0.907,0.3805,0.1804,0.8333,0.5528,0.0,0.907,0.3805,0.1804,0.8173,0.5528,0.1626,0.8173,0.5528,0.1626,0.907,0.3805,0.1804,0.8544,0.3805,0.3539,0.8173,0.5528,0.1626,0.8544,0.3805,0.3539,0.7699,0.5528,0.3189,0.7699,0.5528,0.3189,0.8544,0.3805,0.3539,0.7689,0.3805,0.5138,0.7699,0.5528,0.3189,0.7689,0.3805,0.5138,0.6929,0.5528,0.463,0.6929,0.5528,0.463,0.7689,0.3805,0.5138,0.6539,0.3805,0.6539,0.6929,0.5528,0.463,0.6539,0.3805,0.6539,0.5893,0.5528,0.5893,0.5893,0.5528,0.5893,0.6539,0.3805,0.6539,0.5138,0.3805,0.7689,0.5893,0.5528,0.5893,0.5138,0.3805,0.7689,0.463,0.5528,0.6929,0.463,0.5528,0.6929,0.5138,0.3805,0.7689,0.3539,0.3805,0.8544,0.463,0.5528,0.6929,0.3539,0.3805,0.8544,0.3189,0.5528,0.7699,0.3189,0.5528,0.7699,0.3539,0.3805,0.8544,0.1804,0.3805,0.907,0.3189,0.5528,0.7699,0.1804,0.3805,0.907,0.1626,0.5528,0.8173,0.1626,0.5528,0.8173,0.1804,0.3805,0.907,0.0,0.3805,0.9248,0.1626,0.5528,0.8173,0.0,0.3805,0.9248,0.0,0.5528,0.8333,0.0,0.3805,0.9248,0.0,0.1939,0.981,-0.1914,0.1939,0.9622,0.0,0.3805,0.9248,-0.1914,0.1939,0.9622,-0.1804,0.3805,0.907,-0.1804,0.3805,0.907,-0.1914,0.1939,0.9622,-0.3754,0.1939,0.9063,-0.1804,0.3805,0.907,-0.3754,0.1939,0.9063,-0.3539,0.3805,0.8544,-0.3539,0.3805,0.8544,-0.3754,0.1939,0.9063,-0.545,0.1939,0.8157,-0.3539,0.3805,0.8544,-0.545,0.1939,0.8157,-0.5138,0.3805,0.7689,-0.5138,0.3805,0.7689,-0.545,0.1939,0.8157,-0.6937,0.1939,0.6937,-0.5138,0.3805,0.7689,-0.6937,0.1939,0.6937,-0.6539,0.3805,0.6539,-0.6539,0.3805,0.6539,-0.6937,0.1939,0.6937,-0.8157,0.1939,0.545,-0.6539,0.3805,0.6539,-0.8157,0.1939,0.545,-0.7689,0.3805,0.5138,-0.7689,0.3805,0.5138,-0.8157,0.1939,0.545,-0.9063,0.1939,0.3754,-0.7689,0.3805,0.5138,-0.9063,0.1939,0.3754,-0.8544,0.3805,0.3539,-0.8544,0.3805,0.3539,-0.9063,0.1939,0.3754,-0.9622,0.1939,0.1914,-0.8544,0.3805,0.3539,-0.9622,0.1939,0.1914,-0.907,0.3805,0.1804,-0.907,0.3805,0.1804,-0.9622,0.1939,0.1914,-0.981,0.1939,0.0,-0.907,0.3805,0.1804,-0.981,0.1939,0.0,-0.9248,0.3805,0.0,-0.9248,0.3805,0.0,-0.981,0.1939,0.0,-0.9622,0.1939,-0.1914,-0.9248,0.3805,0.0,-0.9622,0.1939,-0.1914,-0.907,0.3805,-0.1804,-0.907,0.3805,-0.1804,-0.9622,0.1939,-0.1914,-0.9063,0.1939,-0.3754,-0.907,0.3805,-0.1804,-0.9063,0.1939,-0.3754,-0.8544,0.3805,-0.3539,-0.8544,0.3805,-0.3539,-0.9063,0.1939,-0.3754,-0.8157,0.1939,-0.545,-0.8544,0.3805,-0.3539,-0.8157,0.1939,-0.545,-0.7689,0.3805,-0.5138,-0.7689,0.3805,-0.5138,-0.8157,0.1939,-0.545,-0.6937,0.1939,-0.6937,-0.7689,0.3805,-0.5138,-0.6937,0.1939,-0.6937,-0.6539,0.3805,-0.6539,-0.6539,0.3805,-0.6539,-0.6937,0.1939,-0.6937,-0.545,0.1939,-0.8157,-0.6539,0.3805,-0.6539,-0.545,0.1939,-0.8157,-0.5138,0.3805,-0.7689,-0.5138,0.3805,-0.7689,-0.545,0.1939,-0.8157,-0.3754,0.1939,-0.9063,-0.5138,0.3805,-0.7689,-0.3754,0.1939,-0.9063,-0.3539,0.3805,-0.8544,-0.3539,0.3805,-0.8544,-0.3754,0.1939,-0.9063,-0.1914,0.1939,-0.9622,-0.3539,0.3805,-0.8544,-0.1914,0.1939,-0.9622,-0.1804,0.3805,-0.907,-0.1804,0.3805,-0.907,-0.1914,0.1939,-0.9622,0.0,0.1939,-0.981,-0.1804,0.3805,-0.907,0.0,0.1939,-0.981,0.0,0.3805,-0.9248,0.0,0.3805,-0.9248,0.0,0.1939,-0.981,0.1914,0.1939,-0.9622,0.0,0.3805,-0.9248,0.1914,0.1939,-0.9622,0.1804,0.3805,-0.907,0.1804,0.3805,-0.907,0.1914,0.1939,-0.9622,0.3754,0.1939,-0.9063,0.1804,0.3805,-0.907,0.3754,0.1939,-0.9063,0.3539,0.3805,-0.8544,0.3539,0.3805,-0.8544,0.3754,0.1939,-0.9063,0.545,0.1939,-0.8157,0.3539,0.3805,-0.8544,0.545,0.1939,-0.8157,0.5138,0.3805,-0.7689,0.5138,0.3805,-0.7689,0.545,0.1939,-0.8157,0.6937,0.1939,-0.6937,0.5138,0.3805,-0.7689,0.6937,0.1939,-0.6937,0.6539,0.3805,-0.6539,0.6539,0.3805,-0.6539,0.6937,0.1939,-0.6937,0.8157,0.1939,-0.545,0.6539,0.3805,-0.6539,0.8157,0.1939,-0.545,0.7689,0.3805,-0.5138,0.7689,0.3805,-0.5138,0.8157,0.1939,-0.545,0.9063,0.1939,-0.3754,0.7689,0.3805,-0.5138,0.9063,0.1939,-0.3754,0.8544,0.3805,-0.3539,0.8544,0.3805,-0.3539,0.9063,0.1939,-0.3754,0.9622,0.1939,-0.1914,0.8544,0.3805,-0.3539,0.9622,0.1939,-0.1914,0.907,0.3805,-0.1804,0.907,0.3805,-0.1804,0.9622,0.1939,-0.1914,0.981,0.1939,0.0,0.907,0.3805,-0.1804,0.981,0.1939,0.0,0.9248,0.3805,0.0,0.9248,0.3805,0.0,0.981,0.1939,0.0,0.9622,0.1939,0.1914,0.9248,0.3805,0.0,0.9622,0.1939,0.1914,0.907,0.3805,0.1804,0.907,0.3805,0.1804,0.9622,0.1939,0.1914,0.9063,0.1939,0.3754,0.907,0.3805,0.1804,0.9063,0.1939,0.3754,0.8544,0.3805,0.3539,0.8544,0.3805,0.3539,0.9063,0.1939,0.3754,0.8157,0.1939,0.545,0.8544,0.3805,0.3539,0.8157,0.1939,0.545,0.7689,0.3805,0.5138,0.7689,0.3805,0.5138,0.8157,0.1939,0.545,0.6937,0.1939,0.6937,0.7689,0.3805,0.5138,0.6937,0.1939,0.6937,0.6539,0.3805,0.6539,0.6539,0.3805,0.6539,0.6937,0.1939,0.6937,0.545,0.1939,0.8157,0.6539,0.3805,0.6539,0.545,0.1939,0.8157,0.5138,0.3805,0.7689,0.5138,0.3805,0.7689,0.545,0.1939,0.8157,0.3754,0.1939,0.9063,0.5138,0.3805,0.7689,0.3754,0.1939,0.9063,0.3539,0.3805,0.8544,0.3539,0.3805,0.8544,0.3754,0.1939,0.9063,0.1914,0.1939,0.9622,0.3539,0.3805,0.8544,0.1914,0.1939,0.9622,0.1804,0.3805,0.907,0.1804,0.3805,0.907,0.1914,0.1939,0.9622,0.0,0.1939,0.981,0.1804,0.3805,0.907,0.0,0.1939,0.981,0.0,0.3805,0.9248,0.0,0.1939,0.981,0.0,0.0,1.0,-0.1951,0.0,0.9808,0.0,0.1939,0.981,-0.1951,0.0,0.9808,-0.1914,0.1939,0.9622,-0.1914,0.1939,0.9622,-0.1951,0.0,0.9808,-0.3827,0.0,0.9239,-0.1914,0.1939,0.9622,-0.3827,0.0,0.9239,-0.3754,0.1939,0.9063,-0.3754,0.1939,0.9063,-0.3827,0.0,0.9239,-0.5556,0.0,0.8315,-0.3754,0.1939,0.9063,-0.5556,0.0,0.8315,-0.545,0.1939,0.8157,-0.545,0.1939,0.8157,-0.5556,0.0,0.8315,-0.7071,0.0,0.7071,-0.545,0.1939,0.8157,-0.7071,0.0,0.7071,-0.6937,0.1939,0.6937,-0.6937,0.1939,0.6937,-0.7071,0.0,0.7071,-0.8315,0.0,0.5556,-0.6937,0.1939,0.6937,-0.8315,0.0,0.5556,-0.8157,0.1939,0.545,-0.8157,0.1939,0.545,-0.8315,0.0,0.5556,-0.9239,0.0,0.3827,-0.8157,0.1939,0.545,-0.9239,0.0,0.3827,-0.9063,0.1939,0.3754,-0.9063,0.1939,0.3754,-0.9239,0.0,0.3827,-0.9808,0.0,0.1951,-0.9063,0.1939,0.3754,-0.9808,0.0,0.1951,-0.9622,0.1939,0.1914,-0.9622,0.1939,0.1914,-0.9808,0.0,0.1951,-1.0,0.0,0.0,-0.9622,0.1939,0.1914,-1.0,0.0,0.0,-0.981,0.1939,0.0,-0.981,0.1939,0.0,-1.0,0.0,0.0,-0.9808,0.0,-0.1951,-0.981,0.1939,0.0,-0.9808,0.0,-0.1951,-0.9622,0.1939,-0.1914,-0.9622,0.1939,-0.1914,-0.9808,0.0,-0.1951,-0.9239,0.0,-0.3827,-0.9622,0.1939,-0.1914,-0.9239,0.0,-0.3827,-0.9063,0.1939,-0.3754,-0.9063,0.1939,-0.3754,-0.9239,0.0,-0.3827,-0.8315,0.0,-0.5556,-0.9063,0.1939,-0.3754,-0.8315,0.0,-0.5556,-0.8157,0.1939,-0.545,-0.8157,0.1939,-0.545,-0.8315,0.0,-0.5556,-0.7071,0.0,-0.7071,-0.8157,0.1939,-0.545,-0.7071,0.0,-0.7071,-0.6937,0.1939,-0.6937,-0.6937,0.1939,-0.6937,-0.7071,0.0,-0.7071,-0.5556,0.0,-0.8315,-0.6937,0.1939,-0.6937,-0.5556,0.0,-0.8315,-0.545,0.1939,-0.8157,-0.545,0.1939,-0.8157,-0.5556,0.0,-0.8315,-0.3827,0.0,-0.9239,-0.545,0.1939,-0.8157,-0.3827,0.0,-0.9239,-0.3754,0.1939,-0.9063,-0.3754,0.1939,-0.9063,-0.3827,0.0,-0.9239,-0.1951,0.0,-0.9808,-0.3754,0.1939,-0.9063,-0.1951,0.0,-0.9808,-0.1914,0.1939,-0.9622,-0.1914,0.1939,-0.9622,-0.1951,0.0,-0.9808,0.0,0.0,-1.0,-0.1914,0.1939,-0.9622,0.0,0.0,-1.0,0.0,0.1939,-0.981,0.0,0.1939,-0.981,0.0,0.0,-1.0,0.1951,0.0,-0.9808,0.0,0.1939,-0.981,0.1951,0.0,-0.9808,0.1914,0.1939,-0.9622,0.1914,0.1939,-0.9622,0.1951,0.0,-0.9808,0.3827,0.0,-0.9239,0.1914,0.1939,-0.9622,0.3827,0.0,-0.9239,0.3754,0.1939,-0.9063,0.3754,0.1939,-0.9063,0.3827,0.0,-0.9239,0.5556,0.0,-0.8315,0.3754,0.1939,-0.9063,0.5556,0.0,-0.8315,0.545,0.1939,-0.8157,0.545,0.1939,-0.8157,0.5556,0.0,-0.8315,0.7071,0.0,-0.7071,0.545,0.1939,-0.8157,0.7071,0.0,-0.7071,0.6937,0.1939,-0.6937,0.6937,0.1939,-0.6937,0.7071,0.0,-0.7071,0.8315,0.0,-0.5556,0.6937,0.1939,-0.6937,0.8315,0.0,-0.5556,0.8157,0.1939,-0.545,0.8157,0.1939,-0.545,0.8315,0.0,-0.5556,0.9239,0.0,-0.3827,0.8157,0.1939,-0.545,0.9239,0.0,-0.3827,0.9063,0.1939,-0.3754,0.9063,0.1939,-0.3754,0.9239,0.0,-0.3827,0.9808,0.0,-0.1951,0.9063,0.1939,-0.3754,0.9808,0.0,-0.1951,0.9622,0.1939,-0.1914,0.9622,0.1939,-0.1914,0.9808,0.0,-0.1951,1.0,0.0,0.0,0.9622,0.1939,-0.1914,1.0,0.0,0.0,0.981,0.1939,0.0,0.981,0.1939,0.0,1.0,0.0,0.0,0.9808,0.0,0.1951,0.981,0.1939,0.0,0.9808,0.0,0.1951,0.9622,0.1939,0.1914,0.9622,0.1939,0.1914,0.9808,0.0,0.1951,0.9239,0.0,0.3827,0.9622,0.1939,0.1914,0.9239,0.0,0.3827,0.9063,0.1939,0.3754,0.9063,0.1939,0.3754,0.9239,0.0,0.3827,0.8315,0.0,0.5556,0.9063,0.1939,0.3754,0.8315,0.0,0.5556,0.8157,0.1939,0.545,0.8157,0.1939,0.545,0.8315,0.0,0.5556,0.7071,0.0,0.7071,0.8157,0.1939,0.545,0.7071,0.0,0.7071,0.6937,0.1939,0.6937,0.6937,0.1939,0.6937,0.7071,0.0,0.7071,0.5556,0.0,0.8315,0.6937,0.1939,0.6937,0.5556,0.0,0.8315,0.545,0.1939,0.8157,0.545,0.1939,0.8157,0.5556,0.0,0.8315,0.3827,0.0,0.9239,0.545,0.1939,0.8157,0.3827,0.0,0.9239,0.3754,0.1939,0.9063,0.3754,0.1939,0.9063,0.3827,0.0,0.9239,0.1951,0.0,0.9808,0.3754,0.1939,0.9063,0.1951,0.0,0.9808,0.1914,0.1939,0.9622,0.1914,0.1939,0.9622,0.1951,0.0,0.9808,0.0,0.0,1.0,0.1914,0.1939,0.9622,0.0,0.0,1.0,0.0,0.1939,0.981,0.0,0.0,1.0,0.0,-0.1939,0.981,-0.1914,-0.1939,0.9622,0.0,0.0,1.0,-0.1914,-0.1939,0.9622,-0.1951,0.0,0.9808,-0.1951,0.0,0.9808,-0.1914,-0.1939,0.9622,-0.3754,-0.1939,0.9063,-0.1951,0.0,0.9808,-0.3754,-0.1939,0.9063,-0.3827,0.0,0.9239,-0.3827,0.0,0.9239,-0.3754,-0.1939,0.9063,-0.545,-0.1939,0.8157,-0.3827,0.0,0.9239,-0.545,-0.1939,0.8157,-0.5556,0.0,0.8315,-0.5556,0.0,0.8315,-0.545,-0.1939,0.8157,-0.6937,-0.1939,0.6937,-0.5556,0.0,0.8315,-0.6937,-0.1939,0.6937,-0.7071,0.0,0.7071,-0.7071,0.0,0.7071,-0.6937,-0.1939,0.6937,-0.8157,-0.1939,0.545,-0.7071,0.0,0.7071,-0.8157,-0.1939,0.545,-0.8315,0.0,0.5556,-0.8315,0.0,0.5556,-0.8157,-0.1939,0.545,-0.9063,-0.1939,0.3754,-0.8315,0.0,0.5556,-0.9063,-0.1939,0.3754,-0.9239,0.0,0.3827,-0.9239,0.0,0.3827,-0.9063,-0.1939,0.3754,-0.9622,-0.1939,0.1914,-0.9239,0.0,0.3827,-0.9622,-0.1939,0.1914,-0.9808,0.0,0.1951,-0.9808,0.0,0.1951,-0.9622,-0.1939,0.1914,-0.981,-0.1939,0.0,-0.9808,0.0,0.1951,-0.981,-0.1939,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-0.981,-0.1939,0.0,-0.9622,-0.1939,-0.1914,-1.0,0.0,0.0,-0.9622,-0.1939,-0.1914,-0.9808,0.0,-0.1951,-0.9808,0.0,-0.1951,-0.9622,-0.1939,-0.1914,-0.9063,-0.1939,-0.3754,-0.9808,0.0,-0.1951,-0.9063,-0.1939,-0.3754,-0.9239,0.0,-0.3827,-0.9239,0.0,-0.3827,-0.9063,-0.1939,-0.3754,-0.8157,-0.1939,-0.545,-0.9239,0.0,-0.3827,-0.8157,-0.1939,-0.545,-0.8315,0.0,-0.5556,-0.8315,0.0,-0.5556,-0.8157,-0.1939,-0.545,-0.6937,-0.1939,-0.6937,-0.8315,0.0,-0.5556,-0.6937,-0.1939,-0.6937,-0.7071,0.0,-0.7071,-0.7071,0.0,-0.7071,-0.6937,-0.1939,-0.6937,-0.545,-0.1939,-0.8157,-0.7071,0.0,-0.7071,-0.545,-0.1939,-0.8157,-0.5556,0.0,-0.8315,-0.5556,0.0,-0.8315,-0.545,-0.1939,-0.8157,-0.3754,-0.1939,-0.9063,-0.5556,0.0,-0.8315,-0.3754,-0.1939,-0.9063,-0.3827,0.0,-0.9239,-0.3827,0.0,-0.9239,-0.3754,-0.1939,-0.9063,-0.1914,-0.1939,-0.9622,-0.3827,0.0,-0.9239,-0.1914,-0.1939,-0.9622,-0.1951,0.0,-0.9808,-0.1951,0.0,-0.9808,-0.1914,-0.1939,-0.9622,0.0,-0.1939,-0.981,-0.1951,0.0,-0.9808,0.0,-0.1939,-0.981,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,-0.1939,-0.981,0.1914,-0.1939,-0.9622,0.0,0.0,-1.0,0.1914,-0.1939,-0.9622,0.1951,0.0,-0.9808,0.1951,0.0,-0.9808,0.1914,-0.1939,-0.9622,0.3754,-0.1939,-0.9063,0.1951,0.0,-0.9808,0.3754,-0.1939,-0.9063,0.3827,0.0,-0.9239,0.3827,0.0,-0.9239,0.3754,-0.1939,-0.9063,0.545,-0.1939,-0.8157,0.3827,0.0,-0.9239,0.545,-0.1939,-0.8157,0.5556,0.0,-0.8315,0.5556,0.0,-0.8315,0.545,-0.1939,-0.8157,0.6937,-0.1939,-0.6937,0.5556,0.0,-0.8315,0.6937,-0.1939,-0.6937,0.7071,0.0,-0.7071,0.7071,0.0,-0.7071,0.6937,-0.1939,-0.6937,0.8157,-0.1939,-0.545,0.7071,0.0,-0.7071,0.8157,-0.1939,-0.545,0.8315,0.0,-0.5556,0.8315,0.0,-0.5556,0.8157,-0.1939,-0.545,0.9063,-0.1939,-0.3754,0.8315,0.0,-0.5556,0.9063,-0.1939,-0.3754,0.9239,0.0,-0.3827,0.9239,0.0,-0.3827,0.9063,-0.1939,-0.3754,0.9622,-0.1939,-0.1914,0.9239,0.0,-0.3827,0.9622,-0.1939,-0.1914,0.9808,0.0,-0.1951,0.9808,0.0,-0.1951,0.9622,-0.1939,-0.1914,0.981,-0.1939,0.0,0.9808,0.0,-0.1951,0.981,-0.1939,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.981,-0.1939,0.0,0.9622,-0.1939,0.1914,1.0,0.0,0.0,0.9622,-0.1939,0.1914,0.9808,0.0,0.1951,0.9808,0.0,0.1951,0.9622,-0.1939,0.1914,0.9063,-0.1939,0.3754,0.9808,0.0,0.1951,0.9063,-0.1939,0.3754,0.9239,0.0,0.3827,0.9239,0.0,0.3827,0.9063,-0.1939,0.3754,0.8157,-0.1939,0.545,0.9239,0.0,0.3827,0.8157,-0.1939,0.545,0.8315,0.0,0.5556,0.8315,0.0,0.5556,0.8157,-0.1939,0.545,0.6937,-0.1939,0.6937,0.8315,0.0,0.5556,0.6937,-0.1939,0.6937,0.7071,0.0,0.7071,0.7071,0.0,0.7071,0.6937,-0.1939,0.6937,0.545,-0.1939,0.8157,0.7071,0.0,0.7071,0.545,-0.1939,0.8157,0.5556,0.0,0.8315,0.5556,0.0,0.8315,0.545,-0.1939,0.8157,0.3754,-0.1939,0.9063,0.5556,0.0,0.8315,0.3754,-0.1939,0.9063,0.3827,0.0,0.9239,0.3827,0.0,0.9239,0.3754,-0.1939,0.9063,0.1914,-0.1939,0.9622,0.3827,0.0,0.9239,0.1914,-0.1939,0.9622,0.1951,0.0,0.9808,0.1951,0.0,0.9808,0.1914,-0.1939,0.9622,0.0,-0.1939,0.981,0.1951,0.0,0.9808,0.0,-0.1939,0.981,0.0,0.0,1.0,0.0,-0.1939,0.981,0.0,-0.3805,0.9248,-0.1804,-0.3805,0.907,0.0,-0.1939,0.981,-0.1804,-0.3805,0.907,-0.1914,-0.1939,0.9622,-0.1914,-0.1939,0.9622,-0.1804,-0.3805,0.907,-0.3539,-0.3805,0.8544,-0.1914,-0.1939,0.9622,-0.3539,-0.3805,0.8544,-0.3754,-0.1939,0.9063,-0.3754,-0.1939,0.9063,-0.3539,-0.3805,0.8544,-0.5138,-0.3805,0.7689,-0.3754,-0.1939,0.9063,-0.5138,-0.3805,0.7689,-0.545,-0.1939,0.8157,-0.545,-0.1939,0.8157,-0.5138,-0.3805,0.7689,-0.6539,-0.3805,0.6539,-0.545,-0.1939,0.8157,-0.6539,-0.3805,0.6539,-0.6937,-0.1939,0.6937,-0.6937,-0.1939,0.6937,-0.6539,-0.3805,0.6539,-0.7689,-0.3805,0.5138,-0.6937,-0.1939,0.6937,-0.7689,-0.3805,0.5138,-0.8157,-0.1939,0.545,-0.8157,-0.1939,0.545,-0.7689,-0.3805,0.5138,-0.8544,-0.3805,0.3539,-0.8157,-0.1939,0.545,-0.8544,-0.3805,0.3539,-0.9063,-0.1939,0.3754,-0.9063,-0.1939,0.3754,-0.8544,-0.3805,0.3539,-0.907,-0.3805,0.1804,-0.9063,-0.1939,0.3754,-0.907,-0.3805,0.1804,-0.9622,-0.1939,0.1914,-0.9622,-0.1939,0.1914,-0.907,-0.3805,0.1804,-0.9248,-0.3805,0.0,-0.9622,-0.1939,0.1914,-0.9248,-0.3805,0.0,-0.981,-0.1939,0.0,-0.981,-0.1939,0.0,-0.9248,-0.3805,0.0,-0.907,-0.3805,-0.1804,-0.981,-0.1939,0.0,-0.907,-0.3805,-0.1804,-0.9622,-0.1939,-0.1914,-0.9622,-0.1939,-0.1914,-0.907,-0.3805,-0.1804,-0.8544,-0.3805,-0.3539,-0.9622,-0.1939,-0.1914,-0.8544,-0.3805,-0.3539,-0.9063,-0.1939,-0.3754,-0.9063,-0.1939,-0.3754,-0.8544,-0.3805,-0.3539,-0.7689,-0.3805,-0.5138,-0.9063,-0.1939,-0.3754,-0.7689,-0.3805,-0.5138,-0.8157,-0.1939,-0.545,-0.8157,-0.1939,-0.545,-0.7689,-0.3805,-0.5138,-0.6539,-0.3805,-0.6539,-0.8157,-0.1939,-0.545,-0.6539,-0.3805,-0.6539,-0.6937,-0.1939,-0.6937,-0.6937,-0.1939,-0.6937,-0.6539,-0.3805,-0.6539,-0.5138,-0.3805,-0.7689,-0.6937,-0.1939,-0.6937,-0.5138,-0.3805,-0.7689,-0.545,-0.1939,-0.8157,-0.545,-0.1939,-0.8157,-0.5138,-0.3805,-0.7689,-0.3539,-0.3805,-0.8544,-0.545,-0.1939,-0.8157,-0.3539,-0.3805,-0.8544,-0.3754,-0.1939,-0.9063,-0.3754,-0.1939,-0.9063,-0.3539,-0.3805,-0.8544,-0.1804,-0.3805,-0.907,-0.3754,-0.1939,-0.9063,-0.1804,-0.3805,-0.907,-0.1914,-0.1939,-0.9622,-0.1914,-0.1939,-0.9622,-0.1804,-0.3805,-0.907,0.0,-0.3805,-0.9248,-0.1914,-0.1939,-0.9622,0.0,-0.3805,-0.9248,0.0,-0.1939,-0.981,0.0,-0.1939,-0.981,0.0,-0.3805,-0.9248,0.1804,-0.3805,-0.907,0.0,-0.1939,-0.981,0.1804,-0.3805,-0.907,0.1914,-0.1939,-0.9622,0.1914,-0.1939,-0.9622,0.1804,-0.3805,-0.907,0.3539,-0.3805,-0.8544,0.1914,-0.1939,-0.9622,0.3539,-0.3805,-0.8544,0.3754,-0.1939,-0.9063,0.3754,-0.1939,-0.9063,0.3539,-0.3805,-0.8544,0.5138,-0.3805,-0.7689,0.3754,-0.1939,-0.9063,0.5138,-0.3805,-0.7689,0.545,-0.1939,-0.8157,0.545,-0.1939,-0.8157,0.5138,-0.3805,-0.7689,0.6539,-0.3805,-0.6539,0.545,-0.1939,-0.8157,0.6539,-0.3805,-0.6539,0.6937,-0.1939,-0.6937,0.6937,-0.1939,-0.6937,0.6539,-0.3805,-0.6539,0.7689,-0.3805,-0.5138,0.6937,-0.1939,-0.6937,0.7689,-0.3805,-0.5138,0.8157,-0.1939,-0.545,0.8157,-0.1939,-0.545,0.7689,-0.3805,-0.5138,0.8544,-0.3805,-0.3539,0.8157,-0.1939,-0.545,0.8544,-0.3805,-0.3539,0.9063,-0.1939,-0.3754,0.9063,-0.1939,-0.3754,0.8544,-0.3805,-0.3539,0.907,-0.3805,-0.1804,0.9063,-0.1939,-0.3754,0.907,-0.3805,-0.1804,0.9622,-0.1939,-0.1914,0.9622,-0.1939,-0.1914,0.907,-0.3805,-0.1804,0.9248,-0.3805,0.0,0.9622,-0.1939,-0.1914,0.9248,-0.3805,0.0,0.981,-0.1939,0.0,0.981,-0.1939,0.0,0.9248,-0.3805,0.0,0.907,-0.3805,0.1804,0.981,-0.1939,0.0,0.907,-0.3805,0.1804,0.9622,-0.1939,0.1914,0.9622,-0.1939,0.1914,0.907,-0.3805,0.1804,0.8544,-0.3805,0.3539,0.9622,-0.1939,0.1914,0.8544,-0.3805,0.3539,0.9063,-0.1939,0.3754,0.9063,-0.1939,0.3754,0.8544,-0.3805,0.3539,0.7689,-0.3805,0.5138,0.9063,-0.1939,0.3754,0.7689,-0.3805,0.5138,0.8157,-0.1939,0.545,0.8157,-0.1939,0.545,0.7689,-0.3805,0.5138,0.6539,-0.3805,0.6539,0.8157,-0.1939,0.545,0.6539,-0.3805,0.6539,0.6937,-0.1939,0.6937,0.6937,-0.1939,0.6937,0.6539,-0.3805,0.6539,0.5138,-0.3805,0.7689,0.6937,-0.1939,0.6937,0.5138,-0.3805,0.7689,0.545,-0.1939,0.8157,0.545,-0.1939,0.8157,0.5138,-0.3805,0.7689,0.3539,-0.3805,0.8544,0.545,-0.1939,0.8157,0.3539,-0.3805,0.8544,0.3754,-0.1939,0.9063,0.3754,-0.1939,0.9063,0.3539,-0.3805,0.8544,0.1804,-0.3805,0.907,0.3754,-0.1939,0.9063,0.1804,-0.3805,0.907,0.1914,-0.1939,0.9622,0.1914,-0.1939,0.9622,0.1804,-0.3805,0.907,0.0,-0.3805,0.9248,0.1914,-0.1939,0.9622,0.0,-0.3805,0.9248,0.0,-0.1939,0.981,0.0,-0.3805,0.9248,0.0,-0.5528,0.8333,-0.1626,-0.5528,0.8173,0.0,-0.3805,0.9248,-0.1626,-0.5528,0.8173,-0.1804,-0.3805,0.907,-0.1804,-0.3805,0.907,-0.1626,-0.5528,0.8173,-0.3189,-0.5528,0.7699,-0.1804,-0.3805,0.907,-0.3189,-0.5528,0.7699,-0.3539,-0.3805,0.8544,-0.3539,-0.3805,0.8544,-0.3189,-0.5528,0.7699,-0.463,-0.5528,0.6929,-0.3539,-0.3805,0.8544,-0.463,-0.5528,0.6929,-0.5138,-0.3805,0.7689,-0.5138,-0.3805,0.7689,-0.463,-0.5528,0.6929,-0.5893,-0.5528,0.5893,-0.5138,-0.3805,0.7689,-0.5893,-0.5528,0.5893,-0.6539,-0.3805,0.6539,-0.6539,-0.3805,0.6539,-0.5893,-0.5528,0.5893,-0.6929,-0.5528,0.463,-0.6539,-0.3805,0.6539,-0.6929,-0.5528,0.463,-0.7689,-0.3805,0.5138,-0.7689,-0.3805,0.5138,-0.6929,-0.5528,0.463,-0.7699,-0.5528,0.3189,-0.7689,-0.3805,0.5138,-0.7699,-0.5528,0.3189,-0.8544,-0.3805,0.3539,-0.8544,-0.3805,0.3539,-0.7699,-0.5528,0.3189,-0.8173,-0.5528,0.1626,-0.8544,-0.3805,0.3539,-0.8173,-0.5528,0.1626,-0.907,-0.3805,0.1804,-0.907,-0.3805,0.1804,-0.8173,-0.5528,0.1626,-0.8333,-0.5528,0.0,-0.907,-0.3805,0.1804,-0.8333,-0.5528,0.0,-0.9248,-0.3805,0.0,-0.9248,-0.3805,0.0,-0.8333,-0.5528,0.0,-0.8173,-0.5528,-0.1626,-0.9248,-0.3805,0.0,-0.8173,-0.5528,-0.1626,-0.907,-0.3805,-0.1804,-0.907,-0.3805,-0.1804,-0.8173,-0.5528,-0.1626,-0.7699,-0.5528,-0.3189,-0.907,-0.3805,-0.1804,-0.7699,-0.5528,-0.3189,-0.8544,-0.3805,-0.3539,-0.8544,-0.3805,-0.3539,-0.7699,-0.5528,-0.3189,-0.6929,-0.5528,-0.463,-0.8544,-0.3805,-0.3539,-0.6929,-0.5528,-0.463,-0.7689,-0.3805,-0.5138,-0.7689,-0.3805,-0.5138,-0.6929,-0.5528,-0.463,-0.5893,-0.5528,-0.5893,-0.7689,-0.3805,-0.5138,-0.5893,-0.5528,-0.5893,-0.6539,-0.3805,-0.6539,-0.6539,-0.3805,-0.6539,-0.5893,-0.5528,-0.5893,-0.463,-0.5528,-0.6929,-0.6539,-0.3805,-0.6539,-0.463,-0.5528,-0.6929,-0.5138,-0.3805,-0.7689,-0.5138,-0.3805,-0.7689,-0.463,-0.5528,-0.6929,-0.3189,-0.5528,-0.7699,-0.5138,-0.3805,-0.7689,-0.3189,-0.5528,-0.7699,-0.3539,-0.3805,-0.8544,-0.3539,-0.3805,-0.8544,-0.3189,-0.5528,-0.7699,-0.1626,-0.5528,-0.8173,-0.3539,-0.3805,-0.8544,-0.1626,-0.5528,-0.8173,-0.1804,-0.3805,-0.907,-0.1804,-0.3805,-0.907,-0.1626,-0.5528,-0.8173,0.0,-0.5528,-0.8333,-0.1804,-0.3805,-0.907,0.0,-0.5528,-0.8333,0.0,-0.3805,-0.9248,0.0,-0.3805,-0.9248,0.0,-0.5528,-0.8333,0.1626,-0.5528,-0.8173,0.0,-0.3805,-0.9248,0.1626,-0.5528,-0.8173,0.1804,-0.3805,-0.907,0.1804,-0.3805,-0.907,0.1626,-0.5528,-0.8173,0.3189,-0.5528,-0.7699,0.1804,-0.3805,-0.907,0.3189,-0.5528,-0.7699,0.3539,-0.3805,-0.8544,0.3539,-0.3805,-0.8544,0.3189,-0.5528,-0.7699,0.463,-0.5528,-0.6929,0.3539,-0.3805,-0.8544,0.463,-0.5528,-0.6929,0.5138,-0.3805,-0.7689,0.5138,-0.3805,-0.7689,0.463,-0.5528,-0.6929,0.5893,-0.5528,-0.5893,0.5138,-0.3805,-0.7689,0.5893,-0.5528,-0.5893,0.6539,-0.3805,-0.6539,0.6539,-0.3805,-0.6539,0.5893,-0.5528,-0.5893,0.6929,-0.5528,-0.463,0.6539,-0.3805,-0.6539,0.6929,-0.5528,-0.463,0.7689,-0.3805,-0.5138,0.7689,-0.3805,-0.5138,0.6929,-0.5528,-0.463,0.7699,-0.5528,-0.3189,0.7689,-0.3805,-0.5138,0.7699,-0.5528,-0.3189,0.8544,-0.3805,-0.3539,0.8544,-0.3805,-0.3539,0.7699,-0.5528,-0.3189,0.8173,-0.5528,-0.1626,0.8544,-0.3805,-0.3539,0.8173,-0.5528,-0.1626,0.907,-0.3805,-0.1804,0.907,-0.3805,-0.1804,0.8173,-0.5528,-0.1626,0.8333,-0.5528,0.0,0.907,-0.3805,-0.1804,0.8333,-0.5528,0.0,0.9248,-0.3805,0.0,0.9248,-0.3805,0.0,0.8333,-0.5528,0.0,0.8173,-0.5528,0.1626,0.9248,-0.3805,0.0,0.8173,-0.5528,0.1626,0.907,-0.3805,0.1804,0.907,-0.3805,0.1804,0.8173,-0.5528,0.1626,0.7699,-0.5528,0.3189,0.907,-0.3805,0.1804,0.7699,-0.5528,0.3189,0.8544,-0.3805,0.3539,0.8544,-0.3805,0.3539,0.7699,-0.5528,0.3189,0.6929,-0.5528,0.463,0.8544,-0.3805,0.3539,0.6929,-0.5528,0.463,0.7689,-0.3805,0.5138,0.7689,-0.3805,0.5138,0.6929,-0.5528,0.463,0.5893,-0.5528,0.5893,0.7689,-0.3805,0.5138,0.5893,-0.5528,0.5893,0.6539,-0.3805,0.6539,0.6539,-0.3805,0.6539,0.5893,-0.5528,0.5893,0.463,-0.5528,0.6929,0.6539,-0.3805,0.6539,0.463,-0.5528,0.6929,0.5138,-0.3805,0.7689,0.5138,-0.3805,0.7689,0.463,-0.5528,0.6929,0.3189,-0.5528,0.7699,0.5138,-0.3805,0.7689,0.3189,-0.5528,0.7699,0.3539,-0.3805,0.8544,0.3539,-0.3805,0.8544,0.3189,-0.5528,0.7699,0.1626,-0.5528,0.8173,0.3539,-0.3805,0.8544,0.1626,-0.5528,0.8173,0.1804,-0.3805,0.907,0.1804,-0.3805,0.907,0.1626,-0.5528,0.8173,0.0,-0.5528,0.8333,0.1804,-0.3805,0.907,0.0,-0.5528,0.8333,0.0,-0.3805,0.9248,0.0,-0.5528,0.8333,0.0,-0.7041,0.7101,-0.1385,-0.7041,0.6965,0.0,-0.5528,0.8333,-0.1385,-0.7041,0.6965,-0.1626,-0.5528,0.8173,-0.1626,-0.5528,0.8173,-0.1385,-0.7041,0.6965,-0.2718,-0.7041,0.6561,-0.1626,-0.5528,0.8173,-0.2718,-0.7041,0.6561,-0.3189,-0.5528,0.7699,-0.3189,-0.5528,0.7699,-0.2718,-0.7041,0.6561,-0.3945,-0.7041,0.5905,-0.3189,-0.5528,0.7699,-0.3945,-0.7041,0.5905,-0.463,-0.5528,0.6929,-0.463,-0.5528,0.6929,-0.3945,-0.7041,0.5905,-0.5021,-0.7041,0.5021,-0.463,-0.5528,0.6929,-0.5021,-0.7041,0.5021,-0.5893,-0.5528,0.5893,-0.5893,-0.5528,0.5893,-0.5021,-0.7041,0.5021,-0.5905,-0.7041,0.3945,-0.5893,-0.5528,0.5893,-0.5905,-0.7041,0.3945,-0.6929,-0.5528,0.463,-0.6929,-0.5528,0.463,-0.5905,-0.7041,0.3945,-0.6561,-0.7041,0.2718,-0.6929,-0.5528,0.463,-0.6561,-0.7041,0.2718,-0.7699,-0.5528,0.3189,-0.7699,-0.5528,0.3189,-0.6561,-0.7041,0.2718,-0.6965,-0.7041,0.1385,-0.7699,-0.5528,0.3189,-0.6965,-0.7041,0.1385,-0.8173,-0.5528,0.1626,-0.8173,-0.5528,0.1626,-0.6965,-0.7041,0.1385,-0.7101,-0.7041,0.0,-0.8173,-0.5528,0.1626,-0.7101,-0.7041,0.0,-0.8333,-0.5528,0.0,-0.8333,-0.5528,0.0,-0.7101,-0.7041,0.0,-0.6965,-0.7041,-0.1385,-0.8333,-0.5528,0.0,-0.6965,-0.7041,-0.1385,-0.8173,-0.5528,-0.1626,-0.8173,-0.5528,-0.1626,-0.6965,-0.7041,-0.1385,-0.6561,-0.7041,-0.2718,-0.8173,-0.5528,-0.1626,-0.6561,-0.7041,-0.2718,-0.7699,-0.5528,-0.3189,-0.7699,-0.5528,-0.3189,-0.6561,-0.7041,-0.2718,-0.5905,-0.7041,-0.3945,-0.7699,-0.5528,-0.3189,-0.5905,-0.7041,-0.3945,-0.6929,-0.5528,-0.463,-0.6929,-0.5528,-0.463,-0.5905,-0.7041,-0.3945,-0.5021,-0.7041,-0.5021,-0.6929,-0.5528,-0.463,-0.5021,-0.7041,-0.5021,-0.5893,-0.5528,-0.5893,-0.5893,-0.5528,-0.5893,-0.5021,-0.7041,-0.5021,-0.3945,-0.7041,-0.5905,-0.5893,-0.5528,-0.5893,-0.3945,-0.7041,-0.5905,-0.463,-0.5528,-0.6929,-0.463,-0.5528,-0.6929,-0.3945,-0.7041,-0.5905,-0.2718,-0.7041,-0.6561,-0.463,-0.5528,-0.6929,-0.2718,-0.7041,-0.6561,-0.3189,-0.5528,-0.7699,-0.3189,-0.5528,-0.7699,-0.2718,-0.7041,-0.6561,-0.1385,-0.7041,-0.6965,-0.3189,-0.5528,-0.7699,-0.1385,-0.7041,-0.6965,-0.1626,-0.5528,-0.8173,-0.1626,-0.5528,-0.8173,-0.1385,-0.7041,-0.6965,0.0,-0.7041,-0.7101,-0.1626,-0.5528,-0.8173,0.0,-0.7041,-0.7101,0.0,-0.5528,-0.8333,0.0,-0.5528,-0.8333,0.0,-0.7041,-0.7101,0.1385,-0.7041,-0.6965,0.0,-0.5528,-0.8333,0.1385,-0.7041,-0.6965,0.1626,-0.5528,-0.8173,0.1626,-0.5528,-0.8173,0.1385,-0.7041,-0.6965,0.2718,-0.7041,-0.6561,0.1626,-0.5528,-0.8173,0.2718,-0.7041,-0.6561,0.3189,-0.5528,-0.7699,0.3189,-0.5528,-0.7699,0.2718,-0.7041,-0.6561,0.3945,-0.7041,-0.5905,0.3189,-0.5528,-0.7699,0.3945,-0.7041,-0.5905,0.463,-0.5528,-0.6929,0.463,-0.5528,-0.6929,0.3945,-0.7041,-0.5905,0.5021,-0.7041,-0.5021,0.463,-0.5528,-0.6929,0.5021,-0.7041,-0.5021,0.5893,-0.5528,-0.5893,0.5893,-0.5528,-0.5893,0.5021,-0.7041,-0.5021,0.5905,-0.7041,-0.3945,0.5893,-0.5528,-0.5893,0.5905,-0.7041,-0.3945,0.6929,-0.5528,-0.463,0.6929,-0.5528,-0.463,0.5905,-0.7041,-0.3945,0.6561,-0.7041,-0.2718,0.6929,-0.5528,-0.463,0.6561,-0.7041,-0.2718,0.7699,-0.5528,-0.3189,0.7699,-0.5528,-0.3189,0.6561,-0.7041,-0.2718,0.6965,-0.7041,-0.1385,0.7699,-0.5528,-0.3189,0.6965,-0.7041,-0.1385,0.8173,-0.5528,-0.1626,0.8173,-0.5528,-0.1626,0.6965,-0.7041,-0.1385,0.7101,-0.7041,0.0,0.8173,-0.5528,-0.1626,0.7101,-0.7041,0.0,0.8333,-0.5528,0.0,0.8333,-0.5528,0.0,0.7101,-0.7041,0.0,0.6965,-0.7041,0.1385,0.8333,-0.5528,0.0,0.6965,-0.7041,0.1385,0.8173,-0.5528,0.1626,0.8173,-0.5528,0.1626,0.6965,-0.7041,0.1385,0.6561,-0.7041,0.2718,0.8173,-0.5528,0.1626,0.6561,-0.7041,0.2718,0.7699,-0.5528,0.3189,0.7699,-0.5528,0.3189,0.6561,-0.7041,0.2718,0.5905,-0.7041,0.3945,0.7699,-0.5528,0.3189,0.5905,-0.7041,0.3945,0.6929,-0.5528,0.463,0.6929,-0.5528,0.463,0.5905,-0.7041,0.3945,0.5021,-0.7041,0.5021,0.6929,-0.5528,0.463,0.5021,-0.7041,0.5021,0.5893,-0.5528,0.5893,0.5893,-0.5528,0.5893,0.5021,-0.7041,0.5021,0.3945,-0.7041,0.5905,0.5893,-0.5528,0.5893,0.3945,-0.7041,0.5905,0.463,-0.5528,0.6929,0.463,-0.5528,0.6929,0.3945,-0.7041,0.5905,0.2718,-0.7041,0.6561,0.463,-0.5528,0.6929,0.2718,-0.7041,0.6561,0.3189,-0.5528,0.7699,0.3189,-0.5528,0.7699,0.2718,-0.7041,0.6561,0.1385,-0.7041,0.6965,0.3189,-0.5528,0.7699,0.1385,-0.7041,0.6965,0.1626,-0.5528,0.8173,0.1626,-0.5528,0.8173,0.1385,-0.7041,0.6965,0.0,-0.7041,0.7101,0.1626,-0.5528,0.8173,0.0,-0.7041,0.7101,0.0,-0.5528,0.8333,0.0,-0.7041,0.7101,0.0,-0.8286,0.5598,-0.1092,-0.8286,0.549,0.0,-0.7041,0.7101,-0.1092,-0.8286,0.549,-0.1385,-0.7041,0.6965,-0.1385,-0.7041,0.6965,-0.1092,-0.8286,0.549,-0.2142,-0.8286,0.5172,-0.1385,-0.7041,0.6965,-0.2142,-0.8286,0.5172,-0.2718,-0.7041,0.6561,-0.2718,-0.7041,0.6561,-0.2142,-0.8286,0.5172,-0.311,-0.8286,0.4654,-0.2718,-0.7041,0.6561,-0.311,-0.8286,0.4654,-0.3945,-0.7041,0.5905,-0.3945,-0.7041,0.5905,-0.311,-0.8286,0.4654,-0.3958,-0.8286,0.3958,-0.3945,-0.7041,0.5905,-0.3958,-0.8286,0.3958,-0.5021,-0.7041,0.5021,-0.5021,-0.7041,0.5021,-0.3958,-0.8286,0.3958,-0.4654,-0.8286,0.311,-0.5021,-0.7041,0.5021,-0.4654,-0.8286,0.311,-0.5905,-0.7041,0.3945,-0.5905,-0.7041,0.3945,-0.4654,-0.8286,0.311,-0.5172,-0.8286,0.2142,-0.5905,-0.7041,0.3945,-0.5172,-0.8286,0.2142,-0.6561,-0.7041,0.2718,-0.6561,-0.7041,0.2718,-0.5172,-0.8286,0.2142,-0.549,-0.8286,0.1092,-0.6561,-0.7041,0.2718,-0.549,-0.8286,0.1092,-0.6965,-0.7041,0.1385,-0.6965,-0.7041,0.1385,-0.549,-0.8286,0.1092,-0.5598,-0.8286,0.0,-0.6965,-0.7041,0.1385,-0.5598,-0.8286,0.0,-0.7101,-0.7041,0.0,-0.7101,-0.7041,0.0,-0.5598,-0.8286,0.0,-0.549,-0.8286,-0.1092,-0.7101,-0.7041,0.0,-0.549,-0.8286,-0.1092,-0.6965,-0.7041,-0.1385,-0.6965,-0.7041,-0.1385,-0.549,-0.8286,-0.1092,-0.5172,-0.8286,-0.2142,-0.6965,-0.7041,-0.1385,-0.5172,-0.8286,-0.2142,-0.6561,-0.7041,-0.2718,-0.6561,-0.7041,-0.2718,-0.5172,-0.8286,-0.2142,-0.4654,-0.8286,-0.311,-0.6561,-0.7041,-0.2718,-0.4654,-0.8286,-0.311,-0.5905,-0.7041,-0.3945,-0.5905,-0.7041,-0.3945,-0.4654,-0.8286,-0.311,-0.3958,-0.8286,-0.3958,-0.5905,-0.7041,-0.3945,-0.3958,-0.8286,-0.3958,-0.5021,-0.7041,-0.5021,-0.5021,-0.7041,-0.5021,-0.3958,-0.8286,-0.3958,-0.311,-0.8286,-0.4654,-0.5021,-0.7041,-0.5021,-0.311,-0.8286,-0.4654,-0.3945,-0.7041,-0.5905,-0.3945,-0.7041,-0.5905,-0.311,-0.8286,-0.4654,-0.2142,-0.8286,-0.5172,-0.3945,-0.7041,-0.5905,-0.2142,-0.8286,-0.5172,-0.2718,-0.7041,-0.6561,-0.2718,-0.7041,-0.6561,-0.2142,-0.8286,-0.5172,-0.1092,-0.8286,-0.549,-0.2718,-0.7041,-0.6561,-0.1092,-0.8286,-0.549,-0.1385,-0.7041,-0.6965,-0.1385,-0.7041,-0.6965,-0.1092,-0.8286,-0.549,0.0,-0.8286,-0.5598,-0.1385,-0.7041,-0.6965,0.0,-0.8286,-0.5598,0.0,-0.7041,-0.7101,0.0,-0.7041,-0.7101,0.0,-0.8286,-0.5598,0.1092,-0.8286,-0.549,0.0,-0.7041,-0.7101,0.1092,-0.8286,-0.549,0.1385,-0.7041,-0.6965,0.1385,-0.7041,-0.6965,0.1092,-0.8286,-0.549,0.2142,-0.8286,-0.5172,0.1385,-0.7041,-0.6965,0.2142,-0.8286,-0.5172,0.2718,-0.7041,-0.6561,0.2718,-0.7041,-0.6561,0.2142,-0.8286,-0.5172,0.311,-0.8286,-0.4654,0.2718,-0.7041,-0.6561,0.311,-0.8286,-0.4654,0.3945,-0.7041,-0.5905,0.3945,-0.7041,-0.5905,0.311,-0.8286,-0.4654,0.3958,-0.8286,-0.3958,0.3945,-0.7041,-0.5905,0.3958,-0.8286,-0.3958,0.5021,-0.7041,-0.5021,0.5021,-0.7041,-0.5021,0.3958,-0.8286,-0.3958,0.4654,-0.8286,-0.311,0.5021,-0.7041,-0.5021,0.4654,-0.8286,-0.311,0.5905,-0.7041,-0.3945,0.5905,-0.7041,-0.3945,0.4654,-0.8286,-0.311,0.5172,-0.8286,-0.2142,0.5905,-0.7041,-0.3945,0.5172,-0.8286,-0.2142,0.6561,-0.7041,-0.2718,0.6561,-0.7041,-0.2718,0.5172,-0.8286,-0.2142,0.549,-0.8286,-0.1092,0.6561,-0.7041,-0.2718,0.549,-0.8286,-0.1092,0.6965,-0.7041,-0.1385,0.6965,-0.7041,-0.1385,0.549,-0.8286,-0.1092,0.5598,-0.8286,0.0,0.6965,-0.7041,-0.1385,0.5598,-0.8286,0.0,0.7101,-0.7041,0.0,0.7101,-0.7041,0.0,0.5598,-0.8286,0.0,0.549,-0.8286,0.1092,0.7101,-0.7041,0.0,0.549,-0.8286,0.1092,0.6965,-0.7041,0.1385,0.6965,-0.7041,0.1385,0.549,-0.8286,0.1092,0.5172,-0.8286,0.2142,0.6965,-0.7041,0.1385,0.5172,-0.8286,0.2142,0.6561,-0.7041,0.2718,0.6561,-0.7041,0.2718,0.5172,-0.8286,0.2142,0.4654,-0.8286,0.311,0.6561,-0.7041,0.2718,0.4654,-0.8286,0.311,0.5905,-0.7041,0.3945,0.5905,-0.7041,0.3945,0.4654,-0.8286,0.311,0.3958,-0.8286,0.3958,0.5905,-0.7041,0.3945,0.3958,-0.8286,0.3958,0.5021,-0.7041,0.5021,0.5021,-0.7041,0.5021,0.3958,-0.8286,0.3958,0.311,-0.8286,0.4654,0.5021,-0.7041,0.5021,0.311,-0.8286,0.4654,0.3945,-0.7041,0.5905,0.3945,-0.7041,0.5905,0.311,-0.8286,0.4654,0.2142,-0.8286,0.5172,0.3945,-0.7041,0.5905,0.2142,-0.8286,0.5172,0.2718,-0.7041,0.6561,0.2718,-0.7041,0.6561,0.2142,-0.8286,0.5172,0.1092,-0.8286,0.549,0.2718,-0.7041,0.6561,0.1092,-0.8286,0.549,0.1385,-0.7041,0.6965,0.1385,-0.7041,0.6965,0.1092,-0.8286,0.549,0.0,-0.8286,0.5598,0.1385,-0.7041,0.6965,0.0,-0.8286,0.5598,0.0,-0.7041,0.7101,0.0,-0.8286,0.5598,0.0,-0.9217,0.3879,-0.0757,-0.9217,0.3804,0.0,-0.8286,0.5598,-0.0757,-0.9217,0.3804,-0.1092,-0.8286,0.549,-0.1092,-0.8286,0.549,-0.0757,-0.9217,0.3804,-0.1484,-0.9217,0.3584,-0.1092,-0.8286,0.549,-0.1484,-0.9217,0.3584,-0.2142,-0.8286,0.5172,-0.2142,-0.8286,0.5172,-0.1484,-0.9217,0.3584,-0.2155,-0.9217,0.3225,-0.2142,-0.8286,0.5172,-0.2155,-0.9217,0.3225,-0.311,-0.8286,0.4654,-0.311,-0.8286,0.4654,-0.2155,-0.9217,0.3225,-0.2743,-0.9217,0.2743,-0.311,-0.8286,0.4654,-0.2743,-0.9217,0.2743,-0.3958,-0.8286,0.3958,-0.3958,-0.8286,0.3958,-0.2743,-0.9217,0.2743,-0.3225,-0.9217,0.2155,-0.3958,-0.8286,0.3958,-0.3225,-0.9217,0.2155,-0.4654,-0.8286,0.311,-0.4654,-0.8286,0.311,-0.3225,-0.9217,0.2155,-0.3584,-0.9217,0.1484,-0.4654,-0.8286,0.311,-0.3584,-0.9217,0.1484,-0.5172,-0.8286,0.2142,-0.5172,-0.8286,0.2142,-0.3584,-0.9217,0.1484,-0.3804,-0.9217,0.0757,-0.5172,-0.8286,0.2142,-0.3804,-0.9217,0.0757,-0.549,-0.8286,0.1092,-0.549,-0.8286,0.1092,-0.3804,-0.9217,0.0757,-0.3879,-0.9217,0.0,-0.549,-0.8286,0.1092,-0.3879,-0.9217,0.0,-0.5598,-0.8286,0.0,-0.5598,-0.8286,0.0,-0.3879,-0.9217,0.0,-0.3804,-0.9217,-0.0757,-0.5598,-0.8286,0.0,-0.3804,-0.9217,-0.0757,-0.549,-0.8286,-0.1092,-0.549,-0.8286,-0.1092,-0.3804,-0.9217,-0.0757,-0.3584,-0.9217,-0.1484,-0.549,-0.8286,-0.1092,-0.3584,-0.9217,-0.1484,-0.5172,-0.8286,-0.2142,-0.5172,-0.8286,-0.2142,-0.3584,-0.9217,-0.1484,-0.3225,-0.9217,-0.2155,-0.5172,-0.8286,-0.2142,-0.3225,-0.9217,-0.2155,-0.4654,-0.8286,-0.311,-0.4654,-0.8286,-0.311,-0.3225,-0.9217,-0.2155,-0.2743,-0.9217,-0.2743,-0.4654,-0.8286,-0.311,-0.2743,-0.9217,-0.2743,-0.3958,-0.8286,-0.3958,-0.3958,-0.8286,-0.3958,-0.2743,-0.9217,-0.2743,-0.2155,-0.9217,-0.3225,-0.3958,-0.8286,-0.3958,-0.2155,-0.9217,-0.3225,-0.311,-0.8286,-0.4654,-0.311,-0.8286,-0.4654,-0.2155,-0.9217,-0.3225,-0.1484,-0.9217,-0.3584,-0.311,-0.8286,-0.4654,-0.1484,-0.9217,-0.3584,-0.2142,-0.8286,-0.5172,-0.2142,-0.8286,-0.5172,-0.1484,-0.9217,-0.3584,-0.0757,-0.9217,-0.3804,-0.2142,-0.8286,-0.5172,-0.0757,-0.9217,-0.3804,-0.1092,-0.8286,-0.549,-0.1092,-0.8286,-0.549,-0.0757,-0.9217,-0.3804,0.0,-0.9217,-0.3879,-0.1092,-0.8286,-0.549,0.0,-0.9217,-0.3879,0.0,-0.8286,-0.5598,0.0,-0.8286,-0.5598,0.0,-0.9217,-0.3879,0.0757,-0.9217,-0.3804,0.0,-0.8286,-0.5598,0.0757,-0.9217,-0.3804,0.1092,-0.8286,-0.549,0.1092,-0.8286,-0.549,0.0757,-0.9217,-0.3804,0.1484,-0.9217,-0.3584,0.1092,-0.8286,-0.549,0.1484,-0.9217,-0.3584,0.2142,-0.8286,-0.5172,0.2142,-0.8286,-0.5172,0.1484,-0.9217,-0.3584,0.2155,-0.9217,-0.3225,0.2142,-0.8286,-0.5172,0.2155,-0.9217,-0.3225,0.311,-0.8286,-0.4654,0.311,-0.8286,-0.4654,0.2155,-0.9217,-0.3225,0.2743,-0.9217,-0.2743,0.311,-0.8286,-0.4654,0.2743,-0.9217,-0.2743,0.3958,-0.8286,-0.3958,0.3958,-0.8286,-0.3958,0.2743,-0.9217,-0.2743,0.3225,-0.9217,-0.2155,0.3958,-0.8286,-0.3958,0.3225,-0.9217,-0.2155,0.4654,-0.8286,-0.311,0.4654,-0.8286,-0.311,0.3225,-0.9217,-0.2155,0.3584,-0.9217,-0.1484,0.4654,-0.8286,-0.311,0.3584,-0.9217,-0.1484,0.5172,-0.8286,-0.2142,0.5172,-0.8286,-0.2142,0.3584,-0.9217,-0.1484,0.3804,-0.9217,-0.0757,0.5172,-0.8286,-0.2142,0.3804,-0.9217,-0.0757,0.549,-0.8286,-0.1092,0.549,-0.8286,-0.1092,0.3804,-0.9217,-0.0757,0.3879,-0.9217,0.0,0.549,-0.8286,-0.1092,0.3879,-0.9217,0.0,0.5598,-0.8286,0.0,0.5598,-0.8286,0.0,0.3879,-0.9217,0.0,0.3804,-0.9217,0.0757,0.5598,-0.8286,0.0,0.3804,-0.9217,0.0757,0.549,-0.8286,0.1092,0.549,-0.8286,0.1092,0.3804,-0.9217,0.0757,0.3584,-0.9217,0.1484,0.549,-0.8286,0.1092,0.3584,-0.9217,0.1484,0.5172,-0.8286,0.2142,0.5172,-0.8286,0.2142,0.3584,-0.9217,0.1484,0.3225,-0.9217,0.2155,0.5172,-0.8286,0.2142,0.3225,-0.9217,0.2155,0.4654,-0.8286,0.311,0.4654,-0.8286,0.311,0.3225,-0.9217,0.2155,0.2743,-0.9217,0.2743,0.4654,-0.8286,0.311,0.2743,-0.9217,0.2743,0.3958,-0.8286,0.3958,0.3958,-0.8286,0.3958,0.2743,-0.9217,0.2743,0.2155,-0.9217,0.3225,0.3958,-0.8286,0.3958,0.2155,-0.9217,0.3225,0.311,-0.8286,0.4654,0.311,-0.8286,0.4654,0.2155,-0.9217,0.3225,0.1484,-0.9217,0.3584,0.311,-0.8286,0.4654,0.1484,-0.9217,0.3584,0.2142,-0.8286,0.5172,0.2142,-0.8286,0.5172,0.1484,-0.9217,0.3584,0.0757,-0.9217,0.3804,0.2142,-0.8286,0.5172,0.0757,-0.9217,0.3804,0.1092,-0.8286,0.549,0.1092,-0.8286,0.549,0.0757,-0.9217,0.3804,0.0,-0.9217,0.3879,0.1092,-0.8286,0.549,0.0,-0.9217,0.3879,0.0,-0.8286,0.5598,0.0,-0.9217,0.3879,0.0,-0.9796,0.201,-0.0392,-0.9796,0.1971,0.0,-0.9217,0.3879,-0.0392,-0.9796,0.1971,-0.0757,-0.9217,0.3804,-0.0757,-0.9217,0.3804,-0.0392,-0.9796,0.1971,-0.0769,-0.9796,0.1857,-0.0757,-0.9217,0.3804,-0.0769,-0.9796,0.1857,-0.1484,-0.9217,0.3584,-0.1484,-0.9217,0.3584,-0.0769,-0.9796,0.1857,-0.1117,-0.9796,0.1671,-0.1484,-0.9217,0.3584,-0.1117,-0.9796,0.1671,-0.2155,-0.9217,0.3225,-0.2155,-0.9217,0.3225,-0.1117,-0.9796,0.1671,-0.1421,-0.9796,0.1421,-0.2155,-0.9217,0.3225,-0.1421,-0.9796,0.1421,-0.2743,-0.9217,0.2743,-0.2743,-0.9217,0.2743,-0.1421,-0.9796,0.1421,-0.1671,-0.9796,0.1117,-0.2743,-0.9217,0.2743,-0.1671,-0.9796,0.1117,-0.3225,-0.9217,0.2155,-0.3225,-0.9217,0.2155,-0.1671,-0.9796,0.1117,-0.1857,-0.9796,0.0769,-0.3225,-0.9217,0.2155,-0.1857,-0.9796,0.0769,-0.3584,-0.9217,0.1484,-0.3584,-0.9217,0.1484,-0.1857,-0.9796,0.0769,-0.1971,-0.9796,0.0392,-0.3584,-0.9217,0.1484,-0.1971,-0.9796,0.0392,-0.3804,-0.9217,0.0757,-0.3804,-0.9217,0.0757,-0.1971,-0.9796,0.0392,-0.201,-0.9796,0.0,-0.3804,-0.9217,0.0757,-0.201,-0.9796,0.0,-0.3879,-0.9217,0.0,-0.3879,-0.9217,0.0,-0.201,-0.9796,0.0,-0.1971,-0.9796,-0.0392,-0.3879,-0.9217,0.0,-0.1971,-0.9796,-0.0392,-0.3804,-0.9217,-0.0757,-0.3804,-0.9217,-0.0757,-0.1971,-0.9796,-0.0392,-0.1857,-0.9796,-0.0769,-0.3804,-0.9217,-0.0757,-0.1857,-0.9796,-0.0769,-0.3584,-0.9217,-0.1484,-0.3584,-0.9217,-0.1484,-0.1857,-0.9796,-0.0769,-0.1671,-0.9796,-0.1117,-0.3584,-0.9217,-0.1484,-0.1671,-0.9796,-0.1117,-0.3225,-0.9217,-0.2155,-0.3225,-0.9217,-0.2155,-0.1671,-0.9796,-0.1117,-0.1421,-0.9796,-0.1421,-0.3225,-0.9217,-0.2155,-0.1421,-0.9796,-0.1421,-0.2743,-0.9217,-0.2743,-0.2743,-0.9217,-0.2743,-0.1421,-0.9796,-0.1421,-0.1117,-0.9796,-0.1671,-0.2743,-0.9217,-0.2743,-0.1117,-0.9796,-0.1671,-0.2155,-0.9217,-0.3225,-0.2155,-0.9217,-0.3225,-0.1117,-0.9796,-0.1671,-0.0769,-0.9796,-0.1857,-0.2155,-0.9217,-0.3225,-0.0769,-0.9796,-0.1857,-0.1484,-0.9217,-0.3584,-0.1484,-0.9217,-0.3584,-0.0769,-0.9796,-0.1857,-0.0392,-0.9796,-0.1971,-0.1484,-0.9217,-0.3584,-0.0392,-0.9796,-0.1971,-0.0757,-0.9217,-0.3804,-0.0757,-0.9217,-0.3804,-0.0392,-0.9796,-0.1971,0.0,-0.9796,-0.201,-0.0757,-0.9217,-0.3804,0.0,-0.9796,-0.201,0.0,-0.9217,-0.3879,0.0,-0.9217,-0.3879,0.0,-0.9796,-0.201,0.0392,-0.9796,-0.1971,0.0,-0.9217,-0.3879,0.0392,-0.9796,-0.1971,0.0757,-0.9217,-0.3804,0.0757,-0.9217,-0.3804,0.0392,-0.9796,-0.1971,0.0769,-0.9796,-0.1857,0.0757,-0.9217,-0.3804,0.0769,-0.9796,-0.1857,0.1484,-0.9217,-0.3584,0.1484,-0.9217,-0.3584,0.0769,-0.9796,-0.1857,0.1117,-0.9796,-0.1671,0.1484,-0.9217,-0.3584,0.1117,-0.9796,-0.1671,0.2155,-0.9217,-0.3225,0.2155,-0.9217,-0.3225,0.1117,-0.9796,-0.1671,0.1421,-0.9796,-0.1421,0.2155,-0.9217,-0.3225,0.1421,-0.9796,-0.1421,0.2743,-0.9217,-0.2743,0.2743,-0.9217,-0.2743,0.1421,-0.9796,-0.1421,0.1671,-0.9796,-0.1117,0.2743,-0.9217,-0.2743,0.1671,-0.9796,-0.1117,0.3225,-0.9217,-0.2155,0.3225,-0.9217,-0.2155,0.1671,-0.9796,-0.1117,0.1857,-0.9796,-0.0769,0.3225,-0.9217,-0.2155,0.1857,-0.9796,-0.0769,0.3584,-0.9217,-0.1484,0.3584,-0.9217,-0.1484,0.1857,-0.9796,-0.0769,0.1971,-0.9796,-0.0392,0.3584,-0.9217,-0.1484,0.1971,-0.9796,-0.0392,0.3804,-0.9217,-0.0757,0.3804,-0.9217,-0.0757,0.1971,-0.9796,-0.0392,0.201,-0.9796,0.0,0.3804,-0.9217,-0.0757,0.201,-0.9796,0.0,0.3879,-0.9217,0.0,0.3879,-0.9217,0.0,0.201,-0.9796,0.0,0.1971,-0.9796,0.0392,0.3879,-0.9217,0.0,0.1971,-0.9796,0.0392,0.3804,-0.9217,0.0757,0.3804,-0.9217,0.0757,0.1971,-0.9796,0.0392,0.1857,-0.9796,0.0769,0.3804,-0.9217,0.0757,0.1857,-0.9796,0.0769,0.3584,-0.9217,0.1484,0.3584,-0.9217,0.1484,0.1857,-0.9796,0.0769,0.1671,-0.9796,0.1117,0.3584,-0.9217,0.1484,0.1671,-0.9796,0.1117,0.3225,-0.9217,0.2155,0.3225,-0.9217,0.2155,0.1671,-0.9796,0.1117,0.1421,-0.9796,0.1421,0.3225,-0.9217,0.2155,0.1421,-0.9796,0.1421,0.2743,-0.9217,0.2743,0.2743,-0.9217,0.2743,0.1421,-0.9796,0.1421,0.1117,-0.9796,0.1671,0.2743,-0.9217,0.2743,0.1117,-0.9796,0.1671,0.2155,-0.9217,0.3225,0.2155,-0.9217,0.3225,0.1117,-0.9796,0.1671,0.0769,-0.9796,0.1857,0.2155,-0.9217,0.3225,0.0769,-0.9796,0.1857,0.1484,-0.9217,0.3584,0.1484,-0.9217,0.3584,0.0769,-0.9796,0.1857,0.0392,-0.9796,0.1971,0.1484,-0.9217,0.3584,0.0392,-0.9796,0.1971,0.0757,-0.9217,0.3804,0.0757,-0.9217,0.3804,0.0392,-0.9796,0.1971,0.0,-0.9796,0.201,0.0757,-0.9217,0.3804,0.0,-0.9796,0.201,0.0,-0.9217,0.3879,0.0,-1.0,0.0,-0.0392,-0.9796,0.1971,0.0,-0.9796,0.201,0.0,-1.0,0.0,-0.0769,-0.9796,0.1857,-0.0392,-0.9796,0.1971,0.0,-1.0,0.0,-0.1117,-0.9796,0.1671,-0.0769,-0.9796,0.1857,0.0,-1.0,0.0,-0.1421,-0.9796,0.1421,-0.1117,-0.9796,0.1671,0.0,-1.0,0.0,-0.1671,-0.9796,0.1117,-0.1421,-0.9796,0.1421,0.0,-1.0,0.0,-0.1857,-0.9796,0.0769,-0.1671,-0.9796,0.1117,0.0,-1.0,0.0,-0.1971,-0.9796,0.0392,-0.1857,-0.9796,0.0769,0.0,-1.0,0.0,-0.201,-0.9796,0.0,-0.1971,-0.9796,0.0392,0.0,-1.0,0.0,-0.1971,-0.9796,-0.0392,-0.201,-0.9796,0.0,0.0,-1.0,0.0,-0.1857,-0.9796,-0.0769,-0.1971,-0.9796,-0.0392,0.0,-1.0,0.0,-0.1671,-0.9796,-0.1117,-0.1857,-0.9796,-0.0769,0.0,-1.0,0.0,-0.1421,-0.9796,-0.1421,-0.1671,-0.9796,-0.1117,0.0,-1.0,0.0,-0.1117,-0.9796,-0.1671,-0.1421,-0.9796,-0.1421,0.0,-1.0,0.0,-0.0769,-0.9796,-0.1857,-0.1117,-0.9796,-0.1671,0.0,-1.0,0.0,-0.0392,-0.9796,-0.1971,-0.0769,-0.9796,-0.1857,0.0,-1.0,0.0,0.0,-0.9796,-0.201,-0.0392,-0.9796,-0.1971,0.0,-1.0,0.0,0.0392,-0.9796,-0.1971,0.0,-0.9796,-0.201,0.0,-1.0,0.0,0.0769,-0.9796,-0.1857,0.0392,-0.9796,-0.1971,0.0,-1.0,0.0,0.1117,-0.9796,-0.1671,0.0769,-0.9796,-0.1857,0.0,-1.0,0.0,0.1421,-0.9796,-0.1421,0.1117,-0.9796,-0.1671,0.0,-1.0,0.0,0.1671,-0.9796,-0.1117,0.1421,-0.9796,-0.1421,0.0,-1.0,0.0,0.1857,-0.9796,-0.0769,0.1671,-0.9796,-0.1117,0.0,-1.0,0.0,0.1971,-0.9796,-0.0392,0.1857,-0.9796,-0.0769,0.0,-1.0,0.0,0.201,-0.9796,0.0,0.1971,-0.9796,-0.0392,0.0,-1.0,0.0,0.1971,-0.9796,0.0392,0.201,-0.9796,0.0,0.0,-1.0,0.0,0.1857,-0.9796,0.0769,0.1971,-0.9796,0.0392,0.0,-1.0,0.0,0.1671,-0.9796,0.1117,0.1857,-0.9796,0.0769,0.0,-1.0,0.0,0.1421,-0.9796,0.1421,0.1671,-0.9796,0.1117,0.0,-1.0,0.0,0.1117,-0.9796,0.1671,0.1421,-0.9796,0.1421,0.0,-1.0,0.0,0.0769,-0.9796,0.1857,0.1117,-0.9796,0.1671,0.0,-1.0,0.0,0.0392,-0.9796,0.1971,0.0769,-0.9796,0.1857,0.0,-1.0,0.0,0.0,-0.9796,0.201,0.0392,-0.9796,0.1971],"tangents":null,"uvs":[0.0,2.0,0.0,1.9375,0.0312,1.9375,0.0312,2.0,0.0312,1.9375,0.0625,1.9375,0.0625,2.0,0.0625,1.9375,0.0938,1.9375,0.0938,2.0,0.0938,1.9375,0.125,1.9375,0.125,2.0,0.125,1.9375,0.1562,1.9375,0.1562,2.0,0.1562,1.9375,0.1875,1.9375,0.1875,2.0,0.1875,1.9375,0.2187,1.9375,0.2187,2.0,0.2187,1.9375,0.25,1.9375,0.25,2.0,0.25,1.9375,0.2812,1.9375,0.2812,2.0,0.2812,1.9375,0.3125,1.9375,0.3125,2.0,0.3125,1.9375,0.3437,1.9375,0.3437,2.0,0.3437,1.9375,0.375,1.9375,0.375,2.0,0.375,1.9375,0.4062,1.9375,0.4062,2.0,0.4062,1.9375,0.4375,1.9375,0.4375,2.0,0.4375,1.9375,0.4688,1.9375,0.4688,2.0,0.4688,1.9375,0.5,1.9375,0.5,2.0,0.5,1.9375,0.5313,1.9375,0.5313,2.0,0.5313,1.9375,0.5625,1.9375,0.5625,2.0,0.5625,1.9375,0.5938,1.9375,0.5938,2.0,0.5938,1.9375,0.625,1.9375,0.625,2.0,0.625,1.9375,0.6563,1.9375,0.6563,2.0,0.6563,1.9375,0.6875,1.9375,0.6875,2.0,0.6875,1.9375,0.7188,1.9375,0.7188,2.0,0.7188,1.9375,0.75,1.9375,0.75,2.0,0.75,1.9375,0.7813,1.9375,0.7813,2.0,0.7813,1.9375,0.8125,1.9375,0.8125,2.0,0.8125,1.9375,0.8438,1.9375,0.8438,2.0,0.8438,1.9375,0.875,1.9375,0.875,2.0,0.875,1.9375,0.9063,1.9375,0.9063,2.0,0.9063,1.9375,0.9375,1.9375,0.9375,2.0,0.9375,1.9375,0.9688,1.9375,0.9688,2.0,0.9688,1.9375,1.0,1.9375,0.0,1.9375,0.0,1.875,0.0312,1.875,0.0,1.9375,0.0312,1.875,0.0312,1.9375,0.0312,1.9375,0.0312,1.875,0.0625,1.875,0.0312,1.9375,0.0625,1.875,0.0625,1.9375,0.0625,1.9375,0.0625,1.875,0.0938,1.875,0.0625,1.9375,0.0938,1.875,0.0938,1.9375,0.0938,1.9375,0.0938,1.875,0.125,1.875,0.0938,1.9375,0.125,1.875,0.125,1.9375,0.125,1.9375,0.125,1.875,0.1562,1.875,0.125,1.9375,0.1562,1.875,0.1562,1.9375,0.1562,1.9375,0.1562,1.875,0.1875,1.875,0.1562,1.9375,0.1875,1.875,0.1875,1.9375,0.1875,1.9375,0.1875,1.875,0.2187,1.875,0.1875,1.9375,0.2187,1.875,0.2187,1.9375,0.2187,1.9375,0.2187,1.875,0.25,1.875,0.2187,1.9375,0.25,1.875,0.25,1.9375,0.25,1.9375,0.25,1.875,0.2812,1.875,0.25,1.9375,0.2812,1.875,0.2812,1.9375,0.2812,1.9375,0.2812,1.875,0.3125,1.875,0.2812,1.9375,0.3125,1.875,0.3125,1.9375,0.3125,1.9375,0.3125,1.875,0.3437,1.875,0.3125,1.9375,0.3437,1.875,0.3437,1.9375,0.3437,1.9375,0.3437,1.875,0.375,1.875,0.3437,1.9375,0.375,1.875,0.375,1.9375,0.375,1.9375,0.375,1.875,0.4062,1.875,0.375,1.9375,0.4062,1.875,0.4062,1.9375,0.4062,1.9375,0.4062,1.875,0.4375,1.875,0.4062,1.9375,0.4375,1.875,0.4375,1.9375,0.4375,1.9375,0.4375,1.875,0.4688,1.875,0.4375,1.9375,0.4688,1.875,0.4688,1.9375,0.4688,1.9375,0.4688,1.875,0.5,1.875,0.4688,1.9375,0.5,1.875,0.5,1.9375,0.5,1.9375,0.5,1.875,0.5313,1.875,0.5,1.9375,0.5313,1.875,0.5313,1.9375,0.5313,1.9375,0.5313,1.875,0.5625,1.875,0.5313,1.9375,0.5625,1.875,0.5625,1.9375,0.5625,1.9375,0.5625,1.875,0.5938,1.875,0.5625,1.9375,0.5938,1.875,0.5938,1.9375,0.5938,1.9375,0.5938,1.875,0.625,1.875,0.5938,1.9375,0.625,1.875,0.625,1.9375,0.625,1.9375,0.625,1.875,0.6563,1.875,0.625,1.9375,0.6563,1.875,0.6563,1.9375,0.6563,1.9375,0.6563,1.875,0.6875,1.875,0.6563,1.9375,0.6875,1.875,0.6875,1.9375,0.6875,1.9375,0.6875,1.875,0.7188,1.875,0.6875,1.9375,0.7188,1.875,0.7188,1.9375,0.7188,1.9375,0.7188,1.875,0.75,1.875,0.7188,1.9375,0.75,1.875,0.75,1.9375,0.75,1.9375,0.75,1.875,0.7813,1.875,0.75,1.9375,0.7813,1.875,0.7813,1.9375,0.7813,1.9375,0.7813,1.875,0.8125,1.875,0.7813,1.9375,0.8125,1.875,0.8125,1.9375,0.8125,1.9375,0.8125,1.875,0.8438,1.875,0.8125,1.9375,0.8438,1.875,0.8438,1.9375,0.8438,1.9375,0.8438,1.875,0.875,1.875,0.8438,1.9375,0.875,1.875,0.875,1.9375,0.875,1.9375,0.875,1.875,0.9063,1.875,0.875,1.9375,0.9063,1.875,0.9063,1.9375,0.9063,1.9375,0.9063,1.875,0.9375,1.875,0.9063,1.9375,0.9375,1.875,0.9375,1.9375,0.9375,1.9375,0.9375,1.875,0.9688,1.875,0.9375,1.9375,0.9688,1.875,0.9688,1.9375,0.9688,1.9375,0.9688,1.875,1.0,1.875,0.9688,1.9375,1.0,1.875,1.0,1.9375,0.0,1.875,0.0,1.8125,0.0312,1.8125,0.0,1.875,0.0312,1.8125,0.0312,1.875,0.0312,1.875,0.0312,1.8125,0.0625,1.8125,0.0312,1.875,0.0625,1.8125,0.0625,1.875,0.0625,1.875,0.0625,1.8125,0.0938,1.8125,0.0625,1.875,0.0938,1.8125,0.0938,1.875,0.0938,1.875,0.0938,1.8125,0.125,1.8125,0.0938,1.875,0.125,1.8125,0.125,1.875,0.125,1.875,0.125,1.8125,0.1562,1.8125,0.125,1.875,0.1562,1.8125,0.1562,1.875,0.1562,1.875,0.1562,1.8125,0.1875,1.8125,0.1562,1.875,0.1875,1.8125,0.1875,1.875,0.1875,1.875,0.1875,1.8125,0.2187,1.8125,0.1875,1.875,0.2187,1.8125,0.2187,1.875,0.2187,1.875,0.2187,1.8125,0.25,1.8125,0.2187,1.875,0.25,1.8125,0.25,1.875,0.25,1.875,0.25,1.8125,0.2812,1.8125,0.25,1.875,0.2812,1.8125,0.2812,1.875,0.2812,1.875,0.2812,1.8125,0.3125,1.8125,0.2812,1.875,0.3125,1.8125,0.3125,1.875,0.3125,1.875,0.3125,1.8125,0.3437,1.8125,0.3125,1.875,0.3437,1.8125,0.3437,1.875,0.3437,1.875,0.3437,1.8125,0.375,1.8125,0.3437,1.875,0.375,1.8125,0.375,1.875,0.375,1.875,0.375,1.8125,0.4062,1.8125,0.375,1.875,0.4062,1.8125,0.4062,1.875,0.4062,1.875,0.4062,1.8125,0.4375,1.8125,0.4062,1.875,0.4375,1.8125,0.4375,1.875,0.4375,1.875,0.4375,1.8125,0.4688,1.8125,0.4375,1.875,0.4688,1.8125,0.4688,1.875,0.4688,1.875,0.4688,1.8125,0.5,1.8125,0.4688,1.875,0.5,1.8125,0.5,1.875,0.5,1.875,0.5,1.8125,0.5313,1.8125,0.5,1.875,0.5313,1.8125,0.5313,1.875,0.5313,1.875,0.5313,1.8125,0.5625,1.8125,0.5313,1.875,0.5625,1.8125,0.5625,1.875,0.5625,1.875,0.5625,1.8125,0.5938,1.8125,0.5625,1.875,0.5938,1.8125,0.5938,1.875,0.5938,1.875,0.5938,1.8125,0.625,1.8125,0.5938,1.875,0.625,1.8125,0.625,1.875,0.625,1.875,0.625,1.8125,0.6563,1.8125,0.625,1.875,0.6563,1.8125,0.6563,1.875,0.6563,1.875,0.6563,1.8125,0.6875,1.8125,0.6563,1.875,0.6875,1.8125,0.6875,1.875,0.6875,1.875,0.6875,1.8125,0.7188,1.8125,0.6875,1.875,0.7188,1.8125,0.7188,1.875,0.7188,1.875,0.7188,1.8125,0.75,1.8125,0.7188,1.875,0.75,1.8125,0.75,1.875,0.75,1.875,0.75,1.8125,0.7813,1.8125,0.75,1.875,0.7813,1.8125,0.7813,1.875,0.7813,1.875,0.7813,1.8125,0.8125,1.8125,0.7813,1.875,0.8125,1.8125,0.8125,1.875,0.8125,1.875,0.8125,1.8125,0.8438,1.8125,0.8125,1.875,0.8438,1.8125,0.8438,1.875,0.8438,1.875,0.8438,1.8125,0.875,1.8125,0.8438,1.875,0.875,1.8125,0.875,1.875,0.875,1.875,0.875,1.8125,0.9063,1.8125,0.875,1.875,0.9063,1.8125,0.9063,1.875,0.9063,1.875,0.9063,1.8125,0.9375,1.8125,0.9063,1.875,0.9375,1.8125,0.9375,1.875,0.9375,1.875,0.9375,1.8125,0.9688,1.8125,0.9375,1.875,0.9688,1.8125,0.9688,1.875,0.9688,1.875,0.9688,1.8125,1.0,1.8125,0.9688,1.875,1.0,1.8125,1.0,1.875,0.0,1.8125,0.0,1.75,0.0312,1.75,0.0,1.8125,0.0312,1.75,0.0312,1.8125,0.0312,1.8125,0.0312,1.75,0.0625,1.75,0.0312,1.8125,0.0625,1.75,0.0625,1.8125,0.0625,1.8125,0.0625,1.75,0.0938,1.75,0.0625,1.8125,0.0938,1.75,0.0938,1.8125,0.0938,1.8125,0.0938,1.75,0.125,1.75,0.0938,1.8125,0.125,1.75,0.125,1.8125,0.125,1.8125,0.125,1.75,0.1562,1.75,0.125,1.8125,0.1562,1.75,0.1562,1.8125,0.1562,1.8125,0.1562,1.75,0.1875,1.75,0.1562,1.8125,0.1875,1.75,0.1875,1.8125,0.1875,1.8125,0.1875,1.75,0.2187,1.75,0.1875,1.8125,0.2187,1.75,0.2187,1.8125,0.2187,1.8125,0.2187,1.75,0.25,1.75,0.2187,1.8125,0.25,1.75,0.25,1.8125,0.25,1.8125,0.25,1.75,0.2812,1.75,0.25,1.8125,0.2812,1.75,0.2812,1.8125,0.2812,1.8125,0.2812,1.75,0.3125,1.75,0.2812,1.8125,0.3125,1.75,0.3125,1.8125,0.3125,1.8125,0.3125,1.75,0.3437,1.75,0.3125,1.8125,0.3437,1.75,0.3437,1.8125,0.3437,1.8125,0.3437,1.75,0.375,1.75,0.3437,1.8125,0.375,1.75,0.375,1.8125,0.375,1.8125,0.375,1.75,0.4062,1.75,0.375,1.8125,0.4062,1.75,0.4062,1.8125,0.4062,1.8125,0.4062,1.75,0.4375,1.75,0.4062,1.8125,0.4375,1.75,0.4375,1.8125,0.4375,1.8125,0.4375,1.75,0.4688,1.75,0.4375,1.8125,0.4688,1.75,0.4688,1.8125,0.4688,1.8125,0.4688,1.75,0.5,1.75,0.4688,1.8125,0.5,1.75,0.5,1.8125,0.5,1.8125,0.5,1.75,0.5313,1.75,0.5,1.8125,0.5313,1.75,0.5313,1.8125,0.5313,1.8125,0.5313,1.75,0.5625,1.75,0.5313,1.8125,0.5625,1.75,0.5625,1.8125,0.5625,1.8125,0.5625,1.75,0.5938,1.75,0.5625,1.8125,0.5938,1.75,0.5938,1.8125,0.5938,1.8125,0.5938,1.75,0.625,1.75,0.5938,1.8125,0.625,1.75,0.625,1.8125,0.625,1.8125,0.625,1.75,0.6563,1.75,0.625,1.8125,0.6563,1.75,0.6563,1.8125,0.6563,1.8125,0.6563,1.75,0.6875,1.75,0.6563,1.8125,0.6875,1.75,0.6875,1.8125,0.6875,1.8125,0.6875,1.75,0.7188,1.75,0.6875,1.8125,0.7188,1.75,0.7188,1.8125,0.7188,1.8125,0.7188,1.75,0.75,1.75,0.7188,1.8125,0.75,1.75,0.75,1.8125,0.75,1.8125,0.75,1.75,0.7813,1.75,0.75,1.8125,0.7813,1.75,0.7813,1.8125,0.7813,1.8125,0.7813,1.75,0.8125,1.75,0.7813,1.8125,0.8125,1.75,0.8125,1.8125,0.8125,1.8125,0.8125,1.75,0.8438,1.75,0.8125,1.8125,0.8438,1.75,0.8438,1.8125,0.8438,1.8125,0.8438,1.75,0.875,1.75,0.8438,1.8125,0.875,1.75,0.875,1.8125,0.875,1.8125,0.875,1.75,0.9063,1.75,0.875,1.8125,0.9063,1.75,0.9063,1.8125,0.9063,1.8125,0.9063,1.75,0.9375,1.75,0.9063,1.8125,0.9375,1.75,0.9375,1.8125,0.9375,1.8125,0.9375,1.75,0.9688,1.75,0.9375,1.8125,0.9688,1.75,0.9688,1.8125,0.9688,1.8125,0.9688,1.75,1.0,1.75,0.9688,1.8125,1.0,1.75,1.0,1.8125,0.0,1.75,0.0,1.6875,0.0312,1.6875,0.0,1.75,0.0312,1.6875,0.0312,1.75,0.0312,1.75,0.0312,1.6875,0.0625,1.6875,0.0312,1.75,0.0625,1.6875,0.0625,1.75,0.0625,1.75,0.0625,1.6875,0.0938,1.6875,0.0625,1.75,0.0938,1.6875,0.0938,1.75,0.0938,1.75,0.0938,1.6875,0.125,1.6875,0.0938,1.75,0.125,1.6875,0.125,1.75,0.125,1.75,0.125,1.6875,0.1562,1.6875,0.125,1.75,0.1562,1.6875,0.1562,1.75,0.1562,1.75,0.1562,1.6875,0.1875,1.6875,0.1562,1.75,0.1875,1.6875,0.1875,1.75,0.1875,1.75,0.1875,1.6875,0.2187,1.6875,0.1875,1.75,0.2187,1.6875,0.2187,1.75,0.2187,1.75,0.2187,1.6875,0.25,1.6875,0.2187,1.75,0.25,1.6875,0.25,1.75,0.25,1.75,0.25,1.6875,0.2812,1.6875,0.25,1.75,0.2812,1.6875,0.2812,1.75,0.2812,1.75,0.2812,1.6875,0.3125,1.6875,0.2812,1.75,0.3125,1.6875,0.3125,1.75,0.3125,1.75,0.3125,1.6875,0.3437,1.6875,0.3125,1.75,0.3437,1.6875,0.3437,1.75,0.3437,1.75,0.3437,1.6875,0.375,1.6875,0.3437,1.75,0.375,1.6875,0.375,1.75,0.375,1.75,0.375,1.6875,0.4062,1.6875,0.375,1.75,0.4062,1.6875,0.4062,1.75,0.4062,1.75,0.4062,1.6875,0.4375,1.6875,0.4062,1.75,0.4375,1.6875,0.4375,1.75,0.4375,1.75,0.4375,1.6875,0.4688,1.6875,0.4375,1.75,0.4688,1.6875,0.4688,1.75,0.4688,1.75,0.4688,1.6875,0.5,1.6875,0.4688,1.75,0.5,1.6875,0.5,1.75,0.5,1.75,0.5,1.6875,0.5313,1.6875,0.5,1.75,0.5313,1.6875,0.5313,1.75,0.5313,1.75,0.5313,1.6875,0.5625,1.6875,0.5313,1.75,0.5625,1.6875,0.5625,1.75,0.5625,1.75,0.5625,1.6875,0.5938,1.6875,0.5625,1.75,0.5938,1.6875,0.5938,1.75,0.5938,1.75,0.5938,1.6875,0.625,1.6875,0.5938,1.75,0.625,1.6875,0.625,1.75,0.625,1.75,0.625,1.6875,0.6563,1.6875,0.625,1.75,0.6563,1.6875,0.6563,1.75,0.6563,1.75,0.6563,1.6875,0.6875,1.6875,0.6563,1.75,0.6875,1.6875,0.6875,1.75,0.6875,1.75,0.6875,1.6875,0.7188,1.6875,0.6875,1.75,0.7188,1.6875,0.7188,1.75,0.7188,1.75,0.7188,1.6875,0.75,1.6875,0.7188,1.75,0.75,1.6875,0.75,1.75,0.75,1.75,0.75,1.6875,0.7813,1.6875,0.75,1.75,0.7813,1.6875,0.7813,1.75,0.7813,1.75,0.7813,1.6875,0.8125,1.6875,0.7813,1.75,0.8125,1.6875,0.8125,1.75,0.8125,1.75,0.8125,1.6875,0.8438,1.6875,0.8125,1.75,0.8438,1.6875,0.8438,1.75,0.8438,1.75,0.8438,1.6875,0.875,1.6875,0.8438,1.75,0.875,1.6875,0.875,1.75,0.875,1.75,0.875,1.6875,0.9063,1.6875,0.875,1.75,0.9063,1.6875,0.9063,1.75,0.9063,1.75,0.9063,1.6875,0.9375,1.6875,0.9063,1.75,0.9375,1.6875,0.9375,1.75,0.9375,1.75,0.9375,1.6875,0.9688,1.6875,0.9375,1.75,0.9688,1.6875,0.9688,1.75,0.9688,1.75,0.9688,1.6875,1.0,1.6875,0.9688,1.75,1.0,1.6875,1.0,1.75,0.0,1.6875,0.0,1.625,0.0312,1.625,0.0,1.6875,0.0312,1.625,0.0312,1.6875,0.0312,1.6875,0.0312,1.625,0.0625,1.625,0.0312,1.6875,0.0625,1.625,0.0625,1.6875,0.0625,1.6875,0.0625,1.625,0.0938,1.625,0.0625,1.6875,0.0938,1.625,0.0938,1.6875,0.0938,1.6875,0.0938,1.625,0.125,1.625,0.0938,1.6875,0.125,1.625,0.125,1.6875,0.125,1.6875,0.125,1.625,0.1562,1.625,0.125,1.6875,0.1562,1.625,0.1562,1.6875,0.1562,1.6875,0.1562,1.625,0.1875,1.625,0.1562,1.6875,0.1875,1.625,0.1875,1.6875,0.1875,1.6875,0.1875,1.625,0.2187,1.625,0.1875,1.6875,0.2187,1.625,0.2187,1.6875,0.2187,1.6875,0.2187,1.625,0.25,1.625,0.2187,1.6875,0.25,1.625,0.25,1.6875,0.25,1.6875,0.25,1.625,0.2812,1.625,0.25,1.6875,0.2812,1.625,0.2812,1.6875,0.2812,1.6875,0.2812,1.625,0.3125,1.625,0.2812,1.6875,0.3125,1.625,0.3125,1.6875,0.3125,1.6875,0.3125,1.625,0.3437,1.625,0.3125,1.6875,0.3437,1.625,0.3437,1.6875,0.3437,1.6875,0.3437,1.625,0.375,1.625,0.3437,1.6875,0.375,1.625,0.375,1.6875,0.375,1.6875,0.375,1.625,0.4062,1.625,0.375,1.6875,0.4062,1.625,0.4062,1.6875,0.4062,1.6875,0.4062,1.625,0.4375,1.625,0.4062,1.6875,0.4375,1.625,0.4375,1.6875,0.4375,1.6875,0.4375,1.625,0.4688,1.625,0.4375,1.6875,0.4688,1.625,0.4688,1.6875,0.4688,1.6875,0.4688,1.625,0.5,1.625,0.4688,1.6875,0.5,1.625,0.5,1.6875,0.5,1.6875,0.5,1.625,0.5313,1.625,0.5,1.6875,0.5313,1.625,0.5313,1.6875,0.5313,1.6875,0.5313,1.625,0.5625,1.625,0.5313,1.6875,0.5625,1.625,0.5625,1.6875,0.5625,1.6875,0.5625,1.625,0.5938,1.625,0.5625,1.6875,0.5938,1.625,0.5938,1.6875,0.5938,1.6875,0.5938,1.625,0.625,1.625,0.5938,1.6875,0.625,1.625,0.625,1.6875,0.625,1.6875,0.625,1.625,0.6563,1.625,0.625,1.6875,0.6563,1.625,0.6563,1.6875,0.6563,1.6875,0.6563,1.625,0.6875,1.625,0.6563,1.6875,0.6875,1.625,0.6875,1.6875,0.6875,1.6875,0.6875,1.625,0.7188,1.625,0.6875,1.6875,0.7188,1.625,0.7188,1.6875,0.7188,1.6875,0.7188,1.625,0.75,1.625,0.7188,1.6875,0.75,1.625,0.75,1.6875,0.75,1.6875,0.75,1.625,0.7813,1.625,0.75,1.6875,0.7813,1.625,0.7813,1.6875,0.7813,1.6875,0.7813,1.625,0.8125,1.625,0.7813,1.6875,0.8125,1.625,0.8125,1.6875,0.8125,1.6875,0.8125,1.625,0.8438,1.625,0.8125,1.6875,0.8438,1.625,0.8438,1.6875,0.8438,1.6875,0.8438,1.625,0.875,1.625,0.8438,1.6875,0.875,1.625,0.875,1.6875,0.875,1.6875,0.875,1.625,0.9063,1.625,0.875,1.6875,0.9063,1.625,0.9063,1.6875,0.9063,1.6875,0.9063,1.625,0.9375,1.625,0.9063,1.6875,0.9375,1.625,0.9375,1.6875,0.9375,1.6875,0.9375,1.625,0.9688,1.625,0.9375,1.6875,0.9688,1.625,0.9688,1.6875,0.9688,1.6875,0.9688,1.625,1.0,1.625,0.9688,1.6875,1.0,1.625,1.0,1.6875,0.0,1.625,0.0,1.5625,0.0312,1.5625,0.0,1.625,0.0312,1.5625,0.0312,1.625,0.0312,1.625,0.0312,1.5625,0.0625,1.5625,0.0312,1.625,0.0625,1.5625,0.0625,1.625,0.0625,1.625,0.0625,1.5625,0.0938,1.5625,0.0625,1.625,0.0938,1.5625,0.0938,1.625,0.0938,1.625,0.0938,1.5625,0.125,1.5625,0.0938,1.625,0.125,1.5625,0.125,1.625,0.125,1.625,0.125,1.5625,0.1562,1.5625,0.125,1.625,0.1562,1.5625,0.1562,1.625,0.1562,1.625,0.1562,1.5625,0.1875,1.5625,0.1562,1.625,0.1875,1.5625,0.1875,1.625,0.1875,1.625,0.1875,1.5625,0.2187,1.5625,0.1875,1.625,0.2187,1.5625,0.2187,1.625,0.2187,1.625,0.2187,1.5625,0.25,1.5625,0.2187,1.625,0.25,1.5625,0.25,1.625,0.25,1.625,0.25,1.5625,0.2812,1.5625,0.25,1.625,0.2812,1.5625,0.2812,1.625,0.2812,1.625,0.2812,1.5625,0.3125,1.5625,0.2812,1.625,0.3125,1.5625,0.3125,1.625,0.3125,1.625,0.3125,1.5625,0.3437,1.5625,0.3125,1.625,0.3437,1.5625,0.3437,1.625,0.3437,1.625,0.3437,1.5625,0.375,1.5625,0.3437,1.625,0.375,1.5625,0.375,1.625,0.375,1.625,0.375,1.5625,0.4062,1.5625,0.375,1.625,0.4062,1.5625,0.4062,1.625,0.4062,1.625,0.4062,1.5625,0.4375,1.5625,0.4062,1.625,0.4375,1.5625,0.4375,1.625,0.4375,1.625,0.4375,1.5625,0.4688,1.5625,0.4375,1.625,0.4688,1.5625,0.4688,1.625,0.4688,1.625,0.4688,1.5625,0.5,1.5625,0.4688,1.625,0.5,1.5625,0.5,1.625,0.5,1.625,0.5,1.5625,0.5313,1.5625,0.5,1.625,0.5313,1.5625,0.5313,1.625,0.5313,1.625,0.5313,1.5625,0.5625,1.5625,0.5313,1.625,0.5625,1.5625,0.5625,1.625,0.5625,1.625,0.5625,1.5625,0.5938,1.5625,0.5625,1.625,0.5938,1.5625,0.5938,1.625,0.5938,1.625,0.5938,1.5625,0.625,1.5625,0.5938,1.625,0.625,1.5625,0.625,1.625,0.625,1.625,0.625,1.5625,0.6563,1.5625,0.625,1.625,0.6563,1.5625,0.6563,1.625,0.6563,1.625,0.6563,1.5625,0.6875,1.5625,0.6563,1.625,0.6875,1.5625,0.6875,1.625,0.6875,1.625,0.6875,1.5625,0.7188,1.5625,0.6875,1.625,0.7188,1.5625,0.7188,1.625,0.7188,1.625,0.7188,1.5625,0.75,1.5625,0.7188,1.625,0.75,1.5625,0.75,1.625,0.75,1.625,0.75,1.5625,0.7813,1.5625,0.75,1.625,0.7813,1.5625,0.7813,1.625,0.7813,1.625,0.7813,1.5625,0.8125,1.5625,0.7813,1.625,0.8125,1.5625,0.8125,1.625,0.8125,1.625,0.8125,1.5625,0.8438,1.5625,0.8125,1.625,0.8438,1.5625,0.8438,1.625,0.8438,1.625,0.8438,1.5625,0.875,1.5625,0.8438,1.625,0.875,1.5625,0.875,1.625,0.875,1.625,0.875,1.5625,0.9063,1.5625,0.875,1.625,0.9063,1.5625,0.9063,1.625,0.9063,1.625,0.9063,1.5625,0.9375,1.5625,0.9063,1.625,0.9375,1.5625,0.9375,1.625,0.9375,1.625,0.9375,1.5625,0.9688,1.5625,0.9375,1.625,0.9688,1.5625,0.9688,1.625,0.9688,1.625,0.9688,1.5625,1.0,1.5625,0.9688,1.625,1.0,1.5625,1.0,1.625,0.0,1.5625,0.0,1.5,0.0312,1.5,0.0,1.5625,0.0312,1.5,0.0312,1.5625,0.0312,1.5625,0.0312,1.5,0.0625,1.5,0.0312,1.5625,0.0625,1.5,0.0625,1.5625,0.0625,1.5625,0.0625,1.5,0.0938,1.5,0.0625,1.5625,0.0938,1.5,0.0938,1.5625,0.0938,1.5625,0.0938,1.5,0.125,1.5,0.0938,1.5625,0.125,1.5,0.125,1.5625,0.125,1.5625,0.125,1.5,0.1562,1.5,0.125,1.5625,0.1562,1.5,0.1562,1.5625,0.1562,1.5625,0.1562,1.5,0.1875,1.5,0.1562,1.5625,0.1875,1.5,0.1875,1.5625,0.1875,1.5625,0.1875,1.5,0.2187,1.5,0.1875,1.5625,0.2187,1.5,0.2187,1.5625,0.2187,1.5625,0.2187,1.5,0.25,1.5,0.2187,1.5625,0.25,1.5,0.25,1.5625,0.25,1.5625,0.25,1.5,0.2812,1.5,0.25,1.5625,0.2812,1.5,0.2812,1.5625,0.2812,1.5625,0.2812,1.5,0.3125,1.5,0.2812,1.5625,0.3125,1.5,0.3125,1.5625,0.3125,1.5625,0.3125,1.5,0.3437,1.5,0.3125,1.5625,0.3437,1.5,0.3437,1.5625,0.3437,1.5625,0.3437,1.5,0.375,1.5,0.3437,1.5625,0.375,1.5,0.375,1.5625,0.375,1.5625,0.375,1.5,0.4062,1.5,0.375,1.5625,0.4062,1.5,0.4062,1.5625,0.4062,1.5625,0.4062,1.5,0.4375,1.5,0.4062,1.5625,0.4375,1.5,0.4375,1.5625,0.4375,1.5625,0.4375,1.5,0.4688,1.5,0.4375,1.5625,0.4688,1.5,0.4688,1.5625,0.4688,1.5625,0.4688,1.5,0.5,1.5,0.4688,1.5625,0.5,1.5,0.5,1.5625,0.5,1.5625,0.5,1.5,0.5313,1.5,0.5,1.5625,0.5313,1.5,0.5313,1.5625,0.5313,1.5625,0.5313,1.5,0.5625,1.5,0.5313,1.5625,0.5625,1.5,0.5625,1.5625,0.5625,1.5625,0.5625,1.5,0.5938,1.5,0.5625,1.5625,0.5938,1.5,0.5938,1.5625,0.5938,1.5625,0.5938,1.5,0.625,1.5,0.5938,1.5625,0.625,1.5,0.625,1.5625,0.625,1.5625,0.625,1.5,0.6563,1.5,0.625,1.5625,0.6563,1.5,0.6563,1.5625,0.6563,1.5625,0.6563,1.5,0.6875,1.5,0.6563,1.5625,0.6875,1.5,0.6875,1.5625,0.6875,1.5625,0.6875,1.5,0.7188,1.5,0.6875,1.5625,0.7188,1.5,0.7188,1.5625,0.7188,1.5625,0.7188,1.5,0.75,1.5,0.7188,1.5625,0.75,1.5,0.75,1.5625,0.75,1.5625,0.75,1.5,0.7813,1.5,0.75,1.5625,0.7813,1.5,0.7813,1.5625,0.7813,1.5625,0.7813,1.5,0.8125,1.5,0.7813,1.5625,0.8125,1.5,0.8125,1.5625,0.8125,1.5625,0.8125,1.5,0.8438,1.5,0.8125,1.5625,0.8438,1.5,0.8438,1.5625,0.8438,1.5625,0.8438,1.5,0.875,1.5,0.8438,1.5625,0.875,1.5,0.875,1.5625,0.875,1.5625,0.875,1.5,0.9063,1.5,0.875,1.5625,0.9063,1.5,0.9063,1.5625,0.9063,1.5625,0.9063,1.5,0.9375,1.5,0.9063,1.5625,0.9375,1.5,0.9375,1.5625,0.9375,1.5625,0.9375,1.5,0.9688,1.5,0.9375,1.5625,0.9688,1.5,0.9688,1.5625,0.9688,1.5625,0.9688,1.5,1.0,1.5,0.9688,1.5625,1.0,1.5,1.0,1.5625,0.0,1.5,0.0,1.4375,0.0312,1.4375,0.0,1.5,0.0312,1.4375,0.0312,1.5,0.0312,1.5,0.0312,1.4375,0.0625,1.4375,0.0312,1.5,0.0625,1.4375,0.0625,1.5,0.0625,1.5,0.0625,1.4375,0.0938,1.4375,0.0625,1.5,0.0938,1.4375,0.0938,1.5,0.0938,1.5,0.0938,1.4375,0.125,1.4375,0.0938,1.5,0.125,1.4375,0.125,1.5,0.125,1.5,0.125,1.4375,0.1562,1.4375,0.125,1.5,0.1562,1.4375,0.1562,1.5,0.1562,1.5,0.1562,1.4375,0.1875,1.4375,0.1562,1.5,0.1875,1.4375,0.1875,1.5,0.1875,1.5,0.1875,1.4375,0.2187,1.4375,0.1875,1.5,0.2187,1.4375,0.2187,1.5,0.2187,1.5,0.2187,1.4375,0.25,1.4375,0.2187,1.5,0.25,1.4375,0.25,1.5,0.25,1.5,0.25,1.4375,0.2812,1.4375,0.25,1.5,0.2812,1.4375,0.2812,1.5,0.2812,1.5,0.2812,1.4375,0.3125,1.4375,0.2812,1.5,0.3125,1.4375,0.3125,1.5,0.3125,1.5,0.3125,1.4375,0.3437,1.4375,0.3125,1.5,0.3437,1.4375,0.3437,1.5,0.3437,1.5,0.3437,1.4375,0.375,1.4375,0.3437,1.5,0.375,1.4375,0.375,1.5,0.375,1.5,0.375,1.4375,0.4062,1.4375,0.375,1.5,0.4062,1.4375,0.4062,1.5,0.4062,1.5,0.4062,1.4375,0.4375,1.4375,0.4062,1.5,0.4375,1.4375,0.4375,1.5,0.4375,1.5,0.4375,1.4375,0.4688,1.4375,0.4375,1.5,0.4688,1.4375,0.4688,1.5,0.4688,1.5,0.4688,1.4375,0.5,1.4375,0.4688,1.5,0.5,1.4375,0.5,1.5,0.5,1.5,0.5,1.4375,0.5313,1.4375,0.5,1.5,0.5313,1.4375,0.5313,1.5,0.5313,1.5,0.5313,1.4375,0.5625,1.4375,0.5313,1.5,0.5625,1.4375,0.5625,1.5,0.5625,1.5,0.5625,1.4375,0.5938,1.4375,0.5625,1.5,0.5938,1.4375,0.5938,1.5,0.5938,1.5,0.5938,1.4375,0.625,1.4375,0.5938,1.5,0.625,1.4375,0.625,1.5,0.625,1.5,0.625,1.4375,0.6563,1.4375,0.625,1.5,0.6563,1.4375,0.6563,1.5,0.6563,1.5,0.6563,1.4375,0.6875,1.4375,0.6563,1.5,0.6875,1.4375,0.6875,1.5,0.6875,1.5,0.6875,1.4375,0.7188,1.4375,0.6875,1.5,0.7188,1.4375,0.7188,1.5,0.7188,1.5,0.7188,1.4375,0.75,1.4375,0.7188,1.5,0.75,1.4375,0.75,1.5,0.75,1.5,0.75,1.4375,0.7813,1.4375,0.75,1.5,0.7813,1.4375,0.7813,1.5,0.7813,1.5,0.7813,1.4375,0.8125,1.4375,0.7813,1.5,0.8125,1.4375,0.8125,1.5,0.8125,1.5,0.8125,1.4375,0.8438,1.4375,0.8125,1.5,0.8438,1.4375,0.8438,1.5,0.8438,1.5,0.8438,1.4375,0.875,1.4375,0.8438,1.5,0.875,1.4375,0.875,1.5,0.875,1.5,0.875,1.4375,0.9063,1.4375,0.875,1.5,0.9063,1.4375,0.9063,1.5,0.9063,1.5,0.9063,1.4375,0.9375,1.4375,0.9063,1.5,0.9375,1.4375,0.9375,1.5,0.9375,1.5,0.9375,1.4375,0.9688,1.4375,0.9375,1.5,0.9688,1.4375,0.9688,1.5,0.9688,1.5,0.9688,1.4375,1.0,1.4375,0.9688,1.5,1.0,1.4375,1.0,1.5,0.0,1.4375,0.0,1.375,0.0312,1.375,0.0,1.4375,0.0312,1.375,0.0312,1.4375,0.0312,1.4375,0.0312,1.375,0.0625,1.375,0.0312,1.4375,0.0625,1.375,0.0625,1.4375,0.0625,1.4375,0.0625,1.375,0.0938,1.375,0.0625,1.4375,0.0938,1.375,0.0938,1.4375,0.0938,1.4375,0.0938,1.375,0.125,1.375,0.0938,1.4375,0.125,1.375,0.125,1.4375,0.125,1.4375,0.125,1.375,0.1562,1.375,0.125,1.4375,0.1562,1.375,0.1562,1.4375,0.1562,1.4375,0.1562,1.375,0.1875,1.375,0.1562,1.4375,0.1875,1.375,0.1875,1.4375,0.1875,1.4375,0.1875,1.375,0.2187,1.375,0.1875,1.4375,0.2187,1.375,0.2187,1.4375,0.2187,1.4375,0.2187,1.375,0.25,1.375,0.2187,1.4375,0.25,1.375,0.25,1.4375,0.25,1.4375,0.25,1.375,0.2812,1.375,0.25,1.4375,0.2812,1.375,0.2812,1.4375,0.2812,1.4375,0.2812,1.375,0.3125,1.375,0.2812,1.4375,0.3125,1.375,0.3125,1.4375,0.3125,1.4375,0.3125,1.375,0.3437,1.375,0.3125,1.4375,0.3437,1.375,0.3437,1.4375,0.3437,1.4375,0.3437,1.375,0.375,1.375,0.3437,1.4375,0.375,1.375,0.375,1.4375,0.375,1.4375,0.375,1.375,0.4062,1.375,0.375,1.4375,0.4062,1.375,0.4062,1.4375,0.4062,1.4375,0.4062,1.375,0.4375,1.375,0.4062,1.4375,0.4375,1.375,0.4375,1.4375,0.4375,1.4375,0.4375,1.375,0.4688,1.375,0.4375,1.4375,0.4688,1.375,0.4688,1.4375,0.4688,1.4375,0.4688,1.375,0.5,1.375,0.4688,1.4375,0.5,1.375,0.5,1.4375,0.5,1.4375,0.5,1.375,0.5313,1.375,0.5,1.4375,0.5313,1.375,0.5313,1.4375,0.5313,1.4375,0.5313,1.375,0.5625,1.375,0.5313,1.4375,0.5625,1.375,0.5625,1.4375,0.5625,1.4375,0.5625,1.375,0.5938,1.375,0.5625,1.4375,0.5938,1.375,0.5938,1.4375,0.5938,1.4375,0.5938,1.375,0.625,1.375,0.5938,1.4375,0.625,1.375,0.625,1.4375,0.625,1.4375,0.625,1.375,0.6563,1.375,0.625,1.4375,0.6563,1.375,0.6563,1.4375,0.6563,1.4375,0.6563,1.375,0.6875,1.375,0.6563,1.4375,0.6875,1.375,0.6875,1.4375,0.6875,1.4375,0.6875,1.375,0.7188,1.375,0.6875,1.4375,0.7188,1.375,0.7188,1.4375,0.7188,1.4375,0.7188,1.375,0.75,1.375,0.7188,1.4375,0.75,1.375,0.75,1.4375,0.75,1.4375,0.75,1.375,0.7813,1.375,0.75,1.4375,0.7813,1.375,0.7813,1.4375,0.7813,1.4375,0.7813,1.375,0.8125,1.375,0.7813,1.4375,0.8125,1.375,0.8125,1.4375,0.8125,1.4375,0.8125,1.375,0.8438,1.375,0.8125,1.4375,0.8438,1.375,0.8438,1.4375,0.8438,1.4375,0.8438,1.375,0.875,1.375,0.8438,1.4375,0.875,1.375,0.875,1.4375,0.875,1.4375,0.875,1.375,0.9063,1.375,0.875,1.4375,0.9063,1.375,0.9063,1.4375,0.9063,1.4375,0.9063,1.375,0.9375,1.375,0.9063,1.4375,0.9375,1.375,0.9375,1.4375,0.9375,1.4375,0.9375,1.375,0.9688,1.375,0.9375,1.4375,0.9688,1.375,0.9688,1.4375,0.9688,1.4375,0.9688,1.375,1.0,1.375,0.9688,1.4375,1.0,1.375,1.0,1.4375,0.0,1.375,0.0,1.3125,0.0312,1.3125,0.0,1.375,0.0312,1.3125,0.0312,1.375,0.0312,1.375,0.0312,1.3125,0.0625,1.3125,0.0312,1.375,0.0625,1.3125,0.0625,1.375,0.0625,1.375,0.0625,1.3125,0.0938,1.3125,0.0625,1.375,0.0938,1.3125,0.0938,1.375,0.0938,1.375,0.0938,1.3125,0.125,1.3125,0.0938,1.375,0.125,1.3125,0.125,1.375,0.125,1.375,0.125,1.3125,0.1562,1.3125,0.125,1.375,0.1562,1.3125,0.1562,1.375,0.1562,1.375,0.1562,1.3125,0.1875,1.3125,0.1562,1.375,0.1875,1.3125,0.1875,1.375,0.1875,1.375,0.1875,1.3125,0.2187,1.3125,0.1875,1.375,0.2187,1.3125,0.2187,1.375,0.2187,1.375,0.2187,1.3125,0.25,1.3125,0.2187,1.375,0.25,1.3125,0.25,1.375,0.25,1.375,0.25,1.3125,0.2812,1.3125,0.25,1.375,0.2812,1.3125,0.2812,1.375,0.2812,1.375,0.2812,1.3125,0.3125,1.3125,0.2812,1.375,0.3125,1.3125,0.3125,1.375,0.3125,1.375,0.3125,1.3125,0.3437,1.3125,0.3125,1.375,0.3437,1.3125,0.3437,1.375,0.3437,1.375,0.3437,1.3125,0.375,1.3125,0.3437,1.375,0.375,1.3125,0.375,1.375,0.375,1.375,0.375,1.3125,0.4062,1.3125,0.375,1.375,0.4062,1.3125,0.4062,1.375,0.4062,1.375,0.4062,1.3125,0.4375,1.3125,0.4062,1.375,0.4375,1.3125,0.4375,1.375,0.4375,1.375,0.4375,1.3125,0.4688,1.3125,0.4375,1.375,0.4688,1.3125,0.4688,1.375,0.4688,1.375,0.4688,1.3125,0.5,1.3125,0.4688,1.375,0.5,1.3125,0.5,1.375,0.5,1.375,0.5,1.3125,0.5313,1.3125,0.5,1.375,0.5313,1.3125,0.5313,1.375,0.5313,1.375,0.5313,1.3125,0.5625,1.3125,0.5313,1.375,0.5625,1.3125,0.5625,1.375,0.5625,1.375,0.5625,1.3125,0.5938,1.3125,0.5625,1.375,0.5938,1.3125,0.5938,1.375,0.5938,1.375,0.5938,1.3125,0.625,1.3125,0.5938,1.375,0.625,1.3125,0.625,1.375,0.625,1.375,0.625,1.3125,0.6563,1.3125,0.625,1.375,0.6563,1.3125,0.6563,1.375,0.6563,1.375,0.6563,1.3125,0.6875,1.3125,0.6563,1.375,0.6875,1.3125,0.6875,1.375,0.6875,1.375,0.6875,1.3125,0.7188,1.3125,0.6875,1.375,0.7188,1.3125,0.7188,1.375,0.7188,1.375,0.7188,1.3125,0.75,1.3125,0.7188,1.375,0.75,1.3125,0.75,1.375,0.75,1.375,0.75,1.3125,0.7813,1.3125,0.75,1.375,0.7813,1.3125,0.7813,1.375,0.7813,1.375,0.7813,1.3125,0.8125,1.3125,0.7813,1.375,0.8125,1.3125,0.8125,1.375,0.8125,1.375,0.8125,1.3125,0.8438,1.3125,0.8125,1.375,0.8438,1.3125,0.8438,1.375,0.8438,1.375,0.8438,1.3125,0.875,1.3125,0.8438,1.375,0.875,1.3125,0.875,1.375,0.875,1.375,0.875,1.3125,0.9063,1.3125,0.875,1.375,0.9063,1.3125,0.9063,1.375,0.9063,1.375,0.9063,1.3125,0.9375,1.3125,0.9063,1.375,0.9375,1.3125,0.9375,1.375,0.9375,1.375,0.9375,1.3125,0.9688,1.3125,0.9375,1.375,0.9688,1.3125,0.9688,1.375,0.9688,1.375,0.9688,1.3125,1.0,1.3125,0.9688,1.375,1.0,1.3125,1.0,1.375,0.0,1.3125,0.0,1.25,0.0312,1.25,0.0,1.3125,0.0312,1.25,0.0312,1.3125,0.0312,1.3125,0.0312,1.25,0.0625,1.25,0.0312,1.3125,0.0625,1.25,0.0625,1.3125,0.0625,1.3125,0.0625,1.25,0.0938,1.25,0.0625,1.3125,0.0938,1.25,0.0938,1.3125,0.0938,1.3125,0.0938,1.25,0.125,1.25,0.0938,1.3125,0.125,1.25,0.125,1.3125,0.125,1.3125,0.125,1.25,0.1562,1.25,0.125,1.3125,0.1562,1.25,0.1562,1.3125,0.1562,1.3125,0.1562,1.25,0.1875,1.25,0.1562,1.3125,0.1875,1.25,0.1875,1.3125,0.1875,1.3125,0.1875,1.25,0.2187,1.25,0.1875,1.3125,0.2187,1.25,0.2187,1.3125,0.2187,1.3125,0.2187,1.25,0.25,1.25,0.2187,1.3125,0.25,1.25,0.25,1.3125,0.25,1.3125,0.25,1.25,0.2812,1.25,0.25,1.3125,0.2812,1.25,0.2812,1.3125,0.2812,1.3125,0.2812,1.25,0.3125,1.25,0.2812,1.3125,0.3125,1.25,0.3125,1.3125,0.3125,1.3125,0.3125,1.25,0.3437,1.25,0.3125,1.3125,0.3437,1.25,0.3437,1.3125,0.3437,1.3125,0.3437,1.25,0.375,1.25,0.3437,1.3125,0.375,1.25,0.375,1.3125,0.375,1.3125,0.375,1.25,0.4062,1.25,0.375,1.3125,0.4062,1.25,0.4062,1.3125,0.4062,1.3125,0.4062,1.25,0.4375,1.25,0.4062,1.3125,0.4375,1.25,0.4375,1.3125,0.4375,1.3125,0.4375,1.25,0.4688,1.25,0.4375,1.3125,0.4688,1.25,0.4688,1.3125,0.4688,1.3125,0.4688,1.25,0.5,1.25,0.4688,1.3125,0.5,1.25,0.5,1.3125,0.5,1.3125,0.5,1.25,0.5313,1.25,0.5,1.3125,0.5313,1.25,0.5313,1.3125,0.5313,1.3125,0.5313,1.25,0.5625,1.25,0.5313,1.3125,0.5625,1.25,0.5625,1.3125,0.5625,1.3125,0.5625,1.25,0.5938,1.25,0.5625,1.3125,0.5938,1.25,0.5938,1.3125,0.5938,1.3125,0.5938,1.25,0.625,1.25,0.5938,1.3125,0.625,1.25,0.625,1.3125,0.625,1.3125,0.625,1.25,0.6563,1.25,0.625,1.3125,0.6563,1.25,0.6563,1.3125,0.6563,1.3125,0.6563,1.25,0.6875,1.25,0.6563,1.3125,0.6875,1.25,0.6875,1.3125,0.6875,1.3125,0.6875,1.25,0.7188,1.25,0.6875,1.3125,0.7188,1.25,0.7188,1.3125,0.7188,1.3125,0.7188,1.25,0.75,1.25,0.7188,1.3125,0.75,1.25,0.75,1.3125,0.75,1.3125,0.75,1.25,0.7813,1.25,0.75,1.3125,0.7813,1.25,0.7813,1.3125,0.7813,1.3125,0.7813,1.25,0.8125,1.25,0.7813,1.3125,0.8125,1.25,0.8125,1.3125,0.8125,1.3125,0.8125,1.25,0.8438,1.25,0.8125,1.3125,0.8438,1.25,0.8438,1.3125,0.8438,1.3125,0.8438,1.25,0.875,1.25,0.8438,1.3125,0.875,1.25,0.875,1.3125,0.875,1.3125,0.875,1.25,0.9063,1.25,0.875,1.3125,0.9063,1.25,0.9063,1.3125,0.9063,1.3125,0.9063,1.25,0.9375,1.25,0.9063,1.3125,0.9375,1.25,0.9375,1.3125,0.9375,1.3125,0.9375,1.25,0.9688,1.25,0.9375,1.3125,0.9688,1.25,0.9688,1.3125,0.9688,1.3125,0.9688,1.25,1.0,1.25,0.9688,1.3125,1.0,1.25,1.0,1.3125,0.0,1.25,0.0,1.1875,0.0312,1.1875,0.0,1.25,0.0312,1.1875,0.0312,1.25,0.0312,1.25,0.0312,1.1875,0.0625,1.1875,0.0312,1.25,0.0625,1.1875,0.0625,1.25,0.0625,1.25,0.0625,1.1875,0.0938,1.1875,0.0625,1.25,0.0938,1.1875,0.0938,1.25,0.0938,1.25,0.0938,1.1875,0.125,1.1875,0.0938,1.25,0.125,1.1875,0.125,1.25,0.125,1.25,0.125,1.1875,0.1562,1.1875,0.125,1.25,0.1562,1.1875,0.1562,1.25,0.1562,1.25,0.1562,1.1875,0.1875,1.1875,0.1562,1.25,0.1875,1.1875,0.1875,1.25,0.1875,1.25,0.1875,1.1875,0.2187,1.1875,0.1875,1.25,0.2187,1.1875,0.2187,1.25,0.2187,1.25,0.2187,1.1875,0.25,1.1875,0.2187,1.25,0.25,1.1875,0.25,1.25,0.25,1.25,0.25,1.1875,0.2812,1.1875,0.25,1.25,0.2812,1.1875,0.2812,1.25,0.2812,1.25,0.2812,1.1875,0.3125,1.1875,0.2812,1.25,0.3125,1.1875,0.3125,1.25,0.3125,1.25,0.3125,1.1875,0.3437,1.1875,0.3125,1.25,0.3437,1.1875,0.3437,1.25,0.3437,1.25,0.3437,1.1875,0.375,1.1875,0.3437,1.25,0.375,1.1875,0.375,1.25,0.375,1.25,0.375,1.1875,0.4062,1.1875,0.375,1.25,0.4062,1.1875,0.4062,1.25,0.4062,1.25,0.4062,1.1875,0.4375,1.1875,0.4062,1.25,0.4375,1.1875,0.4375,1.25,0.4375,1.25,0.4375,1.1875,0.4688,1.1875,0.4375,1.25,0.4688,1.1875,0.4688,1.25,0.4688,1.25,0.4688,1.1875,0.5,1.1875,0.4688,1.25,0.5,1.1875,0.5,1.25,0.5,1.25,0.5,1.1875,0.5313,1.1875,0.5,1.25,0.5313,1.1875,0.5313,1.25,0.5313,1.25,0.5313,1.1875,0.5625,1.1875,0.5313,1.25,0.5625,1.1875,0.5625,1.25,0.5625,1.25,0.5625,1.1875,0.5938,1.1875,0.5625,1.25,0.5938,1.1875,0.5938,1.25,0.5938,1.25,0.5938,1.1875,0.625,1.1875,0.5938,1.25,0.625,1.1875,0.625,1.25,0.625,1.25,0.625,1.1875,0.6563,1.1875,0.625,1.25,0.6563,1.1875,0.6563,1.25,0.6563,1.25,0.6563,1.1875,0.6875,1.1875,0.6563,1.25,0.6875,1.1875,0.6875,1.25,0.6875,1.25,0.6875,1.1875,0.7188,1.1875,0.6875,1.25,0.7188,1.1875,0.7188,1.25,0.7188,1.25,0.7188,1.1875,0.75,1.1875,0.7188,1.25,0.75,1.1875,0.75,1.25,0.75,1.25,0.75,1.1875,0.7813,1.1875,0.75,1.25,0.7813,1.1875,0.7813,1.25,0.7813,1.25,0.7813,1.1875,0.8125,1.1875,0.7813,1.25,0.8125,1.1875,0.8125,1.25,0.8125,1.25,0.8125,1.1875,0.8438,1.1875,0.8125,1.25,0.8438,1.1875,0.8438,1.25,0.8438,1.25,0.8438,1.1875,0.875,1.1875,0.8438,1.25,0.875,1.1875,0.875,1.25,0.875,1.25,0.875,1.1875,0.9063,1.1875,0.875,1.25,0.9063,1.1875,0.9063,1.25,0.9063,1.25,0.9063,1.1875,0.9375,1.1875,0.9063,1.25,0.9375,1.1875,0.9375,1.25,0.9375,1.25,0.9375,1.1875,0.9688,1.1875,0.9375,1.25,0.9688,1.1875,0.9688,1.25,0.9688,1.25,0.9688,1.1875,1.0,1.1875,0.9688,1.25,1.0,1.1875,1.0,1.25,0.0,1.1875,0.0,1.125,0.0312,1.125,0.0,1.1875,0.0312,1.125,0.0312,1.1875,0.0312,1.1875,0.0312,1.125,0.0625,1.125,0.0312,1.1875,0.0625,1.125,0.0625,1.1875,0.0625,1.1875,0.0625,1.125,0.0938,1.125,0.0625,1.1875,0.0938,1.125,0.0938,1.1875,0.0938,1.1875,0.0938,1.125,0.125,1.125,0.0938,1.1875,0.125,1.125,0.125,1.1875,0.125,1.1875,0.125,1.125,0.1562,1.125,0.125,1.1875,0.1562,1.125,0.1562,1.1875,0.1562,1.1875,0.1562,1.125,0.1875,1.125,0.1562,1.1875,0.1875,1.125,0.1875,1.1875,0.1875,1.1875,0.1875,1.125,0.2187,1.125,0.1875,1.1875,0.2187,1.125,0.2187,1.1875,0.2187,1.1875,0.2187,1.125,0.25,1.125,0.2187,1.1875,0.25,1.125,0.25,1.1875,0.25,1.1875,0.25,1.125,0.2812,1.125,0.25,1.1875,0.2812,1.125,0.2812,1.1875,0.2812,1.1875,0.2812,1.125,0.3125,1.125,0.2812,1.1875,0.3125,1.125,0.3125,1.1875,0.3125,1.1875,0.3125,1.125,0.3437,1.125,0.3125,1.1875,0.3437,1.125,0.3437,1.1875,0.3437,1.1875,0.3437,1.125,0.375,1.125,0.3437,1.1875,0.375,1.125,0.375,1.1875,0.375,1.1875,0.375,1.125,0.4062,1.125,0.375,1.1875,0.4062,1.125,0.4062,1.1875,0.4062,1.1875,0.4062,1.125,0.4375,1.125,0.4062,1.1875,0.4375,1.125,0.4375,1.1875,0.4375,1.1875,0.4375,1.125,0.4688,1.125,0.4375,1.1875,0.4688,1.125,0.4688,1.1875,0.4688,1.1875,0.4688,1.125,0.5,1.125,0.4688,1.1875,0.5,1.125,0.5,1.1875,0.5,1.1875,0.5,1.125,0.5313,1.125,0.5,1.1875,0.5313,1.125,0.5313,1.1875,0.5313,1.1875,0.5313,1.125,0.5625,1.125,0.5313,1.1875,0.5625,1.125,0.5625,1.1875,0.5625,1.1875,0.5625,1.125,0.5938,1.125,0.5625,1.1875,0.5938,1.125,0.5938,1.1875,0.5938,1.1875,0.5938,1.125,0.625,1.125,0.5938,1.1875,0.625,1.125,0.625,1.1875,0.625,1.1875,0.625,1.125,0.6563,1.125,0.625,1.1875,0.6563,1.125,0.6563,1.1875,0.6563,1.1875,0.6563,1.125,0.6875,1.125,0.6563,1.1875,0.6875,1.125,0.6875,1.1875,0.6875,1.1875,0.6875,1.125,0.7188,1.125,0.6875,1.1875,0.7188,1.125,0.7188,1.1875,0.7188,1.1875,0.7188,1.125,0.75,1.125,0.7188,1.1875,0.75,1.125,0.75,1.1875,0.75,1.1875,0.75,1.125,0.7813,1.125,0.75,1.1875,0.7813,1.125,0.7813,1.1875,0.7813,1.1875,0.7813,1.125,0.8125,1.125,0.7813,1.1875,0.8125,1.125,0.8125,1.1875,0.8125,1.1875,0.8125,1.125,0.8438,1.125,0.8125,1.1875,0.8438,1.125,0.8438,1.1875,0.8438,1.1875,0.8438,1.125,0.875,1.125,0.8438,1.1875,0.875,1.125,0.875,1.1875,0.875,1.1875,0.875,1.125,0.9063,1.125,0.875,1.1875,0.9063,1.125,0.9063,1.1875,0.9063,1.1875,0.9063,1.125,0.9375,1.125,0.9063,1.1875,0.9375,1.125,0.9375,1.1875,0.9375,1.1875,0.9375,1.125,0.9688,1.125,0.9375,1.1875,0.9688,1.125,0.9688,1.1875,0.9688,1.1875,0.9688,1.125,1.0,1.125,0.9688,1.1875,1.0,1.125,1.0,1.1875,0.0,1.125,0.0,1.0625,0.0312,1.0625,0.0,1.125,0.0312,1.0625,0.0312,1.125,0.0312,1.125,0.0312,1.0625,0.0625,1.0625,0.0312,1.125,0.0625,1.0625,0.0625,1.125,0.0625,1.125,0.0625,1.0625,0.0938,1.0625,0.0625,1.125,0.0938,1.0625,0.0938,1.125,0.0938,1.125,0.0938,1.0625,0.125,1.0625,0.0938,1.125,0.125,1.0625,0.125,1.125,0.125,1.125,0.125,1.0625,0.1562,1.0625,0.125,1.125,0.1562,1.0625,0.1562,1.125,0.1562,1.125,0.1562,1.0625,0.1875,1.0625,0.1562,1.125,0.1875,1.0625,0.1875,1.125,0.1875,1.125,0.1875,1.0625,0.2187,1.0625,0.1875,1.125,0.2187,1.0625,0.2187,1.125,0.2187,1.125,0.2187,1.0625,0.25,1.0625,0.2187,1.125,0.25,1.0625,0.25,1.125,0.25,1.125,0.25,1.0625,0.2812,1.0625,0.25,1.125,0.2812,1.0625,0.2812,1.125,0.2812,1.125,0.2812,1.0625,0.3125,1.0625,0.2812,1.125,0.3125,1.0625,0.3125,1.125,0.3125,1.125,0.3125,1.0625,0.3437,1.0625,0.3125,1.125,0.3437,1.0625,0.3437,1.125,0.3437,1.125,0.3437,1.0625,0.375,1.0625,0.3437,1.125,0.375,1.0625,0.375,1.125,0.375,1.125,0.375,1.0625,0.4062,1.0625,0.375,1.125,0.4062,1.0625,0.4062,1.125,0.4062,1.125,0.4062,1.0625,0.4375,1.0625,0.4062,1.125,0.4375,1.0625,0.4375,1.125,0.4375,1.125,0.4375,1.0625,0.4688,1.0625,0.4375,1.125,0.4688,1.0625,0.4688,1.125,0.4688,1.125,0.4688,1.0625,0.5,1.0625,0.4688,1.125,0.5,1.0625,0.5,1.125,0.5,1.125,0.5,1.0625,0.5313,1.0625,0.5,1.125,0.5313,1.0625,0.5313,1.125,0.5313,1.125,0.5313,1.0625,0.5625,1.0625,0.5313,1.125,0.5625,1.0625,0.5625,1.125,0.5625,1.125,0.5625,1.0625,0.5938,1.0625,0.5625,1.125,0.5938,1.0625,0.5938,1.125,0.5938,1.125,0.5938,1.0625,0.625,1.0625,0.5938,1.125,0.625,1.0625,0.625,1.125,0.625,1.125,0.625,1.0625,0.6563,1.0625,0.625,1.125,0.6563,1.0625,0.6563,1.125,0.6563,1.125,0.6563,1.0625,0.6875,1.0625,0.6563,1.125,0.6875,1.0625,0.6875,1.125,0.6875,1.125,0.6875,1.0625,0.7188,1.0625,0.6875,1.125,0.7188,1.0625,0.7188,1.125,0.7188,1.125,0.7188,1.0625,0.75,1.0625,0.7188,1.125,0.75,1.0625,0.75,1.125,0.75,1.125,0.75,1.0625,0.7813,1.0625,0.75,1.125,0.7813,1.0625,0.7813,1.125,0.7813,1.125,0.7813,1.0625,0.8125,1.0625,0.7813,1.125,0.8125,1.0625,0.8125,1.125,0.8125,1.125,0.8125,1.0625,0.8438,1.0625,0.8125,1.125,0.8438,1.0625,0.8438,1.125,0.8438,1.125,0.8438,1.0625,0.875,1.0625,0.8438,1.125,0.875,1.0625,0.875,1.125,0.875,1.125,0.875,1.0625,0.9063,1.0625,0.875,1.125,0.9063,1.0625,0.9063,1.125,0.9063,1.125,0.9063,1.0625,0.9375,1.0625,0.9063,1.125,0.9375,1.0625,0.9375,1.125,0.9375,1.125,0.9375,1.0625,0.9688,1.0625,0.9375,1.125,0.9688,1.0625,0.9688,1.125,0.9688,1.125,0.9688,1.0625,1.0,1.0625,0.9688,1.125,1.0,1.0625,1.0,1.125,0.0,1.0,0.0312,1.0625,0.0,1.0625,0.0312,1.0,0.0625,1.0625,0.0312,1.0625,0.0625,1.0,0.0938,1.0625,0.0625,1.0625,0.0938,1.0,0.125,1.0625,0.0938,1.0625,0.125,1.0,0.1562,1.0625,0.125,1.0625,0.1562,1.0,0.1875,1.0625,0.1562,1.0625,0.1875,1.0,0.2187,1.0625,0.1875,1.0625,0.2187,1.0,0.25,1.0625,0.2187,1.0625,0.25,1.0,0.2812,1.0625,0.25,1.0625,0.2812,1.0,0.3125,1.0625,0.2812,1.0625,0.3125,1.0,0.3437,1.0625,0.3125,1.0625,0.3437,1.0,0.375,1.0625,0.3437,1.0625,0.375,1.0,0.4062,1.0625,0.375,1.0625,0.4062,1.0,0.4375,1.0625,0.4062,1.0625,0.4375,1.0,0.4688,1.0625,0.4375,1.0625,0.4688,1.0,0.5,1.0625,0.4688,1.0625,0.5,1.0,0.5313,1.0625,0.5,1.0625,0.5313,1.0,0.5625,1.0625,0.5313,1.0625,0.5625,1.0,0.5938,1.0625,0.5625,1.0625,0.5938,1.0,0.625,1.0625,0.5938,1.0625,0.625,1.0,0.6563,1.0625,0.625,1.0625,0.6563,1.0,0.6875,1.0625,0.6563,1.0625,0.6875,1.0,0.7188,1.0625,0.6875,1.0625,0.7188,1.0,0.75,1.0625,0.7188,1.0625,0.75,1.0,0.7813,1.0625,0.75,1.0625,0.7813,1.0,0.8125,1.0625,0.7813,1.0625,0.8125,1.0,0.8438,1.0625,0.8125,1.0625,0.8438,1.0,0.875,1.0625,0.8438,1.0625,0.875,1.0,0.9063,1.0625,0.875,1.0625,0.9063,1.0,0.9375,1.0625,0.9063,1.0625,0.9375,1.0,0.9688,1.0625,0.9375,1.0625,0.9688,1.0,1.0,1.0625,0.9688,1.0625],"uvs2":null,"colors":null,"hasVertexAlpha":false,"matricesIndices":null,"matricesWeights":null,"matricesIndicesExtra":null,"matricesWeightsExtra":null,"indices":[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,1984,1985,1986,1987,1988,1989,1990,1991,1992,1993,1994,1995,1996,1997,1998,1999,2000,2001,2002,2003,2004,2005,2006,2007,2008,2009,2010,2011,2012,2013,2014,2015,2016,2017,2018,2019,2020,2021,2022,2023,2024,2025,2026,2027,2028,2029,2030,2031,2032,2033,2034,2035,2036,2037,2038,2039,2040,2041,2042,2043,2044,2045,2046,2047,2048,2049,2050,2051,2052,2053,2054,2055,2056,2057,2058,2059,2060,2061,2062,2063,2064,2065,2066,2067,2068,2069,2070,2071,2072,2073,2074,2075,2076,2077,2078,2079,2080,2081,2082,2083,2084,2085,2086,2087,2088,2089,2090,2091,2092,2093,2094,2095,2096,2097,2098,2099,2100,2101,2102,2103,2104,2105,2106,2107,2108,2109,2110,2111,2112,2113,2114,2115,2116,2117,2118,2119,2120,2121,2122,2123,2124,2125,2126,2127,2128,2129,2130,2131,2132,2133,2134,2135,2136,2137,2138,2139,2140,2141,2142,2143,2144,2145,2146,2147,2148,2149,2150,2151,2152,2153,2154,2155,2156,2157,2158,2159,2160,2161,2162,2163,2164,2165,2166,2167,2168,2169,2170,2171,2172,2173,2174,2175,2176,2177,2178,2179,2180,2181,2182,2183,2184,2185,2186,2187,2188,2189,2190,2191,2192,2193,2194,2195,2196,2197,2198,2199,2200,2201,2202,2203,2204,2205,2206,2207,2208,2209,2210,2211,2212,2213,2214,2215,2216,2217,2218,2219,2220,2221,2222,2223,2224,2225,2226,2227,2228,2229,2230,2231,2232,2233,2234,2235,2236,2237,2238,2239,2240,2241,2242,2243,2244,2245,2246,2247,2248,2249,2250,2251,2252,2253,2254,2255,2256,2257,2258,2259,2260,2261,2262,2263,2264,2265,2266,2267,2268,2269,2270,2271,2272,2273,2274,2275,2276,2277,2278,2279,2280,2281,2282,2283,2284,2285,2286,2287,2288,2289,2290,2291,2292,2293,2294,2295,2296,2297,2298,2299,2300,2301,2302,2303,2304,2305,2306,2307,2308,2309,2310,2311,2312,2313,2314,2315,2316,2317,2318,2319,2320,2321,2322,2323,2324,2325,2326,2327,2328,2329,2330,2331,2332,2333,2334,2335,2336,2337,2338,2339,2340,2341,2342,2343,2344,2345,2346,2347,2348,2349,2350,2351,2352,2353,2354,2355,2356,2357,2358,2359,2360,2361,2362,2363,2364,2365,2366,2367,2368,2369,2370,2371,2372,2373,2374,2375,2376,2377,2378,2379,2380,2381,2382,2383,2384,2385,2386,2387,2388,2389,2390,2391,2392,2393,2394,2395,2396,2397,2398,2399,2400,2401,2402,2403,2404,2405,2406,2407,2408,2409,2410,2411,2412,2413,2414,2415,2416,2417,2418,2419,2420,2421,2422,2423,2424,2425,2426,2427,2428,2429,2430,2431,2432,2433,2434,2435,2436,2437,2438,2439,2440,2441,2442,2443,2444,2445,2446,2447,2448,2449,2450,2451,2452,2453,2454,2455,2456,2457,2458,2459,2460,2461,2462,2463,2464,2465,2466,2467,2468,2469,2470,2471,2472,2473,2474,2475,2476,2477,2478,2479,2480,2481,2482,2483,2484,2485,2486,2487,2488,2489,2490,2491,2492,2493,2494,2495,2496,2497,2498,2499,2500,2501,2502,2503,2504,2505,2506,2507,2508,2509,2510,2511,2512,2513,2514,2515,2516,2517,2518,2519,2520,2521,2522,2523,2524,2525,2526,2527,2528,2529,2530,2531,2532,2533,2534,2535,2536,2537,2538,2539,2540,2541,2542,2543,2544,2545,2546,2547,2548,2549,2550,2551,2552,2553,2554,2555,2556,2557,2558,2559,2560,2561,2562,2563,2564,2565,2566,2567,2568,2569,2570,2571,2572,2573,2574,2575,2576,2577,2578,2579,2580,2581,2582,2583,2584,2585,2586,2587,2588,2589,2590,2591,2592,2593,2594,2595,2596,2597,2598,2599,2600,2601,2602,2603,2604,2605,2606,2607,2608,2609,2610,2611,2612,2613,2614,2615,2616,2617,2618,2619,2620,2621,2622,2623,2624,2625,2626,2627,2628,2629,2630,2631,2632,2633,2634,2635,2636,2637,2638,2639,2640,2641,2642,2643,2644,2645,2646,2647,2648,2649,2650,2651,2652,2653,2654,2655,2656,2657,2658,2659,2660,2661,2662,2663,2664,2665,2666,2667,2668,2669,2670,2671,2672,2673,2674,2675,2676,2677,2678,2679,2680,2681,2682,2683,2684,2685,2686,2687,2688,2689,2690,2691,2692,2693,2694,2695,2696,2697,2698,2699,2700,2701,2702,2703,2704,2705,2706,2707,2708,2709,2710,2711,2712,2713,2714,2715,2716,2717,2718,2719,2720,2721,2722,2723,2724,2725,2726,2727,2728,2729,2730,2731,2732,2733,2734,2735,2736,2737,2738,2739,2740,2741,2742,2743,2744,2745,2746,2747,2748,2749,2750,2751,2752,2753,2754,2755,2756,2757,2758,2759,2760,2761,2762,2763,2764,2765,2766,2767,2768,2769,2770,2771,2772,2773,2774,2775,2776,2777,2778,2779,2780,2781,2782,2783,2784,2785,2786,2787,2788,2789,2790,2791,2792,2793,2794,2795,2796,2797,2798,2799,2800,2801,2802,2803,2804,2805,2806,2807,2808,2809,2810,2811,2812,2813,2814,2815,2816,2817,2818,2819,2820,2821,2822,2823,2824,2825,2826,2827,2828,2829,2830,2831,2832,2833,2834,2835,2836,2837,2838,2839,2840,2841,2842,2843,2844,2845,2846,2847,2848,2849,2850,2851,2852,2853,2854,2855,2856,2857,2858,2859,2860,2861,2862,2863,2864,2865,2866,2867,2868,2869,2870,2871,2872,2873,2874,2875,2876,2877,2878,2879],"receiveShadows":true,"infiniteDistance":false,"billboardMode":0,"visibility":1.0,"subMeshes":[{"materialIndex":0,"verticesStart":0,"verticesCount":2880,"indexStart":0,"indexCount":2880}],"instances":null,"skeletonId":-1,"numBoneInfluencers":4,"applyFog":true,"lodMeshIds":null,"lodDistances":null,"lodCoverages":null,"rotation":null,"scaling":[1.0,1.0,1.0],"rotationQuaternion":[0.0,0.7071,0.0,0.7071],"actions":null,"checkCollisions":false,"pickable":false,"showBoundingBox":false,"showSubMeshesBoundingBox":false,"alphaIndex":1000,"physicsImpostor":0,"physicsMass":0.0,"physicsFriction":0.0,"physicsRestitution":0.0,"name":"StandardMesh","id":"113f2dbc-dce1-4faa-be71-35277504433b","parentId":null,"position":[0.0,0.0,0.0],"animations":[],"autoAnimate":true,"autoAnimateFrom":0,"autoAnimateTo":100,"autoAnimateLoop":true,"metadata":null},{"materialId":"e8d366dc-9a25-4d46-80f2-60a95ec88505","isEnabled":true,"isVisible":true,"positions":[0.0,1.0,0.0,0.0,0.9808,0.1951,-0.0381,0.9808,0.1913,0.0,1.0,0.0,-0.0381,0.9808,0.1913,-0.0747,0.9808,0.1802,0.0,1.0,0.0,-0.0747,0.9808,0.1802,-0.1084,0.9808,0.1622,0.0,1.0,0.0,-0.1084,0.9808,0.1622,-0.1379,0.9808,0.1379,0.0,1.0,0.0,-0.1379,0.9808,0.1379,-0.1622,0.9808,0.1084,0.0,1.0,0.0,-0.1622,0.9808,0.1084,-0.1802,0.9808,0.0747,0.0,1.0,0.0,-0.1802,0.9808,0.0747,-0.1913,0.9808,0.0381,0.0,1.0,0.0,-0.1913,0.9808,0.0381,-0.1951,0.9808,0.0,0.0,1.0,0.0,-0.1951,0.9808,0.0,-0.1913,0.9808,-0.0381,0.0,1.0,0.0,-0.1913,0.9808,-0.0381,-0.1802,0.9808,-0.0747,0.0,1.0,0.0,-0.1802,0.9808,-0.0747,-0.1622,0.9808,-0.1084,0.0,1.0,0.0,-0.1622,0.9808,-0.1084,-0.1379,0.9808,-0.1379,0.0,1.0,0.0,-0.1379,0.9808,-0.1379,-0.1084,0.9808,-0.1622,0.0,1.0,0.0,-0.1084,0.9808,-0.1622,-0.0747,0.9808,-0.1802,0.0,1.0,0.0,-0.0747,0.9808,-0.1802,-0.0381,0.9808,-0.1913,0.0,1.0,0.0,-0.0381,0.9808,-0.1913,0.0,0.9808,-0.1951,0.0,1.0,0.0,0.0,0.9808,-0.1951,0.0381,0.9808,-0.1913,0.0,1.0,0.0,0.0381,0.9808,-0.1913,0.0747,0.9808,-0.1802,0.0,1.0,0.0,0.0747,0.9808,-0.1802,0.1084,0.9808,-0.1622,0.0,1.0,0.0,0.1084,0.9808,-0.1622,0.1379,0.9808,-0.1379,0.0,1.0,0.0,0.1379,0.9808,-0.1379,0.1622,0.9808,-0.1084,0.0,1.0,0.0,0.1622,0.9808,-0.1084,0.1802,0.9808,-0.0747,0.0,1.0,0.0,0.1802,0.9808,-0.0747,0.1913,0.9808,-0.0381,0.0,1.0,0.0,0.1913,0.9808,-0.0381,0.1951,0.9808,0.0,0.0,1.0,0.0,0.1951,0.9808,0.0,0.1913,0.9808,0.0381,0.0,1.0,0.0,0.1913,0.9808,0.0381,0.1802,0.9808,0.0747,0.0,1.0,0.0,0.1802,0.9808,0.0747,0.1622,0.9808,0.1084,0.0,1.0,0.0,0.1622,0.9808,0.1084,0.1379,0.9808,0.1379,0.0,1.0,0.0,0.1379,0.9808,0.1379,0.1084,0.9808,0.1622,0.0,1.0,0.0,0.1084,0.9808,0.1622,0.0747,0.9808,0.1802,0.0,1.0,0.0,0.0747,0.9808,0.1802,0.0381,0.9808,0.1913,0.0,1.0,0.0,0.0381,0.9808,0.1913,0.0,0.9808,0.1951,0.0,0.9808,0.1951,0.0,0.9239,0.3827,-0.0747,0.9239,0.3753,0.0,0.9808,0.1951,-0.0747,0.9239,0.3753,-0.0381,0.9808,0.1913,-0.0381,0.9808,0.1913,-0.0747,0.9239,0.3753,-0.1464,0.9239,0.3536,-0.0381,0.9808,0.1913,-0.1464,0.9239,0.3536,-0.0747,0.9808,0.1802,-0.0747,0.9808,0.1802,-0.1464,0.9239,0.3536,-0.2126,0.9239,0.3182,-0.0747,0.9808,0.1802,-0.2126,0.9239,0.3182,-0.1084,0.9808,0.1622,-0.1084,0.9808,0.1622,-0.2126,0.9239,0.3182,-0.2706,0.9239,0.2706,-0.1084,0.9808,0.1622,-0.2706,0.9239,0.2706,-0.1379,0.9808,0.1379,-0.1379,0.9808,0.1379,-0.2706,0.9239,0.2706,-0.3182,0.9239,0.2126,-0.1379,0.9808,0.1379,-0.3182,0.9239,0.2126,-0.1622,0.9808,0.1084,-0.1622,0.9808,0.1084,-0.3182,0.9239,0.2126,-0.3536,0.9239,0.1464,-0.1622,0.9808,0.1084,-0.3536,0.9239,0.1464,-0.1802,0.9808,0.0747,-0.1802,0.9808,0.0747,-0.3536,0.9239,0.1464,-0.3753,0.9239,0.0747,-0.1802,0.9808,0.0747,-0.3753,0.9239,0.0747,-0.1913,0.9808,0.0381,-0.1913,0.9808,0.0381,-0.3753,0.9239,0.0747,-0.3827,0.9239,0.0,-0.1913,0.9808,0.0381,-0.3827,0.9239,0.0,-0.1951,0.9808,0.0,-0.1951,0.9808,0.0,-0.3827,0.9239,0.0,-0.3753,0.9239,-0.0747,-0.1951,0.9808,0.0,-0.3753,0.9239,-0.0747,-0.1913,0.9808,-0.0381,-0.1913,0.9808,-0.0381,-0.3753,0.9239,-0.0747,-0.3536,0.9239,-0.1464,-0.1913,0.9808,-0.0381,-0.3536,0.9239,-0.1464,-0.1802,0.9808,-0.0747,-0.1802,0.9808,-0.0747,-0.3536,0.9239,-0.1464,-0.3182,0.9239,-0.2126,-0.1802,0.9808,-0.0747,-0.3182,0.9239,-0.2126,-0.1622,0.9808,-0.1084,-0.1622,0.9808,-0.1084,-0.3182,0.9239,-0.2126,-0.2706,0.9239,-0.2706,-0.1622,0.9808,-0.1084,-0.2706,0.9239,-0.2706,-0.1379,0.9808,-0.1379,-0.1379,0.9808,-0.1379,-0.2706,0.9239,-0.2706,-0.2126,0.9239,-0.3182,-0.1379,0.9808,-0.1379,-0.2126,0.9239,-0.3182,-0.1084,0.9808,-0.1622,-0.1084,0.9808,-0.1622,-0.2126,0.9239,-0.3182,-0.1464,0.9239,-0.3536,-0.1084,0.9808,-0.1622,-0.1464,0.9239,-0.3536,-0.0747,0.9808,-0.1802,-0.0747,0.9808,-0.1802,-0.1464,0.9239,-0.3536,-0.0747,0.9239,-0.3753,-0.0747,0.9808,-0.1802,-0.0747,0.9239,-0.3753,-0.0381,0.9808,-0.1913,-0.0381,0.9808,-0.1913,-0.0747,0.9239,-0.3753,0.0,0.9239,-0.3827,-0.0381,0.9808,-0.1913,0.0,0.9239,-0.3827,0.0,0.9808,-0.1951,0.0,0.9808,-0.1951,0.0,0.9239,-0.3827,0.0747,0.9239,-0.3753,0.0,0.9808,-0.1951,0.0747,0.9239,-0.3753,0.0381,0.9808,-0.1913,0.0381,0.9808,-0.1913,0.0747,0.9239,-0.3753,0.1464,0.9239,-0.3536,0.0381,0.9808,-0.1913,0.1464,0.9239,-0.3536,0.0747,0.9808,-0.1802,0.0747,0.9808,-0.1802,0.1464,0.9239,-0.3536,0.2126,0.9239,-0.3182,0.0747,0.9808,-0.1802,0.2126,0.9239,-0.3182,0.1084,0.9808,-0.1622,0.1084,0.9808,-0.1622,0.2126,0.9239,-0.3182,0.2706,0.9239,-0.2706,0.1084,0.9808,-0.1622,0.2706,0.9239,-0.2706,0.1379,0.9808,-0.1379,0.1379,0.9808,-0.1379,0.2706,0.9239,-0.2706,0.3182,0.9239,-0.2126,0.1379,0.9808,-0.1379,0.3182,0.9239,-0.2126,0.1622,0.9808,-0.1084,0.1622,0.9808,-0.1084,0.3182,0.9239,-0.2126,0.3536,0.9239,-0.1464,0.1622,0.9808,-0.1084,0.3536,0.9239,-0.1464,0.1802,0.9808,-0.0747,0.1802,0.9808,-0.0747,0.3536,0.9239,-0.1464,0.3753,0.9239,-0.0747,0.1802,0.9808,-0.0747,0.3753,0.9239,-0.0747,0.1913,0.9808,-0.0381,0.1913,0.9808,-0.0381,0.3753,0.9239,-0.0747,0.3827,0.9239,0.0,0.1913,0.9808,-0.0381,0.3827,0.9239,0.0,0.1951,0.9808,0.0,0.1951,0.9808,0.0,0.3827,0.9239,0.0,0.3753,0.9239,0.0747,0.1951,0.9808,0.0,0.3753,0.9239,0.0747,0.1913,0.9808,0.0381,0.1913,0.9808,0.0381,0.3753,0.9239,0.0747,0.3536,0.9239,0.1464,0.1913,0.9808,0.0381,0.3536,0.9239,0.1464,0.1802,0.9808,0.0747,0.1802,0.9808,0.0747,0.3536,0.9239,0.1464,0.3182,0.9239,0.2126,0.1802,0.9808,0.0747,0.3182,0.9239,0.2126,0.1622,0.9808,0.1084,0.1622,0.9808,0.1084,0.3182,0.9239,0.2126,0.2706,0.9239,0.2706,0.1622,0.9808,0.1084,0.2706,0.9239,0.2706,0.1379,0.9808,0.1379,0.1379,0.9808,0.1379,0.2706,0.9239,0.2706,0.2126,0.9239,0.3182,0.1379,0.9808,0.1379,0.2126,0.9239,0.3182,0.1084,0.9808,0.1622,0.1084,0.9808,0.1622,0.2126,0.9239,0.3182,0.1464,0.9239,0.3536,0.1084,0.9808,0.1622,0.1464,0.9239,0.3536,0.0747,0.9808,0.1802,0.0747,0.9808,0.1802,0.1464,0.9239,0.3536,0.0747,0.9239,0.3753,0.0747,0.9808,0.1802,0.0747,0.9239,0.3753,0.0381,0.9808,0.1913,0.0381,0.9808,0.1913,0.0747,0.9239,0.3753,0.0,0.9239,0.3827,0.0381,0.9808,0.1913,0.0,0.9239,0.3827,0.0,0.9808,0.1951,0.0,0.9239,0.3827,0.0,0.8315,0.5556,-0.1084,0.8315,0.5449,0.0,0.9239,0.3827,-0.1084,0.8315,0.5449,-0.0747,0.9239,0.3753,-0.0747,0.9239,0.3753,-0.1084,0.8315,0.5449,-0.2126,0.8315,0.5133,-0.0747,0.9239,0.3753,-0.2126,0.8315,0.5133,-0.1464,0.9239,0.3536,-0.1464,0.9239,0.3536,-0.2126,0.8315,0.5133,-0.3087,0.8315,0.4619,-0.1464,0.9239,0.3536,-0.3087,0.8315,0.4619,-0.2126,0.9239,0.3182,-0.2126,0.9239,0.3182,-0.3087,0.8315,0.4619,-0.3928,0.8315,0.3928,-0.2126,0.9239,0.3182,-0.3928,0.8315,0.3928,-0.2706,0.9239,0.2706,-0.2706,0.9239,0.2706,-0.3928,0.8315,0.3928,-0.4619,0.8315,0.3087,-0.2706,0.9239,0.2706,-0.4619,0.8315,0.3087,-0.3182,0.9239,0.2126,-0.3182,0.9239,0.2126,-0.4619,0.8315,0.3087,-0.5133,0.8315,0.2126,-0.3182,0.9239,0.2126,-0.5133,0.8315,0.2126,-0.3536,0.9239,0.1464,-0.3536,0.9239,0.1464,-0.5133,0.8315,0.2126,-0.5449,0.8315,0.1084,-0.3536,0.9239,0.1464,-0.5449,0.8315,0.1084,-0.3753,0.9239,0.0747,-0.3753,0.9239,0.0747,-0.5449,0.8315,0.1084,-0.5556,0.8315,0.0,-0.3753,0.9239,0.0747,-0.5556,0.8315,0.0,-0.3827,0.9239,0.0,-0.3827,0.9239,0.0,-0.5556,0.8315,0.0,-0.5449,0.8315,-0.1084,-0.3827,0.9239,0.0,-0.5449,0.8315,-0.1084,-0.3753,0.9239,-0.0747,-0.3753,0.9239,-0.0747,-0.5449,0.8315,-0.1084,-0.5133,0.8315,-0.2126,-0.3753,0.9239,-0.0747,-0.5133,0.8315,-0.2126,-0.3536,0.9239,-0.1464,-0.3536,0.9239,-0.1464,-0.5133,0.8315,-0.2126,-0.4619,0.8315,-0.3087,-0.3536,0.9239,-0.1464,-0.4619,0.8315,-0.3087,-0.3182,0.9239,-0.2126,-0.3182,0.9239,-0.2126,-0.4619,0.8315,-0.3087,-0.3928,0.8315,-0.3928,-0.3182,0.9239,-0.2126,-0.3928,0.8315,-0.3928,-0.2706,0.9239,-0.2706,-0.2706,0.9239,-0.2706,-0.3928,0.8315,-0.3928,-0.3087,0.8315,-0.4619,-0.2706,0.9239,-0.2706,-0.3087,0.8315,-0.4619,-0.2126,0.9239,-0.3182,-0.2126,0.9239,-0.3182,-0.3087,0.8315,-0.4619,-0.2126,0.8315,-0.5133,-0.2126,0.9239,-0.3182,-0.2126,0.8315,-0.5133,-0.1464,0.9239,-0.3536,-0.1464,0.9239,-0.3536,-0.2126,0.8315,-0.5133,-0.1084,0.8315,-0.5449,-0.1464,0.9239,-0.3536,-0.1084,0.8315,-0.5449,-0.0747,0.9239,-0.3753,-0.0747,0.9239,-0.3753,-0.1084,0.8315,-0.5449,0.0,0.8315,-0.5556,-0.0747,0.9239,-0.3753,0.0,0.8315,-0.5556,0.0,0.9239,-0.3827,0.0,0.9239,-0.3827,0.0,0.8315,-0.5556,0.1084,0.8315,-0.5449,0.0,0.9239,-0.3827,0.1084,0.8315,-0.5449,0.0747,0.9239,-0.3753,0.0747,0.9239,-0.3753,0.1084,0.8315,-0.5449,0.2126,0.8315,-0.5133,0.0747,0.9239,-0.3753,0.2126,0.8315,-0.5133,0.1464,0.9239,-0.3536,0.1464,0.9239,-0.3536,0.2126,0.8315,-0.5133,0.3087,0.8315,-0.4619,0.1464,0.9239,-0.3536,0.3087,0.8315,-0.4619,0.2126,0.9239,-0.3182,0.2126,0.9239,-0.3182,0.3087,0.8315,-0.4619,0.3928,0.8315,-0.3928,0.2126,0.9239,-0.3182,0.3928,0.8315,-0.3928,0.2706,0.9239,-0.2706,0.2706,0.9239,-0.2706,0.3928,0.8315,-0.3928,0.4619,0.8315,-0.3087,0.2706,0.9239,-0.2706,0.4619,0.8315,-0.3087,0.3182,0.9239,-0.2126,0.3182,0.9239,-0.2126,0.4619,0.8315,-0.3087,0.5133,0.8315,-0.2126,0.3182,0.9239,-0.2126,0.5133,0.8315,-0.2126,0.3536,0.9239,-0.1464,0.3536,0.9239,-0.1464,0.5133,0.8315,-0.2126,0.5449,0.8315,-0.1084,0.3536,0.9239,-0.1464,0.5449,0.8315,-0.1084,0.3753,0.9239,-0.0747,0.3753,0.9239,-0.0747,0.5449,0.8315,-0.1084,0.5556,0.8315,0.0,0.3753,0.9239,-0.0747,0.5556,0.8315,0.0,0.3827,0.9239,0.0,0.3827,0.9239,0.0,0.5556,0.8315,0.0,0.5449,0.8315,0.1084,0.3827,0.9239,0.0,0.5449,0.8315,0.1084,0.3753,0.9239,0.0747,0.3753,0.9239,0.0747,0.5449,0.8315,0.1084,0.5133,0.8315,0.2126,0.3753,0.9239,0.0747,0.5133,0.8315,0.2126,0.3536,0.9239,0.1464,0.3536,0.9239,0.1464,0.5133,0.8315,0.2126,0.4619,0.8315,0.3087,0.3536,0.9239,0.1464,0.4619,0.8315,0.3087,0.3182,0.9239,0.2126,0.3182,0.9239,0.2126,0.4619,0.8315,0.3087,0.3928,0.8315,0.3928,0.3182,0.9239,0.2126,0.3928,0.8315,0.3928,0.2706,0.9239,0.2706,0.2706,0.9239,0.2706,0.3928,0.8315,0.3928,0.3087,0.8315,0.4619,0.2706,0.9239,0.2706,0.3087,0.8315,0.4619,0.2126,0.9239,0.3182,0.2126,0.9239,0.3182,0.3087,0.8315,0.4619,0.2126,0.8315,0.5133,0.2126,0.9239,0.3182,0.2126,0.8315,0.5133,0.1464,0.9239,0.3536,0.1464,0.9239,0.3536,0.2126,0.8315,0.5133,0.1084,0.8315,0.5449,0.1464,0.9239,0.3536,0.1084,0.8315,0.5449,0.0747,0.9239,0.3753,0.0747,0.9239,0.3753,0.1084,0.8315,0.5449,0.0,0.8315,0.5556,0.0747,0.9239,0.3753,0.0,0.8315,0.5556,0.0,0.9239,0.3827,0.0,0.8315,0.5556,0.0,0.7071,0.7071,-0.1379,0.7071,0.6935,0.0,0.8315,0.5556,-0.1379,0.7071,0.6935,-0.1084,0.8315,0.5449,-0.1084,0.8315,0.5449,-0.1379,0.7071,0.6935,-0.2706,0.7071,0.6533,-0.1084,0.8315,0.5449,-0.2706,0.7071,0.6533,-0.2126,0.8315,0.5133,-0.2126,0.8315,0.5133,-0.2706,0.7071,0.6533,-0.3928,0.7071,0.5879,-0.2126,0.8315,0.5133,-0.3928,0.7071,0.5879,-0.3087,0.8315,0.4619,-0.3087,0.8315,0.4619,-0.3928,0.7071,0.5879,-0.5,0.7071,0.5,-0.3087,0.8315,0.4619,-0.5,0.7071,0.5,-0.3928,0.8315,0.3928,-0.3928,0.8315,0.3928,-0.5,0.7071,0.5,-0.5879,0.7071,0.3928,-0.3928,0.8315,0.3928,-0.5879,0.7071,0.3928,-0.4619,0.8315,0.3087,-0.4619,0.8315,0.3087,-0.5879,0.7071,0.3928,-0.6533,0.7071,0.2706,-0.4619,0.8315,0.3087,-0.6533,0.7071,0.2706,-0.5133,0.8315,0.2126,-0.5133,0.8315,0.2126,-0.6533,0.7071,0.2706,-0.6935,0.7071,0.1379,-0.5133,0.8315,0.2126,-0.6935,0.7071,0.1379,-0.5449,0.8315,0.1084,-0.5449,0.8315,0.1084,-0.6935,0.7071,0.1379,-0.7071,0.7071,0.0,-0.5449,0.8315,0.1084,-0.7071,0.7071,0.0,-0.5556,0.8315,0.0,-0.5556,0.8315,0.0,-0.7071,0.7071,0.0,-0.6935,0.7071,-0.1379,-0.5556,0.8315,0.0,-0.6935,0.7071,-0.1379,-0.5449,0.8315,-0.1084,-0.5449,0.8315,-0.1084,-0.6935,0.7071,-0.1379,-0.6533,0.7071,-0.2706,-0.5449,0.8315,-0.1084,-0.6533,0.7071,-0.2706,-0.5133,0.8315,-0.2126,-0.5133,0.8315,-0.2126,-0.6533,0.7071,-0.2706,-0.5879,0.7071,-0.3928,-0.5133,0.8315,-0.2126,-0.5879,0.7071,-0.3928,-0.4619,0.8315,-0.3087,-0.4619,0.8315,-0.3087,-0.5879,0.7071,-0.3928,-0.5,0.7071,-0.5,-0.4619,0.8315,-0.3087,-0.5,0.7071,-0.5,-0.3928,0.8315,-0.3928,-0.3928,0.8315,-0.3928,-0.5,0.7071,-0.5,-0.3928,0.7071,-0.5879,-0.3928,0.8315,-0.3928,-0.3928,0.7071,-0.5879,-0.3087,0.8315,-0.4619,-0.3087,0.8315,-0.4619,-0.3928,0.7071,-0.5879,-0.2706,0.7071,-0.6533,-0.3087,0.8315,-0.4619,-0.2706,0.7071,-0.6533,-0.2126,0.8315,-0.5133,-0.2126,0.8315,-0.5133,-0.2706,0.7071,-0.6533,-0.1379,0.7071,-0.6935,-0.2126,0.8315,-0.5133,-0.1379,0.7071,-0.6935,-0.1084,0.8315,-0.5449,-0.1084,0.8315,-0.5449,-0.1379,0.7071,-0.6935,0.0,0.7071,-0.7071,-0.1084,0.8315,-0.5449,0.0,0.7071,-0.7071,0.0,0.8315,-0.5556,0.0,0.8315,-0.5556,0.0,0.7071,-0.7071,0.138,0.7071,-0.6935,0.0,0.8315,-0.5556,0.138,0.7071,-0.6935,0.1084,0.8315,-0.5449,0.1084,0.8315,-0.5449,0.138,0.7071,-0.6935,0.2706,0.7071,-0.6533,0.1084,0.8315,-0.5449,0.2706,0.7071,-0.6533,0.2126,0.8315,-0.5133,0.2126,0.8315,-0.5133,0.2706,0.7071,-0.6533,0.3928,0.7071,-0.5879,0.2126,0.8315,-0.5133,0.3928,0.7071,-0.5879,0.3087,0.8315,-0.4619,0.3087,0.8315,-0.4619,0.3928,0.7071,-0.5879,0.5,0.7071,-0.5,0.3087,0.8315,-0.4619,0.5,0.7071,-0.5,0.3928,0.8315,-0.3928,0.3928,0.8315,-0.3928,0.5,0.7071,-0.5,0.5879,0.7071,-0.3928,0.3928,0.8315,-0.3928,0.5879,0.7071,-0.3928,0.4619,0.8315,-0.3087,0.4619,0.8315,-0.3087,0.5879,0.7071,-0.3928,0.6533,0.7071,-0.2706,0.4619,0.8315,-0.3087,0.6533,0.7071,-0.2706,0.5133,0.8315,-0.2126,0.5133,0.8315,-0.2126,0.6533,0.7071,-0.2706,0.6935,0.7071,-0.1379,0.5133,0.8315,-0.2126,0.6935,0.7071,-0.1379,0.5449,0.8315,-0.1084,0.5449,0.8315,-0.1084,0.6935,0.7071,-0.1379,0.7071,0.7071,0.0,0.5449,0.8315,-0.1084,0.7071,0.7071,0.0,0.5556,0.8315,0.0,0.5556,0.8315,0.0,0.7071,0.7071,0.0,0.6935,0.7071,0.138,0.5556,0.8315,0.0,0.6935,0.7071,0.138,0.5449,0.8315,0.1084,0.5449,0.8315,0.1084,0.6935,0.7071,0.138,0.6533,0.7071,0.2706,0.5449,0.8315,0.1084,0.6533,0.7071,0.2706,0.5133,0.8315,0.2126,0.5133,0.8315,0.2126,0.6533,0.7071,0.2706,0.5879,0.7071,0.3928,0.5133,0.8315,0.2126,0.5879,0.7071,0.3928,0.4619,0.8315,0.3087,0.4619,0.8315,0.3087,0.5879,0.7071,0.3928,0.5,0.7071,0.5,0.4619,0.8315,0.3087,0.5,0.7071,0.5,0.3928,0.8315,0.3928,0.3928,0.8315,0.3928,0.5,0.7071,0.5,0.3928,0.7071,0.5879,0.3928,0.8315,0.3928,0.3928,0.7071,0.5879,0.3087,0.8315,0.4619,0.3087,0.8315,0.4619,0.3928,0.7071,0.5879,0.2706,0.7071,0.6533,0.3087,0.8315,0.4619,0.2706,0.7071,0.6533,0.2126,0.8315,0.5133,0.2126,0.8315,0.5133,0.2706,0.7071,0.6533,0.1379,0.7071,0.6935,0.2126,0.8315,0.5133,0.1379,0.7071,0.6935,0.1084,0.8315,0.5449,0.1084,0.8315,0.5449,0.1379,0.7071,0.6935,0.0,0.7071,0.7071,0.1084,0.8315,0.5449,0.0,0.7071,0.7071,0.0,0.8315,0.5556,0.0,0.7071,0.7071,0.0,0.5556,0.8315,-0.1622,0.5556,0.8155,0.0,0.7071,0.7071,-0.1622,0.5556,0.8155,-0.1379,0.7071,0.6935,-0.1379,0.7071,0.6935,-0.1622,0.5556,0.8155,-0.3182,0.5556,0.7682,-0.1379,0.7071,0.6935,-0.3182,0.5556,0.7682,-0.2706,0.7071,0.6533,-0.2706,0.7071,0.6533,-0.3182,0.5556,0.7682,-0.4619,0.5556,0.6913,-0.2706,0.7071,0.6533,-0.4619,0.5556,0.6913,-0.3928,0.7071,0.5879,-0.3928,0.7071,0.5879,-0.4619,0.5556,0.6913,-0.5879,0.5556,0.5879,-0.3928,0.7071,0.5879,-0.5879,0.5556,0.5879,-0.5,0.7071,0.5,-0.5,0.7071,0.5,-0.5879,0.5556,0.5879,-0.6913,0.5556,0.4619,-0.5,0.7071,0.5,-0.6913,0.5556,0.4619,-0.5879,0.7071,0.3928,-0.5879,0.7071,0.3928,-0.6913,0.5556,0.4619,-0.7682,0.5556,0.3182,-0.5879,0.7071,0.3928,-0.7682,0.5556,0.3182,-0.6533,0.7071,0.2706,-0.6533,0.7071,0.2706,-0.7682,0.5556,0.3182,-0.8155,0.5556,0.1622,-0.6533,0.7071,0.2706,-0.8155,0.5556,0.1622,-0.6935,0.7071,0.1379,-0.6935,0.7071,0.1379,-0.8155,0.5556,0.1622,-0.8315,0.5556,0.0,-0.6935,0.7071,0.1379,-0.8315,0.5556,0.0,-0.7071,0.7071,0.0,-0.7071,0.7071,0.0,-0.8315,0.5556,0.0,-0.8155,0.5556,-0.1622,-0.7071,0.7071,0.0,-0.8155,0.5556,-0.1622,-0.6935,0.7071,-0.1379,-0.6935,0.7071,-0.1379,-0.8155,0.5556,-0.1622,-0.7682,0.5556,-0.3182,-0.6935,0.7071,-0.1379,-0.7682,0.5556,-0.3182,-0.6533,0.7071,-0.2706,-0.6533,0.7071,-0.2706,-0.7682,0.5556,-0.3182,-0.6913,0.5556,-0.4619,-0.6533,0.7071,-0.2706,-0.6913,0.5556,-0.4619,-0.5879,0.7071,-0.3928,-0.5879,0.7071,-0.3928,-0.6913,0.5556,-0.4619,-0.5879,0.5556,-0.5879,-0.5879,0.7071,-0.3928,-0.5879,0.5556,-0.5879,-0.5,0.7071,-0.5,-0.5,0.7071,-0.5,-0.5879,0.5556,-0.5879,-0.4619,0.5556,-0.6913,-0.5,0.7071,-0.5,-0.4619,0.5556,-0.6913,-0.3928,0.7071,-0.5879,-0.3928,0.7071,-0.5879,-0.4619,0.5556,-0.6913,-0.3182,0.5556,-0.7682,-0.3928,0.7071,-0.5879,-0.3182,0.5556,-0.7682,-0.2706,0.7071,-0.6533,-0.2706,0.7071,-0.6533,-0.3182,0.5556,-0.7682,-0.1622,0.5556,-0.8155,-0.2706,0.7071,-0.6533,-0.1622,0.5556,-0.8155,-0.1379,0.7071,-0.6935,-0.1379,0.7071,-0.6935,-0.1622,0.5556,-0.8155,0.0,0.5556,-0.8315,-0.1379,0.7071,-0.6935,0.0,0.5556,-0.8315,0.0,0.7071,-0.7071,0.0,0.7071,-0.7071,0.0,0.5556,-0.8315,0.1622,0.5556,-0.8155,0.0,0.7071,-0.7071,0.1622,0.5556,-0.8155,0.138,0.7071,-0.6935,0.138,0.7071,-0.6935,0.1622,0.5556,-0.8155,0.3182,0.5556,-0.7682,0.138,0.7071,-0.6935,0.3182,0.5556,-0.7682,0.2706,0.7071,-0.6533,0.2706,0.7071,-0.6533,0.3182,0.5556,-0.7682,0.4619,0.5556,-0.6913,0.2706,0.7071,-0.6533,0.4619,0.5556,-0.6913,0.3928,0.7071,-0.5879,0.3928,0.7071,-0.5879,0.4619,0.5556,-0.6913,0.5879,0.5556,-0.5879,0.3928,0.7071,-0.5879,0.5879,0.5556,-0.5879,0.5,0.7071,-0.5,0.5,0.7071,-0.5,0.5879,0.5556,-0.5879,0.6913,0.5556,-0.4619,0.5,0.7071,-0.5,0.6913,0.5556,-0.4619,0.5879,0.7071,-0.3928,0.5879,0.7071,-0.3928,0.6913,0.5556,-0.4619,0.7682,0.5556,-0.3182,0.5879,0.7071,-0.3928,0.7682,0.5556,-0.3182,0.6533,0.7071,-0.2706,0.6533,0.7071,-0.2706,0.7682,0.5556,-0.3182,0.8155,0.5556,-0.1622,0.6533,0.7071,-0.2706,0.8155,0.5556,-0.1622,0.6935,0.7071,-0.1379,0.6935,0.7071,-0.1379,0.8155,0.5556,-0.1622,0.8315,0.5556,0.0,0.6935,0.7071,-0.1379,0.8315,0.5556,0.0,0.7071,0.7071,0.0,0.7071,0.7071,0.0,0.8315,0.5556,0.0,0.8155,0.5556,0.1622,0.7071,0.7071,0.0,0.8155,0.5556,0.1622,0.6935,0.7071,0.138,0.6935,0.7071,0.138,0.8155,0.5556,0.1622,0.7682,0.5556,0.3182,0.6935,0.7071,0.138,0.7682,0.5556,0.3182,0.6533,0.7071,0.2706,0.6533,0.7071,0.2706,0.7682,0.5556,0.3182,0.6913,0.5556,0.4619,0.6533,0.7071,0.2706,0.6913,0.5556,0.4619,0.5879,0.7071,0.3928,0.5879,0.7071,0.3928,0.6913,0.5556,0.4619,0.5879,0.5556,0.5879,0.5879,0.7071,0.3928,0.5879,0.5556,0.5879,0.5,0.7071,0.5,0.5,0.7071,0.5,0.5879,0.5556,0.5879,0.4619,0.5556,0.6913,0.5,0.7071,0.5,0.4619,0.5556,0.6913,0.3928,0.7071,0.5879,0.3928,0.7071,0.5879,0.4619,0.5556,0.6913,0.3182,0.5556,0.7682,0.3928,0.7071,0.5879,0.3182,0.5556,0.7682,0.2706,0.7071,0.6533,0.2706,0.7071,0.6533,0.3182,0.5556,0.7682,0.1622,0.5556,0.8155,0.2706,0.7071,0.6533,0.1622,0.5556,0.8155,0.1379,0.7071,0.6935,0.1379,0.7071,0.6935,0.1622,0.5556,0.8155,0.0,0.5556,0.8315,0.1379,0.7071,0.6935,0.0,0.5556,0.8315,0.0,0.7071,0.7071,0.0,0.5556,0.8315,0.0,0.3827,0.9239,-0.1802,0.3827,0.9061,0.0,0.5556,0.8315,-0.1802,0.3827,0.9061,-0.1622,0.5556,0.8155,-0.1622,0.5556,0.8155,-0.1802,0.3827,0.9061,-0.3536,0.3827,0.8536,-0.1622,0.5556,0.8155,-0.3536,0.3827,0.8536,-0.3182,0.5556,0.7682,-0.3182,0.5556,0.7682,-0.3536,0.3827,0.8536,-0.5133,0.3827,0.7682,-0.3182,0.5556,0.7682,-0.5133,0.3827,0.7682,-0.4619,0.5556,0.6913,-0.4619,0.5556,0.6913,-0.5133,0.3827,0.7682,-0.6533,0.3827,0.6533,-0.4619,0.5556,0.6913,-0.6533,0.3827,0.6533,-0.5879,0.5556,0.5879,-0.5879,0.5556,0.5879,-0.6533,0.3827,0.6533,-0.7682,0.3827,0.5133,-0.5879,0.5556,0.5879,-0.7682,0.3827,0.5133,-0.6913,0.5556,0.4619,-0.6913,0.5556,0.4619,-0.7682,0.3827,0.5133,-0.8536,0.3827,0.3536,-0.6913,0.5556,0.4619,-0.8536,0.3827,0.3536,-0.7682,0.5556,0.3182,-0.7682,0.5556,0.3182,-0.8536,0.3827,0.3536,-0.9061,0.3827,0.1802,-0.7682,0.5556,0.3182,-0.9061,0.3827,0.1802,-0.8155,0.5556,0.1622,-0.8155,0.5556,0.1622,-0.9061,0.3827,0.1802,-0.9239,0.3827,0.0,-0.8155,0.5556,0.1622,-0.9239,0.3827,0.0,-0.8315,0.5556,0.0,-0.8315,0.5556,0.0,-0.9239,0.3827,0.0,-0.9061,0.3827,-0.1802,-0.8315,0.5556,0.0,-0.9061,0.3827,-0.1802,-0.8155,0.5556,-0.1622,-0.8155,0.5556,-0.1622,-0.9061,0.3827,-0.1802,-0.8536,0.3827,-0.3536,-0.8155,0.5556,-0.1622,-0.8536,0.3827,-0.3536,-0.7682,0.5556,-0.3182,-0.7682,0.5556,-0.3182,-0.8536,0.3827,-0.3536,-0.7682,0.3827,-0.5133,-0.7682,0.5556,-0.3182,-0.7682,0.3827,-0.5133,-0.6913,0.5556,-0.4619,-0.6913,0.5556,-0.4619,-0.7682,0.3827,-0.5133,-0.6533,0.3827,-0.6533,-0.6913,0.5556,-0.4619,-0.6533,0.3827,-0.6533,-0.5879,0.5556,-0.5879,-0.5879,0.5556,-0.5879,-0.6533,0.3827,-0.6533,-0.5133,0.3827,-0.7682,-0.5879,0.5556,-0.5879,-0.5133,0.3827,-0.7682,-0.4619,0.5556,-0.6913,-0.4619,0.5556,-0.6913,-0.5133,0.3827,-0.7682,-0.3536,0.3827,-0.8536,-0.4619,0.5556,-0.6913,-0.3536,0.3827,-0.8536,-0.3182,0.5556,-0.7682,-0.3182,0.5556,-0.7682,-0.3536,0.3827,-0.8536,-0.1802,0.3827,-0.9061,-0.3182,0.5556,-0.7682,-0.1802,0.3827,-0.9061,-0.1622,0.5556,-0.8155,-0.1622,0.5556,-0.8155,-0.1802,0.3827,-0.9061,0.0,0.3827,-0.9239,-0.1622,0.5556,-0.8155,0.0,0.3827,-0.9239,0.0,0.5556,-0.8315,0.0,0.5556,-0.8315,0.0,0.3827,-0.9239,0.1802,0.3827,-0.9061,0.0,0.5556,-0.8315,0.1802,0.3827,-0.9061,0.1622,0.5556,-0.8155,0.1622,0.5556,-0.8155,0.1802,0.3827,-0.9061,0.3536,0.3827,-0.8536,0.1622,0.5556,-0.8155,0.3536,0.3827,-0.8536,0.3182,0.5556,-0.7682,0.3182,0.5556,-0.7682,0.3536,0.3827,-0.8536,0.5133,0.3827,-0.7682,0.3182,0.5556,-0.7682,0.5133,0.3827,-0.7682,0.4619,0.5556,-0.6913,0.4619,0.5556,-0.6913,0.5133,0.3827,-0.7682,0.6533,0.3827,-0.6533,0.4619,0.5556,-0.6913,0.6533,0.3827,-0.6533,0.5879,0.5556,-0.5879,0.5879,0.5556,-0.5879,0.6533,0.3827,-0.6533,0.7682,0.3827,-0.5133,0.5879,0.5556,-0.5879,0.7682,0.3827,-0.5133,0.6913,0.5556,-0.4619,0.6913,0.5556,-0.4619,0.7682,0.3827,-0.5133,0.8536,0.3827,-0.3536,0.6913,0.5556,-0.4619,0.8536,0.3827,-0.3536,0.7682,0.5556,-0.3182,0.7682,0.5556,-0.3182,0.8536,0.3827,-0.3536,0.9061,0.3827,-0.1802,0.7682,0.5556,-0.3182,0.9061,0.3827,-0.1802,0.8155,0.5556,-0.1622,0.8155,0.5556,-0.1622,0.9061,0.3827,-0.1802,0.9239,0.3827,0.0,0.8155,0.5556,-0.1622,0.9239,0.3827,0.0,0.8315,0.5556,0.0,0.8315,0.5556,0.0,0.9239,0.3827,0.0,0.9061,0.3827,0.1802,0.8315,0.5556,0.0,0.9061,0.3827,0.1802,0.8155,0.5556,0.1622,0.8155,0.5556,0.1622,0.9061,0.3827,0.1802,0.8536,0.3827,0.3536,0.8155,0.5556,0.1622,0.8536,0.3827,0.3536,0.7682,0.5556,0.3182,0.7682,0.5556,0.3182,0.8536,0.3827,0.3536,0.7682,0.3827,0.5133,0.7682,0.5556,0.3182,0.7682,0.3827,0.5133,0.6913,0.5556,0.4619,0.6913,0.5556,0.4619,0.7682,0.3827,0.5133,0.6533,0.3827,0.6533,0.6913,0.5556,0.4619,0.6533,0.3827,0.6533,0.5879,0.5556,0.5879,0.5879,0.5556,0.5879,0.6533,0.3827,0.6533,0.5133,0.3827,0.7682,0.5879,0.5556,0.5879,0.5133,0.3827,0.7682,0.4619,0.5556,0.6913,0.4619,0.5556,0.6913,0.5133,0.3827,0.7682,0.3536,0.3827,0.8536,0.4619,0.5556,0.6913,0.3536,0.3827,0.8536,0.3182,0.5556,0.7682,0.3182,0.5556,0.7682,0.3536,0.3827,0.8536,0.1802,0.3827,0.9061,0.3182,0.5556,0.7682,0.1802,0.3827,0.9061,0.1622,0.5556,0.8155,0.1622,0.5556,0.8155,0.1802,0.3827,0.9061,0.0,0.3827,0.9239,0.1622,0.5556,0.8155,0.0,0.3827,0.9239,0.0,0.5556,0.8315,0.0,0.3827,0.9239,0.0,0.1951,0.9808,-0.1913,0.1951,0.9619,0.0,0.3827,0.9239,-0.1913,0.1951,0.9619,-0.1802,0.3827,0.9061,-0.1802,0.3827,0.9061,-0.1913,0.1951,0.9619,-0.3753,0.1951,0.9061,-0.1802,0.3827,0.9061,-0.3753,0.1951,0.9061,-0.3536,0.3827,0.8536,-0.3536,0.3827,0.8536,-0.3753,0.1951,0.9061,-0.5449,0.1951,0.8155,-0.3536,0.3827,0.8536,-0.5449,0.1951,0.8155,-0.5133,0.3827,0.7682,-0.5133,0.3827,0.7682,-0.5449,0.1951,0.8155,-0.6935,0.1951,0.6935,-0.5133,0.3827,0.7682,-0.6935,0.1951,0.6935,-0.6533,0.3827,0.6533,-0.6533,0.3827,0.6533,-0.6935,0.1951,0.6935,-0.8155,0.1951,0.5449,-0.6533,0.3827,0.6533,-0.8155,0.1951,0.5449,-0.7682,0.3827,0.5133,-0.7682,0.3827,0.5133,-0.8155,0.1951,0.5449,-0.9061,0.1951,0.3753,-0.7682,0.3827,0.5133,-0.9061,0.1951,0.3753,-0.8536,0.3827,0.3536,-0.8536,0.3827,0.3536,-0.9061,0.1951,0.3753,-0.9619,0.1951,0.1913,-0.8536,0.3827,0.3536,-0.9619,0.1951,0.1913,-0.9061,0.3827,0.1802,-0.9061,0.3827,0.1802,-0.9619,0.1951,0.1913,-0.9808,0.1951,0.0,-0.9061,0.3827,0.1802,-0.9808,0.1951,0.0,-0.9239,0.3827,0.0,-0.9239,0.3827,0.0,-0.9808,0.1951,0.0,-0.9619,0.1951,-0.1913,-0.9239,0.3827,0.0,-0.9619,0.1951,-0.1913,-0.9061,0.3827,-0.1802,-0.9061,0.3827,-0.1802,-0.9619,0.1951,-0.1913,-0.9061,0.1951,-0.3753,-0.9061,0.3827,-0.1802,-0.9061,0.1951,-0.3753,-0.8536,0.3827,-0.3536,-0.8536,0.3827,-0.3536,-0.9061,0.1951,-0.3753,-0.8155,0.1951,-0.5449,-0.8536,0.3827,-0.3536,-0.8155,0.1951,-0.5449,-0.7682,0.3827,-0.5133,-0.7682,0.3827,-0.5133,-0.8155,0.1951,-0.5449,-0.6935,0.1951,-0.6935,-0.7682,0.3827,-0.5133,-0.6935,0.1951,-0.6935,-0.6533,0.3827,-0.6533,-0.6533,0.3827,-0.6533,-0.6935,0.1951,-0.6935,-0.5449,0.1951,-0.8155,-0.6533,0.3827,-0.6533,-0.5449,0.1951,-0.8155,-0.5133,0.3827,-0.7682,-0.5133,0.3827,-0.7682,-0.5449,0.1951,-0.8155,-0.3753,0.1951,-0.9061,-0.5133,0.3827,-0.7682,-0.3753,0.1951,-0.9061,-0.3536,0.3827,-0.8536,-0.3536,0.3827,-0.8536,-0.3753,0.1951,-0.9061,-0.1913,0.1951,-0.9619,-0.3536,0.3827,-0.8536,-0.1913,0.1951,-0.9619,-0.1802,0.3827,-0.9061,-0.1802,0.3827,-0.9061,-0.1913,0.1951,-0.9619,0.0,0.1951,-0.9808,-0.1802,0.3827,-0.9061,0.0,0.1951,-0.9808,0.0,0.3827,-0.9239,0.0,0.3827,-0.9239,0.0,0.1951,-0.9808,0.1913,0.1951,-0.9619,0.0,0.3827,-0.9239,0.1913,0.1951,-0.9619,0.1802,0.3827,-0.9061,0.1802,0.3827,-0.9061,0.1913,0.1951,-0.9619,0.3753,0.1951,-0.9061,0.1802,0.3827,-0.9061,0.3753,0.1951,-0.9061,0.3536,0.3827,-0.8536,0.3536,0.3827,-0.8536,0.3753,0.1951,-0.9061,0.5449,0.1951,-0.8155,0.3536,0.3827,-0.8536,0.5449,0.1951,-0.8155,0.5133,0.3827,-0.7682,0.5133,0.3827,-0.7682,0.5449,0.1951,-0.8155,0.6935,0.1951,-0.6935,0.5133,0.3827,-0.7682,0.6935,0.1951,-0.6935,0.6533,0.3827,-0.6533,0.6533,0.3827,-0.6533,0.6935,0.1951,-0.6935,0.8155,0.1951,-0.5449,0.6533,0.3827,-0.6533,0.8155,0.1951,-0.5449,0.7682,0.3827,-0.5133,0.7682,0.3827,-0.5133,0.8155,0.1951,-0.5449,0.9061,0.1951,-0.3753,0.7682,0.3827,-0.5133,0.9061,0.1951,-0.3753,0.8536,0.3827,-0.3536,0.8536,0.3827,-0.3536,0.9061,0.1951,-0.3753,0.9619,0.1951,-0.1913,0.8536,0.3827,-0.3536,0.9619,0.1951,-0.1913,0.9061,0.3827,-0.1802,0.9061,0.3827,-0.1802,0.9619,0.1951,-0.1913,0.9808,0.1951,0.0,0.9061,0.3827,-0.1802,0.9808,0.1951,0.0,0.9239,0.3827,0.0,0.9239,0.3827,0.0,0.9808,0.1951,0.0,0.9619,0.1951,0.1913,0.9239,0.3827,0.0,0.9619,0.1951,0.1913,0.9061,0.3827,0.1802,0.9061,0.3827,0.1802,0.9619,0.1951,0.1913,0.9061,0.1951,0.3753,0.9061,0.3827,0.1802,0.9061,0.1951,0.3753,0.8536,0.3827,0.3536,0.8536,0.3827,0.3536,0.9061,0.1951,0.3753,0.8155,0.1951,0.5449,0.8536,0.3827,0.3536,0.8155,0.1951,0.5449,0.7682,0.3827,0.5133,0.7682,0.3827,0.5133,0.8155,0.1951,0.5449,0.6935,0.1951,0.6935,0.7682,0.3827,0.5133,0.6935,0.1951,0.6935,0.6533,0.3827,0.6533,0.6533,0.3827,0.6533,0.6935,0.1951,0.6935,0.5449,0.1951,0.8155,0.6533,0.3827,0.6533,0.5449,0.1951,0.8155,0.5133,0.3827,0.7682,0.5133,0.3827,0.7682,0.5449,0.1951,0.8155,0.3753,0.1951,0.9061,0.5133,0.3827,0.7682,0.3753,0.1951,0.9061,0.3536,0.3827,0.8536,0.3536,0.3827,0.8536,0.3753,0.1951,0.9061,0.1913,0.1951,0.9619,0.3536,0.3827,0.8536,0.1913,0.1951,0.9619,0.1802,0.3827,0.9061,0.1802,0.3827,0.9061,0.1913,0.1951,0.9619,0.0,0.1951,0.9808,0.1802,0.3827,0.9061,0.0,0.1951,0.9808,0.0,0.3827,0.9239,0.0,0.1951,0.9808,0.0,0.0,1.0,-0.1951,0.0,0.9808,0.0,0.1951,0.9808,-0.1951,0.0,0.9808,-0.1913,0.1951,0.9619,-0.1913,0.1951,0.9619,-0.1951,0.0,0.9808,-0.3827,0.0,0.9239,-0.1913,0.1951,0.9619,-0.3827,0.0,0.9239,-0.3753,0.1951,0.9061,-0.3753,0.1951,0.9061,-0.3827,0.0,0.9239,-0.5556,0.0,0.8315,-0.3753,0.1951,0.9061,-0.5556,0.0,0.8315,-0.5449,0.1951,0.8155,-0.5449,0.1951,0.8155,-0.5556,0.0,0.8315,-0.7071,0.0,0.7071,-0.5449,0.1951,0.8155,-0.7071,0.0,0.7071,-0.6935,0.1951,0.6935,-0.6935,0.1951,0.6935,-0.7071,0.0,0.7071,-0.8315,0.0,0.5556,-0.6935,0.1951,0.6935,-0.8315,0.0,0.5556,-0.8155,0.1951,0.5449,-0.8155,0.1951,0.5449,-0.8315,0.0,0.5556,-0.9239,0.0,0.3827,-0.8155,0.1951,0.5449,-0.9239,0.0,0.3827,-0.9061,0.1951,0.3753,-0.9061,0.1951,0.3753,-0.9239,0.0,0.3827,-0.9808,0.0,0.1951,-0.9061,0.1951,0.3753,-0.9808,0.0,0.1951,-0.9619,0.1951,0.1913,-0.9619,0.1951,0.1913,-0.9808,0.0,0.1951,-1.0,0.0,0.0,-0.9619,0.1951,0.1913,-1.0,0.0,0.0,-0.9808,0.1951,0.0,-0.9808,0.1951,0.0,-1.0,0.0,0.0,-0.9808,0.0,-0.1951,-0.9808,0.1951,0.0,-0.9808,0.0,-0.1951,-0.9619,0.1951,-0.1913,-0.9619,0.1951,-0.1913,-0.9808,0.0,-0.1951,-0.9239,0.0,-0.3827,-0.9619,0.1951,-0.1913,-0.9239,0.0,-0.3827,-0.9061,0.1951,-0.3753,-0.9061,0.1951,-0.3753,-0.9239,0.0,-0.3827,-0.8315,0.0,-0.5556,-0.9061,0.1951,-0.3753,-0.8315,0.0,-0.5556,-0.8155,0.1951,-0.5449,-0.8155,0.1951,-0.5449,-0.8315,0.0,-0.5556,-0.7071,0.0,-0.7071,-0.8155,0.1951,-0.5449,-0.7071,0.0,-0.7071,-0.6935,0.1951,-0.6935,-0.6935,0.1951,-0.6935,-0.7071,0.0,-0.7071,-0.5556,0.0,-0.8315,-0.6935,0.1951,-0.6935,-0.5556,0.0,-0.8315,-0.5449,0.1951,-0.8155,-0.5449,0.1951,-0.8155,-0.5556,0.0,-0.8315,-0.3827,0.0,-0.9239,-0.5449,0.1951,-0.8155,-0.3827,0.0,-0.9239,-0.3753,0.1951,-0.9061,-0.3753,0.1951,-0.9061,-0.3827,0.0,-0.9239,-0.1951,0.0,-0.9808,-0.3753,0.1951,-0.9061,-0.1951,0.0,-0.9808,-0.1913,0.1951,-0.9619,-0.1913,0.1951,-0.9619,-0.1951,0.0,-0.9808,0.0,0.0,-1.0,-0.1913,0.1951,-0.9619,0.0,0.0,-1.0,0.0,0.1951,-0.9808,0.0,0.1951,-0.9808,0.0,0.0,-1.0,0.1951,0.0,-0.9808,0.0,0.1951,-0.9808,0.1951,0.0,-0.9808,0.1913,0.1951,-0.9619,0.1913,0.1951,-0.9619,0.1951,0.0,-0.9808,0.3827,0.0,-0.9239,0.1913,0.1951,-0.9619,0.3827,0.0,-0.9239,0.3753,0.1951,-0.9061,0.3753,0.1951,-0.9061,0.3827,0.0,-0.9239,0.5556,0.0,-0.8315,0.3753,0.1951,-0.9061,0.5556,0.0,-0.8315,0.5449,0.1951,-0.8155,0.5449,0.1951,-0.8155,0.5556,0.0,-0.8315,0.7071,0.0,-0.7071,0.5449,0.1951,-0.8155,0.7071,0.0,-0.7071,0.6935,0.1951,-0.6935,0.6935,0.1951,-0.6935,0.7071,0.0,-0.7071,0.8315,0.0,-0.5556,0.6935,0.1951,-0.6935,0.8315,0.0,-0.5556,0.8155,0.1951,-0.5449,0.8155,0.1951,-0.5449,0.8315,0.0,-0.5556,0.9239,0.0,-0.3827,0.8155,0.1951,-0.5449,0.9239,0.0,-0.3827,0.9061,0.1951,-0.3753,0.9061,0.1951,-0.3753,0.9239,0.0,-0.3827,0.9808,0.0,-0.1951,0.9061,0.1951,-0.3753,0.9808,0.0,-0.1951,0.9619,0.1951,-0.1913,0.9619,0.1951,-0.1913,0.9808,0.0,-0.1951,1.0,0.0,0.0,0.9619,0.1951,-0.1913,1.0,0.0,0.0,0.9808,0.1951,0.0,0.9808,0.1951,0.0,1.0,0.0,0.0,0.9808,0.0,0.1951,0.9808,0.1951,0.0,0.9808,0.0,0.1951,0.9619,0.1951,0.1913,0.9619,0.1951,0.1913,0.9808,0.0,0.1951,0.9239,0.0,0.3827,0.9619,0.1951,0.1913,0.9239,0.0,0.3827,0.9061,0.1951,0.3753,0.9061,0.1951,0.3753,0.9239,0.0,0.3827,0.8315,0.0,0.5556,0.9061,0.1951,0.3753,0.8315,0.0,0.5556,0.8155,0.1951,0.5449,0.8155,0.1951,0.5449,0.8315,0.0,0.5556,0.7071,0.0,0.7071,0.8155,0.1951,0.5449,0.7071,0.0,0.7071,0.6935,0.1951,0.6935,0.6935,0.1951,0.6935,0.7071,0.0,0.7071,0.5556,0.0,0.8315,0.6935,0.1951,0.6935,0.5556,0.0,0.8315,0.5449,0.1951,0.8155,0.5449,0.1951,0.8155,0.5556,0.0,0.8315,0.3827,0.0,0.9239,0.5449,0.1951,0.8155,0.3827,0.0,0.9239,0.3753,0.1951,0.9061,0.3753,0.1951,0.9061,0.3827,0.0,0.9239,0.1951,0.0,0.9808,0.3753,0.1951,0.9061,0.1951,0.0,0.9808,0.1913,0.1951,0.9619,0.1913,0.1951,0.9619,0.1951,0.0,0.9808,0.0,0.0,1.0,0.1913,0.1951,0.9619,0.0,0.0,1.0,0.0,0.1951,0.9808,0.0,0.0,1.0,0.0,-0.1951,0.9808,-0.1913,-0.1951,0.9619,0.0,0.0,1.0,-0.1913,-0.1951,0.9619,-0.1951,0.0,0.9808,-0.1951,0.0,0.9808,-0.1913,-0.1951,0.9619,-0.3753,-0.1951,0.9061,-0.1951,0.0,0.9808,-0.3753,-0.1951,0.9061,-0.3827,0.0,0.9239,-0.3827,0.0,0.9239,-0.3753,-0.1951,0.9061,-0.5449,-0.1951,0.8155,-0.3827,0.0,0.9239,-0.5449,-0.1951,0.8155,-0.5556,0.0,0.8315,-0.5556,0.0,0.8315,-0.5449,-0.1951,0.8155,-0.6935,-0.1951,0.6935,-0.5556,0.0,0.8315,-0.6935,-0.1951,0.6935,-0.7071,0.0,0.7071,-0.7071,0.0,0.7071,-0.6935,-0.1951,0.6935,-0.8155,-0.1951,0.5449,-0.7071,0.0,0.7071,-0.8155,-0.1951,0.5449,-0.8315,0.0,0.5556,-0.8315,0.0,0.5556,-0.8155,-0.1951,0.5449,-0.9061,-0.1951,0.3753,-0.8315,0.0,0.5556,-0.9061,-0.1951,0.3753,-0.9239,0.0,0.3827,-0.9239,0.0,0.3827,-0.9061,-0.1951,0.3753,-0.9619,-0.1951,0.1913,-0.9239,0.0,0.3827,-0.9619,-0.1951,0.1913,-0.9808,0.0,0.1951,-0.9808,0.0,0.1951,-0.9619,-0.1951,0.1913,-0.9808,-0.1951,0.0,-0.9808,0.0,0.1951,-0.9808,-0.1951,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-0.9808,-0.1951,0.0,-0.9619,-0.1951,-0.1913,-1.0,0.0,0.0,-0.9619,-0.1951,-0.1913,-0.9808,0.0,-0.1951,-0.9808,0.0,-0.1951,-0.9619,-0.1951,-0.1913,-0.9061,-0.1951,-0.3753,-0.9808,0.0,-0.1951,-0.9061,-0.1951,-0.3753,-0.9239,0.0,-0.3827,-0.9239,0.0,-0.3827,-0.9061,-0.1951,-0.3753,-0.8155,-0.1951,-0.5449,-0.9239,0.0,-0.3827,-0.8155,-0.1951,-0.5449,-0.8315,0.0,-0.5556,-0.8315,0.0,-0.5556,-0.8155,-0.1951,-0.5449,-0.6935,-0.1951,-0.6935,-0.8315,0.0,-0.5556,-0.6935,-0.1951,-0.6935,-0.7071,0.0,-0.7071,-0.7071,0.0,-0.7071,-0.6935,-0.1951,-0.6935,-0.5449,-0.1951,-0.8155,-0.7071,0.0,-0.7071,-0.5449,-0.1951,-0.8155,-0.5556,0.0,-0.8315,-0.5556,0.0,-0.8315,-0.5449,-0.1951,-0.8155,-0.3753,-0.1951,-0.9061,-0.5556,0.0,-0.8315,-0.3753,-0.1951,-0.9061,-0.3827,0.0,-0.9239,-0.3827,0.0,-0.9239,-0.3753,-0.1951,-0.9061,-0.1913,-0.1951,-0.9619,-0.3827,0.0,-0.9239,-0.1913,-0.1951,-0.9619,-0.1951,0.0,-0.9808,-0.1951,0.0,-0.9808,-0.1913,-0.1951,-0.9619,0.0,-0.1951,-0.9808,-0.1951,0.0,-0.9808,0.0,-0.1951,-0.9808,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,-0.1951,-0.9808,0.1913,-0.1951,-0.9619,0.0,0.0,-1.0,0.1913,-0.1951,-0.9619,0.1951,0.0,-0.9808,0.1951,0.0,-0.9808,0.1913,-0.1951,-0.9619,0.3753,-0.1951,-0.9061,0.1951,0.0,-0.9808,0.3753,-0.1951,-0.9061,0.3827,0.0,-0.9239,0.3827,0.0,-0.9239,0.3753,-0.1951,-0.9061,0.5449,-0.1951,-0.8155,0.3827,0.0,-0.9239,0.5449,-0.1951,-0.8155,0.5556,0.0,-0.8315,0.5556,0.0,-0.8315,0.5449,-0.1951,-0.8155,0.6935,-0.1951,-0.6935,0.5556,0.0,-0.8315,0.6935,-0.1951,-0.6935,0.7071,0.0,-0.7071,0.7071,0.0,-0.7071,0.6935,-0.1951,-0.6935,0.8155,-0.1951,-0.5449,0.7071,0.0,-0.7071,0.8155,-0.1951,-0.5449,0.8315,0.0,-0.5556,0.8315,0.0,-0.5556,0.8155,-0.1951,-0.5449,0.9061,-0.1951,-0.3753,0.8315,0.0,-0.5556,0.9061,-0.1951,-0.3753,0.9239,0.0,-0.3827,0.9239,0.0,-0.3827,0.9061,-0.1951,-0.3753,0.9619,-0.1951,-0.1913,0.9239,0.0,-0.3827,0.9619,-0.1951,-0.1913,0.9808,0.0,-0.1951,0.9808,0.0,-0.1951,0.9619,-0.1951,-0.1913,0.9808,-0.1951,0.0,0.9808,0.0,-0.1951,0.9808,-0.1951,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.9808,-0.1951,0.0,0.9619,-0.1951,0.1913,1.0,0.0,0.0,0.9619,-0.1951,0.1913,0.9808,0.0,0.1951,0.9808,0.0,0.1951,0.9619,-0.1951,0.1913,0.9061,-0.1951,0.3753,0.9808,0.0,0.1951,0.9061,-0.1951,0.3753,0.9239,0.0,0.3827,0.9239,0.0,0.3827,0.9061,-0.1951,0.3753,0.8155,-0.1951,0.5449,0.9239,0.0,0.3827,0.8155,-0.1951,0.5449,0.8315,0.0,0.5556,0.8315,0.0,0.5556,0.8155,-0.1951,0.5449,0.6935,-0.1951,0.6935,0.8315,0.0,0.5556,0.6935,-0.1951,0.6935,0.7071,0.0,0.7071,0.7071,0.0,0.7071,0.6935,-0.1951,0.6935,0.5449,-0.1951,0.8155,0.7071,0.0,0.7071,0.5449,-0.1951,0.8155,0.5556,0.0,0.8315,0.5556,0.0,0.8315,0.5449,-0.1951,0.8155,0.3753,-0.1951,0.9061,0.5556,0.0,0.8315,0.3753,-0.1951,0.9061,0.3827,0.0,0.9239,0.3827,0.0,0.9239,0.3753,-0.1951,0.9061,0.1913,-0.1951,0.9619,0.3827,0.0,0.9239,0.1913,-0.1951,0.9619,0.1951,0.0,0.9808,0.1951,0.0,0.9808,0.1913,-0.1951,0.9619,0.0,-0.1951,0.9808,0.1951,0.0,0.9808,0.0,-0.1951,0.9808,0.0,0.0,1.0,0.0,-0.1951,0.9808,0.0,-0.3827,0.9239,-0.1802,-0.3827,0.9061,0.0,-0.1951,0.9808,-0.1802,-0.3827,0.9061,-0.1913,-0.1951,0.9619,-0.1913,-0.1951,0.9619,-0.1802,-0.3827,0.9061,-0.3536,-0.3827,0.8536,-0.1913,-0.1951,0.9619,-0.3536,-0.3827,0.8536,-0.3753,-0.1951,0.9061,-0.3753,-0.1951,0.9061,-0.3536,-0.3827,0.8536,-0.5133,-0.3827,0.7682,-0.3753,-0.1951,0.9061,-0.5133,-0.3827,0.7682,-0.5449,-0.1951,0.8155,-0.5449,-0.1951,0.8155,-0.5133,-0.3827,0.7682,-0.6533,-0.3827,0.6533,-0.5449,-0.1951,0.8155,-0.6533,-0.3827,0.6533,-0.6935,-0.1951,0.6935,-0.6935,-0.1951,0.6935,-0.6533,-0.3827,0.6533,-0.7682,-0.3827,0.5133,-0.6935,-0.1951,0.6935,-0.7682,-0.3827,0.5133,-0.8155,-0.1951,0.5449,-0.8155,-0.1951,0.5449,-0.7682,-0.3827,0.5133,-0.8536,-0.3827,0.3536,-0.8155,-0.1951,0.5449,-0.8536,-0.3827,0.3536,-0.9061,-0.1951,0.3753,-0.9061,-0.1951,0.3753,-0.8536,-0.3827,0.3536,-0.9061,-0.3827,0.1802,-0.9061,-0.1951,0.3753,-0.9061,-0.3827,0.1802,-0.9619,-0.1951,0.1913,-0.9619,-0.1951,0.1913,-0.9061,-0.3827,0.1802,-0.9239,-0.3827,0.0,-0.9619,-0.1951,0.1913,-0.9239,-0.3827,0.0,-0.9808,-0.1951,0.0,-0.9808,-0.1951,0.0,-0.9239,-0.3827,0.0,-0.9061,-0.3827,-0.1802,-0.9808,-0.1951,0.0,-0.9061,-0.3827,-0.1802,-0.9619,-0.1951,-0.1913,-0.9619,-0.1951,-0.1913,-0.9061,-0.3827,-0.1802,-0.8536,-0.3827,-0.3536,-0.9619,-0.1951,-0.1913,-0.8536,-0.3827,-0.3536,-0.9061,-0.1951,-0.3753,-0.9061,-0.1951,-0.3753,-0.8536,-0.3827,-0.3536,-0.7682,-0.3827,-0.5133,-0.9061,-0.1951,-0.3753,-0.7682,-0.3827,-0.5133,-0.8155,-0.1951,-0.5449,-0.8155,-0.1951,-0.5449,-0.7682,-0.3827,-0.5133,-0.6533,-0.3827,-0.6533,-0.8155,-0.1951,-0.5449,-0.6533,-0.3827,-0.6533,-0.6935,-0.1951,-0.6935,-0.6935,-0.1951,-0.6935,-0.6533,-0.3827,-0.6533,-0.5133,-0.3827,-0.7682,-0.6935,-0.1951,-0.6935,-0.5133,-0.3827,-0.7682,-0.5449,-0.1951,-0.8155,-0.5449,-0.1951,-0.8155,-0.5133,-0.3827,-0.7682,-0.3536,-0.3827,-0.8536,-0.5449,-0.1951,-0.8155,-0.3536,-0.3827,-0.8536,-0.3753,-0.1951,-0.9061,-0.3753,-0.1951,-0.9061,-0.3536,-0.3827,-0.8536,-0.1802,-0.3827,-0.9061,-0.3753,-0.1951,-0.9061,-0.1802,-0.3827,-0.9061,-0.1913,-0.1951,-0.9619,-0.1913,-0.1951,-0.9619,-0.1802,-0.3827,-0.9061,0.0,-0.3827,-0.9239,-0.1913,-0.1951,-0.9619,0.0,-0.3827,-0.9239,0.0,-0.1951,-0.9808,0.0,-0.1951,-0.9808,0.0,-0.3827,-0.9239,0.1802,-0.3827,-0.9061,0.0,-0.1951,-0.9808,0.1802,-0.3827,-0.9061,0.1913,-0.1951,-0.9619,0.1913,-0.1951,-0.9619,0.1802,-0.3827,-0.9061,0.3536,-0.3827,-0.8536,0.1913,-0.1951,-0.9619,0.3536,-0.3827,-0.8536,0.3753,-0.1951,-0.9061,0.3753,-0.1951,-0.9061,0.3536,-0.3827,-0.8536,0.5133,-0.3827,-0.7682,0.3753,-0.1951,-0.9061,0.5133,-0.3827,-0.7682,0.5449,-0.1951,-0.8155,0.5449,-0.1951,-0.8155,0.5133,-0.3827,-0.7682,0.6533,-0.3827,-0.6533,0.5449,-0.1951,-0.8155,0.6533,-0.3827,-0.6533,0.6935,-0.1951,-0.6935,0.6935,-0.1951,-0.6935,0.6533,-0.3827,-0.6533,0.7682,-0.3827,-0.5133,0.6935,-0.1951,-0.6935,0.7682,-0.3827,-0.5133,0.8155,-0.1951,-0.5449,0.8155,-0.1951,-0.5449,0.7682,-0.3827,-0.5133,0.8536,-0.3827,-0.3536,0.8155,-0.1951,-0.5449,0.8536,-0.3827,-0.3536,0.9061,-0.1951,-0.3753,0.9061,-0.1951,-0.3753,0.8536,-0.3827,-0.3536,0.9061,-0.3827,-0.1802,0.9061,-0.1951,-0.3753,0.9061,-0.3827,-0.1802,0.9619,-0.1951,-0.1913,0.9619,-0.1951,-0.1913,0.9061,-0.3827,-0.1802,0.9239,-0.3827,0.0,0.9619,-0.1951,-0.1913,0.9239,-0.3827,0.0,0.9808,-0.1951,0.0,0.9808,-0.1951,0.0,0.9239,-0.3827,0.0,0.9061,-0.3827,0.1802,0.9808,-0.1951,0.0,0.9061,-0.3827,0.1802,0.9619,-0.1951,0.1913,0.9619,-0.1951,0.1913,0.9061,-0.3827,0.1802,0.8536,-0.3827,0.3536,0.9619,-0.1951,0.1913,0.8536,-0.3827,0.3536,0.9061,-0.1951,0.3753,0.9061,-0.1951,0.3753,0.8536,-0.3827,0.3536,0.7682,-0.3827,0.5133,0.9061,-0.1951,0.3753,0.7682,-0.3827,0.5133,0.8155,-0.1951,0.5449,0.8155,-0.1951,0.5449,0.7682,-0.3827,0.5133,0.6533,-0.3827,0.6533,0.8155,-0.1951,0.5449,0.6533,-0.3827,0.6533,0.6935,-0.1951,0.6935,0.6935,-0.1951,0.6935,0.6533,-0.3827,0.6533,0.5133,-0.3827,0.7682,0.6935,-0.1951,0.6935,0.5133,-0.3827,0.7682,0.5449,-0.1951,0.8155,0.5449,-0.1951,0.8155,0.5133,-0.3827,0.7682,0.3536,-0.3827,0.8536,0.5449,-0.1951,0.8155,0.3536,-0.3827,0.8536,0.3753,-0.1951,0.9061,0.3753,-0.1951,0.9061,0.3536,-0.3827,0.8536,0.1802,-0.3827,0.9061,0.3753,-0.1951,0.9061,0.1802,-0.3827,0.9061,0.1913,-0.1951,0.9619,0.1913,-0.1951,0.9619,0.1802,-0.3827,0.9061,0.0,-0.3827,0.9239,0.1913,-0.1951,0.9619,0.0,-0.3827,0.9239,0.0,-0.1951,0.9808,0.0,-0.3827,0.9239,0.0,-0.5556,0.8315,-0.1622,-0.5556,0.8155,0.0,-0.3827,0.9239,-0.1622,-0.5556,0.8155,-0.1802,-0.3827,0.9061,-0.1802,-0.3827,0.9061,-0.1622,-0.5556,0.8155,-0.3182,-0.5556,0.7682,-0.1802,-0.3827,0.9061,-0.3182,-0.5556,0.7682,-0.3536,-0.3827,0.8536,-0.3536,-0.3827,0.8536,-0.3182,-0.5556,0.7682,-0.4619,-0.5556,0.6913,-0.3536,-0.3827,0.8536,-0.4619,-0.5556,0.6913,-0.5133,-0.3827,0.7682,-0.5133,-0.3827,0.7682,-0.4619,-0.5556,0.6913,-0.5879,-0.5556,0.5879,-0.5133,-0.3827,0.7682,-0.5879,-0.5556,0.5879,-0.6533,-0.3827,0.6533,-0.6533,-0.3827,0.6533,-0.5879,-0.5556,0.5879,-0.6913,-0.5556,0.4619,-0.6533,-0.3827,0.6533,-0.6913,-0.5556,0.4619,-0.7682,-0.3827,0.5133,-0.7682,-0.3827,0.5133,-0.6913,-0.5556,0.4619,-0.7682,-0.5556,0.3182,-0.7682,-0.3827,0.5133,-0.7682,-0.5556,0.3182,-0.8536,-0.3827,0.3536,-0.8536,-0.3827,0.3536,-0.7682,-0.5556,0.3182,-0.8155,-0.5556,0.1622,-0.8536,-0.3827,0.3536,-0.8155,-0.5556,0.1622,-0.9061,-0.3827,0.1802,-0.9061,-0.3827,0.1802,-0.8155,-0.5556,0.1622,-0.8315,-0.5556,0.0,-0.9061,-0.3827,0.1802,-0.8315,-0.5556,0.0,-0.9239,-0.3827,0.0,-0.9239,-0.3827,0.0,-0.8315,-0.5556,0.0,-0.8155,-0.5556,-0.1622,-0.9239,-0.3827,0.0,-0.8155,-0.5556,-0.1622,-0.9061,-0.3827,-0.1802,-0.9061,-0.3827,-0.1802,-0.8155,-0.5556,-0.1622,-0.7682,-0.5556,-0.3182,-0.9061,-0.3827,-0.1802,-0.7682,-0.5556,-0.3182,-0.8536,-0.3827,-0.3536,-0.8536,-0.3827,-0.3536,-0.7682,-0.5556,-0.3182,-0.6913,-0.5556,-0.4619,-0.8536,-0.3827,-0.3536,-0.6913,-0.5556,-0.4619,-0.7682,-0.3827,-0.5133,-0.7682,-0.3827,-0.5133,-0.6913,-0.5556,-0.4619,-0.5879,-0.5556,-0.5879,-0.7682,-0.3827,-0.5133,-0.5879,-0.5556,-0.5879,-0.6533,-0.3827,-0.6533,-0.6533,-0.3827,-0.6533,-0.5879,-0.5556,-0.5879,-0.4619,-0.5556,-0.6913,-0.6533,-0.3827,-0.6533,-0.4619,-0.5556,-0.6913,-0.5133,-0.3827,-0.7682,-0.5133,-0.3827,-0.7682,-0.4619,-0.5556,-0.6913,-0.3182,-0.5556,-0.7682,-0.5133,-0.3827,-0.7682,-0.3182,-0.5556,-0.7682,-0.3536,-0.3827,-0.8536,-0.3536,-0.3827,-0.8536,-0.3182,-0.5556,-0.7682,-0.1622,-0.5556,-0.8155,-0.3536,-0.3827,-0.8536,-0.1622,-0.5556,-0.8155,-0.1802,-0.3827,-0.9061,-0.1802,-0.3827,-0.9061,-0.1622,-0.5556,-0.8155,0.0,-0.5556,-0.8315,-0.1802,-0.3827,-0.9061,0.0,-0.5556,-0.8315,0.0,-0.3827,-0.9239,0.0,-0.3827,-0.9239,0.0,-0.5556,-0.8315,0.1622,-0.5556,-0.8155,0.0,-0.3827,-0.9239,0.1622,-0.5556,-0.8155,0.1802,-0.3827,-0.9061,0.1802,-0.3827,-0.9061,0.1622,-0.5556,-0.8155,0.3182,-0.5556,-0.7682,0.1802,-0.3827,-0.9061,0.3182,-0.5556,-0.7682,0.3536,-0.3827,-0.8536,0.3536,-0.3827,-0.8536,0.3182,-0.5556,-0.7682,0.4619,-0.5556,-0.6913,0.3536,-0.3827,-0.8536,0.4619,-0.5556,-0.6913,0.5133,-0.3827,-0.7682,0.5133,-0.3827,-0.7682,0.4619,-0.5556,-0.6913,0.5879,-0.5556,-0.5879,0.5133,-0.3827,-0.7682,0.5879,-0.5556,-0.5879,0.6533,-0.3827,-0.6533,0.6533,-0.3827,-0.6533,0.5879,-0.5556,-0.5879,0.6913,-0.5556,-0.4619,0.6533,-0.3827,-0.6533,0.6913,-0.5556,-0.4619,0.7682,-0.3827,-0.5133,0.7682,-0.3827,-0.5133,0.6913,-0.5556,-0.4619,0.7682,-0.5556,-0.3182,0.7682,-0.3827,-0.5133,0.7682,-0.5556,-0.3182,0.8536,-0.3827,-0.3536,0.8536,-0.3827,-0.3536,0.7682,-0.5556,-0.3182,0.8155,-0.5556,-0.1622,0.8536,-0.3827,-0.3536,0.8155,-0.5556,-0.1622,0.9061,-0.3827,-0.1802,0.9061,-0.3827,-0.1802,0.8155,-0.5556,-0.1622,0.8315,-0.5556,0.0,0.9061,-0.3827,-0.1802,0.8315,-0.5556,0.0,0.9239,-0.3827,0.0,0.9239,-0.3827,0.0,0.8315,-0.5556,0.0,0.8155,-0.5556,0.1622,0.9239,-0.3827,0.0,0.8155,-0.5556,0.1622,0.9061,-0.3827,0.1802,0.9061,-0.3827,0.1802,0.8155,-0.5556,0.1622,0.7682,-0.5556,0.3182,0.9061,-0.3827,0.1802,0.7682,-0.5556,0.3182,0.8536,-0.3827,0.3536,0.8536,-0.3827,0.3536,0.7682,-0.5556,0.3182,0.6913,-0.5556,0.4619,0.8536,-0.3827,0.3536,0.6913,-0.5556,0.4619,0.7682,-0.3827,0.5133,0.7682,-0.3827,0.5133,0.6913,-0.5556,0.4619,0.5879,-0.5556,0.5879,0.7682,-0.3827,0.5133,0.5879,-0.5556,0.5879,0.6533,-0.3827,0.6533,0.6533,-0.3827,0.6533,0.5879,-0.5556,0.5879,0.4619,-0.5556,0.6913,0.6533,-0.3827,0.6533,0.4619,-0.5556,0.6913,0.5133,-0.3827,0.7682,0.5133,-0.3827,0.7682,0.4619,-0.5556,0.6913,0.3182,-0.5556,0.7682,0.5133,-0.3827,0.7682,0.3182,-0.5556,0.7682,0.3536,-0.3827,0.8536,0.3536,-0.3827,0.8536,0.3182,-0.5556,0.7682,0.1622,-0.5556,0.8155,0.3536,-0.3827,0.8536,0.1622,-0.5556,0.8155,0.1802,-0.3827,0.9061,0.1802,-0.3827,0.9061,0.1622,-0.5556,0.8155,0.0,-0.5556,0.8315,0.1802,-0.3827,0.9061,0.0,-0.5556,0.8315,0.0,-0.3827,0.9239,0.0,-0.5556,0.8315,0.0,-0.7071,0.7071,-0.1379,-0.7071,0.6935,0.0,-0.5556,0.8315,-0.1379,-0.7071,0.6935,-0.1622,-0.5556,0.8155,-0.1622,-0.5556,0.8155,-0.1379,-0.7071,0.6935,-0.2706,-0.7071,0.6533,-0.1622,-0.5556,0.8155,-0.2706,-0.7071,0.6533,-0.3182,-0.5556,0.7682,-0.3182,-0.5556,0.7682,-0.2706,-0.7071,0.6533,-0.3928,-0.7071,0.5879,-0.3182,-0.5556,0.7682,-0.3928,-0.7071,0.5879,-0.4619,-0.5556,0.6913,-0.4619,-0.5556,0.6913,-0.3928,-0.7071,0.5879,-0.5,-0.7071,0.5,-0.4619,-0.5556,0.6913,-0.5,-0.7071,0.5,-0.5879,-0.5556,0.5879,-0.5879,-0.5556,0.5879,-0.5,-0.7071,0.5,-0.5879,-0.7071,0.3928,-0.5879,-0.5556,0.5879,-0.5879,-0.7071,0.3928,-0.6913,-0.5556,0.4619,-0.6913,-0.5556,0.4619,-0.5879,-0.7071,0.3928,-0.6533,-0.7071,0.2706,-0.6913,-0.5556,0.4619,-0.6533,-0.7071,0.2706,-0.7682,-0.5556,0.3182,-0.7682,-0.5556,0.3182,-0.6533,-0.7071,0.2706,-0.6935,-0.7071,0.1379,-0.7682,-0.5556,0.3182,-0.6935,-0.7071,0.1379,-0.8155,-0.5556,0.1622,-0.8155,-0.5556,0.1622,-0.6935,-0.7071,0.1379,-0.7071,-0.7071,0.0,-0.8155,-0.5556,0.1622,-0.7071,-0.7071,0.0,-0.8315,-0.5556,0.0,-0.8315,-0.5556,0.0,-0.7071,-0.7071,0.0,-0.6935,-0.7071,-0.1379,-0.8315,-0.5556,0.0,-0.6935,-0.7071,-0.1379,-0.8155,-0.5556,-0.1622,-0.8155,-0.5556,-0.1622,-0.6935,-0.7071,-0.1379,-0.6533,-0.7071,-0.2706,-0.8155,-0.5556,-0.1622,-0.6533,-0.7071,-0.2706,-0.7682,-0.5556,-0.3182,-0.7682,-0.5556,-0.3182,-0.6533,-0.7071,-0.2706,-0.5879,-0.7071,-0.3928,-0.7682,-0.5556,-0.3182,-0.5879,-0.7071,-0.3928,-0.6913,-0.5556,-0.4619,-0.6913,-0.5556,-0.4619,-0.5879,-0.7071,-0.3928,-0.5,-0.7071,-0.5,-0.6913,-0.5556,-0.4619,-0.5,-0.7071,-0.5,-0.5879,-0.5556,-0.5879,-0.5879,-0.5556,-0.5879,-0.5,-0.7071,-0.5,-0.3928,-0.7071,-0.5879,-0.5879,-0.5556,-0.5879,-0.3928,-0.7071,-0.5879,-0.4619,-0.5556,-0.6913,-0.4619,-0.5556,-0.6913,-0.3928,-0.7071,-0.5879,-0.2706,-0.7071,-0.6533,-0.4619,-0.5556,-0.6913,-0.2706,-0.7071,-0.6533,-0.3182,-0.5556,-0.7682,-0.3182,-0.5556,-0.7682,-0.2706,-0.7071,-0.6533,-0.1379,-0.7071,-0.6935,-0.3182,-0.5556,-0.7682,-0.1379,-0.7071,-0.6935,-0.1622,-0.5556,-0.8155,-0.1622,-0.5556,-0.8155,-0.1379,-0.7071,-0.6935,0.0,-0.7071,-0.7071,-0.1622,-0.5556,-0.8155,0.0,-0.7071,-0.7071,0.0,-0.5556,-0.8315,0.0,-0.5556,-0.8315,0.0,-0.7071,-0.7071,0.138,-0.7071,-0.6935,0.0,-0.5556,-0.8315,0.138,-0.7071,-0.6935,0.1622,-0.5556,-0.8155,0.1622,-0.5556,-0.8155,0.138,-0.7071,-0.6935,0.2706,-0.7071,-0.6533,0.1622,-0.5556,-0.8155,0.2706,-0.7071,-0.6533,0.3182,-0.5556,-0.7682,0.3182,-0.5556,-0.7682,0.2706,-0.7071,-0.6533,0.3928,-0.7071,-0.5879,0.3182,-0.5556,-0.7682,0.3928,-0.7071,-0.5879,0.4619,-0.5556,-0.6913,0.4619,-0.5556,-0.6913,0.3928,-0.7071,-0.5879,0.5,-0.7071,-0.5,0.4619,-0.5556,-0.6913,0.5,-0.7071,-0.5,0.5879,-0.5556,-0.5879,0.5879,-0.5556,-0.5879,0.5,-0.7071,-0.5,0.5879,-0.7071,-0.3928,0.5879,-0.5556,-0.5879,0.5879,-0.7071,-0.3928,0.6913,-0.5556,-0.4619,0.6913,-0.5556,-0.4619,0.5879,-0.7071,-0.3928,0.6533,-0.7071,-0.2706,0.6913,-0.5556,-0.4619,0.6533,-0.7071,-0.2706,0.7682,-0.5556,-0.3182,0.7682,-0.5556,-0.3182,0.6533,-0.7071,-0.2706,0.6935,-0.7071,-0.1379,0.7682,-0.5556,-0.3182,0.6935,-0.7071,-0.1379,0.8155,-0.5556,-0.1622,0.8155,-0.5556,-0.1622,0.6935,-0.7071,-0.1379,0.7071,-0.7071,0.0,0.8155,-0.5556,-0.1622,0.7071,-0.7071,0.0,0.8315,-0.5556,0.0,0.8315,-0.5556,0.0,0.7071,-0.7071,0.0,0.6935,-0.7071,0.138,0.8315,-0.5556,0.0,0.6935,-0.7071,0.138,0.8155,-0.5556,0.1622,0.8155,-0.5556,0.1622,0.6935,-0.7071,0.138,0.6533,-0.7071,0.2706,0.8155,-0.5556,0.1622,0.6533,-0.7071,0.2706,0.7682,-0.5556,0.3182,0.7682,-0.5556,0.3182,0.6533,-0.7071,0.2706,0.5879,-0.7071,0.3928,0.7682,-0.5556,0.3182,0.5879,-0.7071,0.3928,0.6913,-0.5556,0.4619,0.6913,-0.5556,0.4619,0.5879,-0.7071,0.3928,0.5,-0.7071,0.5,0.6913,-0.5556,0.4619,0.5,-0.7071,0.5,0.5879,-0.5556,0.5879,0.5879,-0.5556,0.5879,0.5,-0.7071,0.5,0.3928,-0.7071,0.5879,0.5879,-0.5556,0.5879,0.3928,-0.7071,0.5879,0.4619,-0.5556,0.6913,0.4619,-0.5556,0.6913,0.3928,-0.7071,0.5879,0.2706,-0.7071,0.6533,0.4619,-0.5556,0.6913,0.2706,-0.7071,0.6533,0.3182,-0.5556,0.7682,0.3182,-0.5556,0.7682,0.2706,-0.7071,0.6533,0.1379,-0.7071,0.6935,0.3182,-0.5556,0.7682,0.1379,-0.7071,0.6935,0.1622,-0.5556,0.8155,0.1622,-0.5556,0.8155,0.1379,-0.7071,0.6935,0.0,-0.7071,0.7071,0.1622,-0.5556,0.8155,0.0,-0.7071,0.7071,0.0,-0.5556,0.8315,0.0,-0.7071,0.7071,0.0,-0.8315,0.5556,-0.1084,-0.8315,0.5449,0.0,-0.7071,0.7071,-0.1084,-0.8315,0.5449,-0.1379,-0.7071,0.6935,-0.1379,-0.7071,0.6935,-0.1084,-0.8315,0.5449,-0.2126,-0.8315,0.5133,-0.1379,-0.7071,0.6935,-0.2126,-0.8315,0.5133,-0.2706,-0.7071,0.6533,-0.2706,-0.7071,0.6533,-0.2126,-0.8315,0.5133,-0.3087,-0.8315,0.4619,-0.2706,-0.7071,0.6533,-0.3087,-0.8315,0.4619,-0.3928,-0.7071,0.5879,-0.3928,-0.7071,0.5879,-0.3087,-0.8315,0.4619,-0.3928,-0.8315,0.3928,-0.3928,-0.7071,0.5879,-0.3928,-0.8315,0.3928,-0.5,-0.7071,0.5,-0.5,-0.7071,0.5,-0.3928,-0.8315,0.3928,-0.4619,-0.8315,0.3087,-0.5,-0.7071,0.5,-0.4619,-0.8315,0.3087,-0.5879,-0.7071,0.3928,-0.5879,-0.7071,0.3928,-0.4619,-0.8315,0.3087,-0.5133,-0.8315,0.2126,-0.5879,-0.7071,0.3928,-0.5133,-0.8315,0.2126,-0.6533,-0.7071,0.2706,-0.6533,-0.7071,0.2706,-0.5133,-0.8315,0.2126,-0.5449,-0.8315,0.1084,-0.6533,-0.7071,0.2706,-0.5449,-0.8315,0.1084,-0.6935,-0.7071,0.1379,-0.6935,-0.7071,0.1379,-0.5449,-0.8315,0.1084,-0.5556,-0.8315,0.0,-0.6935,-0.7071,0.1379,-0.5556,-0.8315,0.0,-0.7071,-0.7071,0.0,-0.7071,-0.7071,0.0,-0.5556,-0.8315,0.0,-0.5449,-0.8315,-0.1084,-0.7071,-0.7071,0.0,-0.5449,-0.8315,-0.1084,-0.6935,-0.7071,-0.1379,-0.6935,-0.7071,-0.1379,-0.5449,-0.8315,-0.1084,-0.5133,-0.8315,-0.2126,-0.6935,-0.7071,-0.1379,-0.5133,-0.8315,-0.2126,-0.6533,-0.7071,-0.2706,-0.6533,-0.7071,-0.2706,-0.5133,-0.8315,-0.2126,-0.4619,-0.8315,-0.3087,-0.6533,-0.7071,-0.2706,-0.4619,-0.8315,-0.3087,-0.5879,-0.7071,-0.3928,-0.5879,-0.7071,-0.3928,-0.4619,-0.8315,-0.3087,-0.3928,-0.8315,-0.3928,-0.5879,-0.7071,-0.3928,-0.3928,-0.8315,-0.3928,-0.5,-0.7071,-0.5,-0.5,-0.7071,-0.5,-0.3928,-0.8315,-0.3928,-0.3087,-0.8315,-0.4619,-0.5,-0.7071,-0.5,-0.3087,-0.8315,-0.4619,-0.3928,-0.7071,-0.5879,-0.3928,-0.7071,-0.5879,-0.3087,-0.8315,-0.4619,-0.2126,-0.8315,-0.5133,-0.3928,-0.7071,-0.5879,-0.2126,-0.8315,-0.5133,-0.2706,-0.7071,-0.6533,-0.2706,-0.7071,-0.6533,-0.2126,-0.8315,-0.5133,-0.1084,-0.8315,-0.5449,-0.2706,-0.7071,-0.6533,-0.1084,-0.8315,-0.5449,-0.1379,-0.7071,-0.6935,-0.1379,-0.7071,-0.6935,-0.1084,-0.8315,-0.5449,0.0,-0.8315,-0.5556,-0.1379,-0.7071,-0.6935,0.0,-0.8315,-0.5556,0.0,-0.7071,-0.7071,0.0,-0.7071,-0.7071,0.0,-0.8315,-0.5556,0.1084,-0.8315,-0.5449,0.0,-0.7071,-0.7071,0.1084,-0.8315,-0.5449,0.138,-0.7071,-0.6935,0.138,-0.7071,-0.6935,0.1084,-0.8315,-0.5449,0.2126,-0.8315,-0.5133,0.138,-0.7071,-0.6935,0.2126,-0.8315,-0.5133,0.2706,-0.7071,-0.6533,0.2706,-0.7071,-0.6533,0.2126,-0.8315,-0.5133,0.3087,-0.8315,-0.4619,0.2706,-0.7071,-0.6533,0.3087,-0.8315,-0.4619,0.3928,-0.7071,-0.5879,0.3928,-0.7071,-0.5879,0.3087,-0.8315,-0.4619,0.3928,-0.8315,-0.3928,0.3928,-0.7071,-0.5879,0.3928,-0.8315,-0.3928,0.5,-0.7071,-0.5,0.5,-0.7071,-0.5,0.3928,-0.8315,-0.3928,0.4619,-0.8315,-0.3087,0.5,-0.7071,-0.5,0.4619,-0.8315,-0.3087,0.5879,-0.7071,-0.3928,0.5879,-0.7071,-0.3928,0.4619,-0.8315,-0.3087,0.5133,-0.8315,-0.2126,0.5879,-0.7071,-0.3928,0.5133,-0.8315,-0.2126,0.6533,-0.7071,-0.2706,0.6533,-0.7071,-0.2706,0.5133,-0.8315,-0.2126,0.5449,-0.8315,-0.1084,0.6533,-0.7071,-0.2706,0.5449,-0.8315,-0.1084,0.6935,-0.7071,-0.1379,0.6935,-0.7071,-0.1379,0.5449,-0.8315,-0.1084,0.5556,-0.8315,0.0,0.6935,-0.7071,-0.1379,0.5556,-0.8315,0.0,0.7071,-0.7071,0.0,0.7071,-0.7071,0.0,0.5556,-0.8315,0.0,0.5449,-0.8315,0.1084,0.7071,-0.7071,0.0,0.5449,-0.8315,0.1084,0.6935,-0.7071,0.138,0.6935,-0.7071,0.138,0.5449,-0.8315,0.1084,0.5133,-0.8315,0.2126,0.6935,-0.7071,0.138,0.5133,-0.8315,0.2126,0.6533,-0.7071,0.2706,0.6533,-0.7071,0.2706,0.5133,-0.8315,0.2126,0.4619,-0.8315,0.3087,0.6533,-0.7071,0.2706,0.4619,-0.8315,0.3087,0.5879,-0.7071,0.3928,0.5879,-0.7071,0.3928,0.4619,-0.8315,0.3087,0.3928,-0.8315,0.3928,0.5879,-0.7071,0.3928,0.3928,-0.8315,0.3928,0.5,-0.7071,0.5,0.5,-0.7071,0.5,0.3928,-0.8315,0.3928,0.3087,-0.8315,0.4619,0.5,-0.7071,0.5,0.3087,-0.8315,0.4619,0.3928,-0.7071,0.5879,0.3928,-0.7071,0.5879,0.3087,-0.8315,0.4619,0.2126,-0.8315,0.5133,0.3928,-0.7071,0.5879,0.2126,-0.8315,0.5133,0.2706,-0.7071,0.6533,0.2706,-0.7071,0.6533,0.2126,-0.8315,0.5133,0.1084,-0.8315,0.5449,0.2706,-0.7071,0.6533,0.1084,-0.8315,0.5449,0.1379,-0.7071,0.6935,0.1379,-0.7071,0.6935,0.1084,-0.8315,0.5449,0.0,-0.8315,0.5556,0.1379,-0.7071,0.6935,0.0,-0.8315,0.5556,0.0,-0.7071,0.7071,0.0,-0.8315,0.5556,0.0,-0.9239,0.3827,-0.0747,-0.9239,0.3753,0.0,-0.8315,0.5556,-0.0747,-0.9239,0.3753,-0.1084,-0.8315,0.5449,-0.1084,-0.8315,0.5449,-0.0747,-0.9239,0.3753,-0.1464,-0.9239,0.3536,-0.1084,-0.8315,0.5449,-0.1464,-0.9239,0.3536,-0.2126,-0.8315,0.5133,-0.2126,-0.8315,0.5133,-0.1464,-0.9239,0.3536,-0.2126,-0.9239,0.3182,-0.2126,-0.8315,0.5133,-0.2126,-0.9239,0.3182,-0.3087,-0.8315,0.4619,-0.3087,-0.8315,0.4619,-0.2126,-0.9239,0.3182,-0.2706,-0.9239,0.2706,-0.3087,-0.8315,0.4619,-0.2706,-0.9239,0.2706,-0.3928,-0.8315,0.3928,-0.3928,-0.8315,0.3928,-0.2706,-0.9239,0.2706,-0.3182,-0.9239,0.2126,-0.3928,-0.8315,0.3928,-0.3182,-0.9239,0.2126,-0.4619,-0.8315,0.3087,-0.4619,-0.8315,0.3087,-0.3182,-0.9239,0.2126,-0.3536,-0.9239,0.1464,-0.4619,-0.8315,0.3087,-0.3536,-0.9239,0.1464,-0.5133,-0.8315,0.2126,-0.5133,-0.8315,0.2126,-0.3536,-0.9239,0.1464,-0.3753,-0.9239,0.0747,-0.5133,-0.8315,0.2126,-0.3753,-0.9239,0.0747,-0.5449,-0.8315,0.1084,-0.5449,-0.8315,0.1084,-0.3753,-0.9239,0.0747,-0.3827,-0.9239,0.0,-0.5449,-0.8315,0.1084,-0.3827,-0.9239,0.0,-0.5556,-0.8315,0.0,-0.5556,-0.8315,0.0,-0.3827,-0.9239,0.0,-0.3753,-0.9239,-0.0747,-0.5556,-0.8315,0.0,-0.3753,-0.9239,-0.0747,-0.5449,-0.8315,-0.1084,-0.5449,-0.8315,-0.1084,-0.3753,-0.9239,-0.0747,-0.3536,-0.9239,-0.1464,-0.5449,-0.8315,-0.1084,-0.3536,-0.9239,-0.1464,-0.5133,-0.8315,-0.2126,-0.5133,-0.8315,-0.2126,-0.3536,-0.9239,-0.1464,-0.3182,-0.9239,-0.2126,-0.5133,-0.8315,-0.2126,-0.3182,-0.9239,-0.2126,-0.4619,-0.8315,-0.3087,-0.4619,-0.8315,-0.3087,-0.3182,-0.9239,-0.2126,-0.2706,-0.9239,-0.2706,-0.4619,-0.8315,-0.3087,-0.2706,-0.9239,-0.2706,-0.3928,-0.8315,-0.3928,-0.3928,-0.8315,-0.3928,-0.2706,-0.9239,-0.2706,-0.2126,-0.9239,-0.3182,-0.3928,-0.8315,-0.3928,-0.2126,-0.9239,-0.3182,-0.3087,-0.8315,-0.4619,-0.3087,-0.8315,-0.4619,-0.2126,-0.9239,-0.3182,-0.1464,-0.9239,-0.3536,-0.3087,-0.8315,-0.4619,-0.1464,-0.9239,-0.3536,-0.2126,-0.8315,-0.5133,-0.2126,-0.8315,-0.5133,-0.1464,-0.9239,-0.3536,-0.0747,-0.9239,-0.3753,-0.2126,-0.8315,-0.5133,-0.0747,-0.9239,-0.3753,-0.1084,-0.8315,-0.5449,-0.1084,-0.8315,-0.5449,-0.0747,-0.9239,-0.3753,0.0,-0.9239,-0.3827,-0.1084,-0.8315,-0.5449,0.0,-0.9239,-0.3827,0.0,-0.8315,-0.5556,0.0,-0.8315,-0.5556,0.0,-0.9239,-0.3827,0.0747,-0.9239,-0.3753,0.0,-0.8315,-0.5556,0.0747,-0.9239,-0.3753,0.1084,-0.8315,-0.5449,0.1084,-0.8315,-0.5449,0.0747,-0.9239,-0.3753,0.1464,-0.9239,-0.3536,0.1084,-0.8315,-0.5449,0.1464,-0.9239,-0.3536,0.2126,-0.8315,-0.5133,0.2126,-0.8315,-0.5133,0.1464,-0.9239,-0.3536,0.2126,-0.9239,-0.3182,0.2126,-0.8315,-0.5133,0.2126,-0.9239,-0.3182,0.3087,-0.8315,-0.4619,0.3087,-0.8315,-0.4619,0.2126,-0.9239,-0.3182,0.2706,-0.9239,-0.2706,0.3087,-0.8315,-0.4619,0.2706,-0.9239,-0.2706,0.3928,-0.8315,-0.3928,0.3928,-0.8315,-0.3928,0.2706,-0.9239,-0.2706,0.3182,-0.9239,-0.2126,0.3928,-0.8315,-0.3928,0.3182,-0.9239,-0.2126,0.4619,-0.8315,-0.3087,0.4619,-0.8315,-0.3087,0.3182,-0.9239,-0.2126,0.3536,-0.9239,-0.1464,0.4619,-0.8315,-0.3087,0.3536,-0.9239,-0.1464,0.5133,-0.8315,-0.2126,0.5133,-0.8315,-0.2126,0.3536,-0.9239,-0.1464,0.3753,-0.9239,-0.0747,0.5133,-0.8315,-0.2126,0.3753,-0.9239,-0.0747,0.5449,-0.8315,-0.1084,0.5449,-0.8315,-0.1084,0.3753,-0.9239,-0.0747,0.3827,-0.9239,0.0,0.5449,-0.8315,-0.1084,0.3827,-0.9239,0.0,0.5556,-0.8315,0.0,0.5556,-0.8315,0.0,0.3827,-0.9239,0.0,0.3753,-0.9239,0.0747,0.5556,-0.8315,0.0,0.3753,-0.9239,0.0747,0.5449,-0.8315,0.1084,0.5449,-0.8315,0.1084,0.3753,-0.9239,0.0747,0.3536,-0.9239,0.1464,0.5449,-0.8315,0.1084,0.3536,-0.9239,0.1464,0.5133,-0.8315,0.2126,0.5133,-0.8315,0.2126,0.3536,-0.9239,0.1464,0.3182,-0.9239,0.2126,0.5133,-0.8315,0.2126,0.3182,-0.9239,0.2126,0.4619,-0.8315,0.3087,0.4619,-0.8315,0.3087,0.3182,-0.9239,0.2126,0.2706,-0.9239,0.2706,0.4619,-0.8315,0.3087,0.2706,-0.9239,0.2706,0.3928,-0.8315,0.3928,0.3928,-0.8315,0.3928,0.2706,-0.9239,0.2706,0.2126,-0.9239,0.3182,0.3928,-0.8315,0.3928,0.2126,-0.9239,0.3182,0.3087,-0.8315,0.4619,0.3087,-0.8315,0.4619,0.2126,-0.9239,0.3182,0.1464,-0.9239,0.3536,0.3087,-0.8315,0.4619,0.1464,-0.9239,0.3536,0.2126,-0.8315,0.5133,0.2126,-0.8315,0.5133,0.1464,-0.9239,0.3536,0.0747,-0.9239,0.3753,0.2126,-0.8315,0.5133,0.0747,-0.9239,0.3753,0.1084,-0.8315,0.5449,0.1084,-0.8315,0.5449,0.0747,-0.9239,0.3753,0.0,-0.9239,0.3827,0.1084,-0.8315,0.5449,0.0,-0.9239,0.3827,0.0,-0.8315,0.5556,0.0,-0.9239,0.3827,0.0,-0.9808,0.1951,-0.0381,-0.9808,0.1913,0.0,-0.9239,0.3827,-0.0381,-0.9808,0.1913,-0.0747,-0.9239,0.3753,-0.0747,-0.9239,0.3753,-0.0381,-0.9808,0.1913,-0.0747,-0.9808,0.1802,-0.0747,-0.9239,0.3753,-0.0747,-0.9808,0.1802,-0.1464,-0.9239,0.3536,-0.1464,-0.9239,0.3536,-0.0747,-0.9808,0.1802,-0.1084,-0.9808,0.1622,-0.1464,-0.9239,0.3536,-0.1084,-0.9808,0.1622,-0.2126,-0.9239,0.3182,-0.2126,-0.9239,0.3182,-0.1084,-0.9808,0.1622,-0.1379,-0.9808,0.1379,-0.2126,-0.9239,0.3182,-0.1379,-0.9808,0.1379,-0.2706,-0.9239,0.2706,-0.2706,-0.9239,0.2706,-0.1379,-0.9808,0.1379,-0.1622,-0.9808,0.1084,-0.2706,-0.9239,0.2706,-0.1622,-0.9808,0.1084,-0.3182,-0.9239,0.2126,-0.3182,-0.9239,0.2126,-0.1622,-0.9808,0.1084,-0.1802,-0.9808,0.0747,-0.3182,-0.9239,0.2126,-0.1802,-0.9808,0.0747,-0.3536,-0.9239,0.1464,-0.3536,-0.9239,0.1464,-0.1802,-0.9808,0.0747,-0.1913,-0.9808,0.0381,-0.3536,-0.9239,0.1464,-0.1913,-0.9808,0.0381,-0.3753,-0.9239,0.0747,-0.3753,-0.9239,0.0747,-0.1913,-0.9808,0.0381,-0.1951,-0.9808,0.0,-0.3753,-0.9239,0.0747,-0.1951,-0.9808,0.0,-0.3827,-0.9239,0.0,-0.3827,-0.9239,0.0,-0.1951,-0.9808,0.0,-0.1913,-0.9808,-0.0381,-0.3827,-0.9239,0.0,-0.1913,-0.9808,-0.0381,-0.3753,-0.9239,-0.0747,-0.3753,-0.9239,-0.0747,-0.1913,-0.9808,-0.0381,-0.1802,-0.9808,-0.0747,-0.3753,-0.9239,-0.0747,-0.1802,-0.9808,-0.0747,-0.3536,-0.9239,-0.1464,-0.3536,-0.9239,-0.1464,-0.1802,-0.9808,-0.0747,-0.1622,-0.9808,-0.1084,-0.3536,-0.9239,-0.1464,-0.1622,-0.9808,-0.1084,-0.3182,-0.9239,-0.2126,-0.3182,-0.9239,-0.2126,-0.1622,-0.9808,-0.1084,-0.1379,-0.9808,-0.1379,-0.3182,-0.9239,-0.2126,-0.1379,-0.9808,-0.1379,-0.2706,-0.9239,-0.2706,-0.2706,-0.9239,-0.2706,-0.1379,-0.9808,-0.1379,-0.1084,-0.9808,-0.1622,-0.2706,-0.9239,-0.2706,-0.1084,-0.9808,-0.1622,-0.2126,-0.9239,-0.3182,-0.2126,-0.9239,-0.3182,-0.1084,-0.9808,-0.1622,-0.0747,-0.9808,-0.1802,-0.2126,-0.9239,-0.3182,-0.0747,-0.9808,-0.1802,-0.1464,-0.9239,-0.3536,-0.1464,-0.9239,-0.3536,-0.0747,-0.9808,-0.1802,-0.0381,-0.9808,-0.1913,-0.1464,-0.9239,-0.3536,-0.0381,-0.9808,-0.1913,-0.0747,-0.9239,-0.3753,-0.0747,-0.9239,-0.3753,-0.0381,-0.9808,-0.1913,0.0,-0.9808,-0.1951,-0.0747,-0.9239,-0.3753,0.0,-0.9808,-0.1951,0.0,-0.9239,-0.3827,0.0,-0.9239,-0.3827,0.0,-0.9808,-0.1951,0.0381,-0.9808,-0.1913,0.0,-0.9239,-0.3827,0.0381,-0.9808,-0.1913,0.0747,-0.9239,-0.3753,0.0747,-0.9239,-0.3753,0.0381,-0.9808,-0.1913,0.0747,-0.9808,-0.1802,0.0747,-0.9239,-0.3753,0.0747,-0.9808,-0.1802,0.1464,-0.9239,-0.3536,0.1464,-0.9239,-0.3536,0.0747,-0.9808,-0.1802,0.1084,-0.9808,-0.1622,0.1464,-0.9239,-0.3536,0.1084,-0.9808,-0.1622,0.2126,-0.9239,-0.3182,0.2126,-0.9239,-0.3182,0.1084,-0.9808,-0.1622,0.1379,-0.9808,-0.1379,0.2126,-0.9239,-0.3182,0.1379,-0.9808,-0.1379,0.2706,-0.9239,-0.2706,0.2706,-0.9239,-0.2706,0.1379,-0.9808,-0.1379,0.1622,-0.9808,-0.1084,0.2706,-0.9239,-0.2706,0.1622,-0.9808,-0.1084,0.3182,-0.9239,-0.2126,0.3182,-0.9239,-0.2126,0.1622,-0.9808,-0.1084,0.1802,-0.9808,-0.0747,0.3182,-0.9239,-0.2126,0.1802,-0.9808,-0.0747,0.3536,-0.9239,-0.1464,0.3536,-0.9239,-0.1464,0.1802,-0.9808,-0.0747,0.1913,-0.9808,-0.0381,0.3536,-0.9239,-0.1464,0.1913,-0.9808,-0.0381,0.3753,-0.9239,-0.0747,0.3753,-0.9239,-0.0747,0.1913,-0.9808,-0.0381,0.1951,-0.9808,0.0,0.3753,-0.9239,-0.0747,0.1951,-0.9808,0.0,0.3827,-0.9239,0.0,0.3827,-0.9239,0.0,0.1951,-0.9808,0.0,0.1913,-0.9808,0.0381,0.3827,-0.9239,0.0,0.1913,-0.9808,0.0381,0.3753,-0.9239,0.0747,0.3753,-0.9239,0.0747,0.1913,-0.9808,0.0381,0.1802,-0.9808,0.0747,0.3753,-0.9239,0.0747,0.1802,-0.9808,0.0747,0.3536,-0.9239,0.1464,0.3536,-0.9239,0.1464,0.1802,-0.9808,0.0747,0.1622,-0.9808,0.1084,0.3536,-0.9239,0.1464,0.1622,-0.9808,0.1084,0.3182,-0.9239,0.2126,0.3182,-0.9239,0.2126,0.1622,-0.9808,0.1084,0.1379,-0.9808,0.1379,0.3182,-0.9239,0.2126,0.1379,-0.9808,0.1379,0.2706,-0.9239,0.2706,0.2706,-0.9239,0.2706,0.1379,-0.9808,0.1379,0.1084,-0.9808,0.1622,0.2706,-0.9239,0.2706,0.1084,-0.9808,0.1622,0.2126,-0.9239,0.3182,0.2126,-0.9239,0.3182,0.1084,-0.9808,0.1622,0.0747,-0.9808,0.1802,0.2126,-0.9239,0.3182,0.0747,-0.9808,0.1802,0.1464,-0.9239,0.3536,0.1464,-0.9239,0.3536,0.0747,-0.9808,0.1802,0.0381,-0.9808,0.1913,0.1464,-0.9239,0.3536,0.0381,-0.9808,0.1913,0.0747,-0.9239,0.3753,0.0747,-0.9239,0.3753,0.0381,-0.9808,0.1913,0.0,-0.9808,0.1951,0.0747,-0.9239,0.3753,0.0,-0.9808,0.1951,0.0,-0.9239,0.3827,0.0,-1.0,0.0,-0.0381,-0.9808,0.1913,0.0,-0.9808,0.1951,0.0,-1.0,0.0,-0.0747,-0.9808,0.1802,-0.0381,-0.9808,0.1913,0.0,-1.0,0.0,-0.1084,-0.9808,0.1622,-0.0747,-0.9808,0.1802,0.0,-1.0,0.0,-0.1379,-0.9808,0.1379,-0.1084,-0.9808,0.1622,0.0,-1.0,0.0,-0.1622,-0.9808,0.1084,-0.1379,-0.9808,0.1379,0.0,-1.0,0.0,-0.1802,-0.9808,0.0747,-0.1622,-0.9808,0.1084,0.0,-1.0,0.0,-0.1913,-0.9808,0.0381,-0.1802,-0.9808,0.0747,0.0,-1.0,0.0,-0.1951,-0.9808,0.0,-0.1913,-0.9808,0.0381,0.0,-1.0,0.0,-0.1913,-0.9808,-0.0381,-0.1951,-0.9808,0.0,0.0,-1.0,0.0,-0.1802,-0.9808,-0.0747,-0.1913,-0.9808,-0.0381,0.0,-1.0,0.0,-0.1622,-0.9808,-0.1084,-0.1802,-0.9808,-0.0747,0.0,-1.0,0.0,-0.1379,-0.9808,-0.1379,-0.1622,-0.9808,-0.1084,0.0,-1.0,0.0,-0.1084,-0.9808,-0.1622,-0.1379,-0.9808,-0.1379,0.0,-1.0,0.0,-0.0747,-0.9808,-0.1802,-0.1084,-0.9808,-0.1622,0.0,-1.0,0.0,-0.0381,-0.9808,-0.1913,-0.0747,-0.9808,-0.1802,0.0,-1.0,0.0,0.0,-0.9808,-0.1951,-0.0381,-0.9808,-0.1913,0.0,-1.0,0.0,0.0381,-0.9808,-0.1913,0.0,-0.9808,-0.1951,0.0,-1.0,0.0,0.0747,-0.9808,-0.1802,0.0381,-0.9808,-0.1913,0.0,-1.0,0.0,0.1084,-0.9808,-0.1622,0.0747,-0.9808,-0.1802,0.0,-1.0,0.0,0.1379,-0.9808,-0.1379,0.1084,-0.9808,-0.1622,0.0,-1.0,0.0,0.1622,-0.9808,-0.1084,0.1379,-0.9808,-0.1379,0.0,-1.0,0.0,0.1802,-0.9808,-0.0747,0.1622,-0.9808,-0.1084,0.0,-1.0,0.0,0.1913,-0.9808,-0.0381,0.1802,-0.9808,-0.0747,0.0,-1.0,0.0,0.1951,-0.9808,0.0,0.1913,-0.9808,-0.0381,0.0,-1.0,0.0,0.1913,-0.9808,0.0381,0.1951,-0.9808,0.0,0.0,-1.0,0.0,0.1802,-0.9808,0.0747,0.1913,-0.9808,0.0381,0.0,-1.0,0.0,0.1622,-0.9808,0.1084,0.1802,-0.9808,0.0747,0.0,-1.0,0.0,0.1379,-0.9808,0.1379,0.1622,-0.9808,0.1084,0.0,-1.0,0.0,0.1084,-0.9808,0.1622,0.1379,-0.9808,0.1379,0.0,-1.0,0.0,0.0747,-0.9808,0.1802,0.1084,-0.9808,0.1622,0.0,-1.0,0.0,0.0381,-0.9808,0.1913,0.0747,-0.9808,0.1802,0.0,-1.0,0.0,0.0,-0.9808,0.1951,0.0381,-0.9808,0.1913],"normals":[0.0,1.0,0.0,0.0,0.9796,0.201,-0.0392,0.9796,0.1971,0.0,1.0,0.0,-0.0392,0.9796,0.1971,-0.0769,0.9796,0.1857,0.0,1.0,0.0,-0.0769,0.9796,0.1857,-0.1117,0.9796,0.1671,0.0,1.0,0.0,-0.1117,0.9796,0.1671,-0.1421,0.9796,0.1421,0.0,1.0,0.0,-0.1421,0.9796,0.1421,-0.1671,0.9796,0.1117,0.0,1.0,0.0,-0.1671,0.9796,0.1117,-0.1857,0.9796,0.0769,0.0,1.0,0.0,-0.1857,0.9796,0.0769,-0.1971,0.9796,0.0392,0.0,1.0,0.0,-0.1971,0.9796,0.0392,-0.201,0.9796,0.0,0.0,1.0,0.0,-0.201,0.9796,0.0,-0.1971,0.9796,-0.0392,0.0,1.0,0.0,-0.1971,0.9796,-0.0392,-0.1857,0.9796,-0.0769,0.0,1.0,0.0,-0.1857,0.9796,-0.0769,-0.1671,0.9796,-0.1117,0.0,1.0,0.0,-0.1671,0.9796,-0.1117,-0.1421,0.9796,-0.1421,0.0,1.0,0.0,-0.1421,0.9796,-0.1421,-0.1117,0.9796,-0.1671,0.0,1.0,0.0,-0.1117,0.9796,-0.1671,-0.0769,0.9796,-0.1857,0.0,1.0,0.0,-0.0769,0.9796,-0.1857,-0.0392,0.9796,-0.1971,0.0,1.0,0.0,-0.0392,0.9796,-0.1971,0.0,0.9796,-0.201,0.0,1.0,0.0,0.0,0.9796,-0.201,0.0392,0.9796,-0.1971,0.0,1.0,0.0,0.0392,0.9796,-0.1971,0.0769,0.9796,-0.1857,0.0,1.0,0.0,0.0769,0.9796,-0.1857,0.1117,0.9796,-0.1671,0.0,1.0,0.0,0.1117,0.9796,-0.1671,0.1421,0.9796,-0.1421,0.0,1.0,0.0,0.1421,0.9796,-0.1421,0.1671,0.9796,-0.1117,0.0,1.0,0.0,0.1671,0.9796,-0.1117,0.1857,0.9796,-0.0769,0.0,1.0,0.0,0.1857,0.9796,-0.0769,0.1971,0.9796,-0.0392,0.0,1.0,0.0,0.1971,0.9796,-0.0392,0.201,0.9796,0.0,0.0,1.0,0.0,0.201,0.9796,0.0,0.1971,0.9796,0.0392,0.0,1.0,0.0,0.1971,0.9796,0.0392,0.1857,0.9796,0.0769,0.0,1.0,0.0,0.1857,0.9796,0.0769,0.1671,0.9796,0.1117,0.0,1.0,0.0,0.1671,0.9796,0.1117,0.1421,0.9796,0.1421,0.0,1.0,0.0,0.1421,0.9796,0.1421,0.1117,0.9796,0.1671,0.0,1.0,0.0,0.1117,0.9796,0.1671,0.0769,0.9796,0.1857,0.0,1.0,0.0,0.0769,0.9796,0.1857,0.0392,0.9796,0.1971,0.0,1.0,0.0,0.0392,0.9796,0.1971,0.0,0.9796,0.201,0.0,0.9796,0.201,0.0,0.9217,0.3879,-0.0757,0.9217,0.3804,0.0,0.9796,0.201,-0.0757,0.9217,0.3804,-0.0392,0.9796,0.1971,-0.0392,0.9796,0.1971,-0.0757,0.9217,0.3804,-0.1484,0.9217,0.3584,-0.0392,0.9796,0.1971,-0.1484,0.9217,0.3584,-0.0769,0.9796,0.1857,-0.0769,0.9796,0.1857,-0.1484,0.9217,0.3584,-0.2155,0.9217,0.3225,-0.0769,0.9796,0.1857,-0.2155,0.9217,0.3225,-0.1117,0.9796,0.1671,-0.1117,0.9796,0.1671,-0.2155,0.9217,0.3225,-0.2743,0.9217,0.2743,-0.1117,0.9796,0.1671,-0.2743,0.9217,0.2743,-0.1421,0.9796,0.1421,-0.1421,0.9796,0.1421,-0.2743,0.9217,0.2743,-0.3225,0.9217,0.2155,-0.1421,0.9796,0.1421,-0.3225,0.9217,0.2155,-0.1671,0.9796,0.1117,-0.1671,0.9796,0.1117,-0.3225,0.9217,0.2155,-0.3584,0.9217,0.1484,-0.1671,0.9796,0.1117,-0.3584,0.9217,0.1484,-0.1857,0.9796,0.0769,-0.1857,0.9796,0.0769,-0.3584,0.9217,0.1484,-0.3804,0.9217,0.0757,-0.1857,0.9796,0.0769,-0.3804,0.9217,0.0757,-0.1971,0.9796,0.0392,-0.1971,0.9796,0.0392,-0.3804,0.9217,0.0757,-0.3879,0.9217,0.0,-0.1971,0.9796,0.0392,-0.3879,0.9217,0.0,-0.201,0.9796,0.0,-0.201,0.9796,0.0,-0.3879,0.9217,0.0,-0.3804,0.9217,-0.0757,-0.201,0.9796,0.0,-0.3804,0.9217,-0.0757,-0.1971,0.9796,-0.0392,-0.1971,0.9796,-0.0392,-0.3804,0.9217,-0.0757,-0.3584,0.9217,-0.1484,-0.1971,0.9796,-0.0392,-0.3584,0.9217,-0.1484,-0.1857,0.9796,-0.0769,-0.1857,0.9796,-0.0769,-0.3584,0.9217,-0.1484,-0.3225,0.9217,-0.2155,-0.1857,0.9796,-0.0769,-0.3225,0.9217,-0.2155,-0.1671,0.9796,-0.1117,-0.1671,0.9796,-0.1117,-0.3225,0.9217,-0.2155,-0.2743,0.9217,-0.2743,-0.1671,0.9796,-0.1117,-0.2743,0.9217,-0.2743,-0.1421,0.9796,-0.1421,-0.1421,0.9796,-0.1421,-0.2743,0.9217,-0.2743,-0.2155,0.9217,-0.3225,-0.1421,0.9796,-0.1421,-0.2155,0.9217,-0.3225,-0.1117,0.9796,-0.1671,-0.1117,0.9796,-0.1671,-0.2155,0.9217,-0.3225,-0.1484,0.9217,-0.3584,-0.1117,0.9796,-0.1671,-0.1484,0.9217,-0.3584,-0.0769,0.9796,-0.1857,-0.0769,0.9796,-0.1857,-0.1484,0.9217,-0.3584,-0.0757,0.9217,-0.3804,-0.0769,0.9796,-0.1857,-0.0757,0.9217,-0.3804,-0.0392,0.9796,-0.1971,-0.0392,0.9796,-0.1971,-0.0757,0.9217,-0.3804,0.0,0.9217,-0.3879,-0.0392,0.9796,-0.1971,0.0,0.9217,-0.3879,0.0,0.9796,-0.201,0.0,0.9796,-0.201,0.0,0.9217,-0.3879,0.0757,0.9217,-0.3804,0.0,0.9796,-0.201,0.0757,0.9217,-0.3804,0.0392,0.9796,-0.1971,0.0392,0.9796,-0.1971,0.0757,0.9217,-0.3804,0.1484,0.9217,-0.3584,0.0392,0.9796,-0.1971,0.1484,0.9217,-0.3584,0.0769,0.9796,-0.1857,0.0769,0.9796,-0.1857,0.1484,0.9217,-0.3584,0.2155,0.9217,-0.3225,0.0769,0.9796,-0.1857,0.2155,0.9217,-0.3225,0.1117,0.9796,-0.1671,0.1117,0.9796,-0.1671,0.2155,0.9217,-0.3225,0.2743,0.9217,-0.2743,0.1117,0.9796,-0.1671,0.2743,0.9217,-0.2743,0.1421,0.9796,-0.1421,0.1421,0.9796,-0.1421,0.2743,0.9217,-0.2743,0.3225,0.9217,-0.2155,0.1421,0.9796,-0.1421,0.3225,0.9217,-0.2155,0.1671,0.9796,-0.1117,0.1671,0.9796,-0.1117,0.3225,0.9217,-0.2155,0.3584,0.9217,-0.1484,0.1671,0.9796,-0.1117,0.3584,0.9217,-0.1484,0.1857,0.9796,-0.0769,0.1857,0.9796,-0.0769,0.3584,0.9217,-0.1484,0.3804,0.9217,-0.0757,0.1857,0.9796,-0.0769,0.3804,0.9217,-0.0757,0.1971,0.9796,-0.0392,0.1971,0.9796,-0.0392,0.3804,0.9217,-0.0757,0.3879,0.9217,0.0,0.1971,0.9796,-0.0392,0.3879,0.9217,0.0,0.201,0.9796,0.0,0.201,0.9796,0.0,0.3879,0.9217,0.0,0.3804,0.9217,0.0757,0.201,0.9796,0.0,0.3804,0.9217,0.0757,0.1971,0.9796,0.0392,0.1971,0.9796,0.0392,0.3804,0.9217,0.0757,0.3584,0.9217,0.1484,0.1971,0.9796,0.0392,0.3584,0.9217,0.1484,0.1857,0.9796,0.0769,0.1857,0.9796,0.0769,0.3584,0.9217,0.1484,0.3225,0.9217,0.2155,0.1857,0.9796,0.0769,0.3225,0.9217,0.2155,0.1671,0.9796,0.1117,0.1671,0.9796,0.1117,0.3225,0.9217,0.2155,0.2743,0.9217,0.2743,0.1671,0.9796,0.1117,0.2743,0.9217,0.2743,0.1421,0.9796,0.1421,0.1421,0.9796,0.1421,0.2743,0.9217,0.2743,0.2155,0.9217,0.3225,0.1421,0.9796,0.1421,0.2155,0.9217,0.3225,0.1117,0.9796,0.1671,0.1117,0.9796,0.1671,0.2155,0.9217,0.3225,0.1484,0.9217,0.3584,0.1117,0.9796,0.1671,0.1484,0.9217,0.3584,0.0769,0.9796,0.1857,0.0769,0.9796,0.1857,0.1484,0.9217,0.3584,0.0757,0.9217,0.3804,0.0769,0.9796,0.1857,0.0757,0.9217,0.3804,0.0392,0.9796,0.1971,0.0392,0.9796,0.1971,0.0757,0.9217,0.3804,0.0,0.9217,0.3879,0.0392,0.9796,0.1971,0.0,0.9217,0.3879,0.0,0.9796,0.201,0.0,0.9217,0.3879,0.0,0.8286,0.5598,-0.1092,0.8286,0.549,0.0,0.9217,0.3879,-0.1092,0.8286,0.549,-0.0757,0.9217,0.3804,-0.0757,0.9217,0.3804,-0.1092,0.8286,0.549,-0.2142,0.8286,0.5172,-0.0757,0.9217,0.3804,-0.2142,0.8286,0.5172,-0.1484,0.9217,0.3584,-0.1484,0.9217,0.3584,-0.2142,0.8286,0.5172,-0.311,0.8286,0.4654,-0.1484,0.9217,0.3584,-0.311,0.8286,0.4654,-0.2155,0.9217,0.3225,-0.2155,0.9217,0.3225,-0.311,0.8286,0.4654,-0.3958,0.8286,0.3958,-0.2155,0.9217,0.3225,-0.3958,0.8286,0.3958,-0.2743,0.9217,0.2743,-0.2743,0.9217,0.2743,-0.3958,0.8286,0.3958,-0.4654,0.8286,0.311,-0.2743,0.9217,0.2743,-0.4654,0.8286,0.311,-0.3225,0.9217,0.2155,-0.3225,0.9217,0.2155,-0.4654,0.8286,0.311,-0.5172,0.8286,0.2142,-0.3225,0.9217,0.2155,-0.5172,0.8286,0.2142,-0.3584,0.9217,0.1484,-0.3584,0.9217,0.1484,-0.5172,0.8286,0.2142,-0.549,0.8286,0.1092,-0.3584,0.9217,0.1484,-0.549,0.8286,0.1092,-0.3804,0.9217,0.0757,-0.3804,0.9217,0.0757,-0.549,0.8286,0.1092,-0.5598,0.8286,0.0,-0.3804,0.9217,0.0757,-0.5598,0.8286,0.0,-0.3879,0.9217,0.0,-0.3879,0.9217,0.0,-0.5598,0.8286,0.0,-0.549,0.8286,-0.1092,-0.3879,0.9217,0.0,-0.549,0.8286,-0.1092,-0.3804,0.9217,-0.0757,-0.3804,0.9217,-0.0757,-0.549,0.8286,-0.1092,-0.5172,0.8286,-0.2142,-0.3804,0.9217,-0.0757,-0.5172,0.8286,-0.2142,-0.3584,0.9217,-0.1484,-0.3584,0.9217,-0.1484,-0.5172,0.8286,-0.2142,-0.4654,0.8286,-0.311,-0.3584,0.9217,-0.1484,-0.4654,0.8286,-0.311,-0.3225,0.9217,-0.2155,-0.3225,0.9217,-0.2155,-0.4654,0.8286,-0.311,-0.3958,0.8286,-0.3958,-0.3225,0.9217,-0.2155,-0.3958,0.8286,-0.3958,-0.2743,0.9217,-0.2743,-0.2743,0.9217,-0.2743,-0.3958,0.8286,-0.3958,-0.311,0.8286,-0.4654,-0.2743,0.9217,-0.2743,-0.311,0.8286,-0.4654,-0.2155,0.9217,-0.3225,-0.2155,0.9217,-0.3225,-0.311,0.8286,-0.4654,-0.2142,0.8286,-0.5172,-0.2155,0.9217,-0.3225,-0.2142,0.8286,-0.5172,-0.1484,0.9217,-0.3584,-0.1484,0.9217,-0.3584,-0.2142,0.8286,-0.5172,-0.1092,0.8286,-0.549,-0.1484,0.9217,-0.3584,-0.1092,0.8286,-0.549,-0.0757,0.9217,-0.3804,-0.0757,0.9217,-0.3804,-0.1092,0.8286,-0.549,0.0,0.8286,-0.5598,-0.0757,0.9217,-0.3804,0.0,0.8286,-0.5598,0.0,0.9217,-0.3879,0.0,0.9217,-0.3879,0.0,0.8286,-0.5598,0.1092,0.8286,-0.549,0.0,0.9217,-0.3879,0.1092,0.8286,-0.549,0.0757,0.9217,-0.3804,0.0757,0.9217,-0.3804,0.1092,0.8286,-0.549,0.2142,0.8286,-0.5172,0.0757,0.9217,-0.3804,0.2142,0.8286,-0.5172,0.1484,0.9217,-0.3584,0.1484,0.9217,-0.3584,0.2142,0.8286,-0.5172,0.311,0.8286,-0.4654,0.1484,0.9217,-0.3584,0.311,0.8286,-0.4654,0.2155,0.9217,-0.3225,0.2155,0.9217,-0.3225,0.311,0.8286,-0.4654,0.3958,0.8286,-0.3958,0.2155,0.9217,-0.3225,0.3958,0.8286,-0.3958,0.2743,0.9217,-0.2743,0.2743,0.9217,-0.2743,0.3958,0.8286,-0.3958,0.4654,0.8286,-0.311,0.2743,0.9217,-0.2743,0.4654,0.8286,-0.311,0.3225,0.9217,-0.2155,0.3225,0.9217,-0.2155,0.4654,0.8286,-0.311,0.5172,0.8286,-0.2142,0.3225,0.9217,-0.2155,0.5172,0.8286,-0.2142,0.3584,0.9217,-0.1484,0.3584,0.9217,-0.1484,0.5172,0.8286,-0.2142,0.549,0.8286,-0.1092,0.3584,0.9217,-0.1484,0.549,0.8286,-0.1092,0.3804,0.9217,-0.0757,0.3804,0.9217,-0.0757,0.549,0.8286,-0.1092,0.5598,0.8286,0.0,0.3804,0.9217,-0.0757,0.5598,0.8286,0.0,0.3879,0.9217,0.0,0.3879,0.9217,0.0,0.5598,0.8286,0.0,0.549,0.8286,0.1092,0.3879,0.9217,0.0,0.549,0.8286,0.1092,0.3804,0.9217,0.0757,0.3804,0.9217,0.0757,0.549,0.8286,0.1092,0.5172,0.8286,0.2142,0.3804,0.9217,0.0757,0.5172,0.8286,0.2142,0.3584,0.9217,0.1484,0.3584,0.9217,0.1484,0.5172,0.8286,0.2142,0.4654,0.8286,0.311,0.3584,0.9217,0.1484,0.4654,0.8286,0.311,0.3225,0.9217,0.2155,0.3225,0.9217,0.2155,0.4654,0.8286,0.311,0.3958,0.8286,0.3958,0.3225,0.9217,0.2155,0.3958,0.8286,0.3958,0.2743,0.9217,0.2743,0.2743,0.9217,0.2743,0.3958,0.8286,0.3958,0.311,0.8286,0.4654,0.2743,0.9217,0.2743,0.311,0.8286,0.4654,0.2155,0.9217,0.3225,0.2155,0.9217,0.3225,0.311,0.8286,0.4654,0.2142,0.8286,0.5172,0.2155,0.9217,0.3225,0.2142,0.8286,0.5172,0.1484,0.9217,0.3584,0.1484,0.9217,0.3584,0.2142,0.8286,0.5172,0.1092,0.8286,0.549,0.1484,0.9217,0.3584,0.1092,0.8286,0.549,0.0757,0.9217,0.3804,0.0757,0.9217,0.3804,0.1092,0.8286,0.549,0.0,0.8286,0.5598,0.0757,0.9217,0.3804,0.0,0.8286,0.5598,0.0,0.9217,0.3879,0.0,0.8286,0.5598,0.0,0.7041,0.7101,-0.1385,0.7041,0.6965,0.0,0.8286,0.5598,-0.1385,0.7041,0.6965,-0.1092,0.8286,0.549,-0.1092,0.8286,0.549,-0.1385,0.7041,0.6965,-0.2718,0.7041,0.6561,-0.1092,0.8286,0.549,-0.2718,0.7041,0.6561,-0.2142,0.8286,0.5172,-0.2142,0.8286,0.5172,-0.2718,0.7041,0.6561,-0.3945,0.7041,0.5905,-0.2142,0.8286,0.5172,-0.3945,0.7041,0.5905,-0.311,0.8286,0.4654,-0.311,0.8286,0.4654,-0.3945,0.7041,0.5905,-0.5021,0.7041,0.5021,-0.311,0.8286,0.4654,-0.5021,0.7041,0.5021,-0.3958,0.8286,0.3958,-0.3958,0.8286,0.3958,-0.5021,0.7041,0.5021,-0.5905,0.7041,0.3945,-0.3958,0.8286,0.3958,-0.5905,0.7041,0.3945,-0.4654,0.8286,0.311,-0.4654,0.8286,0.311,-0.5905,0.7041,0.3945,-0.6561,0.7041,0.2718,-0.4654,0.8286,0.311,-0.6561,0.7041,0.2718,-0.5172,0.8286,0.2142,-0.5172,0.8286,0.2142,-0.6561,0.7041,0.2718,-0.6965,0.7041,0.1385,-0.5172,0.8286,0.2142,-0.6965,0.7041,0.1385,-0.549,0.8286,0.1092,-0.549,0.8286,0.1092,-0.6965,0.7041,0.1385,-0.7101,0.7041,0.0,-0.549,0.8286,0.1092,-0.7101,0.7041,0.0,-0.5598,0.8286,0.0,-0.5598,0.8286,0.0,-0.7101,0.7041,0.0,-0.6965,0.7041,-0.1385,-0.5598,0.8286,0.0,-0.6965,0.7041,-0.1385,-0.549,0.8286,-0.1092,-0.549,0.8286,-0.1092,-0.6965,0.7041,-0.1385,-0.6561,0.7041,-0.2718,-0.549,0.8286,-0.1092,-0.6561,0.7041,-0.2718,-0.5172,0.8286,-0.2142,-0.5172,0.8286,-0.2142,-0.6561,0.7041,-0.2718,-0.5905,0.7041,-0.3945,-0.5172,0.8286,-0.2142,-0.5905,0.7041,-0.3945,-0.4654,0.8286,-0.311,-0.4654,0.8286,-0.311,-0.5905,0.7041,-0.3945,-0.5021,0.7041,-0.5021,-0.4654,0.8286,-0.311,-0.5021,0.7041,-0.5021,-0.3958,0.8286,-0.3958,-0.3958,0.8286,-0.3958,-0.5021,0.7041,-0.5021,-0.3945,0.7041,-0.5905,-0.3958,0.8286,-0.3958,-0.3945,0.7041,-0.5905,-0.311,0.8286,-0.4654,-0.311,0.8286,-0.4654,-0.3945,0.7041,-0.5905,-0.2718,0.7041,-0.6561,-0.311,0.8286,-0.4654,-0.2718,0.7041,-0.6561,-0.2142,0.8286,-0.5172,-0.2142,0.8286,-0.5172,-0.2718,0.7041,-0.6561,-0.1385,0.7041,-0.6965,-0.2142,0.8286,-0.5172,-0.1385,0.7041,-0.6965,-0.1092,0.8286,-0.549,-0.1092,0.8286,-0.549,-0.1385,0.7041,-0.6965,0.0,0.7041,-0.7101,-0.1092,0.8286,-0.549,0.0,0.7041,-0.7101,0.0,0.8286,-0.5598,0.0,0.8286,-0.5598,0.0,0.7041,-0.7101,0.1385,0.7041,-0.6965,0.0,0.8286,-0.5598,0.1385,0.7041,-0.6965,0.1092,0.8286,-0.549,0.1092,0.8286,-0.549,0.1385,0.7041,-0.6965,0.2718,0.7041,-0.6561,0.1092,0.8286,-0.549,0.2718,0.7041,-0.6561,0.2142,0.8286,-0.5172,0.2142,0.8286,-0.5172,0.2718,0.7041,-0.6561,0.3945,0.7041,-0.5905,0.2142,0.8286,-0.5172,0.3945,0.7041,-0.5905,0.311,0.8286,-0.4654,0.311,0.8286,-0.4654,0.3945,0.7041,-0.5905,0.5021,0.7041,-0.5021,0.311,0.8286,-0.4654,0.5021,0.7041,-0.5021,0.3958,0.8286,-0.3958,0.3958,0.8286,-0.3958,0.5021,0.7041,-0.5021,0.5905,0.7041,-0.3945,0.3958,0.8286,-0.3958,0.5905,0.7041,-0.3945,0.4654,0.8286,-0.311,0.4654,0.8286,-0.311,0.5905,0.7041,-0.3945,0.6561,0.7041,-0.2718,0.4654,0.8286,-0.311,0.6561,0.7041,-0.2718,0.5172,0.8286,-0.2142,0.5172,0.8286,-0.2142,0.6561,0.7041,-0.2718,0.6965,0.7041,-0.1385,0.5172,0.8286,-0.2142,0.6965,0.7041,-0.1385,0.549,0.8286,-0.1092,0.549,0.8286,-0.1092,0.6965,0.7041,-0.1385,0.7101,0.7041,0.0,0.549,0.8286,-0.1092,0.7101,0.7041,0.0,0.5598,0.8286,0.0,0.5598,0.8286,0.0,0.7101,0.7041,0.0,0.6965,0.7041,0.1385,0.5598,0.8286,0.0,0.6965,0.7041,0.1385,0.549,0.8286,0.1092,0.549,0.8286,0.1092,0.6965,0.7041,0.1385,0.6561,0.7041,0.2718,0.549,0.8286,0.1092,0.6561,0.7041,0.2718,0.5172,0.8286,0.2142,0.5172,0.8286,0.2142,0.6561,0.7041,0.2718,0.5905,0.7041,0.3945,0.5172,0.8286,0.2142,0.5905,0.7041,0.3945,0.4654,0.8286,0.311,0.4654,0.8286,0.311,0.5905,0.7041,0.3945,0.5021,0.7041,0.5021,0.4654,0.8286,0.311,0.5021,0.7041,0.5021,0.3958,0.8286,0.3958,0.3958,0.8286,0.3958,0.5021,0.7041,0.5021,0.3945,0.7041,0.5905,0.3958,0.8286,0.3958,0.3945,0.7041,0.5905,0.311,0.8286,0.4654,0.311,0.8286,0.4654,0.3945,0.7041,0.5905,0.2718,0.7041,0.6561,0.311,0.8286,0.4654,0.2718,0.7041,0.6561,0.2142,0.8286,0.5172,0.2142,0.8286,0.5172,0.2718,0.7041,0.6561,0.1385,0.7041,0.6965,0.2142,0.8286,0.5172,0.1385,0.7041,0.6965,0.1092,0.8286,0.549,0.1092,0.8286,0.549,0.1385,0.7041,0.6965,0.0,0.7041,0.7101,0.1092,0.8286,0.549,0.0,0.7041,0.7101,0.0,0.8286,0.5598,0.0,0.7041,0.7101,0.0,0.5528,0.8333,-0.1626,0.5528,0.8173,0.0,0.7041,0.7101,-0.1626,0.5528,0.8173,-0.1385,0.7041,0.6965,-0.1385,0.7041,0.6965,-0.1626,0.5528,0.8173,-0.3189,0.5528,0.7699,-0.1385,0.7041,0.6965,-0.3189,0.5528,0.7699,-0.2718,0.7041,0.6561,-0.2718,0.7041,0.6561,-0.3189,0.5528,0.7699,-0.463,0.5528,0.6929,-0.2718,0.7041,0.6561,-0.463,0.5528,0.6929,-0.3945,0.7041,0.5905,-0.3945,0.7041,0.5905,-0.463,0.5528,0.6929,-0.5893,0.5528,0.5893,-0.3945,0.7041,0.5905,-0.5893,0.5528,0.5893,-0.5021,0.7041,0.5021,-0.5021,0.7041,0.5021,-0.5893,0.5528,0.5893,-0.6929,0.5528,0.463,-0.5021,0.7041,0.5021,-0.6929,0.5528,0.463,-0.5905,0.7041,0.3945,-0.5905,0.7041,0.3945,-0.6929,0.5528,0.463,-0.7699,0.5528,0.3189,-0.5905,0.7041,0.3945,-0.7699,0.5528,0.3189,-0.6561,0.7041,0.2718,-0.6561,0.7041,0.2718,-0.7699,0.5528,0.3189,-0.8173,0.5528,0.1626,-0.6561,0.7041,0.2718,-0.8173,0.5528,0.1626,-0.6965,0.7041,0.1385,-0.6965,0.7041,0.1385,-0.8173,0.5528,0.1626,-0.8333,0.5528,0.0,-0.6965,0.7041,0.1385,-0.8333,0.5528,0.0,-0.7101,0.7041,0.0,-0.7101,0.7041,0.0,-0.8333,0.5528,0.0,-0.8173,0.5528,-0.1626,-0.7101,0.7041,0.0,-0.8173,0.5528,-0.1626,-0.6965,0.7041,-0.1385,-0.6965,0.7041,-0.1385,-0.8173,0.5528,-0.1626,-0.7699,0.5528,-0.3189,-0.6965,0.7041,-0.1385,-0.7699,0.5528,-0.3189,-0.6561,0.7041,-0.2718,-0.6561,0.7041,-0.2718,-0.7699,0.5528,-0.3189,-0.6929,0.5528,-0.463,-0.6561,0.7041,-0.2718,-0.6929,0.5528,-0.463,-0.5905,0.7041,-0.3945,-0.5905,0.7041,-0.3945,-0.6929,0.5528,-0.463,-0.5893,0.5528,-0.5893,-0.5905,0.7041,-0.3945,-0.5893,0.5528,-0.5893,-0.5021,0.7041,-0.5021,-0.5021,0.7041,-0.5021,-0.5893,0.5528,-0.5893,-0.463,0.5528,-0.6929,-0.5021,0.7041,-0.5021,-0.463,0.5528,-0.6929,-0.3945,0.7041,-0.5905,-0.3945,0.7041,-0.5905,-0.463,0.5528,-0.6929,-0.3189,0.5528,-0.7699,-0.3945,0.7041,-0.5905,-0.3189,0.5528,-0.7699,-0.2718,0.7041,-0.6561,-0.2718,0.7041,-0.6561,-0.3189,0.5528,-0.7699,-0.1626,0.5528,-0.8173,-0.2718,0.7041,-0.6561,-0.1626,0.5528,-0.8173,-0.1385,0.7041,-0.6965,-0.1385,0.7041,-0.6965,-0.1626,0.5528,-0.8173,0.0,0.5528,-0.8333,-0.1385,0.7041,-0.6965,0.0,0.5528,-0.8333,0.0,0.7041,-0.7101,0.0,0.7041,-0.7101,0.0,0.5528,-0.8333,0.1626,0.5528,-0.8173,0.0,0.7041,-0.7101,0.1626,0.5528,-0.8173,0.1385,0.7041,-0.6965,0.1385,0.7041,-0.6965,0.1626,0.5528,-0.8173,0.3189,0.5528,-0.7699,0.1385,0.7041,-0.6965,0.3189,0.5528,-0.7699,0.2718,0.7041,-0.6561,0.2718,0.7041,-0.6561,0.3189,0.5528,-0.7699,0.463,0.5528,-0.6929,0.2718,0.7041,-0.6561,0.463,0.5528,-0.6929,0.3945,0.7041,-0.5905,0.3945,0.7041,-0.5905,0.463,0.5528,-0.6929,0.5893,0.5528,-0.5893,0.3945,0.7041,-0.5905,0.5893,0.5528,-0.5893,0.5021,0.7041,-0.5021,0.5021,0.7041,-0.5021,0.5893,0.5528,-0.5893,0.6929,0.5528,-0.463,0.5021,0.7041,-0.5021,0.6929,0.5528,-0.463,0.5905,0.7041,-0.3945,0.5905,0.7041,-0.3945,0.6929,0.5528,-0.463,0.7699,0.5528,-0.3189,0.5905,0.7041,-0.3945,0.7699,0.5528,-0.3189,0.6561,0.7041,-0.2718,0.6561,0.7041,-0.2718,0.7699,0.5528,-0.3189,0.8173,0.5528,-0.1626,0.6561,0.7041,-0.2718,0.8173,0.5528,-0.1626,0.6965,0.7041,-0.1385,0.6965,0.7041,-0.1385,0.8173,0.5528,-0.1626,0.8333,0.5528,0.0,0.6965,0.7041,-0.1385,0.8333,0.5528,0.0,0.7101,0.7041,0.0,0.7101,0.7041,0.0,0.8333,0.5528,0.0,0.8173,0.5528,0.1626,0.7101,0.7041,0.0,0.8173,0.5528,0.1626,0.6965,0.7041,0.1385,0.6965,0.7041,0.1385,0.8173,0.5528,0.1626,0.7699,0.5528,0.3189,0.6965,0.7041,0.1385,0.7699,0.5528,0.3189,0.6561,0.7041,0.2718,0.6561,0.7041,0.2718,0.7699,0.5528,0.3189,0.6929,0.5528,0.463,0.6561,0.7041,0.2718,0.6929,0.5528,0.463,0.5905,0.7041,0.3945,0.5905,0.7041,0.3945,0.6929,0.5528,0.463,0.5893,0.5528,0.5893,0.5905,0.7041,0.3945,0.5893,0.5528,0.5893,0.5021,0.7041,0.5021,0.5021,0.7041,0.5021,0.5893,0.5528,0.5893,0.463,0.5528,0.6929,0.5021,0.7041,0.5021,0.463,0.5528,0.6929,0.3945,0.7041,0.5905,0.3945,0.7041,0.5905,0.463,0.5528,0.6929,0.3189,0.5528,0.7699,0.3945,0.7041,0.5905,0.3189,0.5528,0.7699,0.2718,0.7041,0.6561,0.2718,0.7041,0.6561,0.3189,0.5528,0.7699,0.1626,0.5528,0.8173,0.2718,0.7041,0.6561,0.1626,0.5528,0.8173,0.1385,0.7041,0.6965,0.1385,0.7041,0.6965,0.1626,0.5528,0.8173,0.0,0.5528,0.8333,0.1385,0.7041,0.6965,0.0,0.5528,0.8333,0.0,0.7041,0.7101,0.0,0.5528,0.8333,0.0,0.3805,0.9248,-0.1804,0.3805,0.907,0.0,0.5528,0.8333,-0.1804,0.3805,0.907,-0.1626,0.5528,0.8173,-0.1626,0.5528,0.8173,-0.1804,0.3805,0.907,-0.3539,0.3805,0.8544,-0.1626,0.5528,0.8173,-0.3539,0.3805,0.8544,-0.3189,0.5528,0.7699,-0.3189,0.5528,0.7699,-0.3539,0.3805,0.8544,-0.5138,0.3805,0.7689,-0.3189,0.5528,0.7699,-0.5138,0.3805,0.7689,-0.463,0.5528,0.6929,-0.463,0.5528,0.6929,-0.5138,0.3805,0.7689,-0.6539,0.3805,0.6539,-0.463,0.5528,0.6929,-0.6539,0.3805,0.6539,-0.5893,0.5528,0.5893,-0.5893,0.5528,0.5893,-0.6539,0.3805,0.6539,-0.7689,0.3805,0.5138,-0.5893,0.5528,0.5893,-0.7689,0.3805,0.5138,-0.6929,0.5528,0.463,-0.6929,0.5528,0.463,-0.7689,0.3805,0.5138,-0.8544,0.3805,0.3539,-0.6929,0.5528,0.463,-0.8544,0.3805,0.3539,-0.7699,0.5528,0.3189,-0.7699,0.5528,0.3189,-0.8544,0.3805,0.3539,-0.907,0.3805,0.1804,-0.7699,0.5528,0.3189,-0.907,0.3805,0.1804,-0.8173,0.5528,0.1626,-0.8173,0.5528,0.1626,-0.907,0.3805,0.1804,-0.9248,0.3805,0.0,-0.8173,0.5528,0.1626,-0.9248,0.3805,0.0,-0.8333,0.5528,0.0,-0.8333,0.5528,0.0,-0.9248,0.3805,0.0,-0.907,0.3805,-0.1804,-0.8333,0.5528,0.0,-0.907,0.3805,-0.1804,-0.8173,0.5528,-0.1626,-0.8173,0.5528,-0.1626,-0.907,0.3805,-0.1804,-0.8544,0.3805,-0.3539,-0.8173,0.5528,-0.1626,-0.8544,0.3805,-0.3539,-0.7699,0.5528,-0.3189,-0.7699,0.5528,-0.3189,-0.8544,0.3805,-0.3539,-0.7689,0.3805,-0.5138,-0.7699,0.5528,-0.3189,-0.7689,0.3805,-0.5138,-0.6929,0.5528,-0.463,-0.6929,0.5528,-0.463,-0.7689,0.3805,-0.5138,-0.6539,0.3805,-0.6539,-0.6929,0.5528,-0.463,-0.6539,0.3805,-0.6539,-0.5893,0.5528,-0.5893,-0.5893,0.5528,-0.5893,-0.6539,0.3805,-0.6539,-0.5138,0.3805,-0.7689,-0.5893,0.5528,-0.5893,-0.5138,0.3805,-0.7689,-0.463,0.5528,-0.6929,-0.463,0.5528,-0.6929,-0.5138,0.3805,-0.7689,-0.3539,0.3805,-0.8544,-0.463,0.5528,-0.6929,-0.3539,0.3805,-0.8544,-0.3189,0.5528,-0.7699,-0.3189,0.5528,-0.7699,-0.3539,0.3805,-0.8544,-0.1804,0.3805,-0.907,-0.3189,0.5528,-0.7699,-0.1804,0.3805,-0.907,-0.1626,0.5528,-0.8173,-0.1626,0.5528,-0.8173,-0.1804,0.3805,-0.907,0.0,0.3805,-0.9248,-0.1626,0.5528,-0.8173,0.0,0.3805,-0.9248,0.0,0.5528,-0.8333,0.0,0.5528,-0.8333,0.0,0.3805,-0.9248,0.1804,0.3805,-0.907,0.0,0.5528,-0.8333,0.1804,0.3805,-0.907,0.1626,0.5528,-0.8173,0.1626,0.5528,-0.8173,0.1804,0.3805,-0.907,0.3539,0.3805,-0.8544,0.1626,0.5528,-0.8173,0.3539,0.3805,-0.8544,0.3189,0.5528,-0.7699,0.3189,0.5528,-0.7699,0.3539,0.3805,-0.8544,0.5138,0.3805,-0.7689,0.3189,0.5528,-0.7699,0.5138,0.3805,-0.7689,0.463,0.5528,-0.6929,0.463,0.5528,-0.6929,0.5138,0.3805,-0.7689,0.6539,0.3805,-0.6539,0.463,0.5528,-0.6929,0.6539,0.3805,-0.6539,0.5893,0.5528,-0.5893,0.5893,0.5528,-0.5893,0.6539,0.3805,-0.6539,0.7689,0.3805,-0.5138,0.5893,0.5528,-0.5893,0.7689,0.3805,-0.5138,0.6929,0.5528,-0.463,0.6929,0.5528,-0.463,0.7689,0.3805,-0.5138,0.8544,0.3805,-0.3539,0.6929,0.5528,-0.463,0.8544,0.3805,-0.3539,0.7699,0.5528,-0.3189,0.7699,0.5528,-0.3189,0.8544,0.3805,-0.3539,0.907,0.3805,-0.1804,0.7699,0.5528,-0.3189,0.907,0.3805,-0.1804,0.8173,0.5528,-0.1626,0.8173,0.5528,-0.1626,0.907,0.3805,-0.1804,0.9248,0.3805,0.0,0.8173,0.5528,-0.1626,0.9248,0.3805,0.0,0.8333,0.5528,0.0,0.8333,0.5528,0.0,0.9248,0.3805,0.0,0.907,0.3805,0.1804,0.8333,0.5528,0.0,0.907,0.3805,0.1804,0.8173,0.5528,0.1626,0.8173,0.5528,0.1626,0.907,0.3805,0.1804,0.8544,0.3805,0.3539,0.8173,0.5528,0.1626,0.8544,0.3805,0.3539,0.7699,0.5528,0.3189,0.7699,0.5528,0.3189,0.8544,0.3805,0.3539,0.7689,0.3805,0.5138,0.7699,0.5528,0.3189,0.7689,0.3805,0.5138,0.6929,0.5528,0.463,0.6929,0.5528,0.463,0.7689,0.3805,0.5138,0.6539,0.3805,0.6539,0.6929,0.5528,0.463,0.6539,0.3805,0.6539,0.5893,0.5528,0.5893,0.5893,0.5528,0.5893,0.6539,0.3805,0.6539,0.5138,0.3805,0.7689,0.5893,0.5528,0.5893,0.5138,0.3805,0.7689,0.463,0.5528,0.6929,0.463,0.5528,0.6929,0.5138,0.3805,0.7689,0.3539,0.3805,0.8544,0.463,0.5528,0.6929,0.3539,0.3805,0.8544,0.3189,0.5528,0.7699,0.3189,0.5528,0.7699,0.3539,0.3805,0.8544,0.1804,0.3805,0.907,0.3189,0.5528,0.7699,0.1804,0.3805,0.907,0.1626,0.5528,0.8173,0.1626,0.5528,0.8173,0.1804,0.3805,0.907,0.0,0.3805,0.9248,0.1626,0.5528,0.8173,0.0,0.3805,0.9248,0.0,0.5528,0.8333,0.0,0.3805,0.9248,0.0,0.1939,0.981,-0.1914,0.1939,0.9622,0.0,0.3805,0.9248,-0.1914,0.1939,0.9622,-0.1804,0.3805,0.907,-0.1804,0.3805,0.907,-0.1914,0.1939,0.9622,-0.3754,0.1939,0.9063,-0.1804,0.3805,0.907,-0.3754,0.1939,0.9063,-0.3539,0.3805,0.8544,-0.3539,0.3805,0.8544,-0.3754,0.1939,0.9063,-0.545,0.1939,0.8157,-0.3539,0.3805,0.8544,-0.545,0.1939,0.8157,-0.5138,0.3805,0.7689,-0.5138,0.3805,0.7689,-0.545,0.1939,0.8157,-0.6937,0.1939,0.6937,-0.5138,0.3805,0.7689,-0.6937,0.1939,0.6937,-0.6539,0.3805,0.6539,-0.6539,0.3805,0.6539,-0.6937,0.1939,0.6937,-0.8157,0.1939,0.545,-0.6539,0.3805,0.6539,-0.8157,0.1939,0.545,-0.7689,0.3805,0.5138,-0.7689,0.3805,0.5138,-0.8157,0.1939,0.545,-0.9063,0.1939,0.3754,-0.7689,0.3805,0.5138,-0.9063,0.1939,0.3754,-0.8544,0.3805,0.3539,-0.8544,0.3805,0.3539,-0.9063,0.1939,0.3754,-0.9622,0.1939,0.1914,-0.8544,0.3805,0.3539,-0.9622,0.1939,0.1914,-0.907,0.3805,0.1804,-0.907,0.3805,0.1804,-0.9622,0.1939,0.1914,-0.981,0.1939,0.0,-0.907,0.3805,0.1804,-0.981,0.1939,0.0,-0.9248,0.3805,0.0,-0.9248,0.3805,0.0,-0.981,0.1939,0.0,-0.9622,0.1939,-0.1914,-0.9248,0.3805,0.0,-0.9622,0.1939,-0.1914,-0.907,0.3805,-0.1804,-0.907,0.3805,-0.1804,-0.9622,0.1939,-0.1914,-0.9063,0.1939,-0.3754,-0.907,0.3805,-0.1804,-0.9063,0.1939,-0.3754,-0.8544,0.3805,-0.3539,-0.8544,0.3805,-0.3539,-0.9063,0.1939,-0.3754,-0.8157,0.1939,-0.545,-0.8544,0.3805,-0.3539,-0.8157,0.1939,-0.545,-0.7689,0.3805,-0.5138,-0.7689,0.3805,-0.5138,-0.8157,0.1939,-0.545,-0.6937,0.1939,-0.6937,-0.7689,0.3805,-0.5138,-0.6937,0.1939,-0.6937,-0.6539,0.3805,-0.6539,-0.6539,0.3805,-0.6539,-0.6937,0.1939,-0.6937,-0.545,0.1939,-0.8157,-0.6539,0.3805,-0.6539,-0.545,0.1939,-0.8157,-0.5138,0.3805,-0.7689,-0.5138,0.3805,-0.7689,-0.545,0.1939,-0.8157,-0.3754,0.1939,-0.9063,-0.5138,0.3805,-0.7689,-0.3754,0.1939,-0.9063,-0.3539,0.3805,-0.8544,-0.3539,0.3805,-0.8544,-0.3754,0.1939,-0.9063,-0.1914,0.1939,-0.9622,-0.3539,0.3805,-0.8544,-0.1914,0.1939,-0.9622,-0.1804,0.3805,-0.907,-0.1804,0.3805,-0.907,-0.1914,0.1939,-0.9622,0.0,0.1939,-0.981,-0.1804,0.3805,-0.907,0.0,0.1939,-0.981,0.0,0.3805,-0.9248,0.0,0.3805,-0.9248,0.0,0.1939,-0.981,0.1914,0.1939,-0.9622,0.0,0.3805,-0.9248,0.1914,0.1939,-0.9622,0.1804,0.3805,-0.907,0.1804,0.3805,-0.907,0.1914,0.1939,-0.9622,0.3754,0.1939,-0.9063,0.1804,0.3805,-0.907,0.3754,0.1939,-0.9063,0.3539,0.3805,-0.8544,0.3539,0.3805,-0.8544,0.3754,0.1939,-0.9063,0.545,0.1939,-0.8157,0.3539,0.3805,-0.8544,0.545,0.1939,-0.8157,0.5138,0.3805,-0.7689,0.5138,0.3805,-0.7689,0.545,0.1939,-0.8157,0.6937,0.1939,-0.6937,0.5138,0.3805,-0.7689,0.6937,0.1939,-0.6937,0.6539,0.3805,-0.6539,0.6539,0.3805,-0.6539,0.6937,0.1939,-0.6937,0.8157,0.1939,-0.545,0.6539,0.3805,-0.6539,0.8157,0.1939,-0.545,0.7689,0.3805,-0.5138,0.7689,0.3805,-0.5138,0.8157,0.1939,-0.545,0.9063,0.1939,-0.3754,0.7689,0.3805,-0.5138,0.9063,0.1939,-0.3754,0.8544,0.3805,-0.3539,0.8544,0.3805,-0.3539,0.9063,0.1939,-0.3754,0.9622,0.1939,-0.1914,0.8544,0.3805,-0.3539,0.9622,0.1939,-0.1914,0.907,0.3805,-0.1804,0.907,0.3805,-0.1804,0.9622,0.1939,-0.1914,0.981,0.1939,0.0,0.907,0.3805,-0.1804,0.981,0.1939,0.0,0.9248,0.3805,0.0,0.9248,0.3805,0.0,0.981,0.1939,0.0,0.9622,0.1939,0.1914,0.9248,0.3805,0.0,0.9622,0.1939,0.1914,0.907,0.3805,0.1804,0.907,0.3805,0.1804,0.9622,0.1939,0.1914,0.9063,0.1939,0.3754,0.907,0.3805,0.1804,0.9063,0.1939,0.3754,0.8544,0.3805,0.3539,0.8544,0.3805,0.3539,0.9063,0.1939,0.3754,0.8157,0.1939,0.545,0.8544,0.3805,0.3539,0.8157,0.1939,0.545,0.7689,0.3805,0.5138,0.7689,0.3805,0.5138,0.8157,0.1939,0.545,0.6937,0.1939,0.6937,0.7689,0.3805,0.5138,0.6937,0.1939,0.6937,0.6539,0.3805,0.6539,0.6539,0.3805,0.6539,0.6937,0.1939,0.6937,0.545,0.1939,0.8157,0.6539,0.3805,0.6539,0.545,0.1939,0.8157,0.5138,0.3805,0.7689,0.5138,0.3805,0.7689,0.545,0.1939,0.8157,0.3754,0.1939,0.9063,0.5138,0.3805,0.7689,0.3754,0.1939,0.9063,0.3539,0.3805,0.8544,0.3539,0.3805,0.8544,0.3754,0.1939,0.9063,0.1914,0.1939,0.9622,0.3539,0.3805,0.8544,0.1914,0.1939,0.9622,0.1804,0.3805,0.907,0.1804,0.3805,0.907,0.1914,0.1939,0.9622,0.0,0.1939,0.981,0.1804,0.3805,0.907,0.0,0.1939,0.981,0.0,0.3805,0.9248,0.0,0.1939,0.981,0.0,0.0,1.0,-0.1951,0.0,0.9808,0.0,0.1939,0.981,-0.1951,0.0,0.9808,-0.1914,0.1939,0.9622,-0.1914,0.1939,0.9622,-0.1951,0.0,0.9808,-0.3827,0.0,0.9239,-0.1914,0.1939,0.9622,-0.3827,0.0,0.9239,-0.3754,0.1939,0.9063,-0.3754,0.1939,0.9063,-0.3827,0.0,0.9239,-0.5556,0.0,0.8315,-0.3754,0.1939,0.9063,-0.5556,0.0,0.8315,-0.545,0.1939,0.8157,-0.545,0.1939,0.8157,-0.5556,0.0,0.8315,-0.7071,0.0,0.7071,-0.545,0.1939,0.8157,-0.7071,0.0,0.7071,-0.6937,0.1939,0.6937,-0.6937,0.1939,0.6937,-0.7071,0.0,0.7071,-0.8315,0.0,0.5556,-0.6937,0.1939,0.6937,-0.8315,0.0,0.5556,-0.8157,0.1939,0.545,-0.8157,0.1939,0.545,-0.8315,0.0,0.5556,-0.9239,0.0,0.3827,-0.8157,0.1939,0.545,-0.9239,0.0,0.3827,-0.9063,0.1939,0.3754,-0.9063,0.1939,0.3754,-0.9239,0.0,0.3827,-0.9808,0.0,0.1951,-0.9063,0.1939,0.3754,-0.9808,0.0,0.1951,-0.9622,0.1939,0.1914,-0.9622,0.1939,0.1914,-0.9808,0.0,0.1951,-1.0,0.0,0.0,-0.9622,0.1939,0.1914,-1.0,0.0,0.0,-0.981,0.1939,0.0,-0.981,0.1939,0.0,-1.0,0.0,0.0,-0.9808,0.0,-0.1951,-0.981,0.1939,0.0,-0.9808,0.0,-0.1951,-0.9622,0.1939,-0.1914,-0.9622,0.1939,-0.1914,-0.9808,0.0,-0.1951,-0.9239,0.0,-0.3827,-0.9622,0.1939,-0.1914,-0.9239,0.0,-0.3827,-0.9063,0.1939,-0.3754,-0.9063,0.1939,-0.3754,-0.9239,0.0,-0.3827,-0.8315,0.0,-0.5556,-0.9063,0.1939,-0.3754,-0.8315,0.0,-0.5556,-0.8157,0.1939,-0.545,-0.8157,0.1939,-0.545,-0.8315,0.0,-0.5556,-0.7071,0.0,-0.7071,-0.8157,0.1939,-0.545,-0.7071,0.0,-0.7071,-0.6937,0.1939,-0.6937,-0.6937,0.1939,-0.6937,-0.7071,0.0,-0.7071,-0.5556,0.0,-0.8315,-0.6937,0.1939,-0.6937,-0.5556,0.0,-0.8315,-0.545,0.1939,-0.8157,-0.545,0.1939,-0.8157,-0.5556,0.0,-0.8315,-0.3827,0.0,-0.9239,-0.545,0.1939,-0.8157,-0.3827,0.0,-0.9239,-0.3754,0.1939,-0.9063,-0.3754,0.1939,-0.9063,-0.3827,0.0,-0.9239,-0.1951,0.0,-0.9808,-0.3754,0.1939,-0.9063,-0.1951,0.0,-0.9808,-0.1914,0.1939,-0.9622,-0.1914,0.1939,-0.9622,-0.1951,0.0,-0.9808,0.0,0.0,-1.0,-0.1914,0.1939,-0.9622,0.0,0.0,-1.0,0.0,0.1939,-0.981,0.0,0.1939,-0.981,0.0,0.0,-1.0,0.1951,0.0,-0.9808,0.0,0.1939,-0.981,0.1951,0.0,-0.9808,0.1914,0.1939,-0.9622,0.1914,0.1939,-0.9622,0.1951,0.0,-0.9808,0.3827,0.0,-0.9239,0.1914,0.1939,-0.9622,0.3827,0.0,-0.9239,0.3754,0.1939,-0.9063,0.3754,0.1939,-0.9063,0.3827,0.0,-0.9239,0.5556,0.0,-0.8315,0.3754,0.1939,-0.9063,0.5556,0.0,-0.8315,0.545,0.1939,-0.8157,0.545,0.1939,-0.8157,0.5556,0.0,-0.8315,0.7071,0.0,-0.7071,0.545,0.1939,-0.8157,0.7071,0.0,-0.7071,0.6937,0.1939,-0.6937,0.6937,0.1939,-0.6937,0.7071,0.0,-0.7071,0.8315,0.0,-0.5556,0.6937,0.1939,-0.6937,0.8315,0.0,-0.5556,0.8157,0.1939,-0.545,0.8157,0.1939,-0.545,0.8315,0.0,-0.5556,0.9239,0.0,-0.3827,0.8157,0.1939,-0.545,0.9239,0.0,-0.3827,0.9063,0.1939,-0.3754,0.9063,0.1939,-0.3754,0.9239,0.0,-0.3827,0.9808,0.0,-0.1951,0.9063,0.1939,-0.3754,0.9808,0.0,-0.1951,0.9622,0.1939,-0.1914,0.9622,0.1939,-0.1914,0.9808,0.0,-0.1951,1.0,0.0,0.0,0.9622,0.1939,-0.1914,1.0,0.0,0.0,0.981,0.1939,0.0,0.981,0.1939,0.0,1.0,0.0,0.0,0.9808,0.0,0.1951,0.981,0.1939,0.0,0.9808,0.0,0.1951,0.9622,0.1939,0.1914,0.9622,0.1939,0.1914,0.9808,0.0,0.1951,0.9239,0.0,0.3827,0.9622,0.1939,0.1914,0.9239,0.0,0.3827,0.9063,0.1939,0.3754,0.9063,0.1939,0.3754,0.9239,0.0,0.3827,0.8315,0.0,0.5556,0.9063,0.1939,0.3754,0.8315,0.0,0.5556,0.8157,0.1939,0.545,0.8157,0.1939,0.545,0.8315,0.0,0.5556,0.7071,0.0,0.7071,0.8157,0.1939,0.545,0.7071,0.0,0.7071,0.6937,0.1939,0.6937,0.6937,0.1939,0.6937,0.7071,0.0,0.7071,0.5556,0.0,0.8315,0.6937,0.1939,0.6937,0.5556,0.0,0.8315,0.545,0.1939,0.8157,0.545,0.1939,0.8157,0.5556,0.0,0.8315,0.3827,0.0,0.9239,0.545,0.1939,0.8157,0.3827,0.0,0.9239,0.3754,0.1939,0.9063,0.3754,0.1939,0.9063,0.3827,0.0,0.9239,0.1951,0.0,0.9808,0.3754,0.1939,0.9063,0.1951,0.0,0.9808,0.1914,0.1939,0.9622,0.1914,0.1939,0.9622,0.1951,0.0,0.9808,0.0,0.0,1.0,0.1914,0.1939,0.9622,0.0,0.0,1.0,0.0,0.1939,0.981,0.0,0.0,1.0,0.0,-0.1939,0.981,-0.1914,-0.1939,0.9622,0.0,0.0,1.0,-0.1914,-0.1939,0.9622,-0.1951,0.0,0.9808,-0.1951,0.0,0.9808,-0.1914,-0.1939,0.9622,-0.3754,-0.1939,0.9063,-0.1951,0.0,0.9808,-0.3754,-0.1939,0.9063,-0.3827,0.0,0.9239,-0.3827,0.0,0.9239,-0.3754,-0.1939,0.9063,-0.545,-0.1939,0.8157,-0.3827,0.0,0.9239,-0.545,-0.1939,0.8157,-0.5556,0.0,0.8315,-0.5556,0.0,0.8315,-0.545,-0.1939,0.8157,-0.6937,-0.1939,0.6937,-0.5556,0.0,0.8315,-0.6937,-0.1939,0.6937,-0.7071,0.0,0.7071,-0.7071,0.0,0.7071,-0.6937,-0.1939,0.6937,-0.8157,-0.1939,0.545,-0.7071,0.0,0.7071,-0.8157,-0.1939,0.545,-0.8315,0.0,0.5556,-0.8315,0.0,0.5556,-0.8157,-0.1939,0.545,-0.9063,-0.1939,0.3754,-0.8315,0.0,0.5556,-0.9063,-0.1939,0.3754,-0.9239,0.0,0.3827,-0.9239,0.0,0.3827,-0.9063,-0.1939,0.3754,-0.9622,-0.1939,0.1914,-0.9239,0.0,0.3827,-0.9622,-0.1939,0.1914,-0.9808,0.0,0.1951,-0.9808,0.0,0.1951,-0.9622,-0.1939,0.1914,-0.981,-0.1939,0.0,-0.9808,0.0,0.1951,-0.981,-0.1939,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-0.981,-0.1939,0.0,-0.9622,-0.1939,-0.1914,-1.0,0.0,0.0,-0.9622,-0.1939,-0.1914,-0.9808,0.0,-0.1951,-0.9808,0.0,-0.1951,-0.9622,-0.1939,-0.1914,-0.9063,-0.1939,-0.3754,-0.9808,0.0,-0.1951,-0.9063,-0.1939,-0.3754,-0.9239,0.0,-0.3827,-0.9239,0.0,-0.3827,-0.9063,-0.1939,-0.3754,-0.8157,-0.1939,-0.545,-0.9239,0.0,-0.3827,-0.8157,-0.1939,-0.545,-0.8315,0.0,-0.5556,-0.8315,0.0,-0.5556,-0.8157,-0.1939,-0.545,-0.6937,-0.1939,-0.6937,-0.8315,0.0,-0.5556,-0.6937,-0.1939,-0.6937,-0.7071,0.0,-0.7071,-0.7071,0.0,-0.7071,-0.6937,-0.1939,-0.6937,-0.545,-0.1939,-0.8157,-0.7071,0.0,-0.7071,-0.545,-0.1939,-0.8157,-0.5556,0.0,-0.8315,-0.5556,0.0,-0.8315,-0.545,-0.1939,-0.8157,-0.3754,-0.1939,-0.9063,-0.5556,0.0,-0.8315,-0.3754,-0.1939,-0.9063,-0.3827,0.0,-0.9239,-0.3827,0.0,-0.9239,-0.3754,-0.1939,-0.9063,-0.1914,-0.1939,-0.9622,-0.3827,0.0,-0.9239,-0.1914,-0.1939,-0.9622,-0.1951,0.0,-0.9808,-0.1951,0.0,-0.9808,-0.1914,-0.1939,-0.9622,0.0,-0.1939,-0.981,-0.1951,0.0,-0.9808,0.0,-0.1939,-0.981,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,-0.1939,-0.981,0.1914,-0.1939,-0.9622,0.0,0.0,-1.0,0.1914,-0.1939,-0.9622,0.1951,0.0,-0.9808,0.1951,0.0,-0.9808,0.1914,-0.1939,-0.9622,0.3754,-0.1939,-0.9063,0.1951,0.0,-0.9808,0.3754,-0.1939,-0.9063,0.3827,0.0,-0.9239,0.3827,0.0,-0.9239,0.3754,-0.1939,-0.9063,0.545,-0.1939,-0.8157,0.3827,0.0,-0.9239,0.545,-0.1939,-0.8157,0.5556,0.0,-0.8315,0.5556,0.0,-0.8315,0.545,-0.1939,-0.8157,0.6937,-0.1939,-0.6937,0.5556,0.0,-0.8315,0.6937,-0.1939,-0.6937,0.7071,0.0,-0.7071,0.7071,0.0,-0.7071,0.6937,-0.1939,-0.6937,0.8157,-0.1939,-0.545,0.7071,0.0,-0.7071,0.8157,-0.1939,-0.545,0.8315,0.0,-0.5556,0.8315,0.0,-0.5556,0.8157,-0.1939,-0.545,0.9063,-0.1939,-0.3754,0.8315,0.0,-0.5556,0.9063,-0.1939,-0.3754,0.9239,0.0,-0.3827,0.9239,0.0,-0.3827,0.9063,-0.1939,-0.3754,0.9622,-0.1939,-0.1914,0.9239,0.0,-0.3827,0.9622,-0.1939,-0.1914,0.9808,0.0,-0.1951,0.9808,0.0,-0.1951,0.9622,-0.1939,-0.1914,0.981,-0.1939,0.0,0.9808,0.0,-0.1951,0.981,-0.1939,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.981,-0.1939,0.0,0.9622,-0.1939,0.1914,1.0,0.0,0.0,0.9622,-0.1939,0.1914,0.9808,0.0,0.1951,0.9808,0.0,0.1951,0.9622,-0.1939,0.1914,0.9063,-0.1939,0.3754,0.9808,0.0,0.1951,0.9063,-0.1939,0.3754,0.9239,0.0,0.3827,0.9239,0.0,0.3827,0.9063,-0.1939,0.3754,0.8157,-0.1939,0.545,0.9239,0.0,0.3827,0.8157,-0.1939,0.545,0.8315,0.0,0.5556,0.8315,0.0,0.5556,0.8157,-0.1939,0.545,0.6937,-0.1939,0.6937,0.8315,0.0,0.5556,0.6937,-0.1939,0.6937,0.7071,0.0,0.7071,0.7071,0.0,0.7071,0.6937,-0.1939,0.6937,0.545,-0.1939,0.8157,0.7071,0.0,0.7071,0.545,-0.1939,0.8157,0.5556,0.0,0.8315,0.5556,0.0,0.8315,0.545,-0.1939,0.8157,0.3754,-0.1939,0.9063,0.5556,0.0,0.8315,0.3754,-0.1939,0.9063,0.3827,0.0,0.9239,0.3827,0.0,0.9239,0.3754,-0.1939,0.9063,0.1914,-0.1939,0.9622,0.3827,0.0,0.9239,0.1914,-0.1939,0.9622,0.1951,0.0,0.9808,0.1951,0.0,0.9808,0.1914,-0.1939,0.9622,0.0,-0.1939,0.981,0.1951,0.0,0.9808,0.0,-0.1939,0.981,0.0,0.0,1.0,0.0,-0.1939,0.981,0.0,-0.3805,0.9248,-0.1804,-0.3805,0.907,0.0,-0.1939,0.981,-0.1804,-0.3805,0.907,-0.1914,-0.1939,0.9622,-0.1914,-0.1939,0.9622,-0.1804,-0.3805,0.907,-0.3539,-0.3805,0.8544,-0.1914,-0.1939,0.9622,-0.3539,-0.3805,0.8544,-0.3754,-0.1939,0.9063,-0.3754,-0.1939,0.9063,-0.3539,-0.3805,0.8544,-0.5138,-0.3805,0.7689,-0.3754,-0.1939,0.9063,-0.5138,-0.3805,0.7689,-0.545,-0.1939,0.8157,-0.545,-0.1939,0.8157,-0.5138,-0.3805,0.7689,-0.6539,-0.3805,0.6539,-0.545,-0.1939,0.8157,-0.6539,-0.3805,0.6539,-0.6937,-0.1939,0.6937,-0.6937,-0.1939,0.6937,-0.6539,-0.3805,0.6539,-0.7689,-0.3805,0.5138,-0.6937,-0.1939,0.6937,-0.7689,-0.3805,0.5138,-0.8157,-0.1939,0.545,-0.8157,-0.1939,0.545,-0.7689,-0.3805,0.5138,-0.8544,-0.3805,0.3539,-0.8157,-0.1939,0.545,-0.8544,-0.3805,0.3539,-0.9063,-0.1939,0.3754,-0.9063,-0.1939,0.3754,-0.8544,-0.3805,0.3539,-0.907,-0.3805,0.1804,-0.9063,-0.1939,0.3754,-0.907,-0.3805,0.1804,-0.9622,-0.1939,0.1914,-0.9622,-0.1939,0.1914,-0.907,-0.3805,0.1804,-0.9248,-0.3805,0.0,-0.9622,-0.1939,0.1914,-0.9248,-0.3805,0.0,-0.981,-0.1939,0.0,-0.981,-0.1939,0.0,-0.9248,-0.3805,0.0,-0.907,-0.3805,-0.1804,-0.981,-0.1939,0.0,-0.907,-0.3805,-0.1804,-0.9622,-0.1939,-0.1914,-0.9622,-0.1939,-0.1914,-0.907,-0.3805,-0.1804,-0.8544,-0.3805,-0.3539,-0.9622,-0.1939,-0.1914,-0.8544,-0.3805,-0.3539,-0.9063,-0.1939,-0.3754,-0.9063,-0.1939,-0.3754,-0.8544,-0.3805,-0.3539,-0.7689,-0.3805,-0.5138,-0.9063,-0.1939,-0.3754,-0.7689,-0.3805,-0.5138,-0.8157,-0.1939,-0.545,-0.8157,-0.1939,-0.545,-0.7689,-0.3805,-0.5138,-0.6539,-0.3805,-0.6539,-0.8157,-0.1939,-0.545,-0.6539,-0.3805,-0.6539,-0.6937,-0.1939,-0.6937,-0.6937,-0.1939,-0.6937,-0.6539,-0.3805,-0.6539,-0.5138,-0.3805,-0.7689,-0.6937,-0.1939,-0.6937,-0.5138,-0.3805,-0.7689,-0.545,-0.1939,-0.8157,-0.545,-0.1939,-0.8157,-0.5138,-0.3805,-0.7689,-0.3539,-0.3805,-0.8544,-0.545,-0.1939,-0.8157,-0.3539,-0.3805,-0.8544,-0.3754,-0.1939,-0.9063,-0.3754,-0.1939,-0.9063,-0.3539,-0.3805,-0.8544,-0.1804,-0.3805,-0.907,-0.3754,-0.1939,-0.9063,-0.1804,-0.3805,-0.907,-0.1914,-0.1939,-0.9622,-0.1914,-0.1939,-0.9622,-0.1804,-0.3805,-0.907,0.0,-0.3805,-0.9248,-0.1914,-0.1939,-0.9622,0.0,-0.3805,-0.9248,0.0,-0.1939,-0.981,0.0,-0.1939,-0.981,0.0,-0.3805,-0.9248,0.1804,-0.3805,-0.907,0.0,-0.1939,-0.981,0.1804,-0.3805,-0.907,0.1914,-0.1939,-0.9622,0.1914,-0.1939,-0.9622,0.1804,-0.3805,-0.907,0.3539,-0.3805,-0.8544,0.1914,-0.1939,-0.9622,0.3539,-0.3805,-0.8544,0.3754,-0.1939,-0.9063,0.3754,-0.1939,-0.9063,0.3539,-0.3805,-0.8544,0.5138,-0.3805,-0.7689,0.3754,-0.1939,-0.9063,0.5138,-0.3805,-0.7689,0.545,-0.1939,-0.8157,0.545,-0.1939,-0.8157,0.5138,-0.3805,-0.7689,0.6539,-0.3805,-0.6539,0.545,-0.1939,-0.8157,0.6539,-0.3805,-0.6539,0.6937,-0.1939,-0.6937,0.6937,-0.1939,-0.6937,0.6539,-0.3805,-0.6539,0.7689,-0.3805,-0.5138,0.6937,-0.1939,-0.6937,0.7689,-0.3805,-0.5138,0.8157,-0.1939,-0.545,0.8157,-0.1939,-0.545,0.7689,-0.3805,-0.5138,0.8544,-0.3805,-0.3539,0.8157,-0.1939,-0.545,0.8544,-0.3805,-0.3539,0.9063,-0.1939,-0.3754,0.9063,-0.1939,-0.3754,0.8544,-0.3805,-0.3539,0.907,-0.3805,-0.1804,0.9063,-0.1939,-0.3754,0.907,-0.3805,-0.1804,0.9622,-0.1939,-0.1914,0.9622,-0.1939,-0.1914,0.907,-0.3805,-0.1804,0.9248,-0.3805,0.0,0.9622,-0.1939,-0.1914,0.9248,-0.3805,0.0,0.981,-0.1939,0.0,0.981,-0.1939,0.0,0.9248,-0.3805,0.0,0.907,-0.3805,0.1804,0.981,-0.1939,0.0,0.907,-0.3805,0.1804,0.9622,-0.1939,0.1914,0.9622,-0.1939,0.1914,0.907,-0.3805,0.1804,0.8544,-0.3805,0.3539,0.9622,-0.1939,0.1914,0.8544,-0.3805,0.3539,0.9063,-0.1939,0.3754,0.9063,-0.1939,0.3754,0.8544,-0.3805,0.3539,0.7689,-0.3805,0.5138,0.9063,-0.1939,0.3754,0.7689,-0.3805,0.5138,0.8157,-0.1939,0.545,0.8157,-0.1939,0.545,0.7689,-0.3805,0.5138,0.6539,-0.3805,0.6539,0.8157,-0.1939,0.545,0.6539,-0.3805,0.6539,0.6937,-0.1939,0.6937,0.6937,-0.1939,0.6937,0.6539,-0.3805,0.6539,0.5138,-0.3805,0.7689,0.6937,-0.1939,0.6937,0.5138,-0.3805,0.7689,0.545,-0.1939,0.8157,0.545,-0.1939,0.8157,0.5138,-0.3805,0.7689,0.3539,-0.3805,0.8544,0.545,-0.1939,0.8157,0.3539,-0.3805,0.8544,0.3754,-0.1939,0.9063,0.3754,-0.1939,0.9063,0.3539,-0.3805,0.8544,0.1804,-0.3805,0.907,0.3754,-0.1939,0.9063,0.1804,-0.3805,0.907,0.1914,-0.1939,0.9622,0.1914,-0.1939,0.9622,0.1804,-0.3805,0.907,0.0,-0.3805,0.9248,0.1914,-0.1939,0.9622,0.0,-0.3805,0.9248,0.0,-0.1939,0.981,0.0,-0.3805,0.9248,0.0,-0.5528,0.8333,-0.1626,-0.5528,0.8173,0.0,-0.3805,0.9248,-0.1626,-0.5528,0.8173,-0.1804,-0.3805,0.907,-0.1804,-0.3805,0.907,-0.1626,-0.5528,0.8173,-0.3189,-0.5528,0.7699,-0.1804,-0.3805,0.907,-0.3189,-0.5528,0.7699,-0.3539,-0.3805,0.8544,-0.3539,-0.3805,0.8544,-0.3189,-0.5528,0.7699,-0.463,-0.5528,0.6929,-0.3539,-0.3805,0.8544,-0.463,-0.5528,0.6929,-0.5138,-0.3805,0.7689,-0.5138,-0.3805,0.7689,-0.463,-0.5528,0.6929,-0.5893,-0.5528,0.5893,-0.5138,-0.3805,0.7689,-0.5893,-0.5528,0.5893,-0.6539,-0.3805,0.6539,-0.6539,-0.3805,0.6539,-0.5893,-0.5528,0.5893,-0.6929,-0.5528,0.463,-0.6539,-0.3805,0.6539,-0.6929,-0.5528,0.463,-0.7689,-0.3805,0.5138,-0.7689,-0.3805,0.5138,-0.6929,-0.5528,0.463,-0.7699,-0.5528,0.3189,-0.7689,-0.3805,0.5138,-0.7699,-0.5528,0.3189,-0.8544,-0.3805,0.3539,-0.8544,-0.3805,0.3539,-0.7699,-0.5528,0.3189,-0.8173,-0.5528,0.1626,-0.8544,-0.3805,0.3539,-0.8173,-0.5528,0.1626,-0.907,-0.3805,0.1804,-0.907,-0.3805,0.1804,-0.8173,-0.5528,0.1626,-0.8333,-0.5528,0.0,-0.907,-0.3805,0.1804,-0.8333,-0.5528,0.0,-0.9248,-0.3805,0.0,-0.9248,-0.3805,0.0,-0.8333,-0.5528,0.0,-0.8173,-0.5528,-0.1626,-0.9248,-0.3805,0.0,-0.8173,-0.5528,-0.1626,-0.907,-0.3805,-0.1804,-0.907,-0.3805,-0.1804,-0.8173,-0.5528,-0.1626,-0.7699,-0.5528,-0.3189,-0.907,-0.3805,-0.1804,-0.7699,-0.5528,-0.3189,-0.8544,-0.3805,-0.3539,-0.8544,-0.3805,-0.3539,-0.7699,-0.5528,-0.3189,-0.6929,-0.5528,-0.463,-0.8544,-0.3805,-0.3539,-0.6929,-0.5528,-0.463,-0.7689,-0.3805,-0.5138,-0.7689,-0.3805,-0.5138,-0.6929,-0.5528,-0.463,-0.5893,-0.5528,-0.5893,-0.7689,-0.3805,-0.5138,-0.5893,-0.5528,-0.5893,-0.6539,-0.3805,-0.6539,-0.6539,-0.3805,-0.6539,-0.5893,-0.5528,-0.5893,-0.463,-0.5528,-0.6929,-0.6539,-0.3805,-0.6539,-0.463,-0.5528,-0.6929,-0.5138,-0.3805,-0.7689,-0.5138,-0.3805,-0.7689,-0.463,-0.5528,-0.6929,-0.3189,-0.5528,-0.7699,-0.5138,-0.3805,-0.7689,-0.3189,-0.5528,-0.7699,-0.3539,-0.3805,-0.8544,-0.3539,-0.3805,-0.8544,-0.3189,-0.5528,-0.7699,-0.1626,-0.5528,-0.8173,-0.3539,-0.3805,-0.8544,-0.1626,-0.5528,-0.8173,-0.1804,-0.3805,-0.907,-0.1804,-0.3805,-0.907,-0.1626,-0.5528,-0.8173,0.0,-0.5528,-0.8333,-0.1804,-0.3805,-0.907,0.0,-0.5528,-0.8333,0.0,-0.3805,-0.9248,0.0,-0.3805,-0.9248,0.0,-0.5528,-0.8333,0.1626,-0.5528,-0.8173,0.0,-0.3805,-0.9248,0.1626,-0.5528,-0.8173,0.1804,-0.3805,-0.907,0.1804,-0.3805,-0.907,0.1626,-0.5528,-0.8173,0.3189,-0.5528,-0.7699,0.1804,-0.3805,-0.907,0.3189,-0.5528,-0.7699,0.3539,-0.3805,-0.8544,0.3539,-0.3805,-0.8544,0.3189,-0.5528,-0.7699,0.463,-0.5528,-0.6929,0.3539,-0.3805,-0.8544,0.463,-0.5528,-0.6929,0.5138,-0.3805,-0.7689,0.5138,-0.3805,-0.7689,0.463,-0.5528,-0.6929,0.5893,-0.5528,-0.5893,0.5138,-0.3805,-0.7689,0.5893,-0.5528,-0.5893,0.6539,-0.3805,-0.6539,0.6539,-0.3805,-0.6539,0.5893,-0.5528,-0.5893,0.6929,-0.5528,-0.463,0.6539,-0.3805,-0.6539,0.6929,-0.5528,-0.463,0.7689,-0.3805,-0.5138,0.7689,-0.3805,-0.5138,0.6929,-0.5528,-0.463,0.7699,-0.5528,-0.3189,0.7689,-0.3805,-0.5138,0.7699,-0.5528,-0.3189,0.8544,-0.3805,-0.3539,0.8544,-0.3805,-0.3539,0.7699,-0.5528,-0.3189,0.8173,-0.5528,-0.1626,0.8544,-0.3805,-0.3539,0.8173,-0.5528,-0.1626,0.907,-0.3805,-0.1804,0.907,-0.3805,-0.1804,0.8173,-0.5528,-0.1626,0.8333,-0.5528,0.0,0.907,-0.3805,-0.1804,0.8333,-0.5528,0.0,0.9248,-0.3805,0.0,0.9248,-0.3805,0.0,0.8333,-0.5528,0.0,0.8173,-0.5528,0.1626,0.9248,-0.3805,0.0,0.8173,-0.5528,0.1626,0.907,-0.3805,0.1804,0.907,-0.3805,0.1804,0.8173,-0.5528,0.1626,0.7699,-0.5528,0.3189,0.907,-0.3805,0.1804,0.7699,-0.5528,0.3189,0.8544,-0.3805,0.3539,0.8544,-0.3805,0.3539,0.7699,-0.5528,0.3189,0.6929,-0.5528,0.463,0.8544,-0.3805,0.3539,0.6929,-0.5528,0.463,0.7689,-0.3805,0.5138,0.7689,-0.3805,0.5138,0.6929,-0.5528,0.463,0.5893,-0.5528,0.5893,0.7689,-0.3805,0.5138,0.5893,-0.5528,0.5893,0.6539,-0.3805,0.6539,0.6539,-0.3805,0.6539,0.5893,-0.5528,0.5893,0.463,-0.5528,0.6929,0.6539,-0.3805,0.6539,0.463,-0.5528,0.6929,0.5138,-0.3805,0.7689,0.5138,-0.3805,0.7689,0.463,-0.5528,0.6929,0.3189,-0.5528,0.7699,0.5138,-0.3805,0.7689,0.3189,-0.5528,0.7699,0.3539,-0.3805,0.8544,0.3539,-0.3805,0.8544,0.3189,-0.5528,0.7699,0.1626,-0.5528,0.8173,0.3539,-0.3805,0.8544,0.1626,-0.5528,0.8173,0.1804,-0.3805,0.907,0.1804,-0.3805,0.907,0.1626,-0.5528,0.8173,0.0,-0.5528,0.8333,0.1804,-0.3805,0.907,0.0,-0.5528,0.8333,0.0,-0.3805,0.9248,0.0,-0.5528,0.8333,0.0,-0.7041,0.7101,-0.1385,-0.7041,0.6965,0.0,-0.5528,0.8333,-0.1385,-0.7041,0.6965,-0.1626,-0.5528,0.8173,-0.1626,-0.5528,0.8173,-0.1385,-0.7041,0.6965,-0.2718,-0.7041,0.6561,-0.1626,-0.5528,0.8173,-0.2718,-0.7041,0.6561,-0.3189,-0.5528,0.7699,-0.3189,-0.5528,0.7699,-0.2718,-0.7041,0.6561,-0.3945,-0.7041,0.5905,-0.3189,-0.5528,0.7699,-0.3945,-0.7041,0.5905,-0.463,-0.5528,0.6929,-0.463,-0.5528,0.6929,-0.3945,-0.7041,0.5905,-0.5021,-0.7041,0.5021,-0.463,-0.5528,0.6929,-0.5021,-0.7041,0.5021,-0.5893,-0.5528,0.5893,-0.5893,-0.5528,0.5893,-0.5021,-0.7041,0.5021,-0.5905,-0.7041,0.3945,-0.5893,-0.5528,0.5893,-0.5905,-0.7041,0.3945,-0.6929,-0.5528,0.463,-0.6929,-0.5528,0.463,-0.5905,-0.7041,0.3945,-0.6561,-0.7041,0.2718,-0.6929,-0.5528,0.463,-0.6561,-0.7041,0.2718,-0.7699,-0.5528,0.3189,-0.7699,-0.5528,0.3189,-0.6561,-0.7041,0.2718,-0.6965,-0.7041,0.1385,-0.7699,-0.5528,0.3189,-0.6965,-0.7041,0.1385,-0.8173,-0.5528,0.1626,-0.8173,-0.5528,0.1626,-0.6965,-0.7041,0.1385,-0.7101,-0.7041,0.0,-0.8173,-0.5528,0.1626,-0.7101,-0.7041,0.0,-0.8333,-0.5528,0.0,-0.8333,-0.5528,0.0,-0.7101,-0.7041,0.0,-0.6965,-0.7041,-0.1385,-0.8333,-0.5528,0.0,-0.6965,-0.7041,-0.1385,-0.8173,-0.5528,-0.1626,-0.8173,-0.5528,-0.1626,-0.6965,-0.7041,-0.1385,-0.6561,-0.7041,-0.2718,-0.8173,-0.5528,-0.1626,-0.6561,-0.7041,-0.2718,-0.7699,-0.5528,-0.3189,-0.7699,-0.5528,-0.3189,-0.6561,-0.7041,-0.2718,-0.5905,-0.7041,-0.3945,-0.7699,-0.5528,-0.3189,-0.5905,-0.7041,-0.3945,-0.6929,-0.5528,-0.463,-0.6929,-0.5528,-0.463,-0.5905,-0.7041,-0.3945,-0.5021,-0.7041,-0.5021,-0.6929,-0.5528,-0.463,-0.5021,-0.7041,-0.5021,-0.5893,-0.5528,-0.5893,-0.5893,-0.5528,-0.5893,-0.5021,-0.7041,-0.5021,-0.3945,-0.7041,-0.5905,-0.5893,-0.5528,-0.5893,-0.3945,-0.7041,-0.5905,-0.463,-0.5528,-0.6929,-0.463,-0.5528,-0.6929,-0.3945,-0.7041,-0.5905,-0.2718,-0.7041,-0.6561,-0.463,-0.5528,-0.6929,-0.2718,-0.7041,-0.6561,-0.3189,-0.5528,-0.7699,-0.3189,-0.5528,-0.7699,-0.2718,-0.7041,-0.6561,-0.1385,-0.7041,-0.6965,-0.3189,-0.5528,-0.7699,-0.1385,-0.7041,-0.6965,-0.1626,-0.5528,-0.8173,-0.1626,-0.5528,-0.8173,-0.1385,-0.7041,-0.6965,0.0,-0.7041,-0.7101,-0.1626,-0.5528,-0.8173,0.0,-0.7041,-0.7101,0.0,-0.5528,-0.8333,0.0,-0.5528,-0.8333,0.0,-0.7041,-0.7101,0.1385,-0.7041,-0.6965,0.0,-0.5528,-0.8333,0.1385,-0.7041,-0.6965,0.1626,-0.5528,-0.8173,0.1626,-0.5528,-0.8173,0.1385,-0.7041,-0.6965,0.2718,-0.7041,-0.6561,0.1626,-0.5528,-0.8173,0.2718,-0.7041,-0.6561,0.3189,-0.5528,-0.7699,0.3189,-0.5528,-0.7699,0.2718,-0.7041,-0.6561,0.3945,-0.7041,-0.5905,0.3189,-0.5528,-0.7699,0.3945,-0.7041,-0.5905,0.463,-0.5528,-0.6929,0.463,-0.5528,-0.6929,0.3945,-0.7041,-0.5905,0.5021,-0.7041,-0.5021,0.463,-0.5528,-0.6929,0.5021,-0.7041,-0.5021,0.5893,-0.5528,-0.5893,0.5893,-0.5528,-0.5893,0.5021,-0.7041,-0.5021,0.5905,-0.7041,-0.3945,0.5893,-0.5528,-0.5893,0.5905,-0.7041,-0.3945,0.6929,-0.5528,-0.463,0.6929,-0.5528,-0.463,0.5905,-0.7041,-0.3945,0.6561,-0.7041,-0.2718,0.6929,-0.5528,-0.463,0.6561,-0.7041,-0.2718,0.7699,-0.5528,-0.3189,0.7699,-0.5528,-0.3189,0.6561,-0.7041,-0.2718,0.6965,-0.7041,-0.1385,0.7699,-0.5528,-0.3189,0.6965,-0.7041,-0.1385,0.8173,-0.5528,-0.1626,0.8173,-0.5528,-0.1626,0.6965,-0.7041,-0.1385,0.7101,-0.7041,0.0,0.8173,-0.5528,-0.1626,0.7101,-0.7041,0.0,0.8333,-0.5528,0.0,0.8333,-0.5528,0.0,0.7101,-0.7041,0.0,0.6965,-0.7041,0.1385,0.8333,-0.5528,0.0,0.6965,-0.7041,0.1385,0.8173,-0.5528,0.1626,0.8173,-0.5528,0.1626,0.6965,-0.7041,0.1385,0.6561,-0.7041,0.2718,0.8173,-0.5528,0.1626,0.6561,-0.7041,0.2718,0.7699,-0.5528,0.3189,0.7699,-0.5528,0.3189,0.6561,-0.7041,0.2718,0.5905,-0.7041,0.3945,0.7699,-0.5528,0.3189,0.5905,-0.7041,0.3945,0.6929,-0.5528,0.463,0.6929,-0.5528,0.463,0.5905,-0.7041,0.3945,0.5021,-0.7041,0.5021,0.6929,-0.5528,0.463,0.5021,-0.7041,0.5021,0.5893,-0.5528,0.5893,0.5893,-0.5528,0.5893,0.5021,-0.7041,0.5021,0.3945,-0.7041,0.5905,0.5893,-0.5528,0.5893,0.3945,-0.7041,0.5905,0.463,-0.5528,0.6929,0.463,-0.5528,0.6929,0.3945,-0.7041,0.5905,0.2718,-0.7041,0.6561,0.463,-0.5528,0.6929,0.2718,-0.7041,0.6561,0.3189,-0.5528,0.7699,0.3189,-0.5528,0.7699,0.2718,-0.7041,0.6561,0.1385,-0.7041,0.6965,0.3189,-0.5528,0.7699,0.1385,-0.7041,0.6965,0.1626,-0.5528,0.8173,0.1626,-0.5528,0.8173,0.1385,-0.7041,0.6965,0.0,-0.7041,0.7101,0.1626,-0.5528,0.8173,0.0,-0.7041,0.7101,0.0,-0.5528,0.8333,0.0,-0.7041,0.7101,0.0,-0.8286,0.5598,-0.1092,-0.8286,0.549,0.0,-0.7041,0.7101,-0.1092,-0.8286,0.549,-0.1385,-0.7041,0.6965,-0.1385,-0.7041,0.6965,-0.1092,-0.8286,0.549,-0.2142,-0.8286,0.5172,-0.1385,-0.7041,0.6965,-0.2142,-0.8286,0.5172,-0.2718,-0.7041,0.6561,-0.2718,-0.7041,0.6561,-0.2142,-0.8286,0.5172,-0.311,-0.8286,0.4654,-0.2718,-0.7041,0.6561,-0.311,-0.8286,0.4654,-0.3945,-0.7041,0.5905,-0.3945,-0.7041,0.5905,-0.311,-0.8286,0.4654,-0.3958,-0.8286,0.3958,-0.3945,-0.7041,0.5905,-0.3958,-0.8286,0.3958,-0.5021,-0.7041,0.5021,-0.5021,-0.7041,0.5021,-0.3958,-0.8286,0.3958,-0.4654,-0.8286,0.311,-0.5021,-0.7041,0.5021,-0.4654,-0.8286,0.311,-0.5905,-0.7041,0.3945,-0.5905,-0.7041,0.3945,-0.4654,-0.8286,0.311,-0.5172,-0.8286,0.2142,-0.5905,-0.7041,0.3945,-0.5172,-0.8286,0.2142,-0.6561,-0.7041,0.2718,-0.6561,-0.7041,0.2718,-0.5172,-0.8286,0.2142,-0.549,-0.8286,0.1092,-0.6561,-0.7041,0.2718,-0.549,-0.8286,0.1092,-0.6965,-0.7041,0.1385,-0.6965,-0.7041,0.1385,-0.549,-0.8286,0.1092,-0.5598,-0.8286,0.0,-0.6965,-0.7041,0.1385,-0.5598,-0.8286,0.0,-0.7101,-0.7041,0.0,-0.7101,-0.7041,0.0,-0.5598,-0.8286,0.0,-0.549,-0.8286,-0.1092,-0.7101,-0.7041,0.0,-0.549,-0.8286,-0.1092,-0.6965,-0.7041,-0.1385,-0.6965,-0.7041,-0.1385,-0.549,-0.8286,-0.1092,-0.5172,-0.8286,-0.2142,-0.6965,-0.7041,-0.1385,-0.5172,-0.8286,-0.2142,-0.6561,-0.7041,-0.2718,-0.6561,-0.7041,-0.2718,-0.5172,-0.8286,-0.2142,-0.4654,-0.8286,-0.311,-0.6561,-0.7041,-0.2718,-0.4654,-0.8286,-0.311,-0.5905,-0.7041,-0.3945,-0.5905,-0.7041,-0.3945,-0.4654,-0.8286,-0.311,-0.3958,-0.8286,-0.3958,-0.5905,-0.7041,-0.3945,-0.3958,-0.8286,-0.3958,-0.5021,-0.7041,-0.5021,-0.5021,-0.7041,-0.5021,-0.3958,-0.8286,-0.3958,-0.311,-0.8286,-0.4654,-0.5021,-0.7041,-0.5021,-0.311,-0.8286,-0.4654,-0.3945,-0.7041,-0.5905,-0.3945,-0.7041,-0.5905,-0.311,-0.8286,-0.4654,-0.2142,-0.8286,-0.5172,-0.3945,-0.7041,-0.5905,-0.2142,-0.8286,-0.5172,-0.2718,-0.7041,-0.6561,-0.2718,-0.7041,-0.6561,-0.2142,-0.8286,-0.5172,-0.1092,-0.8286,-0.549,-0.2718,-0.7041,-0.6561,-0.1092,-0.8286,-0.549,-0.1385,-0.7041,-0.6965,-0.1385,-0.7041,-0.6965,-0.1092,-0.8286,-0.549,0.0,-0.8286,-0.5598,-0.1385,-0.7041,-0.6965,0.0,-0.8286,-0.5598,0.0,-0.7041,-0.7101,0.0,-0.7041,-0.7101,0.0,-0.8286,-0.5598,0.1092,-0.8286,-0.549,0.0,-0.7041,-0.7101,0.1092,-0.8286,-0.549,0.1385,-0.7041,-0.6965,0.1385,-0.7041,-0.6965,0.1092,-0.8286,-0.549,0.2142,-0.8286,-0.5172,0.1385,-0.7041,-0.6965,0.2142,-0.8286,-0.5172,0.2718,-0.7041,-0.6561,0.2718,-0.7041,-0.6561,0.2142,-0.8286,-0.5172,0.311,-0.8286,-0.4654,0.2718,-0.7041,-0.6561,0.311,-0.8286,-0.4654,0.3945,-0.7041,-0.5905,0.3945,-0.7041,-0.5905,0.311,-0.8286,-0.4654,0.3958,-0.8286,-0.3958,0.3945,-0.7041,-0.5905,0.3958,-0.8286,-0.3958,0.5021,-0.7041,-0.5021,0.5021,-0.7041,-0.5021,0.3958,-0.8286,-0.3958,0.4654,-0.8286,-0.311,0.5021,-0.7041,-0.5021,0.4654,-0.8286,-0.311,0.5905,-0.7041,-0.3945,0.5905,-0.7041,-0.3945,0.4654,-0.8286,-0.311,0.5172,-0.8286,-0.2142,0.5905,-0.7041,-0.3945,0.5172,-0.8286,-0.2142,0.6561,-0.7041,-0.2718,0.6561,-0.7041,-0.2718,0.5172,-0.8286,-0.2142,0.549,-0.8286,-0.1092,0.6561,-0.7041,-0.2718,0.549,-0.8286,-0.1092,0.6965,-0.7041,-0.1385,0.6965,-0.7041,-0.1385,0.549,-0.8286,-0.1092,0.5598,-0.8286,0.0,0.6965,-0.7041,-0.1385,0.5598,-0.8286,0.0,0.7101,-0.7041,0.0,0.7101,-0.7041,0.0,0.5598,-0.8286,0.0,0.549,-0.8286,0.1092,0.7101,-0.7041,0.0,0.549,-0.8286,0.1092,0.6965,-0.7041,0.1385,0.6965,-0.7041,0.1385,0.549,-0.8286,0.1092,0.5172,-0.8286,0.2142,0.6965,-0.7041,0.1385,0.5172,-0.8286,0.2142,0.6561,-0.7041,0.2718,0.6561,-0.7041,0.2718,0.5172,-0.8286,0.2142,0.4654,-0.8286,0.311,0.6561,-0.7041,0.2718,0.4654,-0.8286,0.311,0.5905,-0.7041,0.3945,0.5905,-0.7041,0.3945,0.4654,-0.8286,0.311,0.3958,-0.8286,0.3958,0.5905,-0.7041,0.3945,0.3958,-0.8286,0.3958,0.5021,-0.7041,0.5021,0.5021,-0.7041,0.5021,0.3958,-0.8286,0.3958,0.311,-0.8286,0.4654,0.5021,-0.7041,0.5021,0.311,-0.8286,0.4654,0.3945,-0.7041,0.5905,0.3945,-0.7041,0.5905,0.311,-0.8286,0.4654,0.2142,-0.8286,0.5172,0.3945,-0.7041,0.5905,0.2142,-0.8286,0.5172,0.2718,-0.7041,0.6561,0.2718,-0.7041,0.6561,0.2142,-0.8286,0.5172,0.1092,-0.8286,0.549,0.2718,-0.7041,0.6561,0.1092,-0.8286,0.549,0.1385,-0.7041,0.6965,0.1385,-0.7041,0.6965,0.1092,-0.8286,0.549,0.0,-0.8286,0.5598,0.1385,-0.7041,0.6965,0.0,-0.8286,0.5598,0.0,-0.7041,0.7101,0.0,-0.8286,0.5598,0.0,-0.9217,0.3879,-0.0757,-0.9217,0.3804,0.0,-0.8286,0.5598,-0.0757,-0.9217,0.3804,-0.1092,-0.8286,0.549,-0.1092,-0.8286,0.549,-0.0757,-0.9217,0.3804,-0.1484,-0.9217,0.3584,-0.1092,-0.8286,0.549,-0.1484,-0.9217,0.3584,-0.2142,-0.8286,0.5172,-0.2142,-0.8286,0.5172,-0.1484,-0.9217,0.3584,-0.2155,-0.9217,0.3225,-0.2142,-0.8286,0.5172,-0.2155,-0.9217,0.3225,-0.311,-0.8286,0.4654,-0.311,-0.8286,0.4654,-0.2155,-0.9217,0.3225,-0.2743,-0.9217,0.2743,-0.311,-0.8286,0.4654,-0.2743,-0.9217,0.2743,-0.3958,-0.8286,0.3958,-0.3958,-0.8286,0.3958,-0.2743,-0.9217,0.2743,-0.3225,-0.9217,0.2155,-0.3958,-0.8286,0.3958,-0.3225,-0.9217,0.2155,-0.4654,-0.8286,0.311,-0.4654,-0.8286,0.311,-0.3225,-0.9217,0.2155,-0.3584,-0.9217,0.1484,-0.4654,-0.8286,0.311,-0.3584,-0.9217,0.1484,-0.5172,-0.8286,0.2142,-0.5172,-0.8286,0.2142,-0.3584,-0.9217,0.1484,-0.3804,-0.9217,0.0757,-0.5172,-0.8286,0.2142,-0.3804,-0.9217,0.0757,-0.549,-0.8286,0.1092,-0.549,-0.8286,0.1092,-0.3804,-0.9217,0.0757,-0.3879,-0.9217,0.0,-0.549,-0.8286,0.1092,-0.3879,-0.9217,0.0,-0.5598,-0.8286,0.0,-0.5598,-0.8286,0.0,-0.3879,-0.9217,0.0,-0.3804,-0.9217,-0.0757,-0.5598,-0.8286,0.0,-0.3804,-0.9217,-0.0757,-0.549,-0.8286,-0.1092,-0.549,-0.8286,-0.1092,-0.3804,-0.9217,-0.0757,-0.3584,-0.9217,-0.1484,-0.549,-0.8286,-0.1092,-0.3584,-0.9217,-0.1484,-0.5172,-0.8286,-0.2142,-0.5172,-0.8286,-0.2142,-0.3584,-0.9217,-0.1484,-0.3225,-0.9217,-0.2155,-0.5172,-0.8286,-0.2142,-0.3225,-0.9217,-0.2155,-0.4654,-0.8286,-0.311,-0.4654,-0.8286,-0.311,-0.3225,-0.9217,-0.2155,-0.2743,-0.9217,-0.2743,-0.4654,-0.8286,-0.311,-0.2743,-0.9217,-0.2743,-0.3958,-0.8286,-0.3958,-0.3958,-0.8286,-0.3958,-0.2743,-0.9217,-0.2743,-0.2155,-0.9217,-0.3225,-0.3958,-0.8286,-0.3958,-0.2155,-0.9217,-0.3225,-0.311,-0.8286,-0.4654,-0.311,-0.8286,-0.4654,-0.2155,-0.9217,-0.3225,-0.1484,-0.9217,-0.3584,-0.311,-0.8286,-0.4654,-0.1484,-0.9217,-0.3584,-0.2142,-0.8286,-0.5172,-0.2142,-0.8286,-0.5172,-0.1484,-0.9217,-0.3584,-0.0757,-0.9217,-0.3804,-0.2142,-0.8286,-0.5172,-0.0757,-0.9217,-0.3804,-0.1092,-0.8286,-0.549,-0.1092,-0.8286,-0.549,-0.0757,-0.9217,-0.3804,0.0,-0.9217,-0.3879,-0.1092,-0.8286,-0.549,0.0,-0.9217,-0.3879,0.0,-0.8286,-0.5598,0.0,-0.8286,-0.5598,0.0,-0.9217,-0.3879,0.0757,-0.9217,-0.3804,0.0,-0.8286,-0.5598,0.0757,-0.9217,-0.3804,0.1092,-0.8286,-0.549,0.1092,-0.8286,-0.549,0.0757,-0.9217,-0.3804,0.1484,-0.9217,-0.3584,0.1092,-0.8286,-0.549,0.1484,-0.9217,-0.3584,0.2142,-0.8286,-0.5172,0.2142,-0.8286,-0.5172,0.1484,-0.9217,-0.3584,0.2155,-0.9217,-0.3225,0.2142,-0.8286,-0.5172,0.2155,-0.9217,-0.3225,0.311,-0.8286,-0.4654,0.311,-0.8286,-0.4654,0.2155,-0.9217,-0.3225,0.2743,-0.9217,-0.2743,0.311,-0.8286,-0.4654,0.2743,-0.9217,-0.2743,0.3958,-0.8286,-0.3958,0.3958,-0.8286,-0.3958,0.2743,-0.9217,-0.2743,0.3225,-0.9217,-0.2155,0.3958,-0.8286,-0.3958,0.3225,-0.9217,-0.2155,0.4654,-0.8286,-0.311,0.4654,-0.8286,-0.311,0.3225,-0.9217,-0.2155,0.3584,-0.9217,-0.1484,0.4654,-0.8286,-0.311,0.3584,-0.9217,-0.1484,0.5172,-0.8286,-0.2142,0.5172,-0.8286,-0.2142,0.3584,-0.9217,-0.1484,0.3804,-0.9217,-0.0757,0.5172,-0.8286,-0.2142,0.3804,-0.9217,-0.0757,0.549,-0.8286,-0.1092,0.549,-0.8286,-0.1092,0.3804,-0.9217,-0.0757,0.3879,-0.9217,0.0,0.549,-0.8286,-0.1092,0.3879,-0.9217,0.0,0.5598,-0.8286,0.0,0.5598,-0.8286,0.0,0.3879,-0.9217,0.0,0.3804,-0.9217,0.0757,0.5598,-0.8286,0.0,0.3804,-0.9217,0.0757,0.549,-0.8286,0.1092,0.549,-0.8286,0.1092,0.3804,-0.9217,0.0757,0.3584,-0.9217,0.1484,0.549,-0.8286,0.1092,0.3584,-0.9217,0.1484,0.5172,-0.8286,0.2142,0.5172,-0.8286,0.2142,0.3584,-0.9217,0.1484,0.3225,-0.9217,0.2155,0.5172,-0.8286,0.2142,0.3225,-0.9217,0.2155,0.4654,-0.8286,0.311,0.4654,-0.8286,0.311,0.3225,-0.9217,0.2155,0.2743,-0.9217,0.2743,0.4654,-0.8286,0.311,0.2743,-0.9217,0.2743,0.3958,-0.8286,0.3958,0.3958,-0.8286,0.3958,0.2743,-0.9217,0.2743,0.2155,-0.9217,0.3225,0.3958,-0.8286,0.3958,0.2155,-0.9217,0.3225,0.311,-0.8286,0.4654,0.311,-0.8286,0.4654,0.2155,-0.9217,0.3225,0.1484,-0.9217,0.3584,0.311,-0.8286,0.4654,0.1484,-0.9217,0.3584,0.2142,-0.8286,0.5172,0.2142,-0.8286,0.5172,0.1484,-0.9217,0.3584,0.0757,-0.9217,0.3804,0.2142,-0.8286,0.5172,0.0757,-0.9217,0.3804,0.1092,-0.8286,0.549,0.1092,-0.8286,0.549,0.0757,-0.9217,0.3804,0.0,-0.9217,0.3879,0.1092,-0.8286,0.549,0.0,-0.9217,0.3879,0.0,-0.8286,0.5598,0.0,-0.9217,0.3879,0.0,-0.9796,0.201,-0.0392,-0.9796,0.1971,0.0,-0.9217,0.3879,-0.0392,-0.9796,0.1971,-0.0757,-0.9217,0.3804,-0.0757,-0.9217,0.3804,-0.0392,-0.9796,0.1971,-0.0769,-0.9796,0.1857,-0.0757,-0.9217,0.3804,-0.0769,-0.9796,0.1857,-0.1484,-0.9217,0.3584,-0.1484,-0.9217,0.3584,-0.0769,-0.9796,0.1857,-0.1117,-0.9796,0.1671,-0.1484,-0.9217,0.3584,-0.1117,-0.9796,0.1671,-0.2155,-0.9217,0.3225,-0.2155,-0.9217,0.3225,-0.1117,-0.9796,0.1671,-0.1421,-0.9796,0.1421,-0.2155,-0.9217,0.3225,-0.1421,-0.9796,0.1421,-0.2743,-0.9217,0.2743,-0.2743,-0.9217,0.2743,-0.1421,-0.9796,0.1421,-0.1671,-0.9796,0.1117,-0.2743,-0.9217,0.2743,-0.1671,-0.9796,0.1117,-0.3225,-0.9217,0.2155,-0.3225,-0.9217,0.2155,-0.1671,-0.9796,0.1117,-0.1857,-0.9796,0.0769,-0.3225,-0.9217,0.2155,-0.1857,-0.9796,0.0769,-0.3584,-0.9217,0.1484,-0.3584,-0.9217,0.1484,-0.1857,-0.9796,0.0769,-0.1971,-0.9796,0.0392,-0.3584,-0.9217,0.1484,-0.1971,-0.9796,0.0392,-0.3804,-0.9217,0.0757,-0.3804,-0.9217,0.0757,-0.1971,-0.9796,0.0392,-0.201,-0.9796,0.0,-0.3804,-0.9217,0.0757,-0.201,-0.9796,0.0,-0.3879,-0.9217,0.0,-0.3879,-0.9217,0.0,-0.201,-0.9796,0.0,-0.1971,-0.9796,-0.0392,-0.3879,-0.9217,0.0,-0.1971,-0.9796,-0.0392,-0.3804,-0.9217,-0.0757,-0.3804,-0.9217,-0.0757,-0.1971,-0.9796,-0.0392,-0.1857,-0.9796,-0.0769,-0.3804,-0.9217,-0.0757,-0.1857,-0.9796,-0.0769,-0.3584,-0.9217,-0.1484,-0.3584,-0.9217,-0.1484,-0.1857,-0.9796,-0.0769,-0.1671,-0.9796,-0.1117,-0.3584,-0.9217,-0.1484,-0.1671,-0.9796,-0.1117,-0.3225,-0.9217,-0.2155,-0.3225,-0.9217,-0.2155,-0.1671,-0.9796,-0.1117,-0.1421,-0.9796,-0.1421,-0.3225,-0.9217,-0.2155,-0.1421,-0.9796,-0.1421,-0.2743,-0.9217,-0.2743,-0.2743,-0.9217,-0.2743,-0.1421,-0.9796,-0.1421,-0.1117,-0.9796,-0.1671,-0.2743,-0.9217,-0.2743,-0.1117,-0.9796,-0.1671,-0.2155,-0.9217,-0.3225,-0.2155,-0.9217,-0.3225,-0.1117,-0.9796,-0.1671,-0.0769,-0.9796,-0.1857,-0.2155,-0.9217,-0.3225,-0.0769,-0.9796,-0.1857,-0.1484,-0.9217,-0.3584,-0.1484,-0.9217,-0.3584,-0.0769,-0.9796,-0.1857,-0.0392,-0.9796,-0.1971,-0.1484,-0.9217,-0.3584,-0.0392,-0.9796,-0.1971,-0.0757,-0.9217,-0.3804,-0.0757,-0.9217,-0.3804,-0.0392,-0.9796,-0.1971,0.0,-0.9796,-0.201,-0.0757,-0.9217,-0.3804,0.0,-0.9796,-0.201,0.0,-0.9217,-0.3879,0.0,-0.9217,-0.3879,0.0,-0.9796,-0.201,0.0392,-0.9796,-0.1971,0.0,-0.9217,-0.3879,0.0392,-0.9796,-0.1971,0.0757,-0.9217,-0.3804,0.0757,-0.9217,-0.3804,0.0392,-0.9796,-0.1971,0.0769,-0.9796,-0.1857,0.0757,-0.9217,-0.3804,0.0769,-0.9796,-0.1857,0.1484,-0.9217,-0.3584,0.1484,-0.9217,-0.3584,0.0769,-0.9796,-0.1857,0.1117,-0.9796,-0.1671,0.1484,-0.9217,-0.3584,0.1117,-0.9796,-0.1671,0.2155,-0.9217,-0.3225,0.2155,-0.9217,-0.3225,0.1117,-0.9796,-0.1671,0.1421,-0.9796,-0.1421,0.2155,-0.9217,-0.3225,0.1421,-0.9796,-0.1421,0.2743,-0.9217,-0.2743,0.2743,-0.9217,-0.2743,0.1421,-0.9796,-0.1421,0.1671,-0.9796,-0.1117,0.2743,-0.9217,-0.2743,0.1671,-0.9796,-0.1117,0.3225,-0.9217,-0.2155,0.3225,-0.9217,-0.2155,0.1671,-0.9796,-0.1117,0.1857,-0.9796,-0.0769,0.3225,-0.9217,-0.2155,0.1857,-0.9796,-0.0769,0.3584,-0.9217,-0.1484,0.3584,-0.9217,-0.1484,0.1857,-0.9796,-0.0769,0.1971,-0.9796,-0.0392,0.3584,-0.9217,-0.1484,0.1971,-0.9796,-0.0392,0.3804,-0.9217,-0.0757,0.3804,-0.9217,-0.0757,0.1971,-0.9796,-0.0392,0.201,-0.9796,0.0,0.3804,-0.9217,-0.0757,0.201,-0.9796,0.0,0.3879,-0.9217,0.0,0.3879,-0.9217,0.0,0.201,-0.9796,0.0,0.1971,-0.9796,0.0392,0.3879,-0.9217,0.0,0.1971,-0.9796,0.0392,0.3804,-0.9217,0.0757,0.3804,-0.9217,0.0757,0.1971,-0.9796,0.0392,0.1857,-0.9796,0.0769,0.3804,-0.9217,0.0757,0.1857,-0.9796,0.0769,0.3584,-0.9217,0.1484,0.3584,-0.9217,0.1484,0.1857,-0.9796,0.0769,0.1671,-0.9796,0.1117,0.3584,-0.9217,0.1484,0.1671,-0.9796,0.1117,0.3225,-0.9217,0.2155,0.3225,-0.9217,0.2155,0.1671,-0.9796,0.1117,0.1421,-0.9796,0.1421,0.3225,-0.9217,0.2155,0.1421,-0.9796,0.1421,0.2743,-0.9217,0.2743,0.2743,-0.9217,0.2743,0.1421,-0.9796,0.1421,0.1117,-0.9796,0.1671,0.2743,-0.9217,0.2743,0.1117,-0.9796,0.1671,0.2155,-0.9217,0.3225,0.2155,-0.9217,0.3225,0.1117,-0.9796,0.1671,0.0769,-0.9796,0.1857,0.2155,-0.9217,0.3225,0.0769,-0.9796,0.1857,0.1484,-0.9217,0.3584,0.1484,-0.9217,0.3584,0.0769,-0.9796,0.1857,0.0392,-0.9796,0.1971,0.1484,-0.9217,0.3584,0.0392,-0.9796,0.1971,0.0757,-0.9217,0.3804,0.0757,-0.9217,0.3804,0.0392,-0.9796,0.1971,0.0,-0.9796,0.201,0.0757,-0.9217,0.3804,0.0,-0.9796,0.201,0.0,-0.9217,0.3879,0.0,-1.0,0.0,-0.0392,-0.9796,0.1971,0.0,-0.9796,0.201,0.0,-1.0,0.0,-0.0769,-0.9796,0.1857,-0.0392,-0.9796,0.1971,0.0,-1.0,0.0,-0.1117,-0.9796,0.1671,-0.0769,-0.9796,0.1857,0.0,-1.0,0.0,-0.1421,-0.9796,0.1421,-0.1117,-0.9796,0.1671,0.0,-1.0,0.0,-0.1671,-0.9796,0.1117,-0.1421,-0.9796,0.1421,0.0,-1.0,0.0,-0.1857,-0.9796,0.0769,-0.1671,-0.9796,0.1117,0.0,-1.0,0.0,-0.1971,-0.9796,0.0392,-0.1857,-0.9796,0.0769,0.0,-1.0,0.0,-0.201,-0.9796,0.0,-0.1971,-0.9796,0.0392,0.0,-1.0,0.0,-0.1971,-0.9796,-0.0392,-0.201,-0.9796,0.0,0.0,-1.0,0.0,-0.1857,-0.9796,-0.0769,-0.1971,-0.9796,-0.0392,0.0,-1.0,0.0,-0.1671,-0.9796,-0.1117,-0.1857,-0.9796,-0.0769,0.0,-1.0,0.0,-0.1421,-0.9796,-0.1421,-0.1671,-0.9796,-0.1117,0.0,-1.0,0.0,-0.1117,-0.9796,-0.1671,-0.1421,-0.9796,-0.1421,0.0,-1.0,0.0,-0.0769,-0.9796,-0.1857,-0.1117,-0.9796,-0.1671,0.0,-1.0,0.0,-0.0392,-0.9796,-0.1971,-0.0769,-0.9796,-0.1857,0.0,-1.0,0.0,0.0,-0.9796,-0.201,-0.0392,-0.9796,-0.1971,0.0,-1.0,0.0,0.0392,-0.9796,-0.1971,0.0,-0.9796,-0.201,0.0,-1.0,0.0,0.0769,-0.9796,-0.1857,0.0392,-0.9796,-0.1971,0.0,-1.0,0.0,0.1117,-0.9796,-0.1671,0.0769,-0.9796,-0.1857,0.0,-1.0,0.0,0.1421,-0.9796,-0.1421,0.1117,-0.9796,-0.1671,0.0,-1.0,0.0,0.1671,-0.9796,-0.1117,0.1421,-0.9796,-0.1421,0.0,-1.0,0.0,0.1857,-0.9796,-0.0769,0.1671,-0.9796,-0.1117,0.0,-1.0,0.0,0.1971,-0.9796,-0.0392,0.1857,-0.9796,-0.0769,0.0,-1.0,0.0,0.201,-0.9796,0.0,0.1971,-0.9796,-0.0392,0.0,-1.0,0.0,0.1971,-0.9796,0.0392,0.201,-0.9796,0.0,0.0,-1.0,0.0,0.1857,-0.9796,0.0769,0.1971,-0.9796,0.0392,0.0,-1.0,0.0,0.1671,-0.9796,0.1117,0.1857,-0.9796,0.0769,0.0,-1.0,0.0,0.1421,-0.9796,0.1421,0.1671,-0.9796,0.1117,0.0,-1.0,0.0,0.1117,-0.9796,0.1671,0.1421,-0.9796,0.1421,0.0,-1.0,0.0,0.0769,-0.9796,0.1857,0.1117,-0.9796,0.1671,0.0,-1.0,0.0,0.0392,-0.9796,0.1971,0.0769,-0.9796,0.1857,0.0,-1.0,0.0,0.0,-0.9796,0.201,0.0392,-0.9796,0.1971],"tangents":null,"uvs":[0.0,2.0,0.0,1.9375,0.0312,1.9375,0.0312,2.0,0.0312,1.9375,0.0625,1.9375,0.0625,2.0,0.0625,1.9375,0.0938,1.9375,0.0938,2.0,0.0938,1.9375,0.125,1.9375,0.125,2.0,0.125,1.9375,0.1562,1.9375,0.1562,2.0,0.1562,1.9375,0.1875,1.9375,0.1875,2.0,0.1875,1.9375,0.2187,1.9375,0.2187,2.0,0.2187,1.9375,0.25,1.9375,0.25,2.0,0.25,1.9375,0.2812,1.9375,0.2812,2.0,0.2812,1.9375,0.3125,1.9375,0.3125,2.0,0.3125,1.9375,0.3437,1.9375,0.3437,2.0,0.3437,1.9375,0.375,1.9375,0.375,2.0,0.375,1.9375,0.4062,1.9375,0.4062,2.0,0.4062,1.9375,0.4375,1.9375,0.4375,2.0,0.4375,1.9375,0.4688,1.9375,0.4688,2.0,0.4688,1.9375,0.5,1.9375,0.5,2.0,0.5,1.9375,0.5313,1.9375,0.5313,2.0,0.5313,1.9375,0.5625,1.9375,0.5625,2.0,0.5625,1.9375,0.5938,1.9375,0.5938,2.0,0.5938,1.9375,0.625,1.9375,0.625,2.0,0.625,1.9375,0.6563,1.9375,0.6563,2.0,0.6563,1.9375,0.6875,1.9375,0.6875,2.0,0.6875,1.9375,0.7188,1.9375,0.7188,2.0,0.7188,1.9375,0.75,1.9375,0.75,2.0,0.75,1.9375,0.7813,1.9375,0.7813,2.0,0.7813,1.9375,0.8125,1.9375,0.8125,2.0,0.8125,1.9375,0.8438,1.9375,0.8438,2.0,0.8438,1.9375,0.875,1.9375,0.875,2.0,0.875,1.9375,0.9063,1.9375,0.9063,2.0,0.9063,1.9375,0.9375,1.9375,0.9375,2.0,0.9375,1.9375,0.9688,1.9375,0.9688,2.0,0.9688,1.9375,1.0,1.9375,0.0,1.9375,0.0,1.875,0.0312,1.875,0.0,1.9375,0.0312,1.875,0.0312,1.9375,0.0312,1.9375,0.0312,1.875,0.0625,1.875,0.0312,1.9375,0.0625,1.875,0.0625,1.9375,0.0625,1.9375,0.0625,1.875,0.0938,1.875,0.0625,1.9375,0.0938,1.875,0.0938,1.9375,0.0938,1.9375,0.0938,1.875,0.125,1.875,0.0938,1.9375,0.125,1.875,0.125,1.9375,0.125,1.9375,0.125,1.875,0.1562,1.875,0.125,1.9375,0.1562,1.875,0.1562,1.9375,0.1562,1.9375,0.1562,1.875,0.1875,1.875,0.1562,1.9375,0.1875,1.875,0.1875,1.9375,0.1875,1.9375,0.1875,1.875,0.2187,1.875,0.1875,1.9375,0.2187,1.875,0.2187,1.9375,0.2187,1.9375,0.2187,1.875,0.25,1.875,0.2187,1.9375,0.25,1.875,0.25,1.9375,0.25,1.9375,0.25,1.875,0.2812,1.875,0.25,1.9375,0.2812,1.875,0.2812,1.9375,0.2812,1.9375,0.2812,1.875,0.3125,1.875,0.2812,1.9375,0.3125,1.875,0.3125,1.9375,0.3125,1.9375,0.3125,1.875,0.3437,1.875,0.3125,1.9375,0.3437,1.875,0.3437,1.9375,0.3437,1.9375,0.3437,1.875,0.375,1.875,0.3437,1.9375,0.375,1.875,0.375,1.9375,0.375,1.9375,0.375,1.875,0.4062,1.875,0.375,1.9375,0.4062,1.875,0.4062,1.9375,0.4062,1.9375,0.4062,1.875,0.4375,1.875,0.4062,1.9375,0.4375,1.875,0.4375,1.9375,0.4375,1.9375,0.4375,1.875,0.4688,1.875,0.4375,1.9375,0.4688,1.875,0.4688,1.9375,0.4688,1.9375,0.4688,1.875,0.5,1.875,0.4688,1.9375,0.5,1.875,0.5,1.9375,0.5,1.9375,0.5,1.875,0.5313,1.875,0.5,1.9375,0.5313,1.875,0.5313,1.9375,0.5313,1.9375,0.5313,1.875,0.5625,1.875,0.5313,1.9375,0.5625,1.875,0.5625,1.9375,0.5625,1.9375,0.5625,1.875,0.5938,1.875,0.5625,1.9375,0.5938,1.875,0.5938,1.9375,0.5938,1.9375,0.5938,1.875,0.625,1.875,0.5938,1.9375,0.625,1.875,0.625,1.9375,0.625,1.9375,0.625,1.875,0.6563,1.875,0.625,1.9375,0.6563,1.875,0.6563,1.9375,0.6563,1.9375,0.6563,1.875,0.6875,1.875,0.6563,1.9375,0.6875,1.875,0.6875,1.9375,0.6875,1.9375,0.6875,1.875,0.7188,1.875,0.6875,1.9375,0.7188,1.875,0.7188,1.9375,0.7188,1.9375,0.7188,1.875,0.75,1.875,0.7188,1.9375,0.75,1.875,0.75,1.9375,0.75,1.9375,0.75,1.875,0.7813,1.875,0.75,1.9375,0.7813,1.875,0.7813,1.9375,0.7813,1.9375,0.7813,1.875,0.8125,1.875,0.7813,1.9375,0.8125,1.875,0.8125,1.9375,0.8125,1.9375,0.8125,1.875,0.8438,1.875,0.8125,1.9375,0.8438,1.875,0.8438,1.9375,0.8438,1.9375,0.8438,1.875,0.875,1.875,0.8438,1.9375,0.875,1.875,0.875,1.9375,0.875,1.9375,0.875,1.875,0.9063,1.875,0.875,1.9375,0.9063,1.875,0.9063,1.9375,0.9063,1.9375,0.9063,1.875,0.9375,1.875,0.9063,1.9375,0.9375,1.875,0.9375,1.9375,0.9375,1.9375,0.9375,1.875,0.9688,1.875,0.9375,1.9375,0.9688,1.875,0.9688,1.9375,0.9688,1.9375,0.9688,1.875,1.0,1.875,0.9688,1.9375,1.0,1.875,1.0,1.9375,0.0,1.875,0.0,1.8125,0.0312,1.8125,0.0,1.875,0.0312,1.8125,0.0312,1.875,0.0312,1.875,0.0312,1.8125,0.0625,1.8125,0.0312,1.875,0.0625,1.8125,0.0625,1.875,0.0625,1.875,0.0625,1.8125,0.0938,1.8125,0.0625,1.875,0.0938,1.8125,0.0938,1.875,0.0938,1.875,0.0938,1.8125,0.125,1.8125,0.0938,1.875,0.125,1.8125,0.125,1.875,0.125,1.875,0.125,1.8125,0.1562,1.8125,0.125,1.875,0.1562,1.8125,0.1562,1.875,0.1562,1.875,0.1562,1.8125,0.1875,1.8125,0.1562,1.875,0.1875,1.8125,0.1875,1.875,0.1875,1.875,0.1875,1.8125,0.2187,1.8125,0.1875,1.875,0.2187,1.8125,0.2187,1.875,0.2187,1.875,0.2187,1.8125,0.25,1.8125,0.2187,1.875,0.25,1.8125,0.25,1.875,0.25,1.875,0.25,1.8125,0.2812,1.8125,0.25,1.875,0.2812,1.8125,0.2812,1.875,0.2812,1.875,0.2812,1.8125,0.3125,1.8125,0.2812,1.875,0.3125,1.8125,0.3125,1.875,0.3125,1.875,0.3125,1.8125,0.3437,1.8125,0.3125,1.875,0.3437,1.8125,0.3437,1.875,0.3437,1.875,0.3437,1.8125,0.375,1.8125,0.3437,1.875,0.375,1.8125,0.375,1.875,0.375,1.875,0.375,1.8125,0.4062,1.8125,0.375,1.875,0.4062,1.8125,0.4062,1.875,0.4062,1.875,0.4062,1.8125,0.4375,1.8125,0.4062,1.875,0.4375,1.8125,0.4375,1.875,0.4375,1.875,0.4375,1.8125,0.4688,1.8125,0.4375,1.875,0.4688,1.8125,0.4688,1.875,0.4688,1.875,0.4688,1.8125,0.5,1.8125,0.4688,1.875,0.5,1.8125,0.5,1.875,0.5,1.875,0.5,1.8125,0.5313,1.8125,0.5,1.875,0.5313,1.8125,0.5313,1.875,0.5313,1.875,0.5313,1.8125,0.5625,1.8125,0.5313,1.875,0.5625,1.8125,0.5625,1.875,0.5625,1.875,0.5625,1.8125,0.5938,1.8125,0.5625,1.875,0.5938,1.8125,0.5938,1.875,0.5938,1.875,0.5938,1.8125,0.625,1.8125,0.5938,1.875,0.625,1.8125,0.625,1.875,0.625,1.875,0.625,1.8125,0.6563,1.8125,0.625,1.875,0.6563,1.8125,0.6563,1.875,0.6563,1.875,0.6563,1.8125,0.6875,1.8125,0.6563,1.875,0.6875,1.8125,0.6875,1.875,0.6875,1.875,0.6875,1.8125,0.7188,1.8125,0.6875,1.875,0.7188,1.8125,0.7188,1.875,0.7188,1.875,0.7188,1.8125,0.75,1.8125,0.7188,1.875,0.75,1.8125,0.75,1.875,0.75,1.875,0.75,1.8125,0.7813,1.8125,0.75,1.875,0.7813,1.8125,0.7813,1.875,0.7813,1.875,0.7813,1.8125,0.8125,1.8125,0.7813,1.875,0.8125,1.8125,0.8125,1.875,0.8125,1.875,0.8125,1.8125,0.8438,1.8125,0.8125,1.875,0.8438,1.8125,0.8438,1.875,0.8438,1.875,0.8438,1.8125,0.875,1.8125,0.8438,1.875,0.875,1.8125,0.875,1.875,0.875,1.875,0.875,1.8125,0.9063,1.8125,0.875,1.875,0.9063,1.8125,0.9063,1.875,0.9063,1.875,0.9063,1.8125,0.9375,1.8125,0.9063,1.875,0.9375,1.8125,0.9375,1.875,0.9375,1.875,0.9375,1.8125,0.9688,1.8125,0.9375,1.875,0.9688,1.8125,0.9688,1.875,0.9688,1.875,0.9688,1.8125,1.0,1.8125,0.9688,1.875,1.0,1.8125,1.0,1.875,0.0,1.8125,0.0,1.75,0.0312,1.75,0.0,1.8125,0.0312,1.75,0.0312,1.8125,0.0312,1.8125,0.0312,1.75,0.0625,1.75,0.0312,1.8125,0.0625,1.75,0.0625,1.8125,0.0625,1.8125,0.0625,1.75,0.0938,1.75,0.0625,1.8125,0.0938,1.75,0.0938,1.8125,0.0938,1.8125,0.0938,1.75,0.125,1.75,0.0938,1.8125,0.125,1.75,0.125,1.8125,0.125,1.8125,0.125,1.75,0.1562,1.75,0.125,1.8125,0.1562,1.75,0.1562,1.8125,0.1562,1.8125,0.1562,1.75,0.1875,1.75,0.1562,1.8125,0.1875,1.75,0.1875,1.8125,0.1875,1.8125,0.1875,1.75,0.2187,1.75,0.1875,1.8125,0.2187,1.75,0.2187,1.8125,0.2187,1.8125,0.2187,1.75,0.25,1.75,0.2187,1.8125,0.25,1.75,0.25,1.8125,0.25,1.8125,0.25,1.75,0.2812,1.75,0.25,1.8125,0.2812,1.75,0.2812,1.8125,0.2812,1.8125,0.2812,1.75,0.3125,1.75,0.2812,1.8125,0.3125,1.75,0.3125,1.8125,0.3125,1.8125,0.3125,1.75,0.3437,1.75,0.3125,1.8125,0.3437,1.75,0.3437,1.8125,0.3437,1.8125,0.3437,1.75,0.375,1.75,0.3437,1.8125,0.375,1.75,0.375,1.8125,0.375,1.8125,0.375,1.75,0.4062,1.75,0.375,1.8125,0.4062,1.75,0.4062,1.8125,0.4062,1.8125,0.4062,1.75,0.4375,1.75,0.4062,1.8125,0.4375,1.75,0.4375,1.8125,0.4375,1.8125,0.4375,1.75,0.4688,1.75,0.4375,1.8125,0.4688,1.75,0.4688,1.8125,0.4688,1.8125,0.4688,1.75,0.5,1.75,0.4688,1.8125,0.5,1.75,0.5,1.8125,0.5,1.8125,0.5,1.75,0.5313,1.75,0.5,1.8125,0.5313,1.75,0.5313,1.8125,0.5313,1.8125,0.5313,1.75,0.5625,1.75,0.5313,1.8125,0.5625,1.75,0.5625,1.8125,0.5625,1.8125,0.5625,1.75,0.5938,1.75,0.5625,1.8125,0.5938,1.75,0.5938,1.8125,0.5938,1.8125,0.5938,1.75,0.625,1.75,0.5938,1.8125,0.625,1.75,0.625,1.8125,0.625,1.8125,0.625,1.75,0.6563,1.75,0.625,1.8125,0.6563,1.75,0.6563,1.8125,0.6563,1.8125,0.6563,1.75,0.6875,1.75,0.6563,1.8125,0.6875,1.75,0.6875,1.8125,0.6875,1.8125,0.6875,1.75,0.7188,1.75,0.6875,1.8125,0.7188,1.75,0.7188,1.8125,0.7188,1.8125,0.7188,1.75,0.75,1.75,0.7188,1.8125,0.75,1.75,0.75,1.8125,0.75,1.8125,0.75,1.75,0.7813,1.75,0.75,1.8125,0.7813,1.75,0.7813,1.8125,0.7813,1.8125,0.7813,1.75,0.8125,1.75,0.7813,1.8125,0.8125,1.75,0.8125,1.8125,0.8125,1.8125,0.8125,1.75,0.8438,1.75,0.8125,1.8125,0.8438,1.75,0.8438,1.8125,0.8438,1.8125,0.8438,1.75,0.875,1.75,0.8438,1.8125,0.875,1.75,0.875,1.8125,0.875,1.8125,0.875,1.75,0.9063,1.75,0.875,1.8125,0.9063,1.75,0.9063,1.8125,0.9063,1.8125,0.9063,1.75,0.9375,1.75,0.9063,1.8125,0.9375,1.75,0.9375,1.8125,0.9375,1.8125,0.9375,1.75,0.9688,1.75,0.9375,1.8125,0.9688,1.75,0.9688,1.8125,0.9688,1.8125,0.9688,1.75,1.0,1.75,0.9688,1.8125,1.0,1.75,1.0,1.8125,0.0,1.75,0.0,1.6875,0.0312,1.6875,0.0,1.75,0.0312,1.6875,0.0312,1.75,0.0312,1.75,0.0312,1.6875,0.0625,1.6875,0.0312,1.75,0.0625,1.6875,0.0625,1.75,0.0625,1.75,0.0625,1.6875,0.0938,1.6875,0.0625,1.75,0.0938,1.6875,0.0938,1.75,0.0938,1.75,0.0938,1.6875,0.125,1.6875,0.0938,1.75,0.125,1.6875,0.125,1.75,0.125,1.75,0.125,1.6875,0.1562,1.6875,0.125,1.75,0.1562,1.6875,0.1562,1.75,0.1562,1.75,0.1562,1.6875,0.1875,1.6875,0.1562,1.75,0.1875,1.6875,0.1875,1.75,0.1875,1.75,0.1875,1.6875,0.2187,1.6875,0.1875,1.75,0.2187,1.6875,0.2187,1.75,0.2187,1.75,0.2187,1.6875,0.25,1.6875,0.2187,1.75,0.25,1.6875,0.25,1.75,0.25,1.75,0.25,1.6875,0.2812,1.6875,0.25,1.75,0.2812,1.6875,0.2812,1.75,0.2812,1.75,0.2812,1.6875,0.3125,1.6875,0.2812,1.75,0.3125,1.6875,0.3125,1.75,0.3125,1.75,0.3125,1.6875,0.3437,1.6875,0.3125,1.75,0.3437,1.6875,0.3437,1.75,0.3437,1.75,0.3437,1.6875,0.375,1.6875,0.3437,1.75,0.375,1.6875,0.375,1.75,0.375,1.75,0.375,1.6875,0.4062,1.6875,0.375,1.75,0.4062,1.6875,0.4062,1.75,0.4062,1.75,0.4062,1.6875,0.4375,1.6875,0.4062,1.75,0.4375,1.6875,0.4375,1.75,0.4375,1.75,0.4375,1.6875,0.4688,1.6875,0.4375,1.75,0.4688,1.6875,0.4688,1.75,0.4688,1.75,0.4688,1.6875,0.5,1.6875,0.4688,1.75,0.5,1.6875,0.5,1.75,0.5,1.75,0.5,1.6875,0.5313,1.6875,0.5,1.75,0.5313,1.6875,0.5313,1.75,0.5313,1.75,0.5313,1.6875,0.5625,1.6875,0.5313,1.75,0.5625,1.6875,0.5625,1.75,0.5625,1.75,0.5625,1.6875,0.5938,1.6875,0.5625,1.75,0.5938,1.6875,0.5938,1.75,0.5938,1.75,0.5938,1.6875,0.625,1.6875,0.5938,1.75,0.625,1.6875,0.625,1.75,0.625,1.75,0.625,1.6875,0.6563,1.6875,0.625,1.75,0.6563,1.6875,0.6563,1.75,0.6563,1.75,0.6563,1.6875,0.6875,1.6875,0.6563,1.75,0.6875,1.6875,0.6875,1.75,0.6875,1.75,0.6875,1.6875,0.7188,1.6875,0.6875,1.75,0.7188,1.6875,0.7188,1.75,0.7188,1.75,0.7188,1.6875,0.75,1.6875,0.7188,1.75,0.75,1.6875,0.75,1.75,0.75,1.75,0.75,1.6875,0.7813,1.6875,0.75,1.75,0.7813,1.6875,0.7813,1.75,0.7813,1.75,0.7813,1.6875,0.8125,1.6875,0.7813,1.75,0.8125,1.6875,0.8125,1.75,0.8125,1.75,0.8125,1.6875,0.8438,1.6875,0.8125,1.75,0.8438,1.6875,0.8438,1.75,0.8438,1.75,0.8438,1.6875,0.875,1.6875,0.8438,1.75,0.875,1.6875,0.875,1.75,0.875,1.75,0.875,1.6875,0.9063,1.6875,0.875,1.75,0.9063,1.6875,0.9063,1.75,0.9063,1.75,0.9063,1.6875,0.9375,1.6875,0.9063,1.75,0.9375,1.6875,0.9375,1.75,0.9375,1.75,0.9375,1.6875,0.9688,1.6875,0.9375,1.75,0.9688,1.6875,0.9688,1.75,0.9688,1.75,0.9688,1.6875,1.0,1.6875,0.9688,1.75,1.0,1.6875,1.0,1.75,0.0,1.6875,0.0,1.625,0.0312,1.625,0.0,1.6875,0.0312,1.625,0.0312,1.6875,0.0312,1.6875,0.0312,1.625,0.0625,1.625,0.0312,1.6875,0.0625,1.625,0.0625,1.6875,0.0625,1.6875,0.0625,1.625,0.0938,1.625,0.0625,1.6875,0.0938,1.625,0.0938,1.6875,0.0938,1.6875,0.0938,1.625,0.125,1.625,0.0938,1.6875,0.125,1.625,0.125,1.6875,0.125,1.6875,0.125,1.625,0.1562,1.625,0.125,1.6875,0.1562,1.625,0.1562,1.6875,0.1562,1.6875,0.1562,1.625,0.1875,1.625,0.1562,1.6875,0.1875,1.625,0.1875,1.6875,0.1875,1.6875,0.1875,1.625,0.2187,1.625,0.1875,1.6875,0.2187,1.625,0.2187,1.6875,0.2187,1.6875,0.2187,1.625,0.25,1.625,0.2187,1.6875,0.25,1.625,0.25,1.6875,0.25,1.6875,0.25,1.625,0.2812,1.625,0.25,1.6875,0.2812,1.625,0.2812,1.6875,0.2812,1.6875,0.2812,1.625,0.3125,1.625,0.2812,1.6875,0.3125,1.625,0.3125,1.6875,0.3125,1.6875,0.3125,1.625,0.3437,1.625,0.3125,1.6875,0.3437,1.625,0.3437,1.6875,0.3437,1.6875,0.3437,1.625,0.375,1.625,0.3437,1.6875,0.375,1.625,0.375,1.6875,0.375,1.6875,0.375,1.625,0.4062,1.625,0.375,1.6875,0.4062,1.625,0.4062,1.6875,0.4062,1.6875,0.4062,1.625,0.4375,1.625,0.4062,1.6875,0.4375,1.625,0.4375,1.6875,0.4375,1.6875,0.4375,1.625,0.4688,1.625,0.4375,1.6875,0.4688,1.625,0.4688,1.6875,0.4688,1.6875,0.4688,1.625,0.5,1.625,0.4688,1.6875,0.5,1.625,0.5,1.6875,0.5,1.6875,0.5,1.625,0.5313,1.625,0.5,1.6875,0.5313,1.625,0.5313,1.6875,0.5313,1.6875,0.5313,1.625,0.5625,1.625,0.5313,1.6875,0.5625,1.625,0.5625,1.6875,0.5625,1.6875,0.5625,1.625,0.5938,1.625,0.5625,1.6875,0.5938,1.625,0.5938,1.6875,0.5938,1.6875,0.5938,1.625,0.625,1.625,0.5938,1.6875,0.625,1.625,0.625,1.6875,0.625,1.6875,0.625,1.625,0.6563,1.625,0.625,1.6875,0.6563,1.625,0.6563,1.6875,0.6563,1.6875,0.6563,1.625,0.6875,1.625,0.6563,1.6875,0.6875,1.625,0.6875,1.6875,0.6875,1.6875,0.6875,1.625,0.7188,1.625,0.6875,1.6875,0.7188,1.625,0.7188,1.6875,0.7188,1.6875,0.7188,1.625,0.75,1.625,0.7188,1.6875,0.75,1.625,0.75,1.6875,0.75,1.6875,0.75,1.625,0.7813,1.625,0.75,1.6875,0.7813,1.625,0.7813,1.6875,0.7813,1.6875,0.7813,1.625,0.8125,1.625,0.7813,1.6875,0.8125,1.625,0.8125,1.6875,0.8125,1.6875,0.8125,1.625,0.8438,1.625,0.8125,1.6875,0.8438,1.625,0.8438,1.6875,0.8438,1.6875,0.8438,1.625,0.875,1.625,0.8438,1.6875,0.875,1.625,0.875,1.6875,0.875,1.6875,0.875,1.625,0.9063,1.625,0.875,1.6875,0.9063,1.625,0.9063,1.6875,0.9063,1.6875,0.9063,1.625,0.9375,1.625,0.9063,1.6875,0.9375,1.625,0.9375,1.6875,0.9375,1.6875,0.9375,1.625,0.9688,1.625,0.9375,1.6875,0.9688,1.625,0.9688,1.6875,0.9688,1.6875,0.9688,1.625,1.0,1.625,0.9688,1.6875,1.0,1.625,1.0,1.6875,0.0,1.625,0.0,1.5625,0.0312,1.5625,0.0,1.625,0.0312,1.5625,0.0312,1.625,0.0312,1.625,0.0312,1.5625,0.0625,1.5625,0.0312,1.625,0.0625,1.5625,0.0625,1.625,0.0625,1.625,0.0625,1.5625,0.0938,1.5625,0.0625,1.625,0.0938,1.5625,0.0938,1.625,0.0938,1.625,0.0938,1.5625,0.125,1.5625,0.0938,1.625,0.125,1.5625,0.125,1.625,0.125,1.625,0.125,1.5625,0.1562,1.5625,0.125,1.625,0.1562,1.5625,0.1562,1.625,0.1562,1.625,0.1562,1.5625,0.1875,1.5625,0.1562,1.625,0.1875,1.5625,0.1875,1.625,0.1875,1.625,0.1875,1.5625,0.2187,1.5625,0.1875,1.625,0.2187,1.5625,0.2187,1.625,0.2187,1.625,0.2187,1.5625,0.25,1.5625,0.2187,1.625,0.25,1.5625,0.25,1.625,0.25,1.625,0.25,1.5625,0.2812,1.5625,0.25,1.625,0.2812,1.5625,0.2812,1.625,0.2812,1.625,0.2812,1.5625,0.3125,1.5625,0.2812,1.625,0.3125,1.5625,0.3125,1.625,0.3125,1.625,0.3125,1.5625,0.3437,1.5625,0.3125,1.625,0.3437,1.5625,0.3437,1.625,0.3437,1.625,0.3437,1.5625,0.375,1.5625,0.3437,1.625,0.375,1.5625,0.375,1.625,0.375,1.625,0.375,1.5625,0.4062,1.5625,0.375,1.625,0.4062,1.5625,0.4062,1.625,0.4062,1.625,0.4062,1.5625,0.4375,1.5625,0.4062,1.625,0.4375,1.5625,0.4375,1.625,0.4375,1.625,0.4375,1.5625,0.4688,1.5625,0.4375,1.625,0.4688,1.5625,0.4688,1.625,0.4688,1.625,0.4688,1.5625,0.5,1.5625,0.4688,1.625,0.5,1.5625,0.5,1.625,0.5,1.625,0.5,1.5625,0.5313,1.5625,0.5,1.625,0.5313,1.5625,0.5313,1.625,0.5313,1.625,0.5313,1.5625,0.5625,1.5625,0.5313,1.625,0.5625,1.5625,0.5625,1.625,0.5625,1.625,0.5625,1.5625,0.5938,1.5625,0.5625,1.625,0.5938,1.5625,0.5938,1.625,0.5938,1.625,0.5938,1.5625,0.625,1.5625,0.5938,1.625,0.625,1.5625,0.625,1.625,0.625,1.625,0.625,1.5625,0.6563,1.5625,0.625,1.625,0.6563,1.5625,0.6563,1.625,0.6563,1.625,0.6563,1.5625,0.6875,1.5625,0.6563,1.625,0.6875,1.5625,0.6875,1.625,0.6875,1.625,0.6875,1.5625,0.7188,1.5625,0.6875,1.625,0.7188,1.5625,0.7188,1.625,0.7188,1.625,0.7188,1.5625,0.75,1.5625,0.7188,1.625,0.75,1.5625,0.75,1.625,0.75,1.625,0.75,1.5625,0.7813,1.5625,0.75,1.625,0.7813,1.5625,0.7813,1.625,0.7813,1.625,0.7813,1.5625,0.8125,1.5625,0.7813,1.625,0.8125,1.5625,0.8125,1.625,0.8125,1.625,0.8125,1.5625,0.8438,1.5625,0.8125,1.625,0.8438,1.5625,0.8438,1.625,0.8438,1.625,0.8438,1.5625,0.875,1.5625,0.8438,1.625,0.875,1.5625,0.875,1.625,0.875,1.625,0.875,1.5625,0.9063,1.5625,0.875,1.625,0.9063,1.5625,0.9063,1.625,0.9063,1.625,0.9063,1.5625,0.9375,1.5625,0.9063,1.625,0.9375,1.5625,0.9375,1.625,0.9375,1.625,0.9375,1.5625,0.9688,1.5625,0.9375,1.625,0.9688,1.5625,0.9688,1.625,0.9688,1.625,0.9688,1.5625,1.0,1.5625,0.9688,1.625,1.0,1.5625,1.0,1.625,0.0,1.5625,0.0,1.5,0.0312,1.5,0.0,1.5625,0.0312,1.5,0.0312,1.5625,0.0312,1.5625,0.0312,1.5,0.0625,1.5,0.0312,1.5625,0.0625,1.5,0.0625,1.5625,0.0625,1.5625,0.0625,1.5,0.0938,1.5,0.0625,1.5625,0.0938,1.5,0.0938,1.5625,0.0938,1.5625,0.0938,1.5,0.125,1.5,0.0938,1.5625,0.125,1.5,0.125,1.5625,0.125,1.5625,0.125,1.5,0.1562,1.5,0.125,1.5625,0.1562,1.5,0.1562,1.5625,0.1562,1.5625,0.1562,1.5,0.1875,1.5,0.1562,1.5625,0.1875,1.5,0.1875,1.5625,0.1875,1.5625,0.1875,1.5,0.2187,1.5,0.1875,1.5625,0.2187,1.5,0.2187,1.5625,0.2187,1.5625,0.2187,1.5,0.25,1.5,0.2187,1.5625,0.25,1.5,0.25,1.5625,0.25,1.5625,0.25,1.5,0.2812,1.5,0.25,1.5625,0.2812,1.5,0.2812,1.5625,0.2812,1.5625,0.2812,1.5,0.3125,1.5,0.2812,1.5625,0.3125,1.5,0.3125,1.5625,0.3125,1.5625,0.3125,1.5,0.3437,1.5,0.3125,1.5625,0.3437,1.5,0.3437,1.5625,0.3437,1.5625,0.3437,1.5,0.375,1.5,0.3437,1.5625,0.375,1.5,0.375,1.5625,0.375,1.5625,0.375,1.5,0.4062,1.5,0.375,1.5625,0.4062,1.5,0.4062,1.5625,0.4062,1.5625,0.4062,1.5,0.4375,1.5,0.4062,1.5625,0.4375,1.5,0.4375,1.5625,0.4375,1.5625,0.4375,1.5,0.4688,1.5,0.4375,1.5625,0.4688,1.5,0.4688,1.5625,0.4688,1.5625,0.4688,1.5,0.5,1.5,0.4688,1.5625,0.5,1.5,0.5,1.5625,0.5,1.5625,0.5,1.5,0.5313,1.5,0.5,1.5625,0.5313,1.5,0.5313,1.5625,0.5313,1.5625,0.5313,1.5,0.5625,1.5,0.5313,1.5625,0.5625,1.5,0.5625,1.5625,0.5625,1.5625,0.5625,1.5,0.5938,1.5,0.5625,1.5625,0.5938,1.5,0.5938,1.5625,0.5938,1.5625,0.5938,1.5,0.625,1.5,0.5938,1.5625,0.625,1.5,0.625,1.5625,0.625,1.5625,0.625,1.5,0.6563,1.5,0.625,1.5625,0.6563,1.5,0.6563,1.5625,0.6563,1.5625,0.6563,1.5,0.6875,1.5,0.6563,1.5625,0.6875,1.5,0.6875,1.5625,0.6875,1.5625,0.6875,1.5,0.7188,1.5,0.6875,1.5625,0.7188,1.5,0.7188,1.5625,0.7188,1.5625,0.7188,1.5,0.75,1.5,0.7188,1.5625,0.75,1.5,0.75,1.5625,0.75,1.5625,0.75,1.5,0.7813,1.5,0.75,1.5625,0.7813,1.5,0.7813,1.5625,0.7813,1.5625,0.7813,1.5,0.8125,1.5,0.7813,1.5625,0.8125,1.5,0.8125,1.5625,0.8125,1.5625,0.8125,1.5,0.8438,1.5,0.8125,1.5625,0.8438,1.5,0.8438,1.5625,0.8438,1.5625,0.8438,1.5,0.875,1.5,0.8438,1.5625,0.875,1.5,0.875,1.5625,0.875,1.5625,0.875,1.5,0.9063,1.5,0.875,1.5625,0.9063,1.5,0.9063,1.5625,0.9063,1.5625,0.9063,1.5,0.9375,1.5,0.9063,1.5625,0.9375,1.5,0.9375,1.5625,0.9375,1.5625,0.9375,1.5,0.9688,1.5,0.9375,1.5625,0.9688,1.5,0.9688,1.5625,0.9688,1.5625,0.9688,1.5,1.0,1.5,0.9688,1.5625,1.0,1.5,1.0,1.5625,0.0,1.5,0.0,1.4375,0.0312,1.4375,0.0,1.5,0.0312,1.4375,0.0312,1.5,0.0312,1.5,0.0312,1.4375,0.0625,1.4375,0.0312,1.5,0.0625,1.4375,0.0625,1.5,0.0625,1.5,0.0625,1.4375,0.0938,1.4375,0.0625,1.5,0.0938,1.4375,0.0938,1.5,0.0938,1.5,0.0938,1.4375,0.125,1.4375,0.0938,1.5,0.125,1.4375,0.125,1.5,0.125,1.5,0.125,1.4375,0.1562,1.4375,0.125,1.5,0.1562,1.4375,0.1562,1.5,0.1562,1.5,0.1562,1.4375,0.1875,1.4375,0.1562,1.5,0.1875,1.4375,0.1875,1.5,0.1875,1.5,0.1875,1.4375,0.2187,1.4375,0.1875,1.5,0.2187,1.4375,0.2187,1.5,0.2187,1.5,0.2187,1.4375,0.25,1.4375,0.2187,1.5,0.25,1.4375,0.25,1.5,0.25,1.5,0.25,1.4375,0.2812,1.4375,0.25,1.5,0.2812,1.4375,0.2812,1.5,0.2812,1.5,0.2812,1.4375,0.3125,1.4375,0.2812,1.5,0.3125,1.4375,0.3125,1.5,0.3125,1.5,0.3125,1.4375,0.3437,1.4375,0.3125,1.5,0.3437,1.4375,0.3437,1.5,0.3437,1.5,0.3437,1.4375,0.375,1.4375,0.3437,1.5,0.375,1.4375,0.375,1.5,0.375,1.5,0.375,1.4375,0.4062,1.4375,0.375,1.5,0.4062,1.4375,0.4062,1.5,0.4062,1.5,0.4062,1.4375,0.4375,1.4375,0.4062,1.5,0.4375,1.4375,0.4375,1.5,0.4375,1.5,0.4375,1.4375,0.4688,1.4375,0.4375,1.5,0.4688,1.4375,0.4688,1.5,0.4688,1.5,0.4688,1.4375,0.5,1.4375,0.4688,1.5,0.5,1.4375,0.5,1.5,0.5,1.5,0.5,1.4375,0.5313,1.4375,0.5,1.5,0.5313,1.4375,0.5313,1.5,0.5313,1.5,0.5313,1.4375,0.5625,1.4375,0.5313,1.5,0.5625,1.4375,0.5625,1.5,0.5625,1.5,0.5625,1.4375,0.5938,1.4375,0.5625,1.5,0.5938,1.4375,0.5938,1.5,0.5938,1.5,0.5938,1.4375,0.625,1.4375,0.5938,1.5,0.625,1.4375,0.625,1.5,0.625,1.5,0.625,1.4375,0.6563,1.4375,0.625,1.5,0.6563,1.4375,0.6563,1.5,0.6563,1.5,0.6563,1.4375,0.6875,1.4375,0.6563,1.5,0.6875,1.4375,0.6875,1.5,0.6875,1.5,0.6875,1.4375,0.7188,1.4375,0.6875,1.5,0.7188,1.4375,0.7188,1.5,0.7188,1.5,0.7188,1.4375,0.75,1.4375,0.7188,1.5,0.75,1.4375,0.75,1.5,0.75,1.5,0.75,1.4375,0.7813,1.4375,0.75,1.5,0.7813,1.4375,0.7813,1.5,0.7813,1.5,0.7813,1.4375,0.8125,1.4375,0.7813,1.5,0.8125,1.4375,0.8125,1.5,0.8125,1.5,0.8125,1.4375,0.8438,1.4375,0.8125,1.5,0.8438,1.4375,0.8438,1.5,0.8438,1.5,0.8438,1.4375,0.875,1.4375,0.8438,1.5,0.875,1.4375,0.875,1.5,0.875,1.5,0.875,1.4375,0.9063,1.4375,0.875,1.5,0.9063,1.4375,0.9063,1.5,0.9063,1.5,0.9063,1.4375,0.9375,1.4375,0.9063,1.5,0.9375,1.4375,0.9375,1.5,0.9375,1.5,0.9375,1.4375,0.9688,1.4375,0.9375,1.5,0.9688,1.4375,0.9688,1.5,0.9688,1.5,0.9688,1.4375,1.0,1.4375,0.9688,1.5,1.0,1.4375,1.0,1.5,0.0,1.4375,0.0,1.375,0.0312,1.375,0.0,1.4375,0.0312,1.375,0.0312,1.4375,0.0312,1.4375,0.0312,1.375,0.0625,1.375,0.0312,1.4375,0.0625,1.375,0.0625,1.4375,0.0625,1.4375,0.0625,1.375,0.0938,1.375,0.0625,1.4375,0.0938,1.375,0.0938,1.4375,0.0938,1.4375,0.0938,1.375,0.125,1.375,0.0938,1.4375,0.125,1.375,0.125,1.4375,0.125,1.4375,0.125,1.375,0.1562,1.375,0.125,1.4375,0.1562,1.375,0.1562,1.4375,0.1562,1.4375,0.1562,1.375,0.1875,1.375,0.1562,1.4375,0.1875,1.375,0.1875,1.4375,0.1875,1.4375,0.1875,1.375,0.2187,1.375,0.1875,1.4375,0.2187,1.375,0.2187,1.4375,0.2187,1.4375,0.2187,1.375,0.25,1.375,0.2187,1.4375,0.25,1.375,0.25,1.4375,0.25,1.4375,0.25,1.375,0.2812,1.375,0.25,1.4375,0.2812,1.375,0.2812,1.4375,0.2812,1.4375,0.2812,1.375,0.3125,1.375,0.2812,1.4375,0.3125,1.375,0.3125,1.4375,0.3125,1.4375,0.3125,1.375,0.3437,1.375,0.3125,1.4375,0.3437,1.375,0.3437,1.4375,0.3437,1.4375,0.3437,1.375,0.375,1.375,0.3437,1.4375,0.375,1.375,0.375,1.4375,0.375,1.4375,0.375,1.375,0.4062,1.375,0.375,1.4375,0.4062,1.375,0.4062,1.4375,0.4062,1.4375,0.4062,1.375,0.4375,1.375,0.4062,1.4375,0.4375,1.375,0.4375,1.4375,0.4375,1.4375,0.4375,1.375,0.4688,1.375,0.4375,1.4375,0.4688,1.375,0.4688,1.4375,0.4688,1.4375,0.4688,1.375,0.5,1.375,0.4688,1.4375,0.5,1.375,0.5,1.4375,0.5,1.4375,0.5,1.375,0.5313,1.375,0.5,1.4375,0.5313,1.375,0.5313,1.4375,0.5313,1.4375,0.5313,1.375,0.5625,1.375,0.5313,1.4375,0.5625,1.375,0.5625,1.4375,0.5625,1.4375,0.5625,1.375,0.5938,1.375,0.5625,1.4375,0.5938,1.375,0.5938,1.4375,0.5938,1.4375,0.5938,1.375,0.625,1.375,0.5938,1.4375,0.625,1.375,0.625,1.4375,0.625,1.4375,0.625,1.375,0.6563,1.375,0.625,1.4375,0.6563,1.375,0.6563,1.4375,0.6563,1.4375,0.6563,1.375,0.6875,1.375,0.6563,1.4375,0.6875,1.375,0.6875,1.4375,0.6875,1.4375,0.6875,1.375,0.7188,1.375,0.6875,1.4375,0.7188,1.375,0.7188,1.4375,0.7188,1.4375,0.7188,1.375,0.75,1.375,0.7188,1.4375,0.75,1.375,0.75,1.4375,0.75,1.4375,0.75,1.375,0.7813,1.375,0.75,1.4375,0.7813,1.375,0.7813,1.4375,0.7813,1.4375,0.7813,1.375,0.8125,1.375,0.7813,1.4375,0.8125,1.375,0.8125,1.4375,0.8125,1.4375,0.8125,1.375,0.8438,1.375,0.8125,1.4375,0.8438,1.375,0.8438,1.4375,0.8438,1.4375,0.8438,1.375,0.875,1.375,0.8438,1.4375,0.875,1.375,0.875,1.4375,0.875,1.4375,0.875,1.375,0.9063,1.375,0.875,1.4375,0.9063,1.375,0.9063,1.4375,0.9063,1.4375,0.9063,1.375,0.9375,1.375,0.9063,1.4375,0.9375,1.375,0.9375,1.4375,0.9375,1.4375,0.9375,1.375,0.9688,1.375,0.9375,1.4375,0.9688,1.375,0.9688,1.4375,0.9688,1.4375,0.9688,1.375,1.0,1.375,0.9688,1.4375,1.0,1.375,1.0,1.4375,0.0,1.375,0.0,1.3125,0.0312,1.3125,0.0,1.375,0.0312,1.3125,0.0312,1.375,0.0312,1.375,0.0312,1.3125,0.0625,1.3125,0.0312,1.375,0.0625,1.3125,0.0625,1.375,0.0625,1.375,0.0625,1.3125,0.0938,1.3125,0.0625,1.375,0.0938,1.3125,0.0938,1.375,0.0938,1.375,0.0938,1.3125,0.125,1.3125,0.0938,1.375,0.125,1.3125,0.125,1.375,0.125,1.375,0.125,1.3125,0.1562,1.3125,0.125,1.375,0.1562,1.3125,0.1562,1.375,0.1562,1.375,0.1562,1.3125,0.1875,1.3125,0.1562,1.375,0.1875,1.3125,0.1875,1.375,0.1875,1.375,0.1875,1.3125,0.2187,1.3125,0.1875,1.375,0.2187,1.3125,0.2187,1.375,0.2187,1.375,0.2187,1.3125,0.25,1.3125,0.2187,1.375,0.25,1.3125,0.25,1.375,0.25,1.375,0.25,1.3125,0.2812,1.3125,0.25,1.375,0.2812,1.3125,0.2812,1.375,0.2812,1.375,0.2812,1.3125,0.3125,1.3125,0.2812,1.375,0.3125,1.3125,0.3125,1.375,0.3125,1.375,0.3125,1.3125,0.3437,1.3125,0.3125,1.375,0.3437,1.3125,0.3437,1.375,0.3437,1.375,0.3437,1.3125,0.375,1.3125,0.3437,1.375,0.375,1.3125,0.375,1.375,0.375,1.375,0.375,1.3125,0.4062,1.3125,0.375,1.375,0.4062,1.3125,0.4062,1.375,0.4062,1.375,0.4062,1.3125,0.4375,1.3125,0.4062,1.375,0.4375,1.3125,0.4375,1.375,0.4375,1.375,0.4375,1.3125,0.4688,1.3125,0.4375,1.375,0.4688,1.3125,0.4688,1.375,0.4688,1.375,0.4688,1.3125,0.5,1.3125,0.4688,1.375,0.5,1.3125,0.5,1.375,0.5,1.375,0.5,1.3125,0.5313,1.3125,0.5,1.375,0.5313,1.3125,0.5313,1.375,0.5313,1.375,0.5313,1.3125,0.5625,1.3125,0.5313,1.375,0.5625,1.3125,0.5625,1.375,0.5625,1.375,0.5625,1.3125,0.5938,1.3125,0.5625,1.375,0.5938,1.3125,0.5938,1.375,0.5938,1.375,0.5938,1.3125,0.625,1.3125,0.5938,1.375,0.625,1.3125,0.625,1.375,0.625,1.375,0.625,1.3125,0.6563,1.3125,0.625,1.375,0.6563,1.3125,0.6563,1.375,0.6563,1.375,0.6563,1.3125,0.6875,1.3125,0.6563,1.375,0.6875,1.3125,0.6875,1.375,0.6875,1.375,0.6875,1.3125,0.7188,1.3125,0.6875,1.375,0.7188,1.3125,0.7188,1.375,0.7188,1.375,0.7188,1.3125,0.75,1.3125,0.7188,1.375,0.75,1.3125,0.75,1.375,0.75,1.375,0.75,1.3125,0.7813,1.3125,0.75,1.375,0.7813,1.3125,0.7813,1.375,0.7813,1.375,0.7813,1.3125,0.8125,1.3125,0.7813,1.375,0.8125,1.3125,0.8125,1.375,0.8125,1.375,0.8125,1.3125,0.8438,1.3125,0.8125,1.375,0.8438,1.3125,0.8438,1.375,0.8438,1.375,0.8438,1.3125,0.875,1.3125,0.8438,1.375,0.875,1.3125,0.875,1.375,0.875,1.375,0.875,1.3125,0.9063,1.3125,0.875,1.375,0.9063,1.3125,0.9063,1.375,0.9063,1.375,0.9063,1.3125,0.9375,1.3125,0.9063,1.375,0.9375,1.3125,0.9375,1.375,0.9375,1.375,0.9375,1.3125,0.9688,1.3125,0.9375,1.375,0.9688,1.3125,0.9688,1.375,0.9688,1.375,0.9688,1.3125,1.0,1.3125,0.9688,1.375,1.0,1.3125,1.0,1.375,0.0,1.3125,0.0,1.25,0.0312,1.25,0.0,1.3125,0.0312,1.25,0.0312,1.3125,0.0312,1.3125,0.0312,1.25,0.0625,1.25,0.0312,1.3125,0.0625,1.25,0.0625,1.3125,0.0625,1.3125,0.0625,1.25,0.0938,1.25,0.0625,1.3125,0.0938,1.25,0.0938,1.3125,0.0938,1.3125,0.0938,1.25,0.125,1.25,0.0938,1.3125,0.125,1.25,0.125,1.3125,0.125,1.3125,0.125,1.25,0.1562,1.25,0.125,1.3125,0.1562,1.25,0.1562,1.3125,0.1562,1.3125,0.1562,1.25,0.1875,1.25,0.1562,1.3125,0.1875,1.25,0.1875,1.3125,0.1875,1.3125,0.1875,1.25,0.2187,1.25,0.1875,1.3125,0.2187,1.25,0.2187,1.3125,0.2187,1.3125,0.2187,1.25,0.25,1.25,0.2187,1.3125,0.25,1.25,0.25,1.3125,0.25,1.3125,0.25,1.25,0.2812,1.25,0.25,1.3125,0.2812,1.25,0.2812,1.3125,0.2812,1.3125,0.2812,1.25,0.3125,1.25,0.2812,1.3125,0.3125,1.25,0.3125,1.3125,0.3125,1.3125,0.3125,1.25,0.3437,1.25,0.3125,1.3125,0.3437,1.25,0.3437,1.3125,0.3437,1.3125,0.3437,1.25,0.375,1.25,0.3437,1.3125,0.375,1.25,0.375,1.3125,0.375,1.3125,0.375,1.25,0.4062,1.25,0.375,1.3125,0.4062,1.25,0.4062,1.3125,0.4062,1.3125,0.4062,1.25,0.4375,1.25,0.4062,1.3125,0.4375,1.25,0.4375,1.3125,0.4375,1.3125,0.4375,1.25,0.4688,1.25,0.4375,1.3125,0.4688,1.25,0.4688,1.3125,0.4688,1.3125,0.4688,1.25,0.5,1.25,0.4688,1.3125,0.5,1.25,0.5,1.3125,0.5,1.3125,0.5,1.25,0.5313,1.25,0.5,1.3125,0.5313,1.25,0.5313,1.3125,0.5313,1.3125,0.5313,1.25,0.5625,1.25,0.5313,1.3125,0.5625,1.25,0.5625,1.3125,0.5625,1.3125,0.5625,1.25,0.5938,1.25,0.5625,1.3125,0.5938,1.25,0.5938,1.3125,0.5938,1.3125,0.5938,1.25,0.625,1.25,0.5938,1.3125,0.625,1.25,0.625,1.3125,0.625,1.3125,0.625,1.25,0.6563,1.25,0.625,1.3125,0.6563,1.25,0.6563,1.3125,0.6563,1.3125,0.6563,1.25,0.6875,1.25,0.6563,1.3125,0.6875,1.25,0.6875,1.3125,0.6875,1.3125,0.6875,1.25,0.7188,1.25,0.6875,1.3125,0.7188,1.25,0.7188,1.3125,0.7188,1.3125,0.7188,1.25,0.75,1.25,0.7188,1.3125,0.75,1.25,0.75,1.3125,0.75,1.3125,0.75,1.25,0.7813,1.25,0.75,1.3125,0.7813,1.25,0.7813,1.3125,0.7813,1.3125,0.7813,1.25,0.8125,1.25,0.7813,1.3125,0.8125,1.25,0.8125,1.3125,0.8125,1.3125,0.8125,1.25,0.8438,1.25,0.8125,1.3125,0.8438,1.25,0.8438,1.3125,0.8438,1.3125,0.8438,1.25,0.875,1.25,0.8438,1.3125,0.875,1.25,0.875,1.3125,0.875,1.3125,0.875,1.25,0.9063,1.25,0.875,1.3125,0.9063,1.25,0.9063,1.3125,0.9063,1.3125,0.9063,1.25,0.9375,1.25,0.9063,1.3125,0.9375,1.25,0.9375,1.3125,0.9375,1.3125,0.9375,1.25,0.9688,1.25,0.9375,1.3125,0.9688,1.25,0.9688,1.3125,0.9688,1.3125,0.9688,1.25,1.0,1.25,0.9688,1.3125,1.0,1.25,1.0,1.3125,0.0,1.25,0.0,1.1875,0.0312,1.1875,0.0,1.25,0.0312,1.1875,0.0312,1.25,0.0312,1.25,0.0312,1.1875,0.0625,1.1875,0.0312,1.25,0.0625,1.1875,0.0625,1.25,0.0625,1.25,0.0625,1.1875,0.0938,1.1875,0.0625,1.25,0.0938,1.1875,0.0938,1.25,0.0938,1.25,0.0938,1.1875,0.125,1.1875,0.0938,1.25,0.125,1.1875,0.125,1.25,0.125,1.25,0.125,1.1875,0.1562,1.1875,0.125,1.25,0.1562,1.1875,0.1562,1.25,0.1562,1.25,0.1562,1.1875,0.1875,1.1875,0.1562,1.25,0.1875,1.1875,0.1875,1.25,0.1875,1.25,0.1875,1.1875,0.2187,1.1875,0.1875,1.25,0.2187,1.1875,0.2187,1.25,0.2187,1.25,0.2187,1.1875,0.25,1.1875,0.2187,1.25,0.25,1.1875,0.25,1.25,0.25,1.25,0.25,1.1875,0.2812,1.1875,0.25,1.25,0.2812,1.1875,0.2812,1.25,0.2812,1.25,0.2812,1.1875,0.3125,1.1875,0.2812,1.25,0.3125,1.1875,0.3125,1.25,0.3125,1.25,0.3125,1.1875,0.3437,1.1875,0.3125,1.25,0.3437,1.1875,0.3437,1.25,0.3437,1.25,0.3437,1.1875,0.375,1.1875,0.3437,1.25,0.375,1.1875,0.375,1.25,0.375,1.25,0.375,1.1875,0.4062,1.1875,0.375,1.25,0.4062,1.1875,0.4062,1.25,0.4062,1.25,0.4062,1.1875,0.4375,1.1875,0.4062,1.25,0.4375,1.1875,0.4375,1.25,0.4375,1.25,0.4375,1.1875,0.4688,1.1875,0.4375,1.25,0.4688,1.1875,0.4688,1.25,0.4688,1.25,0.4688,1.1875,0.5,1.1875,0.4688,1.25,0.5,1.1875,0.5,1.25,0.5,1.25,0.5,1.1875,0.5313,1.1875,0.5,1.25,0.5313,1.1875,0.5313,1.25,0.5313,1.25,0.5313,1.1875,0.5625,1.1875,0.5313,1.25,0.5625,1.1875,0.5625,1.25,0.5625,1.25,0.5625,1.1875,0.5938,1.1875,0.5625,1.25,0.5938,1.1875,0.5938,1.25,0.5938,1.25,0.5938,1.1875,0.625,1.1875,0.5938,1.25,0.625,1.1875,0.625,1.25,0.625,1.25,0.625,1.1875,0.6563,1.1875,0.625,1.25,0.6563,1.1875,0.6563,1.25,0.6563,1.25,0.6563,1.1875,0.6875,1.1875,0.6563,1.25,0.6875,1.1875,0.6875,1.25,0.6875,1.25,0.6875,1.1875,0.7188,1.1875,0.6875,1.25,0.7188,1.1875,0.7188,1.25,0.7188,1.25,0.7188,1.1875,0.75,1.1875,0.7188,1.25,0.75,1.1875,0.75,1.25,0.75,1.25,0.75,1.1875,0.7813,1.1875,0.75,1.25,0.7813,1.1875,0.7813,1.25,0.7813,1.25,0.7813,1.1875,0.8125,1.1875,0.7813,1.25,0.8125,1.1875,0.8125,1.25,0.8125,1.25,0.8125,1.1875,0.8438,1.1875,0.8125,1.25,0.8438,1.1875,0.8438,1.25,0.8438,1.25,0.8438,1.1875,0.875,1.1875,0.8438,1.25,0.875,1.1875,0.875,1.25,0.875,1.25,0.875,1.1875,0.9063,1.1875,0.875,1.25,0.9063,1.1875,0.9063,1.25,0.9063,1.25,0.9063,1.1875,0.9375,1.1875,0.9063,1.25,0.9375,1.1875,0.9375,1.25,0.9375,1.25,0.9375,1.1875,0.9688,1.1875,0.9375,1.25,0.9688,1.1875,0.9688,1.25,0.9688,1.25,0.9688,1.1875,1.0,1.1875,0.9688,1.25,1.0,1.1875,1.0,1.25,0.0,1.1875,0.0,1.125,0.0312,1.125,0.0,1.1875,0.0312,1.125,0.0312,1.1875,0.0312,1.1875,0.0312,1.125,0.0625,1.125,0.0312,1.1875,0.0625,1.125,0.0625,1.1875,0.0625,1.1875,0.0625,1.125,0.0938,1.125,0.0625,1.1875,0.0938,1.125,0.0938,1.1875,0.0938,1.1875,0.0938,1.125,0.125,1.125,0.0938,1.1875,0.125,1.125,0.125,1.1875,0.125,1.1875,0.125,1.125,0.1562,1.125,0.125,1.1875,0.1562,1.125,0.1562,1.1875,0.1562,1.1875,0.1562,1.125,0.1875,1.125,0.1562,1.1875,0.1875,1.125,0.1875,1.1875,0.1875,1.1875,0.1875,1.125,0.2187,1.125,0.1875,1.1875,0.2187,1.125,0.2187,1.1875,0.2187,1.1875,0.2187,1.125,0.25,1.125,0.2187,1.1875,0.25,1.125,0.25,1.1875,0.25,1.1875,0.25,1.125,0.2812,1.125,0.25,1.1875,0.2812,1.125,0.2812,1.1875,0.2812,1.1875,0.2812,1.125,0.3125,1.125,0.2812,1.1875,0.3125,1.125,0.3125,1.1875,0.3125,1.1875,0.3125,1.125,0.3437,1.125,0.3125,1.1875,0.3437,1.125,0.3437,1.1875,0.3437,1.1875,0.3437,1.125,0.375,1.125,0.3437,1.1875,0.375,1.125,0.375,1.1875,0.375,1.1875,0.375,1.125,0.4062,1.125,0.375,1.1875,0.4062,1.125,0.4062,1.1875,0.4062,1.1875,0.4062,1.125,0.4375,1.125,0.4062,1.1875,0.4375,1.125,0.4375,1.1875,0.4375,1.1875,0.4375,1.125,0.4688,1.125,0.4375,1.1875,0.4688,1.125,0.4688,1.1875,0.4688,1.1875,0.4688,1.125,0.5,1.125,0.4688,1.1875,0.5,1.125,0.5,1.1875,0.5,1.1875,0.5,1.125,0.5313,1.125,0.5,1.1875,0.5313,1.125,0.5313,1.1875,0.5313,1.1875,0.5313,1.125,0.5625,1.125,0.5313,1.1875,0.5625,1.125,0.5625,1.1875,0.5625,1.1875,0.5625,1.125,0.5938,1.125,0.5625,1.1875,0.5938,1.125,0.5938,1.1875,0.5938,1.1875,0.5938,1.125,0.625,1.125,0.5938,1.1875,0.625,1.125,0.625,1.1875,0.625,1.1875,0.625,1.125,0.6563,1.125,0.625,1.1875,0.6563,1.125,0.6563,1.1875,0.6563,1.1875,0.6563,1.125,0.6875,1.125,0.6563,1.1875,0.6875,1.125,0.6875,1.1875,0.6875,1.1875,0.6875,1.125,0.7188,1.125,0.6875,1.1875,0.7188,1.125,0.7188,1.1875,0.7188,1.1875,0.7188,1.125,0.75,1.125,0.7188,1.1875,0.75,1.125,0.75,1.1875,0.75,1.1875,0.75,1.125,0.7813,1.125,0.75,1.1875,0.7813,1.125,0.7813,1.1875,0.7813,1.1875,0.7813,1.125,0.8125,1.125,0.7813,1.1875,0.8125,1.125,0.8125,1.1875,0.8125,1.1875,0.8125,1.125,0.8438,1.125,0.8125,1.1875,0.8438,1.125,0.8438,1.1875,0.8438,1.1875,0.8438,1.125,0.875,1.125,0.8438,1.1875,0.875,1.125,0.875,1.1875,0.875,1.1875,0.875,1.125,0.9063,1.125,0.875,1.1875,0.9063,1.125,0.9063,1.1875,0.9063,1.1875,0.9063,1.125,0.9375,1.125,0.9063,1.1875,0.9375,1.125,0.9375,1.1875,0.9375,1.1875,0.9375,1.125,0.9688,1.125,0.9375,1.1875,0.9688,1.125,0.9688,1.1875,0.9688,1.1875,0.9688,1.125,1.0,1.125,0.9688,1.1875,1.0,1.125,1.0,1.1875,0.0,1.125,0.0,1.0625,0.0312,1.0625,0.0,1.125,0.0312,1.0625,0.0312,1.125,0.0312,1.125,0.0312,1.0625,0.0625,1.0625,0.0312,1.125,0.0625,1.0625,0.0625,1.125,0.0625,1.125,0.0625,1.0625,0.0938,1.0625,0.0625,1.125,0.0938,1.0625,0.0938,1.125,0.0938,1.125,0.0938,1.0625,0.125,1.0625,0.0938,1.125,0.125,1.0625,0.125,1.125,0.125,1.125,0.125,1.0625,0.1562,1.0625,0.125,1.125,0.1562,1.0625,0.1562,1.125,0.1562,1.125,0.1562,1.0625,0.1875,1.0625,0.1562,1.125,0.1875,1.0625,0.1875,1.125,0.1875,1.125,0.1875,1.0625,0.2187,1.0625,0.1875,1.125,0.2187,1.0625,0.2187,1.125,0.2187,1.125,0.2187,1.0625,0.25,1.0625,0.2187,1.125,0.25,1.0625,0.25,1.125,0.25,1.125,0.25,1.0625,0.2812,1.0625,0.25,1.125,0.2812,1.0625,0.2812,1.125,0.2812,1.125,0.2812,1.0625,0.3125,1.0625,0.2812,1.125,0.3125,1.0625,0.3125,1.125,0.3125,1.125,0.3125,1.0625,0.3437,1.0625,0.3125,1.125,0.3437,1.0625,0.3437,1.125,0.3437,1.125,0.3437,1.0625,0.375,1.0625,0.3437,1.125,0.375,1.0625,0.375,1.125,0.375,1.125,0.375,1.0625,0.4062,1.0625,0.375,1.125,0.4062,1.0625,0.4062,1.125,0.4062,1.125,0.4062,1.0625,0.4375,1.0625,0.4062,1.125,0.4375,1.0625,0.4375,1.125,0.4375,1.125,0.4375,1.0625,0.4688,1.0625,0.4375,1.125,0.4688,1.0625,0.4688,1.125,0.4688,1.125,0.4688,1.0625,0.5,1.0625,0.4688,1.125,0.5,1.0625,0.5,1.125,0.5,1.125,0.5,1.0625,0.5313,1.0625,0.5,1.125,0.5313,1.0625,0.5313,1.125,0.5313,1.125,0.5313,1.0625,0.5625,1.0625,0.5313,1.125,0.5625,1.0625,0.5625,1.125,0.5625,1.125,0.5625,1.0625,0.5938,1.0625,0.5625,1.125,0.5938,1.0625,0.5938,1.125,0.5938,1.125,0.5938,1.0625,0.625,1.0625,0.5938,1.125,0.625,1.0625,0.625,1.125,0.625,1.125,0.625,1.0625,0.6563,1.0625,0.625,1.125,0.6563,1.0625,0.6563,1.125,0.6563,1.125,0.6563,1.0625,0.6875,1.0625,0.6563,1.125,0.6875,1.0625,0.6875,1.125,0.6875,1.125,0.6875,1.0625,0.7188,1.0625,0.6875,1.125,0.7188,1.0625,0.7188,1.125,0.7188,1.125,0.7188,1.0625,0.75,1.0625,0.7188,1.125,0.75,1.0625,0.75,1.125,0.75,1.125,0.75,1.0625,0.7813,1.0625,0.75,1.125,0.7813,1.0625,0.7813,1.125,0.7813,1.125,0.7813,1.0625,0.8125,1.0625,0.7813,1.125,0.8125,1.0625,0.8125,1.125,0.8125,1.125,0.8125,1.0625,0.8438,1.0625,0.8125,1.125,0.8438,1.0625,0.8438,1.125,0.8438,1.125,0.8438,1.0625,0.875,1.0625,0.8438,1.125,0.875,1.0625,0.875,1.125,0.875,1.125,0.875,1.0625,0.9063,1.0625,0.875,1.125,0.9063,1.0625,0.9063,1.125,0.9063,1.125,0.9063,1.0625,0.9375,1.0625,0.9063,1.125,0.9375,1.0625,0.9375,1.125,0.9375,1.125,0.9375,1.0625,0.9688,1.0625,0.9375,1.125,0.9688,1.0625,0.9688,1.125,0.9688,1.125,0.9688,1.0625,1.0,1.0625,0.9688,1.125,1.0,1.0625,1.0,1.125,0.0,1.0,0.0312,1.0625,0.0,1.0625,0.0312,1.0,0.0625,1.0625,0.0312,1.0625,0.0625,1.0,0.0938,1.0625,0.0625,1.0625,0.0938,1.0,0.125,1.0625,0.0938,1.0625,0.125,1.0,0.1562,1.0625,0.125,1.0625,0.1562,1.0,0.1875,1.0625,0.1562,1.0625,0.1875,1.0,0.2187,1.0625,0.1875,1.0625,0.2187,1.0,0.25,1.0625,0.2187,1.0625,0.25,1.0,0.2812,1.0625,0.25,1.0625,0.2812,1.0,0.3125,1.0625,0.2812,1.0625,0.3125,1.0,0.3437,1.0625,0.3125,1.0625,0.3437,1.0,0.375,1.0625,0.3437,1.0625,0.375,1.0,0.4062,1.0625,0.375,1.0625,0.4062,1.0,0.4375,1.0625,0.4062,1.0625,0.4375,1.0,0.4688,1.0625,0.4375,1.0625,0.4688,1.0,0.5,1.0625,0.4688,1.0625,0.5,1.0,0.5313,1.0625,0.5,1.0625,0.5313,1.0,0.5625,1.0625,0.5313,1.0625,0.5625,1.0,0.5938,1.0625,0.5625,1.0625,0.5938,1.0,0.625,1.0625,0.5938,1.0625,0.625,1.0,0.6563,1.0625,0.625,1.0625,0.6563,1.0,0.6875,1.0625,0.6563,1.0625,0.6875,1.0,0.7188,1.0625,0.6875,1.0625,0.7188,1.0,0.75,1.0625,0.7188,1.0625,0.75,1.0,0.7813,1.0625,0.75,1.0625,0.7813,1.0,0.8125,1.0625,0.7813,1.0625,0.8125,1.0,0.8438,1.0625,0.8125,1.0625,0.8438,1.0,0.875,1.0625,0.8438,1.0625,0.875,1.0,0.9063,1.0625,0.875,1.0625,0.9063,1.0,0.9375,1.0625,0.9063,1.0625,0.9375,1.0,0.9688,1.0625,0.9375,1.0625,0.9688,1.0,1.0,1.0625,0.9688,1.0625],"uvs2":null,"colors":null,"hasVertexAlpha":false,"matricesIndices":null,"matricesWeights":null,"matricesIndicesExtra":null,"matricesWeightsExtra":null,"indices":[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,1984,1985,1986,1987,1988,1989,1990,1991,1992,1993,1994,1995,1996,1997,1998,1999,2000,2001,2002,2003,2004,2005,2006,2007,2008,2009,2010,2011,2012,2013,2014,2015,2016,2017,2018,2019,2020,2021,2022,2023,2024,2025,2026,2027,2028,2029,2030,2031,2032,2033,2034,2035,2036,2037,2038,2039,2040,2041,2042,2043,2044,2045,2046,2047,2048,2049,2050,2051,2052,2053,2054,2055,2056,2057,2058,2059,2060,2061,2062,2063,2064,2065,2066,2067,2068,2069,2070,2071,2072,2073,2074,2075,2076,2077,2078,2079,2080,2081,2082,2083,2084,2085,2086,2087,2088,2089,2090,2091,2092,2093,2094,2095,2096,2097,2098,2099,2100,2101,2102,2103,2104,2105,2106,2107,2108,2109,2110,2111,2112,2113,2114,2115,2116,2117,2118,2119,2120,2121,2122,2123,2124,2125,2126,2127,2128,2129,2130,2131,2132,2133,2134,2135,2136,2137,2138,2139,2140,2141,2142,2143,2144,2145,2146,2147,2148,2149,2150,2151,2152,2153,2154,2155,2156,2157,2158,2159,2160,2161,2162,2163,2164,2165,2166,2167,2168,2169,2170,2171,2172,2173,2174,2175,2176,2177,2178,2179,2180,2181,2182,2183,2184,2185,2186,2187,2188,2189,2190,2191,2192,2193,2194,2195,2196,2197,2198,2199,2200,2201,2202,2203,2204,2205,2206,2207,2208,2209,2210,2211,2212,2213,2214,2215,2216,2217,2218,2219,2220,2221,2222,2223,2224,2225,2226,2227,2228,2229,2230,2231,2232,2233,2234,2235,2236,2237,2238,2239,2240,2241,2242,2243,2244,2245,2246,2247,2248,2249,2250,2251,2252,2253,2254,2255,2256,2257,2258,2259,2260,2261,2262,2263,2264,2265,2266,2267,2268,2269,2270,2271,2272,2273,2274,2275,2276,2277,2278,2279,2280,2281,2282,2283,2284,2285,2286,2287,2288,2289,2290,2291,2292,2293,2294,2295,2296,2297,2298,2299,2300,2301,2302,2303,2304,2305,2306,2307,2308,2309,2310,2311,2312,2313,2314,2315,2316,2317,2318,2319,2320,2321,2322,2323,2324,2325,2326,2327,2328,2329,2330,2331,2332,2333,2334,2335,2336,2337,2338,2339,2340,2341,2342,2343,2344,2345,2346,2347,2348,2349,2350,2351,2352,2353,2354,2355,2356,2357,2358,2359,2360,2361,2362,2363,2364,2365,2366,2367,2368,2369,2370,2371,2372,2373,2374,2375,2376,2377,2378,2379,2380,2381,2382,2383,2384,2385,2386,2387,2388,2389,2390,2391,2392,2393,2394,2395,2396,2397,2398,2399,2400,2401,2402,2403,2404,2405,2406,2407,2408,2409,2410,2411,2412,2413,2414,2415,2416,2417,2418,2419,2420,2421,2422,2423,2424,2425,2426,2427,2428,2429,2430,2431,2432,2433,2434,2435,2436,2437,2438,2439,2440,2441,2442,2443,2444,2445,2446,2447,2448,2449,2450,2451,2452,2453,2454,2455,2456,2457,2458,2459,2460,2461,2462,2463,2464,2465,2466,2467,2468,2469,2470,2471,2472,2473,2474,2475,2476,2477,2478,2479,2480,2481,2482,2483,2484,2485,2486,2487,2488,2489,2490,2491,2492,2493,2494,2495,2496,2497,2498,2499,2500,2501,2502,2503,2504,2505,2506,2507,2508,2509,2510,2511,2512,2513,2514,2515,2516,2517,2518,2519,2520,2521,2522,2523,2524,2525,2526,2527,2528,2529,2530,2531,2532,2533,2534,2535,2536,2537,2538,2539,2540,2541,2542,2543,2544,2545,2546,2547,2548,2549,2550,2551,2552,2553,2554,2555,2556,2557,2558,2559,2560,2561,2562,2563,2564,2565,2566,2567,2568,2569,2570,2571,2572,2573,2574,2575,2576,2577,2578,2579,2580,2581,2582,2583,2584,2585,2586,2587,2588,2589,2590,2591,2592,2593,2594,2595,2596,2597,2598,2599,2600,2601,2602,2603,2604,2605,2606,2607,2608,2609,2610,2611,2612,2613,2614,2615,2616,2617,2618,2619,2620,2621,2622,2623,2624,2625,2626,2627,2628,2629,2630,2631,2632,2633,2634,2635,2636,2637,2638,2639,2640,2641,2642,2643,2644,2645,2646,2647,2648,2649,2650,2651,2652,2653,2654,2655,2656,2657,2658,2659,2660,2661,2662,2663,2664,2665,2666,2667,2668,2669,2670,2671,2672,2673,2674,2675,2676,2677,2678,2679,2680,2681,2682,2683,2684,2685,2686,2687,2688,2689,2690,2691,2692,2693,2694,2695,2696,2697,2698,2699,2700,2701,2702,2703,2704,2705,2706,2707,2708,2709,2710,2711,2712,2713,2714,2715,2716,2717,2718,2719,2720,2721,2722,2723,2724,2725,2726,2727,2728,2729,2730,2731,2732,2733,2734,2735,2736,2737,2738,2739,2740,2741,2742,2743,2744,2745,2746,2747,2748,2749,2750,2751,2752,2753,2754,2755,2756,2757,2758,2759,2760,2761,2762,2763,2764,2765,2766,2767,2768,2769,2770,2771,2772,2773,2774,2775,2776,2777,2778,2779,2780,2781,2782,2783,2784,2785,2786,2787,2788,2789,2790,2791,2792,2793,2794,2795,2796,2797,2798,2799,2800,2801,2802,2803,2804,2805,2806,2807,2808,2809,2810,2811,2812,2813,2814,2815,2816,2817,2818,2819,2820,2821,2822,2823,2824,2825,2826,2827,2828,2829,2830,2831,2832,2833,2834,2835,2836,2837,2838,2839,2840,2841,2842,2843,2844,2845,2846,2847,2848,2849,2850,2851,2852,2853,2854,2855,2856,2857,2858,2859,2860,2861,2862,2863,2864,2865,2866,2867,2868,2869,2870,2871,2872,2873,2874,2875,2876,2877,2878,2879],"receiveShadows":true,"infiniteDistance":false,"billboardMode":0,"visibility":1.0,"subMeshes":[{"materialIndex":0,"verticesStart":0,"verticesCount":2880,"indexStart":0,"indexCount":2880}],"instances":null,"skeletonId":-1,"numBoneInfluencers":4,"applyFog":true,"lodMeshIds":null,"lodDistances":null,"lodCoverages":null,"rotation":null,"scaling":[1.0,1.0,1.0],"rotationQuaternion":[0.0,0.7071,0.0,0.7071],"actions":null,"checkCollisions":false,"pickable":false,"showBoundingBox":false,"showSubMeshesBoundingBox":false,"alphaIndex":1000,"physicsImpostor":0,"physicsMass":0.0,"physicsFriction":0.0,"physicsRestitution":0.0,"name":"PhysicalMesh","id":"311381f0-8487-4fc5-89fa-7d01dfda5e2f","parentId":null,"position":[3.0,0.0,0.0],"animations":[],"autoAnimate":true,"autoAnimateFrom":0,"autoAnimateTo":100,"autoAnimateLoop":true,"metadata":null},{"materialId":"cde211a5-1bb2-4457-b84b-b72fec1b95e2","isEnabled":true,"isVisible":true,"positions":[0.0,1.0,0.0,0.0,0.9808,0.1951,-0.0381,0.9808,0.1913,0.0,1.0,0.0,-0.0381,0.9808,0.1913,-0.0747,0.9808,0.1802,0.0,1.0,0.0,-0.0747,0.9808,0.1802,-0.1084,0.9808,0.1622,0.0,1.0,0.0,-0.1084,0.9808,0.1622,-0.1379,0.9808,0.1379,0.0,1.0,0.0,-0.1379,0.9808,0.1379,-0.1622,0.9808,0.1084,0.0,1.0,0.0,-0.1622,0.9808,0.1084,-0.1802,0.9808,0.0747,0.0,1.0,0.0,-0.1802,0.9808,0.0747,-0.1913,0.9808,0.0381,0.0,1.0,0.0,-0.1913,0.9808,0.0381,-0.1951,0.9808,0.0,0.0,1.0,0.0,-0.1951,0.9808,0.0,-0.1913,0.9808,-0.0381,0.0,1.0,0.0,-0.1913,0.9808,-0.0381,-0.1802,0.9808,-0.0747,0.0,1.0,0.0,-0.1802,0.9808,-0.0747,-0.1622,0.9808,-0.1084,0.0,1.0,0.0,-0.1622,0.9808,-0.1084,-0.1379,0.9808,-0.1379,0.0,1.0,0.0,-0.1379,0.9808,-0.1379,-0.1084,0.9808,-0.1622,0.0,1.0,0.0,-0.1084,0.9808,-0.1622,-0.0747,0.9808,-0.1802,0.0,1.0,0.0,-0.0747,0.9808,-0.1802,-0.0381,0.9808,-0.1913,0.0,1.0,0.0,-0.0381,0.9808,-0.1913,0.0,0.9808,-0.1951,0.0,1.0,0.0,0.0,0.9808,-0.1951,0.0381,0.9808,-0.1913,0.0,1.0,0.0,0.0381,0.9808,-0.1913,0.0747,0.9808,-0.1802,0.0,1.0,0.0,0.0747,0.9808,-0.1802,0.1084,0.9808,-0.1622,0.0,1.0,0.0,0.1084,0.9808,-0.1622,0.1379,0.9808,-0.1379,0.0,1.0,0.0,0.1379,0.9808,-0.1379,0.1622,0.9808,-0.1084,0.0,1.0,0.0,0.1622,0.9808,-0.1084,0.1802,0.9808,-0.0747,0.0,1.0,0.0,0.1802,0.9808,-0.0747,0.1913,0.9808,-0.0381,0.0,1.0,0.0,0.1913,0.9808,-0.0381,0.1951,0.9808,0.0,0.0,1.0,0.0,0.1951,0.9808,0.0,0.1913,0.9808,0.0381,0.0,1.0,0.0,0.1913,0.9808,0.0381,0.1802,0.9808,0.0747,0.0,1.0,0.0,0.1802,0.9808,0.0747,0.1622,0.9808,0.1084,0.0,1.0,0.0,0.1622,0.9808,0.1084,0.1379,0.9808,0.1379,0.0,1.0,0.0,0.1379,0.9808,0.1379,0.1084,0.9808,0.1622,0.0,1.0,0.0,0.1084,0.9808,0.1622,0.0747,0.9808,0.1802,0.0,1.0,0.0,0.0747,0.9808,0.1802,0.0381,0.9808,0.1913,0.0,1.0,0.0,0.0381,0.9808,0.1913,0.0,0.9808,0.1951,0.0,0.9808,0.1951,0.0,0.9239,0.3827,-0.0747,0.9239,0.3753,0.0,0.9808,0.1951,-0.0747,0.9239,0.3753,-0.0381,0.9808,0.1913,-0.0381,0.9808,0.1913,-0.0747,0.9239,0.3753,-0.1464,0.9239,0.3536,-0.0381,0.9808,0.1913,-0.1464,0.9239,0.3536,-0.0747,0.9808,0.1802,-0.0747,0.9808,0.1802,-0.1464,0.9239,0.3536,-0.2126,0.9239,0.3182,-0.0747,0.9808,0.1802,-0.2126,0.9239,0.3182,-0.1084,0.9808,0.1622,-0.1084,0.9808,0.1622,-0.2126,0.9239,0.3182,-0.2706,0.9239,0.2706,-0.1084,0.9808,0.1622,-0.2706,0.9239,0.2706,-0.1379,0.9808,0.1379,-0.1379,0.9808,0.1379,-0.2706,0.9239,0.2706,-0.3182,0.9239,0.2126,-0.1379,0.9808,0.1379,-0.3182,0.9239,0.2126,-0.1622,0.9808,0.1084,-0.1622,0.9808,0.1084,-0.3182,0.9239,0.2126,-0.3536,0.9239,0.1464,-0.1622,0.9808,0.1084,-0.3536,0.9239,0.1464,-0.1802,0.9808,0.0747,-0.1802,0.9808,0.0747,-0.3536,0.9239,0.1464,-0.3753,0.9239,0.0747,-0.1802,0.9808,0.0747,-0.3753,0.9239,0.0747,-0.1913,0.9808,0.0381,-0.1913,0.9808,0.0381,-0.3753,0.9239,0.0747,-0.3827,0.9239,0.0,-0.1913,0.9808,0.0381,-0.3827,0.9239,0.0,-0.1951,0.9808,0.0,-0.1951,0.9808,0.0,-0.3827,0.9239,0.0,-0.3753,0.9239,-0.0747,-0.1951,0.9808,0.0,-0.3753,0.9239,-0.0747,-0.1913,0.9808,-0.0381,-0.1913,0.9808,-0.0381,-0.3753,0.9239,-0.0747,-0.3536,0.9239,-0.1464,-0.1913,0.9808,-0.0381,-0.3536,0.9239,-0.1464,-0.1802,0.9808,-0.0747,-0.1802,0.9808,-0.0747,-0.3536,0.9239,-0.1464,-0.3182,0.9239,-0.2126,-0.1802,0.9808,-0.0747,-0.3182,0.9239,-0.2126,-0.1622,0.9808,-0.1084,-0.1622,0.9808,-0.1084,-0.3182,0.9239,-0.2126,-0.2706,0.9239,-0.2706,-0.1622,0.9808,-0.1084,-0.2706,0.9239,-0.2706,-0.1379,0.9808,-0.1379,-0.1379,0.9808,-0.1379,-0.2706,0.9239,-0.2706,-0.2126,0.9239,-0.3182,-0.1379,0.9808,-0.1379,-0.2126,0.9239,-0.3182,-0.1084,0.9808,-0.1622,-0.1084,0.9808,-0.1622,-0.2126,0.9239,-0.3182,-0.1464,0.9239,-0.3536,-0.1084,0.9808,-0.1622,-0.1464,0.9239,-0.3536,-0.0747,0.9808,-0.1802,-0.0747,0.9808,-0.1802,-0.1464,0.9239,-0.3536,-0.0747,0.9239,-0.3753,-0.0747,0.9808,-0.1802,-0.0747,0.9239,-0.3753,-0.0381,0.9808,-0.1913,-0.0381,0.9808,-0.1913,-0.0747,0.9239,-0.3753,0.0,0.9239,-0.3827,-0.0381,0.9808,-0.1913,0.0,0.9239,-0.3827,0.0,0.9808,-0.1951,0.0,0.9808,-0.1951,0.0,0.9239,-0.3827,0.0747,0.9239,-0.3753,0.0,0.9808,-0.1951,0.0747,0.9239,-0.3753,0.0381,0.9808,-0.1913,0.0381,0.9808,-0.1913,0.0747,0.9239,-0.3753,0.1464,0.9239,-0.3536,0.0381,0.9808,-0.1913,0.1464,0.9239,-0.3536,0.0747,0.9808,-0.1802,0.0747,0.9808,-0.1802,0.1464,0.9239,-0.3536,0.2126,0.9239,-0.3182,0.0747,0.9808,-0.1802,0.2126,0.9239,-0.3182,0.1084,0.9808,-0.1622,0.1084,0.9808,-0.1622,0.2126,0.9239,-0.3182,0.2706,0.9239,-0.2706,0.1084,0.9808,-0.1622,0.2706,0.9239,-0.2706,0.1379,0.9808,-0.1379,0.1379,0.9808,-0.1379,0.2706,0.9239,-0.2706,0.3182,0.9239,-0.2126,0.1379,0.9808,-0.1379,0.3182,0.9239,-0.2126,0.1622,0.9808,-0.1084,0.1622,0.9808,-0.1084,0.3182,0.9239,-0.2126,0.3536,0.9239,-0.1464,0.1622,0.9808,-0.1084,0.3536,0.9239,-0.1464,0.1802,0.9808,-0.0747,0.1802,0.9808,-0.0747,0.3536,0.9239,-0.1464,0.3753,0.9239,-0.0747,0.1802,0.9808,-0.0747,0.3753,0.9239,-0.0747,0.1913,0.9808,-0.0381,0.1913,0.9808,-0.0381,0.3753,0.9239,-0.0747,0.3827,0.9239,0.0,0.1913,0.9808,-0.0381,0.3827,0.9239,0.0,0.1951,0.9808,0.0,0.1951,0.9808,0.0,0.3827,0.9239,0.0,0.3753,0.9239,0.0747,0.1951,0.9808,0.0,0.3753,0.9239,0.0747,0.1913,0.9808,0.0381,0.1913,0.9808,0.0381,0.3753,0.9239,0.0747,0.3536,0.9239,0.1464,0.1913,0.9808,0.0381,0.3536,0.9239,0.1464,0.1802,0.9808,0.0747,0.1802,0.9808,0.0747,0.3536,0.9239,0.1464,0.3182,0.9239,0.2126,0.1802,0.9808,0.0747,0.3182,0.9239,0.2126,0.1622,0.9808,0.1084,0.1622,0.9808,0.1084,0.3182,0.9239,0.2126,0.2706,0.9239,0.2706,0.1622,0.9808,0.1084,0.2706,0.9239,0.2706,0.1379,0.9808,0.1379,0.1379,0.9808,0.1379,0.2706,0.9239,0.2706,0.2126,0.9239,0.3182,0.1379,0.9808,0.1379,0.2126,0.9239,0.3182,0.1084,0.9808,0.1622,0.1084,0.9808,0.1622,0.2126,0.9239,0.3182,0.1464,0.9239,0.3536,0.1084,0.9808,0.1622,0.1464,0.9239,0.3536,0.0747,0.9808,0.1802,0.0747,0.9808,0.1802,0.1464,0.9239,0.3536,0.0747,0.9239,0.3753,0.0747,0.9808,0.1802,0.0747,0.9239,0.3753,0.0381,0.9808,0.1913,0.0381,0.9808,0.1913,0.0747,0.9239,0.3753,0.0,0.9239,0.3827,0.0381,0.9808,0.1913,0.0,0.9239,0.3827,0.0,0.9808,0.1951,0.0,0.9239,0.3827,0.0,0.8315,0.5556,-0.1084,0.8315,0.5449,0.0,0.9239,0.3827,-0.1084,0.8315,0.5449,-0.0747,0.9239,0.3753,-0.0747,0.9239,0.3753,-0.1084,0.8315,0.5449,-0.2126,0.8315,0.5133,-0.0747,0.9239,0.3753,-0.2126,0.8315,0.5133,-0.1464,0.9239,0.3536,-0.1464,0.9239,0.3536,-0.2126,0.8315,0.5133,-0.3087,0.8315,0.4619,-0.1464,0.9239,0.3536,-0.3087,0.8315,0.4619,-0.2126,0.9239,0.3182,-0.2126,0.9239,0.3182,-0.3087,0.8315,0.4619,-0.3928,0.8315,0.3928,-0.2126,0.9239,0.3182,-0.3928,0.8315,0.3928,-0.2706,0.9239,0.2706,-0.2706,0.9239,0.2706,-0.3928,0.8315,0.3928,-0.4619,0.8315,0.3087,-0.2706,0.9239,0.2706,-0.4619,0.8315,0.3087,-0.3182,0.9239,0.2126,-0.3182,0.9239,0.2126,-0.4619,0.8315,0.3087,-0.5133,0.8315,0.2126,-0.3182,0.9239,0.2126,-0.5133,0.8315,0.2126,-0.3536,0.9239,0.1464,-0.3536,0.9239,0.1464,-0.5133,0.8315,0.2126,-0.5449,0.8315,0.1084,-0.3536,0.9239,0.1464,-0.5449,0.8315,0.1084,-0.3753,0.9239,0.0747,-0.3753,0.9239,0.0747,-0.5449,0.8315,0.1084,-0.5556,0.8315,0.0,-0.3753,0.9239,0.0747,-0.5556,0.8315,0.0,-0.3827,0.9239,0.0,-0.3827,0.9239,0.0,-0.5556,0.8315,0.0,-0.5449,0.8315,-0.1084,-0.3827,0.9239,0.0,-0.5449,0.8315,-0.1084,-0.3753,0.9239,-0.0747,-0.3753,0.9239,-0.0747,-0.5449,0.8315,-0.1084,-0.5133,0.8315,-0.2126,-0.3753,0.9239,-0.0747,-0.5133,0.8315,-0.2126,-0.3536,0.9239,-0.1464,-0.3536,0.9239,-0.1464,-0.5133,0.8315,-0.2126,-0.4619,0.8315,-0.3087,-0.3536,0.9239,-0.1464,-0.4619,0.8315,-0.3087,-0.3182,0.9239,-0.2126,-0.3182,0.9239,-0.2126,-0.4619,0.8315,-0.3087,-0.3928,0.8315,-0.3928,-0.3182,0.9239,-0.2126,-0.3928,0.8315,-0.3928,-0.2706,0.9239,-0.2706,-0.2706,0.9239,-0.2706,-0.3928,0.8315,-0.3928,-0.3087,0.8315,-0.4619,-0.2706,0.9239,-0.2706,-0.3087,0.8315,-0.4619,-0.2126,0.9239,-0.3182,-0.2126,0.9239,-0.3182,-0.3087,0.8315,-0.4619,-0.2126,0.8315,-0.5133,-0.2126,0.9239,-0.3182,-0.2126,0.8315,-0.5133,-0.1464,0.9239,-0.3536,-0.1464,0.9239,-0.3536,-0.2126,0.8315,-0.5133,-0.1084,0.8315,-0.5449,-0.1464,0.9239,-0.3536,-0.1084,0.8315,-0.5449,-0.0747,0.9239,-0.3753,-0.0747,0.9239,-0.3753,-0.1084,0.8315,-0.5449,0.0,0.8315,-0.5556,-0.0747,0.9239,-0.3753,0.0,0.8315,-0.5556,0.0,0.9239,-0.3827,0.0,0.9239,-0.3827,0.0,0.8315,-0.5556,0.1084,0.8315,-0.5449,0.0,0.9239,-0.3827,0.1084,0.8315,-0.5449,0.0747,0.9239,-0.3753,0.0747,0.9239,-0.3753,0.1084,0.8315,-0.5449,0.2126,0.8315,-0.5133,0.0747,0.9239,-0.3753,0.2126,0.8315,-0.5133,0.1464,0.9239,-0.3536,0.1464,0.9239,-0.3536,0.2126,0.8315,-0.5133,0.3087,0.8315,-0.4619,0.1464,0.9239,-0.3536,0.3087,0.8315,-0.4619,0.2126,0.9239,-0.3182,0.2126,0.9239,-0.3182,0.3087,0.8315,-0.4619,0.3928,0.8315,-0.3928,0.2126,0.9239,-0.3182,0.3928,0.8315,-0.3928,0.2706,0.9239,-0.2706,0.2706,0.9239,-0.2706,0.3928,0.8315,-0.3928,0.4619,0.8315,-0.3087,0.2706,0.9239,-0.2706,0.4619,0.8315,-0.3087,0.3182,0.9239,-0.2126,0.3182,0.9239,-0.2126,0.4619,0.8315,-0.3087,0.5133,0.8315,-0.2126,0.3182,0.9239,-0.2126,0.5133,0.8315,-0.2126,0.3536,0.9239,-0.1464,0.3536,0.9239,-0.1464,0.5133,0.8315,-0.2126,0.5449,0.8315,-0.1084,0.3536,0.9239,-0.1464,0.5449,0.8315,-0.1084,0.3753,0.9239,-0.0747,0.3753,0.9239,-0.0747,0.5449,0.8315,-0.1084,0.5556,0.8315,0.0,0.3753,0.9239,-0.0747,0.5556,0.8315,0.0,0.3827,0.9239,0.0,0.3827,0.9239,0.0,0.5556,0.8315,0.0,0.5449,0.8315,0.1084,0.3827,0.9239,0.0,0.5449,0.8315,0.1084,0.3753,0.9239,0.0747,0.3753,0.9239,0.0747,0.5449,0.8315,0.1084,0.5133,0.8315,0.2126,0.3753,0.9239,0.0747,0.5133,0.8315,0.2126,0.3536,0.9239,0.1464,0.3536,0.9239,0.1464,0.5133,0.8315,0.2126,0.4619,0.8315,0.3087,0.3536,0.9239,0.1464,0.4619,0.8315,0.3087,0.3182,0.9239,0.2126,0.3182,0.9239,0.2126,0.4619,0.8315,0.3087,0.3928,0.8315,0.3928,0.3182,0.9239,0.2126,0.3928,0.8315,0.3928,0.2706,0.9239,0.2706,0.2706,0.9239,0.2706,0.3928,0.8315,0.3928,0.3087,0.8315,0.4619,0.2706,0.9239,0.2706,0.3087,0.8315,0.4619,0.2126,0.9239,0.3182,0.2126,0.9239,0.3182,0.3087,0.8315,0.4619,0.2126,0.8315,0.5133,0.2126,0.9239,0.3182,0.2126,0.8315,0.5133,0.1464,0.9239,0.3536,0.1464,0.9239,0.3536,0.2126,0.8315,0.5133,0.1084,0.8315,0.5449,0.1464,0.9239,0.3536,0.1084,0.8315,0.5449,0.0747,0.9239,0.3753,0.0747,0.9239,0.3753,0.1084,0.8315,0.5449,0.0,0.8315,0.5556,0.0747,0.9239,0.3753,0.0,0.8315,0.5556,0.0,0.9239,0.3827,0.0,0.8315,0.5556,0.0,0.7071,0.7071,-0.1379,0.7071,0.6935,0.0,0.8315,0.5556,-0.1379,0.7071,0.6935,-0.1084,0.8315,0.5449,-0.1084,0.8315,0.5449,-0.1379,0.7071,0.6935,-0.2706,0.7071,0.6533,-0.1084,0.8315,0.5449,-0.2706,0.7071,0.6533,-0.2126,0.8315,0.5133,-0.2126,0.8315,0.5133,-0.2706,0.7071,0.6533,-0.3928,0.7071,0.5879,-0.2126,0.8315,0.5133,-0.3928,0.7071,0.5879,-0.3087,0.8315,0.4619,-0.3087,0.8315,0.4619,-0.3928,0.7071,0.5879,-0.5,0.7071,0.5,-0.3087,0.8315,0.4619,-0.5,0.7071,0.5,-0.3928,0.8315,0.3928,-0.3928,0.8315,0.3928,-0.5,0.7071,0.5,-0.5879,0.7071,0.3928,-0.3928,0.8315,0.3928,-0.5879,0.7071,0.3928,-0.4619,0.8315,0.3087,-0.4619,0.8315,0.3087,-0.5879,0.7071,0.3928,-0.6533,0.7071,0.2706,-0.4619,0.8315,0.3087,-0.6533,0.7071,0.2706,-0.5133,0.8315,0.2126,-0.5133,0.8315,0.2126,-0.6533,0.7071,0.2706,-0.6935,0.7071,0.1379,-0.5133,0.8315,0.2126,-0.6935,0.7071,0.1379,-0.5449,0.8315,0.1084,-0.5449,0.8315,0.1084,-0.6935,0.7071,0.1379,-0.7071,0.7071,0.0,-0.5449,0.8315,0.1084,-0.7071,0.7071,0.0,-0.5556,0.8315,0.0,-0.5556,0.8315,0.0,-0.7071,0.7071,0.0,-0.6935,0.7071,-0.1379,-0.5556,0.8315,0.0,-0.6935,0.7071,-0.1379,-0.5449,0.8315,-0.1084,-0.5449,0.8315,-0.1084,-0.6935,0.7071,-0.1379,-0.6533,0.7071,-0.2706,-0.5449,0.8315,-0.1084,-0.6533,0.7071,-0.2706,-0.5133,0.8315,-0.2126,-0.5133,0.8315,-0.2126,-0.6533,0.7071,-0.2706,-0.5879,0.7071,-0.3928,-0.5133,0.8315,-0.2126,-0.5879,0.7071,-0.3928,-0.4619,0.8315,-0.3087,-0.4619,0.8315,-0.3087,-0.5879,0.7071,-0.3928,-0.5,0.7071,-0.5,-0.4619,0.8315,-0.3087,-0.5,0.7071,-0.5,-0.3928,0.8315,-0.3928,-0.3928,0.8315,-0.3928,-0.5,0.7071,-0.5,-0.3928,0.7071,-0.5879,-0.3928,0.8315,-0.3928,-0.3928,0.7071,-0.5879,-0.3087,0.8315,-0.4619,-0.3087,0.8315,-0.4619,-0.3928,0.7071,-0.5879,-0.2706,0.7071,-0.6533,-0.3087,0.8315,-0.4619,-0.2706,0.7071,-0.6533,-0.2126,0.8315,-0.5133,-0.2126,0.8315,-0.5133,-0.2706,0.7071,-0.6533,-0.1379,0.7071,-0.6935,-0.2126,0.8315,-0.5133,-0.1379,0.7071,-0.6935,-0.1084,0.8315,-0.5449,-0.1084,0.8315,-0.5449,-0.1379,0.7071,-0.6935,0.0,0.7071,-0.7071,-0.1084,0.8315,-0.5449,0.0,0.7071,-0.7071,0.0,0.8315,-0.5556,0.0,0.8315,-0.5556,0.0,0.7071,-0.7071,0.138,0.7071,-0.6935,0.0,0.8315,-0.5556,0.138,0.7071,-0.6935,0.1084,0.8315,-0.5449,0.1084,0.8315,-0.5449,0.138,0.7071,-0.6935,0.2706,0.7071,-0.6533,0.1084,0.8315,-0.5449,0.2706,0.7071,-0.6533,0.2126,0.8315,-0.5133,0.2126,0.8315,-0.5133,0.2706,0.7071,-0.6533,0.3928,0.7071,-0.5879,0.2126,0.8315,-0.5133,0.3928,0.7071,-0.5879,0.3087,0.8315,-0.4619,0.3087,0.8315,-0.4619,0.3928,0.7071,-0.5879,0.5,0.7071,-0.5,0.3087,0.8315,-0.4619,0.5,0.7071,-0.5,0.3928,0.8315,-0.3928,0.3928,0.8315,-0.3928,0.5,0.7071,-0.5,0.5879,0.7071,-0.3928,0.3928,0.8315,-0.3928,0.5879,0.7071,-0.3928,0.4619,0.8315,-0.3087,0.4619,0.8315,-0.3087,0.5879,0.7071,-0.3928,0.6533,0.7071,-0.2706,0.4619,0.8315,-0.3087,0.6533,0.7071,-0.2706,0.5133,0.8315,-0.2126,0.5133,0.8315,-0.2126,0.6533,0.7071,-0.2706,0.6935,0.7071,-0.1379,0.5133,0.8315,-0.2126,0.6935,0.7071,-0.1379,0.5449,0.8315,-0.1084,0.5449,0.8315,-0.1084,0.6935,0.7071,-0.1379,0.7071,0.7071,0.0,0.5449,0.8315,-0.1084,0.7071,0.7071,0.0,0.5556,0.8315,0.0,0.5556,0.8315,0.0,0.7071,0.7071,0.0,0.6935,0.7071,0.138,0.5556,0.8315,0.0,0.6935,0.7071,0.138,0.5449,0.8315,0.1084,0.5449,0.8315,0.1084,0.6935,0.7071,0.138,0.6533,0.7071,0.2706,0.5449,0.8315,0.1084,0.6533,0.7071,0.2706,0.5133,0.8315,0.2126,0.5133,0.8315,0.2126,0.6533,0.7071,0.2706,0.5879,0.7071,0.3928,0.5133,0.8315,0.2126,0.5879,0.7071,0.3928,0.4619,0.8315,0.3087,0.4619,0.8315,0.3087,0.5879,0.7071,0.3928,0.5,0.7071,0.5,0.4619,0.8315,0.3087,0.5,0.7071,0.5,0.3928,0.8315,0.3928,0.3928,0.8315,0.3928,0.5,0.7071,0.5,0.3928,0.7071,0.5879,0.3928,0.8315,0.3928,0.3928,0.7071,0.5879,0.3087,0.8315,0.4619,0.3087,0.8315,0.4619,0.3928,0.7071,0.5879,0.2706,0.7071,0.6533,0.3087,0.8315,0.4619,0.2706,0.7071,0.6533,0.2126,0.8315,0.5133,0.2126,0.8315,0.5133,0.2706,0.7071,0.6533,0.1379,0.7071,0.6935,0.2126,0.8315,0.5133,0.1379,0.7071,0.6935,0.1084,0.8315,0.5449,0.1084,0.8315,0.5449,0.1379,0.7071,0.6935,0.0,0.7071,0.7071,0.1084,0.8315,0.5449,0.0,0.7071,0.7071,0.0,0.8315,0.5556,0.0,0.7071,0.7071,0.0,0.5556,0.8315,-0.1622,0.5556,0.8155,0.0,0.7071,0.7071,-0.1622,0.5556,0.8155,-0.1379,0.7071,0.6935,-0.1379,0.7071,0.6935,-0.1622,0.5556,0.8155,-0.3182,0.5556,0.7682,-0.1379,0.7071,0.6935,-0.3182,0.5556,0.7682,-0.2706,0.7071,0.6533,-0.2706,0.7071,0.6533,-0.3182,0.5556,0.7682,-0.4619,0.5556,0.6913,-0.2706,0.7071,0.6533,-0.4619,0.5556,0.6913,-0.3928,0.7071,0.5879,-0.3928,0.7071,0.5879,-0.4619,0.5556,0.6913,-0.5879,0.5556,0.5879,-0.3928,0.7071,0.5879,-0.5879,0.5556,0.5879,-0.5,0.7071,0.5,-0.5,0.7071,0.5,-0.5879,0.5556,0.5879,-0.6913,0.5556,0.4619,-0.5,0.7071,0.5,-0.6913,0.5556,0.4619,-0.5879,0.7071,0.3928,-0.5879,0.7071,0.3928,-0.6913,0.5556,0.4619,-0.7682,0.5556,0.3182,-0.5879,0.7071,0.3928,-0.7682,0.5556,0.3182,-0.6533,0.7071,0.2706,-0.6533,0.7071,0.2706,-0.7682,0.5556,0.3182,-0.8155,0.5556,0.1622,-0.6533,0.7071,0.2706,-0.8155,0.5556,0.1622,-0.6935,0.7071,0.1379,-0.6935,0.7071,0.1379,-0.8155,0.5556,0.1622,-0.8315,0.5556,0.0,-0.6935,0.7071,0.1379,-0.8315,0.5556,0.0,-0.7071,0.7071,0.0,-0.7071,0.7071,0.0,-0.8315,0.5556,0.0,-0.8155,0.5556,-0.1622,-0.7071,0.7071,0.0,-0.8155,0.5556,-0.1622,-0.6935,0.7071,-0.1379,-0.6935,0.7071,-0.1379,-0.8155,0.5556,-0.1622,-0.7682,0.5556,-0.3182,-0.6935,0.7071,-0.1379,-0.7682,0.5556,-0.3182,-0.6533,0.7071,-0.2706,-0.6533,0.7071,-0.2706,-0.7682,0.5556,-0.3182,-0.6913,0.5556,-0.4619,-0.6533,0.7071,-0.2706,-0.6913,0.5556,-0.4619,-0.5879,0.7071,-0.3928,-0.5879,0.7071,-0.3928,-0.6913,0.5556,-0.4619,-0.5879,0.5556,-0.5879,-0.5879,0.7071,-0.3928,-0.5879,0.5556,-0.5879,-0.5,0.7071,-0.5,-0.5,0.7071,-0.5,-0.5879,0.5556,-0.5879,-0.4619,0.5556,-0.6913,-0.5,0.7071,-0.5,-0.4619,0.5556,-0.6913,-0.3928,0.7071,-0.5879,-0.3928,0.7071,-0.5879,-0.4619,0.5556,-0.6913,-0.3182,0.5556,-0.7682,-0.3928,0.7071,-0.5879,-0.3182,0.5556,-0.7682,-0.2706,0.7071,-0.6533,-0.2706,0.7071,-0.6533,-0.3182,0.5556,-0.7682,-0.1622,0.5556,-0.8155,-0.2706,0.7071,-0.6533,-0.1622,0.5556,-0.8155,-0.1379,0.7071,-0.6935,-0.1379,0.7071,-0.6935,-0.1622,0.5556,-0.8155,0.0,0.5556,-0.8315,-0.1379,0.7071,-0.6935,0.0,0.5556,-0.8315,0.0,0.7071,-0.7071,0.0,0.7071,-0.7071,0.0,0.5556,-0.8315,0.1622,0.5556,-0.8155,0.0,0.7071,-0.7071,0.1622,0.5556,-0.8155,0.138,0.7071,-0.6935,0.138,0.7071,-0.6935,0.1622,0.5556,-0.8155,0.3182,0.5556,-0.7682,0.138,0.7071,-0.6935,0.3182,0.5556,-0.7682,0.2706,0.7071,-0.6533,0.2706,0.7071,-0.6533,0.3182,0.5556,-0.7682,0.4619,0.5556,-0.6913,0.2706,0.7071,-0.6533,0.4619,0.5556,-0.6913,0.3928,0.7071,-0.5879,0.3928,0.7071,-0.5879,0.4619,0.5556,-0.6913,0.5879,0.5556,-0.5879,0.3928,0.7071,-0.5879,0.5879,0.5556,-0.5879,0.5,0.7071,-0.5,0.5,0.7071,-0.5,0.5879,0.5556,-0.5879,0.6913,0.5556,-0.4619,0.5,0.7071,-0.5,0.6913,0.5556,-0.4619,0.5879,0.7071,-0.3928,0.5879,0.7071,-0.3928,0.6913,0.5556,-0.4619,0.7682,0.5556,-0.3182,0.5879,0.7071,-0.3928,0.7682,0.5556,-0.3182,0.6533,0.7071,-0.2706,0.6533,0.7071,-0.2706,0.7682,0.5556,-0.3182,0.8155,0.5556,-0.1622,0.6533,0.7071,-0.2706,0.8155,0.5556,-0.1622,0.6935,0.7071,-0.1379,0.6935,0.7071,-0.1379,0.8155,0.5556,-0.1622,0.8315,0.5556,0.0,0.6935,0.7071,-0.1379,0.8315,0.5556,0.0,0.7071,0.7071,0.0,0.7071,0.7071,0.0,0.8315,0.5556,0.0,0.8155,0.5556,0.1622,0.7071,0.7071,0.0,0.8155,0.5556,0.1622,0.6935,0.7071,0.138,0.6935,0.7071,0.138,0.8155,0.5556,0.1622,0.7682,0.5556,0.3182,0.6935,0.7071,0.138,0.7682,0.5556,0.3182,0.6533,0.7071,0.2706,0.6533,0.7071,0.2706,0.7682,0.5556,0.3182,0.6913,0.5556,0.4619,0.6533,0.7071,0.2706,0.6913,0.5556,0.4619,0.5879,0.7071,0.3928,0.5879,0.7071,0.3928,0.6913,0.5556,0.4619,0.5879,0.5556,0.5879,0.5879,0.7071,0.3928,0.5879,0.5556,0.5879,0.5,0.7071,0.5,0.5,0.7071,0.5,0.5879,0.5556,0.5879,0.4619,0.5556,0.6913,0.5,0.7071,0.5,0.4619,0.5556,0.6913,0.3928,0.7071,0.5879,0.3928,0.7071,0.5879,0.4619,0.5556,0.6913,0.3182,0.5556,0.7682,0.3928,0.7071,0.5879,0.3182,0.5556,0.7682,0.2706,0.7071,0.6533,0.2706,0.7071,0.6533,0.3182,0.5556,0.7682,0.1622,0.5556,0.8155,0.2706,0.7071,0.6533,0.1622,0.5556,0.8155,0.1379,0.7071,0.6935,0.1379,0.7071,0.6935,0.1622,0.5556,0.8155,0.0,0.5556,0.8315,0.1379,0.7071,0.6935,0.0,0.5556,0.8315,0.0,0.7071,0.7071,0.0,0.5556,0.8315,0.0,0.3827,0.9239,-0.1802,0.3827,0.9061,0.0,0.5556,0.8315,-0.1802,0.3827,0.9061,-0.1622,0.5556,0.8155,-0.1622,0.5556,0.8155,-0.1802,0.3827,0.9061,-0.3536,0.3827,0.8536,-0.1622,0.5556,0.8155,-0.3536,0.3827,0.8536,-0.3182,0.5556,0.7682,-0.3182,0.5556,0.7682,-0.3536,0.3827,0.8536,-0.5133,0.3827,0.7682,-0.3182,0.5556,0.7682,-0.5133,0.3827,0.7682,-0.4619,0.5556,0.6913,-0.4619,0.5556,0.6913,-0.5133,0.3827,0.7682,-0.6533,0.3827,0.6533,-0.4619,0.5556,0.6913,-0.6533,0.3827,0.6533,-0.5879,0.5556,0.5879,-0.5879,0.5556,0.5879,-0.6533,0.3827,0.6533,-0.7682,0.3827,0.5133,-0.5879,0.5556,0.5879,-0.7682,0.3827,0.5133,-0.6913,0.5556,0.4619,-0.6913,0.5556,0.4619,-0.7682,0.3827,0.5133,-0.8536,0.3827,0.3536,-0.6913,0.5556,0.4619,-0.8536,0.3827,0.3536,-0.7682,0.5556,0.3182,-0.7682,0.5556,0.3182,-0.8536,0.3827,0.3536,-0.9061,0.3827,0.1802,-0.7682,0.5556,0.3182,-0.9061,0.3827,0.1802,-0.8155,0.5556,0.1622,-0.8155,0.5556,0.1622,-0.9061,0.3827,0.1802,-0.9239,0.3827,0.0,-0.8155,0.5556,0.1622,-0.9239,0.3827,0.0,-0.8315,0.5556,0.0,-0.8315,0.5556,0.0,-0.9239,0.3827,0.0,-0.9061,0.3827,-0.1802,-0.8315,0.5556,0.0,-0.9061,0.3827,-0.1802,-0.8155,0.5556,-0.1622,-0.8155,0.5556,-0.1622,-0.9061,0.3827,-0.1802,-0.8536,0.3827,-0.3536,-0.8155,0.5556,-0.1622,-0.8536,0.3827,-0.3536,-0.7682,0.5556,-0.3182,-0.7682,0.5556,-0.3182,-0.8536,0.3827,-0.3536,-0.7682,0.3827,-0.5133,-0.7682,0.5556,-0.3182,-0.7682,0.3827,-0.5133,-0.6913,0.5556,-0.4619,-0.6913,0.5556,-0.4619,-0.7682,0.3827,-0.5133,-0.6533,0.3827,-0.6533,-0.6913,0.5556,-0.4619,-0.6533,0.3827,-0.6533,-0.5879,0.5556,-0.5879,-0.5879,0.5556,-0.5879,-0.6533,0.3827,-0.6533,-0.5133,0.3827,-0.7682,-0.5879,0.5556,-0.5879,-0.5133,0.3827,-0.7682,-0.4619,0.5556,-0.6913,-0.4619,0.5556,-0.6913,-0.5133,0.3827,-0.7682,-0.3536,0.3827,-0.8536,-0.4619,0.5556,-0.6913,-0.3536,0.3827,-0.8536,-0.3182,0.5556,-0.7682,-0.3182,0.5556,-0.7682,-0.3536,0.3827,-0.8536,-0.1802,0.3827,-0.9061,-0.3182,0.5556,-0.7682,-0.1802,0.3827,-0.9061,-0.1622,0.5556,-0.8155,-0.1622,0.5556,-0.8155,-0.1802,0.3827,-0.9061,0.0,0.3827,-0.9239,-0.1622,0.5556,-0.8155,0.0,0.3827,-0.9239,0.0,0.5556,-0.8315,0.0,0.5556,-0.8315,0.0,0.3827,-0.9239,0.1802,0.3827,-0.9061,0.0,0.5556,-0.8315,0.1802,0.3827,-0.9061,0.1622,0.5556,-0.8155,0.1622,0.5556,-0.8155,0.1802,0.3827,-0.9061,0.3536,0.3827,-0.8536,0.1622,0.5556,-0.8155,0.3536,0.3827,-0.8536,0.3182,0.5556,-0.7682,0.3182,0.5556,-0.7682,0.3536,0.3827,-0.8536,0.5133,0.3827,-0.7682,0.3182,0.5556,-0.7682,0.5133,0.3827,-0.7682,0.4619,0.5556,-0.6913,0.4619,0.5556,-0.6913,0.5133,0.3827,-0.7682,0.6533,0.3827,-0.6533,0.4619,0.5556,-0.6913,0.6533,0.3827,-0.6533,0.5879,0.5556,-0.5879,0.5879,0.5556,-0.5879,0.6533,0.3827,-0.6533,0.7682,0.3827,-0.5133,0.5879,0.5556,-0.5879,0.7682,0.3827,-0.5133,0.6913,0.5556,-0.4619,0.6913,0.5556,-0.4619,0.7682,0.3827,-0.5133,0.8536,0.3827,-0.3536,0.6913,0.5556,-0.4619,0.8536,0.3827,-0.3536,0.7682,0.5556,-0.3182,0.7682,0.5556,-0.3182,0.8536,0.3827,-0.3536,0.9061,0.3827,-0.1802,0.7682,0.5556,-0.3182,0.9061,0.3827,-0.1802,0.8155,0.5556,-0.1622,0.8155,0.5556,-0.1622,0.9061,0.3827,-0.1802,0.9239,0.3827,0.0,0.8155,0.5556,-0.1622,0.9239,0.3827,0.0,0.8315,0.5556,0.0,0.8315,0.5556,0.0,0.9239,0.3827,0.0,0.9061,0.3827,0.1802,0.8315,0.5556,0.0,0.9061,0.3827,0.1802,0.8155,0.5556,0.1622,0.8155,0.5556,0.1622,0.9061,0.3827,0.1802,0.8536,0.3827,0.3536,0.8155,0.5556,0.1622,0.8536,0.3827,0.3536,0.7682,0.5556,0.3182,0.7682,0.5556,0.3182,0.8536,0.3827,0.3536,0.7682,0.3827,0.5133,0.7682,0.5556,0.3182,0.7682,0.3827,0.5133,0.6913,0.5556,0.4619,0.6913,0.5556,0.4619,0.7682,0.3827,0.5133,0.6533,0.3827,0.6533,0.6913,0.5556,0.4619,0.6533,0.3827,0.6533,0.5879,0.5556,0.5879,0.5879,0.5556,0.5879,0.6533,0.3827,0.6533,0.5133,0.3827,0.7682,0.5879,0.5556,0.5879,0.5133,0.3827,0.7682,0.4619,0.5556,0.6913,0.4619,0.5556,0.6913,0.5133,0.3827,0.7682,0.3536,0.3827,0.8536,0.4619,0.5556,0.6913,0.3536,0.3827,0.8536,0.3182,0.5556,0.7682,0.3182,0.5556,0.7682,0.3536,0.3827,0.8536,0.1802,0.3827,0.9061,0.3182,0.5556,0.7682,0.1802,0.3827,0.9061,0.1622,0.5556,0.8155,0.1622,0.5556,0.8155,0.1802,0.3827,0.9061,0.0,0.3827,0.9239,0.1622,0.5556,0.8155,0.0,0.3827,0.9239,0.0,0.5556,0.8315,0.0,0.3827,0.9239,0.0,0.1951,0.9808,-0.1913,0.1951,0.9619,0.0,0.3827,0.9239,-0.1913,0.1951,0.9619,-0.1802,0.3827,0.9061,-0.1802,0.3827,0.9061,-0.1913,0.1951,0.9619,-0.3753,0.1951,0.9061,-0.1802,0.3827,0.9061,-0.3753,0.1951,0.9061,-0.3536,0.3827,0.8536,-0.3536,0.3827,0.8536,-0.3753,0.1951,0.9061,-0.5449,0.1951,0.8155,-0.3536,0.3827,0.8536,-0.5449,0.1951,0.8155,-0.5133,0.3827,0.7682,-0.5133,0.3827,0.7682,-0.5449,0.1951,0.8155,-0.6935,0.1951,0.6935,-0.5133,0.3827,0.7682,-0.6935,0.1951,0.6935,-0.6533,0.3827,0.6533,-0.6533,0.3827,0.6533,-0.6935,0.1951,0.6935,-0.8155,0.1951,0.5449,-0.6533,0.3827,0.6533,-0.8155,0.1951,0.5449,-0.7682,0.3827,0.5133,-0.7682,0.3827,0.5133,-0.8155,0.1951,0.5449,-0.9061,0.1951,0.3753,-0.7682,0.3827,0.5133,-0.9061,0.1951,0.3753,-0.8536,0.3827,0.3536,-0.8536,0.3827,0.3536,-0.9061,0.1951,0.3753,-0.9619,0.1951,0.1913,-0.8536,0.3827,0.3536,-0.9619,0.1951,0.1913,-0.9061,0.3827,0.1802,-0.9061,0.3827,0.1802,-0.9619,0.1951,0.1913,-0.9808,0.1951,0.0,-0.9061,0.3827,0.1802,-0.9808,0.1951,0.0,-0.9239,0.3827,0.0,-0.9239,0.3827,0.0,-0.9808,0.1951,0.0,-0.9619,0.1951,-0.1913,-0.9239,0.3827,0.0,-0.9619,0.1951,-0.1913,-0.9061,0.3827,-0.1802,-0.9061,0.3827,-0.1802,-0.9619,0.1951,-0.1913,-0.9061,0.1951,-0.3753,-0.9061,0.3827,-0.1802,-0.9061,0.1951,-0.3753,-0.8536,0.3827,-0.3536,-0.8536,0.3827,-0.3536,-0.9061,0.1951,-0.3753,-0.8155,0.1951,-0.5449,-0.8536,0.3827,-0.3536,-0.8155,0.1951,-0.5449,-0.7682,0.3827,-0.5133,-0.7682,0.3827,-0.5133,-0.8155,0.1951,-0.5449,-0.6935,0.1951,-0.6935,-0.7682,0.3827,-0.5133,-0.6935,0.1951,-0.6935,-0.6533,0.3827,-0.6533,-0.6533,0.3827,-0.6533,-0.6935,0.1951,-0.6935,-0.5449,0.1951,-0.8155,-0.6533,0.3827,-0.6533,-0.5449,0.1951,-0.8155,-0.5133,0.3827,-0.7682,-0.5133,0.3827,-0.7682,-0.5449,0.1951,-0.8155,-0.3753,0.1951,-0.9061,-0.5133,0.3827,-0.7682,-0.3753,0.1951,-0.9061,-0.3536,0.3827,-0.8536,-0.3536,0.3827,-0.8536,-0.3753,0.1951,-0.9061,-0.1913,0.1951,-0.9619,-0.3536,0.3827,-0.8536,-0.1913,0.1951,-0.9619,-0.1802,0.3827,-0.9061,-0.1802,0.3827,-0.9061,-0.1913,0.1951,-0.9619,0.0,0.1951,-0.9808,-0.1802,0.3827,-0.9061,0.0,0.1951,-0.9808,0.0,0.3827,-0.9239,0.0,0.3827,-0.9239,0.0,0.1951,-0.9808,0.1913,0.1951,-0.9619,0.0,0.3827,-0.9239,0.1913,0.1951,-0.9619,0.1802,0.3827,-0.9061,0.1802,0.3827,-0.9061,0.1913,0.1951,-0.9619,0.3753,0.1951,-0.9061,0.1802,0.3827,-0.9061,0.3753,0.1951,-0.9061,0.3536,0.3827,-0.8536,0.3536,0.3827,-0.8536,0.3753,0.1951,-0.9061,0.5449,0.1951,-0.8155,0.3536,0.3827,-0.8536,0.5449,0.1951,-0.8155,0.5133,0.3827,-0.7682,0.5133,0.3827,-0.7682,0.5449,0.1951,-0.8155,0.6935,0.1951,-0.6935,0.5133,0.3827,-0.7682,0.6935,0.1951,-0.6935,0.6533,0.3827,-0.6533,0.6533,0.3827,-0.6533,0.6935,0.1951,-0.6935,0.8155,0.1951,-0.5449,0.6533,0.3827,-0.6533,0.8155,0.1951,-0.5449,0.7682,0.3827,-0.5133,0.7682,0.3827,-0.5133,0.8155,0.1951,-0.5449,0.9061,0.1951,-0.3753,0.7682,0.3827,-0.5133,0.9061,0.1951,-0.3753,0.8536,0.3827,-0.3536,0.8536,0.3827,-0.3536,0.9061,0.1951,-0.3753,0.9619,0.1951,-0.1913,0.8536,0.3827,-0.3536,0.9619,0.1951,-0.1913,0.9061,0.3827,-0.1802,0.9061,0.3827,-0.1802,0.9619,0.1951,-0.1913,0.9808,0.1951,0.0,0.9061,0.3827,-0.1802,0.9808,0.1951,0.0,0.9239,0.3827,0.0,0.9239,0.3827,0.0,0.9808,0.1951,0.0,0.9619,0.1951,0.1913,0.9239,0.3827,0.0,0.9619,0.1951,0.1913,0.9061,0.3827,0.1802,0.9061,0.3827,0.1802,0.9619,0.1951,0.1913,0.9061,0.1951,0.3753,0.9061,0.3827,0.1802,0.9061,0.1951,0.3753,0.8536,0.3827,0.3536,0.8536,0.3827,0.3536,0.9061,0.1951,0.3753,0.8155,0.1951,0.5449,0.8536,0.3827,0.3536,0.8155,0.1951,0.5449,0.7682,0.3827,0.5133,0.7682,0.3827,0.5133,0.8155,0.1951,0.5449,0.6935,0.1951,0.6935,0.7682,0.3827,0.5133,0.6935,0.1951,0.6935,0.6533,0.3827,0.6533,0.6533,0.3827,0.6533,0.6935,0.1951,0.6935,0.5449,0.1951,0.8155,0.6533,0.3827,0.6533,0.5449,0.1951,0.8155,0.5133,0.3827,0.7682,0.5133,0.3827,0.7682,0.5449,0.1951,0.8155,0.3753,0.1951,0.9061,0.5133,0.3827,0.7682,0.3753,0.1951,0.9061,0.3536,0.3827,0.8536,0.3536,0.3827,0.8536,0.3753,0.1951,0.9061,0.1913,0.1951,0.9619,0.3536,0.3827,0.8536,0.1913,0.1951,0.9619,0.1802,0.3827,0.9061,0.1802,0.3827,0.9061,0.1913,0.1951,0.9619,0.0,0.1951,0.9808,0.1802,0.3827,0.9061,0.0,0.1951,0.9808,0.0,0.3827,0.9239,0.0,0.1951,0.9808,0.0,0.0,1.0,-0.1951,0.0,0.9808,0.0,0.1951,0.9808,-0.1951,0.0,0.9808,-0.1913,0.1951,0.9619,-0.1913,0.1951,0.9619,-0.1951,0.0,0.9808,-0.3827,0.0,0.9239,-0.1913,0.1951,0.9619,-0.3827,0.0,0.9239,-0.3753,0.1951,0.9061,-0.3753,0.1951,0.9061,-0.3827,0.0,0.9239,-0.5556,0.0,0.8315,-0.3753,0.1951,0.9061,-0.5556,0.0,0.8315,-0.5449,0.1951,0.8155,-0.5449,0.1951,0.8155,-0.5556,0.0,0.8315,-0.7071,0.0,0.7071,-0.5449,0.1951,0.8155,-0.7071,0.0,0.7071,-0.6935,0.1951,0.6935,-0.6935,0.1951,0.6935,-0.7071,0.0,0.7071,-0.8315,0.0,0.5556,-0.6935,0.1951,0.6935,-0.8315,0.0,0.5556,-0.8155,0.1951,0.5449,-0.8155,0.1951,0.5449,-0.8315,0.0,0.5556,-0.9239,0.0,0.3827,-0.8155,0.1951,0.5449,-0.9239,0.0,0.3827,-0.9061,0.1951,0.3753,-0.9061,0.1951,0.3753,-0.9239,0.0,0.3827,-0.9808,0.0,0.1951,-0.9061,0.1951,0.3753,-0.9808,0.0,0.1951,-0.9619,0.1951,0.1913,-0.9619,0.1951,0.1913,-0.9808,0.0,0.1951,-1.0,0.0,0.0,-0.9619,0.1951,0.1913,-1.0,0.0,0.0,-0.9808,0.1951,0.0,-0.9808,0.1951,0.0,-1.0,0.0,0.0,-0.9808,0.0,-0.1951,-0.9808,0.1951,0.0,-0.9808,0.0,-0.1951,-0.9619,0.1951,-0.1913,-0.9619,0.1951,-0.1913,-0.9808,0.0,-0.1951,-0.9239,0.0,-0.3827,-0.9619,0.1951,-0.1913,-0.9239,0.0,-0.3827,-0.9061,0.1951,-0.3753,-0.9061,0.1951,-0.3753,-0.9239,0.0,-0.3827,-0.8315,0.0,-0.5556,-0.9061,0.1951,-0.3753,-0.8315,0.0,-0.5556,-0.8155,0.1951,-0.5449,-0.8155,0.1951,-0.5449,-0.8315,0.0,-0.5556,-0.7071,0.0,-0.7071,-0.8155,0.1951,-0.5449,-0.7071,0.0,-0.7071,-0.6935,0.1951,-0.6935,-0.6935,0.1951,-0.6935,-0.7071,0.0,-0.7071,-0.5556,0.0,-0.8315,-0.6935,0.1951,-0.6935,-0.5556,0.0,-0.8315,-0.5449,0.1951,-0.8155,-0.5449,0.1951,-0.8155,-0.5556,0.0,-0.8315,-0.3827,0.0,-0.9239,-0.5449,0.1951,-0.8155,-0.3827,0.0,-0.9239,-0.3753,0.1951,-0.9061,-0.3753,0.1951,-0.9061,-0.3827,0.0,-0.9239,-0.1951,0.0,-0.9808,-0.3753,0.1951,-0.9061,-0.1951,0.0,-0.9808,-0.1913,0.1951,-0.9619,-0.1913,0.1951,-0.9619,-0.1951,0.0,-0.9808,0.0,0.0,-1.0,-0.1913,0.1951,-0.9619,0.0,0.0,-1.0,0.0,0.1951,-0.9808,0.0,0.1951,-0.9808,0.0,0.0,-1.0,0.1951,0.0,-0.9808,0.0,0.1951,-0.9808,0.1951,0.0,-0.9808,0.1913,0.1951,-0.9619,0.1913,0.1951,-0.9619,0.1951,0.0,-0.9808,0.3827,0.0,-0.9239,0.1913,0.1951,-0.9619,0.3827,0.0,-0.9239,0.3753,0.1951,-0.9061,0.3753,0.1951,-0.9061,0.3827,0.0,-0.9239,0.5556,0.0,-0.8315,0.3753,0.1951,-0.9061,0.5556,0.0,-0.8315,0.5449,0.1951,-0.8155,0.5449,0.1951,-0.8155,0.5556,0.0,-0.8315,0.7071,0.0,-0.7071,0.5449,0.1951,-0.8155,0.7071,0.0,-0.7071,0.6935,0.1951,-0.6935,0.6935,0.1951,-0.6935,0.7071,0.0,-0.7071,0.8315,0.0,-0.5556,0.6935,0.1951,-0.6935,0.8315,0.0,-0.5556,0.8155,0.1951,-0.5449,0.8155,0.1951,-0.5449,0.8315,0.0,-0.5556,0.9239,0.0,-0.3827,0.8155,0.1951,-0.5449,0.9239,0.0,-0.3827,0.9061,0.1951,-0.3753,0.9061,0.1951,-0.3753,0.9239,0.0,-0.3827,0.9808,0.0,-0.1951,0.9061,0.1951,-0.3753,0.9808,0.0,-0.1951,0.9619,0.1951,-0.1913,0.9619,0.1951,-0.1913,0.9808,0.0,-0.1951,1.0,0.0,0.0,0.9619,0.1951,-0.1913,1.0,0.0,0.0,0.9808,0.1951,0.0,0.9808,0.1951,0.0,1.0,0.0,0.0,0.9808,0.0,0.1951,0.9808,0.1951,0.0,0.9808,0.0,0.1951,0.9619,0.1951,0.1913,0.9619,0.1951,0.1913,0.9808,0.0,0.1951,0.9239,0.0,0.3827,0.9619,0.1951,0.1913,0.9239,0.0,0.3827,0.9061,0.1951,0.3753,0.9061,0.1951,0.3753,0.9239,0.0,0.3827,0.8315,0.0,0.5556,0.9061,0.1951,0.3753,0.8315,0.0,0.5556,0.8155,0.1951,0.5449,0.8155,0.1951,0.5449,0.8315,0.0,0.5556,0.7071,0.0,0.7071,0.8155,0.1951,0.5449,0.7071,0.0,0.7071,0.6935,0.1951,0.6935,0.6935,0.1951,0.6935,0.7071,0.0,0.7071,0.5556,0.0,0.8315,0.6935,0.1951,0.6935,0.5556,0.0,0.8315,0.5449,0.1951,0.8155,0.5449,0.1951,0.8155,0.5556,0.0,0.8315,0.3827,0.0,0.9239,0.5449,0.1951,0.8155,0.3827,0.0,0.9239,0.3753,0.1951,0.9061,0.3753,0.1951,0.9061,0.3827,0.0,0.9239,0.1951,0.0,0.9808,0.3753,0.1951,0.9061,0.1951,0.0,0.9808,0.1913,0.1951,0.9619,0.1913,0.1951,0.9619,0.1951,0.0,0.9808,0.0,0.0,1.0,0.1913,0.1951,0.9619,0.0,0.0,1.0,0.0,0.1951,0.9808,0.0,0.0,1.0,0.0,-0.1951,0.9808,-0.1913,-0.1951,0.9619,0.0,0.0,1.0,-0.1913,-0.1951,0.9619,-0.1951,0.0,0.9808,-0.1951,0.0,0.9808,-0.1913,-0.1951,0.9619,-0.3753,-0.1951,0.9061,-0.1951,0.0,0.9808,-0.3753,-0.1951,0.9061,-0.3827,0.0,0.9239,-0.3827,0.0,0.9239,-0.3753,-0.1951,0.9061,-0.5449,-0.1951,0.8155,-0.3827,0.0,0.9239,-0.5449,-0.1951,0.8155,-0.5556,0.0,0.8315,-0.5556,0.0,0.8315,-0.5449,-0.1951,0.8155,-0.6935,-0.1951,0.6935,-0.5556,0.0,0.8315,-0.6935,-0.1951,0.6935,-0.7071,0.0,0.7071,-0.7071,0.0,0.7071,-0.6935,-0.1951,0.6935,-0.8155,-0.1951,0.5449,-0.7071,0.0,0.7071,-0.8155,-0.1951,0.5449,-0.8315,0.0,0.5556,-0.8315,0.0,0.5556,-0.8155,-0.1951,0.5449,-0.9061,-0.1951,0.3753,-0.8315,0.0,0.5556,-0.9061,-0.1951,0.3753,-0.9239,0.0,0.3827,-0.9239,0.0,0.3827,-0.9061,-0.1951,0.3753,-0.9619,-0.1951,0.1913,-0.9239,0.0,0.3827,-0.9619,-0.1951,0.1913,-0.9808,0.0,0.1951,-0.9808,0.0,0.1951,-0.9619,-0.1951,0.1913,-0.9808,-0.1951,0.0,-0.9808,0.0,0.1951,-0.9808,-0.1951,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-0.9808,-0.1951,0.0,-0.9619,-0.1951,-0.1913,-1.0,0.0,0.0,-0.9619,-0.1951,-0.1913,-0.9808,0.0,-0.1951,-0.9808,0.0,-0.1951,-0.9619,-0.1951,-0.1913,-0.9061,-0.1951,-0.3753,-0.9808,0.0,-0.1951,-0.9061,-0.1951,-0.3753,-0.9239,0.0,-0.3827,-0.9239,0.0,-0.3827,-0.9061,-0.1951,-0.3753,-0.8155,-0.1951,-0.5449,-0.9239,0.0,-0.3827,-0.8155,-0.1951,-0.5449,-0.8315,0.0,-0.5556,-0.8315,0.0,-0.5556,-0.8155,-0.1951,-0.5449,-0.6935,-0.1951,-0.6935,-0.8315,0.0,-0.5556,-0.6935,-0.1951,-0.6935,-0.7071,0.0,-0.7071,-0.7071,0.0,-0.7071,-0.6935,-0.1951,-0.6935,-0.5449,-0.1951,-0.8155,-0.7071,0.0,-0.7071,-0.5449,-0.1951,-0.8155,-0.5556,0.0,-0.8315,-0.5556,0.0,-0.8315,-0.5449,-0.1951,-0.8155,-0.3753,-0.1951,-0.9061,-0.5556,0.0,-0.8315,-0.3753,-0.1951,-0.9061,-0.3827,0.0,-0.9239,-0.3827,0.0,-0.9239,-0.3753,-0.1951,-0.9061,-0.1913,-0.1951,-0.9619,-0.3827,0.0,-0.9239,-0.1913,-0.1951,-0.9619,-0.1951,0.0,-0.9808,-0.1951,0.0,-0.9808,-0.1913,-0.1951,-0.9619,0.0,-0.1951,-0.9808,-0.1951,0.0,-0.9808,0.0,-0.1951,-0.9808,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,-0.1951,-0.9808,0.1913,-0.1951,-0.9619,0.0,0.0,-1.0,0.1913,-0.1951,-0.9619,0.1951,0.0,-0.9808,0.1951,0.0,-0.9808,0.1913,-0.1951,-0.9619,0.3753,-0.1951,-0.9061,0.1951,0.0,-0.9808,0.3753,-0.1951,-0.9061,0.3827,0.0,-0.9239,0.3827,0.0,-0.9239,0.3753,-0.1951,-0.9061,0.5449,-0.1951,-0.8155,0.3827,0.0,-0.9239,0.5449,-0.1951,-0.8155,0.5556,0.0,-0.8315,0.5556,0.0,-0.8315,0.5449,-0.1951,-0.8155,0.6935,-0.1951,-0.6935,0.5556,0.0,-0.8315,0.6935,-0.1951,-0.6935,0.7071,0.0,-0.7071,0.7071,0.0,-0.7071,0.6935,-0.1951,-0.6935,0.8155,-0.1951,-0.5449,0.7071,0.0,-0.7071,0.8155,-0.1951,-0.5449,0.8315,0.0,-0.5556,0.8315,0.0,-0.5556,0.8155,-0.1951,-0.5449,0.9061,-0.1951,-0.3753,0.8315,0.0,-0.5556,0.9061,-0.1951,-0.3753,0.9239,0.0,-0.3827,0.9239,0.0,-0.3827,0.9061,-0.1951,-0.3753,0.9619,-0.1951,-0.1913,0.9239,0.0,-0.3827,0.9619,-0.1951,-0.1913,0.9808,0.0,-0.1951,0.9808,0.0,-0.1951,0.9619,-0.1951,-0.1913,0.9808,-0.1951,0.0,0.9808,0.0,-0.1951,0.9808,-0.1951,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.9808,-0.1951,0.0,0.9619,-0.1951,0.1913,1.0,0.0,0.0,0.9619,-0.1951,0.1913,0.9808,0.0,0.1951,0.9808,0.0,0.1951,0.9619,-0.1951,0.1913,0.9061,-0.1951,0.3753,0.9808,0.0,0.1951,0.9061,-0.1951,0.3753,0.9239,0.0,0.3827,0.9239,0.0,0.3827,0.9061,-0.1951,0.3753,0.8155,-0.1951,0.5449,0.9239,0.0,0.3827,0.8155,-0.1951,0.5449,0.8315,0.0,0.5556,0.8315,0.0,0.5556,0.8155,-0.1951,0.5449,0.6935,-0.1951,0.6935,0.8315,0.0,0.5556,0.6935,-0.1951,0.6935,0.7071,0.0,0.7071,0.7071,0.0,0.7071,0.6935,-0.1951,0.6935,0.5449,-0.1951,0.8155,0.7071,0.0,0.7071,0.5449,-0.1951,0.8155,0.5556,0.0,0.8315,0.5556,0.0,0.8315,0.5449,-0.1951,0.8155,0.3753,-0.1951,0.9061,0.5556,0.0,0.8315,0.3753,-0.1951,0.9061,0.3827,0.0,0.9239,0.3827,0.0,0.9239,0.3753,-0.1951,0.9061,0.1913,-0.1951,0.9619,0.3827,0.0,0.9239,0.1913,-0.1951,0.9619,0.1951,0.0,0.9808,0.1951,0.0,0.9808,0.1913,-0.1951,0.9619,0.0,-0.1951,0.9808,0.1951,0.0,0.9808,0.0,-0.1951,0.9808,0.0,0.0,1.0,0.0,-0.1951,0.9808,0.0,-0.3827,0.9239,-0.1802,-0.3827,0.9061,0.0,-0.1951,0.9808,-0.1802,-0.3827,0.9061,-0.1913,-0.1951,0.9619,-0.1913,-0.1951,0.9619,-0.1802,-0.3827,0.9061,-0.3536,-0.3827,0.8536,-0.1913,-0.1951,0.9619,-0.3536,-0.3827,0.8536,-0.3753,-0.1951,0.9061,-0.3753,-0.1951,0.9061,-0.3536,-0.3827,0.8536,-0.5133,-0.3827,0.7682,-0.3753,-0.1951,0.9061,-0.5133,-0.3827,0.7682,-0.5449,-0.1951,0.8155,-0.5449,-0.1951,0.8155,-0.5133,-0.3827,0.7682,-0.6533,-0.3827,0.6533,-0.5449,-0.1951,0.8155,-0.6533,-0.3827,0.6533,-0.6935,-0.1951,0.6935,-0.6935,-0.1951,0.6935,-0.6533,-0.3827,0.6533,-0.7682,-0.3827,0.5133,-0.6935,-0.1951,0.6935,-0.7682,-0.3827,0.5133,-0.8155,-0.1951,0.5449,-0.8155,-0.1951,0.5449,-0.7682,-0.3827,0.5133,-0.8536,-0.3827,0.3536,-0.8155,-0.1951,0.5449,-0.8536,-0.3827,0.3536,-0.9061,-0.1951,0.3753,-0.9061,-0.1951,0.3753,-0.8536,-0.3827,0.3536,-0.9061,-0.3827,0.1802,-0.9061,-0.1951,0.3753,-0.9061,-0.3827,0.1802,-0.9619,-0.1951,0.1913,-0.9619,-0.1951,0.1913,-0.9061,-0.3827,0.1802,-0.9239,-0.3827,0.0,-0.9619,-0.1951,0.1913,-0.9239,-0.3827,0.0,-0.9808,-0.1951,0.0,-0.9808,-0.1951,0.0,-0.9239,-0.3827,0.0,-0.9061,-0.3827,-0.1802,-0.9808,-0.1951,0.0,-0.9061,-0.3827,-0.1802,-0.9619,-0.1951,-0.1913,-0.9619,-0.1951,-0.1913,-0.9061,-0.3827,-0.1802,-0.8536,-0.3827,-0.3536,-0.9619,-0.1951,-0.1913,-0.8536,-0.3827,-0.3536,-0.9061,-0.1951,-0.3753,-0.9061,-0.1951,-0.3753,-0.8536,-0.3827,-0.3536,-0.7682,-0.3827,-0.5133,-0.9061,-0.1951,-0.3753,-0.7682,-0.3827,-0.5133,-0.8155,-0.1951,-0.5449,-0.8155,-0.1951,-0.5449,-0.7682,-0.3827,-0.5133,-0.6533,-0.3827,-0.6533,-0.8155,-0.1951,-0.5449,-0.6533,-0.3827,-0.6533,-0.6935,-0.1951,-0.6935,-0.6935,-0.1951,-0.6935,-0.6533,-0.3827,-0.6533,-0.5133,-0.3827,-0.7682,-0.6935,-0.1951,-0.6935,-0.5133,-0.3827,-0.7682,-0.5449,-0.1951,-0.8155,-0.5449,-0.1951,-0.8155,-0.5133,-0.3827,-0.7682,-0.3536,-0.3827,-0.8536,-0.5449,-0.1951,-0.8155,-0.3536,-0.3827,-0.8536,-0.3753,-0.1951,-0.9061,-0.3753,-0.1951,-0.9061,-0.3536,-0.3827,-0.8536,-0.1802,-0.3827,-0.9061,-0.3753,-0.1951,-0.9061,-0.1802,-0.3827,-0.9061,-0.1913,-0.1951,-0.9619,-0.1913,-0.1951,-0.9619,-0.1802,-0.3827,-0.9061,0.0,-0.3827,-0.9239,-0.1913,-0.1951,-0.9619,0.0,-0.3827,-0.9239,0.0,-0.1951,-0.9808,0.0,-0.1951,-0.9808,0.0,-0.3827,-0.9239,0.1802,-0.3827,-0.9061,0.0,-0.1951,-0.9808,0.1802,-0.3827,-0.9061,0.1913,-0.1951,-0.9619,0.1913,-0.1951,-0.9619,0.1802,-0.3827,-0.9061,0.3536,-0.3827,-0.8536,0.1913,-0.1951,-0.9619,0.3536,-0.3827,-0.8536,0.3753,-0.1951,-0.9061,0.3753,-0.1951,-0.9061,0.3536,-0.3827,-0.8536,0.5133,-0.3827,-0.7682,0.3753,-0.1951,-0.9061,0.5133,-0.3827,-0.7682,0.5449,-0.1951,-0.8155,0.5449,-0.1951,-0.8155,0.5133,-0.3827,-0.7682,0.6533,-0.3827,-0.6533,0.5449,-0.1951,-0.8155,0.6533,-0.3827,-0.6533,0.6935,-0.1951,-0.6935,0.6935,-0.1951,-0.6935,0.6533,-0.3827,-0.6533,0.7682,-0.3827,-0.5133,0.6935,-0.1951,-0.6935,0.7682,-0.3827,-0.5133,0.8155,-0.1951,-0.5449,0.8155,-0.1951,-0.5449,0.7682,-0.3827,-0.5133,0.8536,-0.3827,-0.3536,0.8155,-0.1951,-0.5449,0.8536,-0.3827,-0.3536,0.9061,-0.1951,-0.3753,0.9061,-0.1951,-0.3753,0.8536,-0.3827,-0.3536,0.9061,-0.3827,-0.1802,0.9061,-0.1951,-0.3753,0.9061,-0.3827,-0.1802,0.9619,-0.1951,-0.1913,0.9619,-0.1951,-0.1913,0.9061,-0.3827,-0.1802,0.9239,-0.3827,0.0,0.9619,-0.1951,-0.1913,0.9239,-0.3827,0.0,0.9808,-0.1951,0.0,0.9808,-0.1951,0.0,0.9239,-0.3827,0.0,0.9061,-0.3827,0.1802,0.9808,-0.1951,0.0,0.9061,-0.3827,0.1802,0.9619,-0.1951,0.1913,0.9619,-0.1951,0.1913,0.9061,-0.3827,0.1802,0.8536,-0.3827,0.3536,0.9619,-0.1951,0.1913,0.8536,-0.3827,0.3536,0.9061,-0.1951,0.3753,0.9061,-0.1951,0.3753,0.8536,-0.3827,0.3536,0.7682,-0.3827,0.5133,0.9061,-0.1951,0.3753,0.7682,-0.3827,0.5133,0.8155,-0.1951,0.5449,0.8155,-0.1951,0.5449,0.7682,-0.3827,0.5133,0.6533,-0.3827,0.6533,0.8155,-0.1951,0.5449,0.6533,-0.3827,0.6533,0.6935,-0.1951,0.6935,0.6935,-0.1951,0.6935,0.6533,-0.3827,0.6533,0.5133,-0.3827,0.7682,0.6935,-0.1951,0.6935,0.5133,-0.3827,0.7682,0.5449,-0.1951,0.8155,0.5449,-0.1951,0.8155,0.5133,-0.3827,0.7682,0.3536,-0.3827,0.8536,0.5449,-0.1951,0.8155,0.3536,-0.3827,0.8536,0.3753,-0.1951,0.9061,0.3753,-0.1951,0.9061,0.3536,-0.3827,0.8536,0.1802,-0.3827,0.9061,0.3753,-0.1951,0.9061,0.1802,-0.3827,0.9061,0.1913,-0.1951,0.9619,0.1913,-0.1951,0.9619,0.1802,-0.3827,0.9061,0.0,-0.3827,0.9239,0.1913,-0.1951,0.9619,0.0,-0.3827,0.9239,0.0,-0.1951,0.9808,0.0,-0.3827,0.9239,0.0,-0.5556,0.8315,-0.1622,-0.5556,0.8155,0.0,-0.3827,0.9239,-0.1622,-0.5556,0.8155,-0.1802,-0.3827,0.9061,-0.1802,-0.3827,0.9061,-0.1622,-0.5556,0.8155,-0.3182,-0.5556,0.7682,-0.1802,-0.3827,0.9061,-0.3182,-0.5556,0.7682,-0.3536,-0.3827,0.8536,-0.3536,-0.3827,0.8536,-0.3182,-0.5556,0.7682,-0.4619,-0.5556,0.6913,-0.3536,-0.3827,0.8536,-0.4619,-0.5556,0.6913,-0.5133,-0.3827,0.7682,-0.5133,-0.3827,0.7682,-0.4619,-0.5556,0.6913,-0.5879,-0.5556,0.5879,-0.5133,-0.3827,0.7682,-0.5879,-0.5556,0.5879,-0.6533,-0.3827,0.6533,-0.6533,-0.3827,0.6533,-0.5879,-0.5556,0.5879,-0.6913,-0.5556,0.4619,-0.6533,-0.3827,0.6533,-0.6913,-0.5556,0.4619,-0.7682,-0.3827,0.5133,-0.7682,-0.3827,0.5133,-0.6913,-0.5556,0.4619,-0.7682,-0.5556,0.3182,-0.7682,-0.3827,0.5133,-0.7682,-0.5556,0.3182,-0.8536,-0.3827,0.3536,-0.8536,-0.3827,0.3536,-0.7682,-0.5556,0.3182,-0.8155,-0.5556,0.1622,-0.8536,-0.3827,0.3536,-0.8155,-0.5556,0.1622,-0.9061,-0.3827,0.1802,-0.9061,-0.3827,0.1802,-0.8155,-0.5556,0.1622,-0.8315,-0.5556,0.0,-0.9061,-0.3827,0.1802,-0.8315,-0.5556,0.0,-0.9239,-0.3827,0.0,-0.9239,-0.3827,0.0,-0.8315,-0.5556,0.0,-0.8155,-0.5556,-0.1622,-0.9239,-0.3827,0.0,-0.8155,-0.5556,-0.1622,-0.9061,-0.3827,-0.1802,-0.9061,-0.3827,-0.1802,-0.8155,-0.5556,-0.1622,-0.7682,-0.5556,-0.3182,-0.9061,-0.3827,-0.1802,-0.7682,-0.5556,-0.3182,-0.8536,-0.3827,-0.3536,-0.8536,-0.3827,-0.3536,-0.7682,-0.5556,-0.3182,-0.6913,-0.5556,-0.4619,-0.8536,-0.3827,-0.3536,-0.6913,-0.5556,-0.4619,-0.7682,-0.3827,-0.5133,-0.7682,-0.3827,-0.5133,-0.6913,-0.5556,-0.4619,-0.5879,-0.5556,-0.5879,-0.7682,-0.3827,-0.5133,-0.5879,-0.5556,-0.5879,-0.6533,-0.3827,-0.6533,-0.6533,-0.3827,-0.6533,-0.5879,-0.5556,-0.5879,-0.4619,-0.5556,-0.6913,-0.6533,-0.3827,-0.6533,-0.4619,-0.5556,-0.6913,-0.5133,-0.3827,-0.7682,-0.5133,-0.3827,-0.7682,-0.4619,-0.5556,-0.6913,-0.3182,-0.5556,-0.7682,-0.5133,-0.3827,-0.7682,-0.3182,-0.5556,-0.7682,-0.3536,-0.3827,-0.8536,-0.3536,-0.3827,-0.8536,-0.3182,-0.5556,-0.7682,-0.1622,-0.5556,-0.8155,-0.3536,-0.3827,-0.8536,-0.1622,-0.5556,-0.8155,-0.1802,-0.3827,-0.9061,-0.1802,-0.3827,-0.9061,-0.1622,-0.5556,-0.8155,0.0,-0.5556,-0.8315,-0.1802,-0.3827,-0.9061,0.0,-0.5556,-0.8315,0.0,-0.3827,-0.9239,0.0,-0.3827,-0.9239,0.0,-0.5556,-0.8315,0.1622,-0.5556,-0.8155,0.0,-0.3827,-0.9239,0.1622,-0.5556,-0.8155,0.1802,-0.3827,-0.9061,0.1802,-0.3827,-0.9061,0.1622,-0.5556,-0.8155,0.3182,-0.5556,-0.7682,0.1802,-0.3827,-0.9061,0.3182,-0.5556,-0.7682,0.3536,-0.3827,-0.8536,0.3536,-0.3827,-0.8536,0.3182,-0.5556,-0.7682,0.4619,-0.5556,-0.6913,0.3536,-0.3827,-0.8536,0.4619,-0.5556,-0.6913,0.5133,-0.3827,-0.7682,0.5133,-0.3827,-0.7682,0.4619,-0.5556,-0.6913,0.5879,-0.5556,-0.5879,0.5133,-0.3827,-0.7682,0.5879,-0.5556,-0.5879,0.6533,-0.3827,-0.6533,0.6533,-0.3827,-0.6533,0.5879,-0.5556,-0.5879,0.6913,-0.5556,-0.4619,0.6533,-0.3827,-0.6533,0.6913,-0.5556,-0.4619,0.7682,-0.3827,-0.5133,0.7682,-0.3827,-0.5133,0.6913,-0.5556,-0.4619,0.7682,-0.5556,-0.3182,0.7682,-0.3827,-0.5133,0.7682,-0.5556,-0.3182,0.8536,-0.3827,-0.3536,0.8536,-0.3827,-0.3536,0.7682,-0.5556,-0.3182,0.8155,-0.5556,-0.1622,0.8536,-0.3827,-0.3536,0.8155,-0.5556,-0.1622,0.9061,-0.3827,-0.1802,0.9061,-0.3827,-0.1802,0.8155,-0.5556,-0.1622,0.8315,-0.5556,0.0,0.9061,-0.3827,-0.1802,0.8315,-0.5556,0.0,0.9239,-0.3827,0.0,0.9239,-0.3827,0.0,0.8315,-0.5556,0.0,0.8155,-0.5556,0.1622,0.9239,-0.3827,0.0,0.8155,-0.5556,0.1622,0.9061,-0.3827,0.1802,0.9061,-0.3827,0.1802,0.8155,-0.5556,0.1622,0.7682,-0.5556,0.3182,0.9061,-0.3827,0.1802,0.7682,-0.5556,0.3182,0.8536,-0.3827,0.3536,0.8536,-0.3827,0.3536,0.7682,-0.5556,0.3182,0.6913,-0.5556,0.4619,0.8536,-0.3827,0.3536,0.6913,-0.5556,0.4619,0.7682,-0.3827,0.5133,0.7682,-0.3827,0.5133,0.6913,-0.5556,0.4619,0.5879,-0.5556,0.5879,0.7682,-0.3827,0.5133,0.5879,-0.5556,0.5879,0.6533,-0.3827,0.6533,0.6533,-0.3827,0.6533,0.5879,-0.5556,0.5879,0.4619,-0.5556,0.6913,0.6533,-0.3827,0.6533,0.4619,-0.5556,0.6913,0.5133,-0.3827,0.7682,0.5133,-0.3827,0.7682,0.4619,-0.5556,0.6913,0.3182,-0.5556,0.7682,0.5133,-0.3827,0.7682,0.3182,-0.5556,0.7682,0.3536,-0.3827,0.8536,0.3536,-0.3827,0.8536,0.3182,-0.5556,0.7682,0.1622,-0.5556,0.8155,0.3536,-0.3827,0.8536,0.1622,-0.5556,0.8155,0.1802,-0.3827,0.9061,0.1802,-0.3827,0.9061,0.1622,-0.5556,0.8155,0.0,-0.5556,0.8315,0.1802,-0.3827,0.9061,0.0,-0.5556,0.8315,0.0,-0.3827,0.9239,0.0,-0.5556,0.8315,0.0,-0.7071,0.7071,-0.1379,-0.7071,0.6935,0.0,-0.5556,0.8315,-0.1379,-0.7071,0.6935,-0.1622,-0.5556,0.8155,-0.1622,-0.5556,0.8155,-0.1379,-0.7071,0.6935,-0.2706,-0.7071,0.6533,-0.1622,-0.5556,0.8155,-0.2706,-0.7071,0.6533,-0.3182,-0.5556,0.7682,-0.3182,-0.5556,0.7682,-0.2706,-0.7071,0.6533,-0.3928,-0.7071,0.5879,-0.3182,-0.5556,0.7682,-0.3928,-0.7071,0.5879,-0.4619,-0.5556,0.6913,-0.4619,-0.5556,0.6913,-0.3928,-0.7071,0.5879,-0.5,-0.7071,0.5,-0.4619,-0.5556,0.6913,-0.5,-0.7071,0.5,-0.5879,-0.5556,0.5879,-0.5879,-0.5556,0.5879,-0.5,-0.7071,0.5,-0.5879,-0.7071,0.3928,-0.5879,-0.5556,0.5879,-0.5879,-0.7071,0.3928,-0.6913,-0.5556,0.4619,-0.6913,-0.5556,0.4619,-0.5879,-0.7071,0.3928,-0.6533,-0.7071,0.2706,-0.6913,-0.5556,0.4619,-0.6533,-0.7071,0.2706,-0.7682,-0.5556,0.3182,-0.7682,-0.5556,0.3182,-0.6533,-0.7071,0.2706,-0.6935,-0.7071,0.1379,-0.7682,-0.5556,0.3182,-0.6935,-0.7071,0.1379,-0.8155,-0.5556,0.1622,-0.8155,-0.5556,0.1622,-0.6935,-0.7071,0.1379,-0.7071,-0.7071,0.0,-0.8155,-0.5556,0.1622,-0.7071,-0.7071,0.0,-0.8315,-0.5556,0.0,-0.8315,-0.5556,0.0,-0.7071,-0.7071,0.0,-0.6935,-0.7071,-0.1379,-0.8315,-0.5556,0.0,-0.6935,-0.7071,-0.1379,-0.8155,-0.5556,-0.1622,-0.8155,-0.5556,-0.1622,-0.6935,-0.7071,-0.1379,-0.6533,-0.7071,-0.2706,-0.8155,-0.5556,-0.1622,-0.6533,-0.7071,-0.2706,-0.7682,-0.5556,-0.3182,-0.7682,-0.5556,-0.3182,-0.6533,-0.7071,-0.2706,-0.5879,-0.7071,-0.3928,-0.7682,-0.5556,-0.3182,-0.5879,-0.7071,-0.3928,-0.6913,-0.5556,-0.4619,-0.6913,-0.5556,-0.4619,-0.5879,-0.7071,-0.3928,-0.5,-0.7071,-0.5,-0.6913,-0.5556,-0.4619,-0.5,-0.7071,-0.5,-0.5879,-0.5556,-0.5879,-0.5879,-0.5556,-0.5879,-0.5,-0.7071,-0.5,-0.3928,-0.7071,-0.5879,-0.5879,-0.5556,-0.5879,-0.3928,-0.7071,-0.5879,-0.4619,-0.5556,-0.6913,-0.4619,-0.5556,-0.6913,-0.3928,-0.7071,-0.5879,-0.2706,-0.7071,-0.6533,-0.4619,-0.5556,-0.6913,-0.2706,-0.7071,-0.6533,-0.3182,-0.5556,-0.7682,-0.3182,-0.5556,-0.7682,-0.2706,-0.7071,-0.6533,-0.1379,-0.7071,-0.6935,-0.3182,-0.5556,-0.7682,-0.1379,-0.7071,-0.6935,-0.1622,-0.5556,-0.8155,-0.1622,-0.5556,-0.8155,-0.1379,-0.7071,-0.6935,0.0,-0.7071,-0.7071,-0.1622,-0.5556,-0.8155,0.0,-0.7071,-0.7071,0.0,-0.5556,-0.8315,0.0,-0.5556,-0.8315,0.0,-0.7071,-0.7071,0.138,-0.7071,-0.6935,0.0,-0.5556,-0.8315,0.138,-0.7071,-0.6935,0.1622,-0.5556,-0.8155,0.1622,-0.5556,-0.8155,0.138,-0.7071,-0.6935,0.2706,-0.7071,-0.6533,0.1622,-0.5556,-0.8155,0.2706,-0.7071,-0.6533,0.3182,-0.5556,-0.7682,0.3182,-0.5556,-0.7682,0.2706,-0.7071,-0.6533,0.3928,-0.7071,-0.5879,0.3182,-0.5556,-0.7682,0.3928,-0.7071,-0.5879,0.4619,-0.5556,-0.6913,0.4619,-0.5556,-0.6913,0.3928,-0.7071,-0.5879,0.5,-0.7071,-0.5,0.4619,-0.5556,-0.6913,0.5,-0.7071,-0.5,0.5879,-0.5556,-0.5879,0.5879,-0.5556,-0.5879,0.5,-0.7071,-0.5,0.5879,-0.7071,-0.3928,0.5879,-0.5556,-0.5879,0.5879,-0.7071,-0.3928,0.6913,-0.5556,-0.4619,0.6913,-0.5556,-0.4619,0.5879,-0.7071,-0.3928,0.6533,-0.7071,-0.2706,0.6913,-0.5556,-0.4619,0.6533,-0.7071,-0.2706,0.7682,-0.5556,-0.3182,0.7682,-0.5556,-0.3182,0.6533,-0.7071,-0.2706,0.6935,-0.7071,-0.1379,0.7682,-0.5556,-0.3182,0.6935,-0.7071,-0.1379,0.8155,-0.5556,-0.1622,0.8155,-0.5556,-0.1622,0.6935,-0.7071,-0.1379,0.7071,-0.7071,0.0,0.8155,-0.5556,-0.1622,0.7071,-0.7071,0.0,0.8315,-0.5556,0.0,0.8315,-0.5556,0.0,0.7071,-0.7071,0.0,0.6935,-0.7071,0.138,0.8315,-0.5556,0.0,0.6935,-0.7071,0.138,0.8155,-0.5556,0.1622,0.8155,-0.5556,0.1622,0.6935,-0.7071,0.138,0.6533,-0.7071,0.2706,0.8155,-0.5556,0.1622,0.6533,-0.7071,0.2706,0.7682,-0.5556,0.3182,0.7682,-0.5556,0.3182,0.6533,-0.7071,0.2706,0.5879,-0.7071,0.3928,0.7682,-0.5556,0.3182,0.5879,-0.7071,0.3928,0.6913,-0.5556,0.4619,0.6913,-0.5556,0.4619,0.5879,-0.7071,0.3928,0.5,-0.7071,0.5,0.6913,-0.5556,0.4619,0.5,-0.7071,0.5,0.5879,-0.5556,0.5879,0.5879,-0.5556,0.5879,0.5,-0.7071,0.5,0.3928,-0.7071,0.5879,0.5879,-0.5556,0.5879,0.3928,-0.7071,0.5879,0.4619,-0.5556,0.6913,0.4619,-0.5556,0.6913,0.3928,-0.7071,0.5879,0.2706,-0.7071,0.6533,0.4619,-0.5556,0.6913,0.2706,-0.7071,0.6533,0.3182,-0.5556,0.7682,0.3182,-0.5556,0.7682,0.2706,-0.7071,0.6533,0.1379,-0.7071,0.6935,0.3182,-0.5556,0.7682,0.1379,-0.7071,0.6935,0.1622,-0.5556,0.8155,0.1622,-0.5556,0.8155,0.1379,-0.7071,0.6935,0.0,-0.7071,0.7071,0.1622,-0.5556,0.8155,0.0,-0.7071,0.7071,0.0,-0.5556,0.8315,0.0,-0.7071,0.7071,0.0,-0.8315,0.5556,-0.1084,-0.8315,0.5449,0.0,-0.7071,0.7071,-0.1084,-0.8315,0.5449,-0.1379,-0.7071,0.6935,-0.1379,-0.7071,0.6935,-0.1084,-0.8315,0.5449,-0.2126,-0.8315,0.5133,-0.1379,-0.7071,0.6935,-0.2126,-0.8315,0.5133,-0.2706,-0.7071,0.6533,-0.2706,-0.7071,0.6533,-0.2126,-0.8315,0.5133,-0.3087,-0.8315,0.4619,-0.2706,-0.7071,0.6533,-0.3087,-0.8315,0.4619,-0.3928,-0.7071,0.5879,-0.3928,-0.7071,0.5879,-0.3087,-0.8315,0.4619,-0.3928,-0.8315,0.3928,-0.3928,-0.7071,0.5879,-0.3928,-0.8315,0.3928,-0.5,-0.7071,0.5,-0.5,-0.7071,0.5,-0.3928,-0.8315,0.3928,-0.4619,-0.8315,0.3087,-0.5,-0.7071,0.5,-0.4619,-0.8315,0.3087,-0.5879,-0.7071,0.3928,-0.5879,-0.7071,0.3928,-0.4619,-0.8315,0.3087,-0.5133,-0.8315,0.2126,-0.5879,-0.7071,0.3928,-0.5133,-0.8315,0.2126,-0.6533,-0.7071,0.2706,-0.6533,-0.7071,0.2706,-0.5133,-0.8315,0.2126,-0.5449,-0.8315,0.1084,-0.6533,-0.7071,0.2706,-0.5449,-0.8315,0.1084,-0.6935,-0.7071,0.1379,-0.6935,-0.7071,0.1379,-0.5449,-0.8315,0.1084,-0.5556,-0.8315,0.0,-0.6935,-0.7071,0.1379,-0.5556,-0.8315,0.0,-0.7071,-0.7071,0.0,-0.7071,-0.7071,0.0,-0.5556,-0.8315,0.0,-0.5449,-0.8315,-0.1084,-0.7071,-0.7071,0.0,-0.5449,-0.8315,-0.1084,-0.6935,-0.7071,-0.1379,-0.6935,-0.7071,-0.1379,-0.5449,-0.8315,-0.1084,-0.5133,-0.8315,-0.2126,-0.6935,-0.7071,-0.1379,-0.5133,-0.8315,-0.2126,-0.6533,-0.7071,-0.2706,-0.6533,-0.7071,-0.2706,-0.5133,-0.8315,-0.2126,-0.4619,-0.8315,-0.3087,-0.6533,-0.7071,-0.2706,-0.4619,-0.8315,-0.3087,-0.5879,-0.7071,-0.3928,-0.5879,-0.7071,-0.3928,-0.4619,-0.8315,-0.3087,-0.3928,-0.8315,-0.3928,-0.5879,-0.7071,-0.3928,-0.3928,-0.8315,-0.3928,-0.5,-0.7071,-0.5,-0.5,-0.7071,-0.5,-0.3928,-0.8315,-0.3928,-0.3087,-0.8315,-0.4619,-0.5,-0.7071,-0.5,-0.3087,-0.8315,-0.4619,-0.3928,-0.7071,-0.5879,-0.3928,-0.7071,-0.5879,-0.3087,-0.8315,-0.4619,-0.2126,-0.8315,-0.5133,-0.3928,-0.7071,-0.5879,-0.2126,-0.8315,-0.5133,-0.2706,-0.7071,-0.6533,-0.2706,-0.7071,-0.6533,-0.2126,-0.8315,-0.5133,-0.1084,-0.8315,-0.5449,-0.2706,-0.7071,-0.6533,-0.1084,-0.8315,-0.5449,-0.1379,-0.7071,-0.6935,-0.1379,-0.7071,-0.6935,-0.1084,-0.8315,-0.5449,0.0,-0.8315,-0.5556,-0.1379,-0.7071,-0.6935,0.0,-0.8315,-0.5556,0.0,-0.7071,-0.7071,0.0,-0.7071,-0.7071,0.0,-0.8315,-0.5556,0.1084,-0.8315,-0.5449,0.0,-0.7071,-0.7071,0.1084,-0.8315,-0.5449,0.138,-0.7071,-0.6935,0.138,-0.7071,-0.6935,0.1084,-0.8315,-0.5449,0.2126,-0.8315,-0.5133,0.138,-0.7071,-0.6935,0.2126,-0.8315,-0.5133,0.2706,-0.7071,-0.6533,0.2706,-0.7071,-0.6533,0.2126,-0.8315,-0.5133,0.3087,-0.8315,-0.4619,0.2706,-0.7071,-0.6533,0.3087,-0.8315,-0.4619,0.3928,-0.7071,-0.5879,0.3928,-0.7071,-0.5879,0.3087,-0.8315,-0.4619,0.3928,-0.8315,-0.3928,0.3928,-0.7071,-0.5879,0.3928,-0.8315,-0.3928,0.5,-0.7071,-0.5,0.5,-0.7071,-0.5,0.3928,-0.8315,-0.3928,0.4619,-0.8315,-0.3087,0.5,-0.7071,-0.5,0.4619,-0.8315,-0.3087,0.5879,-0.7071,-0.3928,0.5879,-0.7071,-0.3928,0.4619,-0.8315,-0.3087,0.5133,-0.8315,-0.2126,0.5879,-0.7071,-0.3928,0.5133,-0.8315,-0.2126,0.6533,-0.7071,-0.2706,0.6533,-0.7071,-0.2706,0.5133,-0.8315,-0.2126,0.5449,-0.8315,-0.1084,0.6533,-0.7071,-0.2706,0.5449,-0.8315,-0.1084,0.6935,-0.7071,-0.1379,0.6935,-0.7071,-0.1379,0.5449,-0.8315,-0.1084,0.5556,-0.8315,0.0,0.6935,-0.7071,-0.1379,0.5556,-0.8315,0.0,0.7071,-0.7071,0.0,0.7071,-0.7071,0.0,0.5556,-0.8315,0.0,0.5449,-0.8315,0.1084,0.7071,-0.7071,0.0,0.5449,-0.8315,0.1084,0.6935,-0.7071,0.138,0.6935,-0.7071,0.138,0.5449,-0.8315,0.1084,0.5133,-0.8315,0.2126,0.6935,-0.7071,0.138,0.5133,-0.8315,0.2126,0.6533,-0.7071,0.2706,0.6533,-0.7071,0.2706,0.5133,-0.8315,0.2126,0.4619,-0.8315,0.3087,0.6533,-0.7071,0.2706,0.4619,-0.8315,0.3087,0.5879,-0.7071,0.3928,0.5879,-0.7071,0.3928,0.4619,-0.8315,0.3087,0.3928,-0.8315,0.3928,0.5879,-0.7071,0.3928,0.3928,-0.8315,0.3928,0.5,-0.7071,0.5,0.5,-0.7071,0.5,0.3928,-0.8315,0.3928,0.3087,-0.8315,0.4619,0.5,-0.7071,0.5,0.3087,-0.8315,0.4619,0.3928,-0.7071,0.5879,0.3928,-0.7071,0.5879,0.3087,-0.8315,0.4619,0.2126,-0.8315,0.5133,0.3928,-0.7071,0.5879,0.2126,-0.8315,0.5133,0.2706,-0.7071,0.6533,0.2706,-0.7071,0.6533,0.2126,-0.8315,0.5133,0.1084,-0.8315,0.5449,0.2706,-0.7071,0.6533,0.1084,-0.8315,0.5449,0.1379,-0.7071,0.6935,0.1379,-0.7071,0.6935,0.1084,-0.8315,0.5449,0.0,-0.8315,0.5556,0.1379,-0.7071,0.6935,0.0,-0.8315,0.5556,0.0,-0.7071,0.7071,0.0,-0.8315,0.5556,0.0,-0.9239,0.3827,-0.0747,-0.9239,0.3753,0.0,-0.8315,0.5556,-0.0747,-0.9239,0.3753,-0.1084,-0.8315,0.5449,-0.1084,-0.8315,0.5449,-0.0747,-0.9239,0.3753,-0.1464,-0.9239,0.3536,-0.1084,-0.8315,0.5449,-0.1464,-0.9239,0.3536,-0.2126,-0.8315,0.5133,-0.2126,-0.8315,0.5133,-0.1464,-0.9239,0.3536,-0.2126,-0.9239,0.3182,-0.2126,-0.8315,0.5133,-0.2126,-0.9239,0.3182,-0.3087,-0.8315,0.4619,-0.3087,-0.8315,0.4619,-0.2126,-0.9239,0.3182,-0.2706,-0.9239,0.2706,-0.3087,-0.8315,0.4619,-0.2706,-0.9239,0.2706,-0.3928,-0.8315,0.3928,-0.3928,-0.8315,0.3928,-0.2706,-0.9239,0.2706,-0.3182,-0.9239,0.2126,-0.3928,-0.8315,0.3928,-0.3182,-0.9239,0.2126,-0.4619,-0.8315,0.3087,-0.4619,-0.8315,0.3087,-0.3182,-0.9239,0.2126,-0.3536,-0.9239,0.1464,-0.4619,-0.8315,0.3087,-0.3536,-0.9239,0.1464,-0.5133,-0.8315,0.2126,-0.5133,-0.8315,0.2126,-0.3536,-0.9239,0.1464,-0.3753,-0.9239,0.0747,-0.5133,-0.8315,0.2126,-0.3753,-0.9239,0.0747,-0.5449,-0.8315,0.1084,-0.5449,-0.8315,0.1084,-0.3753,-0.9239,0.0747,-0.3827,-0.9239,0.0,-0.5449,-0.8315,0.1084,-0.3827,-0.9239,0.0,-0.5556,-0.8315,0.0,-0.5556,-0.8315,0.0,-0.3827,-0.9239,0.0,-0.3753,-0.9239,-0.0747,-0.5556,-0.8315,0.0,-0.3753,-0.9239,-0.0747,-0.5449,-0.8315,-0.1084,-0.5449,-0.8315,-0.1084,-0.3753,-0.9239,-0.0747,-0.3536,-0.9239,-0.1464,-0.5449,-0.8315,-0.1084,-0.3536,-0.9239,-0.1464,-0.5133,-0.8315,-0.2126,-0.5133,-0.8315,-0.2126,-0.3536,-0.9239,-0.1464,-0.3182,-0.9239,-0.2126,-0.5133,-0.8315,-0.2126,-0.3182,-0.9239,-0.2126,-0.4619,-0.8315,-0.3087,-0.4619,-0.8315,-0.3087,-0.3182,-0.9239,-0.2126,-0.2706,-0.9239,-0.2706,-0.4619,-0.8315,-0.3087,-0.2706,-0.9239,-0.2706,-0.3928,-0.8315,-0.3928,-0.3928,-0.8315,-0.3928,-0.2706,-0.9239,-0.2706,-0.2126,-0.9239,-0.3182,-0.3928,-0.8315,-0.3928,-0.2126,-0.9239,-0.3182,-0.3087,-0.8315,-0.4619,-0.3087,-0.8315,-0.4619,-0.2126,-0.9239,-0.3182,-0.1464,-0.9239,-0.3536,-0.3087,-0.8315,-0.4619,-0.1464,-0.9239,-0.3536,-0.2126,-0.8315,-0.5133,-0.2126,-0.8315,-0.5133,-0.1464,-0.9239,-0.3536,-0.0747,-0.9239,-0.3753,-0.2126,-0.8315,-0.5133,-0.0747,-0.9239,-0.3753,-0.1084,-0.8315,-0.5449,-0.1084,-0.8315,-0.5449,-0.0747,-0.9239,-0.3753,0.0,-0.9239,-0.3827,-0.1084,-0.8315,-0.5449,0.0,-0.9239,-0.3827,0.0,-0.8315,-0.5556,0.0,-0.8315,-0.5556,0.0,-0.9239,-0.3827,0.0747,-0.9239,-0.3753,0.0,-0.8315,-0.5556,0.0747,-0.9239,-0.3753,0.1084,-0.8315,-0.5449,0.1084,-0.8315,-0.5449,0.0747,-0.9239,-0.3753,0.1464,-0.9239,-0.3536,0.1084,-0.8315,-0.5449,0.1464,-0.9239,-0.3536,0.2126,-0.8315,-0.5133,0.2126,-0.8315,-0.5133,0.1464,-0.9239,-0.3536,0.2126,-0.9239,-0.3182,0.2126,-0.8315,-0.5133,0.2126,-0.9239,-0.3182,0.3087,-0.8315,-0.4619,0.3087,-0.8315,-0.4619,0.2126,-0.9239,-0.3182,0.2706,-0.9239,-0.2706,0.3087,-0.8315,-0.4619,0.2706,-0.9239,-0.2706,0.3928,-0.8315,-0.3928,0.3928,-0.8315,-0.3928,0.2706,-0.9239,-0.2706,0.3182,-0.9239,-0.2126,0.3928,-0.8315,-0.3928,0.3182,-0.9239,-0.2126,0.4619,-0.8315,-0.3087,0.4619,-0.8315,-0.3087,0.3182,-0.9239,-0.2126,0.3536,-0.9239,-0.1464,0.4619,-0.8315,-0.3087,0.3536,-0.9239,-0.1464,0.5133,-0.8315,-0.2126,0.5133,-0.8315,-0.2126,0.3536,-0.9239,-0.1464,0.3753,-0.9239,-0.0747,0.5133,-0.8315,-0.2126,0.3753,-0.9239,-0.0747,0.5449,-0.8315,-0.1084,0.5449,-0.8315,-0.1084,0.3753,-0.9239,-0.0747,0.3827,-0.9239,0.0,0.5449,-0.8315,-0.1084,0.3827,-0.9239,0.0,0.5556,-0.8315,0.0,0.5556,-0.8315,0.0,0.3827,-0.9239,0.0,0.3753,-0.9239,0.0747,0.5556,-0.8315,0.0,0.3753,-0.9239,0.0747,0.5449,-0.8315,0.1084,0.5449,-0.8315,0.1084,0.3753,-0.9239,0.0747,0.3536,-0.9239,0.1464,0.5449,-0.8315,0.1084,0.3536,-0.9239,0.1464,0.5133,-0.8315,0.2126,0.5133,-0.8315,0.2126,0.3536,-0.9239,0.1464,0.3182,-0.9239,0.2126,0.5133,-0.8315,0.2126,0.3182,-0.9239,0.2126,0.4619,-0.8315,0.3087,0.4619,-0.8315,0.3087,0.3182,-0.9239,0.2126,0.2706,-0.9239,0.2706,0.4619,-0.8315,0.3087,0.2706,-0.9239,0.2706,0.3928,-0.8315,0.3928,0.3928,-0.8315,0.3928,0.2706,-0.9239,0.2706,0.2126,-0.9239,0.3182,0.3928,-0.8315,0.3928,0.2126,-0.9239,0.3182,0.3087,-0.8315,0.4619,0.3087,-0.8315,0.4619,0.2126,-0.9239,0.3182,0.1464,-0.9239,0.3536,0.3087,-0.8315,0.4619,0.1464,-0.9239,0.3536,0.2126,-0.8315,0.5133,0.2126,-0.8315,0.5133,0.1464,-0.9239,0.3536,0.0747,-0.9239,0.3753,0.2126,-0.8315,0.5133,0.0747,-0.9239,0.3753,0.1084,-0.8315,0.5449,0.1084,-0.8315,0.5449,0.0747,-0.9239,0.3753,0.0,-0.9239,0.3827,0.1084,-0.8315,0.5449,0.0,-0.9239,0.3827,0.0,-0.8315,0.5556,0.0,-0.9239,0.3827,0.0,-0.9808,0.1951,-0.0381,-0.9808,0.1913,0.0,-0.9239,0.3827,-0.0381,-0.9808,0.1913,-0.0747,-0.9239,0.3753,-0.0747,-0.9239,0.3753,-0.0381,-0.9808,0.1913,-0.0747,-0.9808,0.1802,-0.0747,-0.9239,0.3753,-0.0747,-0.9808,0.1802,-0.1464,-0.9239,0.3536,-0.1464,-0.9239,0.3536,-0.0747,-0.9808,0.1802,-0.1084,-0.9808,0.1622,-0.1464,-0.9239,0.3536,-0.1084,-0.9808,0.1622,-0.2126,-0.9239,0.3182,-0.2126,-0.9239,0.3182,-0.1084,-0.9808,0.1622,-0.1379,-0.9808,0.1379,-0.2126,-0.9239,0.3182,-0.1379,-0.9808,0.1379,-0.2706,-0.9239,0.2706,-0.2706,-0.9239,0.2706,-0.1379,-0.9808,0.1379,-0.1622,-0.9808,0.1084,-0.2706,-0.9239,0.2706,-0.1622,-0.9808,0.1084,-0.3182,-0.9239,0.2126,-0.3182,-0.9239,0.2126,-0.1622,-0.9808,0.1084,-0.1802,-0.9808,0.0747,-0.3182,-0.9239,0.2126,-0.1802,-0.9808,0.0747,-0.3536,-0.9239,0.1464,-0.3536,-0.9239,0.1464,-0.1802,-0.9808,0.0747,-0.1913,-0.9808,0.0381,-0.3536,-0.9239,0.1464,-0.1913,-0.9808,0.0381,-0.3753,-0.9239,0.0747,-0.3753,-0.9239,0.0747,-0.1913,-0.9808,0.0381,-0.1951,-0.9808,0.0,-0.3753,-0.9239,0.0747,-0.1951,-0.9808,0.0,-0.3827,-0.9239,0.0,-0.3827,-0.9239,0.0,-0.1951,-0.9808,0.0,-0.1913,-0.9808,-0.0381,-0.3827,-0.9239,0.0,-0.1913,-0.9808,-0.0381,-0.3753,-0.9239,-0.0747,-0.3753,-0.9239,-0.0747,-0.1913,-0.9808,-0.0381,-0.1802,-0.9808,-0.0747,-0.3753,-0.9239,-0.0747,-0.1802,-0.9808,-0.0747,-0.3536,-0.9239,-0.1464,-0.3536,-0.9239,-0.1464,-0.1802,-0.9808,-0.0747,-0.1622,-0.9808,-0.1084,-0.3536,-0.9239,-0.1464,-0.1622,-0.9808,-0.1084,-0.3182,-0.9239,-0.2126,-0.3182,-0.9239,-0.2126,-0.1622,-0.9808,-0.1084,-0.1379,-0.9808,-0.1379,-0.3182,-0.9239,-0.2126,-0.1379,-0.9808,-0.1379,-0.2706,-0.9239,-0.2706,-0.2706,-0.9239,-0.2706,-0.1379,-0.9808,-0.1379,-0.1084,-0.9808,-0.1622,-0.2706,-0.9239,-0.2706,-0.1084,-0.9808,-0.1622,-0.2126,-0.9239,-0.3182,-0.2126,-0.9239,-0.3182,-0.1084,-0.9808,-0.1622,-0.0747,-0.9808,-0.1802,-0.2126,-0.9239,-0.3182,-0.0747,-0.9808,-0.1802,-0.1464,-0.9239,-0.3536,-0.1464,-0.9239,-0.3536,-0.0747,-0.9808,-0.1802,-0.0381,-0.9808,-0.1913,-0.1464,-0.9239,-0.3536,-0.0381,-0.9808,-0.1913,-0.0747,-0.9239,-0.3753,-0.0747,-0.9239,-0.3753,-0.0381,-0.9808,-0.1913,0.0,-0.9808,-0.1951,-0.0747,-0.9239,-0.3753,0.0,-0.9808,-0.1951,0.0,-0.9239,-0.3827,0.0,-0.9239,-0.3827,0.0,-0.9808,-0.1951,0.0381,-0.9808,-0.1913,0.0,-0.9239,-0.3827,0.0381,-0.9808,-0.1913,0.0747,-0.9239,-0.3753,0.0747,-0.9239,-0.3753,0.0381,-0.9808,-0.1913,0.0747,-0.9808,-0.1802,0.0747,-0.9239,-0.3753,0.0747,-0.9808,-0.1802,0.1464,-0.9239,-0.3536,0.1464,-0.9239,-0.3536,0.0747,-0.9808,-0.1802,0.1084,-0.9808,-0.1622,0.1464,-0.9239,-0.3536,0.1084,-0.9808,-0.1622,0.2126,-0.9239,-0.3182,0.2126,-0.9239,-0.3182,0.1084,-0.9808,-0.1622,0.1379,-0.9808,-0.1379,0.2126,-0.9239,-0.3182,0.1379,-0.9808,-0.1379,0.2706,-0.9239,-0.2706,0.2706,-0.9239,-0.2706,0.1379,-0.9808,-0.1379,0.1622,-0.9808,-0.1084,0.2706,-0.9239,-0.2706,0.1622,-0.9808,-0.1084,0.3182,-0.9239,-0.2126,0.3182,-0.9239,-0.2126,0.1622,-0.9808,-0.1084,0.1802,-0.9808,-0.0747,0.3182,-0.9239,-0.2126,0.1802,-0.9808,-0.0747,0.3536,-0.9239,-0.1464,0.3536,-0.9239,-0.1464,0.1802,-0.9808,-0.0747,0.1913,-0.9808,-0.0381,0.3536,-0.9239,-0.1464,0.1913,-0.9808,-0.0381,0.3753,-0.9239,-0.0747,0.3753,-0.9239,-0.0747,0.1913,-0.9808,-0.0381,0.1951,-0.9808,0.0,0.3753,-0.9239,-0.0747,0.1951,-0.9808,0.0,0.3827,-0.9239,0.0,0.3827,-0.9239,0.0,0.1951,-0.9808,0.0,0.1913,-0.9808,0.0381,0.3827,-0.9239,0.0,0.1913,-0.9808,0.0381,0.3753,-0.9239,0.0747,0.3753,-0.9239,0.0747,0.1913,-0.9808,0.0381,0.1802,-0.9808,0.0747,0.3753,-0.9239,0.0747,0.1802,-0.9808,0.0747,0.3536,-0.9239,0.1464,0.3536,-0.9239,0.1464,0.1802,-0.9808,0.0747,0.1622,-0.9808,0.1084,0.3536,-0.9239,0.1464,0.1622,-0.9808,0.1084,0.3182,-0.9239,0.2126,0.3182,-0.9239,0.2126,0.1622,-0.9808,0.1084,0.1379,-0.9808,0.1379,0.3182,-0.9239,0.2126,0.1379,-0.9808,0.1379,0.2706,-0.9239,0.2706,0.2706,-0.9239,0.2706,0.1379,-0.9808,0.1379,0.1084,-0.9808,0.1622,0.2706,-0.9239,0.2706,0.1084,-0.9808,0.1622,0.2126,-0.9239,0.3182,0.2126,-0.9239,0.3182,0.1084,-0.9808,0.1622,0.0747,-0.9808,0.1802,0.2126,-0.9239,0.3182,0.0747,-0.9808,0.1802,0.1464,-0.9239,0.3536,0.1464,-0.9239,0.3536,0.0747,-0.9808,0.1802,0.0381,-0.9808,0.1913,0.1464,-0.9239,0.3536,0.0381,-0.9808,0.1913,0.0747,-0.9239,0.3753,0.0747,-0.9239,0.3753,0.0381,-0.9808,0.1913,0.0,-0.9808,0.1951,0.0747,-0.9239,0.3753,0.0,-0.9808,0.1951,0.0,-0.9239,0.3827,0.0,-1.0,0.0,-0.0381,-0.9808,0.1913,0.0,-0.9808,0.1951,0.0,-1.0,0.0,-0.0747,-0.9808,0.1802,-0.0381,-0.9808,0.1913,0.0,-1.0,0.0,-0.1084,-0.9808,0.1622,-0.0747,-0.9808,0.1802,0.0,-1.0,0.0,-0.1379,-0.9808,0.1379,-0.1084,-0.9808,0.1622,0.0,-1.0,0.0,-0.1622,-0.9808,0.1084,-0.1379,-0.9808,0.1379,0.0,-1.0,0.0,-0.1802,-0.9808,0.0747,-0.1622,-0.9808,0.1084,0.0,-1.0,0.0,-0.1913,-0.9808,0.0381,-0.1802,-0.9808,0.0747,0.0,-1.0,0.0,-0.1951,-0.9808,0.0,-0.1913,-0.9808,0.0381,0.0,-1.0,0.0,-0.1913,-0.9808,-0.0381,-0.1951,-0.9808,0.0,0.0,-1.0,0.0,-0.1802,-0.9808,-0.0747,-0.1913,-0.9808,-0.0381,0.0,-1.0,0.0,-0.1622,-0.9808,-0.1084,-0.1802,-0.9808,-0.0747,0.0,-1.0,0.0,-0.1379,-0.9808,-0.1379,-0.1622,-0.9808,-0.1084,0.0,-1.0,0.0,-0.1084,-0.9808,-0.1622,-0.1379,-0.9808,-0.1379,0.0,-1.0,0.0,-0.0747,-0.9808,-0.1802,-0.1084,-0.9808,-0.1622,0.0,-1.0,0.0,-0.0381,-0.9808,-0.1913,-0.0747,-0.9808,-0.1802,0.0,-1.0,0.0,0.0,-0.9808,-0.1951,-0.0381,-0.9808,-0.1913,0.0,-1.0,0.0,0.0381,-0.9808,-0.1913,0.0,-0.9808,-0.1951,0.0,-1.0,0.0,0.0747,-0.9808,-0.1802,0.0381,-0.9808,-0.1913,0.0,-1.0,0.0,0.1084,-0.9808,-0.1622,0.0747,-0.9808,-0.1802,0.0,-1.0,0.0,0.1379,-0.9808,-0.1379,0.1084,-0.9808,-0.1622,0.0,-1.0,0.0,0.1622,-0.9808,-0.1084,0.1379,-0.9808,-0.1379,0.0,-1.0,0.0,0.1802,-0.9808,-0.0747,0.1622,-0.9808,-0.1084,0.0,-1.0,0.0,0.1913,-0.9808,-0.0381,0.1802,-0.9808,-0.0747,0.0,-1.0,0.0,0.1951,-0.9808,0.0,0.1913,-0.9808,-0.0381,0.0,-1.0,0.0,0.1913,-0.9808,0.0381,0.1951,-0.9808,0.0,0.0,-1.0,0.0,0.1802,-0.9808,0.0747,0.1913,-0.9808,0.0381,0.0,-1.0,0.0,0.1622,-0.9808,0.1084,0.1802,-0.9808,0.0747,0.0,-1.0,0.0,0.1379,-0.9808,0.1379,0.1622,-0.9808,0.1084,0.0,-1.0,0.0,0.1084,-0.9808,0.1622,0.1379,-0.9808,0.1379,0.0,-1.0,0.0,0.0747,-0.9808,0.1802,0.1084,-0.9808,0.1622,0.0,-1.0,0.0,0.0381,-0.9808,0.1913,0.0747,-0.9808,0.1802,0.0,-1.0,0.0,0.0,-0.9808,0.1951,0.0381,-0.9808,0.1913],"normals":[0.0,1.0,0.0,0.0,0.9796,0.201,-0.0392,0.9796,0.1971,0.0,1.0,0.0,-0.0392,0.9796,0.1971,-0.0769,0.9796,0.1857,0.0,1.0,0.0,-0.0769,0.9796,0.1857,-0.1117,0.9796,0.1671,0.0,1.0,0.0,-0.1117,0.9796,0.1671,-0.1421,0.9796,0.1421,0.0,1.0,0.0,-0.1421,0.9796,0.1421,-0.1671,0.9796,0.1117,0.0,1.0,0.0,-0.1671,0.9796,0.1117,-0.1857,0.9796,0.0769,0.0,1.0,0.0,-0.1857,0.9796,0.0769,-0.1971,0.9796,0.0392,0.0,1.0,0.0,-0.1971,0.9796,0.0392,-0.201,0.9796,0.0,0.0,1.0,0.0,-0.201,0.9796,0.0,-0.1971,0.9796,-0.0392,0.0,1.0,0.0,-0.1971,0.9796,-0.0392,-0.1857,0.9796,-0.0769,0.0,1.0,0.0,-0.1857,0.9796,-0.0769,-0.1671,0.9796,-0.1117,0.0,1.0,0.0,-0.1671,0.9796,-0.1117,-0.1421,0.9796,-0.1421,0.0,1.0,0.0,-0.1421,0.9796,-0.1421,-0.1117,0.9796,-0.1671,0.0,1.0,0.0,-0.1117,0.9796,-0.1671,-0.0769,0.9796,-0.1857,0.0,1.0,0.0,-0.0769,0.9796,-0.1857,-0.0392,0.9796,-0.1971,0.0,1.0,0.0,-0.0392,0.9796,-0.1971,0.0,0.9796,-0.201,0.0,1.0,0.0,0.0,0.9796,-0.201,0.0392,0.9796,-0.1971,0.0,1.0,0.0,0.0392,0.9796,-0.1971,0.0769,0.9796,-0.1857,0.0,1.0,0.0,0.0769,0.9796,-0.1857,0.1117,0.9796,-0.1671,0.0,1.0,0.0,0.1117,0.9796,-0.1671,0.1421,0.9796,-0.1421,0.0,1.0,0.0,0.1421,0.9796,-0.1421,0.1671,0.9796,-0.1117,0.0,1.0,0.0,0.1671,0.9796,-0.1117,0.1857,0.9796,-0.0769,0.0,1.0,0.0,0.1857,0.9796,-0.0769,0.1971,0.9796,-0.0392,0.0,1.0,0.0,0.1971,0.9796,-0.0392,0.201,0.9796,0.0,0.0,1.0,0.0,0.201,0.9796,0.0,0.1971,0.9796,0.0392,0.0,1.0,0.0,0.1971,0.9796,0.0392,0.1857,0.9796,0.0769,0.0,1.0,0.0,0.1857,0.9796,0.0769,0.1671,0.9796,0.1117,0.0,1.0,0.0,0.1671,0.9796,0.1117,0.1421,0.9796,0.1421,0.0,1.0,0.0,0.1421,0.9796,0.1421,0.1117,0.9796,0.1671,0.0,1.0,0.0,0.1117,0.9796,0.1671,0.0769,0.9796,0.1857,0.0,1.0,0.0,0.0769,0.9796,0.1857,0.0392,0.9796,0.1971,0.0,1.0,0.0,0.0392,0.9796,0.1971,0.0,0.9796,0.201,0.0,0.9796,0.201,0.0,0.9217,0.3879,-0.0757,0.9217,0.3804,0.0,0.9796,0.201,-0.0757,0.9217,0.3804,-0.0392,0.9796,0.1971,-0.0392,0.9796,0.1971,-0.0757,0.9217,0.3804,-0.1484,0.9217,0.3584,-0.0392,0.9796,0.1971,-0.1484,0.9217,0.3584,-0.0769,0.9796,0.1857,-0.0769,0.9796,0.1857,-0.1484,0.9217,0.3584,-0.2155,0.9217,0.3225,-0.0769,0.9796,0.1857,-0.2155,0.9217,0.3225,-0.1117,0.9796,0.1671,-0.1117,0.9796,0.1671,-0.2155,0.9217,0.3225,-0.2743,0.9217,0.2743,-0.1117,0.9796,0.1671,-0.2743,0.9217,0.2743,-0.1421,0.9796,0.1421,-0.1421,0.9796,0.1421,-0.2743,0.9217,0.2743,-0.3225,0.9217,0.2155,-0.1421,0.9796,0.1421,-0.3225,0.9217,0.2155,-0.1671,0.9796,0.1117,-0.1671,0.9796,0.1117,-0.3225,0.9217,0.2155,-0.3584,0.9217,0.1484,-0.1671,0.9796,0.1117,-0.3584,0.9217,0.1484,-0.1857,0.9796,0.0769,-0.1857,0.9796,0.0769,-0.3584,0.9217,0.1484,-0.3804,0.9217,0.0757,-0.1857,0.9796,0.0769,-0.3804,0.9217,0.0757,-0.1971,0.9796,0.0392,-0.1971,0.9796,0.0392,-0.3804,0.9217,0.0757,-0.3879,0.9217,0.0,-0.1971,0.9796,0.0392,-0.3879,0.9217,0.0,-0.201,0.9796,0.0,-0.201,0.9796,0.0,-0.3879,0.9217,0.0,-0.3804,0.9217,-0.0757,-0.201,0.9796,0.0,-0.3804,0.9217,-0.0757,-0.1971,0.9796,-0.0392,-0.1971,0.9796,-0.0392,-0.3804,0.9217,-0.0757,-0.3584,0.9217,-0.1484,-0.1971,0.9796,-0.0392,-0.3584,0.9217,-0.1484,-0.1857,0.9796,-0.0769,-0.1857,0.9796,-0.0769,-0.3584,0.9217,-0.1484,-0.3225,0.9217,-0.2155,-0.1857,0.9796,-0.0769,-0.3225,0.9217,-0.2155,-0.1671,0.9796,-0.1117,-0.1671,0.9796,-0.1117,-0.3225,0.9217,-0.2155,-0.2743,0.9217,-0.2743,-0.1671,0.9796,-0.1117,-0.2743,0.9217,-0.2743,-0.1421,0.9796,-0.1421,-0.1421,0.9796,-0.1421,-0.2743,0.9217,-0.2743,-0.2155,0.9217,-0.3225,-0.1421,0.9796,-0.1421,-0.2155,0.9217,-0.3225,-0.1117,0.9796,-0.1671,-0.1117,0.9796,-0.1671,-0.2155,0.9217,-0.3225,-0.1484,0.9217,-0.3584,-0.1117,0.9796,-0.1671,-0.1484,0.9217,-0.3584,-0.0769,0.9796,-0.1857,-0.0769,0.9796,-0.1857,-0.1484,0.9217,-0.3584,-0.0757,0.9217,-0.3804,-0.0769,0.9796,-0.1857,-0.0757,0.9217,-0.3804,-0.0392,0.9796,-0.1971,-0.0392,0.9796,-0.1971,-0.0757,0.9217,-0.3804,0.0,0.9217,-0.3879,-0.0392,0.9796,-0.1971,0.0,0.9217,-0.3879,0.0,0.9796,-0.201,0.0,0.9796,-0.201,0.0,0.9217,-0.3879,0.0757,0.9217,-0.3804,0.0,0.9796,-0.201,0.0757,0.9217,-0.3804,0.0392,0.9796,-0.1971,0.0392,0.9796,-0.1971,0.0757,0.9217,-0.3804,0.1484,0.9217,-0.3584,0.0392,0.9796,-0.1971,0.1484,0.9217,-0.3584,0.0769,0.9796,-0.1857,0.0769,0.9796,-0.1857,0.1484,0.9217,-0.3584,0.2155,0.9217,-0.3225,0.0769,0.9796,-0.1857,0.2155,0.9217,-0.3225,0.1117,0.9796,-0.1671,0.1117,0.9796,-0.1671,0.2155,0.9217,-0.3225,0.2743,0.9217,-0.2743,0.1117,0.9796,-0.1671,0.2743,0.9217,-0.2743,0.1421,0.9796,-0.1421,0.1421,0.9796,-0.1421,0.2743,0.9217,-0.2743,0.3225,0.9217,-0.2155,0.1421,0.9796,-0.1421,0.3225,0.9217,-0.2155,0.1671,0.9796,-0.1117,0.1671,0.9796,-0.1117,0.3225,0.9217,-0.2155,0.3584,0.9217,-0.1484,0.1671,0.9796,-0.1117,0.3584,0.9217,-0.1484,0.1857,0.9796,-0.0769,0.1857,0.9796,-0.0769,0.3584,0.9217,-0.1484,0.3804,0.9217,-0.0757,0.1857,0.9796,-0.0769,0.3804,0.9217,-0.0757,0.1971,0.9796,-0.0392,0.1971,0.9796,-0.0392,0.3804,0.9217,-0.0757,0.3879,0.9217,0.0,0.1971,0.9796,-0.0392,0.3879,0.9217,0.0,0.201,0.9796,0.0,0.201,0.9796,0.0,0.3879,0.9217,0.0,0.3804,0.9217,0.0757,0.201,0.9796,0.0,0.3804,0.9217,0.0757,0.1971,0.9796,0.0392,0.1971,0.9796,0.0392,0.3804,0.9217,0.0757,0.3584,0.9217,0.1484,0.1971,0.9796,0.0392,0.3584,0.9217,0.1484,0.1857,0.9796,0.0769,0.1857,0.9796,0.0769,0.3584,0.9217,0.1484,0.3225,0.9217,0.2155,0.1857,0.9796,0.0769,0.3225,0.9217,0.2155,0.1671,0.9796,0.1117,0.1671,0.9796,0.1117,0.3225,0.9217,0.2155,0.2743,0.9217,0.2743,0.1671,0.9796,0.1117,0.2743,0.9217,0.2743,0.1421,0.9796,0.1421,0.1421,0.9796,0.1421,0.2743,0.9217,0.2743,0.2155,0.9217,0.3225,0.1421,0.9796,0.1421,0.2155,0.9217,0.3225,0.1117,0.9796,0.1671,0.1117,0.9796,0.1671,0.2155,0.9217,0.3225,0.1484,0.9217,0.3584,0.1117,0.9796,0.1671,0.1484,0.9217,0.3584,0.0769,0.9796,0.1857,0.0769,0.9796,0.1857,0.1484,0.9217,0.3584,0.0757,0.9217,0.3804,0.0769,0.9796,0.1857,0.0757,0.9217,0.3804,0.0392,0.9796,0.1971,0.0392,0.9796,0.1971,0.0757,0.9217,0.3804,0.0,0.9217,0.3879,0.0392,0.9796,0.1971,0.0,0.9217,0.3879,0.0,0.9796,0.201,0.0,0.9217,0.3879,0.0,0.8286,0.5598,-0.1092,0.8286,0.549,0.0,0.9217,0.3879,-0.1092,0.8286,0.549,-0.0757,0.9217,0.3804,-0.0757,0.9217,0.3804,-0.1092,0.8286,0.549,-0.2142,0.8286,0.5172,-0.0757,0.9217,0.3804,-0.2142,0.8286,0.5172,-0.1484,0.9217,0.3584,-0.1484,0.9217,0.3584,-0.2142,0.8286,0.5172,-0.311,0.8286,0.4654,-0.1484,0.9217,0.3584,-0.311,0.8286,0.4654,-0.2155,0.9217,0.3225,-0.2155,0.9217,0.3225,-0.311,0.8286,0.4654,-0.3958,0.8286,0.3958,-0.2155,0.9217,0.3225,-0.3958,0.8286,0.3958,-0.2743,0.9217,0.2743,-0.2743,0.9217,0.2743,-0.3958,0.8286,0.3958,-0.4654,0.8286,0.311,-0.2743,0.9217,0.2743,-0.4654,0.8286,0.311,-0.3225,0.9217,0.2155,-0.3225,0.9217,0.2155,-0.4654,0.8286,0.311,-0.5172,0.8286,0.2142,-0.3225,0.9217,0.2155,-0.5172,0.8286,0.2142,-0.3584,0.9217,0.1484,-0.3584,0.9217,0.1484,-0.5172,0.8286,0.2142,-0.549,0.8286,0.1092,-0.3584,0.9217,0.1484,-0.549,0.8286,0.1092,-0.3804,0.9217,0.0757,-0.3804,0.9217,0.0757,-0.549,0.8286,0.1092,-0.5598,0.8286,0.0,-0.3804,0.9217,0.0757,-0.5598,0.8286,0.0,-0.3879,0.9217,0.0,-0.3879,0.9217,0.0,-0.5598,0.8286,0.0,-0.549,0.8286,-0.1092,-0.3879,0.9217,0.0,-0.549,0.8286,-0.1092,-0.3804,0.9217,-0.0757,-0.3804,0.9217,-0.0757,-0.549,0.8286,-0.1092,-0.5172,0.8286,-0.2142,-0.3804,0.9217,-0.0757,-0.5172,0.8286,-0.2142,-0.3584,0.9217,-0.1484,-0.3584,0.9217,-0.1484,-0.5172,0.8286,-0.2142,-0.4654,0.8286,-0.311,-0.3584,0.9217,-0.1484,-0.4654,0.8286,-0.311,-0.3225,0.9217,-0.2155,-0.3225,0.9217,-0.2155,-0.4654,0.8286,-0.311,-0.3958,0.8286,-0.3958,-0.3225,0.9217,-0.2155,-0.3958,0.8286,-0.3958,-0.2743,0.9217,-0.2743,-0.2743,0.9217,-0.2743,-0.3958,0.8286,-0.3958,-0.311,0.8286,-0.4654,-0.2743,0.9217,-0.2743,-0.311,0.8286,-0.4654,-0.2155,0.9217,-0.3225,-0.2155,0.9217,-0.3225,-0.311,0.8286,-0.4654,-0.2142,0.8286,-0.5172,-0.2155,0.9217,-0.3225,-0.2142,0.8286,-0.5172,-0.1484,0.9217,-0.3584,-0.1484,0.9217,-0.3584,-0.2142,0.8286,-0.5172,-0.1092,0.8286,-0.549,-0.1484,0.9217,-0.3584,-0.1092,0.8286,-0.549,-0.0757,0.9217,-0.3804,-0.0757,0.9217,-0.3804,-0.1092,0.8286,-0.549,0.0,0.8286,-0.5598,-0.0757,0.9217,-0.3804,0.0,0.8286,-0.5598,0.0,0.9217,-0.3879,0.0,0.9217,-0.3879,0.0,0.8286,-0.5598,0.1092,0.8286,-0.549,0.0,0.9217,-0.3879,0.1092,0.8286,-0.549,0.0757,0.9217,-0.3804,0.0757,0.9217,-0.3804,0.1092,0.8286,-0.549,0.2142,0.8286,-0.5172,0.0757,0.9217,-0.3804,0.2142,0.8286,-0.5172,0.1484,0.9217,-0.3584,0.1484,0.9217,-0.3584,0.2142,0.8286,-0.5172,0.311,0.8286,-0.4654,0.1484,0.9217,-0.3584,0.311,0.8286,-0.4654,0.2155,0.9217,-0.3225,0.2155,0.9217,-0.3225,0.311,0.8286,-0.4654,0.3958,0.8286,-0.3958,0.2155,0.9217,-0.3225,0.3958,0.8286,-0.3958,0.2743,0.9217,-0.2743,0.2743,0.9217,-0.2743,0.3958,0.8286,-0.3958,0.4654,0.8286,-0.311,0.2743,0.9217,-0.2743,0.4654,0.8286,-0.311,0.3225,0.9217,-0.2155,0.3225,0.9217,-0.2155,0.4654,0.8286,-0.311,0.5172,0.8286,-0.2142,0.3225,0.9217,-0.2155,0.5172,0.8286,-0.2142,0.3584,0.9217,-0.1484,0.3584,0.9217,-0.1484,0.5172,0.8286,-0.2142,0.549,0.8286,-0.1092,0.3584,0.9217,-0.1484,0.549,0.8286,-0.1092,0.3804,0.9217,-0.0757,0.3804,0.9217,-0.0757,0.549,0.8286,-0.1092,0.5598,0.8286,0.0,0.3804,0.9217,-0.0757,0.5598,0.8286,0.0,0.3879,0.9217,0.0,0.3879,0.9217,0.0,0.5598,0.8286,0.0,0.549,0.8286,0.1092,0.3879,0.9217,0.0,0.549,0.8286,0.1092,0.3804,0.9217,0.0757,0.3804,0.9217,0.0757,0.549,0.8286,0.1092,0.5172,0.8286,0.2142,0.3804,0.9217,0.0757,0.5172,0.8286,0.2142,0.3584,0.9217,0.1484,0.3584,0.9217,0.1484,0.5172,0.8286,0.2142,0.4654,0.8286,0.311,0.3584,0.9217,0.1484,0.4654,0.8286,0.311,0.3225,0.9217,0.2155,0.3225,0.9217,0.2155,0.4654,0.8286,0.311,0.3958,0.8286,0.3958,0.3225,0.9217,0.2155,0.3958,0.8286,0.3958,0.2743,0.9217,0.2743,0.2743,0.9217,0.2743,0.3958,0.8286,0.3958,0.311,0.8286,0.4654,0.2743,0.9217,0.2743,0.311,0.8286,0.4654,0.2155,0.9217,0.3225,0.2155,0.9217,0.3225,0.311,0.8286,0.4654,0.2142,0.8286,0.5172,0.2155,0.9217,0.3225,0.2142,0.8286,0.5172,0.1484,0.9217,0.3584,0.1484,0.9217,0.3584,0.2142,0.8286,0.5172,0.1092,0.8286,0.549,0.1484,0.9217,0.3584,0.1092,0.8286,0.549,0.0757,0.9217,0.3804,0.0757,0.9217,0.3804,0.1092,0.8286,0.549,0.0,0.8286,0.5598,0.0757,0.9217,0.3804,0.0,0.8286,0.5598,0.0,0.9217,0.3879,0.0,0.8286,0.5598,0.0,0.7041,0.7101,-0.1385,0.7041,0.6965,0.0,0.8286,0.5598,-0.1385,0.7041,0.6965,-0.1092,0.8286,0.549,-0.1092,0.8286,0.549,-0.1385,0.7041,0.6965,-0.2718,0.7041,0.6561,-0.1092,0.8286,0.549,-0.2718,0.7041,0.6561,-0.2142,0.8286,0.5172,-0.2142,0.8286,0.5172,-0.2718,0.7041,0.6561,-0.3945,0.7041,0.5905,-0.2142,0.8286,0.5172,-0.3945,0.7041,0.5905,-0.311,0.8286,0.4654,-0.311,0.8286,0.4654,-0.3945,0.7041,0.5905,-0.5021,0.7041,0.5021,-0.311,0.8286,0.4654,-0.5021,0.7041,0.5021,-0.3958,0.8286,0.3958,-0.3958,0.8286,0.3958,-0.5021,0.7041,0.5021,-0.5905,0.7041,0.3945,-0.3958,0.8286,0.3958,-0.5905,0.7041,0.3945,-0.4654,0.8286,0.311,-0.4654,0.8286,0.311,-0.5905,0.7041,0.3945,-0.6561,0.7041,0.2718,-0.4654,0.8286,0.311,-0.6561,0.7041,0.2718,-0.5172,0.8286,0.2142,-0.5172,0.8286,0.2142,-0.6561,0.7041,0.2718,-0.6965,0.7041,0.1385,-0.5172,0.8286,0.2142,-0.6965,0.7041,0.1385,-0.549,0.8286,0.1092,-0.549,0.8286,0.1092,-0.6965,0.7041,0.1385,-0.7101,0.7041,0.0,-0.549,0.8286,0.1092,-0.7101,0.7041,0.0,-0.5598,0.8286,0.0,-0.5598,0.8286,0.0,-0.7101,0.7041,0.0,-0.6965,0.7041,-0.1385,-0.5598,0.8286,0.0,-0.6965,0.7041,-0.1385,-0.549,0.8286,-0.1092,-0.549,0.8286,-0.1092,-0.6965,0.7041,-0.1385,-0.6561,0.7041,-0.2718,-0.549,0.8286,-0.1092,-0.6561,0.7041,-0.2718,-0.5172,0.8286,-0.2142,-0.5172,0.8286,-0.2142,-0.6561,0.7041,-0.2718,-0.5905,0.7041,-0.3945,-0.5172,0.8286,-0.2142,-0.5905,0.7041,-0.3945,-0.4654,0.8286,-0.311,-0.4654,0.8286,-0.311,-0.5905,0.7041,-0.3945,-0.5021,0.7041,-0.5021,-0.4654,0.8286,-0.311,-0.5021,0.7041,-0.5021,-0.3958,0.8286,-0.3958,-0.3958,0.8286,-0.3958,-0.5021,0.7041,-0.5021,-0.3945,0.7041,-0.5905,-0.3958,0.8286,-0.3958,-0.3945,0.7041,-0.5905,-0.311,0.8286,-0.4654,-0.311,0.8286,-0.4654,-0.3945,0.7041,-0.5905,-0.2718,0.7041,-0.6561,-0.311,0.8286,-0.4654,-0.2718,0.7041,-0.6561,-0.2142,0.8286,-0.5172,-0.2142,0.8286,-0.5172,-0.2718,0.7041,-0.6561,-0.1385,0.7041,-0.6965,-0.2142,0.8286,-0.5172,-0.1385,0.7041,-0.6965,-0.1092,0.8286,-0.549,-0.1092,0.8286,-0.549,-0.1385,0.7041,-0.6965,0.0,0.7041,-0.7101,-0.1092,0.8286,-0.549,0.0,0.7041,-0.7101,0.0,0.8286,-0.5598,0.0,0.8286,-0.5598,0.0,0.7041,-0.7101,0.1385,0.7041,-0.6965,0.0,0.8286,-0.5598,0.1385,0.7041,-0.6965,0.1092,0.8286,-0.549,0.1092,0.8286,-0.549,0.1385,0.7041,-0.6965,0.2718,0.7041,-0.6561,0.1092,0.8286,-0.549,0.2718,0.7041,-0.6561,0.2142,0.8286,-0.5172,0.2142,0.8286,-0.5172,0.2718,0.7041,-0.6561,0.3945,0.7041,-0.5905,0.2142,0.8286,-0.5172,0.3945,0.7041,-0.5905,0.311,0.8286,-0.4654,0.311,0.8286,-0.4654,0.3945,0.7041,-0.5905,0.5021,0.7041,-0.5021,0.311,0.8286,-0.4654,0.5021,0.7041,-0.5021,0.3958,0.8286,-0.3958,0.3958,0.8286,-0.3958,0.5021,0.7041,-0.5021,0.5905,0.7041,-0.3945,0.3958,0.8286,-0.3958,0.5905,0.7041,-0.3945,0.4654,0.8286,-0.311,0.4654,0.8286,-0.311,0.5905,0.7041,-0.3945,0.6561,0.7041,-0.2718,0.4654,0.8286,-0.311,0.6561,0.7041,-0.2718,0.5172,0.8286,-0.2142,0.5172,0.8286,-0.2142,0.6561,0.7041,-0.2718,0.6965,0.7041,-0.1385,0.5172,0.8286,-0.2142,0.6965,0.7041,-0.1385,0.549,0.8286,-0.1092,0.549,0.8286,-0.1092,0.6965,0.7041,-0.1385,0.7101,0.7041,0.0,0.549,0.8286,-0.1092,0.7101,0.7041,0.0,0.5598,0.8286,0.0,0.5598,0.8286,0.0,0.7101,0.7041,0.0,0.6965,0.7041,0.1385,0.5598,0.8286,0.0,0.6965,0.7041,0.1385,0.549,0.8286,0.1092,0.549,0.8286,0.1092,0.6965,0.7041,0.1385,0.6561,0.7041,0.2718,0.549,0.8286,0.1092,0.6561,0.7041,0.2718,0.5172,0.8286,0.2142,0.5172,0.8286,0.2142,0.6561,0.7041,0.2718,0.5905,0.7041,0.3945,0.5172,0.8286,0.2142,0.5905,0.7041,0.3945,0.4654,0.8286,0.311,0.4654,0.8286,0.311,0.5905,0.7041,0.3945,0.5021,0.7041,0.5021,0.4654,0.8286,0.311,0.5021,0.7041,0.5021,0.3958,0.8286,0.3958,0.3958,0.8286,0.3958,0.5021,0.7041,0.5021,0.3945,0.7041,0.5905,0.3958,0.8286,0.3958,0.3945,0.7041,0.5905,0.311,0.8286,0.4654,0.311,0.8286,0.4654,0.3945,0.7041,0.5905,0.2718,0.7041,0.6561,0.311,0.8286,0.4654,0.2718,0.7041,0.6561,0.2142,0.8286,0.5172,0.2142,0.8286,0.5172,0.2718,0.7041,0.6561,0.1385,0.7041,0.6965,0.2142,0.8286,0.5172,0.1385,0.7041,0.6965,0.1092,0.8286,0.549,0.1092,0.8286,0.549,0.1385,0.7041,0.6965,0.0,0.7041,0.7101,0.1092,0.8286,0.549,0.0,0.7041,0.7101,0.0,0.8286,0.5598,0.0,0.7041,0.7101,0.0,0.5528,0.8333,-0.1626,0.5528,0.8173,0.0,0.7041,0.7101,-0.1626,0.5528,0.8173,-0.1385,0.7041,0.6965,-0.1385,0.7041,0.6965,-0.1626,0.5528,0.8173,-0.3189,0.5528,0.7699,-0.1385,0.7041,0.6965,-0.3189,0.5528,0.7699,-0.2718,0.7041,0.6561,-0.2718,0.7041,0.6561,-0.3189,0.5528,0.7699,-0.463,0.5528,0.6929,-0.2718,0.7041,0.6561,-0.463,0.5528,0.6929,-0.3945,0.7041,0.5905,-0.3945,0.7041,0.5905,-0.463,0.5528,0.6929,-0.5893,0.5528,0.5893,-0.3945,0.7041,0.5905,-0.5893,0.5528,0.5893,-0.5021,0.7041,0.5021,-0.5021,0.7041,0.5021,-0.5893,0.5528,0.5893,-0.6929,0.5528,0.463,-0.5021,0.7041,0.5021,-0.6929,0.5528,0.463,-0.5905,0.7041,0.3945,-0.5905,0.7041,0.3945,-0.6929,0.5528,0.463,-0.7699,0.5528,0.3189,-0.5905,0.7041,0.3945,-0.7699,0.5528,0.3189,-0.6561,0.7041,0.2718,-0.6561,0.7041,0.2718,-0.7699,0.5528,0.3189,-0.8173,0.5528,0.1626,-0.6561,0.7041,0.2718,-0.8173,0.5528,0.1626,-0.6965,0.7041,0.1385,-0.6965,0.7041,0.1385,-0.8173,0.5528,0.1626,-0.8333,0.5528,0.0,-0.6965,0.7041,0.1385,-0.8333,0.5528,0.0,-0.7101,0.7041,0.0,-0.7101,0.7041,0.0,-0.8333,0.5528,0.0,-0.8173,0.5528,-0.1626,-0.7101,0.7041,0.0,-0.8173,0.5528,-0.1626,-0.6965,0.7041,-0.1385,-0.6965,0.7041,-0.1385,-0.8173,0.5528,-0.1626,-0.7699,0.5528,-0.3189,-0.6965,0.7041,-0.1385,-0.7699,0.5528,-0.3189,-0.6561,0.7041,-0.2718,-0.6561,0.7041,-0.2718,-0.7699,0.5528,-0.3189,-0.6929,0.5528,-0.463,-0.6561,0.7041,-0.2718,-0.6929,0.5528,-0.463,-0.5905,0.7041,-0.3945,-0.5905,0.7041,-0.3945,-0.6929,0.5528,-0.463,-0.5893,0.5528,-0.5893,-0.5905,0.7041,-0.3945,-0.5893,0.5528,-0.5893,-0.5021,0.7041,-0.5021,-0.5021,0.7041,-0.5021,-0.5893,0.5528,-0.5893,-0.463,0.5528,-0.6929,-0.5021,0.7041,-0.5021,-0.463,0.5528,-0.6929,-0.3945,0.7041,-0.5905,-0.3945,0.7041,-0.5905,-0.463,0.5528,-0.6929,-0.3189,0.5528,-0.7699,-0.3945,0.7041,-0.5905,-0.3189,0.5528,-0.7699,-0.2718,0.7041,-0.6561,-0.2718,0.7041,-0.6561,-0.3189,0.5528,-0.7699,-0.1626,0.5528,-0.8173,-0.2718,0.7041,-0.6561,-0.1626,0.5528,-0.8173,-0.1385,0.7041,-0.6965,-0.1385,0.7041,-0.6965,-0.1626,0.5528,-0.8173,0.0,0.5528,-0.8333,-0.1385,0.7041,-0.6965,0.0,0.5528,-0.8333,0.0,0.7041,-0.7101,0.0,0.7041,-0.7101,0.0,0.5528,-0.8333,0.1626,0.5528,-0.8173,0.0,0.7041,-0.7101,0.1626,0.5528,-0.8173,0.1385,0.7041,-0.6965,0.1385,0.7041,-0.6965,0.1626,0.5528,-0.8173,0.3189,0.5528,-0.7699,0.1385,0.7041,-0.6965,0.3189,0.5528,-0.7699,0.2718,0.7041,-0.6561,0.2718,0.7041,-0.6561,0.3189,0.5528,-0.7699,0.463,0.5528,-0.6929,0.2718,0.7041,-0.6561,0.463,0.5528,-0.6929,0.3945,0.7041,-0.5905,0.3945,0.7041,-0.5905,0.463,0.5528,-0.6929,0.5893,0.5528,-0.5893,0.3945,0.7041,-0.5905,0.5893,0.5528,-0.5893,0.5021,0.7041,-0.5021,0.5021,0.7041,-0.5021,0.5893,0.5528,-0.5893,0.6929,0.5528,-0.463,0.5021,0.7041,-0.5021,0.6929,0.5528,-0.463,0.5905,0.7041,-0.3945,0.5905,0.7041,-0.3945,0.6929,0.5528,-0.463,0.7699,0.5528,-0.3189,0.5905,0.7041,-0.3945,0.7699,0.5528,-0.3189,0.6561,0.7041,-0.2718,0.6561,0.7041,-0.2718,0.7699,0.5528,-0.3189,0.8173,0.5528,-0.1626,0.6561,0.7041,-0.2718,0.8173,0.5528,-0.1626,0.6965,0.7041,-0.1385,0.6965,0.7041,-0.1385,0.8173,0.5528,-0.1626,0.8333,0.5528,0.0,0.6965,0.7041,-0.1385,0.8333,0.5528,0.0,0.7101,0.7041,0.0,0.7101,0.7041,0.0,0.8333,0.5528,0.0,0.8173,0.5528,0.1626,0.7101,0.7041,0.0,0.8173,0.5528,0.1626,0.6965,0.7041,0.1385,0.6965,0.7041,0.1385,0.8173,0.5528,0.1626,0.7699,0.5528,0.3189,0.6965,0.7041,0.1385,0.7699,0.5528,0.3189,0.6561,0.7041,0.2718,0.6561,0.7041,0.2718,0.7699,0.5528,0.3189,0.6929,0.5528,0.463,0.6561,0.7041,0.2718,0.6929,0.5528,0.463,0.5905,0.7041,0.3945,0.5905,0.7041,0.3945,0.6929,0.5528,0.463,0.5893,0.5528,0.5893,0.5905,0.7041,0.3945,0.5893,0.5528,0.5893,0.5021,0.7041,0.5021,0.5021,0.7041,0.5021,0.5893,0.5528,0.5893,0.463,0.5528,0.6929,0.5021,0.7041,0.5021,0.463,0.5528,0.6929,0.3945,0.7041,0.5905,0.3945,0.7041,0.5905,0.463,0.5528,0.6929,0.3189,0.5528,0.7699,0.3945,0.7041,0.5905,0.3189,0.5528,0.7699,0.2718,0.7041,0.6561,0.2718,0.7041,0.6561,0.3189,0.5528,0.7699,0.1626,0.5528,0.8173,0.2718,0.7041,0.6561,0.1626,0.5528,0.8173,0.1385,0.7041,0.6965,0.1385,0.7041,0.6965,0.1626,0.5528,0.8173,0.0,0.5528,0.8333,0.1385,0.7041,0.6965,0.0,0.5528,0.8333,0.0,0.7041,0.7101,0.0,0.5528,0.8333,0.0,0.3805,0.9248,-0.1804,0.3805,0.907,0.0,0.5528,0.8333,-0.1804,0.3805,0.907,-0.1626,0.5528,0.8173,-0.1626,0.5528,0.8173,-0.1804,0.3805,0.907,-0.3539,0.3805,0.8544,-0.1626,0.5528,0.8173,-0.3539,0.3805,0.8544,-0.3189,0.5528,0.7699,-0.3189,0.5528,0.7699,-0.3539,0.3805,0.8544,-0.5138,0.3805,0.7689,-0.3189,0.5528,0.7699,-0.5138,0.3805,0.7689,-0.463,0.5528,0.6929,-0.463,0.5528,0.6929,-0.5138,0.3805,0.7689,-0.6539,0.3805,0.6539,-0.463,0.5528,0.6929,-0.6539,0.3805,0.6539,-0.5893,0.5528,0.5893,-0.5893,0.5528,0.5893,-0.6539,0.3805,0.6539,-0.7689,0.3805,0.5138,-0.5893,0.5528,0.5893,-0.7689,0.3805,0.5138,-0.6929,0.5528,0.463,-0.6929,0.5528,0.463,-0.7689,0.3805,0.5138,-0.8544,0.3805,0.3539,-0.6929,0.5528,0.463,-0.8544,0.3805,0.3539,-0.7699,0.5528,0.3189,-0.7699,0.5528,0.3189,-0.8544,0.3805,0.3539,-0.907,0.3805,0.1804,-0.7699,0.5528,0.3189,-0.907,0.3805,0.1804,-0.8173,0.5528,0.1626,-0.8173,0.5528,0.1626,-0.907,0.3805,0.1804,-0.9248,0.3805,0.0,-0.8173,0.5528,0.1626,-0.9248,0.3805,0.0,-0.8333,0.5528,0.0,-0.8333,0.5528,0.0,-0.9248,0.3805,0.0,-0.907,0.3805,-0.1804,-0.8333,0.5528,0.0,-0.907,0.3805,-0.1804,-0.8173,0.5528,-0.1626,-0.8173,0.5528,-0.1626,-0.907,0.3805,-0.1804,-0.8544,0.3805,-0.3539,-0.8173,0.5528,-0.1626,-0.8544,0.3805,-0.3539,-0.7699,0.5528,-0.3189,-0.7699,0.5528,-0.3189,-0.8544,0.3805,-0.3539,-0.7689,0.3805,-0.5138,-0.7699,0.5528,-0.3189,-0.7689,0.3805,-0.5138,-0.6929,0.5528,-0.463,-0.6929,0.5528,-0.463,-0.7689,0.3805,-0.5138,-0.6539,0.3805,-0.6539,-0.6929,0.5528,-0.463,-0.6539,0.3805,-0.6539,-0.5893,0.5528,-0.5893,-0.5893,0.5528,-0.5893,-0.6539,0.3805,-0.6539,-0.5138,0.3805,-0.7689,-0.5893,0.5528,-0.5893,-0.5138,0.3805,-0.7689,-0.463,0.5528,-0.6929,-0.463,0.5528,-0.6929,-0.5138,0.3805,-0.7689,-0.3539,0.3805,-0.8544,-0.463,0.5528,-0.6929,-0.3539,0.3805,-0.8544,-0.3189,0.5528,-0.7699,-0.3189,0.5528,-0.7699,-0.3539,0.3805,-0.8544,-0.1804,0.3805,-0.907,-0.3189,0.5528,-0.7699,-0.1804,0.3805,-0.907,-0.1626,0.5528,-0.8173,-0.1626,0.5528,-0.8173,-0.1804,0.3805,-0.907,0.0,0.3805,-0.9248,-0.1626,0.5528,-0.8173,0.0,0.3805,-0.9248,0.0,0.5528,-0.8333,0.0,0.5528,-0.8333,0.0,0.3805,-0.9248,0.1804,0.3805,-0.907,0.0,0.5528,-0.8333,0.1804,0.3805,-0.907,0.1626,0.5528,-0.8173,0.1626,0.5528,-0.8173,0.1804,0.3805,-0.907,0.3539,0.3805,-0.8544,0.1626,0.5528,-0.8173,0.3539,0.3805,-0.8544,0.3189,0.5528,-0.7699,0.3189,0.5528,-0.7699,0.3539,0.3805,-0.8544,0.5138,0.3805,-0.7689,0.3189,0.5528,-0.7699,0.5138,0.3805,-0.7689,0.463,0.5528,-0.6929,0.463,0.5528,-0.6929,0.5138,0.3805,-0.7689,0.6539,0.3805,-0.6539,0.463,0.5528,-0.6929,0.6539,0.3805,-0.6539,0.5893,0.5528,-0.5893,0.5893,0.5528,-0.5893,0.6539,0.3805,-0.6539,0.7689,0.3805,-0.5138,0.5893,0.5528,-0.5893,0.7689,0.3805,-0.5138,0.6929,0.5528,-0.463,0.6929,0.5528,-0.463,0.7689,0.3805,-0.5138,0.8544,0.3805,-0.3539,0.6929,0.5528,-0.463,0.8544,0.3805,-0.3539,0.7699,0.5528,-0.3189,0.7699,0.5528,-0.3189,0.8544,0.3805,-0.3539,0.907,0.3805,-0.1804,0.7699,0.5528,-0.3189,0.907,0.3805,-0.1804,0.8173,0.5528,-0.1626,0.8173,0.5528,-0.1626,0.907,0.3805,-0.1804,0.9248,0.3805,0.0,0.8173,0.5528,-0.1626,0.9248,0.3805,0.0,0.8333,0.5528,0.0,0.8333,0.5528,0.0,0.9248,0.3805,0.0,0.907,0.3805,0.1804,0.8333,0.5528,0.0,0.907,0.3805,0.1804,0.8173,0.5528,0.1626,0.8173,0.5528,0.1626,0.907,0.3805,0.1804,0.8544,0.3805,0.3539,0.8173,0.5528,0.1626,0.8544,0.3805,0.3539,0.7699,0.5528,0.3189,0.7699,0.5528,0.3189,0.8544,0.3805,0.3539,0.7689,0.3805,0.5138,0.7699,0.5528,0.3189,0.7689,0.3805,0.5138,0.6929,0.5528,0.463,0.6929,0.5528,0.463,0.7689,0.3805,0.5138,0.6539,0.3805,0.6539,0.6929,0.5528,0.463,0.6539,0.3805,0.6539,0.5893,0.5528,0.5893,0.5893,0.5528,0.5893,0.6539,0.3805,0.6539,0.5138,0.3805,0.7689,0.5893,0.5528,0.5893,0.5138,0.3805,0.7689,0.463,0.5528,0.6929,0.463,0.5528,0.6929,0.5138,0.3805,0.7689,0.3539,0.3805,0.8544,0.463,0.5528,0.6929,0.3539,0.3805,0.8544,0.3189,0.5528,0.7699,0.3189,0.5528,0.7699,0.3539,0.3805,0.8544,0.1804,0.3805,0.907,0.3189,0.5528,0.7699,0.1804,0.3805,0.907,0.1626,0.5528,0.8173,0.1626,0.5528,0.8173,0.1804,0.3805,0.907,0.0,0.3805,0.9248,0.1626,0.5528,0.8173,0.0,0.3805,0.9248,0.0,0.5528,0.8333,0.0,0.3805,0.9248,0.0,0.1939,0.981,-0.1914,0.1939,0.9622,0.0,0.3805,0.9248,-0.1914,0.1939,0.9622,-0.1804,0.3805,0.907,-0.1804,0.3805,0.907,-0.1914,0.1939,0.9622,-0.3754,0.1939,0.9063,-0.1804,0.3805,0.907,-0.3754,0.1939,0.9063,-0.3539,0.3805,0.8544,-0.3539,0.3805,0.8544,-0.3754,0.1939,0.9063,-0.545,0.1939,0.8157,-0.3539,0.3805,0.8544,-0.545,0.1939,0.8157,-0.5138,0.3805,0.7689,-0.5138,0.3805,0.7689,-0.545,0.1939,0.8157,-0.6937,0.1939,0.6937,-0.5138,0.3805,0.7689,-0.6937,0.1939,0.6937,-0.6539,0.3805,0.6539,-0.6539,0.3805,0.6539,-0.6937,0.1939,0.6937,-0.8157,0.1939,0.545,-0.6539,0.3805,0.6539,-0.8157,0.1939,0.545,-0.7689,0.3805,0.5138,-0.7689,0.3805,0.5138,-0.8157,0.1939,0.545,-0.9063,0.1939,0.3754,-0.7689,0.3805,0.5138,-0.9063,0.1939,0.3754,-0.8544,0.3805,0.3539,-0.8544,0.3805,0.3539,-0.9063,0.1939,0.3754,-0.9622,0.1939,0.1914,-0.8544,0.3805,0.3539,-0.9622,0.1939,0.1914,-0.907,0.3805,0.1804,-0.907,0.3805,0.1804,-0.9622,0.1939,0.1914,-0.981,0.1939,0.0,-0.907,0.3805,0.1804,-0.981,0.1939,0.0,-0.9248,0.3805,0.0,-0.9248,0.3805,0.0,-0.981,0.1939,0.0,-0.9622,0.1939,-0.1914,-0.9248,0.3805,0.0,-0.9622,0.1939,-0.1914,-0.907,0.3805,-0.1804,-0.907,0.3805,-0.1804,-0.9622,0.1939,-0.1914,-0.9063,0.1939,-0.3754,-0.907,0.3805,-0.1804,-0.9063,0.1939,-0.3754,-0.8544,0.3805,-0.3539,-0.8544,0.3805,-0.3539,-0.9063,0.1939,-0.3754,-0.8157,0.1939,-0.545,-0.8544,0.3805,-0.3539,-0.8157,0.1939,-0.545,-0.7689,0.3805,-0.5138,-0.7689,0.3805,-0.5138,-0.8157,0.1939,-0.545,-0.6937,0.1939,-0.6937,-0.7689,0.3805,-0.5138,-0.6937,0.1939,-0.6937,-0.6539,0.3805,-0.6539,-0.6539,0.3805,-0.6539,-0.6937,0.1939,-0.6937,-0.545,0.1939,-0.8157,-0.6539,0.3805,-0.6539,-0.545,0.1939,-0.8157,-0.5138,0.3805,-0.7689,-0.5138,0.3805,-0.7689,-0.545,0.1939,-0.8157,-0.3754,0.1939,-0.9063,-0.5138,0.3805,-0.7689,-0.3754,0.1939,-0.9063,-0.3539,0.3805,-0.8544,-0.3539,0.3805,-0.8544,-0.3754,0.1939,-0.9063,-0.1914,0.1939,-0.9622,-0.3539,0.3805,-0.8544,-0.1914,0.1939,-0.9622,-0.1804,0.3805,-0.907,-0.1804,0.3805,-0.907,-0.1914,0.1939,-0.9622,0.0,0.1939,-0.981,-0.1804,0.3805,-0.907,0.0,0.1939,-0.981,0.0,0.3805,-0.9248,0.0,0.3805,-0.9248,0.0,0.1939,-0.981,0.1914,0.1939,-0.9622,0.0,0.3805,-0.9248,0.1914,0.1939,-0.9622,0.1804,0.3805,-0.907,0.1804,0.3805,-0.907,0.1914,0.1939,-0.9622,0.3754,0.1939,-0.9063,0.1804,0.3805,-0.907,0.3754,0.1939,-0.9063,0.3539,0.3805,-0.8544,0.3539,0.3805,-0.8544,0.3754,0.1939,-0.9063,0.545,0.1939,-0.8157,0.3539,0.3805,-0.8544,0.545,0.1939,-0.8157,0.5138,0.3805,-0.7689,0.5138,0.3805,-0.7689,0.545,0.1939,-0.8157,0.6937,0.1939,-0.6937,0.5138,0.3805,-0.7689,0.6937,0.1939,-0.6937,0.6539,0.3805,-0.6539,0.6539,0.3805,-0.6539,0.6937,0.1939,-0.6937,0.8157,0.1939,-0.545,0.6539,0.3805,-0.6539,0.8157,0.1939,-0.545,0.7689,0.3805,-0.5138,0.7689,0.3805,-0.5138,0.8157,0.1939,-0.545,0.9063,0.1939,-0.3754,0.7689,0.3805,-0.5138,0.9063,0.1939,-0.3754,0.8544,0.3805,-0.3539,0.8544,0.3805,-0.3539,0.9063,0.1939,-0.3754,0.9622,0.1939,-0.1914,0.8544,0.3805,-0.3539,0.9622,0.1939,-0.1914,0.907,0.3805,-0.1804,0.907,0.3805,-0.1804,0.9622,0.1939,-0.1914,0.981,0.1939,0.0,0.907,0.3805,-0.1804,0.981,0.1939,0.0,0.9248,0.3805,0.0,0.9248,0.3805,0.0,0.981,0.1939,0.0,0.9622,0.1939,0.1914,0.9248,0.3805,0.0,0.9622,0.1939,0.1914,0.907,0.3805,0.1804,0.907,0.3805,0.1804,0.9622,0.1939,0.1914,0.9063,0.1939,0.3754,0.907,0.3805,0.1804,0.9063,0.1939,0.3754,0.8544,0.3805,0.3539,0.8544,0.3805,0.3539,0.9063,0.1939,0.3754,0.8157,0.1939,0.545,0.8544,0.3805,0.3539,0.8157,0.1939,0.545,0.7689,0.3805,0.5138,0.7689,0.3805,0.5138,0.8157,0.1939,0.545,0.6937,0.1939,0.6937,0.7689,0.3805,0.5138,0.6937,0.1939,0.6937,0.6539,0.3805,0.6539,0.6539,0.3805,0.6539,0.6937,0.1939,0.6937,0.545,0.1939,0.8157,0.6539,0.3805,0.6539,0.545,0.1939,0.8157,0.5138,0.3805,0.7689,0.5138,0.3805,0.7689,0.545,0.1939,0.8157,0.3754,0.1939,0.9063,0.5138,0.3805,0.7689,0.3754,0.1939,0.9063,0.3539,0.3805,0.8544,0.3539,0.3805,0.8544,0.3754,0.1939,0.9063,0.1914,0.1939,0.9622,0.3539,0.3805,0.8544,0.1914,0.1939,0.9622,0.1804,0.3805,0.907,0.1804,0.3805,0.907,0.1914,0.1939,0.9622,0.0,0.1939,0.981,0.1804,0.3805,0.907,0.0,0.1939,0.981,0.0,0.3805,0.9248,0.0,0.1939,0.981,0.0,0.0,1.0,-0.1951,0.0,0.9808,0.0,0.1939,0.981,-0.1951,0.0,0.9808,-0.1914,0.1939,0.9622,-0.1914,0.1939,0.9622,-0.1951,0.0,0.9808,-0.3827,0.0,0.9239,-0.1914,0.1939,0.9622,-0.3827,0.0,0.9239,-0.3754,0.1939,0.9063,-0.3754,0.1939,0.9063,-0.3827,0.0,0.9239,-0.5556,0.0,0.8315,-0.3754,0.1939,0.9063,-0.5556,0.0,0.8315,-0.545,0.1939,0.8157,-0.545,0.1939,0.8157,-0.5556,0.0,0.8315,-0.7071,0.0,0.7071,-0.545,0.1939,0.8157,-0.7071,0.0,0.7071,-0.6937,0.1939,0.6937,-0.6937,0.1939,0.6937,-0.7071,0.0,0.7071,-0.8315,0.0,0.5556,-0.6937,0.1939,0.6937,-0.8315,0.0,0.5556,-0.8157,0.1939,0.545,-0.8157,0.1939,0.545,-0.8315,0.0,0.5556,-0.9239,0.0,0.3827,-0.8157,0.1939,0.545,-0.9239,0.0,0.3827,-0.9063,0.1939,0.3754,-0.9063,0.1939,0.3754,-0.9239,0.0,0.3827,-0.9808,0.0,0.1951,-0.9063,0.1939,0.3754,-0.9808,0.0,0.1951,-0.9622,0.1939,0.1914,-0.9622,0.1939,0.1914,-0.9808,0.0,0.1951,-1.0,0.0,0.0,-0.9622,0.1939,0.1914,-1.0,0.0,0.0,-0.981,0.1939,0.0,-0.981,0.1939,0.0,-1.0,0.0,0.0,-0.9808,0.0,-0.1951,-0.981,0.1939,0.0,-0.9808,0.0,-0.1951,-0.9622,0.1939,-0.1914,-0.9622,0.1939,-0.1914,-0.9808,0.0,-0.1951,-0.9239,0.0,-0.3827,-0.9622,0.1939,-0.1914,-0.9239,0.0,-0.3827,-0.9063,0.1939,-0.3754,-0.9063,0.1939,-0.3754,-0.9239,0.0,-0.3827,-0.8315,0.0,-0.5556,-0.9063,0.1939,-0.3754,-0.8315,0.0,-0.5556,-0.8157,0.1939,-0.545,-0.8157,0.1939,-0.545,-0.8315,0.0,-0.5556,-0.7071,0.0,-0.7071,-0.8157,0.1939,-0.545,-0.7071,0.0,-0.7071,-0.6937,0.1939,-0.6937,-0.6937,0.1939,-0.6937,-0.7071,0.0,-0.7071,-0.5556,0.0,-0.8315,-0.6937,0.1939,-0.6937,-0.5556,0.0,-0.8315,-0.545,0.1939,-0.8157,-0.545,0.1939,-0.8157,-0.5556,0.0,-0.8315,-0.3827,0.0,-0.9239,-0.545,0.1939,-0.8157,-0.3827,0.0,-0.9239,-0.3754,0.1939,-0.9063,-0.3754,0.1939,-0.9063,-0.3827,0.0,-0.9239,-0.1951,0.0,-0.9808,-0.3754,0.1939,-0.9063,-0.1951,0.0,-0.9808,-0.1914,0.1939,-0.9622,-0.1914,0.1939,-0.9622,-0.1951,0.0,-0.9808,0.0,0.0,-1.0,-0.1914,0.1939,-0.9622,0.0,0.0,-1.0,0.0,0.1939,-0.981,0.0,0.1939,-0.981,0.0,0.0,-1.0,0.1951,0.0,-0.9808,0.0,0.1939,-0.981,0.1951,0.0,-0.9808,0.1914,0.1939,-0.9622,0.1914,0.1939,-0.9622,0.1951,0.0,-0.9808,0.3827,0.0,-0.9239,0.1914,0.1939,-0.9622,0.3827,0.0,-0.9239,0.3754,0.1939,-0.9063,0.3754,0.1939,-0.9063,0.3827,0.0,-0.9239,0.5556,0.0,-0.8315,0.3754,0.1939,-0.9063,0.5556,0.0,-0.8315,0.545,0.1939,-0.8157,0.545,0.1939,-0.8157,0.5556,0.0,-0.8315,0.7071,0.0,-0.7071,0.545,0.1939,-0.8157,0.7071,0.0,-0.7071,0.6937,0.1939,-0.6937,0.6937,0.1939,-0.6937,0.7071,0.0,-0.7071,0.8315,0.0,-0.5556,0.6937,0.1939,-0.6937,0.8315,0.0,-0.5556,0.8157,0.1939,-0.545,0.8157,0.1939,-0.545,0.8315,0.0,-0.5556,0.9239,0.0,-0.3827,0.8157,0.1939,-0.545,0.9239,0.0,-0.3827,0.9063,0.1939,-0.3754,0.9063,0.1939,-0.3754,0.9239,0.0,-0.3827,0.9808,0.0,-0.1951,0.9063,0.1939,-0.3754,0.9808,0.0,-0.1951,0.9622,0.1939,-0.1914,0.9622,0.1939,-0.1914,0.9808,0.0,-0.1951,1.0,0.0,0.0,0.9622,0.1939,-0.1914,1.0,0.0,0.0,0.981,0.1939,0.0,0.981,0.1939,0.0,1.0,0.0,0.0,0.9808,0.0,0.1951,0.981,0.1939,0.0,0.9808,0.0,0.1951,0.9622,0.1939,0.1914,0.9622,0.1939,0.1914,0.9808,0.0,0.1951,0.9239,0.0,0.3827,0.9622,0.1939,0.1914,0.9239,0.0,0.3827,0.9063,0.1939,0.3754,0.9063,0.1939,0.3754,0.9239,0.0,0.3827,0.8315,0.0,0.5556,0.9063,0.1939,0.3754,0.8315,0.0,0.5556,0.8157,0.1939,0.545,0.8157,0.1939,0.545,0.8315,0.0,0.5556,0.7071,0.0,0.7071,0.8157,0.1939,0.545,0.7071,0.0,0.7071,0.6937,0.1939,0.6937,0.6937,0.1939,0.6937,0.7071,0.0,0.7071,0.5556,0.0,0.8315,0.6937,0.1939,0.6937,0.5556,0.0,0.8315,0.545,0.1939,0.8157,0.545,0.1939,0.8157,0.5556,0.0,0.8315,0.3827,0.0,0.9239,0.545,0.1939,0.8157,0.3827,0.0,0.9239,0.3754,0.1939,0.9063,0.3754,0.1939,0.9063,0.3827,0.0,0.9239,0.1951,0.0,0.9808,0.3754,0.1939,0.9063,0.1951,0.0,0.9808,0.1914,0.1939,0.9622,0.1914,0.1939,0.9622,0.1951,0.0,0.9808,0.0,0.0,1.0,0.1914,0.1939,0.9622,0.0,0.0,1.0,0.0,0.1939,0.981,0.0,0.0,1.0,0.0,-0.1939,0.981,-0.1914,-0.1939,0.9622,0.0,0.0,1.0,-0.1914,-0.1939,0.9622,-0.1951,0.0,0.9808,-0.1951,0.0,0.9808,-0.1914,-0.1939,0.9622,-0.3754,-0.1939,0.9063,-0.1951,0.0,0.9808,-0.3754,-0.1939,0.9063,-0.3827,0.0,0.9239,-0.3827,0.0,0.9239,-0.3754,-0.1939,0.9063,-0.545,-0.1939,0.8157,-0.3827,0.0,0.9239,-0.545,-0.1939,0.8157,-0.5556,0.0,0.8315,-0.5556,0.0,0.8315,-0.545,-0.1939,0.8157,-0.6937,-0.1939,0.6937,-0.5556,0.0,0.8315,-0.6937,-0.1939,0.6937,-0.7071,0.0,0.7071,-0.7071,0.0,0.7071,-0.6937,-0.1939,0.6937,-0.8157,-0.1939,0.545,-0.7071,0.0,0.7071,-0.8157,-0.1939,0.545,-0.8315,0.0,0.5556,-0.8315,0.0,0.5556,-0.8157,-0.1939,0.545,-0.9063,-0.1939,0.3754,-0.8315,0.0,0.5556,-0.9063,-0.1939,0.3754,-0.9239,0.0,0.3827,-0.9239,0.0,0.3827,-0.9063,-0.1939,0.3754,-0.9622,-0.1939,0.1914,-0.9239,0.0,0.3827,-0.9622,-0.1939,0.1914,-0.9808,0.0,0.1951,-0.9808,0.0,0.1951,-0.9622,-0.1939,0.1914,-0.981,-0.1939,0.0,-0.9808,0.0,0.1951,-0.981,-0.1939,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-0.981,-0.1939,0.0,-0.9622,-0.1939,-0.1914,-1.0,0.0,0.0,-0.9622,-0.1939,-0.1914,-0.9808,0.0,-0.1951,-0.9808,0.0,-0.1951,-0.9622,-0.1939,-0.1914,-0.9063,-0.1939,-0.3754,-0.9808,0.0,-0.1951,-0.9063,-0.1939,-0.3754,-0.9239,0.0,-0.3827,-0.9239,0.0,-0.3827,-0.9063,-0.1939,-0.3754,-0.8157,-0.1939,-0.545,-0.9239,0.0,-0.3827,-0.8157,-0.1939,-0.545,-0.8315,0.0,-0.5556,-0.8315,0.0,-0.5556,-0.8157,-0.1939,-0.545,-0.6937,-0.1939,-0.6937,-0.8315,0.0,-0.5556,-0.6937,-0.1939,-0.6937,-0.7071,0.0,-0.7071,-0.7071,0.0,-0.7071,-0.6937,-0.1939,-0.6937,-0.545,-0.1939,-0.8157,-0.7071,0.0,-0.7071,-0.545,-0.1939,-0.8157,-0.5556,0.0,-0.8315,-0.5556,0.0,-0.8315,-0.545,-0.1939,-0.8157,-0.3754,-0.1939,-0.9063,-0.5556,0.0,-0.8315,-0.3754,-0.1939,-0.9063,-0.3827,0.0,-0.9239,-0.3827,0.0,-0.9239,-0.3754,-0.1939,-0.9063,-0.1914,-0.1939,-0.9622,-0.3827,0.0,-0.9239,-0.1914,-0.1939,-0.9622,-0.1951,0.0,-0.9808,-0.1951,0.0,-0.9808,-0.1914,-0.1939,-0.9622,0.0,-0.1939,-0.981,-0.1951,0.0,-0.9808,0.0,-0.1939,-0.981,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,-0.1939,-0.981,0.1914,-0.1939,-0.9622,0.0,0.0,-1.0,0.1914,-0.1939,-0.9622,0.1951,0.0,-0.9808,0.1951,0.0,-0.9808,0.1914,-0.1939,-0.9622,0.3754,-0.1939,-0.9063,0.1951,0.0,-0.9808,0.3754,-0.1939,-0.9063,0.3827,0.0,-0.9239,0.3827,0.0,-0.9239,0.3754,-0.1939,-0.9063,0.545,-0.1939,-0.8157,0.3827,0.0,-0.9239,0.545,-0.1939,-0.8157,0.5556,0.0,-0.8315,0.5556,0.0,-0.8315,0.545,-0.1939,-0.8157,0.6937,-0.1939,-0.6937,0.5556,0.0,-0.8315,0.6937,-0.1939,-0.6937,0.7071,0.0,-0.7071,0.7071,0.0,-0.7071,0.6937,-0.1939,-0.6937,0.8157,-0.1939,-0.545,0.7071,0.0,-0.7071,0.8157,-0.1939,-0.545,0.8315,0.0,-0.5556,0.8315,0.0,-0.5556,0.8157,-0.1939,-0.545,0.9063,-0.1939,-0.3754,0.8315,0.0,-0.5556,0.9063,-0.1939,-0.3754,0.9239,0.0,-0.3827,0.9239,0.0,-0.3827,0.9063,-0.1939,-0.3754,0.9622,-0.1939,-0.1914,0.9239,0.0,-0.3827,0.9622,-0.1939,-0.1914,0.9808,0.0,-0.1951,0.9808,0.0,-0.1951,0.9622,-0.1939,-0.1914,0.981,-0.1939,0.0,0.9808,0.0,-0.1951,0.981,-0.1939,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.981,-0.1939,0.0,0.9622,-0.1939,0.1914,1.0,0.0,0.0,0.9622,-0.1939,0.1914,0.9808,0.0,0.1951,0.9808,0.0,0.1951,0.9622,-0.1939,0.1914,0.9063,-0.1939,0.3754,0.9808,0.0,0.1951,0.9063,-0.1939,0.3754,0.9239,0.0,0.3827,0.9239,0.0,0.3827,0.9063,-0.1939,0.3754,0.8157,-0.1939,0.545,0.9239,0.0,0.3827,0.8157,-0.1939,0.545,0.8315,0.0,0.5556,0.8315,0.0,0.5556,0.8157,-0.1939,0.545,0.6937,-0.1939,0.6937,0.8315,0.0,0.5556,0.6937,-0.1939,0.6937,0.7071,0.0,0.7071,0.7071,0.0,0.7071,0.6937,-0.1939,0.6937,0.545,-0.1939,0.8157,0.7071,0.0,0.7071,0.545,-0.1939,0.8157,0.5556,0.0,0.8315,0.5556,0.0,0.8315,0.545,-0.1939,0.8157,0.3754,-0.1939,0.9063,0.5556,0.0,0.8315,0.3754,-0.1939,0.9063,0.3827,0.0,0.9239,0.3827,0.0,0.9239,0.3754,-0.1939,0.9063,0.1914,-0.1939,0.9622,0.3827,0.0,0.9239,0.1914,-0.1939,0.9622,0.1951,0.0,0.9808,0.1951,0.0,0.9808,0.1914,-0.1939,0.9622,0.0,-0.1939,0.981,0.1951,0.0,0.9808,0.0,-0.1939,0.981,0.0,0.0,1.0,0.0,-0.1939,0.981,0.0,-0.3805,0.9248,-0.1804,-0.3805,0.907,0.0,-0.1939,0.981,-0.1804,-0.3805,0.907,-0.1914,-0.1939,0.9622,-0.1914,-0.1939,0.9622,-0.1804,-0.3805,0.907,-0.3539,-0.3805,0.8544,-0.1914,-0.1939,0.9622,-0.3539,-0.3805,0.8544,-0.3754,-0.1939,0.9063,-0.3754,-0.1939,0.9063,-0.3539,-0.3805,0.8544,-0.5138,-0.3805,0.7689,-0.3754,-0.1939,0.9063,-0.5138,-0.3805,0.7689,-0.545,-0.1939,0.8157,-0.545,-0.1939,0.8157,-0.5138,-0.3805,0.7689,-0.6539,-0.3805,0.6539,-0.545,-0.1939,0.8157,-0.6539,-0.3805,0.6539,-0.6937,-0.1939,0.6937,-0.6937,-0.1939,0.6937,-0.6539,-0.3805,0.6539,-0.7689,-0.3805,0.5138,-0.6937,-0.1939,0.6937,-0.7689,-0.3805,0.5138,-0.8157,-0.1939,0.545,-0.8157,-0.1939,0.545,-0.7689,-0.3805,0.5138,-0.8544,-0.3805,0.3539,-0.8157,-0.1939,0.545,-0.8544,-0.3805,0.3539,-0.9063,-0.1939,0.3754,-0.9063,-0.1939,0.3754,-0.8544,-0.3805,0.3539,-0.907,-0.3805,0.1804,-0.9063,-0.1939,0.3754,-0.907,-0.3805,0.1804,-0.9622,-0.1939,0.1914,-0.9622,-0.1939,0.1914,-0.907,-0.3805,0.1804,-0.9248,-0.3805,0.0,-0.9622,-0.1939,0.1914,-0.9248,-0.3805,0.0,-0.981,-0.1939,0.0,-0.981,-0.1939,0.0,-0.9248,-0.3805,0.0,-0.907,-0.3805,-0.1804,-0.981,-0.1939,0.0,-0.907,-0.3805,-0.1804,-0.9622,-0.1939,-0.1914,-0.9622,-0.1939,-0.1914,-0.907,-0.3805,-0.1804,-0.8544,-0.3805,-0.3539,-0.9622,-0.1939,-0.1914,-0.8544,-0.3805,-0.3539,-0.9063,-0.1939,-0.3754,-0.9063,-0.1939,-0.3754,-0.8544,-0.3805,-0.3539,-0.7689,-0.3805,-0.5138,-0.9063,-0.1939,-0.3754,-0.7689,-0.3805,-0.5138,-0.8157,-0.1939,-0.545,-0.8157,-0.1939,-0.545,-0.7689,-0.3805,-0.5138,-0.6539,-0.3805,-0.6539,-0.8157,-0.1939,-0.545,-0.6539,-0.3805,-0.6539,-0.6937,-0.1939,-0.6937,-0.6937,-0.1939,-0.6937,-0.6539,-0.3805,-0.6539,-0.5138,-0.3805,-0.7689,-0.6937,-0.1939,-0.6937,-0.5138,-0.3805,-0.7689,-0.545,-0.1939,-0.8157,-0.545,-0.1939,-0.8157,-0.5138,-0.3805,-0.7689,-0.3539,-0.3805,-0.8544,-0.545,-0.1939,-0.8157,-0.3539,-0.3805,-0.8544,-0.3754,-0.1939,-0.9063,-0.3754,-0.1939,-0.9063,-0.3539,-0.3805,-0.8544,-0.1804,-0.3805,-0.907,-0.3754,-0.1939,-0.9063,-0.1804,-0.3805,-0.907,-0.1914,-0.1939,-0.9622,-0.1914,-0.1939,-0.9622,-0.1804,-0.3805,-0.907,0.0,-0.3805,-0.9248,-0.1914,-0.1939,-0.9622,0.0,-0.3805,-0.9248,0.0,-0.1939,-0.981,0.0,-0.1939,-0.981,0.0,-0.3805,-0.9248,0.1804,-0.3805,-0.907,0.0,-0.1939,-0.981,0.1804,-0.3805,-0.907,0.1914,-0.1939,-0.9622,0.1914,-0.1939,-0.9622,0.1804,-0.3805,-0.907,0.3539,-0.3805,-0.8544,0.1914,-0.1939,-0.9622,0.3539,-0.3805,-0.8544,0.3754,-0.1939,-0.9063,0.3754,-0.1939,-0.9063,0.3539,-0.3805,-0.8544,0.5138,-0.3805,-0.7689,0.3754,-0.1939,-0.9063,0.5138,-0.3805,-0.7689,0.545,-0.1939,-0.8157,0.545,-0.1939,-0.8157,0.5138,-0.3805,-0.7689,0.6539,-0.3805,-0.6539,0.545,-0.1939,-0.8157,0.6539,-0.3805,-0.6539,0.6937,-0.1939,-0.6937,0.6937,-0.1939,-0.6937,0.6539,-0.3805,-0.6539,0.7689,-0.3805,-0.5138,0.6937,-0.1939,-0.6937,0.7689,-0.3805,-0.5138,0.8157,-0.1939,-0.545,0.8157,-0.1939,-0.545,0.7689,-0.3805,-0.5138,0.8544,-0.3805,-0.3539,0.8157,-0.1939,-0.545,0.8544,-0.3805,-0.3539,0.9063,-0.1939,-0.3754,0.9063,-0.1939,-0.3754,0.8544,-0.3805,-0.3539,0.907,-0.3805,-0.1804,0.9063,-0.1939,-0.3754,0.907,-0.3805,-0.1804,0.9622,-0.1939,-0.1914,0.9622,-0.1939,-0.1914,0.907,-0.3805,-0.1804,0.9248,-0.3805,0.0,0.9622,-0.1939,-0.1914,0.9248,-0.3805,0.0,0.981,-0.1939,0.0,0.981,-0.1939,0.0,0.9248,-0.3805,0.0,0.907,-0.3805,0.1804,0.981,-0.1939,0.0,0.907,-0.3805,0.1804,0.9622,-0.1939,0.1914,0.9622,-0.1939,0.1914,0.907,-0.3805,0.1804,0.8544,-0.3805,0.3539,0.9622,-0.1939,0.1914,0.8544,-0.3805,0.3539,0.9063,-0.1939,0.3754,0.9063,-0.1939,0.3754,0.8544,-0.3805,0.3539,0.7689,-0.3805,0.5138,0.9063,-0.1939,0.3754,0.7689,-0.3805,0.5138,0.8157,-0.1939,0.545,0.8157,-0.1939,0.545,0.7689,-0.3805,0.5138,0.6539,-0.3805,0.6539,0.8157,-0.1939,0.545,0.6539,-0.3805,0.6539,0.6937,-0.1939,0.6937,0.6937,-0.1939,0.6937,0.6539,-0.3805,0.6539,0.5138,-0.3805,0.7689,0.6937,-0.1939,0.6937,0.5138,-0.3805,0.7689,0.545,-0.1939,0.8157,0.545,-0.1939,0.8157,0.5138,-0.3805,0.7689,0.3539,-0.3805,0.8544,0.545,-0.1939,0.8157,0.3539,-0.3805,0.8544,0.3754,-0.1939,0.9063,0.3754,-0.1939,0.9063,0.3539,-0.3805,0.8544,0.1804,-0.3805,0.907,0.3754,-0.1939,0.9063,0.1804,-0.3805,0.907,0.1914,-0.1939,0.9622,0.1914,-0.1939,0.9622,0.1804,-0.3805,0.907,0.0,-0.3805,0.9248,0.1914,-0.1939,0.9622,0.0,-0.3805,0.9248,0.0,-0.1939,0.981,0.0,-0.3805,0.9248,0.0,-0.5528,0.8333,-0.1626,-0.5528,0.8173,0.0,-0.3805,0.9248,-0.1626,-0.5528,0.8173,-0.1804,-0.3805,0.907,-0.1804,-0.3805,0.907,-0.1626,-0.5528,0.8173,-0.3189,-0.5528,0.7699,-0.1804,-0.3805,0.907,-0.3189,-0.5528,0.7699,-0.3539,-0.3805,0.8544,-0.3539,-0.3805,0.8544,-0.3189,-0.5528,0.7699,-0.463,-0.5528,0.6929,-0.3539,-0.3805,0.8544,-0.463,-0.5528,0.6929,-0.5138,-0.3805,0.7689,-0.5138,-0.3805,0.7689,-0.463,-0.5528,0.6929,-0.5893,-0.5528,0.5893,-0.5138,-0.3805,0.7689,-0.5893,-0.5528,0.5893,-0.6539,-0.3805,0.6539,-0.6539,-0.3805,0.6539,-0.5893,-0.5528,0.5893,-0.6929,-0.5528,0.463,-0.6539,-0.3805,0.6539,-0.6929,-0.5528,0.463,-0.7689,-0.3805,0.5138,-0.7689,-0.3805,0.5138,-0.6929,-0.5528,0.463,-0.7699,-0.5528,0.3189,-0.7689,-0.3805,0.5138,-0.7699,-0.5528,0.3189,-0.8544,-0.3805,0.3539,-0.8544,-0.3805,0.3539,-0.7699,-0.5528,0.3189,-0.8173,-0.5528,0.1626,-0.8544,-0.3805,0.3539,-0.8173,-0.5528,0.1626,-0.907,-0.3805,0.1804,-0.907,-0.3805,0.1804,-0.8173,-0.5528,0.1626,-0.8333,-0.5528,0.0,-0.907,-0.3805,0.1804,-0.8333,-0.5528,0.0,-0.9248,-0.3805,0.0,-0.9248,-0.3805,0.0,-0.8333,-0.5528,0.0,-0.8173,-0.5528,-0.1626,-0.9248,-0.3805,0.0,-0.8173,-0.5528,-0.1626,-0.907,-0.3805,-0.1804,-0.907,-0.3805,-0.1804,-0.8173,-0.5528,-0.1626,-0.7699,-0.5528,-0.3189,-0.907,-0.3805,-0.1804,-0.7699,-0.5528,-0.3189,-0.8544,-0.3805,-0.3539,-0.8544,-0.3805,-0.3539,-0.7699,-0.5528,-0.3189,-0.6929,-0.5528,-0.463,-0.8544,-0.3805,-0.3539,-0.6929,-0.5528,-0.463,-0.7689,-0.3805,-0.5138,-0.7689,-0.3805,-0.5138,-0.6929,-0.5528,-0.463,-0.5893,-0.5528,-0.5893,-0.7689,-0.3805,-0.5138,-0.5893,-0.5528,-0.5893,-0.6539,-0.3805,-0.6539,-0.6539,-0.3805,-0.6539,-0.5893,-0.5528,-0.5893,-0.463,-0.5528,-0.6929,-0.6539,-0.3805,-0.6539,-0.463,-0.5528,-0.6929,-0.5138,-0.3805,-0.7689,-0.5138,-0.3805,-0.7689,-0.463,-0.5528,-0.6929,-0.3189,-0.5528,-0.7699,-0.5138,-0.3805,-0.7689,-0.3189,-0.5528,-0.7699,-0.3539,-0.3805,-0.8544,-0.3539,-0.3805,-0.8544,-0.3189,-0.5528,-0.7699,-0.1626,-0.5528,-0.8173,-0.3539,-0.3805,-0.8544,-0.1626,-0.5528,-0.8173,-0.1804,-0.3805,-0.907,-0.1804,-0.3805,-0.907,-0.1626,-0.5528,-0.8173,0.0,-0.5528,-0.8333,-0.1804,-0.3805,-0.907,0.0,-0.5528,-0.8333,0.0,-0.3805,-0.9248,0.0,-0.3805,-0.9248,0.0,-0.5528,-0.8333,0.1626,-0.5528,-0.8173,0.0,-0.3805,-0.9248,0.1626,-0.5528,-0.8173,0.1804,-0.3805,-0.907,0.1804,-0.3805,-0.907,0.1626,-0.5528,-0.8173,0.3189,-0.5528,-0.7699,0.1804,-0.3805,-0.907,0.3189,-0.5528,-0.7699,0.3539,-0.3805,-0.8544,0.3539,-0.3805,-0.8544,0.3189,-0.5528,-0.7699,0.463,-0.5528,-0.6929,0.3539,-0.3805,-0.8544,0.463,-0.5528,-0.6929,0.5138,-0.3805,-0.7689,0.5138,-0.3805,-0.7689,0.463,-0.5528,-0.6929,0.5893,-0.5528,-0.5893,0.5138,-0.3805,-0.7689,0.5893,-0.5528,-0.5893,0.6539,-0.3805,-0.6539,0.6539,-0.3805,-0.6539,0.5893,-0.5528,-0.5893,0.6929,-0.5528,-0.463,0.6539,-0.3805,-0.6539,0.6929,-0.5528,-0.463,0.7689,-0.3805,-0.5138,0.7689,-0.3805,-0.5138,0.6929,-0.5528,-0.463,0.7699,-0.5528,-0.3189,0.7689,-0.3805,-0.5138,0.7699,-0.5528,-0.3189,0.8544,-0.3805,-0.3539,0.8544,-0.3805,-0.3539,0.7699,-0.5528,-0.3189,0.8173,-0.5528,-0.1626,0.8544,-0.3805,-0.3539,0.8173,-0.5528,-0.1626,0.907,-0.3805,-0.1804,0.907,-0.3805,-0.1804,0.8173,-0.5528,-0.1626,0.8333,-0.5528,0.0,0.907,-0.3805,-0.1804,0.8333,-0.5528,0.0,0.9248,-0.3805,0.0,0.9248,-0.3805,0.0,0.8333,-0.5528,0.0,0.8173,-0.5528,0.1626,0.9248,-0.3805,0.0,0.8173,-0.5528,0.1626,0.907,-0.3805,0.1804,0.907,-0.3805,0.1804,0.8173,-0.5528,0.1626,0.7699,-0.5528,0.3189,0.907,-0.3805,0.1804,0.7699,-0.5528,0.3189,0.8544,-0.3805,0.3539,0.8544,-0.3805,0.3539,0.7699,-0.5528,0.3189,0.6929,-0.5528,0.463,0.8544,-0.3805,0.3539,0.6929,-0.5528,0.463,0.7689,-0.3805,0.5138,0.7689,-0.3805,0.5138,0.6929,-0.5528,0.463,0.5893,-0.5528,0.5893,0.7689,-0.3805,0.5138,0.5893,-0.5528,0.5893,0.6539,-0.3805,0.6539,0.6539,-0.3805,0.6539,0.5893,-0.5528,0.5893,0.463,-0.5528,0.6929,0.6539,-0.3805,0.6539,0.463,-0.5528,0.6929,0.5138,-0.3805,0.7689,0.5138,-0.3805,0.7689,0.463,-0.5528,0.6929,0.3189,-0.5528,0.7699,0.5138,-0.3805,0.7689,0.3189,-0.5528,0.7699,0.3539,-0.3805,0.8544,0.3539,-0.3805,0.8544,0.3189,-0.5528,0.7699,0.1626,-0.5528,0.8173,0.3539,-0.3805,0.8544,0.1626,-0.5528,0.8173,0.1804,-0.3805,0.907,0.1804,-0.3805,0.907,0.1626,-0.5528,0.8173,0.0,-0.5528,0.8333,0.1804,-0.3805,0.907,0.0,-0.5528,0.8333,0.0,-0.3805,0.9248,0.0,-0.5528,0.8333,0.0,-0.7041,0.7101,-0.1385,-0.7041,0.6965,0.0,-0.5528,0.8333,-0.1385,-0.7041,0.6965,-0.1626,-0.5528,0.8173,-0.1626,-0.5528,0.8173,-0.1385,-0.7041,0.6965,-0.2718,-0.7041,0.6561,-0.1626,-0.5528,0.8173,-0.2718,-0.7041,0.6561,-0.3189,-0.5528,0.7699,-0.3189,-0.5528,0.7699,-0.2718,-0.7041,0.6561,-0.3945,-0.7041,0.5905,-0.3189,-0.5528,0.7699,-0.3945,-0.7041,0.5905,-0.463,-0.5528,0.6929,-0.463,-0.5528,0.6929,-0.3945,-0.7041,0.5905,-0.5021,-0.7041,0.5021,-0.463,-0.5528,0.6929,-0.5021,-0.7041,0.5021,-0.5893,-0.5528,0.5893,-0.5893,-0.5528,0.5893,-0.5021,-0.7041,0.5021,-0.5905,-0.7041,0.3945,-0.5893,-0.5528,0.5893,-0.5905,-0.7041,0.3945,-0.6929,-0.5528,0.463,-0.6929,-0.5528,0.463,-0.5905,-0.7041,0.3945,-0.6561,-0.7041,0.2718,-0.6929,-0.5528,0.463,-0.6561,-0.7041,0.2718,-0.7699,-0.5528,0.3189,-0.7699,-0.5528,0.3189,-0.6561,-0.7041,0.2718,-0.6965,-0.7041,0.1385,-0.7699,-0.5528,0.3189,-0.6965,-0.7041,0.1385,-0.8173,-0.5528,0.1626,-0.8173,-0.5528,0.1626,-0.6965,-0.7041,0.1385,-0.7101,-0.7041,0.0,-0.8173,-0.5528,0.1626,-0.7101,-0.7041,0.0,-0.8333,-0.5528,0.0,-0.8333,-0.5528,0.0,-0.7101,-0.7041,0.0,-0.6965,-0.7041,-0.1385,-0.8333,-0.5528,0.0,-0.6965,-0.7041,-0.1385,-0.8173,-0.5528,-0.1626,-0.8173,-0.5528,-0.1626,-0.6965,-0.7041,-0.1385,-0.6561,-0.7041,-0.2718,-0.8173,-0.5528,-0.1626,-0.6561,-0.7041,-0.2718,-0.7699,-0.5528,-0.3189,-0.7699,-0.5528,-0.3189,-0.6561,-0.7041,-0.2718,-0.5905,-0.7041,-0.3945,-0.7699,-0.5528,-0.3189,-0.5905,-0.7041,-0.3945,-0.6929,-0.5528,-0.463,-0.6929,-0.5528,-0.463,-0.5905,-0.7041,-0.3945,-0.5021,-0.7041,-0.5021,-0.6929,-0.5528,-0.463,-0.5021,-0.7041,-0.5021,-0.5893,-0.5528,-0.5893,-0.5893,-0.5528,-0.5893,-0.5021,-0.7041,-0.5021,-0.3945,-0.7041,-0.5905,-0.5893,-0.5528,-0.5893,-0.3945,-0.7041,-0.5905,-0.463,-0.5528,-0.6929,-0.463,-0.5528,-0.6929,-0.3945,-0.7041,-0.5905,-0.2718,-0.7041,-0.6561,-0.463,-0.5528,-0.6929,-0.2718,-0.7041,-0.6561,-0.3189,-0.5528,-0.7699,-0.3189,-0.5528,-0.7699,-0.2718,-0.7041,-0.6561,-0.1385,-0.7041,-0.6965,-0.3189,-0.5528,-0.7699,-0.1385,-0.7041,-0.6965,-0.1626,-0.5528,-0.8173,-0.1626,-0.5528,-0.8173,-0.1385,-0.7041,-0.6965,0.0,-0.7041,-0.7101,-0.1626,-0.5528,-0.8173,0.0,-0.7041,-0.7101,0.0,-0.5528,-0.8333,0.0,-0.5528,-0.8333,0.0,-0.7041,-0.7101,0.1385,-0.7041,-0.6965,0.0,-0.5528,-0.8333,0.1385,-0.7041,-0.6965,0.1626,-0.5528,-0.8173,0.1626,-0.5528,-0.8173,0.1385,-0.7041,-0.6965,0.2718,-0.7041,-0.6561,0.1626,-0.5528,-0.8173,0.2718,-0.7041,-0.6561,0.3189,-0.5528,-0.7699,0.3189,-0.5528,-0.7699,0.2718,-0.7041,-0.6561,0.3945,-0.7041,-0.5905,0.3189,-0.5528,-0.7699,0.3945,-0.7041,-0.5905,0.463,-0.5528,-0.6929,0.463,-0.5528,-0.6929,0.3945,-0.7041,-0.5905,0.5021,-0.7041,-0.5021,0.463,-0.5528,-0.6929,0.5021,-0.7041,-0.5021,0.5893,-0.5528,-0.5893,0.5893,-0.5528,-0.5893,0.5021,-0.7041,-0.5021,0.5905,-0.7041,-0.3945,0.5893,-0.5528,-0.5893,0.5905,-0.7041,-0.3945,0.6929,-0.5528,-0.463,0.6929,-0.5528,-0.463,0.5905,-0.7041,-0.3945,0.6561,-0.7041,-0.2718,0.6929,-0.5528,-0.463,0.6561,-0.7041,-0.2718,0.7699,-0.5528,-0.3189,0.7699,-0.5528,-0.3189,0.6561,-0.7041,-0.2718,0.6965,-0.7041,-0.1385,0.7699,-0.5528,-0.3189,0.6965,-0.7041,-0.1385,0.8173,-0.5528,-0.1626,0.8173,-0.5528,-0.1626,0.6965,-0.7041,-0.1385,0.7101,-0.7041,0.0,0.8173,-0.5528,-0.1626,0.7101,-0.7041,0.0,0.8333,-0.5528,0.0,0.8333,-0.5528,0.0,0.7101,-0.7041,0.0,0.6965,-0.7041,0.1385,0.8333,-0.5528,0.0,0.6965,-0.7041,0.1385,0.8173,-0.5528,0.1626,0.8173,-0.5528,0.1626,0.6965,-0.7041,0.1385,0.6561,-0.7041,0.2718,0.8173,-0.5528,0.1626,0.6561,-0.7041,0.2718,0.7699,-0.5528,0.3189,0.7699,-0.5528,0.3189,0.6561,-0.7041,0.2718,0.5905,-0.7041,0.3945,0.7699,-0.5528,0.3189,0.5905,-0.7041,0.3945,0.6929,-0.5528,0.463,0.6929,-0.5528,0.463,0.5905,-0.7041,0.3945,0.5021,-0.7041,0.5021,0.6929,-0.5528,0.463,0.5021,-0.7041,0.5021,0.5893,-0.5528,0.5893,0.5893,-0.5528,0.5893,0.5021,-0.7041,0.5021,0.3945,-0.7041,0.5905,0.5893,-0.5528,0.5893,0.3945,-0.7041,0.5905,0.463,-0.5528,0.6929,0.463,-0.5528,0.6929,0.3945,-0.7041,0.5905,0.2718,-0.7041,0.6561,0.463,-0.5528,0.6929,0.2718,-0.7041,0.6561,0.3189,-0.5528,0.7699,0.3189,-0.5528,0.7699,0.2718,-0.7041,0.6561,0.1385,-0.7041,0.6965,0.3189,-0.5528,0.7699,0.1385,-0.7041,0.6965,0.1626,-0.5528,0.8173,0.1626,-0.5528,0.8173,0.1385,-0.7041,0.6965,0.0,-0.7041,0.7101,0.1626,-0.5528,0.8173,0.0,-0.7041,0.7101,0.0,-0.5528,0.8333,0.0,-0.7041,0.7101,0.0,-0.8286,0.5598,-0.1092,-0.8286,0.549,0.0,-0.7041,0.7101,-0.1092,-0.8286,0.549,-0.1385,-0.7041,0.6965,-0.1385,-0.7041,0.6965,-0.1092,-0.8286,0.549,-0.2142,-0.8286,0.5172,-0.1385,-0.7041,0.6965,-0.2142,-0.8286,0.5172,-0.2718,-0.7041,0.6561,-0.2718,-0.7041,0.6561,-0.2142,-0.8286,0.5172,-0.311,-0.8286,0.4654,-0.2718,-0.7041,0.6561,-0.311,-0.8286,0.4654,-0.3945,-0.7041,0.5905,-0.3945,-0.7041,0.5905,-0.311,-0.8286,0.4654,-0.3958,-0.8286,0.3958,-0.3945,-0.7041,0.5905,-0.3958,-0.8286,0.3958,-0.5021,-0.7041,0.5021,-0.5021,-0.7041,0.5021,-0.3958,-0.8286,0.3958,-0.4654,-0.8286,0.311,-0.5021,-0.7041,0.5021,-0.4654,-0.8286,0.311,-0.5905,-0.7041,0.3945,-0.5905,-0.7041,0.3945,-0.4654,-0.8286,0.311,-0.5172,-0.8286,0.2142,-0.5905,-0.7041,0.3945,-0.5172,-0.8286,0.2142,-0.6561,-0.7041,0.2718,-0.6561,-0.7041,0.2718,-0.5172,-0.8286,0.2142,-0.549,-0.8286,0.1092,-0.6561,-0.7041,0.2718,-0.549,-0.8286,0.1092,-0.6965,-0.7041,0.1385,-0.6965,-0.7041,0.1385,-0.549,-0.8286,0.1092,-0.5598,-0.8286,0.0,-0.6965,-0.7041,0.1385,-0.5598,-0.8286,0.0,-0.7101,-0.7041,0.0,-0.7101,-0.7041,0.0,-0.5598,-0.8286,0.0,-0.549,-0.8286,-0.1092,-0.7101,-0.7041,0.0,-0.549,-0.8286,-0.1092,-0.6965,-0.7041,-0.1385,-0.6965,-0.7041,-0.1385,-0.549,-0.8286,-0.1092,-0.5172,-0.8286,-0.2142,-0.6965,-0.7041,-0.1385,-0.5172,-0.8286,-0.2142,-0.6561,-0.7041,-0.2718,-0.6561,-0.7041,-0.2718,-0.5172,-0.8286,-0.2142,-0.4654,-0.8286,-0.311,-0.6561,-0.7041,-0.2718,-0.4654,-0.8286,-0.311,-0.5905,-0.7041,-0.3945,-0.5905,-0.7041,-0.3945,-0.4654,-0.8286,-0.311,-0.3958,-0.8286,-0.3958,-0.5905,-0.7041,-0.3945,-0.3958,-0.8286,-0.3958,-0.5021,-0.7041,-0.5021,-0.5021,-0.7041,-0.5021,-0.3958,-0.8286,-0.3958,-0.311,-0.8286,-0.4654,-0.5021,-0.7041,-0.5021,-0.311,-0.8286,-0.4654,-0.3945,-0.7041,-0.5905,-0.3945,-0.7041,-0.5905,-0.311,-0.8286,-0.4654,-0.2142,-0.8286,-0.5172,-0.3945,-0.7041,-0.5905,-0.2142,-0.8286,-0.5172,-0.2718,-0.7041,-0.6561,-0.2718,-0.7041,-0.6561,-0.2142,-0.8286,-0.5172,-0.1092,-0.8286,-0.549,-0.2718,-0.7041,-0.6561,-0.1092,-0.8286,-0.549,-0.1385,-0.7041,-0.6965,-0.1385,-0.7041,-0.6965,-0.1092,-0.8286,-0.549,0.0,-0.8286,-0.5598,-0.1385,-0.7041,-0.6965,0.0,-0.8286,-0.5598,0.0,-0.7041,-0.7101,0.0,-0.7041,-0.7101,0.0,-0.8286,-0.5598,0.1092,-0.8286,-0.549,0.0,-0.7041,-0.7101,0.1092,-0.8286,-0.549,0.1385,-0.7041,-0.6965,0.1385,-0.7041,-0.6965,0.1092,-0.8286,-0.549,0.2142,-0.8286,-0.5172,0.1385,-0.7041,-0.6965,0.2142,-0.8286,-0.5172,0.2718,-0.7041,-0.6561,0.2718,-0.7041,-0.6561,0.2142,-0.8286,-0.5172,0.311,-0.8286,-0.4654,0.2718,-0.7041,-0.6561,0.311,-0.8286,-0.4654,0.3945,-0.7041,-0.5905,0.3945,-0.7041,-0.5905,0.311,-0.8286,-0.4654,0.3958,-0.8286,-0.3958,0.3945,-0.7041,-0.5905,0.3958,-0.8286,-0.3958,0.5021,-0.7041,-0.5021,0.5021,-0.7041,-0.5021,0.3958,-0.8286,-0.3958,0.4654,-0.8286,-0.311,0.5021,-0.7041,-0.5021,0.4654,-0.8286,-0.311,0.5905,-0.7041,-0.3945,0.5905,-0.7041,-0.3945,0.4654,-0.8286,-0.311,0.5172,-0.8286,-0.2142,0.5905,-0.7041,-0.3945,0.5172,-0.8286,-0.2142,0.6561,-0.7041,-0.2718,0.6561,-0.7041,-0.2718,0.5172,-0.8286,-0.2142,0.549,-0.8286,-0.1092,0.6561,-0.7041,-0.2718,0.549,-0.8286,-0.1092,0.6965,-0.7041,-0.1385,0.6965,-0.7041,-0.1385,0.549,-0.8286,-0.1092,0.5598,-0.8286,0.0,0.6965,-0.7041,-0.1385,0.5598,-0.8286,0.0,0.7101,-0.7041,0.0,0.7101,-0.7041,0.0,0.5598,-0.8286,0.0,0.549,-0.8286,0.1092,0.7101,-0.7041,0.0,0.549,-0.8286,0.1092,0.6965,-0.7041,0.1385,0.6965,-0.7041,0.1385,0.549,-0.8286,0.1092,0.5172,-0.8286,0.2142,0.6965,-0.7041,0.1385,0.5172,-0.8286,0.2142,0.6561,-0.7041,0.2718,0.6561,-0.7041,0.2718,0.5172,-0.8286,0.2142,0.4654,-0.8286,0.311,0.6561,-0.7041,0.2718,0.4654,-0.8286,0.311,0.5905,-0.7041,0.3945,0.5905,-0.7041,0.3945,0.4654,-0.8286,0.311,0.3958,-0.8286,0.3958,0.5905,-0.7041,0.3945,0.3958,-0.8286,0.3958,0.5021,-0.7041,0.5021,0.5021,-0.7041,0.5021,0.3958,-0.8286,0.3958,0.311,-0.8286,0.4654,0.5021,-0.7041,0.5021,0.311,-0.8286,0.4654,0.3945,-0.7041,0.5905,0.3945,-0.7041,0.5905,0.311,-0.8286,0.4654,0.2142,-0.8286,0.5172,0.3945,-0.7041,0.5905,0.2142,-0.8286,0.5172,0.2718,-0.7041,0.6561,0.2718,-0.7041,0.6561,0.2142,-0.8286,0.5172,0.1092,-0.8286,0.549,0.2718,-0.7041,0.6561,0.1092,-0.8286,0.549,0.1385,-0.7041,0.6965,0.1385,-0.7041,0.6965,0.1092,-0.8286,0.549,0.0,-0.8286,0.5598,0.1385,-0.7041,0.6965,0.0,-0.8286,0.5598,0.0,-0.7041,0.7101,0.0,-0.8286,0.5598,0.0,-0.9217,0.3879,-0.0757,-0.9217,0.3804,0.0,-0.8286,0.5598,-0.0757,-0.9217,0.3804,-0.1092,-0.8286,0.549,-0.1092,-0.8286,0.549,-0.0757,-0.9217,0.3804,-0.1484,-0.9217,0.3584,-0.1092,-0.8286,0.549,-0.1484,-0.9217,0.3584,-0.2142,-0.8286,0.5172,-0.2142,-0.8286,0.5172,-0.1484,-0.9217,0.3584,-0.2155,-0.9217,0.3225,-0.2142,-0.8286,0.5172,-0.2155,-0.9217,0.3225,-0.311,-0.8286,0.4654,-0.311,-0.8286,0.4654,-0.2155,-0.9217,0.3225,-0.2743,-0.9217,0.2743,-0.311,-0.8286,0.4654,-0.2743,-0.9217,0.2743,-0.3958,-0.8286,0.3958,-0.3958,-0.8286,0.3958,-0.2743,-0.9217,0.2743,-0.3225,-0.9217,0.2155,-0.3958,-0.8286,0.3958,-0.3225,-0.9217,0.2155,-0.4654,-0.8286,0.311,-0.4654,-0.8286,0.311,-0.3225,-0.9217,0.2155,-0.3584,-0.9217,0.1484,-0.4654,-0.8286,0.311,-0.3584,-0.9217,0.1484,-0.5172,-0.8286,0.2142,-0.5172,-0.8286,0.2142,-0.3584,-0.9217,0.1484,-0.3804,-0.9217,0.0757,-0.5172,-0.8286,0.2142,-0.3804,-0.9217,0.0757,-0.549,-0.8286,0.1092,-0.549,-0.8286,0.1092,-0.3804,-0.9217,0.0757,-0.3879,-0.9217,0.0,-0.549,-0.8286,0.1092,-0.3879,-0.9217,0.0,-0.5598,-0.8286,0.0,-0.5598,-0.8286,0.0,-0.3879,-0.9217,0.0,-0.3804,-0.9217,-0.0757,-0.5598,-0.8286,0.0,-0.3804,-0.9217,-0.0757,-0.549,-0.8286,-0.1092,-0.549,-0.8286,-0.1092,-0.3804,-0.9217,-0.0757,-0.3584,-0.9217,-0.1484,-0.549,-0.8286,-0.1092,-0.3584,-0.9217,-0.1484,-0.5172,-0.8286,-0.2142,-0.5172,-0.8286,-0.2142,-0.3584,-0.9217,-0.1484,-0.3225,-0.9217,-0.2155,-0.5172,-0.8286,-0.2142,-0.3225,-0.9217,-0.2155,-0.4654,-0.8286,-0.311,-0.4654,-0.8286,-0.311,-0.3225,-0.9217,-0.2155,-0.2743,-0.9217,-0.2743,-0.4654,-0.8286,-0.311,-0.2743,-0.9217,-0.2743,-0.3958,-0.8286,-0.3958,-0.3958,-0.8286,-0.3958,-0.2743,-0.9217,-0.2743,-0.2155,-0.9217,-0.3225,-0.3958,-0.8286,-0.3958,-0.2155,-0.9217,-0.3225,-0.311,-0.8286,-0.4654,-0.311,-0.8286,-0.4654,-0.2155,-0.9217,-0.3225,-0.1484,-0.9217,-0.3584,-0.311,-0.8286,-0.4654,-0.1484,-0.9217,-0.3584,-0.2142,-0.8286,-0.5172,-0.2142,-0.8286,-0.5172,-0.1484,-0.9217,-0.3584,-0.0757,-0.9217,-0.3804,-0.2142,-0.8286,-0.5172,-0.0757,-0.9217,-0.3804,-0.1092,-0.8286,-0.549,-0.1092,-0.8286,-0.549,-0.0757,-0.9217,-0.3804,0.0,-0.9217,-0.3879,-0.1092,-0.8286,-0.549,0.0,-0.9217,-0.3879,0.0,-0.8286,-0.5598,0.0,-0.8286,-0.5598,0.0,-0.9217,-0.3879,0.0757,-0.9217,-0.3804,0.0,-0.8286,-0.5598,0.0757,-0.9217,-0.3804,0.1092,-0.8286,-0.549,0.1092,-0.8286,-0.549,0.0757,-0.9217,-0.3804,0.1484,-0.9217,-0.3584,0.1092,-0.8286,-0.549,0.1484,-0.9217,-0.3584,0.2142,-0.8286,-0.5172,0.2142,-0.8286,-0.5172,0.1484,-0.9217,-0.3584,0.2155,-0.9217,-0.3225,0.2142,-0.8286,-0.5172,0.2155,-0.9217,-0.3225,0.311,-0.8286,-0.4654,0.311,-0.8286,-0.4654,0.2155,-0.9217,-0.3225,0.2743,-0.9217,-0.2743,0.311,-0.8286,-0.4654,0.2743,-0.9217,-0.2743,0.3958,-0.8286,-0.3958,0.3958,-0.8286,-0.3958,0.2743,-0.9217,-0.2743,0.3225,-0.9217,-0.2155,0.3958,-0.8286,-0.3958,0.3225,-0.9217,-0.2155,0.4654,-0.8286,-0.311,0.4654,-0.8286,-0.311,0.3225,-0.9217,-0.2155,0.3584,-0.9217,-0.1484,0.4654,-0.8286,-0.311,0.3584,-0.9217,-0.1484,0.5172,-0.8286,-0.2142,0.5172,-0.8286,-0.2142,0.3584,-0.9217,-0.1484,0.3804,-0.9217,-0.0757,0.5172,-0.8286,-0.2142,0.3804,-0.9217,-0.0757,0.549,-0.8286,-0.1092,0.549,-0.8286,-0.1092,0.3804,-0.9217,-0.0757,0.3879,-0.9217,0.0,0.549,-0.8286,-0.1092,0.3879,-0.9217,0.0,0.5598,-0.8286,0.0,0.5598,-0.8286,0.0,0.3879,-0.9217,0.0,0.3804,-0.9217,0.0757,0.5598,-0.8286,0.0,0.3804,-0.9217,0.0757,0.549,-0.8286,0.1092,0.549,-0.8286,0.1092,0.3804,-0.9217,0.0757,0.3584,-0.9217,0.1484,0.549,-0.8286,0.1092,0.3584,-0.9217,0.1484,0.5172,-0.8286,0.2142,0.5172,-0.8286,0.2142,0.3584,-0.9217,0.1484,0.3225,-0.9217,0.2155,0.5172,-0.8286,0.2142,0.3225,-0.9217,0.2155,0.4654,-0.8286,0.311,0.4654,-0.8286,0.311,0.3225,-0.9217,0.2155,0.2743,-0.9217,0.2743,0.4654,-0.8286,0.311,0.2743,-0.9217,0.2743,0.3958,-0.8286,0.3958,0.3958,-0.8286,0.3958,0.2743,-0.9217,0.2743,0.2155,-0.9217,0.3225,0.3958,-0.8286,0.3958,0.2155,-0.9217,0.3225,0.311,-0.8286,0.4654,0.311,-0.8286,0.4654,0.2155,-0.9217,0.3225,0.1484,-0.9217,0.3584,0.311,-0.8286,0.4654,0.1484,-0.9217,0.3584,0.2142,-0.8286,0.5172,0.2142,-0.8286,0.5172,0.1484,-0.9217,0.3584,0.0757,-0.9217,0.3804,0.2142,-0.8286,0.5172,0.0757,-0.9217,0.3804,0.1092,-0.8286,0.549,0.1092,-0.8286,0.549,0.0757,-0.9217,0.3804,0.0,-0.9217,0.3879,0.1092,-0.8286,0.549,0.0,-0.9217,0.3879,0.0,-0.8286,0.5598,0.0,-0.9217,0.3879,0.0,-0.9796,0.201,-0.0392,-0.9796,0.1971,0.0,-0.9217,0.3879,-0.0392,-0.9796,0.1971,-0.0757,-0.9217,0.3804,-0.0757,-0.9217,0.3804,-0.0392,-0.9796,0.1971,-0.0769,-0.9796,0.1857,-0.0757,-0.9217,0.3804,-0.0769,-0.9796,0.1857,-0.1484,-0.9217,0.3584,-0.1484,-0.9217,0.3584,-0.0769,-0.9796,0.1857,-0.1117,-0.9796,0.1671,-0.1484,-0.9217,0.3584,-0.1117,-0.9796,0.1671,-0.2155,-0.9217,0.3225,-0.2155,-0.9217,0.3225,-0.1117,-0.9796,0.1671,-0.1421,-0.9796,0.1421,-0.2155,-0.9217,0.3225,-0.1421,-0.9796,0.1421,-0.2743,-0.9217,0.2743,-0.2743,-0.9217,0.2743,-0.1421,-0.9796,0.1421,-0.1671,-0.9796,0.1117,-0.2743,-0.9217,0.2743,-0.1671,-0.9796,0.1117,-0.3225,-0.9217,0.2155,-0.3225,-0.9217,0.2155,-0.1671,-0.9796,0.1117,-0.1857,-0.9796,0.0769,-0.3225,-0.9217,0.2155,-0.1857,-0.9796,0.0769,-0.3584,-0.9217,0.1484,-0.3584,-0.9217,0.1484,-0.1857,-0.9796,0.0769,-0.1971,-0.9796,0.0392,-0.3584,-0.9217,0.1484,-0.1971,-0.9796,0.0392,-0.3804,-0.9217,0.0757,-0.3804,-0.9217,0.0757,-0.1971,-0.9796,0.0392,-0.201,-0.9796,0.0,-0.3804,-0.9217,0.0757,-0.201,-0.9796,0.0,-0.3879,-0.9217,0.0,-0.3879,-0.9217,0.0,-0.201,-0.9796,0.0,-0.1971,-0.9796,-0.0392,-0.3879,-0.9217,0.0,-0.1971,-0.9796,-0.0392,-0.3804,-0.9217,-0.0757,-0.3804,-0.9217,-0.0757,-0.1971,-0.9796,-0.0392,-0.1857,-0.9796,-0.0769,-0.3804,-0.9217,-0.0757,-0.1857,-0.9796,-0.0769,-0.3584,-0.9217,-0.1484,-0.3584,-0.9217,-0.1484,-0.1857,-0.9796,-0.0769,-0.1671,-0.9796,-0.1117,-0.3584,-0.9217,-0.1484,-0.1671,-0.9796,-0.1117,-0.3225,-0.9217,-0.2155,-0.3225,-0.9217,-0.2155,-0.1671,-0.9796,-0.1117,-0.1421,-0.9796,-0.1421,-0.3225,-0.9217,-0.2155,-0.1421,-0.9796,-0.1421,-0.2743,-0.9217,-0.2743,-0.2743,-0.9217,-0.2743,-0.1421,-0.9796,-0.1421,-0.1117,-0.9796,-0.1671,-0.2743,-0.9217,-0.2743,-0.1117,-0.9796,-0.1671,-0.2155,-0.9217,-0.3225,-0.2155,-0.9217,-0.3225,-0.1117,-0.9796,-0.1671,-0.0769,-0.9796,-0.1857,-0.2155,-0.9217,-0.3225,-0.0769,-0.9796,-0.1857,-0.1484,-0.9217,-0.3584,-0.1484,-0.9217,-0.3584,-0.0769,-0.9796,-0.1857,-0.0392,-0.9796,-0.1971,-0.1484,-0.9217,-0.3584,-0.0392,-0.9796,-0.1971,-0.0757,-0.9217,-0.3804,-0.0757,-0.9217,-0.3804,-0.0392,-0.9796,-0.1971,0.0,-0.9796,-0.201,-0.0757,-0.9217,-0.3804,0.0,-0.9796,-0.201,0.0,-0.9217,-0.3879,0.0,-0.9217,-0.3879,0.0,-0.9796,-0.201,0.0392,-0.9796,-0.1971,0.0,-0.9217,-0.3879,0.0392,-0.9796,-0.1971,0.0757,-0.9217,-0.3804,0.0757,-0.9217,-0.3804,0.0392,-0.9796,-0.1971,0.0769,-0.9796,-0.1857,0.0757,-0.9217,-0.3804,0.0769,-0.9796,-0.1857,0.1484,-0.9217,-0.3584,0.1484,-0.9217,-0.3584,0.0769,-0.9796,-0.1857,0.1117,-0.9796,-0.1671,0.1484,-0.9217,-0.3584,0.1117,-0.9796,-0.1671,0.2155,-0.9217,-0.3225,0.2155,-0.9217,-0.3225,0.1117,-0.9796,-0.1671,0.1421,-0.9796,-0.1421,0.2155,-0.9217,-0.3225,0.1421,-0.9796,-0.1421,0.2743,-0.9217,-0.2743,0.2743,-0.9217,-0.2743,0.1421,-0.9796,-0.1421,0.1671,-0.9796,-0.1117,0.2743,-0.9217,-0.2743,0.1671,-0.9796,-0.1117,0.3225,-0.9217,-0.2155,0.3225,-0.9217,-0.2155,0.1671,-0.9796,-0.1117,0.1857,-0.9796,-0.0769,0.3225,-0.9217,-0.2155,0.1857,-0.9796,-0.0769,0.3584,-0.9217,-0.1484,0.3584,-0.9217,-0.1484,0.1857,-0.9796,-0.0769,0.1971,-0.9796,-0.0392,0.3584,-0.9217,-0.1484,0.1971,-0.9796,-0.0392,0.3804,-0.9217,-0.0757,0.3804,-0.9217,-0.0757,0.1971,-0.9796,-0.0392,0.201,-0.9796,0.0,0.3804,-0.9217,-0.0757,0.201,-0.9796,0.0,0.3879,-0.9217,0.0,0.3879,-0.9217,0.0,0.201,-0.9796,0.0,0.1971,-0.9796,0.0392,0.3879,-0.9217,0.0,0.1971,-0.9796,0.0392,0.3804,-0.9217,0.0757,0.3804,-0.9217,0.0757,0.1971,-0.9796,0.0392,0.1857,-0.9796,0.0769,0.3804,-0.9217,0.0757,0.1857,-0.9796,0.0769,0.3584,-0.9217,0.1484,0.3584,-0.9217,0.1484,0.1857,-0.9796,0.0769,0.1671,-0.9796,0.1117,0.3584,-0.9217,0.1484,0.1671,-0.9796,0.1117,0.3225,-0.9217,0.2155,0.3225,-0.9217,0.2155,0.1671,-0.9796,0.1117,0.1421,-0.9796,0.1421,0.3225,-0.9217,0.2155,0.1421,-0.9796,0.1421,0.2743,-0.9217,0.2743,0.2743,-0.9217,0.2743,0.1421,-0.9796,0.1421,0.1117,-0.9796,0.1671,0.2743,-0.9217,0.2743,0.1117,-0.9796,0.1671,0.2155,-0.9217,0.3225,0.2155,-0.9217,0.3225,0.1117,-0.9796,0.1671,0.0769,-0.9796,0.1857,0.2155,-0.9217,0.3225,0.0769,-0.9796,0.1857,0.1484,-0.9217,0.3584,0.1484,-0.9217,0.3584,0.0769,-0.9796,0.1857,0.0392,-0.9796,0.1971,0.1484,-0.9217,0.3584,0.0392,-0.9796,0.1971,0.0757,-0.9217,0.3804,0.0757,-0.9217,0.3804,0.0392,-0.9796,0.1971,0.0,-0.9796,0.201,0.0757,-0.9217,0.3804,0.0,-0.9796,0.201,0.0,-0.9217,0.3879,0.0,-1.0,0.0,-0.0392,-0.9796,0.1971,0.0,-0.9796,0.201,0.0,-1.0,0.0,-0.0769,-0.9796,0.1857,-0.0392,-0.9796,0.1971,0.0,-1.0,0.0,-0.1117,-0.9796,0.1671,-0.0769,-0.9796,0.1857,0.0,-1.0,0.0,-0.1421,-0.9796,0.1421,-0.1117,-0.9796,0.1671,0.0,-1.0,0.0,-0.1671,-0.9796,0.1117,-0.1421,-0.9796,0.1421,0.0,-1.0,0.0,-0.1857,-0.9796,0.0769,-0.1671,-0.9796,0.1117,0.0,-1.0,0.0,-0.1971,-0.9796,0.0392,-0.1857,-0.9796,0.0769,0.0,-1.0,0.0,-0.201,-0.9796,0.0,-0.1971,-0.9796,0.0392,0.0,-1.0,0.0,-0.1971,-0.9796,-0.0392,-0.201,-0.9796,0.0,0.0,-1.0,0.0,-0.1857,-0.9796,-0.0769,-0.1971,-0.9796,-0.0392,0.0,-1.0,0.0,-0.1671,-0.9796,-0.1117,-0.1857,-0.9796,-0.0769,0.0,-1.0,0.0,-0.1421,-0.9796,-0.1421,-0.1671,-0.9796,-0.1117,0.0,-1.0,0.0,-0.1117,-0.9796,-0.1671,-0.1421,-0.9796,-0.1421,0.0,-1.0,0.0,-0.0769,-0.9796,-0.1857,-0.1117,-0.9796,-0.1671,0.0,-1.0,0.0,-0.0392,-0.9796,-0.1971,-0.0769,-0.9796,-0.1857,0.0,-1.0,0.0,0.0,-0.9796,-0.201,-0.0392,-0.9796,-0.1971,0.0,-1.0,0.0,0.0392,-0.9796,-0.1971,0.0,-0.9796,-0.201,0.0,-1.0,0.0,0.0769,-0.9796,-0.1857,0.0392,-0.9796,-0.1971,0.0,-1.0,0.0,0.1117,-0.9796,-0.1671,0.0769,-0.9796,-0.1857,0.0,-1.0,0.0,0.1421,-0.9796,-0.1421,0.1117,-0.9796,-0.1671,0.0,-1.0,0.0,0.1671,-0.9796,-0.1117,0.1421,-0.9796,-0.1421,0.0,-1.0,0.0,0.1857,-0.9796,-0.0769,0.1671,-0.9796,-0.1117,0.0,-1.0,0.0,0.1971,-0.9796,-0.0392,0.1857,-0.9796,-0.0769,0.0,-1.0,0.0,0.201,-0.9796,0.0,0.1971,-0.9796,-0.0392,0.0,-1.0,0.0,0.1971,-0.9796,0.0392,0.201,-0.9796,0.0,0.0,-1.0,0.0,0.1857,-0.9796,0.0769,0.1971,-0.9796,0.0392,0.0,-1.0,0.0,0.1671,-0.9796,0.1117,0.1857,-0.9796,0.0769,0.0,-1.0,0.0,0.1421,-0.9796,0.1421,0.1671,-0.9796,0.1117,0.0,-1.0,0.0,0.1117,-0.9796,0.1671,0.1421,-0.9796,0.1421,0.0,-1.0,0.0,0.0769,-0.9796,0.1857,0.1117,-0.9796,0.1671,0.0,-1.0,0.0,0.0392,-0.9796,0.1971,0.0769,-0.9796,0.1857,0.0,-1.0,0.0,0.0,-0.9796,0.201,0.0392,-0.9796,0.1971],"tangents":null,"uvs":[0.0,2.0,0.0,1.9375,0.0312,1.9375,0.0312,2.0,0.0312,1.9375,0.0625,1.9375,0.0625,2.0,0.0625,1.9375,0.0938,1.9375,0.0938,2.0,0.0938,1.9375,0.125,1.9375,0.125,2.0,0.125,1.9375,0.1562,1.9375,0.1562,2.0,0.1562,1.9375,0.1875,1.9375,0.1875,2.0,0.1875,1.9375,0.2187,1.9375,0.2187,2.0,0.2187,1.9375,0.25,1.9375,0.25,2.0,0.25,1.9375,0.2812,1.9375,0.2812,2.0,0.2812,1.9375,0.3125,1.9375,0.3125,2.0,0.3125,1.9375,0.3437,1.9375,0.3437,2.0,0.3437,1.9375,0.375,1.9375,0.375,2.0,0.375,1.9375,0.4062,1.9375,0.4062,2.0,0.4062,1.9375,0.4375,1.9375,0.4375,2.0,0.4375,1.9375,0.4688,1.9375,0.4688,2.0,0.4688,1.9375,0.5,1.9375,0.5,2.0,0.5,1.9375,0.5313,1.9375,0.5313,2.0,0.5313,1.9375,0.5625,1.9375,0.5625,2.0,0.5625,1.9375,0.5938,1.9375,0.5938,2.0,0.5938,1.9375,0.625,1.9375,0.625,2.0,0.625,1.9375,0.6563,1.9375,0.6563,2.0,0.6563,1.9375,0.6875,1.9375,0.6875,2.0,0.6875,1.9375,0.7188,1.9375,0.7188,2.0,0.7188,1.9375,0.75,1.9375,0.75,2.0,0.75,1.9375,0.7813,1.9375,0.7813,2.0,0.7813,1.9375,0.8125,1.9375,0.8125,2.0,0.8125,1.9375,0.8438,1.9375,0.8438,2.0,0.8438,1.9375,0.875,1.9375,0.875,2.0,0.875,1.9375,0.9063,1.9375,0.9063,2.0,0.9063,1.9375,0.9375,1.9375,0.9375,2.0,0.9375,1.9375,0.9688,1.9375,0.9688,2.0,0.9688,1.9375,1.0,1.9375,0.0,1.9375,0.0,1.875,0.0312,1.875,0.0,1.9375,0.0312,1.875,0.0312,1.9375,0.0312,1.9375,0.0312,1.875,0.0625,1.875,0.0312,1.9375,0.0625,1.875,0.0625,1.9375,0.0625,1.9375,0.0625,1.875,0.0938,1.875,0.0625,1.9375,0.0938,1.875,0.0938,1.9375,0.0938,1.9375,0.0938,1.875,0.125,1.875,0.0938,1.9375,0.125,1.875,0.125,1.9375,0.125,1.9375,0.125,1.875,0.1562,1.875,0.125,1.9375,0.1562,1.875,0.1562,1.9375,0.1562,1.9375,0.1562,1.875,0.1875,1.875,0.1562,1.9375,0.1875,1.875,0.1875,1.9375,0.1875,1.9375,0.1875,1.875,0.2187,1.875,0.1875,1.9375,0.2187,1.875,0.2187,1.9375,0.2187,1.9375,0.2187,1.875,0.25,1.875,0.2187,1.9375,0.25,1.875,0.25,1.9375,0.25,1.9375,0.25,1.875,0.2812,1.875,0.25,1.9375,0.2812,1.875,0.2812,1.9375,0.2812,1.9375,0.2812,1.875,0.3125,1.875,0.2812,1.9375,0.3125,1.875,0.3125,1.9375,0.3125,1.9375,0.3125,1.875,0.3437,1.875,0.3125,1.9375,0.3437,1.875,0.3437,1.9375,0.3437,1.9375,0.3437,1.875,0.375,1.875,0.3437,1.9375,0.375,1.875,0.375,1.9375,0.375,1.9375,0.375,1.875,0.4062,1.875,0.375,1.9375,0.4062,1.875,0.4062,1.9375,0.4062,1.9375,0.4062,1.875,0.4375,1.875,0.4062,1.9375,0.4375,1.875,0.4375,1.9375,0.4375,1.9375,0.4375,1.875,0.4688,1.875,0.4375,1.9375,0.4688,1.875,0.4688,1.9375,0.4688,1.9375,0.4688,1.875,0.5,1.875,0.4688,1.9375,0.5,1.875,0.5,1.9375,0.5,1.9375,0.5,1.875,0.5313,1.875,0.5,1.9375,0.5313,1.875,0.5313,1.9375,0.5313,1.9375,0.5313,1.875,0.5625,1.875,0.5313,1.9375,0.5625,1.875,0.5625,1.9375,0.5625,1.9375,0.5625,1.875,0.5938,1.875,0.5625,1.9375,0.5938,1.875,0.5938,1.9375,0.5938,1.9375,0.5938,1.875,0.625,1.875,0.5938,1.9375,0.625,1.875,0.625,1.9375,0.625,1.9375,0.625,1.875,0.6563,1.875,0.625,1.9375,0.6563,1.875,0.6563,1.9375,0.6563,1.9375,0.6563,1.875,0.6875,1.875,0.6563,1.9375,0.6875,1.875,0.6875,1.9375,0.6875,1.9375,0.6875,1.875,0.7188,1.875,0.6875,1.9375,0.7188,1.875,0.7188,1.9375,0.7188,1.9375,0.7188,1.875,0.75,1.875,0.7188,1.9375,0.75,1.875,0.75,1.9375,0.75,1.9375,0.75,1.875,0.7813,1.875,0.75,1.9375,0.7813,1.875,0.7813,1.9375,0.7813,1.9375,0.7813,1.875,0.8125,1.875,0.7813,1.9375,0.8125,1.875,0.8125,1.9375,0.8125,1.9375,0.8125,1.875,0.8438,1.875,0.8125,1.9375,0.8438,1.875,0.8438,1.9375,0.8438,1.9375,0.8438,1.875,0.875,1.875,0.8438,1.9375,0.875,1.875,0.875,1.9375,0.875,1.9375,0.875,1.875,0.9063,1.875,0.875,1.9375,0.9063,1.875,0.9063,1.9375,0.9063,1.9375,0.9063,1.875,0.9375,1.875,0.9063,1.9375,0.9375,1.875,0.9375,1.9375,0.9375,1.9375,0.9375,1.875,0.9688,1.875,0.9375,1.9375,0.9688,1.875,0.9688,1.9375,0.9688,1.9375,0.9688,1.875,1.0,1.875,0.9688,1.9375,1.0,1.875,1.0,1.9375,0.0,1.875,0.0,1.8125,0.0312,1.8125,0.0,1.875,0.0312,1.8125,0.0312,1.875,0.0312,1.875,0.0312,1.8125,0.0625,1.8125,0.0312,1.875,0.0625,1.8125,0.0625,1.875,0.0625,1.875,0.0625,1.8125,0.0938,1.8125,0.0625,1.875,0.0938,1.8125,0.0938,1.875,0.0938,1.875,0.0938,1.8125,0.125,1.8125,0.0938,1.875,0.125,1.8125,0.125,1.875,0.125,1.875,0.125,1.8125,0.1562,1.8125,0.125,1.875,0.1562,1.8125,0.1562,1.875,0.1562,1.875,0.1562,1.8125,0.1875,1.8125,0.1562,1.875,0.1875,1.8125,0.1875,1.875,0.1875,1.875,0.1875,1.8125,0.2187,1.8125,0.1875,1.875,0.2187,1.8125,0.2187,1.875,0.2187,1.875,0.2187,1.8125,0.25,1.8125,0.2187,1.875,0.25,1.8125,0.25,1.875,0.25,1.875,0.25,1.8125,0.2812,1.8125,0.25,1.875,0.2812,1.8125,0.2812,1.875,0.2812,1.875,0.2812,1.8125,0.3125,1.8125,0.2812,1.875,0.3125,1.8125,0.3125,1.875,0.3125,1.875,0.3125,1.8125,0.3437,1.8125,0.3125,1.875,0.3437,1.8125,0.3437,1.875,0.3437,1.875,0.3437,1.8125,0.375,1.8125,0.3437,1.875,0.375,1.8125,0.375,1.875,0.375,1.875,0.375,1.8125,0.4062,1.8125,0.375,1.875,0.4062,1.8125,0.4062,1.875,0.4062,1.875,0.4062,1.8125,0.4375,1.8125,0.4062,1.875,0.4375,1.8125,0.4375,1.875,0.4375,1.875,0.4375,1.8125,0.4688,1.8125,0.4375,1.875,0.4688,1.8125,0.4688,1.875,0.4688,1.875,0.4688,1.8125,0.5,1.8125,0.4688,1.875,0.5,1.8125,0.5,1.875,0.5,1.875,0.5,1.8125,0.5313,1.8125,0.5,1.875,0.5313,1.8125,0.5313,1.875,0.5313,1.875,0.5313,1.8125,0.5625,1.8125,0.5313,1.875,0.5625,1.8125,0.5625,1.875,0.5625,1.875,0.5625,1.8125,0.5938,1.8125,0.5625,1.875,0.5938,1.8125,0.5938,1.875,0.5938,1.875,0.5938,1.8125,0.625,1.8125,0.5938,1.875,0.625,1.8125,0.625,1.875,0.625,1.875,0.625,1.8125,0.6563,1.8125,0.625,1.875,0.6563,1.8125,0.6563,1.875,0.6563,1.875,0.6563,1.8125,0.6875,1.8125,0.6563,1.875,0.6875,1.8125,0.6875,1.875,0.6875,1.875,0.6875,1.8125,0.7188,1.8125,0.6875,1.875,0.7188,1.8125,0.7188,1.875,0.7188,1.875,0.7188,1.8125,0.75,1.8125,0.7188,1.875,0.75,1.8125,0.75,1.875,0.75,1.875,0.75,1.8125,0.7813,1.8125,0.75,1.875,0.7813,1.8125,0.7813,1.875,0.7813,1.875,0.7813,1.8125,0.8125,1.8125,0.7813,1.875,0.8125,1.8125,0.8125,1.875,0.8125,1.875,0.8125,1.8125,0.8438,1.8125,0.8125,1.875,0.8438,1.8125,0.8438,1.875,0.8438,1.875,0.8438,1.8125,0.875,1.8125,0.8438,1.875,0.875,1.8125,0.875,1.875,0.875,1.875,0.875,1.8125,0.9063,1.8125,0.875,1.875,0.9063,1.8125,0.9063,1.875,0.9063,1.875,0.9063,1.8125,0.9375,1.8125,0.9063,1.875,0.9375,1.8125,0.9375,1.875,0.9375,1.875,0.9375,1.8125,0.9688,1.8125,0.9375,1.875,0.9688,1.8125,0.9688,1.875,0.9688,1.875,0.9688,1.8125,1.0,1.8125,0.9688,1.875,1.0,1.8125,1.0,1.875,0.0,1.8125,0.0,1.75,0.0312,1.75,0.0,1.8125,0.0312,1.75,0.0312,1.8125,0.0312,1.8125,0.0312,1.75,0.0625,1.75,0.0312,1.8125,0.0625,1.75,0.0625,1.8125,0.0625,1.8125,0.0625,1.75,0.0938,1.75,0.0625,1.8125,0.0938,1.75,0.0938,1.8125,0.0938,1.8125,0.0938,1.75,0.125,1.75,0.0938,1.8125,0.125,1.75,0.125,1.8125,0.125,1.8125,0.125,1.75,0.1562,1.75,0.125,1.8125,0.1562,1.75,0.1562,1.8125,0.1562,1.8125,0.1562,1.75,0.1875,1.75,0.1562,1.8125,0.1875,1.75,0.1875,1.8125,0.1875,1.8125,0.1875,1.75,0.2187,1.75,0.1875,1.8125,0.2187,1.75,0.2187,1.8125,0.2187,1.8125,0.2187,1.75,0.25,1.75,0.2187,1.8125,0.25,1.75,0.25,1.8125,0.25,1.8125,0.25,1.75,0.2812,1.75,0.25,1.8125,0.2812,1.75,0.2812,1.8125,0.2812,1.8125,0.2812,1.75,0.3125,1.75,0.2812,1.8125,0.3125,1.75,0.3125,1.8125,0.3125,1.8125,0.3125,1.75,0.3437,1.75,0.3125,1.8125,0.3437,1.75,0.3437,1.8125,0.3437,1.8125,0.3437,1.75,0.375,1.75,0.3437,1.8125,0.375,1.75,0.375,1.8125,0.375,1.8125,0.375,1.75,0.4062,1.75,0.375,1.8125,0.4062,1.75,0.4062,1.8125,0.4062,1.8125,0.4062,1.75,0.4375,1.75,0.4062,1.8125,0.4375,1.75,0.4375,1.8125,0.4375,1.8125,0.4375,1.75,0.4688,1.75,0.4375,1.8125,0.4688,1.75,0.4688,1.8125,0.4688,1.8125,0.4688,1.75,0.5,1.75,0.4688,1.8125,0.5,1.75,0.5,1.8125,0.5,1.8125,0.5,1.75,0.5313,1.75,0.5,1.8125,0.5313,1.75,0.5313,1.8125,0.5313,1.8125,0.5313,1.75,0.5625,1.75,0.5313,1.8125,0.5625,1.75,0.5625,1.8125,0.5625,1.8125,0.5625,1.75,0.5938,1.75,0.5625,1.8125,0.5938,1.75,0.5938,1.8125,0.5938,1.8125,0.5938,1.75,0.625,1.75,0.5938,1.8125,0.625,1.75,0.625,1.8125,0.625,1.8125,0.625,1.75,0.6563,1.75,0.625,1.8125,0.6563,1.75,0.6563,1.8125,0.6563,1.8125,0.6563,1.75,0.6875,1.75,0.6563,1.8125,0.6875,1.75,0.6875,1.8125,0.6875,1.8125,0.6875,1.75,0.7188,1.75,0.6875,1.8125,0.7188,1.75,0.7188,1.8125,0.7188,1.8125,0.7188,1.75,0.75,1.75,0.7188,1.8125,0.75,1.75,0.75,1.8125,0.75,1.8125,0.75,1.75,0.7813,1.75,0.75,1.8125,0.7813,1.75,0.7813,1.8125,0.7813,1.8125,0.7813,1.75,0.8125,1.75,0.7813,1.8125,0.8125,1.75,0.8125,1.8125,0.8125,1.8125,0.8125,1.75,0.8438,1.75,0.8125,1.8125,0.8438,1.75,0.8438,1.8125,0.8438,1.8125,0.8438,1.75,0.875,1.75,0.8438,1.8125,0.875,1.75,0.875,1.8125,0.875,1.8125,0.875,1.75,0.9063,1.75,0.875,1.8125,0.9063,1.75,0.9063,1.8125,0.9063,1.8125,0.9063,1.75,0.9375,1.75,0.9063,1.8125,0.9375,1.75,0.9375,1.8125,0.9375,1.8125,0.9375,1.75,0.9688,1.75,0.9375,1.8125,0.9688,1.75,0.9688,1.8125,0.9688,1.8125,0.9688,1.75,1.0,1.75,0.9688,1.8125,1.0,1.75,1.0,1.8125,0.0,1.75,0.0,1.6875,0.0312,1.6875,0.0,1.75,0.0312,1.6875,0.0312,1.75,0.0312,1.75,0.0312,1.6875,0.0625,1.6875,0.0312,1.75,0.0625,1.6875,0.0625,1.75,0.0625,1.75,0.0625,1.6875,0.0938,1.6875,0.0625,1.75,0.0938,1.6875,0.0938,1.75,0.0938,1.75,0.0938,1.6875,0.125,1.6875,0.0938,1.75,0.125,1.6875,0.125,1.75,0.125,1.75,0.125,1.6875,0.1562,1.6875,0.125,1.75,0.1562,1.6875,0.1562,1.75,0.1562,1.75,0.1562,1.6875,0.1875,1.6875,0.1562,1.75,0.1875,1.6875,0.1875,1.75,0.1875,1.75,0.1875,1.6875,0.2187,1.6875,0.1875,1.75,0.2187,1.6875,0.2187,1.75,0.2187,1.75,0.2187,1.6875,0.25,1.6875,0.2187,1.75,0.25,1.6875,0.25,1.75,0.25,1.75,0.25,1.6875,0.2812,1.6875,0.25,1.75,0.2812,1.6875,0.2812,1.75,0.2812,1.75,0.2812,1.6875,0.3125,1.6875,0.2812,1.75,0.3125,1.6875,0.3125,1.75,0.3125,1.75,0.3125,1.6875,0.3437,1.6875,0.3125,1.75,0.3437,1.6875,0.3437,1.75,0.3437,1.75,0.3437,1.6875,0.375,1.6875,0.3437,1.75,0.375,1.6875,0.375,1.75,0.375,1.75,0.375,1.6875,0.4062,1.6875,0.375,1.75,0.4062,1.6875,0.4062,1.75,0.4062,1.75,0.4062,1.6875,0.4375,1.6875,0.4062,1.75,0.4375,1.6875,0.4375,1.75,0.4375,1.75,0.4375,1.6875,0.4688,1.6875,0.4375,1.75,0.4688,1.6875,0.4688,1.75,0.4688,1.75,0.4688,1.6875,0.5,1.6875,0.4688,1.75,0.5,1.6875,0.5,1.75,0.5,1.75,0.5,1.6875,0.5313,1.6875,0.5,1.75,0.5313,1.6875,0.5313,1.75,0.5313,1.75,0.5313,1.6875,0.5625,1.6875,0.5313,1.75,0.5625,1.6875,0.5625,1.75,0.5625,1.75,0.5625,1.6875,0.5938,1.6875,0.5625,1.75,0.5938,1.6875,0.5938,1.75,0.5938,1.75,0.5938,1.6875,0.625,1.6875,0.5938,1.75,0.625,1.6875,0.625,1.75,0.625,1.75,0.625,1.6875,0.6563,1.6875,0.625,1.75,0.6563,1.6875,0.6563,1.75,0.6563,1.75,0.6563,1.6875,0.6875,1.6875,0.6563,1.75,0.6875,1.6875,0.6875,1.75,0.6875,1.75,0.6875,1.6875,0.7188,1.6875,0.6875,1.75,0.7188,1.6875,0.7188,1.75,0.7188,1.75,0.7188,1.6875,0.75,1.6875,0.7188,1.75,0.75,1.6875,0.75,1.75,0.75,1.75,0.75,1.6875,0.7813,1.6875,0.75,1.75,0.7813,1.6875,0.7813,1.75,0.7813,1.75,0.7813,1.6875,0.8125,1.6875,0.7813,1.75,0.8125,1.6875,0.8125,1.75,0.8125,1.75,0.8125,1.6875,0.8438,1.6875,0.8125,1.75,0.8438,1.6875,0.8438,1.75,0.8438,1.75,0.8438,1.6875,0.875,1.6875,0.8438,1.75,0.875,1.6875,0.875,1.75,0.875,1.75,0.875,1.6875,0.9063,1.6875,0.875,1.75,0.9063,1.6875,0.9063,1.75,0.9063,1.75,0.9063,1.6875,0.9375,1.6875,0.9063,1.75,0.9375,1.6875,0.9375,1.75,0.9375,1.75,0.9375,1.6875,0.9688,1.6875,0.9375,1.75,0.9688,1.6875,0.9688,1.75,0.9688,1.75,0.9688,1.6875,1.0,1.6875,0.9688,1.75,1.0,1.6875,1.0,1.75,0.0,1.6875,0.0,1.625,0.0312,1.625,0.0,1.6875,0.0312,1.625,0.0312,1.6875,0.0312,1.6875,0.0312,1.625,0.0625,1.625,0.0312,1.6875,0.0625,1.625,0.0625,1.6875,0.0625,1.6875,0.0625,1.625,0.0938,1.625,0.0625,1.6875,0.0938,1.625,0.0938,1.6875,0.0938,1.6875,0.0938,1.625,0.125,1.625,0.0938,1.6875,0.125,1.625,0.125,1.6875,0.125,1.6875,0.125,1.625,0.1562,1.625,0.125,1.6875,0.1562,1.625,0.1562,1.6875,0.1562,1.6875,0.1562,1.625,0.1875,1.625,0.1562,1.6875,0.1875,1.625,0.1875,1.6875,0.1875,1.6875,0.1875,1.625,0.2187,1.625,0.1875,1.6875,0.2187,1.625,0.2187,1.6875,0.2187,1.6875,0.2187,1.625,0.25,1.625,0.2187,1.6875,0.25,1.625,0.25,1.6875,0.25,1.6875,0.25,1.625,0.2812,1.625,0.25,1.6875,0.2812,1.625,0.2812,1.6875,0.2812,1.6875,0.2812,1.625,0.3125,1.625,0.2812,1.6875,0.3125,1.625,0.3125,1.6875,0.3125,1.6875,0.3125,1.625,0.3437,1.625,0.3125,1.6875,0.3437,1.625,0.3437,1.6875,0.3437,1.6875,0.3437,1.625,0.375,1.625,0.3437,1.6875,0.375,1.625,0.375,1.6875,0.375,1.6875,0.375,1.625,0.4062,1.625,0.375,1.6875,0.4062,1.625,0.4062,1.6875,0.4062,1.6875,0.4062,1.625,0.4375,1.625,0.4062,1.6875,0.4375,1.625,0.4375,1.6875,0.4375,1.6875,0.4375,1.625,0.4688,1.625,0.4375,1.6875,0.4688,1.625,0.4688,1.6875,0.4688,1.6875,0.4688,1.625,0.5,1.625,0.4688,1.6875,0.5,1.625,0.5,1.6875,0.5,1.6875,0.5,1.625,0.5313,1.625,0.5,1.6875,0.5313,1.625,0.5313,1.6875,0.5313,1.6875,0.5313,1.625,0.5625,1.625,0.5313,1.6875,0.5625,1.625,0.5625,1.6875,0.5625,1.6875,0.5625,1.625,0.5938,1.625,0.5625,1.6875,0.5938,1.625,0.5938,1.6875,0.5938,1.6875,0.5938,1.625,0.625,1.625,0.5938,1.6875,0.625,1.625,0.625,1.6875,0.625,1.6875,0.625,1.625,0.6563,1.625,0.625,1.6875,0.6563,1.625,0.6563,1.6875,0.6563,1.6875,0.6563,1.625,0.6875,1.625,0.6563,1.6875,0.6875,1.625,0.6875,1.6875,0.6875,1.6875,0.6875,1.625,0.7188,1.625,0.6875,1.6875,0.7188,1.625,0.7188,1.6875,0.7188,1.6875,0.7188,1.625,0.75,1.625,0.7188,1.6875,0.75,1.625,0.75,1.6875,0.75,1.6875,0.75,1.625,0.7813,1.625,0.75,1.6875,0.7813,1.625,0.7813,1.6875,0.7813,1.6875,0.7813,1.625,0.8125,1.625,0.7813,1.6875,0.8125,1.625,0.8125,1.6875,0.8125,1.6875,0.8125,1.625,0.8438,1.625,0.8125,1.6875,0.8438,1.625,0.8438,1.6875,0.8438,1.6875,0.8438,1.625,0.875,1.625,0.8438,1.6875,0.875,1.625,0.875,1.6875,0.875,1.6875,0.875,1.625,0.9063,1.625,0.875,1.6875,0.9063,1.625,0.9063,1.6875,0.9063,1.6875,0.9063,1.625,0.9375,1.625,0.9063,1.6875,0.9375,1.625,0.9375,1.6875,0.9375,1.6875,0.9375,1.625,0.9688,1.625,0.9375,1.6875,0.9688,1.625,0.9688,1.6875,0.9688,1.6875,0.9688,1.625,1.0,1.625,0.9688,1.6875,1.0,1.625,1.0,1.6875,0.0,1.625,0.0,1.5625,0.0312,1.5625,0.0,1.625,0.0312,1.5625,0.0312,1.625,0.0312,1.625,0.0312,1.5625,0.0625,1.5625,0.0312,1.625,0.0625,1.5625,0.0625,1.625,0.0625,1.625,0.0625,1.5625,0.0938,1.5625,0.0625,1.625,0.0938,1.5625,0.0938,1.625,0.0938,1.625,0.0938,1.5625,0.125,1.5625,0.0938,1.625,0.125,1.5625,0.125,1.625,0.125,1.625,0.125,1.5625,0.1562,1.5625,0.125,1.625,0.1562,1.5625,0.1562,1.625,0.1562,1.625,0.1562,1.5625,0.1875,1.5625,0.1562,1.625,0.1875,1.5625,0.1875,1.625,0.1875,1.625,0.1875,1.5625,0.2187,1.5625,0.1875,1.625,0.2187,1.5625,0.2187,1.625,0.2187,1.625,0.2187,1.5625,0.25,1.5625,0.2187,1.625,0.25,1.5625,0.25,1.625,0.25,1.625,0.25,1.5625,0.2812,1.5625,0.25,1.625,0.2812,1.5625,0.2812,1.625,0.2812,1.625,0.2812,1.5625,0.3125,1.5625,0.2812,1.625,0.3125,1.5625,0.3125,1.625,0.3125,1.625,0.3125,1.5625,0.3437,1.5625,0.3125,1.625,0.3437,1.5625,0.3437,1.625,0.3437,1.625,0.3437,1.5625,0.375,1.5625,0.3437,1.625,0.375,1.5625,0.375,1.625,0.375,1.625,0.375,1.5625,0.4062,1.5625,0.375,1.625,0.4062,1.5625,0.4062,1.625,0.4062,1.625,0.4062,1.5625,0.4375,1.5625,0.4062,1.625,0.4375,1.5625,0.4375,1.625,0.4375,1.625,0.4375,1.5625,0.4688,1.5625,0.4375,1.625,0.4688,1.5625,0.4688,1.625,0.4688,1.625,0.4688,1.5625,0.5,1.5625,0.4688,1.625,0.5,1.5625,0.5,1.625,0.5,1.625,0.5,1.5625,0.5313,1.5625,0.5,1.625,0.5313,1.5625,0.5313,1.625,0.5313,1.625,0.5313,1.5625,0.5625,1.5625,0.5313,1.625,0.5625,1.5625,0.5625,1.625,0.5625,1.625,0.5625,1.5625,0.5938,1.5625,0.5625,1.625,0.5938,1.5625,0.5938,1.625,0.5938,1.625,0.5938,1.5625,0.625,1.5625,0.5938,1.625,0.625,1.5625,0.625,1.625,0.625,1.625,0.625,1.5625,0.6563,1.5625,0.625,1.625,0.6563,1.5625,0.6563,1.625,0.6563,1.625,0.6563,1.5625,0.6875,1.5625,0.6563,1.625,0.6875,1.5625,0.6875,1.625,0.6875,1.625,0.6875,1.5625,0.7188,1.5625,0.6875,1.625,0.7188,1.5625,0.7188,1.625,0.7188,1.625,0.7188,1.5625,0.75,1.5625,0.7188,1.625,0.75,1.5625,0.75,1.625,0.75,1.625,0.75,1.5625,0.7813,1.5625,0.75,1.625,0.7813,1.5625,0.7813,1.625,0.7813,1.625,0.7813,1.5625,0.8125,1.5625,0.7813,1.625,0.8125,1.5625,0.8125,1.625,0.8125,1.625,0.8125,1.5625,0.8438,1.5625,0.8125,1.625,0.8438,1.5625,0.8438,1.625,0.8438,1.625,0.8438,1.5625,0.875,1.5625,0.8438,1.625,0.875,1.5625,0.875,1.625,0.875,1.625,0.875,1.5625,0.9063,1.5625,0.875,1.625,0.9063,1.5625,0.9063,1.625,0.9063,1.625,0.9063,1.5625,0.9375,1.5625,0.9063,1.625,0.9375,1.5625,0.9375,1.625,0.9375,1.625,0.9375,1.5625,0.9688,1.5625,0.9375,1.625,0.9688,1.5625,0.9688,1.625,0.9688,1.625,0.9688,1.5625,1.0,1.5625,0.9688,1.625,1.0,1.5625,1.0,1.625,0.0,1.5625,0.0,1.5,0.0312,1.5,0.0,1.5625,0.0312,1.5,0.0312,1.5625,0.0312,1.5625,0.0312,1.5,0.0625,1.5,0.0312,1.5625,0.0625,1.5,0.0625,1.5625,0.0625,1.5625,0.0625,1.5,0.0938,1.5,0.0625,1.5625,0.0938,1.5,0.0938,1.5625,0.0938,1.5625,0.0938,1.5,0.125,1.5,0.0938,1.5625,0.125,1.5,0.125,1.5625,0.125,1.5625,0.125,1.5,0.1562,1.5,0.125,1.5625,0.1562,1.5,0.1562,1.5625,0.1562,1.5625,0.1562,1.5,0.1875,1.5,0.1562,1.5625,0.1875,1.5,0.1875,1.5625,0.1875,1.5625,0.1875,1.5,0.2187,1.5,0.1875,1.5625,0.2187,1.5,0.2187,1.5625,0.2187,1.5625,0.2187,1.5,0.25,1.5,0.2187,1.5625,0.25,1.5,0.25,1.5625,0.25,1.5625,0.25,1.5,0.2812,1.5,0.25,1.5625,0.2812,1.5,0.2812,1.5625,0.2812,1.5625,0.2812,1.5,0.3125,1.5,0.2812,1.5625,0.3125,1.5,0.3125,1.5625,0.3125,1.5625,0.3125,1.5,0.3437,1.5,0.3125,1.5625,0.3437,1.5,0.3437,1.5625,0.3437,1.5625,0.3437,1.5,0.375,1.5,0.3437,1.5625,0.375,1.5,0.375,1.5625,0.375,1.5625,0.375,1.5,0.4062,1.5,0.375,1.5625,0.4062,1.5,0.4062,1.5625,0.4062,1.5625,0.4062,1.5,0.4375,1.5,0.4062,1.5625,0.4375,1.5,0.4375,1.5625,0.4375,1.5625,0.4375,1.5,0.4688,1.5,0.4375,1.5625,0.4688,1.5,0.4688,1.5625,0.4688,1.5625,0.4688,1.5,0.5,1.5,0.4688,1.5625,0.5,1.5,0.5,1.5625,0.5,1.5625,0.5,1.5,0.5313,1.5,0.5,1.5625,0.5313,1.5,0.5313,1.5625,0.5313,1.5625,0.5313,1.5,0.5625,1.5,0.5313,1.5625,0.5625,1.5,0.5625,1.5625,0.5625,1.5625,0.5625,1.5,0.5938,1.5,0.5625,1.5625,0.5938,1.5,0.5938,1.5625,0.5938,1.5625,0.5938,1.5,0.625,1.5,0.5938,1.5625,0.625,1.5,0.625,1.5625,0.625,1.5625,0.625,1.5,0.6563,1.5,0.625,1.5625,0.6563,1.5,0.6563,1.5625,0.6563,1.5625,0.6563,1.5,0.6875,1.5,0.6563,1.5625,0.6875,1.5,0.6875,1.5625,0.6875,1.5625,0.6875,1.5,0.7188,1.5,0.6875,1.5625,0.7188,1.5,0.7188,1.5625,0.7188,1.5625,0.7188,1.5,0.75,1.5,0.7188,1.5625,0.75,1.5,0.75,1.5625,0.75,1.5625,0.75,1.5,0.7813,1.5,0.75,1.5625,0.7813,1.5,0.7813,1.5625,0.7813,1.5625,0.7813,1.5,0.8125,1.5,0.7813,1.5625,0.8125,1.5,0.8125,1.5625,0.8125,1.5625,0.8125,1.5,0.8438,1.5,0.8125,1.5625,0.8438,1.5,0.8438,1.5625,0.8438,1.5625,0.8438,1.5,0.875,1.5,0.8438,1.5625,0.875,1.5,0.875,1.5625,0.875,1.5625,0.875,1.5,0.9063,1.5,0.875,1.5625,0.9063,1.5,0.9063,1.5625,0.9063,1.5625,0.9063,1.5,0.9375,1.5,0.9063,1.5625,0.9375,1.5,0.9375,1.5625,0.9375,1.5625,0.9375,1.5,0.9688,1.5,0.9375,1.5625,0.9688,1.5,0.9688,1.5625,0.9688,1.5625,0.9688,1.5,1.0,1.5,0.9688,1.5625,1.0,1.5,1.0,1.5625,0.0,1.5,0.0,1.4375,0.0312,1.4375,0.0,1.5,0.0312,1.4375,0.0312,1.5,0.0312,1.5,0.0312,1.4375,0.0625,1.4375,0.0312,1.5,0.0625,1.4375,0.0625,1.5,0.0625,1.5,0.0625,1.4375,0.0938,1.4375,0.0625,1.5,0.0938,1.4375,0.0938,1.5,0.0938,1.5,0.0938,1.4375,0.125,1.4375,0.0938,1.5,0.125,1.4375,0.125,1.5,0.125,1.5,0.125,1.4375,0.1562,1.4375,0.125,1.5,0.1562,1.4375,0.1562,1.5,0.1562,1.5,0.1562,1.4375,0.1875,1.4375,0.1562,1.5,0.1875,1.4375,0.1875,1.5,0.1875,1.5,0.1875,1.4375,0.2187,1.4375,0.1875,1.5,0.2187,1.4375,0.2187,1.5,0.2187,1.5,0.2187,1.4375,0.25,1.4375,0.2187,1.5,0.25,1.4375,0.25,1.5,0.25,1.5,0.25,1.4375,0.2812,1.4375,0.25,1.5,0.2812,1.4375,0.2812,1.5,0.2812,1.5,0.2812,1.4375,0.3125,1.4375,0.2812,1.5,0.3125,1.4375,0.3125,1.5,0.3125,1.5,0.3125,1.4375,0.3437,1.4375,0.3125,1.5,0.3437,1.4375,0.3437,1.5,0.3437,1.5,0.3437,1.4375,0.375,1.4375,0.3437,1.5,0.375,1.4375,0.375,1.5,0.375,1.5,0.375,1.4375,0.4062,1.4375,0.375,1.5,0.4062,1.4375,0.4062,1.5,0.4062,1.5,0.4062,1.4375,0.4375,1.4375,0.4062,1.5,0.4375,1.4375,0.4375,1.5,0.4375,1.5,0.4375,1.4375,0.4688,1.4375,0.4375,1.5,0.4688,1.4375,0.4688,1.5,0.4688,1.5,0.4688,1.4375,0.5,1.4375,0.4688,1.5,0.5,1.4375,0.5,1.5,0.5,1.5,0.5,1.4375,0.5313,1.4375,0.5,1.5,0.5313,1.4375,0.5313,1.5,0.5313,1.5,0.5313,1.4375,0.5625,1.4375,0.5313,1.5,0.5625,1.4375,0.5625,1.5,0.5625,1.5,0.5625,1.4375,0.5938,1.4375,0.5625,1.5,0.5938,1.4375,0.5938,1.5,0.5938,1.5,0.5938,1.4375,0.625,1.4375,0.5938,1.5,0.625,1.4375,0.625,1.5,0.625,1.5,0.625,1.4375,0.6563,1.4375,0.625,1.5,0.6563,1.4375,0.6563,1.5,0.6563,1.5,0.6563,1.4375,0.6875,1.4375,0.6563,1.5,0.6875,1.4375,0.6875,1.5,0.6875,1.5,0.6875,1.4375,0.7188,1.4375,0.6875,1.5,0.7188,1.4375,0.7188,1.5,0.7188,1.5,0.7188,1.4375,0.75,1.4375,0.7188,1.5,0.75,1.4375,0.75,1.5,0.75,1.5,0.75,1.4375,0.7813,1.4375,0.75,1.5,0.7813,1.4375,0.7813,1.5,0.7813,1.5,0.7813,1.4375,0.8125,1.4375,0.7813,1.5,0.8125,1.4375,0.8125,1.5,0.8125,1.5,0.8125,1.4375,0.8438,1.4375,0.8125,1.5,0.8438,1.4375,0.8438,1.5,0.8438,1.5,0.8438,1.4375,0.875,1.4375,0.8438,1.5,0.875,1.4375,0.875,1.5,0.875,1.5,0.875,1.4375,0.9063,1.4375,0.875,1.5,0.9063,1.4375,0.9063,1.5,0.9063,1.5,0.9063,1.4375,0.9375,1.4375,0.9063,1.5,0.9375,1.4375,0.9375,1.5,0.9375,1.5,0.9375,1.4375,0.9688,1.4375,0.9375,1.5,0.9688,1.4375,0.9688,1.5,0.9688,1.5,0.9688,1.4375,1.0,1.4375,0.9688,1.5,1.0,1.4375,1.0,1.5,0.0,1.4375,0.0,1.375,0.0312,1.375,0.0,1.4375,0.0312,1.375,0.0312,1.4375,0.0312,1.4375,0.0312,1.375,0.0625,1.375,0.0312,1.4375,0.0625,1.375,0.0625,1.4375,0.0625,1.4375,0.0625,1.375,0.0938,1.375,0.0625,1.4375,0.0938,1.375,0.0938,1.4375,0.0938,1.4375,0.0938,1.375,0.125,1.375,0.0938,1.4375,0.125,1.375,0.125,1.4375,0.125,1.4375,0.125,1.375,0.1562,1.375,0.125,1.4375,0.1562,1.375,0.1562,1.4375,0.1562,1.4375,0.1562,1.375,0.1875,1.375,0.1562,1.4375,0.1875,1.375,0.1875,1.4375,0.1875,1.4375,0.1875,1.375,0.2187,1.375,0.1875,1.4375,0.2187,1.375,0.2187,1.4375,0.2187,1.4375,0.2187,1.375,0.25,1.375,0.2187,1.4375,0.25,1.375,0.25,1.4375,0.25,1.4375,0.25,1.375,0.2812,1.375,0.25,1.4375,0.2812,1.375,0.2812,1.4375,0.2812,1.4375,0.2812,1.375,0.3125,1.375,0.2812,1.4375,0.3125,1.375,0.3125,1.4375,0.3125,1.4375,0.3125,1.375,0.3437,1.375,0.3125,1.4375,0.3437,1.375,0.3437,1.4375,0.3437,1.4375,0.3437,1.375,0.375,1.375,0.3437,1.4375,0.375,1.375,0.375,1.4375,0.375,1.4375,0.375,1.375,0.4062,1.375,0.375,1.4375,0.4062,1.375,0.4062,1.4375,0.4062,1.4375,0.4062,1.375,0.4375,1.375,0.4062,1.4375,0.4375,1.375,0.4375,1.4375,0.4375,1.4375,0.4375,1.375,0.4688,1.375,0.4375,1.4375,0.4688,1.375,0.4688,1.4375,0.4688,1.4375,0.4688,1.375,0.5,1.375,0.4688,1.4375,0.5,1.375,0.5,1.4375,0.5,1.4375,0.5,1.375,0.5313,1.375,0.5,1.4375,0.5313,1.375,0.5313,1.4375,0.5313,1.4375,0.5313,1.375,0.5625,1.375,0.5313,1.4375,0.5625,1.375,0.5625,1.4375,0.5625,1.4375,0.5625,1.375,0.5938,1.375,0.5625,1.4375,0.5938,1.375,0.5938,1.4375,0.5938,1.4375,0.5938,1.375,0.625,1.375,0.5938,1.4375,0.625,1.375,0.625,1.4375,0.625,1.4375,0.625,1.375,0.6563,1.375,0.625,1.4375,0.6563,1.375,0.6563,1.4375,0.6563,1.4375,0.6563,1.375,0.6875,1.375,0.6563,1.4375,0.6875,1.375,0.6875,1.4375,0.6875,1.4375,0.6875,1.375,0.7188,1.375,0.6875,1.4375,0.7188,1.375,0.7188,1.4375,0.7188,1.4375,0.7188,1.375,0.75,1.375,0.7188,1.4375,0.75,1.375,0.75,1.4375,0.75,1.4375,0.75,1.375,0.7813,1.375,0.75,1.4375,0.7813,1.375,0.7813,1.4375,0.7813,1.4375,0.7813,1.375,0.8125,1.375,0.7813,1.4375,0.8125,1.375,0.8125,1.4375,0.8125,1.4375,0.8125,1.375,0.8438,1.375,0.8125,1.4375,0.8438,1.375,0.8438,1.4375,0.8438,1.4375,0.8438,1.375,0.875,1.375,0.8438,1.4375,0.875,1.375,0.875,1.4375,0.875,1.4375,0.875,1.375,0.9063,1.375,0.875,1.4375,0.9063,1.375,0.9063,1.4375,0.9063,1.4375,0.9063,1.375,0.9375,1.375,0.9063,1.4375,0.9375,1.375,0.9375,1.4375,0.9375,1.4375,0.9375,1.375,0.9688,1.375,0.9375,1.4375,0.9688,1.375,0.9688,1.4375,0.9688,1.4375,0.9688,1.375,1.0,1.375,0.9688,1.4375,1.0,1.375,1.0,1.4375,0.0,1.375,0.0,1.3125,0.0312,1.3125,0.0,1.375,0.0312,1.3125,0.0312,1.375,0.0312,1.375,0.0312,1.3125,0.0625,1.3125,0.0312,1.375,0.0625,1.3125,0.0625,1.375,0.0625,1.375,0.0625,1.3125,0.0938,1.3125,0.0625,1.375,0.0938,1.3125,0.0938,1.375,0.0938,1.375,0.0938,1.3125,0.125,1.3125,0.0938,1.375,0.125,1.3125,0.125,1.375,0.125,1.375,0.125,1.3125,0.1562,1.3125,0.125,1.375,0.1562,1.3125,0.1562,1.375,0.1562,1.375,0.1562,1.3125,0.1875,1.3125,0.1562,1.375,0.1875,1.3125,0.1875,1.375,0.1875,1.375,0.1875,1.3125,0.2187,1.3125,0.1875,1.375,0.2187,1.3125,0.2187,1.375,0.2187,1.375,0.2187,1.3125,0.25,1.3125,0.2187,1.375,0.25,1.3125,0.25,1.375,0.25,1.375,0.25,1.3125,0.2812,1.3125,0.25,1.375,0.2812,1.3125,0.2812,1.375,0.2812,1.375,0.2812,1.3125,0.3125,1.3125,0.2812,1.375,0.3125,1.3125,0.3125,1.375,0.3125,1.375,0.3125,1.3125,0.3437,1.3125,0.3125,1.375,0.3437,1.3125,0.3437,1.375,0.3437,1.375,0.3437,1.3125,0.375,1.3125,0.3437,1.375,0.375,1.3125,0.375,1.375,0.375,1.375,0.375,1.3125,0.4062,1.3125,0.375,1.375,0.4062,1.3125,0.4062,1.375,0.4062,1.375,0.4062,1.3125,0.4375,1.3125,0.4062,1.375,0.4375,1.3125,0.4375,1.375,0.4375,1.375,0.4375,1.3125,0.4688,1.3125,0.4375,1.375,0.4688,1.3125,0.4688,1.375,0.4688,1.375,0.4688,1.3125,0.5,1.3125,0.4688,1.375,0.5,1.3125,0.5,1.375,0.5,1.375,0.5,1.3125,0.5313,1.3125,0.5,1.375,0.5313,1.3125,0.5313,1.375,0.5313,1.375,0.5313,1.3125,0.5625,1.3125,0.5313,1.375,0.5625,1.3125,0.5625,1.375,0.5625,1.375,0.5625,1.3125,0.5938,1.3125,0.5625,1.375,0.5938,1.3125,0.5938,1.375,0.5938,1.375,0.5938,1.3125,0.625,1.3125,0.5938,1.375,0.625,1.3125,0.625,1.375,0.625,1.375,0.625,1.3125,0.6563,1.3125,0.625,1.375,0.6563,1.3125,0.6563,1.375,0.6563,1.375,0.6563,1.3125,0.6875,1.3125,0.6563,1.375,0.6875,1.3125,0.6875,1.375,0.6875,1.375,0.6875,1.3125,0.7188,1.3125,0.6875,1.375,0.7188,1.3125,0.7188,1.375,0.7188,1.375,0.7188,1.3125,0.75,1.3125,0.7188,1.375,0.75,1.3125,0.75,1.375,0.75,1.375,0.75,1.3125,0.7813,1.3125,0.75,1.375,0.7813,1.3125,0.7813,1.375,0.7813,1.375,0.7813,1.3125,0.8125,1.3125,0.7813,1.375,0.8125,1.3125,0.8125,1.375,0.8125,1.375,0.8125,1.3125,0.8438,1.3125,0.8125,1.375,0.8438,1.3125,0.8438,1.375,0.8438,1.375,0.8438,1.3125,0.875,1.3125,0.8438,1.375,0.875,1.3125,0.875,1.375,0.875,1.375,0.875,1.3125,0.9063,1.3125,0.875,1.375,0.9063,1.3125,0.9063,1.375,0.9063,1.375,0.9063,1.3125,0.9375,1.3125,0.9063,1.375,0.9375,1.3125,0.9375,1.375,0.9375,1.375,0.9375,1.3125,0.9688,1.3125,0.9375,1.375,0.9688,1.3125,0.9688,1.375,0.9688,1.375,0.9688,1.3125,1.0,1.3125,0.9688,1.375,1.0,1.3125,1.0,1.375,0.0,1.3125,0.0,1.25,0.0312,1.25,0.0,1.3125,0.0312,1.25,0.0312,1.3125,0.0312,1.3125,0.0312,1.25,0.0625,1.25,0.0312,1.3125,0.0625,1.25,0.0625,1.3125,0.0625,1.3125,0.0625,1.25,0.0938,1.25,0.0625,1.3125,0.0938,1.25,0.0938,1.3125,0.0938,1.3125,0.0938,1.25,0.125,1.25,0.0938,1.3125,0.125,1.25,0.125,1.3125,0.125,1.3125,0.125,1.25,0.1562,1.25,0.125,1.3125,0.1562,1.25,0.1562,1.3125,0.1562,1.3125,0.1562,1.25,0.1875,1.25,0.1562,1.3125,0.1875,1.25,0.1875,1.3125,0.1875,1.3125,0.1875,1.25,0.2187,1.25,0.1875,1.3125,0.2187,1.25,0.2187,1.3125,0.2187,1.3125,0.2187,1.25,0.25,1.25,0.2187,1.3125,0.25,1.25,0.25,1.3125,0.25,1.3125,0.25,1.25,0.2812,1.25,0.25,1.3125,0.2812,1.25,0.2812,1.3125,0.2812,1.3125,0.2812,1.25,0.3125,1.25,0.2812,1.3125,0.3125,1.25,0.3125,1.3125,0.3125,1.3125,0.3125,1.25,0.3437,1.25,0.3125,1.3125,0.3437,1.25,0.3437,1.3125,0.3437,1.3125,0.3437,1.25,0.375,1.25,0.3437,1.3125,0.375,1.25,0.375,1.3125,0.375,1.3125,0.375,1.25,0.4062,1.25,0.375,1.3125,0.4062,1.25,0.4062,1.3125,0.4062,1.3125,0.4062,1.25,0.4375,1.25,0.4062,1.3125,0.4375,1.25,0.4375,1.3125,0.4375,1.3125,0.4375,1.25,0.4688,1.25,0.4375,1.3125,0.4688,1.25,0.4688,1.3125,0.4688,1.3125,0.4688,1.25,0.5,1.25,0.4688,1.3125,0.5,1.25,0.5,1.3125,0.5,1.3125,0.5,1.25,0.5313,1.25,0.5,1.3125,0.5313,1.25,0.5313,1.3125,0.5313,1.3125,0.5313,1.25,0.5625,1.25,0.5313,1.3125,0.5625,1.25,0.5625,1.3125,0.5625,1.3125,0.5625,1.25,0.5938,1.25,0.5625,1.3125,0.5938,1.25,0.5938,1.3125,0.5938,1.3125,0.5938,1.25,0.625,1.25,0.5938,1.3125,0.625,1.25,0.625,1.3125,0.625,1.3125,0.625,1.25,0.6563,1.25,0.625,1.3125,0.6563,1.25,0.6563,1.3125,0.6563,1.3125,0.6563,1.25,0.6875,1.25,0.6563,1.3125,0.6875,1.25,0.6875,1.3125,0.6875,1.3125,0.6875,1.25,0.7188,1.25,0.6875,1.3125,0.7188,1.25,0.7188,1.3125,0.7188,1.3125,0.7188,1.25,0.75,1.25,0.7188,1.3125,0.75,1.25,0.75,1.3125,0.75,1.3125,0.75,1.25,0.7813,1.25,0.75,1.3125,0.7813,1.25,0.7813,1.3125,0.7813,1.3125,0.7813,1.25,0.8125,1.25,0.7813,1.3125,0.8125,1.25,0.8125,1.3125,0.8125,1.3125,0.8125,1.25,0.8438,1.25,0.8125,1.3125,0.8438,1.25,0.8438,1.3125,0.8438,1.3125,0.8438,1.25,0.875,1.25,0.8438,1.3125,0.875,1.25,0.875,1.3125,0.875,1.3125,0.875,1.25,0.9063,1.25,0.875,1.3125,0.9063,1.25,0.9063,1.3125,0.9063,1.3125,0.9063,1.25,0.9375,1.25,0.9063,1.3125,0.9375,1.25,0.9375,1.3125,0.9375,1.3125,0.9375,1.25,0.9688,1.25,0.9375,1.3125,0.9688,1.25,0.9688,1.3125,0.9688,1.3125,0.9688,1.25,1.0,1.25,0.9688,1.3125,1.0,1.25,1.0,1.3125,0.0,1.25,0.0,1.1875,0.0312,1.1875,0.0,1.25,0.0312,1.1875,0.0312,1.25,0.0312,1.25,0.0312,1.1875,0.0625,1.1875,0.0312,1.25,0.0625,1.1875,0.0625,1.25,0.0625,1.25,0.0625,1.1875,0.0938,1.1875,0.0625,1.25,0.0938,1.1875,0.0938,1.25,0.0938,1.25,0.0938,1.1875,0.125,1.1875,0.0938,1.25,0.125,1.1875,0.125,1.25,0.125,1.25,0.125,1.1875,0.1562,1.1875,0.125,1.25,0.1562,1.1875,0.1562,1.25,0.1562,1.25,0.1562,1.1875,0.1875,1.1875,0.1562,1.25,0.1875,1.1875,0.1875,1.25,0.1875,1.25,0.1875,1.1875,0.2187,1.1875,0.1875,1.25,0.2187,1.1875,0.2187,1.25,0.2187,1.25,0.2187,1.1875,0.25,1.1875,0.2187,1.25,0.25,1.1875,0.25,1.25,0.25,1.25,0.25,1.1875,0.2812,1.1875,0.25,1.25,0.2812,1.1875,0.2812,1.25,0.2812,1.25,0.2812,1.1875,0.3125,1.1875,0.2812,1.25,0.3125,1.1875,0.3125,1.25,0.3125,1.25,0.3125,1.1875,0.3437,1.1875,0.3125,1.25,0.3437,1.1875,0.3437,1.25,0.3437,1.25,0.3437,1.1875,0.375,1.1875,0.3437,1.25,0.375,1.1875,0.375,1.25,0.375,1.25,0.375,1.1875,0.4062,1.1875,0.375,1.25,0.4062,1.1875,0.4062,1.25,0.4062,1.25,0.4062,1.1875,0.4375,1.1875,0.4062,1.25,0.4375,1.1875,0.4375,1.25,0.4375,1.25,0.4375,1.1875,0.4688,1.1875,0.4375,1.25,0.4688,1.1875,0.4688,1.25,0.4688,1.25,0.4688,1.1875,0.5,1.1875,0.4688,1.25,0.5,1.1875,0.5,1.25,0.5,1.25,0.5,1.1875,0.5313,1.1875,0.5,1.25,0.5313,1.1875,0.5313,1.25,0.5313,1.25,0.5313,1.1875,0.5625,1.1875,0.5313,1.25,0.5625,1.1875,0.5625,1.25,0.5625,1.25,0.5625,1.1875,0.5938,1.1875,0.5625,1.25,0.5938,1.1875,0.5938,1.25,0.5938,1.25,0.5938,1.1875,0.625,1.1875,0.5938,1.25,0.625,1.1875,0.625,1.25,0.625,1.25,0.625,1.1875,0.6563,1.1875,0.625,1.25,0.6563,1.1875,0.6563,1.25,0.6563,1.25,0.6563,1.1875,0.6875,1.1875,0.6563,1.25,0.6875,1.1875,0.6875,1.25,0.6875,1.25,0.6875,1.1875,0.7188,1.1875,0.6875,1.25,0.7188,1.1875,0.7188,1.25,0.7188,1.25,0.7188,1.1875,0.75,1.1875,0.7188,1.25,0.75,1.1875,0.75,1.25,0.75,1.25,0.75,1.1875,0.7813,1.1875,0.75,1.25,0.7813,1.1875,0.7813,1.25,0.7813,1.25,0.7813,1.1875,0.8125,1.1875,0.7813,1.25,0.8125,1.1875,0.8125,1.25,0.8125,1.25,0.8125,1.1875,0.8438,1.1875,0.8125,1.25,0.8438,1.1875,0.8438,1.25,0.8438,1.25,0.8438,1.1875,0.875,1.1875,0.8438,1.25,0.875,1.1875,0.875,1.25,0.875,1.25,0.875,1.1875,0.9063,1.1875,0.875,1.25,0.9063,1.1875,0.9063,1.25,0.9063,1.25,0.9063,1.1875,0.9375,1.1875,0.9063,1.25,0.9375,1.1875,0.9375,1.25,0.9375,1.25,0.9375,1.1875,0.9688,1.1875,0.9375,1.25,0.9688,1.1875,0.9688,1.25,0.9688,1.25,0.9688,1.1875,1.0,1.1875,0.9688,1.25,1.0,1.1875,1.0,1.25,0.0,1.1875,0.0,1.125,0.0312,1.125,0.0,1.1875,0.0312,1.125,0.0312,1.1875,0.0312,1.1875,0.0312,1.125,0.0625,1.125,0.0312,1.1875,0.0625,1.125,0.0625,1.1875,0.0625,1.1875,0.0625,1.125,0.0938,1.125,0.0625,1.1875,0.0938,1.125,0.0938,1.1875,0.0938,1.1875,0.0938,1.125,0.125,1.125,0.0938,1.1875,0.125,1.125,0.125,1.1875,0.125,1.1875,0.125,1.125,0.1562,1.125,0.125,1.1875,0.1562,1.125,0.1562,1.1875,0.1562,1.1875,0.1562,1.125,0.1875,1.125,0.1562,1.1875,0.1875,1.125,0.1875,1.1875,0.1875,1.1875,0.1875,1.125,0.2187,1.125,0.1875,1.1875,0.2187,1.125,0.2187,1.1875,0.2187,1.1875,0.2187,1.125,0.25,1.125,0.2187,1.1875,0.25,1.125,0.25,1.1875,0.25,1.1875,0.25,1.125,0.2812,1.125,0.25,1.1875,0.2812,1.125,0.2812,1.1875,0.2812,1.1875,0.2812,1.125,0.3125,1.125,0.2812,1.1875,0.3125,1.125,0.3125,1.1875,0.3125,1.1875,0.3125,1.125,0.3437,1.125,0.3125,1.1875,0.3437,1.125,0.3437,1.1875,0.3437,1.1875,0.3437,1.125,0.375,1.125,0.3437,1.1875,0.375,1.125,0.375,1.1875,0.375,1.1875,0.375,1.125,0.4062,1.125,0.375,1.1875,0.4062,1.125,0.4062,1.1875,0.4062,1.1875,0.4062,1.125,0.4375,1.125,0.4062,1.1875,0.4375,1.125,0.4375,1.1875,0.4375,1.1875,0.4375,1.125,0.4688,1.125,0.4375,1.1875,0.4688,1.125,0.4688,1.1875,0.4688,1.1875,0.4688,1.125,0.5,1.125,0.4688,1.1875,0.5,1.125,0.5,1.1875,0.5,1.1875,0.5,1.125,0.5313,1.125,0.5,1.1875,0.5313,1.125,0.5313,1.1875,0.5313,1.1875,0.5313,1.125,0.5625,1.125,0.5313,1.1875,0.5625,1.125,0.5625,1.1875,0.5625,1.1875,0.5625,1.125,0.5938,1.125,0.5625,1.1875,0.5938,1.125,0.5938,1.1875,0.5938,1.1875,0.5938,1.125,0.625,1.125,0.5938,1.1875,0.625,1.125,0.625,1.1875,0.625,1.1875,0.625,1.125,0.6563,1.125,0.625,1.1875,0.6563,1.125,0.6563,1.1875,0.6563,1.1875,0.6563,1.125,0.6875,1.125,0.6563,1.1875,0.6875,1.125,0.6875,1.1875,0.6875,1.1875,0.6875,1.125,0.7188,1.125,0.6875,1.1875,0.7188,1.125,0.7188,1.1875,0.7188,1.1875,0.7188,1.125,0.75,1.125,0.7188,1.1875,0.75,1.125,0.75,1.1875,0.75,1.1875,0.75,1.125,0.7813,1.125,0.75,1.1875,0.7813,1.125,0.7813,1.1875,0.7813,1.1875,0.7813,1.125,0.8125,1.125,0.7813,1.1875,0.8125,1.125,0.8125,1.1875,0.8125,1.1875,0.8125,1.125,0.8438,1.125,0.8125,1.1875,0.8438,1.125,0.8438,1.1875,0.8438,1.1875,0.8438,1.125,0.875,1.125,0.8438,1.1875,0.875,1.125,0.875,1.1875,0.875,1.1875,0.875,1.125,0.9063,1.125,0.875,1.1875,0.9063,1.125,0.9063,1.1875,0.9063,1.1875,0.9063,1.125,0.9375,1.125,0.9063,1.1875,0.9375,1.125,0.9375,1.1875,0.9375,1.1875,0.9375,1.125,0.9688,1.125,0.9375,1.1875,0.9688,1.125,0.9688,1.1875,0.9688,1.1875,0.9688,1.125,1.0,1.125,0.9688,1.1875,1.0,1.125,1.0,1.1875,0.0,1.125,0.0,1.0625,0.0312,1.0625,0.0,1.125,0.0312,1.0625,0.0312,1.125,0.0312,1.125,0.0312,1.0625,0.0625,1.0625,0.0312,1.125,0.0625,1.0625,0.0625,1.125,0.0625,1.125,0.0625,1.0625,0.0938,1.0625,0.0625,1.125,0.0938,1.0625,0.0938,1.125,0.0938,1.125,0.0938,1.0625,0.125,1.0625,0.0938,1.125,0.125,1.0625,0.125,1.125,0.125,1.125,0.125,1.0625,0.1562,1.0625,0.125,1.125,0.1562,1.0625,0.1562,1.125,0.1562,1.125,0.1562,1.0625,0.1875,1.0625,0.1562,1.125,0.1875,1.0625,0.1875,1.125,0.1875,1.125,0.1875,1.0625,0.2187,1.0625,0.1875,1.125,0.2187,1.0625,0.2187,1.125,0.2187,1.125,0.2187,1.0625,0.25,1.0625,0.2187,1.125,0.25,1.0625,0.25,1.125,0.25,1.125,0.25,1.0625,0.2812,1.0625,0.25,1.125,0.2812,1.0625,0.2812,1.125,0.2812,1.125,0.2812,1.0625,0.3125,1.0625,0.2812,1.125,0.3125,1.0625,0.3125,1.125,0.3125,1.125,0.3125,1.0625,0.3437,1.0625,0.3125,1.125,0.3437,1.0625,0.3437,1.125,0.3437,1.125,0.3437,1.0625,0.375,1.0625,0.3437,1.125,0.375,1.0625,0.375,1.125,0.375,1.125,0.375,1.0625,0.4062,1.0625,0.375,1.125,0.4062,1.0625,0.4062,1.125,0.4062,1.125,0.4062,1.0625,0.4375,1.0625,0.4062,1.125,0.4375,1.0625,0.4375,1.125,0.4375,1.125,0.4375,1.0625,0.4688,1.0625,0.4375,1.125,0.4688,1.0625,0.4688,1.125,0.4688,1.125,0.4688,1.0625,0.5,1.0625,0.4688,1.125,0.5,1.0625,0.5,1.125,0.5,1.125,0.5,1.0625,0.5313,1.0625,0.5,1.125,0.5313,1.0625,0.5313,1.125,0.5313,1.125,0.5313,1.0625,0.5625,1.0625,0.5313,1.125,0.5625,1.0625,0.5625,1.125,0.5625,1.125,0.5625,1.0625,0.5938,1.0625,0.5625,1.125,0.5938,1.0625,0.5938,1.125,0.5938,1.125,0.5938,1.0625,0.625,1.0625,0.5938,1.125,0.625,1.0625,0.625,1.125,0.625,1.125,0.625,1.0625,0.6563,1.0625,0.625,1.125,0.6563,1.0625,0.6563,1.125,0.6563,1.125,0.6563,1.0625,0.6875,1.0625,0.6563,1.125,0.6875,1.0625,0.6875,1.125,0.6875,1.125,0.6875,1.0625,0.7188,1.0625,0.6875,1.125,0.7188,1.0625,0.7188,1.125,0.7188,1.125,0.7188,1.0625,0.75,1.0625,0.7188,1.125,0.75,1.0625,0.75,1.125,0.75,1.125,0.75,1.0625,0.7813,1.0625,0.75,1.125,0.7813,1.0625,0.7813,1.125,0.7813,1.125,0.7813,1.0625,0.8125,1.0625,0.7813,1.125,0.8125,1.0625,0.8125,1.125,0.8125,1.125,0.8125,1.0625,0.8438,1.0625,0.8125,1.125,0.8438,1.0625,0.8438,1.125,0.8438,1.125,0.8438,1.0625,0.875,1.0625,0.8438,1.125,0.875,1.0625,0.875,1.125,0.875,1.125,0.875,1.0625,0.9063,1.0625,0.875,1.125,0.9063,1.0625,0.9063,1.125,0.9063,1.125,0.9063,1.0625,0.9375,1.0625,0.9063,1.125,0.9375,1.0625,0.9375,1.125,0.9375,1.125,0.9375,1.0625,0.9688,1.0625,0.9375,1.125,0.9688,1.0625,0.9688,1.125,0.9688,1.125,0.9688,1.0625,1.0,1.0625,0.9688,1.125,1.0,1.0625,1.0,1.125,0.0,1.0,0.0312,1.0625,0.0,1.0625,0.0312,1.0,0.0625,1.0625,0.0312,1.0625,0.0625,1.0,0.0938,1.0625,0.0625,1.0625,0.0938,1.0,0.125,1.0625,0.0938,1.0625,0.125,1.0,0.1562,1.0625,0.125,1.0625,0.1562,1.0,0.1875,1.0625,0.1562,1.0625,0.1875,1.0,0.2187,1.0625,0.1875,1.0625,0.2187,1.0,0.25,1.0625,0.2187,1.0625,0.25,1.0,0.2812,1.0625,0.25,1.0625,0.2812,1.0,0.3125,1.0625,0.2812,1.0625,0.3125,1.0,0.3437,1.0625,0.3125,1.0625,0.3437,1.0,0.375,1.0625,0.3437,1.0625,0.375,1.0,0.4062,1.0625,0.375,1.0625,0.4062,1.0,0.4375,1.0625,0.4062,1.0625,0.4375,1.0,0.4688,1.0625,0.4375,1.0625,0.4688,1.0,0.5,1.0625,0.4688,1.0625,0.5,1.0,0.5313,1.0625,0.5,1.0625,0.5313,1.0,0.5625,1.0625,0.5313,1.0625,0.5625,1.0,0.5938,1.0625,0.5625,1.0625,0.5938,1.0,0.625,1.0625,0.5938,1.0625,0.625,1.0,0.6563,1.0625,0.625,1.0625,0.6563,1.0,0.6875,1.0625,0.6563,1.0625,0.6875,1.0,0.7188,1.0625,0.6875,1.0625,0.7188,1.0,0.75,1.0625,0.7188,1.0625,0.75,1.0,0.7813,1.0625,0.75,1.0625,0.7813,1.0,0.8125,1.0625,0.7813,1.0625,0.8125,1.0,0.8438,1.0625,0.8125,1.0625,0.8438,1.0,0.875,1.0625,0.8438,1.0625,0.875,1.0,0.9063,1.0625,0.875,1.0625,0.9063,1.0,0.9375,1.0625,0.9063,1.0625,0.9375,1.0,0.9688,1.0625,0.9375,1.0625,0.9688,1.0,1.0,1.0625,0.9688,1.0625],"uvs2":null,"colors":null,"hasVertexAlpha":false,"matricesIndices":null,"matricesWeights":null,"matricesIndicesExtra":null,"matricesWeightsExtra":null,"indices":[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,1984,1985,1986,1987,1988,1989,1990,1991,1992,1993,1994,1995,1996,1997,1998,1999,2000,2001,2002,2003,2004,2005,2006,2007,2008,2009,2010,2011,2012,2013,2014,2015,2016,2017,2018,2019,2020,2021,2022,2023,2024,2025,2026,2027,2028,2029,2030,2031,2032,2033,2034,2035,2036,2037,2038,2039,2040,2041,2042,2043,2044,2045,2046,2047,2048,2049,2050,2051,2052,2053,2054,2055,2056,2057,2058,2059,2060,2061,2062,2063,2064,2065,2066,2067,2068,2069,2070,2071,2072,2073,2074,2075,2076,2077,2078,2079,2080,2081,2082,2083,2084,2085,2086,2087,2088,2089,2090,2091,2092,2093,2094,2095,2096,2097,2098,2099,2100,2101,2102,2103,2104,2105,2106,2107,2108,2109,2110,2111,2112,2113,2114,2115,2116,2117,2118,2119,2120,2121,2122,2123,2124,2125,2126,2127,2128,2129,2130,2131,2132,2133,2134,2135,2136,2137,2138,2139,2140,2141,2142,2143,2144,2145,2146,2147,2148,2149,2150,2151,2152,2153,2154,2155,2156,2157,2158,2159,2160,2161,2162,2163,2164,2165,2166,2167,2168,2169,2170,2171,2172,2173,2174,2175,2176,2177,2178,2179,2180,2181,2182,2183,2184,2185,2186,2187,2188,2189,2190,2191,2192,2193,2194,2195,2196,2197,2198,2199,2200,2201,2202,2203,2204,2205,2206,2207,2208,2209,2210,2211,2212,2213,2214,2215,2216,2217,2218,2219,2220,2221,2222,2223,2224,2225,2226,2227,2228,2229,2230,2231,2232,2233,2234,2235,2236,2237,2238,2239,2240,2241,2242,2243,2244,2245,2246,2247,2248,2249,2250,2251,2252,2253,2254,2255,2256,2257,2258,2259,2260,2261,2262,2263,2264,2265,2266,2267,2268,2269,2270,2271,2272,2273,2274,2275,2276,2277,2278,2279,2280,2281,2282,2283,2284,2285,2286,2287,2288,2289,2290,2291,2292,2293,2294,2295,2296,2297,2298,2299,2300,2301,2302,2303,2304,2305,2306,2307,2308,2309,2310,2311,2312,2313,2314,2315,2316,2317,2318,2319,2320,2321,2322,2323,2324,2325,2326,2327,2328,2329,2330,2331,2332,2333,2334,2335,2336,2337,2338,2339,2340,2341,2342,2343,2344,2345,2346,2347,2348,2349,2350,2351,2352,2353,2354,2355,2356,2357,2358,2359,2360,2361,2362,2363,2364,2365,2366,2367,2368,2369,2370,2371,2372,2373,2374,2375,2376,2377,2378,2379,2380,2381,2382,2383,2384,2385,2386,2387,2388,2389,2390,2391,2392,2393,2394,2395,2396,2397,2398,2399,2400,2401,2402,2403,2404,2405,2406,2407,2408,2409,2410,2411,2412,2413,2414,2415,2416,2417,2418,2419,2420,2421,2422,2423,2424,2425,2426,2427,2428,2429,2430,2431,2432,2433,2434,2435,2436,2437,2438,2439,2440,2441,2442,2443,2444,2445,2446,2447,2448,2449,2450,2451,2452,2453,2454,2455,2456,2457,2458,2459,2460,2461,2462,2463,2464,2465,2466,2467,2468,2469,2470,2471,2472,2473,2474,2475,2476,2477,2478,2479,2480,2481,2482,2483,2484,2485,2486,2487,2488,2489,2490,2491,2492,2493,2494,2495,2496,2497,2498,2499,2500,2501,2502,2503,2504,2505,2506,2507,2508,2509,2510,2511,2512,2513,2514,2515,2516,2517,2518,2519,2520,2521,2522,2523,2524,2525,2526,2527,2528,2529,2530,2531,2532,2533,2534,2535,2536,2537,2538,2539,2540,2541,2542,2543,2544,2545,2546,2547,2548,2549,2550,2551,2552,2553,2554,2555,2556,2557,2558,2559,2560,2561,2562,2563,2564,2565,2566,2567,2568,2569,2570,2571,2572,2573,2574,2575,2576,2577,2578,2579,2580,2581,2582,2583,2584,2585,2586,2587,2588,2589,2590,2591,2592,2593,2594,2595,2596,2597,2598,2599,2600,2601,2602,2603,2604,2605,2606,2607,2608,2609,2610,2611,2612,2613,2614,2615,2616,2617,2618,2619,2620,2621,2622,2623,2624,2625,2626,2627,2628,2629,2630,2631,2632,2633,2634,2635,2636,2637,2638,2639,2640,2641,2642,2643,2644,2645,2646,2647,2648,2649,2650,2651,2652,2653,2654,2655,2656,2657,2658,2659,2660,2661,2662,2663,2664,2665,2666,2667,2668,2669,2670,2671,2672,2673,2674,2675,2676,2677,2678,2679,2680,2681,2682,2683,2684,2685,2686,2687,2688,2689,2690,2691,2692,2693,2694,2695,2696,2697,2698,2699,2700,2701,2702,2703,2704,2705,2706,2707,2708,2709,2710,2711,2712,2713,2714,2715,2716,2717,2718,2719,2720,2721,2722,2723,2724,2725,2726,2727,2728,2729,2730,2731,2732,2733,2734,2735,2736,2737,2738,2739,2740,2741,2742,2743,2744,2745,2746,2747,2748,2749,2750,2751,2752,2753,2754,2755,2756,2757,2758,2759,2760,2761,2762,2763,2764,2765,2766,2767,2768,2769,2770,2771,2772,2773,2774,2775,2776,2777,2778,2779,2780,2781,2782,2783,2784,2785,2786,2787,2788,2789,2790,2791,2792,2793,2794,2795,2796,2797,2798,2799,2800,2801,2802,2803,2804,2805,2806,2807,2808,2809,2810,2811,2812,2813,2814,2815,2816,2817,2818,2819,2820,2821,2822,2823,2824,2825,2826,2827,2828,2829,2830,2831,2832,2833,2834,2835,2836,2837,2838,2839,2840,2841,2842,2843,2844,2845,2846,2847,2848,2849,2850,2851,2852,2853,2854,2855,2856,2857,2858,2859,2860,2861,2862,2863,2864,2865,2866,2867,2868,2869,2870,2871,2872,2873,2874,2875,2876,2877,2878,2879],"receiveShadows":true,"infiniteDistance":false,"billboardMode":0,"visibility":1.0,"subMeshes":[{"materialIndex":0,"verticesStart":0,"verticesCount":2880,"indexStart":0,"indexCount":2880}],"instances":null,"skeletonId":-1,"numBoneInfluencers":4,"applyFog":true,"lodMeshIds":null,"lodDistances":null,"lodCoverages":null,"rotation":null,"scaling":[1.0,1.0,1.0],"rotationQuaternion":[0.0,0.7071,0.0,0.7071],"actions":null,"checkCollisions":false,"pickable":false,"showBoundingBox":false,"showSubMeshesBoundingBox":false,"alphaIndex":1000,"physicsImpostor":0,"physicsMass":0.0,"physicsFriction":0.0,"physicsRestitution":0.0,"name":"StandardSurfaceMesh","id":"57bbf667-4bf9-4453-8787-dd1f8673b543","parentId":null,"position":[6.0,0.0,0.0],"animations":[],"autoAnimate":true,"autoAnimateFrom":0,"autoAnimateTo":100,"autoAnimateLoop":true,"metadata":null}],"sounds":[],"materials":[{"customType":"BABYLON.StandardMaterial","ambient":[1.0,0.0,0.0],"diffuse":[1.0,0.0,0.0],"specular":[0.0,0.0,0.0],"emissive":[0.0,0.0,0.0],"specularPower":25.6,"diffuseTexture":null,"diffuseFresnelParameters":null,"ambientTexture":null,"opacityTexture":null,"opacityFresnelParameters":null,"reflectionTexture":null,"reflectionFresnelParameters":null,"emissiveTexture":null,"lightmapTexture":null,"useLightmapAsShadowmap":false,"emissiveFresnelParameters":null,"specularTexture":null,"bumpTexture":null,"useSpecularOverAlpha":true,"disableLighting":false,"useEmissiveAsIllumination":false,"linkEmissiveWithDiffuse":true,"twoSidedLighting":false,"useGlossinessFromSpecularMapAlpha":false,"name":"StandardMaterialOpaque","id":"814decf0-a4ea-454e-a404-277528478ef5","backFaceCulling":true,"wireframe":false,"alpha":1.0,"alphaMode":2,"maxSimultaneousLights":4,"metadata":{}},{"customType":"BABYLON.PBRMetallicRoughnessMaterial","baseColor":[0.0,1.0,0.0],"baseTexture":null,"metallic":0.0,"roughness":0.0,"metallicRoughnessTexture":null,"disableLighting":false,"invertNormalMapX":false,"invertNormalMapY":false,"normalTexture":null,"emissive":[0.0,0.0,0.0],"emissiveTexture":null,"occlusionStrength":1.0,"occlusionTexture":null,"transparencyMode":0,"doubleSided":false,"clearCoat":{"isEnabled":false,"intensity":1.0,"roughness":0.0,"indexOfRefraction":1.5,"texture":null,"bumpTexture":null,"isTintEnabled":false,"tintColor":[1.0,1.0,1.0],"tintThickness":1.0,"tintTexture":null},"name":"PhysicalMaterialOpaque","id":"e8d366dc-9a25-4d46-80f2-60a95ec88505","backFaceCulling":true,"wireframe":false,"alpha":1.0,"alphaMode":2,"maxSimultaneousLights":4,"metadata":{}},{"customType":"BABYLON.PBRMetallicRoughnessMaterial","baseColor":[0.0,0.0,0.8],"baseTexture":null,"metallic":0.0,"roughness":0.1,"metallicRoughnessTexture":null,"disableLighting":false,"invertNormalMapX":false,"invertNormalMapY":false,"normalTexture":null,"emissive":[0.0,0.0,0.0],"emissiveTexture":null,"occlusionStrength":1.0,"occlusionTexture":null,"transparencyMode":0,"doubleSided":false,"clearCoat":{"isEnabled":false,"intensity":1.0,"roughness":0.0,"indexOfRefraction":1.5,"texture":null,"bumpTexture":null,"isTintEnabled":false,"tintColor":[1.0,1.0,1.0],"tintThickness":1.0,"tintTexture":null},"name":"StandardSurfaceMaterialOpaque","id":"cde211a5-1bb2-4457-b84b-b72fec1b95e2","backFaceCulling":true,"wireframe":false,"alpha":1.0,"alphaMode":2,"maxSimultaneousLights":4,"metadata":{}}],"multiMaterials":[],"particleSystems":null,"lensFlareSystems":null,"shadowGenerators":[],"skeletons":[],"actions":null,"metadata":null,"workerCollisions":false}
\ No newline at end of file
diff --git a/3ds Max/Samples/babylon/BabylonMaterialAttributes/TransparencyMode/Opaque/Opaque.binary.babylon b/3ds Max/Samples/babylon/BabylonMaterialAttributes/TransparencyMode/Opaque/Opaque.binary.babylon
new file mode 100644
index 00000000..03dfdabd
--- /dev/null
+++ b/3ds Max/Samples/babylon/BabylonMaterialAttributes/TransparencyMode/Opaque/Opaque.binary.babylon
@@ -0,0 +1,571 @@
+{
+ "producer": {
+ "name": "3dsmax",
+ "version": "2019",
+ "exporter_version": "1.5.0",
+ "file": "Opaque.babylon"
+ },
+ "autoClear": true,
+ "clearColor": [
+ 0.0,
+ 0.0,
+ 0.0
+ ],
+ "ambientColor": [
+ 0.0,
+ 0.0,
+ 0.0
+ ],
+ "fogMode": 0,
+ "fogColor": null,
+ "fogStart": 0.0,
+ "fogEnd": 0.0,
+ "fogDensity": 0.0,
+ "gravity": [
+ 0.0,
+ 0.0,
+ 0.0
+ ],
+ "physicsEngine": null,
+ "physicsEnabled": false,
+ "physicsGravity": null,
+ "lights": [
+ {
+ "direction": [
+ 0.0,
+ 1.0,
+ 0.0
+ ],
+ "type": 3,
+ "diffuse": [
+ 1.0,
+ 1.0,
+ 1.0
+ ],
+ "specular": [
+ 1.0,
+ 1.0,
+ 1.0
+ ],
+ "intensity": 1.0,
+ "range": 3.40282347E+38,
+ "exponent": 0.0,
+ "angle": 0.0,
+ "groundColor": [
+ 0.0,
+ 0.0,
+ 0.0
+ ],
+ "excludedMeshesIds": null,
+ "includedOnlyMeshesIds": null,
+ "lightmapMode": null,
+ "falloffType": null,
+ "name": "Default light",
+ "id": "4850b65e-9674-4644-baee-48c0a6eb1577",
+ "parentId": null,
+ "position": [
+ 0.0,
+ 0.0,
+ 0.0
+ ],
+ "animations": null,
+ "autoAnimate": false,
+ "autoAnimateFrom": 0,
+ "autoAnimateTo": 0,
+ "autoAnimateLoop": false,
+ "metadata": null
+ }
+ ],
+ "meshes": [
+ {
+ "materialId": "814decf0-a4ea-454e-a404-277528478ef5",
+ "isEnabled": true,
+ "isVisible": true,
+ "positions": null,
+ "normals": null,
+ "tangents": null,
+ "uvs": null,
+ "uvs2": null,
+ "colors": null,
+ "hasVertexAlpha": false,
+ "matricesIndices": null,
+ "matricesWeights": null,
+ "matricesIndicesExtra": null,
+ "matricesWeightsExtra": null,
+ "indices": null,
+ "receiveShadows": true,
+ "infiniteDistance": false,
+ "billboardMode": 0,
+ "visibility": 1.0,
+ "subMeshes": null,
+ "instances": null,
+ "skeletonId": -1,
+ "numBoneInfluencers": 4,
+ "applyFog": true,
+ "lodMeshIds": null,
+ "lodDistances": null,
+ "lodCoverages": null,
+ "rotation": null,
+ "scaling": [
+ 1.0,
+ 1.0,
+ 1.0
+ ],
+ "rotationQuaternion": [
+ 0.0,
+ 0.7071,
+ 0.0,
+ 0.7071
+ ],
+ "actions": null,
+ "checkCollisions": false,
+ "pickable": false,
+ "showBoundingBox": false,
+ "showSubMeshesBoundingBox": false,
+ "alphaIndex": 1000,
+ "physicsImpostor": 0,
+ "physicsMass": 0.0,
+ "physicsFriction": 0.0,
+ "physicsRestitution": 0.0,
+ "name": "StandardMesh",
+ "id": "113f2dbc-dce1-4faa-be71-35277504433b",
+ "parentId": null,
+ "position": [
+ 0.0,
+ 0.0,
+ 0.0
+ ],
+ "animations": [],
+ "autoAnimate": true,
+ "autoAnimateFrom": 0,
+ "autoAnimateTo": 100,
+ "autoAnimateLoop": true,
+ "metadata": null,
+ "boundingBoxMinimum": [
+ -1.0,
+ -1.0,
+ -1.0
+ ],
+ "boundingBoxMaximum": [
+ 1.0,
+ 1.0,
+ 1.0
+ ],
+ "delayLoadingFile": "Opaque.StandardMesh.113f2dbc-dce1-4faa-be71-35277504433b.babylonbinarymeshdata",
+ "hasUVs": true,
+ "_binaryInfo": {
+ "positionsAttrDesc": {
+ "count": 8640,
+ "stride": 3,
+ "offset": 0,
+ "dataType": 1
+ },
+ "normalsAttrDesc": {
+ "count": 8640,
+ "stride": 3,
+ "offset": 34560,
+ "dataType": 1
+ },
+ "uvsAttrDesc": {
+ "count": 5760,
+ "stride": 2,
+ "offset": 69120,
+ "dataType": 1
+ },
+ "indicesAttrDesc": {
+ "count": 2880,
+ "stride": 1,
+ "offset": 92160,
+ "dataType": 0
+ },
+ "subMeshesAttrDesc": {
+ "count": 1,
+ "stride": 5,
+ "offset": 103680,
+ "dataType": 0
+ }
+ }
+ },
+ {
+ "materialId": "e8d366dc-9a25-4d46-80f2-60a95ec88505",
+ "isEnabled": true,
+ "isVisible": true,
+ "positions": null,
+ "normals": null,
+ "tangents": null,
+ "uvs": null,
+ "uvs2": null,
+ "colors": null,
+ "hasVertexAlpha": false,
+ "matricesIndices": null,
+ "matricesWeights": null,
+ "matricesIndicesExtra": null,
+ "matricesWeightsExtra": null,
+ "indices": null,
+ "receiveShadows": true,
+ "infiniteDistance": false,
+ "billboardMode": 0,
+ "visibility": 1.0,
+ "subMeshes": null,
+ "instances": null,
+ "skeletonId": -1,
+ "numBoneInfluencers": 4,
+ "applyFog": true,
+ "lodMeshIds": null,
+ "lodDistances": null,
+ "lodCoverages": null,
+ "rotation": null,
+ "scaling": [
+ 1.0,
+ 1.0,
+ 1.0
+ ],
+ "rotationQuaternion": [
+ 0.0,
+ 0.7071,
+ 0.0,
+ 0.7071
+ ],
+ "actions": null,
+ "checkCollisions": false,
+ "pickable": false,
+ "showBoundingBox": false,
+ "showSubMeshesBoundingBox": false,
+ "alphaIndex": 1000,
+ "physicsImpostor": 0,
+ "physicsMass": 0.0,
+ "physicsFriction": 0.0,
+ "physicsRestitution": 0.0,
+ "name": "PhysicalMesh",
+ "id": "311381f0-8487-4fc5-89fa-7d01dfda5e2f",
+ "parentId": null,
+ "position": [
+ 3.0,
+ 0.0,
+ 0.0
+ ],
+ "animations": [],
+ "autoAnimate": true,
+ "autoAnimateFrom": 0,
+ "autoAnimateTo": 100,
+ "autoAnimateLoop": true,
+ "metadata": null,
+ "boundingBoxMinimum": [
+ -1.0,
+ -1.0,
+ -1.0
+ ],
+ "boundingBoxMaximum": [
+ 1.0,
+ 1.0,
+ 1.0
+ ],
+ "delayLoadingFile": "Opaque.PhysicalMesh.311381f0-8487-4fc5-89fa-7d01dfda5e2f.babylonbinarymeshdata",
+ "hasUVs": true,
+ "_binaryInfo": {
+ "positionsAttrDesc": {
+ "count": 8640,
+ "stride": 3,
+ "offset": 0,
+ "dataType": 1
+ },
+ "normalsAttrDesc": {
+ "count": 8640,
+ "stride": 3,
+ "offset": 34560,
+ "dataType": 1
+ },
+ "uvsAttrDesc": {
+ "count": 5760,
+ "stride": 2,
+ "offset": 69120,
+ "dataType": 1
+ },
+ "indicesAttrDesc": {
+ "count": 2880,
+ "stride": 1,
+ "offset": 92160,
+ "dataType": 0
+ },
+ "subMeshesAttrDesc": {
+ "count": 1,
+ "stride": 5,
+ "offset": 103680,
+ "dataType": 0
+ }
+ }
+ },
+ {
+ "materialId": "cde211a5-1bb2-4457-b84b-b72fec1b95e2",
+ "isEnabled": true,
+ "isVisible": true,
+ "positions": null,
+ "normals": null,
+ "tangents": null,
+ "uvs": null,
+ "uvs2": null,
+ "colors": null,
+ "hasVertexAlpha": false,
+ "matricesIndices": null,
+ "matricesWeights": null,
+ "matricesIndicesExtra": null,
+ "matricesWeightsExtra": null,
+ "indices": null,
+ "receiveShadows": true,
+ "infiniteDistance": false,
+ "billboardMode": 0,
+ "visibility": 1.0,
+ "subMeshes": null,
+ "instances": null,
+ "skeletonId": -1,
+ "numBoneInfluencers": 4,
+ "applyFog": true,
+ "lodMeshIds": null,
+ "lodDistances": null,
+ "lodCoverages": null,
+ "rotation": null,
+ "scaling": [
+ 1.0,
+ 1.0,
+ 1.0
+ ],
+ "rotationQuaternion": [
+ 0.0,
+ 0.7071,
+ 0.0,
+ 0.7071
+ ],
+ "actions": null,
+ "checkCollisions": false,
+ "pickable": false,
+ "showBoundingBox": false,
+ "showSubMeshesBoundingBox": false,
+ "alphaIndex": 1000,
+ "physicsImpostor": 0,
+ "physicsMass": 0.0,
+ "physicsFriction": 0.0,
+ "physicsRestitution": 0.0,
+ "name": "StandardSurfaceMesh",
+ "id": "57bbf667-4bf9-4453-8787-dd1f8673b543",
+ "parentId": null,
+ "position": [
+ 6.0,
+ 0.0,
+ 0.0
+ ],
+ "animations": [],
+ "autoAnimate": true,
+ "autoAnimateFrom": 0,
+ "autoAnimateTo": 100,
+ "autoAnimateLoop": true,
+ "metadata": null,
+ "boundingBoxMinimum": [
+ -1.0,
+ -1.0,
+ -1.0
+ ],
+ "boundingBoxMaximum": [
+ 1.0,
+ 1.0,
+ 1.0
+ ],
+ "delayLoadingFile": "Opaque.StandardSurfaceMesh.57bbf667-4bf9-4453-8787-dd1f8673b543.babylonbinarymeshdata",
+ "hasUVs": true,
+ "_binaryInfo": {
+ "positionsAttrDesc": {
+ "count": 8640,
+ "stride": 3,
+ "offset": 0,
+ "dataType": 1
+ },
+ "normalsAttrDesc": {
+ "count": 8640,
+ "stride": 3,
+ "offset": 34560,
+ "dataType": 1
+ },
+ "uvsAttrDesc": {
+ "count": 5760,
+ "stride": 2,
+ "offset": 69120,
+ "dataType": 1
+ },
+ "indicesAttrDesc": {
+ "count": 2880,
+ "stride": 1,
+ "offset": 92160,
+ "dataType": 0
+ },
+ "subMeshesAttrDesc": {
+ "count": 1,
+ "stride": 5,
+ "offset": 103680,
+ "dataType": 0
+ }
+ }
+ }
+ ],
+ "sounds": [],
+ "materials": [
+ {
+ "customType": "BABYLON.StandardMaterial",
+ "ambient": [
+ 1.0,
+ 0.0,
+ 0.0
+ ],
+ "diffuse": [
+ 1.0,
+ 0.0,
+ 0.0
+ ],
+ "specular": [
+ 0.0,
+ 0.0,
+ 0.0
+ ],
+ "emissive": [
+ 0.0,
+ 0.0,
+ 0.0
+ ],
+ "specularPower": 25.6,
+ "diffuseTexture": null,
+ "diffuseFresnelParameters": null,
+ "ambientTexture": null,
+ "opacityTexture": null,
+ "opacityFresnelParameters": null,
+ "reflectionTexture": null,
+ "reflectionFresnelParameters": null,
+ "emissiveTexture": null,
+ "lightmapTexture": null,
+ "useLightmapAsShadowmap": false,
+ "emissiveFresnelParameters": null,
+ "specularTexture": null,
+ "bumpTexture": null,
+ "useSpecularOverAlpha": true,
+ "disableLighting": false,
+ "useEmissiveAsIllumination": false,
+ "linkEmissiveWithDiffuse": true,
+ "twoSidedLighting": false,
+ "useGlossinessFromSpecularMapAlpha": false,
+ "name": "StandardMaterialOpaque",
+ "id": "814decf0-a4ea-454e-a404-277528478ef5",
+ "backFaceCulling": true,
+ "wireframe": false,
+ "alpha": 1.0,
+ "alphaMode": 2,
+ "maxSimultaneousLights": 4,
+ "metadata": {}
+ },
+ {
+ "customType": "BABYLON.PBRMetallicRoughnessMaterial",
+ "baseColor": [
+ 0.0,
+ 1.0,
+ 0.0
+ ],
+ "baseTexture": null,
+ "metallic": 0.0,
+ "roughness": 0.0,
+ "metallicRoughnessTexture": null,
+ "disableLighting": false,
+ "invertNormalMapX": false,
+ "invertNormalMapY": false,
+ "normalTexture": null,
+ "emissive": [
+ 0.0,
+ 0.0,
+ 0.0
+ ],
+ "emissiveTexture": null,
+ "occlusionStrength": 1.0,
+ "occlusionTexture": null,
+ "transparencyMode": 0,
+ "doubleSided": false,
+ "clearCoat": {
+ "isEnabled": false,
+ "intensity": 1.0,
+ "roughness": 0.0,
+ "indexOfRefraction": 1.5,
+ "texture": null,
+ "bumpTexture": null,
+ "isTintEnabled": false,
+ "tintColor": [
+ 1.0,
+ 1.0,
+ 1.0
+ ],
+ "tintThickness": 1.0,
+ "tintTexture": null
+ },
+ "name": "PhysicalMaterialOpaque",
+ "id": "e8d366dc-9a25-4d46-80f2-60a95ec88505",
+ "backFaceCulling": true,
+ "wireframe": false,
+ "alpha": 1.0,
+ "alphaMode": 2,
+ "maxSimultaneousLights": 4,
+ "metadata": {}
+ },
+ {
+ "customType": "BABYLON.PBRMetallicRoughnessMaterial",
+ "baseColor": [
+ 0.0,
+ 0.0,
+ 0.8
+ ],
+ "baseTexture": null,
+ "metallic": 0.0,
+ "roughness": 0.1,
+ "metallicRoughnessTexture": null,
+ "disableLighting": false,
+ "invertNormalMapX": false,
+ "invertNormalMapY": false,
+ "normalTexture": null,
+ "emissive": [
+ 0.0,
+ 0.0,
+ 0.0
+ ],
+ "emissiveTexture": null,
+ "occlusionStrength": 1.0,
+ "occlusionTexture": null,
+ "transparencyMode": 0,
+ "doubleSided": false,
+ "clearCoat": {
+ "isEnabled": false,
+ "intensity": 1.0,
+ "roughness": 0.0,
+ "indexOfRefraction": 1.5,
+ "texture": null,
+ "bumpTexture": null,
+ "isTintEnabled": false,
+ "tintColor": [
+ 1.0,
+ 1.0,
+ 1.0
+ ],
+ "tintThickness": 1.0,
+ "tintTexture": null
+ },
+ "name": "StandardSurfaceMaterialOpaque",
+ "id": "cde211a5-1bb2-4457-b84b-b72fec1b95e2",
+ "backFaceCulling": true,
+ "wireframe": false,
+ "alpha": 1.0,
+ "alphaMode": 2,
+ "maxSimultaneousLights": 4,
+ "metadata": {}
+ }
+ ],
+ "multiMaterials": [],
+ "particleSystems": null,
+ "lensFlareSystems": null,
+ "shadowGenerators": [],
+ "skeletons": [],
+ "actions": null,
+ "metadata": null,
+ "workerCollisions": false,
+ "useDelayedTextureLoading": true
+}
\ No newline at end of file
diff --git a/3ds Max/Samples/babylon/BabylonMaterialAttributes/Unlit.babylon b/3ds Max/Samples/babylon/BabylonMaterialAttributes/Unlit.babylon
new file mode 100644
index 00000000..e7637b34
--- /dev/null
+++ b/3ds Max/Samples/babylon/BabylonMaterialAttributes/Unlit.babylon
@@ -0,0 +1 @@
+{"producer":{"name":"3dsmax","version":"2019","exporter_version":"1.5.0","file":"Unlit.babylon"},"autoClear":true,"clearColor":[0.0,0.0,0.0],"ambientColor":[0.0,0.0,0.0],"fogMode":0,"fogColor":null,"fogStart":0.0,"fogEnd":0.0,"fogDensity":0.0,"gravity":[0.0,0.0,0.0],"physicsEngine":null,"physicsEnabled":false,"physicsGravity":null,"lights":[{"direction":[0.0,1.0,0.0],"type":3,"diffuse":[1.0,1.0,1.0],"specular":[1.0,1.0,1.0],"intensity":1.0,"range":3.40282347E+38,"exponent":0.0,"angle":0.0,"groundColor":[0.0,0.0,0.0],"excludedMeshesIds":null,"includedOnlyMeshesIds":null,"lightmapMode":null,"falloffType":null,"name":"Default light","id":"c7c7f892-8074-47ac-a0d6-ad4e4793ba6d","parentId":null,"position":[0.0,0.0,0.0],"animations":null,"autoAnimate":false,"autoAnimateFrom":0,"autoAnimateTo":0,"autoAnimateLoop":false,"metadata":null}],"meshes":[{"materialId":"814decf0-a4ea-454e-a404-277528478ef5","isEnabled":true,"isVisible":true,"positions":[0.0,1.0,0.0,0.0,0.9808,0.1951,-0.0381,0.9808,0.1913,0.0,1.0,0.0,-0.0381,0.9808,0.1913,-0.0747,0.9808,0.1802,0.0,1.0,0.0,-0.0747,0.9808,0.1802,-0.1084,0.9808,0.1622,0.0,1.0,0.0,-0.1084,0.9808,0.1622,-0.1379,0.9808,0.1379,0.0,1.0,0.0,-0.1379,0.9808,0.1379,-0.1622,0.9808,0.1084,0.0,1.0,0.0,-0.1622,0.9808,0.1084,-0.1802,0.9808,0.0747,0.0,1.0,0.0,-0.1802,0.9808,0.0747,-0.1913,0.9808,0.0381,0.0,1.0,0.0,-0.1913,0.9808,0.0381,-0.1951,0.9808,0.0,0.0,1.0,0.0,-0.1951,0.9808,0.0,-0.1913,0.9808,-0.0381,0.0,1.0,0.0,-0.1913,0.9808,-0.0381,-0.1802,0.9808,-0.0747,0.0,1.0,0.0,-0.1802,0.9808,-0.0747,-0.1622,0.9808,-0.1084,0.0,1.0,0.0,-0.1622,0.9808,-0.1084,-0.1379,0.9808,-0.1379,0.0,1.0,0.0,-0.1379,0.9808,-0.1379,-0.1084,0.9808,-0.1622,0.0,1.0,0.0,-0.1084,0.9808,-0.1622,-0.0747,0.9808,-0.1802,0.0,1.0,0.0,-0.0747,0.9808,-0.1802,-0.0381,0.9808,-0.1913,0.0,1.0,0.0,-0.0381,0.9808,-0.1913,0.0,0.9808,-0.1951,0.0,1.0,0.0,0.0,0.9808,-0.1951,0.0381,0.9808,-0.1913,0.0,1.0,0.0,0.0381,0.9808,-0.1913,0.0747,0.9808,-0.1802,0.0,1.0,0.0,0.0747,0.9808,-0.1802,0.1084,0.9808,-0.1622,0.0,1.0,0.0,0.1084,0.9808,-0.1622,0.1379,0.9808,-0.1379,0.0,1.0,0.0,0.1379,0.9808,-0.1379,0.1622,0.9808,-0.1084,0.0,1.0,0.0,0.1622,0.9808,-0.1084,0.1802,0.9808,-0.0747,0.0,1.0,0.0,0.1802,0.9808,-0.0747,0.1913,0.9808,-0.0381,0.0,1.0,0.0,0.1913,0.9808,-0.0381,0.1951,0.9808,0.0,0.0,1.0,0.0,0.1951,0.9808,0.0,0.1913,0.9808,0.0381,0.0,1.0,0.0,0.1913,0.9808,0.0381,0.1802,0.9808,0.0747,0.0,1.0,0.0,0.1802,0.9808,0.0747,0.1622,0.9808,0.1084,0.0,1.0,0.0,0.1622,0.9808,0.1084,0.1379,0.9808,0.1379,0.0,1.0,0.0,0.1379,0.9808,0.1379,0.1084,0.9808,0.1622,0.0,1.0,0.0,0.1084,0.9808,0.1622,0.0747,0.9808,0.1802,0.0,1.0,0.0,0.0747,0.9808,0.1802,0.0381,0.9808,0.1913,0.0,1.0,0.0,0.0381,0.9808,0.1913,0.0,0.9808,0.1951,0.0,0.9808,0.1951,0.0,0.9239,0.3827,-0.0747,0.9239,0.3753,0.0,0.9808,0.1951,-0.0747,0.9239,0.3753,-0.0381,0.9808,0.1913,-0.0381,0.9808,0.1913,-0.0747,0.9239,0.3753,-0.1464,0.9239,0.3536,-0.0381,0.9808,0.1913,-0.1464,0.9239,0.3536,-0.0747,0.9808,0.1802,-0.0747,0.9808,0.1802,-0.1464,0.9239,0.3536,-0.2126,0.9239,0.3182,-0.0747,0.9808,0.1802,-0.2126,0.9239,0.3182,-0.1084,0.9808,0.1622,-0.1084,0.9808,0.1622,-0.2126,0.9239,0.3182,-0.2706,0.9239,0.2706,-0.1084,0.9808,0.1622,-0.2706,0.9239,0.2706,-0.1379,0.9808,0.1379,-0.1379,0.9808,0.1379,-0.2706,0.9239,0.2706,-0.3182,0.9239,0.2126,-0.1379,0.9808,0.1379,-0.3182,0.9239,0.2126,-0.1622,0.9808,0.1084,-0.1622,0.9808,0.1084,-0.3182,0.9239,0.2126,-0.3536,0.9239,0.1464,-0.1622,0.9808,0.1084,-0.3536,0.9239,0.1464,-0.1802,0.9808,0.0747,-0.1802,0.9808,0.0747,-0.3536,0.9239,0.1464,-0.3753,0.9239,0.0747,-0.1802,0.9808,0.0747,-0.3753,0.9239,0.0747,-0.1913,0.9808,0.0381,-0.1913,0.9808,0.0381,-0.3753,0.9239,0.0747,-0.3827,0.9239,0.0,-0.1913,0.9808,0.0381,-0.3827,0.9239,0.0,-0.1951,0.9808,0.0,-0.1951,0.9808,0.0,-0.3827,0.9239,0.0,-0.3753,0.9239,-0.0747,-0.1951,0.9808,0.0,-0.3753,0.9239,-0.0747,-0.1913,0.9808,-0.0381,-0.1913,0.9808,-0.0381,-0.3753,0.9239,-0.0747,-0.3536,0.9239,-0.1464,-0.1913,0.9808,-0.0381,-0.3536,0.9239,-0.1464,-0.1802,0.9808,-0.0747,-0.1802,0.9808,-0.0747,-0.3536,0.9239,-0.1464,-0.3182,0.9239,-0.2126,-0.1802,0.9808,-0.0747,-0.3182,0.9239,-0.2126,-0.1622,0.9808,-0.1084,-0.1622,0.9808,-0.1084,-0.3182,0.9239,-0.2126,-0.2706,0.9239,-0.2706,-0.1622,0.9808,-0.1084,-0.2706,0.9239,-0.2706,-0.1379,0.9808,-0.1379,-0.1379,0.9808,-0.1379,-0.2706,0.9239,-0.2706,-0.2126,0.9239,-0.3182,-0.1379,0.9808,-0.1379,-0.2126,0.9239,-0.3182,-0.1084,0.9808,-0.1622,-0.1084,0.9808,-0.1622,-0.2126,0.9239,-0.3182,-0.1464,0.9239,-0.3536,-0.1084,0.9808,-0.1622,-0.1464,0.9239,-0.3536,-0.0747,0.9808,-0.1802,-0.0747,0.9808,-0.1802,-0.1464,0.9239,-0.3536,-0.0747,0.9239,-0.3753,-0.0747,0.9808,-0.1802,-0.0747,0.9239,-0.3753,-0.0381,0.9808,-0.1913,-0.0381,0.9808,-0.1913,-0.0747,0.9239,-0.3753,0.0,0.9239,-0.3827,-0.0381,0.9808,-0.1913,0.0,0.9239,-0.3827,0.0,0.9808,-0.1951,0.0,0.9808,-0.1951,0.0,0.9239,-0.3827,0.0747,0.9239,-0.3753,0.0,0.9808,-0.1951,0.0747,0.9239,-0.3753,0.0381,0.9808,-0.1913,0.0381,0.9808,-0.1913,0.0747,0.9239,-0.3753,0.1464,0.9239,-0.3536,0.0381,0.9808,-0.1913,0.1464,0.9239,-0.3536,0.0747,0.9808,-0.1802,0.0747,0.9808,-0.1802,0.1464,0.9239,-0.3536,0.2126,0.9239,-0.3182,0.0747,0.9808,-0.1802,0.2126,0.9239,-0.3182,0.1084,0.9808,-0.1622,0.1084,0.9808,-0.1622,0.2126,0.9239,-0.3182,0.2706,0.9239,-0.2706,0.1084,0.9808,-0.1622,0.2706,0.9239,-0.2706,0.1379,0.9808,-0.1379,0.1379,0.9808,-0.1379,0.2706,0.9239,-0.2706,0.3182,0.9239,-0.2126,0.1379,0.9808,-0.1379,0.3182,0.9239,-0.2126,0.1622,0.9808,-0.1084,0.1622,0.9808,-0.1084,0.3182,0.9239,-0.2126,0.3536,0.9239,-0.1464,0.1622,0.9808,-0.1084,0.3536,0.9239,-0.1464,0.1802,0.9808,-0.0747,0.1802,0.9808,-0.0747,0.3536,0.9239,-0.1464,0.3753,0.9239,-0.0747,0.1802,0.9808,-0.0747,0.3753,0.9239,-0.0747,0.1913,0.9808,-0.0381,0.1913,0.9808,-0.0381,0.3753,0.9239,-0.0747,0.3827,0.9239,0.0,0.1913,0.9808,-0.0381,0.3827,0.9239,0.0,0.1951,0.9808,0.0,0.1951,0.9808,0.0,0.3827,0.9239,0.0,0.3753,0.9239,0.0747,0.1951,0.9808,0.0,0.3753,0.9239,0.0747,0.1913,0.9808,0.0381,0.1913,0.9808,0.0381,0.3753,0.9239,0.0747,0.3536,0.9239,0.1464,0.1913,0.9808,0.0381,0.3536,0.9239,0.1464,0.1802,0.9808,0.0747,0.1802,0.9808,0.0747,0.3536,0.9239,0.1464,0.3182,0.9239,0.2126,0.1802,0.9808,0.0747,0.3182,0.9239,0.2126,0.1622,0.9808,0.1084,0.1622,0.9808,0.1084,0.3182,0.9239,0.2126,0.2706,0.9239,0.2706,0.1622,0.9808,0.1084,0.2706,0.9239,0.2706,0.1379,0.9808,0.1379,0.1379,0.9808,0.1379,0.2706,0.9239,0.2706,0.2126,0.9239,0.3182,0.1379,0.9808,0.1379,0.2126,0.9239,0.3182,0.1084,0.9808,0.1622,0.1084,0.9808,0.1622,0.2126,0.9239,0.3182,0.1464,0.9239,0.3536,0.1084,0.9808,0.1622,0.1464,0.9239,0.3536,0.0747,0.9808,0.1802,0.0747,0.9808,0.1802,0.1464,0.9239,0.3536,0.0747,0.9239,0.3753,0.0747,0.9808,0.1802,0.0747,0.9239,0.3753,0.0381,0.9808,0.1913,0.0381,0.9808,0.1913,0.0747,0.9239,0.3753,0.0,0.9239,0.3827,0.0381,0.9808,0.1913,0.0,0.9239,0.3827,0.0,0.9808,0.1951,0.0,0.9239,0.3827,0.0,0.8315,0.5556,-0.1084,0.8315,0.5449,0.0,0.9239,0.3827,-0.1084,0.8315,0.5449,-0.0747,0.9239,0.3753,-0.0747,0.9239,0.3753,-0.1084,0.8315,0.5449,-0.2126,0.8315,0.5133,-0.0747,0.9239,0.3753,-0.2126,0.8315,0.5133,-0.1464,0.9239,0.3536,-0.1464,0.9239,0.3536,-0.2126,0.8315,0.5133,-0.3087,0.8315,0.4619,-0.1464,0.9239,0.3536,-0.3087,0.8315,0.4619,-0.2126,0.9239,0.3182,-0.2126,0.9239,0.3182,-0.3087,0.8315,0.4619,-0.3928,0.8315,0.3928,-0.2126,0.9239,0.3182,-0.3928,0.8315,0.3928,-0.2706,0.9239,0.2706,-0.2706,0.9239,0.2706,-0.3928,0.8315,0.3928,-0.4619,0.8315,0.3087,-0.2706,0.9239,0.2706,-0.4619,0.8315,0.3087,-0.3182,0.9239,0.2126,-0.3182,0.9239,0.2126,-0.4619,0.8315,0.3087,-0.5133,0.8315,0.2126,-0.3182,0.9239,0.2126,-0.5133,0.8315,0.2126,-0.3536,0.9239,0.1464,-0.3536,0.9239,0.1464,-0.5133,0.8315,0.2126,-0.5449,0.8315,0.1084,-0.3536,0.9239,0.1464,-0.5449,0.8315,0.1084,-0.3753,0.9239,0.0747,-0.3753,0.9239,0.0747,-0.5449,0.8315,0.1084,-0.5556,0.8315,0.0,-0.3753,0.9239,0.0747,-0.5556,0.8315,0.0,-0.3827,0.9239,0.0,-0.3827,0.9239,0.0,-0.5556,0.8315,0.0,-0.5449,0.8315,-0.1084,-0.3827,0.9239,0.0,-0.5449,0.8315,-0.1084,-0.3753,0.9239,-0.0747,-0.3753,0.9239,-0.0747,-0.5449,0.8315,-0.1084,-0.5133,0.8315,-0.2126,-0.3753,0.9239,-0.0747,-0.5133,0.8315,-0.2126,-0.3536,0.9239,-0.1464,-0.3536,0.9239,-0.1464,-0.5133,0.8315,-0.2126,-0.4619,0.8315,-0.3087,-0.3536,0.9239,-0.1464,-0.4619,0.8315,-0.3087,-0.3182,0.9239,-0.2126,-0.3182,0.9239,-0.2126,-0.4619,0.8315,-0.3087,-0.3928,0.8315,-0.3928,-0.3182,0.9239,-0.2126,-0.3928,0.8315,-0.3928,-0.2706,0.9239,-0.2706,-0.2706,0.9239,-0.2706,-0.3928,0.8315,-0.3928,-0.3087,0.8315,-0.4619,-0.2706,0.9239,-0.2706,-0.3087,0.8315,-0.4619,-0.2126,0.9239,-0.3182,-0.2126,0.9239,-0.3182,-0.3087,0.8315,-0.4619,-0.2126,0.8315,-0.5133,-0.2126,0.9239,-0.3182,-0.2126,0.8315,-0.5133,-0.1464,0.9239,-0.3536,-0.1464,0.9239,-0.3536,-0.2126,0.8315,-0.5133,-0.1084,0.8315,-0.5449,-0.1464,0.9239,-0.3536,-0.1084,0.8315,-0.5449,-0.0747,0.9239,-0.3753,-0.0747,0.9239,-0.3753,-0.1084,0.8315,-0.5449,0.0,0.8315,-0.5556,-0.0747,0.9239,-0.3753,0.0,0.8315,-0.5556,0.0,0.9239,-0.3827,0.0,0.9239,-0.3827,0.0,0.8315,-0.5556,0.1084,0.8315,-0.5449,0.0,0.9239,-0.3827,0.1084,0.8315,-0.5449,0.0747,0.9239,-0.3753,0.0747,0.9239,-0.3753,0.1084,0.8315,-0.5449,0.2126,0.8315,-0.5133,0.0747,0.9239,-0.3753,0.2126,0.8315,-0.5133,0.1464,0.9239,-0.3536,0.1464,0.9239,-0.3536,0.2126,0.8315,-0.5133,0.3087,0.8315,-0.4619,0.1464,0.9239,-0.3536,0.3087,0.8315,-0.4619,0.2126,0.9239,-0.3182,0.2126,0.9239,-0.3182,0.3087,0.8315,-0.4619,0.3928,0.8315,-0.3928,0.2126,0.9239,-0.3182,0.3928,0.8315,-0.3928,0.2706,0.9239,-0.2706,0.2706,0.9239,-0.2706,0.3928,0.8315,-0.3928,0.4619,0.8315,-0.3087,0.2706,0.9239,-0.2706,0.4619,0.8315,-0.3087,0.3182,0.9239,-0.2126,0.3182,0.9239,-0.2126,0.4619,0.8315,-0.3087,0.5133,0.8315,-0.2126,0.3182,0.9239,-0.2126,0.5133,0.8315,-0.2126,0.3536,0.9239,-0.1464,0.3536,0.9239,-0.1464,0.5133,0.8315,-0.2126,0.5449,0.8315,-0.1084,0.3536,0.9239,-0.1464,0.5449,0.8315,-0.1084,0.3753,0.9239,-0.0747,0.3753,0.9239,-0.0747,0.5449,0.8315,-0.1084,0.5556,0.8315,0.0,0.3753,0.9239,-0.0747,0.5556,0.8315,0.0,0.3827,0.9239,0.0,0.3827,0.9239,0.0,0.5556,0.8315,0.0,0.5449,0.8315,0.1084,0.3827,0.9239,0.0,0.5449,0.8315,0.1084,0.3753,0.9239,0.0747,0.3753,0.9239,0.0747,0.5449,0.8315,0.1084,0.5133,0.8315,0.2126,0.3753,0.9239,0.0747,0.5133,0.8315,0.2126,0.3536,0.9239,0.1464,0.3536,0.9239,0.1464,0.5133,0.8315,0.2126,0.4619,0.8315,0.3087,0.3536,0.9239,0.1464,0.4619,0.8315,0.3087,0.3182,0.9239,0.2126,0.3182,0.9239,0.2126,0.4619,0.8315,0.3087,0.3928,0.8315,0.3928,0.3182,0.9239,0.2126,0.3928,0.8315,0.3928,0.2706,0.9239,0.2706,0.2706,0.9239,0.2706,0.3928,0.8315,0.3928,0.3087,0.8315,0.4619,0.2706,0.9239,0.2706,0.3087,0.8315,0.4619,0.2126,0.9239,0.3182,0.2126,0.9239,0.3182,0.3087,0.8315,0.4619,0.2126,0.8315,0.5133,0.2126,0.9239,0.3182,0.2126,0.8315,0.5133,0.1464,0.9239,0.3536,0.1464,0.9239,0.3536,0.2126,0.8315,0.5133,0.1084,0.8315,0.5449,0.1464,0.9239,0.3536,0.1084,0.8315,0.5449,0.0747,0.9239,0.3753,0.0747,0.9239,0.3753,0.1084,0.8315,0.5449,0.0,0.8315,0.5556,0.0747,0.9239,0.3753,0.0,0.8315,0.5556,0.0,0.9239,0.3827,0.0,0.8315,0.5556,0.0,0.7071,0.7071,-0.1379,0.7071,0.6935,0.0,0.8315,0.5556,-0.1379,0.7071,0.6935,-0.1084,0.8315,0.5449,-0.1084,0.8315,0.5449,-0.1379,0.7071,0.6935,-0.2706,0.7071,0.6533,-0.1084,0.8315,0.5449,-0.2706,0.7071,0.6533,-0.2126,0.8315,0.5133,-0.2126,0.8315,0.5133,-0.2706,0.7071,0.6533,-0.3928,0.7071,0.5879,-0.2126,0.8315,0.5133,-0.3928,0.7071,0.5879,-0.3087,0.8315,0.4619,-0.3087,0.8315,0.4619,-0.3928,0.7071,0.5879,-0.5,0.7071,0.5,-0.3087,0.8315,0.4619,-0.5,0.7071,0.5,-0.3928,0.8315,0.3928,-0.3928,0.8315,0.3928,-0.5,0.7071,0.5,-0.5879,0.7071,0.3928,-0.3928,0.8315,0.3928,-0.5879,0.7071,0.3928,-0.4619,0.8315,0.3087,-0.4619,0.8315,0.3087,-0.5879,0.7071,0.3928,-0.6533,0.7071,0.2706,-0.4619,0.8315,0.3087,-0.6533,0.7071,0.2706,-0.5133,0.8315,0.2126,-0.5133,0.8315,0.2126,-0.6533,0.7071,0.2706,-0.6935,0.7071,0.1379,-0.5133,0.8315,0.2126,-0.6935,0.7071,0.1379,-0.5449,0.8315,0.1084,-0.5449,0.8315,0.1084,-0.6935,0.7071,0.1379,-0.7071,0.7071,0.0,-0.5449,0.8315,0.1084,-0.7071,0.7071,0.0,-0.5556,0.8315,0.0,-0.5556,0.8315,0.0,-0.7071,0.7071,0.0,-0.6935,0.7071,-0.1379,-0.5556,0.8315,0.0,-0.6935,0.7071,-0.1379,-0.5449,0.8315,-0.1084,-0.5449,0.8315,-0.1084,-0.6935,0.7071,-0.1379,-0.6533,0.7071,-0.2706,-0.5449,0.8315,-0.1084,-0.6533,0.7071,-0.2706,-0.5133,0.8315,-0.2126,-0.5133,0.8315,-0.2126,-0.6533,0.7071,-0.2706,-0.5879,0.7071,-0.3928,-0.5133,0.8315,-0.2126,-0.5879,0.7071,-0.3928,-0.4619,0.8315,-0.3087,-0.4619,0.8315,-0.3087,-0.5879,0.7071,-0.3928,-0.5,0.7071,-0.5,-0.4619,0.8315,-0.3087,-0.5,0.7071,-0.5,-0.3928,0.8315,-0.3928,-0.3928,0.8315,-0.3928,-0.5,0.7071,-0.5,-0.3928,0.7071,-0.5879,-0.3928,0.8315,-0.3928,-0.3928,0.7071,-0.5879,-0.3087,0.8315,-0.4619,-0.3087,0.8315,-0.4619,-0.3928,0.7071,-0.5879,-0.2706,0.7071,-0.6533,-0.3087,0.8315,-0.4619,-0.2706,0.7071,-0.6533,-0.2126,0.8315,-0.5133,-0.2126,0.8315,-0.5133,-0.2706,0.7071,-0.6533,-0.1379,0.7071,-0.6935,-0.2126,0.8315,-0.5133,-0.1379,0.7071,-0.6935,-0.1084,0.8315,-0.5449,-0.1084,0.8315,-0.5449,-0.1379,0.7071,-0.6935,0.0,0.7071,-0.7071,-0.1084,0.8315,-0.5449,0.0,0.7071,-0.7071,0.0,0.8315,-0.5556,0.0,0.8315,-0.5556,0.0,0.7071,-0.7071,0.138,0.7071,-0.6935,0.0,0.8315,-0.5556,0.138,0.7071,-0.6935,0.1084,0.8315,-0.5449,0.1084,0.8315,-0.5449,0.138,0.7071,-0.6935,0.2706,0.7071,-0.6533,0.1084,0.8315,-0.5449,0.2706,0.7071,-0.6533,0.2126,0.8315,-0.5133,0.2126,0.8315,-0.5133,0.2706,0.7071,-0.6533,0.3928,0.7071,-0.5879,0.2126,0.8315,-0.5133,0.3928,0.7071,-0.5879,0.3087,0.8315,-0.4619,0.3087,0.8315,-0.4619,0.3928,0.7071,-0.5879,0.5,0.7071,-0.5,0.3087,0.8315,-0.4619,0.5,0.7071,-0.5,0.3928,0.8315,-0.3928,0.3928,0.8315,-0.3928,0.5,0.7071,-0.5,0.5879,0.7071,-0.3928,0.3928,0.8315,-0.3928,0.5879,0.7071,-0.3928,0.4619,0.8315,-0.3087,0.4619,0.8315,-0.3087,0.5879,0.7071,-0.3928,0.6533,0.7071,-0.2706,0.4619,0.8315,-0.3087,0.6533,0.7071,-0.2706,0.5133,0.8315,-0.2126,0.5133,0.8315,-0.2126,0.6533,0.7071,-0.2706,0.6935,0.7071,-0.1379,0.5133,0.8315,-0.2126,0.6935,0.7071,-0.1379,0.5449,0.8315,-0.1084,0.5449,0.8315,-0.1084,0.6935,0.7071,-0.1379,0.7071,0.7071,0.0,0.5449,0.8315,-0.1084,0.7071,0.7071,0.0,0.5556,0.8315,0.0,0.5556,0.8315,0.0,0.7071,0.7071,0.0,0.6935,0.7071,0.138,0.5556,0.8315,0.0,0.6935,0.7071,0.138,0.5449,0.8315,0.1084,0.5449,0.8315,0.1084,0.6935,0.7071,0.138,0.6533,0.7071,0.2706,0.5449,0.8315,0.1084,0.6533,0.7071,0.2706,0.5133,0.8315,0.2126,0.5133,0.8315,0.2126,0.6533,0.7071,0.2706,0.5879,0.7071,0.3928,0.5133,0.8315,0.2126,0.5879,0.7071,0.3928,0.4619,0.8315,0.3087,0.4619,0.8315,0.3087,0.5879,0.7071,0.3928,0.5,0.7071,0.5,0.4619,0.8315,0.3087,0.5,0.7071,0.5,0.3928,0.8315,0.3928,0.3928,0.8315,0.3928,0.5,0.7071,0.5,0.3928,0.7071,0.5879,0.3928,0.8315,0.3928,0.3928,0.7071,0.5879,0.3087,0.8315,0.4619,0.3087,0.8315,0.4619,0.3928,0.7071,0.5879,0.2706,0.7071,0.6533,0.3087,0.8315,0.4619,0.2706,0.7071,0.6533,0.2126,0.8315,0.5133,0.2126,0.8315,0.5133,0.2706,0.7071,0.6533,0.1379,0.7071,0.6935,0.2126,0.8315,0.5133,0.1379,0.7071,0.6935,0.1084,0.8315,0.5449,0.1084,0.8315,0.5449,0.1379,0.7071,0.6935,0.0,0.7071,0.7071,0.1084,0.8315,0.5449,0.0,0.7071,0.7071,0.0,0.8315,0.5556,0.0,0.7071,0.7071,0.0,0.5556,0.8315,-0.1622,0.5556,0.8155,0.0,0.7071,0.7071,-0.1622,0.5556,0.8155,-0.1379,0.7071,0.6935,-0.1379,0.7071,0.6935,-0.1622,0.5556,0.8155,-0.3182,0.5556,0.7682,-0.1379,0.7071,0.6935,-0.3182,0.5556,0.7682,-0.2706,0.7071,0.6533,-0.2706,0.7071,0.6533,-0.3182,0.5556,0.7682,-0.4619,0.5556,0.6913,-0.2706,0.7071,0.6533,-0.4619,0.5556,0.6913,-0.3928,0.7071,0.5879,-0.3928,0.7071,0.5879,-0.4619,0.5556,0.6913,-0.5879,0.5556,0.5879,-0.3928,0.7071,0.5879,-0.5879,0.5556,0.5879,-0.5,0.7071,0.5,-0.5,0.7071,0.5,-0.5879,0.5556,0.5879,-0.6913,0.5556,0.4619,-0.5,0.7071,0.5,-0.6913,0.5556,0.4619,-0.5879,0.7071,0.3928,-0.5879,0.7071,0.3928,-0.6913,0.5556,0.4619,-0.7682,0.5556,0.3182,-0.5879,0.7071,0.3928,-0.7682,0.5556,0.3182,-0.6533,0.7071,0.2706,-0.6533,0.7071,0.2706,-0.7682,0.5556,0.3182,-0.8155,0.5556,0.1622,-0.6533,0.7071,0.2706,-0.8155,0.5556,0.1622,-0.6935,0.7071,0.1379,-0.6935,0.7071,0.1379,-0.8155,0.5556,0.1622,-0.8315,0.5556,0.0,-0.6935,0.7071,0.1379,-0.8315,0.5556,0.0,-0.7071,0.7071,0.0,-0.7071,0.7071,0.0,-0.8315,0.5556,0.0,-0.8155,0.5556,-0.1622,-0.7071,0.7071,0.0,-0.8155,0.5556,-0.1622,-0.6935,0.7071,-0.1379,-0.6935,0.7071,-0.1379,-0.8155,0.5556,-0.1622,-0.7682,0.5556,-0.3182,-0.6935,0.7071,-0.1379,-0.7682,0.5556,-0.3182,-0.6533,0.7071,-0.2706,-0.6533,0.7071,-0.2706,-0.7682,0.5556,-0.3182,-0.6913,0.5556,-0.4619,-0.6533,0.7071,-0.2706,-0.6913,0.5556,-0.4619,-0.5879,0.7071,-0.3928,-0.5879,0.7071,-0.3928,-0.6913,0.5556,-0.4619,-0.5879,0.5556,-0.5879,-0.5879,0.7071,-0.3928,-0.5879,0.5556,-0.5879,-0.5,0.7071,-0.5,-0.5,0.7071,-0.5,-0.5879,0.5556,-0.5879,-0.4619,0.5556,-0.6913,-0.5,0.7071,-0.5,-0.4619,0.5556,-0.6913,-0.3928,0.7071,-0.5879,-0.3928,0.7071,-0.5879,-0.4619,0.5556,-0.6913,-0.3182,0.5556,-0.7682,-0.3928,0.7071,-0.5879,-0.3182,0.5556,-0.7682,-0.2706,0.7071,-0.6533,-0.2706,0.7071,-0.6533,-0.3182,0.5556,-0.7682,-0.1622,0.5556,-0.8155,-0.2706,0.7071,-0.6533,-0.1622,0.5556,-0.8155,-0.1379,0.7071,-0.6935,-0.1379,0.7071,-0.6935,-0.1622,0.5556,-0.8155,0.0,0.5556,-0.8315,-0.1379,0.7071,-0.6935,0.0,0.5556,-0.8315,0.0,0.7071,-0.7071,0.0,0.7071,-0.7071,0.0,0.5556,-0.8315,0.1622,0.5556,-0.8155,0.0,0.7071,-0.7071,0.1622,0.5556,-0.8155,0.138,0.7071,-0.6935,0.138,0.7071,-0.6935,0.1622,0.5556,-0.8155,0.3182,0.5556,-0.7682,0.138,0.7071,-0.6935,0.3182,0.5556,-0.7682,0.2706,0.7071,-0.6533,0.2706,0.7071,-0.6533,0.3182,0.5556,-0.7682,0.4619,0.5556,-0.6913,0.2706,0.7071,-0.6533,0.4619,0.5556,-0.6913,0.3928,0.7071,-0.5879,0.3928,0.7071,-0.5879,0.4619,0.5556,-0.6913,0.5879,0.5556,-0.5879,0.3928,0.7071,-0.5879,0.5879,0.5556,-0.5879,0.5,0.7071,-0.5,0.5,0.7071,-0.5,0.5879,0.5556,-0.5879,0.6913,0.5556,-0.4619,0.5,0.7071,-0.5,0.6913,0.5556,-0.4619,0.5879,0.7071,-0.3928,0.5879,0.7071,-0.3928,0.6913,0.5556,-0.4619,0.7682,0.5556,-0.3182,0.5879,0.7071,-0.3928,0.7682,0.5556,-0.3182,0.6533,0.7071,-0.2706,0.6533,0.7071,-0.2706,0.7682,0.5556,-0.3182,0.8155,0.5556,-0.1622,0.6533,0.7071,-0.2706,0.8155,0.5556,-0.1622,0.6935,0.7071,-0.1379,0.6935,0.7071,-0.1379,0.8155,0.5556,-0.1622,0.8315,0.5556,0.0,0.6935,0.7071,-0.1379,0.8315,0.5556,0.0,0.7071,0.7071,0.0,0.7071,0.7071,0.0,0.8315,0.5556,0.0,0.8155,0.5556,0.1622,0.7071,0.7071,0.0,0.8155,0.5556,0.1622,0.6935,0.7071,0.138,0.6935,0.7071,0.138,0.8155,0.5556,0.1622,0.7682,0.5556,0.3182,0.6935,0.7071,0.138,0.7682,0.5556,0.3182,0.6533,0.7071,0.2706,0.6533,0.7071,0.2706,0.7682,0.5556,0.3182,0.6913,0.5556,0.4619,0.6533,0.7071,0.2706,0.6913,0.5556,0.4619,0.5879,0.7071,0.3928,0.5879,0.7071,0.3928,0.6913,0.5556,0.4619,0.5879,0.5556,0.5879,0.5879,0.7071,0.3928,0.5879,0.5556,0.5879,0.5,0.7071,0.5,0.5,0.7071,0.5,0.5879,0.5556,0.5879,0.4619,0.5556,0.6913,0.5,0.7071,0.5,0.4619,0.5556,0.6913,0.3928,0.7071,0.5879,0.3928,0.7071,0.5879,0.4619,0.5556,0.6913,0.3182,0.5556,0.7682,0.3928,0.7071,0.5879,0.3182,0.5556,0.7682,0.2706,0.7071,0.6533,0.2706,0.7071,0.6533,0.3182,0.5556,0.7682,0.1622,0.5556,0.8155,0.2706,0.7071,0.6533,0.1622,0.5556,0.8155,0.1379,0.7071,0.6935,0.1379,0.7071,0.6935,0.1622,0.5556,0.8155,0.0,0.5556,0.8315,0.1379,0.7071,0.6935,0.0,0.5556,0.8315,0.0,0.7071,0.7071,0.0,0.5556,0.8315,0.0,0.3827,0.9239,-0.1802,0.3827,0.9061,0.0,0.5556,0.8315,-0.1802,0.3827,0.9061,-0.1622,0.5556,0.8155,-0.1622,0.5556,0.8155,-0.1802,0.3827,0.9061,-0.3536,0.3827,0.8536,-0.1622,0.5556,0.8155,-0.3536,0.3827,0.8536,-0.3182,0.5556,0.7682,-0.3182,0.5556,0.7682,-0.3536,0.3827,0.8536,-0.5133,0.3827,0.7682,-0.3182,0.5556,0.7682,-0.5133,0.3827,0.7682,-0.4619,0.5556,0.6913,-0.4619,0.5556,0.6913,-0.5133,0.3827,0.7682,-0.6533,0.3827,0.6533,-0.4619,0.5556,0.6913,-0.6533,0.3827,0.6533,-0.5879,0.5556,0.5879,-0.5879,0.5556,0.5879,-0.6533,0.3827,0.6533,-0.7682,0.3827,0.5133,-0.5879,0.5556,0.5879,-0.7682,0.3827,0.5133,-0.6913,0.5556,0.4619,-0.6913,0.5556,0.4619,-0.7682,0.3827,0.5133,-0.8536,0.3827,0.3536,-0.6913,0.5556,0.4619,-0.8536,0.3827,0.3536,-0.7682,0.5556,0.3182,-0.7682,0.5556,0.3182,-0.8536,0.3827,0.3536,-0.9061,0.3827,0.1802,-0.7682,0.5556,0.3182,-0.9061,0.3827,0.1802,-0.8155,0.5556,0.1622,-0.8155,0.5556,0.1622,-0.9061,0.3827,0.1802,-0.9239,0.3827,0.0,-0.8155,0.5556,0.1622,-0.9239,0.3827,0.0,-0.8315,0.5556,0.0,-0.8315,0.5556,0.0,-0.9239,0.3827,0.0,-0.9061,0.3827,-0.1802,-0.8315,0.5556,0.0,-0.9061,0.3827,-0.1802,-0.8155,0.5556,-0.1622,-0.8155,0.5556,-0.1622,-0.9061,0.3827,-0.1802,-0.8536,0.3827,-0.3536,-0.8155,0.5556,-0.1622,-0.8536,0.3827,-0.3536,-0.7682,0.5556,-0.3182,-0.7682,0.5556,-0.3182,-0.8536,0.3827,-0.3536,-0.7682,0.3827,-0.5133,-0.7682,0.5556,-0.3182,-0.7682,0.3827,-0.5133,-0.6913,0.5556,-0.4619,-0.6913,0.5556,-0.4619,-0.7682,0.3827,-0.5133,-0.6533,0.3827,-0.6533,-0.6913,0.5556,-0.4619,-0.6533,0.3827,-0.6533,-0.5879,0.5556,-0.5879,-0.5879,0.5556,-0.5879,-0.6533,0.3827,-0.6533,-0.5133,0.3827,-0.7682,-0.5879,0.5556,-0.5879,-0.5133,0.3827,-0.7682,-0.4619,0.5556,-0.6913,-0.4619,0.5556,-0.6913,-0.5133,0.3827,-0.7682,-0.3536,0.3827,-0.8536,-0.4619,0.5556,-0.6913,-0.3536,0.3827,-0.8536,-0.3182,0.5556,-0.7682,-0.3182,0.5556,-0.7682,-0.3536,0.3827,-0.8536,-0.1802,0.3827,-0.9061,-0.3182,0.5556,-0.7682,-0.1802,0.3827,-0.9061,-0.1622,0.5556,-0.8155,-0.1622,0.5556,-0.8155,-0.1802,0.3827,-0.9061,0.0,0.3827,-0.9239,-0.1622,0.5556,-0.8155,0.0,0.3827,-0.9239,0.0,0.5556,-0.8315,0.0,0.5556,-0.8315,0.0,0.3827,-0.9239,0.1802,0.3827,-0.9061,0.0,0.5556,-0.8315,0.1802,0.3827,-0.9061,0.1622,0.5556,-0.8155,0.1622,0.5556,-0.8155,0.1802,0.3827,-0.9061,0.3536,0.3827,-0.8536,0.1622,0.5556,-0.8155,0.3536,0.3827,-0.8536,0.3182,0.5556,-0.7682,0.3182,0.5556,-0.7682,0.3536,0.3827,-0.8536,0.5133,0.3827,-0.7682,0.3182,0.5556,-0.7682,0.5133,0.3827,-0.7682,0.4619,0.5556,-0.6913,0.4619,0.5556,-0.6913,0.5133,0.3827,-0.7682,0.6533,0.3827,-0.6533,0.4619,0.5556,-0.6913,0.6533,0.3827,-0.6533,0.5879,0.5556,-0.5879,0.5879,0.5556,-0.5879,0.6533,0.3827,-0.6533,0.7682,0.3827,-0.5133,0.5879,0.5556,-0.5879,0.7682,0.3827,-0.5133,0.6913,0.5556,-0.4619,0.6913,0.5556,-0.4619,0.7682,0.3827,-0.5133,0.8536,0.3827,-0.3536,0.6913,0.5556,-0.4619,0.8536,0.3827,-0.3536,0.7682,0.5556,-0.3182,0.7682,0.5556,-0.3182,0.8536,0.3827,-0.3536,0.9061,0.3827,-0.1802,0.7682,0.5556,-0.3182,0.9061,0.3827,-0.1802,0.8155,0.5556,-0.1622,0.8155,0.5556,-0.1622,0.9061,0.3827,-0.1802,0.9239,0.3827,0.0,0.8155,0.5556,-0.1622,0.9239,0.3827,0.0,0.8315,0.5556,0.0,0.8315,0.5556,0.0,0.9239,0.3827,0.0,0.9061,0.3827,0.1802,0.8315,0.5556,0.0,0.9061,0.3827,0.1802,0.8155,0.5556,0.1622,0.8155,0.5556,0.1622,0.9061,0.3827,0.1802,0.8536,0.3827,0.3536,0.8155,0.5556,0.1622,0.8536,0.3827,0.3536,0.7682,0.5556,0.3182,0.7682,0.5556,0.3182,0.8536,0.3827,0.3536,0.7682,0.3827,0.5133,0.7682,0.5556,0.3182,0.7682,0.3827,0.5133,0.6913,0.5556,0.4619,0.6913,0.5556,0.4619,0.7682,0.3827,0.5133,0.6533,0.3827,0.6533,0.6913,0.5556,0.4619,0.6533,0.3827,0.6533,0.5879,0.5556,0.5879,0.5879,0.5556,0.5879,0.6533,0.3827,0.6533,0.5133,0.3827,0.7682,0.5879,0.5556,0.5879,0.5133,0.3827,0.7682,0.4619,0.5556,0.6913,0.4619,0.5556,0.6913,0.5133,0.3827,0.7682,0.3536,0.3827,0.8536,0.4619,0.5556,0.6913,0.3536,0.3827,0.8536,0.3182,0.5556,0.7682,0.3182,0.5556,0.7682,0.3536,0.3827,0.8536,0.1802,0.3827,0.9061,0.3182,0.5556,0.7682,0.1802,0.3827,0.9061,0.1622,0.5556,0.8155,0.1622,0.5556,0.8155,0.1802,0.3827,0.9061,0.0,0.3827,0.9239,0.1622,0.5556,0.8155,0.0,0.3827,0.9239,0.0,0.5556,0.8315,0.0,0.3827,0.9239,0.0,0.1951,0.9808,-0.1913,0.1951,0.9619,0.0,0.3827,0.9239,-0.1913,0.1951,0.9619,-0.1802,0.3827,0.9061,-0.1802,0.3827,0.9061,-0.1913,0.1951,0.9619,-0.3753,0.1951,0.9061,-0.1802,0.3827,0.9061,-0.3753,0.1951,0.9061,-0.3536,0.3827,0.8536,-0.3536,0.3827,0.8536,-0.3753,0.1951,0.9061,-0.5449,0.1951,0.8155,-0.3536,0.3827,0.8536,-0.5449,0.1951,0.8155,-0.5133,0.3827,0.7682,-0.5133,0.3827,0.7682,-0.5449,0.1951,0.8155,-0.6935,0.1951,0.6935,-0.5133,0.3827,0.7682,-0.6935,0.1951,0.6935,-0.6533,0.3827,0.6533,-0.6533,0.3827,0.6533,-0.6935,0.1951,0.6935,-0.8155,0.1951,0.5449,-0.6533,0.3827,0.6533,-0.8155,0.1951,0.5449,-0.7682,0.3827,0.5133,-0.7682,0.3827,0.5133,-0.8155,0.1951,0.5449,-0.9061,0.1951,0.3753,-0.7682,0.3827,0.5133,-0.9061,0.1951,0.3753,-0.8536,0.3827,0.3536,-0.8536,0.3827,0.3536,-0.9061,0.1951,0.3753,-0.9619,0.1951,0.1913,-0.8536,0.3827,0.3536,-0.9619,0.1951,0.1913,-0.9061,0.3827,0.1802,-0.9061,0.3827,0.1802,-0.9619,0.1951,0.1913,-0.9808,0.1951,0.0,-0.9061,0.3827,0.1802,-0.9808,0.1951,0.0,-0.9239,0.3827,0.0,-0.9239,0.3827,0.0,-0.9808,0.1951,0.0,-0.9619,0.1951,-0.1913,-0.9239,0.3827,0.0,-0.9619,0.1951,-0.1913,-0.9061,0.3827,-0.1802,-0.9061,0.3827,-0.1802,-0.9619,0.1951,-0.1913,-0.9061,0.1951,-0.3753,-0.9061,0.3827,-0.1802,-0.9061,0.1951,-0.3753,-0.8536,0.3827,-0.3536,-0.8536,0.3827,-0.3536,-0.9061,0.1951,-0.3753,-0.8155,0.1951,-0.5449,-0.8536,0.3827,-0.3536,-0.8155,0.1951,-0.5449,-0.7682,0.3827,-0.5133,-0.7682,0.3827,-0.5133,-0.8155,0.1951,-0.5449,-0.6935,0.1951,-0.6935,-0.7682,0.3827,-0.5133,-0.6935,0.1951,-0.6935,-0.6533,0.3827,-0.6533,-0.6533,0.3827,-0.6533,-0.6935,0.1951,-0.6935,-0.5449,0.1951,-0.8155,-0.6533,0.3827,-0.6533,-0.5449,0.1951,-0.8155,-0.5133,0.3827,-0.7682,-0.5133,0.3827,-0.7682,-0.5449,0.1951,-0.8155,-0.3753,0.1951,-0.9061,-0.5133,0.3827,-0.7682,-0.3753,0.1951,-0.9061,-0.3536,0.3827,-0.8536,-0.3536,0.3827,-0.8536,-0.3753,0.1951,-0.9061,-0.1913,0.1951,-0.9619,-0.3536,0.3827,-0.8536,-0.1913,0.1951,-0.9619,-0.1802,0.3827,-0.9061,-0.1802,0.3827,-0.9061,-0.1913,0.1951,-0.9619,0.0,0.1951,-0.9808,-0.1802,0.3827,-0.9061,0.0,0.1951,-0.9808,0.0,0.3827,-0.9239,0.0,0.3827,-0.9239,0.0,0.1951,-0.9808,0.1913,0.1951,-0.9619,0.0,0.3827,-0.9239,0.1913,0.1951,-0.9619,0.1802,0.3827,-0.9061,0.1802,0.3827,-0.9061,0.1913,0.1951,-0.9619,0.3753,0.1951,-0.9061,0.1802,0.3827,-0.9061,0.3753,0.1951,-0.9061,0.3536,0.3827,-0.8536,0.3536,0.3827,-0.8536,0.3753,0.1951,-0.9061,0.5449,0.1951,-0.8155,0.3536,0.3827,-0.8536,0.5449,0.1951,-0.8155,0.5133,0.3827,-0.7682,0.5133,0.3827,-0.7682,0.5449,0.1951,-0.8155,0.6935,0.1951,-0.6935,0.5133,0.3827,-0.7682,0.6935,0.1951,-0.6935,0.6533,0.3827,-0.6533,0.6533,0.3827,-0.6533,0.6935,0.1951,-0.6935,0.8155,0.1951,-0.5449,0.6533,0.3827,-0.6533,0.8155,0.1951,-0.5449,0.7682,0.3827,-0.5133,0.7682,0.3827,-0.5133,0.8155,0.1951,-0.5449,0.9061,0.1951,-0.3753,0.7682,0.3827,-0.5133,0.9061,0.1951,-0.3753,0.8536,0.3827,-0.3536,0.8536,0.3827,-0.3536,0.9061,0.1951,-0.3753,0.9619,0.1951,-0.1913,0.8536,0.3827,-0.3536,0.9619,0.1951,-0.1913,0.9061,0.3827,-0.1802,0.9061,0.3827,-0.1802,0.9619,0.1951,-0.1913,0.9808,0.1951,0.0,0.9061,0.3827,-0.1802,0.9808,0.1951,0.0,0.9239,0.3827,0.0,0.9239,0.3827,0.0,0.9808,0.1951,0.0,0.9619,0.1951,0.1913,0.9239,0.3827,0.0,0.9619,0.1951,0.1913,0.9061,0.3827,0.1802,0.9061,0.3827,0.1802,0.9619,0.1951,0.1913,0.9061,0.1951,0.3753,0.9061,0.3827,0.1802,0.9061,0.1951,0.3753,0.8536,0.3827,0.3536,0.8536,0.3827,0.3536,0.9061,0.1951,0.3753,0.8155,0.1951,0.5449,0.8536,0.3827,0.3536,0.8155,0.1951,0.5449,0.7682,0.3827,0.5133,0.7682,0.3827,0.5133,0.8155,0.1951,0.5449,0.6935,0.1951,0.6935,0.7682,0.3827,0.5133,0.6935,0.1951,0.6935,0.6533,0.3827,0.6533,0.6533,0.3827,0.6533,0.6935,0.1951,0.6935,0.5449,0.1951,0.8155,0.6533,0.3827,0.6533,0.5449,0.1951,0.8155,0.5133,0.3827,0.7682,0.5133,0.3827,0.7682,0.5449,0.1951,0.8155,0.3753,0.1951,0.9061,0.5133,0.3827,0.7682,0.3753,0.1951,0.9061,0.3536,0.3827,0.8536,0.3536,0.3827,0.8536,0.3753,0.1951,0.9061,0.1913,0.1951,0.9619,0.3536,0.3827,0.8536,0.1913,0.1951,0.9619,0.1802,0.3827,0.9061,0.1802,0.3827,0.9061,0.1913,0.1951,0.9619,0.0,0.1951,0.9808,0.1802,0.3827,0.9061,0.0,0.1951,0.9808,0.0,0.3827,0.9239,0.0,0.1951,0.9808,0.0,0.0,1.0,-0.1951,0.0,0.9808,0.0,0.1951,0.9808,-0.1951,0.0,0.9808,-0.1913,0.1951,0.9619,-0.1913,0.1951,0.9619,-0.1951,0.0,0.9808,-0.3827,0.0,0.9239,-0.1913,0.1951,0.9619,-0.3827,0.0,0.9239,-0.3753,0.1951,0.9061,-0.3753,0.1951,0.9061,-0.3827,0.0,0.9239,-0.5556,0.0,0.8315,-0.3753,0.1951,0.9061,-0.5556,0.0,0.8315,-0.5449,0.1951,0.8155,-0.5449,0.1951,0.8155,-0.5556,0.0,0.8315,-0.7071,0.0,0.7071,-0.5449,0.1951,0.8155,-0.7071,0.0,0.7071,-0.6935,0.1951,0.6935,-0.6935,0.1951,0.6935,-0.7071,0.0,0.7071,-0.8315,0.0,0.5556,-0.6935,0.1951,0.6935,-0.8315,0.0,0.5556,-0.8155,0.1951,0.5449,-0.8155,0.1951,0.5449,-0.8315,0.0,0.5556,-0.9239,0.0,0.3827,-0.8155,0.1951,0.5449,-0.9239,0.0,0.3827,-0.9061,0.1951,0.3753,-0.9061,0.1951,0.3753,-0.9239,0.0,0.3827,-0.9808,0.0,0.1951,-0.9061,0.1951,0.3753,-0.9808,0.0,0.1951,-0.9619,0.1951,0.1913,-0.9619,0.1951,0.1913,-0.9808,0.0,0.1951,-1.0,0.0,0.0,-0.9619,0.1951,0.1913,-1.0,0.0,0.0,-0.9808,0.1951,0.0,-0.9808,0.1951,0.0,-1.0,0.0,0.0,-0.9808,0.0,-0.1951,-0.9808,0.1951,0.0,-0.9808,0.0,-0.1951,-0.9619,0.1951,-0.1913,-0.9619,0.1951,-0.1913,-0.9808,0.0,-0.1951,-0.9239,0.0,-0.3827,-0.9619,0.1951,-0.1913,-0.9239,0.0,-0.3827,-0.9061,0.1951,-0.3753,-0.9061,0.1951,-0.3753,-0.9239,0.0,-0.3827,-0.8315,0.0,-0.5556,-0.9061,0.1951,-0.3753,-0.8315,0.0,-0.5556,-0.8155,0.1951,-0.5449,-0.8155,0.1951,-0.5449,-0.8315,0.0,-0.5556,-0.7071,0.0,-0.7071,-0.8155,0.1951,-0.5449,-0.7071,0.0,-0.7071,-0.6935,0.1951,-0.6935,-0.6935,0.1951,-0.6935,-0.7071,0.0,-0.7071,-0.5556,0.0,-0.8315,-0.6935,0.1951,-0.6935,-0.5556,0.0,-0.8315,-0.5449,0.1951,-0.8155,-0.5449,0.1951,-0.8155,-0.5556,0.0,-0.8315,-0.3827,0.0,-0.9239,-0.5449,0.1951,-0.8155,-0.3827,0.0,-0.9239,-0.3753,0.1951,-0.9061,-0.3753,0.1951,-0.9061,-0.3827,0.0,-0.9239,-0.1951,0.0,-0.9808,-0.3753,0.1951,-0.9061,-0.1951,0.0,-0.9808,-0.1913,0.1951,-0.9619,-0.1913,0.1951,-0.9619,-0.1951,0.0,-0.9808,0.0,0.0,-1.0,-0.1913,0.1951,-0.9619,0.0,0.0,-1.0,0.0,0.1951,-0.9808,0.0,0.1951,-0.9808,0.0,0.0,-1.0,0.1951,0.0,-0.9808,0.0,0.1951,-0.9808,0.1951,0.0,-0.9808,0.1913,0.1951,-0.9619,0.1913,0.1951,-0.9619,0.1951,0.0,-0.9808,0.3827,0.0,-0.9239,0.1913,0.1951,-0.9619,0.3827,0.0,-0.9239,0.3753,0.1951,-0.9061,0.3753,0.1951,-0.9061,0.3827,0.0,-0.9239,0.5556,0.0,-0.8315,0.3753,0.1951,-0.9061,0.5556,0.0,-0.8315,0.5449,0.1951,-0.8155,0.5449,0.1951,-0.8155,0.5556,0.0,-0.8315,0.7071,0.0,-0.7071,0.5449,0.1951,-0.8155,0.7071,0.0,-0.7071,0.6935,0.1951,-0.6935,0.6935,0.1951,-0.6935,0.7071,0.0,-0.7071,0.8315,0.0,-0.5556,0.6935,0.1951,-0.6935,0.8315,0.0,-0.5556,0.8155,0.1951,-0.5449,0.8155,0.1951,-0.5449,0.8315,0.0,-0.5556,0.9239,0.0,-0.3827,0.8155,0.1951,-0.5449,0.9239,0.0,-0.3827,0.9061,0.1951,-0.3753,0.9061,0.1951,-0.3753,0.9239,0.0,-0.3827,0.9808,0.0,-0.1951,0.9061,0.1951,-0.3753,0.9808,0.0,-0.1951,0.9619,0.1951,-0.1913,0.9619,0.1951,-0.1913,0.9808,0.0,-0.1951,1.0,0.0,0.0,0.9619,0.1951,-0.1913,1.0,0.0,0.0,0.9808,0.1951,0.0,0.9808,0.1951,0.0,1.0,0.0,0.0,0.9808,0.0,0.1951,0.9808,0.1951,0.0,0.9808,0.0,0.1951,0.9619,0.1951,0.1913,0.9619,0.1951,0.1913,0.9808,0.0,0.1951,0.9239,0.0,0.3827,0.9619,0.1951,0.1913,0.9239,0.0,0.3827,0.9061,0.1951,0.3753,0.9061,0.1951,0.3753,0.9239,0.0,0.3827,0.8315,0.0,0.5556,0.9061,0.1951,0.3753,0.8315,0.0,0.5556,0.8155,0.1951,0.5449,0.8155,0.1951,0.5449,0.8315,0.0,0.5556,0.7071,0.0,0.7071,0.8155,0.1951,0.5449,0.7071,0.0,0.7071,0.6935,0.1951,0.6935,0.6935,0.1951,0.6935,0.7071,0.0,0.7071,0.5556,0.0,0.8315,0.6935,0.1951,0.6935,0.5556,0.0,0.8315,0.5449,0.1951,0.8155,0.5449,0.1951,0.8155,0.5556,0.0,0.8315,0.3827,0.0,0.9239,0.5449,0.1951,0.8155,0.3827,0.0,0.9239,0.3753,0.1951,0.9061,0.3753,0.1951,0.9061,0.3827,0.0,0.9239,0.1951,0.0,0.9808,0.3753,0.1951,0.9061,0.1951,0.0,0.9808,0.1913,0.1951,0.9619,0.1913,0.1951,0.9619,0.1951,0.0,0.9808,0.0,0.0,1.0,0.1913,0.1951,0.9619,0.0,0.0,1.0,0.0,0.1951,0.9808,0.0,0.0,1.0,0.0,-0.1951,0.9808,-0.1913,-0.1951,0.9619,0.0,0.0,1.0,-0.1913,-0.1951,0.9619,-0.1951,0.0,0.9808,-0.1951,0.0,0.9808,-0.1913,-0.1951,0.9619,-0.3753,-0.1951,0.9061,-0.1951,0.0,0.9808,-0.3753,-0.1951,0.9061,-0.3827,0.0,0.9239,-0.3827,0.0,0.9239,-0.3753,-0.1951,0.9061,-0.5449,-0.1951,0.8155,-0.3827,0.0,0.9239,-0.5449,-0.1951,0.8155,-0.5556,0.0,0.8315,-0.5556,0.0,0.8315,-0.5449,-0.1951,0.8155,-0.6935,-0.1951,0.6935,-0.5556,0.0,0.8315,-0.6935,-0.1951,0.6935,-0.7071,0.0,0.7071,-0.7071,0.0,0.7071,-0.6935,-0.1951,0.6935,-0.8155,-0.1951,0.5449,-0.7071,0.0,0.7071,-0.8155,-0.1951,0.5449,-0.8315,0.0,0.5556,-0.8315,0.0,0.5556,-0.8155,-0.1951,0.5449,-0.9061,-0.1951,0.3753,-0.8315,0.0,0.5556,-0.9061,-0.1951,0.3753,-0.9239,0.0,0.3827,-0.9239,0.0,0.3827,-0.9061,-0.1951,0.3753,-0.9619,-0.1951,0.1913,-0.9239,0.0,0.3827,-0.9619,-0.1951,0.1913,-0.9808,0.0,0.1951,-0.9808,0.0,0.1951,-0.9619,-0.1951,0.1913,-0.9808,-0.1951,0.0,-0.9808,0.0,0.1951,-0.9808,-0.1951,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-0.9808,-0.1951,0.0,-0.9619,-0.1951,-0.1913,-1.0,0.0,0.0,-0.9619,-0.1951,-0.1913,-0.9808,0.0,-0.1951,-0.9808,0.0,-0.1951,-0.9619,-0.1951,-0.1913,-0.9061,-0.1951,-0.3753,-0.9808,0.0,-0.1951,-0.9061,-0.1951,-0.3753,-0.9239,0.0,-0.3827,-0.9239,0.0,-0.3827,-0.9061,-0.1951,-0.3753,-0.8155,-0.1951,-0.5449,-0.9239,0.0,-0.3827,-0.8155,-0.1951,-0.5449,-0.8315,0.0,-0.5556,-0.8315,0.0,-0.5556,-0.8155,-0.1951,-0.5449,-0.6935,-0.1951,-0.6935,-0.8315,0.0,-0.5556,-0.6935,-0.1951,-0.6935,-0.7071,0.0,-0.7071,-0.7071,0.0,-0.7071,-0.6935,-0.1951,-0.6935,-0.5449,-0.1951,-0.8155,-0.7071,0.0,-0.7071,-0.5449,-0.1951,-0.8155,-0.5556,0.0,-0.8315,-0.5556,0.0,-0.8315,-0.5449,-0.1951,-0.8155,-0.3753,-0.1951,-0.9061,-0.5556,0.0,-0.8315,-0.3753,-0.1951,-0.9061,-0.3827,0.0,-0.9239,-0.3827,0.0,-0.9239,-0.3753,-0.1951,-0.9061,-0.1913,-0.1951,-0.9619,-0.3827,0.0,-0.9239,-0.1913,-0.1951,-0.9619,-0.1951,0.0,-0.9808,-0.1951,0.0,-0.9808,-0.1913,-0.1951,-0.9619,0.0,-0.1951,-0.9808,-0.1951,0.0,-0.9808,0.0,-0.1951,-0.9808,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,-0.1951,-0.9808,0.1913,-0.1951,-0.9619,0.0,0.0,-1.0,0.1913,-0.1951,-0.9619,0.1951,0.0,-0.9808,0.1951,0.0,-0.9808,0.1913,-0.1951,-0.9619,0.3753,-0.1951,-0.9061,0.1951,0.0,-0.9808,0.3753,-0.1951,-0.9061,0.3827,0.0,-0.9239,0.3827,0.0,-0.9239,0.3753,-0.1951,-0.9061,0.5449,-0.1951,-0.8155,0.3827,0.0,-0.9239,0.5449,-0.1951,-0.8155,0.5556,0.0,-0.8315,0.5556,0.0,-0.8315,0.5449,-0.1951,-0.8155,0.6935,-0.1951,-0.6935,0.5556,0.0,-0.8315,0.6935,-0.1951,-0.6935,0.7071,0.0,-0.7071,0.7071,0.0,-0.7071,0.6935,-0.1951,-0.6935,0.8155,-0.1951,-0.5449,0.7071,0.0,-0.7071,0.8155,-0.1951,-0.5449,0.8315,0.0,-0.5556,0.8315,0.0,-0.5556,0.8155,-0.1951,-0.5449,0.9061,-0.1951,-0.3753,0.8315,0.0,-0.5556,0.9061,-0.1951,-0.3753,0.9239,0.0,-0.3827,0.9239,0.0,-0.3827,0.9061,-0.1951,-0.3753,0.9619,-0.1951,-0.1913,0.9239,0.0,-0.3827,0.9619,-0.1951,-0.1913,0.9808,0.0,-0.1951,0.9808,0.0,-0.1951,0.9619,-0.1951,-0.1913,0.9808,-0.1951,0.0,0.9808,0.0,-0.1951,0.9808,-0.1951,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.9808,-0.1951,0.0,0.9619,-0.1951,0.1913,1.0,0.0,0.0,0.9619,-0.1951,0.1913,0.9808,0.0,0.1951,0.9808,0.0,0.1951,0.9619,-0.1951,0.1913,0.9061,-0.1951,0.3753,0.9808,0.0,0.1951,0.9061,-0.1951,0.3753,0.9239,0.0,0.3827,0.9239,0.0,0.3827,0.9061,-0.1951,0.3753,0.8155,-0.1951,0.5449,0.9239,0.0,0.3827,0.8155,-0.1951,0.5449,0.8315,0.0,0.5556,0.8315,0.0,0.5556,0.8155,-0.1951,0.5449,0.6935,-0.1951,0.6935,0.8315,0.0,0.5556,0.6935,-0.1951,0.6935,0.7071,0.0,0.7071,0.7071,0.0,0.7071,0.6935,-0.1951,0.6935,0.5449,-0.1951,0.8155,0.7071,0.0,0.7071,0.5449,-0.1951,0.8155,0.5556,0.0,0.8315,0.5556,0.0,0.8315,0.5449,-0.1951,0.8155,0.3753,-0.1951,0.9061,0.5556,0.0,0.8315,0.3753,-0.1951,0.9061,0.3827,0.0,0.9239,0.3827,0.0,0.9239,0.3753,-0.1951,0.9061,0.1913,-0.1951,0.9619,0.3827,0.0,0.9239,0.1913,-0.1951,0.9619,0.1951,0.0,0.9808,0.1951,0.0,0.9808,0.1913,-0.1951,0.9619,0.0,-0.1951,0.9808,0.1951,0.0,0.9808,0.0,-0.1951,0.9808,0.0,0.0,1.0,0.0,-0.1951,0.9808,0.0,-0.3827,0.9239,-0.1802,-0.3827,0.9061,0.0,-0.1951,0.9808,-0.1802,-0.3827,0.9061,-0.1913,-0.1951,0.9619,-0.1913,-0.1951,0.9619,-0.1802,-0.3827,0.9061,-0.3536,-0.3827,0.8536,-0.1913,-0.1951,0.9619,-0.3536,-0.3827,0.8536,-0.3753,-0.1951,0.9061,-0.3753,-0.1951,0.9061,-0.3536,-0.3827,0.8536,-0.5133,-0.3827,0.7682,-0.3753,-0.1951,0.9061,-0.5133,-0.3827,0.7682,-0.5449,-0.1951,0.8155,-0.5449,-0.1951,0.8155,-0.5133,-0.3827,0.7682,-0.6533,-0.3827,0.6533,-0.5449,-0.1951,0.8155,-0.6533,-0.3827,0.6533,-0.6935,-0.1951,0.6935,-0.6935,-0.1951,0.6935,-0.6533,-0.3827,0.6533,-0.7682,-0.3827,0.5133,-0.6935,-0.1951,0.6935,-0.7682,-0.3827,0.5133,-0.8155,-0.1951,0.5449,-0.8155,-0.1951,0.5449,-0.7682,-0.3827,0.5133,-0.8536,-0.3827,0.3536,-0.8155,-0.1951,0.5449,-0.8536,-0.3827,0.3536,-0.9061,-0.1951,0.3753,-0.9061,-0.1951,0.3753,-0.8536,-0.3827,0.3536,-0.9061,-0.3827,0.1802,-0.9061,-0.1951,0.3753,-0.9061,-0.3827,0.1802,-0.9619,-0.1951,0.1913,-0.9619,-0.1951,0.1913,-0.9061,-0.3827,0.1802,-0.9239,-0.3827,0.0,-0.9619,-0.1951,0.1913,-0.9239,-0.3827,0.0,-0.9808,-0.1951,0.0,-0.9808,-0.1951,0.0,-0.9239,-0.3827,0.0,-0.9061,-0.3827,-0.1802,-0.9808,-0.1951,0.0,-0.9061,-0.3827,-0.1802,-0.9619,-0.1951,-0.1913,-0.9619,-0.1951,-0.1913,-0.9061,-0.3827,-0.1802,-0.8536,-0.3827,-0.3536,-0.9619,-0.1951,-0.1913,-0.8536,-0.3827,-0.3536,-0.9061,-0.1951,-0.3753,-0.9061,-0.1951,-0.3753,-0.8536,-0.3827,-0.3536,-0.7682,-0.3827,-0.5133,-0.9061,-0.1951,-0.3753,-0.7682,-0.3827,-0.5133,-0.8155,-0.1951,-0.5449,-0.8155,-0.1951,-0.5449,-0.7682,-0.3827,-0.5133,-0.6533,-0.3827,-0.6533,-0.8155,-0.1951,-0.5449,-0.6533,-0.3827,-0.6533,-0.6935,-0.1951,-0.6935,-0.6935,-0.1951,-0.6935,-0.6533,-0.3827,-0.6533,-0.5133,-0.3827,-0.7682,-0.6935,-0.1951,-0.6935,-0.5133,-0.3827,-0.7682,-0.5449,-0.1951,-0.8155,-0.5449,-0.1951,-0.8155,-0.5133,-0.3827,-0.7682,-0.3536,-0.3827,-0.8536,-0.5449,-0.1951,-0.8155,-0.3536,-0.3827,-0.8536,-0.3753,-0.1951,-0.9061,-0.3753,-0.1951,-0.9061,-0.3536,-0.3827,-0.8536,-0.1802,-0.3827,-0.9061,-0.3753,-0.1951,-0.9061,-0.1802,-0.3827,-0.9061,-0.1913,-0.1951,-0.9619,-0.1913,-0.1951,-0.9619,-0.1802,-0.3827,-0.9061,0.0,-0.3827,-0.9239,-0.1913,-0.1951,-0.9619,0.0,-0.3827,-0.9239,0.0,-0.1951,-0.9808,0.0,-0.1951,-0.9808,0.0,-0.3827,-0.9239,0.1802,-0.3827,-0.9061,0.0,-0.1951,-0.9808,0.1802,-0.3827,-0.9061,0.1913,-0.1951,-0.9619,0.1913,-0.1951,-0.9619,0.1802,-0.3827,-0.9061,0.3536,-0.3827,-0.8536,0.1913,-0.1951,-0.9619,0.3536,-0.3827,-0.8536,0.3753,-0.1951,-0.9061,0.3753,-0.1951,-0.9061,0.3536,-0.3827,-0.8536,0.5133,-0.3827,-0.7682,0.3753,-0.1951,-0.9061,0.5133,-0.3827,-0.7682,0.5449,-0.1951,-0.8155,0.5449,-0.1951,-0.8155,0.5133,-0.3827,-0.7682,0.6533,-0.3827,-0.6533,0.5449,-0.1951,-0.8155,0.6533,-0.3827,-0.6533,0.6935,-0.1951,-0.6935,0.6935,-0.1951,-0.6935,0.6533,-0.3827,-0.6533,0.7682,-0.3827,-0.5133,0.6935,-0.1951,-0.6935,0.7682,-0.3827,-0.5133,0.8155,-0.1951,-0.5449,0.8155,-0.1951,-0.5449,0.7682,-0.3827,-0.5133,0.8536,-0.3827,-0.3536,0.8155,-0.1951,-0.5449,0.8536,-0.3827,-0.3536,0.9061,-0.1951,-0.3753,0.9061,-0.1951,-0.3753,0.8536,-0.3827,-0.3536,0.9061,-0.3827,-0.1802,0.9061,-0.1951,-0.3753,0.9061,-0.3827,-0.1802,0.9619,-0.1951,-0.1913,0.9619,-0.1951,-0.1913,0.9061,-0.3827,-0.1802,0.9239,-0.3827,0.0,0.9619,-0.1951,-0.1913,0.9239,-0.3827,0.0,0.9808,-0.1951,0.0,0.9808,-0.1951,0.0,0.9239,-0.3827,0.0,0.9061,-0.3827,0.1802,0.9808,-0.1951,0.0,0.9061,-0.3827,0.1802,0.9619,-0.1951,0.1913,0.9619,-0.1951,0.1913,0.9061,-0.3827,0.1802,0.8536,-0.3827,0.3536,0.9619,-0.1951,0.1913,0.8536,-0.3827,0.3536,0.9061,-0.1951,0.3753,0.9061,-0.1951,0.3753,0.8536,-0.3827,0.3536,0.7682,-0.3827,0.5133,0.9061,-0.1951,0.3753,0.7682,-0.3827,0.5133,0.8155,-0.1951,0.5449,0.8155,-0.1951,0.5449,0.7682,-0.3827,0.5133,0.6533,-0.3827,0.6533,0.8155,-0.1951,0.5449,0.6533,-0.3827,0.6533,0.6935,-0.1951,0.6935,0.6935,-0.1951,0.6935,0.6533,-0.3827,0.6533,0.5133,-0.3827,0.7682,0.6935,-0.1951,0.6935,0.5133,-0.3827,0.7682,0.5449,-0.1951,0.8155,0.5449,-0.1951,0.8155,0.5133,-0.3827,0.7682,0.3536,-0.3827,0.8536,0.5449,-0.1951,0.8155,0.3536,-0.3827,0.8536,0.3753,-0.1951,0.9061,0.3753,-0.1951,0.9061,0.3536,-0.3827,0.8536,0.1802,-0.3827,0.9061,0.3753,-0.1951,0.9061,0.1802,-0.3827,0.9061,0.1913,-0.1951,0.9619,0.1913,-0.1951,0.9619,0.1802,-0.3827,0.9061,0.0,-0.3827,0.9239,0.1913,-0.1951,0.9619,0.0,-0.3827,0.9239,0.0,-0.1951,0.9808,0.0,-0.3827,0.9239,0.0,-0.5556,0.8315,-0.1622,-0.5556,0.8155,0.0,-0.3827,0.9239,-0.1622,-0.5556,0.8155,-0.1802,-0.3827,0.9061,-0.1802,-0.3827,0.9061,-0.1622,-0.5556,0.8155,-0.3182,-0.5556,0.7682,-0.1802,-0.3827,0.9061,-0.3182,-0.5556,0.7682,-0.3536,-0.3827,0.8536,-0.3536,-0.3827,0.8536,-0.3182,-0.5556,0.7682,-0.4619,-0.5556,0.6913,-0.3536,-0.3827,0.8536,-0.4619,-0.5556,0.6913,-0.5133,-0.3827,0.7682,-0.5133,-0.3827,0.7682,-0.4619,-0.5556,0.6913,-0.5879,-0.5556,0.5879,-0.5133,-0.3827,0.7682,-0.5879,-0.5556,0.5879,-0.6533,-0.3827,0.6533,-0.6533,-0.3827,0.6533,-0.5879,-0.5556,0.5879,-0.6913,-0.5556,0.4619,-0.6533,-0.3827,0.6533,-0.6913,-0.5556,0.4619,-0.7682,-0.3827,0.5133,-0.7682,-0.3827,0.5133,-0.6913,-0.5556,0.4619,-0.7682,-0.5556,0.3182,-0.7682,-0.3827,0.5133,-0.7682,-0.5556,0.3182,-0.8536,-0.3827,0.3536,-0.8536,-0.3827,0.3536,-0.7682,-0.5556,0.3182,-0.8155,-0.5556,0.1622,-0.8536,-0.3827,0.3536,-0.8155,-0.5556,0.1622,-0.9061,-0.3827,0.1802,-0.9061,-0.3827,0.1802,-0.8155,-0.5556,0.1622,-0.8315,-0.5556,0.0,-0.9061,-0.3827,0.1802,-0.8315,-0.5556,0.0,-0.9239,-0.3827,0.0,-0.9239,-0.3827,0.0,-0.8315,-0.5556,0.0,-0.8155,-0.5556,-0.1622,-0.9239,-0.3827,0.0,-0.8155,-0.5556,-0.1622,-0.9061,-0.3827,-0.1802,-0.9061,-0.3827,-0.1802,-0.8155,-0.5556,-0.1622,-0.7682,-0.5556,-0.3182,-0.9061,-0.3827,-0.1802,-0.7682,-0.5556,-0.3182,-0.8536,-0.3827,-0.3536,-0.8536,-0.3827,-0.3536,-0.7682,-0.5556,-0.3182,-0.6913,-0.5556,-0.4619,-0.8536,-0.3827,-0.3536,-0.6913,-0.5556,-0.4619,-0.7682,-0.3827,-0.5133,-0.7682,-0.3827,-0.5133,-0.6913,-0.5556,-0.4619,-0.5879,-0.5556,-0.5879,-0.7682,-0.3827,-0.5133,-0.5879,-0.5556,-0.5879,-0.6533,-0.3827,-0.6533,-0.6533,-0.3827,-0.6533,-0.5879,-0.5556,-0.5879,-0.4619,-0.5556,-0.6913,-0.6533,-0.3827,-0.6533,-0.4619,-0.5556,-0.6913,-0.5133,-0.3827,-0.7682,-0.5133,-0.3827,-0.7682,-0.4619,-0.5556,-0.6913,-0.3182,-0.5556,-0.7682,-0.5133,-0.3827,-0.7682,-0.3182,-0.5556,-0.7682,-0.3536,-0.3827,-0.8536,-0.3536,-0.3827,-0.8536,-0.3182,-0.5556,-0.7682,-0.1622,-0.5556,-0.8155,-0.3536,-0.3827,-0.8536,-0.1622,-0.5556,-0.8155,-0.1802,-0.3827,-0.9061,-0.1802,-0.3827,-0.9061,-0.1622,-0.5556,-0.8155,0.0,-0.5556,-0.8315,-0.1802,-0.3827,-0.9061,0.0,-0.5556,-0.8315,0.0,-0.3827,-0.9239,0.0,-0.3827,-0.9239,0.0,-0.5556,-0.8315,0.1622,-0.5556,-0.8155,0.0,-0.3827,-0.9239,0.1622,-0.5556,-0.8155,0.1802,-0.3827,-0.9061,0.1802,-0.3827,-0.9061,0.1622,-0.5556,-0.8155,0.3182,-0.5556,-0.7682,0.1802,-0.3827,-0.9061,0.3182,-0.5556,-0.7682,0.3536,-0.3827,-0.8536,0.3536,-0.3827,-0.8536,0.3182,-0.5556,-0.7682,0.4619,-0.5556,-0.6913,0.3536,-0.3827,-0.8536,0.4619,-0.5556,-0.6913,0.5133,-0.3827,-0.7682,0.5133,-0.3827,-0.7682,0.4619,-0.5556,-0.6913,0.5879,-0.5556,-0.5879,0.5133,-0.3827,-0.7682,0.5879,-0.5556,-0.5879,0.6533,-0.3827,-0.6533,0.6533,-0.3827,-0.6533,0.5879,-0.5556,-0.5879,0.6913,-0.5556,-0.4619,0.6533,-0.3827,-0.6533,0.6913,-0.5556,-0.4619,0.7682,-0.3827,-0.5133,0.7682,-0.3827,-0.5133,0.6913,-0.5556,-0.4619,0.7682,-0.5556,-0.3182,0.7682,-0.3827,-0.5133,0.7682,-0.5556,-0.3182,0.8536,-0.3827,-0.3536,0.8536,-0.3827,-0.3536,0.7682,-0.5556,-0.3182,0.8155,-0.5556,-0.1622,0.8536,-0.3827,-0.3536,0.8155,-0.5556,-0.1622,0.9061,-0.3827,-0.1802,0.9061,-0.3827,-0.1802,0.8155,-0.5556,-0.1622,0.8315,-0.5556,0.0,0.9061,-0.3827,-0.1802,0.8315,-0.5556,0.0,0.9239,-0.3827,0.0,0.9239,-0.3827,0.0,0.8315,-0.5556,0.0,0.8155,-0.5556,0.1622,0.9239,-0.3827,0.0,0.8155,-0.5556,0.1622,0.9061,-0.3827,0.1802,0.9061,-0.3827,0.1802,0.8155,-0.5556,0.1622,0.7682,-0.5556,0.3182,0.9061,-0.3827,0.1802,0.7682,-0.5556,0.3182,0.8536,-0.3827,0.3536,0.8536,-0.3827,0.3536,0.7682,-0.5556,0.3182,0.6913,-0.5556,0.4619,0.8536,-0.3827,0.3536,0.6913,-0.5556,0.4619,0.7682,-0.3827,0.5133,0.7682,-0.3827,0.5133,0.6913,-0.5556,0.4619,0.5879,-0.5556,0.5879,0.7682,-0.3827,0.5133,0.5879,-0.5556,0.5879,0.6533,-0.3827,0.6533,0.6533,-0.3827,0.6533,0.5879,-0.5556,0.5879,0.4619,-0.5556,0.6913,0.6533,-0.3827,0.6533,0.4619,-0.5556,0.6913,0.5133,-0.3827,0.7682,0.5133,-0.3827,0.7682,0.4619,-0.5556,0.6913,0.3182,-0.5556,0.7682,0.5133,-0.3827,0.7682,0.3182,-0.5556,0.7682,0.3536,-0.3827,0.8536,0.3536,-0.3827,0.8536,0.3182,-0.5556,0.7682,0.1622,-0.5556,0.8155,0.3536,-0.3827,0.8536,0.1622,-0.5556,0.8155,0.1802,-0.3827,0.9061,0.1802,-0.3827,0.9061,0.1622,-0.5556,0.8155,0.0,-0.5556,0.8315,0.1802,-0.3827,0.9061,0.0,-0.5556,0.8315,0.0,-0.3827,0.9239,0.0,-0.5556,0.8315,0.0,-0.7071,0.7071,-0.1379,-0.7071,0.6935,0.0,-0.5556,0.8315,-0.1379,-0.7071,0.6935,-0.1622,-0.5556,0.8155,-0.1622,-0.5556,0.8155,-0.1379,-0.7071,0.6935,-0.2706,-0.7071,0.6533,-0.1622,-0.5556,0.8155,-0.2706,-0.7071,0.6533,-0.3182,-0.5556,0.7682,-0.3182,-0.5556,0.7682,-0.2706,-0.7071,0.6533,-0.3928,-0.7071,0.5879,-0.3182,-0.5556,0.7682,-0.3928,-0.7071,0.5879,-0.4619,-0.5556,0.6913,-0.4619,-0.5556,0.6913,-0.3928,-0.7071,0.5879,-0.5,-0.7071,0.5,-0.4619,-0.5556,0.6913,-0.5,-0.7071,0.5,-0.5879,-0.5556,0.5879,-0.5879,-0.5556,0.5879,-0.5,-0.7071,0.5,-0.5879,-0.7071,0.3928,-0.5879,-0.5556,0.5879,-0.5879,-0.7071,0.3928,-0.6913,-0.5556,0.4619,-0.6913,-0.5556,0.4619,-0.5879,-0.7071,0.3928,-0.6533,-0.7071,0.2706,-0.6913,-0.5556,0.4619,-0.6533,-0.7071,0.2706,-0.7682,-0.5556,0.3182,-0.7682,-0.5556,0.3182,-0.6533,-0.7071,0.2706,-0.6935,-0.7071,0.1379,-0.7682,-0.5556,0.3182,-0.6935,-0.7071,0.1379,-0.8155,-0.5556,0.1622,-0.8155,-0.5556,0.1622,-0.6935,-0.7071,0.1379,-0.7071,-0.7071,0.0,-0.8155,-0.5556,0.1622,-0.7071,-0.7071,0.0,-0.8315,-0.5556,0.0,-0.8315,-0.5556,0.0,-0.7071,-0.7071,0.0,-0.6935,-0.7071,-0.1379,-0.8315,-0.5556,0.0,-0.6935,-0.7071,-0.1379,-0.8155,-0.5556,-0.1622,-0.8155,-0.5556,-0.1622,-0.6935,-0.7071,-0.1379,-0.6533,-0.7071,-0.2706,-0.8155,-0.5556,-0.1622,-0.6533,-0.7071,-0.2706,-0.7682,-0.5556,-0.3182,-0.7682,-0.5556,-0.3182,-0.6533,-0.7071,-0.2706,-0.5879,-0.7071,-0.3928,-0.7682,-0.5556,-0.3182,-0.5879,-0.7071,-0.3928,-0.6913,-0.5556,-0.4619,-0.6913,-0.5556,-0.4619,-0.5879,-0.7071,-0.3928,-0.5,-0.7071,-0.5,-0.6913,-0.5556,-0.4619,-0.5,-0.7071,-0.5,-0.5879,-0.5556,-0.5879,-0.5879,-0.5556,-0.5879,-0.5,-0.7071,-0.5,-0.3928,-0.7071,-0.5879,-0.5879,-0.5556,-0.5879,-0.3928,-0.7071,-0.5879,-0.4619,-0.5556,-0.6913,-0.4619,-0.5556,-0.6913,-0.3928,-0.7071,-0.5879,-0.2706,-0.7071,-0.6533,-0.4619,-0.5556,-0.6913,-0.2706,-0.7071,-0.6533,-0.3182,-0.5556,-0.7682,-0.3182,-0.5556,-0.7682,-0.2706,-0.7071,-0.6533,-0.1379,-0.7071,-0.6935,-0.3182,-0.5556,-0.7682,-0.1379,-0.7071,-0.6935,-0.1622,-0.5556,-0.8155,-0.1622,-0.5556,-0.8155,-0.1379,-0.7071,-0.6935,0.0,-0.7071,-0.7071,-0.1622,-0.5556,-0.8155,0.0,-0.7071,-0.7071,0.0,-0.5556,-0.8315,0.0,-0.5556,-0.8315,0.0,-0.7071,-0.7071,0.138,-0.7071,-0.6935,0.0,-0.5556,-0.8315,0.138,-0.7071,-0.6935,0.1622,-0.5556,-0.8155,0.1622,-0.5556,-0.8155,0.138,-0.7071,-0.6935,0.2706,-0.7071,-0.6533,0.1622,-0.5556,-0.8155,0.2706,-0.7071,-0.6533,0.3182,-0.5556,-0.7682,0.3182,-0.5556,-0.7682,0.2706,-0.7071,-0.6533,0.3928,-0.7071,-0.5879,0.3182,-0.5556,-0.7682,0.3928,-0.7071,-0.5879,0.4619,-0.5556,-0.6913,0.4619,-0.5556,-0.6913,0.3928,-0.7071,-0.5879,0.5,-0.7071,-0.5,0.4619,-0.5556,-0.6913,0.5,-0.7071,-0.5,0.5879,-0.5556,-0.5879,0.5879,-0.5556,-0.5879,0.5,-0.7071,-0.5,0.5879,-0.7071,-0.3928,0.5879,-0.5556,-0.5879,0.5879,-0.7071,-0.3928,0.6913,-0.5556,-0.4619,0.6913,-0.5556,-0.4619,0.5879,-0.7071,-0.3928,0.6533,-0.7071,-0.2706,0.6913,-0.5556,-0.4619,0.6533,-0.7071,-0.2706,0.7682,-0.5556,-0.3182,0.7682,-0.5556,-0.3182,0.6533,-0.7071,-0.2706,0.6935,-0.7071,-0.1379,0.7682,-0.5556,-0.3182,0.6935,-0.7071,-0.1379,0.8155,-0.5556,-0.1622,0.8155,-0.5556,-0.1622,0.6935,-0.7071,-0.1379,0.7071,-0.7071,0.0,0.8155,-0.5556,-0.1622,0.7071,-0.7071,0.0,0.8315,-0.5556,0.0,0.8315,-0.5556,0.0,0.7071,-0.7071,0.0,0.6935,-0.7071,0.138,0.8315,-0.5556,0.0,0.6935,-0.7071,0.138,0.8155,-0.5556,0.1622,0.8155,-0.5556,0.1622,0.6935,-0.7071,0.138,0.6533,-0.7071,0.2706,0.8155,-0.5556,0.1622,0.6533,-0.7071,0.2706,0.7682,-0.5556,0.3182,0.7682,-0.5556,0.3182,0.6533,-0.7071,0.2706,0.5879,-0.7071,0.3928,0.7682,-0.5556,0.3182,0.5879,-0.7071,0.3928,0.6913,-0.5556,0.4619,0.6913,-0.5556,0.4619,0.5879,-0.7071,0.3928,0.5,-0.7071,0.5,0.6913,-0.5556,0.4619,0.5,-0.7071,0.5,0.5879,-0.5556,0.5879,0.5879,-0.5556,0.5879,0.5,-0.7071,0.5,0.3928,-0.7071,0.5879,0.5879,-0.5556,0.5879,0.3928,-0.7071,0.5879,0.4619,-0.5556,0.6913,0.4619,-0.5556,0.6913,0.3928,-0.7071,0.5879,0.2706,-0.7071,0.6533,0.4619,-0.5556,0.6913,0.2706,-0.7071,0.6533,0.3182,-0.5556,0.7682,0.3182,-0.5556,0.7682,0.2706,-0.7071,0.6533,0.1379,-0.7071,0.6935,0.3182,-0.5556,0.7682,0.1379,-0.7071,0.6935,0.1622,-0.5556,0.8155,0.1622,-0.5556,0.8155,0.1379,-0.7071,0.6935,0.0,-0.7071,0.7071,0.1622,-0.5556,0.8155,0.0,-0.7071,0.7071,0.0,-0.5556,0.8315,0.0,-0.7071,0.7071,0.0,-0.8315,0.5556,-0.1084,-0.8315,0.5449,0.0,-0.7071,0.7071,-0.1084,-0.8315,0.5449,-0.1379,-0.7071,0.6935,-0.1379,-0.7071,0.6935,-0.1084,-0.8315,0.5449,-0.2126,-0.8315,0.5133,-0.1379,-0.7071,0.6935,-0.2126,-0.8315,0.5133,-0.2706,-0.7071,0.6533,-0.2706,-0.7071,0.6533,-0.2126,-0.8315,0.5133,-0.3087,-0.8315,0.4619,-0.2706,-0.7071,0.6533,-0.3087,-0.8315,0.4619,-0.3928,-0.7071,0.5879,-0.3928,-0.7071,0.5879,-0.3087,-0.8315,0.4619,-0.3928,-0.8315,0.3928,-0.3928,-0.7071,0.5879,-0.3928,-0.8315,0.3928,-0.5,-0.7071,0.5,-0.5,-0.7071,0.5,-0.3928,-0.8315,0.3928,-0.4619,-0.8315,0.3087,-0.5,-0.7071,0.5,-0.4619,-0.8315,0.3087,-0.5879,-0.7071,0.3928,-0.5879,-0.7071,0.3928,-0.4619,-0.8315,0.3087,-0.5133,-0.8315,0.2126,-0.5879,-0.7071,0.3928,-0.5133,-0.8315,0.2126,-0.6533,-0.7071,0.2706,-0.6533,-0.7071,0.2706,-0.5133,-0.8315,0.2126,-0.5449,-0.8315,0.1084,-0.6533,-0.7071,0.2706,-0.5449,-0.8315,0.1084,-0.6935,-0.7071,0.1379,-0.6935,-0.7071,0.1379,-0.5449,-0.8315,0.1084,-0.5556,-0.8315,0.0,-0.6935,-0.7071,0.1379,-0.5556,-0.8315,0.0,-0.7071,-0.7071,0.0,-0.7071,-0.7071,0.0,-0.5556,-0.8315,0.0,-0.5449,-0.8315,-0.1084,-0.7071,-0.7071,0.0,-0.5449,-0.8315,-0.1084,-0.6935,-0.7071,-0.1379,-0.6935,-0.7071,-0.1379,-0.5449,-0.8315,-0.1084,-0.5133,-0.8315,-0.2126,-0.6935,-0.7071,-0.1379,-0.5133,-0.8315,-0.2126,-0.6533,-0.7071,-0.2706,-0.6533,-0.7071,-0.2706,-0.5133,-0.8315,-0.2126,-0.4619,-0.8315,-0.3087,-0.6533,-0.7071,-0.2706,-0.4619,-0.8315,-0.3087,-0.5879,-0.7071,-0.3928,-0.5879,-0.7071,-0.3928,-0.4619,-0.8315,-0.3087,-0.3928,-0.8315,-0.3928,-0.5879,-0.7071,-0.3928,-0.3928,-0.8315,-0.3928,-0.5,-0.7071,-0.5,-0.5,-0.7071,-0.5,-0.3928,-0.8315,-0.3928,-0.3087,-0.8315,-0.4619,-0.5,-0.7071,-0.5,-0.3087,-0.8315,-0.4619,-0.3928,-0.7071,-0.5879,-0.3928,-0.7071,-0.5879,-0.3087,-0.8315,-0.4619,-0.2126,-0.8315,-0.5133,-0.3928,-0.7071,-0.5879,-0.2126,-0.8315,-0.5133,-0.2706,-0.7071,-0.6533,-0.2706,-0.7071,-0.6533,-0.2126,-0.8315,-0.5133,-0.1084,-0.8315,-0.5449,-0.2706,-0.7071,-0.6533,-0.1084,-0.8315,-0.5449,-0.1379,-0.7071,-0.6935,-0.1379,-0.7071,-0.6935,-0.1084,-0.8315,-0.5449,0.0,-0.8315,-0.5556,-0.1379,-0.7071,-0.6935,0.0,-0.8315,-0.5556,0.0,-0.7071,-0.7071,0.0,-0.7071,-0.7071,0.0,-0.8315,-0.5556,0.1084,-0.8315,-0.5449,0.0,-0.7071,-0.7071,0.1084,-0.8315,-0.5449,0.138,-0.7071,-0.6935,0.138,-0.7071,-0.6935,0.1084,-0.8315,-0.5449,0.2126,-0.8315,-0.5133,0.138,-0.7071,-0.6935,0.2126,-0.8315,-0.5133,0.2706,-0.7071,-0.6533,0.2706,-0.7071,-0.6533,0.2126,-0.8315,-0.5133,0.3087,-0.8315,-0.4619,0.2706,-0.7071,-0.6533,0.3087,-0.8315,-0.4619,0.3928,-0.7071,-0.5879,0.3928,-0.7071,-0.5879,0.3087,-0.8315,-0.4619,0.3928,-0.8315,-0.3928,0.3928,-0.7071,-0.5879,0.3928,-0.8315,-0.3928,0.5,-0.7071,-0.5,0.5,-0.7071,-0.5,0.3928,-0.8315,-0.3928,0.4619,-0.8315,-0.3087,0.5,-0.7071,-0.5,0.4619,-0.8315,-0.3087,0.5879,-0.7071,-0.3928,0.5879,-0.7071,-0.3928,0.4619,-0.8315,-0.3087,0.5133,-0.8315,-0.2126,0.5879,-0.7071,-0.3928,0.5133,-0.8315,-0.2126,0.6533,-0.7071,-0.2706,0.6533,-0.7071,-0.2706,0.5133,-0.8315,-0.2126,0.5449,-0.8315,-0.1084,0.6533,-0.7071,-0.2706,0.5449,-0.8315,-0.1084,0.6935,-0.7071,-0.1379,0.6935,-0.7071,-0.1379,0.5449,-0.8315,-0.1084,0.5556,-0.8315,0.0,0.6935,-0.7071,-0.1379,0.5556,-0.8315,0.0,0.7071,-0.7071,0.0,0.7071,-0.7071,0.0,0.5556,-0.8315,0.0,0.5449,-0.8315,0.1084,0.7071,-0.7071,0.0,0.5449,-0.8315,0.1084,0.6935,-0.7071,0.138,0.6935,-0.7071,0.138,0.5449,-0.8315,0.1084,0.5133,-0.8315,0.2126,0.6935,-0.7071,0.138,0.5133,-0.8315,0.2126,0.6533,-0.7071,0.2706,0.6533,-0.7071,0.2706,0.5133,-0.8315,0.2126,0.4619,-0.8315,0.3087,0.6533,-0.7071,0.2706,0.4619,-0.8315,0.3087,0.5879,-0.7071,0.3928,0.5879,-0.7071,0.3928,0.4619,-0.8315,0.3087,0.3928,-0.8315,0.3928,0.5879,-0.7071,0.3928,0.3928,-0.8315,0.3928,0.5,-0.7071,0.5,0.5,-0.7071,0.5,0.3928,-0.8315,0.3928,0.3087,-0.8315,0.4619,0.5,-0.7071,0.5,0.3087,-0.8315,0.4619,0.3928,-0.7071,0.5879,0.3928,-0.7071,0.5879,0.3087,-0.8315,0.4619,0.2126,-0.8315,0.5133,0.3928,-0.7071,0.5879,0.2126,-0.8315,0.5133,0.2706,-0.7071,0.6533,0.2706,-0.7071,0.6533,0.2126,-0.8315,0.5133,0.1084,-0.8315,0.5449,0.2706,-0.7071,0.6533,0.1084,-0.8315,0.5449,0.1379,-0.7071,0.6935,0.1379,-0.7071,0.6935,0.1084,-0.8315,0.5449,0.0,-0.8315,0.5556,0.1379,-0.7071,0.6935,0.0,-0.8315,0.5556,0.0,-0.7071,0.7071,0.0,-0.8315,0.5556,0.0,-0.9239,0.3827,-0.0747,-0.9239,0.3753,0.0,-0.8315,0.5556,-0.0747,-0.9239,0.3753,-0.1084,-0.8315,0.5449,-0.1084,-0.8315,0.5449,-0.0747,-0.9239,0.3753,-0.1464,-0.9239,0.3536,-0.1084,-0.8315,0.5449,-0.1464,-0.9239,0.3536,-0.2126,-0.8315,0.5133,-0.2126,-0.8315,0.5133,-0.1464,-0.9239,0.3536,-0.2126,-0.9239,0.3182,-0.2126,-0.8315,0.5133,-0.2126,-0.9239,0.3182,-0.3087,-0.8315,0.4619,-0.3087,-0.8315,0.4619,-0.2126,-0.9239,0.3182,-0.2706,-0.9239,0.2706,-0.3087,-0.8315,0.4619,-0.2706,-0.9239,0.2706,-0.3928,-0.8315,0.3928,-0.3928,-0.8315,0.3928,-0.2706,-0.9239,0.2706,-0.3182,-0.9239,0.2126,-0.3928,-0.8315,0.3928,-0.3182,-0.9239,0.2126,-0.4619,-0.8315,0.3087,-0.4619,-0.8315,0.3087,-0.3182,-0.9239,0.2126,-0.3536,-0.9239,0.1464,-0.4619,-0.8315,0.3087,-0.3536,-0.9239,0.1464,-0.5133,-0.8315,0.2126,-0.5133,-0.8315,0.2126,-0.3536,-0.9239,0.1464,-0.3753,-0.9239,0.0747,-0.5133,-0.8315,0.2126,-0.3753,-0.9239,0.0747,-0.5449,-0.8315,0.1084,-0.5449,-0.8315,0.1084,-0.3753,-0.9239,0.0747,-0.3827,-0.9239,0.0,-0.5449,-0.8315,0.1084,-0.3827,-0.9239,0.0,-0.5556,-0.8315,0.0,-0.5556,-0.8315,0.0,-0.3827,-0.9239,0.0,-0.3753,-0.9239,-0.0747,-0.5556,-0.8315,0.0,-0.3753,-0.9239,-0.0747,-0.5449,-0.8315,-0.1084,-0.5449,-0.8315,-0.1084,-0.3753,-0.9239,-0.0747,-0.3536,-0.9239,-0.1464,-0.5449,-0.8315,-0.1084,-0.3536,-0.9239,-0.1464,-0.5133,-0.8315,-0.2126,-0.5133,-0.8315,-0.2126,-0.3536,-0.9239,-0.1464,-0.3182,-0.9239,-0.2126,-0.5133,-0.8315,-0.2126,-0.3182,-0.9239,-0.2126,-0.4619,-0.8315,-0.3087,-0.4619,-0.8315,-0.3087,-0.3182,-0.9239,-0.2126,-0.2706,-0.9239,-0.2706,-0.4619,-0.8315,-0.3087,-0.2706,-0.9239,-0.2706,-0.3928,-0.8315,-0.3928,-0.3928,-0.8315,-0.3928,-0.2706,-0.9239,-0.2706,-0.2126,-0.9239,-0.3182,-0.3928,-0.8315,-0.3928,-0.2126,-0.9239,-0.3182,-0.3087,-0.8315,-0.4619,-0.3087,-0.8315,-0.4619,-0.2126,-0.9239,-0.3182,-0.1464,-0.9239,-0.3536,-0.3087,-0.8315,-0.4619,-0.1464,-0.9239,-0.3536,-0.2126,-0.8315,-0.5133,-0.2126,-0.8315,-0.5133,-0.1464,-0.9239,-0.3536,-0.0747,-0.9239,-0.3753,-0.2126,-0.8315,-0.5133,-0.0747,-0.9239,-0.3753,-0.1084,-0.8315,-0.5449,-0.1084,-0.8315,-0.5449,-0.0747,-0.9239,-0.3753,0.0,-0.9239,-0.3827,-0.1084,-0.8315,-0.5449,0.0,-0.9239,-0.3827,0.0,-0.8315,-0.5556,0.0,-0.8315,-0.5556,0.0,-0.9239,-0.3827,0.0747,-0.9239,-0.3753,0.0,-0.8315,-0.5556,0.0747,-0.9239,-0.3753,0.1084,-0.8315,-0.5449,0.1084,-0.8315,-0.5449,0.0747,-0.9239,-0.3753,0.1464,-0.9239,-0.3536,0.1084,-0.8315,-0.5449,0.1464,-0.9239,-0.3536,0.2126,-0.8315,-0.5133,0.2126,-0.8315,-0.5133,0.1464,-0.9239,-0.3536,0.2126,-0.9239,-0.3182,0.2126,-0.8315,-0.5133,0.2126,-0.9239,-0.3182,0.3087,-0.8315,-0.4619,0.3087,-0.8315,-0.4619,0.2126,-0.9239,-0.3182,0.2706,-0.9239,-0.2706,0.3087,-0.8315,-0.4619,0.2706,-0.9239,-0.2706,0.3928,-0.8315,-0.3928,0.3928,-0.8315,-0.3928,0.2706,-0.9239,-0.2706,0.3182,-0.9239,-0.2126,0.3928,-0.8315,-0.3928,0.3182,-0.9239,-0.2126,0.4619,-0.8315,-0.3087,0.4619,-0.8315,-0.3087,0.3182,-0.9239,-0.2126,0.3536,-0.9239,-0.1464,0.4619,-0.8315,-0.3087,0.3536,-0.9239,-0.1464,0.5133,-0.8315,-0.2126,0.5133,-0.8315,-0.2126,0.3536,-0.9239,-0.1464,0.3753,-0.9239,-0.0747,0.5133,-0.8315,-0.2126,0.3753,-0.9239,-0.0747,0.5449,-0.8315,-0.1084,0.5449,-0.8315,-0.1084,0.3753,-0.9239,-0.0747,0.3827,-0.9239,0.0,0.5449,-0.8315,-0.1084,0.3827,-0.9239,0.0,0.5556,-0.8315,0.0,0.5556,-0.8315,0.0,0.3827,-0.9239,0.0,0.3753,-0.9239,0.0747,0.5556,-0.8315,0.0,0.3753,-0.9239,0.0747,0.5449,-0.8315,0.1084,0.5449,-0.8315,0.1084,0.3753,-0.9239,0.0747,0.3536,-0.9239,0.1464,0.5449,-0.8315,0.1084,0.3536,-0.9239,0.1464,0.5133,-0.8315,0.2126,0.5133,-0.8315,0.2126,0.3536,-0.9239,0.1464,0.3182,-0.9239,0.2126,0.5133,-0.8315,0.2126,0.3182,-0.9239,0.2126,0.4619,-0.8315,0.3087,0.4619,-0.8315,0.3087,0.3182,-0.9239,0.2126,0.2706,-0.9239,0.2706,0.4619,-0.8315,0.3087,0.2706,-0.9239,0.2706,0.3928,-0.8315,0.3928,0.3928,-0.8315,0.3928,0.2706,-0.9239,0.2706,0.2126,-0.9239,0.3182,0.3928,-0.8315,0.3928,0.2126,-0.9239,0.3182,0.3087,-0.8315,0.4619,0.3087,-0.8315,0.4619,0.2126,-0.9239,0.3182,0.1464,-0.9239,0.3536,0.3087,-0.8315,0.4619,0.1464,-0.9239,0.3536,0.2126,-0.8315,0.5133,0.2126,-0.8315,0.5133,0.1464,-0.9239,0.3536,0.0747,-0.9239,0.3753,0.2126,-0.8315,0.5133,0.0747,-0.9239,0.3753,0.1084,-0.8315,0.5449,0.1084,-0.8315,0.5449,0.0747,-0.9239,0.3753,0.0,-0.9239,0.3827,0.1084,-0.8315,0.5449,0.0,-0.9239,0.3827,0.0,-0.8315,0.5556,0.0,-0.9239,0.3827,0.0,-0.9808,0.1951,-0.0381,-0.9808,0.1913,0.0,-0.9239,0.3827,-0.0381,-0.9808,0.1913,-0.0747,-0.9239,0.3753,-0.0747,-0.9239,0.3753,-0.0381,-0.9808,0.1913,-0.0747,-0.9808,0.1802,-0.0747,-0.9239,0.3753,-0.0747,-0.9808,0.1802,-0.1464,-0.9239,0.3536,-0.1464,-0.9239,0.3536,-0.0747,-0.9808,0.1802,-0.1084,-0.9808,0.1622,-0.1464,-0.9239,0.3536,-0.1084,-0.9808,0.1622,-0.2126,-0.9239,0.3182,-0.2126,-0.9239,0.3182,-0.1084,-0.9808,0.1622,-0.1379,-0.9808,0.1379,-0.2126,-0.9239,0.3182,-0.1379,-0.9808,0.1379,-0.2706,-0.9239,0.2706,-0.2706,-0.9239,0.2706,-0.1379,-0.9808,0.1379,-0.1622,-0.9808,0.1084,-0.2706,-0.9239,0.2706,-0.1622,-0.9808,0.1084,-0.3182,-0.9239,0.2126,-0.3182,-0.9239,0.2126,-0.1622,-0.9808,0.1084,-0.1802,-0.9808,0.0747,-0.3182,-0.9239,0.2126,-0.1802,-0.9808,0.0747,-0.3536,-0.9239,0.1464,-0.3536,-0.9239,0.1464,-0.1802,-0.9808,0.0747,-0.1913,-0.9808,0.0381,-0.3536,-0.9239,0.1464,-0.1913,-0.9808,0.0381,-0.3753,-0.9239,0.0747,-0.3753,-0.9239,0.0747,-0.1913,-0.9808,0.0381,-0.1951,-0.9808,0.0,-0.3753,-0.9239,0.0747,-0.1951,-0.9808,0.0,-0.3827,-0.9239,0.0,-0.3827,-0.9239,0.0,-0.1951,-0.9808,0.0,-0.1913,-0.9808,-0.0381,-0.3827,-0.9239,0.0,-0.1913,-0.9808,-0.0381,-0.3753,-0.9239,-0.0747,-0.3753,-0.9239,-0.0747,-0.1913,-0.9808,-0.0381,-0.1802,-0.9808,-0.0747,-0.3753,-0.9239,-0.0747,-0.1802,-0.9808,-0.0747,-0.3536,-0.9239,-0.1464,-0.3536,-0.9239,-0.1464,-0.1802,-0.9808,-0.0747,-0.1622,-0.9808,-0.1084,-0.3536,-0.9239,-0.1464,-0.1622,-0.9808,-0.1084,-0.3182,-0.9239,-0.2126,-0.3182,-0.9239,-0.2126,-0.1622,-0.9808,-0.1084,-0.1379,-0.9808,-0.1379,-0.3182,-0.9239,-0.2126,-0.1379,-0.9808,-0.1379,-0.2706,-0.9239,-0.2706,-0.2706,-0.9239,-0.2706,-0.1379,-0.9808,-0.1379,-0.1084,-0.9808,-0.1622,-0.2706,-0.9239,-0.2706,-0.1084,-0.9808,-0.1622,-0.2126,-0.9239,-0.3182,-0.2126,-0.9239,-0.3182,-0.1084,-0.9808,-0.1622,-0.0747,-0.9808,-0.1802,-0.2126,-0.9239,-0.3182,-0.0747,-0.9808,-0.1802,-0.1464,-0.9239,-0.3536,-0.1464,-0.9239,-0.3536,-0.0747,-0.9808,-0.1802,-0.0381,-0.9808,-0.1913,-0.1464,-0.9239,-0.3536,-0.0381,-0.9808,-0.1913,-0.0747,-0.9239,-0.3753,-0.0747,-0.9239,-0.3753,-0.0381,-0.9808,-0.1913,0.0,-0.9808,-0.1951,-0.0747,-0.9239,-0.3753,0.0,-0.9808,-0.1951,0.0,-0.9239,-0.3827,0.0,-0.9239,-0.3827,0.0,-0.9808,-0.1951,0.0381,-0.9808,-0.1913,0.0,-0.9239,-0.3827,0.0381,-0.9808,-0.1913,0.0747,-0.9239,-0.3753,0.0747,-0.9239,-0.3753,0.0381,-0.9808,-0.1913,0.0747,-0.9808,-0.1802,0.0747,-0.9239,-0.3753,0.0747,-0.9808,-0.1802,0.1464,-0.9239,-0.3536,0.1464,-0.9239,-0.3536,0.0747,-0.9808,-0.1802,0.1084,-0.9808,-0.1622,0.1464,-0.9239,-0.3536,0.1084,-0.9808,-0.1622,0.2126,-0.9239,-0.3182,0.2126,-0.9239,-0.3182,0.1084,-0.9808,-0.1622,0.1379,-0.9808,-0.1379,0.2126,-0.9239,-0.3182,0.1379,-0.9808,-0.1379,0.2706,-0.9239,-0.2706,0.2706,-0.9239,-0.2706,0.1379,-0.9808,-0.1379,0.1622,-0.9808,-0.1084,0.2706,-0.9239,-0.2706,0.1622,-0.9808,-0.1084,0.3182,-0.9239,-0.2126,0.3182,-0.9239,-0.2126,0.1622,-0.9808,-0.1084,0.1802,-0.9808,-0.0747,0.3182,-0.9239,-0.2126,0.1802,-0.9808,-0.0747,0.3536,-0.9239,-0.1464,0.3536,-0.9239,-0.1464,0.1802,-0.9808,-0.0747,0.1913,-0.9808,-0.0381,0.3536,-0.9239,-0.1464,0.1913,-0.9808,-0.0381,0.3753,-0.9239,-0.0747,0.3753,-0.9239,-0.0747,0.1913,-0.9808,-0.0381,0.1951,-0.9808,0.0,0.3753,-0.9239,-0.0747,0.1951,-0.9808,0.0,0.3827,-0.9239,0.0,0.3827,-0.9239,0.0,0.1951,-0.9808,0.0,0.1913,-0.9808,0.0381,0.3827,-0.9239,0.0,0.1913,-0.9808,0.0381,0.3753,-0.9239,0.0747,0.3753,-0.9239,0.0747,0.1913,-0.9808,0.0381,0.1802,-0.9808,0.0747,0.3753,-0.9239,0.0747,0.1802,-0.9808,0.0747,0.3536,-0.9239,0.1464,0.3536,-0.9239,0.1464,0.1802,-0.9808,0.0747,0.1622,-0.9808,0.1084,0.3536,-0.9239,0.1464,0.1622,-0.9808,0.1084,0.3182,-0.9239,0.2126,0.3182,-0.9239,0.2126,0.1622,-0.9808,0.1084,0.1379,-0.9808,0.1379,0.3182,-0.9239,0.2126,0.1379,-0.9808,0.1379,0.2706,-0.9239,0.2706,0.2706,-0.9239,0.2706,0.1379,-0.9808,0.1379,0.1084,-0.9808,0.1622,0.2706,-0.9239,0.2706,0.1084,-0.9808,0.1622,0.2126,-0.9239,0.3182,0.2126,-0.9239,0.3182,0.1084,-0.9808,0.1622,0.0747,-0.9808,0.1802,0.2126,-0.9239,0.3182,0.0747,-0.9808,0.1802,0.1464,-0.9239,0.3536,0.1464,-0.9239,0.3536,0.0747,-0.9808,0.1802,0.0381,-0.9808,0.1913,0.1464,-0.9239,0.3536,0.0381,-0.9808,0.1913,0.0747,-0.9239,0.3753,0.0747,-0.9239,0.3753,0.0381,-0.9808,0.1913,0.0,-0.9808,0.1951,0.0747,-0.9239,0.3753,0.0,-0.9808,0.1951,0.0,-0.9239,0.3827,0.0,-1.0,0.0,-0.0381,-0.9808,0.1913,0.0,-0.9808,0.1951,0.0,-1.0,0.0,-0.0747,-0.9808,0.1802,-0.0381,-0.9808,0.1913,0.0,-1.0,0.0,-0.1084,-0.9808,0.1622,-0.0747,-0.9808,0.1802,0.0,-1.0,0.0,-0.1379,-0.9808,0.1379,-0.1084,-0.9808,0.1622,0.0,-1.0,0.0,-0.1622,-0.9808,0.1084,-0.1379,-0.9808,0.1379,0.0,-1.0,0.0,-0.1802,-0.9808,0.0747,-0.1622,-0.9808,0.1084,0.0,-1.0,0.0,-0.1913,-0.9808,0.0381,-0.1802,-0.9808,0.0747,0.0,-1.0,0.0,-0.1951,-0.9808,0.0,-0.1913,-0.9808,0.0381,0.0,-1.0,0.0,-0.1913,-0.9808,-0.0381,-0.1951,-0.9808,0.0,0.0,-1.0,0.0,-0.1802,-0.9808,-0.0747,-0.1913,-0.9808,-0.0381,0.0,-1.0,0.0,-0.1622,-0.9808,-0.1084,-0.1802,-0.9808,-0.0747,0.0,-1.0,0.0,-0.1379,-0.9808,-0.1379,-0.1622,-0.9808,-0.1084,0.0,-1.0,0.0,-0.1084,-0.9808,-0.1622,-0.1379,-0.9808,-0.1379,0.0,-1.0,0.0,-0.0747,-0.9808,-0.1802,-0.1084,-0.9808,-0.1622,0.0,-1.0,0.0,-0.0381,-0.9808,-0.1913,-0.0747,-0.9808,-0.1802,0.0,-1.0,0.0,0.0,-0.9808,-0.1951,-0.0381,-0.9808,-0.1913,0.0,-1.0,0.0,0.0381,-0.9808,-0.1913,0.0,-0.9808,-0.1951,0.0,-1.0,0.0,0.0747,-0.9808,-0.1802,0.0381,-0.9808,-0.1913,0.0,-1.0,0.0,0.1084,-0.9808,-0.1622,0.0747,-0.9808,-0.1802,0.0,-1.0,0.0,0.1379,-0.9808,-0.1379,0.1084,-0.9808,-0.1622,0.0,-1.0,0.0,0.1622,-0.9808,-0.1084,0.1379,-0.9808,-0.1379,0.0,-1.0,0.0,0.1802,-0.9808,-0.0747,0.1622,-0.9808,-0.1084,0.0,-1.0,0.0,0.1913,-0.9808,-0.0381,0.1802,-0.9808,-0.0747,0.0,-1.0,0.0,0.1951,-0.9808,0.0,0.1913,-0.9808,-0.0381,0.0,-1.0,0.0,0.1913,-0.9808,0.0381,0.1951,-0.9808,0.0,0.0,-1.0,0.0,0.1802,-0.9808,0.0747,0.1913,-0.9808,0.0381,0.0,-1.0,0.0,0.1622,-0.9808,0.1084,0.1802,-0.9808,0.0747,0.0,-1.0,0.0,0.1379,-0.9808,0.1379,0.1622,-0.9808,0.1084,0.0,-1.0,0.0,0.1084,-0.9808,0.1622,0.1379,-0.9808,0.1379,0.0,-1.0,0.0,0.0747,-0.9808,0.1802,0.1084,-0.9808,0.1622,0.0,-1.0,0.0,0.0381,-0.9808,0.1913,0.0747,-0.9808,0.1802,0.0,-1.0,0.0,0.0,-0.9808,0.1951,0.0381,-0.9808,0.1913],"normals":[0.0,1.0,0.0,0.0,0.9796,0.201,-0.0392,0.9796,0.1971,0.0,1.0,0.0,-0.0392,0.9796,0.1971,-0.0769,0.9796,0.1857,0.0,1.0,0.0,-0.0769,0.9796,0.1857,-0.1117,0.9796,0.1671,0.0,1.0,0.0,-0.1117,0.9796,0.1671,-0.1421,0.9796,0.1421,0.0,1.0,0.0,-0.1421,0.9796,0.1421,-0.1671,0.9796,0.1117,0.0,1.0,0.0,-0.1671,0.9796,0.1117,-0.1857,0.9796,0.0769,0.0,1.0,0.0,-0.1857,0.9796,0.0769,-0.1971,0.9796,0.0392,0.0,1.0,0.0,-0.1971,0.9796,0.0392,-0.201,0.9796,0.0,0.0,1.0,0.0,-0.201,0.9796,0.0,-0.1971,0.9796,-0.0392,0.0,1.0,0.0,-0.1971,0.9796,-0.0392,-0.1857,0.9796,-0.0769,0.0,1.0,0.0,-0.1857,0.9796,-0.0769,-0.1671,0.9796,-0.1117,0.0,1.0,0.0,-0.1671,0.9796,-0.1117,-0.1421,0.9796,-0.1421,0.0,1.0,0.0,-0.1421,0.9796,-0.1421,-0.1117,0.9796,-0.1671,0.0,1.0,0.0,-0.1117,0.9796,-0.1671,-0.0769,0.9796,-0.1857,0.0,1.0,0.0,-0.0769,0.9796,-0.1857,-0.0392,0.9796,-0.1971,0.0,1.0,0.0,-0.0392,0.9796,-0.1971,0.0,0.9796,-0.201,0.0,1.0,0.0,0.0,0.9796,-0.201,0.0392,0.9796,-0.1971,0.0,1.0,0.0,0.0392,0.9796,-0.1971,0.0769,0.9796,-0.1857,0.0,1.0,0.0,0.0769,0.9796,-0.1857,0.1117,0.9796,-0.1671,0.0,1.0,0.0,0.1117,0.9796,-0.1671,0.1421,0.9796,-0.1421,0.0,1.0,0.0,0.1421,0.9796,-0.1421,0.1671,0.9796,-0.1117,0.0,1.0,0.0,0.1671,0.9796,-0.1117,0.1857,0.9796,-0.0769,0.0,1.0,0.0,0.1857,0.9796,-0.0769,0.1971,0.9796,-0.0392,0.0,1.0,0.0,0.1971,0.9796,-0.0392,0.201,0.9796,0.0,0.0,1.0,0.0,0.201,0.9796,0.0,0.1971,0.9796,0.0392,0.0,1.0,0.0,0.1971,0.9796,0.0392,0.1857,0.9796,0.0769,0.0,1.0,0.0,0.1857,0.9796,0.0769,0.1671,0.9796,0.1117,0.0,1.0,0.0,0.1671,0.9796,0.1117,0.1421,0.9796,0.1421,0.0,1.0,0.0,0.1421,0.9796,0.1421,0.1117,0.9796,0.1671,0.0,1.0,0.0,0.1117,0.9796,0.1671,0.0769,0.9796,0.1857,0.0,1.0,0.0,0.0769,0.9796,0.1857,0.0392,0.9796,0.1971,0.0,1.0,0.0,0.0392,0.9796,0.1971,0.0,0.9796,0.201,0.0,0.9796,0.201,0.0,0.9217,0.3879,-0.0757,0.9217,0.3804,0.0,0.9796,0.201,-0.0757,0.9217,0.3804,-0.0392,0.9796,0.1971,-0.0392,0.9796,0.1971,-0.0757,0.9217,0.3804,-0.1484,0.9217,0.3584,-0.0392,0.9796,0.1971,-0.1484,0.9217,0.3584,-0.0769,0.9796,0.1857,-0.0769,0.9796,0.1857,-0.1484,0.9217,0.3584,-0.2155,0.9217,0.3225,-0.0769,0.9796,0.1857,-0.2155,0.9217,0.3225,-0.1117,0.9796,0.1671,-0.1117,0.9796,0.1671,-0.2155,0.9217,0.3225,-0.2743,0.9217,0.2743,-0.1117,0.9796,0.1671,-0.2743,0.9217,0.2743,-0.1421,0.9796,0.1421,-0.1421,0.9796,0.1421,-0.2743,0.9217,0.2743,-0.3225,0.9217,0.2155,-0.1421,0.9796,0.1421,-0.3225,0.9217,0.2155,-0.1671,0.9796,0.1117,-0.1671,0.9796,0.1117,-0.3225,0.9217,0.2155,-0.3584,0.9217,0.1484,-0.1671,0.9796,0.1117,-0.3584,0.9217,0.1484,-0.1857,0.9796,0.0769,-0.1857,0.9796,0.0769,-0.3584,0.9217,0.1484,-0.3804,0.9217,0.0757,-0.1857,0.9796,0.0769,-0.3804,0.9217,0.0757,-0.1971,0.9796,0.0392,-0.1971,0.9796,0.0392,-0.3804,0.9217,0.0757,-0.3879,0.9217,0.0,-0.1971,0.9796,0.0392,-0.3879,0.9217,0.0,-0.201,0.9796,0.0,-0.201,0.9796,0.0,-0.3879,0.9217,0.0,-0.3804,0.9217,-0.0757,-0.201,0.9796,0.0,-0.3804,0.9217,-0.0757,-0.1971,0.9796,-0.0392,-0.1971,0.9796,-0.0392,-0.3804,0.9217,-0.0757,-0.3584,0.9217,-0.1484,-0.1971,0.9796,-0.0392,-0.3584,0.9217,-0.1484,-0.1857,0.9796,-0.0769,-0.1857,0.9796,-0.0769,-0.3584,0.9217,-0.1484,-0.3225,0.9217,-0.2155,-0.1857,0.9796,-0.0769,-0.3225,0.9217,-0.2155,-0.1671,0.9796,-0.1117,-0.1671,0.9796,-0.1117,-0.3225,0.9217,-0.2155,-0.2743,0.9217,-0.2743,-0.1671,0.9796,-0.1117,-0.2743,0.9217,-0.2743,-0.1421,0.9796,-0.1421,-0.1421,0.9796,-0.1421,-0.2743,0.9217,-0.2743,-0.2155,0.9217,-0.3225,-0.1421,0.9796,-0.1421,-0.2155,0.9217,-0.3225,-0.1117,0.9796,-0.1671,-0.1117,0.9796,-0.1671,-0.2155,0.9217,-0.3225,-0.1484,0.9217,-0.3584,-0.1117,0.9796,-0.1671,-0.1484,0.9217,-0.3584,-0.0769,0.9796,-0.1857,-0.0769,0.9796,-0.1857,-0.1484,0.9217,-0.3584,-0.0757,0.9217,-0.3804,-0.0769,0.9796,-0.1857,-0.0757,0.9217,-0.3804,-0.0392,0.9796,-0.1971,-0.0392,0.9796,-0.1971,-0.0757,0.9217,-0.3804,0.0,0.9217,-0.3879,-0.0392,0.9796,-0.1971,0.0,0.9217,-0.3879,0.0,0.9796,-0.201,0.0,0.9796,-0.201,0.0,0.9217,-0.3879,0.0757,0.9217,-0.3804,0.0,0.9796,-0.201,0.0757,0.9217,-0.3804,0.0392,0.9796,-0.1971,0.0392,0.9796,-0.1971,0.0757,0.9217,-0.3804,0.1484,0.9217,-0.3584,0.0392,0.9796,-0.1971,0.1484,0.9217,-0.3584,0.0769,0.9796,-0.1857,0.0769,0.9796,-0.1857,0.1484,0.9217,-0.3584,0.2155,0.9217,-0.3225,0.0769,0.9796,-0.1857,0.2155,0.9217,-0.3225,0.1117,0.9796,-0.1671,0.1117,0.9796,-0.1671,0.2155,0.9217,-0.3225,0.2743,0.9217,-0.2743,0.1117,0.9796,-0.1671,0.2743,0.9217,-0.2743,0.1421,0.9796,-0.1421,0.1421,0.9796,-0.1421,0.2743,0.9217,-0.2743,0.3225,0.9217,-0.2155,0.1421,0.9796,-0.1421,0.3225,0.9217,-0.2155,0.1671,0.9796,-0.1117,0.1671,0.9796,-0.1117,0.3225,0.9217,-0.2155,0.3584,0.9217,-0.1484,0.1671,0.9796,-0.1117,0.3584,0.9217,-0.1484,0.1857,0.9796,-0.0769,0.1857,0.9796,-0.0769,0.3584,0.9217,-0.1484,0.3804,0.9217,-0.0757,0.1857,0.9796,-0.0769,0.3804,0.9217,-0.0757,0.1971,0.9796,-0.0392,0.1971,0.9796,-0.0392,0.3804,0.9217,-0.0757,0.3879,0.9217,0.0,0.1971,0.9796,-0.0392,0.3879,0.9217,0.0,0.201,0.9796,0.0,0.201,0.9796,0.0,0.3879,0.9217,0.0,0.3804,0.9217,0.0757,0.201,0.9796,0.0,0.3804,0.9217,0.0757,0.1971,0.9796,0.0392,0.1971,0.9796,0.0392,0.3804,0.9217,0.0757,0.3584,0.9217,0.1484,0.1971,0.9796,0.0392,0.3584,0.9217,0.1484,0.1857,0.9796,0.0769,0.1857,0.9796,0.0769,0.3584,0.9217,0.1484,0.3225,0.9217,0.2155,0.1857,0.9796,0.0769,0.3225,0.9217,0.2155,0.1671,0.9796,0.1117,0.1671,0.9796,0.1117,0.3225,0.9217,0.2155,0.2743,0.9217,0.2743,0.1671,0.9796,0.1117,0.2743,0.9217,0.2743,0.1421,0.9796,0.1421,0.1421,0.9796,0.1421,0.2743,0.9217,0.2743,0.2155,0.9217,0.3225,0.1421,0.9796,0.1421,0.2155,0.9217,0.3225,0.1117,0.9796,0.1671,0.1117,0.9796,0.1671,0.2155,0.9217,0.3225,0.1484,0.9217,0.3584,0.1117,0.9796,0.1671,0.1484,0.9217,0.3584,0.0769,0.9796,0.1857,0.0769,0.9796,0.1857,0.1484,0.9217,0.3584,0.0757,0.9217,0.3804,0.0769,0.9796,0.1857,0.0757,0.9217,0.3804,0.0392,0.9796,0.1971,0.0392,0.9796,0.1971,0.0757,0.9217,0.3804,0.0,0.9217,0.3879,0.0392,0.9796,0.1971,0.0,0.9217,0.3879,0.0,0.9796,0.201,0.0,0.9217,0.3879,0.0,0.8286,0.5598,-0.1092,0.8286,0.549,0.0,0.9217,0.3879,-0.1092,0.8286,0.549,-0.0757,0.9217,0.3804,-0.0757,0.9217,0.3804,-0.1092,0.8286,0.549,-0.2142,0.8286,0.5172,-0.0757,0.9217,0.3804,-0.2142,0.8286,0.5172,-0.1484,0.9217,0.3584,-0.1484,0.9217,0.3584,-0.2142,0.8286,0.5172,-0.311,0.8286,0.4654,-0.1484,0.9217,0.3584,-0.311,0.8286,0.4654,-0.2155,0.9217,0.3225,-0.2155,0.9217,0.3225,-0.311,0.8286,0.4654,-0.3958,0.8286,0.3958,-0.2155,0.9217,0.3225,-0.3958,0.8286,0.3958,-0.2743,0.9217,0.2743,-0.2743,0.9217,0.2743,-0.3958,0.8286,0.3958,-0.4654,0.8286,0.311,-0.2743,0.9217,0.2743,-0.4654,0.8286,0.311,-0.3225,0.9217,0.2155,-0.3225,0.9217,0.2155,-0.4654,0.8286,0.311,-0.5172,0.8286,0.2142,-0.3225,0.9217,0.2155,-0.5172,0.8286,0.2142,-0.3584,0.9217,0.1484,-0.3584,0.9217,0.1484,-0.5172,0.8286,0.2142,-0.549,0.8286,0.1092,-0.3584,0.9217,0.1484,-0.549,0.8286,0.1092,-0.3804,0.9217,0.0757,-0.3804,0.9217,0.0757,-0.549,0.8286,0.1092,-0.5598,0.8286,0.0,-0.3804,0.9217,0.0757,-0.5598,0.8286,0.0,-0.3879,0.9217,0.0,-0.3879,0.9217,0.0,-0.5598,0.8286,0.0,-0.549,0.8286,-0.1092,-0.3879,0.9217,0.0,-0.549,0.8286,-0.1092,-0.3804,0.9217,-0.0757,-0.3804,0.9217,-0.0757,-0.549,0.8286,-0.1092,-0.5172,0.8286,-0.2142,-0.3804,0.9217,-0.0757,-0.5172,0.8286,-0.2142,-0.3584,0.9217,-0.1484,-0.3584,0.9217,-0.1484,-0.5172,0.8286,-0.2142,-0.4654,0.8286,-0.311,-0.3584,0.9217,-0.1484,-0.4654,0.8286,-0.311,-0.3225,0.9217,-0.2155,-0.3225,0.9217,-0.2155,-0.4654,0.8286,-0.311,-0.3958,0.8286,-0.3958,-0.3225,0.9217,-0.2155,-0.3958,0.8286,-0.3958,-0.2743,0.9217,-0.2743,-0.2743,0.9217,-0.2743,-0.3958,0.8286,-0.3958,-0.311,0.8286,-0.4654,-0.2743,0.9217,-0.2743,-0.311,0.8286,-0.4654,-0.2155,0.9217,-0.3225,-0.2155,0.9217,-0.3225,-0.311,0.8286,-0.4654,-0.2142,0.8286,-0.5172,-0.2155,0.9217,-0.3225,-0.2142,0.8286,-0.5172,-0.1484,0.9217,-0.3584,-0.1484,0.9217,-0.3584,-0.2142,0.8286,-0.5172,-0.1092,0.8286,-0.549,-0.1484,0.9217,-0.3584,-0.1092,0.8286,-0.549,-0.0757,0.9217,-0.3804,-0.0757,0.9217,-0.3804,-0.1092,0.8286,-0.549,0.0,0.8286,-0.5598,-0.0757,0.9217,-0.3804,0.0,0.8286,-0.5598,0.0,0.9217,-0.3879,0.0,0.9217,-0.3879,0.0,0.8286,-0.5598,0.1092,0.8286,-0.549,0.0,0.9217,-0.3879,0.1092,0.8286,-0.549,0.0757,0.9217,-0.3804,0.0757,0.9217,-0.3804,0.1092,0.8286,-0.549,0.2142,0.8286,-0.5172,0.0757,0.9217,-0.3804,0.2142,0.8286,-0.5172,0.1484,0.9217,-0.3584,0.1484,0.9217,-0.3584,0.2142,0.8286,-0.5172,0.311,0.8286,-0.4654,0.1484,0.9217,-0.3584,0.311,0.8286,-0.4654,0.2155,0.9217,-0.3225,0.2155,0.9217,-0.3225,0.311,0.8286,-0.4654,0.3958,0.8286,-0.3958,0.2155,0.9217,-0.3225,0.3958,0.8286,-0.3958,0.2743,0.9217,-0.2743,0.2743,0.9217,-0.2743,0.3958,0.8286,-0.3958,0.4654,0.8286,-0.311,0.2743,0.9217,-0.2743,0.4654,0.8286,-0.311,0.3225,0.9217,-0.2155,0.3225,0.9217,-0.2155,0.4654,0.8286,-0.311,0.5172,0.8286,-0.2142,0.3225,0.9217,-0.2155,0.5172,0.8286,-0.2142,0.3584,0.9217,-0.1484,0.3584,0.9217,-0.1484,0.5172,0.8286,-0.2142,0.549,0.8286,-0.1092,0.3584,0.9217,-0.1484,0.549,0.8286,-0.1092,0.3804,0.9217,-0.0757,0.3804,0.9217,-0.0757,0.549,0.8286,-0.1092,0.5598,0.8286,0.0,0.3804,0.9217,-0.0757,0.5598,0.8286,0.0,0.3879,0.9217,0.0,0.3879,0.9217,0.0,0.5598,0.8286,0.0,0.549,0.8286,0.1092,0.3879,0.9217,0.0,0.549,0.8286,0.1092,0.3804,0.9217,0.0757,0.3804,0.9217,0.0757,0.549,0.8286,0.1092,0.5172,0.8286,0.2142,0.3804,0.9217,0.0757,0.5172,0.8286,0.2142,0.3584,0.9217,0.1484,0.3584,0.9217,0.1484,0.5172,0.8286,0.2142,0.4654,0.8286,0.311,0.3584,0.9217,0.1484,0.4654,0.8286,0.311,0.3225,0.9217,0.2155,0.3225,0.9217,0.2155,0.4654,0.8286,0.311,0.3958,0.8286,0.3958,0.3225,0.9217,0.2155,0.3958,0.8286,0.3958,0.2743,0.9217,0.2743,0.2743,0.9217,0.2743,0.3958,0.8286,0.3958,0.311,0.8286,0.4654,0.2743,0.9217,0.2743,0.311,0.8286,0.4654,0.2155,0.9217,0.3225,0.2155,0.9217,0.3225,0.311,0.8286,0.4654,0.2142,0.8286,0.5172,0.2155,0.9217,0.3225,0.2142,0.8286,0.5172,0.1484,0.9217,0.3584,0.1484,0.9217,0.3584,0.2142,0.8286,0.5172,0.1092,0.8286,0.549,0.1484,0.9217,0.3584,0.1092,0.8286,0.549,0.0757,0.9217,0.3804,0.0757,0.9217,0.3804,0.1092,0.8286,0.549,0.0,0.8286,0.5598,0.0757,0.9217,0.3804,0.0,0.8286,0.5598,0.0,0.9217,0.3879,0.0,0.8286,0.5598,0.0,0.7041,0.7101,-0.1385,0.7041,0.6965,0.0,0.8286,0.5598,-0.1385,0.7041,0.6965,-0.1092,0.8286,0.549,-0.1092,0.8286,0.549,-0.1385,0.7041,0.6965,-0.2718,0.7041,0.6561,-0.1092,0.8286,0.549,-0.2718,0.7041,0.6561,-0.2142,0.8286,0.5172,-0.2142,0.8286,0.5172,-0.2718,0.7041,0.6561,-0.3945,0.7041,0.5905,-0.2142,0.8286,0.5172,-0.3945,0.7041,0.5905,-0.311,0.8286,0.4654,-0.311,0.8286,0.4654,-0.3945,0.7041,0.5905,-0.5021,0.7041,0.5021,-0.311,0.8286,0.4654,-0.5021,0.7041,0.5021,-0.3958,0.8286,0.3958,-0.3958,0.8286,0.3958,-0.5021,0.7041,0.5021,-0.5905,0.7041,0.3945,-0.3958,0.8286,0.3958,-0.5905,0.7041,0.3945,-0.4654,0.8286,0.311,-0.4654,0.8286,0.311,-0.5905,0.7041,0.3945,-0.6561,0.7041,0.2718,-0.4654,0.8286,0.311,-0.6561,0.7041,0.2718,-0.5172,0.8286,0.2142,-0.5172,0.8286,0.2142,-0.6561,0.7041,0.2718,-0.6965,0.7041,0.1385,-0.5172,0.8286,0.2142,-0.6965,0.7041,0.1385,-0.549,0.8286,0.1092,-0.549,0.8286,0.1092,-0.6965,0.7041,0.1385,-0.7101,0.7041,0.0,-0.549,0.8286,0.1092,-0.7101,0.7041,0.0,-0.5598,0.8286,0.0,-0.5598,0.8286,0.0,-0.7101,0.7041,0.0,-0.6965,0.7041,-0.1385,-0.5598,0.8286,0.0,-0.6965,0.7041,-0.1385,-0.549,0.8286,-0.1092,-0.549,0.8286,-0.1092,-0.6965,0.7041,-0.1385,-0.6561,0.7041,-0.2718,-0.549,0.8286,-0.1092,-0.6561,0.7041,-0.2718,-0.5172,0.8286,-0.2142,-0.5172,0.8286,-0.2142,-0.6561,0.7041,-0.2718,-0.5905,0.7041,-0.3945,-0.5172,0.8286,-0.2142,-0.5905,0.7041,-0.3945,-0.4654,0.8286,-0.311,-0.4654,0.8286,-0.311,-0.5905,0.7041,-0.3945,-0.5021,0.7041,-0.5021,-0.4654,0.8286,-0.311,-0.5021,0.7041,-0.5021,-0.3958,0.8286,-0.3958,-0.3958,0.8286,-0.3958,-0.5021,0.7041,-0.5021,-0.3945,0.7041,-0.5905,-0.3958,0.8286,-0.3958,-0.3945,0.7041,-0.5905,-0.311,0.8286,-0.4654,-0.311,0.8286,-0.4654,-0.3945,0.7041,-0.5905,-0.2718,0.7041,-0.6561,-0.311,0.8286,-0.4654,-0.2718,0.7041,-0.6561,-0.2142,0.8286,-0.5172,-0.2142,0.8286,-0.5172,-0.2718,0.7041,-0.6561,-0.1385,0.7041,-0.6965,-0.2142,0.8286,-0.5172,-0.1385,0.7041,-0.6965,-0.1092,0.8286,-0.549,-0.1092,0.8286,-0.549,-0.1385,0.7041,-0.6965,0.0,0.7041,-0.7101,-0.1092,0.8286,-0.549,0.0,0.7041,-0.7101,0.0,0.8286,-0.5598,0.0,0.8286,-0.5598,0.0,0.7041,-0.7101,0.1385,0.7041,-0.6965,0.0,0.8286,-0.5598,0.1385,0.7041,-0.6965,0.1092,0.8286,-0.549,0.1092,0.8286,-0.549,0.1385,0.7041,-0.6965,0.2718,0.7041,-0.6561,0.1092,0.8286,-0.549,0.2718,0.7041,-0.6561,0.2142,0.8286,-0.5172,0.2142,0.8286,-0.5172,0.2718,0.7041,-0.6561,0.3945,0.7041,-0.5905,0.2142,0.8286,-0.5172,0.3945,0.7041,-0.5905,0.311,0.8286,-0.4654,0.311,0.8286,-0.4654,0.3945,0.7041,-0.5905,0.5021,0.7041,-0.5021,0.311,0.8286,-0.4654,0.5021,0.7041,-0.5021,0.3958,0.8286,-0.3958,0.3958,0.8286,-0.3958,0.5021,0.7041,-0.5021,0.5905,0.7041,-0.3945,0.3958,0.8286,-0.3958,0.5905,0.7041,-0.3945,0.4654,0.8286,-0.311,0.4654,0.8286,-0.311,0.5905,0.7041,-0.3945,0.6561,0.7041,-0.2718,0.4654,0.8286,-0.311,0.6561,0.7041,-0.2718,0.5172,0.8286,-0.2142,0.5172,0.8286,-0.2142,0.6561,0.7041,-0.2718,0.6965,0.7041,-0.1385,0.5172,0.8286,-0.2142,0.6965,0.7041,-0.1385,0.549,0.8286,-0.1092,0.549,0.8286,-0.1092,0.6965,0.7041,-0.1385,0.7101,0.7041,0.0,0.549,0.8286,-0.1092,0.7101,0.7041,0.0,0.5598,0.8286,0.0,0.5598,0.8286,0.0,0.7101,0.7041,0.0,0.6965,0.7041,0.1385,0.5598,0.8286,0.0,0.6965,0.7041,0.1385,0.549,0.8286,0.1092,0.549,0.8286,0.1092,0.6965,0.7041,0.1385,0.6561,0.7041,0.2718,0.549,0.8286,0.1092,0.6561,0.7041,0.2718,0.5172,0.8286,0.2142,0.5172,0.8286,0.2142,0.6561,0.7041,0.2718,0.5905,0.7041,0.3945,0.5172,0.8286,0.2142,0.5905,0.7041,0.3945,0.4654,0.8286,0.311,0.4654,0.8286,0.311,0.5905,0.7041,0.3945,0.5021,0.7041,0.5021,0.4654,0.8286,0.311,0.5021,0.7041,0.5021,0.3958,0.8286,0.3958,0.3958,0.8286,0.3958,0.5021,0.7041,0.5021,0.3945,0.7041,0.5905,0.3958,0.8286,0.3958,0.3945,0.7041,0.5905,0.311,0.8286,0.4654,0.311,0.8286,0.4654,0.3945,0.7041,0.5905,0.2718,0.7041,0.6561,0.311,0.8286,0.4654,0.2718,0.7041,0.6561,0.2142,0.8286,0.5172,0.2142,0.8286,0.5172,0.2718,0.7041,0.6561,0.1385,0.7041,0.6965,0.2142,0.8286,0.5172,0.1385,0.7041,0.6965,0.1092,0.8286,0.549,0.1092,0.8286,0.549,0.1385,0.7041,0.6965,0.0,0.7041,0.7101,0.1092,0.8286,0.549,0.0,0.7041,0.7101,0.0,0.8286,0.5598,0.0,0.7041,0.7101,0.0,0.5528,0.8333,-0.1626,0.5528,0.8173,0.0,0.7041,0.7101,-0.1626,0.5528,0.8173,-0.1385,0.7041,0.6965,-0.1385,0.7041,0.6965,-0.1626,0.5528,0.8173,-0.3189,0.5528,0.7699,-0.1385,0.7041,0.6965,-0.3189,0.5528,0.7699,-0.2718,0.7041,0.6561,-0.2718,0.7041,0.6561,-0.3189,0.5528,0.7699,-0.463,0.5528,0.6929,-0.2718,0.7041,0.6561,-0.463,0.5528,0.6929,-0.3945,0.7041,0.5905,-0.3945,0.7041,0.5905,-0.463,0.5528,0.6929,-0.5893,0.5528,0.5893,-0.3945,0.7041,0.5905,-0.5893,0.5528,0.5893,-0.5021,0.7041,0.5021,-0.5021,0.7041,0.5021,-0.5893,0.5528,0.5893,-0.6929,0.5528,0.463,-0.5021,0.7041,0.5021,-0.6929,0.5528,0.463,-0.5905,0.7041,0.3945,-0.5905,0.7041,0.3945,-0.6929,0.5528,0.463,-0.7699,0.5528,0.3189,-0.5905,0.7041,0.3945,-0.7699,0.5528,0.3189,-0.6561,0.7041,0.2718,-0.6561,0.7041,0.2718,-0.7699,0.5528,0.3189,-0.8173,0.5528,0.1626,-0.6561,0.7041,0.2718,-0.8173,0.5528,0.1626,-0.6965,0.7041,0.1385,-0.6965,0.7041,0.1385,-0.8173,0.5528,0.1626,-0.8333,0.5528,0.0,-0.6965,0.7041,0.1385,-0.8333,0.5528,0.0,-0.7101,0.7041,0.0,-0.7101,0.7041,0.0,-0.8333,0.5528,0.0,-0.8173,0.5528,-0.1626,-0.7101,0.7041,0.0,-0.8173,0.5528,-0.1626,-0.6965,0.7041,-0.1385,-0.6965,0.7041,-0.1385,-0.8173,0.5528,-0.1626,-0.7699,0.5528,-0.3189,-0.6965,0.7041,-0.1385,-0.7699,0.5528,-0.3189,-0.6561,0.7041,-0.2718,-0.6561,0.7041,-0.2718,-0.7699,0.5528,-0.3189,-0.6929,0.5528,-0.463,-0.6561,0.7041,-0.2718,-0.6929,0.5528,-0.463,-0.5905,0.7041,-0.3945,-0.5905,0.7041,-0.3945,-0.6929,0.5528,-0.463,-0.5893,0.5528,-0.5893,-0.5905,0.7041,-0.3945,-0.5893,0.5528,-0.5893,-0.5021,0.7041,-0.5021,-0.5021,0.7041,-0.5021,-0.5893,0.5528,-0.5893,-0.463,0.5528,-0.6929,-0.5021,0.7041,-0.5021,-0.463,0.5528,-0.6929,-0.3945,0.7041,-0.5905,-0.3945,0.7041,-0.5905,-0.463,0.5528,-0.6929,-0.3189,0.5528,-0.7699,-0.3945,0.7041,-0.5905,-0.3189,0.5528,-0.7699,-0.2718,0.7041,-0.6561,-0.2718,0.7041,-0.6561,-0.3189,0.5528,-0.7699,-0.1626,0.5528,-0.8173,-0.2718,0.7041,-0.6561,-0.1626,0.5528,-0.8173,-0.1385,0.7041,-0.6965,-0.1385,0.7041,-0.6965,-0.1626,0.5528,-0.8173,0.0,0.5528,-0.8333,-0.1385,0.7041,-0.6965,0.0,0.5528,-0.8333,0.0,0.7041,-0.7101,0.0,0.7041,-0.7101,0.0,0.5528,-0.8333,0.1626,0.5528,-0.8173,0.0,0.7041,-0.7101,0.1626,0.5528,-0.8173,0.1385,0.7041,-0.6965,0.1385,0.7041,-0.6965,0.1626,0.5528,-0.8173,0.3189,0.5528,-0.7699,0.1385,0.7041,-0.6965,0.3189,0.5528,-0.7699,0.2718,0.7041,-0.6561,0.2718,0.7041,-0.6561,0.3189,0.5528,-0.7699,0.463,0.5528,-0.6929,0.2718,0.7041,-0.6561,0.463,0.5528,-0.6929,0.3945,0.7041,-0.5905,0.3945,0.7041,-0.5905,0.463,0.5528,-0.6929,0.5893,0.5528,-0.5893,0.3945,0.7041,-0.5905,0.5893,0.5528,-0.5893,0.5021,0.7041,-0.5021,0.5021,0.7041,-0.5021,0.5893,0.5528,-0.5893,0.6929,0.5528,-0.463,0.5021,0.7041,-0.5021,0.6929,0.5528,-0.463,0.5905,0.7041,-0.3945,0.5905,0.7041,-0.3945,0.6929,0.5528,-0.463,0.7699,0.5528,-0.3189,0.5905,0.7041,-0.3945,0.7699,0.5528,-0.3189,0.6561,0.7041,-0.2718,0.6561,0.7041,-0.2718,0.7699,0.5528,-0.3189,0.8173,0.5528,-0.1626,0.6561,0.7041,-0.2718,0.8173,0.5528,-0.1626,0.6965,0.7041,-0.1385,0.6965,0.7041,-0.1385,0.8173,0.5528,-0.1626,0.8333,0.5528,0.0,0.6965,0.7041,-0.1385,0.8333,0.5528,0.0,0.7101,0.7041,0.0,0.7101,0.7041,0.0,0.8333,0.5528,0.0,0.8173,0.5528,0.1626,0.7101,0.7041,0.0,0.8173,0.5528,0.1626,0.6965,0.7041,0.1385,0.6965,0.7041,0.1385,0.8173,0.5528,0.1626,0.7699,0.5528,0.3189,0.6965,0.7041,0.1385,0.7699,0.5528,0.3189,0.6561,0.7041,0.2718,0.6561,0.7041,0.2718,0.7699,0.5528,0.3189,0.6929,0.5528,0.463,0.6561,0.7041,0.2718,0.6929,0.5528,0.463,0.5905,0.7041,0.3945,0.5905,0.7041,0.3945,0.6929,0.5528,0.463,0.5893,0.5528,0.5893,0.5905,0.7041,0.3945,0.5893,0.5528,0.5893,0.5021,0.7041,0.5021,0.5021,0.7041,0.5021,0.5893,0.5528,0.5893,0.463,0.5528,0.6929,0.5021,0.7041,0.5021,0.463,0.5528,0.6929,0.3945,0.7041,0.5905,0.3945,0.7041,0.5905,0.463,0.5528,0.6929,0.3189,0.5528,0.7699,0.3945,0.7041,0.5905,0.3189,0.5528,0.7699,0.2718,0.7041,0.6561,0.2718,0.7041,0.6561,0.3189,0.5528,0.7699,0.1626,0.5528,0.8173,0.2718,0.7041,0.6561,0.1626,0.5528,0.8173,0.1385,0.7041,0.6965,0.1385,0.7041,0.6965,0.1626,0.5528,0.8173,0.0,0.5528,0.8333,0.1385,0.7041,0.6965,0.0,0.5528,0.8333,0.0,0.7041,0.7101,0.0,0.5528,0.8333,0.0,0.3805,0.9248,-0.1804,0.3805,0.907,0.0,0.5528,0.8333,-0.1804,0.3805,0.907,-0.1626,0.5528,0.8173,-0.1626,0.5528,0.8173,-0.1804,0.3805,0.907,-0.3539,0.3805,0.8544,-0.1626,0.5528,0.8173,-0.3539,0.3805,0.8544,-0.3189,0.5528,0.7699,-0.3189,0.5528,0.7699,-0.3539,0.3805,0.8544,-0.5138,0.3805,0.7689,-0.3189,0.5528,0.7699,-0.5138,0.3805,0.7689,-0.463,0.5528,0.6929,-0.463,0.5528,0.6929,-0.5138,0.3805,0.7689,-0.6539,0.3805,0.6539,-0.463,0.5528,0.6929,-0.6539,0.3805,0.6539,-0.5893,0.5528,0.5893,-0.5893,0.5528,0.5893,-0.6539,0.3805,0.6539,-0.7689,0.3805,0.5138,-0.5893,0.5528,0.5893,-0.7689,0.3805,0.5138,-0.6929,0.5528,0.463,-0.6929,0.5528,0.463,-0.7689,0.3805,0.5138,-0.8544,0.3805,0.3539,-0.6929,0.5528,0.463,-0.8544,0.3805,0.3539,-0.7699,0.5528,0.3189,-0.7699,0.5528,0.3189,-0.8544,0.3805,0.3539,-0.907,0.3805,0.1804,-0.7699,0.5528,0.3189,-0.907,0.3805,0.1804,-0.8173,0.5528,0.1626,-0.8173,0.5528,0.1626,-0.907,0.3805,0.1804,-0.9248,0.3805,0.0,-0.8173,0.5528,0.1626,-0.9248,0.3805,0.0,-0.8333,0.5528,0.0,-0.8333,0.5528,0.0,-0.9248,0.3805,0.0,-0.907,0.3805,-0.1804,-0.8333,0.5528,0.0,-0.907,0.3805,-0.1804,-0.8173,0.5528,-0.1626,-0.8173,0.5528,-0.1626,-0.907,0.3805,-0.1804,-0.8544,0.3805,-0.3539,-0.8173,0.5528,-0.1626,-0.8544,0.3805,-0.3539,-0.7699,0.5528,-0.3189,-0.7699,0.5528,-0.3189,-0.8544,0.3805,-0.3539,-0.7689,0.3805,-0.5138,-0.7699,0.5528,-0.3189,-0.7689,0.3805,-0.5138,-0.6929,0.5528,-0.463,-0.6929,0.5528,-0.463,-0.7689,0.3805,-0.5138,-0.6539,0.3805,-0.6539,-0.6929,0.5528,-0.463,-0.6539,0.3805,-0.6539,-0.5893,0.5528,-0.5893,-0.5893,0.5528,-0.5893,-0.6539,0.3805,-0.6539,-0.5138,0.3805,-0.7689,-0.5893,0.5528,-0.5893,-0.5138,0.3805,-0.7689,-0.463,0.5528,-0.6929,-0.463,0.5528,-0.6929,-0.5138,0.3805,-0.7689,-0.3539,0.3805,-0.8544,-0.463,0.5528,-0.6929,-0.3539,0.3805,-0.8544,-0.3189,0.5528,-0.7699,-0.3189,0.5528,-0.7699,-0.3539,0.3805,-0.8544,-0.1804,0.3805,-0.907,-0.3189,0.5528,-0.7699,-0.1804,0.3805,-0.907,-0.1626,0.5528,-0.8173,-0.1626,0.5528,-0.8173,-0.1804,0.3805,-0.907,0.0,0.3805,-0.9248,-0.1626,0.5528,-0.8173,0.0,0.3805,-0.9248,0.0,0.5528,-0.8333,0.0,0.5528,-0.8333,0.0,0.3805,-0.9248,0.1804,0.3805,-0.907,0.0,0.5528,-0.8333,0.1804,0.3805,-0.907,0.1626,0.5528,-0.8173,0.1626,0.5528,-0.8173,0.1804,0.3805,-0.907,0.3539,0.3805,-0.8544,0.1626,0.5528,-0.8173,0.3539,0.3805,-0.8544,0.3189,0.5528,-0.7699,0.3189,0.5528,-0.7699,0.3539,0.3805,-0.8544,0.5138,0.3805,-0.7689,0.3189,0.5528,-0.7699,0.5138,0.3805,-0.7689,0.463,0.5528,-0.6929,0.463,0.5528,-0.6929,0.5138,0.3805,-0.7689,0.6539,0.3805,-0.6539,0.463,0.5528,-0.6929,0.6539,0.3805,-0.6539,0.5893,0.5528,-0.5893,0.5893,0.5528,-0.5893,0.6539,0.3805,-0.6539,0.7689,0.3805,-0.5138,0.5893,0.5528,-0.5893,0.7689,0.3805,-0.5138,0.6929,0.5528,-0.463,0.6929,0.5528,-0.463,0.7689,0.3805,-0.5138,0.8544,0.3805,-0.3539,0.6929,0.5528,-0.463,0.8544,0.3805,-0.3539,0.7699,0.5528,-0.3189,0.7699,0.5528,-0.3189,0.8544,0.3805,-0.3539,0.907,0.3805,-0.1804,0.7699,0.5528,-0.3189,0.907,0.3805,-0.1804,0.8173,0.5528,-0.1626,0.8173,0.5528,-0.1626,0.907,0.3805,-0.1804,0.9248,0.3805,0.0,0.8173,0.5528,-0.1626,0.9248,0.3805,0.0,0.8333,0.5528,0.0,0.8333,0.5528,0.0,0.9248,0.3805,0.0,0.907,0.3805,0.1804,0.8333,0.5528,0.0,0.907,0.3805,0.1804,0.8173,0.5528,0.1626,0.8173,0.5528,0.1626,0.907,0.3805,0.1804,0.8544,0.3805,0.3539,0.8173,0.5528,0.1626,0.8544,0.3805,0.3539,0.7699,0.5528,0.3189,0.7699,0.5528,0.3189,0.8544,0.3805,0.3539,0.7689,0.3805,0.5138,0.7699,0.5528,0.3189,0.7689,0.3805,0.5138,0.6929,0.5528,0.463,0.6929,0.5528,0.463,0.7689,0.3805,0.5138,0.6539,0.3805,0.6539,0.6929,0.5528,0.463,0.6539,0.3805,0.6539,0.5893,0.5528,0.5893,0.5893,0.5528,0.5893,0.6539,0.3805,0.6539,0.5138,0.3805,0.7689,0.5893,0.5528,0.5893,0.5138,0.3805,0.7689,0.463,0.5528,0.6929,0.463,0.5528,0.6929,0.5138,0.3805,0.7689,0.3539,0.3805,0.8544,0.463,0.5528,0.6929,0.3539,0.3805,0.8544,0.3189,0.5528,0.7699,0.3189,0.5528,0.7699,0.3539,0.3805,0.8544,0.1804,0.3805,0.907,0.3189,0.5528,0.7699,0.1804,0.3805,0.907,0.1626,0.5528,0.8173,0.1626,0.5528,0.8173,0.1804,0.3805,0.907,0.0,0.3805,0.9248,0.1626,0.5528,0.8173,0.0,0.3805,0.9248,0.0,0.5528,0.8333,0.0,0.3805,0.9248,0.0,0.1939,0.981,-0.1914,0.1939,0.9622,0.0,0.3805,0.9248,-0.1914,0.1939,0.9622,-0.1804,0.3805,0.907,-0.1804,0.3805,0.907,-0.1914,0.1939,0.9622,-0.3754,0.1939,0.9063,-0.1804,0.3805,0.907,-0.3754,0.1939,0.9063,-0.3539,0.3805,0.8544,-0.3539,0.3805,0.8544,-0.3754,0.1939,0.9063,-0.545,0.1939,0.8157,-0.3539,0.3805,0.8544,-0.545,0.1939,0.8157,-0.5138,0.3805,0.7689,-0.5138,0.3805,0.7689,-0.545,0.1939,0.8157,-0.6937,0.1939,0.6937,-0.5138,0.3805,0.7689,-0.6937,0.1939,0.6937,-0.6539,0.3805,0.6539,-0.6539,0.3805,0.6539,-0.6937,0.1939,0.6937,-0.8157,0.1939,0.545,-0.6539,0.3805,0.6539,-0.8157,0.1939,0.545,-0.7689,0.3805,0.5138,-0.7689,0.3805,0.5138,-0.8157,0.1939,0.545,-0.9063,0.1939,0.3754,-0.7689,0.3805,0.5138,-0.9063,0.1939,0.3754,-0.8544,0.3805,0.3539,-0.8544,0.3805,0.3539,-0.9063,0.1939,0.3754,-0.9622,0.1939,0.1914,-0.8544,0.3805,0.3539,-0.9622,0.1939,0.1914,-0.907,0.3805,0.1804,-0.907,0.3805,0.1804,-0.9622,0.1939,0.1914,-0.981,0.1939,0.0,-0.907,0.3805,0.1804,-0.981,0.1939,0.0,-0.9248,0.3805,0.0,-0.9248,0.3805,0.0,-0.981,0.1939,0.0,-0.9622,0.1939,-0.1914,-0.9248,0.3805,0.0,-0.9622,0.1939,-0.1914,-0.907,0.3805,-0.1804,-0.907,0.3805,-0.1804,-0.9622,0.1939,-0.1914,-0.9063,0.1939,-0.3754,-0.907,0.3805,-0.1804,-0.9063,0.1939,-0.3754,-0.8544,0.3805,-0.3539,-0.8544,0.3805,-0.3539,-0.9063,0.1939,-0.3754,-0.8157,0.1939,-0.545,-0.8544,0.3805,-0.3539,-0.8157,0.1939,-0.545,-0.7689,0.3805,-0.5138,-0.7689,0.3805,-0.5138,-0.8157,0.1939,-0.545,-0.6937,0.1939,-0.6937,-0.7689,0.3805,-0.5138,-0.6937,0.1939,-0.6937,-0.6539,0.3805,-0.6539,-0.6539,0.3805,-0.6539,-0.6937,0.1939,-0.6937,-0.545,0.1939,-0.8157,-0.6539,0.3805,-0.6539,-0.545,0.1939,-0.8157,-0.5138,0.3805,-0.7689,-0.5138,0.3805,-0.7689,-0.545,0.1939,-0.8157,-0.3754,0.1939,-0.9063,-0.5138,0.3805,-0.7689,-0.3754,0.1939,-0.9063,-0.3539,0.3805,-0.8544,-0.3539,0.3805,-0.8544,-0.3754,0.1939,-0.9063,-0.1914,0.1939,-0.9622,-0.3539,0.3805,-0.8544,-0.1914,0.1939,-0.9622,-0.1804,0.3805,-0.907,-0.1804,0.3805,-0.907,-0.1914,0.1939,-0.9622,0.0,0.1939,-0.981,-0.1804,0.3805,-0.907,0.0,0.1939,-0.981,0.0,0.3805,-0.9248,0.0,0.3805,-0.9248,0.0,0.1939,-0.981,0.1914,0.1939,-0.9622,0.0,0.3805,-0.9248,0.1914,0.1939,-0.9622,0.1804,0.3805,-0.907,0.1804,0.3805,-0.907,0.1914,0.1939,-0.9622,0.3754,0.1939,-0.9063,0.1804,0.3805,-0.907,0.3754,0.1939,-0.9063,0.3539,0.3805,-0.8544,0.3539,0.3805,-0.8544,0.3754,0.1939,-0.9063,0.545,0.1939,-0.8157,0.3539,0.3805,-0.8544,0.545,0.1939,-0.8157,0.5138,0.3805,-0.7689,0.5138,0.3805,-0.7689,0.545,0.1939,-0.8157,0.6937,0.1939,-0.6937,0.5138,0.3805,-0.7689,0.6937,0.1939,-0.6937,0.6539,0.3805,-0.6539,0.6539,0.3805,-0.6539,0.6937,0.1939,-0.6937,0.8157,0.1939,-0.545,0.6539,0.3805,-0.6539,0.8157,0.1939,-0.545,0.7689,0.3805,-0.5138,0.7689,0.3805,-0.5138,0.8157,0.1939,-0.545,0.9063,0.1939,-0.3754,0.7689,0.3805,-0.5138,0.9063,0.1939,-0.3754,0.8544,0.3805,-0.3539,0.8544,0.3805,-0.3539,0.9063,0.1939,-0.3754,0.9622,0.1939,-0.1914,0.8544,0.3805,-0.3539,0.9622,0.1939,-0.1914,0.907,0.3805,-0.1804,0.907,0.3805,-0.1804,0.9622,0.1939,-0.1914,0.981,0.1939,0.0,0.907,0.3805,-0.1804,0.981,0.1939,0.0,0.9248,0.3805,0.0,0.9248,0.3805,0.0,0.981,0.1939,0.0,0.9622,0.1939,0.1914,0.9248,0.3805,0.0,0.9622,0.1939,0.1914,0.907,0.3805,0.1804,0.907,0.3805,0.1804,0.9622,0.1939,0.1914,0.9063,0.1939,0.3754,0.907,0.3805,0.1804,0.9063,0.1939,0.3754,0.8544,0.3805,0.3539,0.8544,0.3805,0.3539,0.9063,0.1939,0.3754,0.8157,0.1939,0.545,0.8544,0.3805,0.3539,0.8157,0.1939,0.545,0.7689,0.3805,0.5138,0.7689,0.3805,0.5138,0.8157,0.1939,0.545,0.6937,0.1939,0.6937,0.7689,0.3805,0.5138,0.6937,0.1939,0.6937,0.6539,0.3805,0.6539,0.6539,0.3805,0.6539,0.6937,0.1939,0.6937,0.545,0.1939,0.8157,0.6539,0.3805,0.6539,0.545,0.1939,0.8157,0.5138,0.3805,0.7689,0.5138,0.3805,0.7689,0.545,0.1939,0.8157,0.3754,0.1939,0.9063,0.5138,0.3805,0.7689,0.3754,0.1939,0.9063,0.3539,0.3805,0.8544,0.3539,0.3805,0.8544,0.3754,0.1939,0.9063,0.1914,0.1939,0.9622,0.3539,0.3805,0.8544,0.1914,0.1939,0.9622,0.1804,0.3805,0.907,0.1804,0.3805,0.907,0.1914,0.1939,0.9622,0.0,0.1939,0.981,0.1804,0.3805,0.907,0.0,0.1939,0.981,0.0,0.3805,0.9248,0.0,0.1939,0.981,0.0,0.0,1.0,-0.1951,0.0,0.9808,0.0,0.1939,0.981,-0.1951,0.0,0.9808,-0.1914,0.1939,0.9622,-0.1914,0.1939,0.9622,-0.1951,0.0,0.9808,-0.3827,0.0,0.9239,-0.1914,0.1939,0.9622,-0.3827,0.0,0.9239,-0.3754,0.1939,0.9063,-0.3754,0.1939,0.9063,-0.3827,0.0,0.9239,-0.5556,0.0,0.8315,-0.3754,0.1939,0.9063,-0.5556,0.0,0.8315,-0.545,0.1939,0.8157,-0.545,0.1939,0.8157,-0.5556,0.0,0.8315,-0.7071,0.0,0.7071,-0.545,0.1939,0.8157,-0.7071,0.0,0.7071,-0.6937,0.1939,0.6937,-0.6937,0.1939,0.6937,-0.7071,0.0,0.7071,-0.8315,0.0,0.5556,-0.6937,0.1939,0.6937,-0.8315,0.0,0.5556,-0.8157,0.1939,0.545,-0.8157,0.1939,0.545,-0.8315,0.0,0.5556,-0.9239,0.0,0.3827,-0.8157,0.1939,0.545,-0.9239,0.0,0.3827,-0.9063,0.1939,0.3754,-0.9063,0.1939,0.3754,-0.9239,0.0,0.3827,-0.9808,0.0,0.1951,-0.9063,0.1939,0.3754,-0.9808,0.0,0.1951,-0.9622,0.1939,0.1914,-0.9622,0.1939,0.1914,-0.9808,0.0,0.1951,-1.0,0.0,0.0,-0.9622,0.1939,0.1914,-1.0,0.0,0.0,-0.981,0.1939,0.0,-0.981,0.1939,0.0,-1.0,0.0,0.0,-0.9808,0.0,-0.1951,-0.981,0.1939,0.0,-0.9808,0.0,-0.1951,-0.9622,0.1939,-0.1914,-0.9622,0.1939,-0.1914,-0.9808,0.0,-0.1951,-0.9239,0.0,-0.3827,-0.9622,0.1939,-0.1914,-0.9239,0.0,-0.3827,-0.9063,0.1939,-0.3754,-0.9063,0.1939,-0.3754,-0.9239,0.0,-0.3827,-0.8315,0.0,-0.5556,-0.9063,0.1939,-0.3754,-0.8315,0.0,-0.5556,-0.8157,0.1939,-0.545,-0.8157,0.1939,-0.545,-0.8315,0.0,-0.5556,-0.7071,0.0,-0.7071,-0.8157,0.1939,-0.545,-0.7071,0.0,-0.7071,-0.6937,0.1939,-0.6937,-0.6937,0.1939,-0.6937,-0.7071,0.0,-0.7071,-0.5556,0.0,-0.8315,-0.6937,0.1939,-0.6937,-0.5556,0.0,-0.8315,-0.545,0.1939,-0.8157,-0.545,0.1939,-0.8157,-0.5556,0.0,-0.8315,-0.3827,0.0,-0.9239,-0.545,0.1939,-0.8157,-0.3827,0.0,-0.9239,-0.3754,0.1939,-0.9063,-0.3754,0.1939,-0.9063,-0.3827,0.0,-0.9239,-0.1951,0.0,-0.9808,-0.3754,0.1939,-0.9063,-0.1951,0.0,-0.9808,-0.1914,0.1939,-0.9622,-0.1914,0.1939,-0.9622,-0.1951,0.0,-0.9808,0.0,0.0,-1.0,-0.1914,0.1939,-0.9622,0.0,0.0,-1.0,0.0,0.1939,-0.981,0.0,0.1939,-0.981,0.0,0.0,-1.0,0.1951,0.0,-0.9808,0.0,0.1939,-0.981,0.1951,0.0,-0.9808,0.1914,0.1939,-0.9622,0.1914,0.1939,-0.9622,0.1951,0.0,-0.9808,0.3827,0.0,-0.9239,0.1914,0.1939,-0.9622,0.3827,0.0,-0.9239,0.3754,0.1939,-0.9063,0.3754,0.1939,-0.9063,0.3827,0.0,-0.9239,0.5556,0.0,-0.8315,0.3754,0.1939,-0.9063,0.5556,0.0,-0.8315,0.545,0.1939,-0.8157,0.545,0.1939,-0.8157,0.5556,0.0,-0.8315,0.7071,0.0,-0.7071,0.545,0.1939,-0.8157,0.7071,0.0,-0.7071,0.6937,0.1939,-0.6937,0.6937,0.1939,-0.6937,0.7071,0.0,-0.7071,0.8315,0.0,-0.5556,0.6937,0.1939,-0.6937,0.8315,0.0,-0.5556,0.8157,0.1939,-0.545,0.8157,0.1939,-0.545,0.8315,0.0,-0.5556,0.9239,0.0,-0.3827,0.8157,0.1939,-0.545,0.9239,0.0,-0.3827,0.9063,0.1939,-0.3754,0.9063,0.1939,-0.3754,0.9239,0.0,-0.3827,0.9808,0.0,-0.1951,0.9063,0.1939,-0.3754,0.9808,0.0,-0.1951,0.9622,0.1939,-0.1914,0.9622,0.1939,-0.1914,0.9808,0.0,-0.1951,1.0,0.0,0.0,0.9622,0.1939,-0.1914,1.0,0.0,0.0,0.981,0.1939,0.0,0.981,0.1939,0.0,1.0,0.0,0.0,0.9808,0.0,0.1951,0.981,0.1939,0.0,0.9808,0.0,0.1951,0.9622,0.1939,0.1914,0.9622,0.1939,0.1914,0.9808,0.0,0.1951,0.9239,0.0,0.3827,0.9622,0.1939,0.1914,0.9239,0.0,0.3827,0.9063,0.1939,0.3754,0.9063,0.1939,0.3754,0.9239,0.0,0.3827,0.8315,0.0,0.5556,0.9063,0.1939,0.3754,0.8315,0.0,0.5556,0.8157,0.1939,0.545,0.8157,0.1939,0.545,0.8315,0.0,0.5556,0.7071,0.0,0.7071,0.8157,0.1939,0.545,0.7071,0.0,0.7071,0.6937,0.1939,0.6937,0.6937,0.1939,0.6937,0.7071,0.0,0.7071,0.5556,0.0,0.8315,0.6937,0.1939,0.6937,0.5556,0.0,0.8315,0.545,0.1939,0.8157,0.545,0.1939,0.8157,0.5556,0.0,0.8315,0.3827,0.0,0.9239,0.545,0.1939,0.8157,0.3827,0.0,0.9239,0.3754,0.1939,0.9063,0.3754,0.1939,0.9063,0.3827,0.0,0.9239,0.1951,0.0,0.9808,0.3754,0.1939,0.9063,0.1951,0.0,0.9808,0.1914,0.1939,0.9622,0.1914,0.1939,0.9622,0.1951,0.0,0.9808,0.0,0.0,1.0,0.1914,0.1939,0.9622,0.0,0.0,1.0,0.0,0.1939,0.981,0.0,0.0,1.0,0.0,-0.1939,0.981,-0.1914,-0.1939,0.9622,0.0,0.0,1.0,-0.1914,-0.1939,0.9622,-0.1951,0.0,0.9808,-0.1951,0.0,0.9808,-0.1914,-0.1939,0.9622,-0.3754,-0.1939,0.9063,-0.1951,0.0,0.9808,-0.3754,-0.1939,0.9063,-0.3827,0.0,0.9239,-0.3827,0.0,0.9239,-0.3754,-0.1939,0.9063,-0.545,-0.1939,0.8157,-0.3827,0.0,0.9239,-0.545,-0.1939,0.8157,-0.5556,0.0,0.8315,-0.5556,0.0,0.8315,-0.545,-0.1939,0.8157,-0.6937,-0.1939,0.6937,-0.5556,0.0,0.8315,-0.6937,-0.1939,0.6937,-0.7071,0.0,0.7071,-0.7071,0.0,0.7071,-0.6937,-0.1939,0.6937,-0.8157,-0.1939,0.545,-0.7071,0.0,0.7071,-0.8157,-0.1939,0.545,-0.8315,0.0,0.5556,-0.8315,0.0,0.5556,-0.8157,-0.1939,0.545,-0.9063,-0.1939,0.3754,-0.8315,0.0,0.5556,-0.9063,-0.1939,0.3754,-0.9239,0.0,0.3827,-0.9239,0.0,0.3827,-0.9063,-0.1939,0.3754,-0.9622,-0.1939,0.1914,-0.9239,0.0,0.3827,-0.9622,-0.1939,0.1914,-0.9808,0.0,0.1951,-0.9808,0.0,0.1951,-0.9622,-0.1939,0.1914,-0.981,-0.1939,0.0,-0.9808,0.0,0.1951,-0.981,-0.1939,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-0.981,-0.1939,0.0,-0.9622,-0.1939,-0.1914,-1.0,0.0,0.0,-0.9622,-0.1939,-0.1914,-0.9808,0.0,-0.1951,-0.9808,0.0,-0.1951,-0.9622,-0.1939,-0.1914,-0.9063,-0.1939,-0.3754,-0.9808,0.0,-0.1951,-0.9063,-0.1939,-0.3754,-0.9239,0.0,-0.3827,-0.9239,0.0,-0.3827,-0.9063,-0.1939,-0.3754,-0.8157,-0.1939,-0.545,-0.9239,0.0,-0.3827,-0.8157,-0.1939,-0.545,-0.8315,0.0,-0.5556,-0.8315,0.0,-0.5556,-0.8157,-0.1939,-0.545,-0.6937,-0.1939,-0.6937,-0.8315,0.0,-0.5556,-0.6937,-0.1939,-0.6937,-0.7071,0.0,-0.7071,-0.7071,0.0,-0.7071,-0.6937,-0.1939,-0.6937,-0.545,-0.1939,-0.8157,-0.7071,0.0,-0.7071,-0.545,-0.1939,-0.8157,-0.5556,0.0,-0.8315,-0.5556,0.0,-0.8315,-0.545,-0.1939,-0.8157,-0.3754,-0.1939,-0.9063,-0.5556,0.0,-0.8315,-0.3754,-0.1939,-0.9063,-0.3827,0.0,-0.9239,-0.3827,0.0,-0.9239,-0.3754,-0.1939,-0.9063,-0.1914,-0.1939,-0.9622,-0.3827,0.0,-0.9239,-0.1914,-0.1939,-0.9622,-0.1951,0.0,-0.9808,-0.1951,0.0,-0.9808,-0.1914,-0.1939,-0.9622,0.0,-0.1939,-0.981,-0.1951,0.0,-0.9808,0.0,-0.1939,-0.981,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,-0.1939,-0.981,0.1914,-0.1939,-0.9622,0.0,0.0,-1.0,0.1914,-0.1939,-0.9622,0.1951,0.0,-0.9808,0.1951,0.0,-0.9808,0.1914,-0.1939,-0.9622,0.3754,-0.1939,-0.9063,0.1951,0.0,-0.9808,0.3754,-0.1939,-0.9063,0.3827,0.0,-0.9239,0.3827,0.0,-0.9239,0.3754,-0.1939,-0.9063,0.545,-0.1939,-0.8157,0.3827,0.0,-0.9239,0.545,-0.1939,-0.8157,0.5556,0.0,-0.8315,0.5556,0.0,-0.8315,0.545,-0.1939,-0.8157,0.6937,-0.1939,-0.6937,0.5556,0.0,-0.8315,0.6937,-0.1939,-0.6937,0.7071,0.0,-0.7071,0.7071,0.0,-0.7071,0.6937,-0.1939,-0.6937,0.8157,-0.1939,-0.545,0.7071,0.0,-0.7071,0.8157,-0.1939,-0.545,0.8315,0.0,-0.5556,0.8315,0.0,-0.5556,0.8157,-0.1939,-0.545,0.9063,-0.1939,-0.3754,0.8315,0.0,-0.5556,0.9063,-0.1939,-0.3754,0.9239,0.0,-0.3827,0.9239,0.0,-0.3827,0.9063,-0.1939,-0.3754,0.9622,-0.1939,-0.1914,0.9239,0.0,-0.3827,0.9622,-0.1939,-0.1914,0.9808,0.0,-0.1951,0.9808,0.0,-0.1951,0.9622,-0.1939,-0.1914,0.981,-0.1939,0.0,0.9808,0.0,-0.1951,0.981,-0.1939,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.981,-0.1939,0.0,0.9622,-0.1939,0.1914,1.0,0.0,0.0,0.9622,-0.1939,0.1914,0.9808,0.0,0.1951,0.9808,0.0,0.1951,0.9622,-0.1939,0.1914,0.9063,-0.1939,0.3754,0.9808,0.0,0.1951,0.9063,-0.1939,0.3754,0.9239,0.0,0.3827,0.9239,0.0,0.3827,0.9063,-0.1939,0.3754,0.8157,-0.1939,0.545,0.9239,0.0,0.3827,0.8157,-0.1939,0.545,0.8315,0.0,0.5556,0.8315,0.0,0.5556,0.8157,-0.1939,0.545,0.6937,-0.1939,0.6937,0.8315,0.0,0.5556,0.6937,-0.1939,0.6937,0.7071,0.0,0.7071,0.7071,0.0,0.7071,0.6937,-0.1939,0.6937,0.545,-0.1939,0.8157,0.7071,0.0,0.7071,0.545,-0.1939,0.8157,0.5556,0.0,0.8315,0.5556,0.0,0.8315,0.545,-0.1939,0.8157,0.3754,-0.1939,0.9063,0.5556,0.0,0.8315,0.3754,-0.1939,0.9063,0.3827,0.0,0.9239,0.3827,0.0,0.9239,0.3754,-0.1939,0.9063,0.1914,-0.1939,0.9622,0.3827,0.0,0.9239,0.1914,-0.1939,0.9622,0.1951,0.0,0.9808,0.1951,0.0,0.9808,0.1914,-0.1939,0.9622,0.0,-0.1939,0.981,0.1951,0.0,0.9808,0.0,-0.1939,0.981,0.0,0.0,1.0,0.0,-0.1939,0.981,0.0,-0.3805,0.9248,-0.1804,-0.3805,0.907,0.0,-0.1939,0.981,-0.1804,-0.3805,0.907,-0.1914,-0.1939,0.9622,-0.1914,-0.1939,0.9622,-0.1804,-0.3805,0.907,-0.3539,-0.3805,0.8544,-0.1914,-0.1939,0.9622,-0.3539,-0.3805,0.8544,-0.3754,-0.1939,0.9063,-0.3754,-0.1939,0.9063,-0.3539,-0.3805,0.8544,-0.5138,-0.3805,0.7689,-0.3754,-0.1939,0.9063,-0.5138,-0.3805,0.7689,-0.545,-0.1939,0.8157,-0.545,-0.1939,0.8157,-0.5138,-0.3805,0.7689,-0.6539,-0.3805,0.6539,-0.545,-0.1939,0.8157,-0.6539,-0.3805,0.6539,-0.6937,-0.1939,0.6937,-0.6937,-0.1939,0.6937,-0.6539,-0.3805,0.6539,-0.7689,-0.3805,0.5138,-0.6937,-0.1939,0.6937,-0.7689,-0.3805,0.5138,-0.8157,-0.1939,0.545,-0.8157,-0.1939,0.545,-0.7689,-0.3805,0.5138,-0.8544,-0.3805,0.3539,-0.8157,-0.1939,0.545,-0.8544,-0.3805,0.3539,-0.9063,-0.1939,0.3754,-0.9063,-0.1939,0.3754,-0.8544,-0.3805,0.3539,-0.907,-0.3805,0.1804,-0.9063,-0.1939,0.3754,-0.907,-0.3805,0.1804,-0.9622,-0.1939,0.1914,-0.9622,-0.1939,0.1914,-0.907,-0.3805,0.1804,-0.9248,-0.3805,0.0,-0.9622,-0.1939,0.1914,-0.9248,-0.3805,0.0,-0.981,-0.1939,0.0,-0.981,-0.1939,0.0,-0.9248,-0.3805,0.0,-0.907,-0.3805,-0.1804,-0.981,-0.1939,0.0,-0.907,-0.3805,-0.1804,-0.9622,-0.1939,-0.1914,-0.9622,-0.1939,-0.1914,-0.907,-0.3805,-0.1804,-0.8544,-0.3805,-0.3539,-0.9622,-0.1939,-0.1914,-0.8544,-0.3805,-0.3539,-0.9063,-0.1939,-0.3754,-0.9063,-0.1939,-0.3754,-0.8544,-0.3805,-0.3539,-0.7689,-0.3805,-0.5138,-0.9063,-0.1939,-0.3754,-0.7689,-0.3805,-0.5138,-0.8157,-0.1939,-0.545,-0.8157,-0.1939,-0.545,-0.7689,-0.3805,-0.5138,-0.6539,-0.3805,-0.6539,-0.8157,-0.1939,-0.545,-0.6539,-0.3805,-0.6539,-0.6937,-0.1939,-0.6937,-0.6937,-0.1939,-0.6937,-0.6539,-0.3805,-0.6539,-0.5138,-0.3805,-0.7689,-0.6937,-0.1939,-0.6937,-0.5138,-0.3805,-0.7689,-0.545,-0.1939,-0.8157,-0.545,-0.1939,-0.8157,-0.5138,-0.3805,-0.7689,-0.3539,-0.3805,-0.8544,-0.545,-0.1939,-0.8157,-0.3539,-0.3805,-0.8544,-0.3754,-0.1939,-0.9063,-0.3754,-0.1939,-0.9063,-0.3539,-0.3805,-0.8544,-0.1804,-0.3805,-0.907,-0.3754,-0.1939,-0.9063,-0.1804,-0.3805,-0.907,-0.1914,-0.1939,-0.9622,-0.1914,-0.1939,-0.9622,-0.1804,-0.3805,-0.907,0.0,-0.3805,-0.9248,-0.1914,-0.1939,-0.9622,0.0,-0.3805,-0.9248,0.0,-0.1939,-0.981,0.0,-0.1939,-0.981,0.0,-0.3805,-0.9248,0.1804,-0.3805,-0.907,0.0,-0.1939,-0.981,0.1804,-0.3805,-0.907,0.1914,-0.1939,-0.9622,0.1914,-0.1939,-0.9622,0.1804,-0.3805,-0.907,0.3539,-0.3805,-0.8544,0.1914,-0.1939,-0.9622,0.3539,-0.3805,-0.8544,0.3754,-0.1939,-0.9063,0.3754,-0.1939,-0.9063,0.3539,-0.3805,-0.8544,0.5138,-0.3805,-0.7689,0.3754,-0.1939,-0.9063,0.5138,-0.3805,-0.7689,0.545,-0.1939,-0.8157,0.545,-0.1939,-0.8157,0.5138,-0.3805,-0.7689,0.6539,-0.3805,-0.6539,0.545,-0.1939,-0.8157,0.6539,-0.3805,-0.6539,0.6937,-0.1939,-0.6937,0.6937,-0.1939,-0.6937,0.6539,-0.3805,-0.6539,0.7689,-0.3805,-0.5138,0.6937,-0.1939,-0.6937,0.7689,-0.3805,-0.5138,0.8157,-0.1939,-0.545,0.8157,-0.1939,-0.545,0.7689,-0.3805,-0.5138,0.8544,-0.3805,-0.3539,0.8157,-0.1939,-0.545,0.8544,-0.3805,-0.3539,0.9063,-0.1939,-0.3754,0.9063,-0.1939,-0.3754,0.8544,-0.3805,-0.3539,0.907,-0.3805,-0.1804,0.9063,-0.1939,-0.3754,0.907,-0.3805,-0.1804,0.9622,-0.1939,-0.1914,0.9622,-0.1939,-0.1914,0.907,-0.3805,-0.1804,0.9248,-0.3805,0.0,0.9622,-0.1939,-0.1914,0.9248,-0.3805,0.0,0.981,-0.1939,0.0,0.981,-0.1939,0.0,0.9248,-0.3805,0.0,0.907,-0.3805,0.1804,0.981,-0.1939,0.0,0.907,-0.3805,0.1804,0.9622,-0.1939,0.1914,0.9622,-0.1939,0.1914,0.907,-0.3805,0.1804,0.8544,-0.3805,0.3539,0.9622,-0.1939,0.1914,0.8544,-0.3805,0.3539,0.9063,-0.1939,0.3754,0.9063,-0.1939,0.3754,0.8544,-0.3805,0.3539,0.7689,-0.3805,0.5138,0.9063,-0.1939,0.3754,0.7689,-0.3805,0.5138,0.8157,-0.1939,0.545,0.8157,-0.1939,0.545,0.7689,-0.3805,0.5138,0.6539,-0.3805,0.6539,0.8157,-0.1939,0.545,0.6539,-0.3805,0.6539,0.6937,-0.1939,0.6937,0.6937,-0.1939,0.6937,0.6539,-0.3805,0.6539,0.5138,-0.3805,0.7689,0.6937,-0.1939,0.6937,0.5138,-0.3805,0.7689,0.545,-0.1939,0.8157,0.545,-0.1939,0.8157,0.5138,-0.3805,0.7689,0.3539,-0.3805,0.8544,0.545,-0.1939,0.8157,0.3539,-0.3805,0.8544,0.3754,-0.1939,0.9063,0.3754,-0.1939,0.9063,0.3539,-0.3805,0.8544,0.1804,-0.3805,0.907,0.3754,-0.1939,0.9063,0.1804,-0.3805,0.907,0.1914,-0.1939,0.9622,0.1914,-0.1939,0.9622,0.1804,-0.3805,0.907,0.0,-0.3805,0.9248,0.1914,-0.1939,0.9622,0.0,-0.3805,0.9248,0.0,-0.1939,0.981,0.0,-0.3805,0.9248,0.0,-0.5528,0.8333,-0.1626,-0.5528,0.8173,0.0,-0.3805,0.9248,-0.1626,-0.5528,0.8173,-0.1804,-0.3805,0.907,-0.1804,-0.3805,0.907,-0.1626,-0.5528,0.8173,-0.3189,-0.5528,0.7699,-0.1804,-0.3805,0.907,-0.3189,-0.5528,0.7699,-0.3539,-0.3805,0.8544,-0.3539,-0.3805,0.8544,-0.3189,-0.5528,0.7699,-0.463,-0.5528,0.6929,-0.3539,-0.3805,0.8544,-0.463,-0.5528,0.6929,-0.5138,-0.3805,0.7689,-0.5138,-0.3805,0.7689,-0.463,-0.5528,0.6929,-0.5893,-0.5528,0.5893,-0.5138,-0.3805,0.7689,-0.5893,-0.5528,0.5893,-0.6539,-0.3805,0.6539,-0.6539,-0.3805,0.6539,-0.5893,-0.5528,0.5893,-0.6929,-0.5528,0.463,-0.6539,-0.3805,0.6539,-0.6929,-0.5528,0.463,-0.7689,-0.3805,0.5138,-0.7689,-0.3805,0.5138,-0.6929,-0.5528,0.463,-0.7699,-0.5528,0.3189,-0.7689,-0.3805,0.5138,-0.7699,-0.5528,0.3189,-0.8544,-0.3805,0.3539,-0.8544,-0.3805,0.3539,-0.7699,-0.5528,0.3189,-0.8173,-0.5528,0.1626,-0.8544,-0.3805,0.3539,-0.8173,-0.5528,0.1626,-0.907,-0.3805,0.1804,-0.907,-0.3805,0.1804,-0.8173,-0.5528,0.1626,-0.8333,-0.5528,0.0,-0.907,-0.3805,0.1804,-0.8333,-0.5528,0.0,-0.9248,-0.3805,0.0,-0.9248,-0.3805,0.0,-0.8333,-0.5528,0.0,-0.8173,-0.5528,-0.1626,-0.9248,-0.3805,0.0,-0.8173,-0.5528,-0.1626,-0.907,-0.3805,-0.1804,-0.907,-0.3805,-0.1804,-0.8173,-0.5528,-0.1626,-0.7699,-0.5528,-0.3189,-0.907,-0.3805,-0.1804,-0.7699,-0.5528,-0.3189,-0.8544,-0.3805,-0.3539,-0.8544,-0.3805,-0.3539,-0.7699,-0.5528,-0.3189,-0.6929,-0.5528,-0.463,-0.8544,-0.3805,-0.3539,-0.6929,-0.5528,-0.463,-0.7689,-0.3805,-0.5138,-0.7689,-0.3805,-0.5138,-0.6929,-0.5528,-0.463,-0.5893,-0.5528,-0.5893,-0.7689,-0.3805,-0.5138,-0.5893,-0.5528,-0.5893,-0.6539,-0.3805,-0.6539,-0.6539,-0.3805,-0.6539,-0.5893,-0.5528,-0.5893,-0.463,-0.5528,-0.6929,-0.6539,-0.3805,-0.6539,-0.463,-0.5528,-0.6929,-0.5138,-0.3805,-0.7689,-0.5138,-0.3805,-0.7689,-0.463,-0.5528,-0.6929,-0.3189,-0.5528,-0.7699,-0.5138,-0.3805,-0.7689,-0.3189,-0.5528,-0.7699,-0.3539,-0.3805,-0.8544,-0.3539,-0.3805,-0.8544,-0.3189,-0.5528,-0.7699,-0.1626,-0.5528,-0.8173,-0.3539,-0.3805,-0.8544,-0.1626,-0.5528,-0.8173,-0.1804,-0.3805,-0.907,-0.1804,-0.3805,-0.907,-0.1626,-0.5528,-0.8173,0.0,-0.5528,-0.8333,-0.1804,-0.3805,-0.907,0.0,-0.5528,-0.8333,0.0,-0.3805,-0.9248,0.0,-0.3805,-0.9248,0.0,-0.5528,-0.8333,0.1626,-0.5528,-0.8173,0.0,-0.3805,-0.9248,0.1626,-0.5528,-0.8173,0.1804,-0.3805,-0.907,0.1804,-0.3805,-0.907,0.1626,-0.5528,-0.8173,0.3189,-0.5528,-0.7699,0.1804,-0.3805,-0.907,0.3189,-0.5528,-0.7699,0.3539,-0.3805,-0.8544,0.3539,-0.3805,-0.8544,0.3189,-0.5528,-0.7699,0.463,-0.5528,-0.6929,0.3539,-0.3805,-0.8544,0.463,-0.5528,-0.6929,0.5138,-0.3805,-0.7689,0.5138,-0.3805,-0.7689,0.463,-0.5528,-0.6929,0.5893,-0.5528,-0.5893,0.5138,-0.3805,-0.7689,0.5893,-0.5528,-0.5893,0.6539,-0.3805,-0.6539,0.6539,-0.3805,-0.6539,0.5893,-0.5528,-0.5893,0.6929,-0.5528,-0.463,0.6539,-0.3805,-0.6539,0.6929,-0.5528,-0.463,0.7689,-0.3805,-0.5138,0.7689,-0.3805,-0.5138,0.6929,-0.5528,-0.463,0.7699,-0.5528,-0.3189,0.7689,-0.3805,-0.5138,0.7699,-0.5528,-0.3189,0.8544,-0.3805,-0.3539,0.8544,-0.3805,-0.3539,0.7699,-0.5528,-0.3189,0.8173,-0.5528,-0.1626,0.8544,-0.3805,-0.3539,0.8173,-0.5528,-0.1626,0.907,-0.3805,-0.1804,0.907,-0.3805,-0.1804,0.8173,-0.5528,-0.1626,0.8333,-0.5528,0.0,0.907,-0.3805,-0.1804,0.8333,-0.5528,0.0,0.9248,-0.3805,0.0,0.9248,-0.3805,0.0,0.8333,-0.5528,0.0,0.8173,-0.5528,0.1626,0.9248,-0.3805,0.0,0.8173,-0.5528,0.1626,0.907,-0.3805,0.1804,0.907,-0.3805,0.1804,0.8173,-0.5528,0.1626,0.7699,-0.5528,0.3189,0.907,-0.3805,0.1804,0.7699,-0.5528,0.3189,0.8544,-0.3805,0.3539,0.8544,-0.3805,0.3539,0.7699,-0.5528,0.3189,0.6929,-0.5528,0.463,0.8544,-0.3805,0.3539,0.6929,-0.5528,0.463,0.7689,-0.3805,0.5138,0.7689,-0.3805,0.5138,0.6929,-0.5528,0.463,0.5893,-0.5528,0.5893,0.7689,-0.3805,0.5138,0.5893,-0.5528,0.5893,0.6539,-0.3805,0.6539,0.6539,-0.3805,0.6539,0.5893,-0.5528,0.5893,0.463,-0.5528,0.6929,0.6539,-0.3805,0.6539,0.463,-0.5528,0.6929,0.5138,-0.3805,0.7689,0.5138,-0.3805,0.7689,0.463,-0.5528,0.6929,0.3189,-0.5528,0.7699,0.5138,-0.3805,0.7689,0.3189,-0.5528,0.7699,0.3539,-0.3805,0.8544,0.3539,-0.3805,0.8544,0.3189,-0.5528,0.7699,0.1626,-0.5528,0.8173,0.3539,-0.3805,0.8544,0.1626,-0.5528,0.8173,0.1804,-0.3805,0.907,0.1804,-0.3805,0.907,0.1626,-0.5528,0.8173,0.0,-0.5528,0.8333,0.1804,-0.3805,0.907,0.0,-0.5528,0.8333,0.0,-0.3805,0.9248,0.0,-0.5528,0.8333,0.0,-0.7041,0.7101,-0.1385,-0.7041,0.6965,0.0,-0.5528,0.8333,-0.1385,-0.7041,0.6965,-0.1626,-0.5528,0.8173,-0.1626,-0.5528,0.8173,-0.1385,-0.7041,0.6965,-0.2718,-0.7041,0.6561,-0.1626,-0.5528,0.8173,-0.2718,-0.7041,0.6561,-0.3189,-0.5528,0.7699,-0.3189,-0.5528,0.7699,-0.2718,-0.7041,0.6561,-0.3945,-0.7041,0.5905,-0.3189,-0.5528,0.7699,-0.3945,-0.7041,0.5905,-0.463,-0.5528,0.6929,-0.463,-0.5528,0.6929,-0.3945,-0.7041,0.5905,-0.5021,-0.7041,0.5021,-0.463,-0.5528,0.6929,-0.5021,-0.7041,0.5021,-0.5893,-0.5528,0.5893,-0.5893,-0.5528,0.5893,-0.5021,-0.7041,0.5021,-0.5905,-0.7041,0.3945,-0.5893,-0.5528,0.5893,-0.5905,-0.7041,0.3945,-0.6929,-0.5528,0.463,-0.6929,-0.5528,0.463,-0.5905,-0.7041,0.3945,-0.6561,-0.7041,0.2718,-0.6929,-0.5528,0.463,-0.6561,-0.7041,0.2718,-0.7699,-0.5528,0.3189,-0.7699,-0.5528,0.3189,-0.6561,-0.7041,0.2718,-0.6965,-0.7041,0.1385,-0.7699,-0.5528,0.3189,-0.6965,-0.7041,0.1385,-0.8173,-0.5528,0.1626,-0.8173,-0.5528,0.1626,-0.6965,-0.7041,0.1385,-0.7101,-0.7041,0.0,-0.8173,-0.5528,0.1626,-0.7101,-0.7041,0.0,-0.8333,-0.5528,0.0,-0.8333,-0.5528,0.0,-0.7101,-0.7041,0.0,-0.6965,-0.7041,-0.1385,-0.8333,-0.5528,0.0,-0.6965,-0.7041,-0.1385,-0.8173,-0.5528,-0.1626,-0.8173,-0.5528,-0.1626,-0.6965,-0.7041,-0.1385,-0.6561,-0.7041,-0.2718,-0.8173,-0.5528,-0.1626,-0.6561,-0.7041,-0.2718,-0.7699,-0.5528,-0.3189,-0.7699,-0.5528,-0.3189,-0.6561,-0.7041,-0.2718,-0.5905,-0.7041,-0.3945,-0.7699,-0.5528,-0.3189,-0.5905,-0.7041,-0.3945,-0.6929,-0.5528,-0.463,-0.6929,-0.5528,-0.463,-0.5905,-0.7041,-0.3945,-0.5021,-0.7041,-0.5021,-0.6929,-0.5528,-0.463,-0.5021,-0.7041,-0.5021,-0.5893,-0.5528,-0.5893,-0.5893,-0.5528,-0.5893,-0.5021,-0.7041,-0.5021,-0.3945,-0.7041,-0.5905,-0.5893,-0.5528,-0.5893,-0.3945,-0.7041,-0.5905,-0.463,-0.5528,-0.6929,-0.463,-0.5528,-0.6929,-0.3945,-0.7041,-0.5905,-0.2718,-0.7041,-0.6561,-0.463,-0.5528,-0.6929,-0.2718,-0.7041,-0.6561,-0.3189,-0.5528,-0.7699,-0.3189,-0.5528,-0.7699,-0.2718,-0.7041,-0.6561,-0.1385,-0.7041,-0.6965,-0.3189,-0.5528,-0.7699,-0.1385,-0.7041,-0.6965,-0.1626,-0.5528,-0.8173,-0.1626,-0.5528,-0.8173,-0.1385,-0.7041,-0.6965,0.0,-0.7041,-0.7101,-0.1626,-0.5528,-0.8173,0.0,-0.7041,-0.7101,0.0,-0.5528,-0.8333,0.0,-0.5528,-0.8333,0.0,-0.7041,-0.7101,0.1385,-0.7041,-0.6965,0.0,-0.5528,-0.8333,0.1385,-0.7041,-0.6965,0.1626,-0.5528,-0.8173,0.1626,-0.5528,-0.8173,0.1385,-0.7041,-0.6965,0.2718,-0.7041,-0.6561,0.1626,-0.5528,-0.8173,0.2718,-0.7041,-0.6561,0.3189,-0.5528,-0.7699,0.3189,-0.5528,-0.7699,0.2718,-0.7041,-0.6561,0.3945,-0.7041,-0.5905,0.3189,-0.5528,-0.7699,0.3945,-0.7041,-0.5905,0.463,-0.5528,-0.6929,0.463,-0.5528,-0.6929,0.3945,-0.7041,-0.5905,0.5021,-0.7041,-0.5021,0.463,-0.5528,-0.6929,0.5021,-0.7041,-0.5021,0.5893,-0.5528,-0.5893,0.5893,-0.5528,-0.5893,0.5021,-0.7041,-0.5021,0.5905,-0.7041,-0.3945,0.5893,-0.5528,-0.5893,0.5905,-0.7041,-0.3945,0.6929,-0.5528,-0.463,0.6929,-0.5528,-0.463,0.5905,-0.7041,-0.3945,0.6561,-0.7041,-0.2718,0.6929,-0.5528,-0.463,0.6561,-0.7041,-0.2718,0.7699,-0.5528,-0.3189,0.7699,-0.5528,-0.3189,0.6561,-0.7041,-0.2718,0.6965,-0.7041,-0.1385,0.7699,-0.5528,-0.3189,0.6965,-0.7041,-0.1385,0.8173,-0.5528,-0.1626,0.8173,-0.5528,-0.1626,0.6965,-0.7041,-0.1385,0.7101,-0.7041,0.0,0.8173,-0.5528,-0.1626,0.7101,-0.7041,0.0,0.8333,-0.5528,0.0,0.8333,-0.5528,0.0,0.7101,-0.7041,0.0,0.6965,-0.7041,0.1385,0.8333,-0.5528,0.0,0.6965,-0.7041,0.1385,0.8173,-0.5528,0.1626,0.8173,-0.5528,0.1626,0.6965,-0.7041,0.1385,0.6561,-0.7041,0.2718,0.8173,-0.5528,0.1626,0.6561,-0.7041,0.2718,0.7699,-0.5528,0.3189,0.7699,-0.5528,0.3189,0.6561,-0.7041,0.2718,0.5905,-0.7041,0.3945,0.7699,-0.5528,0.3189,0.5905,-0.7041,0.3945,0.6929,-0.5528,0.463,0.6929,-0.5528,0.463,0.5905,-0.7041,0.3945,0.5021,-0.7041,0.5021,0.6929,-0.5528,0.463,0.5021,-0.7041,0.5021,0.5893,-0.5528,0.5893,0.5893,-0.5528,0.5893,0.5021,-0.7041,0.5021,0.3945,-0.7041,0.5905,0.5893,-0.5528,0.5893,0.3945,-0.7041,0.5905,0.463,-0.5528,0.6929,0.463,-0.5528,0.6929,0.3945,-0.7041,0.5905,0.2718,-0.7041,0.6561,0.463,-0.5528,0.6929,0.2718,-0.7041,0.6561,0.3189,-0.5528,0.7699,0.3189,-0.5528,0.7699,0.2718,-0.7041,0.6561,0.1385,-0.7041,0.6965,0.3189,-0.5528,0.7699,0.1385,-0.7041,0.6965,0.1626,-0.5528,0.8173,0.1626,-0.5528,0.8173,0.1385,-0.7041,0.6965,0.0,-0.7041,0.7101,0.1626,-0.5528,0.8173,0.0,-0.7041,0.7101,0.0,-0.5528,0.8333,0.0,-0.7041,0.7101,0.0,-0.8286,0.5598,-0.1092,-0.8286,0.549,0.0,-0.7041,0.7101,-0.1092,-0.8286,0.549,-0.1385,-0.7041,0.6965,-0.1385,-0.7041,0.6965,-0.1092,-0.8286,0.549,-0.2142,-0.8286,0.5172,-0.1385,-0.7041,0.6965,-0.2142,-0.8286,0.5172,-0.2718,-0.7041,0.6561,-0.2718,-0.7041,0.6561,-0.2142,-0.8286,0.5172,-0.311,-0.8286,0.4654,-0.2718,-0.7041,0.6561,-0.311,-0.8286,0.4654,-0.3945,-0.7041,0.5905,-0.3945,-0.7041,0.5905,-0.311,-0.8286,0.4654,-0.3958,-0.8286,0.3958,-0.3945,-0.7041,0.5905,-0.3958,-0.8286,0.3958,-0.5021,-0.7041,0.5021,-0.5021,-0.7041,0.5021,-0.3958,-0.8286,0.3958,-0.4654,-0.8286,0.311,-0.5021,-0.7041,0.5021,-0.4654,-0.8286,0.311,-0.5905,-0.7041,0.3945,-0.5905,-0.7041,0.3945,-0.4654,-0.8286,0.311,-0.5172,-0.8286,0.2142,-0.5905,-0.7041,0.3945,-0.5172,-0.8286,0.2142,-0.6561,-0.7041,0.2718,-0.6561,-0.7041,0.2718,-0.5172,-0.8286,0.2142,-0.549,-0.8286,0.1092,-0.6561,-0.7041,0.2718,-0.549,-0.8286,0.1092,-0.6965,-0.7041,0.1385,-0.6965,-0.7041,0.1385,-0.549,-0.8286,0.1092,-0.5598,-0.8286,0.0,-0.6965,-0.7041,0.1385,-0.5598,-0.8286,0.0,-0.7101,-0.7041,0.0,-0.7101,-0.7041,0.0,-0.5598,-0.8286,0.0,-0.549,-0.8286,-0.1092,-0.7101,-0.7041,0.0,-0.549,-0.8286,-0.1092,-0.6965,-0.7041,-0.1385,-0.6965,-0.7041,-0.1385,-0.549,-0.8286,-0.1092,-0.5172,-0.8286,-0.2142,-0.6965,-0.7041,-0.1385,-0.5172,-0.8286,-0.2142,-0.6561,-0.7041,-0.2718,-0.6561,-0.7041,-0.2718,-0.5172,-0.8286,-0.2142,-0.4654,-0.8286,-0.311,-0.6561,-0.7041,-0.2718,-0.4654,-0.8286,-0.311,-0.5905,-0.7041,-0.3945,-0.5905,-0.7041,-0.3945,-0.4654,-0.8286,-0.311,-0.3958,-0.8286,-0.3958,-0.5905,-0.7041,-0.3945,-0.3958,-0.8286,-0.3958,-0.5021,-0.7041,-0.5021,-0.5021,-0.7041,-0.5021,-0.3958,-0.8286,-0.3958,-0.311,-0.8286,-0.4654,-0.5021,-0.7041,-0.5021,-0.311,-0.8286,-0.4654,-0.3945,-0.7041,-0.5905,-0.3945,-0.7041,-0.5905,-0.311,-0.8286,-0.4654,-0.2142,-0.8286,-0.5172,-0.3945,-0.7041,-0.5905,-0.2142,-0.8286,-0.5172,-0.2718,-0.7041,-0.6561,-0.2718,-0.7041,-0.6561,-0.2142,-0.8286,-0.5172,-0.1092,-0.8286,-0.549,-0.2718,-0.7041,-0.6561,-0.1092,-0.8286,-0.549,-0.1385,-0.7041,-0.6965,-0.1385,-0.7041,-0.6965,-0.1092,-0.8286,-0.549,0.0,-0.8286,-0.5598,-0.1385,-0.7041,-0.6965,0.0,-0.8286,-0.5598,0.0,-0.7041,-0.7101,0.0,-0.7041,-0.7101,0.0,-0.8286,-0.5598,0.1092,-0.8286,-0.549,0.0,-0.7041,-0.7101,0.1092,-0.8286,-0.549,0.1385,-0.7041,-0.6965,0.1385,-0.7041,-0.6965,0.1092,-0.8286,-0.549,0.2142,-0.8286,-0.5172,0.1385,-0.7041,-0.6965,0.2142,-0.8286,-0.5172,0.2718,-0.7041,-0.6561,0.2718,-0.7041,-0.6561,0.2142,-0.8286,-0.5172,0.311,-0.8286,-0.4654,0.2718,-0.7041,-0.6561,0.311,-0.8286,-0.4654,0.3945,-0.7041,-0.5905,0.3945,-0.7041,-0.5905,0.311,-0.8286,-0.4654,0.3958,-0.8286,-0.3958,0.3945,-0.7041,-0.5905,0.3958,-0.8286,-0.3958,0.5021,-0.7041,-0.5021,0.5021,-0.7041,-0.5021,0.3958,-0.8286,-0.3958,0.4654,-0.8286,-0.311,0.5021,-0.7041,-0.5021,0.4654,-0.8286,-0.311,0.5905,-0.7041,-0.3945,0.5905,-0.7041,-0.3945,0.4654,-0.8286,-0.311,0.5172,-0.8286,-0.2142,0.5905,-0.7041,-0.3945,0.5172,-0.8286,-0.2142,0.6561,-0.7041,-0.2718,0.6561,-0.7041,-0.2718,0.5172,-0.8286,-0.2142,0.549,-0.8286,-0.1092,0.6561,-0.7041,-0.2718,0.549,-0.8286,-0.1092,0.6965,-0.7041,-0.1385,0.6965,-0.7041,-0.1385,0.549,-0.8286,-0.1092,0.5598,-0.8286,0.0,0.6965,-0.7041,-0.1385,0.5598,-0.8286,0.0,0.7101,-0.7041,0.0,0.7101,-0.7041,0.0,0.5598,-0.8286,0.0,0.549,-0.8286,0.1092,0.7101,-0.7041,0.0,0.549,-0.8286,0.1092,0.6965,-0.7041,0.1385,0.6965,-0.7041,0.1385,0.549,-0.8286,0.1092,0.5172,-0.8286,0.2142,0.6965,-0.7041,0.1385,0.5172,-0.8286,0.2142,0.6561,-0.7041,0.2718,0.6561,-0.7041,0.2718,0.5172,-0.8286,0.2142,0.4654,-0.8286,0.311,0.6561,-0.7041,0.2718,0.4654,-0.8286,0.311,0.5905,-0.7041,0.3945,0.5905,-0.7041,0.3945,0.4654,-0.8286,0.311,0.3958,-0.8286,0.3958,0.5905,-0.7041,0.3945,0.3958,-0.8286,0.3958,0.5021,-0.7041,0.5021,0.5021,-0.7041,0.5021,0.3958,-0.8286,0.3958,0.311,-0.8286,0.4654,0.5021,-0.7041,0.5021,0.311,-0.8286,0.4654,0.3945,-0.7041,0.5905,0.3945,-0.7041,0.5905,0.311,-0.8286,0.4654,0.2142,-0.8286,0.5172,0.3945,-0.7041,0.5905,0.2142,-0.8286,0.5172,0.2718,-0.7041,0.6561,0.2718,-0.7041,0.6561,0.2142,-0.8286,0.5172,0.1092,-0.8286,0.549,0.2718,-0.7041,0.6561,0.1092,-0.8286,0.549,0.1385,-0.7041,0.6965,0.1385,-0.7041,0.6965,0.1092,-0.8286,0.549,0.0,-0.8286,0.5598,0.1385,-0.7041,0.6965,0.0,-0.8286,0.5598,0.0,-0.7041,0.7101,0.0,-0.8286,0.5598,0.0,-0.9217,0.3879,-0.0757,-0.9217,0.3804,0.0,-0.8286,0.5598,-0.0757,-0.9217,0.3804,-0.1092,-0.8286,0.549,-0.1092,-0.8286,0.549,-0.0757,-0.9217,0.3804,-0.1484,-0.9217,0.3584,-0.1092,-0.8286,0.549,-0.1484,-0.9217,0.3584,-0.2142,-0.8286,0.5172,-0.2142,-0.8286,0.5172,-0.1484,-0.9217,0.3584,-0.2155,-0.9217,0.3225,-0.2142,-0.8286,0.5172,-0.2155,-0.9217,0.3225,-0.311,-0.8286,0.4654,-0.311,-0.8286,0.4654,-0.2155,-0.9217,0.3225,-0.2743,-0.9217,0.2743,-0.311,-0.8286,0.4654,-0.2743,-0.9217,0.2743,-0.3958,-0.8286,0.3958,-0.3958,-0.8286,0.3958,-0.2743,-0.9217,0.2743,-0.3225,-0.9217,0.2155,-0.3958,-0.8286,0.3958,-0.3225,-0.9217,0.2155,-0.4654,-0.8286,0.311,-0.4654,-0.8286,0.311,-0.3225,-0.9217,0.2155,-0.3584,-0.9217,0.1484,-0.4654,-0.8286,0.311,-0.3584,-0.9217,0.1484,-0.5172,-0.8286,0.2142,-0.5172,-0.8286,0.2142,-0.3584,-0.9217,0.1484,-0.3804,-0.9217,0.0757,-0.5172,-0.8286,0.2142,-0.3804,-0.9217,0.0757,-0.549,-0.8286,0.1092,-0.549,-0.8286,0.1092,-0.3804,-0.9217,0.0757,-0.3879,-0.9217,0.0,-0.549,-0.8286,0.1092,-0.3879,-0.9217,0.0,-0.5598,-0.8286,0.0,-0.5598,-0.8286,0.0,-0.3879,-0.9217,0.0,-0.3804,-0.9217,-0.0757,-0.5598,-0.8286,0.0,-0.3804,-0.9217,-0.0757,-0.549,-0.8286,-0.1092,-0.549,-0.8286,-0.1092,-0.3804,-0.9217,-0.0757,-0.3584,-0.9217,-0.1484,-0.549,-0.8286,-0.1092,-0.3584,-0.9217,-0.1484,-0.5172,-0.8286,-0.2142,-0.5172,-0.8286,-0.2142,-0.3584,-0.9217,-0.1484,-0.3225,-0.9217,-0.2155,-0.5172,-0.8286,-0.2142,-0.3225,-0.9217,-0.2155,-0.4654,-0.8286,-0.311,-0.4654,-0.8286,-0.311,-0.3225,-0.9217,-0.2155,-0.2743,-0.9217,-0.2743,-0.4654,-0.8286,-0.311,-0.2743,-0.9217,-0.2743,-0.3958,-0.8286,-0.3958,-0.3958,-0.8286,-0.3958,-0.2743,-0.9217,-0.2743,-0.2155,-0.9217,-0.3225,-0.3958,-0.8286,-0.3958,-0.2155,-0.9217,-0.3225,-0.311,-0.8286,-0.4654,-0.311,-0.8286,-0.4654,-0.2155,-0.9217,-0.3225,-0.1484,-0.9217,-0.3584,-0.311,-0.8286,-0.4654,-0.1484,-0.9217,-0.3584,-0.2142,-0.8286,-0.5172,-0.2142,-0.8286,-0.5172,-0.1484,-0.9217,-0.3584,-0.0757,-0.9217,-0.3804,-0.2142,-0.8286,-0.5172,-0.0757,-0.9217,-0.3804,-0.1092,-0.8286,-0.549,-0.1092,-0.8286,-0.549,-0.0757,-0.9217,-0.3804,0.0,-0.9217,-0.3879,-0.1092,-0.8286,-0.549,0.0,-0.9217,-0.3879,0.0,-0.8286,-0.5598,0.0,-0.8286,-0.5598,0.0,-0.9217,-0.3879,0.0757,-0.9217,-0.3804,0.0,-0.8286,-0.5598,0.0757,-0.9217,-0.3804,0.1092,-0.8286,-0.549,0.1092,-0.8286,-0.549,0.0757,-0.9217,-0.3804,0.1484,-0.9217,-0.3584,0.1092,-0.8286,-0.549,0.1484,-0.9217,-0.3584,0.2142,-0.8286,-0.5172,0.2142,-0.8286,-0.5172,0.1484,-0.9217,-0.3584,0.2155,-0.9217,-0.3225,0.2142,-0.8286,-0.5172,0.2155,-0.9217,-0.3225,0.311,-0.8286,-0.4654,0.311,-0.8286,-0.4654,0.2155,-0.9217,-0.3225,0.2743,-0.9217,-0.2743,0.311,-0.8286,-0.4654,0.2743,-0.9217,-0.2743,0.3958,-0.8286,-0.3958,0.3958,-0.8286,-0.3958,0.2743,-0.9217,-0.2743,0.3225,-0.9217,-0.2155,0.3958,-0.8286,-0.3958,0.3225,-0.9217,-0.2155,0.4654,-0.8286,-0.311,0.4654,-0.8286,-0.311,0.3225,-0.9217,-0.2155,0.3584,-0.9217,-0.1484,0.4654,-0.8286,-0.311,0.3584,-0.9217,-0.1484,0.5172,-0.8286,-0.2142,0.5172,-0.8286,-0.2142,0.3584,-0.9217,-0.1484,0.3804,-0.9217,-0.0757,0.5172,-0.8286,-0.2142,0.3804,-0.9217,-0.0757,0.549,-0.8286,-0.1092,0.549,-0.8286,-0.1092,0.3804,-0.9217,-0.0757,0.3879,-0.9217,0.0,0.549,-0.8286,-0.1092,0.3879,-0.9217,0.0,0.5598,-0.8286,0.0,0.5598,-0.8286,0.0,0.3879,-0.9217,0.0,0.3804,-0.9217,0.0757,0.5598,-0.8286,0.0,0.3804,-0.9217,0.0757,0.549,-0.8286,0.1092,0.549,-0.8286,0.1092,0.3804,-0.9217,0.0757,0.3584,-0.9217,0.1484,0.549,-0.8286,0.1092,0.3584,-0.9217,0.1484,0.5172,-0.8286,0.2142,0.5172,-0.8286,0.2142,0.3584,-0.9217,0.1484,0.3225,-0.9217,0.2155,0.5172,-0.8286,0.2142,0.3225,-0.9217,0.2155,0.4654,-0.8286,0.311,0.4654,-0.8286,0.311,0.3225,-0.9217,0.2155,0.2743,-0.9217,0.2743,0.4654,-0.8286,0.311,0.2743,-0.9217,0.2743,0.3958,-0.8286,0.3958,0.3958,-0.8286,0.3958,0.2743,-0.9217,0.2743,0.2155,-0.9217,0.3225,0.3958,-0.8286,0.3958,0.2155,-0.9217,0.3225,0.311,-0.8286,0.4654,0.311,-0.8286,0.4654,0.2155,-0.9217,0.3225,0.1484,-0.9217,0.3584,0.311,-0.8286,0.4654,0.1484,-0.9217,0.3584,0.2142,-0.8286,0.5172,0.2142,-0.8286,0.5172,0.1484,-0.9217,0.3584,0.0757,-0.9217,0.3804,0.2142,-0.8286,0.5172,0.0757,-0.9217,0.3804,0.1092,-0.8286,0.549,0.1092,-0.8286,0.549,0.0757,-0.9217,0.3804,0.0,-0.9217,0.3879,0.1092,-0.8286,0.549,0.0,-0.9217,0.3879,0.0,-0.8286,0.5598,0.0,-0.9217,0.3879,0.0,-0.9796,0.201,-0.0392,-0.9796,0.1971,0.0,-0.9217,0.3879,-0.0392,-0.9796,0.1971,-0.0757,-0.9217,0.3804,-0.0757,-0.9217,0.3804,-0.0392,-0.9796,0.1971,-0.0769,-0.9796,0.1857,-0.0757,-0.9217,0.3804,-0.0769,-0.9796,0.1857,-0.1484,-0.9217,0.3584,-0.1484,-0.9217,0.3584,-0.0769,-0.9796,0.1857,-0.1117,-0.9796,0.1671,-0.1484,-0.9217,0.3584,-0.1117,-0.9796,0.1671,-0.2155,-0.9217,0.3225,-0.2155,-0.9217,0.3225,-0.1117,-0.9796,0.1671,-0.1421,-0.9796,0.1421,-0.2155,-0.9217,0.3225,-0.1421,-0.9796,0.1421,-0.2743,-0.9217,0.2743,-0.2743,-0.9217,0.2743,-0.1421,-0.9796,0.1421,-0.1671,-0.9796,0.1117,-0.2743,-0.9217,0.2743,-0.1671,-0.9796,0.1117,-0.3225,-0.9217,0.2155,-0.3225,-0.9217,0.2155,-0.1671,-0.9796,0.1117,-0.1857,-0.9796,0.0769,-0.3225,-0.9217,0.2155,-0.1857,-0.9796,0.0769,-0.3584,-0.9217,0.1484,-0.3584,-0.9217,0.1484,-0.1857,-0.9796,0.0769,-0.1971,-0.9796,0.0392,-0.3584,-0.9217,0.1484,-0.1971,-0.9796,0.0392,-0.3804,-0.9217,0.0757,-0.3804,-0.9217,0.0757,-0.1971,-0.9796,0.0392,-0.201,-0.9796,0.0,-0.3804,-0.9217,0.0757,-0.201,-0.9796,0.0,-0.3879,-0.9217,0.0,-0.3879,-0.9217,0.0,-0.201,-0.9796,0.0,-0.1971,-0.9796,-0.0392,-0.3879,-0.9217,0.0,-0.1971,-0.9796,-0.0392,-0.3804,-0.9217,-0.0757,-0.3804,-0.9217,-0.0757,-0.1971,-0.9796,-0.0392,-0.1857,-0.9796,-0.0769,-0.3804,-0.9217,-0.0757,-0.1857,-0.9796,-0.0769,-0.3584,-0.9217,-0.1484,-0.3584,-0.9217,-0.1484,-0.1857,-0.9796,-0.0769,-0.1671,-0.9796,-0.1117,-0.3584,-0.9217,-0.1484,-0.1671,-0.9796,-0.1117,-0.3225,-0.9217,-0.2155,-0.3225,-0.9217,-0.2155,-0.1671,-0.9796,-0.1117,-0.1421,-0.9796,-0.1421,-0.3225,-0.9217,-0.2155,-0.1421,-0.9796,-0.1421,-0.2743,-0.9217,-0.2743,-0.2743,-0.9217,-0.2743,-0.1421,-0.9796,-0.1421,-0.1117,-0.9796,-0.1671,-0.2743,-0.9217,-0.2743,-0.1117,-0.9796,-0.1671,-0.2155,-0.9217,-0.3225,-0.2155,-0.9217,-0.3225,-0.1117,-0.9796,-0.1671,-0.0769,-0.9796,-0.1857,-0.2155,-0.9217,-0.3225,-0.0769,-0.9796,-0.1857,-0.1484,-0.9217,-0.3584,-0.1484,-0.9217,-0.3584,-0.0769,-0.9796,-0.1857,-0.0392,-0.9796,-0.1971,-0.1484,-0.9217,-0.3584,-0.0392,-0.9796,-0.1971,-0.0757,-0.9217,-0.3804,-0.0757,-0.9217,-0.3804,-0.0392,-0.9796,-0.1971,0.0,-0.9796,-0.201,-0.0757,-0.9217,-0.3804,0.0,-0.9796,-0.201,0.0,-0.9217,-0.3879,0.0,-0.9217,-0.3879,0.0,-0.9796,-0.201,0.0392,-0.9796,-0.1971,0.0,-0.9217,-0.3879,0.0392,-0.9796,-0.1971,0.0757,-0.9217,-0.3804,0.0757,-0.9217,-0.3804,0.0392,-0.9796,-0.1971,0.0769,-0.9796,-0.1857,0.0757,-0.9217,-0.3804,0.0769,-0.9796,-0.1857,0.1484,-0.9217,-0.3584,0.1484,-0.9217,-0.3584,0.0769,-0.9796,-0.1857,0.1117,-0.9796,-0.1671,0.1484,-0.9217,-0.3584,0.1117,-0.9796,-0.1671,0.2155,-0.9217,-0.3225,0.2155,-0.9217,-0.3225,0.1117,-0.9796,-0.1671,0.1421,-0.9796,-0.1421,0.2155,-0.9217,-0.3225,0.1421,-0.9796,-0.1421,0.2743,-0.9217,-0.2743,0.2743,-0.9217,-0.2743,0.1421,-0.9796,-0.1421,0.1671,-0.9796,-0.1117,0.2743,-0.9217,-0.2743,0.1671,-0.9796,-0.1117,0.3225,-0.9217,-0.2155,0.3225,-0.9217,-0.2155,0.1671,-0.9796,-0.1117,0.1857,-0.9796,-0.0769,0.3225,-0.9217,-0.2155,0.1857,-0.9796,-0.0769,0.3584,-0.9217,-0.1484,0.3584,-0.9217,-0.1484,0.1857,-0.9796,-0.0769,0.1971,-0.9796,-0.0392,0.3584,-0.9217,-0.1484,0.1971,-0.9796,-0.0392,0.3804,-0.9217,-0.0757,0.3804,-0.9217,-0.0757,0.1971,-0.9796,-0.0392,0.201,-0.9796,0.0,0.3804,-0.9217,-0.0757,0.201,-0.9796,0.0,0.3879,-0.9217,0.0,0.3879,-0.9217,0.0,0.201,-0.9796,0.0,0.1971,-0.9796,0.0392,0.3879,-0.9217,0.0,0.1971,-0.9796,0.0392,0.3804,-0.9217,0.0757,0.3804,-0.9217,0.0757,0.1971,-0.9796,0.0392,0.1857,-0.9796,0.0769,0.3804,-0.9217,0.0757,0.1857,-0.9796,0.0769,0.3584,-0.9217,0.1484,0.3584,-0.9217,0.1484,0.1857,-0.9796,0.0769,0.1671,-0.9796,0.1117,0.3584,-0.9217,0.1484,0.1671,-0.9796,0.1117,0.3225,-0.9217,0.2155,0.3225,-0.9217,0.2155,0.1671,-0.9796,0.1117,0.1421,-0.9796,0.1421,0.3225,-0.9217,0.2155,0.1421,-0.9796,0.1421,0.2743,-0.9217,0.2743,0.2743,-0.9217,0.2743,0.1421,-0.9796,0.1421,0.1117,-0.9796,0.1671,0.2743,-0.9217,0.2743,0.1117,-0.9796,0.1671,0.2155,-0.9217,0.3225,0.2155,-0.9217,0.3225,0.1117,-0.9796,0.1671,0.0769,-0.9796,0.1857,0.2155,-0.9217,0.3225,0.0769,-0.9796,0.1857,0.1484,-0.9217,0.3584,0.1484,-0.9217,0.3584,0.0769,-0.9796,0.1857,0.0392,-0.9796,0.1971,0.1484,-0.9217,0.3584,0.0392,-0.9796,0.1971,0.0757,-0.9217,0.3804,0.0757,-0.9217,0.3804,0.0392,-0.9796,0.1971,0.0,-0.9796,0.201,0.0757,-0.9217,0.3804,0.0,-0.9796,0.201,0.0,-0.9217,0.3879,0.0,-1.0,0.0,-0.0392,-0.9796,0.1971,0.0,-0.9796,0.201,0.0,-1.0,0.0,-0.0769,-0.9796,0.1857,-0.0392,-0.9796,0.1971,0.0,-1.0,0.0,-0.1117,-0.9796,0.1671,-0.0769,-0.9796,0.1857,0.0,-1.0,0.0,-0.1421,-0.9796,0.1421,-0.1117,-0.9796,0.1671,0.0,-1.0,0.0,-0.1671,-0.9796,0.1117,-0.1421,-0.9796,0.1421,0.0,-1.0,0.0,-0.1857,-0.9796,0.0769,-0.1671,-0.9796,0.1117,0.0,-1.0,0.0,-0.1971,-0.9796,0.0392,-0.1857,-0.9796,0.0769,0.0,-1.0,0.0,-0.201,-0.9796,0.0,-0.1971,-0.9796,0.0392,0.0,-1.0,0.0,-0.1971,-0.9796,-0.0392,-0.201,-0.9796,0.0,0.0,-1.0,0.0,-0.1857,-0.9796,-0.0769,-0.1971,-0.9796,-0.0392,0.0,-1.0,0.0,-0.1671,-0.9796,-0.1117,-0.1857,-0.9796,-0.0769,0.0,-1.0,0.0,-0.1421,-0.9796,-0.1421,-0.1671,-0.9796,-0.1117,0.0,-1.0,0.0,-0.1117,-0.9796,-0.1671,-0.1421,-0.9796,-0.1421,0.0,-1.0,0.0,-0.0769,-0.9796,-0.1857,-0.1117,-0.9796,-0.1671,0.0,-1.0,0.0,-0.0392,-0.9796,-0.1971,-0.0769,-0.9796,-0.1857,0.0,-1.0,0.0,0.0,-0.9796,-0.201,-0.0392,-0.9796,-0.1971,0.0,-1.0,0.0,0.0392,-0.9796,-0.1971,0.0,-0.9796,-0.201,0.0,-1.0,0.0,0.0769,-0.9796,-0.1857,0.0392,-0.9796,-0.1971,0.0,-1.0,0.0,0.1117,-0.9796,-0.1671,0.0769,-0.9796,-0.1857,0.0,-1.0,0.0,0.1421,-0.9796,-0.1421,0.1117,-0.9796,-0.1671,0.0,-1.0,0.0,0.1671,-0.9796,-0.1117,0.1421,-0.9796,-0.1421,0.0,-1.0,0.0,0.1857,-0.9796,-0.0769,0.1671,-0.9796,-0.1117,0.0,-1.0,0.0,0.1971,-0.9796,-0.0392,0.1857,-0.9796,-0.0769,0.0,-1.0,0.0,0.201,-0.9796,0.0,0.1971,-0.9796,-0.0392,0.0,-1.0,0.0,0.1971,-0.9796,0.0392,0.201,-0.9796,0.0,0.0,-1.0,0.0,0.1857,-0.9796,0.0769,0.1971,-0.9796,0.0392,0.0,-1.0,0.0,0.1671,-0.9796,0.1117,0.1857,-0.9796,0.0769,0.0,-1.0,0.0,0.1421,-0.9796,0.1421,0.1671,-0.9796,0.1117,0.0,-1.0,0.0,0.1117,-0.9796,0.1671,0.1421,-0.9796,0.1421,0.0,-1.0,0.0,0.0769,-0.9796,0.1857,0.1117,-0.9796,0.1671,0.0,-1.0,0.0,0.0392,-0.9796,0.1971,0.0769,-0.9796,0.1857,0.0,-1.0,0.0,0.0,-0.9796,0.201,0.0392,-0.9796,0.1971],"tangents":null,"uvs":[0.0,2.0,0.0,1.9375,0.0312,1.9375,0.0312,2.0,0.0312,1.9375,0.0625,1.9375,0.0625,2.0,0.0625,1.9375,0.0938,1.9375,0.0938,2.0,0.0938,1.9375,0.125,1.9375,0.125,2.0,0.125,1.9375,0.1562,1.9375,0.1562,2.0,0.1562,1.9375,0.1875,1.9375,0.1875,2.0,0.1875,1.9375,0.2187,1.9375,0.2187,2.0,0.2187,1.9375,0.25,1.9375,0.25,2.0,0.25,1.9375,0.2812,1.9375,0.2812,2.0,0.2812,1.9375,0.3125,1.9375,0.3125,2.0,0.3125,1.9375,0.3437,1.9375,0.3437,2.0,0.3437,1.9375,0.375,1.9375,0.375,2.0,0.375,1.9375,0.4062,1.9375,0.4062,2.0,0.4062,1.9375,0.4375,1.9375,0.4375,2.0,0.4375,1.9375,0.4688,1.9375,0.4688,2.0,0.4688,1.9375,0.5,1.9375,0.5,2.0,0.5,1.9375,0.5313,1.9375,0.5313,2.0,0.5313,1.9375,0.5625,1.9375,0.5625,2.0,0.5625,1.9375,0.5938,1.9375,0.5938,2.0,0.5938,1.9375,0.625,1.9375,0.625,2.0,0.625,1.9375,0.6563,1.9375,0.6563,2.0,0.6563,1.9375,0.6875,1.9375,0.6875,2.0,0.6875,1.9375,0.7188,1.9375,0.7188,2.0,0.7188,1.9375,0.75,1.9375,0.75,2.0,0.75,1.9375,0.7813,1.9375,0.7813,2.0,0.7813,1.9375,0.8125,1.9375,0.8125,2.0,0.8125,1.9375,0.8438,1.9375,0.8438,2.0,0.8438,1.9375,0.875,1.9375,0.875,2.0,0.875,1.9375,0.9063,1.9375,0.9063,2.0,0.9063,1.9375,0.9375,1.9375,0.9375,2.0,0.9375,1.9375,0.9688,1.9375,0.9688,2.0,0.9688,1.9375,1.0,1.9375,0.0,1.9375,0.0,1.875,0.0312,1.875,0.0,1.9375,0.0312,1.875,0.0312,1.9375,0.0312,1.9375,0.0312,1.875,0.0625,1.875,0.0312,1.9375,0.0625,1.875,0.0625,1.9375,0.0625,1.9375,0.0625,1.875,0.0938,1.875,0.0625,1.9375,0.0938,1.875,0.0938,1.9375,0.0938,1.9375,0.0938,1.875,0.125,1.875,0.0938,1.9375,0.125,1.875,0.125,1.9375,0.125,1.9375,0.125,1.875,0.1562,1.875,0.125,1.9375,0.1562,1.875,0.1562,1.9375,0.1562,1.9375,0.1562,1.875,0.1875,1.875,0.1562,1.9375,0.1875,1.875,0.1875,1.9375,0.1875,1.9375,0.1875,1.875,0.2187,1.875,0.1875,1.9375,0.2187,1.875,0.2187,1.9375,0.2187,1.9375,0.2187,1.875,0.25,1.875,0.2187,1.9375,0.25,1.875,0.25,1.9375,0.25,1.9375,0.25,1.875,0.2812,1.875,0.25,1.9375,0.2812,1.875,0.2812,1.9375,0.2812,1.9375,0.2812,1.875,0.3125,1.875,0.2812,1.9375,0.3125,1.875,0.3125,1.9375,0.3125,1.9375,0.3125,1.875,0.3437,1.875,0.3125,1.9375,0.3437,1.875,0.3437,1.9375,0.3437,1.9375,0.3437,1.875,0.375,1.875,0.3437,1.9375,0.375,1.875,0.375,1.9375,0.375,1.9375,0.375,1.875,0.4062,1.875,0.375,1.9375,0.4062,1.875,0.4062,1.9375,0.4062,1.9375,0.4062,1.875,0.4375,1.875,0.4062,1.9375,0.4375,1.875,0.4375,1.9375,0.4375,1.9375,0.4375,1.875,0.4688,1.875,0.4375,1.9375,0.4688,1.875,0.4688,1.9375,0.4688,1.9375,0.4688,1.875,0.5,1.875,0.4688,1.9375,0.5,1.875,0.5,1.9375,0.5,1.9375,0.5,1.875,0.5313,1.875,0.5,1.9375,0.5313,1.875,0.5313,1.9375,0.5313,1.9375,0.5313,1.875,0.5625,1.875,0.5313,1.9375,0.5625,1.875,0.5625,1.9375,0.5625,1.9375,0.5625,1.875,0.5938,1.875,0.5625,1.9375,0.5938,1.875,0.5938,1.9375,0.5938,1.9375,0.5938,1.875,0.625,1.875,0.5938,1.9375,0.625,1.875,0.625,1.9375,0.625,1.9375,0.625,1.875,0.6563,1.875,0.625,1.9375,0.6563,1.875,0.6563,1.9375,0.6563,1.9375,0.6563,1.875,0.6875,1.875,0.6563,1.9375,0.6875,1.875,0.6875,1.9375,0.6875,1.9375,0.6875,1.875,0.7188,1.875,0.6875,1.9375,0.7188,1.875,0.7188,1.9375,0.7188,1.9375,0.7188,1.875,0.75,1.875,0.7188,1.9375,0.75,1.875,0.75,1.9375,0.75,1.9375,0.75,1.875,0.7813,1.875,0.75,1.9375,0.7813,1.875,0.7813,1.9375,0.7813,1.9375,0.7813,1.875,0.8125,1.875,0.7813,1.9375,0.8125,1.875,0.8125,1.9375,0.8125,1.9375,0.8125,1.875,0.8438,1.875,0.8125,1.9375,0.8438,1.875,0.8438,1.9375,0.8438,1.9375,0.8438,1.875,0.875,1.875,0.8438,1.9375,0.875,1.875,0.875,1.9375,0.875,1.9375,0.875,1.875,0.9063,1.875,0.875,1.9375,0.9063,1.875,0.9063,1.9375,0.9063,1.9375,0.9063,1.875,0.9375,1.875,0.9063,1.9375,0.9375,1.875,0.9375,1.9375,0.9375,1.9375,0.9375,1.875,0.9688,1.875,0.9375,1.9375,0.9688,1.875,0.9688,1.9375,0.9688,1.9375,0.9688,1.875,1.0,1.875,0.9688,1.9375,1.0,1.875,1.0,1.9375,0.0,1.875,0.0,1.8125,0.0312,1.8125,0.0,1.875,0.0312,1.8125,0.0312,1.875,0.0312,1.875,0.0312,1.8125,0.0625,1.8125,0.0312,1.875,0.0625,1.8125,0.0625,1.875,0.0625,1.875,0.0625,1.8125,0.0938,1.8125,0.0625,1.875,0.0938,1.8125,0.0938,1.875,0.0938,1.875,0.0938,1.8125,0.125,1.8125,0.0938,1.875,0.125,1.8125,0.125,1.875,0.125,1.875,0.125,1.8125,0.1562,1.8125,0.125,1.875,0.1562,1.8125,0.1562,1.875,0.1562,1.875,0.1562,1.8125,0.1875,1.8125,0.1562,1.875,0.1875,1.8125,0.1875,1.875,0.1875,1.875,0.1875,1.8125,0.2187,1.8125,0.1875,1.875,0.2187,1.8125,0.2187,1.875,0.2187,1.875,0.2187,1.8125,0.25,1.8125,0.2187,1.875,0.25,1.8125,0.25,1.875,0.25,1.875,0.25,1.8125,0.2812,1.8125,0.25,1.875,0.2812,1.8125,0.2812,1.875,0.2812,1.875,0.2812,1.8125,0.3125,1.8125,0.2812,1.875,0.3125,1.8125,0.3125,1.875,0.3125,1.875,0.3125,1.8125,0.3437,1.8125,0.3125,1.875,0.3437,1.8125,0.3437,1.875,0.3437,1.875,0.3437,1.8125,0.375,1.8125,0.3437,1.875,0.375,1.8125,0.375,1.875,0.375,1.875,0.375,1.8125,0.4062,1.8125,0.375,1.875,0.4062,1.8125,0.4062,1.875,0.4062,1.875,0.4062,1.8125,0.4375,1.8125,0.4062,1.875,0.4375,1.8125,0.4375,1.875,0.4375,1.875,0.4375,1.8125,0.4688,1.8125,0.4375,1.875,0.4688,1.8125,0.4688,1.875,0.4688,1.875,0.4688,1.8125,0.5,1.8125,0.4688,1.875,0.5,1.8125,0.5,1.875,0.5,1.875,0.5,1.8125,0.5313,1.8125,0.5,1.875,0.5313,1.8125,0.5313,1.875,0.5313,1.875,0.5313,1.8125,0.5625,1.8125,0.5313,1.875,0.5625,1.8125,0.5625,1.875,0.5625,1.875,0.5625,1.8125,0.5938,1.8125,0.5625,1.875,0.5938,1.8125,0.5938,1.875,0.5938,1.875,0.5938,1.8125,0.625,1.8125,0.5938,1.875,0.625,1.8125,0.625,1.875,0.625,1.875,0.625,1.8125,0.6563,1.8125,0.625,1.875,0.6563,1.8125,0.6563,1.875,0.6563,1.875,0.6563,1.8125,0.6875,1.8125,0.6563,1.875,0.6875,1.8125,0.6875,1.875,0.6875,1.875,0.6875,1.8125,0.7188,1.8125,0.6875,1.875,0.7188,1.8125,0.7188,1.875,0.7188,1.875,0.7188,1.8125,0.75,1.8125,0.7188,1.875,0.75,1.8125,0.75,1.875,0.75,1.875,0.75,1.8125,0.7813,1.8125,0.75,1.875,0.7813,1.8125,0.7813,1.875,0.7813,1.875,0.7813,1.8125,0.8125,1.8125,0.7813,1.875,0.8125,1.8125,0.8125,1.875,0.8125,1.875,0.8125,1.8125,0.8438,1.8125,0.8125,1.875,0.8438,1.8125,0.8438,1.875,0.8438,1.875,0.8438,1.8125,0.875,1.8125,0.8438,1.875,0.875,1.8125,0.875,1.875,0.875,1.875,0.875,1.8125,0.9063,1.8125,0.875,1.875,0.9063,1.8125,0.9063,1.875,0.9063,1.875,0.9063,1.8125,0.9375,1.8125,0.9063,1.875,0.9375,1.8125,0.9375,1.875,0.9375,1.875,0.9375,1.8125,0.9688,1.8125,0.9375,1.875,0.9688,1.8125,0.9688,1.875,0.9688,1.875,0.9688,1.8125,1.0,1.8125,0.9688,1.875,1.0,1.8125,1.0,1.875,0.0,1.8125,0.0,1.75,0.0312,1.75,0.0,1.8125,0.0312,1.75,0.0312,1.8125,0.0312,1.8125,0.0312,1.75,0.0625,1.75,0.0312,1.8125,0.0625,1.75,0.0625,1.8125,0.0625,1.8125,0.0625,1.75,0.0938,1.75,0.0625,1.8125,0.0938,1.75,0.0938,1.8125,0.0938,1.8125,0.0938,1.75,0.125,1.75,0.0938,1.8125,0.125,1.75,0.125,1.8125,0.125,1.8125,0.125,1.75,0.1562,1.75,0.125,1.8125,0.1562,1.75,0.1562,1.8125,0.1562,1.8125,0.1562,1.75,0.1875,1.75,0.1562,1.8125,0.1875,1.75,0.1875,1.8125,0.1875,1.8125,0.1875,1.75,0.2187,1.75,0.1875,1.8125,0.2187,1.75,0.2187,1.8125,0.2187,1.8125,0.2187,1.75,0.25,1.75,0.2187,1.8125,0.25,1.75,0.25,1.8125,0.25,1.8125,0.25,1.75,0.2812,1.75,0.25,1.8125,0.2812,1.75,0.2812,1.8125,0.2812,1.8125,0.2812,1.75,0.3125,1.75,0.2812,1.8125,0.3125,1.75,0.3125,1.8125,0.3125,1.8125,0.3125,1.75,0.3437,1.75,0.3125,1.8125,0.3437,1.75,0.3437,1.8125,0.3437,1.8125,0.3437,1.75,0.375,1.75,0.3437,1.8125,0.375,1.75,0.375,1.8125,0.375,1.8125,0.375,1.75,0.4062,1.75,0.375,1.8125,0.4062,1.75,0.4062,1.8125,0.4062,1.8125,0.4062,1.75,0.4375,1.75,0.4062,1.8125,0.4375,1.75,0.4375,1.8125,0.4375,1.8125,0.4375,1.75,0.4688,1.75,0.4375,1.8125,0.4688,1.75,0.4688,1.8125,0.4688,1.8125,0.4688,1.75,0.5,1.75,0.4688,1.8125,0.5,1.75,0.5,1.8125,0.5,1.8125,0.5,1.75,0.5313,1.75,0.5,1.8125,0.5313,1.75,0.5313,1.8125,0.5313,1.8125,0.5313,1.75,0.5625,1.75,0.5313,1.8125,0.5625,1.75,0.5625,1.8125,0.5625,1.8125,0.5625,1.75,0.5938,1.75,0.5625,1.8125,0.5938,1.75,0.5938,1.8125,0.5938,1.8125,0.5938,1.75,0.625,1.75,0.5938,1.8125,0.625,1.75,0.625,1.8125,0.625,1.8125,0.625,1.75,0.6563,1.75,0.625,1.8125,0.6563,1.75,0.6563,1.8125,0.6563,1.8125,0.6563,1.75,0.6875,1.75,0.6563,1.8125,0.6875,1.75,0.6875,1.8125,0.6875,1.8125,0.6875,1.75,0.7188,1.75,0.6875,1.8125,0.7188,1.75,0.7188,1.8125,0.7188,1.8125,0.7188,1.75,0.75,1.75,0.7188,1.8125,0.75,1.75,0.75,1.8125,0.75,1.8125,0.75,1.75,0.7813,1.75,0.75,1.8125,0.7813,1.75,0.7813,1.8125,0.7813,1.8125,0.7813,1.75,0.8125,1.75,0.7813,1.8125,0.8125,1.75,0.8125,1.8125,0.8125,1.8125,0.8125,1.75,0.8438,1.75,0.8125,1.8125,0.8438,1.75,0.8438,1.8125,0.8438,1.8125,0.8438,1.75,0.875,1.75,0.8438,1.8125,0.875,1.75,0.875,1.8125,0.875,1.8125,0.875,1.75,0.9063,1.75,0.875,1.8125,0.9063,1.75,0.9063,1.8125,0.9063,1.8125,0.9063,1.75,0.9375,1.75,0.9063,1.8125,0.9375,1.75,0.9375,1.8125,0.9375,1.8125,0.9375,1.75,0.9688,1.75,0.9375,1.8125,0.9688,1.75,0.9688,1.8125,0.9688,1.8125,0.9688,1.75,1.0,1.75,0.9688,1.8125,1.0,1.75,1.0,1.8125,0.0,1.75,0.0,1.6875,0.0312,1.6875,0.0,1.75,0.0312,1.6875,0.0312,1.75,0.0312,1.75,0.0312,1.6875,0.0625,1.6875,0.0312,1.75,0.0625,1.6875,0.0625,1.75,0.0625,1.75,0.0625,1.6875,0.0938,1.6875,0.0625,1.75,0.0938,1.6875,0.0938,1.75,0.0938,1.75,0.0938,1.6875,0.125,1.6875,0.0938,1.75,0.125,1.6875,0.125,1.75,0.125,1.75,0.125,1.6875,0.1562,1.6875,0.125,1.75,0.1562,1.6875,0.1562,1.75,0.1562,1.75,0.1562,1.6875,0.1875,1.6875,0.1562,1.75,0.1875,1.6875,0.1875,1.75,0.1875,1.75,0.1875,1.6875,0.2187,1.6875,0.1875,1.75,0.2187,1.6875,0.2187,1.75,0.2187,1.75,0.2187,1.6875,0.25,1.6875,0.2187,1.75,0.25,1.6875,0.25,1.75,0.25,1.75,0.25,1.6875,0.2812,1.6875,0.25,1.75,0.2812,1.6875,0.2812,1.75,0.2812,1.75,0.2812,1.6875,0.3125,1.6875,0.2812,1.75,0.3125,1.6875,0.3125,1.75,0.3125,1.75,0.3125,1.6875,0.3437,1.6875,0.3125,1.75,0.3437,1.6875,0.3437,1.75,0.3437,1.75,0.3437,1.6875,0.375,1.6875,0.3437,1.75,0.375,1.6875,0.375,1.75,0.375,1.75,0.375,1.6875,0.4062,1.6875,0.375,1.75,0.4062,1.6875,0.4062,1.75,0.4062,1.75,0.4062,1.6875,0.4375,1.6875,0.4062,1.75,0.4375,1.6875,0.4375,1.75,0.4375,1.75,0.4375,1.6875,0.4688,1.6875,0.4375,1.75,0.4688,1.6875,0.4688,1.75,0.4688,1.75,0.4688,1.6875,0.5,1.6875,0.4688,1.75,0.5,1.6875,0.5,1.75,0.5,1.75,0.5,1.6875,0.5313,1.6875,0.5,1.75,0.5313,1.6875,0.5313,1.75,0.5313,1.75,0.5313,1.6875,0.5625,1.6875,0.5313,1.75,0.5625,1.6875,0.5625,1.75,0.5625,1.75,0.5625,1.6875,0.5938,1.6875,0.5625,1.75,0.5938,1.6875,0.5938,1.75,0.5938,1.75,0.5938,1.6875,0.625,1.6875,0.5938,1.75,0.625,1.6875,0.625,1.75,0.625,1.75,0.625,1.6875,0.6563,1.6875,0.625,1.75,0.6563,1.6875,0.6563,1.75,0.6563,1.75,0.6563,1.6875,0.6875,1.6875,0.6563,1.75,0.6875,1.6875,0.6875,1.75,0.6875,1.75,0.6875,1.6875,0.7188,1.6875,0.6875,1.75,0.7188,1.6875,0.7188,1.75,0.7188,1.75,0.7188,1.6875,0.75,1.6875,0.7188,1.75,0.75,1.6875,0.75,1.75,0.75,1.75,0.75,1.6875,0.7813,1.6875,0.75,1.75,0.7813,1.6875,0.7813,1.75,0.7813,1.75,0.7813,1.6875,0.8125,1.6875,0.7813,1.75,0.8125,1.6875,0.8125,1.75,0.8125,1.75,0.8125,1.6875,0.8438,1.6875,0.8125,1.75,0.8438,1.6875,0.8438,1.75,0.8438,1.75,0.8438,1.6875,0.875,1.6875,0.8438,1.75,0.875,1.6875,0.875,1.75,0.875,1.75,0.875,1.6875,0.9063,1.6875,0.875,1.75,0.9063,1.6875,0.9063,1.75,0.9063,1.75,0.9063,1.6875,0.9375,1.6875,0.9063,1.75,0.9375,1.6875,0.9375,1.75,0.9375,1.75,0.9375,1.6875,0.9688,1.6875,0.9375,1.75,0.9688,1.6875,0.9688,1.75,0.9688,1.75,0.9688,1.6875,1.0,1.6875,0.9688,1.75,1.0,1.6875,1.0,1.75,0.0,1.6875,0.0,1.625,0.0312,1.625,0.0,1.6875,0.0312,1.625,0.0312,1.6875,0.0312,1.6875,0.0312,1.625,0.0625,1.625,0.0312,1.6875,0.0625,1.625,0.0625,1.6875,0.0625,1.6875,0.0625,1.625,0.0938,1.625,0.0625,1.6875,0.0938,1.625,0.0938,1.6875,0.0938,1.6875,0.0938,1.625,0.125,1.625,0.0938,1.6875,0.125,1.625,0.125,1.6875,0.125,1.6875,0.125,1.625,0.1562,1.625,0.125,1.6875,0.1562,1.625,0.1562,1.6875,0.1562,1.6875,0.1562,1.625,0.1875,1.625,0.1562,1.6875,0.1875,1.625,0.1875,1.6875,0.1875,1.6875,0.1875,1.625,0.2187,1.625,0.1875,1.6875,0.2187,1.625,0.2187,1.6875,0.2187,1.6875,0.2187,1.625,0.25,1.625,0.2187,1.6875,0.25,1.625,0.25,1.6875,0.25,1.6875,0.25,1.625,0.2812,1.625,0.25,1.6875,0.2812,1.625,0.2812,1.6875,0.2812,1.6875,0.2812,1.625,0.3125,1.625,0.2812,1.6875,0.3125,1.625,0.3125,1.6875,0.3125,1.6875,0.3125,1.625,0.3437,1.625,0.3125,1.6875,0.3437,1.625,0.3437,1.6875,0.3437,1.6875,0.3437,1.625,0.375,1.625,0.3437,1.6875,0.375,1.625,0.375,1.6875,0.375,1.6875,0.375,1.625,0.4062,1.625,0.375,1.6875,0.4062,1.625,0.4062,1.6875,0.4062,1.6875,0.4062,1.625,0.4375,1.625,0.4062,1.6875,0.4375,1.625,0.4375,1.6875,0.4375,1.6875,0.4375,1.625,0.4688,1.625,0.4375,1.6875,0.4688,1.625,0.4688,1.6875,0.4688,1.6875,0.4688,1.625,0.5,1.625,0.4688,1.6875,0.5,1.625,0.5,1.6875,0.5,1.6875,0.5,1.625,0.5313,1.625,0.5,1.6875,0.5313,1.625,0.5313,1.6875,0.5313,1.6875,0.5313,1.625,0.5625,1.625,0.5313,1.6875,0.5625,1.625,0.5625,1.6875,0.5625,1.6875,0.5625,1.625,0.5938,1.625,0.5625,1.6875,0.5938,1.625,0.5938,1.6875,0.5938,1.6875,0.5938,1.625,0.625,1.625,0.5938,1.6875,0.625,1.625,0.625,1.6875,0.625,1.6875,0.625,1.625,0.6563,1.625,0.625,1.6875,0.6563,1.625,0.6563,1.6875,0.6563,1.6875,0.6563,1.625,0.6875,1.625,0.6563,1.6875,0.6875,1.625,0.6875,1.6875,0.6875,1.6875,0.6875,1.625,0.7188,1.625,0.6875,1.6875,0.7188,1.625,0.7188,1.6875,0.7188,1.6875,0.7188,1.625,0.75,1.625,0.7188,1.6875,0.75,1.625,0.75,1.6875,0.75,1.6875,0.75,1.625,0.7813,1.625,0.75,1.6875,0.7813,1.625,0.7813,1.6875,0.7813,1.6875,0.7813,1.625,0.8125,1.625,0.7813,1.6875,0.8125,1.625,0.8125,1.6875,0.8125,1.6875,0.8125,1.625,0.8438,1.625,0.8125,1.6875,0.8438,1.625,0.8438,1.6875,0.8438,1.6875,0.8438,1.625,0.875,1.625,0.8438,1.6875,0.875,1.625,0.875,1.6875,0.875,1.6875,0.875,1.625,0.9063,1.625,0.875,1.6875,0.9063,1.625,0.9063,1.6875,0.9063,1.6875,0.9063,1.625,0.9375,1.625,0.9063,1.6875,0.9375,1.625,0.9375,1.6875,0.9375,1.6875,0.9375,1.625,0.9688,1.625,0.9375,1.6875,0.9688,1.625,0.9688,1.6875,0.9688,1.6875,0.9688,1.625,1.0,1.625,0.9688,1.6875,1.0,1.625,1.0,1.6875,0.0,1.625,0.0,1.5625,0.0312,1.5625,0.0,1.625,0.0312,1.5625,0.0312,1.625,0.0312,1.625,0.0312,1.5625,0.0625,1.5625,0.0312,1.625,0.0625,1.5625,0.0625,1.625,0.0625,1.625,0.0625,1.5625,0.0938,1.5625,0.0625,1.625,0.0938,1.5625,0.0938,1.625,0.0938,1.625,0.0938,1.5625,0.125,1.5625,0.0938,1.625,0.125,1.5625,0.125,1.625,0.125,1.625,0.125,1.5625,0.1562,1.5625,0.125,1.625,0.1562,1.5625,0.1562,1.625,0.1562,1.625,0.1562,1.5625,0.1875,1.5625,0.1562,1.625,0.1875,1.5625,0.1875,1.625,0.1875,1.625,0.1875,1.5625,0.2187,1.5625,0.1875,1.625,0.2187,1.5625,0.2187,1.625,0.2187,1.625,0.2187,1.5625,0.25,1.5625,0.2187,1.625,0.25,1.5625,0.25,1.625,0.25,1.625,0.25,1.5625,0.2812,1.5625,0.25,1.625,0.2812,1.5625,0.2812,1.625,0.2812,1.625,0.2812,1.5625,0.3125,1.5625,0.2812,1.625,0.3125,1.5625,0.3125,1.625,0.3125,1.625,0.3125,1.5625,0.3437,1.5625,0.3125,1.625,0.3437,1.5625,0.3437,1.625,0.3437,1.625,0.3437,1.5625,0.375,1.5625,0.3437,1.625,0.375,1.5625,0.375,1.625,0.375,1.625,0.375,1.5625,0.4062,1.5625,0.375,1.625,0.4062,1.5625,0.4062,1.625,0.4062,1.625,0.4062,1.5625,0.4375,1.5625,0.4062,1.625,0.4375,1.5625,0.4375,1.625,0.4375,1.625,0.4375,1.5625,0.4688,1.5625,0.4375,1.625,0.4688,1.5625,0.4688,1.625,0.4688,1.625,0.4688,1.5625,0.5,1.5625,0.4688,1.625,0.5,1.5625,0.5,1.625,0.5,1.625,0.5,1.5625,0.5313,1.5625,0.5,1.625,0.5313,1.5625,0.5313,1.625,0.5313,1.625,0.5313,1.5625,0.5625,1.5625,0.5313,1.625,0.5625,1.5625,0.5625,1.625,0.5625,1.625,0.5625,1.5625,0.5938,1.5625,0.5625,1.625,0.5938,1.5625,0.5938,1.625,0.5938,1.625,0.5938,1.5625,0.625,1.5625,0.5938,1.625,0.625,1.5625,0.625,1.625,0.625,1.625,0.625,1.5625,0.6563,1.5625,0.625,1.625,0.6563,1.5625,0.6563,1.625,0.6563,1.625,0.6563,1.5625,0.6875,1.5625,0.6563,1.625,0.6875,1.5625,0.6875,1.625,0.6875,1.625,0.6875,1.5625,0.7188,1.5625,0.6875,1.625,0.7188,1.5625,0.7188,1.625,0.7188,1.625,0.7188,1.5625,0.75,1.5625,0.7188,1.625,0.75,1.5625,0.75,1.625,0.75,1.625,0.75,1.5625,0.7813,1.5625,0.75,1.625,0.7813,1.5625,0.7813,1.625,0.7813,1.625,0.7813,1.5625,0.8125,1.5625,0.7813,1.625,0.8125,1.5625,0.8125,1.625,0.8125,1.625,0.8125,1.5625,0.8438,1.5625,0.8125,1.625,0.8438,1.5625,0.8438,1.625,0.8438,1.625,0.8438,1.5625,0.875,1.5625,0.8438,1.625,0.875,1.5625,0.875,1.625,0.875,1.625,0.875,1.5625,0.9063,1.5625,0.875,1.625,0.9063,1.5625,0.9063,1.625,0.9063,1.625,0.9063,1.5625,0.9375,1.5625,0.9063,1.625,0.9375,1.5625,0.9375,1.625,0.9375,1.625,0.9375,1.5625,0.9688,1.5625,0.9375,1.625,0.9688,1.5625,0.9688,1.625,0.9688,1.625,0.9688,1.5625,1.0,1.5625,0.9688,1.625,1.0,1.5625,1.0,1.625,0.0,1.5625,0.0,1.5,0.0312,1.5,0.0,1.5625,0.0312,1.5,0.0312,1.5625,0.0312,1.5625,0.0312,1.5,0.0625,1.5,0.0312,1.5625,0.0625,1.5,0.0625,1.5625,0.0625,1.5625,0.0625,1.5,0.0938,1.5,0.0625,1.5625,0.0938,1.5,0.0938,1.5625,0.0938,1.5625,0.0938,1.5,0.125,1.5,0.0938,1.5625,0.125,1.5,0.125,1.5625,0.125,1.5625,0.125,1.5,0.1562,1.5,0.125,1.5625,0.1562,1.5,0.1562,1.5625,0.1562,1.5625,0.1562,1.5,0.1875,1.5,0.1562,1.5625,0.1875,1.5,0.1875,1.5625,0.1875,1.5625,0.1875,1.5,0.2187,1.5,0.1875,1.5625,0.2187,1.5,0.2187,1.5625,0.2187,1.5625,0.2187,1.5,0.25,1.5,0.2187,1.5625,0.25,1.5,0.25,1.5625,0.25,1.5625,0.25,1.5,0.2812,1.5,0.25,1.5625,0.2812,1.5,0.2812,1.5625,0.2812,1.5625,0.2812,1.5,0.3125,1.5,0.2812,1.5625,0.3125,1.5,0.3125,1.5625,0.3125,1.5625,0.3125,1.5,0.3437,1.5,0.3125,1.5625,0.3437,1.5,0.3437,1.5625,0.3437,1.5625,0.3437,1.5,0.375,1.5,0.3437,1.5625,0.375,1.5,0.375,1.5625,0.375,1.5625,0.375,1.5,0.4062,1.5,0.375,1.5625,0.4062,1.5,0.4062,1.5625,0.4062,1.5625,0.4062,1.5,0.4375,1.5,0.4062,1.5625,0.4375,1.5,0.4375,1.5625,0.4375,1.5625,0.4375,1.5,0.4688,1.5,0.4375,1.5625,0.4688,1.5,0.4688,1.5625,0.4688,1.5625,0.4688,1.5,0.5,1.5,0.4688,1.5625,0.5,1.5,0.5,1.5625,0.5,1.5625,0.5,1.5,0.5313,1.5,0.5,1.5625,0.5313,1.5,0.5313,1.5625,0.5313,1.5625,0.5313,1.5,0.5625,1.5,0.5313,1.5625,0.5625,1.5,0.5625,1.5625,0.5625,1.5625,0.5625,1.5,0.5938,1.5,0.5625,1.5625,0.5938,1.5,0.5938,1.5625,0.5938,1.5625,0.5938,1.5,0.625,1.5,0.5938,1.5625,0.625,1.5,0.625,1.5625,0.625,1.5625,0.625,1.5,0.6563,1.5,0.625,1.5625,0.6563,1.5,0.6563,1.5625,0.6563,1.5625,0.6563,1.5,0.6875,1.5,0.6563,1.5625,0.6875,1.5,0.6875,1.5625,0.6875,1.5625,0.6875,1.5,0.7188,1.5,0.6875,1.5625,0.7188,1.5,0.7188,1.5625,0.7188,1.5625,0.7188,1.5,0.75,1.5,0.7188,1.5625,0.75,1.5,0.75,1.5625,0.75,1.5625,0.75,1.5,0.7813,1.5,0.75,1.5625,0.7813,1.5,0.7813,1.5625,0.7813,1.5625,0.7813,1.5,0.8125,1.5,0.7813,1.5625,0.8125,1.5,0.8125,1.5625,0.8125,1.5625,0.8125,1.5,0.8438,1.5,0.8125,1.5625,0.8438,1.5,0.8438,1.5625,0.8438,1.5625,0.8438,1.5,0.875,1.5,0.8438,1.5625,0.875,1.5,0.875,1.5625,0.875,1.5625,0.875,1.5,0.9063,1.5,0.875,1.5625,0.9063,1.5,0.9063,1.5625,0.9063,1.5625,0.9063,1.5,0.9375,1.5,0.9063,1.5625,0.9375,1.5,0.9375,1.5625,0.9375,1.5625,0.9375,1.5,0.9688,1.5,0.9375,1.5625,0.9688,1.5,0.9688,1.5625,0.9688,1.5625,0.9688,1.5,1.0,1.5,0.9688,1.5625,1.0,1.5,1.0,1.5625,0.0,1.5,0.0,1.4375,0.0312,1.4375,0.0,1.5,0.0312,1.4375,0.0312,1.5,0.0312,1.5,0.0312,1.4375,0.0625,1.4375,0.0312,1.5,0.0625,1.4375,0.0625,1.5,0.0625,1.5,0.0625,1.4375,0.0938,1.4375,0.0625,1.5,0.0938,1.4375,0.0938,1.5,0.0938,1.5,0.0938,1.4375,0.125,1.4375,0.0938,1.5,0.125,1.4375,0.125,1.5,0.125,1.5,0.125,1.4375,0.1562,1.4375,0.125,1.5,0.1562,1.4375,0.1562,1.5,0.1562,1.5,0.1562,1.4375,0.1875,1.4375,0.1562,1.5,0.1875,1.4375,0.1875,1.5,0.1875,1.5,0.1875,1.4375,0.2187,1.4375,0.1875,1.5,0.2187,1.4375,0.2187,1.5,0.2187,1.5,0.2187,1.4375,0.25,1.4375,0.2187,1.5,0.25,1.4375,0.25,1.5,0.25,1.5,0.25,1.4375,0.2812,1.4375,0.25,1.5,0.2812,1.4375,0.2812,1.5,0.2812,1.5,0.2812,1.4375,0.3125,1.4375,0.2812,1.5,0.3125,1.4375,0.3125,1.5,0.3125,1.5,0.3125,1.4375,0.3437,1.4375,0.3125,1.5,0.3437,1.4375,0.3437,1.5,0.3437,1.5,0.3437,1.4375,0.375,1.4375,0.3437,1.5,0.375,1.4375,0.375,1.5,0.375,1.5,0.375,1.4375,0.4062,1.4375,0.375,1.5,0.4062,1.4375,0.4062,1.5,0.4062,1.5,0.4062,1.4375,0.4375,1.4375,0.4062,1.5,0.4375,1.4375,0.4375,1.5,0.4375,1.5,0.4375,1.4375,0.4688,1.4375,0.4375,1.5,0.4688,1.4375,0.4688,1.5,0.4688,1.5,0.4688,1.4375,0.5,1.4375,0.4688,1.5,0.5,1.4375,0.5,1.5,0.5,1.5,0.5,1.4375,0.5313,1.4375,0.5,1.5,0.5313,1.4375,0.5313,1.5,0.5313,1.5,0.5313,1.4375,0.5625,1.4375,0.5313,1.5,0.5625,1.4375,0.5625,1.5,0.5625,1.5,0.5625,1.4375,0.5938,1.4375,0.5625,1.5,0.5938,1.4375,0.5938,1.5,0.5938,1.5,0.5938,1.4375,0.625,1.4375,0.5938,1.5,0.625,1.4375,0.625,1.5,0.625,1.5,0.625,1.4375,0.6563,1.4375,0.625,1.5,0.6563,1.4375,0.6563,1.5,0.6563,1.5,0.6563,1.4375,0.6875,1.4375,0.6563,1.5,0.6875,1.4375,0.6875,1.5,0.6875,1.5,0.6875,1.4375,0.7188,1.4375,0.6875,1.5,0.7188,1.4375,0.7188,1.5,0.7188,1.5,0.7188,1.4375,0.75,1.4375,0.7188,1.5,0.75,1.4375,0.75,1.5,0.75,1.5,0.75,1.4375,0.7813,1.4375,0.75,1.5,0.7813,1.4375,0.7813,1.5,0.7813,1.5,0.7813,1.4375,0.8125,1.4375,0.7813,1.5,0.8125,1.4375,0.8125,1.5,0.8125,1.5,0.8125,1.4375,0.8438,1.4375,0.8125,1.5,0.8438,1.4375,0.8438,1.5,0.8438,1.5,0.8438,1.4375,0.875,1.4375,0.8438,1.5,0.875,1.4375,0.875,1.5,0.875,1.5,0.875,1.4375,0.9063,1.4375,0.875,1.5,0.9063,1.4375,0.9063,1.5,0.9063,1.5,0.9063,1.4375,0.9375,1.4375,0.9063,1.5,0.9375,1.4375,0.9375,1.5,0.9375,1.5,0.9375,1.4375,0.9688,1.4375,0.9375,1.5,0.9688,1.4375,0.9688,1.5,0.9688,1.5,0.9688,1.4375,1.0,1.4375,0.9688,1.5,1.0,1.4375,1.0,1.5,0.0,1.4375,0.0,1.375,0.0312,1.375,0.0,1.4375,0.0312,1.375,0.0312,1.4375,0.0312,1.4375,0.0312,1.375,0.0625,1.375,0.0312,1.4375,0.0625,1.375,0.0625,1.4375,0.0625,1.4375,0.0625,1.375,0.0938,1.375,0.0625,1.4375,0.0938,1.375,0.0938,1.4375,0.0938,1.4375,0.0938,1.375,0.125,1.375,0.0938,1.4375,0.125,1.375,0.125,1.4375,0.125,1.4375,0.125,1.375,0.1562,1.375,0.125,1.4375,0.1562,1.375,0.1562,1.4375,0.1562,1.4375,0.1562,1.375,0.1875,1.375,0.1562,1.4375,0.1875,1.375,0.1875,1.4375,0.1875,1.4375,0.1875,1.375,0.2187,1.375,0.1875,1.4375,0.2187,1.375,0.2187,1.4375,0.2187,1.4375,0.2187,1.375,0.25,1.375,0.2187,1.4375,0.25,1.375,0.25,1.4375,0.25,1.4375,0.25,1.375,0.2812,1.375,0.25,1.4375,0.2812,1.375,0.2812,1.4375,0.2812,1.4375,0.2812,1.375,0.3125,1.375,0.2812,1.4375,0.3125,1.375,0.3125,1.4375,0.3125,1.4375,0.3125,1.375,0.3437,1.375,0.3125,1.4375,0.3437,1.375,0.3437,1.4375,0.3437,1.4375,0.3437,1.375,0.375,1.375,0.3437,1.4375,0.375,1.375,0.375,1.4375,0.375,1.4375,0.375,1.375,0.4062,1.375,0.375,1.4375,0.4062,1.375,0.4062,1.4375,0.4062,1.4375,0.4062,1.375,0.4375,1.375,0.4062,1.4375,0.4375,1.375,0.4375,1.4375,0.4375,1.4375,0.4375,1.375,0.4688,1.375,0.4375,1.4375,0.4688,1.375,0.4688,1.4375,0.4688,1.4375,0.4688,1.375,0.5,1.375,0.4688,1.4375,0.5,1.375,0.5,1.4375,0.5,1.4375,0.5,1.375,0.5313,1.375,0.5,1.4375,0.5313,1.375,0.5313,1.4375,0.5313,1.4375,0.5313,1.375,0.5625,1.375,0.5313,1.4375,0.5625,1.375,0.5625,1.4375,0.5625,1.4375,0.5625,1.375,0.5938,1.375,0.5625,1.4375,0.5938,1.375,0.5938,1.4375,0.5938,1.4375,0.5938,1.375,0.625,1.375,0.5938,1.4375,0.625,1.375,0.625,1.4375,0.625,1.4375,0.625,1.375,0.6563,1.375,0.625,1.4375,0.6563,1.375,0.6563,1.4375,0.6563,1.4375,0.6563,1.375,0.6875,1.375,0.6563,1.4375,0.6875,1.375,0.6875,1.4375,0.6875,1.4375,0.6875,1.375,0.7188,1.375,0.6875,1.4375,0.7188,1.375,0.7188,1.4375,0.7188,1.4375,0.7188,1.375,0.75,1.375,0.7188,1.4375,0.75,1.375,0.75,1.4375,0.75,1.4375,0.75,1.375,0.7813,1.375,0.75,1.4375,0.7813,1.375,0.7813,1.4375,0.7813,1.4375,0.7813,1.375,0.8125,1.375,0.7813,1.4375,0.8125,1.375,0.8125,1.4375,0.8125,1.4375,0.8125,1.375,0.8438,1.375,0.8125,1.4375,0.8438,1.375,0.8438,1.4375,0.8438,1.4375,0.8438,1.375,0.875,1.375,0.8438,1.4375,0.875,1.375,0.875,1.4375,0.875,1.4375,0.875,1.375,0.9063,1.375,0.875,1.4375,0.9063,1.375,0.9063,1.4375,0.9063,1.4375,0.9063,1.375,0.9375,1.375,0.9063,1.4375,0.9375,1.375,0.9375,1.4375,0.9375,1.4375,0.9375,1.375,0.9688,1.375,0.9375,1.4375,0.9688,1.375,0.9688,1.4375,0.9688,1.4375,0.9688,1.375,1.0,1.375,0.9688,1.4375,1.0,1.375,1.0,1.4375,0.0,1.375,0.0,1.3125,0.0312,1.3125,0.0,1.375,0.0312,1.3125,0.0312,1.375,0.0312,1.375,0.0312,1.3125,0.0625,1.3125,0.0312,1.375,0.0625,1.3125,0.0625,1.375,0.0625,1.375,0.0625,1.3125,0.0938,1.3125,0.0625,1.375,0.0938,1.3125,0.0938,1.375,0.0938,1.375,0.0938,1.3125,0.125,1.3125,0.0938,1.375,0.125,1.3125,0.125,1.375,0.125,1.375,0.125,1.3125,0.1562,1.3125,0.125,1.375,0.1562,1.3125,0.1562,1.375,0.1562,1.375,0.1562,1.3125,0.1875,1.3125,0.1562,1.375,0.1875,1.3125,0.1875,1.375,0.1875,1.375,0.1875,1.3125,0.2187,1.3125,0.1875,1.375,0.2187,1.3125,0.2187,1.375,0.2187,1.375,0.2187,1.3125,0.25,1.3125,0.2187,1.375,0.25,1.3125,0.25,1.375,0.25,1.375,0.25,1.3125,0.2812,1.3125,0.25,1.375,0.2812,1.3125,0.2812,1.375,0.2812,1.375,0.2812,1.3125,0.3125,1.3125,0.2812,1.375,0.3125,1.3125,0.3125,1.375,0.3125,1.375,0.3125,1.3125,0.3437,1.3125,0.3125,1.375,0.3437,1.3125,0.3437,1.375,0.3437,1.375,0.3437,1.3125,0.375,1.3125,0.3437,1.375,0.375,1.3125,0.375,1.375,0.375,1.375,0.375,1.3125,0.4062,1.3125,0.375,1.375,0.4062,1.3125,0.4062,1.375,0.4062,1.375,0.4062,1.3125,0.4375,1.3125,0.4062,1.375,0.4375,1.3125,0.4375,1.375,0.4375,1.375,0.4375,1.3125,0.4688,1.3125,0.4375,1.375,0.4688,1.3125,0.4688,1.375,0.4688,1.375,0.4688,1.3125,0.5,1.3125,0.4688,1.375,0.5,1.3125,0.5,1.375,0.5,1.375,0.5,1.3125,0.5313,1.3125,0.5,1.375,0.5313,1.3125,0.5313,1.375,0.5313,1.375,0.5313,1.3125,0.5625,1.3125,0.5313,1.375,0.5625,1.3125,0.5625,1.375,0.5625,1.375,0.5625,1.3125,0.5938,1.3125,0.5625,1.375,0.5938,1.3125,0.5938,1.375,0.5938,1.375,0.5938,1.3125,0.625,1.3125,0.5938,1.375,0.625,1.3125,0.625,1.375,0.625,1.375,0.625,1.3125,0.6563,1.3125,0.625,1.375,0.6563,1.3125,0.6563,1.375,0.6563,1.375,0.6563,1.3125,0.6875,1.3125,0.6563,1.375,0.6875,1.3125,0.6875,1.375,0.6875,1.375,0.6875,1.3125,0.7188,1.3125,0.6875,1.375,0.7188,1.3125,0.7188,1.375,0.7188,1.375,0.7188,1.3125,0.75,1.3125,0.7188,1.375,0.75,1.3125,0.75,1.375,0.75,1.375,0.75,1.3125,0.7813,1.3125,0.75,1.375,0.7813,1.3125,0.7813,1.375,0.7813,1.375,0.7813,1.3125,0.8125,1.3125,0.7813,1.375,0.8125,1.3125,0.8125,1.375,0.8125,1.375,0.8125,1.3125,0.8438,1.3125,0.8125,1.375,0.8438,1.3125,0.8438,1.375,0.8438,1.375,0.8438,1.3125,0.875,1.3125,0.8438,1.375,0.875,1.3125,0.875,1.375,0.875,1.375,0.875,1.3125,0.9063,1.3125,0.875,1.375,0.9063,1.3125,0.9063,1.375,0.9063,1.375,0.9063,1.3125,0.9375,1.3125,0.9063,1.375,0.9375,1.3125,0.9375,1.375,0.9375,1.375,0.9375,1.3125,0.9688,1.3125,0.9375,1.375,0.9688,1.3125,0.9688,1.375,0.9688,1.375,0.9688,1.3125,1.0,1.3125,0.9688,1.375,1.0,1.3125,1.0,1.375,0.0,1.3125,0.0,1.25,0.0312,1.25,0.0,1.3125,0.0312,1.25,0.0312,1.3125,0.0312,1.3125,0.0312,1.25,0.0625,1.25,0.0312,1.3125,0.0625,1.25,0.0625,1.3125,0.0625,1.3125,0.0625,1.25,0.0938,1.25,0.0625,1.3125,0.0938,1.25,0.0938,1.3125,0.0938,1.3125,0.0938,1.25,0.125,1.25,0.0938,1.3125,0.125,1.25,0.125,1.3125,0.125,1.3125,0.125,1.25,0.1562,1.25,0.125,1.3125,0.1562,1.25,0.1562,1.3125,0.1562,1.3125,0.1562,1.25,0.1875,1.25,0.1562,1.3125,0.1875,1.25,0.1875,1.3125,0.1875,1.3125,0.1875,1.25,0.2187,1.25,0.1875,1.3125,0.2187,1.25,0.2187,1.3125,0.2187,1.3125,0.2187,1.25,0.25,1.25,0.2187,1.3125,0.25,1.25,0.25,1.3125,0.25,1.3125,0.25,1.25,0.2812,1.25,0.25,1.3125,0.2812,1.25,0.2812,1.3125,0.2812,1.3125,0.2812,1.25,0.3125,1.25,0.2812,1.3125,0.3125,1.25,0.3125,1.3125,0.3125,1.3125,0.3125,1.25,0.3437,1.25,0.3125,1.3125,0.3437,1.25,0.3437,1.3125,0.3437,1.3125,0.3437,1.25,0.375,1.25,0.3437,1.3125,0.375,1.25,0.375,1.3125,0.375,1.3125,0.375,1.25,0.4062,1.25,0.375,1.3125,0.4062,1.25,0.4062,1.3125,0.4062,1.3125,0.4062,1.25,0.4375,1.25,0.4062,1.3125,0.4375,1.25,0.4375,1.3125,0.4375,1.3125,0.4375,1.25,0.4688,1.25,0.4375,1.3125,0.4688,1.25,0.4688,1.3125,0.4688,1.3125,0.4688,1.25,0.5,1.25,0.4688,1.3125,0.5,1.25,0.5,1.3125,0.5,1.3125,0.5,1.25,0.5313,1.25,0.5,1.3125,0.5313,1.25,0.5313,1.3125,0.5313,1.3125,0.5313,1.25,0.5625,1.25,0.5313,1.3125,0.5625,1.25,0.5625,1.3125,0.5625,1.3125,0.5625,1.25,0.5938,1.25,0.5625,1.3125,0.5938,1.25,0.5938,1.3125,0.5938,1.3125,0.5938,1.25,0.625,1.25,0.5938,1.3125,0.625,1.25,0.625,1.3125,0.625,1.3125,0.625,1.25,0.6563,1.25,0.625,1.3125,0.6563,1.25,0.6563,1.3125,0.6563,1.3125,0.6563,1.25,0.6875,1.25,0.6563,1.3125,0.6875,1.25,0.6875,1.3125,0.6875,1.3125,0.6875,1.25,0.7188,1.25,0.6875,1.3125,0.7188,1.25,0.7188,1.3125,0.7188,1.3125,0.7188,1.25,0.75,1.25,0.7188,1.3125,0.75,1.25,0.75,1.3125,0.75,1.3125,0.75,1.25,0.7813,1.25,0.75,1.3125,0.7813,1.25,0.7813,1.3125,0.7813,1.3125,0.7813,1.25,0.8125,1.25,0.7813,1.3125,0.8125,1.25,0.8125,1.3125,0.8125,1.3125,0.8125,1.25,0.8438,1.25,0.8125,1.3125,0.8438,1.25,0.8438,1.3125,0.8438,1.3125,0.8438,1.25,0.875,1.25,0.8438,1.3125,0.875,1.25,0.875,1.3125,0.875,1.3125,0.875,1.25,0.9063,1.25,0.875,1.3125,0.9063,1.25,0.9063,1.3125,0.9063,1.3125,0.9063,1.25,0.9375,1.25,0.9063,1.3125,0.9375,1.25,0.9375,1.3125,0.9375,1.3125,0.9375,1.25,0.9688,1.25,0.9375,1.3125,0.9688,1.25,0.9688,1.3125,0.9688,1.3125,0.9688,1.25,1.0,1.25,0.9688,1.3125,1.0,1.25,1.0,1.3125,0.0,1.25,0.0,1.1875,0.0312,1.1875,0.0,1.25,0.0312,1.1875,0.0312,1.25,0.0312,1.25,0.0312,1.1875,0.0625,1.1875,0.0312,1.25,0.0625,1.1875,0.0625,1.25,0.0625,1.25,0.0625,1.1875,0.0938,1.1875,0.0625,1.25,0.0938,1.1875,0.0938,1.25,0.0938,1.25,0.0938,1.1875,0.125,1.1875,0.0938,1.25,0.125,1.1875,0.125,1.25,0.125,1.25,0.125,1.1875,0.1562,1.1875,0.125,1.25,0.1562,1.1875,0.1562,1.25,0.1562,1.25,0.1562,1.1875,0.1875,1.1875,0.1562,1.25,0.1875,1.1875,0.1875,1.25,0.1875,1.25,0.1875,1.1875,0.2187,1.1875,0.1875,1.25,0.2187,1.1875,0.2187,1.25,0.2187,1.25,0.2187,1.1875,0.25,1.1875,0.2187,1.25,0.25,1.1875,0.25,1.25,0.25,1.25,0.25,1.1875,0.2812,1.1875,0.25,1.25,0.2812,1.1875,0.2812,1.25,0.2812,1.25,0.2812,1.1875,0.3125,1.1875,0.2812,1.25,0.3125,1.1875,0.3125,1.25,0.3125,1.25,0.3125,1.1875,0.3437,1.1875,0.3125,1.25,0.3437,1.1875,0.3437,1.25,0.3437,1.25,0.3437,1.1875,0.375,1.1875,0.3437,1.25,0.375,1.1875,0.375,1.25,0.375,1.25,0.375,1.1875,0.4062,1.1875,0.375,1.25,0.4062,1.1875,0.4062,1.25,0.4062,1.25,0.4062,1.1875,0.4375,1.1875,0.4062,1.25,0.4375,1.1875,0.4375,1.25,0.4375,1.25,0.4375,1.1875,0.4688,1.1875,0.4375,1.25,0.4688,1.1875,0.4688,1.25,0.4688,1.25,0.4688,1.1875,0.5,1.1875,0.4688,1.25,0.5,1.1875,0.5,1.25,0.5,1.25,0.5,1.1875,0.5313,1.1875,0.5,1.25,0.5313,1.1875,0.5313,1.25,0.5313,1.25,0.5313,1.1875,0.5625,1.1875,0.5313,1.25,0.5625,1.1875,0.5625,1.25,0.5625,1.25,0.5625,1.1875,0.5938,1.1875,0.5625,1.25,0.5938,1.1875,0.5938,1.25,0.5938,1.25,0.5938,1.1875,0.625,1.1875,0.5938,1.25,0.625,1.1875,0.625,1.25,0.625,1.25,0.625,1.1875,0.6563,1.1875,0.625,1.25,0.6563,1.1875,0.6563,1.25,0.6563,1.25,0.6563,1.1875,0.6875,1.1875,0.6563,1.25,0.6875,1.1875,0.6875,1.25,0.6875,1.25,0.6875,1.1875,0.7188,1.1875,0.6875,1.25,0.7188,1.1875,0.7188,1.25,0.7188,1.25,0.7188,1.1875,0.75,1.1875,0.7188,1.25,0.75,1.1875,0.75,1.25,0.75,1.25,0.75,1.1875,0.7813,1.1875,0.75,1.25,0.7813,1.1875,0.7813,1.25,0.7813,1.25,0.7813,1.1875,0.8125,1.1875,0.7813,1.25,0.8125,1.1875,0.8125,1.25,0.8125,1.25,0.8125,1.1875,0.8438,1.1875,0.8125,1.25,0.8438,1.1875,0.8438,1.25,0.8438,1.25,0.8438,1.1875,0.875,1.1875,0.8438,1.25,0.875,1.1875,0.875,1.25,0.875,1.25,0.875,1.1875,0.9063,1.1875,0.875,1.25,0.9063,1.1875,0.9063,1.25,0.9063,1.25,0.9063,1.1875,0.9375,1.1875,0.9063,1.25,0.9375,1.1875,0.9375,1.25,0.9375,1.25,0.9375,1.1875,0.9688,1.1875,0.9375,1.25,0.9688,1.1875,0.9688,1.25,0.9688,1.25,0.9688,1.1875,1.0,1.1875,0.9688,1.25,1.0,1.1875,1.0,1.25,0.0,1.1875,0.0,1.125,0.0312,1.125,0.0,1.1875,0.0312,1.125,0.0312,1.1875,0.0312,1.1875,0.0312,1.125,0.0625,1.125,0.0312,1.1875,0.0625,1.125,0.0625,1.1875,0.0625,1.1875,0.0625,1.125,0.0938,1.125,0.0625,1.1875,0.0938,1.125,0.0938,1.1875,0.0938,1.1875,0.0938,1.125,0.125,1.125,0.0938,1.1875,0.125,1.125,0.125,1.1875,0.125,1.1875,0.125,1.125,0.1562,1.125,0.125,1.1875,0.1562,1.125,0.1562,1.1875,0.1562,1.1875,0.1562,1.125,0.1875,1.125,0.1562,1.1875,0.1875,1.125,0.1875,1.1875,0.1875,1.1875,0.1875,1.125,0.2187,1.125,0.1875,1.1875,0.2187,1.125,0.2187,1.1875,0.2187,1.1875,0.2187,1.125,0.25,1.125,0.2187,1.1875,0.25,1.125,0.25,1.1875,0.25,1.1875,0.25,1.125,0.2812,1.125,0.25,1.1875,0.2812,1.125,0.2812,1.1875,0.2812,1.1875,0.2812,1.125,0.3125,1.125,0.2812,1.1875,0.3125,1.125,0.3125,1.1875,0.3125,1.1875,0.3125,1.125,0.3437,1.125,0.3125,1.1875,0.3437,1.125,0.3437,1.1875,0.3437,1.1875,0.3437,1.125,0.375,1.125,0.3437,1.1875,0.375,1.125,0.375,1.1875,0.375,1.1875,0.375,1.125,0.4062,1.125,0.375,1.1875,0.4062,1.125,0.4062,1.1875,0.4062,1.1875,0.4062,1.125,0.4375,1.125,0.4062,1.1875,0.4375,1.125,0.4375,1.1875,0.4375,1.1875,0.4375,1.125,0.4688,1.125,0.4375,1.1875,0.4688,1.125,0.4688,1.1875,0.4688,1.1875,0.4688,1.125,0.5,1.125,0.4688,1.1875,0.5,1.125,0.5,1.1875,0.5,1.1875,0.5,1.125,0.5313,1.125,0.5,1.1875,0.5313,1.125,0.5313,1.1875,0.5313,1.1875,0.5313,1.125,0.5625,1.125,0.5313,1.1875,0.5625,1.125,0.5625,1.1875,0.5625,1.1875,0.5625,1.125,0.5938,1.125,0.5625,1.1875,0.5938,1.125,0.5938,1.1875,0.5938,1.1875,0.5938,1.125,0.625,1.125,0.5938,1.1875,0.625,1.125,0.625,1.1875,0.625,1.1875,0.625,1.125,0.6563,1.125,0.625,1.1875,0.6563,1.125,0.6563,1.1875,0.6563,1.1875,0.6563,1.125,0.6875,1.125,0.6563,1.1875,0.6875,1.125,0.6875,1.1875,0.6875,1.1875,0.6875,1.125,0.7188,1.125,0.6875,1.1875,0.7188,1.125,0.7188,1.1875,0.7188,1.1875,0.7188,1.125,0.75,1.125,0.7188,1.1875,0.75,1.125,0.75,1.1875,0.75,1.1875,0.75,1.125,0.7813,1.125,0.75,1.1875,0.7813,1.125,0.7813,1.1875,0.7813,1.1875,0.7813,1.125,0.8125,1.125,0.7813,1.1875,0.8125,1.125,0.8125,1.1875,0.8125,1.1875,0.8125,1.125,0.8438,1.125,0.8125,1.1875,0.8438,1.125,0.8438,1.1875,0.8438,1.1875,0.8438,1.125,0.875,1.125,0.8438,1.1875,0.875,1.125,0.875,1.1875,0.875,1.1875,0.875,1.125,0.9063,1.125,0.875,1.1875,0.9063,1.125,0.9063,1.1875,0.9063,1.1875,0.9063,1.125,0.9375,1.125,0.9063,1.1875,0.9375,1.125,0.9375,1.1875,0.9375,1.1875,0.9375,1.125,0.9688,1.125,0.9375,1.1875,0.9688,1.125,0.9688,1.1875,0.9688,1.1875,0.9688,1.125,1.0,1.125,0.9688,1.1875,1.0,1.125,1.0,1.1875,0.0,1.125,0.0,1.0625,0.0312,1.0625,0.0,1.125,0.0312,1.0625,0.0312,1.125,0.0312,1.125,0.0312,1.0625,0.0625,1.0625,0.0312,1.125,0.0625,1.0625,0.0625,1.125,0.0625,1.125,0.0625,1.0625,0.0938,1.0625,0.0625,1.125,0.0938,1.0625,0.0938,1.125,0.0938,1.125,0.0938,1.0625,0.125,1.0625,0.0938,1.125,0.125,1.0625,0.125,1.125,0.125,1.125,0.125,1.0625,0.1562,1.0625,0.125,1.125,0.1562,1.0625,0.1562,1.125,0.1562,1.125,0.1562,1.0625,0.1875,1.0625,0.1562,1.125,0.1875,1.0625,0.1875,1.125,0.1875,1.125,0.1875,1.0625,0.2187,1.0625,0.1875,1.125,0.2187,1.0625,0.2187,1.125,0.2187,1.125,0.2187,1.0625,0.25,1.0625,0.2187,1.125,0.25,1.0625,0.25,1.125,0.25,1.125,0.25,1.0625,0.2812,1.0625,0.25,1.125,0.2812,1.0625,0.2812,1.125,0.2812,1.125,0.2812,1.0625,0.3125,1.0625,0.2812,1.125,0.3125,1.0625,0.3125,1.125,0.3125,1.125,0.3125,1.0625,0.3437,1.0625,0.3125,1.125,0.3437,1.0625,0.3437,1.125,0.3437,1.125,0.3437,1.0625,0.375,1.0625,0.3437,1.125,0.375,1.0625,0.375,1.125,0.375,1.125,0.375,1.0625,0.4062,1.0625,0.375,1.125,0.4062,1.0625,0.4062,1.125,0.4062,1.125,0.4062,1.0625,0.4375,1.0625,0.4062,1.125,0.4375,1.0625,0.4375,1.125,0.4375,1.125,0.4375,1.0625,0.4688,1.0625,0.4375,1.125,0.4688,1.0625,0.4688,1.125,0.4688,1.125,0.4688,1.0625,0.5,1.0625,0.4688,1.125,0.5,1.0625,0.5,1.125,0.5,1.125,0.5,1.0625,0.5313,1.0625,0.5,1.125,0.5313,1.0625,0.5313,1.125,0.5313,1.125,0.5313,1.0625,0.5625,1.0625,0.5313,1.125,0.5625,1.0625,0.5625,1.125,0.5625,1.125,0.5625,1.0625,0.5938,1.0625,0.5625,1.125,0.5938,1.0625,0.5938,1.125,0.5938,1.125,0.5938,1.0625,0.625,1.0625,0.5938,1.125,0.625,1.0625,0.625,1.125,0.625,1.125,0.625,1.0625,0.6563,1.0625,0.625,1.125,0.6563,1.0625,0.6563,1.125,0.6563,1.125,0.6563,1.0625,0.6875,1.0625,0.6563,1.125,0.6875,1.0625,0.6875,1.125,0.6875,1.125,0.6875,1.0625,0.7188,1.0625,0.6875,1.125,0.7188,1.0625,0.7188,1.125,0.7188,1.125,0.7188,1.0625,0.75,1.0625,0.7188,1.125,0.75,1.0625,0.75,1.125,0.75,1.125,0.75,1.0625,0.7813,1.0625,0.75,1.125,0.7813,1.0625,0.7813,1.125,0.7813,1.125,0.7813,1.0625,0.8125,1.0625,0.7813,1.125,0.8125,1.0625,0.8125,1.125,0.8125,1.125,0.8125,1.0625,0.8438,1.0625,0.8125,1.125,0.8438,1.0625,0.8438,1.125,0.8438,1.125,0.8438,1.0625,0.875,1.0625,0.8438,1.125,0.875,1.0625,0.875,1.125,0.875,1.125,0.875,1.0625,0.9063,1.0625,0.875,1.125,0.9063,1.0625,0.9063,1.125,0.9063,1.125,0.9063,1.0625,0.9375,1.0625,0.9063,1.125,0.9375,1.0625,0.9375,1.125,0.9375,1.125,0.9375,1.0625,0.9688,1.0625,0.9375,1.125,0.9688,1.0625,0.9688,1.125,0.9688,1.125,0.9688,1.0625,1.0,1.0625,0.9688,1.125,1.0,1.0625,1.0,1.125,0.0,1.0,0.0312,1.0625,0.0,1.0625,0.0312,1.0,0.0625,1.0625,0.0312,1.0625,0.0625,1.0,0.0938,1.0625,0.0625,1.0625,0.0938,1.0,0.125,1.0625,0.0938,1.0625,0.125,1.0,0.1562,1.0625,0.125,1.0625,0.1562,1.0,0.1875,1.0625,0.1562,1.0625,0.1875,1.0,0.2187,1.0625,0.1875,1.0625,0.2187,1.0,0.25,1.0625,0.2187,1.0625,0.25,1.0,0.2812,1.0625,0.25,1.0625,0.2812,1.0,0.3125,1.0625,0.2812,1.0625,0.3125,1.0,0.3437,1.0625,0.3125,1.0625,0.3437,1.0,0.375,1.0625,0.3437,1.0625,0.375,1.0,0.4062,1.0625,0.375,1.0625,0.4062,1.0,0.4375,1.0625,0.4062,1.0625,0.4375,1.0,0.4688,1.0625,0.4375,1.0625,0.4688,1.0,0.5,1.0625,0.4688,1.0625,0.5,1.0,0.5313,1.0625,0.5,1.0625,0.5313,1.0,0.5625,1.0625,0.5313,1.0625,0.5625,1.0,0.5938,1.0625,0.5625,1.0625,0.5938,1.0,0.625,1.0625,0.5938,1.0625,0.625,1.0,0.6563,1.0625,0.625,1.0625,0.6563,1.0,0.6875,1.0625,0.6563,1.0625,0.6875,1.0,0.7188,1.0625,0.6875,1.0625,0.7188,1.0,0.75,1.0625,0.7188,1.0625,0.75,1.0,0.7813,1.0625,0.75,1.0625,0.7813,1.0,0.8125,1.0625,0.7813,1.0625,0.8125,1.0,0.8438,1.0625,0.8125,1.0625,0.8438,1.0,0.875,1.0625,0.8438,1.0625,0.875,1.0,0.9063,1.0625,0.875,1.0625,0.9063,1.0,0.9375,1.0625,0.9063,1.0625,0.9375,1.0,0.9688,1.0625,0.9375,1.0625,0.9688,1.0,1.0,1.0625,0.9688,1.0625],"uvs2":null,"colors":null,"hasVertexAlpha":false,"matricesIndices":null,"matricesWeights":null,"matricesIndicesExtra":null,"matricesWeightsExtra":null,"indices":[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,1984,1985,1986,1987,1988,1989,1990,1991,1992,1993,1994,1995,1996,1997,1998,1999,2000,2001,2002,2003,2004,2005,2006,2007,2008,2009,2010,2011,2012,2013,2014,2015,2016,2017,2018,2019,2020,2021,2022,2023,2024,2025,2026,2027,2028,2029,2030,2031,2032,2033,2034,2035,2036,2037,2038,2039,2040,2041,2042,2043,2044,2045,2046,2047,2048,2049,2050,2051,2052,2053,2054,2055,2056,2057,2058,2059,2060,2061,2062,2063,2064,2065,2066,2067,2068,2069,2070,2071,2072,2073,2074,2075,2076,2077,2078,2079,2080,2081,2082,2083,2084,2085,2086,2087,2088,2089,2090,2091,2092,2093,2094,2095,2096,2097,2098,2099,2100,2101,2102,2103,2104,2105,2106,2107,2108,2109,2110,2111,2112,2113,2114,2115,2116,2117,2118,2119,2120,2121,2122,2123,2124,2125,2126,2127,2128,2129,2130,2131,2132,2133,2134,2135,2136,2137,2138,2139,2140,2141,2142,2143,2144,2145,2146,2147,2148,2149,2150,2151,2152,2153,2154,2155,2156,2157,2158,2159,2160,2161,2162,2163,2164,2165,2166,2167,2168,2169,2170,2171,2172,2173,2174,2175,2176,2177,2178,2179,2180,2181,2182,2183,2184,2185,2186,2187,2188,2189,2190,2191,2192,2193,2194,2195,2196,2197,2198,2199,2200,2201,2202,2203,2204,2205,2206,2207,2208,2209,2210,2211,2212,2213,2214,2215,2216,2217,2218,2219,2220,2221,2222,2223,2224,2225,2226,2227,2228,2229,2230,2231,2232,2233,2234,2235,2236,2237,2238,2239,2240,2241,2242,2243,2244,2245,2246,2247,2248,2249,2250,2251,2252,2253,2254,2255,2256,2257,2258,2259,2260,2261,2262,2263,2264,2265,2266,2267,2268,2269,2270,2271,2272,2273,2274,2275,2276,2277,2278,2279,2280,2281,2282,2283,2284,2285,2286,2287,2288,2289,2290,2291,2292,2293,2294,2295,2296,2297,2298,2299,2300,2301,2302,2303,2304,2305,2306,2307,2308,2309,2310,2311,2312,2313,2314,2315,2316,2317,2318,2319,2320,2321,2322,2323,2324,2325,2326,2327,2328,2329,2330,2331,2332,2333,2334,2335,2336,2337,2338,2339,2340,2341,2342,2343,2344,2345,2346,2347,2348,2349,2350,2351,2352,2353,2354,2355,2356,2357,2358,2359,2360,2361,2362,2363,2364,2365,2366,2367,2368,2369,2370,2371,2372,2373,2374,2375,2376,2377,2378,2379,2380,2381,2382,2383,2384,2385,2386,2387,2388,2389,2390,2391,2392,2393,2394,2395,2396,2397,2398,2399,2400,2401,2402,2403,2404,2405,2406,2407,2408,2409,2410,2411,2412,2413,2414,2415,2416,2417,2418,2419,2420,2421,2422,2423,2424,2425,2426,2427,2428,2429,2430,2431,2432,2433,2434,2435,2436,2437,2438,2439,2440,2441,2442,2443,2444,2445,2446,2447,2448,2449,2450,2451,2452,2453,2454,2455,2456,2457,2458,2459,2460,2461,2462,2463,2464,2465,2466,2467,2468,2469,2470,2471,2472,2473,2474,2475,2476,2477,2478,2479,2480,2481,2482,2483,2484,2485,2486,2487,2488,2489,2490,2491,2492,2493,2494,2495,2496,2497,2498,2499,2500,2501,2502,2503,2504,2505,2506,2507,2508,2509,2510,2511,2512,2513,2514,2515,2516,2517,2518,2519,2520,2521,2522,2523,2524,2525,2526,2527,2528,2529,2530,2531,2532,2533,2534,2535,2536,2537,2538,2539,2540,2541,2542,2543,2544,2545,2546,2547,2548,2549,2550,2551,2552,2553,2554,2555,2556,2557,2558,2559,2560,2561,2562,2563,2564,2565,2566,2567,2568,2569,2570,2571,2572,2573,2574,2575,2576,2577,2578,2579,2580,2581,2582,2583,2584,2585,2586,2587,2588,2589,2590,2591,2592,2593,2594,2595,2596,2597,2598,2599,2600,2601,2602,2603,2604,2605,2606,2607,2608,2609,2610,2611,2612,2613,2614,2615,2616,2617,2618,2619,2620,2621,2622,2623,2624,2625,2626,2627,2628,2629,2630,2631,2632,2633,2634,2635,2636,2637,2638,2639,2640,2641,2642,2643,2644,2645,2646,2647,2648,2649,2650,2651,2652,2653,2654,2655,2656,2657,2658,2659,2660,2661,2662,2663,2664,2665,2666,2667,2668,2669,2670,2671,2672,2673,2674,2675,2676,2677,2678,2679,2680,2681,2682,2683,2684,2685,2686,2687,2688,2689,2690,2691,2692,2693,2694,2695,2696,2697,2698,2699,2700,2701,2702,2703,2704,2705,2706,2707,2708,2709,2710,2711,2712,2713,2714,2715,2716,2717,2718,2719,2720,2721,2722,2723,2724,2725,2726,2727,2728,2729,2730,2731,2732,2733,2734,2735,2736,2737,2738,2739,2740,2741,2742,2743,2744,2745,2746,2747,2748,2749,2750,2751,2752,2753,2754,2755,2756,2757,2758,2759,2760,2761,2762,2763,2764,2765,2766,2767,2768,2769,2770,2771,2772,2773,2774,2775,2776,2777,2778,2779,2780,2781,2782,2783,2784,2785,2786,2787,2788,2789,2790,2791,2792,2793,2794,2795,2796,2797,2798,2799,2800,2801,2802,2803,2804,2805,2806,2807,2808,2809,2810,2811,2812,2813,2814,2815,2816,2817,2818,2819,2820,2821,2822,2823,2824,2825,2826,2827,2828,2829,2830,2831,2832,2833,2834,2835,2836,2837,2838,2839,2840,2841,2842,2843,2844,2845,2846,2847,2848,2849,2850,2851,2852,2853,2854,2855,2856,2857,2858,2859,2860,2861,2862,2863,2864,2865,2866,2867,2868,2869,2870,2871,2872,2873,2874,2875,2876,2877,2878,2879],"receiveShadows":true,"infiniteDistance":false,"billboardMode":0,"visibility":1.0,"subMeshes":[{"materialIndex":0,"verticesStart":0,"verticesCount":2880,"indexStart":0,"indexCount":2880}],"instances":null,"skeletonId":-1,"numBoneInfluencers":4,"applyFog":true,"lodMeshIds":null,"lodDistances":null,"lodCoverages":null,"rotation":null,"scaling":[1.0,1.0,1.0],"rotationQuaternion":[0.0,0.0,0.0,1.0],"actions":null,"checkCollisions":false,"pickable":false,"showBoundingBox":false,"showSubMeshesBoundingBox":false,"alphaIndex":1000,"physicsImpostor":0,"physicsMass":0.0,"physicsFriction":0.0,"physicsRestitution":0.0,"name":"StandardMesh","id":"113f2dbc-dce1-4faa-be71-35277504433b","parentId":null,"position":[0.0,0.0,0.0],"animations":[],"autoAnimate":true,"autoAnimateFrom":0,"autoAnimateTo":100,"autoAnimateLoop":true,"metadata":null},{"materialId":"e8d366dc-9a25-4d46-80f2-60a95ec88505","isEnabled":true,"isVisible":true,"positions":[0.0,1.0,0.0,0.0,0.9808,0.1951,-0.0381,0.9808,0.1913,0.0,1.0,0.0,-0.0381,0.9808,0.1913,-0.0747,0.9808,0.1802,0.0,1.0,0.0,-0.0747,0.9808,0.1802,-0.1084,0.9808,0.1622,0.0,1.0,0.0,-0.1084,0.9808,0.1622,-0.1379,0.9808,0.1379,0.0,1.0,0.0,-0.1379,0.9808,0.1379,-0.1622,0.9808,0.1084,0.0,1.0,0.0,-0.1622,0.9808,0.1084,-0.1802,0.9808,0.0747,0.0,1.0,0.0,-0.1802,0.9808,0.0747,-0.1913,0.9808,0.0381,0.0,1.0,0.0,-0.1913,0.9808,0.0381,-0.1951,0.9808,0.0,0.0,1.0,0.0,-0.1951,0.9808,0.0,-0.1913,0.9808,-0.0381,0.0,1.0,0.0,-0.1913,0.9808,-0.0381,-0.1802,0.9808,-0.0747,0.0,1.0,0.0,-0.1802,0.9808,-0.0747,-0.1622,0.9808,-0.1084,0.0,1.0,0.0,-0.1622,0.9808,-0.1084,-0.1379,0.9808,-0.1379,0.0,1.0,0.0,-0.1379,0.9808,-0.1379,-0.1084,0.9808,-0.1622,0.0,1.0,0.0,-0.1084,0.9808,-0.1622,-0.0747,0.9808,-0.1802,0.0,1.0,0.0,-0.0747,0.9808,-0.1802,-0.0381,0.9808,-0.1913,0.0,1.0,0.0,-0.0381,0.9808,-0.1913,0.0,0.9808,-0.1951,0.0,1.0,0.0,0.0,0.9808,-0.1951,0.0381,0.9808,-0.1913,0.0,1.0,0.0,0.0381,0.9808,-0.1913,0.0747,0.9808,-0.1802,0.0,1.0,0.0,0.0747,0.9808,-0.1802,0.1084,0.9808,-0.1622,0.0,1.0,0.0,0.1084,0.9808,-0.1622,0.1379,0.9808,-0.1379,0.0,1.0,0.0,0.1379,0.9808,-0.1379,0.1622,0.9808,-0.1084,0.0,1.0,0.0,0.1622,0.9808,-0.1084,0.1802,0.9808,-0.0747,0.0,1.0,0.0,0.1802,0.9808,-0.0747,0.1913,0.9808,-0.0381,0.0,1.0,0.0,0.1913,0.9808,-0.0381,0.1951,0.9808,0.0,0.0,1.0,0.0,0.1951,0.9808,0.0,0.1913,0.9808,0.0381,0.0,1.0,0.0,0.1913,0.9808,0.0381,0.1802,0.9808,0.0747,0.0,1.0,0.0,0.1802,0.9808,0.0747,0.1622,0.9808,0.1084,0.0,1.0,0.0,0.1622,0.9808,0.1084,0.1379,0.9808,0.1379,0.0,1.0,0.0,0.1379,0.9808,0.1379,0.1084,0.9808,0.1622,0.0,1.0,0.0,0.1084,0.9808,0.1622,0.0747,0.9808,0.1802,0.0,1.0,0.0,0.0747,0.9808,0.1802,0.0381,0.9808,0.1913,0.0,1.0,0.0,0.0381,0.9808,0.1913,0.0,0.9808,0.1951,0.0,0.9808,0.1951,0.0,0.9239,0.3827,-0.0747,0.9239,0.3753,0.0,0.9808,0.1951,-0.0747,0.9239,0.3753,-0.0381,0.9808,0.1913,-0.0381,0.9808,0.1913,-0.0747,0.9239,0.3753,-0.1464,0.9239,0.3536,-0.0381,0.9808,0.1913,-0.1464,0.9239,0.3536,-0.0747,0.9808,0.1802,-0.0747,0.9808,0.1802,-0.1464,0.9239,0.3536,-0.2126,0.9239,0.3182,-0.0747,0.9808,0.1802,-0.2126,0.9239,0.3182,-0.1084,0.9808,0.1622,-0.1084,0.9808,0.1622,-0.2126,0.9239,0.3182,-0.2706,0.9239,0.2706,-0.1084,0.9808,0.1622,-0.2706,0.9239,0.2706,-0.1379,0.9808,0.1379,-0.1379,0.9808,0.1379,-0.2706,0.9239,0.2706,-0.3182,0.9239,0.2126,-0.1379,0.9808,0.1379,-0.3182,0.9239,0.2126,-0.1622,0.9808,0.1084,-0.1622,0.9808,0.1084,-0.3182,0.9239,0.2126,-0.3536,0.9239,0.1464,-0.1622,0.9808,0.1084,-0.3536,0.9239,0.1464,-0.1802,0.9808,0.0747,-0.1802,0.9808,0.0747,-0.3536,0.9239,0.1464,-0.3753,0.9239,0.0747,-0.1802,0.9808,0.0747,-0.3753,0.9239,0.0747,-0.1913,0.9808,0.0381,-0.1913,0.9808,0.0381,-0.3753,0.9239,0.0747,-0.3827,0.9239,0.0,-0.1913,0.9808,0.0381,-0.3827,0.9239,0.0,-0.1951,0.9808,0.0,-0.1951,0.9808,0.0,-0.3827,0.9239,0.0,-0.3753,0.9239,-0.0747,-0.1951,0.9808,0.0,-0.3753,0.9239,-0.0747,-0.1913,0.9808,-0.0381,-0.1913,0.9808,-0.0381,-0.3753,0.9239,-0.0747,-0.3536,0.9239,-0.1464,-0.1913,0.9808,-0.0381,-0.3536,0.9239,-0.1464,-0.1802,0.9808,-0.0747,-0.1802,0.9808,-0.0747,-0.3536,0.9239,-0.1464,-0.3182,0.9239,-0.2126,-0.1802,0.9808,-0.0747,-0.3182,0.9239,-0.2126,-0.1622,0.9808,-0.1084,-0.1622,0.9808,-0.1084,-0.3182,0.9239,-0.2126,-0.2706,0.9239,-0.2706,-0.1622,0.9808,-0.1084,-0.2706,0.9239,-0.2706,-0.1379,0.9808,-0.1379,-0.1379,0.9808,-0.1379,-0.2706,0.9239,-0.2706,-0.2126,0.9239,-0.3182,-0.1379,0.9808,-0.1379,-0.2126,0.9239,-0.3182,-0.1084,0.9808,-0.1622,-0.1084,0.9808,-0.1622,-0.2126,0.9239,-0.3182,-0.1464,0.9239,-0.3536,-0.1084,0.9808,-0.1622,-0.1464,0.9239,-0.3536,-0.0747,0.9808,-0.1802,-0.0747,0.9808,-0.1802,-0.1464,0.9239,-0.3536,-0.0747,0.9239,-0.3753,-0.0747,0.9808,-0.1802,-0.0747,0.9239,-0.3753,-0.0381,0.9808,-0.1913,-0.0381,0.9808,-0.1913,-0.0747,0.9239,-0.3753,0.0,0.9239,-0.3827,-0.0381,0.9808,-0.1913,0.0,0.9239,-0.3827,0.0,0.9808,-0.1951,0.0,0.9808,-0.1951,0.0,0.9239,-0.3827,0.0747,0.9239,-0.3753,0.0,0.9808,-0.1951,0.0747,0.9239,-0.3753,0.0381,0.9808,-0.1913,0.0381,0.9808,-0.1913,0.0747,0.9239,-0.3753,0.1464,0.9239,-0.3536,0.0381,0.9808,-0.1913,0.1464,0.9239,-0.3536,0.0747,0.9808,-0.1802,0.0747,0.9808,-0.1802,0.1464,0.9239,-0.3536,0.2126,0.9239,-0.3182,0.0747,0.9808,-0.1802,0.2126,0.9239,-0.3182,0.1084,0.9808,-0.1622,0.1084,0.9808,-0.1622,0.2126,0.9239,-0.3182,0.2706,0.9239,-0.2706,0.1084,0.9808,-0.1622,0.2706,0.9239,-0.2706,0.1379,0.9808,-0.1379,0.1379,0.9808,-0.1379,0.2706,0.9239,-0.2706,0.3182,0.9239,-0.2126,0.1379,0.9808,-0.1379,0.3182,0.9239,-0.2126,0.1622,0.9808,-0.1084,0.1622,0.9808,-0.1084,0.3182,0.9239,-0.2126,0.3536,0.9239,-0.1464,0.1622,0.9808,-0.1084,0.3536,0.9239,-0.1464,0.1802,0.9808,-0.0747,0.1802,0.9808,-0.0747,0.3536,0.9239,-0.1464,0.3753,0.9239,-0.0747,0.1802,0.9808,-0.0747,0.3753,0.9239,-0.0747,0.1913,0.9808,-0.0381,0.1913,0.9808,-0.0381,0.3753,0.9239,-0.0747,0.3827,0.9239,0.0,0.1913,0.9808,-0.0381,0.3827,0.9239,0.0,0.1951,0.9808,0.0,0.1951,0.9808,0.0,0.3827,0.9239,0.0,0.3753,0.9239,0.0747,0.1951,0.9808,0.0,0.3753,0.9239,0.0747,0.1913,0.9808,0.0381,0.1913,0.9808,0.0381,0.3753,0.9239,0.0747,0.3536,0.9239,0.1464,0.1913,0.9808,0.0381,0.3536,0.9239,0.1464,0.1802,0.9808,0.0747,0.1802,0.9808,0.0747,0.3536,0.9239,0.1464,0.3182,0.9239,0.2126,0.1802,0.9808,0.0747,0.3182,0.9239,0.2126,0.1622,0.9808,0.1084,0.1622,0.9808,0.1084,0.3182,0.9239,0.2126,0.2706,0.9239,0.2706,0.1622,0.9808,0.1084,0.2706,0.9239,0.2706,0.1379,0.9808,0.1379,0.1379,0.9808,0.1379,0.2706,0.9239,0.2706,0.2126,0.9239,0.3182,0.1379,0.9808,0.1379,0.2126,0.9239,0.3182,0.1084,0.9808,0.1622,0.1084,0.9808,0.1622,0.2126,0.9239,0.3182,0.1464,0.9239,0.3536,0.1084,0.9808,0.1622,0.1464,0.9239,0.3536,0.0747,0.9808,0.1802,0.0747,0.9808,0.1802,0.1464,0.9239,0.3536,0.0747,0.9239,0.3753,0.0747,0.9808,0.1802,0.0747,0.9239,0.3753,0.0381,0.9808,0.1913,0.0381,0.9808,0.1913,0.0747,0.9239,0.3753,0.0,0.9239,0.3827,0.0381,0.9808,0.1913,0.0,0.9239,0.3827,0.0,0.9808,0.1951,0.0,0.9239,0.3827,0.0,0.8315,0.5556,-0.1084,0.8315,0.5449,0.0,0.9239,0.3827,-0.1084,0.8315,0.5449,-0.0747,0.9239,0.3753,-0.0747,0.9239,0.3753,-0.1084,0.8315,0.5449,-0.2126,0.8315,0.5133,-0.0747,0.9239,0.3753,-0.2126,0.8315,0.5133,-0.1464,0.9239,0.3536,-0.1464,0.9239,0.3536,-0.2126,0.8315,0.5133,-0.3087,0.8315,0.4619,-0.1464,0.9239,0.3536,-0.3087,0.8315,0.4619,-0.2126,0.9239,0.3182,-0.2126,0.9239,0.3182,-0.3087,0.8315,0.4619,-0.3928,0.8315,0.3928,-0.2126,0.9239,0.3182,-0.3928,0.8315,0.3928,-0.2706,0.9239,0.2706,-0.2706,0.9239,0.2706,-0.3928,0.8315,0.3928,-0.4619,0.8315,0.3087,-0.2706,0.9239,0.2706,-0.4619,0.8315,0.3087,-0.3182,0.9239,0.2126,-0.3182,0.9239,0.2126,-0.4619,0.8315,0.3087,-0.5133,0.8315,0.2126,-0.3182,0.9239,0.2126,-0.5133,0.8315,0.2126,-0.3536,0.9239,0.1464,-0.3536,0.9239,0.1464,-0.5133,0.8315,0.2126,-0.5449,0.8315,0.1084,-0.3536,0.9239,0.1464,-0.5449,0.8315,0.1084,-0.3753,0.9239,0.0747,-0.3753,0.9239,0.0747,-0.5449,0.8315,0.1084,-0.5556,0.8315,0.0,-0.3753,0.9239,0.0747,-0.5556,0.8315,0.0,-0.3827,0.9239,0.0,-0.3827,0.9239,0.0,-0.5556,0.8315,0.0,-0.5449,0.8315,-0.1084,-0.3827,0.9239,0.0,-0.5449,0.8315,-0.1084,-0.3753,0.9239,-0.0747,-0.3753,0.9239,-0.0747,-0.5449,0.8315,-0.1084,-0.5133,0.8315,-0.2126,-0.3753,0.9239,-0.0747,-0.5133,0.8315,-0.2126,-0.3536,0.9239,-0.1464,-0.3536,0.9239,-0.1464,-0.5133,0.8315,-0.2126,-0.4619,0.8315,-0.3087,-0.3536,0.9239,-0.1464,-0.4619,0.8315,-0.3087,-0.3182,0.9239,-0.2126,-0.3182,0.9239,-0.2126,-0.4619,0.8315,-0.3087,-0.3928,0.8315,-0.3928,-0.3182,0.9239,-0.2126,-0.3928,0.8315,-0.3928,-0.2706,0.9239,-0.2706,-0.2706,0.9239,-0.2706,-0.3928,0.8315,-0.3928,-0.3087,0.8315,-0.4619,-0.2706,0.9239,-0.2706,-0.3087,0.8315,-0.4619,-0.2126,0.9239,-0.3182,-0.2126,0.9239,-0.3182,-0.3087,0.8315,-0.4619,-0.2126,0.8315,-0.5133,-0.2126,0.9239,-0.3182,-0.2126,0.8315,-0.5133,-0.1464,0.9239,-0.3536,-0.1464,0.9239,-0.3536,-0.2126,0.8315,-0.5133,-0.1084,0.8315,-0.5449,-0.1464,0.9239,-0.3536,-0.1084,0.8315,-0.5449,-0.0747,0.9239,-0.3753,-0.0747,0.9239,-0.3753,-0.1084,0.8315,-0.5449,0.0,0.8315,-0.5556,-0.0747,0.9239,-0.3753,0.0,0.8315,-0.5556,0.0,0.9239,-0.3827,0.0,0.9239,-0.3827,0.0,0.8315,-0.5556,0.1084,0.8315,-0.5449,0.0,0.9239,-0.3827,0.1084,0.8315,-0.5449,0.0747,0.9239,-0.3753,0.0747,0.9239,-0.3753,0.1084,0.8315,-0.5449,0.2126,0.8315,-0.5133,0.0747,0.9239,-0.3753,0.2126,0.8315,-0.5133,0.1464,0.9239,-0.3536,0.1464,0.9239,-0.3536,0.2126,0.8315,-0.5133,0.3087,0.8315,-0.4619,0.1464,0.9239,-0.3536,0.3087,0.8315,-0.4619,0.2126,0.9239,-0.3182,0.2126,0.9239,-0.3182,0.3087,0.8315,-0.4619,0.3928,0.8315,-0.3928,0.2126,0.9239,-0.3182,0.3928,0.8315,-0.3928,0.2706,0.9239,-0.2706,0.2706,0.9239,-0.2706,0.3928,0.8315,-0.3928,0.4619,0.8315,-0.3087,0.2706,0.9239,-0.2706,0.4619,0.8315,-0.3087,0.3182,0.9239,-0.2126,0.3182,0.9239,-0.2126,0.4619,0.8315,-0.3087,0.5133,0.8315,-0.2126,0.3182,0.9239,-0.2126,0.5133,0.8315,-0.2126,0.3536,0.9239,-0.1464,0.3536,0.9239,-0.1464,0.5133,0.8315,-0.2126,0.5449,0.8315,-0.1084,0.3536,0.9239,-0.1464,0.5449,0.8315,-0.1084,0.3753,0.9239,-0.0747,0.3753,0.9239,-0.0747,0.5449,0.8315,-0.1084,0.5556,0.8315,0.0,0.3753,0.9239,-0.0747,0.5556,0.8315,0.0,0.3827,0.9239,0.0,0.3827,0.9239,0.0,0.5556,0.8315,0.0,0.5449,0.8315,0.1084,0.3827,0.9239,0.0,0.5449,0.8315,0.1084,0.3753,0.9239,0.0747,0.3753,0.9239,0.0747,0.5449,0.8315,0.1084,0.5133,0.8315,0.2126,0.3753,0.9239,0.0747,0.5133,0.8315,0.2126,0.3536,0.9239,0.1464,0.3536,0.9239,0.1464,0.5133,0.8315,0.2126,0.4619,0.8315,0.3087,0.3536,0.9239,0.1464,0.4619,0.8315,0.3087,0.3182,0.9239,0.2126,0.3182,0.9239,0.2126,0.4619,0.8315,0.3087,0.3928,0.8315,0.3928,0.3182,0.9239,0.2126,0.3928,0.8315,0.3928,0.2706,0.9239,0.2706,0.2706,0.9239,0.2706,0.3928,0.8315,0.3928,0.3087,0.8315,0.4619,0.2706,0.9239,0.2706,0.3087,0.8315,0.4619,0.2126,0.9239,0.3182,0.2126,0.9239,0.3182,0.3087,0.8315,0.4619,0.2126,0.8315,0.5133,0.2126,0.9239,0.3182,0.2126,0.8315,0.5133,0.1464,0.9239,0.3536,0.1464,0.9239,0.3536,0.2126,0.8315,0.5133,0.1084,0.8315,0.5449,0.1464,0.9239,0.3536,0.1084,0.8315,0.5449,0.0747,0.9239,0.3753,0.0747,0.9239,0.3753,0.1084,0.8315,0.5449,0.0,0.8315,0.5556,0.0747,0.9239,0.3753,0.0,0.8315,0.5556,0.0,0.9239,0.3827,0.0,0.8315,0.5556,0.0,0.7071,0.7071,-0.1379,0.7071,0.6935,0.0,0.8315,0.5556,-0.1379,0.7071,0.6935,-0.1084,0.8315,0.5449,-0.1084,0.8315,0.5449,-0.1379,0.7071,0.6935,-0.2706,0.7071,0.6533,-0.1084,0.8315,0.5449,-0.2706,0.7071,0.6533,-0.2126,0.8315,0.5133,-0.2126,0.8315,0.5133,-0.2706,0.7071,0.6533,-0.3928,0.7071,0.5879,-0.2126,0.8315,0.5133,-0.3928,0.7071,0.5879,-0.3087,0.8315,0.4619,-0.3087,0.8315,0.4619,-0.3928,0.7071,0.5879,-0.5,0.7071,0.5,-0.3087,0.8315,0.4619,-0.5,0.7071,0.5,-0.3928,0.8315,0.3928,-0.3928,0.8315,0.3928,-0.5,0.7071,0.5,-0.5879,0.7071,0.3928,-0.3928,0.8315,0.3928,-0.5879,0.7071,0.3928,-0.4619,0.8315,0.3087,-0.4619,0.8315,0.3087,-0.5879,0.7071,0.3928,-0.6533,0.7071,0.2706,-0.4619,0.8315,0.3087,-0.6533,0.7071,0.2706,-0.5133,0.8315,0.2126,-0.5133,0.8315,0.2126,-0.6533,0.7071,0.2706,-0.6935,0.7071,0.1379,-0.5133,0.8315,0.2126,-0.6935,0.7071,0.1379,-0.5449,0.8315,0.1084,-0.5449,0.8315,0.1084,-0.6935,0.7071,0.1379,-0.7071,0.7071,0.0,-0.5449,0.8315,0.1084,-0.7071,0.7071,0.0,-0.5556,0.8315,0.0,-0.5556,0.8315,0.0,-0.7071,0.7071,0.0,-0.6935,0.7071,-0.1379,-0.5556,0.8315,0.0,-0.6935,0.7071,-0.1379,-0.5449,0.8315,-0.1084,-0.5449,0.8315,-0.1084,-0.6935,0.7071,-0.1379,-0.6533,0.7071,-0.2706,-0.5449,0.8315,-0.1084,-0.6533,0.7071,-0.2706,-0.5133,0.8315,-0.2126,-0.5133,0.8315,-0.2126,-0.6533,0.7071,-0.2706,-0.5879,0.7071,-0.3928,-0.5133,0.8315,-0.2126,-0.5879,0.7071,-0.3928,-0.4619,0.8315,-0.3087,-0.4619,0.8315,-0.3087,-0.5879,0.7071,-0.3928,-0.5,0.7071,-0.5,-0.4619,0.8315,-0.3087,-0.5,0.7071,-0.5,-0.3928,0.8315,-0.3928,-0.3928,0.8315,-0.3928,-0.5,0.7071,-0.5,-0.3928,0.7071,-0.5879,-0.3928,0.8315,-0.3928,-0.3928,0.7071,-0.5879,-0.3087,0.8315,-0.4619,-0.3087,0.8315,-0.4619,-0.3928,0.7071,-0.5879,-0.2706,0.7071,-0.6533,-0.3087,0.8315,-0.4619,-0.2706,0.7071,-0.6533,-0.2126,0.8315,-0.5133,-0.2126,0.8315,-0.5133,-0.2706,0.7071,-0.6533,-0.1379,0.7071,-0.6935,-0.2126,0.8315,-0.5133,-0.1379,0.7071,-0.6935,-0.1084,0.8315,-0.5449,-0.1084,0.8315,-0.5449,-0.1379,0.7071,-0.6935,0.0,0.7071,-0.7071,-0.1084,0.8315,-0.5449,0.0,0.7071,-0.7071,0.0,0.8315,-0.5556,0.0,0.8315,-0.5556,0.0,0.7071,-0.7071,0.138,0.7071,-0.6935,0.0,0.8315,-0.5556,0.138,0.7071,-0.6935,0.1084,0.8315,-0.5449,0.1084,0.8315,-0.5449,0.138,0.7071,-0.6935,0.2706,0.7071,-0.6533,0.1084,0.8315,-0.5449,0.2706,0.7071,-0.6533,0.2126,0.8315,-0.5133,0.2126,0.8315,-0.5133,0.2706,0.7071,-0.6533,0.3928,0.7071,-0.5879,0.2126,0.8315,-0.5133,0.3928,0.7071,-0.5879,0.3087,0.8315,-0.4619,0.3087,0.8315,-0.4619,0.3928,0.7071,-0.5879,0.5,0.7071,-0.5,0.3087,0.8315,-0.4619,0.5,0.7071,-0.5,0.3928,0.8315,-0.3928,0.3928,0.8315,-0.3928,0.5,0.7071,-0.5,0.5879,0.7071,-0.3928,0.3928,0.8315,-0.3928,0.5879,0.7071,-0.3928,0.4619,0.8315,-0.3087,0.4619,0.8315,-0.3087,0.5879,0.7071,-0.3928,0.6533,0.7071,-0.2706,0.4619,0.8315,-0.3087,0.6533,0.7071,-0.2706,0.5133,0.8315,-0.2126,0.5133,0.8315,-0.2126,0.6533,0.7071,-0.2706,0.6935,0.7071,-0.1379,0.5133,0.8315,-0.2126,0.6935,0.7071,-0.1379,0.5449,0.8315,-0.1084,0.5449,0.8315,-0.1084,0.6935,0.7071,-0.1379,0.7071,0.7071,0.0,0.5449,0.8315,-0.1084,0.7071,0.7071,0.0,0.5556,0.8315,0.0,0.5556,0.8315,0.0,0.7071,0.7071,0.0,0.6935,0.7071,0.138,0.5556,0.8315,0.0,0.6935,0.7071,0.138,0.5449,0.8315,0.1084,0.5449,0.8315,0.1084,0.6935,0.7071,0.138,0.6533,0.7071,0.2706,0.5449,0.8315,0.1084,0.6533,0.7071,0.2706,0.5133,0.8315,0.2126,0.5133,0.8315,0.2126,0.6533,0.7071,0.2706,0.5879,0.7071,0.3928,0.5133,0.8315,0.2126,0.5879,0.7071,0.3928,0.4619,0.8315,0.3087,0.4619,0.8315,0.3087,0.5879,0.7071,0.3928,0.5,0.7071,0.5,0.4619,0.8315,0.3087,0.5,0.7071,0.5,0.3928,0.8315,0.3928,0.3928,0.8315,0.3928,0.5,0.7071,0.5,0.3928,0.7071,0.5879,0.3928,0.8315,0.3928,0.3928,0.7071,0.5879,0.3087,0.8315,0.4619,0.3087,0.8315,0.4619,0.3928,0.7071,0.5879,0.2706,0.7071,0.6533,0.3087,0.8315,0.4619,0.2706,0.7071,0.6533,0.2126,0.8315,0.5133,0.2126,0.8315,0.5133,0.2706,0.7071,0.6533,0.1379,0.7071,0.6935,0.2126,0.8315,0.5133,0.1379,0.7071,0.6935,0.1084,0.8315,0.5449,0.1084,0.8315,0.5449,0.1379,0.7071,0.6935,0.0,0.7071,0.7071,0.1084,0.8315,0.5449,0.0,0.7071,0.7071,0.0,0.8315,0.5556,0.0,0.7071,0.7071,0.0,0.5556,0.8315,-0.1622,0.5556,0.8155,0.0,0.7071,0.7071,-0.1622,0.5556,0.8155,-0.1379,0.7071,0.6935,-0.1379,0.7071,0.6935,-0.1622,0.5556,0.8155,-0.3182,0.5556,0.7682,-0.1379,0.7071,0.6935,-0.3182,0.5556,0.7682,-0.2706,0.7071,0.6533,-0.2706,0.7071,0.6533,-0.3182,0.5556,0.7682,-0.4619,0.5556,0.6913,-0.2706,0.7071,0.6533,-0.4619,0.5556,0.6913,-0.3928,0.7071,0.5879,-0.3928,0.7071,0.5879,-0.4619,0.5556,0.6913,-0.5879,0.5556,0.5879,-0.3928,0.7071,0.5879,-0.5879,0.5556,0.5879,-0.5,0.7071,0.5,-0.5,0.7071,0.5,-0.5879,0.5556,0.5879,-0.6913,0.5556,0.4619,-0.5,0.7071,0.5,-0.6913,0.5556,0.4619,-0.5879,0.7071,0.3928,-0.5879,0.7071,0.3928,-0.6913,0.5556,0.4619,-0.7682,0.5556,0.3182,-0.5879,0.7071,0.3928,-0.7682,0.5556,0.3182,-0.6533,0.7071,0.2706,-0.6533,0.7071,0.2706,-0.7682,0.5556,0.3182,-0.8155,0.5556,0.1622,-0.6533,0.7071,0.2706,-0.8155,0.5556,0.1622,-0.6935,0.7071,0.1379,-0.6935,0.7071,0.1379,-0.8155,0.5556,0.1622,-0.8315,0.5556,0.0,-0.6935,0.7071,0.1379,-0.8315,0.5556,0.0,-0.7071,0.7071,0.0,-0.7071,0.7071,0.0,-0.8315,0.5556,0.0,-0.8155,0.5556,-0.1622,-0.7071,0.7071,0.0,-0.8155,0.5556,-0.1622,-0.6935,0.7071,-0.1379,-0.6935,0.7071,-0.1379,-0.8155,0.5556,-0.1622,-0.7682,0.5556,-0.3182,-0.6935,0.7071,-0.1379,-0.7682,0.5556,-0.3182,-0.6533,0.7071,-0.2706,-0.6533,0.7071,-0.2706,-0.7682,0.5556,-0.3182,-0.6913,0.5556,-0.4619,-0.6533,0.7071,-0.2706,-0.6913,0.5556,-0.4619,-0.5879,0.7071,-0.3928,-0.5879,0.7071,-0.3928,-0.6913,0.5556,-0.4619,-0.5879,0.5556,-0.5879,-0.5879,0.7071,-0.3928,-0.5879,0.5556,-0.5879,-0.5,0.7071,-0.5,-0.5,0.7071,-0.5,-0.5879,0.5556,-0.5879,-0.4619,0.5556,-0.6913,-0.5,0.7071,-0.5,-0.4619,0.5556,-0.6913,-0.3928,0.7071,-0.5879,-0.3928,0.7071,-0.5879,-0.4619,0.5556,-0.6913,-0.3182,0.5556,-0.7682,-0.3928,0.7071,-0.5879,-0.3182,0.5556,-0.7682,-0.2706,0.7071,-0.6533,-0.2706,0.7071,-0.6533,-0.3182,0.5556,-0.7682,-0.1622,0.5556,-0.8155,-0.2706,0.7071,-0.6533,-0.1622,0.5556,-0.8155,-0.1379,0.7071,-0.6935,-0.1379,0.7071,-0.6935,-0.1622,0.5556,-0.8155,0.0,0.5556,-0.8315,-0.1379,0.7071,-0.6935,0.0,0.5556,-0.8315,0.0,0.7071,-0.7071,0.0,0.7071,-0.7071,0.0,0.5556,-0.8315,0.1622,0.5556,-0.8155,0.0,0.7071,-0.7071,0.1622,0.5556,-0.8155,0.138,0.7071,-0.6935,0.138,0.7071,-0.6935,0.1622,0.5556,-0.8155,0.3182,0.5556,-0.7682,0.138,0.7071,-0.6935,0.3182,0.5556,-0.7682,0.2706,0.7071,-0.6533,0.2706,0.7071,-0.6533,0.3182,0.5556,-0.7682,0.4619,0.5556,-0.6913,0.2706,0.7071,-0.6533,0.4619,0.5556,-0.6913,0.3928,0.7071,-0.5879,0.3928,0.7071,-0.5879,0.4619,0.5556,-0.6913,0.5879,0.5556,-0.5879,0.3928,0.7071,-0.5879,0.5879,0.5556,-0.5879,0.5,0.7071,-0.5,0.5,0.7071,-0.5,0.5879,0.5556,-0.5879,0.6913,0.5556,-0.4619,0.5,0.7071,-0.5,0.6913,0.5556,-0.4619,0.5879,0.7071,-0.3928,0.5879,0.7071,-0.3928,0.6913,0.5556,-0.4619,0.7682,0.5556,-0.3182,0.5879,0.7071,-0.3928,0.7682,0.5556,-0.3182,0.6533,0.7071,-0.2706,0.6533,0.7071,-0.2706,0.7682,0.5556,-0.3182,0.8155,0.5556,-0.1622,0.6533,0.7071,-0.2706,0.8155,0.5556,-0.1622,0.6935,0.7071,-0.1379,0.6935,0.7071,-0.1379,0.8155,0.5556,-0.1622,0.8315,0.5556,0.0,0.6935,0.7071,-0.1379,0.8315,0.5556,0.0,0.7071,0.7071,0.0,0.7071,0.7071,0.0,0.8315,0.5556,0.0,0.8155,0.5556,0.1622,0.7071,0.7071,0.0,0.8155,0.5556,0.1622,0.6935,0.7071,0.138,0.6935,0.7071,0.138,0.8155,0.5556,0.1622,0.7682,0.5556,0.3182,0.6935,0.7071,0.138,0.7682,0.5556,0.3182,0.6533,0.7071,0.2706,0.6533,0.7071,0.2706,0.7682,0.5556,0.3182,0.6913,0.5556,0.4619,0.6533,0.7071,0.2706,0.6913,0.5556,0.4619,0.5879,0.7071,0.3928,0.5879,0.7071,0.3928,0.6913,0.5556,0.4619,0.5879,0.5556,0.5879,0.5879,0.7071,0.3928,0.5879,0.5556,0.5879,0.5,0.7071,0.5,0.5,0.7071,0.5,0.5879,0.5556,0.5879,0.4619,0.5556,0.6913,0.5,0.7071,0.5,0.4619,0.5556,0.6913,0.3928,0.7071,0.5879,0.3928,0.7071,0.5879,0.4619,0.5556,0.6913,0.3182,0.5556,0.7682,0.3928,0.7071,0.5879,0.3182,0.5556,0.7682,0.2706,0.7071,0.6533,0.2706,0.7071,0.6533,0.3182,0.5556,0.7682,0.1622,0.5556,0.8155,0.2706,0.7071,0.6533,0.1622,0.5556,0.8155,0.1379,0.7071,0.6935,0.1379,0.7071,0.6935,0.1622,0.5556,0.8155,0.0,0.5556,0.8315,0.1379,0.7071,0.6935,0.0,0.5556,0.8315,0.0,0.7071,0.7071,0.0,0.5556,0.8315,0.0,0.3827,0.9239,-0.1802,0.3827,0.9061,0.0,0.5556,0.8315,-0.1802,0.3827,0.9061,-0.1622,0.5556,0.8155,-0.1622,0.5556,0.8155,-0.1802,0.3827,0.9061,-0.3536,0.3827,0.8536,-0.1622,0.5556,0.8155,-0.3536,0.3827,0.8536,-0.3182,0.5556,0.7682,-0.3182,0.5556,0.7682,-0.3536,0.3827,0.8536,-0.5133,0.3827,0.7682,-0.3182,0.5556,0.7682,-0.5133,0.3827,0.7682,-0.4619,0.5556,0.6913,-0.4619,0.5556,0.6913,-0.5133,0.3827,0.7682,-0.6533,0.3827,0.6533,-0.4619,0.5556,0.6913,-0.6533,0.3827,0.6533,-0.5879,0.5556,0.5879,-0.5879,0.5556,0.5879,-0.6533,0.3827,0.6533,-0.7682,0.3827,0.5133,-0.5879,0.5556,0.5879,-0.7682,0.3827,0.5133,-0.6913,0.5556,0.4619,-0.6913,0.5556,0.4619,-0.7682,0.3827,0.5133,-0.8536,0.3827,0.3536,-0.6913,0.5556,0.4619,-0.8536,0.3827,0.3536,-0.7682,0.5556,0.3182,-0.7682,0.5556,0.3182,-0.8536,0.3827,0.3536,-0.9061,0.3827,0.1802,-0.7682,0.5556,0.3182,-0.9061,0.3827,0.1802,-0.8155,0.5556,0.1622,-0.8155,0.5556,0.1622,-0.9061,0.3827,0.1802,-0.9239,0.3827,0.0,-0.8155,0.5556,0.1622,-0.9239,0.3827,0.0,-0.8315,0.5556,0.0,-0.8315,0.5556,0.0,-0.9239,0.3827,0.0,-0.9061,0.3827,-0.1802,-0.8315,0.5556,0.0,-0.9061,0.3827,-0.1802,-0.8155,0.5556,-0.1622,-0.8155,0.5556,-0.1622,-0.9061,0.3827,-0.1802,-0.8536,0.3827,-0.3536,-0.8155,0.5556,-0.1622,-0.8536,0.3827,-0.3536,-0.7682,0.5556,-0.3182,-0.7682,0.5556,-0.3182,-0.8536,0.3827,-0.3536,-0.7682,0.3827,-0.5133,-0.7682,0.5556,-0.3182,-0.7682,0.3827,-0.5133,-0.6913,0.5556,-0.4619,-0.6913,0.5556,-0.4619,-0.7682,0.3827,-0.5133,-0.6533,0.3827,-0.6533,-0.6913,0.5556,-0.4619,-0.6533,0.3827,-0.6533,-0.5879,0.5556,-0.5879,-0.5879,0.5556,-0.5879,-0.6533,0.3827,-0.6533,-0.5133,0.3827,-0.7682,-0.5879,0.5556,-0.5879,-0.5133,0.3827,-0.7682,-0.4619,0.5556,-0.6913,-0.4619,0.5556,-0.6913,-0.5133,0.3827,-0.7682,-0.3536,0.3827,-0.8536,-0.4619,0.5556,-0.6913,-0.3536,0.3827,-0.8536,-0.3182,0.5556,-0.7682,-0.3182,0.5556,-0.7682,-0.3536,0.3827,-0.8536,-0.1802,0.3827,-0.9061,-0.3182,0.5556,-0.7682,-0.1802,0.3827,-0.9061,-0.1622,0.5556,-0.8155,-0.1622,0.5556,-0.8155,-0.1802,0.3827,-0.9061,0.0,0.3827,-0.9239,-0.1622,0.5556,-0.8155,0.0,0.3827,-0.9239,0.0,0.5556,-0.8315,0.0,0.5556,-0.8315,0.0,0.3827,-0.9239,0.1802,0.3827,-0.9061,0.0,0.5556,-0.8315,0.1802,0.3827,-0.9061,0.1622,0.5556,-0.8155,0.1622,0.5556,-0.8155,0.1802,0.3827,-0.9061,0.3536,0.3827,-0.8536,0.1622,0.5556,-0.8155,0.3536,0.3827,-0.8536,0.3182,0.5556,-0.7682,0.3182,0.5556,-0.7682,0.3536,0.3827,-0.8536,0.5133,0.3827,-0.7682,0.3182,0.5556,-0.7682,0.5133,0.3827,-0.7682,0.4619,0.5556,-0.6913,0.4619,0.5556,-0.6913,0.5133,0.3827,-0.7682,0.6533,0.3827,-0.6533,0.4619,0.5556,-0.6913,0.6533,0.3827,-0.6533,0.5879,0.5556,-0.5879,0.5879,0.5556,-0.5879,0.6533,0.3827,-0.6533,0.7682,0.3827,-0.5133,0.5879,0.5556,-0.5879,0.7682,0.3827,-0.5133,0.6913,0.5556,-0.4619,0.6913,0.5556,-0.4619,0.7682,0.3827,-0.5133,0.8536,0.3827,-0.3536,0.6913,0.5556,-0.4619,0.8536,0.3827,-0.3536,0.7682,0.5556,-0.3182,0.7682,0.5556,-0.3182,0.8536,0.3827,-0.3536,0.9061,0.3827,-0.1802,0.7682,0.5556,-0.3182,0.9061,0.3827,-0.1802,0.8155,0.5556,-0.1622,0.8155,0.5556,-0.1622,0.9061,0.3827,-0.1802,0.9239,0.3827,0.0,0.8155,0.5556,-0.1622,0.9239,0.3827,0.0,0.8315,0.5556,0.0,0.8315,0.5556,0.0,0.9239,0.3827,0.0,0.9061,0.3827,0.1802,0.8315,0.5556,0.0,0.9061,0.3827,0.1802,0.8155,0.5556,0.1622,0.8155,0.5556,0.1622,0.9061,0.3827,0.1802,0.8536,0.3827,0.3536,0.8155,0.5556,0.1622,0.8536,0.3827,0.3536,0.7682,0.5556,0.3182,0.7682,0.5556,0.3182,0.8536,0.3827,0.3536,0.7682,0.3827,0.5133,0.7682,0.5556,0.3182,0.7682,0.3827,0.5133,0.6913,0.5556,0.4619,0.6913,0.5556,0.4619,0.7682,0.3827,0.5133,0.6533,0.3827,0.6533,0.6913,0.5556,0.4619,0.6533,0.3827,0.6533,0.5879,0.5556,0.5879,0.5879,0.5556,0.5879,0.6533,0.3827,0.6533,0.5133,0.3827,0.7682,0.5879,0.5556,0.5879,0.5133,0.3827,0.7682,0.4619,0.5556,0.6913,0.4619,0.5556,0.6913,0.5133,0.3827,0.7682,0.3536,0.3827,0.8536,0.4619,0.5556,0.6913,0.3536,0.3827,0.8536,0.3182,0.5556,0.7682,0.3182,0.5556,0.7682,0.3536,0.3827,0.8536,0.1802,0.3827,0.9061,0.3182,0.5556,0.7682,0.1802,0.3827,0.9061,0.1622,0.5556,0.8155,0.1622,0.5556,0.8155,0.1802,0.3827,0.9061,0.0,0.3827,0.9239,0.1622,0.5556,0.8155,0.0,0.3827,0.9239,0.0,0.5556,0.8315,0.0,0.3827,0.9239,0.0,0.1951,0.9808,-0.1913,0.1951,0.9619,0.0,0.3827,0.9239,-0.1913,0.1951,0.9619,-0.1802,0.3827,0.9061,-0.1802,0.3827,0.9061,-0.1913,0.1951,0.9619,-0.3753,0.1951,0.9061,-0.1802,0.3827,0.9061,-0.3753,0.1951,0.9061,-0.3536,0.3827,0.8536,-0.3536,0.3827,0.8536,-0.3753,0.1951,0.9061,-0.5449,0.1951,0.8155,-0.3536,0.3827,0.8536,-0.5449,0.1951,0.8155,-0.5133,0.3827,0.7682,-0.5133,0.3827,0.7682,-0.5449,0.1951,0.8155,-0.6935,0.1951,0.6935,-0.5133,0.3827,0.7682,-0.6935,0.1951,0.6935,-0.6533,0.3827,0.6533,-0.6533,0.3827,0.6533,-0.6935,0.1951,0.6935,-0.8155,0.1951,0.5449,-0.6533,0.3827,0.6533,-0.8155,0.1951,0.5449,-0.7682,0.3827,0.5133,-0.7682,0.3827,0.5133,-0.8155,0.1951,0.5449,-0.9061,0.1951,0.3753,-0.7682,0.3827,0.5133,-0.9061,0.1951,0.3753,-0.8536,0.3827,0.3536,-0.8536,0.3827,0.3536,-0.9061,0.1951,0.3753,-0.9619,0.1951,0.1913,-0.8536,0.3827,0.3536,-0.9619,0.1951,0.1913,-0.9061,0.3827,0.1802,-0.9061,0.3827,0.1802,-0.9619,0.1951,0.1913,-0.9808,0.1951,0.0,-0.9061,0.3827,0.1802,-0.9808,0.1951,0.0,-0.9239,0.3827,0.0,-0.9239,0.3827,0.0,-0.9808,0.1951,0.0,-0.9619,0.1951,-0.1913,-0.9239,0.3827,0.0,-0.9619,0.1951,-0.1913,-0.9061,0.3827,-0.1802,-0.9061,0.3827,-0.1802,-0.9619,0.1951,-0.1913,-0.9061,0.1951,-0.3753,-0.9061,0.3827,-0.1802,-0.9061,0.1951,-0.3753,-0.8536,0.3827,-0.3536,-0.8536,0.3827,-0.3536,-0.9061,0.1951,-0.3753,-0.8155,0.1951,-0.5449,-0.8536,0.3827,-0.3536,-0.8155,0.1951,-0.5449,-0.7682,0.3827,-0.5133,-0.7682,0.3827,-0.5133,-0.8155,0.1951,-0.5449,-0.6935,0.1951,-0.6935,-0.7682,0.3827,-0.5133,-0.6935,0.1951,-0.6935,-0.6533,0.3827,-0.6533,-0.6533,0.3827,-0.6533,-0.6935,0.1951,-0.6935,-0.5449,0.1951,-0.8155,-0.6533,0.3827,-0.6533,-0.5449,0.1951,-0.8155,-0.5133,0.3827,-0.7682,-0.5133,0.3827,-0.7682,-0.5449,0.1951,-0.8155,-0.3753,0.1951,-0.9061,-0.5133,0.3827,-0.7682,-0.3753,0.1951,-0.9061,-0.3536,0.3827,-0.8536,-0.3536,0.3827,-0.8536,-0.3753,0.1951,-0.9061,-0.1913,0.1951,-0.9619,-0.3536,0.3827,-0.8536,-0.1913,0.1951,-0.9619,-0.1802,0.3827,-0.9061,-0.1802,0.3827,-0.9061,-0.1913,0.1951,-0.9619,0.0,0.1951,-0.9808,-0.1802,0.3827,-0.9061,0.0,0.1951,-0.9808,0.0,0.3827,-0.9239,0.0,0.3827,-0.9239,0.0,0.1951,-0.9808,0.1913,0.1951,-0.9619,0.0,0.3827,-0.9239,0.1913,0.1951,-0.9619,0.1802,0.3827,-0.9061,0.1802,0.3827,-0.9061,0.1913,0.1951,-0.9619,0.3753,0.1951,-0.9061,0.1802,0.3827,-0.9061,0.3753,0.1951,-0.9061,0.3536,0.3827,-0.8536,0.3536,0.3827,-0.8536,0.3753,0.1951,-0.9061,0.5449,0.1951,-0.8155,0.3536,0.3827,-0.8536,0.5449,0.1951,-0.8155,0.5133,0.3827,-0.7682,0.5133,0.3827,-0.7682,0.5449,0.1951,-0.8155,0.6935,0.1951,-0.6935,0.5133,0.3827,-0.7682,0.6935,0.1951,-0.6935,0.6533,0.3827,-0.6533,0.6533,0.3827,-0.6533,0.6935,0.1951,-0.6935,0.8155,0.1951,-0.5449,0.6533,0.3827,-0.6533,0.8155,0.1951,-0.5449,0.7682,0.3827,-0.5133,0.7682,0.3827,-0.5133,0.8155,0.1951,-0.5449,0.9061,0.1951,-0.3753,0.7682,0.3827,-0.5133,0.9061,0.1951,-0.3753,0.8536,0.3827,-0.3536,0.8536,0.3827,-0.3536,0.9061,0.1951,-0.3753,0.9619,0.1951,-0.1913,0.8536,0.3827,-0.3536,0.9619,0.1951,-0.1913,0.9061,0.3827,-0.1802,0.9061,0.3827,-0.1802,0.9619,0.1951,-0.1913,0.9808,0.1951,0.0,0.9061,0.3827,-0.1802,0.9808,0.1951,0.0,0.9239,0.3827,0.0,0.9239,0.3827,0.0,0.9808,0.1951,0.0,0.9619,0.1951,0.1913,0.9239,0.3827,0.0,0.9619,0.1951,0.1913,0.9061,0.3827,0.1802,0.9061,0.3827,0.1802,0.9619,0.1951,0.1913,0.9061,0.1951,0.3753,0.9061,0.3827,0.1802,0.9061,0.1951,0.3753,0.8536,0.3827,0.3536,0.8536,0.3827,0.3536,0.9061,0.1951,0.3753,0.8155,0.1951,0.5449,0.8536,0.3827,0.3536,0.8155,0.1951,0.5449,0.7682,0.3827,0.5133,0.7682,0.3827,0.5133,0.8155,0.1951,0.5449,0.6935,0.1951,0.6935,0.7682,0.3827,0.5133,0.6935,0.1951,0.6935,0.6533,0.3827,0.6533,0.6533,0.3827,0.6533,0.6935,0.1951,0.6935,0.5449,0.1951,0.8155,0.6533,0.3827,0.6533,0.5449,0.1951,0.8155,0.5133,0.3827,0.7682,0.5133,0.3827,0.7682,0.5449,0.1951,0.8155,0.3753,0.1951,0.9061,0.5133,0.3827,0.7682,0.3753,0.1951,0.9061,0.3536,0.3827,0.8536,0.3536,0.3827,0.8536,0.3753,0.1951,0.9061,0.1913,0.1951,0.9619,0.3536,0.3827,0.8536,0.1913,0.1951,0.9619,0.1802,0.3827,0.9061,0.1802,0.3827,0.9061,0.1913,0.1951,0.9619,0.0,0.1951,0.9808,0.1802,0.3827,0.9061,0.0,0.1951,0.9808,0.0,0.3827,0.9239,0.0,0.1951,0.9808,0.0,0.0,1.0,-0.1951,0.0,0.9808,0.0,0.1951,0.9808,-0.1951,0.0,0.9808,-0.1913,0.1951,0.9619,-0.1913,0.1951,0.9619,-0.1951,0.0,0.9808,-0.3827,0.0,0.9239,-0.1913,0.1951,0.9619,-0.3827,0.0,0.9239,-0.3753,0.1951,0.9061,-0.3753,0.1951,0.9061,-0.3827,0.0,0.9239,-0.5556,0.0,0.8315,-0.3753,0.1951,0.9061,-0.5556,0.0,0.8315,-0.5449,0.1951,0.8155,-0.5449,0.1951,0.8155,-0.5556,0.0,0.8315,-0.7071,0.0,0.7071,-0.5449,0.1951,0.8155,-0.7071,0.0,0.7071,-0.6935,0.1951,0.6935,-0.6935,0.1951,0.6935,-0.7071,0.0,0.7071,-0.8315,0.0,0.5556,-0.6935,0.1951,0.6935,-0.8315,0.0,0.5556,-0.8155,0.1951,0.5449,-0.8155,0.1951,0.5449,-0.8315,0.0,0.5556,-0.9239,0.0,0.3827,-0.8155,0.1951,0.5449,-0.9239,0.0,0.3827,-0.9061,0.1951,0.3753,-0.9061,0.1951,0.3753,-0.9239,0.0,0.3827,-0.9808,0.0,0.1951,-0.9061,0.1951,0.3753,-0.9808,0.0,0.1951,-0.9619,0.1951,0.1913,-0.9619,0.1951,0.1913,-0.9808,0.0,0.1951,-1.0,0.0,0.0,-0.9619,0.1951,0.1913,-1.0,0.0,0.0,-0.9808,0.1951,0.0,-0.9808,0.1951,0.0,-1.0,0.0,0.0,-0.9808,0.0,-0.1951,-0.9808,0.1951,0.0,-0.9808,0.0,-0.1951,-0.9619,0.1951,-0.1913,-0.9619,0.1951,-0.1913,-0.9808,0.0,-0.1951,-0.9239,0.0,-0.3827,-0.9619,0.1951,-0.1913,-0.9239,0.0,-0.3827,-0.9061,0.1951,-0.3753,-0.9061,0.1951,-0.3753,-0.9239,0.0,-0.3827,-0.8315,0.0,-0.5556,-0.9061,0.1951,-0.3753,-0.8315,0.0,-0.5556,-0.8155,0.1951,-0.5449,-0.8155,0.1951,-0.5449,-0.8315,0.0,-0.5556,-0.7071,0.0,-0.7071,-0.8155,0.1951,-0.5449,-0.7071,0.0,-0.7071,-0.6935,0.1951,-0.6935,-0.6935,0.1951,-0.6935,-0.7071,0.0,-0.7071,-0.5556,0.0,-0.8315,-0.6935,0.1951,-0.6935,-0.5556,0.0,-0.8315,-0.5449,0.1951,-0.8155,-0.5449,0.1951,-0.8155,-0.5556,0.0,-0.8315,-0.3827,0.0,-0.9239,-0.5449,0.1951,-0.8155,-0.3827,0.0,-0.9239,-0.3753,0.1951,-0.9061,-0.3753,0.1951,-0.9061,-0.3827,0.0,-0.9239,-0.1951,0.0,-0.9808,-0.3753,0.1951,-0.9061,-0.1951,0.0,-0.9808,-0.1913,0.1951,-0.9619,-0.1913,0.1951,-0.9619,-0.1951,0.0,-0.9808,0.0,0.0,-1.0,-0.1913,0.1951,-0.9619,0.0,0.0,-1.0,0.0,0.1951,-0.9808,0.0,0.1951,-0.9808,0.0,0.0,-1.0,0.1951,0.0,-0.9808,0.0,0.1951,-0.9808,0.1951,0.0,-0.9808,0.1913,0.1951,-0.9619,0.1913,0.1951,-0.9619,0.1951,0.0,-0.9808,0.3827,0.0,-0.9239,0.1913,0.1951,-0.9619,0.3827,0.0,-0.9239,0.3753,0.1951,-0.9061,0.3753,0.1951,-0.9061,0.3827,0.0,-0.9239,0.5556,0.0,-0.8315,0.3753,0.1951,-0.9061,0.5556,0.0,-0.8315,0.5449,0.1951,-0.8155,0.5449,0.1951,-0.8155,0.5556,0.0,-0.8315,0.7071,0.0,-0.7071,0.5449,0.1951,-0.8155,0.7071,0.0,-0.7071,0.6935,0.1951,-0.6935,0.6935,0.1951,-0.6935,0.7071,0.0,-0.7071,0.8315,0.0,-0.5556,0.6935,0.1951,-0.6935,0.8315,0.0,-0.5556,0.8155,0.1951,-0.5449,0.8155,0.1951,-0.5449,0.8315,0.0,-0.5556,0.9239,0.0,-0.3827,0.8155,0.1951,-0.5449,0.9239,0.0,-0.3827,0.9061,0.1951,-0.3753,0.9061,0.1951,-0.3753,0.9239,0.0,-0.3827,0.9808,0.0,-0.1951,0.9061,0.1951,-0.3753,0.9808,0.0,-0.1951,0.9619,0.1951,-0.1913,0.9619,0.1951,-0.1913,0.9808,0.0,-0.1951,1.0,0.0,0.0,0.9619,0.1951,-0.1913,1.0,0.0,0.0,0.9808,0.1951,0.0,0.9808,0.1951,0.0,1.0,0.0,0.0,0.9808,0.0,0.1951,0.9808,0.1951,0.0,0.9808,0.0,0.1951,0.9619,0.1951,0.1913,0.9619,0.1951,0.1913,0.9808,0.0,0.1951,0.9239,0.0,0.3827,0.9619,0.1951,0.1913,0.9239,0.0,0.3827,0.9061,0.1951,0.3753,0.9061,0.1951,0.3753,0.9239,0.0,0.3827,0.8315,0.0,0.5556,0.9061,0.1951,0.3753,0.8315,0.0,0.5556,0.8155,0.1951,0.5449,0.8155,0.1951,0.5449,0.8315,0.0,0.5556,0.7071,0.0,0.7071,0.8155,0.1951,0.5449,0.7071,0.0,0.7071,0.6935,0.1951,0.6935,0.6935,0.1951,0.6935,0.7071,0.0,0.7071,0.5556,0.0,0.8315,0.6935,0.1951,0.6935,0.5556,0.0,0.8315,0.5449,0.1951,0.8155,0.5449,0.1951,0.8155,0.5556,0.0,0.8315,0.3827,0.0,0.9239,0.5449,0.1951,0.8155,0.3827,0.0,0.9239,0.3753,0.1951,0.9061,0.3753,0.1951,0.9061,0.3827,0.0,0.9239,0.1951,0.0,0.9808,0.3753,0.1951,0.9061,0.1951,0.0,0.9808,0.1913,0.1951,0.9619,0.1913,0.1951,0.9619,0.1951,0.0,0.9808,0.0,0.0,1.0,0.1913,0.1951,0.9619,0.0,0.0,1.0,0.0,0.1951,0.9808,0.0,0.0,1.0,0.0,-0.1951,0.9808,-0.1913,-0.1951,0.9619,0.0,0.0,1.0,-0.1913,-0.1951,0.9619,-0.1951,0.0,0.9808,-0.1951,0.0,0.9808,-0.1913,-0.1951,0.9619,-0.3753,-0.1951,0.9061,-0.1951,0.0,0.9808,-0.3753,-0.1951,0.9061,-0.3827,0.0,0.9239,-0.3827,0.0,0.9239,-0.3753,-0.1951,0.9061,-0.5449,-0.1951,0.8155,-0.3827,0.0,0.9239,-0.5449,-0.1951,0.8155,-0.5556,0.0,0.8315,-0.5556,0.0,0.8315,-0.5449,-0.1951,0.8155,-0.6935,-0.1951,0.6935,-0.5556,0.0,0.8315,-0.6935,-0.1951,0.6935,-0.7071,0.0,0.7071,-0.7071,0.0,0.7071,-0.6935,-0.1951,0.6935,-0.8155,-0.1951,0.5449,-0.7071,0.0,0.7071,-0.8155,-0.1951,0.5449,-0.8315,0.0,0.5556,-0.8315,0.0,0.5556,-0.8155,-0.1951,0.5449,-0.9061,-0.1951,0.3753,-0.8315,0.0,0.5556,-0.9061,-0.1951,0.3753,-0.9239,0.0,0.3827,-0.9239,0.0,0.3827,-0.9061,-0.1951,0.3753,-0.9619,-0.1951,0.1913,-0.9239,0.0,0.3827,-0.9619,-0.1951,0.1913,-0.9808,0.0,0.1951,-0.9808,0.0,0.1951,-0.9619,-0.1951,0.1913,-0.9808,-0.1951,0.0,-0.9808,0.0,0.1951,-0.9808,-0.1951,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-0.9808,-0.1951,0.0,-0.9619,-0.1951,-0.1913,-1.0,0.0,0.0,-0.9619,-0.1951,-0.1913,-0.9808,0.0,-0.1951,-0.9808,0.0,-0.1951,-0.9619,-0.1951,-0.1913,-0.9061,-0.1951,-0.3753,-0.9808,0.0,-0.1951,-0.9061,-0.1951,-0.3753,-0.9239,0.0,-0.3827,-0.9239,0.0,-0.3827,-0.9061,-0.1951,-0.3753,-0.8155,-0.1951,-0.5449,-0.9239,0.0,-0.3827,-0.8155,-0.1951,-0.5449,-0.8315,0.0,-0.5556,-0.8315,0.0,-0.5556,-0.8155,-0.1951,-0.5449,-0.6935,-0.1951,-0.6935,-0.8315,0.0,-0.5556,-0.6935,-0.1951,-0.6935,-0.7071,0.0,-0.7071,-0.7071,0.0,-0.7071,-0.6935,-0.1951,-0.6935,-0.5449,-0.1951,-0.8155,-0.7071,0.0,-0.7071,-0.5449,-0.1951,-0.8155,-0.5556,0.0,-0.8315,-0.5556,0.0,-0.8315,-0.5449,-0.1951,-0.8155,-0.3753,-0.1951,-0.9061,-0.5556,0.0,-0.8315,-0.3753,-0.1951,-0.9061,-0.3827,0.0,-0.9239,-0.3827,0.0,-0.9239,-0.3753,-0.1951,-0.9061,-0.1913,-0.1951,-0.9619,-0.3827,0.0,-0.9239,-0.1913,-0.1951,-0.9619,-0.1951,0.0,-0.9808,-0.1951,0.0,-0.9808,-0.1913,-0.1951,-0.9619,0.0,-0.1951,-0.9808,-0.1951,0.0,-0.9808,0.0,-0.1951,-0.9808,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,-0.1951,-0.9808,0.1913,-0.1951,-0.9619,0.0,0.0,-1.0,0.1913,-0.1951,-0.9619,0.1951,0.0,-0.9808,0.1951,0.0,-0.9808,0.1913,-0.1951,-0.9619,0.3753,-0.1951,-0.9061,0.1951,0.0,-0.9808,0.3753,-0.1951,-0.9061,0.3827,0.0,-0.9239,0.3827,0.0,-0.9239,0.3753,-0.1951,-0.9061,0.5449,-0.1951,-0.8155,0.3827,0.0,-0.9239,0.5449,-0.1951,-0.8155,0.5556,0.0,-0.8315,0.5556,0.0,-0.8315,0.5449,-0.1951,-0.8155,0.6935,-0.1951,-0.6935,0.5556,0.0,-0.8315,0.6935,-0.1951,-0.6935,0.7071,0.0,-0.7071,0.7071,0.0,-0.7071,0.6935,-0.1951,-0.6935,0.8155,-0.1951,-0.5449,0.7071,0.0,-0.7071,0.8155,-0.1951,-0.5449,0.8315,0.0,-0.5556,0.8315,0.0,-0.5556,0.8155,-0.1951,-0.5449,0.9061,-0.1951,-0.3753,0.8315,0.0,-0.5556,0.9061,-0.1951,-0.3753,0.9239,0.0,-0.3827,0.9239,0.0,-0.3827,0.9061,-0.1951,-0.3753,0.9619,-0.1951,-0.1913,0.9239,0.0,-0.3827,0.9619,-0.1951,-0.1913,0.9808,0.0,-0.1951,0.9808,0.0,-0.1951,0.9619,-0.1951,-0.1913,0.9808,-0.1951,0.0,0.9808,0.0,-0.1951,0.9808,-0.1951,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.9808,-0.1951,0.0,0.9619,-0.1951,0.1913,1.0,0.0,0.0,0.9619,-0.1951,0.1913,0.9808,0.0,0.1951,0.9808,0.0,0.1951,0.9619,-0.1951,0.1913,0.9061,-0.1951,0.3753,0.9808,0.0,0.1951,0.9061,-0.1951,0.3753,0.9239,0.0,0.3827,0.9239,0.0,0.3827,0.9061,-0.1951,0.3753,0.8155,-0.1951,0.5449,0.9239,0.0,0.3827,0.8155,-0.1951,0.5449,0.8315,0.0,0.5556,0.8315,0.0,0.5556,0.8155,-0.1951,0.5449,0.6935,-0.1951,0.6935,0.8315,0.0,0.5556,0.6935,-0.1951,0.6935,0.7071,0.0,0.7071,0.7071,0.0,0.7071,0.6935,-0.1951,0.6935,0.5449,-0.1951,0.8155,0.7071,0.0,0.7071,0.5449,-0.1951,0.8155,0.5556,0.0,0.8315,0.5556,0.0,0.8315,0.5449,-0.1951,0.8155,0.3753,-0.1951,0.9061,0.5556,0.0,0.8315,0.3753,-0.1951,0.9061,0.3827,0.0,0.9239,0.3827,0.0,0.9239,0.3753,-0.1951,0.9061,0.1913,-0.1951,0.9619,0.3827,0.0,0.9239,0.1913,-0.1951,0.9619,0.1951,0.0,0.9808,0.1951,0.0,0.9808,0.1913,-0.1951,0.9619,0.0,-0.1951,0.9808,0.1951,0.0,0.9808,0.0,-0.1951,0.9808,0.0,0.0,1.0,0.0,-0.1951,0.9808,0.0,-0.3827,0.9239,-0.1802,-0.3827,0.9061,0.0,-0.1951,0.9808,-0.1802,-0.3827,0.9061,-0.1913,-0.1951,0.9619,-0.1913,-0.1951,0.9619,-0.1802,-0.3827,0.9061,-0.3536,-0.3827,0.8536,-0.1913,-0.1951,0.9619,-0.3536,-0.3827,0.8536,-0.3753,-0.1951,0.9061,-0.3753,-0.1951,0.9061,-0.3536,-0.3827,0.8536,-0.5133,-0.3827,0.7682,-0.3753,-0.1951,0.9061,-0.5133,-0.3827,0.7682,-0.5449,-0.1951,0.8155,-0.5449,-0.1951,0.8155,-0.5133,-0.3827,0.7682,-0.6533,-0.3827,0.6533,-0.5449,-0.1951,0.8155,-0.6533,-0.3827,0.6533,-0.6935,-0.1951,0.6935,-0.6935,-0.1951,0.6935,-0.6533,-0.3827,0.6533,-0.7682,-0.3827,0.5133,-0.6935,-0.1951,0.6935,-0.7682,-0.3827,0.5133,-0.8155,-0.1951,0.5449,-0.8155,-0.1951,0.5449,-0.7682,-0.3827,0.5133,-0.8536,-0.3827,0.3536,-0.8155,-0.1951,0.5449,-0.8536,-0.3827,0.3536,-0.9061,-0.1951,0.3753,-0.9061,-0.1951,0.3753,-0.8536,-0.3827,0.3536,-0.9061,-0.3827,0.1802,-0.9061,-0.1951,0.3753,-0.9061,-0.3827,0.1802,-0.9619,-0.1951,0.1913,-0.9619,-0.1951,0.1913,-0.9061,-0.3827,0.1802,-0.9239,-0.3827,0.0,-0.9619,-0.1951,0.1913,-0.9239,-0.3827,0.0,-0.9808,-0.1951,0.0,-0.9808,-0.1951,0.0,-0.9239,-0.3827,0.0,-0.9061,-0.3827,-0.1802,-0.9808,-0.1951,0.0,-0.9061,-0.3827,-0.1802,-0.9619,-0.1951,-0.1913,-0.9619,-0.1951,-0.1913,-0.9061,-0.3827,-0.1802,-0.8536,-0.3827,-0.3536,-0.9619,-0.1951,-0.1913,-0.8536,-0.3827,-0.3536,-0.9061,-0.1951,-0.3753,-0.9061,-0.1951,-0.3753,-0.8536,-0.3827,-0.3536,-0.7682,-0.3827,-0.5133,-0.9061,-0.1951,-0.3753,-0.7682,-0.3827,-0.5133,-0.8155,-0.1951,-0.5449,-0.8155,-0.1951,-0.5449,-0.7682,-0.3827,-0.5133,-0.6533,-0.3827,-0.6533,-0.8155,-0.1951,-0.5449,-0.6533,-0.3827,-0.6533,-0.6935,-0.1951,-0.6935,-0.6935,-0.1951,-0.6935,-0.6533,-0.3827,-0.6533,-0.5133,-0.3827,-0.7682,-0.6935,-0.1951,-0.6935,-0.5133,-0.3827,-0.7682,-0.5449,-0.1951,-0.8155,-0.5449,-0.1951,-0.8155,-0.5133,-0.3827,-0.7682,-0.3536,-0.3827,-0.8536,-0.5449,-0.1951,-0.8155,-0.3536,-0.3827,-0.8536,-0.3753,-0.1951,-0.9061,-0.3753,-0.1951,-0.9061,-0.3536,-0.3827,-0.8536,-0.1802,-0.3827,-0.9061,-0.3753,-0.1951,-0.9061,-0.1802,-0.3827,-0.9061,-0.1913,-0.1951,-0.9619,-0.1913,-0.1951,-0.9619,-0.1802,-0.3827,-0.9061,0.0,-0.3827,-0.9239,-0.1913,-0.1951,-0.9619,0.0,-0.3827,-0.9239,0.0,-0.1951,-0.9808,0.0,-0.1951,-0.9808,0.0,-0.3827,-0.9239,0.1802,-0.3827,-0.9061,0.0,-0.1951,-0.9808,0.1802,-0.3827,-0.9061,0.1913,-0.1951,-0.9619,0.1913,-0.1951,-0.9619,0.1802,-0.3827,-0.9061,0.3536,-0.3827,-0.8536,0.1913,-0.1951,-0.9619,0.3536,-0.3827,-0.8536,0.3753,-0.1951,-0.9061,0.3753,-0.1951,-0.9061,0.3536,-0.3827,-0.8536,0.5133,-0.3827,-0.7682,0.3753,-0.1951,-0.9061,0.5133,-0.3827,-0.7682,0.5449,-0.1951,-0.8155,0.5449,-0.1951,-0.8155,0.5133,-0.3827,-0.7682,0.6533,-0.3827,-0.6533,0.5449,-0.1951,-0.8155,0.6533,-0.3827,-0.6533,0.6935,-0.1951,-0.6935,0.6935,-0.1951,-0.6935,0.6533,-0.3827,-0.6533,0.7682,-0.3827,-0.5133,0.6935,-0.1951,-0.6935,0.7682,-0.3827,-0.5133,0.8155,-0.1951,-0.5449,0.8155,-0.1951,-0.5449,0.7682,-0.3827,-0.5133,0.8536,-0.3827,-0.3536,0.8155,-0.1951,-0.5449,0.8536,-0.3827,-0.3536,0.9061,-0.1951,-0.3753,0.9061,-0.1951,-0.3753,0.8536,-0.3827,-0.3536,0.9061,-0.3827,-0.1802,0.9061,-0.1951,-0.3753,0.9061,-0.3827,-0.1802,0.9619,-0.1951,-0.1913,0.9619,-0.1951,-0.1913,0.9061,-0.3827,-0.1802,0.9239,-0.3827,0.0,0.9619,-0.1951,-0.1913,0.9239,-0.3827,0.0,0.9808,-0.1951,0.0,0.9808,-0.1951,0.0,0.9239,-0.3827,0.0,0.9061,-0.3827,0.1802,0.9808,-0.1951,0.0,0.9061,-0.3827,0.1802,0.9619,-0.1951,0.1913,0.9619,-0.1951,0.1913,0.9061,-0.3827,0.1802,0.8536,-0.3827,0.3536,0.9619,-0.1951,0.1913,0.8536,-0.3827,0.3536,0.9061,-0.1951,0.3753,0.9061,-0.1951,0.3753,0.8536,-0.3827,0.3536,0.7682,-0.3827,0.5133,0.9061,-0.1951,0.3753,0.7682,-0.3827,0.5133,0.8155,-0.1951,0.5449,0.8155,-0.1951,0.5449,0.7682,-0.3827,0.5133,0.6533,-0.3827,0.6533,0.8155,-0.1951,0.5449,0.6533,-0.3827,0.6533,0.6935,-0.1951,0.6935,0.6935,-0.1951,0.6935,0.6533,-0.3827,0.6533,0.5133,-0.3827,0.7682,0.6935,-0.1951,0.6935,0.5133,-0.3827,0.7682,0.5449,-0.1951,0.8155,0.5449,-0.1951,0.8155,0.5133,-0.3827,0.7682,0.3536,-0.3827,0.8536,0.5449,-0.1951,0.8155,0.3536,-0.3827,0.8536,0.3753,-0.1951,0.9061,0.3753,-0.1951,0.9061,0.3536,-0.3827,0.8536,0.1802,-0.3827,0.9061,0.3753,-0.1951,0.9061,0.1802,-0.3827,0.9061,0.1913,-0.1951,0.9619,0.1913,-0.1951,0.9619,0.1802,-0.3827,0.9061,0.0,-0.3827,0.9239,0.1913,-0.1951,0.9619,0.0,-0.3827,0.9239,0.0,-0.1951,0.9808,0.0,-0.3827,0.9239,0.0,-0.5556,0.8315,-0.1622,-0.5556,0.8155,0.0,-0.3827,0.9239,-0.1622,-0.5556,0.8155,-0.1802,-0.3827,0.9061,-0.1802,-0.3827,0.9061,-0.1622,-0.5556,0.8155,-0.3182,-0.5556,0.7682,-0.1802,-0.3827,0.9061,-0.3182,-0.5556,0.7682,-0.3536,-0.3827,0.8536,-0.3536,-0.3827,0.8536,-0.3182,-0.5556,0.7682,-0.4619,-0.5556,0.6913,-0.3536,-0.3827,0.8536,-0.4619,-0.5556,0.6913,-0.5133,-0.3827,0.7682,-0.5133,-0.3827,0.7682,-0.4619,-0.5556,0.6913,-0.5879,-0.5556,0.5879,-0.5133,-0.3827,0.7682,-0.5879,-0.5556,0.5879,-0.6533,-0.3827,0.6533,-0.6533,-0.3827,0.6533,-0.5879,-0.5556,0.5879,-0.6913,-0.5556,0.4619,-0.6533,-0.3827,0.6533,-0.6913,-0.5556,0.4619,-0.7682,-0.3827,0.5133,-0.7682,-0.3827,0.5133,-0.6913,-0.5556,0.4619,-0.7682,-0.5556,0.3182,-0.7682,-0.3827,0.5133,-0.7682,-0.5556,0.3182,-0.8536,-0.3827,0.3536,-0.8536,-0.3827,0.3536,-0.7682,-0.5556,0.3182,-0.8155,-0.5556,0.1622,-0.8536,-0.3827,0.3536,-0.8155,-0.5556,0.1622,-0.9061,-0.3827,0.1802,-0.9061,-0.3827,0.1802,-0.8155,-0.5556,0.1622,-0.8315,-0.5556,0.0,-0.9061,-0.3827,0.1802,-0.8315,-0.5556,0.0,-0.9239,-0.3827,0.0,-0.9239,-0.3827,0.0,-0.8315,-0.5556,0.0,-0.8155,-0.5556,-0.1622,-0.9239,-0.3827,0.0,-0.8155,-0.5556,-0.1622,-0.9061,-0.3827,-0.1802,-0.9061,-0.3827,-0.1802,-0.8155,-0.5556,-0.1622,-0.7682,-0.5556,-0.3182,-0.9061,-0.3827,-0.1802,-0.7682,-0.5556,-0.3182,-0.8536,-0.3827,-0.3536,-0.8536,-0.3827,-0.3536,-0.7682,-0.5556,-0.3182,-0.6913,-0.5556,-0.4619,-0.8536,-0.3827,-0.3536,-0.6913,-0.5556,-0.4619,-0.7682,-0.3827,-0.5133,-0.7682,-0.3827,-0.5133,-0.6913,-0.5556,-0.4619,-0.5879,-0.5556,-0.5879,-0.7682,-0.3827,-0.5133,-0.5879,-0.5556,-0.5879,-0.6533,-0.3827,-0.6533,-0.6533,-0.3827,-0.6533,-0.5879,-0.5556,-0.5879,-0.4619,-0.5556,-0.6913,-0.6533,-0.3827,-0.6533,-0.4619,-0.5556,-0.6913,-0.5133,-0.3827,-0.7682,-0.5133,-0.3827,-0.7682,-0.4619,-0.5556,-0.6913,-0.3182,-0.5556,-0.7682,-0.5133,-0.3827,-0.7682,-0.3182,-0.5556,-0.7682,-0.3536,-0.3827,-0.8536,-0.3536,-0.3827,-0.8536,-0.3182,-0.5556,-0.7682,-0.1622,-0.5556,-0.8155,-0.3536,-0.3827,-0.8536,-0.1622,-0.5556,-0.8155,-0.1802,-0.3827,-0.9061,-0.1802,-0.3827,-0.9061,-0.1622,-0.5556,-0.8155,0.0,-0.5556,-0.8315,-0.1802,-0.3827,-0.9061,0.0,-0.5556,-0.8315,0.0,-0.3827,-0.9239,0.0,-0.3827,-0.9239,0.0,-0.5556,-0.8315,0.1622,-0.5556,-0.8155,0.0,-0.3827,-0.9239,0.1622,-0.5556,-0.8155,0.1802,-0.3827,-0.9061,0.1802,-0.3827,-0.9061,0.1622,-0.5556,-0.8155,0.3182,-0.5556,-0.7682,0.1802,-0.3827,-0.9061,0.3182,-0.5556,-0.7682,0.3536,-0.3827,-0.8536,0.3536,-0.3827,-0.8536,0.3182,-0.5556,-0.7682,0.4619,-0.5556,-0.6913,0.3536,-0.3827,-0.8536,0.4619,-0.5556,-0.6913,0.5133,-0.3827,-0.7682,0.5133,-0.3827,-0.7682,0.4619,-0.5556,-0.6913,0.5879,-0.5556,-0.5879,0.5133,-0.3827,-0.7682,0.5879,-0.5556,-0.5879,0.6533,-0.3827,-0.6533,0.6533,-0.3827,-0.6533,0.5879,-0.5556,-0.5879,0.6913,-0.5556,-0.4619,0.6533,-0.3827,-0.6533,0.6913,-0.5556,-0.4619,0.7682,-0.3827,-0.5133,0.7682,-0.3827,-0.5133,0.6913,-0.5556,-0.4619,0.7682,-0.5556,-0.3182,0.7682,-0.3827,-0.5133,0.7682,-0.5556,-0.3182,0.8536,-0.3827,-0.3536,0.8536,-0.3827,-0.3536,0.7682,-0.5556,-0.3182,0.8155,-0.5556,-0.1622,0.8536,-0.3827,-0.3536,0.8155,-0.5556,-0.1622,0.9061,-0.3827,-0.1802,0.9061,-0.3827,-0.1802,0.8155,-0.5556,-0.1622,0.8315,-0.5556,0.0,0.9061,-0.3827,-0.1802,0.8315,-0.5556,0.0,0.9239,-0.3827,0.0,0.9239,-0.3827,0.0,0.8315,-0.5556,0.0,0.8155,-0.5556,0.1622,0.9239,-0.3827,0.0,0.8155,-0.5556,0.1622,0.9061,-0.3827,0.1802,0.9061,-0.3827,0.1802,0.8155,-0.5556,0.1622,0.7682,-0.5556,0.3182,0.9061,-0.3827,0.1802,0.7682,-0.5556,0.3182,0.8536,-0.3827,0.3536,0.8536,-0.3827,0.3536,0.7682,-0.5556,0.3182,0.6913,-0.5556,0.4619,0.8536,-0.3827,0.3536,0.6913,-0.5556,0.4619,0.7682,-0.3827,0.5133,0.7682,-0.3827,0.5133,0.6913,-0.5556,0.4619,0.5879,-0.5556,0.5879,0.7682,-0.3827,0.5133,0.5879,-0.5556,0.5879,0.6533,-0.3827,0.6533,0.6533,-0.3827,0.6533,0.5879,-0.5556,0.5879,0.4619,-0.5556,0.6913,0.6533,-0.3827,0.6533,0.4619,-0.5556,0.6913,0.5133,-0.3827,0.7682,0.5133,-0.3827,0.7682,0.4619,-0.5556,0.6913,0.3182,-0.5556,0.7682,0.5133,-0.3827,0.7682,0.3182,-0.5556,0.7682,0.3536,-0.3827,0.8536,0.3536,-0.3827,0.8536,0.3182,-0.5556,0.7682,0.1622,-0.5556,0.8155,0.3536,-0.3827,0.8536,0.1622,-0.5556,0.8155,0.1802,-0.3827,0.9061,0.1802,-0.3827,0.9061,0.1622,-0.5556,0.8155,0.0,-0.5556,0.8315,0.1802,-0.3827,0.9061,0.0,-0.5556,0.8315,0.0,-0.3827,0.9239,0.0,-0.5556,0.8315,0.0,-0.7071,0.7071,-0.1379,-0.7071,0.6935,0.0,-0.5556,0.8315,-0.1379,-0.7071,0.6935,-0.1622,-0.5556,0.8155,-0.1622,-0.5556,0.8155,-0.1379,-0.7071,0.6935,-0.2706,-0.7071,0.6533,-0.1622,-0.5556,0.8155,-0.2706,-0.7071,0.6533,-0.3182,-0.5556,0.7682,-0.3182,-0.5556,0.7682,-0.2706,-0.7071,0.6533,-0.3928,-0.7071,0.5879,-0.3182,-0.5556,0.7682,-0.3928,-0.7071,0.5879,-0.4619,-0.5556,0.6913,-0.4619,-0.5556,0.6913,-0.3928,-0.7071,0.5879,-0.5,-0.7071,0.5,-0.4619,-0.5556,0.6913,-0.5,-0.7071,0.5,-0.5879,-0.5556,0.5879,-0.5879,-0.5556,0.5879,-0.5,-0.7071,0.5,-0.5879,-0.7071,0.3928,-0.5879,-0.5556,0.5879,-0.5879,-0.7071,0.3928,-0.6913,-0.5556,0.4619,-0.6913,-0.5556,0.4619,-0.5879,-0.7071,0.3928,-0.6533,-0.7071,0.2706,-0.6913,-0.5556,0.4619,-0.6533,-0.7071,0.2706,-0.7682,-0.5556,0.3182,-0.7682,-0.5556,0.3182,-0.6533,-0.7071,0.2706,-0.6935,-0.7071,0.1379,-0.7682,-0.5556,0.3182,-0.6935,-0.7071,0.1379,-0.8155,-0.5556,0.1622,-0.8155,-0.5556,0.1622,-0.6935,-0.7071,0.1379,-0.7071,-0.7071,0.0,-0.8155,-0.5556,0.1622,-0.7071,-0.7071,0.0,-0.8315,-0.5556,0.0,-0.8315,-0.5556,0.0,-0.7071,-0.7071,0.0,-0.6935,-0.7071,-0.1379,-0.8315,-0.5556,0.0,-0.6935,-0.7071,-0.1379,-0.8155,-0.5556,-0.1622,-0.8155,-0.5556,-0.1622,-0.6935,-0.7071,-0.1379,-0.6533,-0.7071,-0.2706,-0.8155,-0.5556,-0.1622,-0.6533,-0.7071,-0.2706,-0.7682,-0.5556,-0.3182,-0.7682,-0.5556,-0.3182,-0.6533,-0.7071,-0.2706,-0.5879,-0.7071,-0.3928,-0.7682,-0.5556,-0.3182,-0.5879,-0.7071,-0.3928,-0.6913,-0.5556,-0.4619,-0.6913,-0.5556,-0.4619,-0.5879,-0.7071,-0.3928,-0.5,-0.7071,-0.5,-0.6913,-0.5556,-0.4619,-0.5,-0.7071,-0.5,-0.5879,-0.5556,-0.5879,-0.5879,-0.5556,-0.5879,-0.5,-0.7071,-0.5,-0.3928,-0.7071,-0.5879,-0.5879,-0.5556,-0.5879,-0.3928,-0.7071,-0.5879,-0.4619,-0.5556,-0.6913,-0.4619,-0.5556,-0.6913,-0.3928,-0.7071,-0.5879,-0.2706,-0.7071,-0.6533,-0.4619,-0.5556,-0.6913,-0.2706,-0.7071,-0.6533,-0.3182,-0.5556,-0.7682,-0.3182,-0.5556,-0.7682,-0.2706,-0.7071,-0.6533,-0.1379,-0.7071,-0.6935,-0.3182,-0.5556,-0.7682,-0.1379,-0.7071,-0.6935,-0.1622,-0.5556,-0.8155,-0.1622,-0.5556,-0.8155,-0.1379,-0.7071,-0.6935,0.0,-0.7071,-0.7071,-0.1622,-0.5556,-0.8155,0.0,-0.7071,-0.7071,0.0,-0.5556,-0.8315,0.0,-0.5556,-0.8315,0.0,-0.7071,-0.7071,0.138,-0.7071,-0.6935,0.0,-0.5556,-0.8315,0.138,-0.7071,-0.6935,0.1622,-0.5556,-0.8155,0.1622,-0.5556,-0.8155,0.138,-0.7071,-0.6935,0.2706,-0.7071,-0.6533,0.1622,-0.5556,-0.8155,0.2706,-0.7071,-0.6533,0.3182,-0.5556,-0.7682,0.3182,-0.5556,-0.7682,0.2706,-0.7071,-0.6533,0.3928,-0.7071,-0.5879,0.3182,-0.5556,-0.7682,0.3928,-0.7071,-0.5879,0.4619,-0.5556,-0.6913,0.4619,-0.5556,-0.6913,0.3928,-0.7071,-0.5879,0.5,-0.7071,-0.5,0.4619,-0.5556,-0.6913,0.5,-0.7071,-0.5,0.5879,-0.5556,-0.5879,0.5879,-0.5556,-0.5879,0.5,-0.7071,-0.5,0.5879,-0.7071,-0.3928,0.5879,-0.5556,-0.5879,0.5879,-0.7071,-0.3928,0.6913,-0.5556,-0.4619,0.6913,-0.5556,-0.4619,0.5879,-0.7071,-0.3928,0.6533,-0.7071,-0.2706,0.6913,-0.5556,-0.4619,0.6533,-0.7071,-0.2706,0.7682,-0.5556,-0.3182,0.7682,-0.5556,-0.3182,0.6533,-0.7071,-0.2706,0.6935,-0.7071,-0.1379,0.7682,-0.5556,-0.3182,0.6935,-0.7071,-0.1379,0.8155,-0.5556,-0.1622,0.8155,-0.5556,-0.1622,0.6935,-0.7071,-0.1379,0.7071,-0.7071,0.0,0.8155,-0.5556,-0.1622,0.7071,-0.7071,0.0,0.8315,-0.5556,0.0,0.8315,-0.5556,0.0,0.7071,-0.7071,0.0,0.6935,-0.7071,0.138,0.8315,-0.5556,0.0,0.6935,-0.7071,0.138,0.8155,-0.5556,0.1622,0.8155,-0.5556,0.1622,0.6935,-0.7071,0.138,0.6533,-0.7071,0.2706,0.8155,-0.5556,0.1622,0.6533,-0.7071,0.2706,0.7682,-0.5556,0.3182,0.7682,-0.5556,0.3182,0.6533,-0.7071,0.2706,0.5879,-0.7071,0.3928,0.7682,-0.5556,0.3182,0.5879,-0.7071,0.3928,0.6913,-0.5556,0.4619,0.6913,-0.5556,0.4619,0.5879,-0.7071,0.3928,0.5,-0.7071,0.5,0.6913,-0.5556,0.4619,0.5,-0.7071,0.5,0.5879,-0.5556,0.5879,0.5879,-0.5556,0.5879,0.5,-0.7071,0.5,0.3928,-0.7071,0.5879,0.5879,-0.5556,0.5879,0.3928,-0.7071,0.5879,0.4619,-0.5556,0.6913,0.4619,-0.5556,0.6913,0.3928,-0.7071,0.5879,0.2706,-0.7071,0.6533,0.4619,-0.5556,0.6913,0.2706,-0.7071,0.6533,0.3182,-0.5556,0.7682,0.3182,-0.5556,0.7682,0.2706,-0.7071,0.6533,0.1379,-0.7071,0.6935,0.3182,-0.5556,0.7682,0.1379,-0.7071,0.6935,0.1622,-0.5556,0.8155,0.1622,-0.5556,0.8155,0.1379,-0.7071,0.6935,0.0,-0.7071,0.7071,0.1622,-0.5556,0.8155,0.0,-0.7071,0.7071,0.0,-0.5556,0.8315,0.0,-0.7071,0.7071,0.0,-0.8315,0.5556,-0.1084,-0.8315,0.5449,0.0,-0.7071,0.7071,-0.1084,-0.8315,0.5449,-0.1379,-0.7071,0.6935,-0.1379,-0.7071,0.6935,-0.1084,-0.8315,0.5449,-0.2126,-0.8315,0.5133,-0.1379,-0.7071,0.6935,-0.2126,-0.8315,0.5133,-0.2706,-0.7071,0.6533,-0.2706,-0.7071,0.6533,-0.2126,-0.8315,0.5133,-0.3087,-0.8315,0.4619,-0.2706,-0.7071,0.6533,-0.3087,-0.8315,0.4619,-0.3928,-0.7071,0.5879,-0.3928,-0.7071,0.5879,-0.3087,-0.8315,0.4619,-0.3928,-0.8315,0.3928,-0.3928,-0.7071,0.5879,-0.3928,-0.8315,0.3928,-0.5,-0.7071,0.5,-0.5,-0.7071,0.5,-0.3928,-0.8315,0.3928,-0.4619,-0.8315,0.3087,-0.5,-0.7071,0.5,-0.4619,-0.8315,0.3087,-0.5879,-0.7071,0.3928,-0.5879,-0.7071,0.3928,-0.4619,-0.8315,0.3087,-0.5133,-0.8315,0.2126,-0.5879,-0.7071,0.3928,-0.5133,-0.8315,0.2126,-0.6533,-0.7071,0.2706,-0.6533,-0.7071,0.2706,-0.5133,-0.8315,0.2126,-0.5449,-0.8315,0.1084,-0.6533,-0.7071,0.2706,-0.5449,-0.8315,0.1084,-0.6935,-0.7071,0.1379,-0.6935,-0.7071,0.1379,-0.5449,-0.8315,0.1084,-0.5556,-0.8315,0.0,-0.6935,-0.7071,0.1379,-0.5556,-0.8315,0.0,-0.7071,-0.7071,0.0,-0.7071,-0.7071,0.0,-0.5556,-0.8315,0.0,-0.5449,-0.8315,-0.1084,-0.7071,-0.7071,0.0,-0.5449,-0.8315,-0.1084,-0.6935,-0.7071,-0.1379,-0.6935,-0.7071,-0.1379,-0.5449,-0.8315,-0.1084,-0.5133,-0.8315,-0.2126,-0.6935,-0.7071,-0.1379,-0.5133,-0.8315,-0.2126,-0.6533,-0.7071,-0.2706,-0.6533,-0.7071,-0.2706,-0.5133,-0.8315,-0.2126,-0.4619,-0.8315,-0.3087,-0.6533,-0.7071,-0.2706,-0.4619,-0.8315,-0.3087,-0.5879,-0.7071,-0.3928,-0.5879,-0.7071,-0.3928,-0.4619,-0.8315,-0.3087,-0.3928,-0.8315,-0.3928,-0.5879,-0.7071,-0.3928,-0.3928,-0.8315,-0.3928,-0.5,-0.7071,-0.5,-0.5,-0.7071,-0.5,-0.3928,-0.8315,-0.3928,-0.3087,-0.8315,-0.4619,-0.5,-0.7071,-0.5,-0.3087,-0.8315,-0.4619,-0.3928,-0.7071,-0.5879,-0.3928,-0.7071,-0.5879,-0.3087,-0.8315,-0.4619,-0.2126,-0.8315,-0.5133,-0.3928,-0.7071,-0.5879,-0.2126,-0.8315,-0.5133,-0.2706,-0.7071,-0.6533,-0.2706,-0.7071,-0.6533,-0.2126,-0.8315,-0.5133,-0.1084,-0.8315,-0.5449,-0.2706,-0.7071,-0.6533,-0.1084,-0.8315,-0.5449,-0.1379,-0.7071,-0.6935,-0.1379,-0.7071,-0.6935,-0.1084,-0.8315,-0.5449,0.0,-0.8315,-0.5556,-0.1379,-0.7071,-0.6935,0.0,-0.8315,-0.5556,0.0,-0.7071,-0.7071,0.0,-0.7071,-0.7071,0.0,-0.8315,-0.5556,0.1084,-0.8315,-0.5449,0.0,-0.7071,-0.7071,0.1084,-0.8315,-0.5449,0.138,-0.7071,-0.6935,0.138,-0.7071,-0.6935,0.1084,-0.8315,-0.5449,0.2126,-0.8315,-0.5133,0.138,-0.7071,-0.6935,0.2126,-0.8315,-0.5133,0.2706,-0.7071,-0.6533,0.2706,-0.7071,-0.6533,0.2126,-0.8315,-0.5133,0.3087,-0.8315,-0.4619,0.2706,-0.7071,-0.6533,0.3087,-0.8315,-0.4619,0.3928,-0.7071,-0.5879,0.3928,-0.7071,-0.5879,0.3087,-0.8315,-0.4619,0.3928,-0.8315,-0.3928,0.3928,-0.7071,-0.5879,0.3928,-0.8315,-0.3928,0.5,-0.7071,-0.5,0.5,-0.7071,-0.5,0.3928,-0.8315,-0.3928,0.4619,-0.8315,-0.3087,0.5,-0.7071,-0.5,0.4619,-0.8315,-0.3087,0.5879,-0.7071,-0.3928,0.5879,-0.7071,-0.3928,0.4619,-0.8315,-0.3087,0.5133,-0.8315,-0.2126,0.5879,-0.7071,-0.3928,0.5133,-0.8315,-0.2126,0.6533,-0.7071,-0.2706,0.6533,-0.7071,-0.2706,0.5133,-0.8315,-0.2126,0.5449,-0.8315,-0.1084,0.6533,-0.7071,-0.2706,0.5449,-0.8315,-0.1084,0.6935,-0.7071,-0.1379,0.6935,-0.7071,-0.1379,0.5449,-0.8315,-0.1084,0.5556,-0.8315,0.0,0.6935,-0.7071,-0.1379,0.5556,-0.8315,0.0,0.7071,-0.7071,0.0,0.7071,-0.7071,0.0,0.5556,-0.8315,0.0,0.5449,-0.8315,0.1084,0.7071,-0.7071,0.0,0.5449,-0.8315,0.1084,0.6935,-0.7071,0.138,0.6935,-0.7071,0.138,0.5449,-0.8315,0.1084,0.5133,-0.8315,0.2126,0.6935,-0.7071,0.138,0.5133,-0.8315,0.2126,0.6533,-0.7071,0.2706,0.6533,-0.7071,0.2706,0.5133,-0.8315,0.2126,0.4619,-0.8315,0.3087,0.6533,-0.7071,0.2706,0.4619,-0.8315,0.3087,0.5879,-0.7071,0.3928,0.5879,-0.7071,0.3928,0.4619,-0.8315,0.3087,0.3928,-0.8315,0.3928,0.5879,-0.7071,0.3928,0.3928,-0.8315,0.3928,0.5,-0.7071,0.5,0.5,-0.7071,0.5,0.3928,-0.8315,0.3928,0.3087,-0.8315,0.4619,0.5,-0.7071,0.5,0.3087,-0.8315,0.4619,0.3928,-0.7071,0.5879,0.3928,-0.7071,0.5879,0.3087,-0.8315,0.4619,0.2126,-0.8315,0.5133,0.3928,-0.7071,0.5879,0.2126,-0.8315,0.5133,0.2706,-0.7071,0.6533,0.2706,-0.7071,0.6533,0.2126,-0.8315,0.5133,0.1084,-0.8315,0.5449,0.2706,-0.7071,0.6533,0.1084,-0.8315,0.5449,0.1379,-0.7071,0.6935,0.1379,-0.7071,0.6935,0.1084,-0.8315,0.5449,0.0,-0.8315,0.5556,0.1379,-0.7071,0.6935,0.0,-0.8315,0.5556,0.0,-0.7071,0.7071,0.0,-0.8315,0.5556,0.0,-0.9239,0.3827,-0.0747,-0.9239,0.3753,0.0,-0.8315,0.5556,-0.0747,-0.9239,0.3753,-0.1084,-0.8315,0.5449,-0.1084,-0.8315,0.5449,-0.0747,-0.9239,0.3753,-0.1464,-0.9239,0.3536,-0.1084,-0.8315,0.5449,-0.1464,-0.9239,0.3536,-0.2126,-0.8315,0.5133,-0.2126,-0.8315,0.5133,-0.1464,-0.9239,0.3536,-0.2126,-0.9239,0.3182,-0.2126,-0.8315,0.5133,-0.2126,-0.9239,0.3182,-0.3087,-0.8315,0.4619,-0.3087,-0.8315,0.4619,-0.2126,-0.9239,0.3182,-0.2706,-0.9239,0.2706,-0.3087,-0.8315,0.4619,-0.2706,-0.9239,0.2706,-0.3928,-0.8315,0.3928,-0.3928,-0.8315,0.3928,-0.2706,-0.9239,0.2706,-0.3182,-0.9239,0.2126,-0.3928,-0.8315,0.3928,-0.3182,-0.9239,0.2126,-0.4619,-0.8315,0.3087,-0.4619,-0.8315,0.3087,-0.3182,-0.9239,0.2126,-0.3536,-0.9239,0.1464,-0.4619,-0.8315,0.3087,-0.3536,-0.9239,0.1464,-0.5133,-0.8315,0.2126,-0.5133,-0.8315,0.2126,-0.3536,-0.9239,0.1464,-0.3753,-0.9239,0.0747,-0.5133,-0.8315,0.2126,-0.3753,-0.9239,0.0747,-0.5449,-0.8315,0.1084,-0.5449,-0.8315,0.1084,-0.3753,-0.9239,0.0747,-0.3827,-0.9239,0.0,-0.5449,-0.8315,0.1084,-0.3827,-0.9239,0.0,-0.5556,-0.8315,0.0,-0.5556,-0.8315,0.0,-0.3827,-0.9239,0.0,-0.3753,-0.9239,-0.0747,-0.5556,-0.8315,0.0,-0.3753,-0.9239,-0.0747,-0.5449,-0.8315,-0.1084,-0.5449,-0.8315,-0.1084,-0.3753,-0.9239,-0.0747,-0.3536,-0.9239,-0.1464,-0.5449,-0.8315,-0.1084,-0.3536,-0.9239,-0.1464,-0.5133,-0.8315,-0.2126,-0.5133,-0.8315,-0.2126,-0.3536,-0.9239,-0.1464,-0.3182,-0.9239,-0.2126,-0.5133,-0.8315,-0.2126,-0.3182,-0.9239,-0.2126,-0.4619,-0.8315,-0.3087,-0.4619,-0.8315,-0.3087,-0.3182,-0.9239,-0.2126,-0.2706,-0.9239,-0.2706,-0.4619,-0.8315,-0.3087,-0.2706,-0.9239,-0.2706,-0.3928,-0.8315,-0.3928,-0.3928,-0.8315,-0.3928,-0.2706,-0.9239,-0.2706,-0.2126,-0.9239,-0.3182,-0.3928,-0.8315,-0.3928,-0.2126,-0.9239,-0.3182,-0.3087,-0.8315,-0.4619,-0.3087,-0.8315,-0.4619,-0.2126,-0.9239,-0.3182,-0.1464,-0.9239,-0.3536,-0.3087,-0.8315,-0.4619,-0.1464,-0.9239,-0.3536,-0.2126,-0.8315,-0.5133,-0.2126,-0.8315,-0.5133,-0.1464,-0.9239,-0.3536,-0.0747,-0.9239,-0.3753,-0.2126,-0.8315,-0.5133,-0.0747,-0.9239,-0.3753,-0.1084,-0.8315,-0.5449,-0.1084,-0.8315,-0.5449,-0.0747,-0.9239,-0.3753,0.0,-0.9239,-0.3827,-0.1084,-0.8315,-0.5449,0.0,-0.9239,-0.3827,0.0,-0.8315,-0.5556,0.0,-0.8315,-0.5556,0.0,-0.9239,-0.3827,0.0747,-0.9239,-0.3753,0.0,-0.8315,-0.5556,0.0747,-0.9239,-0.3753,0.1084,-0.8315,-0.5449,0.1084,-0.8315,-0.5449,0.0747,-0.9239,-0.3753,0.1464,-0.9239,-0.3536,0.1084,-0.8315,-0.5449,0.1464,-0.9239,-0.3536,0.2126,-0.8315,-0.5133,0.2126,-0.8315,-0.5133,0.1464,-0.9239,-0.3536,0.2126,-0.9239,-0.3182,0.2126,-0.8315,-0.5133,0.2126,-0.9239,-0.3182,0.3087,-0.8315,-0.4619,0.3087,-0.8315,-0.4619,0.2126,-0.9239,-0.3182,0.2706,-0.9239,-0.2706,0.3087,-0.8315,-0.4619,0.2706,-0.9239,-0.2706,0.3928,-0.8315,-0.3928,0.3928,-0.8315,-0.3928,0.2706,-0.9239,-0.2706,0.3182,-0.9239,-0.2126,0.3928,-0.8315,-0.3928,0.3182,-0.9239,-0.2126,0.4619,-0.8315,-0.3087,0.4619,-0.8315,-0.3087,0.3182,-0.9239,-0.2126,0.3536,-0.9239,-0.1464,0.4619,-0.8315,-0.3087,0.3536,-0.9239,-0.1464,0.5133,-0.8315,-0.2126,0.5133,-0.8315,-0.2126,0.3536,-0.9239,-0.1464,0.3753,-0.9239,-0.0747,0.5133,-0.8315,-0.2126,0.3753,-0.9239,-0.0747,0.5449,-0.8315,-0.1084,0.5449,-0.8315,-0.1084,0.3753,-0.9239,-0.0747,0.3827,-0.9239,0.0,0.5449,-0.8315,-0.1084,0.3827,-0.9239,0.0,0.5556,-0.8315,0.0,0.5556,-0.8315,0.0,0.3827,-0.9239,0.0,0.3753,-0.9239,0.0747,0.5556,-0.8315,0.0,0.3753,-0.9239,0.0747,0.5449,-0.8315,0.1084,0.5449,-0.8315,0.1084,0.3753,-0.9239,0.0747,0.3536,-0.9239,0.1464,0.5449,-0.8315,0.1084,0.3536,-0.9239,0.1464,0.5133,-0.8315,0.2126,0.5133,-0.8315,0.2126,0.3536,-0.9239,0.1464,0.3182,-0.9239,0.2126,0.5133,-0.8315,0.2126,0.3182,-0.9239,0.2126,0.4619,-0.8315,0.3087,0.4619,-0.8315,0.3087,0.3182,-0.9239,0.2126,0.2706,-0.9239,0.2706,0.4619,-0.8315,0.3087,0.2706,-0.9239,0.2706,0.3928,-0.8315,0.3928,0.3928,-0.8315,0.3928,0.2706,-0.9239,0.2706,0.2126,-0.9239,0.3182,0.3928,-0.8315,0.3928,0.2126,-0.9239,0.3182,0.3087,-0.8315,0.4619,0.3087,-0.8315,0.4619,0.2126,-0.9239,0.3182,0.1464,-0.9239,0.3536,0.3087,-0.8315,0.4619,0.1464,-0.9239,0.3536,0.2126,-0.8315,0.5133,0.2126,-0.8315,0.5133,0.1464,-0.9239,0.3536,0.0747,-0.9239,0.3753,0.2126,-0.8315,0.5133,0.0747,-0.9239,0.3753,0.1084,-0.8315,0.5449,0.1084,-0.8315,0.5449,0.0747,-0.9239,0.3753,0.0,-0.9239,0.3827,0.1084,-0.8315,0.5449,0.0,-0.9239,0.3827,0.0,-0.8315,0.5556,0.0,-0.9239,0.3827,0.0,-0.9808,0.1951,-0.0381,-0.9808,0.1913,0.0,-0.9239,0.3827,-0.0381,-0.9808,0.1913,-0.0747,-0.9239,0.3753,-0.0747,-0.9239,0.3753,-0.0381,-0.9808,0.1913,-0.0747,-0.9808,0.1802,-0.0747,-0.9239,0.3753,-0.0747,-0.9808,0.1802,-0.1464,-0.9239,0.3536,-0.1464,-0.9239,0.3536,-0.0747,-0.9808,0.1802,-0.1084,-0.9808,0.1622,-0.1464,-0.9239,0.3536,-0.1084,-0.9808,0.1622,-0.2126,-0.9239,0.3182,-0.2126,-0.9239,0.3182,-0.1084,-0.9808,0.1622,-0.1379,-0.9808,0.1379,-0.2126,-0.9239,0.3182,-0.1379,-0.9808,0.1379,-0.2706,-0.9239,0.2706,-0.2706,-0.9239,0.2706,-0.1379,-0.9808,0.1379,-0.1622,-0.9808,0.1084,-0.2706,-0.9239,0.2706,-0.1622,-0.9808,0.1084,-0.3182,-0.9239,0.2126,-0.3182,-0.9239,0.2126,-0.1622,-0.9808,0.1084,-0.1802,-0.9808,0.0747,-0.3182,-0.9239,0.2126,-0.1802,-0.9808,0.0747,-0.3536,-0.9239,0.1464,-0.3536,-0.9239,0.1464,-0.1802,-0.9808,0.0747,-0.1913,-0.9808,0.0381,-0.3536,-0.9239,0.1464,-0.1913,-0.9808,0.0381,-0.3753,-0.9239,0.0747,-0.3753,-0.9239,0.0747,-0.1913,-0.9808,0.0381,-0.1951,-0.9808,0.0,-0.3753,-0.9239,0.0747,-0.1951,-0.9808,0.0,-0.3827,-0.9239,0.0,-0.3827,-0.9239,0.0,-0.1951,-0.9808,0.0,-0.1913,-0.9808,-0.0381,-0.3827,-0.9239,0.0,-0.1913,-0.9808,-0.0381,-0.3753,-0.9239,-0.0747,-0.3753,-0.9239,-0.0747,-0.1913,-0.9808,-0.0381,-0.1802,-0.9808,-0.0747,-0.3753,-0.9239,-0.0747,-0.1802,-0.9808,-0.0747,-0.3536,-0.9239,-0.1464,-0.3536,-0.9239,-0.1464,-0.1802,-0.9808,-0.0747,-0.1622,-0.9808,-0.1084,-0.3536,-0.9239,-0.1464,-0.1622,-0.9808,-0.1084,-0.3182,-0.9239,-0.2126,-0.3182,-0.9239,-0.2126,-0.1622,-0.9808,-0.1084,-0.1379,-0.9808,-0.1379,-0.3182,-0.9239,-0.2126,-0.1379,-0.9808,-0.1379,-0.2706,-0.9239,-0.2706,-0.2706,-0.9239,-0.2706,-0.1379,-0.9808,-0.1379,-0.1084,-0.9808,-0.1622,-0.2706,-0.9239,-0.2706,-0.1084,-0.9808,-0.1622,-0.2126,-0.9239,-0.3182,-0.2126,-0.9239,-0.3182,-0.1084,-0.9808,-0.1622,-0.0747,-0.9808,-0.1802,-0.2126,-0.9239,-0.3182,-0.0747,-0.9808,-0.1802,-0.1464,-0.9239,-0.3536,-0.1464,-0.9239,-0.3536,-0.0747,-0.9808,-0.1802,-0.0381,-0.9808,-0.1913,-0.1464,-0.9239,-0.3536,-0.0381,-0.9808,-0.1913,-0.0747,-0.9239,-0.3753,-0.0747,-0.9239,-0.3753,-0.0381,-0.9808,-0.1913,0.0,-0.9808,-0.1951,-0.0747,-0.9239,-0.3753,0.0,-0.9808,-0.1951,0.0,-0.9239,-0.3827,0.0,-0.9239,-0.3827,0.0,-0.9808,-0.1951,0.0381,-0.9808,-0.1913,0.0,-0.9239,-0.3827,0.0381,-0.9808,-0.1913,0.0747,-0.9239,-0.3753,0.0747,-0.9239,-0.3753,0.0381,-0.9808,-0.1913,0.0747,-0.9808,-0.1802,0.0747,-0.9239,-0.3753,0.0747,-0.9808,-0.1802,0.1464,-0.9239,-0.3536,0.1464,-0.9239,-0.3536,0.0747,-0.9808,-0.1802,0.1084,-0.9808,-0.1622,0.1464,-0.9239,-0.3536,0.1084,-0.9808,-0.1622,0.2126,-0.9239,-0.3182,0.2126,-0.9239,-0.3182,0.1084,-0.9808,-0.1622,0.1379,-0.9808,-0.1379,0.2126,-0.9239,-0.3182,0.1379,-0.9808,-0.1379,0.2706,-0.9239,-0.2706,0.2706,-0.9239,-0.2706,0.1379,-0.9808,-0.1379,0.1622,-0.9808,-0.1084,0.2706,-0.9239,-0.2706,0.1622,-0.9808,-0.1084,0.3182,-0.9239,-0.2126,0.3182,-0.9239,-0.2126,0.1622,-0.9808,-0.1084,0.1802,-0.9808,-0.0747,0.3182,-0.9239,-0.2126,0.1802,-0.9808,-0.0747,0.3536,-0.9239,-0.1464,0.3536,-0.9239,-0.1464,0.1802,-0.9808,-0.0747,0.1913,-0.9808,-0.0381,0.3536,-0.9239,-0.1464,0.1913,-0.9808,-0.0381,0.3753,-0.9239,-0.0747,0.3753,-0.9239,-0.0747,0.1913,-0.9808,-0.0381,0.1951,-0.9808,0.0,0.3753,-0.9239,-0.0747,0.1951,-0.9808,0.0,0.3827,-0.9239,0.0,0.3827,-0.9239,0.0,0.1951,-0.9808,0.0,0.1913,-0.9808,0.0381,0.3827,-0.9239,0.0,0.1913,-0.9808,0.0381,0.3753,-0.9239,0.0747,0.3753,-0.9239,0.0747,0.1913,-0.9808,0.0381,0.1802,-0.9808,0.0747,0.3753,-0.9239,0.0747,0.1802,-0.9808,0.0747,0.3536,-0.9239,0.1464,0.3536,-0.9239,0.1464,0.1802,-0.9808,0.0747,0.1622,-0.9808,0.1084,0.3536,-0.9239,0.1464,0.1622,-0.9808,0.1084,0.3182,-0.9239,0.2126,0.3182,-0.9239,0.2126,0.1622,-0.9808,0.1084,0.1379,-0.9808,0.1379,0.3182,-0.9239,0.2126,0.1379,-0.9808,0.1379,0.2706,-0.9239,0.2706,0.2706,-0.9239,0.2706,0.1379,-0.9808,0.1379,0.1084,-0.9808,0.1622,0.2706,-0.9239,0.2706,0.1084,-0.9808,0.1622,0.2126,-0.9239,0.3182,0.2126,-0.9239,0.3182,0.1084,-0.9808,0.1622,0.0747,-0.9808,0.1802,0.2126,-0.9239,0.3182,0.0747,-0.9808,0.1802,0.1464,-0.9239,0.3536,0.1464,-0.9239,0.3536,0.0747,-0.9808,0.1802,0.0381,-0.9808,0.1913,0.1464,-0.9239,0.3536,0.0381,-0.9808,0.1913,0.0747,-0.9239,0.3753,0.0747,-0.9239,0.3753,0.0381,-0.9808,0.1913,0.0,-0.9808,0.1951,0.0747,-0.9239,0.3753,0.0,-0.9808,0.1951,0.0,-0.9239,0.3827,0.0,-1.0,0.0,-0.0381,-0.9808,0.1913,0.0,-0.9808,0.1951,0.0,-1.0,0.0,-0.0747,-0.9808,0.1802,-0.0381,-0.9808,0.1913,0.0,-1.0,0.0,-0.1084,-0.9808,0.1622,-0.0747,-0.9808,0.1802,0.0,-1.0,0.0,-0.1379,-0.9808,0.1379,-0.1084,-0.9808,0.1622,0.0,-1.0,0.0,-0.1622,-0.9808,0.1084,-0.1379,-0.9808,0.1379,0.0,-1.0,0.0,-0.1802,-0.9808,0.0747,-0.1622,-0.9808,0.1084,0.0,-1.0,0.0,-0.1913,-0.9808,0.0381,-0.1802,-0.9808,0.0747,0.0,-1.0,0.0,-0.1951,-0.9808,0.0,-0.1913,-0.9808,0.0381,0.0,-1.0,0.0,-0.1913,-0.9808,-0.0381,-0.1951,-0.9808,0.0,0.0,-1.0,0.0,-0.1802,-0.9808,-0.0747,-0.1913,-0.9808,-0.0381,0.0,-1.0,0.0,-0.1622,-0.9808,-0.1084,-0.1802,-0.9808,-0.0747,0.0,-1.0,0.0,-0.1379,-0.9808,-0.1379,-0.1622,-0.9808,-0.1084,0.0,-1.0,0.0,-0.1084,-0.9808,-0.1622,-0.1379,-0.9808,-0.1379,0.0,-1.0,0.0,-0.0747,-0.9808,-0.1802,-0.1084,-0.9808,-0.1622,0.0,-1.0,0.0,-0.0381,-0.9808,-0.1913,-0.0747,-0.9808,-0.1802,0.0,-1.0,0.0,0.0,-0.9808,-0.1951,-0.0381,-0.9808,-0.1913,0.0,-1.0,0.0,0.0381,-0.9808,-0.1913,0.0,-0.9808,-0.1951,0.0,-1.0,0.0,0.0747,-0.9808,-0.1802,0.0381,-0.9808,-0.1913,0.0,-1.0,0.0,0.1084,-0.9808,-0.1622,0.0747,-0.9808,-0.1802,0.0,-1.0,0.0,0.1379,-0.9808,-0.1379,0.1084,-0.9808,-0.1622,0.0,-1.0,0.0,0.1622,-0.9808,-0.1084,0.1379,-0.9808,-0.1379,0.0,-1.0,0.0,0.1802,-0.9808,-0.0747,0.1622,-0.9808,-0.1084,0.0,-1.0,0.0,0.1913,-0.9808,-0.0381,0.1802,-0.9808,-0.0747,0.0,-1.0,0.0,0.1951,-0.9808,0.0,0.1913,-0.9808,-0.0381,0.0,-1.0,0.0,0.1913,-0.9808,0.0381,0.1951,-0.9808,0.0,0.0,-1.0,0.0,0.1802,-0.9808,0.0747,0.1913,-0.9808,0.0381,0.0,-1.0,0.0,0.1622,-0.9808,0.1084,0.1802,-0.9808,0.0747,0.0,-1.0,0.0,0.1379,-0.9808,0.1379,0.1622,-0.9808,0.1084,0.0,-1.0,0.0,0.1084,-0.9808,0.1622,0.1379,-0.9808,0.1379,0.0,-1.0,0.0,0.0747,-0.9808,0.1802,0.1084,-0.9808,0.1622,0.0,-1.0,0.0,0.0381,-0.9808,0.1913,0.0747,-0.9808,0.1802,0.0,-1.0,0.0,0.0,-0.9808,0.1951,0.0381,-0.9808,0.1913],"normals":[0.0,1.0,0.0,0.0,0.9796,0.201,-0.0392,0.9796,0.1971,0.0,1.0,0.0,-0.0392,0.9796,0.1971,-0.0769,0.9796,0.1857,0.0,1.0,0.0,-0.0769,0.9796,0.1857,-0.1117,0.9796,0.1671,0.0,1.0,0.0,-0.1117,0.9796,0.1671,-0.1421,0.9796,0.1421,0.0,1.0,0.0,-0.1421,0.9796,0.1421,-0.1671,0.9796,0.1117,0.0,1.0,0.0,-0.1671,0.9796,0.1117,-0.1857,0.9796,0.0769,0.0,1.0,0.0,-0.1857,0.9796,0.0769,-0.1971,0.9796,0.0392,0.0,1.0,0.0,-0.1971,0.9796,0.0392,-0.201,0.9796,0.0,0.0,1.0,0.0,-0.201,0.9796,0.0,-0.1971,0.9796,-0.0392,0.0,1.0,0.0,-0.1971,0.9796,-0.0392,-0.1857,0.9796,-0.0769,0.0,1.0,0.0,-0.1857,0.9796,-0.0769,-0.1671,0.9796,-0.1117,0.0,1.0,0.0,-0.1671,0.9796,-0.1117,-0.1421,0.9796,-0.1421,0.0,1.0,0.0,-0.1421,0.9796,-0.1421,-0.1117,0.9796,-0.1671,0.0,1.0,0.0,-0.1117,0.9796,-0.1671,-0.0769,0.9796,-0.1857,0.0,1.0,0.0,-0.0769,0.9796,-0.1857,-0.0392,0.9796,-0.1971,0.0,1.0,0.0,-0.0392,0.9796,-0.1971,0.0,0.9796,-0.201,0.0,1.0,0.0,0.0,0.9796,-0.201,0.0392,0.9796,-0.1971,0.0,1.0,0.0,0.0392,0.9796,-0.1971,0.0769,0.9796,-0.1857,0.0,1.0,0.0,0.0769,0.9796,-0.1857,0.1117,0.9796,-0.1671,0.0,1.0,0.0,0.1117,0.9796,-0.1671,0.1421,0.9796,-0.1421,0.0,1.0,0.0,0.1421,0.9796,-0.1421,0.1671,0.9796,-0.1117,0.0,1.0,0.0,0.1671,0.9796,-0.1117,0.1857,0.9796,-0.0769,0.0,1.0,0.0,0.1857,0.9796,-0.0769,0.1971,0.9796,-0.0392,0.0,1.0,0.0,0.1971,0.9796,-0.0392,0.201,0.9796,0.0,0.0,1.0,0.0,0.201,0.9796,0.0,0.1971,0.9796,0.0392,0.0,1.0,0.0,0.1971,0.9796,0.0392,0.1857,0.9796,0.0769,0.0,1.0,0.0,0.1857,0.9796,0.0769,0.1671,0.9796,0.1117,0.0,1.0,0.0,0.1671,0.9796,0.1117,0.1421,0.9796,0.1421,0.0,1.0,0.0,0.1421,0.9796,0.1421,0.1117,0.9796,0.1671,0.0,1.0,0.0,0.1117,0.9796,0.1671,0.0769,0.9796,0.1857,0.0,1.0,0.0,0.0769,0.9796,0.1857,0.0392,0.9796,0.1971,0.0,1.0,0.0,0.0392,0.9796,0.1971,0.0,0.9796,0.201,0.0,0.9796,0.201,0.0,0.9217,0.3879,-0.0757,0.9217,0.3804,0.0,0.9796,0.201,-0.0757,0.9217,0.3804,-0.0392,0.9796,0.1971,-0.0392,0.9796,0.1971,-0.0757,0.9217,0.3804,-0.1484,0.9217,0.3584,-0.0392,0.9796,0.1971,-0.1484,0.9217,0.3584,-0.0769,0.9796,0.1857,-0.0769,0.9796,0.1857,-0.1484,0.9217,0.3584,-0.2155,0.9217,0.3225,-0.0769,0.9796,0.1857,-0.2155,0.9217,0.3225,-0.1117,0.9796,0.1671,-0.1117,0.9796,0.1671,-0.2155,0.9217,0.3225,-0.2743,0.9217,0.2743,-0.1117,0.9796,0.1671,-0.2743,0.9217,0.2743,-0.1421,0.9796,0.1421,-0.1421,0.9796,0.1421,-0.2743,0.9217,0.2743,-0.3225,0.9217,0.2155,-0.1421,0.9796,0.1421,-0.3225,0.9217,0.2155,-0.1671,0.9796,0.1117,-0.1671,0.9796,0.1117,-0.3225,0.9217,0.2155,-0.3584,0.9217,0.1484,-0.1671,0.9796,0.1117,-0.3584,0.9217,0.1484,-0.1857,0.9796,0.0769,-0.1857,0.9796,0.0769,-0.3584,0.9217,0.1484,-0.3804,0.9217,0.0757,-0.1857,0.9796,0.0769,-0.3804,0.9217,0.0757,-0.1971,0.9796,0.0392,-0.1971,0.9796,0.0392,-0.3804,0.9217,0.0757,-0.3879,0.9217,0.0,-0.1971,0.9796,0.0392,-0.3879,0.9217,0.0,-0.201,0.9796,0.0,-0.201,0.9796,0.0,-0.3879,0.9217,0.0,-0.3804,0.9217,-0.0757,-0.201,0.9796,0.0,-0.3804,0.9217,-0.0757,-0.1971,0.9796,-0.0392,-0.1971,0.9796,-0.0392,-0.3804,0.9217,-0.0757,-0.3584,0.9217,-0.1484,-0.1971,0.9796,-0.0392,-0.3584,0.9217,-0.1484,-0.1857,0.9796,-0.0769,-0.1857,0.9796,-0.0769,-0.3584,0.9217,-0.1484,-0.3225,0.9217,-0.2155,-0.1857,0.9796,-0.0769,-0.3225,0.9217,-0.2155,-0.1671,0.9796,-0.1117,-0.1671,0.9796,-0.1117,-0.3225,0.9217,-0.2155,-0.2743,0.9217,-0.2743,-0.1671,0.9796,-0.1117,-0.2743,0.9217,-0.2743,-0.1421,0.9796,-0.1421,-0.1421,0.9796,-0.1421,-0.2743,0.9217,-0.2743,-0.2155,0.9217,-0.3225,-0.1421,0.9796,-0.1421,-0.2155,0.9217,-0.3225,-0.1117,0.9796,-0.1671,-0.1117,0.9796,-0.1671,-0.2155,0.9217,-0.3225,-0.1484,0.9217,-0.3584,-0.1117,0.9796,-0.1671,-0.1484,0.9217,-0.3584,-0.0769,0.9796,-0.1857,-0.0769,0.9796,-0.1857,-0.1484,0.9217,-0.3584,-0.0757,0.9217,-0.3804,-0.0769,0.9796,-0.1857,-0.0757,0.9217,-0.3804,-0.0392,0.9796,-0.1971,-0.0392,0.9796,-0.1971,-0.0757,0.9217,-0.3804,0.0,0.9217,-0.3879,-0.0392,0.9796,-0.1971,0.0,0.9217,-0.3879,0.0,0.9796,-0.201,0.0,0.9796,-0.201,0.0,0.9217,-0.3879,0.0757,0.9217,-0.3804,0.0,0.9796,-0.201,0.0757,0.9217,-0.3804,0.0392,0.9796,-0.1971,0.0392,0.9796,-0.1971,0.0757,0.9217,-0.3804,0.1484,0.9217,-0.3584,0.0392,0.9796,-0.1971,0.1484,0.9217,-0.3584,0.0769,0.9796,-0.1857,0.0769,0.9796,-0.1857,0.1484,0.9217,-0.3584,0.2155,0.9217,-0.3225,0.0769,0.9796,-0.1857,0.2155,0.9217,-0.3225,0.1117,0.9796,-0.1671,0.1117,0.9796,-0.1671,0.2155,0.9217,-0.3225,0.2743,0.9217,-0.2743,0.1117,0.9796,-0.1671,0.2743,0.9217,-0.2743,0.1421,0.9796,-0.1421,0.1421,0.9796,-0.1421,0.2743,0.9217,-0.2743,0.3225,0.9217,-0.2155,0.1421,0.9796,-0.1421,0.3225,0.9217,-0.2155,0.1671,0.9796,-0.1117,0.1671,0.9796,-0.1117,0.3225,0.9217,-0.2155,0.3584,0.9217,-0.1484,0.1671,0.9796,-0.1117,0.3584,0.9217,-0.1484,0.1857,0.9796,-0.0769,0.1857,0.9796,-0.0769,0.3584,0.9217,-0.1484,0.3804,0.9217,-0.0757,0.1857,0.9796,-0.0769,0.3804,0.9217,-0.0757,0.1971,0.9796,-0.0392,0.1971,0.9796,-0.0392,0.3804,0.9217,-0.0757,0.3879,0.9217,0.0,0.1971,0.9796,-0.0392,0.3879,0.9217,0.0,0.201,0.9796,0.0,0.201,0.9796,0.0,0.3879,0.9217,0.0,0.3804,0.9217,0.0757,0.201,0.9796,0.0,0.3804,0.9217,0.0757,0.1971,0.9796,0.0392,0.1971,0.9796,0.0392,0.3804,0.9217,0.0757,0.3584,0.9217,0.1484,0.1971,0.9796,0.0392,0.3584,0.9217,0.1484,0.1857,0.9796,0.0769,0.1857,0.9796,0.0769,0.3584,0.9217,0.1484,0.3225,0.9217,0.2155,0.1857,0.9796,0.0769,0.3225,0.9217,0.2155,0.1671,0.9796,0.1117,0.1671,0.9796,0.1117,0.3225,0.9217,0.2155,0.2743,0.9217,0.2743,0.1671,0.9796,0.1117,0.2743,0.9217,0.2743,0.1421,0.9796,0.1421,0.1421,0.9796,0.1421,0.2743,0.9217,0.2743,0.2155,0.9217,0.3225,0.1421,0.9796,0.1421,0.2155,0.9217,0.3225,0.1117,0.9796,0.1671,0.1117,0.9796,0.1671,0.2155,0.9217,0.3225,0.1484,0.9217,0.3584,0.1117,0.9796,0.1671,0.1484,0.9217,0.3584,0.0769,0.9796,0.1857,0.0769,0.9796,0.1857,0.1484,0.9217,0.3584,0.0757,0.9217,0.3804,0.0769,0.9796,0.1857,0.0757,0.9217,0.3804,0.0392,0.9796,0.1971,0.0392,0.9796,0.1971,0.0757,0.9217,0.3804,0.0,0.9217,0.3879,0.0392,0.9796,0.1971,0.0,0.9217,0.3879,0.0,0.9796,0.201,0.0,0.9217,0.3879,0.0,0.8286,0.5598,-0.1092,0.8286,0.549,0.0,0.9217,0.3879,-0.1092,0.8286,0.549,-0.0757,0.9217,0.3804,-0.0757,0.9217,0.3804,-0.1092,0.8286,0.549,-0.2142,0.8286,0.5172,-0.0757,0.9217,0.3804,-0.2142,0.8286,0.5172,-0.1484,0.9217,0.3584,-0.1484,0.9217,0.3584,-0.2142,0.8286,0.5172,-0.311,0.8286,0.4654,-0.1484,0.9217,0.3584,-0.311,0.8286,0.4654,-0.2155,0.9217,0.3225,-0.2155,0.9217,0.3225,-0.311,0.8286,0.4654,-0.3958,0.8286,0.3958,-0.2155,0.9217,0.3225,-0.3958,0.8286,0.3958,-0.2743,0.9217,0.2743,-0.2743,0.9217,0.2743,-0.3958,0.8286,0.3958,-0.4654,0.8286,0.311,-0.2743,0.9217,0.2743,-0.4654,0.8286,0.311,-0.3225,0.9217,0.2155,-0.3225,0.9217,0.2155,-0.4654,0.8286,0.311,-0.5172,0.8286,0.2142,-0.3225,0.9217,0.2155,-0.5172,0.8286,0.2142,-0.3584,0.9217,0.1484,-0.3584,0.9217,0.1484,-0.5172,0.8286,0.2142,-0.549,0.8286,0.1092,-0.3584,0.9217,0.1484,-0.549,0.8286,0.1092,-0.3804,0.9217,0.0757,-0.3804,0.9217,0.0757,-0.549,0.8286,0.1092,-0.5598,0.8286,0.0,-0.3804,0.9217,0.0757,-0.5598,0.8286,0.0,-0.3879,0.9217,0.0,-0.3879,0.9217,0.0,-0.5598,0.8286,0.0,-0.549,0.8286,-0.1092,-0.3879,0.9217,0.0,-0.549,0.8286,-0.1092,-0.3804,0.9217,-0.0757,-0.3804,0.9217,-0.0757,-0.549,0.8286,-0.1092,-0.5172,0.8286,-0.2142,-0.3804,0.9217,-0.0757,-0.5172,0.8286,-0.2142,-0.3584,0.9217,-0.1484,-0.3584,0.9217,-0.1484,-0.5172,0.8286,-0.2142,-0.4654,0.8286,-0.311,-0.3584,0.9217,-0.1484,-0.4654,0.8286,-0.311,-0.3225,0.9217,-0.2155,-0.3225,0.9217,-0.2155,-0.4654,0.8286,-0.311,-0.3958,0.8286,-0.3958,-0.3225,0.9217,-0.2155,-0.3958,0.8286,-0.3958,-0.2743,0.9217,-0.2743,-0.2743,0.9217,-0.2743,-0.3958,0.8286,-0.3958,-0.311,0.8286,-0.4654,-0.2743,0.9217,-0.2743,-0.311,0.8286,-0.4654,-0.2155,0.9217,-0.3225,-0.2155,0.9217,-0.3225,-0.311,0.8286,-0.4654,-0.2142,0.8286,-0.5172,-0.2155,0.9217,-0.3225,-0.2142,0.8286,-0.5172,-0.1484,0.9217,-0.3584,-0.1484,0.9217,-0.3584,-0.2142,0.8286,-0.5172,-0.1092,0.8286,-0.549,-0.1484,0.9217,-0.3584,-0.1092,0.8286,-0.549,-0.0757,0.9217,-0.3804,-0.0757,0.9217,-0.3804,-0.1092,0.8286,-0.549,0.0,0.8286,-0.5598,-0.0757,0.9217,-0.3804,0.0,0.8286,-0.5598,0.0,0.9217,-0.3879,0.0,0.9217,-0.3879,0.0,0.8286,-0.5598,0.1092,0.8286,-0.549,0.0,0.9217,-0.3879,0.1092,0.8286,-0.549,0.0757,0.9217,-0.3804,0.0757,0.9217,-0.3804,0.1092,0.8286,-0.549,0.2142,0.8286,-0.5172,0.0757,0.9217,-0.3804,0.2142,0.8286,-0.5172,0.1484,0.9217,-0.3584,0.1484,0.9217,-0.3584,0.2142,0.8286,-0.5172,0.311,0.8286,-0.4654,0.1484,0.9217,-0.3584,0.311,0.8286,-0.4654,0.2155,0.9217,-0.3225,0.2155,0.9217,-0.3225,0.311,0.8286,-0.4654,0.3958,0.8286,-0.3958,0.2155,0.9217,-0.3225,0.3958,0.8286,-0.3958,0.2743,0.9217,-0.2743,0.2743,0.9217,-0.2743,0.3958,0.8286,-0.3958,0.4654,0.8286,-0.311,0.2743,0.9217,-0.2743,0.4654,0.8286,-0.311,0.3225,0.9217,-0.2155,0.3225,0.9217,-0.2155,0.4654,0.8286,-0.311,0.5172,0.8286,-0.2142,0.3225,0.9217,-0.2155,0.5172,0.8286,-0.2142,0.3584,0.9217,-0.1484,0.3584,0.9217,-0.1484,0.5172,0.8286,-0.2142,0.549,0.8286,-0.1092,0.3584,0.9217,-0.1484,0.549,0.8286,-0.1092,0.3804,0.9217,-0.0757,0.3804,0.9217,-0.0757,0.549,0.8286,-0.1092,0.5598,0.8286,0.0,0.3804,0.9217,-0.0757,0.5598,0.8286,0.0,0.3879,0.9217,0.0,0.3879,0.9217,0.0,0.5598,0.8286,0.0,0.549,0.8286,0.1092,0.3879,0.9217,0.0,0.549,0.8286,0.1092,0.3804,0.9217,0.0757,0.3804,0.9217,0.0757,0.549,0.8286,0.1092,0.5172,0.8286,0.2142,0.3804,0.9217,0.0757,0.5172,0.8286,0.2142,0.3584,0.9217,0.1484,0.3584,0.9217,0.1484,0.5172,0.8286,0.2142,0.4654,0.8286,0.311,0.3584,0.9217,0.1484,0.4654,0.8286,0.311,0.3225,0.9217,0.2155,0.3225,0.9217,0.2155,0.4654,0.8286,0.311,0.3958,0.8286,0.3958,0.3225,0.9217,0.2155,0.3958,0.8286,0.3958,0.2743,0.9217,0.2743,0.2743,0.9217,0.2743,0.3958,0.8286,0.3958,0.311,0.8286,0.4654,0.2743,0.9217,0.2743,0.311,0.8286,0.4654,0.2155,0.9217,0.3225,0.2155,0.9217,0.3225,0.311,0.8286,0.4654,0.2142,0.8286,0.5172,0.2155,0.9217,0.3225,0.2142,0.8286,0.5172,0.1484,0.9217,0.3584,0.1484,0.9217,0.3584,0.2142,0.8286,0.5172,0.1092,0.8286,0.549,0.1484,0.9217,0.3584,0.1092,0.8286,0.549,0.0757,0.9217,0.3804,0.0757,0.9217,0.3804,0.1092,0.8286,0.549,0.0,0.8286,0.5598,0.0757,0.9217,0.3804,0.0,0.8286,0.5598,0.0,0.9217,0.3879,0.0,0.8286,0.5598,0.0,0.7041,0.7101,-0.1385,0.7041,0.6965,0.0,0.8286,0.5598,-0.1385,0.7041,0.6965,-0.1092,0.8286,0.549,-0.1092,0.8286,0.549,-0.1385,0.7041,0.6965,-0.2718,0.7041,0.6561,-0.1092,0.8286,0.549,-0.2718,0.7041,0.6561,-0.2142,0.8286,0.5172,-0.2142,0.8286,0.5172,-0.2718,0.7041,0.6561,-0.3945,0.7041,0.5905,-0.2142,0.8286,0.5172,-0.3945,0.7041,0.5905,-0.311,0.8286,0.4654,-0.311,0.8286,0.4654,-0.3945,0.7041,0.5905,-0.5021,0.7041,0.5021,-0.311,0.8286,0.4654,-0.5021,0.7041,0.5021,-0.3958,0.8286,0.3958,-0.3958,0.8286,0.3958,-0.5021,0.7041,0.5021,-0.5905,0.7041,0.3945,-0.3958,0.8286,0.3958,-0.5905,0.7041,0.3945,-0.4654,0.8286,0.311,-0.4654,0.8286,0.311,-0.5905,0.7041,0.3945,-0.6561,0.7041,0.2718,-0.4654,0.8286,0.311,-0.6561,0.7041,0.2718,-0.5172,0.8286,0.2142,-0.5172,0.8286,0.2142,-0.6561,0.7041,0.2718,-0.6965,0.7041,0.1385,-0.5172,0.8286,0.2142,-0.6965,0.7041,0.1385,-0.549,0.8286,0.1092,-0.549,0.8286,0.1092,-0.6965,0.7041,0.1385,-0.7101,0.7041,0.0,-0.549,0.8286,0.1092,-0.7101,0.7041,0.0,-0.5598,0.8286,0.0,-0.5598,0.8286,0.0,-0.7101,0.7041,0.0,-0.6965,0.7041,-0.1385,-0.5598,0.8286,0.0,-0.6965,0.7041,-0.1385,-0.549,0.8286,-0.1092,-0.549,0.8286,-0.1092,-0.6965,0.7041,-0.1385,-0.6561,0.7041,-0.2718,-0.549,0.8286,-0.1092,-0.6561,0.7041,-0.2718,-0.5172,0.8286,-0.2142,-0.5172,0.8286,-0.2142,-0.6561,0.7041,-0.2718,-0.5905,0.7041,-0.3945,-0.5172,0.8286,-0.2142,-0.5905,0.7041,-0.3945,-0.4654,0.8286,-0.311,-0.4654,0.8286,-0.311,-0.5905,0.7041,-0.3945,-0.5021,0.7041,-0.5021,-0.4654,0.8286,-0.311,-0.5021,0.7041,-0.5021,-0.3958,0.8286,-0.3958,-0.3958,0.8286,-0.3958,-0.5021,0.7041,-0.5021,-0.3945,0.7041,-0.5905,-0.3958,0.8286,-0.3958,-0.3945,0.7041,-0.5905,-0.311,0.8286,-0.4654,-0.311,0.8286,-0.4654,-0.3945,0.7041,-0.5905,-0.2718,0.7041,-0.6561,-0.311,0.8286,-0.4654,-0.2718,0.7041,-0.6561,-0.2142,0.8286,-0.5172,-0.2142,0.8286,-0.5172,-0.2718,0.7041,-0.6561,-0.1385,0.7041,-0.6965,-0.2142,0.8286,-0.5172,-0.1385,0.7041,-0.6965,-0.1092,0.8286,-0.549,-0.1092,0.8286,-0.549,-0.1385,0.7041,-0.6965,0.0,0.7041,-0.7101,-0.1092,0.8286,-0.549,0.0,0.7041,-0.7101,0.0,0.8286,-0.5598,0.0,0.8286,-0.5598,0.0,0.7041,-0.7101,0.1385,0.7041,-0.6965,0.0,0.8286,-0.5598,0.1385,0.7041,-0.6965,0.1092,0.8286,-0.549,0.1092,0.8286,-0.549,0.1385,0.7041,-0.6965,0.2718,0.7041,-0.6561,0.1092,0.8286,-0.549,0.2718,0.7041,-0.6561,0.2142,0.8286,-0.5172,0.2142,0.8286,-0.5172,0.2718,0.7041,-0.6561,0.3945,0.7041,-0.5905,0.2142,0.8286,-0.5172,0.3945,0.7041,-0.5905,0.311,0.8286,-0.4654,0.311,0.8286,-0.4654,0.3945,0.7041,-0.5905,0.5021,0.7041,-0.5021,0.311,0.8286,-0.4654,0.5021,0.7041,-0.5021,0.3958,0.8286,-0.3958,0.3958,0.8286,-0.3958,0.5021,0.7041,-0.5021,0.5905,0.7041,-0.3945,0.3958,0.8286,-0.3958,0.5905,0.7041,-0.3945,0.4654,0.8286,-0.311,0.4654,0.8286,-0.311,0.5905,0.7041,-0.3945,0.6561,0.7041,-0.2718,0.4654,0.8286,-0.311,0.6561,0.7041,-0.2718,0.5172,0.8286,-0.2142,0.5172,0.8286,-0.2142,0.6561,0.7041,-0.2718,0.6965,0.7041,-0.1385,0.5172,0.8286,-0.2142,0.6965,0.7041,-0.1385,0.549,0.8286,-0.1092,0.549,0.8286,-0.1092,0.6965,0.7041,-0.1385,0.7101,0.7041,0.0,0.549,0.8286,-0.1092,0.7101,0.7041,0.0,0.5598,0.8286,0.0,0.5598,0.8286,0.0,0.7101,0.7041,0.0,0.6965,0.7041,0.1385,0.5598,0.8286,0.0,0.6965,0.7041,0.1385,0.549,0.8286,0.1092,0.549,0.8286,0.1092,0.6965,0.7041,0.1385,0.6561,0.7041,0.2718,0.549,0.8286,0.1092,0.6561,0.7041,0.2718,0.5172,0.8286,0.2142,0.5172,0.8286,0.2142,0.6561,0.7041,0.2718,0.5905,0.7041,0.3945,0.5172,0.8286,0.2142,0.5905,0.7041,0.3945,0.4654,0.8286,0.311,0.4654,0.8286,0.311,0.5905,0.7041,0.3945,0.5021,0.7041,0.5021,0.4654,0.8286,0.311,0.5021,0.7041,0.5021,0.3958,0.8286,0.3958,0.3958,0.8286,0.3958,0.5021,0.7041,0.5021,0.3945,0.7041,0.5905,0.3958,0.8286,0.3958,0.3945,0.7041,0.5905,0.311,0.8286,0.4654,0.311,0.8286,0.4654,0.3945,0.7041,0.5905,0.2718,0.7041,0.6561,0.311,0.8286,0.4654,0.2718,0.7041,0.6561,0.2142,0.8286,0.5172,0.2142,0.8286,0.5172,0.2718,0.7041,0.6561,0.1385,0.7041,0.6965,0.2142,0.8286,0.5172,0.1385,0.7041,0.6965,0.1092,0.8286,0.549,0.1092,0.8286,0.549,0.1385,0.7041,0.6965,0.0,0.7041,0.7101,0.1092,0.8286,0.549,0.0,0.7041,0.7101,0.0,0.8286,0.5598,0.0,0.7041,0.7101,0.0,0.5528,0.8333,-0.1626,0.5528,0.8173,0.0,0.7041,0.7101,-0.1626,0.5528,0.8173,-0.1385,0.7041,0.6965,-0.1385,0.7041,0.6965,-0.1626,0.5528,0.8173,-0.3189,0.5528,0.7699,-0.1385,0.7041,0.6965,-0.3189,0.5528,0.7699,-0.2718,0.7041,0.6561,-0.2718,0.7041,0.6561,-0.3189,0.5528,0.7699,-0.463,0.5528,0.6929,-0.2718,0.7041,0.6561,-0.463,0.5528,0.6929,-0.3945,0.7041,0.5905,-0.3945,0.7041,0.5905,-0.463,0.5528,0.6929,-0.5893,0.5528,0.5893,-0.3945,0.7041,0.5905,-0.5893,0.5528,0.5893,-0.5021,0.7041,0.5021,-0.5021,0.7041,0.5021,-0.5893,0.5528,0.5893,-0.6929,0.5528,0.463,-0.5021,0.7041,0.5021,-0.6929,0.5528,0.463,-0.5905,0.7041,0.3945,-0.5905,0.7041,0.3945,-0.6929,0.5528,0.463,-0.7699,0.5528,0.3189,-0.5905,0.7041,0.3945,-0.7699,0.5528,0.3189,-0.6561,0.7041,0.2718,-0.6561,0.7041,0.2718,-0.7699,0.5528,0.3189,-0.8173,0.5528,0.1626,-0.6561,0.7041,0.2718,-0.8173,0.5528,0.1626,-0.6965,0.7041,0.1385,-0.6965,0.7041,0.1385,-0.8173,0.5528,0.1626,-0.8333,0.5528,0.0,-0.6965,0.7041,0.1385,-0.8333,0.5528,0.0,-0.7101,0.7041,0.0,-0.7101,0.7041,0.0,-0.8333,0.5528,0.0,-0.8173,0.5528,-0.1626,-0.7101,0.7041,0.0,-0.8173,0.5528,-0.1626,-0.6965,0.7041,-0.1385,-0.6965,0.7041,-0.1385,-0.8173,0.5528,-0.1626,-0.7699,0.5528,-0.3189,-0.6965,0.7041,-0.1385,-0.7699,0.5528,-0.3189,-0.6561,0.7041,-0.2718,-0.6561,0.7041,-0.2718,-0.7699,0.5528,-0.3189,-0.6929,0.5528,-0.463,-0.6561,0.7041,-0.2718,-0.6929,0.5528,-0.463,-0.5905,0.7041,-0.3945,-0.5905,0.7041,-0.3945,-0.6929,0.5528,-0.463,-0.5893,0.5528,-0.5893,-0.5905,0.7041,-0.3945,-0.5893,0.5528,-0.5893,-0.5021,0.7041,-0.5021,-0.5021,0.7041,-0.5021,-0.5893,0.5528,-0.5893,-0.463,0.5528,-0.6929,-0.5021,0.7041,-0.5021,-0.463,0.5528,-0.6929,-0.3945,0.7041,-0.5905,-0.3945,0.7041,-0.5905,-0.463,0.5528,-0.6929,-0.3189,0.5528,-0.7699,-0.3945,0.7041,-0.5905,-0.3189,0.5528,-0.7699,-0.2718,0.7041,-0.6561,-0.2718,0.7041,-0.6561,-0.3189,0.5528,-0.7699,-0.1626,0.5528,-0.8173,-0.2718,0.7041,-0.6561,-0.1626,0.5528,-0.8173,-0.1385,0.7041,-0.6965,-0.1385,0.7041,-0.6965,-0.1626,0.5528,-0.8173,0.0,0.5528,-0.8333,-0.1385,0.7041,-0.6965,0.0,0.5528,-0.8333,0.0,0.7041,-0.7101,0.0,0.7041,-0.7101,0.0,0.5528,-0.8333,0.1626,0.5528,-0.8173,0.0,0.7041,-0.7101,0.1626,0.5528,-0.8173,0.1385,0.7041,-0.6965,0.1385,0.7041,-0.6965,0.1626,0.5528,-0.8173,0.3189,0.5528,-0.7699,0.1385,0.7041,-0.6965,0.3189,0.5528,-0.7699,0.2718,0.7041,-0.6561,0.2718,0.7041,-0.6561,0.3189,0.5528,-0.7699,0.463,0.5528,-0.6929,0.2718,0.7041,-0.6561,0.463,0.5528,-0.6929,0.3945,0.7041,-0.5905,0.3945,0.7041,-0.5905,0.463,0.5528,-0.6929,0.5893,0.5528,-0.5893,0.3945,0.7041,-0.5905,0.5893,0.5528,-0.5893,0.5021,0.7041,-0.5021,0.5021,0.7041,-0.5021,0.5893,0.5528,-0.5893,0.6929,0.5528,-0.463,0.5021,0.7041,-0.5021,0.6929,0.5528,-0.463,0.5905,0.7041,-0.3945,0.5905,0.7041,-0.3945,0.6929,0.5528,-0.463,0.7699,0.5528,-0.3189,0.5905,0.7041,-0.3945,0.7699,0.5528,-0.3189,0.6561,0.7041,-0.2718,0.6561,0.7041,-0.2718,0.7699,0.5528,-0.3189,0.8173,0.5528,-0.1626,0.6561,0.7041,-0.2718,0.8173,0.5528,-0.1626,0.6965,0.7041,-0.1385,0.6965,0.7041,-0.1385,0.8173,0.5528,-0.1626,0.8333,0.5528,0.0,0.6965,0.7041,-0.1385,0.8333,0.5528,0.0,0.7101,0.7041,0.0,0.7101,0.7041,0.0,0.8333,0.5528,0.0,0.8173,0.5528,0.1626,0.7101,0.7041,0.0,0.8173,0.5528,0.1626,0.6965,0.7041,0.1385,0.6965,0.7041,0.1385,0.8173,0.5528,0.1626,0.7699,0.5528,0.3189,0.6965,0.7041,0.1385,0.7699,0.5528,0.3189,0.6561,0.7041,0.2718,0.6561,0.7041,0.2718,0.7699,0.5528,0.3189,0.6929,0.5528,0.463,0.6561,0.7041,0.2718,0.6929,0.5528,0.463,0.5905,0.7041,0.3945,0.5905,0.7041,0.3945,0.6929,0.5528,0.463,0.5893,0.5528,0.5893,0.5905,0.7041,0.3945,0.5893,0.5528,0.5893,0.5021,0.7041,0.5021,0.5021,0.7041,0.5021,0.5893,0.5528,0.5893,0.463,0.5528,0.6929,0.5021,0.7041,0.5021,0.463,0.5528,0.6929,0.3945,0.7041,0.5905,0.3945,0.7041,0.5905,0.463,0.5528,0.6929,0.3189,0.5528,0.7699,0.3945,0.7041,0.5905,0.3189,0.5528,0.7699,0.2718,0.7041,0.6561,0.2718,0.7041,0.6561,0.3189,0.5528,0.7699,0.1626,0.5528,0.8173,0.2718,0.7041,0.6561,0.1626,0.5528,0.8173,0.1385,0.7041,0.6965,0.1385,0.7041,0.6965,0.1626,0.5528,0.8173,0.0,0.5528,0.8333,0.1385,0.7041,0.6965,0.0,0.5528,0.8333,0.0,0.7041,0.7101,0.0,0.5528,0.8333,0.0,0.3805,0.9248,-0.1804,0.3805,0.907,0.0,0.5528,0.8333,-0.1804,0.3805,0.907,-0.1626,0.5528,0.8173,-0.1626,0.5528,0.8173,-0.1804,0.3805,0.907,-0.3539,0.3805,0.8544,-0.1626,0.5528,0.8173,-0.3539,0.3805,0.8544,-0.3189,0.5528,0.7699,-0.3189,0.5528,0.7699,-0.3539,0.3805,0.8544,-0.5138,0.3805,0.7689,-0.3189,0.5528,0.7699,-0.5138,0.3805,0.7689,-0.463,0.5528,0.6929,-0.463,0.5528,0.6929,-0.5138,0.3805,0.7689,-0.6539,0.3805,0.6539,-0.463,0.5528,0.6929,-0.6539,0.3805,0.6539,-0.5893,0.5528,0.5893,-0.5893,0.5528,0.5893,-0.6539,0.3805,0.6539,-0.7689,0.3805,0.5138,-0.5893,0.5528,0.5893,-0.7689,0.3805,0.5138,-0.6929,0.5528,0.463,-0.6929,0.5528,0.463,-0.7689,0.3805,0.5138,-0.8544,0.3805,0.3539,-0.6929,0.5528,0.463,-0.8544,0.3805,0.3539,-0.7699,0.5528,0.3189,-0.7699,0.5528,0.3189,-0.8544,0.3805,0.3539,-0.907,0.3805,0.1804,-0.7699,0.5528,0.3189,-0.907,0.3805,0.1804,-0.8173,0.5528,0.1626,-0.8173,0.5528,0.1626,-0.907,0.3805,0.1804,-0.9248,0.3805,0.0,-0.8173,0.5528,0.1626,-0.9248,0.3805,0.0,-0.8333,0.5528,0.0,-0.8333,0.5528,0.0,-0.9248,0.3805,0.0,-0.907,0.3805,-0.1804,-0.8333,0.5528,0.0,-0.907,0.3805,-0.1804,-0.8173,0.5528,-0.1626,-0.8173,0.5528,-0.1626,-0.907,0.3805,-0.1804,-0.8544,0.3805,-0.3539,-0.8173,0.5528,-0.1626,-0.8544,0.3805,-0.3539,-0.7699,0.5528,-0.3189,-0.7699,0.5528,-0.3189,-0.8544,0.3805,-0.3539,-0.7689,0.3805,-0.5138,-0.7699,0.5528,-0.3189,-0.7689,0.3805,-0.5138,-0.6929,0.5528,-0.463,-0.6929,0.5528,-0.463,-0.7689,0.3805,-0.5138,-0.6539,0.3805,-0.6539,-0.6929,0.5528,-0.463,-0.6539,0.3805,-0.6539,-0.5893,0.5528,-0.5893,-0.5893,0.5528,-0.5893,-0.6539,0.3805,-0.6539,-0.5138,0.3805,-0.7689,-0.5893,0.5528,-0.5893,-0.5138,0.3805,-0.7689,-0.463,0.5528,-0.6929,-0.463,0.5528,-0.6929,-0.5138,0.3805,-0.7689,-0.3539,0.3805,-0.8544,-0.463,0.5528,-0.6929,-0.3539,0.3805,-0.8544,-0.3189,0.5528,-0.7699,-0.3189,0.5528,-0.7699,-0.3539,0.3805,-0.8544,-0.1804,0.3805,-0.907,-0.3189,0.5528,-0.7699,-0.1804,0.3805,-0.907,-0.1626,0.5528,-0.8173,-0.1626,0.5528,-0.8173,-0.1804,0.3805,-0.907,0.0,0.3805,-0.9248,-0.1626,0.5528,-0.8173,0.0,0.3805,-0.9248,0.0,0.5528,-0.8333,0.0,0.5528,-0.8333,0.0,0.3805,-0.9248,0.1804,0.3805,-0.907,0.0,0.5528,-0.8333,0.1804,0.3805,-0.907,0.1626,0.5528,-0.8173,0.1626,0.5528,-0.8173,0.1804,0.3805,-0.907,0.3539,0.3805,-0.8544,0.1626,0.5528,-0.8173,0.3539,0.3805,-0.8544,0.3189,0.5528,-0.7699,0.3189,0.5528,-0.7699,0.3539,0.3805,-0.8544,0.5138,0.3805,-0.7689,0.3189,0.5528,-0.7699,0.5138,0.3805,-0.7689,0.463,0.5528,-0.6929,0.463,0.5528,-0.6929,0.5138,0.3805,-0.7689,0.6539,0.3805,-0.6539,0.463,0.5528,-0.6929,0.6539,0.3805,-0.6539,0.5893,0.5528,-0.5893,0.5893,0.5528,-0.5893,0.6539,0.3805,-0.6539,0.7689,0.3805,-0.5138,0.5893,0.5528,-0.5893,0.7689,0.3805,-0.5138,0.6929,0.5528,-0.463,0.6929,0.5528,-0.463,0.7689,0.3805,-0.5138,0.8544,0.3805,-0.3539,0.6929,0.5528,-0.463,0.8544,0.3805,-0.3539,0.7699,0.5528,-0.3189,0.7699,0.5528,-0.3189,0.8544,0.3805,-0.3539,0.907,0.3805,-0.1804,0.7699,0.5528,-0.3189,0.907,0.3805,-0.1804,0.8173,0.5528,-0.1626,0.8173,0.5528,-0.1626,0.907,0.3805,-0.1804,0.9248,0.3805,0.0,0.8173,0.5528,-0.1626,0.9248,0.3805,0.0,0.8333,0.5528,0.0,0.8333,0.5528,0.0,0.9248,0.3805,0.0,0.907,0.3805,0.1804,0.8333,0.5528,0.0,0.907,0.3805,0.1804,0.8173,0.5528,0.1626,0.8173,0.5528,0.1626,0.907,0.3805,0.1804,0.8544,0.3805,0.3539,0.8173,0.5528,0.1626,0.8544,0.3805,0.3539,0.7699,0.5528,0.3189,0.7699,0.5528,0.3189,0.8544,0.3805,0.3539,0.7689,0.3805,0.5138,0.7699,0.5528,0.3189,0.7689,0.3805,0.5138,0.6929,0.5528,0.463,0.6929,0.5528,0.463,0.7689,0.3805,0.5138,0.6539,0.3805,0.6539,0.6929,0.5528,0.463,0.6539,0.3805,0.6539,0.5893,0.5528,0.5893,0.5893,0.5528,0.5893,0.6539,0.3805,0.6539,0.5138,0.3805,0.7689,0.5893,0.5528,0.5893,0.5138,0.3805,0.7689,0.463,0.5528,0.6929,0.463,0.5528,0.6929,0.5138,0.3805,0.7689,0.3539,0.3805,0.8544,0.463,0.5528,0.6929,0.3539,0.3805,0.8544,0.3189,0.5528,0.7699,0.3189,0.5528,0.7699,0.3539,0.3805,0.8544,0.1804,0.3805,0.907,0.3189,0.5528,0.7699,0.1804,0.3805,0.907,0.1626,0.5528,0.8173,0.1626,0.5528,0.8173,0.1804,0.3805,0.907,0.0,0.3805,0.9248,0.1626,0.5528,0.8173,0.0,0.3805,0.9248,0.0,0.5528,0.8333,0.0,0.3805,0.9248,0.0,0.1939,0.981,-0.1914,0.1939,0.9622,0.0,0.3805,0.9248,-0.1914,0.1939,0.9622,-0.1804,0.3805,0.907,-0.1804,0.3805,0.907,-0.1914,0.1939,0.9622,-0.3754,0.1939,0.9063,-0.1804,0.3805,0.907,-0.3754,0.1939,0.9063,-0.3539,0.3805,0.8544,-0.3539,0.3805,0.8544,-0.3754,0.1939,0.9063,-0.545,0.1939,0.8157,-0.3539,0.3805,0.8544,-0.545,0.1939,0.8157,-0.5138,0.3805,0.7689,-0.5138,0.3805,0.7689,-0.545,0.1939,0.8157,-0.6937,0.1939,0.6937,-0.5138,0.3805,0.7689,-0.6937,0.1939,0.6937,-0.6539,0.3805,0.6539,-0.6539,0.3805,0.6539,-0.6937,0.1939,0.6937,-0.8157,0.1939,0.545,-0.6539,0.3805,0.6539,-0.8157,0.1939,0.545,-0.7689,0.3805,0.5138,-0.7689,0.3805,0.5138,-0.8157,0.1939,0.545,-0.9063,0.1939,0.3754,-0.7689,0.3805,0.5138,-0.9063,0.1939,0.3754,-0.8544,0.3805,0.3539,-0.8544,0.3805,0.3539,-0.9063,0.1939,0.3754,-0.9622,0.1939,0.1914,-0.8544,0.3805,0.3539,-0.9622,0.1939,0.1914,-0.907,0.3805,0.1804,-0.907,0.3805,0.1804,-0.9622,0.1939,0.1914,-0.981,0.1939,0.0,-0.907,0.3805,0.1804,-0.981,0.1939,0.0,-0.9248,0.3805,0.0,-0.9248,0.3805,0.0,-0.981,0.1939,0.0,-0.9622,0.1939,-0.1914,-0.9248,0.3805,0.0,-0.9622,0.1939,-0.1914,-0.907,0.3805,-0.1804,-0.907,0.3805,-0.1804,-0.9622,0.1939,-0.1914,-0.9063,0.1939,-0.3754,-0.907,0.3805,-0.1804,-0.9063,0.1939,-0.3754,-0.8544,0.3805,-0.3539,-0.8544,0.3805,-0.3539,-0.9063,0.1939,-0.3754,-0.8157,0.1939,-0.545,-0.8544,0.3805,-0.3539,-0.8157,0.1939,-0.545,-0.7689,0.3805,-0.5138,-0.7689,0.3805,-0.5138,-0.8157,0.1939,-0.545,-0.6937,0.1939,-0.6937,-0.7689,0.3805,-0.5138,-0.6937,0.1939,-0.6937,-0.6539,0.3805,-0.6539,-0.6539,0.3805,-0.6539,-0.6937,0.1939,-0.6937,-0.545,0.1939,-0.8157,-0.6539,0.3805,-0.6539,-0.545,0.1939,-0.8157,-0.5138,0.3805,-0.7689,-0.5138,0.3805,-0.7689,-0.545,0.1939,-0.8157,-0.3754,0.1939,-0.9063,-0.5138,0.3805,-0.7689,-0.3754,0.1939,-0.9063,-0.3539,0.3805,-0.8544,-0.3539,0.3805,-0.8544,-0.3754,0.1939,-0.9063,-0.1914,0.1939,-0.9622,-0.3539,0.3805,-0.8544,-0.1914,0.1939,-0.9622,-0.1804,0.3805,-0.907,-0.1804,0.3805,-0.907,-0.1914,0.1939,-0.9622,0.0,0.1939,-0.981,-0.1804,0.3805,-0.907,0.0,0.1939,-0.981,0.0,0.3805,-0.9248,0.0,0.3805,-0.9248,0.0,0.1939,-0.981,0.1914,0.1939,-0.9622,0.0,0.3805,-0.9248,0.1914,0.1939,-0.9622,0.1804,0.3805,-0.907,0.1804,0.3805,-0.907,0.1914,0.1939,-0.9622,0.3754,0.1939,-0.9063,0.1804,0.3805,-0.907,0.3754,0.1939,-0.9063,0.3539,0.3805,-0.8544,0.3539,0.3805,-0.8544,0.3754,0.1939,-0.9063,0.545,0.1939,-0.8157,0.3539,0.3805,-0.8544,0.545,0.1939,-0.8157,0.5138,0.3805,-0.7689,0.5138,0.3805,-0.7689,0.545,0.1939,-0.8157,0.6937,0.1939,-0.6937,0.5138,0.3805,-0.7689,0.6937,0.1939,-0.6937,0.6539,0.3805,-0.6539,0.6539,0.3805,-0.6539,0.6937,0.1939,-0.6937,0.8157,0.1939,-0.545,0.6539,0.3805,-0.6539,0.8157,0.1939,-0.545,0.7689,0.3805,-0.5138,0.7689,0.3805,-0.5138,0.8157,0.1939,-0.545,0.9063,0.1939,-0.3754,0.7689,0.3805,-0.5138,0.9063,0.1939,-0.3754,0.8544,0.3805,-0.3539,0.8544,0.3805,-0.3539,0.9063,0.1939,-0.3754,0.9622,0.1939,-0.1914,0.8544,0.3805,-0.3539,0.9622,0.1939,-0.1914,0.907,0.3805,-0.1804,0.907,0.3805,-0.1804,0.9622,0.1939,-0.1914,0.981,0.1939,0.0,0.907,0.3805,-0.1804,0.981,0.1939,0.0,0.9248,0.3805,0.0,0.9248,0.3805,0.0,0.981,0.1939,0.0,0.9622,0.1939,0.1914,0.9248,0.3805,0.0,0.9622,0.1939,0.1914,0.907,0.3805,0.1804,0.907,0.3805,0.1804,0.9622,0.1939,0.1914,0.9063,0.1939,0.3754,0.907,0.3805,0.1804,0.9063,0.1939,0.3754,0.8544,0.3805,0.3539,0.8544,0.3805,0.3539,0.9063,0.1939,0.3754,0.8157,0.1939,0.545,0.8544,0.3805,0.3539,0.8157,0.1939,0.545,0.7689,0.3805,0.5138,0.7689,0.3805,0.5138,0.8157,0.1939,0.545,0.6937,0.1939,0.6937,0.7689,0.3805,0.5138,0.6937,0.1939,0.6937,0.6539,0.3805,0.6539,0.6539,0.3805,0.6539,0.6937,0.1939,0.6937,0.545,0.1939,0.8157,0.6539,0.3805,0.6539,0.545,0.1939,0.8157,0.5138,0.3805,0.7689,0.5138,0.3805,0.7689,0.545,0.1939,0.8157,0.3754,0.1939,0.9063,0.5138,0.3805,0.7689,0.3754,0.1939,0.9063,0.3539,0.3805,0.8544,0.3539,0.3805,0.8544,0.3754,0.1939,0.9063,0.1914,0.1939,0.9622,0.3539,0.3805,0.8544,0.1914,0.1939,0.9622,0.1804,0.3805,0.907,0.1804,0.3805,0.907,0.1914,0.1939,0.9622,0.0,0.1939,0.981,0.1804,0.3805,0.907,0.0,0.1939,0.981,0.0,0.3805,0.9248,0.0,0.1939,0.981,0.0,0.0,1.0,-0.1951,0.0,0.9808,0.0,0.1939,0.981,-0.1951,0.0,0.9808,-0.1914,0.1939,0.9622,-0.1914,0.1939,0.9622,-0.1951,0.0,0.9808,-0.3827,0.0,0.9239,-0.1914,0.1939,0.9622,-0.3827,0.0,0.9239,-0.3754,0.1939,0.9063,-0.3754,0.1939,0.9063,-0.3827,0.0,0.9239,-0.5556,0.0,0.8315,-0.3754,0.1939,0.9063,-0.5556,0.0,0.8315,-0.545,0.1939,0.8157,-0.545,0.1939,0.8157,-0.5556,0.0,0.8315,-0.7071,0.0,0.7071,-0.545,0.1939,0.8157,-0.7071,0.0,0.7071,-0.6937,0.1939,0.6937,-0.6937,0.1939,0.6937,-0.7071,0.0,0.7071,-0.8315,0.0,0.5556,-0.6937,0.1939,0.6937,-0.8315,0.0,0.5556,-0.8157,0.1939,0.545,-0.8157,0.1939,0.545,-0.8315,0.0,0.5556,-0.9239,0.0,0.3827,-0.8157,0.1939,0.545,-0.9239,0.0,0.3827,-0.9063,0.1939,0.3754,-0.9063,0.1939,0.3754,-0.9239,0.0,0.3827,-0.9808,0.0,0.1951,-0.9063,0.1939,0.3754,-0.9808,0.0,0.1951,-0.9622,0.1939,0.1914,-0.9622,0.1939,0.1914,-0.9808,0.0,0.1951,-1.0,0.0,0.0,-0.9622,0.1939,0.1914,-1.0,0.0,0.0,-0.981,0.1939,0.0,-0.981,0.1939,0.0,-1.0,0.0,0.0,-0.9808,0.0,-0.1951,-0.981,0.1939,0.0,-0.9808,0.0,-0.1951,-0.9622,0.1939,-0.1914,-0.9622,0.1939,-0.1914,-0.9808,0.0,-0.1951,-0.9239,0.0,-0.3827,-0.9622,0.1939,-0.1914,-0.9239,0.0,-0.3827,-0.9063,0.1939,-0.3754,-0.9063,0.1939,-0.3754,-0.9239,0.0,-0.3827,-0.8315,0.0,-0.5556,-0.9063,0.1939,-0.3754,-0.8315,0.0,-0.5556,-0.8157,0.1939,-0.545,-0.8157,0.1939,-0.545,-0.8315,0.0,-0.5556,-0.7071,0.0,-0.7071,-0.8157,0.1939,-0.545,-0.7071,0.0,-0.7071,-0.6937,0.1939,-0.6937,-0.6937,0.1939,-0.6937,-0.7071,0.0,-0.7071,-0.5556,0.0,-0.8315,-0.6937,0.1939,-0.6937,-0.5556,0.0,-0.8315,-0.545,0.1939,-0.8157,-0.545,0.1939,-0.8157,-0.5556,0.0,-0.8315,-0.3827,0.0,-0.9239,-0.545,0.1939,-0.8157,-0.3827,0.0,-0.9239,-0.3754,0.1939,-0.9063,-0.3754,0.1939,-0.9063,-0.3827,0.0,-0.9239,-0.1951,0.0,-0.9808,-0.3754,0.1939,-0.9063,-0.1951,0.0,-0.9808,-0.1914,0.1939,-0.9622,-0.1914,0.1939,-0.9622,-0.1951,0.0,-0.9808,0.0,0.0,-1.0,-0.1914,0.1939,-0.9622,0.0,0.0,-1.0,0.0,0.1939,-0.981,0.0,0.1939,-0.981,0.0,0.0,-1.0,0.1951,0.0,-0.9808,0.0,0.1939,-0.981,0.1951,0.0,-0.9808,0.1914,0.1939,-0.9622,0.1914,0.1939,-0.9622,0.1951,0.0,-0.9808,0.3827,0.0,-0.9239,0.1914,0.1939,-0.9622,0.3827,0.0,-0.9239,0.3754,0.1939,-0.9063,0.3754,0.1939,-0.9063,0.3827,0.0,-0.9239,0.5556,0.0,-0.8315,0.3754,0.1939,-0.9063,0.5556,0.0,-0.8315,0.545,0.1939,-0.8157,0.545,0.1939,-0.8157,0.5556,0.0,-0.8315,0.7071,0.0,-0.7071,0.545,0.1939,-0.8157,0.7071,0.0,-0.7071,0.6937,0.1939,-0.6937,0.6937,0.1939,-0.6937,0.7071,0.0,-0.7071,0.8315,0.0,-0.5556,0.6937,0.1939,-0.6937,0.8315,0.0,-0.5556,0.8157,0.1939,-0.545,0.8157,0.1939,-0.545,0.8315,0.0,-0.5556,0.9239,0.0,-0.3827,0.8157,0.1939,-0.545,0.9239,0.0,-0.3827,0.9063,0.1939,-0.3754,0.9063,0.1939,-0.3754,0.9239,0.0,-0.3827,0.9808,0.0,-0.1951,0.9063,0.1939,-0.3754,0.9808,0.0,-0.1951,0.9622,0.1939,-0.1914,0.9622,0.1939,-0.1914,0.9808,0.0,-0.1951,1.0,0.0,0.0,0.9622,0.1939,-0.1914,1.0,0.0,0.0,0.981,0.1939,0.0,0.981,0.1939,0.0,1.0,0.0,0.0,0.9808,0.0,0.1951,0.981,0.1939,0.0,0.9808,0.0,0.1951,0.9622,0.1939,0.1914,0.9622,0.1939,0.1914,0.9808,0.0,0.1951,0.9239,0.0,0.3827,0.9622,0.1939,0.1914,0.9239,0.0,0.3827,0.9063,0.1939,0.3754,0.9063,0.1939,0.3754,0.9239,0.0,0.3827,0.8315,0.0,0.5556,0.9063,0.1939,0.3754,0.8315,0.0,0.5556,0.8157,0.1939,0.545,0.8157,0.1939,0.545,0.8315,0.0,0.5556,0.7071,0.0,0.7071,0.8157,0.1939,0.545,0.7071,0.0,0.7071,0.6937,0.1939,0.6937,0.6937,0.1939,0.6937,0.7071,0.0,0.7071,0.5556,0.0,0.8315,0.6937,0.1939,0.6937,0.5556,0.0,0.8315,0.545,0.1939,0.8157,0.545,0.1939,0.8157,0.5556,0.0,0.8315,0.3827,0.0,0.9239,0.545,0.1939,0.8157,0.3827,0.0,0.9239,0.3754,0.1939,0.9063,0.3754,0.1939,0.9063,0.3827,0.0,0.9239,0.1951,0.0,0.9808,0.3754,0.1939,0.9063,0.1951,0.0,0.9808,0.1914,0.1939,0.9622,0.1914,0.1939,0.9622,0.1951,0.0,0.9808,0.0,0.0,1.0,0.1914,0.1939,0.9622,0.0,0.0,1.0,0.0,0.1939,0.981,0.0,0.0,1.0,0.0,-0.1939,0.981,-0.1914,-0.1939,0.9622,0.0,0.0,1.0,-0.1914,-0.1939,0.9622,-0.1951,0.0,0.9808,-0.1951,0.0,0.9808,-0.1914,-0.1939,0.9622,-0.3754,-0.1939,0.9063,-0.1951,0.0,0.9808,-0.3754,-0.1939,0.9063,-0.3827,0.0,0.9239,-0.3827,0.0,0.9239,-0.3754,-0.1939,0.9063,-0.545,-0.1939,0.8157,-0.3827,0.0,0.9239,-0.545,-0.1939,0.8157,-0.5556,0.0,0.8315,-0.5556,0.0,0.8315,-0.545,-0.1939,0.8157,-0.6937,-0.1939,0.6937,-0.5556,0.0,0.8315,-0.6937,-0.1939,0.6937,-0.7071,0.0,0.7071,-0.7071,0.0,0.7071,-0.6937,-0.1939,0.6937,-0.8157,-0.1939,0.545,-0.7071,0.0,0.7071,-0.8157,-0.1939,0.545,-0.8315,0.0,0.5556,-0.8315,0.0,0.5556,-0.8157,-0.1939,0.545,-0.9063,-0.1939,0.3754,-0.8315,0.0,0.5556,-0.9063,-0.1939,0.3754,-0.9239,0.0,0.3827,-0.9239,0.0,0.3827,-0.9063,-0.1939,0.3754,-0.9622,-0.1939,0.1914,-0.9239,0.0,0.3827,-0.9622,-0.1939,0.1914,-0.9808,0.0,0.1951,-0.9808,0.0,0.1951,-0.9622,-0.1939,0.1914,-0.981,-0.1939,0.0,-0.9808,0.0,0.1951,-0.981,-0.1939,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-0.981,-0.1939,0.0,-0.9622,-0.1939,-0.1914,-1.0,0.0,0.0,-0.9622,-0.1939,-0.1914,-0.9808,0.0,-0.1951,-0.9808,0.0,-0.1951,-0.9622,-0.1939,-0.1914,-0.9063,-0.1939,-0.3754,-0.9808,0.0,-0.1951,-0.9063,-0.1939,-0.3754,-0.9239,0.0,-0.3827,-0.9239,0.0,-0.3827,-0.9063,-0.1939,-0.3754,-0.8157,-0.1939,-0.545,-0.9239,0.0,-0.3827,-0.8157,-0.1939,-0.545,-0.8315,0.0,-0.5556,-0.8315,0.0,-0.5556,-0.8157,-0.1939,-0.545,-0.6937,-0.1939,-0.6937,-0.8315,0.0,-0.5556,-0.6937,-0.1939,-0.6937,-0.7071,0.0,-0.7071,-0.7071,0.0,-0.7071,-0.6937,-0.1939,-0.6937,-0.545,-0.1939,-0.8157,-0.7071,0.0,-0.7071,-0.545,-0.1939,-0.8157,-0.5556,0.0,-0.8315,-0.5556,0.0,-0.8315,-0.545,-0.1939,-0.8157,-0.3754,-0.1939,-0.9063,-0.5556,0.0,-0.8315,-0.3754,-0.1939,-0.9063,-0.3827,0.0,-0.9239,-0.3827,0.0,-0.9239,-0.3754,-0.1939,-0.9063,-0.1914,-0.1939,-0.9622,-0.3827,0.0,-0.9239,-0.1914,-0.1939,-0.9622,-0.1951,0.0,-0.9808,-0.1951,0.0,-0.9808,-0.1914,-0.1939,-0.9622,0.0,-0.1939,-0.981,-0.1951,0.0,-0.9808,0.0,-0.1939,-0.981,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,-0.1939,-0.981,0.1914,-0.1939,-0.9622,0.0,0.0,-1.0,0.1914,-0.1939,-0.9622,0.1951,0.0,-0.9808,0.1951,0.0,-0.9808,0.1914,-0.1939,-0.9622,0.3754,-0.1939,-0.9063,0.1951,0.0,-0.9808,0.3754,-0.1939,-0.9063,0.3827,0.0,-0.9239,0.3827,0.0,-0.9239,0.3754,-0.1939,-0.9063,0.545,-0.1939,-0.8157,0.3827,0.0,-0.9239,0.545,-0.1939,-0.8157,0.5556,0.0,-0.8315,0.5556,0.0,-0.8315,0.545,-0.1939,-0.8157,0.6937,-0.1939,-0.6937,0.5556,0.0,-0.8315,0.6937,-0.1939,-0.6937,0.7071,0.0,-0.7071,0.7071,0.0,-0.7071,0.6937,-0.1939,-0.6937,0.8157,-0.1939,-0.545,0.7071,0.0,-0.7071,0.8157,-0.1939,-0.545,0.8315,0.0,-0.5556,0.8315,0.0,-0.5556,0.8157,-0.1939,-0.545,0.9063,-0.1939,-0.3754,0.8315,0.0,-0.5556,0.9063,-0.1939,-0.3754,0.9239,0.0,-0.3827,0.9239,0.0,-0.3827,0.9063,-0.1939,-0.3754,0.9622,-0.1939,-0.1914,0.9239,0.0,-0.3827,0.9622,-0.1939,-0.1914,0.9808,0.0,-0.1951,0.9808,0.0,-0.1951,0.9622,-0.1939,-0.1914,0.981,-0.1939,0.0,0.9808,0.0,-0.1951,0.981,-0.1939,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.981,-0.1939,0.0,0.9622,-0.1939,0.1914,1.0,0.0,0.0,0.9622,-0.1939,0.1914,0.9808,0.0,0.1951,0.9808,0.0,0.1951,0.9622,-0.1939,0.1914,0.9063,-0.1939,0.3754,0.9808,0.0,0.1951,0.9063,-0.1939,0.3754,0.9239,0.0,0.3827,0.9239,0.0,0.3827,0.9063,-0.1939,0.3754,0.8157,-0.1939,0.545,0.9239,0.0,0.3827,0.8157,-0.1939,0.545,0.8315,0.0,0.5556,0.8315,0.0,0.5556,0.8157,-0.1939,0.545,0.6937,-0.1939,0.6937,0.8315,0.0,0.5556,0.6937,-0.1939,0.6937,0.7071,0.0,0.7071,0.7071,0.0,0.7071,0.6937,-0.1939,0.6937,0.545,-0.1939,0.8157,0.7071,0.0,0.7071,0.545,-0.1939,0.8157,0.5556,0.0,0.8315,0.5556,0.0,0.8315,0.545,-0.1939,0.8157,0.3754,-0.1939,0.9063,0.5556,0.0,0.8315,0.3754,-0.1939,0.9063,0.3827,0.0,0.9239,0.3827,0.0,0.9239,0.3754,-0.1939,0.9063,0.1914,-0.1939,0.9622,0.3827,0.0,0.9239,0.1914,-0.1939,0.9622,0.1951,0.0,0.9808,0.1951,0.0,0.9808,0.1914,-0.1939,0.9622,0.0,-0.1939,0.981,0.1951,0.0,0.9808,0.0,-0.1939,0.981,0.0,0.0,1.0,0.0,-0.1939,0.981,0.0,-0.3805,0.9248,-0.1804,-0.3805,0.907,0.0,-0.1939,0.981,-0.1804,-0.3805,0.907,-0.1914,-0.1939,0.9622,-0.1914,-0.1939,0.9622,-0.1804,-0.3805,0.907,-0.3539,-0.3805,0.8544,-0.1914,-0.1939,0.9622,-0.3539,-0.3805,0.8544,-0.3754,-0.1939,0.9063,-0.3754,-0.1939,0.9063,-0.3539,-0.3805,0.8544,-0.5138,-0.3805,0.7689,-0.3754,-0.1939,0.9063,-0.5138,-0.3805,0.7689,-0.545,-0.1939,0.8157,-0.545,-0.1939,0.8157,-0.5138,-0.3805,0.7689,-0.6539,-0.3805,0.6539,-0.545,-0.1939,0.8157,-0.6539,-0.3805,0.6539,-0.6937,-0.1939,0.6937,-0.6937,-0.1939,0.6937,-0.6539,-0.3805,0.6539,-0.7689,-0.3805,0.5138,-0.6937,-0.1939,0.6937,-0.7689,-0.3805,0.5138,-0.8157,-0.1939,0.545,-0.8157,-0.1939,0.545,-0.7689,-0.3805,0.5138,-0.8544,-0.3805,0.3539,-0.8157,-0.1939,0.545,-0.8544,-0.3805,0.3539,-0.9063,-0.1939,0.3754,-0.9063,-0.1939,0.3754,-0.8544,-0.3805,0.3539,-0.907,-0.3805,0.1804,-0.9063,-0.1939,0.3754,-0.907,-0.3805,0.1804,-0.9622,-0.1939,0.1914,-0.9622,-0.1939,0.1914,-0.907,-0.3805,0.1804,-0.9248,-0.3805,0.0,-0.9622,-0.1939,0.1914,-0.9248,-0.3805,0.0,-0.981,-0.1939,0.0,-0.981,-0.1939,0.0,-0.9248,-0.3805,0.0,-0.907,-0.3805,-0.1804,-0.981,-0.1939,0.0,-0.907,-0.3805,-0.1804,-0.9622,-0.1939,-0.1914,-0.9622,-0.1939,-0.1914,-0.907,-0.3805,-0.1804,-0.8544,-0.3805,-0.3539,-0.9622,-0.1939,-0.1914,-0.8544,-0.3805,-0.3539,-0.9063,-0.1939,-0.3754,-0.9063,-0.1939,-0.3754,-0.8544,-0.3805,-0.3539,-0.7689,-0.3805,-0.5138,-0.9063,-0.1939,-0.3754,-0.7689,-0.3805,-0.5138,-0.8157,-0.1939,-0.545,-0.8157,-0.1939,-0.545,-0.7689,-0.3805,-0.5138,-0.6539,-0.3805,-0.6539,-0.8157,-0.1939,-0.545,-0.6539,-0.3805,-0.6539,-0.6937,-0.1939,-0.6937,-0.6937,-0.1939,-0.6937,-0.6539,-0.3805,-0.6539,-0.5138,-0.3805,-0.7689,-0.6937,-0.1939,-0.6937,-0.5138,-0.3805,-0.7689,-0.545,-0.1939,-0.8157,-0.545,-0.1939,-0.8157,-0.5138,-0.3805,-0.7689,-0.3539,-0.3805,-0.8544,-0.545,-0.1939,-0.8157,-0.3539,-0.3805,-0.8544,-0.3754,-0.1939,-0.9063,-0.3754,-0.1939,-0.9063,-0.3539,-0.3805,-0.8544,-0.1804,-0.3805,-0.907,-0.3754,-0.1939,-0.9063,-0.1804,-0.3805,-0.907,-0.1914,-0.1939,-0.9622,-0.1914,-0.1939,-0.9622,-0.1804,-0.3805,-0.907,0.0,-0.3805,-0.9248,-0.1914,-0.1939,-0.9622,0.0,-0.3805,-0.9248,0.0,-0.1939,-0.981,0.0,-0.1939,-0.981,0.0,-0.3805,-0.9248,0.1804,-0.3805,-0.907,0.0,-0.1939,-0.981,0.1804,-0.3805,-0.907,0.1914,-0.1939,-0.9622,0.1914,-0.1939,-0.9622,0.1804,-0.3805,-0.907,0.3539,-0.3805,-0.8544,0.1914,-0.1939,-0.9622,0.3539,-0.3805,-0.8544,0.3754,-0.1939,-0.9063,0.3754,-0.1939,-0.9063,0.3539,-0.3805,-0.8544,0.5138,-0.3805,-0.7689,0.3754,-0.1939,-0.9063,0.5138,-0.3805,-0.7689,0.545,-0.1939,-0.8157,0.545,-0.1939,-0.8157,0.5138,-0.3805,-0.7689,0.6539,-0.3805,-0.6539,0.545,-0.1939,-0.8157,0.6539,-0.3805,-0.6539,0.6937,-0.1939,-0.6937,0.6937,-0.1939,-0.6937,0.6539,-0.3805,-0.6539,0.7689,-0.3805,-0.5138,0.6937,-0.1939,-0.6937,0.7689,-0.3805,-0.5138,0.8157,-0.1939,-0.545,0.8157,-0.1939,-0.545,0.7689,-0.3805,-0.5138,0.8544,-0.3805,-0.3539,0.8157,-0.1939,-0.545,0.8544,-0.3805,-0.3539,0.9063,-0.1939,-0.3754,0.9063,-0.1939,-0.3754,0.8544,-0.3805,-0.3539,0.907,-0.3805,-0.1804,0.9063,-0.1939,-0.3754,0.907,-0.3805,-0.1804,0.9622,-0.1939,-0.1914,0.9622,-0.1939,-0.1914,0.907,-0.3805,-0.1804,0.9248,-0.3805,0.0,0.9622,-0.1939,-0.1914,0.9248,-0.3805,0.0,0.981,-0.1939,0.0,0.981,-0.1939,0.0,0.9248,-0.3805,0.0,0.907,-0.3805,0.1804,0.981,-0.1939,0.0,0.907,-0.3805,0.1804,0.9622,-0.1939,0.1914,0.9622,-0.1939,0.1914,0.907,-0.3805,0.1804,0.8544,-0.3805,0.3539,0.9622,-0.1939,0.1914,0.8544,-0.3805,0.3539,0.9063,-0.1939,0.3754,0.9063,-0.1939,0.3754,0.8544,-0.3805,0.3539,0.7689,-0.3805,0.5138,0.9063,-0.1939,0.3754,0.7689,-0.3805,0.5138,0.8157,-0.1939,0.545,0.8157,-0.1939,0.545,0.7689,-0.3805,0.5138,0.6539,-0.3805,0.6539,0.8157,-0.1939,0.545,0.6539,-0.3805,0.6539,0.6937,-0.1939,0.6937,0.6937,-0.1939,0.6937,0.6539,-0.3805,0.6539,0.5138,-0.3805,0.7689,0.6937,-0.1939,0.6937,0.5138,-0.3805,0.7689,0.545,-0.1939,0.8157,0.545,-0.1939,0.8157,0.5138,-0.3805,0.7689,0.3539,-0.3805,0.8544,0.545,-0.1939,0.8157,0.3539,-0.3805,0.8544,0.3754,-0.1939,0.9063,0.3754,-0.1939,0.9063,0.3539,-0.3805,0.8544,0.1804,-0.3805,0.907,0.3754,-0.1939,0.9063,0.1804,-0.3805,0.907,0.1914,-0.1939,0.9622,0.1914,-0.1939,0.9622,0.1804,-0.3805,0.907,0.0,-0.3805,0.9248,0.1914,-0.1939,0.9622,0.0,-0.3805,0.9248,0.0,-0.1939,0.981,0.0,-0.3805,0.9248,0.0,-0.5528,0.8333,-0.1626,-0.5528,0.8173,0.0,-0.3805,0.9248,-0.1626,-0.5528,0.8173,-0.1804,-0.3805,0.907,-0.1804,-0.3805,0.907,-0.1626,-0.5528,0.8173,-0.3189,-0.5528,0.7699,-0.1804,-0.3805,0.907,-0.3189,-0.5528,0.7699,-0.3539,-0.3805,0.8544,-0.3539,-0.3805,0.8544,-0.3189,-0.5528,0.7699,-0.463,-0.5528,0.6929,-0.3539,-0.3805,0.8544,-0.463,-0.5528,0.6929,-0.5138,-0.3805,0.7689,-0.5138,-0.3805,0.7689,-0.463,-0.5528,0.6929,-0.5893,-0.5528,0.5893,-0.5138,-0.3805,0.7689,-0.5893,-0.5528,0.5893,-0.6539,-0.3805,0.6539,-0.6539,-0.3805,0.6539,-0.5893,-0.5528,0.5893,-0.6929,-0.5528,0.463,-0.6539,-0.3805,0.6539,-0.6929,-0.5528,0.463,-0.7689,-0.3805,0.5138,-0.7689,-0.3805,0.5138,-0.6929,-0.5528,0.463,-0.7699,-0.5528,0.3189,-0.7689,-0.3805,0.5138,-0.7699,-0.5528,0.3189,-0.8544,-0.3805,0.3539,-0.8544,-0.3805,0.3539,-0.7699,-0.5528,0.3189,-0.8173,-0.5528,0.1626,-0.8544,-0.3805,0.3539,-0.8173,-0.5528,0.1626,-0.907,-0.3805,0.1804,-0.907,-0.3805,0.1804,-0.8173,-0.5528,0.1626,-0.8333,-0.5528,0.0,-0.907,-0.3805,0.1804,-0.8333,-0.5528,0.0,-0.9248,-0.3805,0.0,-0.9248,-0.3805,0.0,-0.8333,-0.5528,0.0,-0.8173,-0.5528,-0.1626,-0.9248,-0.3805,0.0,-0.8173,-0.5528,-0.1626,-0.907,-0.3805,-0.1804,-0.907,-0.3805,-0.1804,-0.8173,-0.5528,-0.1626,-0.7699,-0.5528,-0.3189,-0.907,-0.3805,-0.1804,-0.7699,-0.5528,-0.3189,-0.8544,-0.3805,-0.3539,-0.8544,-0.3805,-0.3539,-0.7699,-0.5528,-0.3189,-0.6929,-0.5528,-0.463,-0.8544,-0.3805,-0.3539,-0.6929,-0.5528,-0.463,-0.7689,-0.3805,-0.5138,-0.7689,-0.3805,-0.5138,-0.6929,-0.5528,-0.463,-0.5893,-0.5528,-0.5893,-0.7689,-0.3805,-0.5138,-0.5893,-0.5528,-0.5893,-0.6539,-0.3805,-0.6539,-0.6539,-0.3805,-0.6539,-0.5893,-0.5528,-0.5893,-0.463,-0.5528,-0.6929,-0.6539,-0.3805,-0.6539,-0.463,-0.5528,-0.6929,-0.5138,-0.3805,-0.7689,-0.5138,-0.3805,-0.7689,-0.463,-0.5528,-0.6929,-0.3189,-0.5528,-0.7699,-0.5138,-0.3805,-0.7689,-0.3189,-0.5528,-0.7699,-0.3539,-0.3805,-0.8544,-0.3539,-0.3805,-0.8544,-0.3189,-0.5528,-0.7699,-0.1626,-0.5528,-0.8173,-0.3539,-0.3805,-0.8544,-0.1626,-0.5528,-0.8173,-0.1804,-0.3805,-0.907,-0.1804,-0.3805,-0.907,-0.1626,-0.5528,-0.8173,0.0,-0.5528,-0.8333,-0.1804,-0.3805,-0.907,0.0,-0.5528,-0.8333,0.0,-0.3805,-0.9248,0.0,-0.3805,-0.9248,0.0,-0.5528,-0.8333,0.1626,-0.5528,-0.8173,0.0,-0.3805,-0.9248,0.1626,-0.5528,-0.8173,0.1804,-0.3805,-0.907,0.1804,-0.3805,-0.907,0.1626,-0.5528,-0.8173,0.3189,-0.5528,-0.7699,0.1804,-0.3805,-0.907,0.3189,-0.5528,-0.7699,0.3539,-0.3805,-0.8544,0.3539,-0.3805,-0.8544,0.3189,-0.5528,-0.7699,0.463,-0.5528,-0.6929,0.3539,-0.3805,-0.8544,0.463,-0.5528,-0.6929,0.5138,-0.3805,-0.7689,0.5138,-0.3805,-0.7689,0.463,-0.5528,-0.6929,0.5893,-0.5528,-0.5893,0.5138,-0.3805,-0.7689,0.5893,-0.5528,-0.5893,0.6539,-0.3805,-0.6539,0.6539,-0.3805,-0.6539,0.5893,-0.5528,-0.5893,0.6929,-0.5528,-0.463,0.6539,-0.3805,-0.6539,0.6929,-0.5528,-0.463,0.7689,-0.3805,-0.5138,0.7689,-0.3805,-0.5138,0.6929,-0.5528,-0.463,0.7699,-0.5528,-0.3189,0.7689,-0.3805,-0.5138,0.7699,-0.5528,-0.3189,0.8544,-0.3805,-0.3539,0.8544,-0.3805,-0.3539,0.7699,-0.5528,-0.3189,0.8173,-0.5528,-0.1626,0.8544,-0.3805,-0.3539,0.8173,-0.5528,-0.1626,0.907,-0.3805,-0.1804,0.907,-0.3805,-0.1804,0.8173,-0.5528,-0.1626,0.8333,-0.5528,0.0,0.907,-0.3805,-0.1804,0.8333,-0.5528,0.0,0.9248,-0.3805,0.0,0.9248,-0.3805,0.0,0.8333,-0.5528,0.0,0.8173,-0.5528,0.1626,0.9248,-0.3805,0.0,0.8173,-0.5528,0.1626,0.907,-0.3805,0.1804,0.907,-0.3805,0.1804,0.8173,-0.5528,0.1626,0.7699,-0.5528,0.3189,0.907,-0.3805,0.1804,0.7699,-0.5528,0.3189,0.8544,-0.3805,0.3539,0.8544,-0.3805,0.3539,0.7699,-0.5528,0.3189,0.6929,-0.5528,0.463,0.8544,-0.3805,0.3539,0.6929,-0.5528,0.463,0.7689,-0.3805,0.5138,0.7689,-0.3805,0.5138,0.6929,-0.5528,0.463,0.5893,-0.5528,0.5893,0.7689,-0.3805,0.5138,0.5893,-0.5528,0.5893,0.6539,-0.3805,0.6539,0.6539,-0.3805,0.6539,0.5893,-0.5528,0.5893,0.463,-0.5528,0.6929,0.6539,-0.3805,0.6539,0.463,-0.5528,0.6929,0.5138,-0.3805,0.7689,0.5138,-0.3805,0.7689,0.463,-0.5528,0.6929,0.3189,-0.5528,0.7699,0.5138,-0.3805,0.7689,0.3189,-0.5528,0.7699,0.3539,-0.3805,0.8544,0.3539,-0.3805,0.8544,0.3189,-0.5528,0.7699,0.1626,-0.5528,0.8173,0.3539,-0.3805,0.8544,0.1626,-0.5528,0.8173,0.1804,-0.3805,0.907,0.1804,-0.3805,0.907,0.1626,-0.5528,0.8173,0.0,-0.5528,0.8333,0.1804,-0.3805,0.907,0.0,-0.5528,0.8333,0.0,-0.3805,0.9248,0.0,-0.5528,0.8333,0.0,-0.7041,0.7101,-0.1385,-0.7041,0.6965,0.0,-0.5528,0.8333,-0.1385,-0.7041,0.6965,-0.1626,-0.5528,0.8173,-0.1626,-0.5528,0.8173,-0.1385,-0.7041,0.6965,-0.2718,-0.7041,0.6561,-0.1626,-0.5528,0.8173,-0.2718,-0.7041,0.6561,-0.3189,-0.5528,0.7699,-0.3189,-0.5528,0.7699,-0.2718,-0.7041,0.6561,-0.3945,-0.7041,0.5905,-0.3189,-0.5528,0.7699,-0.3945,-0.7041,0.5905,-0.463,-0.5528,0.6929,-0.463,-0.5528,0.6929,-0.3945,-0.7041,0.5905,-0.5021,-0.7041,0.5021,-0.463,-0.5528,0.6929,-0.5021,-0.7041,0.5021,-0.5893,-0.5528,0.5893,-0.5893,-0.5528,0.5893,-0.5021,-0.7041,0.5021,-0.5905,-0.7041,0.3945,-0.5893,-0.5528,0.5893,-0.5905,-0.7041,0.3945,-0.6929,-0.5528,0.463,-0.6929,-0.5528,0.463,-0.5905,-0.7041,0.3945,-0.6561,-0.7041,0.2718,-0.6929,-0.5528,0.463,-0.6561,-0.7041,0.2718,-0.7699,-0.5528,0.3189,-0.7699,-0.5528,0.3189,-0.6561,-0.7041,0.2718,-0.6965,-0.7041,0.1385,-0.7699,-0.5528,0.3189,-0.6965,-0.7041,0.1385,-0.8173,-0.5528,0.1626,-0.8173,-0.5528,0.1626,-0.6965,-0.7041,0.1385,-0.7101,-0.7041,0.0,-0.8173,-0.5528,0.1626,-0.7101,-0.7041,0.0,-0.8333,-0.5528,0.0,-0.8333,-0.5528,0.0,-0.7101,-0.7041,0.0,-0.6965,-0.7041,-0.1385,-0.8333,-0.5528,0.0,-0.6965,-0.7041,-0.1385,-0.8173,-0.5528,-0.1626,-0.8173,-0.5528,-0.1626,-0.6965,-0.7041,-0.1385,-0.6561,-0.7041,-0.2718,-0.8173,-0.5528,-0.1626,-0.6561,-0.7041,-0.2718,-0.7699,-0.5528,-0.3189,-0.7699,-0.5528,-0.3189,-0.6561,-0.7041,-0.2718,-0.5905,-0.7041,-0.3945,-0.7699,-0.5528,-0.3189,-0.5905,-0.7041,-0.3945,-0.6929,-0.5528,-0.463,-0.6929,-0.5528,-0.463,-0.5905,-0.7041,-0.3945,-0.5021,-0.7041,-0.5021,-0.6929,-0.5528,-0.463,-0.5021,-0.7041,-0.5021,-0.5893,-0.5528,-0.5893,-0.5893,-0.5528,-0.5893,-0.5021,-0.7041,-0.5021,-0.3945,-0.7041,-0.5905,-0.5893,-0.5528,-0.5893,-0.3945,-0.7041,-0.5905,-0.463,-0.5528,-0.6929,-0.463,-0.5528,-0.6929,-0.3945,-0.7041,-0.5905,-0.2718,-0.7041,-0.6561,-0.463,-0.5528,-0.6929,-0.2718,-0.7041,-0.6561,-0.3189,-0.5528,-0.7699,-0.3189,-0.5528,-0.7699,-0.2718,-0.7041,-0.6561,-0.1385,-0.7041,-0.6965,-0.3189,-0.5528,-0.7699,-0.1385,-0.7041,-0.6965,-0.1626,-0.5528,-0.8173,-0.1626,-0.5528,-0.8173,-0.1385,-0.7041,-0.6965,0.0,-0.7041,-0.7101,-0.1626,-0.5528,-0.8173,0.0,-0.7041,-0.7101,0.0,-0.5528,-0.8333,0.0,-0.5528,-0.8333,0.0,-0.7041,-0.7101,0.1385,-0.7041,-0.6965,0.0,-0.5528,-0.8333,0.1385,-0.7041,-0.6965,0.1626,-0.5528,-0.8173,0.1626,-0.5528,-0.8173,0.1385,-0.7041,-0.6965,0.2718,-0.7041,-0.6561,0.1626,-0.5528,-0.8173,0.2718,-0.7041,-0.6561,0.3189,-0.5528,-0.7699,0.3189,-0.5528,-0.7699,0.2718,-0.7041,-0.6561,0.3945,-0.7041,-0.5905,0.3189,-0.5528,-0.7699,0.3945,-0.7041,-0.5905,0.463,-0.5528,-0.6929,0.463,-0.5528,-0.6929,0.3945,-0.7041,-0.5905,0.5021,-0.7041,-0.5021,0.463,-0.5528,-0.6929,0.5021,-0.7041,-0.5021,0.5893,-0.5528,-0.5893,0.5893,-0.5528,-0.5893,0.5021,-0.7041,-0.5021,0.5905,-0.7041,-0.3945,0.5893,-0.5528,-0.5893,0.5905,-0.7041,-0.3945,0.6929,-0.5528,-0.463,0.6929,-0.5528,-0.463,0.5905,-0.7041,-0.3945,0.6561,-0.7041,-0.2718,0.6929,-0.5528,-0.463,0.6561,-0.7041,-0.2718,0.7699,-0.5528,-0.3189,0.7699,-0.5528,-0.3189,0.6561,-0.7041,-0.2718,0.6965,-0.7041,-0.1385,0.7699,-0.5528,-0.3189,0.6965,-0.7041,-0.1385,0.8173,-0.5528,-0.1626,0.8173,-0.5528,-0.1626,0.6965,-0.7041,-0.1385,0.7101,-0.7041,0.0,0.8173,-0.5528,-0.1626,0.7101,-0.7041,0.0,0.8333,-0.5528,0.0,0.8333,-0.5528,0.0,0.7101,-0.7041,0.0,0.6965,-0.7041,0.1385,0.8333,-0.5528,0.0,0.6965,-0.7041,0.1385,0.8173,-0.5528,0.1626,0.8173,-0.5528,0.1626,0.6965,-0.7041,0.1385,0.6561,-0.7041,0.2718,0.8173,-0.5528,0.1626,0.6561,-0.7041,0.2718,0.7699,-0.5528,0.3189,0.7699,-0.5528,0.3189,0.6561,-0.7041,0.2718,0.5905,-0.7041,0.3945,0.7699,-0.5528,0.3189,0.5905,-0.7041,0.3945,0.6929,-0.5528,0.463,0.6929,-0.5528,0.463,0.5905,-0.7041,0.3945,0.5021,-0.7041,0.5021,0.6929,-0.5528,0.463,0.5021,-0.7041,0.5021,0.5893,-0.5528,0.5893,0.5893,-0.5528,0.5893,0.5021,-0.7041,0.5021,0.3945,-0.7041,0.5905,0.5893,-0.5528,0.5893,0.3945,-0.7041,0.5905,0.463,-0.5528,0.6929,0.463,-0.5528,0.6929,0.3945,-0.7041,0.5905,0.2718,-0.7041,0.6561,0.463,-0.5528,0.6929,0.2718,-0.7041,0.6561,0.3189,-0.5528,0.7699,0.3189,-0.5528,0.7699,0.2718,-0.7041,0.6561,0.1385,-0.7041,0.6965,0.3189,-0.5528,0.7699,0.1385,-0.7041,0.6965,0.1626,-0.5528,0.8173,0.1626,-0.5528,0.8173,0.1385,-0.7041,0.6965,0.0,-0.7041,0.7101,0.1626,-0.5528,0.8173,0.0,-0.7041,0.7101,0.0,-0.5528,0.8333,0.0,-0.7041,0.7101,0.0,-0.8286,0.5598,-0.1092,-0.8286,0.549,0.0,-0.7041,0.7101,-0.1092,-0.8286,0.549,-0.1385,-0.7041,0.6965,-0.1385,-0.7041,0.6965,-0.1092,-0.8286,0.549,-0.2142,-0.8286,0.5172,-0.1385,-0.7041,0.6965,-0.2142,-0.8286,0.5172,-0.2718,-0.7041,0.6561,-0.2718,-0.7041,0.6561,-0.2142,-0.8286,0.5172,-0.311,-0.8286,0.4654,-0.2718,-0.7041,0.6561,-0.311,-0.8286,0.4654,-0.3945,-0.7041,0.5905,-0.3945,-0.7041,0.5905,-0.311,-0.8286,0.4654,-0.3958,-0.8286,0.3958,-0.3945,-0.7041,0.5905,-0.3958,-0.8286,0.3958,-0.5021,-0.7041,0.5021,-0.5021,-0.7041,0.5021,-0.3958,-0.8286,0.3958,-0.4654,-0.8286,0.311,-0.5021,-0.7041,0.5021,-0.4654,-0.8286,0.311,-0.5905,-0.7041,0.3945,-0.5905,-0.7041,0.3945,-0.4654,-0.8286,0.311,-0.5172,-0.8286,0.2142,-0.5905,-0.7041,0.3945,-0.5172,-0.8286,0.2142,-0.6561,-0.7041,0.2718,-0.6561,-0.7041,0.2718,-0.5172,-0.8286,0.2142,-0.549,-0.8286,0.1092,-0.6561,-0.7041,0.2718,-0.549,-0.8286,0.1092,-0.6965,-0.7041,0.1385,-0.6965,-0.7041,0.1385,-0.549,-0.8286,0.1092,-0.5598,-0.8286,0.0,-0.6965,-0.7041,0.1385,-0.5598,-0.8286,0.0,-0.7101,-0.7041,0.0,-0.7101,-0.7041,0.0,-0.5598,-0.8286,0.0,-0.549,-0.8286,-0.1092,-0.7101,-0.7041,0.0,-0.549,-0.8286,-0.1092,-0.6965,-0.7041,-0.1385,-0.6965,-0.7041,-0.1385,-0.549,-0.8286,-0.1092,-0.5172,-0.8286,-0.2142,-0.6965,-0.7041,-0.1385,-0.5172,-0.8286,-0.2142,-0.6561,-0.7041,-0.2718,-0.6561,-0.7041,-0.2718,-0.5172,-0.8286,-0.2142,-0.4654,-0.8286,-0.311,-0.6561,-0.7041,-0.2718,-0.4654,-0.8286,-0.311,-0.5905,-0.7041,-0.3945,-0.5905,-0.7041,-0.3945,-0.4654,-0.8286,-0.311,-0.3958,-0.8286,-0.3958,-0.5905,-0.7041,-0.3945,-0.3958,-0.8286,-0.3958,-0.5021,-0.7041,-0.5021,-0.5021,-0.7041,-0.5021,-0.3958,-0.8286,-0.3958,-0.311,-0.8286,-0.4654,-0.5021,-0.7041,-0.5021,-0.311,-0.8286,-0.4654,-0.3945,-0.7041,-0.5905,-0.3945,-0.7041,-0.5905,-0.311,-0.8286,-0.4654,-0.2142,-0.8286,-0.5172,-0.3945,-0.7041,-0.5905,-0.2142,-0.8286,-0.5172,-0.2718,-0.7041,-0.6561,-0.2718,-0.7041,-0.6561,-0.2142,-0.8286,-0.5172,-0.1092,-0.8286,-0.549,-0.2718,-0.7041,-0.6561,-0.1092,-0.8286,-0.549,-0.1385,-0.7041,-0.6965,-0.1385,-0.7041,-0.6965,-0.1092,-0.8286,-0.549,0.0,-0.8286,-0.5598,-0.1385,-0.7041,-0.6965,0.0,-0.8286,-0.5598,0.0,-0.7041,-0.7101,0.0,-0.7041,-0.7101,0.0,-0.8286,-0.5598,0.1092,-0.8286,-0.549,0.0,-0.7041,-0.7101,0.1092,-0.8286,-0.549,0.1385,-0.7041,-0.6965,0.1385,-0.7041,-0.6965,0.1092,-0.8286,-0.549,0.2142,-0.8286,-0.5172,0.1385,-0.7041,-0.6965,0.2142,-0.8286,-0.5172,0.2718,-0.7041,-0.6561,0.2718,-0.7041,-0.6561,0.2142,-0.8286,-0.5172,0.311,-0.8286,-0.4654,0.2718,-0.7041,-0.6561,0.311,-0.8286,-0.4654,0.3945,-0.7041,-0.5905,0.3945,-0.7041,-0.5905,0.311,-0.8286,-0.4654,0.3958,-0.8286,-0.3958,0.3945,-0.7041,-0.5905,0.3958,-0.8286,-0.3958,0.5021,-0.7041,-0.5021,0.5021,-0.7041,-0.5021,0.3958,-0.8286,-0.3958,0.4654,-0.8286,-0.311,0.5021,-0.7041,-0.5021,0.4654,-0.8286,-0.311,0.5905,-0.7041,-0.3945,0.5905,-0.7041,-0.3945,0.4654,-0.8286,-0.311,0.5172,-0.8286,-0.2142,0.5905,-0.7041,-0.3945,0.5172,-0.8286,-0.2142,0.6561,-0.7041,-0.2718,0.6561,-0.7041,-0.2718,0.5172,-0.8286,-0.2142,0.549,-0.8286,-0.1092,0.6561,-0.7041,-0.2718,0.549,-0.8286,-0.1092,0.6965,-0.7041,-0.1385,0.6965,-0.7041,-0.1385,0.549,-0.8286,-0.1092,0.5598,-0.8286,0.0,0.6965,-0.7041,-0.1385,0.5598,-0.8286,0.0,0.7101,-0.7041,0.0,0.7101,-0.7041,0.0,0.5598,-0.8286,0.0,0.549,-0.8286,0.1092,0.7101,-0.7041,0.0,0.549,-0.8286,0.1092,0.6965,-0.7041,0.1385,0.6965,-0.7041,0.1385,0.549,-0.8286,0.1092,0.5172,-0.8286,0.2142,0.6965,-0.7041,0.1385,0.5172,-0.8286,0.2142,0.6561,-0.7041,0.2718,0.6561,-0.7041,0.2718,0.5172,-0.8286,0.2142,0.4654,-0.8286,0.311,0.6561,-0.7041,0.2718,0.4654,-0.8286,0.311,0.5905,-0.7041,0.3945,0.5905,-0.7041,0.3945,0.4654,-0.8286,0.311,0.3958,-0.8286,0.3958,0.5905,-0.7041,0.3945,0.3958,-0.8286,0.3958,0.5021,-0.7041,0.5021,0.5021,-0.7041,0.5021,0.3958,-0.8286,0.3958,0.311,-0.8286,0.4654,0.5021,-0.7041,0.5021,0.311,-0.8286,0.4654,0.3945,-0.7041,0.5905,0.3945,-0.7041,0.5905,0.311,-0.8286,0.4654,0.2142,-0.8286,0.5172,0.3945,-0.7041,0.5905,0.2142,-0.8286,0.5172,0.2718,-0.7041,0.6561,0.2718,-0.7041,0.6561,0.2142,-0.8286,0.5172,0.1092,-0.8286,0.549,0.2718,-0.7041,0.6561,0.1092,-0.8286,0.549,0.1385,-0.7041,0.6965,0.1385,-0.7041,0.6965,0.1092,-0.8286,0.549,0.0,-0.8286,0.5598,0.1385,-0.7041,0.6965,0.0,-0.8286,0.5598,0.0,-0.7041,0.7101,0.0,-0.8286,0.5598,0.0,-0.9217,0.3879,-0.0757,-0.9217,0.3804,0.0,-0.8286,0.5598,-0.0757,-0.9217,0.3804,-0.1092,-0.8286,0.549,-0.1092,-0.8286,0.549,-0.0757,-0.9217,0.3804,-0.1484,-0.9217,0.3584,-0.1092,-0.8286,0.549,-0.1484,-0.9217,0.3584,-0.2142,-0.8286,0.5172,-0.2142,-0.8286,0.5172,-0.1484,-0.9217,0.3584,-0.2155,-0.9217,0.3225,-0.2142,-0.8286,0.5172,-0.2155,-0.9217,0.3225,-0.311,-0.8286,0.4654,-0.311,-0.8286,0.4654,-0.2155,-0.9217,0.3225,-0.2743,-0.9217,0.2743,-0.311,-0.8286,0.4654,-0.2743,-0.9217,0.2743,-0.3958,-0.8286,0.3958,-0.3958,-0.8286,0.3958,-0.2743,-0.9217,0.2743,-0.3225,-0.9217,0.2155,-0.3958,-0.8286,0.3958,-0.3225,-0.9217,0.2155,-0.4654,-0.8286,0.311,-0.4654,-0.8286,0.311,-0.3225,-0.9217,0.2155,-0.3584,-0.9217,0.1484,-0.4654,-0.8286,0.311,-0.3584,-0.9217,0.1484,-0.5172,-0.8286,0.2142,-0.5172,-0.8286,0.2142,-0.3584,-0.9217,0.1484,-0.3804,-0.9217,0.0757,-0.5172,-0.8286,0.2142,-0.3804,-0.9217,0.0757,-0.549,-0.8286,0.1092,-0.549,-0.8286,0.1092,-0.3804,-0.9217,0.0757,-0.3879,-0.9217,0.0,-0.549,-0.8286,0.1092,-0.3879,-0.9217,0.0,-0.5598,-0.8286,0.0,-0.5598,-0.8286,0.0,-0.3879,-0.9217,0.0,-0.3804,-0.9217,-0.0757,-0.5598,-0.8286,0.0,-0.3804,-0.9217,-0.0757,-0.549,-0.8286,-0.1092,-0.549,-0.8286,-0.1092,-0.3804,-0.9217,-0.0757,-0.3584,-0.9217,-0.1484,-0.549,-0.8286,-0.1092,-0.3584,-0.9217,-0.1484,-0.5172,-0.8286,-0.2142,-0.5172,-0.8286,-0.2142,-0.3584,-0.9217,-0.1484,-0.3225,-0.9217,-0.2155,-0.5172,-0.8286,-0.2142,-0.3225,-0.9217,-0.2155,-0.4654,-0.8286,-0.311,-0.4654,-0.8286,-0.311,-0.3225,-0.9217,-0.2155,-0.2743,-0.9217,-0.2743,-0.4654,-0.8286,-0.311,-0.2743,-0.9217,-0.2743,-0.3958,-0.8286,-0.3958,-0.3958,-0.8286,-0.3958,-0.2743,-0.9217,-0.2743,-0.2155,-0.9217,-0.3225,-0.3958,-0.8286,-0.3958,-0.2155,-0.9217,-0.3225,-0.311,-0.8286,-0.4654,-0.311,-0.8286,-0.4654,-0.2155,-0.9217,-0.3225,-0.1484,-0.9217,-0.3584,-0.311,-0.8286,-0.4654,-0.1484,-0.9217,-0.3584,-0.2142,-0.8286,-0.5172,-0.2142,-0.8286,-0.5172,-0.1484,-0.9217,-0.3584,-0.0757,-0.9217,-0.3804,-0.2142,-0.8286,-0.5172,-0.0757,-0.9217,-0.3804,-0.1092,-0.8286,-0.549,-0.1092,-0.8286,-0.549,-0.0757,-0.9217,-0.3804,0.0,-0.9217,-0.3879,-0.1092,-0.8286,-0.549,0.0,-0.9217,-0.3879,0.0,-0.8286,-0.5598,0.0,-0.8286,-0.5598,0.0,-0.9217,-0.3879,0.0757,-0.9217,-0.3804,0.0,-0.8286,-0.5598,0.0757,-0.9217,-0.3804,0.1092,-0.8286,-0.549,0.1092,-0.8286,-0.549,0.0757,-0.9217,-0.3804,0.1484,-0.9217,-0.3584,0.1092,-0.8286,-0.549,0.1484,-0.9217,-0.3584,0.2142,-0.8286,-0.5172,0.2142,-0.8286,-0.5172,0.1484,-0.9217,-0.3584,0.2155,-0.9217,-0.3225,0.2142,-0.8286,-0.5172,0.2155,-0.9217,-0.3225,0.311,-0.8286,-0.4654,0.311,-0.8286,-0.4654,0.2155,-0.9217,-0.3225,0.2743,-0.9217,-0.2743,0.311,-0.8286,-0.4654,0.2743,-0.9217,-0.2743,0.3958,-0.8286,-0.3958,0.3958,-0.8286,-0.3958,0.2743,-0.9217,-0.2743,0.3225,-0.9217,-0.2155,0.3958,-0.8286,-0.3958,0.3225,-0.9217,-0.2155,0.4654,-0.8286,-0.311,0.4654,-0.8286,-0.311,0.3225,-0.9217,-0.2155,0.3584,-0.9217,-0.1484,0.4654,-0.8286,-0.311,0.3584,-0.9217,-0.1484,0.5172,-0.8286,-0.2142,0.5172,-0.8286,-0.2142,0.3584,-0.9217,-0.1484,0.3804,-0.9217,-0.0757,0.5172,-0.8286,-0.2142,0.3804,-0.9217,-0.0757,0.549,-0.8286,-0.1092,0.549,-0.8286,-0.1092,0.3804,-0.9217,-0.0757,0.3879,-0.9217,0.0,0.549,-0.8286,-0.1092,0.3879,-0.9217,0.0,0.5598,-0.8286,0.0,0.5598,-0.8286,0.0,0.3879,-0.9217,0.0,0.3804,-0.9217,0.0757,0.5598,-0.8286,0.0,0.3804,-0.9217,0.0757,0.549,-0.8286,0.1092,0.549,-0.8286,0.1092,0.3804,-0.9217,0.0757,0.3584,-0.9217,0.1484,0.549,-0.8286,0.1092,0.3584,-0.9217,0.1484,0.5172,-0.8286,0.2142,0.5172,-0.8286,0.2142,0.3584,-0.9217,0.1484,0.3225,-0.9217,0.2155,0.5172,-0.8286,0.2142,0.3225,-0.9217,0.2155,0.4654,-0.8286,0.311,0.4654,-0.8286,0.311,0.3225,-0.9217,0.2155,0.2743,-0.9217,0.2743,0.4654,-0.8286,0.311,0.2743,-0.9217,0.2743,0.3958,-0.8286,0.3958,0.3958,-0.8286,0.3958,0.2743,-0.9217,0.2743,0.2155,-0.9217,0.3225,0.3958,-0.8286,0.3958,0.2155,-0.9217,0.3225,0.311,-0.8286,0.4654,0.311,-0.8286,0.4654,0.2155,-0.9217,0.3225,0.1484,-0.9217,0.3584,0.311,-0.8286,0.4654,0.1484,-0.9217,0.3584,0.2142,-0.8286,0.5172,0.2142,-0.8286,0.5172,0.1484,-0.9217,0.3584,0.0757,-0.9217,0.3804,0.2142,-0.8286,0.5172,0.0757,-0.9217,0.3804,0.1092,-0.8286,0.549,0.1092,-0.8286,0.549,0.0757,-0.9217,0.3804,0.0,-0.9217,0.3879,0.1092,-0.8286,0.549,0.0,-0.9217,0.3879,0.0,-0.8286,0.5598,0.0,-0.9217,0.3879,0.0,-0.9796,0.201,-0.0392,-0.9796,0.1971,0.0,-0.9217,0.3879,-0.0392,-0.9796,0.1971,-0.0757,-0.9217,0.3804,-0.0757,-0.9217,0.3804,-0.0392,-0.9796,0.1971,-0.0769,-0.9796,0.1857,-0.0757,-0.9217,0.3804,-0.0769,-0.9796,0.1857,-0.1484,-0.9217,0.3584,-0.1484,-0.9217,0.3584,-0.0769,-0.9796,0.1857,-0.1117,-0.9796,0.1671,-0.1484,-0.9217,0.3584,-0.1117,-0.9796,0.1671,-0.2155,-0.9217,0.3225,-0.2155,-0.9217,0.3225,-0.1117,-0.9796,0.1671,-0.1421,-0.9796,0.1421,-0.2155,-0.9217,0.3225,-0.1421,-0.9796,0.1421,-0.2743,-0.9217,0.2743,-0.2743,-0.9217,0.2743,-0.1421,-0.9796,0.1421,-0.1671,-0.9796,0.1117,-0.2743,-0.9217,0.2743,-0.1671,-0.9796,0.1117,-0.3225,-0.9217,0.2155,-0.3225,-0.9217,0.2155,-0.1671,-0.9796,0.1117,-0.1857,-0.9796,0.0769,-0.3225,-0.9217,0.2155,-0.1857,-0.9796,0.0769,-0.3584,-0.9217,0.1484,-0.3584,-0.9217,0.1484,-0.1857,-0.9796,0.0769,-0.1971,-0.9796,0.0392,-0.3584,-0.9217,0.1484,-0.1971,-0.9796,0.0392,-0.3804,-0.9217,0.0757,-0.3804,-0.9217,0.0757,-0.1971,-0.9796,0.0392,-0.201,-0.9796,0.0,-0.3804,-0.9217,0.0757,-0.201,-0.9796,0.0,-0.3879,-0.9217,0.0,-0.3879,-0.9217,0.0,-0.201,-0.9796,0.0,-0.1971,-0.9796,-0.0392,-0.3879,-0.9217,0.0,-0.1971,-0.9796,-0.0392,-0.3804,-0.9217,-0.0757,-0.3804,-0.9217,-0.0757,-0.1971,-0.9796,-0.0392,-0.1857,-0.9796,-0.0769,-0.3804,-0.9217,-0.0757,-0.1857,-0.9796,-0.0769,-0.3584,-0.9217,-0.1484,-0.3584,-0.9217,-0.1484,-0.1857,-0.9796,-0.0769,-0.1671,-0.9796,-0.1117,-0.3584,-0.9217,-0.1484,-0.1671,-0.9796,-0.1117,-0.3225,-0.9217,-0.2155,-0.3225,-0.9217,-0.2155,-0.1671,-0.9796,-0.1117,-0.1421,-0.9796,-0.1421,-0.3225,-0.9217,-0.2155,-0.1421,-0.9796,-0.1421,-0.2743,-0.9217,-0.2743,-0.2743,-0.9217,-0.2743,-0.1421,-0.9796,-0.1421,-0.1117,-0.9796,-0.1671,-0.2743,-0.9217,-0.2743,-0.1117,-0.9796,-0.1671,-0.2155,-0.9217,-0.3225,-0.2155,-0.9217,-0.3225,-0.1117,-0.9796,-0.1671,-0.0769,-0.9796,-0.1857,-0.2155,-0.9217,-0.3225,-0.0769,-0.9796,-0.1857,-0.1484,-0.9217,-0.3584,-0.1484,-0.9217,-0.3584,-0.0769,-0.9796,-0.1857,-0.0392,-0.9796,-0.1971,-0.1484,-0.9217,-0.3584,-0.0392,-0.9796,-0.1971,-0.0757,-0.9217,-0.3804,-0.0757,-0.9217,-0.3804,-0.0392,-0.9796,-0.1971,0.0,-0.9796,-0.201,-0.0757,-0.9217,-0.3804,0.0,-0.9796,-0.201,0.0,-0.9217,-0.3879,0.0,-0.9217,-0.3879,0.0,-0.9796,-0.201,0.0392,-0.9796,-0.1971,0.0,-0.9217,-0.3879,0.0392,-0.9796,-0.1971,0.0757,-0.9217,-0.3804,0.0757,-0.9217,-0.3804,0.0392,-0.9796,-0.1971,0.0769,-0.9796,-0.1857,0.0757,-0.9217,-0.3804,0.0769,-0.9796,-0.1857,0.1484,-0.9217,-0.3584,0.1484,-0.9217,-0.3584,0.0769,-0.9796,-0.1857,0.1117,-0.9796,-0.1671,0.1484,-0.9217,-0.3584,0.1117,-0.9796,-0.1671,0.2155,-0.9217,-0.3225,0.2155,-0.9217,-0.3225,0.1117,-0.9796,-0.1671,0.1421,-0.9796,-0.1421,0.2155,-0.9217,-0.3225,0.1421,-0.9796,-0.1421,0.2743,-0.9217,-0.2743,0.2743,-0.9217,-0.2743,0.1421,-0.9796,-0.1421,0.1671,-0.9796,-0.1117,0.2743,-0.9217,-0.2743,0.1671,-0.9796,-0.1117,0.3225,-0.9217,-0.2155,0.3225,-0.9217,-0.2155,0.1671,-0.9796,-0.1117,0.1857,-0.9796,-0.0769,0.3225,-0.9217,-0.2155,0.1857,-0.9796,-0.0769,0.3584,-0.9217,-0.1484,0.3584,-0.9217,-0.1484,0.1857,-0.9796,-0.0769,0.1971,-0.9796,-0.0392,0.3584,-0.9217,-0.1484,0.1971,-0.9796,-0.0392,0.3804,-0.9217,-0.0757,0.3804,-0.9217,-0.0757,0.1971,-0.9796,-0.0392,0.201,-0.9796,0.0,0.3804,-0.9217,-0.0757,0.201,-0.9796,0.0,0.3879,-0.9217,0.0,0.3879,-0.9217,0.0,0.201,-0.9796,0.0,0.1971,-0.9796,0.0392,0.3879,-0.9217,0.0,0.1971,-0.9796,0.0392,0.3804,-0.9217,0.0757,0.3804,-0.9217,0.0757,0.1971,-0.9796,0.0392,0.1857,-0.9796,0.0769,0.3804,-0.9217,0.0757,0.1857,-0.9796,0.0769,0.3584,-0.9217,0.1484,0.3584,-0.9217,0.1484,0.1857,-0.9796,0.0769,0.1671,-0.9796,0.1117,0.3584,-0.9217,0.1484,0.1671,-0.9796,0.1117,0.3225,-0.9217,0.2155,0.3225,-0.9217,0.2155,0.1671,-0.9796,0.1117,0.1421,-0.9796,0.1421,0.3225,-0.9217,0.2155,0.1421,-0.9796,0.1421,0.2743,-0.9217,0.2743,0.2743,-0.9217,0.2743,0.1421,-0.9796,0.1421,0.1117,-0.9796,0.1671,0.2743,-0.9217,0.2743,0.1117,-0.9796,0.1671,0.2155,-0.9217,0.3225,0.2155,-0.9217,0.3225,0.1117,-0.9796,0.1671,0.0769,-0.9796,0.1857,0.2155,-0.9217,0.3225,0.0769,-0.9796,0.1857,0.1484,-0.9217,0.3584,0.1484,-0.9217,0.3584,0.0769,-0.9796,0.1857,0.0392,-0.9796,0.1971,0.1484,-0.9217,0.3584,0.0392,-0.9796,0.1971,0.0757,-0.9217,0.3804,0.0757,-0.9217,0.3804,0.0392,-0.9796,0.1971,0.0,-0.9796,0.201,0.0757,-0.9217,0.3804,0.0,-0.9796,0.201,0.0,-0.9217,0.3879,0.0,-1.0,0.0,-0.0392,-0.9796,0.1971,0.0,-0.9796,0.201,0.0,-1.0,0.0,-0.0769,-0.9796,0.1857,-0.0392,-0.9796,0.1971,0.0,-1.0,0.0,-0.1117,-0.9796,0.1671,-0.0769,-0.9796,0.1857,0.0,-1.0,0.0,-0.1421,-0.9796,0.1421,-0.1117,-0.9796,0.1671,0.0,-1.0,0.0,-0.1671,-0.9796,0.1117,-0.1421,-0.9796,0.1421,0.0,-1.0,0.0,-0.1857,-0.9796,0.0769,-0.1671,-0.9796,0.1117,0.0,-1.0,0.0,-0.1971,-0.9796,0.0392,-0.1857,-0.9796,0.0769,0.0,-1.0,0.0,-0.201,-0.9796,0.0,-0.1971,-0.9796,0.0392,0.0,-1.0,0.0,-0.1971,-0.9796,-0.0392,-0.201,-0.9796,0.0,0.0,-1.0,0.0,-0.1857,-0.9796,-0.0769,-0.1971,-0.9796,-0.0392,0.0,-1.0,0.0,-0.1671,-0.9796,-0.1117,-0.1857,-0.9796,-0.0769,0.0,-1.0,0.0,-0.1421,-0.9796,-0.1421,-0.1671,-0.9796,-0.1117,0.0,-1.0,0.0,-0.1117,-0.9796,-0.1671,-0.1421,-0.9796,-0.1421,0.0,-1.0,0.0,-0.0769,-0.9796,-0.1857,-0.1117,-0.9796,-0.1671,0.0,-1.0,0.0,-0.0392,-0.9796,-0.1971,-0.0769,-0.9796,-0.1857,0.0,-1.0,0.0,0.0,-0.9796,-0.201,-0.0392,-0.9796,-0.1971,0.0,-1.0,0.0,0.0392,-0.9796,-0.1971,0.0,-0.9796,-0.201,0.0,-1.0,0.0,0.0769,-0.9796,-0.1857,0.0392,-0.9796,-0.1971,0.0,-1.0,0.0,0.1117,-0.9796,-0.1671,0.0769,-0.9796,-0.1857,0.0,-1.0,0.0,0.1421,-0.9796,-0.1421,0.1117,-0.9796,-0.1671,0.0,-1.0,0.0,0.1671,-0.9796,-0.1117,0.1421,-0.9796,-0.1421,0.0,-1.0,0.0,0.1857,-0.9796,-0.0769,0.1671,-0.9796,-0.1117,0.0,-1.0,0.0,0.1971,-0.9796,-0.0392,0.1857,-0.9796,-0.0769,0.0,-1.0,0.0,0.201,-0.9796,0.0,0.1971,-0.9796,-0.0392,0.0,-1.0,0.0,0.1971,-0.9796,0.0392,0.201,-0.9796,0.0,0.0,-1.0,0.0,0.1857,-0.9796,0.0769,0.1971,-0.9796,0.0392,0.0,-1.0,0.0,0.1671,-0.9796,0.1117,0.1857,-0.9796,0.0769,0.0,-1.0,0.0,0.1421,-0.9796,0.1421,0.1671,-0.9796,0.1117,0.0,-1.0,0.0,0.1117,-0.9796,0.1671,0.1421,-0.9796,0.1421,0.0,-1.0,0.0,0.0769,-0.9796,0.1857,0.1117,-0.9796,0.1671,0.0,-1.0,0.0,0.0392,-0.9796,0.1971,0.0769,-0.9796,0.1857,0.0,-1.0,0.0,0.0,-0.9796,0.201,0.0392,-0.9796,0.1971],"tangents":null,"uvs":[0.0,2.0,0.0,1.9375,0.0312,1.9375,0.0312,2.0,0.0312,1.9375,0.0625,1.9375,0.0625,2.0,0.0625,1.9375,0.0938,1.9375,0.0938,2.0,0.0938,1.9375,0.125,1.9375,0.125,2.0,0.125,1.9375,0.1562,1.9375,0.1562,2.0,0.1562,1.9375,0.1875,1.9375,0.1875,2.0,0.1875,1.9375,0.2187,1.9375,0.2187,2.0,0.2187,1.9375,0.25,1.9375,0.25,2.0,0.25,1.9375,0.2812,1.9375,0.2812,2.0,0.2812,1.9375,0.3125,1.9375,0.3125,2.0,0.3125,1.9375,0.3437,1.9375,0.3437,2.0,0.3437,1.9375,0.375,1.9375,0.375,2.0,0.375,1.9375,0.4062,1.9375,0.4062,2.0,0.4062,1.9375,0.4375,1.9375,0.4375,2.0,0.4375,1.9375,0.4688,1.9375,0.4688,2.0,0.4688,1.9375,0.5,1.9375,0.5,2.0,0.5,1.9375,0.5313,1.9375,0.5313,2.0,0.5313,1.9375,0.5625,1.9375,0.5625,2.0,0.5625,1.9375,0.5938,1.9375,0.5938,2.0,0.5938,1.9375,0.625,1.9375,0.625,2.0,0.625,1.9375,0.6563,1.9375,0.6563,2.0,0.6563,1.9375,0.6875,1.9375,0.6875,2.0,0.6875,1.9375,0.7188,1.9375,0.7188,2.0,0.7188,1.9375,0.75,1.9375,0.75,2.0,0.75,1.9375,0.7813,1.9375,0.7813,2.0,0.7813,1.9375,0.8125,1.9375,0.8125,2.0,0.8125,1.9375,0.8438,1.9375,0.8438,2.0,0.8438,1.9375,0.875,1.9375,0.875,2.0,0.875,1.9375,0.9063,1.9375,0.9063,2.0,0.9063,1.9375,0.9375,1.9375,0.9375,2.0,0.9375,1.9375,0.9688,1.9375,0.9688,2.0,0.9688,1.9375,1.0,1.9375,0.0,1.9375,0.0,1.875,0.0312,1.875,0.0,1.9375,0.0312,1.875,0.0312,1.9375,0.0312,1.9375,0.0312,1.875,0.0625,1.875,0.0312,1.9375,0.0625,1.875,0.0625,1.9375,0.0625,1.9375,0.0625,1.875,0.0938,1.875,0.0625,1.9375,0.0938,1.875,0.0938,1.9375,0.0938,1.9375,0.0938,1.875,0.125,1.875,0.0938,1.9375,0.125,1.875,0.125,1.9375,0.125,1.9375,0.125,1.875,0.1562,1.875,0.125,1.9375,0.1562,1.875,0.1562,1.9375,0.1562,1.9375,0.1562,1.875,0.1875,1.875,0.1562,1.9375,0.1875,1.875,0.1875,1.9375,0.1875,1.9375,0.1875,1.875,0.2187,1.875,0.1875,1.9375,0.2187,1.875,0.2187,1.9375,0.2187,1.9375,0.2187,1.875,0.25,1.875,0.2187,1.9375,0.25,1.875,0.25,1.9375,0.25,1.9375,0.25,1.875,0.2812,1.875,0.25,1.9375,0.2812,1.875,0.2812,1.9375,0.2812,1.9375,0.2812,1.875,0.3125,1.875,0.2812,1.9375,0.3125,1.875,0.3125,1.9375,0.3125,1.9375,0.3125,1.875,0.3437,1.875,0.3125,1.9375,0.3437,1.875,0.3437,1.9375,0.3437,1.9375,0.3437,1.875,0.375,1.875,0.3437,1.9375,0.375,1.875,0.375,1.9375,0.375,1.9375,0.375,1.875,0.4062,1.875,0.375,1.9375,0.4062,1.875,0.4062,1.9375,0.4062,1.9375,0.4062,1.875,0.4375,1.875,0.4062,1.9375,0.4375,1.875,0.4375,1.9375,0.4375,1.9375,0.4375,1.875,0.4688,1.875,0.4375,1.9375,0.4688,1.875,0.4688,1.9375,0.4688,1.9375,0.4688,1.875,0.5,1.875,0.4688,1.9375,0.5,1.875,0.5,1.9375,0.5,1.9375,0.5,1.875,0.5313,1.875,0.5,1.9375,0.5313,1.875,0.5313,1.9375,0.5313,1.9375,0.5313,1.875,0.5625,1.875,0.5313,1.9375,0.5625,1.875,0.5625,1.9375,0.5625,1.9375,0.5625,1.875,0.5938,1.875,0.5625,1.9375,0.5938,1.875,0.5938,1.9375,0.5938,1.9375,0.5938,1.875,0.625,1.875,0.5938,1.9375,0.625,1.875,0.625,1.9375,0.625,1.9375,0.625,1.875,0.6563,1.875,0.625,1.9375,0.6563,1.875,0.6563,1.9375,0.6563,1.9375,0.6563,1.875,0.6875,1.875,0.6563,1.9375,0.6875,1.875,0.6875,1.9375,0.6875,1.9375,0.6875,1.875,0.7188,1.875,0.6875,1.9375,0.7188,1.875,0.7188,1.9375,0.7188,1.9375,0.7188,1.875,0.75,1.875,0.7188,1.9375,0.75,1.875,0.75,1.9375,0.75,1.9375,0.75,1.875,0.7813,1.875,0.75,1.9375,0.7813,1.875,0.7813,1.9375,0.7813,1.9375,0.7813,1.875,0.8125,1.875,0.7813,1.9375,0.8125,1.875,0.8125,1.9375,0.8125,1.9375,0.8125,1.875,0.8438,1.875,0.8125,1.9375,0.8438,1.875,0.8438,1.9375,0.8438,1.9375,0.8438,1.875,0.875,1.875,0.8438,1.9375,0.875,1.875,0.875,1.9375,0.875,1.9375,0.875,1.875,0.9063,1.875,0.875,1.9375,0.9063,1.875,0.9063,1.9375,0.9063,1.9375,0.9063,1.875,0.9375,1.875,0.9063,1.9375,0.9375,1.875,0.9375,1.9375,0.9375,1.9375,0.9375,1.875,0.9688,1.875,0.9375,1.9375,0.9688,1.875,0.9688,1.9375,0.9688,1.9375,0.9688,1.875,1.0,1.875,0.9688,1.9375,1.0,1.875,1.0,1.9375,0.0,1.875,0.0,1.8125,0.0312,1.8125,0.0,1.875,0.0312,1.8125,0.0312,1.875,0.0312,1.875,0.0312,1.8125,0.0625,1.8125,0.0312,1.875,0.0625,1.8125,0.0625,1.875,0.0625,1.875,0.0625,1.8125,0.0938,1.8125,0.0625,1.875,0.0938,1.8125,0.0938,1.875,0.0938,1.875,0.0938,1.8125,0.125,1.8125,0.0938,1.875,0.125,1.8125,0.125,1.875,0.125,1.875,0.125,1.8125,0.1562,1.8125,0.125,1.875,0.1562,1.8125,0.1562,1.875,0.1562,1.875,0.1562,1.8125,0.1875,1.8125,0.1562,1.875,0.1875,1.8125,0.1875,1.875,0.1875,1.875,0.1875,1.8125,0.2187,1.8125,0.1875,1.875,0.2187,1.8125,0.2187,1.875,0.2187,1.875,0.2187,1.8125,0.25,1.8125,0.2187,1.875,0.25,1.8125,0.25,1.875,0.25,1.875,0.25,1.8125,0.2812,1.8125,0.25,1.875,0.2812,1.8125,0.2812,1.875,0.2812,1.875,0.2812,1.8125,0.3125,1.8125,0.2812,1.875,0.3125,1.8125,0.3125,1.875,0.3125,1.875,0.3125,1.8125,0.3437,1.8125,0.3125,1.875,0.3437,1.8125,0.3437,1.875,0.3437,1.875,0.3437,1.8125,0.375,1.8125,0.3437,1.875,0.375,1.8125,0.375,1.875,0.375,1.875,0.375,1.8125,0.4062,1.8125,0.375,1.875,0.4062,1.8125,0.4062,1.875,0.4062,1.875,0.4062,1.8125,0.4375,1.8125,0.4062,1.875,0.4375,1.8125,0.4375,1.875,0.4375,1.875,0.4375,1.8125,0.4688,1.8125,0.4375,1.875,0.4688,1.8125,0.4688,1.875,0.4688,1.875,0.4688,1.8125,0.5,1.8125,0.4688,1.875,0.5,1.8125,0.5,1.875,0.5,1.875,0.5,1.8125,0.5313,1.8125,0.5,1.875,0.5313,1.8125,0.5313,1.875,0.5313,1.875,0.5313,1.8125,0.5625,1.8125,0.5313,1.875,0.5625,1.8125,0.5625,1.875,0.5625,1.875,0.5625,1.8125,0.5938,1.8125,0.5625,1.875,0.5938,1.8125,0.5938,1.875,0.5938,1.875,0.5938,1.8125,0.625,1.8125,0.5938,1.875,0.625,1.8125,0.625,1.875,0.625,1.875,0.625,1.8125,0.6563,1.8125,0.625,1.875,0.6563,1.8125,0.6563,1.875,0.6563,1.875,0.6563,1.8125,0.6875,1.8125,0.6563,1.875,0.6875,1.8125,0.6875,1.875,0.6875,1.875,0.6875,1.8125,0.7188,1.8125,0.6875,1.875,0.7188,1.8125,0.7188,1.875,0.7188,1.875,0.7188,1.8125,0.75,1.8125,0.7188,1.875,0.75,1.8125,0.75,1.875,0.75,1.875,0.75,1.8125,0.7813,1.8125,0.75,1.875,0.7813,1.8125,0.7813,1.875,0.7813,1.875,0.7813,1.8125,0.8125,1.8125,0.7813,1.875,0.8125,1.8125,0.8125,1.875,0.8125,1.875,0.8125,1.8125,0.8438,1.8125,0.8125,1.875,0.8438,1.8125,0.8438,1.875,0.8438,1.875,0.8438,1.8125,0.875,1.8125,0.8438,1.875,0.875,1.8125,0.875,1.875,0.875,1.875,0.875,1.8125,0.9063,1.8125,0.875,1.875,0.9063,1.8125,0.9063,1.875,0.9063,1.875,0.9063,1.8125,0.9375,1.8125,0.9063,1.875,0.9375,1.8125,0.9375,1.875,0.9375,1.875,0.9375,1.8125,0.9688,1.8125,0.9375,1.875,0.9688,1.8125,0.9688,1.875,0.9688,1.875,0.9688,1.8125,1.0,1.8125,0.9688,1.875,1.0,1.8125,1.0,1.875,0.0,1.8125,0.0,1.75,0.0312,1.75,0.0,1.8125,0.0312,1.75,0.0312,1.8125,0.0312,1.8125,0.0312,1.75,0.0625,1.75,0.0312,1.8125,0.0625,1.75,0.0625,1.8125,0.0625,1.8125,0.0625,1.75,0.0938,1.75,0.0625,1.8125,0.0938,1.75,0.0938,1.8125,0.0938,1.8125,0.0938,1.75,0.125,1.75,0.0938,1.8125,0.125,1.75,0.125,1.8125,0.125,1.8125,0.125,1.75,0.1562,1.75,0.125,1.8125,0.1562,1.75,0.1562,1.8125,0.1562,1.8125,0.1562,1.75,0.1875,1.75,0.1562,1.8125,0.1875,1.75,0.1875,1.8125,0.1875,1.8125,0.1875,1.75,0.2187,1.75,0.1875,1.8125,0.2187,1.75,0.2187,1.8125,0.2187,1.8125,0.2187,1.75,0.25,1.75,0.2187,1.8125,0.25,1.75,0.25,1.8125,0.25,1.8125,0.25,1.75,0.2812,1.75,0.25,1.8125,0.2812,1.75,0.2812,1.8125,0.2812,1.8125,0.2812,1.75,0.3125,1.75,0.2812,1.8125,0.3125,1.75,0.3125,1.8125,0.3125,1.8125,0.3125,1.75,0.3437,1.75,0.3125,1.8125,0.3437,1.75,0.3437,1.8125,0.3437,1.8125,0.3437,1.75,0.375,1.75,0.3437,1.8125,0.375,1.75,0.375,1.8125,0.375,1.8125,0.375,1.75,0.4062,1.75,0.375,1.8125,0.4062,1.75,0.4062,1.8125,0.4062,1.8125,0.4062,1.75,0.4375,1.75,0.4062,1.8125,0.4375,1.75,0.4375,1.8125,0.4375,1.8125,0.4375,1.75,0.4688,1.75,0.4375,1.8125,0.4688,1.75,0.4688,1.8125,0.4688,1.8125,0.4688,1.75,0.5,1.75,0.4688,1.8125,0.5,1.75,0.5,1.8125,0.5,1.8125,0.5,1.75,0.5313,1.75,0.5,1.8125,0.5313,1.75,0.5313,1.8125,0.5313,1.8125,0.5313,1.75,0.5625,1.75,0.5313,1.8125,0.5625,1.75,0.5625,1.8125,0.5625,1.8125,0.5625,1.75,0.5938,1.75,0.5625,1.8125,0.5938,1.75,0.5938,1.8125,0.5938,1.8125,0.5938,1.75,0.625,1.75,0.5938,1.8125,0.625,1.75,0.625,1.8125,0.625,1.8125,0.625,1.75,0.6563,1.75,0.625,1.8125,0.6563,1.75,0.6563,1.8125,0.6563,1.8125,0.6563,1.75,0.6875,1.75,0.6563,1.8125,0.6875,1.75,0.6875,1.8125,0.6875,1.8125,0.6875,1.75,0.7188,1.75,0.6875,1.8125,0.7188,1.75,0.7188,1.8125,0.7188,1.8125,0.7188,1.75,0.75,1.75,0.7188,1.8125,0.75,1.75,0.75,1.8125,0.75,1.8125,0.75,1.75,0.7813,1.75,0.75,1.8125,0.7813,1.75,0.7813,1.8125,0.7813,1.8125,0.7813,1.75,0.8125,1.75,0.7813,1.8125,0.8125,1.75,0.8125,1.8125,0.8125,1.8125,0.8125,1.75,0.8438,1.75,0.8125,1.8125,0.8438,1.75,0.8438,1.8125,0.8438,1.8125,0.8438,1.75,0.875,1.75,0.8438,1.8125,0.875,1.75,0.875,1.8125,0.875,1.8125,0.875,1.75,0.9063,1.75,0.875,1.8125,0.9063,1.75,0.9063,1.8125,0.9063,1.8125,0.9063,1.75,0.9375,1.75,0.9063,1.8125,0.9375,1.75,0.9375,1.8125,0.9375,1.8125,0.9375,1.75,0.9688,1.75,0.9375,1.8125,0.9688,1.75,0.9688,1.8125,0.9688,1.8125,0.9688,1.75,1.0,1.75,0.9688,1.8125,1.0,1.75,1.0,1.8125,0.0,1.75,0.0,1.6875,0.0312,1.6875,0.0,1.75,0.0312,1.6875,0.0312,1.75,0.0312,1.75,0.0312,1.6875,0.0625,1.6875,0.0312,1.75,0.0625,1.6875,0.0625,1.75,0.0625,1.75,0.0625,1.6875,0.0938,1.6875,0.0625,1.75,0.0938,1.6875,0.0938,1.75,0.0938,1.75,0.0938,1.6875,0.125,1.6875,0.0938,1.75,0.125,1.6875,0.125,1.75,0.125,1.75,0.125,1.6875,0.1562,1.6875,0.125,1.75,0.1562,1.6875,0.1562,1.75,0.1562,1.75,0.1562,1.6875,0.1875,1.6875,0.1562,1.75,0.1875,1.6875,0.1875,1.75,0.1875,1.75,0.1875,1.6875,0.2187,1.6875,0.1875,1.75,0.2187,1.6875,0.2187,1.75,0.2187,1.75,0.2187,1.6875,0.25,1.6875,0.2187,1.75,0.25,1.6875,0.25,1.75,0.25,1.75,0.25,1.6875,0.2812,1.6875,0.25,1.75,0.2812,1.6875,0.2812,1.75,0.2812,1.75,0.2812,1.6875,0.3125,1.6875,0.2812,1.75,0.3125,1.6875,0.3125,1.75,0.3125,1.75,0.3125,1.6875,0.3437,1.6875,0.3125,1.75,0.3437,1.6875,0.3437,1.75,0.3437,1.75,0.3437,1.6875,0.375,1.6875,0.3437,1.75,0.375,1.6875,0.375,1.75,0.375,1.75,0.375,1.6875,0.4062,1.6875,0.375,1.75,0.4062,1.6875,0.4062,1.75,0.4062,1.75,0.4062,1.6875,0.4375,1.6875,0.4062,1.75,0.4375,1.6875,0.4375,1.75,0.4375,1.75,0.4375,1.6875,0.4688,1.6875,0.4375,1.75,0.4688,1.6875,0.4688,1.75,0.4688,1.75,0.4688,1.6875,0.5,1.6875,0.4688,1.75,0.5,1.6875,0.5,1.75,0.5,1.75,0.5,1.6875,0.5313,1.6875,0.5,1.75,0.5313,1.6875,0.5313,1.75,0.5313,1.75,0.5313,1.6875,0.5625,1.6875,0.5313,1.75,0.5625,1.6875,0.5625,1.75,0.5625,1.75,0.5625,1.6875,0.5938,1.6875,0.5625,1.75,0.5938,1.6875,0.5938,1.75,0.5938,1.75,0.5938,1.6875,0.625,1.6875,0.5938,1.75,0.625,1.6875,0.625,1.75,0.625,1.75,0.625,1.6875,0.6563,1.6875,0.625,1.75,0.6563,1.6875,0.6563,1.75,0.6563,1.75,0.6563,1.6875,0.6875,1.6875,0.6563,1.75,0.6875,1.6875,0.6875,1.75,0.6875,1.75,0.6875,1.6875,0.7188,1.6875,0.6875,1.75,0.7188,1.6875,0.7188,1.75,0.7188,1.75,0.7188,1.6875,0.75,1.6875,0.7188,1.75,0.75,1.6875,0.75,1.75,0.75,1.75,0.75,1.6875,0.7813,1.6875,0.75,1.75,0.7813,1.6875,0.7813,1.75,0.7813,1.75,0.7813,1.6875,0.8125,1.6875,0.7813,1.75,0.8125,1.6875,0.8125,1.75,0.8125,1.75,0.8125,1.6875,0.8438,1.6875,0.8125,1.75,0.8438,1.6875,0.8438,1.75,0.8438,1.75,0.8438,1.6875,0.875,1.6875,0.8438,1.75,0.875,1.6875,0.875,1.75,0.875,1.75,0.875,1.6875,0.9063,1.6875,0.875,1.75,0.9063,1.6875,0.9063,1.75,0.9063,1.75,0.9063,1.6875,0.9375,1.6875,0.9063,1.75,0.9375,1.6875,0.9375,1.75,0.9375,1.75,0.9375,1.6875,0.9688,1.6875,0.9375,1.75,0.9688,1.6875,0.9688,1.75,0.9688,1.75,0.9688,1.6875,1.0,1.6875,0.9688,1.75,1.0,1.6875,1.0,1.75,0.0,1.6875,0.0,1.625,0.0312,1.625,0.0,1.6875,0.0312,1.625,0.0312,1.6875,0.0312,1.6875,0.0312,1.625,0.0625,1.625,0.0312,1.6875,0.0625,1.625,0.0625,1.6875,0.0625,1.6875,0.0625,1.625,0.0938,1.625,0.0625,1.6875,0.0938,1.625,0.0938,1.6875,0.0938,1.6875,0.0938,1.625,0.125,1.625,0.0938,1.6875,0.125,1.625,0.125,1.6875,0.125,1.6875,0.125,1.625,0.1562,1.625,0.125,1.6875,0.1562,1.625,0.1562,1.6875,0.1562,1.6875,0.1562,1.625,0.1875,1.625,0.1562,1.6875,0.1875,1.625,0.1875,1.6875,0.1875,1.6875,0.1875,1.625,0.2187,1.625,0.1875,1.6875,0.2187,1.625,0.2187,1.6875,0.2187,1.6875,0.2187,1.625,0.25,1.625,0.2187,1.6875,0.25,1.625,0.25,1.6875,0.25,1.6875,0.25,1.625,0.2812,1.625,0.25,1.6875,0.2812,1.625,0.2812,1.6875,0.2812,1.6875,0.2812,1.625,0.3125,1.625,0.2812,1.6875,0.3125,1.625,0.3125,1.6875,0.3125,1.6875,0.3125,1.625,0.3437,1.625,0.3125,1.6875,0.3437,1.625,0.3437,1.6875,0.3437,1.6875,0.3437,1.625,0.375,1.625,0.3437,1.6875,0.375,1.625,0.375,1.6875,0.375,1.6875,0.375,1.625,0.4062,1.625,0.375,1.6875,0.4062,1.625,0.4062,1.6875,0.4062,1.6875,0.4062,1.625,0.4375,1.625,0.4062,1.6875,0.4375,1.625,0.4375,1.6875,0.4375,1.6875,0.4375,1.625,0.4688,1.625,0.4375,1.6875,0.4688,1.625,0.4688,1.6875,0.4688,1.6875,0.4688,1.625,0.5,1.625,0.4688,1.6875,0.5,1.625,0.5,1.6875,0.5,1.6875,0.5,1.625,0.5313,1.625,0.5,1.6875,0.5313,1.625,0.5313,1.6875,0.5313,1.6875,0.5313,1.625,0.5625,1.625,0.5313,1.6875,0.5625,1.625,0.5625,1.6875,0.5625,1.6875,0.5625,1.625,0.5938,1.625,0.5625,1.6875,0.5938,1.625,0.5938,1.6875,0.5938,1.6875,0.5938,1.625,0.625,1.625,0.5938,1.6875,0.625,1.625,0.625,1.6875,0.625,1.6875,0.625,1.625,0.6563,1.625,0.625,1.6875,0.6563,1.625,0.6563,1.6875,0.6563,1.6875,0.6563,1.625,0.6875,1.625,0.6563,1.6875,0.6875,1.625,0.6875,1.6875,0.6875,1.6875,0.6875,1.625,0.7188,1.625,0.6875,1.6875,0.7188,1.625,0.7188,1.6875,0.7188,1.6875,0.7188,1.625,0.75,1.625,0.7188,1.6875,0.75,1.625,0.75,1.6875,0.75,1.6875,0.75,1.625,0.7813,1.625,0.75,1.6875,0.7813,1.625,0.7813,1.6875,0.7813,1.6875,0.7813,1.625,0.8125,1.625,0.7813,1.6875,0.8125,1.625,0.8125,1.6875,0.8125,1.6875,0.8125,1.625,0.8438,1.625,0.8125,1.6875,0.8438,1.625,0.8438,1.6875,0.8438,1.6875,0.8438,1.625,0.875,1.625,0.8438,1.6875,0.875,1.625,0.875,1.6875,0.875,1.6875,0.875,1.625,0.9063,1.625,0.875,1.6875,0.9063,1.625,0.9063,1.6875,0.9063,1.6875,0.9063,1.625,0.9375,1.625,0.9063,1.6875,0.9375,1.625,0.9375,1.6875,0.9375,1.6875,0.9375,1.625,0.9688,1.625,0.9375,1.6875,0.9688,1.625,0.9688,1.6875,0.9688,1.6875,0.9688,1.625,1.0,1.625,0.9688,1.6875,1.0,1.625,1.0,1.6875,0.0,1.625,0.0,1.5625,0.0312,1.5625,0.0,1.625,0.0312,1.5625,0.0312,1.625,0.0312,1.625,0.0312,1.5625,0.0625,1.5625,0.0312,1.625,0.0625,1.5625,0.0625,1.625,0.0625,1.625,0.0625,1.5625,0.0938,1.5625,0.0625,1.625,0.0938,1.5625,0.0938,1.625,0.0938,1.625,0.0938,1.5625,0.125,1.5625,0.0938,1.625,0.125,1.5625,0.125,1.625,0.125,1.625,0.125,1.5625,0.1562,1.5625,0.125,1.625,0.1562,1.5625,0.1562,1.625,0.1562,1.625,0.1562,1.5625,0.1875,1.5625,0.1562,1.625,0.1875,1.5625,0.1875,1.625,0.1875,1.625,0.1875,1.5625,0.2187,1.5625,0.1875,1.625,0.2187,1.5625,0.2187,1.625,0.2187,1.625,0.2187,1.5625,0.25,1.5625,0.2187,1.625,0.25,1.5625,0.25,1.625,0.25,1.625,0.25,1.5625,0.2812,1.5625,0.25,1.625,0.2812,1.5625,0.2812,1.625,0.2812,1.625,0.2812,1.5625,0.3125,1.5625,0.2812,1.625,0.3125,1.5625,0.3125,1.625,0.3125,1.625,0.3125,1.5625,0.3437,1.5625,0.3125,1.625,0.3437,1.5625,0.3437,1.625,0.3437,1.625,0.3437,1.5625,0.375,1.5625,0.3437,1.625,0.375,1.5625,0.375,1.625,0.375,1.625,0.375,1.5625,0.4062,1.5625,0.375,1.625,0.4062,1.5625,0.4062,1.625,0.4062,1.625,0.4062,1.5625,0.4375,1.5625,0.4062,1.625,0.4375,1.5625,0.4375,1.625,0.4375,1.625,0.4375,1.5625,0.4688,1.5625,0.4375,1.625,0.4688,1.5625,0.4688,1.625,0.4688,1.625,0.4688,1.5625,0.5,1.5625,0.4688,1.625,0.5,1.5625,0.5,1.625,0.5,1.625,0.5,1.5625,0.5313,1.5625,0.5,1.625,0.5313,1.5625,0.5313,1.625,0.5313,1.625,0.5313,1.5625,0.5625,1.5625,0.5313,1.625,0.5625,1.5625,0.5625,1.625,0.5625,1.625,0.5625,1.5625,0.5938,1.5625,0.5625,1.625,0.5938,1.5625,0.5938,1.625,0.5938,1.625,0.5938,1.5625,0.625,1.5625,0.5938,1.625,0.625,1.5625,0.625,1.625,0.625,1.625,0.625,1.5625,0.6563,1.5625,0.625,1.625,0.6563,1.5625,0.6563,1.625,0.6563,1.625,0.6563,1.5625,0.6875,1.5625,0.6563,1.625,0.6875,1.5625,0.6875,1.625,0.6875,1.625,0.6875,1.5625,0.7188,1.5625,0.6875,1.625,0.7188,1.5625,0.7188,1.625,0.7188,1.625,0.7188,1.5625,0.75,1.5625,0.7188,1.625,0.75,1.5625,0.75,1.625,0.75,1.625,0.75,1.5625,0.7813,1.5625,0.75,1.625,0.7813,1.5625,0.7813,1.625,0.7813,1.625,0.7813,1.5625,0.8125,1.5625,0.7813,1.625,0.8125,1.5625,0.8125,1.625,0.8125,1.625,0.8125,1.5625,0.8438,1.5625,0.8125,1.625,0.8438,1.5625,0.8438,1.625,0.8438,1.625,0.8438,1.5625,0.875,1.5625,0.8438,1.625,0.875,1.5625,0.875,1.625,0.875,1.625,0.875,1.5625,0.9063,1.5625,0.875,1.625,0.9063,1.5625,0.9063,1.625,0.9063,1.625,0.9063,1.5625,0.9375,1.5625,0.9063,1.625,0.9375,1.5625,0.9375,1.625,0.9375,1.625,0.9375,1.5625,0.9688,1.5625,0.9375,1.625,0.9688,1.5625,0.9688,1.625,0.9688,1.625,0.9688,1.5625,1.0,1.5625,0.9688,1.625,1.0,1.5625,1.0,1.625,0.0,1.5625,0.0,1.5,0.0312,1.5,0.0,1.5625,0.0312,1.5,0.0312,1.5625,0.0312,1.5625,0.0312,1.5,0.0625,1.5,0.0312,1.5625,0.0625,1.5,0.0625,1.5625,0.0625,1.5625,0.0625,1.5,0.0938,1.5,0.0625,1.5625,0.0938,1.5,0.0938,1.5625,0.0938,1.5625,0.0938,1.5,0.125,1.5,0.0938,1.5625,0.125,1.5,0.125,1.5625,0.125,1.5625,0.125,1.5,0.1562,1.5,0.125,1.5625,0.1562,1.5,0.1562,1.5625,0.1562,1.5625,0.1562,1.5,0.1875,1.5,0.1562,1.5625,0.1875,1.5,0.1875,1.5625,0.1875,1.5625,0.1875,1.5,0.2187,1.5,0.1875,1.5625,0.2187,1.5,0.2187,1.5625,0.2187,1.5625,0.2187,1.5,0.25,1.5,0.2187,1.5625,0.25,1.5,0.25,1.5625,0.25,1.5625,0.25,1.5,0.2812,1.5,0.25,1.5625,0.2812,1.5,0.2812,1.5625,0.2812,1.5625,0.2812,1.5,0.3125,1.5,0.2812,1.5625,0.3125,1.5,0.3125,1.5625,0.3125,1.5625,0.3125,1.5,0.3437,1.5,0.3125,1.5625,0.3437,1.5,0.3437,1.5625,0.3437,1.5625,0.3437,1.5,0.375,1.5,0.3437,1.5625,0.375,1.5,0.375,1.5625,0.375,1.5625,0.375,1.5,0.4062,1.5,0.375,1.5625,0.4062,1.5,0.4062,1.5625,0.4062,1.5625,0.4062,1.5,0.4375,1.5,0.4062,1.5625,0.4375,1.5,0.4375,1.5625,0.4375,1.5625,0.4375,1.5,0.4688,1.5,0.4375,1.5625,0.4688,1.5,0.4688,1.5625,0.4688,1.5625,0.4688,1.5,0.5,1.5,0.4688,1.5625,0.5,1.5,0.5,1.5625,0.5,1.5625,0.5,1.5,0.5313,1.5,0.5,1.5625,0.5313,1.5,0.5313,1.5625,0.5313,1.5625,0.5313,1.5,0.5625,1.5,0.5313,1.5625,0.5625,1.5,0.5625,1.5625,0.5625,1.5625,0.5625,1.5,0.5938,1.5,0.5625,1.5625,0.5938,1.5,0.5938,1.5625,0.5938,1.5625,0.5938,1.5,0.625,1.5,0.5938,1.5625,0.625,1.5,0.625,1.5625,0.625,1.5625,0.625,1.5,0.6563,1.5,0.625,1.5625,0.6563,1.5,0.6563,1.5625,0.6563,1.5625,0.6563,1.5,0.6875,1.5,0.6563,1.5625,0.6875,1.5,0.6875,1.5625,0.6875,1.5625,0.6875,1.5,0.7188,1.5,0.6875,1.5625,0.7188,1.5,0.7188,1.5625,0.7188,1.5625,0.7188,1.5,0.75,1.5,0.7188,1.5625,0.75,1.5,0.75,1.5625,0.75,1.5625,0.75,1.5,0.7813,1.5,0.75,1.5625,0.7813,1.5,0.7813,1.5625,0.7813,1.5625,0.7813,1.5,0.8125,1.5,0.7813,1.5625,0.8125,1.5,0.8125,1.5625,0.8125,1.5625,0.8125,1.5,0.8438,1.5,0.8125,1.5625,0.8438,1.5,0.8438,1.5625,0.8438,1.5625,0.8438,1.5,0.875,1.5,0.8438,1.5625,0.875,1.5,0.875,1.5625,0.875,1.5625,0.875,1.5,0.9063,1.5,0.875,1.5625,0.9063,1.5,0.9063,1.5625,0.9063,1.5625,0.9063,1.5,0.9375,1.5,0.9063,1.5625,0.9375,1.5,0.9375,1.5625,0.9375,1.5625,0.9375,1.5,0.9688,1.5,0.9375,1.5625,0.9688,1.5,0.9688,1.5625,0.9688,1.5625,0.9688,1.5,1.0,1.5,0.9688,1.5625,1.0,1.5,1.0,1.5625,0.0,1.5,0.0,1.4375,0.0312,1.4375,0.0,1.5,0.0312,1.4375,0.0312,1.5,0.0312,1.5,0.0312,1.4375,0.0625,1.4375,0.0312,1.5,0.0625,1.4375,0.0625,1.5,0.0625,1.5,0.0625,1.4375,0.0938,1.4375,0.0625,1.5,0.0938,1.4375,0.0938,1.5,0.0938,1.5,0.0938,1.4375,0.125,1.4375,0.0938,1.5,0.125,1.4375,0.125,1.5,0.125,1.5,0.125,1.4375,0.1562,1.4375,0.125,1.5,0.1562,1.4375,0.1562,1.5,0.1562,1.5,0.1562,1.4375,0.1875,1.4375,0.1562,1.5,0.1875,1.4375,0.1875,1.5,0.1875,1.5,0.1875,1.4375,0.2187,1.4375,0.1875,1.5,0.2187,1.4375,0.2187,1.5,0.2187,1.5,0.2187,1.4375,0.25,1.4375,0.2187,1.5,0.25,1.4375,0.25,1.5,0.25,1.5,0.25,1.4375,0.2812,1.4375,0.25,1.5,0.2812,1.4375,0.2812,1.5,0.2812,1.5,0.2812,1.4375,0.3125,1.4375,0.2812,1.5,0.3125,1.4375,0.3125,1.5,0.3125,1.5,0.3125,1.4375,0.3437,1.4375,0.3125,1.5,0.3437,1.4375,0.3437,1.5,0.3437,1.5,0.3437,1.4375,0.375,1.4375,0.3437,1.5,0.375,1.4375,0.375,1.5,0.375,1.5,0.375,1.4375,0.4062,1.4375,0.375,1.5,0.4062,1.4375,0.4062,1.5,0.4062,1.5,0.4062,1.4375,0.4375,1.4375,0.4062,1.5,0.4375,1.4375,0.4375,1.5,0.4375,1.5,0.4375,1.4375,0.4688,1.4375,0.4375,1.5,0.4688,1.4375,0.4688,1.5,0.4688,1.5,0.4688,1.4375,0.5,1.4375,0.4688,1.5,0.5,1.4375,0.5,1.5,0.5,1.5,0.5,1.4375,0.5313,1.4375,0.5,1.5,0.5313,1.4375,0.5313,1.5,0.5313,1.5,0.5313,1.4375,0.5625,1.4375,0.5313,1.5,0.5625,1.4375,0.5625,1.5,0.5625,1.5,0.5625,1.4375,0.5938,1.4375,0.5625,1.5,0.5938,1.4375,0.5938,1.5,0.5938,1.5,0.5938,1.4375,0.625,1.4375,0.5938,1.5,0.625,1.4375,0.625,1.5,0.625,1.5,0.625,1.4375,0.6563,1.4375,0.625,1.5,0.6563,1.4375,0.6563,1.5,0.6563,1.5,0.6563,1.4375,0.6875,1.4375,0.6563,1.5,0.6875,1.4375,0.6875,1.5,0.6875,1.5,0.6875,1.4375,0.7188,1.4375,0.6875,1.5,0.7188,1.4375,0.7188,1.5,0.7188,1.5,0.7188,1.4375,0.75,1.4375,0.7188,1.5,0.75,1.4375,0.75,1.5,0.75,1.5,0.75,1.4375,0.7813,1.4375,0.75,1.5,0.7813,1.4375,0.7813,1.5,0.7813,1.5,0.7813,1.4375,0.8125,1.4375,0.7813,1.5,0.8125,1.4375,0.8125,1.5,0.8125,1.5,0.8125,1.4375,0.8438,1.4375,0.8125,1.5,0.8438,1.4375,0.8438,1.5,0.8438,1.5,0.8438,1.4375,0.875,1.4375,0.8438,1.5,0.875,1.4375,0.875,1.5,0.875,1.5,0.875,1.4375,0.9063,1.4375,0.875,1.5,0.9063,1.4375,0.9063,1.5,0.9063,1.5,0.9063,1.4375,0.9375,1.4375,0.9063,1.5,0.9375,1.4375,0.9375,1.5,0.9375,1.5,0.9375,1.4375,0.9688,1.4375,0.9375,1.5,0.9688,1.4375,0.9688,1.5,0.9688,1.5,0.9688,1.4375,1.0,1.4375,0.9688,1.5,1.0,1.4375,1.0,1.5,0.0,1.4375,0.0,1.375,0.0312,1.375,0.0,1.4375,0.0312,1.375,0.0312,1.4375,0.0312,1.4375,0.0312,1.375,0.0625,1.375,0.0312,1.4375,0.0625,1.375,0.0625,1.4375,0.0625,1.4375,0.0625,1.375,0.0938,1.375,0.0625,1.4375,0.0938,1.375,0.0938,1.4375,0.0938,1.4375,0.0938,1.375,0.125,1.375,0.0938,1.4375,0.125,1.375,0.125,1.4375,0.125,1.4375,0.125,1.375,0.1562,1.375,0.125,1.4375,0.1562,1.375,0.1562,1.4375,0.1562,1.4375,0.1562,1.375,0.1875,1.375,0.1562,1.4375,0.1875,1.375,0.1875,1.4375,0.1875,1.4375,0.1875,1.375,0.2187,1.375,0.1875,1.4375,0.2187,1.375,0.2187,1.4375,0.2187,1.4375,0.2187,1.375,0.25,1.375,0.2187,1.4375,0.25,1.375,0.25,1.4375,0.25,1.4375,0.25,1.375,0.2812,1.375,0.25,1.4375,0.2812,1.375,0.2812,1.4375,0.2812,1.4375,0.2812,1.375,0.3125,1.375,0.2812,1.4375,0.3125,1.375,0.3125,1.4375,0.3125,1.4375,0.3125,1.375,0.3437,1.375,0.3125,1.4375,0.3437,1.375,0.3437,1.4375,0.3437,1.4375,0.3437,1.375,0.375,1.375,0.3437,1.4375,0.375,1.375,0.375,1.4375,0.375,1.4375,0.375,1.375,0.4062,1.375,0.375,1.4375,0.4062,1.375,0.4062,1.4375,0.4062,1.4375,0.4062,1.375,0.4375,1.375,0.4062,1.4375,0.4375,1.375,0.4375,1.4375,0.4375,1.4375,0.4375,1.375,0.4688,1.375,0.4375,1.4375,0.4688,1.375,0.4688,1.4375,0.4688,1.4375,0.4688,1.375,0.5,1.375,0.4688,1.4375,0.5,1.375,0.5,1.4375,0.5,1.4375,0.5,1.375,0.5313,1.375,0.5,1.4375,0.5313,1.375,0.5313,1.4375,0.5313,1.4375,0.5313,1.375,0.5625,1.375,0.5313,1.4375,0.5625,1.375,0.5625,1.4375,0.5625,1.4375,0.5625,1.375,0.5938,1.375,0.5625,1.4375,0.5938,1.375,0.5938,1.4375,0.5938,1.4375,0.5938,1.375,0.625,1.375,0.5938,1.4375,0.625,1.375,0.625,1.4375,0.625,1.4375,0.625,1.375,0.6563,1.375,0.625,1.4375,0.6563,1.375,0.6563,1.4375,0.6563,1.4375,0.6563,1.375,0.6875,1.375,0.6563,1.4375,0.6875,1.375,0.6875,1.4375,0.6875,1.4375,0.6875,1.375,0.7188,1.375,0.6875,1.4375,0.7188,1.375,0.7188,1.4375,0.7188,1.4375,0.7188,1.375,0.75,1.375,0.7188,1.4375,0.75,1.375,0.75,1.4375,0.75,1.4375,0.75,1.375,0.7813,1.375,0.75,1.4375,0.7813,1.375,0.7813,1.4375,0.7813,1.4375,0.7813,1.375,0.8125,1.375,0.7813,1.4375,0.8125,1.375,0.8125,1.4375,0.8125,1.4375,0.8125,1.375,0.8438,1.375,0.8125,1.4375,0.8438,1.375,0.8438,1.4375,0.8438,1.4375,0.8438,1.375,0.875,1.375,0.8438,1.4375,0.875,1.375,0.875,1.4375,0.875,1.4375,0.875,1.375,0.9063,1.375,0.875,1.4375,0.9063,1.375,0.9063,1.4375,0.9063,1.4375,0.9063,1.375,0.9375,1.375,0.9063,1.4375,0.9375,1.375,0.9375,1.4375,0.9375,1.4375,0.9375,1.375,0.9688,1.375,0.9375,1.4375,0.9688,1.375,0.9688,1.4375,0.9688,1.4375,0.9688,1.375,1.0,1.375,0.9688,1.4375,1.0,1.375,1.0,1.4375,0.0,1.375,0.0,1.3125,0.0312,1.3125,0.0,1.375,0.0312,1.3125,0.0312,1.375,0.0312,1.375,0.0312,1.3125,0.0625,1.3125,0.0312,1.375,0.0625,1.3125,0.0625,1.375,0.0625,1.375,0.0625,1.3125,0.0938,1.3125,0.0625,1.375,0.0938,1.3125,0.0938,1.375,0.0938,1.375,0.0938,1.3125,0.125,1.3125,0.0938,1.375,0.125,1.3125,0.125,1.375,0.125,1.375,0.125,1.3125,0.1562,1.3125,0.125,1.375,0.1562,1.3125,0.1562,1.375,0.1562,1.375,0.1562,1.3125,0.1875,1.3125,0.1562,1.375,0.1875,1.3125,0.1875,1.375,0.1875,1.375,0.1875,1.3125,0.2187,1.3125,0.1875,1.375,0.2187,1.3125,0.2187,1.375,0.2187,1.375,0.2187,1.3125,0.25,1.3125,0.2187,1.375,0.25,1.3125,0.25,1.375,0.25,1.375,0.25,1.3125,0.2812,1.3125,0.25,1.375,0.2812,1.3125,0.2812,1.375,0.2812,1.375,0.2812,1.3125,0.3125,1.3125,0.2812,1.375,0.3125,1.3125,0.3125,1.375,0.3125,1.375,0.3125,1.3125,0.3437,1.3125,0.3125,1.375,0.3437,1.3125,0.3437,1.375,0.3437,1.375,0.3437,1.3125,0.375,1.3125,0.3437,1.375,0.375,1.3125,0.375,1.375,0.375,1.375,0.375,1.3125,0.4062,1.3125,0.375,1.375,0.4062,1.3125,0.4062,1.375,0.4062,1.375,0.4062,1.3125,0.4375,1.3125,0.4062,1.375,0.4375,1.3125,0.4375,1.375,0.4375,1.375,0.4375,1.3125,0.4688,1.3125,0.4375,1.375,0.4688,1.3125,0.4688,1.375,0.4688,1.375,0.4688,1.3125,0.5,1.3125,0.4688,1.375,0.5,1.3125,0.5,1.375,0.5,1.375,0.5,1.3125,0.5313,1.3125,0.5,1.375,0.5313,1.3125,0.5313,1.375,0.5313,1.375,0.5313,1.3125,0.5625,1.3125,0.5313,1.375,0.5625,1.3125,0.5625,1.375,0.5625,1.375,0.5625,1.3125,0.5938,1.3125,0.5625,1.375,0.5938,1.3125,0.5938,1.375,0.5938,1.375,0.5938,1.3125,0.625,1.3125,0.5938,1.375,0.625,1.3125,0.625,1.375,0.625,1.375,0.625,1.3125,0.6563,1.3125,0.625,1.375,0.6563,1.3125,0.6563,1.375,0.6563,1.375,0.6563,1.3125,0.6875,1.3125,0.6563,1.375,0.6875,1.3125,0.6875,1.375,0.6875,1.375,0.6875,1.3125,0.7188,1.3125,0.6875,1.375,0.7188,1.3125,0.7188,1.375,0.7188,1.375,0.7188,1.3125,0.75,1.3125,0.7188,1.375,0.75,1.3125,0.75,1.375,0.75,1.375,0.75,1.3125,0.7813,1.3125,0.75,1.375,0.7813,1.3125,0.7813,1.375,0.7813,1.375,0.7813,1.3125,0.8125,1.3125,0.7813,1.375,0.8125,1.3125,0.8125,1.375,0.8125,1.375,0.8125,1.3125,0.8438,1.3125,0.8125,1.375,0.8438,1.3125,0.8438,1.375,0.8438,1.375,0.8438,1.3125,0.875,1.3125,0.8438,1.375,0.875,1.3125,0.875,1.375,0.875,1.375,0.875,1.3125,0.9063,1.3125,0.875,1.375,0.9063,1.3125,0.9063,1.375,0.9063,1.375,0.9063,1.3125,0.9375,1.3125,0.9063,1.375,0.9375,1.3125,0.9375,1.375,0.9375,1.375,0.9375,1.3125,0.9688,1.3125,0.9375,1.375,0.9688,1.3125,0.9688,1.375,0.9688,1.375,0.9688,1.3125,1.0,1.3125,0.9688,1.375,1.0,1.3125,1.0,1.375,0.0,1.3125,0.0,1.25,0.0312,1.25,0.0,1.3125,0.0312,1.25,0.0312,1.3125,0.0312,1.3125,0.0312,1.25,0.0625,1.25,0.0312,1.3125,0.0625,1.25,0.0625,1.3125,0.0625,1.3125,0.0625,1.25,0.0938,1.25,0.0625,1.3125,0.0938,1.25,0.0938,1.3125,0.0938,1.3125,0.0938,1.25,0.125,1.25,0.0938,1.3125,0.125,1.25,0.125,1.3125,0.125,1.3125,0.125,1.25,0.1562,1.25,0.125,1.3125,0.1562,1.25,0.1562,1.3125,0.1562,1.3125,0.1562,1.25,0.1875,1.25,0.1562,1.3125,0.1875,1.25,0.1875,1.3125,0.1875,1.3125,0.1875,1.25,0.2187,1.25,0.1875,1.3125,0.2187,1.25,0.2187,1.3125,0.2187,1.3125,0.2187,1.25,0.25,1.25,0.2187,1.3125,0.25,1.25,0.25,1.3125,0.25,1.3125,0.25,1.25,0.2812,1.25,0.25,1.3125,0.2812,1.25,0.2812,1.3125,0.2812,1.3125,0.2812,1.25,0.3125,1.25,0.2812,1.3125,0.3125,1.25,0.3125,1.3125,0.3125,1.3125,0.3125,1.25,0.3437,1.25,0.3125,1.3125,0.3437,1.25,0.3437,1.3125,0.3437,1.3125,0.3437,1.25,0.375,1.25,0.3437,1.3125,0.375,1.25,0.375,1.3125,0.375,1.3125,0.375,1.25,0.4062,1.25,0.375,1.3125,0.4062,1.25,0.4062,1.3125,0.4062,1.3125,0.4062,1.25,0.4375,1.25,0.4062,1.3125,0.4375,1.25,0.4375,1.3125,0.4375,1.3125,0.4375,1.25,0.4688,1.25,0.4375,1.3125,0.4688,1.25,0.4688,1.3125,0.4688,1.3125,0.4688,1.25,0.5,1.25,0.4688,1.3125,0.5,1.25,0.5,1.3125,0.5,1.3125,0.5,1.25,0.5313,1.25,0.5,1.3125,0.5313,1.25,0.5313,1.3125,0.5313,1.3125,0.5313,1.25,0.5625,1.25,0.5313,1.3125,0.5625,1.25,0.5625,1.3125,0.5625,1.3125,0.5625,1.25,0.5938,1.25,0.5625,1.3125,0.5938,1.25,0.5938,1.3125,0.5938,1.3125,0.5938,1.25,0.625,1.25,0.5938,1.3125,0.625,1.25,0.625,1.3125,0.625,1.3125,0.625,1.25,0.6563,1.25,0.625,1.3125,0.6563,1.25,0.6563,1.3125,0.6563,1.3125,0.6563,1.25,0.6875,1.25,0.6563,1.3125,0.6875,1.25,0.6875,1.3125,0.6875,1.3125,0.6875,1.25,0.7188,1.25,0.6875,1.3125,0.7188,1.25,0.7188,1.3125,0.7188,1.3125,0.7188,1.25,0.75,1.25,0.7188,1.3125,0.75,1.25,0.75,1.3125,0.75,1.3125,0.75,1.25,0.7813,1.25,0.75,1.3125,0.7813,1.25,0.7813,1.3125,0.7813,1.3125,0.7813,1.25,0.8125,1.25,0.7813,1.3125,0.8125,1.25,0.8125,1.3125,0.8125,1.3125,0.8125,1.25,0.8438,1.25,0.8125,1.3125,0.8438,1.25,0.8438,1.3125,0.8438,1.3125,0.8438,1.25,0.875,1.25,0.8438,1.3125,0.875,1.25,0.875,1.3125,0.875,1.3125,0.875,1.25,0.9063,1.25,0.875,1.3125,0.9063,1.25,0.9063,1.3125,0.9063,1.3125,0.9063,1.25,0.9375,1.25,0.9063,1.3125,0.9375,1.25,0.9375,1.3125,0.9375,1.3125,0.9375,1.25,0.9688,1.25,0.9375,1.3125,0.9688,1.25,0.9688,1.3125,0.9688,1.3125,0.9688,1.25,1.0,1.25,0.9688,1.3125,1.0,1.25,1.0,1.3125,0.0,1.25,0.0,1.1875,0.0312,1.1875,0.0,1.25,0.0312,1.1875,0.0312,1.25,0.0312,1.25,0.0312,1.1875,0.0625,1.1875,0.0312,1.25,0.0625,1.1875,0.0625,1.25,0.0625,1.25,0.0625,1.1875,0.0938,1.1875,0.0625,1.25,0.0938,1.1875,0.0938,1.25,0.0938,1.25,0.0938,1.1875,0.125,1.1875,0.0938,1.25,0.125,1.1875,0.125,1.25,0.125,1.25,0.125,1.1875,0.1562,1.1875,0.125,1.25,0.1562,1.1875,0.1562,1.25,0.1562,1.25,0.1562,1.1875,0.1875,1.1875,0.1562,1.25,0.1875,1.1875,0.1875,1.25,0.1875,1.25,0.1875,1.1875,0.2187,1.1875,0.1875,1.25,0.2187,1.1875,0.2187,1.25,0.2187,1.25,0.2187,1.1875,0.25,1.1875,0.2187,1.25,0.25,1.1875,0.25,1.25,0.25,1.25,0.25,1.1875,0.2812,1.1875,0.25,1.25,0.2812,1.1875,0.2812,1.25,0.2812,1.25,0.2812,1.1875,0.3125,1.1875,0.2812,1.25,0.3125,1.1875,0.3125,1.25,0.3125,1.25,0.3125,1.1875,0.3437,1.1875,0.3125,1.25,0.3437,1.1875,0.3437,1.25,0.3437,1.25,0.3437,1.1875,0.375,1.1875,0.3437,1.25,0.375,1.1875,0.375,1.25,0.375,1.25,0.375,1.1875,0.4062,1.1875,0.375,1.25,0.4062,1.1875,0.4062,1.25,0.4062,1.25,0.4062,1.1875,0.4375,1.1875,0.4062,1.25,0.4375,1.1875,0.4375,1.25,0.4375,1.25,0.4375,1.1875,0.4688,1.1875,0.4375,1.25,0.4688,1.1875,0.4688,1.25,0.4688,1.25,0.4688,1.1875,0.5,1.1875,0.4688,1.25,0.5,1.1875,0.5,1.25,0.5,1.25,0.5,1.1875,0.5313,1.1875,0.5,1.25,0.5313,1.1875,0.5313,1.25,0.5313,1.25,0.5313,1.1875,0.5625,1.1875,0.5313,1.25,0.5625,1.1875,0.5625,1.25,0.5625,1.25,0.5625,1.1875,0.5938,1.1875,0.5625,1.25,0.5938,1.1875,0.5938,1.25,0.5938,1.25,0.5938,1.1875,0.625,1.1875,0.5938,1.25,0.625,1.1875,0.625,1.25,0.625,1.25,0.625,1.1875,0.6563,1.1875,0.625,1.25,0.6563,1.1875,0.6563,1.25,0.6563,1.25,0.6563,1.1875,0.6875,1.1875,0.6563,1.25,0.6875,1.1875,0.6875,1.25,0.6875,1.25,0.6875,1.1875,0.7188,1.1875,0.6875,1.25,0.7188,1.1875,0.7188,1.25,0.7188,1.25,0.7188,1.1875,0.75,1.1875,0.7188,1.25,0.75,1.1875,0.75,1.25,0.75,1.25,0.75,1.1875,0.7813,1.1875,0.75,1.25,0.7813,1.1875,0.7813,1.25,0.7813,1.25,0.7813,1.1875,0.8125,1.1875,0.7813,1.25,0.8125,1.1875,0.8125,1.25,0.8125,1.25,0.8125,1.1875,0.8438,1.1875,0.8125,1.25,0.8438,1.1875,0.8438,1.25,0.8438,1.25,0.8438,1.1875,0.875,1.1875,0.8438,1.25,0.875,1.1875,0.875,1.25,0.875,1.25,0.875,1.1875,0.9063,1.1875,0.875,1.25,0.9063,1.1875,0.9063,1.25,0.9063,1.25,0.9063,1.1875,0.9375,1.1875,0.9063,1.25,0.9375,1.1875,0.9375,1.25,0.9375,1.25,0.9375,1.1875,0.9688,1.1875,0.9375,1.25,0.9688,1.1875,0.9688,1.25,0.9688,1.25,0.9688,1.1875,1.0,1.1875,0.9688,1.25,1.0,1.1875,1.0,1.25,0.0,1.1875,0.0,1.125,0.0312,1.125,0.0,1.1875,0.0312,1.125,0.0312,1.1875,0.0312,1.1875,0.0312,1.125,0.0625,1.125,0.0312,1.1875,0.0625,1.125,0.0625,1.1875,0.0625,1.1875,0.0625,1.125,0.0938,1.125,0.0625,1.1875,0.0938,1.125,0.0938,1.1875,0.0938,1.1875,0.0938,1.125,0.125,1.125,0.0938,1.1875,0.125,1.125,0.125,1.1875,0.125,1.1875,0.125,1.125,0.1562,1.125,0.125,1.1875,0.1562,1.125,0.1562,1.1875,0.1562,1.1875,0.1562,1.125,0.1875,1.125,0.1562,1.1875,0.1875,1.125,0.1875,1.1875,0.1875,1.1875,0.1875,1.125,0.2187,1.125,0.1875,1.1875,0.2187,1.125,0.2187,1.1875,0.2187,1.1875,0.2187,1.125,0.25,1.125,0.2187,1.1875,0.25,1.125,0.25,1.1875,0.25,1.1875,0.25,1.125,0.2812,1.125,0.25,1.1875,0.2812,1.125,0.2812,1.1875,0.2812,1.1875,0.2812,1.125,0.3125,1.125,0.2812,1.1875,0.3125,1.125,0.3125,1.1875,0.3125,1.1875,0.3125,1.125,0.3437,1.125,0.3125,1.1875,0.3437,1.125,0.3437,1.1875,0.3437,1.1875,0.3437,1.125,0.375,1.125,0.3437,1.1875,0.375,1.125,0.375,1.1875,0.375,1.1875,0.375,1.125,0.4062,1.125,0.375,1.1875,0.4062,1.125,0.4062,1.1875,0.4062,1.1875,0.4062,1.125,0.4375,1.125,0.4062,1.1875,0.4375,1.125,0.4375,1.1875,0.4375,1.1875,0.4375,1.125,0.4688,1.125,0.4375,1.1875,0.4688,1.125,0.4688,1.1875,0.4688,1.1875,0.4688,1.125,0.5,1.125,0.4688,1.1875,0.5,1.125,0.5,1.1875,0.5,1.1875,0.5,1.125,0.5313,1.125,0.5,1.1875,0.5313,1.125,0.5313,1.1875,0.5313,1.1875,0.5313,1.125,0.5625,1.125,0.5313,1.1875,0.5625,1.125,0.5625,1.1875,0.5625,1.1875,0.5625,1.125,0.5938,1.125,0.5625,1.1875,0.5938,1.125,0.5938,1.1875,0.5938,1.1875,0.5938,1.125,0.625,1.125,0.5938,1.1875,0.625,1.125,0.625,1.1875,0.625,1.1875,0.625,1.125,0.6563,1.125,0.625,1.1875,0.6563,1.125,0.6563,1.1875,0.6563,1.1875,0.6563,1.125,0.6875,1.125,0.6563,1.1875,0.6875,1.125,0.6875,1.1875,0.6875,1.1875,0.6875,1.125,0.7188,1.125,0.6875,1.1875,0.7188,1.125,0.7188,1.1875,0.7188,1.1875,0.7188,1.125,0.75,1.125,0.7188,1.1875,0.75,1.125,0.75,1.1875,0.75,1.1875,0.75,1.125,0.7813,1.125,0.75,1.1875,0.7813,1.125,0.7813,1.1875,0.7813,1.1875,0.7813,1.125,0.8125,1.125,0.7813,1.1875,0.8125,1.125,0.8125,1.1875,0.8125,1.1875,0.8125,1.125,0.8438,1.125,0.8125,1.1875,0.8438,1.125,0.8438,1.1875,0.8438,1.1875,0.8438,1.125,0.875,1.125,0.8438,1.1875,0.875,1.125,0.875,1.1875,0.875,1.1875,0.875,1.125,0.9063,1.125,0.875,1.1875,0.9063,1.125,0.9063,1.1875,0.9063,1.1875,0.9063,1.125,0.9375,1.125,0.9063,1.1875,0.9375,1.125,0.9375,1.1875,0.9375,1.1875,0.9375,1.125,0.9688,1.125,0.9375,1.1875,0.9688,1.125,0.9688,1.1875,0.9688,1.1875,0.9688,1.125,1.0,1.125,0.9688,1.1875,1.0,1.125,1.0,1.1875,0.0,1.125,0.0,1.0625,0.0312,1.0625,0.0,1.125,0.0312,1.0625,0.0312,1.125,0.0312,1.125,0.0312,1.0625,0.0625,1.0625,0.0312,1.125,0.0625,1.0625,0.0625,1.125,0.0625,1.125,0.0625,1.0625,0.0938,1.0625,0.0625,1.125,0.0938,1.0625,0.0938,1.125,0.0938,1.125,0.0938,1.0625,0.125,1.0625,0.0938,1.125,0.125,1.0625,0.125,1.125,0.125,1.125,0.125,1.0625,0.1562,1.0625,0.125,1.125,0.1562,1.0625,0.1562,1.125,0.1562,1.125,0.1562,1.0625,0.1875,1.0625,0.1562,1.125,0.1875,1.0625,0.1875,1.125,0.1875,1.125,0.1875,1.0625,0.2187,1.0625,0.1875,1.125,0.2187,1.0625,0.2187,1.125,0.2187,1.125,0.2187,1.0625,0.25,1.0625,0.2187,1.125,0.25,1.0625,0.25,1.125,0.25,1.125,0.25,1.0625,0.2812,1.0625,0.25,1.125,0.2812,1.0625,0.2812,1.125,0.2812,1.125,0.2812,1.0625,0.3125,1.0625,0.2812,1.125,0.3125,1.0625,0.3125,1.125,0.3125,1.125,0.3125,1.0625,0.3437,1.0625,0.3125,1.125,0.3437,1.0625,0.3437,1.125,0.3437,1.125,0.3437,1.0625,0.375,1.0625,0.3437,1.125,0.375,1.0625,0.375,1.125,0.375,1.125,0.375,1.0625,0.4062,1.0625,0.375,1.125,0.4062,1.0625,0.4062,1.125,0.4062,1.125,0.4062,1.0625,0.4375,1.0625,0.4062,1.125,0.4375,1.0625,0.4375,1.125,0.4375,1.125,0.4375,1.0625,0.4688,1.0625,0.4375,1.125,0.4688,1.0625,0.4688,1.125,0.4688,1.125,0.4688,1.0625,0.5,1.0625,0.4688,1.125,0.5,1.0625,0.5,1.125,0.5,1.125,0.5,1.0625,0.5313,1.0625,0.5,1.125,0.5313,1.0625,0.5313,1.125,0.5313,1.125,0.5313,1.0625,0.5625,1.0625,0.5313,1.125,0.5625,1.0625,0.5625,1.125,0.5625,1.125,0.5625,1.0625,0.5938,1.0625,0.5625,1.125,0.5938,1.0625,0.5938,1.125,0.5938,1.125,0.5938,1.0625,0.625,1.0625,0.5938,1.125,0.625,1.0625,0.625,1.125,0.625,1.125,0.625,1.0625,0.6563,1.0625,0.625,1.125,0.6563,1.0625,0.6563,1.125,0.6563,1.125,0.6563,1.0625,0.6875,1.0625,0.6563,1.125,0.6875,1.0625,0.6875,1.125,0.6875,1.125,0.6875,1.0625,0.7188,1.0625,0.6875,1.125,0.7188,1.0625,0.7188,1.125,0.7188,1.125,0.7188,1.0625,0.75,1.0625,0.7188,1.125,0.75,1.0625,0.75,1.125,0.75,1.125,0.75,1.0625,0.7813,1.0625,0.75,1.125,0.7813,1.0625,0.7813,1.125,0.7813,1.125,0.7813,1.0625,0.8125,1.0625,0.7813,1.125,0.8125,1.0625,0.8125,1.125,0.8125,1.125,0.8125,1.0625,0.8438,1.0625,0.8125,1.125,0.8438,1.0625,0.8438,1.125,0.8438,1.125,0.8438,1.0625,0.875,1.0625,0.8438,1.125,0.875,1.0625,0.875,1.125,0.875,1.125,0.875,1.0625,0.9063,1.0625,0.875,1.125,0.9063,1.0625,0.9063,1.125,0.9063,1.125,0.9063,1.0625,0.9375,1.0625,0.9063,1.125,0.9375,1.0625,0.9375,1.125,0.9375,1.125,0.9375,1.0625,0.9688,1.0625,0.9375,1.125,0.9688,1.0625,0.9688,1.125,0.9688,1.125,0.9688,1.0625,1.0,1.0625,0.9688,1.125,1.0,1.0625,1.0,1.125,0.0,1.0,0.0312,1.0625,0.0,1.0625,0.0312,1.0,0.0625,1.0625,0.0312,1.0625,0.0625,1.0,0.0938,1.0625,0.0625,1.0625,0.0938,1.0,0.125,1.0625,0.0938,1.0625,0.125,1.0,0.1562,1.0625,0.125,1.0625,0.1562,1.0,0.1875,1.0625,0.1562,1.0625,0.1875,1.0,0.2187,1.0625,0.1875,1.0625,0.2187,1.0,0.25,1.0625,0.2187,1.0625,0.25,1.0,0.2812,1.0625,0.25,1.0625,0.2812,1.0,0.3125,1.0625,0.2812,1.0625,0.3125,1.0,0.3437,1.0625,0.3125,1.0625,0.3437,1.0,0.375,1.0625,0.3437,1.0625,0.375,1.0,0.4062,1.0625,0.375,1.0625,0.4062,1.0,0.4375,1.0625,0.4062,1.0625,0.4375,1.0,0.4688,1.0625,0.4375,1.0625,0.4688,1.0,0.5,1.0625,0.4688,1.0625,0.5,1.0,0.5313,1.0625,0.5,1.0625,0.5313,1.0,0.5625,1.0625,0.5313,1.0625,0.5625,1.0,0.5938,1.0625,0.5625,1.0625,0.5938,1.0,0.625,1.0625,0.5938,1.0625,0.625,1.0,0.6563,1.0625,0.625,1.0625,0.6563,1.0,0.6875,1.0625,0.6563,1.0625,0.6875,1.0,0.7188,1.0625,0.6875,1.0625,0.7188,1.0,0.75,1.0625,0.7188,1.0625,0.75,1.0,0.7813,1.0625,0.75,1.0625,0.7813,1.0,0.8125,1.0625,0.7813,1.0625,0.8125,1.0,0.8438,1.0625,0.8125,1.0625,0.8438,1.0,0.875,1.0625,0.8438,1.0625,0.875,1.0,0.9063,1.0625,0.875,1.0625,0.9063,1.0,0.9375,1.0625,0.9063,1.0625,0.9375,1.0,0.9688,1.0625,0.9375,1.0625,0.9688,1.0,1.0,1.0625,0.9688,1.0625],"uvs2":null,"colors":null,"hasVertexAlpha":false,"matricesIndices":null,"matricesWeights":null,"matricesIndicesExtra":null,"matricesWeightsExtra":null,"indices":[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,1984,1985,1986,1987,1988,1989,1990,1991,1992,1993,1994,1995,1996,1997,1998,1999,2000,2001,2002,2003,2004,2005,2006,2007,2008,2009,2010,2011,2012,2013,2014,2015,2016,2017,2018,2019,2020,2021,2022,2023,2024,2025,2026,2027,2028,2029,2030,2031,2032,2033,2034,2035,2036,2037,2038,2039,2040,2041,2042,2043,2044,2045,2046,2047,2048,2049,2050,2051,2052,2053,2054,2055,2056,2057,2058,2059,2060,2061,2062,2063,2064,2065,2066,2067,2068,2069,2070,2071,2072,2073,2074,2075,2076,2077,2078,2079,2080,2081,2082,2083,2084,2085,2086,2087,2088,2089,2090,2091,2092,2093,2094,2095,2096,2097,2098,2099,2100,2101,2102,2103,2104,2105,2106,2107,2108,2109,2110,2111,2112,2113,2114,2115,2116,2117,2118,2119,2120,2121,2122,2123,2124,2125,2126,2127,2128,2129,2130,2131,2132,2133,2134,2135,2136,2137,2138,2139,2140,2141,2142,2143,2144,2145,2146,2147,2148,2149,2150,2151,2152,2153,2154,2155,2156,2157,2158,2159,2160,2161,2162,2163,2164,2165,2166,2167,2168,2169,2170,2171,2172,2173,2174,2175,2176,2177,2178,2179,2180,2181,2182,2183,2184,2185,2186,2187,2188,2189,2190,2191,2192,2193,2194,2195,2196,2197,2198,2199,2200,2201,2202,2203,2204,2205,2206,2207,2208,2209,2210,2211,2212,2213,2214,2215,2216,2217,2218,2219,2220,2221,2222,2223,2224,2225,2226,2227,2228,2229,2230,2231,2232,2233,2234,2235,2236,2237,2238,2239,2240,2241,2242,2243,2244,2245,2246,2247,2248,2249,2250,2251,2252,2253,2254,2255,2256,2257,2258,2259,2260,2261,2262,2263,2264,2265,2266,2267,2268,2269,2270,2271,2272,2273,2274,2275,2276,2277,2278,2279,2280,2281,2282,2283,2284,2285,2286,2287,2288,2289,2290,2291,2292,2293,2294,2295,2296,2297,2298,2299,2300,2301,2302,2303,2304,2305,2306,2307,2308,2309,2310,2311,2312,2313,2314,2315,2316,2317,2318,2319,2320,2321,2322,2323,2324,2325,2326,2327,2328,2329,2330,2331,2332,2333,2334,2335,2336,2337,2338,2339,2340,2341,2342,2343,2344,2345,2346,2347,2348,2349,2350,2351,2352,2353,2354,2355,2356,2357,2358,2359,2360,2361,2362,2363,2364,2365,2366,2367,2368,2369,2370,2371,2372,2373,2374,2375,2376,2377,2378,2379,2380,2381,2382,2383,2384,2385,2386,2387,2388,2389,2390,2391,2392,2393,2394,2395,2396,2397,2398,2399,2400,2401,2402,2403,2404,2405,2406,2407,2408,2409,2410,2411,2412,2413,2414,2415,2416,2417,2418,2419,2420,2421,2422,2423,2424,2425,2426,2427,2428,2429,2430,2431,2432,2433,2434,2435,2436,2437,2438,2439,2440,2441,2442,2443,2444,2445,2446,2447,2448,2449,2450,2451,2452,2453,2454,2455,2456,2457,2458,2459,2460,2461,2462,2463,2464,2465,2466,2467,2468,2469,2470,2471,2472,2473,2474,2475,2476,2477,2478,2479,2480,2481,2482,2483,2484,2485,2486,2487,2488,2489,2490,2491,2492,2493,2494,2495,2496,2497,2498,2499,2500,2501,2502,2503,2504,2505,2506,2507,2508,2509,2510,2511,2512,2513,2514,2515,2516,2517,2518,2519,2520,2521,2522,2523,2524,2525,2526,2527,2528,2529,2530,2531,2532,2533,2534,2535,2536,2537,2538,2539,2540,2541,2542,2543,2544,2545,2546,2547,2548,2549,2550,2551,2552,2553,2554,2555,2556,2557,2558,2559,2560,2561,2562,2563,2564,2565,2566,2567,2568,2569,2570,2571,2572,2573,2574,2575,2576,2577,2578,2579,2580,2581,2582,2583,2584,2585,2586,2587,2588,2589,2590,2591,2592,2593,2594,2595,2596,2597,2598,2599,2600,2601,2602,2603,2604,2605,2606,2607,2608,2609,2610,2611,2612,2613,2614,2615,2616,2617,2618,2619,2620,2621,2622,2623,2624,2625,2626,2627,2628,2629,2630,2631,2632,2633,2634,2635,2636,2637,2638,2639,2640,2641,2642,2643,2644,2645,2646,2647,2648,2649,2650,2651,2652,2653,2654,2655,2656,2657,2658,2659,2660,2661,2662,2663,2664,2665,2666,2667,2668,2669,2670,2671,2672,2673,2674,2675,2676,2677,2678,2679,2680,2681,2682,2683,2684,2685,2686,2687,2688,2689,2690,2691,2692,2693,2694,2695,2696,2697,2698,2699,2700,2701,2702,2703,2704,2705,2706,2707,2708,2709,2710,2711,2712,2713,2714,2715,2716,2717,2718,2719,2720,2721,2722,2723,2724,2725,2726,2727,2728,2729,2730,2731,2732,2733,2734,2735,2736,2737,2738,2739,2740,2741,2742,2743,2744,2745,2746,2747,2748,2749,2750,2751,2752,2753,2754,2755,2756,2757,2758,2759,2760,2761,2762,2763,2764,2765,2766,2767,2768,2769,2770,2771,2772,2773,2774,2775,2776,2777,2778,2779,2780,2781,2782,2783,2784,2785,2786,2787,2788,2789,2790,2791,2792,2793,2794,2795,2796,2797,2798,2799,2800,2801,2802,2803,2804,2805,2806,2807,2808,2809,2810,2811,2812,2813,2814,2815,2816,2817,2818,2819,2820,2821,2822,2823,2824,2825,2826,2827,2828,2829,2830,2831,2832,2833,2834,2835,2836,2837,2838,2839,2840,2841,2842,2843,2844,2845,2846,2847,2848,2849,2850,2851,2852,2853,2854,2855,2856,2857,2858,2859,2860,2861,2862,2863,2864,2865,2866,2867,2868,2869,2870,2871,2872,2873,2874,2875,2876,2877,2878,2879],"receiveShadows":true,"infiniteDistance":false,"billboardMode":0,"visibility":1.0,"subMeshes":[{"materialIndex":0,"verticesStart":0,"verticesCount":2880,"indexStart":0,"indexCount":2880}],"instances":null,"skeletonId":-1,"numBoneInfluencers":4,"applyFog":true,"lodMeshIds":null,"lodDistances":null,"lodCoverages":null,"rotation":null,"scaling":[1.0,1.0,1.0],"rotationQuaternion":[0.0,0.0,0.0,1.0],"actions":null,"checkCollisions":false,"pickable":false,"showBoundingBox":false,"showSubMeshesBoundingBox":false,"alphaIndex":1000,"physicsImpostor":0,"physicsMass":0.0,"physicsFriction":0.0,"physicsRestitution":0.0,"name":"PhysicalMesh","id":"311381f0-8487-4fc5-89fa-7d01dfda5e2f","parentId":null,"position":[3.0,0.0,0.0],"animations":[],"autoAnimate":true,"autoAnimateFrom":0,"autoAnimateTo":100,"autoAnimateLoop":true,"metadata":null},{"materialId":"d5188421-5065-41b1-b3d7-2b3941fa022f","isEnabled":true,"isVisible":true,"positions":[0.0,1.0,0.0,0.0,0.9808,0.1951,-0.0381,0.9808,0.1913,0.0,1.0,0.0,-0.0381,0.9808,0.1913,-0.0747,0.9808,0.1802,0.0,1.0,0.0,-0.0747,0.9808,0.1802,-0.1084,0.9808,0.1622,0.0,1.0,0.0,-0.1084,0.9808,0.1622,-0.1379,0.9808,0.1379,0.0,1.0,0.0,-0.1379,0.9808,0.1379,-0.1622,0.9808,0.1084,0.0,1.0,0.0,-0.1622,0.9808,0.1084,-0.1802,0.9808,0.0747,0.0,1.0,0.0,-0.1802,0.9808,0.0747,-0.1913,0.9808,0.0381,0.0,1.0,0.0,-0.1913,0.9808,0.0381,-0.1951,0.9808,0.0,0.0,1.0,0.0,-0.1951,0.9808,0.0,-0.1913,0.9808,-0.0381,0.0,1.0,0.0,-0.1913,0.9808,-0.0381,-0.1802,0.9808,-0.0747,0.0,1.0,0.0,-0.1802,0.9808,-0.0747,-0.1622,0.9808,-0.1084,0.0,1.0,0.0,-0.1622,0.9808,-0.1084,-0.1379,0.9808,-0.1379,0.0,1.0,0.0,-0.1379,0.9808,-0.1379,-0.1084,0.9808,-0.1622,0.0,1.0,0.0,-0.1084,0.9808,-0.1622,-0.0747,0.9808,-0.1802,0.0,1.0,0.0,-0.0747,0.9808,-0.1802,-0.0381,0.9808,-0.1913,0.0,1.0,0.0,-0.0381,0.9808,-0.1913,0.0,0.9808,-0.1951,0.0,1.0,0.0,0.0,0.9808,-0.1951,0.0381,0.9808,-0.1913,0.0,1.0,0.0,0.0381,0.9808,-0.1913,0.0747,0.9808,-0.1802,0.0,1.0,0.0,0.0747,0.9808,-0.1802,0.1084,0.9808,-0.1622,0.0,1.0,0.0,0.1084,0.9808,-0.1622,0.1379,0.9808,-0.1379,0.0,1.0,0.0,0.1379,0.9808,-0.1379,0.1622,0.9808,-0.1084,0.0,1.0,0.0,0.1622,0.9808,-0.1084,0.1802,0.9808,-0.0747,0.0,1.0,0.0,0.1802,0.9808,-0.0747,0.1913,0.9808,-0.0381,0.0,1.0,0.0,0.1913,0.9808,-0.0381,0.1951,0.9808,0.0,0.0,1.0,0.0,0.1951,0.9808,0.0,0.1913,0.9808,0.0381,0.0,1.0,0.0,0.1913,0.9808,0.0381,0.1802,0.9808,0.0747,0.0,1.0,0.0,0.1802,0.9808,0.0747,0.1622,0.9808,0.1084,0.0,1.0,0.0,0.1622,0.9808,0.1084,0.1379,0.9808,0.1379,0.0,1.0,0.0,0.1379,0.9808,0.1379,0.1084,0.9808,0.1622,0.0,1.0,0.0,0.1084,0.9808,0.1622,0.0747,0.9808,0.1802,0.0,1.0,0.0,0.0747,0.9808,0.1802,0.0381,0.9808,0.1913,0.0,1.0,0.0,0.0381,0.9808,0.1913,0.0,0.9808,0.1951,0.0,0.9808,0.1951,0.0,0.9239,0.3827,-0.0747,0.9239,0.3753,0.0,0.9808,0.1951,-0.0747,0.9239,0.3753,-0.0381,0.9808,0.1913,-0.0381,0.9808,0.1913,-0.0747,0.9239,0.3753,-0.1464,0.9239,0.3536,-0.0381,0.9808,0.1913,-0.1464,0.9239,0.3536,-0.0747,0.9808,0.1802,-0.0747,0.9808,0.1802,-0.1464,0.9239,0.3536,-0.2126,0.9239,0.3182,-0.0747,0.9808,0.1802,-0.2126,0.9239,0.3182,-0.1084,0.9808,0.1622,-0.1084,0.9808,0.1622,-0.2126,0.9239,0.3182,-0.2706,0.9239,0.2706,-0.1084,0.9808,0.1622,-0.2706,0.9239,0.2706,-0.1379,0.9808,0.1379,-0.1379,0.9808,0.1379,-0.2706,0.9239,0.2706,-0.3182,0.9239,0.2126,-0.1379,0.9808,0.1379,-0.3182,0.9239,0.2126,-0.1622,0.9808,0.1084,-0.1622,0.9808,0.1084,-0.3182,0.9239,0.2126,-0.3536,0.9239,0.1464,-0.1622,0.9808,0.1084,-0.3536,0.9239,0.1464,-0.1802,0.9808,0.0747,-0.1802,0.9808,0.0747,-0.3536,0.9239,0.1464,-0.3753,0.9239,0.0747,-0.1802,0.9808,0.0747,-0.3753,0.9239,0.0747,-0.1913,0.9808,0.0381,-0.1913,0.9808,0.0381,-0.3753,0.9239,0.0747,-0.3827,0.9239,0.0,-0.1913,0.9808,0.0381,-0.3827,0.9239,0.0,-0.1951,0.9808,0.0,-0.1951,0.9808,0.0,-0.3827,0.9239,0.0,-0.3753,0.9239,-0.0747,-0.1951,0.9808,0.0,-0.3753,0.9239,-0.0747,-0.1913,0.9808,-0.0381,-0.1913,0.9808,-0.0381,-0.3753,0.9239,-0.0747,-0.3536,0.9239,-0.1464,-0.1913,0.9808,-0.0381,-0.3536,0.9239,-0.1464,-0.1802,0.9808,-0.0747,-0.1802,0.9808,-0.0747,-0.3536,0.9239,-0.1464,-0.3182,0.9239,-0.2126,-0.1802,0.9808,-0.0747,-0.3182,0.9239,-0.2126,-0.1622,0.9808,-0.1084,-0.1622,0.9808,-0.1084,-0.3182,0.9239,-0.2126,-0.2706,0.9239,-0.2706,-0.1622,0.9808,-0.1084,-0.2706,0.9239,-0.2706,-0.1379,0.9808,-0.1379,-0.1379,0.9808,-0.1379,-0.2706,0.9239,-0.2706,-0.2126,0.9239,-0.3182,-0.1379,0.9808,-0.1379,-0.2126,0.9239,-0.3182,-0.1084,0.9808,-0.1622,-0.1084,0.9808,-0.1622,-0.2126,0.9239,-0.3182,-0.1464,0.9239,-0.3536,-0.1084,0.9808,-0.1622,-0.1464,0.9239,-0.3536,-0.0747,0.9808,-0.1802,-0.0747,0.9808,-0.1802,-0.1464,0.9239,-0.3536,-0.0747,0.9239,-0.3753,-0.0747,0.9808,-0.1802,-0.0747,0.9239,-0.3753,-0.0381,0.9808,-0.1913,-0.0381,0.9808,-0.1913,-0.0747,0.9239,-0.3753,0.0,0.9239,-0.3827,-0.0381,0.9808,-0.1913,0.0,0.9239,-0.3827,0.0,0.9808,-0.1951,0.0,0.9808,-0.1951,0.0,0.9239,-0.3827,0.0747,0.9239,-0.3753,0.0,0.9808,-0.1951,0.0747,0.9239,-0.3753,0.0381,0.9808,-0.1913,0.0381,0.9808,-0.1913,0.0747,0.9239,-0.3753,0.1464,0.9239,-0.3536,0.0381,0.9808,-0.1913,0.1464,0.9239,-0.3536,0.0747,0.9808,-0.1802,0.0747,0.9808,-0.1802,0.1464,0.9239,-0.3536,0.2126,0.9239,-0.3182,0.0747,0.9808,-0.1802,0.2126,0.9239,-0.3182,0.1084,0.9808,-0.1622,0.1084,0.9808,-0.1622,0.2126,0.9239,-0.3182,0.2706,0.9239,-0.2706,0.1084,0.9808,-0.1622,0.2706,0.9239,-0.2706,0.1379,0.9808,-0.1379,0.1379,0.9808,-0.1379,0.2706,0.9239,-0.2706,0.3182,0.9239,-0.2126,0.1379,0.9808,-0.1379,0.3182,0.9239,-0.2126,0.1622,0.9808,-0.1084,0.1622,0.9808,-0.1084,0.3182,0.9239,-0.2126,0.3536,0.9239,-0.1464,0.1622,0.9808,-0.1084,0.3536,0.9239,-0.1464,0.1802,0.9808,-0.0747,0.1802,0.9808,-0.0747,0.3536,0.9239,-0.1464,0.3753,0.9239,-0.0747,0.1802,0.9808,-0.0747,0.3753,0.9239,-0.0747,0.1913,0.9808,-0.0381,0.1913,0.9808,-0.0381,0.3753,0.9239,-0.0747,0.3827,0.9239,0.0,0.1913,0.9808,-0.0381,0.3827,0.9239,0.0,0.1951,0.9808,0.0,0.1951,0.9808,0.0,0.3827,0.9239,0.0,0.3753,0.9239,0.0747,0.1951,0.9808,0.0,0.3753,0.9239,0.0747,0.1913,0.9808,0.0381,0.1913,0.9808,0.0381,0.3753,0.9239,0.0747,0.3536,0.9239,0.1464,0.1913,0.9808,0.0381,0.3536,0.9239,0.1464,0.1802,0.9808,0.0747,0.1802,0.9808,0.0747,0.3536,0.9239,0.1464,0.3182,0.9239,0.2126,0.1802,0.9808,0.0747,0.3182,0.9239,0.2126,0.1622,0.9808,0.1084,0.1622,0.9808,0.1084,0.3182,0.9239,0.2126,0.2706,0.9239,0.2706,0.1622,0.9808,0.1084,0.2706,0.9239,0.2706,0.1379,0.9808,0.1379,0.1379,0.9808,0.1379,0.2706,0.9239,0.2706,0.2126,0.9239,0.3182,0.1379,0.9808,0.1379,0.2126,0.9239,0.3182,0.1084,0.9808,0.1622,0.1084,0.9808,0.1622,0.2126,0.9239,0.3182,0.1464,0.9239,0.3536,0.1084,0.9808,0.1622,0.1464,0.9239,0.3536,0.0747,0.9808,0.1802,0.0747,0.9808,0.1802,0.1464,0.9239,0.3536,0.0747,0.9239,0.3753,0.0747,0.9808,0.1802,0.0747,0.9239,0.3753,0.0381,0.9808,0.1913,0.0381,0.9808,0.1913,0.0747,0.9239,0.3753,0.0,0.9239,0.3827,0.0381,0.9808,0.1913,0.0,0.9239,0.3827,0.0,0.9808,0.1951,0.0,0.9239,0.3827,0.0,0.8315,0.5556,-0.1084,0.8315,0.5449,0.0,0.9239,0.3827,-0.1084,0.8315,0.5449,-0.0747,0.9239,0.3753,-0.0747,0.9239,0.3753,-0.1084,0.8315,0.5449,-0.2126,0.8315,0.5133,-0.0747,0.9239,0.3753,-0.2126,0.8315,0.5133,-0.1464,0.9239,0.3536,-0.1464,0.9239,0.3536,-0.2126,0.8315,0.5133,-0.3087,0.8315,0.4619,-0.1464,0.9239,0.3536,-0.3087,0.8315,0.4619,-0.2126,0.9239,0.3182,-0.2126,0.9239,0.3182,-0.3087,0.8315,0.4619,-0.3928,0.8315,0.3928,-0.2126,0.9239,0.3182,-0.3928,0.8315,0.3928,-0.2706,0.9239,0.2706,-0.2706,0.9239,0.2706,-0.3928,0.8315,0.3928,-0.4619,0.8315,0.3087,-0.2706,0.9239,0.2706,-0.4619,0.8315,0.3087,-0.3182,0.9239,0.2126,-0.3182,0.9239,0.2126,-0.4619,0.8315,0.3087,-0.5133,0.8315,0.2126,-0.3182,0.9239,0.2126,-0.5133,0.8315,0.2126,-0.3536,0.9239,0.1464,-0.3536,0.9239,0.1464,-0.5133,0.8315,0.2126,-0.5449,0.8315,0.1084,-0.3536,0.9239,0.1464,-0.5449,0.8315,0.1084,-0.3753,0.9239,0.0747,-0.3753,0.9239,0.0747,-0.5449,0.8315,0.1084,-0.5556,0.8315,0.0,-0.3753,0.9239,0.0747,-0.5556,0.8315,0.0,-0.3827,0.9239,0.0,-0.3827,0.9239,0.0,-0.5556,0.8315,0.0,-0.5449,0.8315,-0.1084,-0.3827,0.9239,0.0,-0.5449,0.8315,-0.1084,-0.3753,0.9239,-0.0747,-0.3753,0.9239,-0.0747,-0.5449,0.8315,-0.1084,-0.5133,0.8315,-0.2126,-0.3753,0.9239,-0.0747,-0.5133,0.8315,-0.2126,-0.3536,0.9239,-0.1464,-0.3536,0.9239,-0.1464,-0.5133,0.8315,-0.2126,-0.4619,0.8315,-0.3087,-0.3536,0.9239,-0.1464,-0.4619,0.8315,-0.3087,-0.3182,0.9239,-0.2126,-0.3182,0.9239,-0.2126,-0.4619,0.8315,-0.3087,-0.3928,0.8315,-0.3928,-0.3182,0.9239,-0.2126,-0.3928,0.8315,-0.3928,-0.2706,0.9239,-0.2706,-0.2706,0.9239,-0.2706,-0.3928,0.8315,-0.3928,-0.3087,0.8315,-0.4619,-0.2706,0.9239,-0.2706,-0.3087,0.8315,-0.4619,-0.2126,0.9239,-0.3182,-0.2126,0.9239,-0.3182,-0.3087,0.8315,-0.4619,-0.2126,0.8315,-0.5133,-0.2126,0.9239,-0.3182,-0.2126,0.8315,-0.5133,-0.1464,0.9239,-0.3536,-0.1464,0.9239,-0.3536,-0.2126,0.8315,-0.5133,-0.1084,0.8315,-0.5449,-0.1464,0.9239,-0.3536,-0.1084,0.8315,-0.5449,-0.0747,0.9239,-0.3753,-0.0747,0.9239,-0.3753,-0.1084,0.8315,-0.5449,0.0,0.8315,-0.5556,-0.0747,0.9239,-0.3753,0.0,0.8315,-0.5556,0.0,0.9239,-0.3827,0.0,0.9239,-0.3827,0.0,0.8315,-0.5556,0.1084,0.8315,-0.5449,0.0,0.9239,-0.3827,0.1084,0.8315,-0.5449,0.0747,0.9239,-0.3753,0.0747,0.9239,-0.3753,0.1084,0.8315,-0.5449,0.2126,0.8315,-0.5133,0.0747,0.9239,-0.3753,0.2126,0.8315,-0.5133,0.1464,0.9239,-0.3536,0.1464,0.9239,-0.3536,0.2126,0.8315,-0.5133,0.3087,0.8315,-0.4619,0.1464,0.9239,-0.3536,0.3087,0.8315,-0.4619,0.2126,0.9239,-0.3182,0.2126,0.9239,-0.3182,0.3087,0.8315,-0.4619,0.3928,0.8315,-0.3928,0.2126,0.9239,-0.3182,0.3928,0.8315,-0.3928,0.2706,0.9239,-0.2706,0.2706,0.9239,-0.2706,0.3928,0.8315,-0.3928,0.4619,0.8315,-0.3087,0.2706,0.9239,-0.2706,0.4619,0.8315,-0.3087,0.3182,0.9239,-0.2126,0.3182,0.9239,-0.2126,0.4619,0.8315,-0.3087,0.5133,0.8315,-0.2126,0.3182,0.9239,-0.2126,0.5133,0.8315,-0.2126,0.3536,0.9239,-0.1464,0.3536,0.9239,-0.1464,0.5133,0.8315,-0.2126,0.5449,0.8315,-0.1084,0.3536,0.9239,-0.1464,0.5449,0.8315,-0.1084,0.3753,0.9239,-0.0747,0.3753,0.9239,-0.0747,0.5449,0.8315,-0.1084,0.5556,0.8315,0.0,0.3753,0.9239,-0.0747,0.5556,0.8315,0.0,0.3827,0.9239,0.0,0.3827,0.9239,0.0,0.5556,0.8315,0.0,0.5449,0.8315,0.1084,0.3827,0.9239,0.0,0.5449,0.8315,0.1084,0.3753,0.9239,0.0747,0.3753,0.9239,0.0747,0.5449,0.8315,0.1084,0.5133,0.8315,0.2126,0.3753,0.9239,0.0747,0.5133,0.8315,0.2126,0.3536,0.9239,0.1464,0.3536,0.9239,0.1464,0.5133,0.8315,0.2126,0.4619,0.8315,0.3087,0.3536,0.9239,0.1464,0.4619,0.8315,0.3087,0.3182,0.9239,0.2126,0.3182,0.9239,0.2126,0.4619,0.8315,0.3087,0.3928,0.8315,0.3928,0.3182,0.9239,0.2126,0.3928,0.8315,0.3928,0.2706,0.9239,0.2706,0.2706,0.9239,0.2706,0.3928,0.8315,0.3928,0.3087,0.8315,0.4619,0.2706,0.9239,0.2706,0.3087,0.8315,0.4619,0.2126,0.9239,0.3182,0.2126,0.9239,0.3182,0.3087,0.8315,0.4619,0.2126,0.8315,0.5133,0.2126,0.9239,0.3182,0.2126,0.8315,0.5133,0.1464,0.9239,0.3536,0.1464,0.9239,0.3536,0.2126,0.8315,0.5133,0.1084,0.8315,0.5449,0.1464,0.9239,0.3536,0.1084,0.8315,0.5449,0.0747,0.9239,0.3753,0.0747,0.9239,0.3753,0.1084,0.8315,0.5449,0.0,0.8315,0.5556,0.0747,0.9239,0.3753,0.0,0.8315,0.5556,0.0,0.9239,0.3827,0.0,0.8315,0.5556,0.0,0.7071,0.7071,-0.1379,0.7071,0.6935,0.0,0.8315,0.5556,-0.1379,0.7071,0.6935,-0.1084,0.8315,0.5449,-0.1084,0.8315,0.5449,-0.1379,0.7071,0.6935,-0.2706,0.7071,0.6533,-0.1084,0.8315,0.5449,-0.2706,0.7071,0.6533,-0.2126,0.8315,0.5133,-0.2126,0.8315,0.5133,-0.2706,0.7071,0.6533,-0.3928,0.7071,0.5879,-0.2126,0.8315,0.5133,-0.3928,0.7071,0.5879,-0.3087,0.8315,0.4619,-0.3087,0.8315,0.4619,-0.3928,0.7071,0.5879,-0.5,0.7071,0.5,-0.3087,0.8315,0.4619,-0.5,0.7071,0.5,-0.3928,0.8315,0.3928,-0.3928,0.8315,0.3928,-0.5,0.7071,0.5,-0.5879,0.7071,0.3928,-0.3928,0.8315,0.3928,-0.5879,0.7071,0.3928,-0.4619,0.8315,0.3087,-0.4619,0.8315,0.3087,-0.5879,0.7071,0.3928,-0.6533,0.7071,0.2706,-0.4619,0.8315,0.3087,-0.6533,0.7071,0.2706,-0.5133,0.8315,0.2126,-0.5133,0.8315,0.2126,-0.6533,0.7071,0.2706,-0.6935,0.7071,0.1379,-0.5133,0.8315,0.2126,-0.6935,0.7071,0.1379,-0.5449,0.8315,0.1084,-0.5449,0.8315,0.1084,-0.6935,0.7071,0.1379,-0.7071,0.7071,0.0,-0.5449,0.8315,0.1084,-0.7071,0.7071,0.0,-0.5556,0.8315,0.0,-0.5556,0.8315,0.0,-0.7071,0.7071,0.0,-0.6935,0.7071,-0.1379,-0.5556,0.8315,0.0,-0.6935,0.7071,-0.1379,-0.5449,0.8315,-0.1084,-0.5449,0.8315,-0.1084,-0.6935,0.7071,-0.1379,-0.6533,0.7071,-0.2706,-0.5449,0.8315,-0.1084,-0.6533,0.7071,-0.2706,-0.5133,0.8315,-0.2126,-0.5133,0.8315,-0.2126,-0.6533,0.7071,-0.2706,-0.5879,0.7071,-0.3928,-0.5133,0.8315,-0.2126,-0.5879,0.7071,-0.3928,-0.4619,0.8315,-0.3087,-0.4619,0.8315,-0.3087,-0.5879,0.7071,-0.3928,-0.5,0.7071,-0.5,-0.4619,0.8315,-0.3087,-0.5,0.7071,-0.5,-0.3928,0.8315,-0.3928,-0.3928,0.8315,-0.3928,-0.5,0.7071,-0.5,-0.3928,0.7071,-0.5879,-0.3928,0.8315,-0.3928,-0.3928,0.7071,-0.5879,-0.3087,0.8315,-0.4619,-0.3087,0.8315,-0.4619,-0.3928,0.7071,-0.5879,-0.2706,0.7071,-0.6533,-0.3087,0.8315,-0.4619,-0.2706,0.7071,-0.6533,-0.2126,0.8315,-0.5133,-0.2126,0.8315,-0.5133,-0.2706,0.7071,-0.6533,-0.1379,0.7071,-0.6935,-0.2126,0.8315,-0.5133,-0.1379,0.7071,-0.6935,-0.1084,0.8315,-0.5449,-0.1084,0.8315,-0.5449,-0.1379,0.7071,-0.6935,0.0,0.7071,-0.7071,-0.1084,0.8315,-0.5449,0.0,0.7071,-0.7071,0.0,0.8315,-0.5556,0.0,0.8315,-0.5556,0.0,0.7071,-0.7071,0.138,0.7071,-0.6935,0.0,0.8315,-0.5556,0.138,0.7071,-0.6935,0.1084,0.8315,-0.5449,0.1084,0.8315,-0.5449,0.138,0.7071,-0.6935,0.2706,0.7071,-0.6533,0.1084,0.8315,-0.5449,0.2706,0.7071,-0.6533,0.2126,0.8315,-0.5133,0.2126,0.8315,-0.5133,0.2706,0.7071,-0.6533,0.3928,0.7071,-0.5879,0.2126,0.8315,-0.5133,0.3928,0.7071,-0.5879,0.3087,0.8315,-0.4619,0.3087,0.8315,-0.4619,0.3928,0.7071,-0.5879,0.5,0.7071,-0.5,0.3087,0.8315,-0.4619,0.5,0.7071,-0.5,0.3928,0.8315,-0.3928,0.3928,0.8315,-0.3928,0.5,0.7071,-0.5,0.5879,0.7071,-0.3928,0.3928,0.8315,-0.3928,0.5879,0.7071,-0.3928,0.4619,0.8315,-0.3087,0.4619,0.8315,-0.3087,0.5879,0.7071,-0.3928,0.6533,0.7071,-0.2706,0.4619,0.8315,-0.3087,0.6533,0.7071,-0.2706,0.5133,0.8315,-0.2126,0.5133,0.8315,-0.2126,0.6533,0.7071,-0.2706,0.6935,0.7071,-0.1379,0.5133,0.8315,-0.2126,0.6935,0.7071,-0.1379,0.5449,0.8315,-0.1084,0.5449,0.8315,-0.1084,0.6935,0.7071,-0.1379,0.7071,0.7071,0.0,0.5449,0.8315,-0.1084,0.7071,0.7071,0.0,0.5556,0.8315,0.0,0.5556,0.8315,0.0,0.7071,0.7071,0.0,0.6935,0.7071,0.138,0.5556,0.8315,0.0,0.6935,0.7071,0.138,0.5449,0.8315,0.1084,0.5449,0.8315,0.1084,0.6935,0.7071,0.138,0.6533,0.7071,0.2706,0.5449,0.8315,0.1084,0.6533,0.7071,0.2706,0.5133,0.8315,0.2126,0.5133,0.8315,0.2126,0.6533,0.7071,0.2706,0.5879,0.7071,0.3928,0.5133,0.8315,0.2126,0.5879,0.7071,0.3928,0.4619,0.8315,0.3087,0.4619,0.8315,0.3087,0.5879,0.7071,0.3928,0.5,0.7071,0.5,0.4619,0.8315,0.3087,0.5,0.7071,0.5,0.3928,0.8315,0.3928,0.3928,0.8315,0.3928,0.5,0.7071,0.5,0.3928,0.7071,0.5879,0.3928,0.8315,0.3928,0.3928,0.7071,0.5879,0.3087,0.8315,0.4619,0.3087,0.8315,0.4619,0.3928,0.7071,0.5879,0.2706,0.7071,0.6533,0.3087,0.8315,0.4619,0.2706,0.7071,0.6533,0.2126,0.8315,0.5133,0.2126,0.8315,0.5133,0.2706,0.7071,0.6533,0.1379,0.7071,0.6935,0.2126,0.8315,0.5133,0.1379,0.7071,0.6935,0.1084,0.8315,0.5449,0.1084,0.8315,0.5449,0.1379,0.7071,0.6935,0.0,0.7071,0.7071,0.1084,0.8315,0.5449,0.0,0.7071,0.7071,0.0,0.8315,0.5556,0.0,0.7071,0.7071,0.0,0.5556,0.8315,-0.1622,0.5556,0.8155,0.0,0.7071,0.7071,-0.1622,0.5556,0.8155,-0.1379,0.7071,0.6935,-0.1379,0.7071,0.6935,-0.1622,0.5556,0.8155,-0.3182,0.5556,0.7682,-0.1379,0.7071,0.6935,-0.3182,0.5556,0.7682,-0.2706,0.7071,0.6533,-0.2706,0.7071,0.6533,-0.3182,0.5556,0.7682,-0.4619,0.5556,0.6913,-0.2706,0.7071,0.6533,-0.4619,0.5556,0.6913,-0.3928,0.7071,0.5879,-0.3928,0.7071,0.5879,-0.4619,0.5556,0.6913,-0.5879,0.5556,0.5879,-0.3928,0.7071,0.5879,-0.5879,0.5556,0.5879,-0.5,0.7071,0.5,-0.5,0.7071,0.5,-0.5879,0.5556,0.5879,-0.6913,0.5556,0.4619,-0.5,0.7071,0.5,-0.6913,0.5556,0.4619,-0.5879,0.7071,0.3928,-0.5879,0.7071,0.3928,-0.6913,0.5556,0.4619,-0.7682,0.5556,0.3182,-0.5879,0.7071,0.3928,-0.7682,0.5556,0.3182,-0.6533,0.7071,0.2706,-0.6533,0.7071,0.2706,-0.7682,0.5556,0.3182,-0.8155,0.5556,0.1622,-0.6533,0.7071,0.2706,-0.8155,0.5556,0.1622,-0.6935,0.7071,0.1379,-0.6935,0.7071,0.1379,-0.8155,0.5556,0.1622,-0.8315,0.5556,0.0,-0.6935,0.7071,0.1379,-0.8315,0.5556,0.0,-0.7071,0.7071,0.0,-0.7071,0.7071,0.0,-0.8315,0.5556,0.0,-0.8155,0.5556,-0.1622,-0.7071,0.7071,0.0,-0.8155,0.5556,-0.1622,-0.6935,0.7071,-0.1379,-0.6935,0.7071,-0.1379,-0.8155,0.5556,-0.1622,-0.7682,0.5556,-0.3182,-0.6935,0.7071,-0.1379,-0.7682,0.5556,-0.3182,-0.6533,0.7071,-0.2706,-0.6533,0.7071,-0.2706,-0.7682,0.5556,-0.3182,-0.6913,0.5556,-0.4619,-0.6533,0.7071,-0.2706,-0.6913,0.5556,-0.4619,-0.5879,0.7071,-0.3928,-0.5879,0.7071,-0.3928,-0.6913,0.5556,-0.4619,-0.5879,0.5556,-0.5879,-0.5879,0.7071,-0.3928,-0.5879,0.5556,-0.5879,-0.5,0.7071,-0.5,-0.5,0.7071,-0.5,-0.5879,0.5556,-0.5879,-0.4619,0.5556,-0.6913,-0.5,0.7071,-0.5,-0.4619,0.5556,-0.6913,-0.3928,0.7071,-0.5879,-0.3928,0.7071,-0.5879,-0.4619,0.5556,-0.6913,-0.3182,0.5556,-0.7682,-0.3928,0.7071,-0.5879,-0.3182,0.5556,-0.7682,-0.2706,0.7071,-0.6533,-0.2706,0.7071,-0.6533,-0.3182,0.5556,-0.7682,-0.1622,0.5556,-0.8155,-0.2706,0.7071,-0.6533,-0.1622,0.5556,-0.8155,-0.1379,0.7071,-0.6935,-0.1379,0.7071,-0.6935,-0.1622,0.5556,-0.8155,0.0,0.5556,-0.8315,-0.1379,0.7071,-0.6935,0.0,0.5556,-0.8315,0.0,0.7071,-0.7071,0.0,0.7071,-0.7071,0.0,0.5556,-0.8315,0.1622,0.5556,-0.8155,0.0,0.7071,-0.7071,0.1622,0.5556,-0.8155,0.138,0.7071,-0.6935,0.138,0.7071,-0.6935,0.1622,0.5556,-0.8155,0.3182,0.5556,-0.7682,0.138,0.7071,-0.6935,0.3182,0.5556,-0.7682,0.2706,0.7071,-0.6533,0.2706,0.7071,-0.6533,0.3182,0.5556,-0.7682,0.4619,0.5556,-0.6913,0.2706,0.7071,-0.6533,0.4619,0.5556,-0.6913,0.3928,0.7071,-0.5879,0.3928,0.7071,-0.5879,0.4619,0.5556,-0.6913,0.5879,0.5556,-0.5879,0.3928,0.7071,-0.5879,0.5879,0.5556,-0.5879,0.5,0.7071,-0.5,0.5,0.7071,-0.5,0.5879,0.5556,-0.5879,0.6913,0.5556,-0.4619,0.5,0.7071,-0.5,0.6913,0.5556,-0.4619,0.5879,0.7071,-0.3928,0.5879,0.7071,-0.3928,0.6913,0.5556,-0.4619,0.7682,0.5556,-0.3182,0.5879,0.7071,-0.3928,0.7682,0.5556,-0.3182,0.6533,0.7071,-0.2706,0.6533,0.7071,-0.2706,0.7682,0.5556,-0.3182,0.8155,0.5556,-0.1622,0.6533,0.7071,-0.2706,0.8155,0.5556,-0.1622,0.6935,0.7071,-0.1379,0.6935,0.7071,-0.1379,0.8155,0.5556,-0.1622,0.8315,0.5556,0.0,0.6935,0.7071,-0.1379,0.8315,0.5556,0.0,0.7071,0.7071,0.0,0.7071,0.7071,0.0,0.8315,0.5556,0.0,0.8155,0.5556,0.1622,0.7071,0.7071,0.0,0.8155,0.5556,0.1622,0.6935,0.7071,0.138,0.6935,0.7071,0.138,0.8155,0.5556,0.1622,0.7682,0.5556,0.3182,0.6935,0.7071,0.138,0.7682,0.5556,0.3182,0.6533,0.7071,0.2706,0.6533,0.7071,0.2706,0.7682,0.5556,0.3182,0.6913,0.5556,0.4619,0.6533,0.7071,0.2706,0.6913,0.5556,0.4619,0.5879,0.7071,0.3928,0.5879,0.7071,0.3928,0.6913,0.5556,0.4619,0.5879,0.5556,0.5879,0.5879,0.7071,0.3928,0.5879,0.5556,0.5879,0.5,0.7071,0.5,0.5,0.7071,0.5,0.5879,0.5556,0.5879,0.4619,0.5556,0.6913,0.5,0.7071,0.5,0.4619,0.5556,0.6913,0.3928,0.7071,0.5879,0.3928,0.7071,0.5879,0.4619,0.5556,0.6913,0.3182,0.5556,0.7682,0.3928,0.7071,0.5879,0.3182,0.5556,0.7682,0.2706,0.7071,0.6533,0.2706,0.7071,0.6533,0.3182,0.5556,0.7682,0.1622,0.5556,0.8155,0.2706,0.7071,0.6533,0.1622,0.5556,0.8155,0.1379,0.7071,0.6935,0.1379,0.7071,0.6935,0.1622,0.5556,0.8155,0.0,0.5556,0.8315,0.1379,0.7071,0.6935,0.0,0.5556,0.8315,0.0,0.7071,0.7071,0.0,0.5556,0.8315,0.0,0.3827,0.9239,-0.1802,0.3827,0.9061,0.0,0.5556,0.8315,-0.1802,0.3827,0.9061,-0.1622,0.5556,0.8155,-0.1622,0.5556,0.8155,-0.1802,0.3827,0.9061,-0.3536,0.3827,0.8536,-0.1622,0.5556,0.8155,-0.3536,0.3827,0.8536,-0.3182,0.5556,0.7682,-0.3182,0.5556,0.7682,-0.3536,0.3827,0.8536,-0.5133,0.3827,0.7682,-0.3182,0.5556,0.7682,-0.5133,0.3827,0.7682,-0.4619,0.5556,0.6913,-0.4619,0.5556,0.6913,-0.5133,0.3827,0.7682,-0.6533,0.3827,0.6533,-0.4619,0.5556,0.6913,-0.6533,0.3827,0.6533,-0.5879,0.5556,0.5879,-0.5879,0.5556,0.5879,-0.6533,0.3827,0.6533,-0.7682,0.3827,0.5133,-0.5879,0.5556,0.5879,-0.7682,0.3827,0.5133,-0.6913,0.5556,0.4619,-0.6913,0.5556,0.4619,-0.7682,0.3827,0.5133,-0.8536,0.3827,0.3536,-0.6913,0.5556,0.4619,-0.8536,0.3827,0.3536,-0.7682,0.5556,0.3182,-0.7682,0.5556,0.3182,-0.8536,0.3827,0.3536,-0.9061,0.3827,0.1802,-0.7682,0.5556,0.3182,-0.9061,0.3827,0.1802,-0.8155,0.5556,0.1622,-0.8155,0.5556,0.1622,-0.9061,0.3827,0.1802,-0.9239,0.3827,0.0,-0.8155,0.5556,0.1622,-0.9239,0.3827,0.0,-0.8315,0.5556,0.0,-0.8315,0.5556,0.0,-0.9239,0.3827,0.0,-0.9061,0.3827,-0.1802,-0.8315,0.5556,0.0,-0.9061,0.3827,-0.1802,-0.8155,0.5556,-0.1622,-0.8155,0.5556,-0.1622,-0.9061,0.3827,-0.1802,-0.8536,0.3827,-0.3536,-0.8155,0.5556,-0.1622,-0.8536,0.3827,-0.3536,-0.7682,0.5556,-0.3182,-0.7682,0.5556,-0.3182,-0.8536,0.3827,-0.3536,-0.7682,0.3827,-0.5133,-0.7682,0.5556,-0.3182,-0.7682,0.3827,-0.5133,-0.6913,0.5556,-0.4619,-0.6913,0.5556,-0.4619,-0.7682,0.3827,-0.5133,-0.6533,0.3827,-0.6533,-0.6913,0.5556,-0.4619,-0.6533,0.3827,-0.6533,-0.5879,0.5556,-0.5879,-0.5879,0.5556,-0.5879,-0.6533,0.3827,-0.6533,-0.5133,0.3827,-0.7682,-0.5879,0.5556,-0.5879,-0.5133,0.3827,-0.7682,-0.4619,0.5556,-0.6913,-0.4619,0.5556,-0.6913,-0.5133,0.3827,-0.7682,-0.3536,0.3827,-0.8536,-0.4619,0.5556,-0.6913,-0.3536,0.3827,-0.8536,-0.3182,0.5556,-0.7682,-0.3182,0.5556,-0.7682,-0.3536,0.3827,-0.8536,-0.1802,0.3827,-0.9061,-0.3182,0.5556,-0.7682,-0.1802,0.3827,-0.9061,-0.1622,0.5556,-0.8155,-0.1622,0.5556,-0.8155,-0.1802,0.3827,-0.9061,0.0,0.3827,-0.9239,-0.1622,0.5556,-0.8155,0.0,0.3827,-0.9239,0.0,0.5556,-0.8315,0.0,0.5556,-0.8315,0.0,0.3827,-0.9239,0.1802,0.3827,-0.9061,0.0,0.5556,-0.8315,0.1802,0.3827,-0.9061,0.1622,0.5556,-0.8155,0.1622,0.5556,-0.8155,0.1802,0.3827,-0.9061,0.3536,0.3827,-0.8536,0.1622,0.5556,-0.8155,0.3536,0.3827,-0.8536,0.3182,0.5556,-0.7682,0.3182,0.5556,-0.7682,0.3536,0.3827,-0.8536,0.5133,0.3827,-0.7682,0.3182,0.5556,-0.7682,0.5133,0.3827,-0.7682,0.4619,0.5556,-0.6913,0.4619,0.5556,-0.6913,0.5133,0.3827,-0.7682,0.6533,0.3827,-0.6533,0.4619,0.5556,-0.6913,0.6533,0.3827,-0.6533,0.5879,0.5556,-0.5879,0.5879,0.5556,-0.5879,0.6533,0.3827,-0.6533,0.7682,0.3827,-0.5133,0.5879,0.5556,-0.5879,0.7682,0.3827,-0.5133,0.6913,0.5556,-0.4619,0.6913,0.5556,-0.4619,0.7682,0.3827,-0.5133,0.8536,0.3827,-0.3536,0.6913,0.5556,-0.4619,0.8536,0.3827,-0.3536,0.7682,0.5556,-0.3182,0.7682,0.5556,-0.3182,0.8536,0.3827,-0.3536,0.9061,0.3827,-0.1802,0.7682,0.5556,-0.3182,0.9061,0.3827,-0.1802,0.8155,0.5556,-0.1622,0.8155,0.5556,-0.1622,0.9061,0.3827,-0.1802,0.9239,0.3827,0.0,0.8155,0.5556,-0.1622,0.9239,0.3827,0.0,0.8315,0.5556,0.0,0.8315,0.5556,0.0,0.9239,0.3827,0.0,0.9061,0.3827,0.1802,0.8315,0.5556,0.0,0.9061,0.3827,0.1802,0.8155,0.5556,0.1622,0.8155,0.5556,0.1622,0.9061,0.3827,0.1802,0.8536,0.3827,0.3536,0.8155,0.5556,0.1622,0.8536,0.3827,0.3536,0.7682,0.5556,0.3182,0.7682,0.5556,0.3182,0.8536,0.3827,0.3536,0.7682,0.3827,0.5133,0.7682,0.5556,0.3182,0.7682,0.3827,0.5133,0.6913,0.5556,0.4619,0.6913,0.5556,0.4619,0.7682,0.3827,0.5133,0.6533,0.3827,0.6533,0.6913,0.5556,0.4619,0.6533,0.3827,0.6533,0.5879,0.5556,0.5879,0.5879,0.5556,0.5879,0.6533,0.3827,0.6533,0.5133,0.3827,0.7682,0.5879,0.5556,0.5879,0.5133,0.3827,0.7682,0.4619,0.5556,0.6913,0.4619,0.5556,0.6913,0.5133,0.3827,0.7682,0.3536,0.3827,0.8536,0.4619,0.5556,0.6913,0.3536,0.3827,0.8536,0.3182,0.5556,0.7682,0.3182,0.5556,0.7682,0.3536,0.3827,0.8536,0.1802,0.3827,0.9061,0.3182,0.5556,0.7682,0.1802,0.3827,0.9061,0.1622,0.5556,0.8155,0.1622,0.5556,0.8155,0.1802,0.3827,0.9061,0.0,0.3827,0.9239,0.1622,0.5556,0.8155,0.0,0.3827,0.9239,0.0,0.5556,0.8315,0.0,0.3827,0.9239,0.0,0.1951,0.9808,-0.1913,0.1951,0.9619,0.0,0.3827,0.9239,-0.1913,0.1951,0.9619,-0.1802,0.3827,0.9061,-0.1802,0.3827,0.9061,-0.1913,0.1951,0.9619,-0.3753,0.1951,0.9061,-0.1802,0.3827,0.9061,-0.3753,0.1951,0.9061,-0.3536,0.3827,0.8536,-0.3536,0.3827,0.8536,-0.3753,0.1951,0.9061,-0.5449,0.1951,0.8155,-0.3536,0.3827,0.8536,-0.5449,0.1951,0.8155,-0.5133,0.3827,0.7682,-0.5133,0.3827,0.7682,-0.5449,0.1951,0.8155,-0.6935,0.1951,0.6935,-0.5133,0.3827,0.7682,-0.6935,0.1951,0.6935,-0.6533,0.3827,0.6533,-0.6533,0.3827,0.6533,-0.6935,0.1951,0.6935,-0.8155,0.1951,0.5449,-0.6533,0.3827,0.6533,-0.8155,0.1951,0.5449,-0.7682,0.3827,0.5133,-0.7682,0.3827,0.5133,-0.8155,0.1951,0.5449,-0.9061,0.1951,0.3753,-0.7682,0.3827,0.5133,-0.9061,0.1951,0.3753,-0.8536,0.3827,0.3536,-0.8536,0.3827,0.3536,-0.9061,0.1951,0.3753,-0.9619,0.1951,0.1913,-0.8536,0.3827,0.3536,-0.9619,0.1951,0.1913,-0.9061,0.3827,0.1802,-0.9061,0.3827,0.1802,-0.9619,0.1951,0.1913,-0.9808,0.1951,0.0,-0.9061,0.3827,0.1802,-0.9808,0.1951,0.0,-0.9239,0.3827,0.0,-0.9239,0.3827,0.0,-0.9808,0.1951,0.0,-0.9619,0.1951,-0.1913,-0.9239,0.3827,0.0,-0.9619,0.1951,-0.1913,-0.9061,0.3827,-0.1802,-0.9061,0.3827,-0.1802,-0.9619,0.1951,-0.1913,-0.9061,0.1951,-0.3753,-0.9061,0.3827,-0.1802,-0.9061,0.1951,-0.3753,-0.8536,0.3827,-0.3536,-0.8536,0.3827,-0.3536,-0.9061,0.1951,-0.3753,-0.8155,0.1951,-0.5449,-0.8536,0.3827,-0.3536,-0.8155,0.1951,-0.5449,-0.7682,0.3827,-0.5133,-0.7682,0.3827,-0.5133,-0.8155,0.1951,-0.5449,-0.6935,0.1951,-0.6935,-0.7682,0.3827,-0.5133,-0.6935,0.1951,-0.6935,-0.6533,0.3827,-0.6533,-0.6533,0.3827,-0.6533,-0.6935,0.1951,-0.6935,-0.5449,0.1951,-0.8155,-0.6533,0.3827,-0.6533,-0.5449,0.1951,-0.8155,-0.5133,0.3827,-0.7682,-0.5133,0.3827,-0.7682,-0.5449,0.1951,-0.8155,-0.3753,0.1951,-0.9061,-0.5133,0.3827,-0.7682,-0.3753,0.1951,-0.9061,-0.3536,0.3827,-0.8536,-0.3536,0.3827,-0.8536,-0.3753,0.1951,-0.9061,-0.1913,0.1951,-0.9619,-0.3536,0.3827,-0.8536,-0.1913,0.1951,-0.9619,-0.1802,0.3827,-0.9061,-0.1802,0.3827,-0.9061,-0.1913,0.1951,-0.9619,0.0,0.1951,-0.9808,-0.1802,0.3827,-0.9061,0.0,0.1951,-0.9808,0.0,0.3827,-0.9239,0.0,0.3827,-0.9239,0.0,0.1951,-0.9808,0.1913,0.1951,-0.9619,0.0,0.3827,-0.9239,0.1913,0.1951,-0.9619,0.1802,0.3827,-0.9061,0.1802,0.3827,-0.9061,0.1913,0.1951,-0.9619,0.3753,0.1951,-0.9061,0.1802,0.3827,-0.9061,0.3753,0.1951,-0.9061,0.3536,0.3827,-0.8536,0.3536,0.3827,-0.8536,0.3753,0.1951,-0.9061,0.5449,0.1951,-0.8155,0.3536,0.3827,-0.8536,0.5449,0.1951,-0.8155,0.5133,0.3827,-0.7682,0.5133,0.3827,-0.7682,0.5449,0.1951,-0.8155,0.6935,0.1951,-0.6935,0.5133,0.3827,-0.7682,0.6935,0.1951,-0.6935,0.6533,0.3827,-0.6533,0.6533,0.3827,-0.6533,0.6935,0.1951,-0.6935,0.8155,0.1951,-0.5449,0.6533,0.3827,-0.6533,0.8155,0.1951,-0.5449,0.7682,0.3827,-0.5133,0.7682,0.3827,-0.5133,0.8155,0.1951,-0.5449,0.9061,0.1951,-0.3753,0.7682,0.3827,-0.5133,0.9061,0.1951,-0.3753,0.8536,0.3827,-0.3536,0.8536,0.3827,-0.3536,0.9061,0.1951,-0.3753,0.9619,0.1951,-0.1913,0.8536,0.3827,-0.3536,0.9619,0.1951,-0.1913,0.9061,0.3827,-0.1802,0.9061,0.3827,-0.1802,0.9619,0.1951,-0.1913,0.9808,0.1951,0.0,0.9061,0.3827,-0.1802,0.9808,0.1951,0.0,0.9239,0.3827,0.0,0.9239,0.3827,0.0,0.9808,0.1951,0.0,0.9619,0.1951,0.1913,0.9239,0.3827,0.0,0.9619,0.1951,0.1913,0.9061,0.3827,0.1802,0.9061,0.3827,0.1802,0.9619,0.1951,0.1913,0.9061,0.1951,0.3753,0.9061,0.3827,0.1802,0.9061,0.1951,0.3753,0.8536,0.3827,0.3536,0.8536,0.3827,0.3536,0.9061,0.1951,0.3753,0.8155,0.1951,0.5449,0.8536,0.3827,0.3536,0.8155,0.1951,0.5449,0.7682,0.3827,0.5133,0.7682,0.3827,0.5133,0.8155,0.1951,0.5449,0.6935,0.1951,0.6935,0.7682,0.3827,0.5133,0.6935,0.1951,0.6935,0.6533,0.3827,0.6533,0.6533,0.3827,0.6533,0.6935,0.1951,0.6935,0.5449,0.1951,0.8155,0.6533,0.3827,0.6533,0.5449,0.1951,0.8155,0.5133,0.3827,0.7682,0.5133,0.3827,0.7682,0.5449,0.1951,0.8155,0.3753,0.1951,0.9061,0.5133,0.3827,0.7682,0.3753,0.1951,0.9061,0.3536,0.3827,0.8536,0.3536,0.3827,0.8536,0.3753,0.1951,0.9061,0.1913,0.1951,0.9619,0.3536,0.3827,0.8536,0.1913,0.1951,0.9619,0.1802,0.3827,0.9061,0.1802,0.3827,0.9061,0.1913,0.1951,0.9619,0.0,0.1951,0.9808,0.1802,0.3827,0.9061,0.0,0.1951,0.9808,0.0,0.3827,0.9239,0.0,0.1951,0.9808,0.0,0.0,1.0,-0.1951,0.0,0.9808,0.0,0.1951,0.9808,-0.1951,0.0,0.9808,-0.1913,0.1951,0.9619,-0.1913,0.1951,0.9619,-0.1951,0.0,0.9808,-0.3827,0.0,0.9239,-0.1913,0.1951,0.9619,-0.3827,0.0,0.9239,-0.3753,0.1951,0.9061,-0.3753,0.1951,0.9061,-0.3827,0.0,0.9239,-0.5556,0.0,0.8315,-0.3753,0.1951,0.9061,-0.5556,0.0,0.8315,-0.5449,0.1951,0.8155,-0.5449,0.1951,0.8155,-0.5556,0.0,0.8315,-0.7071,0.0,0.7071,-0.5449,0.1951,0.8155,-0.7071,0.0,0.7071,-0.6935,0.1951,0.6935,-0.6935,0.1951,0.6935,-0.7071,0.0,0.7071,-0.8315,0.0,0.5556,-0.6935,0.1951,0.6935,-0.8315,0.0,0.5556,-0.8155,0.1951,0.5449,-0.8155,0.1951,0.5449,-0.8315,0.0,0.5556,-0.9239,0.0,0.3827,-0.8155,0.1951,0.5449,-0.9239,0.0,0.3827,-0.9061,0.1951,0.3753,-0.9061,0.1951,0.3753,-0.9239,0.0,0.3827,-0.9808,0.0,0.1951,-0.9061,0.1951,0.3753,-0.9808,0.0,0.1951,-0.9619,0.1951,0.1913,-0.9619,0.1951,0.1913,-0.9808,0.0,0.1951,-1.0,0.0,0.0,-0.9619,0.1951,0.1913,-1.0,0.0,0.0,-0.9808,0.1951,0.0,-0.9808,0.1951,0.0,-1.0,0.0,0.0,-0.9808,0.0,-0.1951,-0.9808,0.1951,0.0,-0.9808,0.0,-0.1951,-0.9619,0.1951,-0.1913,-0.9619,0.1951,-0.1913,-0.9808,0.0,-0.1951,-0.9239,0.0,-0.3827,-0.9619,0.1951,-0.1913,-0.9239,0.0,-0.3827,-0.9061,0.1951,-0.3753,-0.9061,0.1951,-0.3753,-0.9239,0.0,-0.3827,-0.8315,0.0,-0.5556,-0.9061,0.1951,-0.3753,-0.8315,0.0,-0.5556,-0.8155,0.1951,-0.5449,-0.8155,0.1951,-0.5449,-0.8315,0.0,-0.5556,-0.7071,0.0,-0.7071,-0.8155,0.1951,-0.5449,-0.7071,0.0,-0.7071,-0.6935,0.1951,-0.6935,-0.6935,0.1951,-0.6935,-0.7071,0.0,-0.7071,-0.5556,0.0,-0.8315,-0.6935,0.1951,-0.6935,-0.5556,0.0,-0.8315,-0.5449,0.1951,-0.8155,-0.5449,0.1951,-0.8155,-0.5556,0.0,-0.8315,-0.3827,0.0,-0.9239,-0.5449,0.1951,-0.8155,-0.3827,0.0,-0.9239,-0.3753,0.1951,-0.9061,-0.3753,0.1951,-0.9061,-0.3827,0.0,-0.9239,-0.1951,0.0,-0.9808,-0.3753,0.1951,-0.9061,-0.1951,0.0,-0.9808,-0.1913,0.1951,-0.9619,-0.1913,0.1951,-0.9619,-0.1951,0.0,-0.9808,0.0,0.0,-1.0,-0.1913,0.1951,-0.9619,0.0,0.0,-1.0,0.0,0.1951,-0.9808,0.0,0.1951,-0.9808,0.0,0.0,-1.0,0.1951,0.0,-0.9808,0.0,0.1951,-0.9808,0.1951,0.0,-0.9808,0.1913,0.1951,-0.9619,0.1913,0.1951,-0.9619,0.1951,0.0,-0.9808,0.3827,0.0,-0.9239,0.1913,0.1951,-0.9619,0.3827,0.0,-0.9239,0.3753,0.1951,-0.9061,0.3753,0.1951,-0.9061,0.3827,0.0,-0.9239,0.5556,0.0,-0.8315,0.3753,0.1951,-0.9061,0.5556,0.0,-0.8315,0.5449,0.1951,-0.8155,0.5449,0.1951,-0.8155,0.5556,0.0,-0.8315,0.7071,0.0,-0.7071,0.5449,0.1951,-0.8155,0.7071,0.0,-0.7071,0.6935,0.1951,-0.6935,0.6935,0.1951,-0.6935,0.7071,0.0,-0.7071,0.8315,0.0,-0.5556,0.6935,0.1951,-0.6935,0.8315,0.0,-0.5556,0.8155,0.1951,-0.5449,0.8155,0.1951,-0.5449,0.8315,0.0,-0.5556,0.9239,0.0,-0.3827,0.8155,0.1951,-0.5449,0.9239,0.0,-0.3827,0.9061,0.1951,-0.3753,0.9061,0.1951,-0.3753,0.9239,0.0,-0.3827,0.9808,0.0,-0.1951,0.9061,0.1951,-0.3753,0.9808,0.0,-0.1951,0.9619,0.1951,-0.1913,0.9619,0.1951,-0.1913,0.9808,0.0,-0.1951,1.0,0.0,0.0,0.9619,0.1951,-0.1913,1.0,0.0,0.0,0.9808,0.1951,0.0,0.9808,0.1951,0.0,1.0,0.0,0.0,0.9808,0.0,0.1951,0.9808,0.1951,0.0,0.9808,0.0,0.1951,0.9619,0.1951,0.1913,0.9619,0.1951,0.1913,0.9808,0.0,0.1951,0.9239,0.0,0.3827,0.9619,0.1951,0.1913,0.9239,0.0,0.3827,0.9061,0.1951,0.3753,0.9061,0.1951,0.3753,0.9239,0.0,0.3827,0.8315,0.0,0.5556,0.9061,0.1951,0.3753,0.8315,0.0,0.5556,0.8155,0.1951,0.5449,0.8155,0.1951,0.5449,0.8315,0.0,0.5556,0.7071,0.0,0.7071,0.8155,0.1951,0.5449,0.7071,0.0,0.7071,0.6935,0.1951,0.6935,0.6935,0.1951,0.6935,0.7071,0.0,0.7071,0.5556,0.0,0.8315,0.6935,0.1951,0.6935,0.5556,0.0,0.8315,0.5449,0.1951,0.8155,0.5449,0.1951,0.8155,0.5556,0.0,0.8315,0.3827,0.0,0.9239,0.5449,0.1951,0.8155,0.3827,0.0,0.9239,0.3753,0.1951,0.9061,0.3753,0.1951,0.9061,0.3827,0.0,0.9239,0.1951,0.0,0.9808,0.3753,0.1951,0.9061,0.1951,0.0,0.9808,0.1913,0.1951,0.9619,0.1913,0.1951,0.9619,0.1951,0.0,0.9808,0.0,0.0,1.0,0.1913,0.1951,0.9619,0.0,0.0,1.0,0.0,0.1951,0.9808,0.0,0.0,1.0,0.0,-0.1951,0.9808,-0.1913,-0.1951,0.9619,0.0,0.0,1.0,-0.1913,-0.1951,0.9619,-0.1951,0.0,0.9808,-0.1951,0.0,0.9808,-0.1913,-0.1951,0.9619,-0.3753,-0.1951,0.9061,-0.1951,0.0,0.9808,-0.3753,-0.1951,0.9061,-0.3827,0.0,0.9239,-0.3827,0.0,0.9239,-0.3753,-0.1951,0.9061,-0.5449,-0.1951,0.8155,-0.3827,0.0,0.9239,-0.5449,-0.1951,0.8155,-0.5556,0.0,0.8315,-0.5556,0.0,0.8315,-0.5449,-0.1951,0.8155,-0.6935,-0.1951,0.6935,-0.5556,0.0,0.8315,-0.6935,-0.1951,0.6935,-0.7071,0.0,0.7071,-0.7071,0.0,0.7071,-0.6935,-0.1951,0.6935,-0.8155,-0.1951,0.5449,-0.7071,0.0,0.7071,-0.8155,-0.1951,0.5449,-0.8315,0.0,0.5556,-0.8315,0.0,0.5556,-0.8155,-0.1951,0.5449,-0.9061,-0.1951,0.3753,-0.8315,0.0,0.5556,-0.9061,-0.1951,0.3753,-0.9239,0.0,0.3827,-0.9239,0.0,0.3827,-0.9061,-0.1951,0.3753,-0.9619,-0.1951,0.1913,-0.9239,0.0,0.3827,-0.9619,-0.1951,0.1913,-0.9808,0.0,0.1951,-0.9808,0.0,0.1951,-0.9619,-0.1951,0.1913,-0.9808,-0.1951,0.0,-0.9808,0.0,0.1951,-0.9808,-0.1951,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-0.9808,-0.1951,0.0,-0.9619,-0.1951,-0.1913,-1.0,0.0,0.0,-0.9619,-0.1951,-0.1913,-0.9808,0.0,-0.1951,-0.9808,0.0,-0.1951,-0.9619,-0.1951,-0.1913,-0.9061,-0.1951,-0.3753,-0.9808,0.0,-0.1951,-0.9061,-0.1951,-0.3753,-0.9239,0.0,-0.3827,-0.9239,0.0,-0.3827,-0.9061,-0.1951,-0.3753,-0.8155,-0.1951,-0.5449,-0.9239,0.0,-0.3827,-0.8155,-0.1951,-0.5449,-0.8315,0.0,-0.5556,-0.8315,0.0,-0.5556,-0.8155,-0.1951,-0.5449,-0.6935,-0.1951,-0.6935,-0.8315,0.0,-0.5556,-0.6935,-0.1951,-0.6935,-0.7071,0.0,-0.7071,-0.7071,0.0,-0.7071,-0.6935,-0.1951,-0.6935,-0.5449,-0.1951,-0.8155,-0.7071,0.0,-0.7071,-0.5449,-0.1951,-0.8155,-0.5556,0.0,-0.8315,-0.5556,0.0,-0.8315,-0.5449,-0.1951,-0.8155,-0.3753,-0.1951,-0.9061,-0.5556,0.0,-0.8315,-0.3753,-0.1951,-0.9061,-0.3827,0.0,-0.9239,-0.3827,0.0,-0.9239,-0.3753,-0.1951,-0.9061,-0.1913,-0.1951,-0.9619,-0.3827,0.0,-0.9239,-0.1913,-0.1951,-0.9619,-0.1951,0.0,-0.9808,-0.1951,0.0,-0.9808,-0.1913,-0.1951,-0.9619,0.0,-0.1951,-0.9808,-0.1951,0.0,-0.9808,0.0,-0.1951,-0.9808,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,-0.1951,-0.9808,0.1913,-0.1951,-0.9619,0.0,0.0,-1.0,0.1913,-0.1951,-0.9619,0.1951,0.0,-0.9808,0.1951,0.0,-0.9808,0.1913,-0.1951,-0.9619,0.3753,-0.1951,-0.9061,0.1951,0.0,-0.9808,0.3753,-0.1951,-0.9061,0.3827,0.0,-0.9239,0.3827,0.0,-0.9239,0.3753,-0.1951,-0.9061,0.5449,-0.1951,-0.8155,0.3827,0.0,-0.9239,0.5449,-0.1951,-0.8155,0.5556,0.0,-0.8315,0.5556,0.0,-0.8315,0.5449,-0.1951,-0.8155,0.6935,-0.1951,-0.6935,0.5556,0.0,-0.8315,0.6935,-0.1951,-0.6935,0.7071,0.0,-0.7071,0.7071,0.0,-0.7071,0.6935,-0.1951,-0.6935,0.8155,-0.1951,-0.5449,0.7071,0.0,-0.7071,0.8155,-0.1951,-0.5449,0.8315,0.0,-0.5556,0.8315,0.0,-0.5556,0.8155,-0.1951,-0.5449,0.9061,-0.1951,-0.3753,0.8315,0.0,-0.5556,0.9061,-0.1951,-0.3753,0.9239,0.0,-0.3827,0.9239,0.0,-0.3827,0.9061,-0.1951,-0.3753,0.9619,-0.1951,-0.1913,0.9239,0.0,-0.3827,0.9619,-0.1951,-0.1913,0.9808,0.0,-0.1951,0.9808,0.0,-0.1951,0.9619,-0.1951,-0.1913,0.9808,-0.1951,0.0,0.9808,0.0,-0.1951,0.9808,-0.1951,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.9808,-0.1951,0.0,0.9619,-0.1951,0.1913,1.0,0.0,0.0,0.9619,-0.1951,0.1913,0.9808,0.0,0.1951,0.9808,0.0,0.1951,0.9619,-0.1951,0.1913,0.9061,-0.1951,0.3753,0.9808,0.0,0.1951,0.9061,-0.1951,0.3753,0.9239,0.0,0.3827,0.9239,0.0,0.3827,0.9061,-0.1951,0.3753,0.8155,-0.1951,0.5449,0.9239,0.0,0.3827,0.8155,-0.1951,0.5449,0.8315,0.0,0.5556,0.8315,0.0,0.5556,0.8155,-0.1951,0.5449,0.6935,-0.1951,0.6935,0.8315,0.0,0.5556,0.6935,-0.1951,0.6935,0.7071,0.0,0.7071,0.7071,0.0,0.7071,0.6935,-0.1951,0.6935,0.5449,-0.1951,0.8155,0.7071,0.0,0.7071,0.5449,-0.1951,0.8155,0.5556,0.0,0.8315,0.5556,0.0,0.8315,0.5449,-0.1951,0.8155,0.3753,-0.1951,0.9061,0.5556,0.0,0.8315,0.3753,-0.1951,0.9061,0.3827,0.0,0.9239,0.3827,0.0,0.9239,0.3753,-0.1951,0.9061,0.1913,-0.1951,0.9619,0.3827,0.0,0.9239,0.1913,-0.1951,0.9619,0.1951,0.0,0.9808,0.1951,0.0,0.9808,0.1913,-0.1951,0.9619,0.0,-0.1951,0.9808,0.1951,0.0,0.9808,0.0,-0.1951,0.9808,0.0,0.0,1.0,0.0,-0.1951,0.9808,0.0,-0.3827,0.9239,-0.1802,-0.3827,0.9061,0.0,-0.1951,0.9808,-0.1802,-0.3827,0.9061,-0.1913,-0.1951,0.9619,-0.1913,-0.1951,0.9619,-0.1802,-0.3827,0.9061,-0.3536,-0.3827,0.8536,-0.1913,-0.1951,0.9619,-0.3536,-0.3827,0.8536,-0.3753,-0.1951,0.9061,-0.3753,-0.1951,0.9061,-0.3536,-0.3827,0.8536,-0.5133,-0.3827,0.7682,-0.3753,-0.1951,0.9061,-0.5133,-0.3827,0.7682,-0.5449,-0.1951,0.8155,-0.5449,-0.1951,0.8155,-0.5133,-0.3827,0.7682,-0.6533,-0.3827,0.6533,-0.5449,-0.1951,0.8155,-0.6533,-0.3827,0.6533,-0.6935,-0.1951,0.6935,-0.6935,-0.1951,0.6935,-0.6533,-0.3827,0.6533,-0.7682,-0.3827,0.5133,-0.6935,-0.1951,0.6935,-0.7682,-0.3827,0.5133,-0.8155,-0.1951,0.5449,-0.8155,-0.1951,0.5449,-0.7682,-0.3827,0.5133,-0.8536,-0.3827,0.3536,-0.8155,-0.1951,0.5449,-0.8536,-0.3827,0.3536,-0.9061,-0.1951,0.3753,-0.9061,-0.1951,0.3753,-0.8536,-0.3827,0.3536,-0.9061,-0.3827,0.1802,-0.9061,-0.1951,0.3753,-0.9061,-0.3827,0.1802,-0.9619,-0.1951,0.1913,-0.9619,-0.1951,0.1913,-0.9061,-0.3827,0.1802,-0.9239,-0.3827,0.0,-0.9619,-0.1951,0.1913,-0.9239,-0.3827,0.0,-0.9808,-0.1951,0.0,-0.9808,-0.1951,0.0,-0.9239,-0.3827,0.0,-0.9061,-0.3827,-0.1802,-0.9808,-0.1951,0.0,-0.9061,-0.3827,-0.1802,-0.9619,-0.1951,-0.1913,-0.9619,-0.1951,-0.1913,-0.9061,-0.3827,-0.1802,-0.8536,-0.3827,-0.3536,-0.9619,-0.1951,-0.1913,-0.8536,-0.3827,-0.3536,-0.9061,-0.1951,-0.3753,-0.9061,-0.1951,-0.3753,-0.8536,-0.3827,-0.3536,-0.7682,-0.3827,-0.5133,-0.9061,-0.1951,-0.3753,-0.7682,-0.3827,-0.5133,-0.8155,-0.1951,-0.5449,-0.8155,-0.1951,-0.5449,-0.7682,-0.3827,-0.5133,-0.6533,-0.3827,-0.6533,-0.8155,-0.1951,-0.5449,-0.6533,-0.3827,-0.6533,-0.6935,-0.1951,-0.6935,-0.6935,-0.1951,-0.6935,-0.6533,-0.3827,-0.6533,-0.5133,-0.3827,-0.7682,-0.6935,-0.1951,-0.6935,-0.5133,-0.3827,-0.7682,-0.5449,-0.1951,-0.8155,-0.5449,-0.1951,-0.8155,-0.5133,-0.3827,-0.7682,-0.3536,-0.3827,-0.8536,-0.5449,-0.1951,-0.8155,-0.3536,-0.3827,-0.8536,-0.3753,-0.1951,-0.9061,-0.3753,-0.1951,-0.9061,-0.3536,-0.3827,-0.8536,-0.1802,-0.3827,-0.9061,-0.3753,-0.1951,-0.9061,-0.1802,-0.3827,-0.9061,-0.1913,-0.1951,-0.9619,-0.1913,-0.1951,-0.9619,-0.1802,-0.3827,-0.9061,0.0,-0.3827,-0.9239,-0.1913,-0.1951,-0.9619,0.0,-0.3827,-0.9239,0.0,-0.1951,-0.9808,0.0,-0.1951,-0.9808,0.0,-0.3827,-0.9239,0.1802,-0.3827,-0.9061,0.0,-0.1951,-0.9808,0.1802,-0.3827,-0.9061,0.1913,-0.1951,-0.9619,0.1913,-0.1951,-0.9619,0.1802,-0.3827,-0.9061,0.3536,-0.3827,-0.8536,0.1913,-0.1951,-0.9619,0.3536,-0.3827,-0.8536,0.3753,-0.1951,-0.9061,0.3753,-0.1951,-0.9061,0.3536,-0.3827,-0.8536,0.5133,-0.3827,-0.7682,0.3753,-0.1951,-0.9061,0.5133,-0.3827,-0.7682,0.5449,-0.1951,-0.8155,0.5449,-0.1951,-0.8155,0.5133,-0.3827,-0.7682,0.6533,-0.3827,-0.6533,0.5449,-0.1951,-0.8155,0.6533,-0.3827,-0.6533,0.6935,-0.1951,-0.6935,0.6935,-0.1951,-0.6935,0.6533,-0.3827,-0.6533,0.7682,-0.3827,-0.5133,0.6935,-0.1951,-0.6935,0.7682,-0.3827,-0.5133,0.8155,-0.1951,-0.5449,0.8155,-0.1951,-0.5449,0.7682,-0.3827,-0.5133,0.8536,-0.3827,-0.3536,0.8155,-0.1951,-0.5449,0.8536,-0.3827,-0.3536,0.9061,-0.1951,-0.3753,0.9061,-0.1951,-0.3753,0.8536,-0.3827,-0.3536,0.9061,-0.3827,-0.1802,0.9061,-0.1951,-0.3753,0.9061,-0.3827,-0.1802,0.9619,-0.1951,-0.1913,0.9619,-0.1951,-0.1913,0.9061,-0.3827,-0.1802,0.9239,-0.3827,0.0,0.9619,-0.1951,-0.1913,0.9239,-0.3827,0.0,0.9808,-0.1951,0.0,0.9808,-0.1951,0.0,0.9239,-0.3827,0.0,0.9061,-0.3827,0.1802,0.9808,-0.1951,0.0,0.9061,-0.3827,0.1802,0.9619,-0.1951,0.1913,0.9619,-0.1951,0.1913,0.9061,-0.3827,0.1802,0.8536,-0.3827,0.3536,0.9619,-0.1951,0.1913,0.8536,-0.3827,0.3536,0.9061,-0.1951,0.3753,0.9061,-0.1951,0.3753,0.8536,-0.3827,0.3536,0.7682,-0.3827,0.5133,0.9061,-0.1951,0.3753,0.7682,-0.3827,0.5133,0.8155,-0.1951,0.5449,0.8155,-0.1951,0.5449,0.7682,-0.3827,0.5133,0.6533,-0.3827,0.6533,0.8155,-0.1951,0.5449,0.6533,-0.3827,0.6533,0.6935,-0.1951,0.6935,0.6935,-0.1951,0.6935,0.6533,-0.3827,0.6533,0.5133,-0.3827,0.7682,0.6935,-0.1951,0.6935,0.5133,-0.3827,0.7682,0.5449,-0.1951,0.8155,0.5449,-0.1951,0.8155,0.5133,-0.3827,0.7682,0.3536,-0.3827,0.8536,0.5449,-0.1951,0.8155,0.3536,-0.3827,0.8536,0.3753,-0.1951,0.9061,0.3753,-0.1951,0.9061,0.3536,-0.3827,0.8536,0.1802,-0.3827,0.9061,0.3753,-0.1951,0.9061,0.1802,-0.3827,0.9061,0.1913,-0.1951,0.9619,0.1913,-0.1951,0.9619,0.1802,-0.3827,0.9061,0.0,-0.3827,0.9239,0.1913,-0.1951,0.9619,0.0,-0.3827,0.9239,0.0,-0.1951,0.9808,0.0,-0.3827,0.9239,0.0,-0.5556,0.8315,-0.1622,-0.5556,0.8155,0.0,-0.3827,0.9239,-0.1622,-0.5556,0.8155,-0.1802,-0.3827,0.9061,-0.1802,-0.3827,0.9061,-0.1622,-0.5556,0.8155,-0.3182,-0.5556,0.7682,-0.1802,-0.3827,0.9061,-0.3182,-0.5556,0.7682,-0.3536,-0.3827,0.8536,-0.3536,-0.3827,0.8536,-0.3182,-0.5556,0.7682,-0.4619,-0.5556,0.6913,-0.3536,-0.3827,0.8536,-0.4619,-0.5556,0.6913,-0.5133,-0.3827,0.7682,-0.5133,-0.3827,0.7682,-0.4619,-0.5556,0.6913,-0.5879,-0.5556,0.5879,-0.5133,-0.3827,0.7682,-0.5879,-0.5556,0.5879,-0.6533,-0.3827,0.6533,-0.6533,-0.3827,0.6533,-0.5879,-0.5556,0.5879,-0.6913,-0.5556,0.4619,-0.6533,-0.3827,0.6533,-0.6913,-0.5556,0.4619,-0.7682,-0.3827,0.5133,-0.7682,-0.3827,0.5133,-0.6913,-0.5556,0.4619,-0.7682,-0.5556,0.3182,-0.7682,-0.3827,0.5133,-0.7682,-0.5556,0.3182,-0.8536,-0.3827,0.3536,-0.8536,-0.3827,0.3536,-0.7682,-0.5556,0.3182,-0.8155,-0.5556,0.1622,-0.8536,-0.3827,0.3536,-0.8155,-0.5556,0.1622,-0.9061,-0.3827,0.1802,-0.9061,-0.3827,0.1802,-0.8155,-0.5556,0.1622,-0.8315,-0.5556,0.0,-0.9061,-0.3827,0.1802,-0.8315,-0.5556,0.0,-0.9239,-0.3827,0.0,-0.9239,-0.3827,0.0,-0.8315,-0.5556,0.0,-0.8155,-0.5556,-0.1622,-0.9239,-0.3827,0.0,-0.8155,-0.5556,-0.1622,-0.9061,-0.3827,-0.1802,-0.9061,-0.3827,-0.1802,-0.8155,-0.5556,-0.1622,-0.7682,-0.5556,-0.3182,-0.9061,-0.3827,-0.1802,-0.7682,-0.5556,-0.3182,-0.8536,-0.3827,-0.3536,-0.8536,-0.3827,-0.3536,-0.7682,-0.5556,-0.3182,-0.6913,-0.5556,-0.4619,-0.8536,-0.3827,-0.3536,-0.6913,-0.5556,-0.4619,-0.7682,-0.3827,-0.5133,-0.7682,-0.3827,-0.5133,-0.6913,-0.5556,-0.4619,-0.5879,-0.5556,-0.5879,-0.7682,-0.3827,-0.5133,-0.5879,-0.5556,-0.5879,-0.6533,-0.3827,-0.6533,-0.6533,-0.3827,-0.6533,-0.5879,-0.5556,-0.5879,-0.4619,-0.5556,-0.6913,-0.6533,-0.3827,-0.6533,-0.4619,-0.5556,-0.6913,-0.5133,-0.3827,-0.7682,-0.5133,-0.3827,-0.7682,-0.4619,-0.5556,-0.6913,-0.3182,-0.5556,-0.7682,-0.5133,-0.3827,-0.7682,-0.3182,-0.5556,-0.7682,-0.3536,-0.3827,-0.8536,-0.3536,-0.3827,-0.8536,-0.3182,-0.5556,-0.7682,-0.1622,-0.5556,-0.8155,-0.3536,-0.3827,-0.8536,-0.1622,-0.5556,-0.8155,-0.1802,-0.3827,-0.9061,-0.1802,-0.3827,-0.9061,-0.1622,-0.5556,-0.8155,0.0,-0.5556,-0.8315,-0.1802,-0.3827,-0.9061,0.0,-0.5556,-0.8315,0.0,-0.3827,-0.9239,0.0,-0.3827,-0.9239,0.0,-0.5556,-0.8315,0.1622,-0.5556,-0.8155,0.0,-0.3827,-0.9239,0.1622,-0.5556,-0.8155,0.1802,-0.3827,-0.9061,0.1802,-0.3827,-0.9061,0.1622,-0.5556,-0.8155,0.3182,-0.5556,-0.7682,0.1802,-0.3827,-0.9061,0.3182,-0.5556,-0.7682,0.3536,-0.3827,-0.8536,0.3536,-0.3827,-0.8536,0.3182,-0.5556,-0.7682,0.4619,-0.5556,-0.6913,0.3536,-0.3827,-0.8536,0.4619,-0.5556,-0.6913,0.5133,-0.3827,-0.7682,0.5133,-0.3827,-0.7682,0.4619,-0.5556,-0.6913,0.5879,-0.5556,-0.5879,0.5133,-0.3827,-0.7682,0.5879,-0.5556,-0.5879,0.6533,-0.3827,-0.6533,0.6533,-0.3827,-0.6533,0.5879,-0.5556,-0.5879,0.6913,-0.5556,-0.4619,0.6533,-0.3827,-0.6533,0.6913,-0.5556,-0.4619,0.7682,-0.3827,-0.5133,0.7682,-0.3827,-0.5133,0.6913,-0.5556,-0.4619,0.7682,-0.5556,-0.3182,0.7682,-0.3827,-0.5133,0.7682,-0.5556,-0.3182,0.8536,-0.3827,-0.3536,0.8536,-0.3827,-0.3536,0.7682,-0.5556,-0.3182,0.8155,-0.5556,-0.1622,0.8536,-0.3827,-0.3536,0.8155,-0.5556,-0.1622,0.9061,-0.3827,-0.1802,0.9061,-0.3827,-0.1802,0.8155,-0.5556,-0.1622,0.8315,-0.5556,0.0,0.9061,-0.3827,-0.1802,0.8315,-0.5556,0.0,0.9239,-0.3827,0.0,0.9239,-0.3827,0.0,0.8315,-0.5556,0.0,0.8155,-0.5556,0.1622,0.9239,-0.3827,0.0,0.8155,-0.5556,0.1622,0.9061,-0.3827,0.1802,0.9061,-0.3827,0.1802,0.8155,-0.5556,0.1622,0.7682,-0.5556,0.3182,0.9061,-0.3827,0.1802,0.7682,-0.5556,0.3182,0.8536,-0.3827,0.3536,0.8536,-0.3827,0.3536,0.7682,-0.5556,0.3182,0.6913,-0.5556,0.4619,0.8536,-0.3827,0.3536,0.6913,-0.5556,0.4619,0.7682,-0.3827,0.5133,0.7682,-0.3827,0.5133,0.6913,-0.5556,0.4619,0.5879,-0.5556,0.5879,0.7682,-0.3827,0.5133,0.5879,-0.5556,0.5879,0.6533,-0.3827,0.6533,0.6533,-0.3827,0.6533,0.5879,-0.5556,0.5879,0.4619,-0.5556,0.6913,0.6533,-0.3827,0.6533,0.4619,-0.5556,0.6913,0.5133,-0.3827,0.7682,0.5133,-0.3827,0.7682,0.4619,-0.5556,0.6913,0.3182,-0.5556,0.7682,0.5133,-0.3827,0.7682,0.3182,-0.5556,0.7682,0.3536,-0.3827,0.8536,0.3536,-0.3827,0.8536,0.3182,-0.5556,0.7682,0.1622,-0.5556,0.8155,0.3536,-0.3827,0.8536,0.1622,-0.5556,0.8155,0.1802,-0.3827,0.9061,0.1802,-0.3827,0.9061,0.1622,-0.5556,0.8155,0.0,-0.5556,0.8315,0.1802,-0.3827,0.9061,0.0,-0.5556,0.8315,0.0,-0.3827,0.9239,0.0,-0.5556,0.8315,0.0,-0.7071,0.7071,-0.1379,-0.7071,0.6935,0.0,-0.5556,0.8315,-0.1379,-0.7071,0.6935,-0.1622,-0.5556,0.8155,-0.1622,-0.5556,0.8155,-0.1379,-0.7071,0.6935,-0.2706,-0.7071,0.6533,-0.1622,-0.5556,0.8155,-0.2706,-0.7071,0.6533,-0.3182,-0.5556,0.7682,-0.3182,-0.5556,0.7682,-0.2706,-0.7071,0.6533,-0.3928,-0.7071,0.5879,-0.3182,-0.5556,0.7682,-0.3928,-0.7071,0.5879,-0.4619,-0.5556,0.6913,-0.4619,-0.5556,0.6913,-0.3928,-0.7071,0.5879,-0.5,-0.7071,0.5,-0.4619,-0.5556,0.6913,-0.5,-0.7071,0.5,-0.5879,-0.5556,0.5879,-0.5879,-0.5556,0.5879,-0.5,-0.7071,0.5,-0.5879,-0.7071,0.3928,-0.5879,-0.5556,0.5879,-0.5879,-0.7071,0.3928,-0.6913,-0.5556,0.4619,-0.6913,-0.5556,0.4619,-0.5879,-0.7071,0.3928,-0.6533,-0.7071,0.2706,-0.6913,-0.5556,0.4619,-0.6533,-0.7071,0.2706,-0.7682,-0.5556,0.3182,-0.7682,-0.5556,0.3182,-0.6533,-0.7071,0.2706,-0.6935,-0.7071,0.1379,-0.7682,-0.5556,0.3182,-0.6935,-0.7071,0.1379,-0.8155,-0.5556,0.1622,-0.8155,-0.5556,0.1622,-0.6935,-0.7071,0.1379,-0.7071,-0.7071,0.0,-0.8155,-0.5556,0.1622,-0.7071,-0.7071,0.0,-0.8315,-0.5556,0.0,-0.8315,-0.5556,0.0,-0.7071,-0.7071,0.0,-0.6935,-0.7071,-0.1379,-0.8315,-0.5556,0.0,-0.6935,-0.7071,-0.1379,-0.8155,-0.5556,-0.1622,-0.8155,-0.5556,-0.1622,-0.6935,-0.7071,-0.1379,-0.6533,-0.7071,-0.2706,-0.8155,-0.5556,-0.1622,-0.6533,-0.7071,-0.2706,-0.7682,-0.5556,-0.3182,-0.7682,-0.5556,-0.3182,-0.6533,-0.7071,-0.2706,-0.5879,-0.7071,-0.3928,-0.7682,-0.5556,-0.3182,-0.5879,-0.7071,-0.3928,-0.6913,-0.5556,-0.4619,-0.6913,-0.5556,-0.4619,-0.5879,-0.7071,-0.3928,-0.5,-0.7071,-0.5,-0.6913,-0.5556,-0.4619,-0.5,-0.7071,-0.5,-0.5879,-0.5556,-0.5879,-0.5879,-0.5556,-0.5879,-0.5,-0.7071,-0.5,-0.3928,-0.7071,-0.5879,-0.5879,-0.5556,-0.5879,-0.3928,-0.7071,-0.5879,-0.4619,-0.5556,-0.6913,-0.4619,-0.5556,-0.6913,-0.3928,-0.7071,-0.5879,-0.2706,-0.7071,-0.6533,-0.4619,-0.5556,-0.6913,-0.2706,-0.7071,-0.6533,-0.3182,-0.5556,-0.7682,-0.3182,-0.5556,-0.7682,-0.2706,-0.7071,-0.6533,-0.1379,-0.7071,-0.6935,-0.3182,-0.5556,-0.7682,-0.1379,-0.7071,-0.6935,-0.1622,-0.5556,-0.8155,-0.1622,-0.5556,-0.8155,-0.1379,-0.7071,-0.6935,0.0,-0.7071,-0.7071,-0.1622,-0.5556,-0.8155,0.0,-0.7071,-0.7071,0.0,-0.5556,-0.8315,0.0,-0.5556,-0.8315,0.0,-0.7071,-0.7071,0.138,-0.7071,-0.6935,0.0,-0.5556,-0.8315,0.138,-0.7071,-0.6935,0.1622,-0.5556,-0.8155,0.1622,-0.5556,-0.8155,0.138,-0.7071,-0.6935,0.2706,-0.7071,-0.6533,0.1622,-0.5556,-0.8155,0.2706,-0.7071,-0.6533,0.3182,-0.5556,-0.7682,0.3182,-0.5556,-0.7682,0.2706,-0.7071,-0.6533,0.3928,-0.7071,-0.5879,0.3182,-0.5556,-0.7682,0.3928,-0.7071,-0.5879,0.4619,-0.5556,-0.6913,0.4619,-0.5556,-0.6913,0.3928,-0.7071,-0.5879,0.5,-0.7071,-0.5,0.4619,-0.5556,-0.6913,0.5,-0.7071,-0.5,0.5879,-0.5556,-0.5879,0.5879,-0.5556,-0.5879,0.5,-0.7071,-0.5,0.5879,-0.7071,-0.3928,0.5879,-0.5556,-0.5879,0.5879,-0.7071,-0.3928,0.6913,-0.5556,-0.4619,0.6913,-0.5556,-0.4619,0.5879,-0.7071,-0.3928,0.6533,-0.7071,-0.2706,0.6913,-0.5556,-0.4619,0.6533,-0.7071,-0.2706,0.7682,-0.5556,-0.3182,0.7682,-0.5556,-0.3182,0.6533,-0.7071,-0.2706,0.6935,-0.7071,-0.1379,0.7682,-0.5556,-0.3182,0.6935,-0.7071,-0.1379,0.8155,-0.5556,-0.1622,0.8155,-0.5556,-0.1622,0.6935,-0.7071,-0.1379,0.7071,-0.7071,0.0,0.8155,-0.5556,-0.1622,0.7071,-0.7071,0.0,0.8315,-0.5556,0.0,0.8315,-0.5556,0.0,0.7071,-0.7071,0.0,0.6935,-0.7071,0.138,0.8315,-0.5556,0.0,0.6935,-0.7071,0.138,0.8155,-0.5556,0.1622,0.8155,-0.5556,0.1622,0.6935,-0.7071,0.138,0.6533,-0.7071,0.2706,0.8155,-0.5556,0.1622,0.6533,-0.7071,0.2706,0.7682,-0.5556,0.3182,0.7682,-0.5556,0.3182,0.6533,-0.7071,0.2706,0.5879,-0.7071,0.3928,0.7682,-0.5556,0.3182,0.5879,-0.7071,0.3928,0.6913,-0.5556,0.4619,0.6913,-0.5556,0.4619,0.5879,-0.7071,0.3928,0.5,-0.7071,0.5,0.6913,-0.5556,0.4619,0.5,-0.7071,0.5,0.5879,-0.5556,0.5879,0.5879,-0.5556,0.5879,0.5,-0.7071,0.5,0.3928,-0.7071,0.5879,0.5879,-0.5556,0.5879,0.3928,-0.7071,0.5879,0.4619,-0.5556,0.6913,0.4619,-0.5556,0.6913,0.3928,-0.7071,0.5879,0.2706,-0.7071,0.6533,0.4619,-0.5556,0.6913,0.2706,-0.7071,0.6533,0.3182,-0.5556,0.7682,0.3182,-0.5556,0.7682,0.2706,-0.7071,0.6533,0.1379,-0.7071,0.6935,0.3182,-0.5556,0.7682,0.1379,-0.7071,0.6935,0.1622,-0.5556,0.8155,0.1622,-0.5556,0.8155,0.1379,-0.7071,0.6935,0.0,-0.7071,0.7071,0.1622,-0.5556,0.8155,0.0,-0.7071,0.7071,0.0,-0.5556,0.8315,0.0,-0.7071,0.7071,0.0,-0.8315,0.5556,-0.1084,-0.8315,0.5449,0.0,-0.7071,0.7071,-0.1084,-0.8315,0.5449,-0.1379,-0.7071,0.6935,-0.1379,-0.7071,0.6935,-0.1084,-0.8315,0.5449,-0.2126,-0.8315,0.5133,-0.1379,-0.7071,0.6935,-0.2126,-0.8315,0.5133,-0.2706,-0.7071,0.6533,-0.2706,-0.7071,0.6533,-0.2126,-0.8315,0.5133,-0.3087,-0.8315,0.4619,-0.2706,-0.7071,0.6533,-0.3087,-0.8315,0.4619,-0.3928,-0.7071,0.5879,-0.3928,-0.7071,0.5879,-0.3087,-0.8315,0.4619,-0.3928,-0.8315,0.3928,-0.3928,-0.7071,0.5879,-0.3928,-0.8315,0.3928,-0.5,-0.7071,0.5,-0.5,-0.7071,0.5,-0.3928,-0.8315,0.3928,-0.4619,-0.8315,0.3087,-0.5,-0.7071,0.5,-0.4619,-0.8315,0.3087,-0.5879,-0.7071,0.3928,-0.5879,-0.7071,0.3928,-0.4619,-0.8315,0.3087,-0.5133,-0.8315,0.2126,-0.5879,-0.7071,0.3928,-0.5133,-0.8315,0.2126,-0.6533,-0.7071,0.2706,-0.6533,-0.7071,0.2706,-0.5133,-0.8315,0.2126,-0.5449,-0.8315,0.1084,-0.6533,-0.7071,0.2706,-0.5449,-0.8315,0.1084,-0.6935,-0.7071,0.1379,-0.6935,-0.7071,0.1379,-0.5449,-0.8315,0.1084,-0.5556,-0.8315,0.0,-0.6935,-0.7071,0.1379,-0.5556,-0.8315,0.0,-0.7071,-0.7071,0.0,-0.7071,-0.7071,0.0,-0.5556,-0.8315,0.0,-0.5449,-0.8315,-0.1084,-0.7071,-0.7071,0.0,-0.5449,-0.8315,-0.1084,-0.6935,-0.7071,-0.1379,-0.6935,-0.7071,-0.1379,-0.5449,-0.8315,-0.1084,-0.5133,-0.8315,-0.2126,-0.6935,-0.7071,-0.1379,-0.5133,-0.8315,-0.2126,-0.6533,-0.7071,-0.2706,-0.6533,-0.7071,-0.2706,-0.5133,-0.8315,-0.2126,-0.4619,-0.8315,-0.3087,-0.6533,-0.7071,-0.2706,-0.4619,-0.8315,-0.3087,-0.5879,-0.7071,-0.3928,-0.5879,-0.7071,-0.3928,-0.4619,-0.8315,-0.3087,-0.3928,-0.8315,-0.3928,-0.5879,-0.7071,-0.3928,-0.3928,-0.8315,-0.3928,-0.5,-0.7071,-0.5,-0.5,-0.7071,-0.5,-0.3928,-0.8315,-0.3928,-0.3087,-0.8315,-0.4619,-0.5,-0.7071,-0.5,-0.3087,-0.8315,-0.4619,-0.3928,-0.7071,-0.5879,-0.3928,-0.7071,-0.5879,-0.3087,-0.8315,-0.4619,-0.2126,-0.8315,-0.5133,-0.3928,-0.7071,-0.5879,-0.2126,-0.8315,-0.5133,-0.2706,-0.7071,-0.6533,-0.2706,-0.7071,-0.6533,-0.2126,-0.8315,-0.5133,-0.1084,-0.8315,-0.5449,-0.2706,-0.7071,-0.6533,-0.1084,-0.8315,-0.5449,-0.1379,-0.7071,-0.6935,-0.1379,-0.7071,-0.6935,-0.1084,-0.8315,-0.5449,0.0,-0.8315,-0.5556,-0.1379,-0.7071,-0.6935,0.0,-0.8315,-0.5556,0.0,-0.7071,-0.7071,0.0,-0.7071,-0.7071,0.0,-0.8315,-0.5556,0.1084,-0.8315,-0.5449,0.0,-0.7071,-0.7071,0.1084,-0.8315,-0.5449,0.138,-0.7071,-0.6935,0.138,-0.7071,-0.6935,0.1084,-0.8315,-0.5449,0.2126,-0.8315,-0.5133,0.138,-0.7071,-0.6935,0.2126,-0.8315,-0.5133,0.2706,-0.7071,-0.6533,0.2706,-0.7071,-0.6533,0.2126,-0.8315,-0.5133,0.3087,-0.8315,-0.4619,0.2706,-0.7071,-0.6533,0.3087,-0.8315,-0.4619,0.3928,-0.7071,-0.5879,0.3928,-0.7071,-0.5879,0.3087,-0.8315,-0.4619,0.3928,-0.8315,-0.3928,0.3928,-0.7071,-0.5879,0.3928,-0.8315,-0.3928,0.5,-0.7071,-0.5,0.5,-0.7071,-0.5,0.3928,-0.8315,-0.3928,0.4619,-0.8315,-0.3087,0.5,-0.7071,-0.5,0.4619,-0.8315,-0.3087,0.5879,-0.7071,-0.3928,0.5879,-0.7071,-0.3928,0.4619,-0.8315,-0.3087,0.5133,-0.8315,-0.2126,0.5879,-0.7071,-0.3928,0.5133,-0.8315,-0.2126,0.6533,-0.7071,-0.2706,0.6533,-0.7071,-0.2706,0.5133,-0.8315,-0.2126,0.5449,-0.8315,-0.1084,0.6533,-0.7071,-0.2706,0.5449,-0.8315,-0.1084,0.6935,-0.7071,-0.1379,0.6935,-0.7071,-0.1379,0.5449,-0.8315,-0.1084,0.5556,-0.8315,0.0,0.6935,-0.7071,-0.1379,0.5556,-0.8315,0.0,0.7071,-0.7071,0.0,0.7071,-0.7071,0.0,0.5556,-0.8315,0.0,0.5449,-0.8315,0.1084,0.7071,-0.7071,0.0,0.5449,-0.8315,0.1084,0.6935,-0.7071,0.138,0.6935,-0.7071,0.138,0.5449,-0.8315,0.1084,0.5133,-0.8315,0.2126,0.6935,-0.7071,0.138,0.5133,-0.8315,0.2126,0.6533,-0.7071,0.2706,0.6533,-0.7071,0.2706,0.5133,-0.8315,0.2126,0.4619,-0.8315,0.3087,0.6533,-0.7071,0.2706,0.4619,-0.8315,0.3087,0.5879,-0.7071,0.3928,0.5879,-0.7071,0.3928,0.4619,-0.8315,0.3087,0.3928,-0.8315,0.3928,0.5879,-0.7071,0.3928,0.3928,-0.8315,0.3928,0.5,-0.7071,0.5,0.5,-0.7071,0.5,0.3928,-0.8315,0.3928,0.3087,-0.8315,0.4619,0.5,-0.7071,0.5,0.3087,-0.8315,0.4619,0.3928,-0.7071,0.5879,0.3928,-0.7071,0.5879,0.3087,-0.8315,0.4619,0.2126,-0.8315,0.5133,0.3928,-0.7071,0.5879,0.2126,-0.8315,0.5133,0.2706,-0.7071,0.6533,0.2706,-0.7071,0.6533,0.2126,-0.8315,0.5133,0.1084,-0.8315,0.5449,0.2706,-0.7071,0.6533,0.1084,-0.8315,0.5449,0.1379,-0.7071,0.6935,0.1379,-0.7071,0.6935,0.1084,-0.8315,0.5449,0.0,-0.8315,0.5556,0.1379,-0.7071,0.6935,0.0,-0.8315,0.5556,0.0,-0.7071,0.7071,0.0,-0.8315,0.5556,0.0,-0.9239,0.3827,-0.0747,-0.9239,0.3753,0.0,-0.8315,0.5556,-0.0747,-0.9239,0.3753,-0.1084,-0.8315,0.5449,-0.1084,-0.8315,0.5449,-0.0747,-0.9239,0.3753,-0.1464,-0.9239,0.3536,-0.1084,-0.8315,0.5449,-0.1464,-0.9239,0.3536,-0.2126,-0.8315,0.5133,-0.2126,-0.8315,0.5133,-0.1464,-0.9239,0.3536,-0.2126,-0.9239,0.3182,-0.2126,-0.8315,0.5133,-0.2126,-0.9239,0.3182,-0.3087,-0.8315,0.4619,-0.3087,-0.8315,0.4619,-0.2126,-0.9239,0.3182,-0.2706,-0.9239,0.2706,-0.3087,-0.8315,0.4619,-0.2706,-0.9239,0.2706,-0.3928,-0.8315,0.3928,-0.3928,-0.8315,0.3928,-0.2706,-0.9239,0.2706,-0.3182,-0.9239,0.2126,-0.3928,-0.8315,0.3928,-0.3182,-0.9239,0.2126,-0.4619,-0.8315,0.3087,-0.4619,-0.8315,0.3087,-0.3182,-0.9239,0.2126,-0.3536,-0.9239,0.1464,-0.4619,-0.8315,0.3087,-0.3536,-0.9239,0.1464,-0.5133,-0.8315,0.2126,-0.5133,-0.8315,0.2126,-0.3536,-0.9239,0.1464,-0.3753,-0.9239,0.0747,-0.5133,-0.8315,0.2126,-0.3753,-0.9239,0.0747,-0.5449,-0.8315,0.1084,-0.5449,-0.8315,0.1084,-0.3753,-0.9239,0.0747,-0.3827,-0.9239,0.0,-0.5449,-0.8315,0.1084,-0.3827,-0.9239,0.0,-0.5556,-0.8315,0.0,-0.5556,-0.8315,0.0,-0.3827,-0.9239,0.0,-0.3753,-0.9239,-0.0747,-0.5556,-0.8315,0.0,-0.3753,-0.9239,-0.0747,-0.5449,-0.8315,-0.1084,-0.5449,-0.8315,-0.1084,-0.3753,-0.9239,-0.0747,-0.3536,-0.9239,-0.1464,-0.5449,-0.8315,-0.1084,-0.3536,-0.9239,-0.1464,-0.5133,-0.8315,-0.2126,-0.5133,-0.8315,-0.2126,-0.3536,-0.9239,-0.1464,-0.3182,-0.9239,-0.2126,-0.5133,-0.8315,-0.2126,-0.3182,-0.9239,-0.2126,-0.4619,-0.8315,-0.3087,-0.4619,-0.8315,-0.3087,-0.3182,-0.9239,-0.2126,-0.2706,-0.9239,-0.2706,-0.4619,-0.8315,-0.3087,-0.2706,-0.9239,-0.2706,-0.3928,-0.8315,-0.3928,-0.3928,-0.8315,-0.3928,-0.2706,-0.9239,-0.2706,-0.2126,-0.9239,-0.3182,-0.3928,-0.8315,-0.3928,-0.2126,-0.9239,-0.3182,-0.3087,-0.8315,-0.4619,-0.3087,-0.8315,-0.4619,-0.2126,-0.9239,-0.3182,-0.1464,-0.9239,-0.3536,-0.3087,-0.8315,-0.4619,-0.1464,-0.9239,-0.3536,-0.2126,-0.8315,-0.5133,-0.2126,-0.8315,-0.5133,-0.1464,-0.9239,-0.3536,-0.0747,-0.9239,-0.3753,-0.2126,-0.8315,-0.5133,-0.0747,-0.9239,-0.3753,-0.1084,-0.8315,-0.5449,-0.1084,-0.8315,-0.5449,-0.0747,-0.9239,-0.3753,0.0,-0.9239,-0.3827,-0.1084,-0.8315,-0.5449,0.0,-0.9239,-0.3827,0.0,-0.8315,-0.5556,0.0,-0.8315,-0.5556,0.0,-0.9239,-0.3827,0.0747,-0.9239,-0.3753,0.0,-0.8315,-0.5556,0.0747,-0.9239,-0.3753,0.1084,-0.8315,-0.5449,0.1084,-0.8315,-0.5449,0.0747,-0.9239,-0.3753,0.1464,-0.9239,-0.3536,0.1084,-0.8315,-0.5449,0.1464,-0.9239,-0.3536,0.2126,-0.8315,-0.5133,0.2126,-0.8315,-0.5133,0.1464,-0.9239,-0.3536,0.2126,-0.9239,-0.3182,0.2126,-0.8315,-0.5133,0.2126,-0.9239,-0.3182,0.3087,-0.8315,-0.4619,0.3087,-0.8315,-0.4619,0.2126,-0.9239,-0.3182,0.2706,-0.9239,-0.2706,0.3087,-0.8315,-0.4619,0.2706,-0.9239,-0.2706,0.3928,-0.8315,-0.3928,0.3928,-0.8315,-0.3928,0.2706,-0.9239,-0.2706,0.3182,-0.9239,-0.2126,0.3928,-0.8315,-0.3928,0.3182,-0.9239,-0.2126,0.4619,-0.8315,-0.3087,0.4619,-0.8315,-0.3087,0.3182,-0.9239,-0.2126,0.3536,-0.9239,-0.1464,0.4619,-0.8315,-0.3087,0.3536,-0.9239,-0.1464,0.5133,-0.8315,-0.2126,0.5133,-0.8315,-0.2126,0.3536,-0.9239,-0.1464,0.3753,-0.9239,-0.0747,0.5133,-0.8315,-0.2126,0.3753,-0.9239,-0.0747,0.5449,-0.8315,-0.1084,0.5449,-0.8315,-0.1084,0.3753,-0.9239,-0.0747,0.3827,-0.9239,0.0,0.5449,-0.8315,-0.1084,0.3827,-0.9239,0.0,0.5556,-0.8315,0.0,0.5556,-0.8315,0.0,0.3827,-0.9239,0.0,0.3753,-0.9239,0.0747,0.5556,-0.8315,0.0,0.3753,-0.9239,0.0747,0.5449,-0.8315,0.1084,0.5449,-0.8315,0.1084,0.3753,-0.9239,0.0747,0.3536,-0.9239,0.1464,0.5449,-0.8315,0.1084,0.3536,-0.9239,0.1464,0.5133,-0.8315,0.2126,0.5133,-0.8315,0.2126,0.3536,-0.9239,0.1464,0.3182,-0.9239,0.2126,0.5133,-0.8315,0.2126,0.3182,-0.9239,0.2126,0.4619,-0.8315,0.3087,0.4619,-0.8315,0.3087,0.3182,-0.9239,0.2126,0.2706,-0.9239,0.2706,0.4619,-0.8315,0.3087,0.2706,-0.9239,0.2706,0.3928,-0.8315,0.3928,0.3928,-0.8315,0.3928,0.2706,-0.9239,0.2706,0.2126,-0.9239,0.3182,0.3928,-0.8315,0.3928,0.2126,-0.9239,0.3182,0.3087,-0.8315,0.4619,0.3087,-0.8315,0.4619,0.2126,-0.9239,0.3182,0.1464,-0.9239,0.3536,0.3087,-0.8315,0.4619,0.1464,-0.9239,0.3536,0.2126,-0.8315,0.5133,0.2126,-0.8315,0.5133,0.1464,-0.9239,0.3536,0.0747,-0.9239,0.3753,0.2126,-0.8315,0.5133,0.0747,-0.9239,0.3753,0.1084,-0.8315,0.5449,0.1084,-0.8315,0.5449,0.0747,-0.9239,0.3753,0.0,-0.9239,0.3827,0.1084,-0.8315,0.5449,0.0,-0.9239,0.3827,0.0,-0.8315,0.5556,0.0,-0.9239,0.3827,0.0,-0.9808,0.1951,-0.0381,-0.9808,0.1913,0.0,-0.9239,0.3827,-0.0381,-0.9808,0.1913,-0.0747,-0.9239,0.3753,-0.0747,-0.9239,0.3753,-0.0381,-0.9808,0.1913,-0.0747,-0.9808,0.1802,-0.0747,-0.9239,0.3753,-0.0747,-0.9808,0.1802,-0.1464,-0.9239,0.3536,-0.1464,-0.9239,0.3536,-0.0747,-0.9808,0.1802,-0.1084,-0.9808,0.1622,-0.1464,-0.9239,0.3536,-0.1084,-0.9808,0.1622,-0.2126,-0.9239,0.3182,-0.2126,-0.9239,0.3182,-0.1084,-0.9808,0.1622,-0.1379,-0.9808,0.1379,-0.2126,-0.9239,0.3182,-0.1379,-0.9808,0.1379,-0.2706,-0.9239,0.2706,-0.2706,-0.9239,0.2706,-0.1379,-0.9808,0.1379,-0.1622,-0.9808,0.1084,-0.2706,-0.9239,0.2706,-0.1622,-0.9808,0.1084,-0.3182,-0.9239,0.2126,-0.3182,-0.9239,0.2126,-0.1622,-0.9808,0.1084,-0.1802,-0.9808,0.0747,-0.3182,-0.9239,0.2126,-0.1802,-0.9808,0.0747,-0.3536,-0.9239,0.1464,-0.3536,-0.9239,0.1464,-0.1802,-0.9808,0.0747,-0.1913,-0.9808,0.0381,-0.3536,-0.9239,0.1464,-0.1913,-0.9808,0.0381,-0.3753,-0.9239,0.0747,-0.3753,-0.9239,0.0747,-0.1913,-0.9808,0.0381,-0.1951,-0.9808,0.0,-0.3753,-0.9239,0.0747,-0.1951,-0.9808,0.0,-0.3827,-0.9239,0.0,-0.3827,-0.9239,0.0,-0.1951,-0.9808,0.0,-0.1913,-0.9808,-0.0381,-0.3827,-0.9239,0.0,-0.1913,-0.9808,-0.0381,-0.3753,-0.9239,-0.0747,-0.3753,-0.9239,-0.0747,-0.1913,-0.9808,-0.0381,-0.1802,-0.9808,-0.0747,-0.3753,-0.9239,-0.0747,-0.1802,-0.9808,-0.0747,-0.3536,-0.9239,-0.1464,-0.3536,-0.9239,-0.1464,-0.1802,-0.9808,-0.0747,-0.1622,-0.9808,-0.1084,-0.3536,-0.9239,-0.1464,-0.1622,-0.9808,-0.1084,-0.3182,-0.9239,-0.2126,-0.3182,-0.9239,-0.2126,-0.1622,-0.9808,-0.1084,-0.1379,-0.9808,-0.1379,-0.3182,-0.9239,-0.2126,-0.1379,-0.9808,-0.1379,-0.2706,-0.9239,-0.2706,-0.2706,-0.9239,-0.2706,-0.1379,-0.9808,-0.1379,-0.1084,-0.9808,-0.1622,-0.2706,-0.9239,-0.2706,-0.1084,-0.9808,-0.1622,-0.2126,-0.9239,-0.3182,-0.2126,-0.9239,-0.3182,-0.1084,-0.9808,-0.1622,-0.0747,-0.9808,-0.1802,-0.2126,-0.9239,-0.3182,-0.0747,-0.9808,-0.1802,-0.1464,-0.9239,-0.3536,-0.1464,-0.9239,-0.3536,-0.0747,-0.9808,-0.1802,-0.0381,-0.9808,-0.1913,-0.1464,-0.9239,-0.3536,-0.0381,-0.9808,-0.1913,-0.0747,-0.9239,-0.3753,-0.0747,-0.9239,-0.3753,-0.0381,-0.9808,-0.1913,0.0,-0.9808,-0.1951,-0.0747,-0.9239,-0.3753,0.0,-0.9808,-0.1951,0.0,-0.9239,-0.3827,0.0,-0.9239,-0.3827,0.0,-0.9808,-0.1951,0.0381,-0.9808,-0.1913,0.0,-0.9239,-0.3827,0.0381,-0.9808,-0.1913,0.0747,-0.9239,-0.3753,0.0747,-0.9239,-0.3753,0.0381,-0.9808,-0.1913,0.0747,-0.9808,-0.1802,0.0747,-0.9239,-0.3753,0.0747,-0.9808,-0.1802,0.1464,-0.9239,-0.3536,0.1464,-0.9239,-0.3536,0.0747,-0.9808,-0.1802,0.1084,-0.9808,-0.1622,0.1464,-0.9239,-0.3536,0.1084,-0.9808,-0.1622,0.2126,-0.9239,-0.3182,0.2126,-0.9239,-0.3182,0.1084,-0.9808,-0.1622,0.1379,-0.9808,-0.1379,0.2126,-0.9239,-0.3182,0.1379,-0.9808,-0.1379,0.2706,-0.9239,-0.2706,0.2706,-0.9239,-0.2706,0.1379,-0.9808,-0.1379,0.1622,-0.9808,-0.1084,0.2706,-0.9239,-0.2706,0.1622,-0.9808,-0.1084,0.3182,-0.9239,-0.2126,0.3182,-0.9239,-0.2126,0.1622,-0.9808,-0.1084,0.1802,-0.9808,-0.0747,0.3182,-0.9239,-0.2126,0.1802,-0.9808,-0.0747,0.3536,-0.9239,-0.1464,0.3536,-0.9239,-0.1464,0.1802,-0.9808,-0.0747,0.1913,-0.9808,-0.0381,0.3536,-0.9239,-0.1464,0.1913,-0.9808,-0.0381,0.3753,-0.9239,-0.0747,0.3753,-0.9239,-0.0747,0.1913,-0.9808,-0.0381,0.1951,-0.9808,0.0,0.3753,-0.9239,-0.0747,0.1951,-0.9808,0.0,0.3827,-0.9239,0.0,0.3827,-0.9239,0.0,0.1951,-0.9808,0.0,0.1913,-0.9808,0.0381,0.3827,-0.9239,0.0,0.1913,-0.9808,0.0381,0.3753,-0.9239,0.0747,0.3753,-0.9239,0.0747,0.1913,-0.9808,0.0381,0.1802,-0.9808,0.0747,0.3753,-0.9239,0.0747,0.1802,-0.9808,0.0747,0.3536,-0.9239,0.1464,0.3536,-0.9239,0.1464,0.1802,-0.9808,0.0747,0.1622,-0.9808,0.1084,0.3536,-0.9239,0.1464,0.1622,-0.9808,0.1084,0.3182,-0.9239,0.2126,0.3182,-0.9239,0.2126,0.1622,-0.9808,0.1084,0.1379,-0.9808,0.1379,0.3182,-0.9239,0.2126,0.1379,-0.9808,0.1379,0.2706,-0.9239,0.2706,0.2706,-0.9239,0.2706,0.1379,-0.9808,0.1379,0.1084,-0.9808,0.1622,0.2706,-0.9239,0.2706,0.1084,-0.9808,0.1622,0.2126,-0.9239,0.3182,0.2126,-0.9239,0.3182,0.1084,-0.9808,0.1622,0.0747,-0.9808,0.1802,0.2126,-0.9239,0.3182,0.0747,-0.9808,0.1802,0.1464,-0.9239,0.3536,0.1464,-0.9239,0.3536,0.0747,-0.9808,0.1802,0.0381,-0.9808,0.1913,0.1464,-0.9239,0.3536,0.0381,-0.9808,0.1913,0.0747,-0.9239,0.3753,0.0747,-0.9239,0.3753,0.0381,-0.9808,0.1913,0.0,-0.9808,0.1951,0.0747,-0.9239,0.3753,0.0,-0.9808,0.1951,0.0,-0.9239,0.3827,0.0,-1.0,0.0,-0.0381,-0.9808,0.1913,0.0,-0.9808,0.1951,0.0,-1.0,0.0,-0.0747,-0.9808,0.1802,-0.0381,-0.9808,0.1913,0.0,-1.0,0.0,-0.1084,-0.9808,0.1622,-0.0747,-0.9808,0.1802,0.0,-1.0,0.0,-0.1379,-0.9808,0.1379,-0.1084,-0.9808,0.1622,0.0,-1.0,0.0,-0.1622,-0.9808,0.1084,-0.1379,-0.9808,0.1379,0.0,-1.0,0.0,-0.1802,-0.9808,0.0747,-0.1622,-0.9808,0.1084,0.0,-1.0,0.0,-0.1913,-0.9808,0.0381,-0.1802,-0.9808,0.0747,0.0,-1.0,0.0,-0.1951,-0.9808,0.0,-0.1913,-0.9808,0.0381,0.0,-1.0,0.0,-0.1913,-0.9808,-0.0381,-0.1951,-0.9808,0.0,0.0,-1.0,0.0,-0.1802,-0.9808,-0.0747,-0.1913,-0.9808,-0.0381,0.0,-1.0,0.0,-0.1622,-0.9808,-0.1084,-0.1802,-0.9808,-0.0747,0.0,-1.0,0.0,-0.1379,-0.9808,-0.1379,-0.1622,-0.9808,-0.1084,0.0,-1.0,0.0,-0.1084,-0.9808,-0.1622,-0.1379,-0.9808,-0.1379,0.0,-1.0,0.0,-0.0747,-0.9808,-0.1802,-0.1084,-0.9808,-0.1622,0.0,-1.0,0.0,-0.0381,-0.9808,-0.1913,-0.0747,-0.9808,-0.1802,0.0,-1.0,0.0,0.0,-0.9808,-0.1951,-0.0381,-0.9808,-0.1913,0.0,-1.0,0.0,0.0381,-0.9808,-0.1913,0.0,-0.9808,-0.1951,0.0,-1.0,0.0,0.0747,-0.9808,-0.1802,0.0381,-0.9808,-0.1913,0.0,-1.0,0.0,0.1084,-0.9808,-0.1622,0.0747,-0.9808,-0.1802,0.0,-1.0,0.0,0.1379,-0.9808,-0.1379,0.1084,-0.9808,-0.1622,0.0,-1.0,0.0,0.1622,-0.9808,-0.1084,0.1379,-0.9808,-0.1379,0.0,-1.0,0.0,0.1802,-0.9808,-0.0747,0.1622,-0.9808,-0.1084,0.0,-1.0,0.0,0.1913,-0.9808,-0.0381,0.1802,-0.9808,-0.0747,0.0,-1.0,0.0,0.1951,-0.9808,0.0,0.1913,-0.9808,-0.0381,0.0,-1.0,0.0,0.1913,-0.9808,0.0381,0.1951,-0.9808,0.0,0.0,-1.0,0.0,0.1802,-0.9808,0.0747,0.1913,-0.9808,0.0381,0.0,-1.0,0.0,0.1622,-0.9808,0.1084,0.1802,-0.9808,0.0747,0.0,-1.0,0.0,0.1379,-0.9808,0.1379,0.1622,-0.9808,0.1084,0.0,-1.0,0.0,0.1084,-0.9808,0.1622,0.1379,-0.9808,0.1379,0.0,-1.0,0.0,0.0747,-0.9808,0.1802,0.1084,-0.9808,0.1622,0.0,-1.0,0.0,0.0381,-0.9808,0.1913,0.0747,-0.9808,0.1802,0.0,-1.0,0.0,0.0,-0.9808,0.1951,0.0381,-0.9808,0.1913],"normals":[0.0,1.0,0.0,0.0,0.9796,0.201,-0.0392,0.9796,0.1971,0.0,1.0,0.0,-0.0392,0.9796,0.1971,-0.0769,0.9796,0.1857,0.0,1.0,0.0,-0.0769,0.9796,0.1857,-0.1117,0.9796,0.1671,0.0,1.0,0.0,-0.1117,0.9796,0.1671,-0.1421,0.9796,0.1421,0.0,1.0,0.0,-0.1421,0.9796,0.1421,-0.1671,0.9796,0.1117,0.0,1.0,0.0,-0.1671,0.9796,0.1117,-0.1857,0.9796,0.0769,0.0,1.0,0.0,-0.1857,0.9796,0.0769,-0.1971,0.9796,0.0392,0.0,1.0,0.0,-0.1971,0.9796,0.0392,-0.201,0.9796,0.0,0.0,1.0,0.0,-0.201,0.9796,0.0,-0.1971,0.9796,-0.0392,0.0,1.0,0.0,-0.1971,0.9796,-0.0392,-0.1857,0.9796,-0.0769,0.0,1.0,0.0,-0.1857,0.9796,-0.0769,-0.1671,0.9796,-0.1117,0.0,1.0,0.0,-0.1671,0.9796,-0.1117,-0.1421,0.9796,-0.1421,0.0,1.0,0.0,-0.1421,0.9796,-0.1421,-0.1117,0.9796,-0.1671,0.0,1.0,0.0,-0.1117,0.9796,-0.1671,-0.0769,0.9796,-0.1857,0.0,1.0,0.0,-0.0769,0.9796,-0.1857,-0.0392,0.9796,-0.1971,0.0,1.0,0.0,-0.0392,0.9796,-0.1971,0.0,0.9796,-0.201,0.0,1.0,0.0,0.0,0.9796,-0.201,0.0392,0.9796,-0.1971,0.0,1.0,0.0,0.0392,0.9796,-0.1971,0.0769,0.9796,-0.1857,0.0,1.0,0.0,0.0769,0.9796,-0.1857,0.1117,0.9796,-0.1671,0.0,1.0,0.0,0.1117,0.9796,-0.1671,0.1421,0.9796,-0.1421,0.0,1.0,0.0,0.1421,0.9796,-0.1421,0.1671,0.9796,-0.1117,0.0,1.0,0.0,0.1671,0.9796,-0.1117,0.1857,0.9796,-0.0769,0.0,1.0,0.0,0.1857,0.9796,-0.0769,0.1971,0.9796,-0.0392,0.0,1.0,0.0,0.1971,0.9796,-0.0392,0.201,0.9796,0.0,0.0,1.0,0.0,0.201,0.9796,0.0,0.1971,0.9796,0.0392,0.0,1.0,0.0,0.1971,0.9796,0.0392,0.1857,0.9796,0.0769,0.0,1.0,0.0,0.1857,0.9796,0.0769,0.1671,0.9796,0.1117,0.0,1.0,0.0,0.1671,0.9796,0.1117,0.1421,0.9796,0.1421,0.0,1.0,0.0,0.1421,0.9796,0.1421,0.1117,0.9796,0.1671,0.0,1.0,0.0,0.1117,0.9796,0.1671,0.0769,0.9796,0.1857,0.0,1.0,0.0,0.0769,0.9796,0.1857,0.0392,0.9796,0.1971,0.0,1.0,0.0,0.0392,0.9796,0.1971,0.0,0.9796,0.201,0.0,0.9796,0.201,0.0,0.9217,0.3879,-0.0757,0.9217,0.3804,0.0,0.9796,0.201,-0.0757,0.9217,0.3804,-0.0392,0.9796,0.1971,-0.0392,0.9796,0.1971,-0.0757,0.9217,0.3804,-0.1484,0.9217,0.3584,-0.0392,0.9796,0.1971,-0.1484,0.9217,0.3584,-0.0769,0.9796,0.1857,-0.0769,0.9796,0.1857,-0.1484,0.9217,0.3584,-0.2155,0.9217,0.3225,-0.0769,0.9796,0.1857,-0.2155,0.9217,0.3225,-0.1117,0.9796,0.1671,-0.1117,0.9796,0.1671,-0.2155,0.9217,0.3225,-0.2743,0.9217,0.2743,-0.1117,0.9796,0.1671,-0.2743,0.9217,0.2743,-0.1421,0.9796,0.1421,-0.1421,0.9796,0.1421,-0.2743,0.9217,0.2743,-0.3225,0.9217,0.2155,-0.1421,0.9796,0.1421,-0.3225,0.9217,0.2155,-0.1671,0.9796,0.1117,-0.1671,0.9796,0.1117,-0.3225,0.9217,0.2155,-0.3584,0.9217,0.1484,-0.1671,0.9796,0.1117,-0.3584,0.9217,0.1484,-0.1857,0.9796,0.0769,-0.1857,0.9796,0.0769,-0.3584,0.9217,0.1484,-0.3804,0.9217,0.0757,-0.1857,0.9796,0.0769,-0.3804,0.9217,0.0757,-0.1971,0.9796,0.0392,-0.1971,0.9796,0.0392,-0.3804,0.9217,0.0757,-0.3879,0.9217,0.0,-0.1971,0.9796,0.0392,-0.3879,0.9217,0.0,-0.201,0.9796,0.0,-0.201,0.9796,0.0,-0.3879,0.9217,0.0,-0.3804,0.9217,-0.0757,-0.201,0.9796,0.0,-0.3804,0.9217,-0.0757,-0.1971,0.9796,-0.0392,-0.1971,0.9796,-0.0392,-0.3804,0.9217,-0.0757,-0.3584,0.9217,-0.1484,-0.1971,0.9796,-0.0392,-0.3584,0.9217,-0.1484,-0.1857,0.9796,-0.0769,-0.1857,0.9796,-0.0769,-0.3584,0.9217,-0.1484,-0.3225,0.9217,-0.2155,-0.1857,0.9796,-0.0769,-0.3225,0.9217,-0.2155,-0.1671,0.9796,-0.1117,-0.1671,0.9796,-0.1117,-0.3225,0.9217,-0.2155,-0.2743,0.9217,-0.2743,-0.1671,0.9796,-0.1117,-0.2743,0.9217,-0.2743,-0.1421,0.9796,-0.1421,-0.1421,0.9796,-0.1421,-0.2743,0.9217,-0.2743,-0.2155,0.9217,-0.3225,-0.1421,0.9796,-0.1421,-0.2155,0.9217,-0.3225,-0.1117,0.9796,-0.1671,-0.1117,0.9796,-0.1671,-0.2155,0.9217,-0.3225,-0.1484,0.9217,-0.3584,-0.1117,0.9796,-0.1671,-0.1484,0.9217,-0.3584,-0.0769,0.9796,-0.1857,-0.0769,0.9796,-0.1857,-0.1484,0.9217,-0.3584,-0.0757,0.9217,-0.3804,-0.0769,0.9796,-0.1857,-0.0757,0.9217,-0.3804,-0.0392,0.9796,-0.1971,-0.0392,0.9796,-0.1971,-0.0757,0.9217,-0.3804,0.0,0.9217,-0.3879,-0.0392,0.9796,-0.1971,0.0,0.9217,-0.3879,0.0,0.9796,-0.201,0.0,0.9796,-0.201,0.0,0.9217,-0.3879,0.0757,0.9217,-0.3804,0.0,0.9796,-0.201,0.0757,0.9217,-0.3804,0.0392,0.9796,-0.1971,0.0392,0.9796,-0.1971,0.0757,0.9217,-0.3804,0.1484,0.9217,-0.3584,0.0392,0.9796,-0.1971,0.1484,0.9217,-0.3584,0.0769,0.9796,-0.1857,0.0769,0.9796,-0.1857,0.1484,0.9217,-0.3584,0.2155,0.9217,-0.3225,0.0769,0.9796,-0.1857,0.2155,0.9217,-0.3225,0.1117,0.9796,-0.1671,0.1117,0.9796,-0.1671,0.2155,0.9217,-0.3225,0.2743,0.9217,-0.2743,0.1117,0.9796,-0.1671,0.2743,0.9217,-0.2743,0.1421,0.9796,-0.1421,0.1421,0.9796,-0.1421,0.2743,0.9217,-0.2743,0.3225,0.9217,-0.2155,0.1421,0.9796,-0.1421,0.3225,0.9217,-0.2155,0.1671,0.9796,-0.1117,0.1671,0.9796,-0.1117,0.3225,0.9217,-0.2155,0.3584,0.9217,-0.1484,0.1671,0.9796,-0.1117,0.3584,0.9217,-0.1484,0.1857,0.9796,-0.0769,0.1857,0.9796,-0.0769,0.3584,0.9217,-0.1484,0.3804,0.9217,-0.0757,0.1857,0.9796,-0.0769,0.3804,0.9217,-0.0757,0.1971,0.9796,-0.0392,0.1971,0.9796,-0.0392,0.3804,0.9217,-0.0757,0.3879,0.9217,0.0,0.1971,0.9796,-0.0392,0.3879,0.9217,0.0,0.201,0.9796,0.0,0.201,0.9796,0.0,0.3879,0.9217,0.0,0.3804,0.9217,0.0757,0.201,0.9796,0.0,0.3804,0.9217,0.0757,0.1971,0.9796,0.0392,0.1971,0.9796,0.0392,0.3804,0.9217,0.0757,0.3584,0.9217,0.1484,0.1971,0.9796,0.0392,0.3584,0.9217,0.1484,0.1857,0.9796,0.0769,0.1857,0.9796,0.0769,0.3584,0.9217,0.1484,0.3225,0.9217,0.2155,0.1857,0.9796,0.0769,0.3225,0.9217,0.2155,0.1671,0.9796,0.1117,0.1671,0.9796,0.1117,0.3225,0.9217,0.2155,0.2743,0.9217,0.2743,0.1671,0.9796,0.1117,0.2743,0.9217,0.2743,0.1421,0.9796,0.1421,0.1421,0.9796,0.1421,0.2743,0.9217,0.2743,0.2155,0.9217,0.3225,0.1421,0.9796,0.1421,0.2155,0.9217,0.3225,0.1117,0.9796,0.1671,0.1117,0.9796,0.1671,0.2155,0.9217,0.3225,0.1484,0.9217,0.3584,0.1117,0.9796,0.1671,0.1484,0.9217,0.3584,0.0769,0.9796,0.1857,0.0769,0.9796,0.1857,0.1484,0.9217,0.3584,0.0757,0.9217,0.3804,0.0769,0.9796,0.1857,0.0757,0.9217,0.3804,0.0392,0.9796,0.1971,0.0392,0.9796,0.1971,0.0757,0.9217,0.3804,0.0,0.9217,0.3879,0.0392,0.9796,0.1971,0.0,0.9217,0.3879,0.0,0.9796,0.201,0.0,0.9217,0.3879,0.0,0.8286,0.5598,-0.1092,0.8286,0.549,0.0,0.9217,0.3879,-0.1092,0.8286,0.549,-0.0757,0.9217,0.3804,-0.0757,0.9217,0.3804,-0.1092,0.8286,0.549,-0.2142,0.8286,0.5172,-0.0757,0.9217,0.3804,-0.2142,0.8286,0.5172,-0.1484,0.9217,0.3584,-0.1484,0.9217,0.3584,-0.2142,0.8286,0.5172,-0.311,0.8286,0.4654,-0.1484,0.9217,0.3584,-0.311,0.8286,0.4654,-0.2155,0.9217,0.3225,-0.2155,0.9217,0.3225,-0.311,0.8286,0.4654,-0.3958,0.8286,0.3958,-0.2155,0.9217,0.3225,-0.3958,0.8286,0.3958,-0.2743,0.9217,0.2743,-0.2743,0.9217,0.2743,-0.3958,0.8286,0.3958,-0.4654,0.8286,0.311,-0.2743,0.9217,0.2743,-0.4654,0.8286,0.311,-0.3225,0.9217,0.2155,-0.3225,0.9217,0.2155,-0.4654,0.8286,0.311,-0.5172,0.8286,0.2142,-0.3225,0.9217,0.2155,-0.5172,0.8286,0.2142,-0.3584,0.9217,0.1484,-0.3584,0.9217,0.1484,-0.5172,0.8286,0.2142,-0.549,0.8286,0.1092,-0.3584,0.9217,0.1484,-0.549,0.8286,0.1092,-0.3804,0.9217,0.0757,-0.3804,0.9217,0.0757,-0.549,0.8286,0.1092,-0.5598,0.8286,0.0,-0.3804,0.9217,0.0757,-0.5598,0.8286,0.0,-0.3879,0.9217,0.0,-0.3879,0.9217,0.0,-0.5598,0.8286,0.0,-0.549,0.8286,-0.1092,-0.3879,0.9217,0.0,-0.549,0.8286,-0.1092,-0.3804,0.9217,-0.0757,-0.3804,0.9217,-0.0757,-0.549,0.8286,-0.1092,-0.5172,0.8286,-0.2142,-0.3804,0.9217,-0.0757,-0.5172,0.8286,-0.2142,-0.3584,0.9217,-0.1484,-0.3584,0.9217,-0.1484,-0.5172,0.8286,-0.2142,-0.4654,0.8286,-0.311,-0.3584,0.9217,-0.1484,-0.4654,0.8286,-0.311,-0.3225,0.9217,-0.2155,-0.3225,0.9217,-0.2155,-0.4654,0.8286,-0.311,-0.3958,0.8286,-0.3958,-0.3225,0.9217,-0.2155,-0.3958,0.8286,-0.3958,-0.2743,0.9217,-0.2743,-0.2743,0.9217,-0.2743,-0.3958,0.8286,-0.3958,-0.311,0.8286,-0.4654,-0.2743,0.9217,-0.2743,-0.311,0.8286,-0.4654,-0.2155,0.9217,-0.3225,-0.2155,0.9217,-0.3225,-0.311,0.8286,-0.4654,-0.2142,0.8286,-0.5172,-0.2155,0.9217,-0.3225,-0.2142,0.8286,-0.5172,-0.1484,0.9217,-0.3584,-0.1484,0.9217,-0.3584,-0.2142,0.8286,-0.5172,-0.1092,0.8286,-0.549,-0.1484,0.9217,-0.3584,-0.1092,0.8286,-0.549,-0.0757,0.9217,-0.3804,-0.0757,0.9217,-0.3804,-0.1092,0.8286,-0.549,0.0,0.8286,-0.5598,-0.0757,0.9217,-0.3804,0.0,0.8286,-0.5598,0.0,0.9217,-0.3879,0.0,0.9217,-0.3879,0.0,0.8286,-0.5598,0.1092,0.8286,-0.549,0.0,0.9217,-0.3879,0.1092,0.8286,-0.549,0.0757,0.9217,-0.3804,0.0757,0.9217,-0.3804,0.1092,0.8286,-0.549,0.2142,0.8286,-0.5172,0.0757,0.9217,-0.3804,0.2142,0.8286,-0.5172,0.1484,0.9217,-0.3584,0.1484,0.9217,-0.3584,0.2142,0.8286,-0.5172,0.311,0.8286,-0.4654,0.1484,0.9217,-0.3584,0.311,0.8286,-0.4654,0.2155,0.9217,-0.3225,0.2155,0.9217,-0.3225,0.311,0.8286,-0.4654,0.3958,0.8286,-0.3958,0.2155,0.9217,-0.3225,0.3958,0.8286,-0.3958,0.2743,0.9217,-0.2743,0.2743,0.9217,-0.2743,0.3958,0.8286,-0.3958,0.4654,0.8286,-0.311,0.2743,0.9217,-0.2743,0.4654,0.8286,-0.311,0.3225,0.9217,-0.2155,0.3225,0.9217,-0.2155,0.4654,0.8286,-0.311,0.5172,0.8286,-0.2142,0.3225,0.9217,-0.2155,0.5172,0.8286,-0.2142,0.3584,0.9217,-0.1484,0.3584,0.9217,-0.1484,0.5172,0.8286,-0.2142,0.549,0.8286,-0.1092,0.3584,0.9217,-0.1484,0.549,0.8286,-0.1092,0.3804,0.9217,-0.0757,0.3804,0.9217,-0.0757,0.549,0.8286,-0.1092,0.5598,0.8286,0.0,0.3804,0.9217,-0.0757,0.5598,0.8286,0.0,0.3879,0.9217,0.0,0.3879,0.9217,0.0,0.5598,0.8286,0.0,0.549,0.8286,0.1092,0.3879,0.9217,0.0,0.549,0.8286,0.1092,0.3804,0.9217,0.0757,0.3804,0.9217,0.0757,0.549,0.8286,0.1092,0.5172,0.8286,0.2142,0.3804,0.9217,0.0757,0.5172,0.8286,0.2142,0.3584,0.9217,0.1484,0.3584,0.9217,0.1484,0.5172,0.8286,0.2142,0.4654,0.8286,0.311,0.3584,0.9217,0.1484,0.4654,0.8286,0.311,0.3225,0.9217,0.2155,0.3225,0.9217,0.2155,0.4654,0.8286,0.311,0.3958,0.8286,0.3958,0.3225,0.9217,0.2155,0.3958,0.8286,0.3958,0.2743,0.9217,0.2743,0.2743,0.9217,0.2743,0.3958,0.8286,0.3958,0.311,0.8286,0.4654,0.2743,0.9217,0.2743,0.311,0.8286,0.4654,0.2155,0.9217,0.3225,0.2155,0.9217,0.3225,0.311,0.8286,0.4654,0.2142,0.8286,0.5172,0.2155,0.9217,0.3225,0.2142,0.8286,0.5172,0.1484,0.9217,0.3584,0.1484,0.9217,0.3584,0.2142,0.8286,0.5172,0.1092,0.8286,0.549,0.1484,0.9217,0.3584,0.1092,0.8286,0.549,0.0757,0.9217,0.3804,0.0757,0.9217,0.3804,0.1092,0.8286,0.549,0.0,0.8286,0.5598,0.0757,0.9217,0.3804,0.0,0.8286,0.5598,0.0,0.9217,0.3879,0.0,0.8286,0.5598,0.0,0.7041,0.7101,-0.1385,0.7041,0.6965,0.0,0.8286,0.5598,-0.1385,0.7041,0.6965,-0.1092,0.8286,0.549,-0.1092,0.8286,0.549,-0.1385,0.7041,0.6965,-0.2718,0.7041,0.6561,-0.1092,0.8286,0.549,-0.2718,0.7041,0.6561,-0.2142,0.8286,0.5172,-0.2142,0.8286,0.5172,-0.2718,0.7041,0.6561,-0.3945,0.7041,0.5905,-0.2142,0.8286,0.5172,-0.3945,0.7041,0.5905,-0.311,0.8286,0.4654,-0.311,0.8286,0.4654,-0.3945,0.7041,0.5905,-0.5021,0.7041,0.5021,-0.311,0.8286,0.4654,-0.5021,0.7041,0.5021,-0.3958,0.8286,0.3958,-0.3958,0.8286,0.3958,-0.5021,0.7041,0.5021,-0.5905,0.7041,0.3945,-0.3958,0.8286,0.3958,-0.5905,0.7041,0.3945,-0.4654,0.8286,0.311,-0.4654,0.8286,0.311,-0.5905,0.7041,0.3945,-0.6561,0.7041,0.2718,-0.4654,0.8286,0.311,-0.6561,0.7041,0.2718,-0.5172,0.8286,0.2142,-0.5172,0.8286,0.2142,-0.6561,0.7041,0.2718,-0.6965,0.7041,0.1385,-0.5172,0.8286,0.2142,-0.6965,0.7041,0.1385,-0.549,0.8286,0.1092,-0.549,0.8286,0.1092,-0.6965,0.7041,0.1385,-0.7101,0.7041,0.0,-0.549,0.8286,0.1092,-0.7101,0.7041,0.0,-0.5598,0.8286,0.0,-0.5598,0.8286,0.0,-0.7101,0.7041,0.0,-0.6965,0.7041,-0.1385,-0.5598,0.8286,0.0,-0.6965,0.7041,-0.1385,-0.549,0.8286,-0.1092,-0.549,0.8286,-0.1092,-0.6965,0.7041,-0.1385,-0.6561,0.7041,-0.2718,-0.549,0.8286,-0.1092,-0.6561,0.7041,-0.2718,-0.5172,0.8286,-0.2142,-0.5172,0.8286,-0.2142,-0.6561,0.7041,-0.2718,-0.5905,0.7041,-0.3945,-0.5172,0.8286,-0.2142,-0.5905,0.7041,-0.3945,-0.4654,0.8286,-0.311,-0.4654,0.8286,-0.311,-0.5905,0.7041,-0.3945,-0.5021,0.7041,-0.5021,-0.4654,0.8286,-0.311,-0.5021,0.7041,-0.5021,-0.3958,0.8286,-0.3958,-0.3958,0.8286,-0.3958,-0.5021,0.7041,-0.5021,-0.3945,0.7041,-0.5905,-0.3958,0.8286,-0.3958,-0.3945,0.7041,-0.5905,-0.311,0.8286,-0.4654,-0.311,0.8286,-0.4654,-0.3945,0.7041,-0.5905,-0.2718,0.7041,-0.6561,-0.311,0.8286,-0.4654,-0.2718,0.7041,-0.6561,-0.2142,0.8286,-0.5172,-0.2142,0.8286,-0.5172,-0.2718,0.7041,-0.6561,-0.1385,0.7041,-0.6965,-0.2142,0.8286,-0.5172,-0.1385,0.7041,-0.6965,-0.1092,0.8286,-0.549,-0.1092,0.8286,-0.549,-0.1385,0.7041,-0.6965,0.0,0.7041,-0.7101,-0.1092,0.8286,-0.549,0.0,0.7041,-0.7101,0.0,0.8286,-0.5598,0.0,0.8286,-0.5598,0.0,0.7041,-0.7101,0.1385,0.7041,-0.6965,0.0,0.8286,-0.5598,0.1385,0.7041,-0.6965,0.1092,0.8286,-0.549,0.1092,0.8286,-0.549,0.1385,0.7041,-0.6965,0.2718,0.7041,-0.6561,0.1092,0.8286,-0.549,0.2718,0.7041,-0.6561,0.2142,0.8286,-0.5172,0.2142,0.8286,-0.5172,0.2718,0.7041,-0.6561,0.3945,0.7041,-0.5905,0.2142,0.8286,-0.5172,0.3945,0.7041,-0.5905,0.311,0.8286,-0.4654,0.311,0.8286,-0.4654,0.3945,0.7041,-0.5905,0.5021,0.7041,-0.5021,0.311,0.8286,-0.4654,0.5021,0.7041,-0.5021,0.3958,0.8286,-0.3958,0.3958,0.8286,-0.3958,0.5021,0.7041,-0.5021,0.5905,0.7041,-0.3945,0.3958,0.8286,-0.3958,0.5905,0.7041,-0.3945,0.4654,0.8286,-0.311,0.4654,0.8286,-0.311,0.5905,0.7041,-0.3945,0.6561,0.7041,-0.2718,0.4654,0.8286,-0.311,0.6561,0.7041,-0.2718,0.5172,0.8286,-0.2142,0.5172,0.8286,-0.2142,0.6561,0.7041,-0.2718,0.6965,0.7041,-0.1385,0.5172,0.8286,-0.2142,0.6965,0.7041,-0.1385,0.549,0.8286,-0.1092,0.549,0.8286,-0.1092,0.6965,0.7041,-0.1385,0.7101,0.7041,0.0,0.549,0.8286,-0.1092,0.7101,0.7041,0.0,0.5598,0.8286,0.0,0.5598,0.8286,0.0,0.7101,0.7041,0.0,0.6965,0.7041,0.1385,0.5598,0.8286,0.0,0.6965,0.7041,0.1385,0.549,0.8286,0.1092,0.549,0.8286,0.1092,0.6965,0.7041,0.1385,0.6561,0.7041,0.2718,0.549,0.8286,0.1092,0.6561,0.7041,0.2718,0.5172,0.8286,0.2142,0.5172,0.8286,0.2142,0.6561,0.7041,0.2718,0.5905,0.7041,0.3945,0.5172,0.8286,0.2142,0.5905,0.7041,0.3945,0.4654,0.8286,0.311,0.4654,0.8286,0.311,0.5905,0.7041,0.3945,0.5021,0.7041,0.5021,0.4654,0.8286,0.311,0.5021,0.7041,0.5021,0.3958,0.8286,0.3958,0.3958,0.8286,0.3958,0.5021,0.7041,0.5021,0.3945,0.7041,0.5905,0.3958,0.8286,0.3958,0.3945,0.7041,0.5905,0.311,0.8286,0.4654,0.311,0.8286,0.4654,0.3945,0.7041,0.5905,0.2718,0.7041,0.6561,0.311,0.8286,0.4654,0.2718,0.7041,0.6561,0.2142,0.8286,0.5172,0.2142,0.8286,0.5172,0.2718,0.7041,0.6561,0.1385,0.7041,0.6965,0.2142,0.8286,0.5172,0.1385,0.7041,0.6965,0.1092,0.8286,0.549,0.1092,0.8286,0.549,0.1385,0.7041,0.6965,0.0,0.7041,0.7101,0.1092,0.8286,0.549,0.0,0.7041,0.7101,0.0,0.8286,0.5598,0.0,0.7041,0.7101,0.0,0.5528,0.8333,-0.1626,0.5528,0.8173,0.0,0.7041,0.7101,-0.1626,0.5528,0.8173,-0.1385,0.7041,0.6965,-0.1385,0.7041,0.6965,-0.1626,0.5528,0.8173,-0.3189,0.5528,0.7699,-0.1385,0.7041,0.6965,-0.3189,0.5528,0.7699,-0.2718,0.7041,0.6561,-0.2718,0.7041,0.6561,-0.3189,0.5528,0.7699,-0.463,0.5528,0.6929,-0.2718,0.7041,0.6561,-0.463,0.5528,0.6929,-0.3945,0.7041,0.5905,-0.3945,0.7041,0.5905,-0.463,0.5528,0.6929,-0.5893,0.5528,0.5893,-0.3945,0.7041,0.5905,-0.5893,0.5528,0.5893,-0.5021,0.7041,0.5021,-0.5021,0.7041,0.5021,-0.5893,0.5528,0.5893,-0.6929,0.5528,0.463,-0.5021,0.7041,0.5021,-0.6929,0.5528,0.463,-0.5905,0.7041,0.3945,-0.5905,0.7041,0.3945,-0.6929,0.5528,0.463,-0.7699,0.5528,0.3189,-0.5905,0.7041,0.3945,-0.7699,0.5528,0.3189,-0.6561,0.7041,0.2718,-0.6561,0.7041,0.2718,-0.7699,0.5528,0.3189,-0.8173,0.5528,0.1626,-0.6561,0.7041,0.2718,-0.8173,0.5528,0.1626,-0.6965,0.7041,0.1385,-0.6965,0.7041,0.1385,-0.8173,0.5528,0.1626,-0.8333,0.5528,0.0,-0.6965,0.7041,0.1385,-0.8333,0.5528,0.0,-0.7101,0.7041,0.0,-0.7101,0.7041,0.0,-0.8333,0.5528,0.0,-0.8173,0.5528,-0.1626,-0.7101,0.7041,0.0,-0.8173,0.5528,-0.1626,-0.6965,0.7041,-0.1385,-0.6965,0.7041,-0.1385,-0.8173,0.5528,-0.1626,-0.7699,0.5528,-0.3189,-0.6965,0.7041,-0.1385,-0.7699,0.5528,-0.3189,-0.6561,0.7041,-0.2718,-0.6561,0.7041,-0.2718,-0.7699,0.5528,-0.3189,-0.6929,0.5528,-0.463,-0.6561,0.7041,-0.2718,-0.6929,0.5528,-0.463,-0.5905,0.7041,-0.3945,-0.5905,0.7041,-0.3945,-0.6929,0.5528,-0.463,-0.5893,0.5528,-0.5893,-0.5905,0.7041,-0.3945,-0.5893,0.5528,-0.5893,-0.5021,0.7041,-0.5021,-0.5021,0.7041,-0.5021,-0.5893,0.5528,-0.5893,-0.463,0.5528,-0.6929,-0.5021,0.7041,-0.5021,-0.463,0.5528,-0.6929,-0.3945,0.7041,-0.5905,-0.3945,0.7041,-0.5905,-0.463,0.5528,-0.6929,-0.3189,0.5528,-0.7699,-0.3945,0.7041,-0.5905,-0.3189,0.5528,-0.7699,-0.2718,0.7041,-0.6561,-0.2718,0.7041,-0.6561,-0.3189,0.5528,-0.7699,-0.1626,0.5528,-0.8173,-0.2718,0.7041,-0.6561,-0.1626,0.5528,-0.8173,-0.1385,0.7041,-0.6965,-0.1385,0.7041,-0.6965,-0.1626,0.5528,-0.8173,0.0,0.5528,-0.8333,-0.1385,0.7041,-0.6965,0.0,0.5528,-0.8333,0.0,0.7041,-0.7101,0.0,0.7041,-0.7101,0.0,0.5528,-0.8333,0.1626,0.5528,-0.8173,0.0,0.7041,-0.7101,0.1626,0.5528,-0.8173,0.1385,0.7041,-0.6965,0.1385,0.7041,-0.6965,0.1626,0.5528,-0.8173,0.3189,0.5528,-0.7699,0.1385,0.7041,-0.6965,0.3189,0.5528,-0.7699,0.2718,0.7041,-0.6561,0.2718,0.7041,-0.6561,0.3189,0.5528,-0.7699,0.463,0.5528,-0.6929,0.2718,0.7041,-0.6561,0.463,0.5528,-0.6929,0.3945,0.7041,-0.5905,0.3945,0.7041,-0.5905,0.463,0.5528,-0.6929,0.5893,0.5528,-0.5893,0.3945,0.7041,-0.5905,0.5893,0.5528,-0.5893,0.5021,0.7041,-0.5021,0.5021,0.7041,-0.5021,0.5893,0.5528,-0.5893,0.6929,0.5528,-0.463,0.5021,0.7041,-0.5021,0.6929,0.5528,-0.463,0.5905,0.7041,-0.3945,0.5905,0.7041,-0.3945,0.6929,0.5528,-0.463,0.7699,0.5528,-0.3189,0.5905,0.7041,-0.3945,0.7699,0.5528,-0.3189,0.6561,0.7041,-0.2718,0.6561,0.7041,-0.2718,0.7699,0.5528,-0.3189,0.8173,0.5528,-0.1626,0.6561,0.7041,-0.2718,0.8173,0.5528,-0.1626,0.6965,0.7041,-0.1385,0.6965,0.7041,-0.1385,0.8173,0.5528,-0.1626,0.8333,0.5528,0.0,0.6965,0.7041,-0.1385,0.8333,0.5528,0.0,0.7101,0.7041,0.0,0.7101,0.7041,0.0,0.8333,0.5528,0.0,0.8173,0.5528,0.1626,0.7101,0.7041,0.0,0.8173,0.5528,0.1626,0.6965,0.7041,0.1385,0.6965,0.7041,0.1385,0.8173,0.5528,0.1626,0.7699,0.5528,0.3189,0.6965,0.7041,0.1385,0.7699,0.5528,0.3189,0.6561,0.7041,0.2718,0.6561,0.7041,0.2718,0.7699,0.5528,0.3189,0.6929,0.5528,0.463,0.6561,0.7041,0.2718,0.6929,0.5528,0.463,0.5905,0.7041,0.3945,0.5905,0.7041,0.3945,0.6929,0.5528,0.463,0.5893,0.5528,0.5893,0.5905,0.7041,0.3945,0.5893,0.5528,0.5893,0.5021,0.7041,0.5021,0.5021,0.7041,0.5021,0.5893,0.5528,0.5893,0.463,0.5528,0.6929,0.5021,0.7041,0.5021,0.463,0.5528,0.6929,0.3945,0.7041,0.5905,0.3945,0.7041,0.5905,0.463,0.5528,0.6929,0.3189,0.5528,0.7699,0.3945,0.7041,0.5905,0.3189,0.5528,0.7699,0.2718,0.7041,0.6561,0.2718,0.7041,0.6561,0.3189,0.5528,0.7699,0.1626,0.5528,0.8173,0.2718,0.7041,0.6561,0.1626,0.5528,0.8173,0.1385,0.7041,0.6965,0.1385,0.7041,0.6965,0.1626,0.5528,0.8173,0.0,0.5528,0.8333,0.1385,0.7041,0.6965,0.0,0.5528,0.8333,0.0,0.7041,0.7101,0.0,0.5528,0.8333,0.0,0.3805,0.9248,-0.1804,0.3805,0.907,0.0,0.5528,0.8333,-0.1804,0.3805,0.907,-0.1626,0.5528,0.8173,-0.1626,0.5528,0.8173,-0.1804,0.3805,0.907,-0.3539,0.3805,0.8544,-0.1626,0.5528,0.8173,-0.3539,0.3805,0.8544,-0.3189,0.5528,0.7699,-0.3189,0.5528,0.7699,-0.3539,0.3805,0.8544,-0.5138,0.3805,0.7689,-0.3189,0.5528,0.7699,-0.5138,0.3805,0.7689,-0.463,0.5528,0.6929,-0.463,0.5528,0.6929,-0.5138,0.3805,0.7689,-0.6539,0.3805,0.6539,-0.463,0.5528,0.6929,-0.6539,0.3805,0.6539,-0.5893,0.5528,0.5893,-0.5893,0.5528,0.5893,-0.6539,0.3805,0.6539,-0.7689,0.3805,0.5138,-0.5893,0.5528,0.5893,-0.7689,0.3805,0.5138,-0.6929,0.5528,0.463,-0.6929,0.5528,0.463,-0.7689,0.3805,0.5138,-0.8544,0.3805,0.3539,-0.6929,0.5528,0.463,-0.8544,0.3805,0.3539,-0.7699,0.5528,0.3189,-0.7699,0.5528,0.3189,-0.8544,0.3805,0.3539,-0.907,0.3805,0.1804,-0.7699,0.5528,0.3189,-0.907,0.3805,0.1804,-0.8173,0.5528,0.1626,-0.8173,0.5528,0.1626,-0.907,0.3805,0.1804,-0.9248,0.3805,0.0,-0.8173,0.5528,0.1626,-0.9248,0.3805,0.0,-0.8333,0.5528,0.0,-0.8333,0.5528,0.0,-0.9248,0.3805,0.0,-0.907,0.3805,-0.1804,-0.8333,0.5528,0.0,-0.907,0.3805,-0.1804,-0.8173,0.5528,-0.1626,-0.8173,0.5528,-0.1626,-0.907,0.3805,-0.1804,-0.8544,0.3805,-0.3539,-0.8173,0.5528,-0.1626,-0.8544,0.3805,-0.3539,-0.7699,0.5528,-0.3189,-0.7699,0.5528,-0.3189,-0.8544,0.3805,-0.3539,-0.7689,0.3805,-0.5138,-0.7699,0.5528,-0.3189,-0.7689,0.3805,-0.5138,-0.6929,0.5528,-0.463,-0.6929,0.5528,-0.463,-0.7689,0.3805,-0.5138,-0.6539,0.3805,-0.6539,-0.6929,0.5528,-0.463,-0.6539,0.3805,-0.6539,-0.5893,0.5528,-0.5893,-0.5893,0.5528,-0.5893,-0.6539,0.3805,-0.6539,-0.5138,0.3805,-0.7689,-0.5893,0.5528,-0.5893,-0.5138,0.3805,-0.7689,-0.463,0.5528,-0.6929,-0.463,0.5528,-0.6929,-0.5138,0.3805,-0.7689,-0.3539,0.3805,-0.8544,-0.463,0.5528,-0.6929,-0.3539,0.3805,-0.8544,-0.3189,0.5528,-0.7699,-0.3189,0.5528,-0.7699,-0.3539,0.3805,-0.8544,-0.1804,0.3805,-0.907,-0.3189,0.5528,-0.7699,-0.1804,0.3805,-0.907,-0.1626,0.5528,-0.8173,-0.1626,0.5528,-0.8173,-0.1804,0.3805,-0.907,0.0,0.3805,-0.9248,-0.1626,0.5528,-0.8173,0.0,0.3805,-0.9248,0.0,0.5528,-0.8333,0.0,0.5528,-0.8333,0.0,0.3805,-0.9248,0.1804,0.3805,-0.907,0.0,0.5528,-0.8333,0.1804,0.3805,-0.907,0.1626,0.5528,-0.8173,0.1626,0.5528,-0.8173,0.1804,0.3805,-0.907,0.3539,0.3805,-0.8544,0.1626,0.5528,-0.8173,0.3539,0.3805,-0.8544,0.3189,0.5528,-0.7699,0.3189,0.5528,-0.7699,0.3539,0.3805,-0.8544,0.5138,0.3805,-0.7689,0.3189,0.5528,-0.7699,0.5138,0.3805,-0.7689,0.463,0.5528,-0.6929,0.463,0.5528,-0.6929,0.5138,0.3805,-0.7689,0.6539,0.3805,-0.6539,0.463,0.5528,-0.6929,0.6539,0.3805,-0.6539,0.5893,0.5528,-0.5893,0.5893,0.5528,-0.5893,0.6539,0.3805,-0.6539,0.7689,0.3805,-0.5138,0.5893,0.5528,-0.5893,0.7689,0.3805,-0.5138,0.6929,0.5528,-0.463,0.6929,0.5528,-0.463,0.7689,0.3805,-0.5138,0.8544,0.3805,-0.3539,0.6929,0.5528,-0.463,0.8544,0.3805,-0.3539,0.7699,0.5528,-0.3189,0.7699,0.5528,-0.3189,0.8544,0.3805,-0.3539,0.907,0.3805,-0.1804,0.7699,0.5528,-0.3189,0.907,0.3805,-0.1804,0.8173,0.5528,-0.1626,0.8173,0.5528,-0.1626,0.907,0.3805,-0.1804,0.9248,0.3805,0.0,0.8173,0.5528,-0.1626,0.9248,0.3805,0.0,0.8333,0.5528,0.0,0.8333,0.5528,0.0,0.9248,0.3805,0.0,0.907,0.3805,0.1804,0.8333,0.5528,0.0,0.907,0.3805,0.1804,0.8173,0.5528,0.1626,0.8173,0.5528,0.1626,0.907,0.3805,0.1804,0.8544,0.3805,0.3539,0.8173,0.5528,0.1626,0.8544,0.3805,0.3539,0.7699,0.5528,0.3189,0.7699,0.5528,0.3189,0.8544,0.3805,0.3539,0.7689,0.3805,0.5138,0.7699,0.5528,0.3189,0.7689,0.3805,0.5138,0.6929,0.5528,0.463,0.6929,0.5528,0.463,0.7689,0.3805,0.5138,0.6539,0.3805,0.6539,0.6929,0.5528,0.463,0.6539,0.3805,0.6539,0.5893,0.5528,0.5893,0.5893,0.5528,0.5893,0.6539,0.3805,0.6539,0.5138,0.3805,0.7689,0.5893,0.5528,0.5893,0.5138,0.3805,0.7689,0.463,0.5528,0.6929,0.463,0.5528,0.6929,0.5138,0.3805,0.7689,0.3539,0.3805,0.8544,0.463,0.5528,0.6929,0.3539,0.3805,0.8544,0.3189,0.5528,0.7699,0.3189,0.5528,0.7699,0.3539,0.3805,0.8544,0.1804,0.3805,0.907,0.3189,0.5528,0.7699,0.1804,0.3805,0.907,0.1626,0.5528,0.8173,0.1626,0.5528,0.8173,0.1804,0.3805,0.907,0.0,0.3805,0.9248,0.1626,0.5528,0.8173,0.0,0.3805,0.9248,0.0,0.5528,0.8333,0.0,0.3805,0.9248,0.0,0.1939,0.981,-0.1914,0.1939,0.9622,0.0,0.3805,0.9248,-0.1914,0.1939,0.9622,-0.1804,0.3805,0.907,-0.1804,0.3805,0.907,-0.1914,0.1939,0.9622,-0.3754,0.1939,0.9063,-0.1804,0.3805,0.907,-0.3754,0.1939,0.9063,-0.3539,0.3805,0.8544,-0.3539,0.3805,0.8544,-0.3754,0.1939,0.9063,-0.545,0.1939,0.8157,-0.3539,0.3805,0.8544,-0.545,0.1939,0.8157,-0.5138,0.3805,0.7689,-0.5138,0.3805,0.7689,-0.545,0.1939,0.8157,-0.6937,0.1939,0.6937,-0.5138,0.3805,0.7689,-0.6937,0.1939,0.6937,-0.6539,0.3805,0.6539,-0.6539,0.3805,0.6539,-0.6937,0.1939,0.6937,-0.8157,0.1939,0.545,-0.6539,0.3805,0.6539,-0.8157,0.1939,0.545,-0.7689,0.3805,0.5138,-0.7689,0.3805,0.5138,-0.8157,0.1939,0.545,-0.9063,0.1939,0.3754,-0.7689,0.3805,0.5138,-0.9063,0.1939,0.3754,-0.8544,0.3805,0.3539,-0.8544,0.3805,0.3539,-0.9063,0.1939,0.3754,-0.9622,0.1939,0.1914,-0.8544,0.3805,0.3539,-0.9622,0.1939,0.1914,-0.907,0.3805,0.1804,-0.907,0.3805,0.1804,-0.9622,0.1939,0.1914,-0.981,0.1939,0.0,-0.907,0.3805,0.1804,-0.981,0.1939,0.0,-0.9248,0.3805,0.0,-0.9248,0.3805,0.0,-0.981,0.1939,0.0,-0.9622,0.1939,-0.1914,-0.9248,0.3805,0.0,-0.9622,0.1939,-0.1914,-0.907,0.3805,-0.1804,-0.907,0.3805,-0.1804,-0.9622,0.1939,-0.1914,-0.9063,0.1939,-0.3754,-0.907,0.3805,-0.1804,-0.9063,0.1939,-0.3754,-0.8544,0.3805,-0.3539,-0.8544,0.3805,-0.3539,-0.9063,0.1939,-0.3754,-0.8157,0.1939,-0.545,-0.8544,0.3805,-0.3539,-0.8157,0.1939,-0.545,-0.7689,0.3805,-0.5138,-0.7689,0.3805,-0.5138,-0.8157,0.1939,-0.545,-0.6937,0.1939,-0.6937,-0.7689,0.3805,-0.5138,-0.6937,0.1939,-0.6937,-0.6539,0.3805,-0.6539,-0.6539,0.3805,-0.6539,-0.6937,0.1939,-0.6937,-0.545,0.1939,-0.8157,-0.6539,0.3805,-0.6539,-0.545,0.1939,-0.8157,-0.5138,0.3805,-0.7689,-0.5138,0.3805,-0.7689,-0.545,0.1939,-0.8157,-0.3754,0.1939,-0.9063,-0.5138,0.3805,-0.7689,-0.3754,0.1939,-0.9063,-0.3539,0.3805,-0.8544,-0.3539,0.3805,-0.8544,-0.3754,0.1939,-0.9063,-0.1914,0.1939,-0.9622,-0.3539,0.3805,-0.8544,-0.1914,0.1939,-0.9622,-0.1804,0.3805,-0.907,-0.1804,0.3805,-0.907,-0.1914,0.1939,-0.9622,0.0,0.1939,-0.981,-0.1804,0.3805,-0.907,0.0,0.1939,-0.981,0.0,0.3805,-0.9248,0.0,0.3805,-0.9248,0.0,0.1939,-0.981,0.1914,0.1939,-0.9622,0.0,0.3805,-0.9248,0.1914,0.1939,-0.9622,0.1804,0.3805,-0.907,0.1804,0.3805,-0.907,0.1914,0.1939,-0.9622,0.3754,0.1939,-0.9063,0.1804,0.3805,-0.907,0.3754,0.1939,-0.9063,0.3539,0.3805,-0.8544,0.3539,0.3805,-0.8544,0.3754,0.1939,-0.9063,0.545,0.1939,-0.8157,0.3539,0.3805,-0.8544,0.545,0.1939,-0.8157,0.5138,0.3805,-0.7689,0.5138,0.3805,-0.7689,0.545,0.1939,-0.8157,0.6937,0.1939,-0.6937,0.5138,0.3805,-0.7689,0.6937,0.1939,-0.6937,0.6539,0.3805,-0.6539,0.6539,0.3805,-0.6539,0.6937,0.1939,-0.6937,0.8157,0.1939,-0.545,0.6539,0.3805,-0.6539,0.8157,0.1939,-0.545,0.7689,0.3805,-0.5138,0.7689,0.3805,-0.5138,0.8157,0.1939,-0.545,0.9063,0.1939,-0.3754,0.7689,0.3805,-0.5138,0.9063,0.1939,-0.3754,0.8544,0.3805,-0.3539,0.8544,0.3805,-0.3539,0.9063,0.1939,-0.3754,0.9622,0.1939,-0.1914,0.8544,0.3805,-0.3539,0.9622,0.1939,-0.1914,0.907,0.3805,-0.1804,0.907,0.3805,-0.1804,0.9622,0.1939,-0.1914,0.981,0.1939,0.0,0.907,0.3805,-0.1804,0.981,0.1939,0.0,0.9248,0.3805,0.0,0.9248,0.3805,0.0,0.981,0.1939,0.0,0.9622,0.1939,0.1914,0.9248,0.3805,0.0,0.9622,0.1939,0.1914,0.907,0.3805,0.1804,0.907,0.3805,0.1804,0.9622,0.1939,0.1914,0.9063,0.1939,0.3754,0.907,0.3805,0.1804,0.9063,0.1939,0.3754,0.8544,0.3805,0.3539,0.8544,0.3805,0.3539,0.9063,0.1939,0.3754,0.8157,0.1939,0.545,0.8544,0.3805,0.3539,0.8157,0.1939,0.545,0.7689,0.3805,0.5138,0.7689,0.3805,0.5138,0.8157,0.1939,0.545,0.6937,0.1939,0.6937,0.7689,0.3805,0.5138,0.6937,0.1939,0.6937,0.6539,0.3805,0.6539,0.6539,0.3805,0.6539,0.6937,0.1939,0.6937,0.545,0.1939,0.8157,0.6539,0.3805,0.6539,0.545,0.1939,0.8157,0.5138,0.3805,0.7689,0.5138,0.3805,0.7689,0.545,0.1939,0.8157,0.3754,0.1939,0.9063,0.5138,0.3805,0.7689,0.3754,0.1939,0.9063,0.3539,0.3805,0.8544,0.3539,0.3805,0.8544,0.3754,0.1939,0.9063,0.1914,0.1939,0.9622,0.3539,0.3805,0.8544,0.1914,0.1939,0.9622,0.1804,0.3805,0.907,0.1804,0.3805,0.907,0.1914,0.1939,0.9622,0.0,0.1939,0.981,0.1804,0.3805,0.907,0.0,0.1939,0.981,0.0,0.3805,0.9248,0.0,0.1939,0.981,0.0,0.0,1.0,-0.1951,0.0,0.9808,0.0,0.1939,0.981,-0.1951,0.0,0.9808,-0.1914,0.1939,0.9622,-0.1914,0.1939,0.9622,-0.1951,0.0,0.9808,-0.3827,0.0,0.9239,-0.1914,0.1939,0.9622,-0.3827,0.0,0.9239,-0.3754,0.1939,0.9063,-0.3754,0.1939,0.9063,-0.3827,0.0,0.9239,-0.5556,0.0,0.8315,-0.3754,0.1939,0.9063,-0.5556,0.0,0.8315,-0.545,0.1939,0.8157,-0.545,0.1939,0.8157,-0.5556,0.0,0.8315,-0.7071,0.0,0.7071,-0.545,0.1939,0.8157,-0.7071,0.0,0.7071,-0.6937,0.1939,0.6937,-0.6937,0.1939,0.6937,-0.7071,0.0,0.7071,-0.8315,0.0,0.5556,-0.6937,0.1939,0.6937,-0.8315,0.0,0.5556,-0.8157,0.1939,0.545,-0.8157,0.1939,0.545,-0.8315,0.0,0.5556,-0.9239,0.0,0.3827,-0.8157,0.1939,0.545,-0.9239,0.0,0.3827,-0.9063,0.1939,0.3754,-0.9063,0.1939,0.3754,-0.9239,0.0,0.3827,-0.9808,0.0,0.1951,-0.9063,0.1939,0.3754,-0.9808,0.0,0.1951,-0.9622,0.1939,0.1914,-0.9622,0.1939,0.1914,-0.9808,0.0,0.1951,-1.0,0.0,0.0,-0.9622,0.1939,0.1914,-1.0,0.0,0.0,-0.981,0.1939,0.0,-0.981,0.1939,0.0,-1.0,0.0,0.0,-0.9808,0.0,-0.1951,-0.981,0.1939,0.0,-0.9808,0.0,-0.1951,-0.9622,0.1939,-0.1914,-0.9622,0.1939,-0.1914,-0.9808,0.0,-0.1951,-0.9239,0.0,-0.3827,-0.9622,0.1939,-0.1914,-0.9239,0.0,-0.3827,-0.9063,0.1939,-0.3754,-0.9063,0.1939,-0.3754,-0.9239,0.0,-0.3827,-0.8315,0.0,-0.5556,-0.9063,0.1939,-0.3754,-0.8315,0.0,-0.5556,-0.8157,0.1939,-0.545,-0.8157,0.1939,-0.545,-0.8315,0.0,-0.5556,-0.7071,0.0,-0.7071,-0.8157,0.1939,-0.545,-0.7071,0.0,-0.7071,-0.6937,0.1939,-0.6937,-0.6937,0.1939,-0.6937,-0.7071,0.0,-0.7071,-0.5556,0.0,-0.8315,-0.6937,0.1939,-0.6937,-0.5556,0.0,-0.8315,-0.545,0.1939,-0.8157,-0.545,0.1939,-0.8157,-0.5556,0.0,-0.8315,-0.3827,0.0,-0.9239,-0.545,0.1939,-0.8157,-0.3827,0.0,-0.9239,-0.3754,0.1939,-0.9063,-0.3754,0.1939,-0.9063,-0.3827,0.0,-0.9239,-0.1951,0.0,-0.9808,-0.3754,0.1939,-0.9063,-0.1951,0.0,-0.9808,-0.1914,0.1939,-0.9622,-0.1914,0.1939,-0.9622,-0.1951,0.0,-0.9808,0.0,0.0,-1.0,-0.1914,0.1939,-0.9622,0.0,0.0,-1.0,0.0,0.1939,-0.981,0.0,0.1939,-0.981,0.0,0.0,-1.0,0.1951,0.0,-0.9808,0.0,0.1939,-0.981,0.1951,0.0,-0.9808,0.1914,0.1939,-0.9622,0.1914,0.1939,-0.9622,0.1951,0.0,-0.9808,0.3827,0.0,-0.9239,0.1914,0.1939,-0.9622,0.3827,0.0,-0.9239,0.3754,0.1939,-0.9063,0.3754,0.1939,-0.9063,0.3827,0.0,-0.9239,0.5556,0.0,-0.8315,0.3754,0.1939,-0.9063,0.5556,0.0,-0.8315,0.545,0.1939,-0.8157,0.545,0.1939,-0.8157,0.5556,0.0,-0.8315,0.7071,0.0,-0.7071,0.545,0.1939,-0.8157,0.7071,0.0,-0.7071,0.6937,0.1939,-0.6937,0.6937,0.1939,-0.6937,0.7071,0.0,-0.7071,0.8315,0.0,-0.5556,0.6937,0.1939,-0.6937,0.8315,0.0,-0.5556,0.8157,0.1939,-0.545,0.8157,0.1939,-0.545,0.8315,0.0,-0.5556,0.9239,0.0,-0.3827,0.8157,0.1939,-0.545,0.9239,0.0,-0.3827,0.9063,0.1939,-0.3754,0.9063,0.1939,-0.3754,0.9239,0.0,-0.3827,0.9808,0.0,-0.1951,0.9063,0.1939,-0.3754,0.9808,0.0,-0.1951,0.9622,0.1939,-0.1914,0.9622,0.1939,-0.1914,0.9808,0.0,-0.1951,1.0,0.0,0.0,0.9622,0.1939,-0.1914,1.0,0.0,0.0,0.981,0.1939,0.0,0.981,0.1939,0.0,1.0,0.0,0.0,0.9808,0.0,0.1951,0.981,0.1939,0.0,0.9808,0.0,0.1951,0.9622,0.1939,0.1914,0.9622,0.1939,0.1914,0.9808,0.0,0.1951,0.9239,0.0,0.3827,0.9622,0.1939,0.1914,0.9239,0.0,0.3827,0.9063,0.1939,0.3754,0.9063,0.1939,0.3754,0.9239,0.0,0.3827,0.8315,0.0,0.5556,0.9063,0.1939,0.3754,0.8315,0.0,0.5556,0.8157,0.1939,0.545,0.8157,0.1939,0.545,0.8315,0.0,0.5556,0.7071,0.0,0.7071,0.8157,0.1939,0.545,0.7071,0.0,0.7071,0.6937,0.1939,0.6937,0.6937,0.1939,0.6937,0.7071,0.0,0.7071,0.5556,0.0,0.8315,0.6937,0.1939,0.6937,0.5556,0.0,0.8315,0.545,0.1939,0.8157,0.545,0.1939,0.8157,0.5556,0.0,0.8315,0.3827,0.0,0.9239,0.545,0.1939,0.8157,0.3827,0.0,0.9239,0.3754,0.1939,0.9063,0.3754,0.1939,0.9063,0.3827,0.0,0.9239,0.1951,0.0,0.9808,0.3754,0.1939,0.9063,0.1951,0.0,0.9808,0.1914,0.1939,0.9622,0.1914,0.1939,0.9622,0.1951,0.0,0.9808,0.0,0.0,1.0,0.1914,0.1939,0.9622,0.0,0.0,1.0,0.0,0.1939,0.981,0.0,0.0,1.0,0.0,-0.1939,0.981,-0.1914,-0.1939,0.9622,0.0,0.0,1.0,-0.1914,-0.1939,0.9622,-0.1951,0.0,0.9808,-0.1951,0.0,0.9808,-0.1914,-0.1939,0.9622,-0.3754,-0.1939,0.9063,-0.1951,0.0,0.9808,-0.3754,-0.1939,0.9063,-0.3827,0.0,0.9239,-0.3827,0.0,0.9239,-0.3754,-0.1939,0.9063,-0.545,-0.1939,0.8157,-0.3827,0.0,0.9239,-0.545,-0.1939,0.8157,-0.5556,0.0,0.8315,-0.5556,0.0,0.8315,-0.545,-0.1939,0.8157,-0.6937,-0.1939,0.6937,-0.5556,0.0,0.8315,-0.6937,-0.1939,0.6937,-0.7071,0.0,0.7071,-0.7071,0.0,0.7071,-0.6937,-0.1939,0.6937,-0.8157,-0.1939,0.545,-0.7071,0.0,0.7071,-0.8157,-0.1939,0.545,-0.8315,0.0,0.5556,-0.8315,0.0,0.5556,-0.8157,-0.1939,0.545,-0.9063,-0.1939,0.3754,-0.8315,0.0,0.5556,-0.9063,-0.1939,0.3754,-0.9239,0.0,0.3827,-0.9239,0.0,0.3827,-0.9063,-0.1939,0.3754,-0.9622,-0.1939,0.1914,-0.9239,0.0,0.3827,-0.9622,-0.1939,0.1914,-0.9808,0.0,0.1951,-0.9808,0.0,0.1951,-0.9622,-0.1939,0.1914,-0.981,-0.1939,0.0,-0.9808,0.0,0.1951,-0.981,-0.1939,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-0.981,-0.1939,0.0,-0.9622,-0.1939,-0.1914,-1.0,0.0,0.0,-0.9622,-0.1939,-0.1914,-0.9808,0.0,-0.1951,-0.9808,0.0,-0.1951,-0.9622,-0.1939,-0.1914,-0.9063,-0.1939,-0.3754,-0.9808,0.0,-0.1951,-0.9063,-0.1939,-0.3754,-0.9239,0.0,-0.3827,-0.9239,0.0,-0.3827,-0.9063,-0.1939,-0.3754,-0.8157,-0.1939,-0.545,-0.9239,0.0,-0.3827,-0.8157,-0.1939,-0.545,-0.8315,0.0,-0.5556,-0.8315,0.0,-0.5556,-0.8157,-0.1939,-0.545,-0.6937,-0.1939,-0.6937,-0.8315,0.0,-0.5556,-0.6937,-0.1939,-0.6937,-0.7071,0.0,-0.7071,-0.7071,0.0,-0.7071,-0.6937,-0.1939,-0.6937,-0.545,-0.1939,-0.8157,-0.7071,0.0,-0.7071,-0.545,-0.1939,-0.8157,-0.5556,0.0,-0.8315,-0.5556,0.0,-0.8315,-0.545,-0.1939,-0.8157,-0.3754,-0.1939,-0.9063,-0.5556,0.0,-0.8315,-0.3754,-0.1939,-0.9063,-0.3827,0.0,-0.9239,-0.3827,0.0,-0.9239,-0.3754,-0.1939,-0.9063,-0.1914,-0.1939,-0.9622,-0.3827,0.0,-0.9239,-0.1914,-0.1939,-0.9622,-0.1951,0.0,-0.9808,-0.1951,0.0,-0.9808,-0.1914,-0.1939,-0.9622,0.0,-0.1939,-0.981,-0.1951,0.0,-0.9808,0.0,-0.1939,-0.981,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,-0.1939,-0.981,0.1914,-0.1939,-0.9622,0.0,0.0,-1.0,0.1914,-0.1939,-0.9622,0.1951,0.0,-0.9808,0.1951,0.0,-0.9808,0.1914,-0.1939,-0.9622,0.3754,-0.1939,-0.9063,0.1951,0.0,-0.9808,0.3754,-0.1939,-0.9063,0.3827,0.0,-0.9239,0.3827,0.0,-0.9239,0.3754,-0.1939,-0.9063,0.545,-0.1939,-0.8157,0.3827,0.0,-0.9239,0.545,-0.1939,-0.8157,0.5556,0.0,-0.8315,0.5556,0.0,-0.8315,0.545,-0.1939,-0.8157,0.6937,-0.1939,-0.6937,0.5556,0.0,-0.8315,0.6937,-0.1939,-0.6937,0.7071,0.0,-0.7071,0.7071,0.0,-0.7071,0.6937,-0.1939,-0.6937,0.8157,-0.1939,-0.545,0.7071,0.0,-0.7071,0.8157,-0.1939,-0.545,0.8315,0.0,-0.5556,0.8315,0.0,-0.5556,0.8157,-0.1939,-0.545,0.9063,-0.1939,-0.3754,0.8315,0.0,-0.5556,0.9063,-0.1939,-0.3754,0.9239,0.0,-0.3827,0.9239,0.0,-0.3827,0.9063,-0.1939,-0.3754,0.9622,-0.1939,-0.1914,0.9239,0.0,-0.3827,0.9622,-0.1939,-0.1914,0.9808,0.0,-0.1951,0.9808,0.0,-0.1951,0.9622,-0.1939,-0.1914,0.981,-0.1939,0.0,0.9808,0.0,-0.1951,0.981,-0.1939,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.981,-0.1939,0.0,0.9622,-0.1939,0.1914,1.0,0.0,0.0,0.9622,-0.1939,0.1914,0.9808,0.0,0.1951,0.9808,0.0,0.1951,0.9622,-0.1939,0.1914,0.9063,-0.1939,0.3754,0.9808,0.0,0.1951,0.9063,-0.1939,0.3754,0.9239,0.0,0.3827,0.9239,0.0,0.3827,0.9063,-0.1939,0.3754,0.8157,-0.1939,0.545,0.9239,0.0,0.3827,0.8157,-0.1939,0.545,0.8315,0.0,0.5556,0.8315,0.0,0.5556,0.8157,-0.1939,0.545,0.6937,-0.1939,0.6937,0.8315,0.0,0.5556,0.6937,-0.1939,0.6937,0.7071,0.0,0.7071,0.7071,0.0,0.7071,0.6937,-0.1939,0.6937,0.545,-0.1939,0.8157,0.7071,0.0,0.7071,0.545,-0.1939,0.8157,0.5556,0.0,0.8315,0.5556,0.0,0.8315,0.545,-0.1939,0.8157,0.3754,-0.1939,0.9063,0.5556,0.0,0.8315,0.3754,-0.1939,0.9063,0.3827,0.0,0.9239,0.3827,0.0,0.9239,0.3754,-0.1939,0.9063,0.1914,-0.1939,0.9622,0.3827,0.0,0.9239,0.1914,-0.1939,0.9622,0.1951,0.0,0.9808,0.1951,0.0,0.9808,0.1914,-0.1939,0.9622,0.0,-0.1939,0.981,0.1951,0.0,0.9808,0.0,-0.1939,0.981,0.0,0.0,1.0,0.0,-0.1939,0.981,0.0,-0.3805,0.9248,-0.1804,-0.3805,0.907,0.0,-0.1939,0.981,-0.1804,-0.3805,0.907,-0.1914,-0.1939,0.9622,-0.1914,-0.1939,0.9622,-0.1804,-0.3805,0.907,-0.3539,-0.3805,0.8544,-0.1914,-0.1939,0.9622,-0.3539,-0.3805,0.8544,-0.3754,-0.1939,0.9063,-0.3754,-0.1939,0.9063,-0.3539,-0.3805,0.8544,-0.5138,-0.3805,0.7689,-0.3754,-0.1939,0.9063,-0.5138,-0.3805,0.7689,-0.545,-0.1939,0.8157,-0.545,-0.1939,0.8157,-0.5138,-0.3805,0.7689,-0.6539,-0.3805,0.6539,-0.545,-0.1939,0.8157,-0.6539,-0.3805,0.6539,-0.6937,-0.1939,0.6937,-0.6937,-0.1939,0.6937,-0.6539,-0.3805,0.6539,-0.7689,-0.3805,0.5138,-0.6937,-0.1939,0.6937,-0.7689,-0.3805,0.5138,-0.8157,-0.1939,0.545,-0.8157,-0.1939,0.545,-0.7689,-0.3805,0.5138,-0.8544,-0.3805,0.3539,-0.8157,-0.1939,0.545,-0.8544,-0.3805,0.3539,-0.9063,-0.1939,0.3754,-0.9063,-0.1939,0.3754,-0.8544,-0.3805,0.3539,-0.907,-0.3805,0.1804,-0.9063,-0.1939,0.3754,-0.907,-0.3805,0.1804,-0.9622,-0.1939,0.1914,-0.9622,-0.1939,0.1914,-0.907,-0.3805,0.1804,-0.9248,-0.3805,0.0,-0.9622,-0.1939,0.1914,-0.9248,-0.3805,0.0,-0.981,-0.1939,0.0,-0.981,-0.1939,0.0,-0.9248,-0.3805,0.0,-0.907,-0.3805,-0.1804,-0.981,-0.1939,0.0,-0.907,-0.3805,-0.1804,-0.9622,-0.1939,-0.1914,-0.9622,-0.1939,-0.1914,-0.907,-0.3805,-0.1804,-0.8544,-0.3805,-0.3539,-0.9622,-0.1939,-0.1914,-0.8544,-0.3805,-0.3539,-0.9063,-0.1939,-0.3754,-0.9063,-0.1939,-0.3754,-0.8544,-0.3805,-0.3539,-0.7689,-0.3805,-0.5138,-0.9063,-0.1939,-0.3754,-0.7689,-0.3805,-0.5138,-0.8157,-0.1939,-0.545,-0.8157,-0.1939,-0.545,-0.7689,-0.3805,-0.5138,-0.6539,-0.3805,-0.6539,-0.8157,-0.1939,-0.545,-0.6539,-0.3805,-0.6539,-0.6937,-0.1939,-0.6937,-0.6937,-0.1939,-0.6937,-0.6539,-0.3805,-0.6539,-0.5138,-0.3805,-0.7689,-0.6937,-0.1939,-0.6937,-0.5138,-0.3805,-0.7689,-0.545,-0.1939,-0.8157,-0.545,-0.1939,-0.8157,-0.5138,-0.3805,-0.7689,-0.3539,-0.3805,-0.8544,-0.545,-0.1939,-0.8157,-0.3539,-0.3805,-0.8544,-0.3754,-0.1939,-0.9063,-0.3754,-0.1939,-0.9063,-0.3539,-0.3805,-0.8544,-0.1804,-0.3805,-0.907,-0.3754,-0.1939,-0.9063,-0.1804,-0.3805,-0.907,-0.1914,-0.1939,-0.9622,-0.1914,-0.1939,-0.9622,-0.1804,-0.3805,-0.907,0.0,-0.3805,-0.9248,-0.1914,-0.1939,-0.9622,0.0,-0.3805,-0.9248,0.0,-0.1939,-0.981,0.0,-0.1939,-0.981,0.0,-0.3805,-0.9248,0.1804,-0.3805,-0.907,0.0,-0.1939,-0.981,0.1804,-0.3805,-0.907,0.1914,-0.1939,-0.9622,0.1914,-0.1939,-0.9622,0.1804,-0.3805,-0.907,0.3539,-0.3805,-0.8544,0.1914,-0.1939,-0.9622,0.3539,-0.3805,-0.8544,0.3754,-0.1939,-0.9063,0.3754,-0.1939,-0.9063,0.3539,-0.3805,-0.8544,0.5138,-0.3805,-0.7689,0.3754,-0.1939,-0.9063,0.5138,-0.3805,-0.7689,0.545,-0.1939,-0.8157,0.545,-0.1939,-0.8157,0.5138,-0.3805,-0.7689,0.6539,-0.3805,-0.6539,0.545,-0.1939,-0.8157,0.6539,-0.3805,-0.6539,0.6937,-0.1939,-0.6937,0.6937,-0.1939,-0.6937,0.6539,-0.3805,-0.6539,0.7689,-0.3805,-0.5138,0.6937,-0.1939,-0.6937,0.7689,-0.3805,-0.5138,0.8157,-0.1939,-0.545,0.8157,-0.1939,-0.545,0.7689,-0.3805,-0.5138,0.8544,-0.3805,-0.3539,0.8157,-0.1939,-0.545,0.8544,-0.3805,-0.3539,0.9063,-0.1939,-0.3754,0.9063,-0.1939,-0.3754,0.8544,-0.3805,-0.3539,0.907,-0.3805,-0.1804,0.9063,-0.1939,-0.3754,0.907,-0.3805,-0.1804,0.9622,-0.1939,-0.1914,0.9622,-0.1939,-0.1914,0.907,-0.3805,-0.1804,0.9248,-0.3805,0.0,0.9622,-0.1939,-0.1914,0.9248,-0.3805,0.0,0.981,-0.1939,0.0,0.981,-0.1939,0.0,0.9248,-0.3805,0.0,0.907,-0.3805,0.1804,0.981,-0.1939,0.0,0.907,-0.3805,0.1804,0.9622,-0.1939,0.1914,0.9622,-0.1939,0.1914,0.907,-0.3805,0.1804,0.8544,-0.3805,0.3539,0.9622,-0.1939,0.1914,0.8544,-0.3805,0.3539,0.9063,-0.1939,0.3754,0.9063,-0.1939,0.3754,0.8544,-0.3805,0.3539,0.7689,-0.3805,0.5138,0.9063,-0.1939,0.3754,0.7689,-0.3805,0.5138,0.8157,-0.1939,0.545,0.8157,-0.1939,0.545,0.7689,-0.3805,0.5138,0.6539,-0.3805,0.6539,0.8157,-0.1939,0.545,0.6539,-0.3805,0.6539,0.6937,-0.1939,0.6937,0.6937,-0.1939,0.6937,0.6539,-0.3805,0.6539,0.5138,-0.3805,0.7689,0.6937,-0.1939,0.6937,0.5138,-0.3805,0.7689,0.545,-0.1939,0.8157,0.545,-0.1939,0.8157,0.5138,-0.3805,0.7689,0.3539,-0.3805,0.8544,0.545,-0.1939,0.8157,0.3539,-0.3805,0.8544,0.3754,-0.1939,0.9063,0.3754,-0.1939,0.9063,0.3539,-0.3805,0.8544,0.1804,-0.3805,0.907,0.3754,-0.1939,0.9063,0.1804,-0.3805,0.907,0.1914,-0.1939,0.9622,0.1914,-0.1939,0.9622,0.1804,-0.3805,0.907,0.0,-0.3805,0.9248,0.1914,-0.1939,0.9622,0.0,-0.3805,0.9248,0.0,-0.1939,0.981,0.0,-0.3805,0.9248,0.0,-0.5528,0.8333,-0.1626,-0.5528,0.8173,0.0,-0.3805,0.9248,-0.1626,-0.5528,0.8173,-0.1804,-0.3805,0.907,-0.1804,-0.3805,0.907,-0.1626,-0.5528,0.8173,-0.3189,-0.5528,0.7699,-0.1804,-0.3805,0.907,-0.3189,-0.5528,0.7699,-0.3539,-0.3805,0.8544,-0.3539,-0.3805,0.8544,-0.3189,-0.5528,0.7699,-0.463,-0.5528,0.6929,-0.3539,-0.3805,0.8544,-0.463,-0.5528,0.6929,-0.5138,-0.3805,0.7689,-0.5138,-0.3805,0.7689,-0.463,-0.5528,0.6929,-0.5893,-0.5528,0.5893,-0.5138,-0.3805,0.7689,-0.5893,-0.5528,0.5893,-0.6539,-0.3805,0.6539,-0.6539,-0.3805,0.6539,-0.5893,-0.5528,0.5893,-0.6929,-0.5528,0.463,-0.6539,-0.3805,0.6539,-0.6929,-0.5528,0.463,-0.7689,-0.3805,0.5138,-0.7689,-0.3805,0.5138,-0.6929,-0.5528,0.463,-0.7699,-0.5528,0.3189,-0.7689,-0.3805,0.5138,-0.7699,-0.5528,0.3189,-0.8544,-0.3805,0.3539,-0.8544,-0.3805,0.3539,-0.7699,-0.5528,0.3189,-0.8173,-0.5528,0.1626,-0.8544,-0.3805,0.3539,-0.8173,-0.5528,0.1626,-0.907,-0.3805,0.1804,-0.907,-0.3805,0.1804,-0.8173,-0.5528,0.1626,-0.8333,-0.5528,0.0,-0.907,-0.3805,0.1804,-0.8333,-0.5528,0.0,-0.9248,-0.3805,0.0,-0.9248,-0.3805,0.0,-0.8333,-0.5528,0.0,-0.8173,-0.5528,-0.1626,-0.9248,-0.3805,0.0,-0.8173,-0.5528,-0.1626,-0.907,-0.3805,-0.1804,-0.907,-0.3805,-0.1804,-0.8173,-0.5528,-0.1626,-0.7699,-0.5528,-0.3189,-0.907,-0.3805,-0.1804,-0.7699,-0.5528,-0.3189,-0.8544,-0.3805,-0.3539,-0.8544,-0.3805,-0.3539,-0.7699,-0.5528,-0.3189,-0.6929,-0.5528,-0.463,-0.8544,-0.3805,-0.3539,-0.6929,-0.5528,-0.463,-0.7689,-0.3805,-0.5138,-0.7689,-0.3805,-0.5138,-0.6929,-0.5528,-0.463,-0.5893,-0.5528,-0.5893,-0.7689,-0.3805,-0.5138,-0.5893,-0.5528,-0.5893,-0.6539,-0.3805,-0.6539,-0.6539,-0.3805,-0.6539,-0.5893,-0.5528,-0.5893,-0.463,-0.5528,-0.6929,-0.6539,-0.3805,-0.6539,-0.463,-0.5528,-0.6929,-0.5138,-0.3805,-0.7689,-0.5138,-0.3805,-0.7689,-0.463,-0.5528,-0.6929,-0.3189,-0.5528,-0.7699,-0.5138,-0.3805,-0.7689,-0.3189,-0.5528,-0.7699,-0.3539,-0.3805,-0.8544,-0.3539,-0.3805,-0.8544,-0.3189,-0.5528,-0.7699,-0.1626,-0.5528,-0.8173,-0.3539,-0.3805,-0.8544,-0.1626,-0.5528,-0.8173,-0.1804,-0.3805,-0.907,-0.1804,-0.3805,-0.907,-0.1626,-0.5528,-0.8173,0.0,-0.5528,-0.8333,-0.1804,-0.3805,-0.907,0.0,-0.5528,-0.8333,0.0,-0.3805,-0.9248,0.0,-0.3805,-0.9248,0.0,-0.5528,-0.8333,0.1626,-0.5528,-0.8173,0.0,-0.3805,-0.9248,0.1626,-0.5528,-0.8173,0.1804,-0.3805,-0.907,0.1804,-0.3805,-0.907,0.1626,-0.5528,-0.8173,0.3189,-0.5528,-0.7699,0.1804,-0.3805,-0.907,0.3189,-0.5528,-0.7699,0.3539,-0.3805,-0.8544,0.3539,-0.3805,-0.8544,0.3189,-0.5528,-0.7699,0.463,-0.5528,-0.6929,0.3539,-0.3805,-0.8544,0.463,-0.5528,-0.6929,0.5138,-0.3805,-0.7689,0.5138,-0.3805,-0.7689,0.463,-0.5528,-0.6929,0.5893,-0.5528,-0.5893,0.5138,-0.3805,-0.7689,0.5893,-0.5528,-0.5893,0.6539,-0.3805,-0.6539,0.6539,-0.3805,-0.6539,0.5893,-0.5528,-0.5893,0.6929,-0.5528,-0.463,0.6539,-0.3805,-0.6539,0.6929,-0.5528,-0.463,0.7689,-0.3805,-0.5138,0.7689,-0.3805,-0.5138,0.6929,-0.5528,-0.463,0.7699,-0.5528,-0.3189,0.7689,-0.3805,-0.5138,0.7699,-0.5528,-0.3189,0.8544,-0.3805,-0.3539,0.8544,-0.3805,-0.3539,0.7699,-0.5528,-0.3189,0.8173,-0.5528,-0.1626,0.8544,-0.3805,-0.3539,0.8173,-0.5528,-0.1626,0.907,-0.3805,-0.1804,0.907,-0.3805,-0.1804,0.8173,-0.5528,-0.1626,0.8333,-0.5528,0.0,0.907,-0.3805,-0.1804,0.8333,-0.5528,0.0,0.9248,-0.3805,0.0,0.9248,-0.3805,0.0,0.8333,-0.5528,0.0,0.8173,-0.5528,0.1626,0.9248,-0.3805,0.0,0.8173,-0.5528,0.1626,0.907,-0.3805,0.1804,0.907,-0.3805,0.1804,0.8173,-0.5528,0.1626,0.7699,-0.5528,0.3189,0.907,-0.3805,0.1804,0.7699,-0.5528,0.3189,0.8544,-0.3805,0.3539,0.8544,-0.3805,0.3539,0.7699,-0.5528,0.3189,0.6929,-0.5528,0.463,0.8544,-0.3805,0.3539,0.6929,-0.5528,0.463,0.7689,-0.3805,0.5138,0.7689,-0.3805,0.5138,0.6929,-0.5528,0.463,0.5893,-0.5528,0.5893,0.7689,-0.3805,0.5138,0.5893,-0.5528,0.5893,0.6539,-0.3805,0.6539,0.6539,-0.3805,0.6539,0.5893,-0.5528,0.5893,0.463,-0.5528,0.6929,0.6539,-0.3805,0.6539,0.463,-0.5528,0.6929,0.5138,-0.3805,0.7689,0.5138,-0.3805,0.7689,0.463,-0.5528,0.6929,0.3189,-0.5528,0.7699,0.5138,-0.3805,0.7689,0.3189,-0.5528,0.7699,0.3539,-0.3805,0.8544,0.3539,-0.3805,0.8544,0.3189,-0.5528,0.7699,0.1626,-0.5528,0.8173,0.3539,-0.3805,0.8544,0.1626,-0.5528,0.8173,0.1804,-0.3805,0.907,0.1804,-0.3805,0.907,0.1626,-0.5528,0.8173,0.0,-0.5528,0.8333,0.1804,-0.3805,0.907,0.0,-0.5528,0.8333,0.0,-0.3805,0.9248,0.0,-0.5528,0.8333,0.0,-0.7041,0.7101,-0.1385,-0.7041,0.6965,0.0,-0.5528,0.8333,-0.1385,-0.7041,0.6965,-0.1626,-0.5528,0.8173,-0.1626,-0.5528,0.8173,-0.1385,-0.7041,0.6965,-0.2718,-0.7041,0.6561,-0.1626,-0.5528,0.8173,-0.2718,-0.7041,0.6561,-0.3189,-0.5528,0.7699,-0.3189,-0.5528,0.7699,-0.2718,-0.7041,0.6561,-0.3945,-0.7041,0.5905,-0.3189,-0.5528,0.7699,-0.3945,-0.7041,0.5905,-0.463,-0.5528,0.6929,-0.463,-0.5528,0.6929,-0.3945,-0.7041,0.5905,-0.5021,-0.7041,0.5021,-0.463,-0.5528,0.6929,-0.5021,-0.7041,0.5021,-0.5893,-0.5528,0.5893,-0.5893,-0.5528,0.5893,-0.5021,-0.7041,0.5021,-0.5905,-0.7041,0.3945,-0.5893,-0.5528,0.5893,-0.5905,-0.7041,0.3945,-0.6929,-0.5528,0.463,-0.6929,-0.5528,0.463,-0.5905,-0.7041,0.3945,-0.6561,-0.7041,0.2718,-0.6929,-0.5528,0.463,-0.6561,-0.7041,0.2718,-0.7699,-0.5528,0.3189,-0.7699,-0.5528,0.3189,-0.6561,-0.7041,0.2718,-0.6965,-0.7041,0.1385,-0.7699,-0.5528,0.3189,-0.6965,-0.7041,0.1385,-0.8173,-0.5528,0.1626,-0.8173,-0.5528,0.1626,-0.6965,-0.7041,0.1385,-0.7101,-0.7041,0.0,-0.8173,-0.5528,0.1626,-0.7101,-0.7041,0.0,-0.8333,-0.5528,0.0,-0.8333,-0.5528,0.0,-0.7101,-0.7041,0.0,-0.6965,-0.7041,-0.1385,-0.8333,-0.5528,0.0,-0.6965,-0.7041,-0.1385,-0.8173,-0.5528,-0.1626,-0.8173,-0.5528,-0.1626,-0.6965,-0.7041,-0.1385,-0.6561,-0.7041,-0.2718,-0.8173,-0.5528,-0.1626,-0.6561,-0.7041,-0.2718,-0.7699,-0.5528,-0.3189,-0.7699,-0.5528,-0.3189,-0.6561,-0.7041,-0.2718,-0.5905,-0.7041,-0.3945,-0.7699,-0.5528,-0.3189,-0.5905,-0.7041,-0.3945,-0.6929,-0.5528,-0.463,-0.6929,-0.5528,-0.463,-0.5905,-0.7041,-0.3945,-0.5021,-0.7041,-0.5021,-0.6929,-0.5528,-0.463,-0.5021,-0.7041,-0.5021,-0.5893,-0.5528,-0.5893,-0.5893,-0.5528,-0.5893,-0.5021,-0.7041,-0.5021,-0.3945,-0.7041,-0.5905,-0.5893,-0.5528,-0.5893,-0.3945,-0.7041,-0.5905,-0.463,-0.5528,-0.6929,-0.463,-0.5528,-0.6929,-0.3945,-0.7041,-0.5905,-0.2718,-0.7041,-0.6561,-0.463,-0.5528,-0.6929,-0.2718,-0.7041,-0.6561,-0.3189,-0.5528,-0.7699,-0.3189,-0.5528,-0.7699,-0.2718,-0.7041,-0.6561,-0.1385,-0.7041,-0.6965,-0.3189,-0.5528,-0.7699,-0.1385,-0.7041,-0.6965,-0.1626,-0.5528,-0.8173,-0.1626,-0.5528,-0.8173,-0.1385,-0.7041,-0.6965,0.0,-0.7041,-0.7101,-0.1626,-0.5528,-0.8173,0.0,-0.7041,-0.7101,0.0,-0.5528,-0.8333,0.0,-0.5528,-0.8333,0.0,-0.7041,-0.7101,0.1385,-0.7041,-0.6965,0.0,-0.5528,-0.8333,0.1385,-0.7041,-0.6965,0.1626,-0.5528,-0.8173,0.1626,-0.5528,-0.8173,0.1385,-0.7041,-0.6965,0.2718,-0.7041,-0.6561,0.1626,-0.5528,-0.8173,0.2718,-0.7041,-0.6561,0.3189,-0.5528,-0.7699,0.3189,-0.5528,-0.7699,0.2718,-0.7041,-0.6561,0.3945,-0.7041,-0.5905,0.3189,-0.5528,-0.7699,0.3945,-0.7041,-0.5905,0.463,-0.5528,-0.6929,0.463,-0.5528,-0.6929,0.3945,-0.7041,-0.5905,0.5021,-0.7041,-0.5021,0.463,-0.5528,-0.6929,0.5021,-0.7041,-0.5021,0.5893,-0.5528,-0.5893,0.5893,-0.5528,-0.5893,0.5021,-0.7041,-0.5021,0.5905,-0.7041,-0.3945,0.5893,-0.5528,-0.5893,0.5905,-0.7041,-0.3945,0.6929,-0.5528,-0.463,0.6929,-0.5528,-0.463,0.5905,-0.7041,-0.3945,0.6561,-0.7041,-0.2718,0.6929,-0.5528,-0.463,0.6561,-0.7041,-0.2718,0.7699,-0.5528,-0.3189,0.7699,-0.5528,-0.3189,0.6561,-0.7041,-0.2718,0.6965,-0.7041,-0.1385,0.7699,-0.5528,-0.3189,0.6965,-0.7041,-0.1385,0.8173,-0.5528,-0.1626,0.8173,-0.5528,-0.1626,0.6965,-0.7041,-0.1385,0.7101,-0.7041,0.0,0.8173,-0.5528,-0.1626,0.7101,-0.7041,0.0,0.8333,-0.5528,0.0,0.8333,-0.5528,0.0,0.7101,-0.7041,0.0,0.6965,-0.7041,0.1385,0.8333,-0.5528,0.0,0.6965,-0.7041,0.1385,0.8173,-0.5528,0.1626,0.8173,-0.5528,0.1626,0.6965,-0.7041,0.1385,0.6561,-0.7041,0.2718,0.8173,-0.5528,0.1626,0.6561,-0.7041,0.2718,0.7699,-0.5528,0.3189,0.7699,-0.5528,0.3189,0.6561,-0.7041,0.2718,0.5905,-0.7041,0.3945,0.7699,-0.5528,0.3189,0.5905,-0.7041,0.3945,0.6929,-0.5528,0.463,0.6929,-0.5528,0.463,0.5905,-0.7041,0.3945,0.5021,-0.7041,0.5021,0.6929,-0.5528,0.463,0.5021,-0.7041,0.5021,0.5893,-0.5528,0.5893,0.5893,-0.5528,0.5893,0.5021,-0.7041,0.5021,0.3945,-0.7041,0.5905,0.5893,-0.5528,0.5893,0.3945,-0.7041,0.5905,0.463,-0.5528,0.6929,0.463,-0.5528,0.6929,0.3945,-0.7041,0.5905,0.2718,-0.7041,0.6561,0.463,-0.5528,0.6929,0.2718,-0.7041,0.6561,0.3189,-0.5528,0.7699,0.3189,-0.5528,0.7699,0.2718,-0.7041,0.6561,0.1385,-0.7041,0.6965,0.3189,-0.5528,0.7699,0.1385,-0.7041,0.6965,0.1626,-0.5528,0.8173,0.1626,-0.5528,0.8173,0.1385,-0.7041,0.6965,0.0,-0.7041,0.7101,0.1626,-0.5528,0.8173,0.0,-0.7041,0.7101,0.0,-0.5528,0.8333,0.0,-0.7041,0.7101,0.0,-0.8286,0.5598,-0.1092,-0.8286,0.549,0.0,-0.7041,0.7101,-0.1092,-0.8286,0.549,-0.1385,-0.7041,0.6965,-0.1385,-0.7041,0.6965,-0.1092,-0.8286,0.549,-0.2142,-0.8286,0.5172,-0.1385,-0.7041,0.6965,-0.2142,-0.8286,0.5172,-0.2718,-0.7041,0.6561,-0.2718,-0.7041,0.6561,-0.2142,-0.8286,0.5172,-0.311,-0.8286,0.4654,-0.2718,-0.7041,0.6561,-0.311,-0.8286,0.4654,-0.3945,-0.7041,0.5905,-0.3945,-0.7041,0.5905,-0.311,-0.8286,0.4654,-0.3958,-0.8286,0.3958,-0.3945,-0.7041,0.5905,-0.3958,-0.8286,0.3958,-0.5021,-0.7041,0.5021,-0.5021,-0.7041,0.5021,-0.3958,-0.8286,0.3958,-0.4654,-0.8286,0.311,-0.5021,-0.7041,0.5021,-0.4654,-0.8286,0.311,-0.5905,-0.7041,0.3945,-0.5905,-0.7041,0.3945,-0.4654,-0.8286,0.311,-0.5172,-0.8286,0.2142,-0.5905,-0.7041,0.3945,-0.5172,-0.8286,0.2142,-0.6561,-0.7041,0.2718,-0.6561,-0.7041,0.2718,-0.5172,-0.8286,0.2142,-0.549,-0.8286,0.1092,-0.6561,-0.7041,0.2718,-0.549,-0.8286,0.1092,-0.6965,-0.7041,0.1385,-0.6965,-0.7041,0.1385,-0.549,-0.8286,0.1092,-0.5598,-0.8286,0.0,-0.6965,-0.7041,0.1385,-0.5598,-0.8286,0.0,-0.7101,-0.7041,0.0,-0.7101,-0.7041,0.0,-0.5598,-0.8286,0.0,-0.549,-0.8286,-0.1092,-0.7101,-0.7041,0.0,-0.549,-0.8286,-0.1092,-0.6965,-0.7041,-0.1385,-0.6965,-0.7041,-0.1385,-0.549,-0.8286,-0.1092,-0.5172,-0.8286,-0.2142,-0.6965,-0.7041,-0.1385,-0.5172,-0.8286,-0.2142,-0.6561,-0.7041,-0.2718,-0.6561,-0.7041,-0.2718,-0.5172,-0.8286,-0.2142,-0.4654,-0.8286,-0.311,-0.6561,-0.7041,-0.2718,-0.4654,-0.8286,-0.311,-0.5905,-0.7041,-0.3945,-0.5905,-0.7041,-0.3945,-0.4654,-0.8286,-0.311,-0.3958,-0.8286,-0.3958,-0.5905,-0.7041,-0.3945,-0.3958,-0.8286,-0.3958,-0.5021,-0.7041,-0.5021,-0.5021,-0.7041,-0.5021,-0.3958,-0.8286,-0.3958,-0.311,-0.8286,-0.4654,-0.5021,-0.7041,-0.5021,-0.311,-0.8286,-0.4654,-0.3945,-0.7041,-0.5905,-0.3945,-0.7041,-0.5905,-0.311,-0.8286,-0.4654,-0.2142,-0.8286,-0.5172,-0.3945,-0.7041,-0.5905,-0.2142,-0.8286,-0.5172,-0.2718,-0.7041,-0.6561,-0.2718,-0.7041,-0.6561,-0.2142,-0.8286,-0.5172,-0.1092,-0.8286,-0.549,-0.2718,-0.7041,-0.6561,-0.1092,-0.8286,-0.549,-0.1385,-0.7041,-0.6965,-0.1385,-0.7041,-0.6965,-0.1092,-0.8286,-0.549,0.0,-0.8286,-0.5598,-0.1385,-0.7041,-0.6965,0.0,-0.8286,-0.5598,0.0,-0.7041,-0.7101,0.0,-0.7041,-0.7101,0.0,-0.8286,-0.5598,0.1092,-0.8286,-0.549,0.0,-0.7041,-0.7101,0.1092,-0.8286,-0.549,0.1385,-0.7041,-0.6965,0.1385,-0.7041,-0.6965,0.1092,-0.8286,-0.549,0.2142,-0.8286,-0.5172,0.1385,-0.7041,-0.6965,0.2142,-0.8286,-0.5172,0.2718,-0.7041,-0.6561,0.2718,-0.7041,-0.6561,0.2142,-0.8286,-0.5172,0.311,-0.8286,-0.4654,0.2718,-0.7041,-0.6561,0.311,-0.8286,-0.4654,0.3945,-0.7041,-0.5905,0.3945,-0.7041,-0.5905,0.311,-0.8286,-0.4654,0.3958,-0.8286,-0.3958,0.3945,-0.7041,-0.5905,0.3958,-0.8286,-0.3958,0.5021,-0.7041,-0.5021,0.5021,-0.7041,-0.5021,0.3958,-0.8286,-0.3958,0.4654,-0.8286,-0.311,0.5021,-0.7041,-0.5021,0.4654,-0.8286,-0.311,0.5905,-0.7041,-0.3945,0.5905,-0.7041,-0.3945,0.4654,-0.8286,-0.311,0.5172,-0.8286,-0.2142,0.5905,-0.7041,-0.3945,0.5172,-0.8286,-0.2142,0.6561,-0.7041,-0.2718,0.6561,-0.7041,-0.2718,0.5172,-0.8286,-0.2142,0.549,-0.8286,-0.1092,0.6561,-0.7041,-0.2718,0.549,-0.8286,-0.1092,0.6965,-0.7041,-0.1385,0.6965,-0.7041,-0.1385,0.549,-0.8286,-0.1092,0.5598,-0.8286,0.0,0.6965,-0.7041,-0.1385,0.5598,-0.8286,0.0,0.7101,-0.7041,0.0,0.7101,-0.7041,0.0,0.5598,-0.8286,0.0,0.549,-0.8286,0.1092,0.7101,-0.7041,0.0,0.549,-0.8286,0.1092,0.6965,-0.7041,0.1385,0.6965,-0.7041,0.1385,0.549,-0.8286,0.1092,0.5172,-0.8286,0.2142,0.6965,-0.7041,0.1385,0.5172,-0.8286,0.2142,0.6561,-0.7041,0.2718,0.6561,-0.7041,0.2718,0.5172,-0.8286,0.2142,0.4654,-0.8286,0.311,0.6561,-0.7041,0.2718,0.4654,-0.8286,0.311,0.5905,-0.7041,0.3945,0.5905,-0.7041,0.3945,0.4654,-0.8286,0.311,0.3958,-0.8286,0.3958,0.5905,-0.7041,0.3945,0.3958,-0.8286,0.3958,0.5021,-0.7041,0.5021,0.5021,-0.7041,0.5021,0.3958,-0.8286,0.3958,0.311,-0.8286,0.4654,0.5021,-0.7041,0.5021,0.311,-0.8286,0.4654,0.3945,-0.7041,0.5905,0.3945,-0.7041,0.5905,0.311,-0.8286,0.4654,0.2142,-0.8286,0.5172,0.3945,-0.7041,0.5905,0.2142,-0.8286,0.5172,0.2718,-0.7041,0.6561,0.2718,-0.7041,0.6561,0.2142,-0.8286,0.5172,0.1092,-0.8286,0.549,0.2718,-0.7041,0.6561,0.1092,-0.8286,0.549,0.1385,-0.7041,0.6965,0.1385,-0.7041,0.6965,0.1092,-0.8286,0.549,0.0,-0.8286,0.5598,0.1385,-0.7041,0.6965,0.0,-0.8286,0.5598,0.0,-0.7041,0.7101,0.0,-0.8286,0.5598,0.0,-0.9217,0.3879,-0.0757,-0.9217,0.3804,0.0,-0.8286,0.5598,-0.0757,-0.9217,0.3804,-0.1092,-0.8286,0.549,-0.1092,-0.8286,0.549,-0.0757,-0.9217,0.3804,-0.1484,-0.9217,0.3584,-0.1092,-0.8286,0.549,-0.1484,-0.9217,0.3584,-0.2142,-0.8286,0.5172,-0.2142,-0.8286,0.5172,-0.1484,-0.9217,0.3584,-0.2155,-0.9217,0.3225,-0.2142,-0.8286,0.5172,-0.2155,-0.9217,0.3225,-0.311,-0.8286,0.4654,-0.311,-0.8286,0.4654,-0.2155,-0.9217,0.3225,-0.2743,-0.9217,0.2743,-0.311,-0.8286,0.4654,-0.2743,-0.9217,0.2743,-0.3958,-0.8286,0.3958,-0.3958,-0.8286,0.3958,-0.2743,-0.9217,0.2743,-0.3225,-0.9217,0.2155,-0.3958,-0.8286,0.3958,-0.3225,-0.9217,0.2155,-0.4654,-0.8286,0.311,-0.4654,-0.8286,0.311,-0.3225,-0.9217,0.2155,-0.3584,-0.9217,0.1484,-0.4654,-0.8286,0.311,-0.3584,-0.9217,0.1484,-0.5172,-0.8286,0.2142,-0.5172,-0.8286,0.2142,-0.3584,-0.9217,0.1484,-0.3804,-0.9217,0.0757,-0.5172,-0.8286,0.2142,-0.3804,-0.9217,0.0757,-0.549,-0.8286,0.1092,-0.549,-0.8286,0.1092,-0.3804,-0.9217,0.0757,-0.3879,-0.9217,0.0,-0.549,-0.8286,0.1092,-0.3879,-0.9217,0.0,-0.5598,-0.8286,0.0,-0.5598,-0.8286,0.0,-0.3879,-0.9217,0.0,-0.3804,-0.9217,-0.0757,-0.5598,-0.8286,0.0,-0.3804,-0.9217,-0.0757,-0.549,-0.8286,-0.1092,-0.549,-0.8286,-0.1092,-0.3804,-0.9217,-0.0757,-0.3584,-0.9217,-0.1484,-0.549,-0.8286,-0.1092,-0.3584,-0.9217,-0.1484,-0.5172,-0.8286,-0.2142,-0.5172,-0.8286,-0.2142,-0.3584,-0.9217,-0.1484,-0.3225,-0.9217,-0.2155,-0.5172,-0.8286,-0.2142,-0.3225,-0.9217,-0.2155,-0.4654,-0.8286,-0.311,-0.4654,-0.8286,-0.311,-0.3225,-0.9217,-0.2155,-0.2743,-0.9217,-0.2743,-0.4654,-0.8286,-0.311,-0.2743,-0.9217,-0.2743,-0.3958,-0.8286,-0.3958,-0.3958,-0.8286,-0.3958,-0.2743,-0.9217,-0.2743,-0.2155,-0.9217,-0.3225,-0.3958,-0.8286,-0.3958,-0.2155,-0.9217,-0.3225,-0.311,-0.8286,-0.4654,-0.311,-0.8286,-0.4654,-0.2155,-0.9217,-0.3225,-0.1484,-0.9217,-0.3584,-0.311,-0.8286,-0.4654,-0.1484,-0.9217,-0.3584,-0.2142,-0.8286,-0.5172,-0.2142,-0.8286,-0.5172,-0.1484,-0.9217,-0.3584,-0.0757,-0.9217,-0.3804,-0.2142,-0.8286,-0.5172,-0.0757,-0.9217,-0.3804,-0.1092,-0.8286,-0.549,-0.1092,-0.8286,-0.549,-0.0757,-0.9217,-0.3804,0.0,-0.9217,-0.3879,-0.1092,-0.8286,-0.549,0.0,-0.9217,-0.3879,0.0,-0.8286,-0.5598,0.0,-0.8286,-0.5598,0.0,-0.9217,-0.3879,0.0757,-0.9217,-0.3804,0.0,-0.8286,-0.5598,0.0757,-0.9217,-0.3804,0.1092,-0.8286,-0.549,0.1092,-0.8286,-0.549,0.0757,-0.9217,-0.3804,0.1484,-0.9217,-0.3584,0.1092,-0.8286,-0.549,0.1484,-0.9217,-0.3584,0.2142,-0.8286,-0.5172,0.2142,-0.8286,-0.5172,0.1484,-0.9217,-0.3584,0.2155,-0.9217,-0.3225,0.2142,-0.8286,-0.5172,0.2155,-0.9217,-0.3225,0.311,-0.8286,-0.4654,0.311,-0.8286,-0.4654,0.2155,-0.9217,-0.3225,0.2743,-0.9217,-0.2743,0.311,-0.8286,-0.4654,0.2743,-0.9217,-0.2743,0.3958,-0.8286,-0.3958,0.3958,-0.8286,-0.3958,0.2743,-0.9217,-0.2743,0.3225,-0.9217,-0.2155,0.3958,-0.8286,-0.3958,0.3225,-0.9217,-0.2155,0.4654,-0.8286,-0.311,0.4654,-0.8286,-0.311,0.3225,-0.9217,-0.2155,0.3584,-0.9217,-0.1484,0.4654,-0.8286,-0.311,0.3584,-0.9217,-0.1484,0.5172,-0.8286,-0.2142,0.5172,-0.8286,-0.2142,0.3584,-0.9217,-0.1484,0.3804,-0.9217,-0.0757,0.5172,-0.8286,-0.2142,0.3804,-0.9217,-0.0757,0.549,-0.8286,-0.1092,0.549,-0.8286,-0.1092,0.3804,-0.9217,-0.0757,0.3879,-0.9217,0.0,0.549,-0.8286,-0.1092,0.3879,-0.9217,0.0,0.5598,-0.8286,0.0,0.5598,-0.8286,0.0,0.3879,-0.9217,0.0,0.3804,-0.9217,0.0757,0.5598,-0.8286,0.0,0.3804,-0.9217,0.0757,0.549,-0.8286,0.1092,0.549,-0.8286,0.1092,0.3804,-0.9217,0.0757,0.3584,-0.9217,0.1484,0.549,-0.8286,0.1092,0.3584,-0.9217,0.1484,0.5172,-0.8286,0.2142,0.5172,-0.8286,0.2142,0.3584,-0.9217,0.1484,0.3225,-0.9217,0.2155,0.5172,-0.8286,0.2142,0.3225,-0.9217,0.2155,0.4654,-0.8286,0.311,0.4654,-0.8286,0.311,0.3225,-0.9217,0.2155,0.2743,-0.9217,0.2743,0.4654,-0.8286,0.311,0.2743,-0.9217,0.2743,0.3958,-0.8286,0.3958,0.3958,-0.8286,0.3958,0.2743,-0.9217,0.2743,0.2155,-0.9217,0.3225,0.3958,-0.8286,0.3958,0.2155,-0.9217,0.3225,0.311,-0.8286,0.4654,0.311,-0.8286,0.4654,0.2155,-0.9217,0.3225,0.1484,-0.9217,0.3584,0.311,-0.8286,0.4654,0.1484,-0.9217,0.3584,0.2142,-0.8286,0.5172,0.2142,-0.8286,0.5172,0.1484,-0.9217,0.3584,0.0757,-0.9217,0.3804,0.2142,-0.8286,0.5172,0.0757,-0.9217,0.3804,0.1092,-0.8286,0.549,0.1092,-0.8286,0.549,0.0757,-0.9217,0.3804,0.0,-0.9217,0.3879,0.1092,-0.8286,0.549,0.0,-0.9217,0.3879,0.0,-0.8286,0.5598,0.0,-0.9217,0.3879,0.0,-0.9796,0.201,-0.0392,-0.9796,0.1971,0.0,-0.9217,0.3879,-0.0392,-0.9796,0.1971,-0.0757,-0.9217,0.3804,-0.0757,-0.9217,0.3804,-0.0392,-0.9796,0.1971,-0.0769,-0.9796,0.1857,-0.0757,-0.9217,0.3804,-0.0769,-0.9796,0.1857,-0.1484,-0.9217,0.3584,-0.1484,-0.9217,0.3584,-0.0769,-0.9796,0.1857,-0.1117,-0.9796,0.1671,-0.1484,-0.9217,0.3584,-0.1117,-0.9796,0.1671,-0.2155,-0.9217,0.3225,-0.2155,-0.9217,0.3225,-0.1117,-0.9796,0.1671,-0.1421,-0.9796,0.1421,-0.2155,-0.9217,0.3225,-0.1421,-0.9796,0.1421,-0.2743,-0.9217,0.2743,-0.2743,-0.9217,0.2743,-0.1421,-0.9796,0.1421,-0.1671,-0.9796,0.1117,-0.2743,-0.9217,0.2743,-0.1671,-0.9796,0.1117,-0.3225,-0.9217,0.2155,-0.3225,-0.9217,0.2155,-0.1671,-0.9796,0.1117,-0.1857,-0.9796,0.0769,-0.3225,-0.9217,0.2155,-0.1857,-0.9796,0.0769,-0.3584,-0.9217,0.1484,-0.3584,-0.9217,0.1484,-0.1857,-0.9796,0.0769,-0.1971,-0.9796,0.0392,-0.3584,-0.9217,0.1484,-0.1971,-0.9796,0.0392,-0.3804,-0.9217,0.0757,-0.3804,-0.9217,0.0757,-0.1971,-0.9796,0.0392,-0.201,-0.9796,0.0,-0.3804,-0.9217,0.0757,-0.201,-0.9796,0.0,-0.3879,-0.9217,0.0,-0.3879,-0.9217,0.0,-0.201,-0.9796,0.0,-0.1971,-0.9796,-0.0392,-0.3879,-0.9217,0.0,-0.1971,-0.9796,-0.0392,-0.3804,-0.9217,-0.0757,-0.3804,-0.9217,-0.0757,-0.1971,-0.9796,-0.0392,-0.1857,-0.9796,-0.0769,-0.3804,-0.9217,-0.0757,-0.1857,-0.9796,-0.0769,-0.3584,-0.9217,-0.1484,-0.3584,-0.9217,-0.1484,-0.1857,-0.9796,-0.0769,-0.1671,-0.9796,-0.1117,-0.3584,-0.9217,-0.1484,-0.1671,-0.9796,-0.1117,-0.3225,-0.9217,-0.2155,-0.3225,-0.9217,-0.2155,-0.1671,-0.9796,-0.1117,-0.1421,-0.9796,-0.1421,-0.3225,-0.9217,-0.2155,-0.1421,-0.9796,-0.1421,-0.2743,-0.9217,-0.2743,-0.2743,-0.9217,-0.2743,-0.1421,-0.9796,-0.1421,-0.1117,-0.9796,-0.1671,-0.2743,-0.9217,-0.2743,-0.1117,-0.9796,-0.1671,-0.2155,-0.9217,-0.3225,-0.2155,-0.9217,-0.3225,-0.1117,-0.9796,-0.1671,-0.0769,-0.9796,-0.1857,-0.2155,-0.9217,-0.3225,-0.0769,-0.9796,-0.1857,-0.1484,-0.9217,-0.3584,-0.1484,-0.9217,-0.3584,-0.0769,-0.9796,-0.1857,-0.0392,-0.9796,-0.1971,-0.1484,-0.9217,-0.3584,-0.0392,-0.9796,-0.1971,-0.0757,-0.9217,-0.3804,-0.0757,-0.9217,-0.3804,-0.0392,-0.9796,-0.1971,0.0,-0.9796,-0.201,-0.0757,-0.9217,-0.3804,0.0,-0.9796,-0.201,0.0,-0.9217,-0.3879,0.0,-0.9217,-0.3879,0.0,-0.9796,-0.201,0.0392,-0.9796,-0.1971,0.0,-0.9217,-0.3879,0.0392,-0.9796,-0.1971,0.0757,-0.9217,-0.3804,0.0757,-0.9217,-0.3804,0.0392,-0.9796,-0.1971,0.0769,-0.9796,-0.1857,0.0757,-0.9217,-0.3804,0.0769,-0.9796,-0.1857,0.1484,-0.9217,-0.3584,0.1484,-0.9217,-0.3584,0.0769,-0.9796,-0.1857,0.1117,-0.9796,-0.1671,0.1484,-0.9217,-0.3584,0.1117,-0.9796,-0.1671,0.2155,-0.9217,-0.3225,0.2155,-0.9217,-0.3225,0.1117,-0.9796,-0.1671,0.1421,-0.9796,-0.1421,0.2155,-0.9217,-0.3225,0.1421,-0.9796,-0.1421,0.2743,-0.9217,-0.2743,0.2743,-0.9217,-0.2743,0.1421,-0.9796,-0.1421,0.1671,-0.9796,-0.1117,0.2743,-0.9217,-0.2743,0.1671,-0.9796,-0.1117,0.3225,-0.9217,-0.2155,0.3225,-0.9217,-0.2155,0.1671,-0.9796,-0.1117,0.1857,-0.9796,-0.0769,0.3225,-0.9217,-0.2155,0.1857,-0.9796,-0.0769,0.3584,-0.9217,-0.1484,0.3584,-0.9217,-0.1484,0.1857,-0.9796,-0.0769,0.1971,-0.9796,-0.0392,0.3584,-0.9217,-0.1484,0.1971,-0.9796,-0.0392,0.3804,-0.9217,-0.0757,0.3804,-0.9217,-0.0757,0.1971,-0.9796,-0.0392,0.201,-0.9796,0.0,0.3804,-0.9217,-0.0757,0.201,-0.9796,0.0,0.3879,-0.9217,0.0,0.3879,-0.9217,0.0,0.201,-0.9796,0.0,0.1971,-0.9796,0.0392,0.3879,-0.9217,0.0,0.1971,-0.9796,0.0392,0.3804,-0.9217,0.0757,0.3804,-0.9217,0.0757,0.1971,-0.9796,0.0392,0.1857,-0.9796,0.0769,0.3804,-0.9217,0.0757,0.1857,-0.9796,0.0769,0.3584,-0.9217,0.1484,0.3584,-0.9217,0.1484,0.1857,-0.9796,0.0769,0.1671,-0.9796,0.1117,0.3584,-0.9217,0.1484,0.1671,-0.9796,0.1117,0.3225,-0.9217,0.2155,0.3225,-0.9217,0.2155,0.1671,-0.9796,0.1117,0.1421,-0.9796,0.1421,0.3225,-0.9217,0.2155,0.1421,-0.9796,0.1421,0.2743,-0.9217,0.2743,0.2743,-0.9217,0.2743,0.1421,-0.9796,0.1421,0.1117,-0.9796,0.1671,0.2743,-0.9217,0.2743,0.1117,-0.9796,0.1671,0.2155,-0.9217,0.3225,0.2155,-0.9217,0.3225,0.1117,-0.9796,0.1671,0.0769,-0.9796,0.1857,0.2155,-0.9217,0.3225,0.0769,-0.9796,0.1857,0.1484,-0.9217,0.3584,0.1484,-0.9217,0.3584,0.0769,-0.9796,0.1857,0.0392,-0.9796,0.1971,0.1484,-0.9217,0.3584,0.0392,-0.9796,0.1971,0.0757,-0.9217,0.3804,0.0757,-0.9217,0.3804,0.0392,-0.9796,0.1971,0.0,-0.9796,0.201,0.0757,-0.9217,0.3804,0.0,-0.9796,0.201,0.0,-0.9217,0.3879,0.0,-1.0,0.0,-0.0392,-0.9796,0.1971,0.0,-0.9796,0.201,0.0,-1.0,0.0,-0.0769,-0.9796,0.1857,-0.0392,-0.9796,0.1971,0.0,-1.0,0.0,-0.1117,-0.9796,0.1671,-0.0769,-0.9796,0.1857,0.0,-1.0,0.0,-0.1421,-0.9796,0.1421,-0.1117,-0.9796,0.1671,0.0,-1.0,0.0,-0.1671,-0.9796,0.1117,-0.1421,-0.9796,0.1421,0.0,-1.0,0.0,-0.1857,-0.9796,0.0769,-0.1671,-0.9796,0.1117,0.0,-1.0,0.0,-0.1971,-0.9796,0.0392,-0.1857,-0.9796,0.0769,0.0,-1.0,0.0,-0.201,-0.9796,0.0,-0.1971,-0.9796,0.0392,0.0,-1.0,0.0,-0.1971,-0.9796,-0.0392,-0.201,-0.9796,0.0,0.0,-1.0,0.0,-0.1857,-0.9796,-0.0769,-0.1971,-0.9796,-0.0392,0.0,-1.0,0.0,-0.1671,-0.9796,-0.1117,-0.1857,-0.9796,-0.0769,0.0,-1.0,0.0,-0.1421,-0.9796,-0.1421,-0.1671,-0.9796,-0.1117,0.0,-1.0,0.0,-0.1117,-0.9796,-0.1671,-0.1421,-0.9796,-0.1421,0.0,-1.0,0.0,-0.0769,-0.9796,-0.1857,-0.1117,-0.9796,-0.1671,0.0,-1.0,0.0,-0.0392,-0.9796,-0.1971,-0.0769,-0.9796,-0.1857,0.0,-1.0,0.0,0.0,-0.9796,-0.201,-0.0392,-0.9796,-0.1971,0.0,-1.0,0.0,0.0392,-0.9796,-0.1971,0.0,-0.9796,-0.201,0.0,-1.0,0.0,0.0769,-0.9796,-0.1857,0.0392,-0.9796,-0.1971,0.0,-1.0,0.0,0.1117,-0.9796,-0.1671,0.0769,-0.9796,-0.1857,0.0,-1.0,0.0,0.1421,-0.9796,-0.1421,0.1117,-0.9796,-0.1671,0.0,-1.0,0.0,0.1671,-0.9796,-0.1117,0.1421,-0.9796,-0.1421,0.0,-1.0,0.0,0.1857,-0.9796,-0.0769,0.1671,-0.9796,-0.1117,0.0,-1.0,0.0,0.1971,-0.9796,-0.0392,0.1857,-0.9796,-0.0769,0.0,-1.0,0.0,0.201,-0.9796,0.0,0.1971,-0.9796,-0.0392,0.0,-1.0,0.0,0.1971,-0.9796,0.0392,0.201,-0.9796,0.0,0.0,-1.0,0.0,0.1857,-0.9796,0.0769,0.1971,-0.9796,0.0392,0.0,-1.0,0.0,0.1671,-0.9796,0.1117,0.1857,-0.9796,0.0769,0.0,-1.0,0.0,0.1421,-0.9796,0.1421,0.1671,-0.9796,0.1117,0.0,-1.0,0.0,0.1117,-0.9796,0.1671,0.1421,-0.9796,0.1421,0.0,-1.0,0.0,0.0769,-0.9796,0.1857,0.1117,-0.9796,0.1671,0.0,-1.0,0.0,0.0392,-0.9796,0.1971,0.0769,-0.9796,0.1857,0.0,-1.0,0.0,0.0,-0.9796,0.201,0.0392,-0.9796,0.1971],"tangents":null,"uvs":[0.0,2.0,0.0,1.9375,0.0312,1.9375,0.0312,2.0,0.0312,1.9375,0.0625,1.9375,0.0625,2.0,0.0625,1.9375,0.0938,1.9375,0.0938,2.0,0.0938,1.9375,0.125,1.9375,0.125,2.0,0.125,1.9375,0.1562,1.9375,0.1562,2.0,0.1562,1.9375,0.1875,1.9375,0.1875,2.0,0.1875,1.9375,0.2187,1.9375,0.2187,2.0,0.2187,1.9375,0.25,1.9375,0.25,2.0,0.25,1.9375,0.2812,1.9375,0.2812,2.0,0.2812,1.9375,0.3125,1.9375,0.3125,2.0,0.3125,1.9375,0.3437,1.9375,0.3437,2.0,0.3437,1.9375,0.375,1.9375,0.375,2.0,0.375,1.9375,0.4062,1.9375,0.4062,2.0,0.4062,1.9375,0.4375,1.9375,0.4375,2.0,0.4375,1.9375,0.4688,1.9375,0.4688,2.0,0.4688,1.9375,0.5,1.9375,0.5,2.0,0.5,1.9375,0.5313,1.9375,0.5313,2.0,0.5313,1.9375,0.5625,1.9375,0.5625,2.0,0.5625,1.9375,0.5938,1.9375,0.5938,2.0,0.5938,1.9375,0.625,1.9375,0.625,2.0,0.625,1.9375,0.6563,1.9375,0.6563,2.0,0.6563,1.9375,0.6875,1.9375,0.6875,2.0,0.6875,1.9375,0.7188,1.9375,0.7188,2.0,0.7188,1.9375,0.75,1.9375,0.75,2.0,0.75,1.9375,0.7813,1.9375,0.7813,2.0,0.7813,1.9375,0.8125,1.9375,0.8125,2.0,0.8125,1.9375,0.8438,1.9375,0.8438,2.0,0.8438,1.9375,0.875,1.9375,0.875,2.0,0.875,1.9375,0.9063,1.9375,0.9063,2.0,0.9063,1.9375,0.9375,1.9375,0.9375,2.0,0.9375,1.9375,0.9688,1.9375,0.9688,2.0,0.9688,1.9375,1.0,1.9375,0.0,1.9375,0.0,1.875,0.0312,1.875,0.0,1.9375,0.0312,1.875,0.0312,1.9375,0.0312,1.9375,0.0312,1.875,0.0625,1.875,0.0312,1.9375,0.0625,1.875,0.0625,1.9375,0.0625,1.9375,0.0625,1.875,0.0938,1.875,0.0625,1.9375,0.0938,1.875,0.0938,1.9375,0.0938,1.9375,0.0938,1.875,0.125,1.875,0.0938,1.9375,0.125,1.875,0.125,1.9375,0.125,1.9375,0.125,1.875,0.1562,1.875,0.125,1.9375,0.1562,1.875,0.1562,1.9375,0.1562,1.9375,0.1562,1.875,0.1875,1.875,0.1562,1.9375,0.1875,1.875,0.1875,1.9375,0.1875,1.9375,0.1875,1.875,0.2187,1.875,0.1875,1.9375,0.2187,1.875,0.2187,1.9375,0.2187,1.9375,0.2187,1.875,0.25,1.875,0.2187,1.9375,0.25,1.875,0.25,1.9375,0.25,1.9375,0.25,1.875,0.2812,1.875,0.25,1.9375,0.2812,1.875,0.2812,1.9375,0.2812,1.9375,0.2812,1.875,0.3125,1.875,0.2812,1.9375,0.3125,1.875,0.3125,1.9375,0.3125,1.9375,0.3125,1.875,0.3437,1.875,0.3125,1.9375,0.3437,1.875,0.3437,1.9375,0.3437,1.9375,0.3437,1.875,0.375,1.875,0.3437,1.9375,0.375,1.875,0.375,1.9375,0.375,1.9375,0.375,1.875,0.4062,1.875,0.375,1.9375,0.4062,1.875,0.4062,1.9375,0.4062,1.9375,0.4062,1.875,0.4375,1.875,0.4062,1.9375,0.4375,1.875,0.4375,1.9375,0.4375,1.9375,0.4375,1.875,0.4688,1.875,0.4375,1.9375,0.4688,1.875,0.4688,1.9375,0.4688,1.9375,0.4688,1.875,0.5,1.875,0.4688,1.9375,0.5,1.875,0.5,1.9375,0.5,1.9375,0.5,1.875,0.5313,1.875,0.5,1.9375,0.5313,1.875,0.5313,1.9375,0.5313,1.9375,0.5313,1.875,0.5625,1.875,0.5313,1.9375,0.5625,1.875,0.5625,1.9375,0.5625,1.9375,0.5625,1.875,0.5938,1.875,0.5625,1.9375,0.5938,1.875,0.5938,1.9375,0.5938,1.9375,0.5938,1.875,0.625,1.875,0.5938,1.9375,0.625,1.875,0.625,1.9375,0.625,1.9375,0.625,1.875,0.6563,1.875,0.625,1.9375,0.6563,1.875,0.6563,1.9375,0.6563,1.9375,0.6563,1.875,0.6875,1.875,0.6563,1.9375,0.6875,1.875,0.6875,1.9375,0.6875,1.9375,0.6875,1.875,0.7188,1.875,0.6875,1.9375,0.7188,1.875,0.7188,1.9375,0.7188,1.9375,0.7188,1.875,0.75,1.875,0.7188,1.9375,0.75,1.875,0.75,1.9375,0.75,1.9375,0.75,1.875,0.7813,1.875,0.75,1.9375,0.7813,1.875,0.7813,1.9375,0.7813,1.9375,0.7813,1.875,0.8125,1.875,0.7813,1.9375,0.8125,1.875,0.8125,1.9375,0.8125,1.9375,0.8125,1.875,0.8438,1.875,0.8125,1.9375,0.8438,1.875,0.8438,1.9375,0.8438,1.9375,0.8438,1.875,0.875,1.875,0.8438,1.9375,0.875,1.875,0.875,1.9375,0.875,1.9375,0.875,1.875,0.9063,1.875,0.875,1.9375,0.9063,1.875,0.9063,1.9375,0.9063,1.9375,0.9063,1.875,0.9375,1.875,0.9063,1.9375,0.9375,1.875,0.9375,1.9375,0.9375,1.9375,0.9375,1.875,0.9688,1.875,0.9375,1.9375,0.9688,1.875,0.9688,1.9375,0.9688,1.9375,0.9688,1.875,1.0,1.875,0.9688,1.9375,1.0,1.875,1.0,1.9375,0.0,1.875,0.0,1.8125,0.0312,1.8125,0.0,1.875,0.0312,1.8125,0.0312,1.875,0.0312,1.875,0.0312,1.8125,0.0625,1.8125,0.0312,1.875,0.0625,1.8125,0.0625,1.875,0.0625,1.875,0.0625,1.8125,0.0938,1.8125,0.0625,1.875,0.0938,1.8125,0.0938,1.875,0.0938,1.875,0.0938,1.8125,0.125,1.8125,0.0938,1.875,0.125,1.8125,0.125,1.875,0.125,1.875,0.125,1.8125,0.1562,1.8125,0.125,1.875,0.1562,1.8125,0.1562,1.875,0.1562,1.875,0.1562,1.8125,0.1875,1.8125,0.1562,1.875,0.1875,1.8125,0.1875,1.875,0.1875,1.875,0.1875,1.8125,0.2187,1.8125,0.1875,1.875,0.2187,1.8125,0.2187,1.875,0.2187,1.875,0.2187,1.8125,0.25,1.8125,0.2187,1.875,0.25,1.8125,0.25,1.875,0.25,1.875,0.25,1.8125,0.2812,1.8125,0.25,1.875,0.2812,1.8125,0.2812,1.875,0.2812,1.875,0.2812,1.8125,0.3125,1.8125,0.2812,1.875,0.3125,1.8125,0.3125,1.875,0.3125,1.875,0.3125,1.8125,0.3437,1.8125,0.3125,1.875,0.3437,1.8125,0.3437,1.875,0.3437,1.875,0.3437,1.8125,0.375,1.8125,0.3437,1.875,0.375,1.8125,0.375,1.875,0.375,1.875,0.375,1.8125,0.4062,1.8125,0.375,1.875,0.4062,1.8125,0.4062,1.875,0.4062,1.875,0.4062,1.8125,0.4375,1.8125,0.4062,1.875,0.4375,1.8125,0.4375,1.875,0.4375,1.875,0.4375,1.8125,0.4688,1.8125,0.4375,1.875,0.4688,1.8125,0.4688,1.875,0.4688,1.875,0.4688,1.8125,0.5,1.8125,0.4688,1.875,0.5,1.8125,0.5,1.875,0.5,1.875,0.5,1.8125,0.5313,1.8125,0.5,1.875,0.5313,1.8125,0.5313,1.875,0.5313,1.875,0.5313,1.8125,0.5625,1.8125,0.5313,1.875,0.5625,1.8125,0.5625,1.875,0.5625,1.875,0.5625,1.8125,0.5938,1.8125,0.5625,1.875,0.5938,1.8125,0.5938,1.875,0.5938,1.875,0.5938,1.8125,0.625,1.8125,0.5938,1.875,0.625,1.8125,0.625,1.875,0.625,1.875,0.625,1.8125,0.6563,1.8125,0.625,1.875,0.6563,1.8125,0.6563,1.875,0.6563,1.875,0.6563,1.8125,0.6875,1.8125,0.6563,1.875,0.6875,1.8125,0.6875,1.875,0.6875,1.875,0.6875,1.8125,0.7188,1.8125,0.6875,1.875,0.7188,1.8125,0.7188,1.875,0.7188,1.875,0.7188,1.8125,0.75,1.8125,0.7188,1.875,0.75,1.8125,0.75,1.875,0.75,1.875,0.75,1.8125,0.7813,1.8125,0.75,1.875,0.7813,1.8125,0.7813,1.875,0.7813,1.875,0.7813,1.8125,0.8125,1.8125,0.7813,1.875,0.8125,1.8125,0.8125,1.875,0.8125,1.875,0.8125,1.8125,0.8438,1.8125,0.8125,1.875,0.8438,1.8125,0.8438,1.875,0.8438,1.875,0.8438,1.8125,0.875,1.8125,0.8438,1.875,0.875,1.8125,0.875,1.875,0.875,1.875,0.875,1.8125,0.9063,1.8125,0.875,1.875,0.9063,1.8125,0.9063,1.875,0.9063,1.875,0.9063,1.8125,0.9375,1.8125,0.9063,1.875,0.9375,1.8125,0.9375,1.875,0.9375,1.875,0.9375,1.8125,0.9688,1.8125,0.9375,1.875,0.9688,1.8125,0.9688,1.875,0.9688,1.875,0.9688,1.8125,1.0,1.8125,0.9688,1.875,1.0,1.8125,1.0,1.875,0.0,1.8125,0.0,1.75,0.0312,1.75,0.0,1.8125,0.0312,1.75,0.0312,1.8125,0.0312,1.8125,0.0312,1.75,0.0625,1.75,0.0312,1.8125,0.0625,1.75,0.0625,1.8125,0.0625,1.8125,0.0625,1.75,0.0938,1.75,0.0625,1.8125,0.0938,1.75,0.0938,1.8125,0.0938,1.8125,0.0938,1.75,0.125,1.75,0.0938,1.8125,0.125,1.75,0.125,1.8125,0.125,1.8125,0.125,1.75,0.1562,1.75,0.125,1.8125,0.1562,1.75,0.1562,1.8125,0.1562,1.8125,0.1562,1.75,0.1875,1.75,0.1562,1.8125,0.1875,1.75,0.1875,1.8125,0.1875,1.8125,0.1875,1.75,0.2187,1.75,0.1875,1.8125,0.2187,1.75,0.2187,1.8125,0.2187,1.8125,0.2187,1.75,0.25,1.75,0.2187,1.8125,0.25,1.75,0.25,1.8125,0.25,1.8125,0.25,1.75,0.2812,1.75,0.25,1.8125,0.2812,1.75,0.2812,1.8125,0.2812,1.8125,0.2812,1.75,0.3125,1.75,0.2812,1.8125,0.3125,1.75,0.3125,1.8125,0.3125,1.8125,0.3125,1.75,0.3437,1.75,0.3125,1.8125,0.3437,1.75,0.3437,1.8125,0.3437,1.8125,0.3437,1.75,0.375,1.75,0.3437,1.8125,0.375,1.75,0.375,1.8125,0.375,1.8125,0.375,1.75,0.4062,1.75,0.375,1.8125,0.4062,1.75,0.4062,1.8125,0.4062,1.8125,0.4062,1.75,0.4375,1.75,0.4062,1.8125,0.4375,1.75,0.4375,1.8125,0.4375,1.8125,0.4375,1.75,0.4688,1.75,0.4375,1.8125,0.4688,1.75,0.4688,1.8125,0.4688,1.8125,0.4688,1.75,0.5,1.75,0.4688,1.8125,0.5,1.75,0.5,1.8125,0.5,1.8125,0.5,1.75,0.5313,1.75,0.5,1.8125,0.5313,1.75,0.5313,1.8125,0.5313,1.8125,0.5313,1.75,0.5625,1.75,0.5313,1.8125,0.5625,1.75,0.5625,1.8125,0.5625,1.8125,0.5625,1.75,0.5938,1.75,0.5625,1.8125,0.5938,1.75,0.5938,1.8125,0.5938,1.8125,0.5938,1.75,0.625,1.75,0.5938,1.8125,0.625,1.75,0.625,1.8125,0.625,1.8125,0.625,1.75,0.6563,1.75,0.625,1.8125,0.6563,1.75,0.6563,1.8125,0.6563,1.8125,0.6563,1.75,0.6875,1.75,0.6563,1.8125,0.6875,1.75,0.6875,1.8125,0.6875,1.8125,0.6875,1.75,0.7188,1.75,0.6875,1.8125,0.7188,1.75,0.7188,1.8125,0.7188,1.8125,0.7188,1.75,0.75,1.75,0.7188,1.8125,0.75,1.75,0.75,1.8125,0.75,1.8125,0.75,1.75,0.7813,1.75,0.75,1.8125,0.7813,1.75,0.7813,1.8125,0.7813,1.8125,0.7813,1.75,0.8125,1.75,0.7813,1.8125,0.8125,1.75,0.8125,1.8125,0.8125,1.8125,0.8125,1.75,0.8438,1.75,0.8125,1.8125,0.8438,1.75,0.8438,1.8125,0.8438,1.8125,0.8438,1.75,0.875,1.75,0.8438,1.8125,0.875,1.75,0.875,1.8125,0.875,1.8125,0.875,1.75,0.9063,1.75,0.875,1.8125,0.9063,1.75,0.9063,1.8125,0.9063,1.8125,0.9063,1.75,0.9375,1.75,0.9063,1.8125,0.9375,1.75,0.9375,1.8125,0.9375,1.8125,0.9375,1.75,0.9688,1.75,0.9375,1.8125,0.9688,1.75,0.9688,1.8125,0.9688,1.8125,0.9688,1.75,1.0,1.75,0.9688,1.8125,1.0,1.75,1.0,1.8125,0.0,1.75,0.0,1.6875,0.0312,1.6875,0.0,1.75,0.0312,1.6875,0.0312,1.75,0.0312,1.75,0.0312,1.6875,0.0625,1.6875,0.0312,1.75,0.0625,1.6875,0.0625,1.75,0.0625,1.75,0.0625,1.6875,0.0938,1.6875,0.0625,1.75,0.0938,1.6875,0.0938,1.75,0.0938,1.75,0.0938,1.6875,0.125,1.6875,0.0938,1.75,0.125,1.6875,0.125,1.75,0.125,1.75,0.125,1.6875,0.1562,1.6875,0.125,1.75,0.1562,1.6875,0.1562,1.75,0.1562,1.75,0.1562,1.6875,0.1875,1.6875,0.1562,1.75,0.1875,1.6875,0.1875,1.75,0.1875,1.75,0.1875,1.6875,0.2187,1.6875,0.1875,1.75,0.2187,1.6875,0.2187,1.75,0.2187,1.75,0.2187,1.6875,0.25,1.6875,0.2187,1.75,0.25,1.6875,0.25,1.75,0.25,1.75,0.25,1.6875,0.2812,1.6875,0.25,1.75,0.2812,1.6875,0.2812,1.75,0.2812,1.75,0.2812,1.6875,0.3125,1.6875,0.2812,1.75,0.3125,1.6875,0.3125,1.75,0.3125,1.75,0.3125,1.6875,0.3437,1.6875,0.3125,1.75,0.3437,1.6875,0.3437,1.75,0.3437,1.75,0.3437,1.6875,0.375,1.6875,0.3437,1.75,0.375,1.6875,0.375,1.75,0.375,1.75,0.375,1.6875,0.4062,1.6875,0.375,1.75,0.4062,1.6875,0.4062,1.75,0.4062,1.75,0.4062,1.6875,0.4375,1.6875,0.4062,1.75,0.4375,1.6875,0.4375,1.75,0.4375,1.75,0.4375,1.6875,0.4688,1.6875,0.4375,1.75,0.4688,1.6875,0.4688,1.75,0.4688,1.75,0.4688,1.6875,0.5,1.6875,0.4688,1.75,0.5,1.6875,0.5,1.75,0.5,1.75,0.5,1.6875,0.5313,1.6875,0.5,1.75,0.5313,1.6875,0.5313,1.75,0.5313,1.75,0.5313,1.6875,0.5625,1.6875,0.5313,1.75,0.5625,1.6875,0.5625,1.75,0.5625,1.75,0.5625,1.6875,0.5938,1.6875,0.5625,1.75,0.5938,1.6875,0.5938,1.75,0.5938,1.75,0.5938,1.6875,0.625,1.6875,0.5938,1.75,0.625,1.6875,0.625,1.75,0.625,1.75,0.625,1.6875,0.6563,1.6875,0.625,1.75,0.6563,1.6875,0.6563,1.75,0.6563,1.75,0.6563,1.6875,0.6875,1.6875,0.6563,1.75,0.6875,1.6875,0.6875,1.75,0.6875,1.75,0.6875,1.6875,0.7188,1.6875,0.6875,1.75,0.7188,1.6875,0.7188,1.75,0.7188,1.75,0.7188,1.6875,0.75,1.6875,0.7188,1.75,0.75,1.6875,0.75,1.75,0.75,1.75,0.75,1.6875,0.7813,1.6875,0.75,1.75,0.7813,1.6875,0.7813,1.75,0.7813,1.75,0.7813,1.6875,0.8125,1.6875,0.7813,1.75,0.8125,1.6875,0.8125,1.75,0.8125,1.75,0.8125,1.6875,0.8438,1.6875,0.8125,1.75,0.8438,1.6875,0.8438,1.75,0.8438,1.75,0.8438,1.6875,0.875,1.6875,0.8438,1.75,0.875,1.6875,0.875,1.75,0.875,1.75,0.875,1.6875,0.9063,1.6875,0.875,1.75,0.9063,1.6875,0.9063,1.75,0.9063,1.75,0.9063,1.6875,0.9375,1.6875,0.9063,1.75,0.9375,1.6875,0.9375,1.75,0.9375,1.75,0.9375,1.6875,0.9688,1.6875,0.9375,1.75,0.9688,1.6875,0.9688,1.75,0.9688,1.75,0.9688,1.6875,1.0,1.6875,0.9688,1.75,1.0,1.6875,1.0,1.75,0.0,1.6875,0.0,1.625,0.0312,1.625,0.0,1.6875,0.0312,1.625,0.0312,1.6875,0.0312,1.6875,0.0312,1.625,0.0625,1.625,0.0312,1.6875,0.0625,1.625,0.0625,1.6875,0.0625,1.6875,0.0625,1.625,0.0938,1.625,0.0625,1.6875,0.0938,1.625,0.0938,1.6875,0.0938,1.6875,0.0938,1.625,0.125,1.625,0.0938,1.6875,0.125,1.625,0.125,1.6875,0.125,1.6875,0.125,1.625,0.1562,1.625,0.125,1.6875,0.1562,1.625,0.1562,1.6875,0.1562,1.6875,0.1562,1.625,0.1875,1.625,0.1562,1.6875,0.1875,1.625,0.1875,1.6875,0.1875,1.6875,0.1875,1.625,0.2187,1.625,0.1875,1.6875,0.2187,1.625,0.2187,1.6875,0.2187,1.6875,0.2187,1.625,0.25,1.625,0.2187,1.6875,0.25,1.625,0.25,1.6875,0.25,1.6875,0.25,1.625,0.2812,1.625,0.25,1.6875,0.2812,1.625,0.2812,1.6875,0.2812,1.6875,0.2812,1.625,0.3125,1.625,0.2812,1.6875,0.3125,1.625,0.3125,1.6875,0.3125,1.6875,0.3125,1.625,0.3437,1.625,0.3125,1.6875,0.3437,1.625,0.3437,1.6875,0.3437,1.6875,0.3437,1.625,0.375,1.625,0.3437,1.6875,0.375,1.625,0.375,1.6875,0.375,1.6875,0.375,1.625,0.4062,1.625,0.375,1.6875,0.4062,1.625,0.4062,1.6875,0.4062,1.6875,0.4062,1.625,0.4375,1.625,0.4062,1.6875,0.4375,1.625,0.4375,1.6875,0.4375,1.6875,0.4375,1.625,0.4688,1.625,0.4375,1.6875,0.4688,1.625,0.4688,1.6875,0.4688,1.6875,0.4688,1.625,0.5,1.625,0.4688,1.6875,0.5,1.625,0.5,1.6875,0.5,1.6875,0.5,1.625,0.5313,1.625,0.5,1.6875,0.5313,1.625,0.5313,1.6875,0.5313,1.6875,0.5313,1.625,0.5625,1.625,0.5313,1.6875,0.5625,1.625,0.5625,1.6875,0.5625,1.6875,0.5625,1.625,0.5938,1.625,0.5625,1.6875,0.5938,1.625,0.5938,1.6875,0.5938,1.6875,0.5938,1.625,0.625,1.625,0.5938,1.6875,0.625,1.625,0.625,1.6875,0.625,1.6875,0.625,1.625,0.6563,1.625,0.625,1.6875,0.6563,1.625,0.6563,1.6875,0.6563,1.6875,0.6563,1.625,0.6875,1.625,0.6563,1.6875,0.6875,1.625,0.6875,1.6875,0.6875,1.6875,0.6875,1.625,0.7188,1.625,0.6875,1.6875,0.7188,1.625,0.7188,1.6875,0.7188,1.6875,0.7188,1.625,0.75,1.625,0.7188,1.6875,0.75,1.625,0.75,1.6875,0.75,1.6875,0.75,1.625,0.7813,1.625,0.75,1.6875,0.7813,1.625,0.7813,1.6875,0.7813,1.6875,0.7813,1.625,0.8125,1.625,0.7813,1.6875,0.8125,1.625,0.8125,1.6875,0.8125,1.6875,0.8125,1.625,0.8438,1.625,0.8125,1.6875,0.8438,1.625,0.8438,1.6875,0.8438,1.6875,0.8438,1.625,0.875,1.625,0.8438,1.6875,0.875,1.625,0.875,1.6875,0.875,1.6875,0.875,1.625,0.9063,1.625,0.875,1.6875,0.9063,1.625,0.9063,1.6875,0.9063,1.6875,0.9063,1.625,0.9375,1.625,0.9063,1.6875,0.9375,1.625,0.9375,1.6875,0.9375,1.6875,0.9375,1.625,0.9688,1.625,0.9375,1.6875,0.9688,1.625,0.9688,1.6875,0.9688,1.6875,0.9688,1.625,1.0,1.625,0.9688,1.6875,1.0,1.625,1.0,1.6875,0.0,1.625,0.0,1.5625,0.0312,1.5625,0.0,1.625,0.0312,1.5625,0.0312,1.625,0.0312,1.625,0.0312,1.5625,0.0625,1.5625,0.0312,1.625,0.0625,1.5625,0.0625,1.625,0.0625,1.625,0.0625,1.5625,0.0938,1.5625,0.0625,1.625,0.0938,1.5625,0.0938,1.625,0.0938,1.625,0.0938,1.5625,0.125,1.5625,0.0938,1.625,0.125,1.5625,0.125,1.625,0.125,1.625,0.125,1.5625,0.1562,1.5625,0.125,1.625,0.1562,1.5625,0.1562,1.625,0.1562,1.625,0.1562,1.5625,0.1875,1.5625,0.1562,1.625,0.1875,1.5625,0.1875,1.625,0.1875,1.625,0.1875,1.5625,0.2187,1.5625,0.1875,1.625,0.2187,1.5625,0.2187,1.625,0.2187,1.625,0.2187,1.5625,0.25,1.5625,0.2187,1.625,0.25,1.5625,0.25,1.625,0.25,1.625,0.25,1.5625,0.2812,1.5625,0.25,1.625,0.2812,1.5625,0.2812,1.625,0.2812,1.625,0.2812,1.5625,0.3125,1.5625,0.2812,1.625,0.3125,1.5625,0.3125,1.625,0.3125,1.625,0.3125,1.5625,0.3437,1.5625,0.3125,1.625,0.3437,1.5625,0.3437,1.625,0.3437,1.625,0.3437,1.5625,0.375,1.5625,0.3437,1.625,0.375,1.5625,0.375,1.625,0.375,1.625,0.375,1.5625,0.4062,1.5625,0.375,1.625,0.4062,1.5625,0.4062,1.625,0.4062,1.625,0.4062,1.5625,0.4375,1.5625,0.4062,1.625,0.4375,1.5625,0.4375,1.625,0.4375,1.625,0.4375,1.5625,0.4688,1.5625,0.4375,1.625,0.4688,1.5625,0.4688,1.625,0.4688,1.625,0.4688,1.5625,0.5,1.5625,0.4688,1.625,0.5,1.5625,0.5,1.625,0.5,1.625,0.5,1.5625,0.5313,1.5625,0.5,1.625,0.5313,1.5625,0.5313,1.625,0.5313,1.625,0.5313,1.5625,0.5625,1.5625,0.5313,1.625,0.5625,1.5625,0.5625,1.625,0.5625,1.625,0.5625,1.5625,0.5938,1.5625,0.5625,1.625,0.5938,1.5625,0.5938,1.625,0.5938,1.625,0.5938,1.5625,0.625,1.5625,0.5938,1.625,0.625,1.5625,0.625,1.625,0.625,1.625,0.625,1.5625,0.6563,1.5625,0.625,1.625,0.6563,1.5625,0.6563,1.625,0.6563,1.625,0.6563,1.5625,0.6875,1.5625,0.6563,1.625,0.6875,1.5625,0.6875,1.625,0.6875,1.625,0.6875,1.5625,0.7188,1.5625,0.6875,1.625,0.7188,1.5625,0.7188,1.625,0.7188,1.625,0.7188,1.5625,0.75,1.5625,0.7188,1.625,0.75,1.5625,0.75,1.625,0.75,1.625,0.75,1.5625,0.7813,1.5625,0.75,1.625,0.7813,1.5625,0.7813,1.625,0.7813,1.625,0.7813,1.5625,0.8125,1.5625,0.7813,1.625,0.8125,1.5625,0.8125,1.625,0.8125,1.625,0.8125,1.5625,0.8438,1.5625,0.8125,1.625,0.8438,1.5625,0.8438,1.625,0.8438,1.625,0.8438,1.5625,0.875,1.5625,0.8438,1.625,0.875,1.5625,0.875,1.625,0.875,1.625,0.875,1.5625,0.9063,1.5625,0.875,1.625,0.9063,1.5625,0.9063,1.625,0.9063,1.625,0.9063,1.5625,0.9375,1.5625,0.9063,1.625,0.9375,1.5625,0.9375,1.625,0.9375,1.625,0.9375,1.5625,0.9688,1.5625,0.9375,1.625,0.9688,1.5625,0.9688,1.625,0.9688,1.625,0.9688,1.5625,1.0,1.5625,0.9688,1.625,1.0,1.5625,1.0,1.625,0.0,1.5625,0.0,1.5,0.0312,1.5,0.0,1.5625,0.0312,1.5,0.0312,1.5625,0.0312,1.5625,0.0312,1.5,0.0625,1.5,0.0312,1.5625,0.0625,1.5,0.0625,1.5625,0.0625,1.5625,0.0625,1.5,0.0938,1.5,0.0625,1.5625,0.0938,1.5,0.0938,1.5625,0.0938,1.5625,0.0938,1.5,0.125,1.5,0.0938,1.5625,0.125,1.5,0.125,1.5625,0.125,1.5625,0.125,1.5,0.1562,1.5,0.125,1.5625,0.1562,1.5,0.1562,1.5625,0.1562,1.5625,0.1562,1.5,0.1875,1.5,0.1562,1.5625,0.1875,1.5,0.1875,1.5625,0.1875,1.5625,0.1875,1.5,0.2187,1.5,0.1875,1.5625,0.2187,1.5,0.2187,1.5625,0.2187,1.5625,0.2187,1.5,0.25,1.5,0.2187,1.5625,0.25,1.5,0.25,1.5625,0.25,1.5625,0.25,1.5,0.2812,1.5,0.25,1.5625,0.2812,1.5,0.2812,1.5625,0.2812,1.5625,0.2812,1.5,0.3125,1.5,0.2812,1.5625,0.3125,1.5,0.3125,1.5625,0.3125,1.5625,0.3125,1.5,0.3437,1.5,0.3125,1.5625,0.3437,1.5,0.3437,1.5625,0.3437,1.5625,0.3437,1.5,0.375,1.5,0.3437,1.5625,0.375,1.5,0.375,1.5625,0.375,1.5625,0.375,1.5,0.4062,1.5,0.375,1.5625,0.4062,1.5,0.4062,1.5625,0.4062,1.5625,0.4062,1.5,0.4375,1.5,0.4062,1.5625,0.4375,1.5,0.4375,1.5625,0.4375,1.5625,0.4375,1.5,0.4688,1.5,0.4375,1.5625,0.4688,1.5,0.4688,1.5625,0.4688,1.5625,0.4688,1.5,0.5,1.5,0.4688,1.5625,0.5,1.5,0.5,1.5625,0.5,1.5625,0.5,1.5,0.5313,1.5,0.5,1.5625,0.5313,1.5,0.5313,1.5625,0.5313,1.5625,0.5313,1.5,0.5625,1.5,0.5313,1.5625,0.5625,1.5,0.5625,1.5625,0.5625,1.5625,0.5625,1.5,0.5938,1.5,0.5625,1.5625,0.5938,1.5,0.5938,1.5625,0.5938,1.5625,0.5938,1.5,0.625,1.5,0.5938,1.5625,0.625,1.5,0.625,1.5625,0.625,1.5625,0.625,1.5,0.6563,1.5,0.625,1.5625,0.6563,1.5,0.6563,1.5625,0.6563,1.5625,0.6563,1.5,0.6875,1.5,0.6563,1.5625,0.6875,1.5,0.6875,1.5625,0.6875,1.5625,0.6875,1.5,0.7188,1.5,0.6875,1.5625,0.7188,1.5,0.7188,1.5625,0.7188,1.5625,0.7188,1.5,0.75,1.5,0.7188,1.5625,0.75,1.5,0.75,1.5625,0.75,1.5625,0.75,1.5,0.7813,1.5,0.75,1.5625,0.7813,1.5,0.7813,1.5625,0.7813,1.5625,0.7813,1.5,0.8125,1.5,0.7813,1.5625,0.8125,1.5,0.8125,1.5625,0.8125,1.5625,0.8125,1.5,0.8438,1.5,0.8125,1.5625,0.8438,1.5,0.8438,1.5625,0.8438,1.5625,0.8438,1.5,0.875,1.5,0.8438,1.5625,0.875,1.5,0.875,1.5625,0.875,1.5625,0.875,1.5,0.9063,1.5,0.875,1.5625,0.9063,1.5,0.9063,1.5625,0.9063,1.5625,0.9063,1.5,0.9375,1.5,0.9063,1.5625,0.9375,1.5,0.9375,1.5625,0.9375,1.5625,0.9375,1.5,0.9688,1.5,0.9375,1.5625,0.9688,1.5,0.9688,1.5625,0.9688,1.5625,0.9688,1.5,1.0,1.5,0.9688,1.5625,1.0,1.5,1.0,1.5625,0.0,1.5,0.0,1.4375,0.0312,1.4375,0.0,1.5,0.0312,1.4375,0.0312,1.5,0.0312,1.5,0.0312,1.4375,0.0625,1.4375,0.0312,1.5,0.0625,1.4375,0.0625,1.5,0.0625,1.5,0.0625,1.4375,0.0938,1.4375,0.0625,1.5,0.0938,1.4375,0.0938,1.5,0.0938,1.5,0.0938,1.4375,0.125,1.4375,0.0938,1.5,0.125,1.4375,0.125,1.5,0.125,1.5,0.125,1.4375,0.1562,1.4375,0.125,1.5,0.1562,1.4375,0.1562,1.5,0.1562,1.5,0.1562,1.4375,0.1875,1.4375,0.1562,1.5,0.1875,1.4375,0.1875,1.5,0.1875,1.5,0.1875,1.4375,0.2187,1.4375,0.1875,1.5,0.2187,1.4375,0.2187,1.5,0.2187,1.5,0.2187,1.4375,0.25,1.4375,0.2187,1.5,0.25,1.4375,0.25,1.5,0.25,1.5,0.25,1.4375,0.2812,1.4375,0.25,1.5,0.2812,1.4375,0.2812,1.5,0.2812,1.5,0.2812,1.4375,0.3125,1.4375,0.2812,1.5,0.3125,1.4375,0.3125,1.5,0.3125,1.5,0.3125,1.4375,0.3437,1.4375,0.3125,1.5,0.3437,1.4375,0.3437,1.5,0.3437,1.5,0.3437,1.4375,0.375,1.4375,0.3437,1.5,0.375,1.4375,0.375,1.5,0.375,1.5,0.375,1.4375,0.4062,1.4375,0.375,1.5,0.4062,1.4375,0.4062,1.5,0.4062,1.5,0.4062,1.4375,0.4375,1.4375,0.4062,1.5,0.4375,1.4375,0.4375,1.5,0.4375,1.5,0.4375,1.4375,0.4688,1.4375,0.4375,1.5,0.4688,1.4375,0.4688,1.5,0.4688,1.5,0.4688,1.4375,0.5,1.4375,0.4688,1.5,0.5,1.4375,0.5,1.5,0.5,1.5,0.5,1.4375,0.5313,1.4375,0.5,1.5,0.5313,1.4375,0.5313,1.5,0.5313,1.5,0.5313,1.4375,0.5625,1.4375,0.5313,1.5,0.5625,1.4375,0.5625,1.5,0.5625,1.5,0.5625,1.4375,0.5938,1.4375,0.5625,1.5,0.5938,1.4375,0.5938,1.5,0.5938,1.5,0.5938,1.4375,0.625,1.4375,0.5938,1.5,0.625,1.4375,0.625,1.5,0.625,1.5,0.625,1.4375,0.6563,1.4375,0.625,1.5,0.6563,1.4375,0.6563,1.5,0.6563,1.5,0.6563,1.4375,0.6875,1.4375,0.6563,1.5,0.6875,1.4375,0.6875,1.5,0.6875,1.5,0.6875,1.4375,0.7188,1.4375,0.6875,1.5,0.7188,1.4375,0.7188,1.5,0.7188,1.5,0.7188,1.4375,0.75,1.4375,0.7188,1.5,0.75,1.4375,0.75,1.5,0.75,1.5,0.75,1.4375,0.7813,1.4375,0.75,1.5,0.7813,1.4375,0.7813,1.5,0.7813,1.5,0.7813,1.4375,0.8125,1.4375,0.7813,1.5,0.8125,1.4375,0.8125,1.5,0.8125,1.5,0.8125,1.4375,0.8438,1.4375,0.8125,1.5,0.8438,1.4375,0.8438,1.5,0.8438,1.5,0.8438,1.4375,0.875,1.4375,0.8438,1.5,0.875,1.4375,0.875,1.5,0.875,1.5,0.875,1.4375,0.9063,1.4375,0.875,1.5,0.9063,1.4375,0.9063,1.5,0.9063,1.5,0.9063,1.4375,0.9375,1.4375,0.9063,1.5,0.9375,1.4375,0.9375,1.5,0.9375,1.5,0.9375,1.4375,0.9688,1.4375,0.9375,1.5,0.9688,1.4375,0.9688,1.5,0.9688,1.5,0.9688,1.4375,1.0,1.4375,0.9688,1.5,1.0,1.4375,1.0,1.5,0.0,1.4375,0.0,1.375,0.0312,1.375,0.0,1.4375,0.0312,1.375,0.0312,1.4375,0.0312,1.4375,0.0312,1.375,0.0625,1.375,0.0312,1.4375,0.0625,1.375,0.0625,1.4375,0.0625,1.4375,0.0625,1.375,0.0938,1.375,0.0625,1.4375,0.0938,1.375,0.0938,1.4375,0.0938,1.4375,0.0938,1.375,0.125,1.375,0.0938,1.4375,0.125,1.375,0.125,1.4375,0.125,1.4375,0.125,1.375,0.1562,1.375,0.125,1.4375,0.1562,1.375,0.1562,1.4375,0.1562,1.4375,0.1562,1.375,0.1875,1.375,0.1562,1.4375,0.1875,1.375,0.1875,1.4375,0.1875,1.4375,0.1875,1.375,0.2187,1.375,0.1875,1.4375,0.2187,1.375,0.2187,1.4375,0.2187,1.4375,0.2187,1.375,0.25,1.375,0.2187,1.4375,0.25,1.375,0.25,1.4375,0.25,1.4375,0.25,1.375,0.2812,1.375,0.25,1.4375,0.2812,1.375,0.2812,1.4375,0.2812,1.4375,0.2812,1.375,0.3125,1.375,0.2812,1.4375,0.3125,1.375,0.3125,1.4375,0.3125,1.4375,0.3125,1.375,0.3437,1.375,0.3125,1.4375,0.3437,1.375,0.3437,1.4375,0.3437,1.4375,0.3437,1.375,0.375,1.375,0.3437,1.4375,0.375,1.375,0.375,1.4375,0.375,1.4375,0.375,1.375,0.4062,1.375,0.375,1.4375,0.4062,1.375,0.4062,1.4375,0.4062,1.4375,0.4062,1.375,0.4375,1.375,0.4062,1.4375,0.4375,1.375,0.4375,1.4375,0.4375,1.4375,0.4375,1.375,0.4688,1.375,0.4375,1.4375,0.4688,1.375,0.4688,1.4375,0.4688,1.4375,0.4688,1.375,0.5,1.375,0.4688,1.4375,0.5,1.375,0.5,1.4375,0.5,1.4375,0.5,1.375,0.5313,1.375,0.5,1.4375,0.5313,1.375,0.5313,1.4375,0.5313,1.4375,0.5313,1.375,0.5625,1.375,0.5313,1.4375,0.5625,1.375,0.5625,1.4375,0.5625,1.4375,0.5625,1.375,0.5938,1.375,0.5625,1.4375,0.5938,1.375,0.5938,1.4375,0.5938,1.4375,0.5938,1.375,0.625,1.375,0.5938,1.4375,0.625,1.375,0.625,1.4375,0.625,1.4375,0.625,1.375,0.6563,1.375,0.625,1.4375,0.6563,1.375,0.6563,1.4375,0.6563,1.4375,0.6563,1.375,0.6875,1.375,0.6563,1.4375,0.6875,1.375,0.6875,1.4375,0.6875,1.4375,0.6875,1.375,0.7188,1.375,0.6875,1.4375,0.7188,1.375,0.7188,1.4375,0.7188,1.4375,0.7188,1.375,0.75,1.375,0.7188,1.4375,0.75,1.375,0.75,1.4375,0.75,1.4375,0.75,1.375,0.7813,1.375,0.75,1.4375,0.7813,1.375,0.7813,1.4375,0.7813,1.4375,0.7813,1.375,0.8125,1.375,0.7813,1.4375,0.8125,1.375,0.8125,1.4375,0.8125,1.4375,0.8125,1.375,0.8438,1.375,0.8125,1.4375,0.8438,1.375,0.8438,1.4375,0.8438,1.4375,0.8438,1.375,0.875,1.375,0.8438,1.4375,0.875,1.375,0.875,1.4375,0.875,1.4375,0.875,1.375,0.9063,1.375,0.875,1.4375,0.9063,1.375,0.9063,1.4375,0.9063,1.4375,0.9063,1.375,0.9375,1.375,0.9063,1.4375,0.9375,1.375,0.9375,1.4375,0.9375,1.4375,0.9375,1.375,0.9688,1.375,0.9375,1.4375,0.9688,1.375,0.9688,1.4375,0.9688,1.4375,0.9688,1.375,1.0,1.375,0.9688,1.4375,1.0,1.375,1.0,1.4375,0.0,1.375,0.0,1.3125,0.0312,1.3125,0.0,1.375,0.0312,1.3125,0.0312,1.375,0.0312,1.375,0.0312,1.3125,0.0625,1.3125,0.0312,1.375,0.0625,1.3125,0.0625,1.375,0.0625,1.375,0.0625,1.3125,0.0938,1.3125,0.0625,1.375,0.0938,1.3125,0.0938,1.375,0.0938,1.375,0.0938,1.3125,0.125,1.3125,0.0938,1.375,0.125,1.3125,0.125,1.375,0.125,1.375,0.125,1.3125,0.1562,1.3125,0.125,1.375,0.1562,1.3125,0.1562,1.375,0.1562,1.375,0.1562,1.3125,0.1875,1.3125,0.1562,1.375,0.1875,1.3125,0.1875,1.375,0.1875,1.375,0.1875,1.3125,0.2187,1.3125,0.1875,1.375,0.2187,1.3125,0.2187,1.375,0.2187,1.375,0.2187,1.3125,0.25,1.3125,0.2187,1.375,0.25,1.3125,0.25,1.375,0.25,1.375,0.25,1.3125,0.2812,1.3125,0.25,1.375,0.2812,1.3125,0.2812,1.375,0.2812,1.375,0.2812,1.3125,0.3125,1.3125,0.2812,1.375,0.3125,1.3125,0.3125,1.375,0.3125,1.375,0.3125,1.3125,0.3437,1.3125,0.3125,1.375,0.3437,1.3125,0.3437,1.375,0.3437,1.375,0.3437,1.3125,0.375,1.3125,0.3437,1.375,0.375,1.3125,0.375,1.375,0.375,1.375,0.375,1.3125,0.4062,1.3125,0.375,1.375,0.4062,1.3125,0.4062,1.375,0.4062,1.375,0.4062,1.3125,0.4375,1.3125,0.4062,1.375,0.4375,1.3125,0.4375,1.375,0.4375,1.375,0.4375,1.3125,0.4688,1.3125,0.4375,1.375,0.4688,1.3125,0.4688,1.375,0.4688,1.375,0.4688,1.3125,0.5,1.3125,0.4688,1.375,0.5,1.3125,0.5,1.375,0.5,1.375,0.5,1.3125,0.5313,1.3125,0.5,1.375,0.5313,1.3125,0.5313,1.375,0.5313,1.375,0.5313,1.3125,0.5625,1.3125,0.5313,1.375,0.5625,1.3125,0.5625,1.375,0.5625,1.375,0.5625,1.3125,0.5938,1.3125,0.5625,1.375,0.5938,1.3125,0.5938,1.375,0.5938,1.375,0.5938,1.3125,0.625,1.3125,0.5938,1.375,0.625,1.3125,0.625,1.375,0.625,1.375,0.625,1.3125,0.6563,1.3125,0.625,1.375,0.6563,1.3125,0.6563,1.375,0.6563,1.375,0.6563,1.3125,0.6875,1.3125,0.6563,1.375,0.6875,1.3125,0.6875,1.375,0.6875,1.375,0.6875,1.3125,0.7188,1.3125,0.6875,1.375,0.7188,1.3125,0.7188,1.375,0.7188,1.375,0.7188,1.3125,0.75,1.3125,0.7188,1.375,0.75,1.3125,0.75,1.375,0.75,1.375,0.75,1.3125,0.7813,1.3125,0.75,1.375,0.7813,1.3125,0.7813,1.375,0.7813,1.375,0.7813,1.3125,0.8125,1.3125,0.7813,1.375,0.8125,1.3125,0.8125,1.375,0.8125,1.375,0.8125,1.3125,0.8438,1.3125,0.8125,1.375,0.8438,1.3125,0.8438,1.375,0.8438,1.375,0.8438,1.3125,0.875,1.3125,0.8438,1.375,0.875,1.3125,0.875,1.375,0.875,1.375,0.875,1.3125,0.9063,1.3125,0.875,1.375,0.9063,1.3125,0.9063,1.375,0.9063,1.375,0.9063,1.3125,0.9375,1.3125,0.9063,1.375,0.9375,1.3125,0.9375,1.375,0.9375,1.375,0.9375,1.3125,0.9688,1.3125,0.9375,1.375,0.9688,1.3125,0.9688,1.375,0.9688,1.375,0.9688,1.3125,1.0,1.3125,0.9688,1.375,1.0,1.3125,1.0,1.375,0.0,1.3125,0.0,1.25,0.0312,1.25,0.0,1.3125,0.0312,1.25,0.0312,1.3125,0.0312,1.3125,0.0312,1.25,0.0625,1.25,0.0312,1.3125,0.0625,1.25,0.0625,1.3125,0.0625,1.3125,0.0625,1.25,0.0938,1.25,0.0625,1.3125,0.0938,1.25,0.0938,1.3125,0.0938,1.3125,0.0938,1.25,0.125,1.25,0.0938,1.3125,0.125,1.25,0.125,1.3125,0.125,1.3125,0.125,1.25,0.1562,1.25,0.125,1.3125,0.1562,1.25,0.1562,1.3125,0.1562,1.3125,0.1562,1.25,0.1875,1.25,0.1562,1.3125,0.1875,1.25,0.1875,1.3125,0.1875,1.3125,0.1875,1.25,0.2187,1.25,0.1875,1.3125,0.2187,1.25,0.2187,1.3125,0.2187,1.3125,0.2187,1.25,0.25,1.25,0.2187,1.3125,0.25,1.25,0.25,1.3125,0.25,1.3125,0.25,1.25,0.2812,1.25,0.25,1.3125,0.2812,1.25,0.2812,1.3125,0.2812,1.3125,0.2812,1.25,0.3125,1.25,0.2812,1.3125,0.3125,1.25,0.3125,1.3125,0.3125,1.3125,0.3125,1.25,0.3437,1.25,0.3125,1.3125,0.3437,1.25,0.3437,1.3125,0.3437,1.3125,0.3437,1.25,0.375,1.25,0.3437,1.3125,0.375,1.25,0.375,1.3125,0.375,1.3125,0.375,1.25,0.4062,1.25,0.375,1.3125,0.4062,1.25,0.4062,1.3125,0.4062,1.3125,0.4062,1.25,0.4375,1.25,0.4062,1.3125,0.4375,1.25,0.4375,1.3125,0.4375,1.3125,0.4375,1.25,0.4688,1.25,0.4375,1.3125,0.4688,1.25,0.4688,1.3125,0.4688,1.3125,0.4688,1.25,0.5,1.25,0.4688,1.3125,0.5,1.25,0.5,1.3125,0.5,1.3125,0.5,1.25,0.5313,1.25,0.5,1.3125,0.5313,1.25,0.5313,1.3125,0.5313,1.3125,0.5313,1.25,0.5625,1.25,0.5313,1.3125,0.5625,1.25,0.5625,1.3125,0.5625,1.3125,0.5625,1.25,0.5938,1.25,0.5625,1.3125,0.5938,1.25,0.5938,1.3125,0.5938,1.3125,0.5938,1.25,0.625,1.25,0.5938,1.3125,0.625,1.25,0.625,1.3125,0.625,1.3125,0.625,1.25,0.6563,1.25,0.625,1.3125,0.6563,1.25,0.6563,1.3125,0.6563,1.3125,0.6563,1.25,0.6875,1.25,0.6563,1.3125,0.6875,1.25,0.6875,1.3125,0.6875,1.3125,0.6875,1.25,0.7188,1.25,0.6875,1.3125,0.7188,1.25,0.7188,1.3125,0.7188,1.3125,0.7188,1.25,0.75,1.25,0.7188,1.3125,0.75,1.25,0.75,1.3125,0.75,1.3125,0.75,1.25,0.7813,1.25,0.75,1.3125,0.7813,1.25,0.7813,1.3125,0.7813,1.3125,0.7813,1.25,0.8125,1.25,0.7813,1.3125,0.8125,1.25,0.8125,1.3125,0.8125,1.3125,0.8125,1.25,0.8438,1.25,0.8125,1.3125,0.8438,1.25,0.8438,1.3125,0.8438,1.3125,0.8438,1.25,0.875,1.25,0.8438,1.3125,0.875,1.25,0.875,1.3125,0.875,1.3125,0.875,1.25,0.9063,1.25,0.875,1.3125,0.9063,1.25,0.9063,1.3125,0.9063,1.3125,0.9063,1.25,0.9375,1.25,0.9063,1.3125,0.9375,1.25,0.9375,1.3125,0.9375,1.3125,0.9375,1.25,0.9688,1.25,0.9375,1.3125,0.9688,1.25,0.9688,1.3125,0.9688,1.3125,0.9688,1.25,1.0,1.25,0.9688,1.3125,1.0,1.25,1.0,1.3125,0.0,1.25,0.0,1.1875,0.0312,1.1875,0.0,1.25,0.0312,1.1875,0.0312,1.25,0.0312,1.25,0.0312,1.1875,0.0625,1.1875,0.0312,1.25,0.0625,1.1875,0.0625,1.25,0.0625,1.25,0.0625,1.1875,0.0938,1.1875,0.0625,1.25,0.0938,1.1875,0.0938,1.25,0.0938,1.25,0.0938,1.1875,0.125,1.1875,0.0938,1.25,0.125,1.1875,0.125,1.25,0.125,1.25,0.125,1.1875,0.1562,1.1875,0.125,1.25,0.1562,1.1875,0.1562,1.25,0.1562,1.25,0.1562,1.1875,0.1875,1.1875,0.1562,1.25,0.1875,1.1875,0.1875,1.25,0.1875,1.25,0.1875,1.1875,0.2187,1.1875,0.1875,1.25,0.2187,1.1875,0.2187,1.25,0.2187,1.25,0.2187,1.1875,0.25,1.1875,0.2187,1.25,0.25,1.1875,0.25,1.25,0.25,1.25,0.25,1.1875,0.2812,1.1875,0.25,1.25,0.2812,1.1875,0.2812,1.25,0.2812,1.25,0.2812,1.1875,0.3125,1.1875,0.2812,1.25,0.3125,1.1875,0.3125,1.25,0.3125,1.25,0.3125,1.1875,0.3437,1.1875,0.3125,1.25,0.3437,1.1875,0.3437,1.25,0.3437,1.25,0.3437,1.1875,0.375,1.1875,0.3437,1.25,0.375,1.1875,0.375,1.25,0.375,1.25,0.375,1.1875,0.4062,1.1875,0.375,1.25,0.4062,1.1875,0.4062,1.25,0.4062,1.25,0.4062,1.1875,0.4375,1.1875,0.4062,1.25,0.4375,1.1875,0.4375,1.25,0.4375,1.25,0.4375,1.1875,0.4688,1.1875,0.4375,1.25,0.4688,1.1875,0.4688,1.25,0.4688,1.25,0.4688,1.1875,0.5,1.1875,0.4688,1.25,0.5,1.1875,0.5,1.25,0.5,1.25,0.5,1.1875,0.5313,1.1875,0.5,1.25,0.5313,1.1875,0.5313,1.25,0.5313,1.25,0.5313,1.1875,0.5625,1.1875,0.5313,1.25,0.5625,1.1875,0.5625,1.25,0.5625,1.25,0.5625,1.1875,0.5938,1.1875,0.5625,1.25,0.5938,1.1875,0.5938,1.25,0.5938,1.25,0.5938,1.1875,0.625,1.1875,0.5938,1.25,0.625,1.1875,0.625,1.25,0.625,1.25,0.625,1.1875,0.6563,1.1875,0.625,1.25,0.6563,1.1875,0.6563,1.25,0.6563,1.25,0.6563,1.1875,0.6875,1.1875,0.6563,1.25,0.6875,1.1875,0.6875,1.25,0.6875,1.25,0.6875,1.1875,0.7188,1.1875,0.6875,1.25,0.7188,1.1875,0.7188,1.25,0.7188,1.25,0.7188,1.1875,0.75,1.1875,0.7188,1.25,0.75,1.1875,0.75,1.25,0.75,1.25,0.75,1.1875,0.7813,1.1875,0.75,1.25,0.7813,1.1875,0.7813,1.25,0.7813,1.25,0.7813,1.1875,0.8125,1.1875,0.7813,1.25,0.8125,1.1875,0.8125,1.25,0.8125,1.25,0.8125,1.1875,0.8438,1.1875,0.8125,1.25,0.8438,1.1875,0.8438,1.25,0.8438,1.25,0.8438,1.1875,0.875,1.1875,0.8438,1.25,0.875,1.1875,0.875,1.25,0.875,1.25,0.875,1.1875,0.9063,1.1875,0.875,1.25,0.9063,1.1875,0.9063,1.25,0.9063,1.25,0.9063,1.1875,0.9375,1.1875,0.9063,1.25,0.9375,1.1875,0.9375,1.25,0.9375,1.25,0.9375,1.1875,0.9688,1.1875,0.9375,1.25,0.9688,1.1875,0.9688,1.25,0.9688,1.25,0.9688,1.1875,1.0,1.1875,0.9688,1.25,1.0,1.1875,1.0,1.25,0.0,1.1875,0.0,1.125,0.0312,1.125,0.0,1.1875,0.0312,1.125,0.0312,1.1875,0.0312,1.1875,0.0312,1.125,0.0625,1.125,0.0312,1.1875,0.0625,1.125,0.0625,1.1875,0.0625,1.1875,0.0625,1.125,0.0938,1.125,0.0625,1.1875,0.0938,1.125,0.0938,1.1875,0.0938,1.1875,0.0938,1.125,0.125,1.125,0.0938,1.1875,0.125,1.125,0.125,1.1875,0.125,1.1875,0.125,1.125,0.1562,1.125,0.125,1.1875,0.1562,1.125,0.1562,1.1875,0.1562,1.1875,0.1562,1.125,0.1875,1.125,0.1562,1.1875,0.1875,1.125,0.1875,1.1875,0.1875,1.1875,0.1875,1.125,0.2187,1.125,0.1875,1.1875,0.2187,1.125,0.2187,1.1875,0.2187,1.1875,0.2187,1.125,0.25,1.125,0.2187,1.1875,0.25,1.125,0.25,1.1875,0.25,1.1875,0.25,1.125,0.2812,1.125,0.25,1.1875,0.2812,1.125,0.2812,1.1875,0.2812,1.1875,0.2812,1.125,0.3125,1.125,0.2812,1.1875,0.3125,1.125,0.3125,1.1875,0.3125,1.1875,0.3125,1.125,0.3437,1.125,0.3125,1.1875,0.3437,1.125,0.3437,1.1875,0.3437,1.1875,0.3437,1.125,0.375,1.125,0.3437,1.1875,0.375,1.125,0.375,1.1875,0.375,1.1875,0.375,1.125,0.4062,1.125,0.375,1.1875,0.4062,1.125,0.4062,1.1875,0.4062,1.1875,0.4062,1.125,0.4375,1.125,0.4062,1.1875,0.4375,1.125,0.4375,1.1875,0.4375,1.1875,0.4375,1.125,0.4688,1.125,0.4375,1.1875,0.4688,1.125,0.4688,1.1875,0.4688,1.1875,0.4688,1.125,0.5,1.125,0.4688,1.1875,0.5,1.125,0.5,1.1875,0.5,1.1875,0.5,1.125,0.5313,1.125,0.5,1.1875,0.5313,1.125,0.5313,1.1875,0.5313,1.1875,0.5313,1.125,0.5625,1.125,0.5313,1.1875,0.5625,1.125,0.5625,1.1875,0.5625,1.1875,0.5625,1.125,0.5938,1.125,0.5625,1.1875,0.5938,1.125,0.5938,1.1875,0.5938,1.1875,0.5938,1.125,0.625,1.125,0.5938,1.1875,0.625,1.125,0.625,1.1875,0.625,1.1875,0.625,1.125,0.6563,1.125,0.625,1.1875,0.6563,1.125,0.6563,1.1875,0.6563,1.1875,0.6563,1.125,0.6875,1.125,0.6563,1.1875,0.6875,1.125,0.6875,1.1875,0.6875,1.1875,0.6875,1.125,0.7188,1.125,0.6875,1.1875,0.7188,1.125,0.7188,1.1875,0.7188,1.1875,0.7188,1.125,0.75,1.125,0.7188,1.1875,0.75,1.125,0.75,1.1875,0.75,1.1875,0.75,1.125,0.7813,1.125,0.75,1.1875,0.7813,1.125,0.7813,1.1875,0.7813,1.1875,0.7813,1.125,0.8125,1.125,0.7813,1.1875,0.8125,1.125,0.8125,1.1875,0.8125,1.1875,0.8125,1.125,0.8438,1.125,0.8125,1.1875,0.8438,1.125,0.8438,1.1875,0.8438,1.1875,0.8438,1.125,0.875,1.125,0.8438,1.1875,0.875,1.125,0.875,1.1875,0.875,1.1875,0.875,1.125,0.9063,1.125,0.875,1.1875,0.9063,1.125,0.9063,1.1875,0.9063,1.1875,0.9063,1.125,0.9375,1.125,0.9063,1.1875,0.9375,1.125,0.9375,1.1875,0.9375,1.1875,0.9375,1.125,0.9688,1.125,0.9375,1.1875,0.9688,1.125,0.9688,1.1875,0.9688,1.1875,0.9688,1.125,1.0,1.125,0.9688,1.1875,1.0,1.125,1.0,1.1875,0.0,1.125,0.0,1.0625,0.0312,1.0625,0.0,1.125,0.0312,1.0625,0.0312,1.125,0.0312,1.125,0.0312,1.0625,0.0625,1.0625,0.0312,1.125,0.0625,1.0625,0.0625,1.125,0.0625,1.125,0.0625,1.0625,0.0938,1.0625,0.0625,1.125,0.0938,1.0625,0.0938,1.125,0.0938,1.125,0.0938,1.0625,0.125,1.0625,0.0938,1.125,0.125,1.0625,0.125,1.125,0.125,1.125,0.125,1.0625,0.1562,1.0625,0.125,1.125,0.1562,1.0625,0.1562,1.125,0.1562,1.125,0.1562,1.0625,0.1875,1.0625,0.1562,1.125,0.1875,1.0625,0.1875,1.125,0.1875,1.125,0.1875,1.0625,0.2187,1.0625,0.1875,1.125,0.2187,1.0625,0.2187,1.125,0.2187,1.125,0.2187,1.0625,0.25,1.0625,0.2187,1.125,0.25,1.0625,0.25,1.125,0.25,1.125,0.25,1.0625,0.2812,1.0625,0.25,1.125,0.2812,1.0625,0.2812,1.125,0.2812,1.125,0.2812,1.0625,0.3125,1.0625,0.2812,1.125,0.3125,1.0625,0.3125,1.125,0.3125,1.125,0.3125,1.0625,0.3437,1.0625,0.3125,1.125,0.3437,1.0625,0.3437,1.125,0.3437,1.125,0.3437,1.0625,0.375,1.0625,0.3437,1.125,0.375,1.0625,0.375,1.125,0.375,1.125,0.375,1.0625,0.4062,1.0625,0.375,1.125,0.4062,1.0625,0.4062,1.125,0.4062,1.125,0.4062,1.0625,0.4375,1.0625,0.4062,1.125,0.4375,1.0625,0.4375,1.125,0.4375,1.125,0.4375,1.0625,0.4688,1.0625,0.4375,1.125,0.4688,1.0625,0.4688,1.125,0.4688,1.125,0.4688,1.0625,0.5,1.0625,0.4688,1.125,0.5,1.0625,0.5,1.125,0.5,1.125,0.5,1.0625,0.5313,1.0625,0.5,1.125,0.5313,1.0625,0.5313,1.125,0.5313,1.125,0.5313,1.0625,0.5625,1.0625,0.5313,1.125,0.5625,1.0625,0.5625,1.125,0.5625,1.125,0.5625,1.0625,0.5938,1.0625,0.5625,1.125,0.5938,1.0625,0.5938,1.125,0.5938,1.125,0.5938,1.0625,0.625,1.0625,0.5938,1.125,0.625,1.0625,0.625,1.125,0.625,1.125,0.625,1.0625,0.6563,1.0625,0.625,1.125,0.6563,1.0625,0.6563,1.125,0.6563,1.125,0.6563,1.0625,0.6875,1.0625,0.6563,1.125,0.6875,1.0625,0.6875,1.125,0.6875,1.125,0.6875,1.0625,0.7188,1.0625,0.6875,1.125,0.7188,1.0625,0.7188,1.125,0.7188,1.125,0.7188,1.0625,0.75,1.0625,0.7188,1.125,0.75,1.0625,0.75,1.125,0.75,1.125,0.75,1.0625,0.7813,1.0625,0.75,1.125,0.7813,1.0625,0.7813,1.125,0.7813,1.125,0.7813,1.0625,0.8125,1.0625,0.7813,1.125,0.8125,1.0625,0.8125,1.125,0.8125,1.125,0.8125,1.0625,0.8438,1.0625,0.8125,1.125,0.8438,1.0625,0.8438,1.125,0.8438,1.125,0.8438,1.0625,0.875,1.0625,0.8438,1.125,0.875,1.0625,0.875,1.125,0.875,1.125,0.875,1.0625,0.9063,1.0625,0.875,1.125,0.9063,1.0625,0.9063,1.125,0.9063,1.125,0.9063,1.0625,0.9375,1.0625,0.9063,1.125,0.9375,1.0625,0.9375,1.125,0.9375,1.125,0.9375,1.0625,0.9688,1.0625,0.9375,1.125,0.9688,1.0625,0.9688,1.125,0.9688,1.125,0.9688,1.0625,1.0,1.0625,0.9688,1.125,1.0,1.0625,1.0,1.125,0.0,1.0,0.0312,1.0625,0.0,1.0625,0.0312,1.0,0.0625,1.0625,0.0312,1.0625,0.0625,1.0,0.0938,1.0625,0.0625,1.0625,0.0938,1.0,0.125,1.0625,0.0938,1.0625,0.125,1.0,0.1562,1.0625,0.125,1.0625,0.1562,1.0,0.1875,1.0625,0.1562,1.0625,0.1875,1.0,0.2187,1.0625,0.1875,1.0625,0.2187,1.0,0.25,1.0625,0.2187,1.0625,0.25,1.0,0.2812,1.0625,0.25,1.0625,0.2812,1.0,0.3125,1.0625,0.2812,1.0625,0.3125,1.0,0.3437,1.0625,0.3125,1.0625,0.3437,1.0,0.375,1.0625,0.3437,1.0625,0.375,1.0,0.4062,1.0625,0.375,1.0625,0.4062,1.0,0.4375,1.0625,0.4062,1.0625,0.4375,1.0,0.4688,1.0625,0.4375,1.0625,0.4688,1.0,0.5,1.0625,0.4688,1.0625,0.5,1.0,0.5313,1.0625,0.5,1.0625,0.5313,1.0,0.5625,1.0625,0.5313,1.0625,0.5625,1.0,0.5938,1.0625,0.5625,1.0625,0.5938,1.0,0.625,1.0625,0.5938,1.0625,0.625,1.0,0.6563,1.0625,0.625,1.0625,0.6563,1.0,0.6875,1.0625,0.6563,1.0625,0.6875,1.0,0.7188,1.0625,0.6875,1.0625,0.7188,1.0,0.75,1.0625,0.7188,1.0625,0.75,1.0,0.7813,1.0625,0.75,1.0625,0.7813,1.0,0.8125,1.0625,0.7813,1.0625,0.8125,1.0,0.8438,1.0625,0.8125,1.0625,0.8438,1.0,0.875,1.0625,0.8438,1.0625,0.875,1.0,0.9063,1.0625,0.875,1.0625,0.9063,1.0,0.9375,1.0625,0.9063,1.0625,0.9375,1.0,0.9688,1.0625,0.9375,1.0625,0.9688,1.0,1.0,1.0625,0.9688,1.0625],"uvs2":null,"colors":null,"hasVertexAlpha":false,"matricesIndices":null,"matricesWeights":null,"matricesIndicesExtra":null,"matricesWeightsExtra":null,"indices":[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,1984,1985,1986,1987,1988,1989,1990,1991,1992,1993,1994,1995,1996,1997,1998,1999,2000,2001,2002,2003,2004,2005,2006,2007,2008,2009,2010,2011,2012,2013,2014,2015,2016,2017,2018,2019,2020,2021,2022,2023,2024,2025,2026,2027,2028,2029,2030,2031,2032,2033,2034,2035,2036,2037,2038,2039,2040,2041,2042,2043,2044,2045,2046,2047,2048,2049,2050,2051,2052,2053,2054,2055,2056,2057,2058,2059,2060,2061,2062,2063,2064,2065,2066,2067,2068,2069,2070,2071,2072,2073,2074,2075,2076,2077,2078,2079,2080,2081,2082,2083,2084,2085,2086,2087,2088,2089,2090,2091,2092,2093,2094,2095,2096,2097,2098,2099,2100,2101,2102,2103,2104,2105,2106,2107,2108,2109,2110,2111,2112,2113,2114,2115,2116,2117,2118,2119,2120,2121,2122,2123,2124,2125,2126,2127,2128,2129,2130,2131,2132,2133,2134,2135,2136,2137,2138,2139,2140,2141,2142,2143,2144,2145,2146,2147,2148,2149,2150,2151,2152,2153,2154,2155,2156,2157,2158,2159,2160,2161,2162,2163,2164,2165,2166,2167,2168,2169,2170,2171,2172,2173,2174,2175,2176,2177,2178,2179,2180,2181,2182,2183,2184,2185,2186,2187,2188,2189,2190,2191,2192,2193,2194,2195,2196,2197,2198,2199,2200,2201,2202,2203,2204,2205,2206,2207,2208,2209,2210,2211,2212,2213,2214,2215,2216,2217,2218,2219,2220,2221,2222,2223,2224,2225,2226,2227,2228,2229,2230,2231,2232,2233,2234,2235,2236,2237,2238,2239,2240,2241,2242,2243,2244,2245,2246,2247,2248,2249,2250,2251,2252,2253,2254,2255,2256,2257,2258,2259,2260,2261,2262,2263,2264,2265,2266,2267,2268,2269,2270,2271,2272,2273,2274,2275,2276,2277,2278,2279,2280,2281,2282,2283,2284,2285,2286,2287,2288,2289,2290,2291,2292,2293,2294,2295,2296,2297,2298,2299,2300,2301,2302,2303,2304,2305,2306,2307,2308,2309,2310,2311,2312,2313,2314,2315,2316,2317,2318,2319,2320,2321,2322,2323,2324,2325,2326,2327,2328,2329,2330,2331,2332,2333,2334,2335,2336,2337,2338,2339,2340,2341,2342,2343,2344,2345,2346,2347,2348,2349,2350,2351,2352,2353,2354,2355,2356,2357,2358,2359,2360,2361,2362,2363,2364,2365,2366,2367,2368,2369,2370,2371,2372,2373,2374,2375,2376,2377,2378,2379,2380,2381,2382,2383,2384,2385,2386,2387,2388,2389,2390,2391,2392,2393,2394,2395,2396,2397,2398,2399,2400,2401,2402,2403,2404,2405,2406,2407,2408,2409,2410,2411,2412,2413,2414,2415,2416,2417,2418,2419,2420,2421,2422,2423,2424,2425,2426,2427,2428,2429,2430,2431,2432,2433,2434,2435,2436,2437,2438,2439,2440,2441,2442,2443,2444,2445,2446,2447,2448,2449,2450,2451,2452,2453,2454,2455,2456,2457,2458,2459,2460,2461,2462,2463,2464,2465,2466,2467,2468,2469,2470,2471,2472,2473,2474,2475,2476,2477,2478,2479,2480,2481,2482,2483,2484,2485,2486,2487,2488,2489,2490,2491,2492,2493,2494,2495,2496,2497,2498,2499,2500,2501,2502,2503,2504,2505,2506,2507,2508,2509,2510,2511,2512,2513,2514,2515,2516,2517,2518,2519,2520,2521,2522,2523,2524,2525,2526,2527,2528,2529,2530,2531,2532,2533,2534,2535,2536,2537,2538,2539,2540,2541,2542,2543,2544,2545,2546,2547,2548,2549,2550,2551,2552,2553,2554,2555,2556,2557,2558,2559,2560,2561,2562,2563,2564,2565,2566,2567,2568,2569,2570,2571,2572,2573,2574,2575,2576,2577,2578,2579,2580,2581,2582,2583,2584,2585,2586,2587,2588,2589,2590,2591,2592,2593,2594,2595,2596,2597,2598,2599,2600,2601,2602,2603,2604,2605,2606,2607,2608,2609,2610,2611,2612,2613,2614,2615,2616,2617,2618,2619,2620,2621,2622,2623,2624,2625,2626,2627,2628,2629,2630,2631,2632,2633,2634,2635,2636,2637,2638,2639,2640,2641,2642,2643,2644,2645,2646,2647,2648,2649,2650,2651,2652,2653,2654,2655,2656,2657,2658,2659,2660,2661,2662,2663,2664,2665,2666,2667,2668,2669,2670,2671,2672,2673,2674,2675,2676,2677,2678,2679,2680,2681,2682,2683,2684,2685,2686,2687,2688,2689,2690,2691,2692,2693,2694,2695,2696,2697,2698,2699,2700,2701,2702,2703,2704,2705,2706,2707,2708,2709,2710,2711,2712,2713,2714,2715,2716,2717,2718,2719,2720,2721,2722,2723,2724,2725,2726,2727,2728,2729,2730,2731,2732,2733,2734,2735,2736,2737,2738,2739,2740,2741,2742,2743,2744,2745,2746,2747,2748,2749,2750,2751,2752,2753,2754,2755,2756,2757,2758,2759,2760,2761,2762,2763,2764,2765,2766,2767,2768,2769,2770,2771,2772,2773,2774,2775,2776,2777,2778,2779,2780,2781,2782,2783,2784,2785,2786,2787,2788,2789,2790,2791,2792,2793,2794,2795,2796,2797,2798,2799,2800,2801,2802,2803,2804,2805,2806,2807,2808,2809,2810,2811,2812,2813,2814,2815,2816,2817,2818,2819,2820,2821,2822,2823,2824,2825,2826,2827,2828,2829,2830,2831,2832,2833,2834,2835,2836,2837,2838,2839,2840,2841,2842,2843,2844,2845,2846,2847,2848,2849,2850,2851,2852,2853,2854,2855,2856,2857,2858,2859,2860,2861,2862,2863,2864,2865,2866,2867,2868,2869,2870,2871,2872,2873,2874,2875,2876,2877,2878,2879],"receiveShadows":true,"infiniteDistance":false,"billboardMode":0,"visibility":1.0,"subMeshes":[{"materialIndex":0,"verticesStart":0,"verticesCount":2880,"indexStart":0,"indexCount":2880}],"instances":null,"skeletonId":-1,"numBoneInfluencers":4,"applyFog":true,"lodMeshIds":null,"lodDistances":null,"lodCoverages":null,"rotation":null,"scaling":[1.0,1.0,1.0],"rotationQuaternion":[0.0,0.0,0.0,1.0],"actions":null,"checkCollisions":false,"pickable":false,"showBoundingBox":false,"showSubMeshesBoundingBox":false,"alphaIndex":1000,"physicsImpostor":0,"physicsMass":0.0,"physicsFriction":0.0,"physicsRestitution":0.0,"name":"StandardSurfaceMesh","id":"57bbf667-4bf9-4453-8787-dd1f8673b543","parentId":null,"position":[6.0,0.0,0.0],"animations":[],"autoAnimate":true,"autoAnimateFrom":0,"autoAnimateTo":100,"autoAnimateLoop":true,"metadata":null}],"sounds":[],"materials":[{"customType":"BABYLON.StandardMaterial","ambient":[1.0,1.0,1.0],"diffuse":[1.0,0.0,0.0],"specular":[0.0,0.0,0.0],"emissive":[1.0,0.0,0.0],"specularPower":25.6,"diffuseTexture":null,"diffuseFresnelParameters":null,"ambientTexture":null,"opacityTexture":null,"opacityFresnelParameters":null,"reflectionTexture":null,"reflectionFresnelParameters":null,"emissiveTexture":null,"lightmapTexture":null,"useLightmapAsShadowmap":false,"emissiveFresnelParameters":null,"specularTexture":null,"bumpTexture":null,"useSpecularOverAlpha":true,"disableLighting":true,"useEmissiveAsIllumination":false,"linkEmissiveWithDiffuse":false,"twoSidedLighting":false,"useGlossinessFromSpecularMapAlpha":false,"name":"StandardMaterialUnlit","id":"814decf0-a4ea-454e-a404-277528478ef5","backFaceCulling":true,"wireframe":false,"alpha":1.0,"alphaMode":2,"maxSimultaneousLights":4,"metadata":{}},{"customType":"BABYLON.PBRMetallicRoughnessMaterial","baseColor":[0.0,1.0,0.0],"baseTexture":null,"metallic":0.0,"roughness":0.9,"metallicRoughnessTexture":null,"disableLighting":false,"invertNormalMapX":false,"invertNormalMapY":false,"normalTexture":null,"emissive":[0.0,0.0,0.0],"emissiveTexture":null,"occlusionStrength":1.0,"occlusionTexture":null,"transparencyMode":0,"doubleSided":false,"clearCoat":{"isEnabled":false,"intensity":1.0,"roughness":0.0,"indexOfRefraction":1.5,"texture":null,"bumpTexture":null,"isTintEnabled":false,"tintColor":[1.0,1.0,1.0],"tintThickness":1.0,"tintTexture":null},"_unlit":true,"name":"PhysicalMaterialUnlit","id":"e8d366dc-9a25-4d46-80f2-60a95ec88505","backFaceCulling":true,"wireframe":false,"alpha":1.0,"alphaMode":2,"maxSimultaneousLights":4,"metadata":{}},{"customType":"BABYLON.PBRMetallicRoughnessMaterial","baseColor":[0.0,0.0,0.8],"baseTexture":null,"metallic":0.0,"roughness":0.2,"metallicRoughnessTexture":null,"disableLighting":false,"invertNormalMapX":false,"invertNormalMapY":false,"normalTexture":null,"emissive":[0.0,0.0,0.0],"emissiveTexture":null,"occlusionStrength":1.0,"occlusionTexture":null,"transparencyMode":0,"doubleSided":false,"clearCoat":{"isEnabled":false,"intensity":1.0,"roughness":0.0,"indexOfRefraction":1.5,"texture":null,"bumpTexture":null,"isTintEnabled":false,"tintColor":[1.0,1.0,1.0],"tintThickness":1.0,"tintTexture":null},"_unlit":true,"name":"StandardSurfaceMaterialUnlit","id":"d5188421-5065-41b1-b3d7-2b3941fa022f","backFaceCulling":true,"wireframe":false,"alpha":1.0,"alphaMode":2,"maxSimultaneousLights":4,"metadata":{}}],"multiMaterials":[],"particleSystems":null,"lensFlareSystems":null,"shadowGenerators":[],"skeletons":[],"actions":null,"metadata":null,"workerCollisions":false}
\ No newline at end of file
diff --git a/3ds Max/Samples/babylon/CustomAttributes/CustomAttributes.MasterMesh.730e2753-eb4e-48a1-b445-9aed74763d95.babylonbinarymeshdata b/3ds Max/Samples/babylon/CustomAttributes/CustomAttributes.MasterMesh.730e2753-eb4e-48a1-b445-9aed74763d95.babylonbinarymeshdata
new file mode 100644
index 00000000..cdb1acbf
Binary files /dev/null and b/3ds Max/Samples/babylon/CustomAttributes/CustomAttributes.MasterMesh.730e2753-eb4e-48a1-b445-9aed74763d95.babylonbinarymeshdata differ
diff --git a/3ds Max/Samples/babylon/CustomAttributes/CustomAttributes.babylon b/3ds Max/Samples/babylon/CustomAttributes/CustomAttributes.babylon
new file mode 100644
index 00000000..7f71ca04
--- /dev/null
+++ b/3ds Max/Samples/babylon/CustomAttributes/CustomAttributes.babylon
@@ -0,0 +1 @@
+{"producer":{"name":"3dsmax","version":"2019","exporter_version":"1.5.0","file":"CustomAttributes.babylon"},"autoClear":true,"clearColor":[0.0,0.0,0.0],"ambientColor":[0.0,0.0,0.0],"fogMode":0,"fogColor":null,"fogStart":0.0,"fogEnd":0.0,"fogDensity":0.0,"gravity":[0.0,0.0,0.0],"physicsEngine":null,"physicsEnabled":false,"physicsGravity":null,"cameras":[{"isStereoscopicSideBySide":false,"lockedTargetId":"7a6d2ccd-8751-4519-beec-a95b0c38177c","type":"FreeCamera","rotation":[0.3482,-0.2012,0.0],"rotationQuaternion":[0.1723,-0.0989,0.0174,0.9799],"fov":0.6024,"minZ":0.1,"maxZ":10000.0,"speed":1.0,"inertia":0.9,"interaxialDistance":0.0637,"checkCollisions":false,"applyGravity":false,"ellipsoid":[0.0,0.0,0.0],"mode":0,"orthoLeft":null,"orthoRight":null,"orthoBottom":null,"orthoTop":null,"name":"Camera001","id":"29603712-f5f4-45e2-9a4b-20d80ba85c7e","parentId":null,"position":[1.0197,1.8523,-5.0],"animations":[],"autoAnimate":false,"autoAnimateFrom":0,"autoAnimateTo":0,"autoAnimateLoop":false,"metadata":{"myAngle":6.2832,"myArray":2,"myBoolean":true,"myColor":[0.9922,0.8667,0.0314],"myFloat":10.0,"myFRGBA":[0.9922,0.8667,0.0314,0.5],"myInteger":10,"myPercent":0.1,"MyString":"Hello","myTextureMap":{"name":"gradation_horizontal.jpg","level":1.0,"hasAlpha":true,"getAlphaFromRGB":false,"coordinatesMode":0,"isCube":false,"uOffset":0.0,"vOffset":0.0,"uScale":1.0,"vScale":-1.0,"uRotationCenter":0.0,"vRotationCenter":0.0,"wRotationCenter":0.5,"invertY":false,"uAng":0.0,"vAng":0.0,"wAng":0.0,"wrapU":1,"wrapV":1,"coordinatesIndex":0,"isRenderTarget":false,"renderTargetSize":0,"mirrorPlane":null,"renderList":null,"animations":[],"extensions":null,"samplingMode":3},"myWorldUnits":10.0}}],"activeCameraID":"29603712-f5f4-45e2-9a4b-20d80ba85c7e","lights":[{"direction":[-0.0868,-0.866,0.4924],"type":1,"diffuse":[1.0,1.0,1.0],"specular":[1.0,1.0,1.0],"intensity":1.0,"range":3.40282347E+38,"exponent":0.0,"angle":0.0,"groundColor":null,"excludedMeshesIds":[],"includedOnlyMeshesIds":[],"lightmapMode":null,"falloffType":null,"name":"DirectLight","id":"4998978b-8790-43f4-90b5-a871203cc57b","parentId":null,"position":[0.0,2.0,0.0],"animations":[],"autoAnimate":false,"autoAnimateFrom":0,"autoAnimateTo":0,"autoAnimateLoop":false,"metadata":{"myAngle":6.2832,"myArray":2,"myBoolean":true,"myColor":[0.9922,0.8667,0.0314],"myFloat":10.0,"myFRGBA":[0.9922,0.8667,0.0314,0.502],"myInteger":10,"myPercent":0.1,"MyString":"Hello","myTextureMap":{"name":"gradation_horizontal.jpg","level":1.0,"hasAlpha":true,"getAlphaFromRGB":false,"coordinatesMode":0,"isCube":false,"uOffset":0.0,"vOffset":0.0,"uScale":1.0,"vScale":-1.0,"uRotationCenter":0.0,"vRotationCenter":0.0,"wRotationCenter":0.5,"invertY":false,"uAng":0.0,"vAng":0.0,"wAng":0.0,"wrapU":1,"wrapV":1,"coordinatesIndex":0,"isRenderTarget":false,"renderTargetSize":0,"mirrorPlane":null,"renderList":null,"animations":[],"extensions":null,"samplingMode":3},"myWorldUnits":10.0}}],"meshes":[{"materialId":null,"isEnabled":true,"isVisible":true,"positions":null,"normals":null,"tangents":null,"uvs":null,"uvs2":null,"colors":null,"hasVertexAlpha":false,"matricesIndices":null,"matricesWeights":null,"matricesIndicesExtra":null,"matricesWeightsExtra":null,"indices":null,"receiveShadows":false,"infiniteDistance":false,"billboardMode":0,"visibility":1.0,"subMeshes":null,"instances":null,"skeletonId":-1,"numBoneInfluencers":4,"applyFog":false,"lodMeshIds":null,"lodDistances":null,"lodCoverages":null,"rotation":null,"scaling":[1.0,1.0,1.0],"rotationQuaternion":[0.0,0.0,0.0,1.0],"actions":null,"checkCollisions":false,"pickable":true,"showBoundingBox":false,"showSubMeshesBoundingBox":false,"alphaIndex":0,"physicsImpostor":0,"physicsMass":0.0,"physicsFriction":0.0,"physicsRestitution":0.0,"name":"Camera001.Target","id":"7a6d2ccd-8751-4519-beec-a95b0c38177c","parentId":null,"position":[0.0,0.0,0.0],"animations":[],"autoAnimate":true,"autoAnimateFrom":0,"autoAnimateTo":100,"autoAnimateLoop":true,"metadata":null},{"materialId":"169f7c62-dd59-41c8-ac31-d131b583e563","isEnabled":true,"isVisible":true,"positions":[-0.5,0.0,-0.5,-0.5,0.0,0.5,0.5,0.0,0.5,0.5,0.0,0.5,0.5,0.0,-0.5,-0.5,0.0,-0.5,-0.5,1.0,-0.5,0.5,1.0,-0.5,0.5,1.0,0.5,0.5,1.0,0.5,-0.5,1.0,0.5,-0.5,1.0,-0.5,-0.5,0.0,-0.5,0.5,0.0,-0.5,0.5,1.0,-0.5,0.5,1.0,-0.5,-0.5,1.0,-0.5,-0.5,0.0,-0.5,0.5,0.0,-0.5,0.5,0.0,0.5,0.5,1.0,0.5,0.5,1.0,0.5,0.5,1.0,-0.5,0.5,0.0,-0.5,0.5,0.0,0.5,-0.5,0.0,0.5,-0.5,1.0,0.5,-0.5,1.0,0.5,0.5,1.0,0.5,0.5,0.0,0.5,-0.5,0.0,0.5,-0.5,0.0,-0.5,-0.5,1.0,-0.5,-0.5,1.0,-0.5,-0.5,1.0,0.5,-0.5,0.0,0.5],"normals":[0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0],"tangents":null,"uvs":[1.0,1.0,1.0,2.0,0.0,2.0,0.0,2.0,0.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,2.0,1.0,2.0,0.0,2.0,0.0,1.0,0.0,1.0,1.0,1.0,1.0,2.0,1.0,2.0,0.0,2.0,0.0,1.0,0.0,1.0,1.0,1.0,1.0,2.0,1.0,2.0,0.0,2.0,0.0,1.0,0.0,1.0,1.0,1.0,1.0,2.0,1.0,2.0,0.0,2.0,0.0,1.0,0.0,1.0,1.0,1.0,1.0,2.0,1.0,2.0,0.0,2.0,0.0,1.0],"uvs2":null,"colors":null,"hasVertexAlpha":false,"matricesIndices":null,"matricesWeights":null,"matricesIndicesExtra":null,"matricesWeightsExtra":null,"indices":[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],"receiveShadows":true,"infiniteDistance":false,"billboardMode":0,"visibility":1.0,"subMeshes":[{"materialIndex":0,"verticesStart":0,"verticesCount":36,"indexStart":0,"indexCount":36}],"instances":[{"rotation":null,"scaling":[1.0,1.0,1.0],"rotationQuaternion":[0.0,0.0,0.0,1.0],"actions":null,"checkCollisions":false,"pickable":false,"showBoundingBox":false,"showSubMeshesBoundingBox":false,"alphaIndex":1000,"physicsImpostor":0,"physicsMass":0.0,"physicsFriction":0.0,"physicsRestitution":0.0,"name":"InstanceMesh","id":"2c43f650-0e93-4dcb-bc64-43db21436905","parentId":null,"position":[1.5051,-0.5,0.0],"animations":[],"autoAnimate":true,"autoAnimateFrom":0,"autoAnimateTo":100,"autoAnimateLoop":true,"metadata":{"myAngle":3.1416,"myArray":3,"myBoolean":true,"myColor":[0.0314,1.0,0.3059],"myFloat":20.0,"myFRGBA":[0.098,0.0314,1.0,0.5],"myInteger":20,"myPercent":0.2,"MyString":"Hi","myTextureMap":{"name":"gradation_vertical.jpg","level":1.0,"hasAlpha":true,"getAlphaFromRGB":false,"coordinatesMode":0,"isCube":false,"uOffset":0.0,"vOffset":0.0,"uScale":1.0,"vScale":-1.0,"uRotationCenter":0.0,"vRotationCenter":0.0,"wRotationCenter":0.5,"invertY":false,"uAng":0.0,"vAng":0.0,"wAng":0.0,"wrapU":1,"wrapV":1,"coordinatesIndex":0,"isRenderTarget":false,"renderTargetSize":0,"mirrorPlane":null,"renderList":null,"animations":[],"extensions":null,"samplingMode":3},"myWorldUnits":20.0}}],"skeletonId":-1,"numBoneInfluencers":4,"applyFog":true,"lodMeshIds":null,"lodDistances":null,"lodCoverages":null,"rotation":null,"scaling":[1.0,1.0,1.0],"rotationQuaternion":[0.0,0.0,0.0,1.0],"actions":null,"checkCollisions":false,"pickable":false,"showBoundingBox":false,"showSubMeshesBoundingBox":false,"alphaIndex":1000,"physicsImpostor":0,"physicsMass":0.0,"physicsFriction":0.0,"physicsRestitution":0.0,"name":"MasterMesh","id":"730e2753-eb4e-48a1-b445-9aed74763d95","parentId":null,"position":[0.0,-0.5,0.0],"animations":[],"autoAnimate":true,"autoAnimateFrom":0,"autoAnimateTo":100,"autoAnimateLoop":true,"metadata":{"myAngle":3.1416,"myArray":3,"myBoolean":true,"myColor":[0.0314,1.0,0.3059],"myFloat":20.0,"myFRGBA":[0.098,0.0314,1.0,0.5],"myInteger":20,"myPercent":0.2,"MyString":"Hi","myTextureMap":{"name":"gradation_vertical.jpg","level":1.0,"hasAlpha":true,"getAlphaFromRGB":false,"coordinatesMode":0,"isCube":false,"uOffset":0.0,"vOffset":0.0,"uScale":1.0,"vScale":-1.0,"uRotationCenter":0.0,"vRotationCenter":0.0,"wRotationCenter":0.5,"invertY":false,"uAng":0.0,"vAng":0.0,"wAng":0.0,"wrapU":1,"wrapV":1,"coordinatesIndex":0,"isRenderTarget":false,"renderTargetSize":0,"mirrorPlane":null,"renderList":null,"animations":[],"extensions":null,"samplingMode":3},"myWorldUnits":20.0}}],"sounds":[],"materials":[{"customType":"BABYLON.StandardMaterial","ambient":[1.0,0.0,0.0],"diffuse":[1.0,0.0,0.0],"specular":[0.0,0.0,0.0],"emissive":[0.0,0.0,0.0],"specularPower":25.6,"diffuseTexture":null,"diffuseFresnelParameters":null,"ambientTexture":null,"opacityTexture":null,"opacityFresnelParameters":null,"reflectionTexture":null,"reflectionFresnelParameters":null,"emissiveTexture":null,"lightmapTexture":null,"useLightmapAsShadowmap":false,"emissiveFresnelParameters":null,"specularTexture":null,"bumpTexture":null,"useSpecularOverAlpha":true,"disableLighting":false,"useEmissiveAsIllumination":false,"linkEmissiveWithDiffuse":true,"twoSidedLighting":false,"useGlossinessFromSpecularMapAlpha":false,"name":"MyMaterial","id":"169f7c62-dd59-41c8-ac31-d131b583e563","backFaceCulling":true,"wireframe":false,"alpha":1.0,"alphaMode":2,"maxSimultaneousLights":4,"metadata":{"myAngle":6.2832,"myArray":1,"myBoolean":true,"myColor":[0.9922,0.8667,0.0314],"myFloat":10.0,"myFRGBA":[0.9922,0.8667,0.0314,0.502],"myInteger":10,"myPercent":0.1,"MyString":"Hello","myTextureMap":{"name":"gradation_horizontal.jpg","level":1.0,"hasAlpha":true,"getAlphaFromRGB":false,"coordinatesMode":0,"isCube":false,"uOffset":0.0,"vOffset":0.0,"uScale":1.0,"vScale":-1.0,"uRotationCenter":0.0,"vRotationCenter":0.0,"wRotationCenter":0.5,"invertY":false,"uAng":0.0,"vAng":0.0,"wAng":0.0,"wrapU":1,"wrapV":1,"coordinatesIndex":0,"isRenderTarget":false,"renderTargetSize":0,"mirrorPlane":null,"renderList":null,"animations":[],"extensions":null,"samplingMode":3},"myWorldUnits":10.0}}],"multiMaterials":[],"particleSystems":null,"lensFlareSystems":null,"shadowGenerators":[],"skeletons":[],"actions":null,"metadata":null,"workerCollisions":false}
\ No newline at end of file
diff --git a/3ds Max/Samples/babylon/CustomAttributes/CustomAttributes.binary.babylon b/3ds Max/Samples/babylon/CustomAttributes/CustomAttributes.binary.babylon
new file mode 100644
index 00000000..f9f0f927
--- /dev/null
+++ b/3ds Max/Samples/babylon/CustomAttributes/CustomAttributes.binary.babylon
@@ -0,0 +1,649 @@
+{
+ "producer": {
+ "name": "3dsmax",
+ "version": "2019",
+ "exporter_version": "1.5.0",
+ "file": "CustomAttributes.babylon"
+ },
+ "autoClear": true,
+ "clearColor": [
+ 0.0,
+ 0.0,
+ 0.0
+ ],
+ "ambientColor": [
+ 0.0,
+ 0.0,
+ 0.0
+ ],
+ "fogMode": 0,
+ "fogColor": null,
+ "fogStart": 0.0,
+ "fogEnd": 0.0,
+ "fogDensity": 0.0,
+ "gravity": [
+ 0.0,
+ 0.0,
+ 0.0
+ ],
+ "physicsEngine": null,
+ "physicsEnabled": false,
+ "physicsGravity": null,
+ "cameras": [
+ {
+ "isStereoscopicSideBySide": false,
+ "lockedTargetId": "7a6d2ccd-8751-4519-beec-a95b0c38177c",
+ "type": "FreeCamera",
+ "rotation": [
+ 0.3482,
+ -0.2012,
+ 0.0
+ ],
+ "rotationQuaternion": [
+ 0.1723,
+ -0.0989,
+ 0.0174,
+ 0.9799
+ ],
+ "fov": 0.6024,
+ "minZ": 0.1,
+ "maxZ": 10000.0,
+ "speed": 1.0,
+ "inertia": 0.9,
+ "interaxialDistance": 0.0637,
+ "checkCollisions": false,
+ "applyGravity": false,
+ "ellipsoid": [
+ 0.0,
+ 0.0,
+ 0.0
+ ],
+ "mode": 0,
+ "orthoLeft": null,
+ "orthoRight": null,
+ "orthoBottom": null,
+ "orthoTop": null,
+ "name": "Camera001",
+ "id": "29603712-f5f4-45e2-9a4b-20d80ba85c7e",
+ "parentId": null,
+ "position": [
+ 1.0197,
+ 1.8523,
+ -5.0
+ ],
+ "animations": [],
+ "autoAnimate": false,
+ "autoAnimateFrom": 0,
+ "autoAnimateTo": 0,
+ "autoAnimateLoop": false,
+ "metadata": {
+ "myAngle": 6.2832,
+ "myArray": 2,
+ "myBoolean": true,
+ "myColor": [
+ 0.9922,
+ 0.8667,
+ 0.0314
+ ],
+ "myFloat": 10.0,
+ "myFRGBA": [
+ 0.9922,
+ 0.8667,
+ 0.0314,
+ 0.5
+ ],
+ "myInteger": 10,
+ "myPercent": 0.1,
+ "MyString": "Hello",
+ "myTextureMap": {
+ "name": "gradation_horizontal.jpg",
+ "level": 1.0,
+ "hasAlpha": true,
+ "getAlphaFromRGB": false,
+ "coordinatesMode": 0,
+ "isCube": false,
+ "uOffset": 0.0,
+ "vOffset": 0.0,
+ "uScale": 1.0,
+ "vScale": -1.0,
+ "uRotationCenter": 0.0,
+ "vRotationCenter": 0.0,
+ "wRotationCenter": 0.5,
+ "invertY": false,
+ "uAng": 0.0,
+ "vAng": 0.0,
+ "wAng": 0.0,
+ "wrapU": 1,
+ "wrapV": 1,
+ "coordinatesIndex": 0,
+ "isRenderTarget": false,
+ "renderTargetSize": 0,
+ "mirrorPlane": null,
+ "renderList": null,
+ "animations": [],
+ "extensions": null,
+ "samplingMode": 3
+ },
+ "myWorldUnits": 10.0
+ }
+ }
+ ],
+ "activeCameraID": "29603712-f5f4-45e2-9a4b-20d80ba85c7e",
+ "lights": [
+ {
+ "direction": [
+ -0.0868,
+ -0.866,
+ 0.4924
+ ],
+ "type": 1,
+ "diffuse": [
+ 1.0,
+ 1.0,
+ 1.0
+ ],
+ "specular": [
+ 1.0,
+ 1.0,
+ 1.0
+ ],
+ "intensity": 1.0,
+ "range": 3.40282347E+38,
+ "exponent": 0.0,
+ "angle": 0.0,
+ "groundColor": null,
+ "excludedMeshesIds": [],
+ "includedOnlyMeshesIds": [],
+ "lightmapMode": null,
+ "falloffType": null,
+ "name": "DirectLight",
+ "id": "4998978b-8790-43f4-90b5-a871203cc57b",
+ "parentId": null,
+ "position": [
+ 0.0,
+ 2.0,
+ 0.0
+ ],
+ "animations": [],
+ "autoAnimate": false,
+ "autoAnimateFrom": 0,
+ "autoAnimateTo": 0,
+ "autoAnimateLoop": false,
+ "metadata": {
+ "myAngle": 6.2832,
+ "myArray": 2,
+ "myBoolean": true,
+ "myColor": [
+ 0.9922,
+ 0.8667,
+ 0.0314
+ ],
+ "myFloat": 10.0,
+ "myFRGBA": [
+ 0.9922,
+ 0.8667,
+ 0.0314,
+ 0.502
+ ],
+ "myInteger": 10,
+ "myPercent": 0.1,
+ "MyString": "Hello",
+ "myTextureMap": {
+ "name": "gradation_horizontal.jpg",
+ "level": 1.0,
+ "hasAlpha": true,
+ "getAlphaFromRGB": false,
+ "coordinatesMode": 0,
+ "isCube": false,
+ "uOffset": 0.0,
+ "vOffset": 0.0,
+ "uScale": 1.0,
+ "vScale": -1.0,
+ "uRotationCenter": 0.0,
+ "vRotationCenter": 0.0,
+ "wRotationCenter": 0.5,
+ "invertY": false,
+ "uAng": 0.0,
+ "vAng": 0.0,
+ "wAng": 0.0,
+ "wrapU": 1,
+ "wrapV": 1,
+ "coordinatesIndex": 0,
+ "isRenderTarget": false,
+ "renderTargetSize": 0,
+ "mirrorPlane": null,
+ "renderList": null,
+ "animations": [],
+ "extensions": null,
+ "samplingMode": 3
+ },
+ "myWorldUnits": 10.0
+ }
+ }
+ ],
+ "meshes": [
+ {
+ "materialId": null,
+ "isEnabled": true,
+ "isVisible": true,
+ "positions": null,
+ "normals": null,
+ "tangents": null,
+ "uvs": null,
+ "uvs2": null,
+ "colors": null,
+ "hasVertexAlpha": false,
+ "matricesIndices": null,
+ "matricesWeights": null,
+ "matricesIndicesExtra": null,
+ "matricesWeightsExtra": null,
+ "indices": null,
+ "receiveShadows": false,
+ "infiniteDistance": false,
+ "billboardMode": 0,
+ "visibility": 1.0,
+ "subMeshes": null,
+ "instances": null,
+ "skeletonId": -1,
+ "numBoneInfluencers": 4,
+ "applyFog": false,
+ "lodMeshIds": null,
+ "lodDistances": null,
+ "lodCoverages": null,
+ "rotation": null,
+ "scaling": [
+ 1.0,
+ 1.0,
+ 1.0
+ ],
+ "rotationQuaternion": [
+ 0.0,
+ 0.0,
+ 0.0,
+ 1.0
+ ],
+ "actions": null,
+ "checkCollisions": false,
+ "pickable": true,
+ "showBoundingBox": false,
+ "showSubMeshesBoundingBox": false,
+ "alphaIndex": 0,
+ "physicsImpostor": 0,
+ "physicsMass": 0.0,
+ "physicsFriction": 0.0,
+ "physicsRestitution": 0.0,
+ "name": "Camera001.Target",
+ "id": "7a6d2ccd-8751-4519-beec-a95b0c38177c",
+ "parentId": null,
+ "position": [
+ 0.0,
+ 0.0,
+ 0.0
+ ],
+ "animations": [],
+ "autoAnimate": true,
+ "autoAnimateFrom": 0,
+ "autoAnimateTo": 100,
+ "autoAnimateLoop": true,
+ "metadata": null
+ },
+ {
+ "materialId": "169f7c62-dd59-41c8-ac31-d131b583e563",
+ "isEnabled": true,
+ "isVisible": true,
+ "positions": null,
+ "normals": null,
+ "tangents": null,
+ "uvs": null,
+ "uvs2": null,
+ "colors": null,
+ "hasVertexAlpha": false,
+ "matricesIndices": null,
+ "matricesWeights": null,
+ "matricesIndicesExtra": null,
+ "matricesWeightsExtra": null,
+ "indices": null,
+ "receiveShadows": true,
+ "infiniteDistance": false,
+ "billboardMode": 0,
+ "visibility": 1.0,
+ "subMeshes": null,
+ "instances": [
+ {
+ "rotation": null,
+ "scaling": [
+ 1.0,
+ 1.0,
+ 1.0
+ ],
+ "rotationQuaternion": [
+ 0.0,
+ 0.0,
+ 0.0,
+ 1.0
+ ],
+ "actions": null,
+ "checkCollisions": false,
+ "pickable": false,
+ "showBoundingBox": false,
+ "showSubMeshesBoundingBox": false,
+ "alphaIndex": 1000,
+ "physicsImpostor": 0,
+ "physicsMass": 0.0,
+ "physicsFriction": 0.0,
+ "physicsRestitution": 0.0,
+ "name": "InstanceMesh",
+ "id": "2c43f650-0e93-4dcb-bc64-43db21436905",
+ "parentId": null,
+ "position": [
+ 1.5051,
+ -0.5,
+ 0.0
+ ],
+ "animations": [],
+ "autoAnimate": true,
+ "autoAnimateFrom": 0,
+ "autoAnimateTo": 100,
+ "autoAnimateLoop": true,
+ "metadata": {
+ "myAngle": 3.1416,
+ "myArray": 3,
+ "myBoolean": true,
+ "myColor": [
+ 0.0314,
+ 1.0,
+ 0.3059
+ ],
+ "myFloat": 20.0,
+ "myFRGBA": [
+ 0.098,
+ 0.0314,
+ 1.0,
+ 0.5
+ ],
+ "myInteger": 20,
+ "myPercent": 0.2,
+ "MyString": "Hi",
+ "myTextureMap": {
+ "name": "gradation_vertical.jpg",
+ "level": 1.0,
+ "hasAlpha": true,
+ "getAlphaFromRGB": false,
+ "coordinatesMode": 0,
+ "isCube": false,
+ "uOffset": 0.0,
+ "vOffset": 0.0,
+ "uScale": 1.0,
+ "vScale": -1.0,
+ "uRotationCenter": 0.0,
+ "vRotationCenter": 0.0,
+ "wRotationCenter": 0.5,
+ "invertY": false,
+ "uAng": 0.0,
+ "vAng": 0.0,
+ "wAng": 0.0,
+ "wrapU": 1,
+ "wrapV": 1,
+ "coordinatesIndex": 0,
+ "isRenderTarget": false,
+ "renderTargetSize": 0,
+ "mirrorPlane": null,
+ "renderList": null,
+ "animations": [],
+ "extensions": null,
+ "samplingMode": 3
+ },
+ "myWorldUnits": 20.0
+ }
+ }
+ ],
+ "skeletonId": -1,
+ "numBoneInfluencers": 4,
+ "applyFog": true,
+ "lodMeshIds": null,
+ "lodDistances": null,
+ "lodCoverages": null,
+ "rotation": null,
+ "scaling": [
+ 1.0,
+ 1.0,
+ 1.0
+ ],
+ "rotationQuaternion": [
+ 0.0,
+ 0.0,
+ 0.0,
+ 1.0
+ ],
+ "actions": null,
+ "checkCollisions": false,
+ "pickable": false,
+ "showBoundingBox": false,
+ "showSubMeshesBoundingBox": false,
+ "alphaIndex": 1000,
+ "physicsImpostor": 0,
+ "physicsMass": 0.0,
+ "physicsFriction": 0.0,
+ "physicsRestitution": 0.0,
+ "name": "MasterMesh",
+ "id": "730e2753-eb4e-48a1-b445-9aed74763d95",
+ "parentId": null,
+ "position": [
+ 0.0,
+ -0.5,
+ 0.0
+ ],
+ "animations": [],
+ "autoAnimate": true,
+ "autoAnimateFrom": 0,
+ "autoAnimateTo": 100,
+ "autoAnimateLoop": true,
+ "metadata": {
+ "myAngle": 3.1416,
+ "myArray": 3,
+ "myBoolean": true,
+ "myColor": [
+ 0.0314,
+ 1.0,
+ 0.3059
+ ],
+ "myFloat": 20.0,
+ "myFRGBA": [
+ 0.098,
+ 0.0314,
+ 1.0,
+ 0.5
+ ],
+ "myInteger": 20,
+ "myPercent": 0.2,
+ "MyString": "Hi",
+ "myTextureMap": {
+ "name": "gradation_vertical.jpg",
+ "level": 1.0,
+ "hasAlpha": true,
+ "getAlphaFromRGB": false,
+ "coordinatesMode": 0,
+ "isCube": false,
+ "uOffset": 0.0,
+ "vOffset": 0.0,
+ "uScale": 1.0,
+ "vScale": -1.0,
+ "uRotationCenter": 0.0,
+ "vRotationCenter": 0.0,
+ "wRotationCenter": 0.5,
+ "invertY": false,
+ "uAng": 0.0,
+ "vAng": 0.0,
+ "wAng": 0.0,
+ "wrapU": 1,
+ "wrapV": 1,
+ "coordinatesIndex": 0,
+ "isRenderTarget": false,
+ "renderTargetSize": 0,
+ "mirrorPlane": null,
+ "renderList": null,
+ "animations": [],
+ "extensions": null,
+ "samplingMode": 3
+ },
+ "myWorldUnits": 20.0
+ },
+ "boundingBoxMinimum": [
+ -0.5,
+ 0.0,
+ -0.5
+ ],
+ "boundingBoxMaximum": [
+ 0.5,
+ 1.0,
+ 0.5
+ ],
+ "delayLoadingFile": "CustomAttributes.MasterMesh.730e2753-eb4e-48a1-b445-9aed74763d95.babylonbinarymeshdata",
+ "hasUVs": true,
+ "_binaryInfo": {
+ "positionsAttrDesc": {
+ "count": 108,
+ "stride": 3,
+ "offset": 0,
+ "dataType": 1
+ },
+ "normalsAttrDesc": {
+ "count": 108,
+ "stride": 3,
+ "offset": 432,
+ "dataType": 1
+ },
+ "uvsAttrDesc": {
+ "count": 72,
+ "stride": 2,
+ "offset": 864,
+ "dataType": 1
+ },
+ "indicesAttrDesc": {
+ "count": 36,
+ "stride": 1,
+ "offset": 1152,
+ "dataType": 0
+ },
+ "subMeshesAttrDesc": {
+ "count": 1,
+ "stride": 5,
+ "offset": 1296,
+ "dataType": 0
+ }
+ }
+ }
+ ],
+ "sounds": [],
+ "materials": [
+ {
+ "customType": "BABYLON.StandardMaterial",
+ "ambient": [
+ 1.0,
+ 0.0,
+ 0.0
+ ],
+ "diffuse": [
+ 1.0,
+ 0.0,
+ 0.0
+ ],
+ "specular": [
+ 0.0,
+ 0.0,
+ 0.0
+ ],
+ "emissive": [
+ 0.0,
+ 0.0,
+ 0.0
+ ],
+ "specularPower": 25.6,
+ "diffuseTexture": null,
+ "diffuseFresnelParameters": null,
+ "ambientTexture": null,
+ "opacityTexture": null,
+ "opacityFresnelParameters": null,
+ "reflectionTexture": null,
+ "reflectionFresnelParameters": null,
+ "emissiveTexture": null,
+ "lightmapTexture": null,
+ "useLightmapAsShadowmap": false,
+ "emissiveFresnelParameters": null,
+ "specularTexture": null,
+ "bumpTexture": null,
+ "useSpecularOverAlpha": true,
+ "disableLighting": false,
+ "useEmissiveAsIllumination": false,
+ "linkEmissiveWithDiffuse": true,
+ "twoSidedLighting": false,
+ "useGlossinessFromSpecularMapAlpha": false,
+ "name": "MyMaterial",
+ "id": "169f7c62-dd59-41c8-ac31-d131b583e563",
+ "backFaceCulling": true,
+ "wireframe": false,
+ "alpha": 1.0,
+ "alphaMode": 2,
+ "maxSimultaneousLights": 4,
+ "metadata": {
+ "myAngle": 6.2832,
+ "myArray": 1,
+ "myBoolean": true,
+ "myColor": [
+ 0.9922,
+ 0.8667,
+ 0.0314
+ ],
+ "myFloat": 10.0,
+ "myFRGBA": [
+ 0.9922,
+ 0.8667,
+ 0.0314,
+ 0.502
+ ],
+ "myInteger": 10,
+ "myPercent": 0.1,
+ "MyString": "Hello",
+ "myTextureMap": {
+ "name": "gradation_horizontal.jpg",
+ "level": 1.0,
+ "hasAlpha": true,
+ "getAlphaFromRGB": false,
+ "coordinatesMode": 0,
+ "isCube": false,
+ "uOffset": 0.0,
+ "vOffset": 0.0,
+ "uScale": 1.0,
+ "vScale": -1.0,
+ "uRotationCenter": 0.0,
+ "vRotationCenter": 0.0,
+ "wRotationCenter": 0.5,
+ "invertY": false,
+ "uAng": 0.0,
+ "vAng": 0.0,
+ "wAng": 0.0,
+ "wrapU": 1,
+ "wrapV": 1,
+ "coordinatesIndex": 0,
+ "isRenderTarget": false,
+ "renderTargetSize": 0,
+ "mirrorPlane": null,
+ "renderList": null,
+ "animations": [],
+ "extensions": null,
+ "samplingMode": 3
+ },
+ "myWorldUnits": 10.0
+ }
+ }
+ ],
+ "multiMaterials": [],
+ "particleSystems": null,
+ "lensFlareSystems": null,
+ "shadowGenerators": [],
+ "skeletons": [],
+ "actions": null,
+ "metadata": null,
+ "workerCollisions": false,
+ "useDelayedTextureLoading": true
+}
\ No newline at end of file
diff --git a/3ds Max/Samples/babylon/CustomAttributes/gradation_horizontal.jpg b/3ds Max/Samples/babylon/CustomAttributes/gradation_horizontal.jpg
new file mode 100644
index 00000000..7437068c
Binary files /dev/null and b/3ds Max/Samples/babylon/CustomAttributes/gradation_horizontal.jpg differ
diff --git a/3ds Max/Samples/babylon/CustomAttributes/gradation_vertical.jpg b/3ds Max/Samples/babylon/CustomAttributes/gradation_vertical.jpg
new file mode 100644
index 00000000..b6a0c78a
Binary files /dev/null and b/3ds Max/Samples/babylon/CustomAttributes/gradation_vertical.jpg differ
diff --git a/3ds Max/Samples/babylon/DoubleSidedMaterial/DoubleSidedMaterial.babylon b/3ds Max/Samples/babylon/DoubleSidedMaterial/DoubleSidedMaterial.babylon
new file mode 100644
index 00000000..12479563
--- /dev/null
+++ b/3ds Max/Samples/babylon/DoubleSidedMaterial/DoubleSidedMaterial.babylon
@@ -0,0 +1,451 @@
+{
+ "producer": {
+ "name": "3dsmax",
+ "version": "2019",
+ "exporter_version": "1.5.0",
+ "file": "DoubleSidedMaterial.babylon"
+ },
+ "autoClear": true,
+ "clearColor": [
+ 0.6902,
+ 0.9961,
+ 0.3608
+ ],
+ "ambientColor": [
+ 0,
+ 0,
+ 0
+ ],
+ "fogMode": 0,
+ "fogColor": null,
+ "fogStart": 0,
+ "fogEnd": 0,
+ "fogDensity": 0,
+ "gravity": [
+ 0,
+ 0,
+ 0
+ ],
+ "physicsEngine": null,
+ "physicsEnabled": false,
+ "physicsGravity": null,
+ "lights": [
+ {
+ "direction": [
+ 0,
+ 1,
+ 0
+ ],
+ "type": 3,
+ "diffuse": [
+ 1,
+ 1,
+ 1
+ ],
+ "specular": [
+ 1,
+ 1,
+ 1
+ ],
+ "intensity": 1,
+ "range": 3.40282347e+38,
+ "exponent": 0,
+ "angle": 0,
+ "groundColor": [
+ 0,
+ 0,
+ 0
+ ],
+ "excludedMeshesIds": null,
+ "includedOnlyMeshesIds": null,
+ "lightmapMode": null,
+ "falloffType": null,
+ "name": "Default light",
+ "id": "a276b59e-e9e6-412c-af98-b243b2c08724",
+ "parentId": null,
+ "position": [
+ 0,
+ 0,
+ 0
+ ],
+ "animations": null,
+ "autoAnimate": false,
+ "autoAnimateFrom": 0,
+ "autoAnimateTo": 0,
+ "autoAnimateLoop": false,
+ "metadata": null
+ }
+ ],
+ "meshes": [
+ {
+ "materialId": "86a29291-b1f3-4ccc-8bd6-0cfc5b095db0",
+ "isEnabled": true,
+ "isVisible": true,
+ "positions": [
+ -29.4439,
+ 0,
+ -25.3758,
+ 29.4439,
+ 0,
+ -25.3758,
+ 29.4439,
+ 0,
+ 25.3758,
+ 29.4439,
+ 0,
+ 25.3758,
+ -29.4439,
+ 0,
+ 25.3758,
+ -29.4439,
+ 0,
+ -25.3758,
+ -29.4439,
+ 0,
+ -25.3758,
+ 29.4439,
+ 0,
+ -25.3758,
+ 29.4439,
+ 0,
+ 25.3758,
+ 29.4439,
+ 0,
+ 25.3758,
+ -29.4439,
+ 0,
+ 25.3758,
+ -29.4439,
+ 0,
+ -25.3758
+ ],
+ "normals": [
+ 0,
+ 1,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ -1,
+ 0,
+ 0,
+ -1,
+ 0,
+ 0,
+ -1,
+ 0,
+ 0,
+ -1,
+ 0,
+ 0,
+ -1,
+ 0,
+ 0,
+ -1,
+ 0
+ ],
+ "tangents": null,
+ "uvs": [
+ 0,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 2,
+ 0,
+ 2,
+ 0,
+ 1,
+ 0,
+ 1,
+ 1,
+ 1,
+ 1,
+ 2,
+ 1,
+ 2,
+ 0,
+ 2,
+ 0,
+ 1
+ ],
+ "uvs2": null,
+ "colors": null,
+ "hasVertexAlpha": false,
+ "matricesIndices": null,
+ "matricesWeights": null,
+ "matricesIndicesExtra": null,
+ "matricesWeightsExtra": null,
+ "indices": [
+ 0,
+ 1,
+ 2,
+ 3,
+ 4,
+ 5,
+ 8,
+ 7,
+ 6,
+ 11,
+ 10,
+ 9
+ ],
+ "receiveShadows": true,
+ "infiniteDistance": false,
+ "billboardMode": 0,
+ "visibility": 1,
+ "subMeshes": [
+ {
+ "materialIndex": 0,
+ "verticesStart": 0,
+ "verticesCount": 6,
+ "indexStart": 0,
+ "indexCount": 6
+ },
+ {
+ "materialIndex": 1,
+ "verticesStart": 6,
+ "verticesCount": 6,
+ "indexStart": 6,
+ "indexCount": 6
+ }
+ ],
+ "instances": null,
+ "skeletonId": -1,
+ "numBoneInfluencers": 4,
+ "applyFog": true,
+ "lodMeshIds": null,
+ "lodDistances": null,
+ "lodCoverages": null,
+ "rotation": null,
+ "scaling": [
+ 1,
+ 1,
+ 1
+ ],
+ "rotationQuaternion": [
+ -0.5,
+ -0.5,
+ 0.5,
+ 0.5
+ ],
+ "actions": null,
+ "checkCollisions": false,
+ "pickable": false,
+ "showBoundingBox": false,
+ "showSubMeshesBoundingBox": false,
+ "alphaIndex": 1000,
+ "physicsImpostor": 0,
+ "physicsMass": 0,
+ "physicsFriction": 0,
+ "physicsRestitution": 0,
+ "name": "Plane001",
+ "id": "e768b969-6e9f-4488-8503-9f6040b2f7bb",
+ "parentId": null,
+ "position": [
+ 0,
+ 0,
+ 0
+ ],
+ "animations": [],
+ "autoAnimate": true,
+ "autoAnimateFrom": 0,
+ "autoAnimateTo": 100,
+ "autoAnimateLoop": true,
+ "metadata": null
+ }
+ ],
+ "sounds": [],
+ "materials": [
+ {
+ "customType": "BABYLON.StandardMaterial",
+ "ambient": [
+ 0.588,
+ 0.588,
+ 0.588
+ ],
+ "diffuse": [
+ 1,
+ 1,
+ 1
+ ],
+ "specular": [
+ 0,
+ 0,
+ 0
+ ],
+ "emissive": [
+ 0,
+ 0,
+ 0
+ ],
+ "specularPower": 25.6,
+ "diffuseTexture": {
+ "name": "TestImage.png",
+ "level": 1,
+ "hasAlpha": true,
+ "getAlphaFromRGB": false,
+ "coordinatesMode": 0,
+ "isCube": false,
+ "uOffset": 0,
+ "vOffset": 0,
+ "uScale": 1,
+ "vScale": -1,
+ "uRotationCenter": 0,
+ "vRotationCenter": 0,
+ "wRotationCenter": 0.5,
+ "invertY": false,
+ "uAng": 0,
+ "vAng": 0,
+ "wAng": 0,
+ "wrapU": 1,
+ "wrapV": 1,
+ "coordinatesIndex": 0,
+ "isRenderTarget": false,
+ "renderTargetSize": 0,
+ "mirrorPlane": null,
+ "renderList": null,
+ "animations": [],
+ "extensions": null,
+ "samplingMode": 3
+ },
+ "diffuseFresnelParameters": null,
+ "ambientTexture": null,
+ "opacityTexture": null,
+ "opacityFresnelParameters": null,
+ "reflectionTexture": null,
+ "reflectionFresnelParameters": null,
+ "emissiveTexture": null,
+ "lightmapTexture": null,
+ "useLightmapAsShadowmap": false,
+ "emissiveFresnelParameters": null,
+ "specularTexture": null,
+ "bumpTexture": null,
+ "useSpecularOverAlpha": true,
+ "disableLighting": false,
+ "useEmissiveAsIllumination": false,
+ "linkEmissiveWithDiffuse": true,
+ "twoSidedLighting": false,
+ "useGlossinessFromSpecularMapAlpha": false,
+ "name": "FrontMaterial",
+ "id": "80417467-df16-4851-89c4-f976ed16241f",
+ "backFaceCulling": true,
+ "wireframe": false,
+ "alpha": 1,
+ "alphaMode": 2,
+ "maxSimultaneousLights": 4,
+ "metadata": null
+ },
+ {
+ "customType": "BABYLON.StandardMaterial",
+ "ambient": [
+ 0.3686,
+ 0.0588,
+ 1
+ ],
+ "diffuse": [
+ 1,
+ 1,
+ 1
+ ],
+ "specular": [
+ 0,
+ 0,
+ 0
+ ],
+ "emissive": [
+ 0,
+ 0,
+ 0
+ ],
+ "specularPower": 25.6,
+ "diffuseTexture": {
+ "name": "Warhol.jpg",
+ "level": 1,
+ "hasAlpha": false,
+ "getAlphaFromRGB": false,
+ "coordinatesMode": 0,
+ "isCube": false,
+ "uOffset": 0,
+ "vOffset": 0,
+ "uScale": 1,
+ "vScale": -1,
+ "uRotationCenter": 0,
+ "vRotationCenter": 0,
+ "wRotationCenter": 0.5,
+ "invertY": false,
+ "uAng": 0,
+ "vAng": 0,
+ "wAng": 0,
+ "wrapU": 1,
+ "wrapV": 1,
+ "coordinatesIndex": 0,
+ "isRenderTarget": false,
+ "renderTargetSize": 0,
+ "mirrorPlane": null,
+ "renderList": null,
+ "animations": [],
+ "extensions": null,
+ "samplingMode": 3
+ },
+ "diffuseFresnelParameters": null,
+ "ambientTexture": null,
+ "opacityTexture": null,
+ "opacityFresnelParameters": null,
+ "reflectionTexture": null,
+ "reflectionFresnelParameters": null,
+ "emissiveTexture": null,
+ "lightmapTexture": null,
+ "useLightmapAsShadowmap": false,
+ "emissiveFresnelParameters": null,
+ "specularTexture": null,
+ "bumpTexture": null,
+ "useSpecularOverAlpha": true,
+ "disableLighting": false,
+ "useEmissiveAsIllumination": false,
+ "linkEmissiveWithDiffuse": true,
+ "twoSidedLighting": false,
+ "useGlossinessFromSpecularMapAlpha": false,
+ "name": "BackMaterial",
+ "id": "a3520d10-10fb-48d2-bb35-a578e475d9ee",
+ "backFaceCulling": true,
+ "wireframe": false,
+ "alpha": 1,
+ "alphaMode": 2,
+ "maxSimultaneousLights": 4,
+ "metadata": null
+ }
+ ],
+ "multiMaterials": [
+ {
+ "name": "DoubleSidedMaterial",
+ "id": "86a29291-b1f3-4ccc-8bd6-0cfc5b095db0",
+ "materials": [
+ "80417467-df16-4851-89c4-f976ed16241f",
+ "a3520d10-10fb-48d2-bb35-a578e475d9ee"
+ ]
+ }
+ ],
+ "particleSystems": null,
+ "lensFlareSystems": null,
+ "shadowGenerators": [],
+ "skeletons": [],
+ "actions": null,
+ "metadata": null,
+ "workerCollisions": false
+}
\ No newline at end of file
diff --git a/3ds Max/Samples/babylon/DoubleSidedMaterial/TestImage.png b/3ds Max/Samples/babylon/DoubleSidedMaterial/TestImage.png
new file mode 100644
index 00000000..a951b93f
Binary files /dev/null and b/3ds Max/Samples/babylon/DoubleSidedMaterial/TestImage.png differ
diff --git a/3ds Max/Samples/babylon/DoubleSidedMaterial/Warhol.jpg b/3ds Max/Samples/babylon/DoubleSidedMaterial/Warhol.jpg
new file mode 100644
index 00000000..a4a365c8
Binary files /dev/null and b/3ds Max/Samples/babylon/DoubleSidedMaterial/Warhol.jpg differ
diff --git a/3ds Max/Samples/glTF 2.0/BabylonMaterialAttributes/BackfaceCulling.bin b/3ds Max/Samples/glTF 2.0/BabylonMaterialAttributes/BackfaceCulling.bin
new file mode 100644
index 00000000..b9b82cb0
Binary files /dev/null and b/3ds Max/Samples/glTF 2.0/BabylonMaterialAttributes/BackfaceCulling.bin differ
diff --git a/3ds Max/Samples/glTF 2.0/BabylonMaterialAttributes/BackfaceCulling.gltf b/3ds Max/Samples/glTF 2.0/BabylonMaterialAttributes/BackfaceCulling.gltf
new file mode 100644
index 00000000..5214a9e0
--- /dev/null
+++ b/3ds Max/Samples/glTF 2.0/BabylonMaterialAttributes/BackfaceCulling.gltf
@@ -0,0 +1 @@
+{"asset":{"version":"2.0","generator":"babylon.js glTF exporter for 3dsmax 2019 v1.5.0"},"scene":0,"scenes":[{"nodes":[0,1,2,3,4,5,6],"extensions":{}}],"nodes":[{"mesh":0,"translation":[0.0,0.0,0.0],"rotation":[0.0,0.0,0.0,1.0],"scale":[1.0,1.0,1.0],"name":"StandardMeshBackfaceCullingOn"},{"mesh":1,"translation":[3.0,0.0,0.0],"rotation":[0.0,0.0,0.0,1.0],"scale":[1.0,1.0,1.0],"name":"PhysicalMeshBackfaceCullingOn"},{"mesh":2,"translation":[6.0,0.0,0.0],"rotation":[0.0,0.0,0.0,1.0],"scale":[1.0,1.0,1.0],"name":"StandardArnoldMeshBackfaceCullingOn"},{"mesh":3,"translation":[3.0,0.0,-3.56341171],"rotation":[0.0,0.0,0.0,1.0],"scale":[1.0,1.0,1.0],"name":"PhysicalMeshBackfaceCullingOff"},{"mesh":4,"translation":[6.0,0.0,-3.56341171],"rotation":[0.0,0.0,0.0,1.0],"scale":[1.0,1.0,1.0],"name":"StandardArnoldMeshBackfaceCullingOff"},{"mesh":5,"translation":[0.0,0.0,-3.56341171],"rotation":[0.0,0.0,0.0,1.0],"scale":[1.0,1.0,1.0],"name":"StandardMeshBackfaceCullingOff"},{"translation":[0.0,0.0,0.0],"rotation":[0.0,0.0,0.0,1.0],"scale":[1.0,1.0,1.0],"name":"Default light"}],"meshes":[{"primitives":[{"attributes":{"POSITION":1,"NORMAL":2,"TEXCOORD_0":3},"indices":0,"mode":4,"material":0}],"name":"StandardMeshBackfaceCullingOn"},{"primitives":[{"attributes":{"POSITION":5,"NORMAL":6,"TEXCOORD_0":7},"indices":4,"mode":4,"material":1}],"name":"PhysicalMeshBackfaceCullingOn"},{"primitives":[{"attributes":{"POSITION":9,"NORMAL":10,"TEXCOORD_0":11},"indices":8,"mode":4,"material":2}],"name":"StandardArnoldMeshBackfaceCullingOn"},{"primitives":[{"attributes":{"POSITION":13,"NORMAL":14,"TEXCOORD_0":15},"indices":12,"mode":4,"material":3}],"name":"PhysicalMeshBackfaceCullingOff"},{"primitives":[{"attributes":{"POSITION":17,"NORMAL":18,"TEXCOORD_0":19},"indices":16,"mode":4,"material":4}],"name":"StandardArnoldMeshBackfaceCullingOff"},{"primitives":[{"attributes":{"POSITION":21,"NORMAL":22,"TEXCOORD_0":23},"indices":20,"mode":4,"material":5}],"name":"StandardMeshBackfaceCullingOff"}],"accessors":[{"bufferView":0,"componentType":5123,"count":1440,"type":"SCALAR","name":"accessorIndices"},{"bufferView":1,"componentType":5126,"count":1440,"max":[9.655992E-07,1.0,1.0],"min":[-1.0,-1.0,-1.0],"type":"VEC3","name":"accessorPositions"},{"bufferView":1,"byteOffset":17280,"componentType":5126,"count":1440,"type":"VEC3","name":"accessorNormals"},{"bufferView":2,"componentType":5126,"count":1440,"type":"VEC2","name":"accessorUVs"},{"bufferView":0,"byteOffset":2880,"componentType":5123,"count":1440,"type":"SCALAR","name":"accessorIndices"},{"bufferView":1,"byteOffset":34560,"componentType":5126,"count":1440,"max":[9.655992E-07,1.0,1.0],"min":[-1.0,-1.0,-1.0],"type":"VEC3","name":"accessorPositions"},{"bufferView":1,"byteOffset":51840,"componentType":5126,"count":1440,"type":"VEC3","name":"accessorNormals"},{"bufferView":2,"byteOffset":11520,"componentType":5126,"count":1440,"type":"VEC2","name":"accessorUVs"},{"bufferView":0,"byteOffset":5760,"componentType":5123,"count":1440,"type":"SCALAR","name":"accessorIndices"},{"bufferView":1,"byteOffset":69120,"componentType":5126,"count":1440,"max":[9.655992E-07,1.0,1.0],"min":[-1.0,-1.0,-1.0],"type":"VEC3","name":"accessorPositions"},{"bufferView":1,"byteOffset":86400,"componentType":5126,"count":1440,"type":"VEC3","name":"accessorNormals"},{"bufferView":2,"byteOffset":23040,"componentType":5126,"count":1440,"type":"VEC2","name":"accessorUVs"},{"bufferView":0,"byteOffset":8640,"componentType":5123,"count":1440,"type":"SCALAR","name":"accessorIndices"},{"bufferView":1,"byteOffset":103680,"componentType":5126,"count":1440,"max":[9.655992E-07,1.0,1.0],"min":[-1.0,-1.0,-1.0],"type":"VEC3","name":"accessorPositions"},{"bufferView":1,"byteOffset":120960,"componentType":5126,"count":1440,"type":"VEC3","name":"accessorNormals"},{"bufferView":2,"byteOffset":34560,"componentType":5126,"count":1440,"type":"VEC2","name":"accessorUVs"},{"bufferView":0,"byteOffset":11520,"componentType":5123,"count":1440,"type":"SCALAR","name":"accessorIndices"},{"bufferView":1,"byteOffset":138240,"componentType":5126,"count":1440,"max":[9.655992E-07,1.0,1.0],"min":[-1.0,-1.0,-1.0],"type":"VEC3","name":"accessorPositions"},{"bufferView":1,"byteOffset":155520,"componentType":5126,"count":1440,"type":"VEC3","name":"accessorNormals"},{"bufferView":2,"byteOffset":46080,"componentType":5126,"count":1440,"type":"VEC2","name":"accessorUVs"},{"bufferView":0,"byteOffset":14400,"componentType":5123,"count":1440,"type":"SCALAR","name":"accessorIndices"},{"bufferView":1,"byteOffset":172800,"componentType":5126,"count":1440,"max":[9.655992E-07,1.0,1.0],"min":[-1.0,-1.0,-1.0],"type":"VEC3","name":"accessorPositions"},{"bufferView":1,"byteOffset":190080,"componentType":5126,"count":1440,"type":"VEC3","name":"accessorNormals"},{"bufferView":2,"byteOffset":57600,"componentType":5126,"count":1440,"type":"VEC2","name":"accessorUVs"}],"bufferViews":[{"buffer":0,"byteLength":17280,"name":"bufferViewScalar"},{"buffer":0,"byteOffset":17280,"byteLength":207360,"byteStride":12,"name":"bufferViewFloatVec3"},{"buffer":0,"byteOffset":224640,"byteLength":69120,"byteStride":8,"name":"bufferViewFloatVec2"}],"buffers":[{"uri":"BackfaceCulling.bin","byteLength":293760}],"materials":[{"pbrMetallicRoughness":{"baseColorFactor":[0.5,0.0,0.0,1.0],"metallicFactor":0.0,"roughnessFactor":0.450053632},"emissiveFactor":[0.0,0.0,0.0],"alphaMode":"OPAQUE","name":"StandardMaterialBackfaceCullingOn"},{"pbrMetallicRoughness":{"baseColorFactor":[0.0,1.0,0.0,1.0],"metallicFactor":0.0,"roughnessFactor":0.0},"emissiveFactor":[0.0,0.0,0.0],"alphaMode":"OPAQUE","name":"PhysicalMaterialBackfaceCullingOn"},{"pbrMetallicRoughness":{"baseColorFactor":[0.0,0.0,0.8,1.0],"metallicFactor":0.0,"roughnessFactor":0.1},"emissiveFactor":[0.0,0.0,0.0],"alphaMode":"OPAQUE","name":"StandardSurfaceMaterialBackfaceCullingOn"},{"pbrMetallicRoughness":{"baseColorFactor":[0.0,1.0,0.0,1.0],"metallicFactor":0.0,"roughnessFactor":0.0},"emissiveFactor":[0.0,0.0,0.0],"alphaMode":"OPAQUE","doubleSided":true,"name":"PhysicalMaterialBackfaceCullingOff"},{"pbrMetallicRoughness":{"baseColorFactor":[0.0,0.0,0.8,1.0],"metallicFactor":0.0,"roughnessFactor":0.1},"emissiveFactor":[0.0,0.0,0.0],"alphaMode":"OPAQUE","doubleSided":true,"name":"StandardSurfaceMaterialBackfaceCullingOff"},{"pbrMetallicRoughness":{"baseColorFactor":[0.5,0.0,0.0,1.0],"metallicFactor":0.0,"roughnessFactor":0.450053632},"emissiveFactor":[0.0,0.0,0.0],"alphaMode":"OPAQUE","doubleSided":true,"name":"StandardMaterialBackfaceCullingOff"}]}
\ No newline at end of file
diff --git a/3ds Max/Samples/glTF 2.0/BabylonMaterialAttributes/Default.bin b/3ds Max/Samples/glTF 2.0/BabylonMaterialAttributes/Default.bin
new file mode 100644
index 00000000..f745e329
Binary files /dev/null and b/3ds Max/Samples/glTF 2.0/BabylonMaterialAttributes/Default.bin differ
diff --git a/3ds Max/Samples/glTF 2.0/BabylonMaterialAttributes/Default.gltf b/3ds Max/Samples/glTF 2.0/BabylonMaterialAttributes/Default.gltf
new file mode 100644
index 00000000..78564d6c
--- /dev/null
+++ b/3ds Max/Samples/glTF 2.0/BabylonMaterialAttributes/Default.gltf
@@ -0,0 +1 @@
+{"asset":{"version":"2.0","generator":"babylon.js glTF exporter for 3dsmax 2019 v1.5.0"},"scene":0,"scenes":[{"nodes":[0,1,2,3],"extensions":{}}],"nodes":[{"mesh":0,"translation":[0.0,0.0,0.0],"rotation":[0.0,0.0,0.0,1.0],"scale":[1.0,1.0,1.0],"name":"StandardMesh"},{"mesh":1,"translation":[3.0,0.0,0.0],"rotation":[0.0,0.0,0.0,1.0],"scale":[1.0,1.0,1.0],"name":"PhysicalMesh"},{"mesh":2,"translation":[6.0,0.0,0.0],"rotation":[0.0,0.0,0.0,1.0],"scale":[1.0,1.0,1.0],"name":"StandardArnoldMesh"},{"translation":[0.0,0.0,0.0],"rotation":[0.0,0.0,0.0,1.0],"scale":[1.0,1.0,1.0],"name":"Default light"}],"meshes":[{"primitives":[{"attributes":{"POSITION":1,"NORMAL":2,"TEXCOORD_0":3},"indices":0,"mode":4,"material":0}],"name":"StandardMesh"},{"primitives":[{"attributes":{"POSITION":5,"NORMAL":6,"TEXCOORD_0":7},"indices":4,"mode":4,"material":1}],"name":"PhysicalMesh"},{"primitives":[{"attributes":{"POSITION":9,"NORMAL":10,"TEXCOORD_0":11},"indices":8,"mode":4,"material":2}],"name":"StandardArnoldMesh"}],"accessors":[{"bufferView":0,"componentType":5123,"count":2880,"type":"SCALAR","name":"accessorIndices"},{"bufferView":1,"componentType":5126,"count":2880,"max":[1.0,1.0,1.0],"min":[-1.0,-1.0,-1.0],"type":"VEC3","name":"accessorPositions"},{"bufferView":1,"byteOffset":34560,"componentType":5126,"count":2880,"type":"VEC3","name":"accessorNormals"},{"bufferView":2,"componentType":5126,"count":2880,"type":"VEC2","name":"accessorUVs"},{"bufferView":0,"byteOffset":5760,"componentType":5123,"count":2880,"type":"SCALAR","name":"accessorIndices"},{"bufferView":1,"byteOffset":69120,"componentType":5126,"count":2880,"max":[1.0,1.0,1.0],"min":[-1.0,-1.0,-1.0],"type":"VEC3","name":"accessorPositions"},{"bufferView":1,"byteOffset":103680,"componentType":5126,"count":2880,"type":"VEC3","name":"accessorNormals"},{"bufferView":2,"byteOffset":23040,"componentType":5126,"count":2880,"type":"VEC2","name":"accessorUVs"},{"bufferView":0,"byteOffset":11520,"componentType":5123,"count":2880,"type":"SCALAR","name":"accessorIndices"},{"bufferView":1,"byteOffset":138240,"componentType":5126,"count":2880,"max":[1.0,1.0,1.0],"min":[-1.0,-1.0,-1.0],"type":"VEC3","name":"accessorPositions"},{"bufferView":1,"byteOffset":172800,"componentType":5126,"count":2880,"type":"VEC3","name":"accessorNormals"},{"bufferView":2,"byteOffset":46080,"componentType":5126,"count":2880,"type":"VEC2","name":"accessorUVs"}],"bufferViews":[{"buffer":0,"byteLength":17280,"name":"bufferViewScalar"},{"buffer":0,"byteOffset":17280,"byteLength":207360,"byteStride":12,"name":"bufferViewFloatVec3"},{"buffer":0,"byteOffset":224640,"byteLength":69120,"byteStride":8,"name":"bufferViewFloatVec2"}],"buffers":[{"uri":"Default.bin","byteLength":293760}],"materials":[{"pbrMetallicRoughness":{"baseColorFactor":[0.5,0.0,0.0,1.0],"metallicFactor":0.0,"roughnessFactor":0.450053632},"emissiveFactor":[0.0,0.0,0.0],"alphaMode":"OPAQUE","name":"StandardMaterial"},{"pbrMetallicRoughness":{"baseColorFactor":[0.0,1.0,0.0,1.0],"metallicFactor":0.0,"roughnessFactor":0.0},"emissiveFactor":[0.0,0.0,0.0],"alphaMode":"OPAQUE","name":"PhysicalMaterial"},{"pbrMetallicRoughness":{"baseColorFactor":[0.0,0.0,0.8,1.0],"metallicFactor":0.0,"roughnessFactor":0.1},"emissiveFactor":[0.0,0.0,0.0],"alphaMode":"OPAQUE","name":"Material #0"}]}
\ No newline at end of file
diff --git a/3ds Max/Samples/glTF 2.0/BabylonMaterialAttributes/MaxSimultaneousLights.bin b/3ds Max/Samples/glTF 2.0/BabylonMaterialAttributes/MaxSimultaneousLights.bin
new file mode 100644
index 00000000..a428fd03
Binary files /dev/null and b/3ds Max/Samples/glTF 2.0/BabylonMaterialAttributes/MaxSimultaneousLights.bin differ
diff --git a/3ds Max/Samples/glTF 2.0/BabylonMaterialAttributes/MaxSimultaneousLights.gltf b/3ds Max/Samples/glTF 2.0/BabylonMaterialAttributes/MaxSimultaneousLights.gltf
new file mode 100644
index 00000000..caa5584d
--- /dev/null
+++ b/3ds Max/Samples/glTF 2.0/BabylonMaterialAttributes/MaxSimultaneousLights.gltf
@@ -0,0 +1 @@
+{"asset":{"version":"2.0","generator":"babylon.js glTF exporter for 3dsmax 2019 v1.5.0"},"scene":0,"scenes":[{"nodes":[0,1,2,3,4,5,6,7],"extensions":{}}],"nodes":[{"mesh":0,"translation":[0.0,0.0,0.0],"rotation":[0.0,0.0,0.0,1.0],"scale":[1.0,1.0,1.0],"name":"StandardMeshMaxLight_1"},{"mesh":1,"translation":[3.0,0.0,0.0],"rotation":[0.0,0.0,0.0,1.0],"scale":[1.0,1.0,1.0],"name":"PhysicalMeshMaxLight_1"},{"mesh":2,"translation":[6.0,0.0,0.0],"rotation":[0.0,0.0,0.0,1.0],"scale":[1.0,1.0,1.0],"name":"StandardSurfaceMeshMaxLight_1"},{"mesh":3,"translation":[0.0,0.0,-3.0],"rotation":[0.0,0.0,0.0,1.0],"scale":[1.0,1.0,1.0],"name":"StandardMeshMaxLight_2"},{"mesh":4,"translation":[3.0,0.0,-3.0],"rotation":[0.0,0.0,0.0,1.0],"scale":[1.0,1.0,1.0],"name":"PhysicalMeshMaxLight_2"},{"mesh":5,"translation":[6.0,0.0,-3.0],"rotation":[0.0,0.0,0.0,1.0],"scale":[1.0,1.0,1.0],"name":"StandardSurfaceMeshMaxLight_2"},{"translation":[-3.0,3.0,0.0],"rotation":[0.612372458,0.353553355,0.353553355,0.612372458],"scale":[0.231042951,0.231042951,0.231042936],"name":"LeftLight"},{"translation":[9.0,3.0,0.0],"rotation":[0.612372458,-0.353553355,-0.353553355,0.612372458],"scale":[0.231042951,0.231042951,0.231042936],"name":"RightLight"}],"meshes":[{"primitives":[{"attributes":{"POSITION":1,"NORMAL":2,"TEXCOORD_0":3},"indices":0,"mode":4,"material":0}],"name":"StandardMeshMaxLight_1"},{"primitives":[{"attributes":{"POSITION":5,"NORMAL":6,"TEXCOORD_0":7},"indices":4,"mode":4,"material":1}],"name":"PhysicalMeshMaxLight_1"},{"primitives":[{"attributes":{"POSITION":9,"NORMAL":10,"TEXCOORD_0":11},"indices":8,"mode":4,"material":2}],"name":"StandardSurfaceMeshMaxLight_1"},{"primitives":[{"attributes":{"POSITION":13,"NORMAL":14,"TEXCOORD_0":15},"indices":12,"mode":4,"material":3}],"name":"StandardMeshMaxLight_2"},{"primitives":[{"attributes":{"POSITION":17,"NORMAL":18,"TEXCOORD_0":19},"indices":16,"mode":4,"material":4}],"name":"PhysicalMeshMaxLight_2"},{"primitives":[{"attributes":{"POSITION":21,"NORMAL":22,"TEXCOORD_0":23},"indices":20,"mode":4,"material":5}],"name":"StandardSurfaceMeshMaxLight_2"}],"accessors":[{"bufferView":0,"componentType":5123,"count":2880,"type":"SCALAR","name":"accessorIndices"},{"bufferView":1,"componentType":5126,"count":2880,"max":[1.0,1.0,1.0],"min":[-1.0,-1.0,-1.0],"type":"VEC3","name":"accessorPositions"},{"bufferView":1,"byteOffset":34560,"componentType":5126,"count":2880,"type":"VEC3","name":"accessorNormals"},{"bufferView":2,"componentType":5126,"count":2880,"type":"VEC2","name":"accessorUVs"},{"bufferView":0,"byteOffset":5760,"componentType":5123,"count":2880,"type":"SCALAR","name":"accessorIndices"},{"bufferView":1,"byteOffset":69120,"componentType":5126,"count":2880,"max":[1.0,1.0,1.0],"min":[-1.0,-1.0,-1.0],"type":"VEC3","name":"accessorPositions"},{"bufferView":1,"byteOffset":103680,"componentType":5126,"count":2880,"type":"VEC3","name":"accessorNormals"},{"bufferView":2,"byteOffset":23040,"componentType":5126,"count":2880,"type":"VEC2","name":"accessorUVs"},{"bufferView":0,"byteOffset":11520,"componentType":5123,"count":2880,"type":"SCALAR","name":"accessorIndices"},{"bufferView":1,"byteOffset":138240,"componentType":5126,"count":2880,"max":[1.0,1.0,1.0],"min":[-1.0,-1.0,-1.0],"type":"VEC3","name":"accessorPositions"},{"bufferView":1,"byteOffset":172800,"componentType":5126,"count":2880,"type":"VEC3","name":"accessorNormals"},{"bufferView":2,"byteOffset":46080,"componentType":5126,"count":2880,"type":"VEC2","name":"accessorUVs"},{"bufferView":0,"byteOffset":17280,"componentType":5123,"count":2880,"type":"SCALAR","name":"accessorIndices"},{"bufferView":1,"byteOffset":207360,"componentType":5126,"count":2880,"max":[1.0,1.0,1.0],"min":[-1.0,-1.0,-1.0],"type":"VEC3","name":"accessorPositions"},{"bufferView":1,"byteOffset":241920,"componentType":5126,"count":2880,"type":"VEC3","name":"accessorNormals"},{"bufferView":2,"byteOffset":69120,"componentType":5126,"count":2880,"type":"VEC2","name":"accessorUVs"},{"bufferView":0,"byteOffset":23040,"componentType":5123,"count":2880,"type":"SCALAR","name":"accessorIndices"},{"bufferView":1,"byteOffset":276480,"componentType":5126,"count":2880,"max":[1.0,1.0,1.0],"min":[-1.0,-1.0,-1.0],"type":"VEC3","name":"accessorPositions"},{"bufferView":1,"byteOffset":311040,"componentType":5126,"count":2880,"type":"VEC3","name":"accessorNormals"},{"bufferView":2,"byteOffset":92160,"componentType":5126,"count":2880,"type":"VEC2","name":"accessorUVs"},{"bufferView":0,"byteOffset":28800,"componentType":5123,"count":2880,"type":"SCALAR","name":"accessorIndices"},{"bufferView":1,"byteOffset":345600,"componentType":5126,"count":2880,"max":[1.0,1.0,1.0],"min":[-1.0,-1.0,-1.0],"type":"VEC3","name":"accessorPositions"},{"bufferView":1,"byteOffset":380160,"componentType":5126,"count":2880,"type":"VEC3","name":"accessorNormals"},{"bufferView":2,"byteOffset":115200,"componentType":5126,"count":2880,"type":"VEC2","name":"accessorUVs"}],"bufferViews":[{"buffer":0,"byteLength":34560,"name":"bufferViewScalar"},{"buffer":0,"byteOffset":34560,"byteLength":414720,"byteStride":12,"name":"bufferViewFloatVec3"},{"buffer":0,"byteOffset":449280,"byteLength":138240,"byteStride":8,"name":"bufferViewFloatVec2"}],"buffers":[{"uri":"MaxSimultaneousLights.bin","byteLength":587520}],"materials":[{"pbrMetallicRoughness":{"baseColorFactor":[0.5,0.0,0.0,1.0],"metallicFactor":0.0,"roughnessFactor":0.450053632},"emissiveFactor":[0.0,0.0,0.0],"alphaMode":"OPAQUE","name":"StandardMaterialMaxLight_1"},{"pbrMetallicRoughness":{"baseColorFactor":[0.0,1.0,0.0,1.0],"metallicFactor":0.0,"roughnessFactor":0.0},"emissiveFactor":[0.0,0.0,0.0],"alphaMode":"OPAQUE","name":"PhysicalMaterialMaxLight_1"},{"pbrMetallicRoughness":{"baseColorFactor":[0.0,0.0,0.8,1.0],"metallicFactor":0.0,"roughnessFactor":0.1},"emissiveFactor":[0.0,0.0,0.0],"alphaMode":"OPAQUE","name":"StandardSurfaceMaterialMaxLight_1"},{"pbrMetallicRoughness":{"baseColorFactor":[0.5,0.0,0.0,1.0],"metallicFactor":0.0,"roughnessFactor":0.450053632},"emissiveFactor":[0.0,0.0,0.0],"alphaMode":"OPAQUE","name":"StandardMaterialMaxLight_2"},{"pbrMetallicRoughness":{"baseColorFactor":[0.0,1.0,0.0,1.0],"metallicFactor":0.0,"roughnessFactor":0.0},"emissiveFactor":[0.0,0.0,0.0],"alphaMode":"OPAQUE","name":"PhysicalMaterialMaxLight_2"},{"pbrMetallicRoughness":{"baseColorFactor":[0.0,0.0,0.8,1.0],"metallicFactor":0.0,"roughnessFactor":0.1},"emissiveFactor":[0.0,0.0,0.0],"alphaMode":"OPAQUE","name":"StandardSurfaceMaterialMaxLight_2"}]}
\ No newline at end of file
diff --git a/3ds Max/Samples/glTF 2.0/BabylonMaterialAttributes/TransparencyMode/Blend/00204.png b/3ds Max/Samples/glTF 2.0/BabylonMaterialAttributes/TransparencyMode/Blend/00204.png
new file mode 100644
index 00000000..91919912
Binary files /dev/null and b/3ds Max/Samples/glTF 2.0/BabylonMaterialAttributes/TransparencyMode/Blend/00204.png differ
diff --git a/3ds Max/Samples/glTF 2.0/BabylonMaterialAttributes/TransparencyMode/Blend/02550.png b/3ds Max/Samples/glTF 2.0/BabylonMaterialAttributes/TransparencyMode/Blend/02550.png
new file mode 100644
index 00000000..9a946ab8
Binary files /dev/null and b/3ds Max/Samples/glTF 2.0/BabylonMaterialAttributes/TransparencyMode/Blend/02550.png differ
diff --git a/3ds Max/Samples/glTF 2.0/BabylonMaterialAttributes/TransparencyMode/Blend/Blend.bin b/3ds Max/Samples/glTF 2.0/BabylonMaterialAttributes/TransparencyMode/Blend/Blend.bin
new file mode 100644
index 00000000..f745e329
Binary files /dev/null and b/3ds Max/Samples/glTF 2.0/BabylonMaterialAttributes/TransparencyMode/Blend/Blend.bin differ
diff --git a/3ds Max/Samples/glTF 2.0/BabylonMaterialAttributes/TransparencyMode/Blend/Blend.gltf b/3ds Max/Samples/glTF 2.0/BabylonMaterialAttributes/TransparencyMode/Blend/Blend.gltf
new file mode 100644
index 00000000..244b7d13
--- /dev/null
+++ b/3ds Max/Samples/glTF 2.0/BabylonMaterialAttributes/TransparencyMode/Blend/Blend.gltf
@@ -0,0 +1 @@
+{"asset":{"version":"2.0","generator":"babylon.js glTF exporter for 3dsmax 2019 v1.5.0"},"scene":0,"scenes":[{"nodes":[0,1,2,3],"extensions":{}}],"nodes":[{"mesh":0,"translation":[0.0,0.0,0.0],"rotation":[0.0,-0.7071068,0.0,0.7071067],"scale":[1.0,1.0,1.0],"name":"StandardMesh"},{"mesh":1,"translation":[3.0,0.0,0.0],"rotation":[0.0,-0.7071068,0.0,0.7071067],"scale":[1.0,1.0,1.0],"name":"PhysicalMesh"},{"mesh":2,"translation":[6.0,0.0,0.0],"rotation":[0.0,-0.7071068,0.0,0.7071067],"scale":[1.0,1.0,1.0],"name":"StandardSurfaceMesh"},{"translation":[0.0,0.0,0.0],"rotation":[0.0,0.0,0.0,1.0],"scale":[1.0,1.0,1.0],"name":"Default light"}],"meshes":[{"primitives":[{"attributes":{"POSITION":1,"NORMAL":2,"TEXCOORD_0":3},"indices":0,"mode":4,"material":0}],"name":"StandardMesh"},{"primitives":[{"attributes":{"POSITION":5,"NORMAL":6,"TEXCOORD_0":7},"indices":4,"mode":4,"material":1}],"name":"PhysicalMesh"},{"primitives":[{"attributes":{"POSITION":9,"NORMAL":10,"TEXCOORD_0":11},"indices":8,"mode":4,"material":2}],"name":"StandardSurfaceMesh"}],"accessors":[{"bufferView":0,"componentType":5123,"count":2880,"type":"SCALAR","name":"accessorIndices"},{"bufferView":1,"componentType":5126,"count":2880,"max":[1.0,1.0,1.0],"min":[-1.0,-1.0,-1.0],"type":"VEC3","name":"accessorPositions"},{"bufferView":1,"byteOffset":34560,"componentType":5126,"count":2880,"type":"VEC3","name":"accessorNormals"},{"bufferView":2,"componentType":5126,"count":2880,"type":"VEC2","name":"accessorUVs"},{"bufferView":0,"byteOffset":5760,"componentType":5123,"count":2880,"type":"SCALAR","name":"accessorIndices"},{"bufferView":1,"byteOffset":69120,"componentType":5126,"count":2880,"max":[1.0,1.0,1.0],"min":[-1.0,-1.0,-1.0],"type":"VEC3","name":"accessorPositions"},{"bufferView":1,"byteOffset":103680,"componentType":5126,"count":2880,"type":"VEC3","name":"accessorNormals"},{"bufferView":2,"byteOffset":23040,"componentType":5126,"count":2880,"type":"VEC2","name":"accessorUVs"},{"bufferView":0,"byteOffset":11520,"componentType":5123,"count":2880,"type":"SCALAR","name":"accessorIndices"},{"bufferView":1,"byteOffset":138240,"componentType":5126,"count":2880,"max":[1.0,1.0,1.0],"min":[-1.0,-1.0,-1.0],"type":"VEC3","name":"accessorPositions"},{"bufferView":1,"byteOffset":172800,"componentType":5126,"count":2880,"type":"VEC3","name":"accessorNormals"},{"bufferView":2,"byteOffset":46080,"componentType":5126,"count":2880,"type":"VEC2","name":"accessorUVs"}],"bufferViews":[{"buffer":0,"byteLength":17280,"name":"bufferViewScalar"},{"buffer":0,"byteOffset":17280,"byteLength":207360,"byteStride":12,"name":"bufferViewFloatVec3"},{"buffer":0,"byteOffset":224640,"byteLength":69120,"byteStride":8,"name":"bufferViewFloatVec2"}],"buffers":[{"uri":"Blend.bin","byteLength":293760}],"materials":[{"pbrMetallicRoughness":{"baseColorFactor":[1.0,1.0,1.0,1.0],"baseColorTexture":{"index":0,"texCoord":0},"metallicFactor":0.0,"roughnessFactor":0.450053632},"emissiveFactor":[0.0,0.0,0.0],"alphaMode":"BLEND","name":"StandardMaterialBlend"},{"pbrMetallicRoughness":{"baseColorFactor":[0.0,1.0,0.0,1.0],"baseColorTexture":{"index":1,"texCoord":0},"metallicFactor":0.0,"roughnessFactor":0.0},"emissiveFactor":[0.0,0.0,0.0],"alphaMode":"BLEND","name":"PhysicalMaterialBlend"},{"pbrMetallicRoughness":{"baseColorFactor":[1.0,1.0,1.0,1.0],"baseColorTexture":{"index":2,"texCoord":0},"metallicFactor":0.0,"roughnessFactor":0.2},"emissiveFactor":[0.0,0.0,0.0],"alphaMode":"BLEND","name":"StandardSurfaceMaterialBlend"}],"textures":[{"sampler":0,"source":0,"name":"StandardMaterialBlend_baseColor.png"},{"sampler":0,"source":1,"name":"02550.png"},{"sampler":0,"source":2,"name":"00204.png"}],"images":[{"uri":"StandardMaterialBlend_baseColor.png"},{"uri":"02550.png"},{"uri":"00204.png"}],"samplers":[{"magFilter":9729,"minFilter":9987,"wrapS":10497,"wrapT":10497}]}
\ No newline at end of file
diff --git a/3ds Max/Samples/glTF 2.0/BabylonMaterialAttributes/TransparencyMode/Blend/StandardMaterialBlend_baseColor.png b/3ds Max/Samples/glTF 2.0/BabylonMaterialAttributes/TransparencyMode/Blend/StandardMaterialBlend_baseColor.png
new file mode 100644
index 00000000..e277d21d
Binary files /dev/null and b/3ds Max/Samples/glTF 2.0/BabylonMaterialAttributes/TransparencyMode/Blend/StandardMaterialBlend_baseColor.png differ
diff --git a/3ds Max/Samples/glTF 2.0/BabylonMaterialAttributes/TransparencyMode/Mask/00204.png b/3ds Max/Samples/glTF 2.0/BabylonMaterialAttributes/TransparencyMode/Mask/00204.png
new file mode 100644
index 00000000..91919912
Binary files /dev/null and b/3ds Max/Samples/glTF 2.0/BabylonMaterialAttributes/TransparencyMode/Mask/00204.png differ
diff --git a/3ds Max/Samples/glTF 2.0/BabylonMaterialAttributes/TransparencyMode/Mask/02550.png b/3ds Max/Samples/glTF 2.0/BabylonMaterialAttributes/TransparencyMode/Mask/02550.png
new file mode 100644
index 00000000..9a946ab8
Binary files /dev/null and b/3ds Max/Samples/glTF 2.0/BabylonMaterialAttributes/TransparencyMode/Mask/02550.png differ
diff --git a/3ds Max/Samples/glTF 2.0/BabylonMaterialAttributes/TransparencyMode/Mask/Mask.bin b/3ds Max/Samples/glTF 2.0/BabylonMaterialAttributes/TransparencyMode/Mask/Mask.bin
new file mode 100644
index 00000000..f745e329
Binary files /dev/null and b/3ds Max/Samples/glTF 2.0/BabylonMaterialAttributes/TransparencyMode/Mask/Mask.bin differ
diff --git a/3ds Max/Samples/glTF 2.0/BabylonMaterialAttributes/TransparencyMode/Mask/Mask.gltf b/3ds Max/Samples/glTF 2.0/BabylonMaterialAttributes/TransparencyMode/Mask/Mask.gltf
new file mode 100644
index 00000000..6aabbbe7
--- /dev/null
+++ b/3ds Max/Samples/glTF 2.0/BabylonMaterialAttributes/TransparencyMode/Mask/Mask.gltf
@@ -0,0 +1 @@
+{"asset":{"version":"2.0","generator":"babylon.js glTF exporter for 3dsmax 2019 v1.5.0"},"scene":0,"scenes":[{"nodes":[0,1,2,3],"extensions":{}}],"nodes":[{"mesh":0,"translation":[0.0,0.0,0.0],"rotation":[0.0,-0.7071068,0.0,0.7071067],"scale":[1.0,1.0,1.0],"name":"StandardMesh"},{"mesh":1,"translation":[3.0,0.0,0.0],"rotation":[0.0,-0.7071068,0.0,0.7071067],"scale":[1.0,1.0,1.0],"name":"PhysicalMesh"},{"mesh":2,"translation":[6.0,0.0,0.0],"rotation":[0.0,-0.7071068,0.0,0.7071067],"scale":[1.0,1.0,1.0],"name":"StandardSurfaceMesh"},{"translation":[0.0,0.0,0.0],"rotation":[0.0,0.0,0.0,1.0],"scale":[1.0,1.0,1.0],"name":"Default light"}],"meshes":[{"primitives":[{"attributes":{"POSITION":1,"NORMAL":2,"TEXCOORD_0":3},"indices":0,"mode":4,"material":0}],"name":"StandardMesh"},{"primitives":[{"attributes":{"POSITION":5,"NORMAL":6,"TEXCOORD_0":7},"indices":4,"mode":4,"material":1}],"name":"PhysicalMesh"},{"primitives":[{"attributes":{"POSITION":9,"NORMAL":10,"TEXCOORD_0":11},"indices":8,"mode":4,"material":2}],"name":"StandardSurfaceMesh"}],"accessors":[{"bufferView":0,"componentType":5123,"count":2880,"type":"SCALAR","name":"accessorIndices"},{"bufferView":1,"componentType":5126,"count":2880,"max":[1.0,1.0,1.0],"min":[-1.0,-1.0,-1.0],"type":"VEC3","name":"accessorPositions"},{"bufferView":1,"byteOffset":34560,"componentType":5126,"count":2880,"type":"VEC3","name":"accessorNormals"},{"bufferView":2,"componentType":5126,"count":2880,"type":"VEC2","name":"accessorUVs"},{"bufferView":0,"byteOffset":5760,"componentType":5123,"count":2880,"type":"SCALAR","name":"accessorIndices"},{"bufferView":1,"byteOffset":69120,"componentType":5126,"count":2880,"max":[1.0,1.0,1.0],"min":[-1.0,-1.0,-1.0],"type":"VEC3","name":"accessorPositions"},{"bufferView":1,"byteOffset":103680,"componentType":5126,"count":2880,"type":"VEC3","name":"accessorNormals"},{"bufferView":2,"byteOffset":23040,"componentType":5126,"count":2880,"type":"VEC2","name":"accessorUVs"},{"bufferView":0,"byteOffset":11520,"componentType":5123,"count":2880,"type":"SCALAR","name":"accessorIndices"},{"bufferView":1,"byteOffset":138240,"componentType":5126,"count":2880,"max":[1.0,1.0,1.0],"min":[-1.0,-1.0,-1.0],"type":"VEC3","name":"accessorPositions"},{"bufferView":1,"byteOffset":172800,"componentType":5126,"count":2880,"type":"VEC3","name":"accessorNormals"},{"bufferView":2,"byteOffset":46080,"componentType":5126,"count":2880,"type":"VEC2","name":"accessorUVs"}],"bufferViews":[{"buffer":0,"byteLength":17280,"name":"bufferViewScalar"},{"buffer":0,"byteOffset":17280,"byteLength":207360,"byteStride":12,"name":"bufferViewFloatVec3"},{"buffer":0,"byteOffset":224640,"byteLength":69120,"byteStride":8,"name":"bufferViewFloatVec2"}],"buffers":[{"uri":"Mask.bin","byteLength":293760}],"materials":[{"pbrMetallicRoughness":{"baseColorFactor":[1.0,1.0,1.0,1.0],"baseColorTexture":{"index":0,"texCoord":0},"metallicFactor":0.0,"roughnessFactor":0.450053632},"emissiveFactor":[0.0,0.0,0.0],"alphaMode":"MASK","name":"StandardMaterialMask"},{"pbrMetallicRoughness":{"baseColorFactor":[0.0,1.0,0.0,1.0],"baseColorTexture":{"index":1,"texCoord":0},"metallicFactor":0.0,"roughnessFactor":0.0},"emissiveFactor":[0.0,0.0,0.0],"alphaMode":"MASK","name":"PhysicalMaterialMask"},{"pbrMetallicRoughness":{"baseColorFactor":[1.0,1.0,1.0,1.0],"baseColorTexture":{"index":2,"texCoord":0},"metallicFactor":0.0,"roughnessFactor":0.1},"emissiveFactor":[0.0,0.0,0.0],"alphaMode":"MASK","name":"StandardSurfaceMaterialMask"}],"textures":[{"sampler":0,"source":0,"name":"StandardMaterialMask_baseColor.png"},{"sampler":0,"source":1,"name":"02550.png"},{"sampler":0,"source":2,"name":"00204.png"}],"images":[{"uri":"StandardMaterialMask_baseColor.png"},{"uri":"02550.png"},{"uri":"00204.png"}],"samplers":[{"magFilter":9729,"minFilter":9987,"wrapS":10497,"wrapT":10497}]}
\ No newline at end of file
diff --git a/3ds Max/Samples/glTF 2.0/BabylonMaterialAttributes/TransparencyMode/Mask/StandardMaterialMask_baseColor.png b/3ds Max/Samples/glTF 2.0/BabylonMaterialAttributes/TransparencyMode/Mask/StandardMaterialMask_baseColor.png
new file mode 100644
index 00000000..fcd01433
Binary files /dev/null and b/3ds Max/Samples/glTF 2.0/BabylonMaterialAttributes/TransparencyMode/Mask/StandardMaterialMask_baseColor.png differ
diff --git a/3ds Max/Samples/glTF 2.0/BabylonMaterialAttributes/TransparencyMode/Opaque/Opaque.bin b/3ds Max/Samples/glTF 2.0/BabylonMaterialAttributes/TransparencyMode/Opaque/Opaque.bin
new file mode 100644
index 00000000..f745e329
Binary files /dev/null and b/3ds Max/Samples/glTF 2.0/BabylonMaterialAttributes/TransparencyMode/Opaque/Opaque.bin differ
diff --git a/3ds Max/Samples/glTF 2.0/BabylonMaterialAttributes/TransparencyMode/Opaque/Opaque.gltf b/3ds Max/Samples/glTF 2.0/BabylonMaterialAttributes/TransparencyMode/Opaque/Opaque.gltf
new file mode 100644
index 00000000..4f7f6155
--- /dev/null
+++ b/3ds Max/Samples/glTF 2.0/BabylonMaterialAttributes/TransparencyMode/Opaque/Opaque.gltf
@@ -0,0 +1 @@
+{"asset":{"version":"2.0","generator":"babylon.js glTF exporter for 3dsmax 2019 v1.5.0"},"scene":0,"scenes":[{"nodes":[0,1,2,3],"extensions":{}}],"nodes":[{"mesh":0,"translation":[0.0,0.0,0.0],"rotation":[0.0,-0.7071068,0.0,0.7071067],"scale":[1.0,1.0,1.0],"name":"StandardMesh"},{"mesh":1,"translation":[3.0,0.0,0.0],"rotation":[0.0,-0.7071068,0.0,0.7071067],"scale":[1.0,1.0,1.0],"name":"PhysicalMesh"},{"mesh":2,"translation":[6.0,0.0,0.0],"rotation":[0.0,-0.7071068,0.0,0.7071067],"scale":[1.0,1.0,1.0],"name":"StandardSurfaceMesh"},{"translation":[0.0,0.0,0.0],"rotation":[0.0,0.0,0.0,1.0],"scale":[1.0,1.0,1.0],"name":"Default light"}],"meshes":[{"primitives":[{"attributes":{"POSITION":1,"NORMAL":2,"TEXCOORD_0":3},"indices":0,"mode":4,"material":0}],"name":"StandardMesh"},{"primitives":[{"attributes":{"POSITION":5,"NORMAL":6,"TEXCOORD_0":7},"indices":4,"mode":4,"material":1}],"name":"PhysicalMesh"},{"primitives":[{"attributes":{"POSITION":9,"NORMAL":10,"TEXCOORD_0":11},"indices":8,"mode":4,"material":2}],"name":"StandardSurfaceMesh"}],"accessors":[{"bufferView":0,"componentType":5123,"count":2880,"type":"SCALAR","name":"accessorIndices"},{"bufferView":1,"componentType":5126,"count":2880,"max":[1.0,1.0,1.0],"min":[-1.0,-1.0,-1.0],"type":"VEC3","name":"accessorPositions"},{"bufferView":1,"byteOffset":34560,"componentType":5126,"count":2880,"type":"VEC3","name":"accessorNormals"},{"bufferView":2,"componentType":5126,"count":2880,"type":"VEC2","name":"accessorUVs"},{"bufferView":0,"byteOffset":5760,"componentType":5123,"count":2880,"type":"SCALAR","name":"accessorIndices"},{"bufferView":1,"byteOffset":69120,"componentType":5126,"count":2880,"max":[1.0,1.0,1.0],"min":[-1.0,-1.0,-1.0],"type":"VEC3","name":"accessorPositions"},{"bufferView":1,"byteOffset":103680,"componentType":5126,"count":2880,"type":"VEC3","name":"accessorNormals"},{"bufferView":2,"byteOffset":23040,"componentType":5126,"count":2880,"type":"VEC2","name":"accessorUVs"},{"bufferView":0,"byteOffset":11520,"componentType":5123,"count":2880,"type":"SCALAR","name":"accessorIndices"},{"bufferView":1,"byteOffset":138240,"componentType":5126,"count":2880,"max":[1.0,1.0,1.0],"min":[-1.0,-1.0,-1.0],"type":"VEC3","name":"accessorPositions"},{"bufferView":1,"byteOffset":172800,"componentType":5126,"count":2880,"type":"VEC3","name":"accessorNormals"},{"bufferView":2,"byteOffset":46080,"componentType":5126,"count":2880,"type":"VEC2","name":"accessorUVs"}],"bufferViews":[{"buffer":0,"byteLength":17280,"name":"bufferViewScalar"},{"buffer":0,"byteOffset":17280,"byteLength":207360,"byteStride":12,"name":"bufferViewFloatVec3"},{"buffer":0,"byteOffset":224640,"byteLength":69120,"byteStride":8,"name":"bufferViewFloatVec2"}],"buffers":[{"uri":"Opaque.bin","byteLength":293760}],"materials":[{"pbrMetallicRoughness":{"baseColorFactor":[0.5,0.0,0.0,1.0],"metallicFactor":0.0,"roughnessFactor":0.450053632},"emissiveFactor":[0.0,0.0,0.0],"alphaMode":"OPAQUE","name":"StandardMaterialOpaque"},{"pbrMetallicRoughness":{"baseColorFactor":[0.0,1.0,0.0,1.0],"metallicFactor":0.0,"roughnessFactor":0.0},"emissiveFactor":[0.0,0.0,0.0],"alphaMode":"OPAQUE","name":"PhysicalMaterialOpaque"},{"pbrMetallicRoughness":{"baseColorFactor":[0.0,0.0,0.8,1.0],"metallicFactor":0.0,"roughnessFactor":0.1},"emissiveFactor":[0.0,0.0,0.0],"alphaMode":"OPAQUE","name":"StandardSurfaceMaterialOpaque"}]}
\ No newline at end of file
diff --git a/3ds Max/Samples/glTF 2.0/BabylonMaterialAttributes/Unlit.bin b/3ds Max/Samples/glTF 2.0/BabylonMaterialAttributes/Unlit.bin
new file mode 100644
index 00000000..f745e329
Binary files /dev/null and b/3ds Max/Samples/glTF 2.0/BabylonMaterialAttributes/Unlit.bin differ
diff --git a/3ds Max/Samples/glTF 2.0/BabylonMaterialAttributes/Unlit.gltf b/3ds Max/Samples/glTF 2.0/BabylonMaterialAttributes/Unlit.gltf
new file mode 100644
index 00000000..b8109fa6
--- /dev/null
+++ b/3ds Max/Samples/glTF 2.0/BabylonMaterialAttributes/Unlit.gltf
@@ -0,0 +1 @@
+{"asset":{"version":"2.0","generator":"babylon.js glTF exporter for 3dsmax 2019 v1.5.0"},"extensionsUsed":["KHR_materials_unlit"],"scene":0,"scenes":[{"nodes":[0,1,2,3],"extensions":{}}],"nodes":[{"mesh":0,"translation":[0.0,0.0,0.0],"rotation":[0.0,0.0,0.0,1.0],"scale":[1.0,1.0,1.0],"name":"StandardMesh"},{"mesh":1,"translation":[3.0,0.0,0.0],"rotation":[0.0,0.0,0.0,1.0],"scale":[1.0,1.0,1.0],"name":"PhysicalMesh"},{"mesh":2,"translation":[6.0,0.0,0.0],"rotation":[0.0,0.0,0.0,1.0],"scale":[1.0,1.0,1.0],"name":"StandardSurfaceMesh"},{"translation":[0.0,0.0,0.0],"rotation":[0.0,0.0,0.0,1.0],"scale":[1.0,1.0,1.0],"name":"Default light"}],"meshes":[{"primitives":[{"attributes":{"POSITION":1,"NORMAL":2,"TEXCOORD_0":3},"indices":0,"mode":4,"material":0}],"name":"StandardMesh"},{"primitives":[{"attributes":{"POSITION":5,"NORMAL":6,"TEXCOORD_0":7},"indices":4,"mode":4,"material":1}],"name":"PhysicalMesh"},{"primitives":[{"attributes":{"POSITION":9,"NORMAL":10,"TEXCOORD_0":11},"indices":8,"mode":4,"material":2}],"name":"StandardSurfaceMesh"}],"accessors":[{"bufferView":0,"componentType":5123,"count":2880,"type":"SCALAR","name":"accessorIndices"},{"bufferView":1,"componentType":5126,"count":2880,"max":[1.0,1.0,1.0],"min":[-1.0,-1.0,-1.0],"type":"VEC3","name":"accessorPositions"},{"bufferView":1,"byteOffset":34560,"componentType":5126,"count":2880,"type":"VEC3","name":"accessorNormals"},{"bufferView":2,"componentType":5126,"count":2880,"type":"VEC2","name":"accessorUVs"},{"bufferView":0,"byteOffset":5760,"componentType":5123,"count":2880,"type":"SCALAR","name":"accessorIndices"},{"bufferView":1,"byteOffset":69120,"componentType":5126,"count":2880,"max":[1.0,1.0,1.0],"min":[-1.0,-1.0,-1.0],"type":"VEC3","name":"accessorPositions"},{"bufferView":1,"byteOffset":103680,"componentType":5126,"count":2880,"type":"VEC3","name":"accessorNormals"},{"bufferView":2,"byteOffset":23040,"componentType":5126,"count":2880,"type":"VEC2","name":"accessorUVs"},{"bufferView":0,"byteOffset":11520,"componentType":5123,"count":2880,"type":"SCALAR","name":"accessorIndices"},{"bufferView":1,"byteOffset":138240,"componentType":5126,"count":2880,"max":[1.0,1.0,1.0],"min":[-1.0,-1.0,-1.0],"type":"VEC3","name":"accessorPositions"},{"bufferView":1,"byteOffset":172800,"componentType":5126,"count":2880,"type":"VEC3","name":"accessorNormals"},{"bufferView":2,"byteOffset":46080,"componentType":5126,"count":2880,"type":"VEC2","name":"accessorUVs"}],"bufferViews":[{"buffer":0,"byteLength":17280,"name":"bufferViewScalar"},{"buffer":0,"byteOffset":17280,"byteLength":207360,"byteStride":12,"name":"bufferViewFloatVec3"},{"buffer":0,"byteOffset":224640,"byteLength":69120,"byteStride":8,"name":"bufferViewFloatVec2"}],"buffers":[{"uri":"Unlit.bin","byteLength":293760}],"materials":[{"pbrMetallicRoughness":{"baseColorFactor":[0.5,0.0,0.0,1.0],"metallicFactor":0.0,"roughnessFactor":0.450053632},"emissiveFactor":[1.0,0.0,0.0],"alphaMode":"OPAQUE","name":"StandardMaterialUnlit","extensions":{"KHR_materials_unlit":{}}},{"pbrMetallicRoughness":{"baseColorFactor":[0.0,1.0,0.0,1.0],"metallicFactor":0.0,"roughnessFactor":0.9},"emissiveFactor":[0.0,0.0,0.0],"alphaMode":"OPAQUE","name":"PhysicalMaterialUnlit","extensions":{"KHR_materials_unlit":{}}},{"pbrMetallicRoughness":{"baseColorFactor":[0.0,0.0,0.8,1.0],"metallicFactor":0.0,"roughnessFactor":0.2},"emissiveFactor":[0.0,0.0,0.0],"alphaMode":"OPAQUE","name":"StandardSurfaceMaterialUnlit","extensions":{"KHR_materials_unlit":{}}}]}
\ No newline at end of file
diff --git a/3ds Max/Samples/glTF 2.0/CustomAttributes/CustomAttributes.bin b/3ds Max/Samples/glTF 2.0/CustomAttributes/CustomAttributes.bin
new file mode 100644
index 00000000..0294bbd0
Binary files /dev/null and b/3ds Max/Samples/glTF 2.0/CustomAttributes/CustomAttributes.bin differ
diff --git a/3ds Max/Samples/glTF 2.0/CustomAttributes/CustomAttributes.gltf b/3ds Max/Samples/glTF 2.0/CustomAttributes/CustomAttributes.gltf
new file mode 100644
index 00000000..7519019f
--- /dev/null
+++ b/3ds Max/Samples/glTF 2.0/CustomAttributes/CustomAttributes.gltf
@@ -0,0 +1,609 @@
+{
+ "asset": {
+ "version": "2.0",
+ "generator": "babylon.js glTF exporter for 3dsmax 2019 v1.5.0"
+ },
+ "extensionsUsed": [
+ "KHR_lights_punctual"
+ ],
+ "scene": 0,
+ "scenes": [
+ {
+ "nodes": [
+ 0,
+ 1,
+ 2,
+ 3,
+ 4
+ ],
+ "extensions": {}
+ }
+ ],
+ "nodes": [
+ {
+ "translation": [
+ 0,
+ 0,
+ 0
+ ],
+ "rotation": [
+ 0,
+ 0,
+ 0,
+ 1
+ ],
+ "scale": [
+ 1,
+ 1,
+ 1
+ ],
+ "name": "Camera001.Target"
+ },
+ {
+ "mesh": 0,
+ "translation": [
+ 0,
+ -0.5,
+ 0
+ ],
+ "rotation": [
+ 0,
+ 0,
+ 0,
+ 1
+ ],
+ "scale": [
+ 1,
+ 1,
+ 1
+ ],
+ "name": "MasterMesh",
+ "extras": {
+ "myAngle": 3.14159274,
+ "myArray": 3,
+ "myBoolean": true,
+ "myColor": [
+ 0.03137255,
+ 1,
+ 0.305882365
+ ],
+ "myFloat": 20,
+ "myFRGBA": [
+ 0.0980392247,
+ 0.03137255,
+ 1,
+ 0.5
+ ],
+ "myInteger": 20,
+ "myPercent": 0.199999988,
+ "MyString": "Hi",
+ "myTextureMap": {
+ "name": "gradation_vertical.jpg",
+ "level": 1,
+ "hasAlpha": true,
+ "getAlphaFromRGB": false,
+ "coordinatesMode": 0,
+ "isCube": false,
+ "uOffset": 0,
+ "vOffset": 0,
+ "uScale": 1,
+ "vScale": -1,
+ "uRotationCenter": 0,
+ "vRotationCenter": 0,
+ "wRotationCenter": 0.5,
+ "invertY": false,
+ "uAng": 0,
+ "vAng": 0,
+ "wAng": 0,
+ "wrapU": 1,
+ "wrapV": 1,
+ "coordinatesIndex": 0,
+ "isRenderTarget": false,
+ "renderTargetSize": 0,
+ "mirrorPlane": null,
+ "renderList": null,
+ "animations": [],
+ "extensions": null,
+ "samplingMode": 3
+ },
+ "myWorldUnits": 20
+ }
+ },
+ {
+ "mesh": 0,
+ "translation": [
+ 1.5051012,
+ -0.5,
+ 0
+ ],
+ "rotation": [
+ 0,
+ 0,
+ 0,
+ 1
+ ],
+ "scale": [
+ 1,
+ 1,
+ 1
+ ],
+ "name": "InstanceMesh",
+ "extras": {
+ "myAngle": 3.14159274,
+ "myArray": 3,
+ "myBoolean": true,
+ "myColor": [
+ 0.03137255,
+ 1,
+ 0.305882365
+ ],
+ "myFloat": 20,
+ "myFRGBA": [
+ 0.0980392247,
+ 0.03137255,
+ 1,
+ 0.5
+ ],
+ "myInteger": 20,
+ "myPercent": 0.199999988,
+ "MyString": "Hi",
+ "myTextureMap": {
+ "name": "gradation_vertical.jpg",
+ "level": 1,
+ "hasAlpha": true,
+ "getAlphaFromRGB": false,
+ "coordinatesMode": 0,
+ "isCube": false,
+ "uOffset": 0,
+ "vOffset": 0,
+ "uScale": 1,
+ "vScale": -1,
+ "uRotationCenter": 0,
+ "vRotationCenter": 0,
+ "wRotationCenter": 0.5,
+ "invertY": false,
+ "uAng": 0,
+ "vAng": 0,
+ "wAng": 0,
+ "wrapU": 1,
+ "wrapV": 1,
+ "coordinatesIndex": 0,
+ "isRenderTarget": false,
+ "renderTargetSize": 0,
+ "mirrorPlane": null,
+ "renderList": null,
+ "animations": [],
+ "extensions": null,
+ "samplingMode": 3
+ },
+ "myWorldUnits": 20
+ }
+ },
+ {
+ "translation": [
+ 0,
+ 2,
+ 0
+ ],
+ "rotation": [
+ 0.862729967,
+ 0.0435778722,
+ -0.07547909,
+ 0.49809736
+ ],
+ "scale": [
+ 0.99999994,
+ 1,
+ 0.99999994
+ ],
+ "name": "DirectLight",
+ "extensions": {
+ "KHR_lights_punctual": {
+ "light": 0
+ }
+ },
+ "extras": {
+ "myAngle": 6.28318548,
+ "myArray": 2,
+ "myBoolean": true,
+ "myColor": [
+ 0.992157,
+ 0.8666668,
+ 0.03137255
+ ],
+ "myFloat": 10,
+ "myFRGBA": [
+ 0.9921569,
+ 0.866666734,
+ 0.03137255,
+ 0.5019608
+ ],
+ "myInteger": 10,
+ "myPercent": 0.099999994,
+ "MyString": "Hello",
+ "myTextureMap": {
+ "name": "gradation_horizontal.jpg",
+ "level": 1,
+ "hasAlpha": true,
+ "getAlphaFromRGB": false,
+ "coordinatesMode": 0,
+ "isCube": false,
+ "uOffset": 0,
+ "vOffset": 0,
+ "uScale": 1,
+ "vScale": -1,
+ "uRotationCenter": 0,
+ "vRotationCenter": 0,
+ "wRotationCenter": 0.5,
+ "invertY": false,
+ "uAng": 0,
+ "vAng": 0,
+ "wAng": 0,
+ "wrapU": 1,
+ "wrapV": 1,
+ "coordinatesIndex": 0,
+ "isRenderTarget": false,
+ "renderTargetSize": 0,
+ "mirrorPlane": null,
+ "renderList": null,
+ "animations": [],
+ "extensions": null,
+ "samplingMode": 3
+ },
+ "myWorldUnits": 10
+ }
+ },
+ {
+ "camera": 0,
+ "translation": [
+ 1.01967847,
+ 1.85228419,
+ 5
+ ],
+ "rotation": [
+ -0.172344267,
+ 0.098900944,
+ 0.0173945539,
+ 0.97990483
+ ],
+ "scale": [
+ 1,
+ 1,
+ 1
+ ],
+ "name": "Camera001",
+ "extras": {
+ "myAngle": 6.28318548,
+ "myArray": 2,
+ "myBoolean": true,
+ "myColor": [
+ 0.992157,
+ 0.8666668,
+ 0.03137255
+ ],
+ "myFloat": 10,
+ "myFRGBA": [
+ 0.9921569,
+ 0.866666734,
+ 0.03137255,
+ 0.5
+ ],
+ "myInteger": 10,
+ "myPercent": 0.099999994,
+ "MyString": "Hello",
+ "myTextureMap": {
+ "name": "gradation_horizontal.jpg",
+ "level": 1,
+ "hasAlpha": true,
+ "getAlphaFromRGB": false,
+ "coordinatesMode": 0,
+ "isCube": false,
+ "uOffset": 0,
+ "vOffset": 0,
+ "uScale": 1,
+ "vScale": -1,
+ "uRotationCenter": 0,
+ "vRotationCenter": 0,
+ "wRotationCenter": 0.5,
+ "invertY": false,
+ "uAng": 0,
+ "vAng": 0,
+ "wAng": 0,
+ "wrapU": 1,
+ "wrapV": 1,
+ "coordinatesIndex": 0,
+ "isRenderTarget": false,
+ "renderTargetSize": 0,
+ "mirrorPlane": null,
+ "renderList": null,
+ "animations": [],
+ "extensions": null,
+ "samplingMode": 3
+ },
+ "myWorldUnits": 10
+ }
+ }
+ ],
+ "cameras": [
+ {
+ "perspective": {
+ "yfov": 0.6024157,
+ "zfar": 10000,
+ "znear": 0.1
+ },
+ "type": "perspective",
+ "name": "Camera001",
+ "extras": {
+ "myAngle": 6.28318548,
+ "myArray": 2,
+ "myBoolean": true,
+ "myColor": [
+ 0.992157,
+ 0.8666668,
+ 0.03137255
+ ],
+ "myFloat": 10,
+ "myFRGBA": [
+ 0.9921569,
+ 0.866666734,
+ 0.03137255,
+ 0.5
+ ],
+ "myInteger": 10,
+ "myPercent": 0.099999994,
+ "MyString": "Hello",
+ "myTextureMap": {
+ "name": "gradation_horizontal.jpg",
+ "level": 1,
+ "hasAlpha": true,
+ "getAlphaFromRGB": false,
+ "coordinatesMode": 0,
+ "isCube": false,
+ "uOffset": 0,
+ "vOffset": 0,
+ "uScale": 1,
+ "vScale": -1,
+ "uRotationCenter": 0,
+ "vRotationCenter": 0,
+ "wRotationCenter": 0.5,
+ "invertY": false,
+ "uAng": 0,
+ "vAng": 0,
+ "wAng": 0,
+ "wrapU": 1,
+ "wrapV": 1,
+ "coordinatesIndex": 0,
+ "isRenderTarget": false,
+ "renderTargetSize": 0,
+ "mirrorPlane": null,
+ "renderList": null,
+ "animations": [],
+ "extensions": null,
+ "samplingMode": 3
+ },
+ "myWorldUnits": 10
+ }
+ }
+ ],
+ "meshes": [
+ {
+ "primitives": [
+ {
+ "attributes": {
+ "POSITION": 1,
+ "NORMAL": 2,
+ "TEXCOORD_0": 3
+ },
+ "indices": 0,
+ "mode": 4,
+ "material": 0
+ }
+ ],
+ "name": "MasterMesh"
+ }
+ ],
+ "accessors": [
+ {
+ "bufferView": 0,
+ "componentType": 5123,
+ "count": 36,
+ "type": "SCALAR",
+ "name": "accessorIndices"
+ },
+ {
+ "bufferView": 1,
+ "componentType": 5126,
+ "count": 36,
+ "max": [
+ 0.5,
+ 1,
+ 0.5
+ ],
+ "min": [
+ -0.5,
+ 0,
+ -0.5
+ ],
+ "type": "VEC3",
+ "name": "accessorPositions"
+ },
+ {
+ "bufferView": 1,
+ "byteOffset": 432,
+ "componentType": 5126,
+ "count": 36,
+ "type": "VEC3",
+ "name": "accessorNormals"
+ },
+ {
+ "bufferView": 2,
+ "componentType": 5126,
+ "count": 36,
+ "type": "VEC2",
+ "name": "accessorUVs"
+ }
+ ],
+ "bufferViews": [
+ {
+ "buffer": 0,
+ "byteLength": 72,
+ "name": "bufferViewScalar"
+ },
+ {
+ "buffer": 0,
+ "byteOffset": 72,
+ "byteLength": 864,
+ "byteStride": 12,
+ "name": "bufferViewFloatVec3"
+ },
+ {
+ "buffer": 0,
+ "byteOffset": 936,
+ "byteLength": 288,
+ "byteStride": 8,
+ "name": "bufferViewFloatVec2"
+ }
+ ],
+ "buffers": [
+ {
+ "uri": "CustomAttributes.bin",
+ "byteLength": 1224
+ }
+ ],
+ "materials": [
+ {
+ "pbrMetallicRoughness": {
+ "baseColorFactor": [
+ 0.5,
+ 0,
+ 0,
+ 1
+ ],
+ "metallicFactor": 0,
+ "roughnessFactor": 0.450053632
+ },
+ "emissiveFactor": [
+ 0,
+ 0,
+ 0
+ ],
+ "alphaMode": "OPAQUE",
+ "name": "MyMaterial",
+ "extras": {
+ "myAngle": 6.28318548,
+ "myArray": 1,
+ "myBoolean": true,
+ "myColor": [
+ 0.992157,
+ 0.8666668,
+ 0.03137255
+ ],
+ "myFloat": 10,
+ "myFRGBA": [
+ 0.9921569,
+ 0.866666734,
+ 0.03137255,
+ 0.5019608
+ ],
+ "myInteger": 10,
+ "myPercent": 0.099999994,
+ "MyString": "Hello",
+ "myTextureMap": {
+ "name": "gradation_horizontal.jpg",
+ "level": 1,
+ "hasAlpha": true,
+ "getAlphaFromRGB": false,
+ "coordinatesMode": 0,
+ "isCube": false,
+ "uOffset": 0,
+ "vOffset": 0,
+ "uScale": 1,
+ "vScale": -1,
+ "uRotationCenter": 0,
+ "vRotationCenter": 0,
+ "wRotationCenter": 0.5,
+ "invertY": false,
+ "uAng": 0,
+ "vAng": 0,
+ "wAng": 0,
+ "wrapU": 1,
+ "wrapV": 1,
+ "coordinatesIndex": 0,
+ "isRenderTarget": false,
+ "renderTargetSize": 0,
+ "mirrorPlane": null,
+ "renderList": null,
+ "animations": [],
+ "extensions": null,
+ "samplingMode": 3
+ },
+ "myWorldUnits": 10
+ }
+ }
+ ],
+ "extensions": {
+ "KHR_lights_punctual": {
+ "lights": [
+ {
+ "color": [
+ 1,
+ 1,
+ 1
+ ],
+ "intensity": 1,
+ "type": "directional",
+ "extras": {
+ "myAngle": 6.28318548,
+ "myArray": 2,
+ "myBoolean": true,
+ "myColor": [
+ 0.992157,
+ 0.8666668,
+ 0.03137255
+ ],
+ "myFloat": 10,
+ "myFRGBA": [
+ 0.9921569,
+ 0.866666734,
+ 0.03137255,
+ 0.5019608
+ ],
+ "myInteger": 10,
+ "myPercent": 0.099999994,
+ "MyString": "Hello",
+ "myTextureMap": {
+ "name": "gradation_horizontal.jpg",
+ "level": 1,
+ "hasAlpha": true,
+ "getAlphaFromRGB": false,
+ "coordinatesMode": 0,
+ "isCube": false,
+ "uOffset": 0,
+ "vOffset": 0,
+ "uScale": 1,
+ "vScale": -1,
+ "uRotationCenter": 0,
+ "vRotationCenter": 0,
+ "wRotationCenter": 0.5,
+ "invertY": false,
+ "uAng": 0,
+ "vAng": 0,
+ "wAng": 0,
+ "wrapU": 1,
+ "wrapV": 1,
+ "coordinatesIndex": 0,
+ "isRenderTarget": false,
+ "renderTargetSize": 0,
+ "mirrorPlane": null,
+ "renderList": null,
+ "animations": [],
+ "extensions": null,
+ "samplingMode": 3
+ },
+ "myWorldUnits": 10
+ }
+ }
+ ]
+ }
+ }
+}
\ No newline at end of file
diff --git a/3ds Max/Samples/glTF 2.0/DoubleSidedMaterial/BackMaterial_baseColor.png b/3ds Max/Samples/glTF 2.0/DoubleSidedMaterial/BackMaterial_baseColor.png
new file mode 100644
index 00000000..b9ba8e5f
Binary files /dev/null and b/3ds Max/Samples/glTF 2.0/DoubleSidedMaterial/BackMaterial_baseColor.png differ
diff --git a/3ds Max/Samples/glTF 2.0/DoubleSidedMaterial/DoubleSidedMaterial.bin b/3ds Max/Samples/glTF 2.0/DoubleSidedMaterial/DoubleSidedMaterial.bin
new file mode 100644
index 00000000..ea32e96d
Binary files /dev/null and b/3ds Max/Samples/glTF 2.0/DoubleSidedMaterial/DoubleSidedMaterial.bin differ
diff --git a/3ds Max/Samples/glTF 2.0/DoubleSidedMaterial/DoubleSidedMaterial.gltf b/3ds Max/Samples/glTF 2.0/DoubleSidedMaterial/DoubleSidedMaterial.gltf
new file mode 100644
index 00000000..ca123e28
--- /dev/null
+++ b/3ds Max/Samples/glTF 2.0/DoubleSidedMaterial/DoubleSidedMaterial.gltf
@@ -0,0 +1 @@
+{"asset":{"version":"2.0","generator":"babylon.js glTF exporter for 3dsmax 2019 v1.5.0"},"scene":0,"scenes":[{"nodes":[0,1],"extensions":{}}],"nodes":[{"mesh":0,"translation":[0.0,0.0,0.0],"rotation":[0.50000006,0.5,0.49999997,0.5],"scale":[1.0,1.0,1.0],"name":"Plane001"},{"translation":[0.0,0.0,0.0],"rotation":[0.0,0.0,0.0,1.0],"scale":[1.0,1.0,1.0],"name":"Default light"}],"meshes":[{"primitives":[{"attributes":{"POSITION":1,"NORMAL":2,"TEXCOORD_0":3},"indices":0,"mode":4,"material":0},{"attributes":{"POSITION":5,"NORMAL":6,"TEXCOORD_0":7},"indices":4,"mode":4,"material":1}],"name":"Plane001"}],"accessors":[{"bufferView":0,"componentType":5123,"count":6,"type":"SCALAR","name":"accessorIndices"},{"bufferView":1,"componentType":5126,"count":6,"max":[29.4439182,0.0,25.37577],"min":[-29.4439182,0.0,-25.37577],"type":"VEC3","name":"accessorPositions"},{"bufferView":1,"byteOffset":72,"componentType":5126,"count":6,"type":"VEC3","name":"accessorNormals"},{"bufferView":2,"componentType":5126,"count":6,"type":"VEC2","name":"accessorUVs"},{"bufferView":0,"byteOffset":12,"componentType":5123,"count":6,"type":"SCALAR","name":"accessorIndices"},{"bufferView":1,"byteOffset":144,"componentType":5126,"count":6,"max":[29.4439182,0.0,25.37577],"min":[-29.4439182,0.0,-25.37577],"type":"VEC3","name":"accessorPositions"},{"bufferView":1,"byteOffset":216,"componentType":5126,"count":6,"type":"VEC3","name":"accessorNormals"},{"bufferView":2,"byteOffset":48,"componentType":5126,"count":6,"type":"VEC2","name":"accessorUVs"}],"bufferViews":[{"buffer":0,"byteLength":24,"name":"bufferViewScalar"},{"buffer":0,"byteOffset":24,"byteLength":288,"byteStride":12,"name":"bufferViewFloatVec3"},{"buffer":0,"byteOffset":312,"byteLength":96,"byteStride":8,"name":"bufferViewFloatVec2"}],"buffers":[{"uri":"DoubleSidedMaterial.bin","byteLength":408}],"materials":[{"pbrMetallicRoughness":{"baseColorFactor":[1.0,1.0,1.0,1.0],"baseColorTexture":{"index":0,"texCoord":0},"metallicFactor":0.0,"roughnessFactor":0.450053632},"emissiveFactor":[0.0,0.0,0.0],"alphaMode":"BLEND","name":"FrontMaterial"},{"pbrMetallicRoughness":{"baseColorFactor":[1.0,1.0,1.0,1.0],"baseColorTexture":{"index":1,"texCoord":0},"metallicFactor":0.0,"roughnessFactor":0.450053632},"emissiveFactor":[0.0,0.0,0.0],"alphaMode":"OPAQUE","name":"BackMaterial"}],"textures":[{"sampler":0,"source":0,"name":"FrontMaterial_baseColor.png"},{"sampler":0,"source":1,"name":"BackMaterial_baseColor.png"}],"images":[{"uri":"FrontMaterial_baseColor.png"},{"uri":"BackMaterial_baseColor.png"}],"samplers":[{"magFilter":9729,"minFilter":9987,"wrapS":10497,"wrapT":10497}]}
\ No newline at end of file
diff --git a/3ds Max/Samples/glTF 2.0/DoubleSidedMaterial/FrontMaterial_baseColor.png b/3ds Max/Samples/glTF 2.0/DoubleSidedMaterial/FrontMaterial_baseColor.png
new file mode 100644
index 00000000..5af15d0b
Binary files /dev/null and b/3ds Max/Samples/glTF 2.0/DoubleSidedMaterial/FrontMaterial_baseColor.png differ
diff --git a/3ds Max/Samples/sourceModels/BabylonMaterialAttributes/BackfaceCulling.max b/3ds Max/Samples/sourceModels/BabylonMaterialAttributes/BackfaceCulling.max
new file mode 100644
index 00000000..6b0ad26a
Binary files /dev/null and b/3ds Max/Samples/sourceModels/BabylonMaterialAttributes/BackfaceCulling.max differ
diff --git a/3ds Max/Samples/sourceModels/BabylonMaterialAttributes/Default.max b/3ds Max/Samples/sourceModels/BabylonMaterialAttributes/Default.max
new file mode 100644
index 00000000..a11e974f
Binary files /dev/null and b/3ds Max/Samples/sourceModels/BabylonMaterialAttributes/Default.max differ
diff --git a/3ds Max/Samples/sourceModels/BabylonMaterialAttributes/MaxSimultaneousLights.max b/3ds Max/Samples/sourceModels/BabylonMaterialAttributes/MaxSimultaneousLights.max
new file mode 100644
index 00000000..87c3e539
Binary files /dev/null and b/3ds Max/Samples/sourceModels/BabylonMaterialAttributes/MaxSimultaneousLights.max differ
diff --git a/3ds Max/Samples/sourceModels/BabylonMaterialAttributes/TransparencyMode/Blend.max b/3ds Max/Samples/sourceModels/BabylonMaterialAttributes/TransparencyMode/Blend.max
new file mode 100644
index 00000000..39d6234c
Binary files /dev/null and b/3ds Max/Samples/sourceModels/BabylonMaterialAttributes/TransparencyMode/Blend.max differ
diff --git a/3ds Max/Samples/sourceModels/BabylonMaterialAttributes/TransparencyMode/Mask.max b/3ds Max/Samples/sourceModels/BabylonMaterialAttributes/TransparencyMode/Mask.max
new file mode 100644
index 00000000..6997c1c2
Binary files /dev/null and b/3ds Max/Samples/sourceModels/BabylonMaterialAttributes/TransparencyMode/Mask.max differ
diff --git a/3ds Max/Samples/sourceModels/BabylonMaterialAttributes/TransparencyMode/Opaque.max b/3ds Max/Samples/sourceModels/BabylonMaterialAttributes/TransparencyMode/Opaque.max
new file mode 100644
index 00000000..e732e726
Binary files /dev/null and b/3ds Max/Samples/sourceModels/BabylonMaterialAttributes/TransparencyMode/Opaque.max differ
diff --git a/3ds Max/Samples/sourceModels/BabylonMaterialAttributes/TransparencyMode/gradation_horizontal.jpg b/3ds Max/Samples/sourceModels/BabylonMaterialAttributes/TransparencyMode/gradation_horizontal.jpg
new file mode 100644
index 00000000..7437068c
Binary files /dev/null and b/3ds Max/Samples/sourceModels/BabylonMaterialAttributes/TransparencyMode/gradation_horizontal.jpg differ
diff --git a/3ds Max/Samples/sourceModels/BabylonMaterialAttributes/Unlit.max b/3ds Max/Samples/sourceModels/BabylonMaterialAttributes/Unlit.max
new file mode 100644
index 00000000..ac32ac0d
Binary files /dev/null and b/3ds Max/Samples/sourceModels/BabylonMaterialAttributes/Unlit.max differ
diff --git a/3ds Max/Samples/sourceModels/CustomAttributes/CustomAttributes.max b/3ds Max/Samples/sourceModels/CustomAttributes/CustomAttributes.max
new file mode 100644
index 00000000..9a113b0c
Binary files /dev/null and b/3ds Max/Samples/sourceModels/CustomAttributes/CustomAttributes.max differ
diff --git a/3ds Max/Samples/sourceModels/CustomAttributes/gradation_horizontal.jpg b/3ds Max/Samples/sourceModels/CustomAttributes/gradation_horizontal.jpg
new file mode 100644
index 00000000..7437068c
Binary files /dev/null and b/3ds Max/Samples/sourceModels/CustomAttributes/gradation_horizontal.jpg differ
diff --git a/3ds Max/Samples/sourceModels/CustomAttributes/gradation_vertical.jpg b/3ds Max/Samples/sourceModels/CustomAttributes/gradation_vertical.jpg
new file mode 100644
index 00000000..b6a0c78a
Binary files /dev/null and b/3ds Max/Samples/sourceModels/CustomAttributes/gradation_vertical.jpg differ
diff --git a/3ds Max/Samples/sourceModels/DoubleSidedMaterial/DoubleSidedMaterial.max b/3ds Max/Samples/sourceModels/DoubleSidedMaterial/DoubleSidedMaterial.max
new file mode 100644
index 00000000..b0ee681d
Binary files /dev/null and b/3ds Max/Samples/sourceModels/DoubleSidedMaterial/DoubleSidedMaterial.max differ
diff --git a/3ds Max/Samples/sourceModels/DoubleSidedMaterial/TestImage.png b/3ds Max/Samples/sourceModels/DoubleSidedMaterial/TestImage.png
new file mode 100644
index 00000000..a951b93f
Binary files /dev/null and b/3ds Max/Samples/sourceModels/DoubleSidedMaterial/TestImage.png differ
diff --git a/3ds Max/Samples/sourceModels/DoubleSidedMaterial/Warhol.jpg b/3ds Max/Samples/sourceModels/DoubleSidedMaterial/Warhol.jpg
new file mode 100644
index 00000000..a4a365c8
Binary files /dev/null and b/3ds Max/Samples/sourceModels/DoubleSidedMaterial/Warhol.jpg differ
diff --git a/BabylonJS_Installer/BabylonJS_Installer/BabylonJS_Installer.csproj b/BabylonJS_Installer/BabylonJS_Installer/BabylonJS_Installer.csproj
index 91808e11..27ead73f 100644
--- a/BabylonJS_Installer/BabylonJS_Installer/BabylonJS_Installer.csproj
+++ b/BabylonJS_Installer/BabylonJS_Installer/BabylonJS_Installer.csproj
@@ -24,7 +24,7 @@
false
true
0
- 1.2.3.%2a
+ 1.3.0.%2a
false
true
true
@@ -124,7 +124,7 @@
False
- Microsoft .NET Framework 4.7.2 %28x86 and x64%29
+ Microsoft .NET Framework 4.7.2 %28x86 et x64%29
true
diff --git a/BabylonJS_Installer/BabylonJS_Installer/Downloader.cs b/BabylonJS_Installer/BabylonJS_Installer/Downloader.cs
index 26a1eecf..14d1cd84 100644
--- a/BabylonJS_Installer/BabylonJS_Installer/Downloader.cs
+++ b/BabylonJS_Installer/BabylonJS_Installer/Downloader.cs
@@ -111,7 +111,7 @@ private async void getLatestRelease(Action OnSuccess)
{
this.form.error(
"Can't reach the GitHub API\n"
- + "Please, try in 1 hour. (The API limitation is 60 queries / hour\n"
+ + "Please, try in 1 hour. (The API limitation is 60 queries / hour)\n"
+ "Error message : \n"
+ "\"" + ex.Message + "\""
);
@@ -172,7 +172,9 @@ private bool tryInstallDownload(string downloadVersion)
{
foreach (ZipArchiveEntry entry in myZip.Entries)
{
- entry.ExtractToFile(this.installDir + this.installLibSubDir + "/" + entry.Name, true);
+ if (entry.Name.Substring(0, 9) == "AEbabylon") entry.ExtractToFile(this.installDir + "scripts\\AETemplates" + "/" + entry.Name, true);
+ else if (entry.Name.Substring(0, 9) == "NEbabylon") entry.ExtractToFile(this.installDir + "scripts\\NETemplates" + "/" + entry.Name, true);
+ else entry.ExtractToFile(this.installDir + this.installLibSubDir + "/" + entry.Name, true);
}
}
}
diff --git a/BabylonJS_Installer/BabylonJS_Installer/MainForm.Designer.cs b/BabylonJS_Installer/BabylonJS_Installer/MainForm.Designer.cs
index 9db721ef..12e9c1c2 100644
--- a/BabylonJS_Installer/BabylonJS_Installer/MainForm.Designer.cs
+++ b/BabylonJS_Installer/BabylonJS_Installer/MainForm.Designer.cs
@@ -739,7 +739,7 @@ private void InitializeComponent()
this.soft_version.Name = "soft_version";
this.soft_version.Size = new System.Drawing.Size(98, 20);
this.soft_version.TabIndex = 3;
- this.soft_version.Text = " v1.2.3";
+ this.soft_version.Text = " v1.3.0";
this.soft_version.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
//
// button_All_Update
diff --git a/BabylonJS_Installer/BabylonJS_Installer/SoftwareChecker.cs b/BabylonJS_Installer/BabylonJS_Installer/SoftwareChecker.cs
index 3270c7a4..181b2fb3 100644
--- a/BabylonJS_Installer/BabylonJS_Installer/SoftwareChecker.cs
+++ b/BabylonJS_Installer/BabylonJS_Installer/SoftwareChecker.cs
@@ -29,13 +29,21 @@ class SoftwareChecker
"Maya2Babylon.nll.dll",
"Newtonsoft.Json.dll",
"TargaImage.dll",
- "TQ.Texture.dll"
+ "TQ.Texture.dll",
+ "AEbabylonAiStandardSurfaceMaterialNodeTemplate.mel",
+ "AEbabylonStandardMaterialNodeTemplate.mel",
+ "AEbabylonStingrayPBSMaterialNodeTemplate.mel",
+ "NEbabylonAiStandardSurfaceMaterialNodeTemplate.xml",
+ "NEbabylonStandardMaterialNodeTemplate.xml",
+ "NEbabylonStingrayPBSMaterialNodeTemplate.xml"
} }
};
public Dictionary libFolder = new Dictionary()
{
{ "Max", "bin\\assemblies" },
- { "Maya", "bin\\plug-ins" }
+ { "Maya", "bin\\plug-ins" },
+ { "MayaAE", "scripts\\AETemplates" },
+ { "MayaNE", "scripts\\NETemplates" }
};
public MainForm form;
@@ -131,7 +139,10 @@ public void uninstallExporter(string soft, string version, string path)
foreach (string file in this.files[soft])
{
- fileFullPath = path + this.libFolder[soft] + "\\" + file;
+ if (file.Substring(0, 9) == "AEbabylon") fileFullPath = path + this.libFolder[soft + "AE"] + "\\" + file;
+ else if (file.Substring(0, 9) == "NEbabylon") fileFullPath = path + this.libFolder[soft + "NE"] + "\\" + file;
+ else fileFullPath = path + this.libFolder[soft] + "\\" + file;
+
try
{
File.Delete(fileFullPath);
@@ -148,7 +159,7 @@ public void uninstallExporter(string soft, string version, string path)
errors++;
this.form.error(
ex.GetType().ToString() + " error while deleting the file : " + file + "\n"
- + " At : " + path + this.libFolder[soft] + "\\" + "\n"
+ + " At : " + fileFullPath + "\\" + "\n"
+ " " + ex.Message);
}
}
diff --git a/Maya/191031_Maya_assemblies.zip b/Maya/191031_Maya_assemblies.zip
new file mode 100644
index 00000000..4be17710
Binary files /dev/null and b/Maya/191031_Maya_assemblies.zip differ
diff --git a/Maya/AETemplates/AEbabylonAiStandardSurfaceMaterialNodeTemplate.mel b/Maya/AETemplates/AEbabylonAiStandardSurfaceMaterialNodeTemplate.mel
new file mode 100644
index 00000000..25c559ed
--- /dev/null
+++ b/Maya/AETemplates/AEbabylonAiStandardSurfaceMaterialNodeTemplate.mel
@@ -0,0 +1,27 @@
+global proc AEbabylonAiStandardSurfaceMaterialNodeTemplate ( string $nodeName )
+{
+ editorTemplate -beginScrollLayout;
+
+ editorTemplate -suppress "caching";
+ editorTemplate -suppress "frozen";
+ editorTemplate -suppress "nodeState";
+ editorTemplate -suppress "outTransparency";
+ editorTemplate -suppress "outGlowColor";
+ editorTemplate -suppress "outMatteOpacity";
+ editorTemplate -suppress "enableHwShading";
+ editorTemplate -suppress "varyingParameters";
+ editorTemplate -suppress "uniformParameters";
+
+ editorTemplate -beginLayout "Common Attributes" -collapse 0;
+ editorTemplate -addControl "babylonTransparencyMode";
+ editorTemplate -addControl "babylonBackfaceCulling";
+ editorTemplate -endLayout;
+ editorTemplate -beginLayout "Extension Attributes" -collapse 0;
+ editorTemplate -addControl "babylonUnlit";
+ editorTemplate -endLayout;
+ editorTemplate -beginLayout "Babylon.js Attributes" -collapse 0;
+ editorTemplate -addControl "babylonMaxSimultaneousLights";
+ editorTemplate -endLayout;
+
+ editorTemplate -endScrollLayout;
+}
diff --git a/Maya/AETemplates/AEbabylonStandardMaterialNodeTemplate.mel b/Maya/AETemplates/AEbabylonStandardMaterialNodeTemplate.mel
new file mode 100644
index 00000000..c4e7864c
--- /dev/null
+++ b/Maya/AETemplates/AEbabylonStandardMaterialNodeTemplate.mel
@@ -0,0 +1,27 @@
+global proc AEbabylonStandardMaterialNodeTemplate ( string $nodeName )
+{
+ editorTemplate -beginScrollLayout;
+
+ editorTemplate -suppress "caching";
+ editorTemplate -suppress "frozen";
+ editorTemplate -suppress "nodeState";
+ editorTemplate -suppress "outTransparency";
+ editorTemplate -suppress "outGlowColor";
+ editorTemplate -suppress "outMatteOpacity";
+ editorTemplate -suppress "enableHwShading";
+ editorTemplate -suppress "varyingParameters";
+ editorTemplate -suppress "uniformParameters";
+
+ editorTemplate -beginLayout "Common Attributes" -collapse 0;
+ editorTemplate -addControl "babylonTransparencyMode";
+ editorTemplate -addControl "babylonBackfaceCulling";
+ editorTemplate -endLayout;
+ editorTemplate -beginLayout "Extension Attributes" -collapse 0;
+ editorTemplate -addControl "babylonUnlit";
+ editorTemplate -endLayout;
+ editorTemplate -beginLayout "Babylon.js Attributes" -collapse 0;
+ editorTemplate -addControl "babylonMaxSimultaneousLights";
+ editorTemplate -endLayout;
+
+ editorTemplate -endScrollLayout;
+}
diff --git a/Maya/AETemplates/AEbabylonStingrayPBSMaterialNodeTemplate.mel b/Maya/AETemplates/AEbabylonStingrayPBSMaterialNodeTemplate.mel
new file mode 100644
index 00000000..791f96fd
--- /dev/null
+++ b/Maya/AETemplates/AEbabylonStingrayPBSMaterialNodeTemplate.mel
@@ -0,0 +1,27 @@
+global proc AEbabylonStingrayPBSMaterialNodeTemplate ( string $nodeName )
+{
+ editorTemplate -beginScrollLayout;
+
+ editorTemplate -suppress "caching";
+ editorTemplate -suppress "frozen";
+ editorTemplate -suppress "nodeState";
+ editorTemplate -suppress "outTransparency";
+ editorTemplate -suppress "outGlowColor";
+ editorTemplate -suppress "outMatteOpacity";
+ editorTemplate -suppress "enableHwShading";
+ editorTemplate -suppress "varyingParameters";
+ editorTemplate -suppress "uniformParameters";
+
+ editorTemplate -beginLayout "Common Attributes" -collapse 0;
+ editorTemplate -annotation "Read only" -addControl "babylonTransparencyMode";
+ editorTemplate -addControl "babylonBackfaceCulling";
+ editorTemplate -endLayout;
+ editorTemplate -beginLayout "Extension Attributes" -collapse 0;
+ editorTemplate -addControl "babylonUnlit";
+ editorTemplate -endLayout;
+ editorTemplate -beginLayout "Babylon.js Attributes" -collapse 0;
+ editorTemplate -addControl "babylonMaxSimultaneousLights";
+ editorTemplate -endLayout;
+
+ editorTemplate -endScrollLayout;
+}
diff --git a/Maya/Exporter/BabylonExporter.Camera.cs b/Maya/Exporter/BabylonExporter.Camera.cs
index 2bfd0ebf..b77b2d4a 100644
--- a/Maya/Exporter/BabylonExporter.Camera.cs
+++ b/Maya/Exporter/BabylonExporter.Camera.cs
@@ -85,6 +85,9 @@ private BabylonNode ExportCamera(MDagPath mDagPath, BabylonScene babylonScene)
// Hierarchy
ExportHierarchy(babylonCamera, mFnTransform);
+ // User custom attributes
+ babylonCamera.metadata = ExportCustomAttributeFromTransform(mFnTransform);
+
// Position / rotation
RaiseVerbose("BabylonExporter.Camera | ExportTransform", 2);
float[] position = null;
diff --git a/Maya/Exporter/BabylonExporter.CustomAttributes.cs b/Maya/Exporter/BabylonExporter.CustomAttributes.cs
new file mode 100644
index 00000000..650c799c
--- /dev/null
+++ b/Maya/Exporter/BabylonExporter.CustomAttributes.cs
@@ -0,0 +1,112 @@
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Text;
+using Autodesk.Maya.OpenMaya;
+using BabylonExport.Entities;
+using MayaBabylon;
+
+namespace Maya2Babylon
+{
+ internal partial class BabylonExporter
+ {
+
+ private class BaseObject
+ {
+ public MFnTransform mFnTransform;
+ public BabylonStandardMaterial babylonMaterial;
+ }
+
+ public Dictionary ExportCustomAttributeFromTransform(MFnTransform mfnTransform) {
+ var baseObject = new BaseObject();
+ baseObject.mFnTransform = mfnTransform;
+ baseObject.babylonMaterial = null;
+ return _ExportCustomUserAttributes(baseObject);
+ }
+
+ public Dictionary ExportCustomAttributeFromMaterial(BabylonStandardMaterial babylonMaterial)
+ {
+ var baseObject = new BaseObject();
+ baseObject.mFnTransform = null;
+ baseObject.babylonMaterial = babylonMaterial;
+ return _ExportCustomUserAttributes(baseObject);
+ }
+
+ private Dictionary _ExportCustomUserAttributes(BaseObject baseObject)
+ {
+ var objectName = "";
+
+ if (baseObject.mFnTransform != null)
+ {
+ objectName = baseObject.mFnTransform.name;
+ }
+ else if(baseObject.babylonMaterial != null)
+ {
+ objectName = baseObject.babylonMaterial.name;
+ }
+
+ MStringArray customAttributeNames = new MStringArray();
+ Dictionary customsAttributes = new Dictionary();
+
+ MGlobal.executeCommand($"listAttr -ud {objectName}", customAttributeNames);
+
+ foreach (string name in customAttributeNames)
+ {
+ MStringArray type = new MStringArray();
+
+ MGlobal.executeCommand($"getAttr -type {objectName}.{name}", type);
+
+ switch (type[0])
+ {
+ case "double":
+ double floatValue = 0;
+ MGlobal.executeCommand($"getAttr {objectName}.{name}", out floatValue);
+ customsAttributes.Add(name, floatValue);
+ break;
+ case "bool":
+ int boolBinValue = 0;
+ MGlobal.executeCommand($"getAttr {objectName}.{name}", out boolBinValue);
+ customsAttributes.Add(name, boolBinValue);
+ break;
+ case "long":
+ int intValue = 0;
+ MGlobal.executeCommand($"getAttr {objectName}.{name}", out intValue);
+ customsAttributes.Add(name, intValue);
+ break;
+ case "string":
+ string stringValue = "";
+ MGlobal.executeCommand($"getAttr {objectName}.{name}", out stringValue);
+ customsAttributes.Add(name, stringValue);
+ break;
+ case "enum":
+ int enumValue = 0;
+ MGlobal.executeCommand($"getAttr {objectName}.{name}", out enumValue);
+ customsAttributes.Add(name, enumValue);
+ break;
+ case "double3":
+ MDoubleArray vectorValue = new MDoubleArray();
+ MGlobal.executeCommand($"getAttr {objectName}.{name}", vectorValue);
+ customsAttributes.Add(name, vectorValue);
+ break;
+ default:
+ MCommandResult attrValue = new MCommandResult();
+ MGlobal.executeCommand($"getAttr {objectName}.{name}", attrValue);
+ customsAttributes.Add(name, attrValue);
+ break;
+ }
+ }
+
+ foreach (string name in customAttributeNames)
+ {
+ if (customsAttributes.ContainsKey(name + "X") && customsAttributes.ContainsKey(name + "Y") && customsAttributes.ContainsKey(name + "Z"))
+ {
+ customsAttributes.Remove(name + "X");
+ customsAttributes.Remove(name + "Y");
+ customsAttributes.Remove(name + "Z");
+ }
+ }
+
+ return customsAttributes;
+ }
+ }
+}
diff --git a/Maya/Exporter/BabylonExporter.Light.cs b/Maya/Exporter/BabylonExporter.Light.cs
index b4bde367..15cfef1a 100644
--- a/Maya/Exporter/BabylonExporter.Light.cs
+++ b/Maya/Exporter/BabylonExporter.Light.cs
@@ -125,6 +125,9 @@ private BabylonNode ExportLight(MDagPath mDagPath, BabylonScene babylonScene)
// Hierarchy
ExportHierarchy(babylonLight, mFnTransform);
+ // User custom attributes
+ babylonLight.metadata = ExportCustomAttributeFromTransform(mFnTransform);
+
// Position
//RaiseVerbose("BabylonExporter.Light | ExportTransform", 2);
float[] position = null;
diff --git a/Maya/Exporter/BabylonExporter.Logger.cs b/Maya/Exporter/BabylonExporter.Logger.cs
index c6f18244..215174f7 100644
--- a/Maya/Exporter/BabylonExporter.Logger.cs
+++ b/Maya/Exporter/BabylonExporter.Logger.cs
@@ -82,17 +82,9 @@ void Print(MFnDependencyNode dependencyNode, int logRank, string title)
{
// prints
RaiseVerbose(title, logRank);
- RaiseVerbose("Attributes", logRank + 1);
- for (uint i = 0; i < dependencyNode.attributeCount; i++)
- {
- MObject attribute = dependencyNode.attribute(i);
- if (attribute.hasFn(MFn.Type.kAttribute))
- {
- MFnAttribute mFnAttribute = new MFnAttribute(attribute);
- RaiseVerbose("name=" + mFnAttribute.name + " apiType=" + attribute.apiType, logRank + 2);
- }
- }
+ PrintAttributes(dependencyNode, logRank + 1);
+
RaiseVerbose("Connections", logRank + 1);
MPlugArray connections = new MPlugArray();
try {
@@ -101,18 +93,54 @@ void Print(MFnDependencyNode dependencyNode, int logRank, string title)
foreach (MPlug connection in connections)
{
MObject source = connection.source.node;
+
+ MPlugArray destinations = new MPlugArray();
+ connection.destinations(destinations);
+
if (source != null && source.hasFn(MFn.Type.kDependencyNode))
{
MFnDependencyNode node = new MFnDependencyNode(source);
- RaiseVerbose("name=" + connection.name + " source=" + node.name + " source.apiType=" + source.apiType, logRank + 2);
+ RaiseVerbose("name=" + connection.name + " partialName=" + connection.partialName(false, false, false, true) + " source=" + node.name + " source.apiType=" + source.apiType, logRank + 2);
}
else
{
RaiseVerbose("name=" + connection.name, logRank + 2);
}
+
+ RaiseVerbose("destinations.Count=" + destinations.Count, logRank + 3);
+ foreach (MPlug destination in destinations)
+ {
+ MObject destinationObject = destination.node;
+ if (destinationObject != null && destinationObject.hasFn(MFn.Type.kDependencyNode))
+ {
+ MFnDependencyNode node = new MFnDependencyNode(destinationObject);
+ RaiseVerbose("destination=" + node.name + " destination.apiType=" + destinationObject.apiType, logRank + 3);
+
+ if (destinationObject.hasFn(MFn.Type.kShadingEngine))
+ {
+ PrintAttributes(node, logRank + 4);
+ }
+ }
+ }
}
}
catch {}
}
+
+ void PrintAttributes(MFnDependencyNode dependencyNode, int logRank)
+ {
+ // prints
+ RaiseVerbose("Attributes", logRank);
+ for (uint i = 0; i < dependencyNode.attributeCount; i++)
+ {
+ MObject attribute = dependencyNode.attribute(i);
+
+ if (attribute.hasFn(MFn.Type.kAttribute))
+ {
+ MFnAttribute mFnAttribute = new MFnAttribute(attribute);
+ RaiseVerbose("name=" + mFnAttribute.name + " apiType=" + attribute.apiType, logRank + 1);
+ }
+ }
+ }
}
}
diff --git a/Maya/Exporter/BabylonExporter.Material.cs b/Maya/Exporter/BabylonExporter.Material.cs
index d8eb5f74..1ff9562e 100644
--- a/Maya/Exporter/BabylonExporter.Material.cs
+++ b/Maya/Exporter/BabylonExporter.Material.cs
@@ -66,6 +66,7 @@ private void ExportMaterial(MFnDependencyNode materialDependencyNode, BabylonSce
var id = materialDependencyNode.uuid().asString();
RaiseMessage(name, 1);
+ RaiseMessage(materialObject.apiType.ToString(), 1);
RaiseVerbose("materialObject.hasFn(MFn.Type.kBlinn)=" + materialObject.hasFn(MFn.Type.kBlinn), 2);
RaiseVerbose("materialObject.hasFn(MFn.Type.kPhong)=" + materialObject.hasFn(MFn.Type.kPhong), 2);
@@ -73,6 +74,9 @@ private void ExportMaterial(MFnDependencyNode materialDependencyNode, BabylonSce
Print(materialDependencyNode, 2, "Print ExportMaterial materialDependencyNode");
+ // Retreive Babylon Material dependency node
+ MFnDependencyNode babylonAttributesDependencyNode = getBabylonMaterialNode(materialDependencyNode);
+
// Standard material
if (materialObject.hasFn(MFn.Type.kLambert))
{
@@ -104,25 +108,43 @@ private void ExportMaterial(MFnDependencyNode materialDependencyNode, BabylonSce
RaiseVerbose("diffuseCoeff=" + lambertShader.diffuseCoeff, 2);
RaiseVerbose("translucenceCoeff=" + lambertShader.translucenceCoeff, 2);
- var babylonMaterial = new BabylonStandardMaterial(id)
+ BabylonStandardMaterial babylonMaterial = new BabylonStandardMaterial(id)
{
name = name,
- diffuse = lambertShader.color.toArrayRGB(),
- alpha = 1.0f - lambertShader.transparency[0]
+ diffuse = lambertShader.color.toArrayRGB()
};
+ // User custom attributes
+ babylonMaterial.metadata = ExportCustomAttributeFromMaterial(babylonMaterial);
+
+ bool isTransparencyModeFromBabylonMaterialNode = false;
+ if (babylonAttributesDependencyNode != null)
+ {
+ // Transparency mode
+ if (babylonAttributesDependencyNode.hasAttribute("babylonTransparencyMode"))
+ {
+ int transparencyMode = babylonAttributesDependencyNode.findPlug("babylonTransparencyMode").asInt();
+ babylonMaterial.transparencyMode = transparencyMode;
+
+ isTransparencyModeFromBabylonMaterialNode = true;
+ }
+ }
+
// Maya ambient <=> babylon emissive
babylonMaterial.emissive = lambertShader.ambientColor.toArrayRGB();
babylonMaterial.linkEmissiveWithDiffuse = true; // Incandescence (or Illumination) is not exported
- // If transparency is not a shade of grey (shade of grey <=> R=G=B)
- if (lambertShader.transparency[0] != lambertShader.transparency[1] ||
- lambertShader.transparency[0] != lambertShader.transparency[2])
+ if (isTransparencyModeFromBabylonMaterialNode == false || babylonMaterial.transparencyMode != 0)
{
- RaiseWarning("Transparency color is not a shade of grey. Only it's R channel is used.", 2);
+ // If transparency is not a shade of grey (shade of grey <=> R=G=B)
+ if (lambertShader.transparency[0] != lambertShader.transparency[1] ||
+ lambertShader.transparency[0] != lambertShader.transparency[2])
+ {
+ RaiseWarning("Transparency color is not a shade of grey. Only it's R channel is used.", 2);
+ }
+ // Convert transparency to opacity
+ babylonMaterial.alpha = 1.0f - lambertShader.transparency[0];
}
- // Convert transparency to opacity
- babylonMaterial.alpha = 1.0f - lambertShader.transparency[0];
// Specular power
if (materialObject.hasFn(MFn.Type.kReflect))
@@ -160,7 +182,6 @@ private void ExportMaterial(MFnDependencyNode materialDependencyNode, BabylonSce
}
// TODO
- //babylonMaterial.backFaceCulling = !stdMat.TwoSided;
//babylonMaterial.wireframe = stdMat.Wire;
// --- Textures ---
@@ -168,13 +189,21 @@ private void ExportMaterial(MFnDependencyNode materialDependencyNode, BabylonSce
babylonMaterial.diffuseTexture = ExportTexture(materialDependencyNode, "color", babylonScene);
babylonMaterial.emissiveTexture = ExportTexture(materialDependencyNode, "ambientColor", babylonScene); // Maya ambient <=> babylon emissive
babylonMaterial.bumpTexture = ExportTexture(materialDependencyNode, "normalCamera", babylonScene);
- babylonMaterial.opacityTexture = ExportTexture(materialDependencyNode, "transparency", babylonScene, false, true);
+ if (isTransparencyModeFromBabylonMaterialNode == false || babylonMaterial.transparencyMode != 0)
+ {
+ babylonMaterial.opacityTexture = ExportTexture(materialDependencyNode, "transparency", babylonScene, false, true);
+ }
if (materialObject.hasFn(MFn.Type.kReflect))
{
babylonMaterial.specularTexture = ExportTexture(materialDependencyNode, "specularColor", babylonScene);
babylonMaterial.reflectionTexture = ExportTexture(materialDependencyNode, "reflectedColor", babylonScene, true, false, true);
}
+ if (isTransparencyModeFromBabylonMaterialNode == false && (babylonMaterial.alpha != 1.0f || (babylonMaterial.diffuseTexture != null && babylonMaterial.diffuseTexture.hasAlpha) || babylonMaterial.opacityTexture != null))
+ {
+ babylonMaterial.transparencyMode = (int)BabylonPBRMetallicRoughnessMaterial.TransparencyMode.ALPHABLEND;
+ }
+
// Constraints
if (babylonMaterial.diffuseTexture != null)
{
@@ -186,6 +215,62 @@ private void ExportMaterial(MFnDependencyNode materialDependencyNode, BabylonSce
babylonMaterial.emissive = new float[] { 0, 0, 0 };
}
+ if (babylonMaterial.transparencyMode == (int)BabylonPBRMetallicRoughnessMaterial.TransparencyMode.ALPHATEST)
+ {
+ // Set the alphaCutOff value explicitely to avoid different interpretations on different engines
+ // Use the glTF default value rather than the babylon one
+ babylonMaterial.alphaCutOff = 0.5f;
+ }
+
+ if (babylonAttributesDependencyNode == null)
+ {
+ // Create Babylon Material dependency node
+ babylonStandardMaterialNode.Create(materialDependencyNode);
+
+ // Retreive Babylon Material dependency node
+ babylonAttributesDependencyNode = getBabylonMaterialNode(materialDependencyNode);
+ }
+
+ if (babylonAttributesDependencyNode != null)
+ {
+ // Ensure all attributes are setup
+ babylonStandardMaterialNode.Init(babylonAttributesDependencyNode, babylonMaterial);
+
+ RaiseVerbose("Babylon Attributes of " + babylonAttributesDependencyNode.name, 2);
+
+ // Common attributes
+ ExportCommonBabylonAttributes(babylonAttributesDependencyNode, babylonMaterial);
+
+ // Special treatment for Unlit
+ if (babylonMaterial.isUnlit)
+ {
+ if ((babylonMaterial.emissive != null && (babylonMaterial.emissive[0] != 0 || babylonMaterial.emissive[1] != 0 || babylonMaterial.emissive[2] != 0))
+ || (babylonMaterial.emissiveTexture != null)
+ || (babylonMaterial.emissiveFresnelParameters != null))
+ {
+ RaiseWarning("Material is unlit. Emission is discarded and replaced by diffuse.", 2);
+ }
+ // Copy diffuse to emissive
+ babylonMaterial.emissive = babylonMaterial.diffuse;
+ babylonMaterial.emissiveTexture = babylonMaterial.diffuseTexture;
+ babylonMaterial.emissiveFresnelParameters = babylonMaterial.diffuseFresnelParameters;
+
+ babylonMaterial.disableLighting = true;
+ babylonMaterial.linkEmissiveWithDiffuse = false;
+ }
+ // Special treatment for "Alpha test" transparency mode
+ if (babylonMaterial.transparencyMode == (int)BabylonPBRMetallicRoughnessMaterial.TransparencyMode.ALPHATEST)
+ {
+ // Base color and alpha files need to be merged into a single file
+ Color defaultColor = Color.FromArgb((int)(babylonMaterial.diffuse[0] * 255), (int)(babylonMaterial.diffuse[1] * 255), (int)(babylonMaterial.diffuse[2] * 255));
+ MFnDependencyNode baseColorTextureDependencyNode = getTextureDependencyNode(materialDependencyNode, "color");
+ MFnDependencyNode opacityTextureDependencyNode = getTextureDependencyNode(materialDependencyNode, "transparency");
+ babylonMaterial.diffuseTexture = ExportBaseColorAlphaTexture(baseColorTextureDependencyNode, opacityTextureDependencyNode, babylonScene, name, defaultColor, babylonMaterial.alpha);
+ babylonMaterial.opacityTexture = null;
+ babylonMaterial.alpha = 1.0f;
+ }
+ }
+
babylonScene.MaterialsList.Add(babylonMaterial);
}
// Stingray PBS material
@@ -231,12 +316,65 @@ private void ExportMaterial(MFnDependencyNode materialDependencyNode, BabylonSce
{
useOpacityMap = materialDependencyNode.findPlug(useOpacityMapAttributeName).asBool();
}
- if (useColorMap || useOpacityMap)
+ if (materialDependencyNode.hasAttribute("mask_threshold")) // Preset "Masked"
{
- // TODO - Force non use map to default value ?
- // Ex: if useOpacityMap == false, force alpha = 255 for all pixels.
- //babylonMaterial.baseTexture = ExportBaseColorAlphaTexture(materialDependencyNode, useColorMap, useOpacityMap, babylonMaterial.baseColor, babylonMaterial.alpha, babylonScene);
- babylonMaterial.baseTexture = ExportTexture(materialDependencyNode, "TEX_color_map", babylonScene, false, useOpacityMap);
+ if (useColorMap && useOpacityMap)
+ {
+ // Texture is assumed to be already merged
+ babylonMaterial.baseTexture = ExportTexture(materialDependencyNode, "TEX_color_map", babylonScene, false, true);
+ }
+ else if (useColorMap || useOpacityMap)
+ {
+ // Merge Diffuse and Mask
+ Color defaultColor = Color.FromArgb((int)(babylonMaterial.baseColor[0] * 255), (int)(babylonMaterial.baseColor[1] * 255), (int)(babylonMaterial.baseColor[2] * 255));
+ // In Maya, a Masked StingrayPBS material without opacity or mask textures is counted as being fully transparent
+ // Such material is visible only when the mask threshold is set to 0
+ float defaultOpacity = 0;
+
+ // Either use the color map
+ MFnDependencyNode baseColorTextureDependencyNode = null;
+ if (useColorMap)
+ {
+ baseColorTextureDependencyNode = getTextureDependencyNode(materialDependencyNode, "TEX_color_map");
+ }
+ // Or the opacity map
+ MFnDependencyNode opacityTextureDependencyNode = null;
+ if (useOpacityMap)
+ {
+ opacityTextureDependencyNode = getTextureDependencyNode(materialDependencyNode, "TEX_color_map");
+ }
+
+ // Merge default value and texture
+ babylonMaterial.baseTexture = ExportBaseColorAlphaTexture(baseColorTextureDependencyNode, opacityTextureDependencyNode, babylonScene, babylonMaterial.name, defaultColor, defaultOpacity);
+ }
+ else
+ {
+ // In Maya, a Masked StingrayPBS material without opacity or mask textures is counted as being fully transparent
+ // Such material is visible only when the mask threshold is set to 0
+ babylonMaterial.alpha = 0;
+ }
+ }
+ else
+ {
+ if (useColorMap || useOpacityMap)
+ {
+ // Force non use map to default value
+ // Ex: if useOpacityMap == false, force alpha = 255 for all pixels.
+ babylonMaterial.baseTexture = ExportTexture(materialDependencyNode, "TEX_color_map", babylonScene, false, useOpacityMap);
+ }
+ }
+
+ if (babylonMaterial.transparencyMode == (int)BabylonPBRMetallicRoughnessMaterial.TransparencyMode.ALPHATEST)
+ {
+ // Set the alphaCutOff value explicitely to avoid different interpretations on different engines
+ // Use the glTF default value rather than the babylon one
+ babylonMaterial.alphaCutOff = 0.5f;
+ }
+
+ // Alpha cuttoff
+ if (materialDependencyNode.hasAttribute("mask_threshold")) // Preset "Masked"
+ {
+ babylonMaterial.alphaCutOff = materialDependencyNode.findPlug("mask_threshold").asFloat();
}
// Metallic, roughness, ambient occlusion
@@ -327,7 +465,14 @@ private void ExportMaterial(MFnDependencyNode materialDependencyNode, BabylonSce
}
if (babylonMaterial.alpha != 1.0f || (babylonMaterial.baseTexture != null && babylonMaterial.baseTexture.hasAlpha))
{
- babylonMaterial.transparencyMode = (int)BabylonPBRMetallicRoughnessMaterial.TransparencyMode.ALPHABLEND;
+ if (materialDependencyNode.hasAttribute("mask_threshold"))
+ {
+ babylonMaterial.transparencyMode = (int)BabylonPBRMetallicRoughnessMaterial.TransparencyMode.ALPHATEST;
+ }
+ else
+ {
+ babylonMaterial.transparencyMode = (int)BabylonPBRMetallicRoughnessMaterial.TransparencyMode.ALPHABLEND;
+ }
}
if (useMetallicMap)
{
@@ -342,6 +487,42 @@ private void ExportMaterial(MFnDependencyNode materialDependencyNode, BabylonSce
babylonMaterial.emissive = new[] { 1.0f, 1.0f, 1.0f };
}
+ if (babylonAttributesDependencyNode == null)
+ {
+ // Create Babylon Material dependency node
+ babylonStingrayPBSMaterialNode.Create(materialDependencyNode);
+
+ // Retreive Babylon Material dependency node
+ babylonAttributesDependencyNode = getBabylonMaterialNode(materialDependencyNode);
+ }
+
+ if (babylonAttributesDependencyNode != null)
+ {
+ // Ensure all attributes are setup
+ babylonStingrayPBSMaterialNode.Init(babylonAttributesDependencyNode, babylonMaterial);
+
+ RaiseVerbose("Babylon Attributes of " + babylonAttributesDependencyNode.name, 2);
+
+ // Common attributes
+ ExportCommonBabylonAttributes(babylonAttributesDependencyNode, babylonMaterial);
+ babylonMaterial.doubleSided = !babylonMaterial.backFaceCulling;
+ babylonMaterial._unlit = babylonMaterial.isUnlit;
+
+ // Update displayed Transparency mode value based on StingrayPBS preset material
+ MGlobal.executeCommand($"setAttr - l false {{ \"{babylonAttributesDependencyNode.name}.babylonTransparencyMode\" }}"); // Unlock attribute
+ int babylonTransparencyMode = 0;
+ if (materialDependencyNode.hasAttribute("mask_threshold"))
+ {
+ babylonTransparencyMode = 1;
+ }
+ else if (materialDependencyNode.hasAttribute("use_opacity_map"))
+ {
+ babylonTransparencyMode = 2;
+ }
+ MGlobal.executeCommand($"setAttr \"{babylonAttributesDependencyNode.name}.babylonTransparencyMode\" {babylonTransparencyMode};");
+ MGlobal.executeCommand($"setAttr - l true {{ \"{babylonAttributesDependencyNode.name}.babylonTransparencyMode\" }}"); // Lock it afterwards
+ }
+
babylonScene.MaterialsList.Add(babylonMaterial);
}
// Arnold Ai Standard Surface
@@ -356,6 +537,17 @@ private void ExportMaterial(MFnDependencyNode materialDependencyNode, BabylonSce
// --- Global ---
+ bool isTransparencyModeFromBabylonMaterialNode = false;
+ if (babylonAttributesDependencyNode != null)
+ {
+ // Transparency mode
+ if (babylonAttributesDependencyNode.hasAttribute("babylonTransparencyMode"))
+ {
+ babylonMaterial.transparencyMode = babylonAttributesDependencyNode.findPlug("babylonTransparencyMode").asInt();
+ isTransparencyModeFromBabylonMaterialNode = true;
+ }
+ }
+
// Color3
float baseWeight = materialDependencyNode.findPlug("base").asFloat();
float[] baseColor = materialDependencyNode.findPlug("baseColor").asFloatArray();
@@ -364,7 +556,7 @@ private void ExportMaterial(MFnDependencyNode materialDependencyNode, BabylonSce
// Alpha
MaterialDuplicationData materialDuplicationData = materialDuplicationDatas[id];
// If at least one mesh is Transparent and is using this material either directly or as a sub material
- if (materialDuplicationData.isArnoldTransparent())
+ if ((isTransparencyModeFromBabylonMaterialNode == false || babylonMaterial.transparencyMode != 0) && materialDuplicationData.isArnoldTransparent())
{
float[] opacityAttributeValue = materialDependencyNode.findPlug("opacity").asFloatArray();
babylonMaterial.alpha = opacityAttributeValue[0];
@@ -441,7 +633,7 @@ private void ExportMaterial(MFnDependencyNode materialDependencyNode, BabylonSce
// --- Textures ---
// Base color & alpha
- if (materialDuplicationData.isArnoldTransparent())
+ if ((isTransparencyModeFromBabylonMaterialNode == false || babylonMaterial.transparencyMode != 0) && materialDuplicationData.isArnoldTransparent())
{
MFnDependencyNode baseColorTextureDependencyNode = getTextureDependencyNode(materialDependencyNode, "baseColor");
MFnDependencyNode opacityTextureDependencyNode = getTextureDependencyNode(materialDependencyNode, "opacity");
@@ -455,7 +647,7 @@ private void ExportMaterial(MFnDependencyNode materialDependencyNode, BabylonSce
else
{
// Base color and alpha files need to be merged into a single file
- Color _baseColor = Color.FromArgb((int)baseColor[0] * 255, (int)baseColor[1] * 255, (int)baseColor[2] * 255);
+ Color _baseColor = Color.FromArgb((int)(baseColor[0] * 255), (int)(baseColor[1] * 255), (int)(baseColor[2] * 255));
babylonMaterial.baseTexture = ExportBaseColorAlphaTexture(baseColorTextureDependencyNode, opacityTextureDependencyNode, babylonScene, name, _baseColor, babylonMaterial.alpha);
}
}
@@ -513,7 +705,10 @@ private void ExportMaterial(MFnDependencyNode materialDependencyNode, BabylonSce
// If this material is containing alpha data
if (babylonMaterial.alpha != 1.0f || (babylonMaterial.baseTexture != null && babylonMaterial.baseTexture.hasAlpha))
{
- babylonMaterial.transparencyMode = (int)BabylonPBRMetallicRoughnessMaterial.TransparencyMode.ALPHABLEND;
+ if (isTransparencyModeFromBabylonMaterialNode == false)
+ {
+ babylonMaterial.transparencyMode = (int)BabylonPBRMetallicRoughnessMaterial.TransparencyMode.ALPHABLEND;
+ }
// If this material is assigned to both Transparent and Opaque meshes (either directly or as a sub material)
if (materialDuplicationData.isDuplicationRequired())
@@ -526,6 +721,35 @@ private void ExportMaterial(MFnDependencyNode materialDependencyNode, BabylonSce
}
}
+ if (babylonMaterial.transparencyMode == (int)BabylonPBRMetallicRoughnessMaterial.TransparencyMode.ALPHATEST)
+ {
+ // Set the alphaCutOff value explicitely to avoid different interpretations on different engines
+ // Use the glTF default value rather than the babylon one
+ babylonMaterial.alphaCutOff = 0.5f;
+ }
+
+ if (babylonAttributesDependencyNode == null)
+ {
+ // Create Babylon Material dependency node
+ babylonAiStandardSurfaceMaterialNode.Create(materialDependencyNode);
+
+ // Retreive Babylon Material dependency node
+ babylonAttributesDependencyNode = getBabylonMaterialNode(materialDependencyNode);
+ }
+
+ if (babylonAttributesDependencyNode != null)
+ {
+ // Ensure all attributes are setup
+ babylonAiStandardSurfaceMaterialNode.Init(babylonAttributesDependencyNode, babylonMaterial);
+
+ RaiseVerbose("Babylon Attributes of " + babylonAttributesDependencyNode.name, 2);
+
+ // Common attributes
+ ExportCommonBabylonAttributes(babylonAttributesDependencyNode, babylonMaterial);
+ babylonMaterial.doubleSided = !babylonMaterial.backFaceCulling;
+ babylonMaterial._unlit = babylonMaterial.isUnlit;
+ }
+
if (fullPBR)
{
var fullPBRMaterial = new BabylonPBRMaterial(babylonMaterial);
@@ -542,14 +766,29 @@ private void ExportMaterial(MFnDependencyNode materialDependencyNode, BabylonSce
}
}
+ private void ExportCommonBabylonAttributes(MFnDependencyNode babylonAttributesDependencyNode, BabylonMaterial babylonMaterial)
+ {
+ bool backfaceCulling = babylonAttributesDependencyNode.findPlug("babylonBackfaceCulling").asBool();
+ RaiseVerbose("backfaceCulling=" + backfaceCulling, 3);
+ babylonMaterial.backFaceCulling = backfaceCulling;
+
+ int maxSimultaneousLights = babylonAttributesDependencyNode.findPlug("babylonMaxSimultaneousLights").asInt();
+ RaiseVerbose("maxSimultaneousLights=" + maxSimultaneousLights, 3);
+ babylonMaterial.maxSimultaneousLights = maxSimultaneousLights;
+
+ bool unlit = babylonAttributesDependencyNode.findPlug("babylonUnlit").asBool();
+ RaiseVerbose("unlit=" + unlit, 3);
+ babylonMaterial.isUnlit = unlit;
+ }
+
private bool isStingrayPBSMaterial(MFnDependencyNode materialDependencyNode)
{
// TODO - Find a better way to identify material type
string graphAttribute = "graph";
if (materialDependencyNode.hasAttribute(graphAttribute))
{
- string graphValue = materialDependencyNode.findPlug(graphAttribute).asString();
- return graphValue.Contains("stingray");
+ string graphValue = materialDependencyNode.findPlug(graphAttribute).asString();
+ return graphValue.Contains("stingray");
}
else
{
@@ -567,6 +806,50 @@ private bool isAiStandardSurface(MFnDependencyNode materialDependencyNode)
materialDependencyNode.hasAttribute("emissionColor");
}
+ private MFnDependencyNode getBabylonMaterialNode(MFnDependencyNode materialDependencyNode)
+ {
+ // Retreive connection
+ MPlug connectionOutColor = materialDependencyNode.getConnection("outColor");
+ MPlugArray destinations = new MPlugArray();
+ connectionOutColor.destinations(destinations);
+
+ // Retreive all Babylon Attributes dependency nodes
+ List babylonAttributesNodes = new List();
+
+ foreach (MPlug destination in destinations)
+ {
+ MObject destinationObject = destination.node;
+
+ if (destinationObject != null && destinationObject.hasFn(MFn.Type.kPluginHardwareShader))
+ {
+ MFnDependencyNode babylonAttributesDependencyNode = new MFnDependencyNode(destinationObject);
+
+ if (babylonAttributesDependencyNode.typeId.id == babylonStandardMaterialNode.id
+ || babylonAttributesDependencyNode.typeId.id == babylonStingrayPBSMaterialNode.id
+ || babylonAttributesDependencyNode.typeId.id == babylonAiStandardSurfaceMaterialNode.id)
+ {
+ babylonAttributesNodes.Add(babylonAttributesDependencyNode);
+ }
+ }
+ }
+
+ if(babylonAttributesNodes.Count == 0)
+ {
+ return null;
+ }
+ else
+ {
+ // Occurs only if the user explicitly create a connection with several babylon attributes nodes.
+ if(babylonAttributesNodes.Count > 1)
+ {
+ RaiseWarning("Babylon attributes node attached to a material should be unique. The first one is going to be used.", 2);
+ }
+
+ // Return the first shading engine node
+ return babylonAttributesNodes[0];
+ }
+ }
+
public string GetMultimaterialUUID(List materials)
{
List materialsSorted = new List(materials);
diff --git a/Maya/Exporter/BabylonExporter.Mesh.cs b/Maya/Exporter/BabylonExporter.Mesh.cs
index 1aff6349..44fde834 100644
--- a/Maya/Exporter/BabylonExporter.Mesh.cs
+++ b/Maya/Exporter/BabylonExporter.Mesh.cs
@@ -24,8 +24,8 @@ internal partial class BabylonExporter
///
private BabylonNode ExportDummy(MDagPath mDagPath, BabylonScene babylonScene)
{
- RaiseMessage(mDagPath.partialPathName, 1);
-
+ RaiseMessage(mDagPath.partialPathName, 1);
+
MFnTransform mFnTransform = new MFnTransform(mDagPath);
Print(mFnTransform, 2, "Print ExportDummy mFnTransform");
@@ -62,10 +62,10 @@ private BabylonNode ExportMesh(MDagPath mDagPath, BabylonScene babylonScene)
RaiseMessage(mDagPath.partialPathName, 1);
// Transform above mesh
- mFnTransform = new MFnTransform(mDagPath);
-
- // Mesh direct child of the transform
- // TODO get the original one rather than the modified?
+ mFnTransform = new MFnTransform(mDagPath);
+
+ // Mesh direct child of the transform
+ // TODO get the original one rather than the modified?
MFnMesh mFnMesh = null; // Shape of the mesh displayed by maya when the export begins. It contains the material, skin, blendShape information.
MFnMesh meshShapeOrig = null; // Original shape of the mesh
for (uint i = 0; i < mFnTransform.childCount; i++)
@@ -262,7 +262,10 @@ private BabylonNode ExportMesh(MDagPath mDagPath, BabylonScene babylonScene)
babylonMasterMesh.instances = instances.ToArray();
// Export transform / hierarchy / animations
- ExportNode(babylonInstanceMesh, mFnTransform, babylonScene);
+ ExportNode(babylonInstanceMesh, mFnTransform, babylonScene);
+
+ // Extra attributes
+ babylonInstanceMesh.metadata = ExportCustomAttributeFromTransform(mFnTransform);
// Animations
ExportNodeAnimation(babylonInstanceMesh, mFnTransform);
@@ -273,11 +276,9 @@ private BabylonNode ExportMesh(MDagPath mDagPath, BabylonScene babylonScene)
// Position / rotation / scaling / hierarchy
ExportNode(babylonMesh, mFnTransform, babylonScene);
- // Misc.
- // TODO - Retreive from Maya
- //babylonMesh.receiveShadows = meshNode.MaxNode.RcvShadows == 1;
- //babylonMesh.applyFog = meshNode.MaxNode.ApplyAtmospherics == 1;
-
+ // Extra attributes
+ babylonMesh.metadata = ExportCustomAttributeFromTransform(mFnTransform);
+
if (mFnMesh.numPolygons < 1)
{
RaiseError($"Mesh {babylonMesh.name} has no face", 2);
@@ -306,6 +307,9 @@ private BabylonNode ExportMesh(MDagPath mDagPath, BabylonScene babylonScene)
// Material
MObjectArray shaders = new MObjectArray();
mFnMesh.getConnectedShaders(0, shaders, new MIntArray());
+
+ bool isDoubleSided = false;
+
if (shaders.Count > 0)
{
List materials = new List();
@@ -315,12 +319,16 @@ private BabylonNode ExportMesh(MDagPath mDagPath, BabylonScene babylonScene)
MFnDependencyNode shadingEngine = new MFnDependencyNode(shader);
MPlug mPlugSurfaceShader = shadingEngine.findPlug("surfaceShader");
MObject materialObject = mPlugSurfaceShader.source.node;
+ if (materialObject.hasFn(MFn.Type.kSurfaceShader))
+ {
+ isDoubleSided = true;
+ }
MFnDependencyNode material = new MFnDependencyNode(materialObject);
materials.Add(material);
}
- if (shaders.Count == 1)
+ if (shaders.Count == 1 && !isDoubleSided)
{
MFnDependencyNode material = materials[0];
@@ -332,6 +340,52 @@ private BabylonNode ExportMesh(MDagPath mDagPath, BabylonScene babylonScene)
{
referencedMaterials.Add(material);
}
+ }
+ else if (isDoubleSided)
+ {
+ // Get the UUID of the SufaceShader node
+ string uuidMultiMaterial = materials[0].uuid().asString();
+
+ // DoubleSided material is referenced by id
+ babylonMesh.materialId = uuidMultiMaterial;
+
+ // Get the textures from the double sided node
+ MPlug connectionOutColor = materials[0].getConnection("outColor");
+
+ MObject destinationObject = connectionOutColor.source.node;
+
+ MFnDependencyNode babylonAttributesDependencyNode = new MFnDependencyNode(destinationObject);
+
+ MPlug connectionMat01 = babylonAttributesDependencyNode.getConnection("colorIfTrue");
+ MPlug connectionMat02 = babylonAttributesDependencyNode.getConnection("colorIfFalse");
+ MPlug connectionFirstTerm = babylonAttributesDependencyNode.getConnection("firstTerm");
+
+ MObject babylonFirstMaterialSourceNode = new MObject();
+ MObject babylonSecondMaterialSourceNode = new MObject();
+
+ if (connectionMat01 != null && connectionMat02 != null && connectionFirstTerm.name.Contains("firstTerm"))
+ {
+ babylonFirstMaterialSourceNode = connectionMat01.source.node;
+ babylonSecondMaterialSourceNode = connectionMat02.source.node;
+
+ MFnDependencyNode babylonFirstMaterial = new MFnDependencyNode(babylonFirstMaterialSourceNode);
+ MFnDependencyNode babylonSecondMaterial = new MFnDependencyNode(babylonSecondMaterialSourceNode);
+
+ List materialsFromDoubleSided = new List();
+ materialsFromDoubleSided.Add(babylonFirstMaterial);
+ materialsFromDoubleSided.Add(babylonSecondMaterial);
+
+ // Register double sided as multi material for export if not already done
+ if (!multiMaterials.ContainsKey(uuidMultiMaterial))
+ {
+ multiMaterials.Add(uuidMultiMaterial, materialsFromDoubleSided);
+ }
+ }
+ else
+ {
+ isDoubleSided = false;
+ RaiseWarning("This material is not supported it will not be exported:'" + materials[0].name + "'", 2);
+ }
}
else
{
@@ -449,7 +503,7 @@ private BabylonNode ExportMesh(MDagPath mDagPath, BabylonScene babylonScene)
setEnvelopesToZeros(mFnMesh.objectProperty);
}
- ExtractGeometry(babylonMesh, mFnMesh, vertices, indices, subMeshes, uvSetNames, ref isUVExportSuccess, ref isTangentExportSuccess, optimizeVertices);
+ ExtractGeometry(babylonMesh, mFnMesh, vertices, indices, subMeshes, uvSetNames, ref isUVExportSuccess, ref isTangentExportSuccess, optimizeVertices, isDoubleSided);
if (vertices.Count >= 65536)
{
@@ -582,7 +636,7 @@ private BabylonNode ExportMesh(MDagPath mDagPath, BabylonScene babylonScene)
///
///
///
- private void ExtractGeometry(BabylonMesh babylonMesh, MFnMesh mFnMesh, List vertices, List indices, List subMeshes, MStringArray uvSetNames, ref bool[] isUVExportSuccess, ref bool isTangentExportSuccess, bool optimizeVertices)
+ private void ExtractGeometry(BabylonMesh babylonMesh, MFnMesh mFnMesh, List vertices, List indices, List subMeshes, MStringArray uvSetNames, ref bool[] isUVExportSuccess, ref bool isTangentExportSuccess, bool optimizeVertices, bool isDoubleSided)
{
Dictionary> verticesAlreadyExported = null;
@@ -707,19 +761,66 @@ private void ExtractGeometry(BabylonMesh babylonMesh, MFnMesh mFnMesh, List
- /// Extract geometry (position, normal, UVs...) for a specific vertex
- ///
- ///
- /// The polygon (face) to examine
- /// The object-relative (mesh-relative/global) vertex index
- /// The face-relative (local) vertex id to examine
- ///
- ///
- ///
- private GlobalVertex ExtractVertex(MFnMesh mFnMesh, int polygonId, int vertexIndexGlobal, int vertexIndexLocal, MStringArray uvSetNames, ref bool[] isUVExportSuccess, ref bool isTangentExportSuccess)
+ if (isDoubleSided)
+ {
+ List tempVertices = new List();
+
+ int positionsCount = 0;
+
+ for (var i = 0; i < vertices.Count; i++)
+ {
+ GlobalVertex newVertex = vertices[i];
+ newVertex.Normal = new float[vertices[i].Normal.Length];
+ newVertex.Position = new float[vertices[i].Position.Length];
+ for (var j = 0; j < vertices[i].Normal.Length; j++)
+ {
+ newVertex.Normal[j] = -vertices[i].Normal[j];
+ }
+
+ for (var j = 0; j < vertices[i].Position.Length; j++)
+ {
+ newVertex.Position[j] = vertices[i].Position[j];
+ }
+
+ positionsCount++;
+
+ tempVertices.Add(newVertex);
+ }
+ vertices.AddRange(tempVertices);
+
+ int indicesCount = indices.Count;
+ indices.AddRange(indices);
+
+ for (var i = 0; i < indicesCount; i += 3)
+ {
+ indices[i + indicesCount] = indices[i + 2] + positionsCount;
+ indices[i + 1 + indicesCount] = indices[i + 1] + positionsCount;
+ indices[i + 2 + indicesCount] = indices[i] + positionsCount;
+ }
+
+ var subMesh = new BabylonSubMesh { indexStart = indices.Count/2, materialIndex = 1};
+
+ subMesh.indexCount = indicesCount;
+ subMesh.verticesStart = vertices.Count/2;
+ subMesh.verticesCount = vertices.Count/2;
+
+ subMeshes.Add(subMesh);
+ }
+
+ }
+
+ ///
+ /// Extract geometry (position, normal, UVs...) for a specific vertex
+ ///
+ ///
+ /// The polygon (face) to examine
+ /// The object-relative (mesh-relative/global) vertex index
+ /// The face-relative (local) vertex id to examine
+ ///
+ ///
+ ///
+ private GlobalVertex ExtractVertex(MFnMesh mFnMesh, int polygonId, int vertexIndexGlobal, int vertexIndexLocal, MStringArray uvSetNames, ref bool[] isUVExportSuccess, ref bool isTangentExportSuccess)
{
MPoint point = new MPoint();
mFnMesh.getPoint(vertexIndexGlobal, point);
diff --git a/Maya/Exporter/BabylonExporter.Texture.cs b/Maya/Exporter/BabylonExporter.Texture.cs
index 43228a7b..43aa92b3 100644
--- a/Maya/Exporter/BabylonExporter.Texture.cs
+++ b/Maya/Exporter/BabylonExporter.Texture.cs
@@ -471,7 +471,8 @@ private BabylonTexture ExportBaseColorAlphaTexture(MFnDependencyNode baseColorTe
// Merge bitmaps
Bitmap[] bitmaps = new Bitmap[] { baseColorBitmap, baseColorBitmap, baseColorBitmap, opacityBitmap };
int[] defaultValues = new int[] { defaultBaseColor.R, defaultBaseColor.G, defaultBaseColor.B, (int)(defaultOpacity * 255) };
- Bitmap baseColorAlphaBitmap = MergeBitmaps(bitmaps, defaultValues, "Base color and opacity");
+ bool isAlphaFromRGB = opacityTextureDependencyNode != null && !opacityTextureDependencyNode.findPlug("fileHasAlpha").asBool();
+ Bitmap baseColorAlphaBitmap = MergeBitmaps(bitmaps, defaultValues, "Base color and opacity", isAlphaFromRGB);
// Write bitmap
if (isBabylonExported)
@@ -1082,8 +1083,9 @@ private ImageCodecInfo GetEncoder(ImageFormat format)
/// R, G, B, A bitmaps to merge
/// Default R, G, B, A values if related bitmap is null. Base 255.
/// Map names to display when maps don't have same size
+ /// True if the resulting bitmap alpha is retreive from R channel of input bitmap
///
- private Bitmap MergeBitmaps(Bitmap[] bitmaps, int[] defaultValues, string sizeErrorMessage)
+ private Bitmap MergeBitmaps(Bitmap[] bitmaps, int[] defaultValues, string sizeErrorMessage, bool isAlphaFromRGB = false)
{
// Retreive dimensions
int width = 0;
@@ -1103,7 +1105,7 @@ private Bitmap MergeBitmaps(Bitmap[] bitmaps, int[] defaultValues, string sizeEr
var r = bitmaps[0] != null ? bitmaps[0].GetPixel(x, y).R : defaultValues[0];
var g = bitmaps[1] != null ? bitmaps[1].GetPixel(x, y).G : defaultValues[1];
var b = bitmaps[2] != null ? bitmaps[2].GetPixel(x, y).B : defaultValues[2];
- var a = bitmaps[3] != null ? bitmaps[3].GetPixel(x, y).A : defaultValues[3];
+ var a = bitmaps[3] != null ? (isAlphaFromRGB ? bitmaps[3].GetPixel(x, y).R : bitmaps[3].GetPixel(x, y).A) : defaultValues[3];
mergedBitmap.SetPixel(x, y, Color.FromArgb(a, r, g, b));
}
}
diff --git a/Maya/Exporter/PluginNodes/babylonAiStandardSurfaceMaterialNode.cs b/Maya/Exporter/PluginNodes/babylonAiStandardSurfaceMaterialNode.cs
new file mode 100644
index 00000000..f0740e3d
--- /dev/null
+++ b/Maya/Exporter/PluginNodes/babylonAiStandardSurfaceMaterialNode.cs
@@ -0,0 +1,76 @@
+using Autodesk.Maya.OpenMaya;
+using BabylonExport.Entities;
+
+[assembly: MPxNodeClass(typeof(Maya2Babylon.babylonAiStandardSurfaceMaterialNode), "babylonAiStandardSurfaceMaterialNode", 0x0008106d, //528493 in decimal // TODO - Ask Autodesk for a unique ID
+ NodeType = MPxNode.NodeType.kHardwareShader, Classification = "shader/surface/utility")]
+
+namespace Maya2Babylon
+{
+ public class babylonAiStandardSurfaceMaterialNode : MPxNode
+ {
+ public static int id = 528493;
+
+ [MPxNodeInitializer()]
+ public static bool initialize()
+ {
+ return true;
+ }
+
+ public override void postConstructor()
+ {
+ }
+
+ public override bool getInternalValue(MPlug plug, MDataHandle dataHandle)
+ {
+ return base.getInternalValue(plug, dataHandle);
+ }
+
+ public override bool setInternalValue(MPlug plug, MDataHandle dataHandle)
+ {
+ return base.setInternalValue(plug, dataHandle);
+ }
+
+ public static void Create(MFnDependencyNode materialDependencyNode)
+ {
+ // Create Babylon Material dependency node
+ string babylonMaterialNodeName;
+ MGlobal.executeCommand($"shadingNode -asShader babylonAiStandardSurfaceMaterialNode;", out babylonMaterialNodeName);
+ MGlobal.executeCommand($"connectAttr -f {materialDependencyNode.name}.outColor {babylonMaterialNodeName}.outTransparency;");
+ }
+
+ public static void Init(MFnDependencyNode babylonAttributesDependencyNode, BabylonPBRMetallicRoughnessMaterial babylonMaterial = null)
+ {
+ // Ensure all attributes are setup
+ if (babylonAttributesDependencyNode.hasAttribute("babylonTransparencyMode") == false)
+ {
+ MGlobal.executeCommand($"addAttr -ln \"babylonTransparencyMode\" -nn \"Opacity Mode\" - at \"enum\" -en \"Opaque:Cutoff:Blend:\" {babylonAttributesDependencyNode.name};");
+
+ // Init alpha mode value based on material opacity
+ if(babylonMaterial != null)
+ MGlobal.executeCommand($"setAttr \"{babylonAttributesDependencyNode.name}.babylonTransparencyMode\" {babylonMaterial.transparencyMode};");
+ }
+ if (babylonAttributesDependencyNode.hasAttribute("babylonBackfaceCulling") == false)
+ {
+ MGlobal.executeCommand($"addAttr -ln \"babylonBackfaceCulling\" -nn \"Backface Culling\" - at bool {babylonAttributesDependencyNode.name};");
+ MGlobal.executeCommand($"setAttr \"{babylonAttributesDependencyNode.name}.babylonBackfaceCulling\" 1;");
+ }
+ if (babylonAttributesDependencyNode.hasAttribute("babylonUnlit") == false)
+ {
+ MGlobal.executeCommand($"addAttr -ln \"babylonUnlit\" -nn \"Unlit\" - at bool {babylonAttributesDependencyNode.name};");
+ }
+ if (babylonAttributesDependencyNode.hasAttribute("babylonMaxSimultaneousLights") == false)
+ {
+ MGlobal.executeCommand($"addAttr -ln \"babylonMaxSimultaneousLights\" -nn \"Max Simultaneous Lights\" - at long -min 1 -dv 4 {babylonAttributesDependencyNode.name};");
+ }
+ }
+
+ public override bool connectionMade(MPlug plug, MPlug otherPlug, bool asSrc)
+ {
+ MFnDependencyNode sourceNodePlug = new MFnDependencyNode(plug.node);
+
+ Init(sourceNodePlug);
+
+ return base.connectionMade(plug, otherPlug, asSrc);
+ }
+ }
+}
diff --git a/Maya/Exporter/PluginNodes/babylonStandardMaterialNode.cs b/Maya/Exporter/PluginNodes/babylonStandardMaterialNode.cs
new file mode 100644
index 00000000..b630d1f8
--- /dev/null
+++ b/Maya/Exporter/PluginNodes/babylonStandardMaterialNode.cs
@@ -0,0 +1,76 @@
+using Autodesk.Maya.OpenMaya;
+using BabylonExport.Entities;
+
+[assembly: MPxNodeClass(typeof(Maya2Babylon.babylonStandardMaterialNode), "babylonStandardMaterialNode", 0x0008106b, //528491 in decimal // TODO - Ask Autodesk for a unique ID
+ NodeType = MPxNode.NodeType.kHardwareShader, Classification = "shader/surface/utility")]
+
+namespace Maya2Babylon
+{
+ public class babylonStandardMaterialNode : MPxNode
+ {
+ public static int id = 528491;
+
+ [MPxNodeInitializer()]
+ public static bool initialize()
+ {
+ return true;
+ }
+
+ public override void postConstructor()
+ {
+ }
+
+ public override bool getInternalValue(MPlug plug, MDataHandle dataHandle)
+ {
+ return base.getInternalValue(plug, dataHandle);
+ }
+
+ public override bool setInternalValue(MPlug plug, MDataHandle dataHandle)
+ {
+ return base.setInternalValue(plug, dataHandle);
+ }
+
+ public static void Create(MFnDependencyNode materialDependencyNode)
+ {
+ // Create Babylon Material dependency node
+ string babylonMaterialNodeName;
+ MGlobal.executeCommand($"shadingNode -asShader babylonStandardMaterialNode;", out babylonMaterialNodeName);
+ MGlobal.executeCommand($"connectAttr -f {materialDependencyNode.name}.outColor {babylonMaterialNodeName}.outTransparency;");
+ }
+
+ public static void Init(MFnDependencyNode babylonAttributesDependencyNode, BabylonStandardMaterial babylonMaterial = null)
+ {
+ // Ensure all attributes are setup
+ if (babylonAttributesDependencyNode.hasAttribute("babylonTransparencyMode") == false)
+ {
+ MGlobal.executeCommand($"addAttr -ln \"babylonTransparencyMode\" -nn \"Transparency Mode\" - at \"enum\" -en \"Opaque:Cutoff:Blend:\" {babylonAttributesDependencyNode.name};");
+
+ // Init alpha mode value based on material opacity
+ if (babylonMaterial != null)
+ MGlobal.executeCommand($"setAttr \"{babylonAttributesDependencyNode.name}.babylonTransparencyMode\" {babylonMaterial.transparencyMode};");
+ }
+ if (babylonAttributesDependencyNode.hasAttribute("babylonBackfaceCulling") == false)
+ {
+ MGlobal.executeCommand($"addAttr -ln \"babylonBackfaceCulling\" -nn \"Backface Culling\" - at bool {babylonAttributesDependencyNode.name};");
+ MGlobal.executeCommand($"setAttr \"{babylonAttributesDependencyNode.name}.babylonBackfaceCulling\" 1;");
+ }
+ if (babylonAttributesDependencyNode.hasAttribute("babylonUnlit") == false)
+ {
+ MGlobal.executeCommand($"addAttr -ln \"babylonUnlit\" -nn \"Unlit\" - at bool {babylonAttributesDependencyNode.name};");
+ }
+ if (babylonAttributesDependencyNode.hasAttribute("babylonMaxSimultaneousLights") == false)
+ {
+ MGlobal.executeCommand($"addAttr -ln \"babylonMaxSimultaneousLights\" -nn \"Max Simultaneous Lights\" - at long -min 1 -dv 4 {babylonAttributesDependencyNode.name};");
+ }
+ }
+
+ public override bool connectionMade(MPlug plug, MPlug otherPlug, bool asSrc)
+ {
+ MFnDependencyNode sourceNodePlug = new MFnDependencyNode(plug.node);
+
+ Init(sourceNodePlug);
+
+ return base.connectionMade(plug, otherPlug, asSrc);
+ }
+ }
+}
diff --git a/Maya/Exporter/PluginNodes/babylonStingrayPBSMaterialNode.cs b/Maya/Exporter/PluginNodes/babylonStingrayPBSMaterialNode.cs
new file mode 100644
index 00000000..63008830
--- /dev/null
+++ b/Maya/Exporter/PluginNodes/babylonStingrayPBSMaterialNode.cs
@@ -0,0 +1,80 @@
+using Autodesk.Maya.OpenMaya;
+using BabylonExport.Entities;
+
+[assembly: MPxNodeClass(typeof(Maya2Babylon.babylonStingrayPBSMaterialNode), "babylonStingrayPBSMaterialNode", 0x0008106c, //528492 in decimal // TODO - Ask Autodesk for a unique ID
+ NodeType = MPxNode.NodeType.kHardwareShader, Classification = "shader/surface/utility")]
+
+namespace Maya2Babylon
+{
+ public class babylonStingrayPBSMaterialNode : MPxNode
+ {
+ public static int id = 528492;
+
+ [MPxNodeInitializer()]
+ public static bool initialize()
+ {
+ return true;
+ }
+
+ public override void postConstructor()
+ {
+ }
+
+ public override bool getInternalValue(MPlug plug, MDataHandle dataHandle)
+ {
+ return base.getInternalValue(plug, dataHandle);
+ }
+
+ public override bool setInternalValue(MPlug plug, MDataHandle dataHandle)
+ {
+ return base.setInternalValue(plug, dataHandle);
+ }
+
+ public static void Create(MFnDependencyNode materialDependencyNode)
+ {
+ // Create Babylon Material dependency node
+ string babylonMaterialNodeName;
+ MGlobal.executeCommand($"shadingNode -asShader babylonStingrayPBSMaterialNode;", out babylonMaterialNodeName);
+ MGlobal.executeCommand($"connectAttr -f {materialDependencyNode.name}.outColor {babylonMaterialNodeName}.outTransparency;");
+ }
+
+ ///
+ /// Ensure all attributes are setup
+ ///
+ ///
+ ///
+ public static void Init(MFnDependencyNode babylonAttributesDependencyNode, BabylonPBRMetallicRoughnessMaterial babylonMaterial = null)
+ {
+ if (babylonAttributesDependencyNode.hasAttribute("babylonTransparencyMode") == false)
+ {
+ MGlobal.executeCommand($"addAttr -ln \"babylonTransparencyMode\" -nn \"Transparency Mode\" - at \"enum\" -en \"Opaque:Cutoff:Blend:\" {babylonAttributesDependencyNode.name};");
+
+ // Init alpha mode value based on material opacity
+ if (babylonMaterial != null)
+ MGlobal.executeCommand($"setAttr \"{babylonAttributesDependencyNode.name}.babylonTransparencyMode\" {babylonMaterial.transparencyMode};");
+ }
+ if (babylonAttributesDependencyNode.hasAttribute("babylonBackfaceCulling") == false)
+ {
+ MGlobal.executeCommand($"addAttr -ln \"babylonBackfaceCulling\" -nn \"Backface Culling\" - at bool {babylonAttributesDependencyNode.name};");
+ MGlobal.executeCommand($"setAttr \"{babylonAttributesDependencyNode.name}.babylonBackfaceCulling\" 1;");
+ }
+ if (babylonAttributesDependencyNode.hasAttribute("babylonUnlit") == false)
+ {
+ MGlobal.executeCommand($"addAttr -ln \"babylonUnlit\" -nn \"Unlit\" - at bool {babylonAttributesDependencyNode.name};");
+ }
+ if (babylonAttributesDependencyNode.hasAttribute("babylonMaxSimultaneousLights") == false)
+ {
+ MGlobal.executeCommand($"addAttr -ln \"babylonMaxSimultaneousLights\" -nn \"Max Simultaneous Lights\" - at long -min 1 -dv 4 {babylonAttributesDependencyNode.name};");
+ }
+ }
+
+ public override bool connectionMade(MPlug plug, MPlug otherPlug, bool asSrc)
+ {
+ MFnDependencyNode sourceNodePlug = new MFnDependencyNode(plug.node);
+
+ Init(sourceNodePlug);
+
+ return base.connectionMade(plug, otherPlug, asSrc);
+ }
+ }
+}
diff --git a/Maya/Extensions/MFnDependencyNodeExtension.cs b/Maya/Extensions/MFnDependencyNodeExtension.cs
new file mode 100644
index 00000000..f09f652a
--- /dev/null
+++ b/Maya/Extensions/MFnDependencyNodeExtension.cs
@@ -0,0 +1,21 @@
+using Autodesk.Maya.OpenMaya;
+
+namespace Maya2Babylon
+{
+ static class MFnDependencyNodeExtension
+ {
+ public static MPlug getConnection(this MFnDependencyNode mFnDependencyNode, string name)
+ {
+ MPlugArray connections = new MPlugArray();
+ mFnDependencyNode.getConnections(connections);
+ foreach (MPlug connection in connections)
+ {
+ if (connection.name == (mFnDependencyNode.name + "." + name))
+ {
+ return connection;
+ }
+ }
+ return null;
+ }
+ }
+}
diff --git a/Maya/Forms/ExporterForm.Designer.cs b/Maya/Forms/ExporterForm.Designer.cs
index e92fbe4a..68ecbd02 100644
--- a/Maya/Forms/ExporterForm.Designer.cs
+++ b/Maya/Forms/ExporterForm.Designer.cs
@@ -53,6 +53,7 @@ private void InitializeComponent()
this.label7 = new System.Windows.Forms.Label();
this.chkExportKHRTextureTransform = new System.Windows.Forms.CheckBox();
this.chkExportKHRLightsPunctual = new System.Windows.Forms.CheckBox();
+ this.chkExportKHRMaterialsUnlit = new System.Windows.Forms.CheckBox();
this.label6 = new System.Windows.Forms.Label();
this.chkExportMorphNormal = new System.Windows.Forms.CheckBox();
this.chkExportMorphTangent = new System.Windows.Forms.CheckBox();
@@ -84,10 +85,9 @@ private void InitializeComponent()
this.butExport.Anchor = System.Windows.Forms.AnchorStyles.Top;
this.butExport.Enabled = false;
this.butExport.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.butExport.Location = new System.Drawing.Point(313, 627);
- this.butExport.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
+ this.butExport.Location = new System.Drawing.Point(209, 408);
this.butExport.Name = "butExport";
- this.butExport.Size = new System.Drawing.Size(296, 42);
+ this.butExport.Size = new System.Drawing.Size(197, 27);
this.butExport.TabIndex = 100;
this.butExport.Text = "Export";
this.butExport.UseVisualStyleBackColor = true;
@@ -96,10 +96,9 @@ private void InitializeComponent()
// label1
//
this.label1.AutoSize = true;
- this.label1.Location = new System.Drawing.Point(9, 26);
- this.label1.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
+ this.label1.Location = new System.Drawing.Point(6, 17);
this.label1.Name = "label1";
- this.label1.Size = new System.Drawing.Size(82, 20);
+ this.label1.Size = new System.Drawing.Size(55, 13);
this.label1.TabIndex = 1;
this.label1.Text = "File name:";
//
@@ -107,10 +106,9 @@ private void InitializeComponent()
//
this.txtFilename.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
- this.txtFilename.Location = new System.Drawing.Point(27, 52);
- this.txtFilename.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
+ this.txtFilename.Location = new System.Drawing.Point(18, 34);
this.txtFilename.Name = "txtFilename";
- this.txtFilename.Size = new System.Drawing.Size(564, 26);
+ this.txtFilename.Size = new System.Drawing.Size(377, 20);
this.txtFilename.TabIndex = 2;
this.txtFilename.TextChanged += new System.EventHandler(this.txtFilename_TextChanged);
//
@@ -118,10 +116,9 @@ private void InitializeComponent()
//
this.butBrowse.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
this.butBrowse.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.butBrowse.Location = new System.Drawing.Point(602, 49);
- this.butBrowse.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
+ this.butBrowse.Location = new System.Drawing.Point(401, 32);
this.butBrowse.Name = "butBrowse";
- this.butBrowse.Size = new System.Drawing.Size(64, 35);
+ this.butBrowse.Size = new System.Drawing.Size(43, 23);
this.butBrowse.TabIndex = 3;
this.butBrowse.Text = "...";
this.butBrowse.UseVisualStyleBackColor = true;
@@ -137,10 +134,9 @@ private void InitializeComponent()
//
this.progressBar.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
- this.progressBar.Location = new System.Drawing.Point(18, 1131);
- this.progressBar.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
+ this.progressBar.Location = new System.Drawing.Point(12, 735);
this.progressBar.Name = "progressBar";
- this.progressBar.Size = new System.Drawing.Size(957, 35);
+ this.progressBar.Size = new System.Drawing.Size(638, 23);
this.progressBar.TabIndex = 103;
//
// treeView
@@ -148,10 +144,9 @@ private void InitializeComponent()
this.treeView.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
| System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
- this.treeView.Location = new System.Drawing.Point(18, 679);
- this.treeView.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
+ this.treeView.Location = new System.Drawing.Point(12, 444);
this.treeView.Name = "treeView";
- this.treeView.Size = new System.Drawing.Size(1213, 442);
+ this.treeView.Size = new System.Drawing.Size(810, 237);
this.treeView.TabIndex = 102;
//
// butCancel
@@ -159,10 +154,9 @@ private void InitializeComponent()
this.butCancel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
this.butCancel.Enabled = false;
this.butCancel.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.butCancel.Location = new System.Drawing.Point(984, 1131);
- this.butCancel.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
+ this.butCancel.Location = new System.Drawing.Point(656, 735);
this.butCancel.Name = "butCancel";
- this.butCancel.Size = new System.Drawing.Size(120, 35);
+ this.butCancel.Size = new System.Drawing.Size(80, 23);
this.butCancel.TabIndex = 104;
this.butCancel.Text = "Cancel";
this.butCancel.UseVisualStyleBackColor = true;
@@ -172,10 +166,9 @@ private void InitializeComponent()
//
this.chkManifest.AutoSize = true;
this.chkManifest.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.chkManifest.Location = new System.Drawing.Point(27, 215);
- this.chkManifest.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
+ this.chkManifest.Location = new System.Drawing.Point(18, 140);
this.chkManifest.Name = "chkManifest";
- this.chkManifest.Size = new System.Drawing.Size(167, 24);
+ this.chkManifest.Size = new System.Drawing.Size(112, 17);
this.chkManifest.TabIndex = 14;
this.chkManifest.Text = "Generate .manifest";
this.chkManifest.UseVisualStyleBackColor = true;
@@ -183,10 +176,9 @@ private void InitializeComponent()
// label2
//
this.label2.AutoSize = true;
- this.label2.Location = new System.Drawing.Point(9, 151);
- this.label2.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
+ this.label2.Location = new System.Drawing.Point(6, 98);
this.label2.Name = "label2";
- this.label2.Size = new System.Drawing.Size(68, 20);
+ this.label2.Size = new System.Drawing.Size(46, 13);
this.label2.TabIndex = 10;
this.label2.Text = "Options:";
//
@@ -196,10 +188,9 @@ private void InitializeComponent()
this.chkCopyTextures.Checked = true;
this.chkCopyTextures.CheckState = System.Windows.Forms.CheckState.Checked;
this.chkCopyTextures.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.chkCopyTextures.Location = new System.Drawing.Point(27, 180);
- this.chkCopyTextures.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
+ this.chkCopyTextures.Location = new System.Drawing.Point(18, 117);
this.chkCopyTextures.Name = "chkCopyTextures";
- this.chkCopyTextures.Size = new System.Drawing.Size(195, 24);
+ this.chkCopyTextures.Size = new System.Drawing.Size(132, 17);
this.chkCopyTextures.TabIndex = 11;
this.chkCopyTextures.Text = "Copy textures to output";
this.chkCopyTextures.UseVisualStyleBackColor = true;
@@ -217,6 +208,7 @@ private void InitializeComponent()
this.groupBox1.Controls.Add(this.label8);
this.groupBox1.Controls.Add(this.chkBakeAnimationFrames);
this.groupBox1.Controls.Add(this.label7);
+ this.groupBox1.Controls.Add(this.chkExportKHRMaterialsUnlit);
this.groupBox1.Controls.Add(this.chkExportKHRTextureTransform);
this.groupBox1.Controls.Add(this.chkExportKHRLightsPunctual);
this.groupBox1.Controls.Add(this.label6);
@@ -242,11 +234,9 @@ private void InitializeComponent()
this.groupBox1.Controls.Add(this.chkManifest);
this.groupBox1.Controls.Add(this.butBrowse);
this.groupBox1.Controls.Add(this.label2);
- this.groupBox1.Location = new System.Drawing.Point(18, 9);
- this.groupBox1.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
+ this.groupBox1.Location = new System.Drawing.Point(12, 6);
this.groupBox1.Name = "groupBox1";
- this.groupBox1.Padding = new System.Windows.Forms.Padding(4, 5, 4, 5);
- this.groupBox1.Size = new System.Drawing.Size(675, 588);
+ this.groupBox1.Size = new System.Drawing.Size(450, 382);
this.groupBox1.TabIndex = 1;
this.groupBox1.TabStop = false;
//
@@ -254,10 +244,9 @@ private void InitializeComponent()
//
this.chkDefaultSkybox.AutoSize = true;
this.chkDefaultSkybox.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.chkDefaultSkybox.Location = new System.Drawing.Point(480, 509);
- this.chkDefaultSkybox.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
+ this.chkDefaultSkybox.Location = new System.Drawing.Point(320, 331);
this.chkDefaultSkybox.Name = "chkDefaultSkybox";
- this.chkDefaultSkybox.Size = new System.Drawing.Size(170, 24);
+ this.chkDefaultSkybox.Size = new System.Drawing.Size(117, 17);
this.chkDefaultSkybox.TabIndex = 34;
this.chkDefaultSkybox.Text = "Add Default Skybox";
this.chkDefaultSkybox.UseVisualStyleBackColor = true;
@@ -265,10 +254,9 @@ private void InitializeComponent()
// label9
//
this.label9.AutoSize = true;
- this.label9.Location = new System.Drawing.Point(23, 547);
- this.label9.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
+ this.label9.Location = new System.Drawing.Point(15, 356);
this.label9.Name = "label9";
- this.label9.Size = new System.Drawing.Size(98, 20);
+ this.label9.Size = new System.Drawing.Size(66, 13);
this.label9.TabIndex = 33;
this.label9.Text = "Environment";
//
@@ -276,20 +264,18 @@ private void InitializeComponent()
//
this.txtEnvironmentName.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
- this.txtEnvironmentName.Location = new System.Drawing.Point(129, 543);
- this.txtEnvironmentName.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
+ this.txtEnvironmentName.Location = new System.Drawing.Point(86, 353);
this.txtEnvironmentName.Name = "txtEnvironmentName";
- this.txtEnvironmentName.Size = new System.Drawing.Size(462, 26);
+ this.txtEnvironmentName.Size = new System.Drawing.Size(309, 20);
this.txtEnvironmentName.TabIndex = 31;
//
// butEnvironmentPath
//
this.butEnvironmentPath.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
this.butEnvironmentPath.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.butEnvironmentPath.Location = new System.Drawing.Point(602, 540);
- this.butEnvironmentPath.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
+ this.butEnvironmentPath.Location = new System.Drawing.Point(401, 351);
this.butEnvironmentPath.Name = "butEnvironmentPath";
- this.butEnvironmentPath.Size = new System.Drawing.Size(64, 35);
+ this.butEnvironmentPath.Size = new System.Drawing.Size(43, 23);
this.butEnvironmentPath.TabIndex = 32;
this.butEnvironmentPath.Text = "...";
this.butEnvironmentPath.UseVisualStyleBackColor = true;
@@ -299,10 +285,9 @@ private void InitializeComponent()
//
this.chkFullPBR.AutoSize = true;
this.chkFullPBR.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.chkFullPBR.Location = new System.Drawing.Point(249, 509);
- this.chkFullPBR.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
+ this.chkFullPBR.Location = new System.Drawing.Point(166, 331);
this.chkFullPBR.Name = "chkFullPBR";
- this.chkFullPBR.Size = new System.Drawing.Size(125, 24);
+ this.chkFullPBR.Size = new System.Drawing.Size(86, 17);
this.chkFullPBR.TabIndex = 30;
this.chkFullPBR.Text = "Use Full PBR";
this.chkFullPBR.UseVisualStyleBackColor = true;
@@ -311,10 +296,9 @@ private void InitializeComponent()
//
this.chkNoAutoLight.AutoSize = true;
this.chkNoAutoLight.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.chkNoAutoLight.Location = new System.Drawing.Point(27, 509);
- this.chkNoAutoLight.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
+ this.chkNoAutoLight.Location = new System.Drawing.Point(18, 331);
this.chkNoAutoLight.Name = "chkNoAutoLight";
- this.chkNoAutoLight.Size = new System.Drawing.Size(165, 24);
+ this.chkNoAutoLight.Size = new System.Drawing.Size(113, 17);
this.chkNoAutoLight.TabIndex = 29;
this.chkNoAutoLight.Text = "No Automatic Light";
this.chkNoAutoLight.UseVisualStyleBackColor = true;
@@ -322,10 +306,9 @@ private void InitializeComponent()
// label8
//
this.label8.AutoSize = true;
- this.label8.Location = new System.Drawing.Point(8, 484);
- this.label8.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
+ this.label8.Location = new System.Drawing.Point(5, 315);
this.label8.Name = "label8";
- this.label8.Size = new System.Drawing.Size(162, 20);
+ this.label8.Size = new System.Drawing.Size(109, 13);
this.label8.TabIndex = 28;
this.label8.Text = "Babylon PBR Options";
//
@@ -333,10 +316,9 @@ private void InitializeComponent()
//
this.chkBakeAnimationFrames.AutoSize = true;
this.chkBakeAnimationFrames.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.chkBakeAnimationFrames.Location = new System.Drawing.Point(27, 455);
- this.chkBakeAnimationFrames.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
+ this.chkBakeAnimationFrames.Location = new System.Drawing.Point(18, 296);
this.chkBakeAnimationFrames.Name = "chkBakeAnimationFrames";
- this.chkBakeAnimationFrames.Size = new System.Drawing.Size(200, 24);
+ this.chkBakeAnimationFrames.Size = new System.Drawing.Size(134, 17);
this.chkBakeAnimationFrames.TabIndex = 27;
this.chkBakeAnimationFrames.Text = "Bake Animation Frames";
this.chkBakeAnimationFrames.UseVisualStyleBackColor = true;
@@ -344,10 +326,9 @@ private void InitializeComponent()
// label7
//
this.label7.AutoSize = true;
- this.label7.Location = new System.Drawing.Point(8, 430);
- this.label7.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
+ this.label7.Location = new System.Drawing.Point(5, 279);
this.label7.Name = "label7";
- this.label7.Size = new System.Drawing.Size(88, 20);
+ this.label7.Size = new System.Drawing.Size(58, 13);
this.label7.TabIndex = 26;
this.label7.Text = "Animations";
//
@@ -355,10 +336,9 @@ private void InitializeComponent()
//
this.chkExportKHRTextureTransform.AutoSize = true;
this.chkExportKHRTextureTransform.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.chkExportKHRTextureTransform.Location = new System.Drawing.Point(249, 394);
- this.chkExportKHRTextureTransform.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
+ this.chkExportKHRTextureTransform.Location = new System.Drawing.Point(166, 256);
this.chkExportKHRTextureTransform.Name = "chkExportKHRTextureTransform";
- this.chkExportKHRTextureTransform.Size = new System.Drawing.Size(199, 24);
+ this.chkExportKHRTextureTransform.Size = new System.Drawing.Size(133, 17);
this.chkExportKHRTextureTransform.TabIndex = 25;
this.chkExportKHRTextureTransform.Text = "KHR_texture_transform";
this.chkExportKHRTextureTransform.UseVisualStyleBackColor = true;
@@ -367,10 +347,9 @@ private void InitializeComponent()
//
this.chkExportKHRLightsPunctual.AutoSize = true;
this.chkExportKHRLightsPunctual.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.chkExportKHRLightsPunctual.Location = new System.Drawing.Point(27, 394);
- this.chkExportKHRLightsPunctual.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
+ this.chkExportKHRLightsPunctual.Location = new System.Drawing.Point(18, 256);
this.chkExportKHRLightsPunctual.Name = "chkExportKHRLightsPunctual";
- this.chkExportKHRLightsPunctual.Size = new System.Drawing.Size(180, 24);
+ this.chkExportKHRLightsPunctual.Size = new System.Drawing.Size(123, 17);
this.chkExportKHRLightsPunctual.TabIndex = 24;
this.chkExportKHRLightsPunctual.Text = "KHR_lights_punctual";
this.chkExportKHRLightsPunctual.UseVisualStyleBackColor = true;
@@ -378,10 +357,9 @@ private void InitializeComponent()
// label6
//
this.label6.AutoSize = true;
- this.label6.Location = new System.Drawing.Point(8, 361);
- this.label6.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
+ this.label6.Location = new System.Drawing.Point(5, 235);
this.label6.Name = "label6";
- this.label6.Size = new System.Drawing.Size(122, 20);
+ this.label6.Size = new System.Drawing.Size(82, 13);
this.label6.TabIndex = 23;
this.label6.Text = "glTF Extensions";
this.label6.Click += new System.EventHandler(this.label6_Click);
@@ -392,10 +370,9 @@ private void InitializeComponent()
this.chkExportMorphNormal.Checked = true;
this.chkExportMorphNormal.CheckState = System.Windows.Forms.CheckState.Checked;
this.chkExportMorphNormal.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.chkExportMorphNormal.Location = new System.Drawing.Point(27, 322);
- this.chkExportMorphNormal.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
+ this.chkExportMorphNormal.Location = new System.Drawing.Point(18, 209);
this.chkExportMorphNormal.Name = "chkExportMorphNormal";
- this.chkExportMorphNormal.Size = new System.Drawing.Size(128, 24);
+ this.chkExportMorphNormal.Size = new System.Drawing.Size(87, 17);
this.chkExportMorphNormal.TabIndex = 21;
this.chkExportMorphNormal.Text = "Export normal";
this.chkExportMorphNormal.UseVisualStyleBackColor = true;
@@ -404,10 +381,9 @@ private void InitializeComponent()
//
this.chkExportMorphTangent.AutoSize = true;
this.chkExportMorphTangent.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.chkExportMorphTangent.Location = new System.Drawing.Point(249, 322);
- this.chkExportMorphTangent.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
+ this.chkExportMorphTangent.Location = new System.Drawing.Point(166, 209);
this.chkExportMorphTangent.Name = "chkExportMorphTangent";
- this.chkExportMorphTangent.Size = new System.Drawing.Size(135, 24);
+ this.chkExportMorphTangent.Size = new System.Drawing.Size(92, 17);
this.chkExportMorphTangent.TabIndex = 22;
this.chkExportMorphTangent.Text = "Export tangent";
this.chkExportMorphTangent.UseVisualStyleBackColor = true;
@@ -415,10 +391,9 @@ private void InitializeComponent()
// label5
//
this.label5.AutoSize = true;
- this.label5.Location = new System.Drawing.Point(9, 297);
- this.label5.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
+ this.label5.Location = new System.Drawing.Point(6, 193);
this.label5.Name = "label5";
- this.label5.Size = new System.Drawing.Size(160, 20);
+ this.label5.Size = new System.Drawing.Size(108, 13);
this.label5.TabIndex = 20;
this.label5.Text = "MorphTarget options:";
//
@@ -426,20 +401,18 @@ private void InitializeComponent()
//
this.chkDracoCompression.AutoSize = true;
this.chkDracoCompression.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.chkDracoCompression.Location = new System.Drawing.Point(249, 251);
- this.chkDracoCompression.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
+ this.chkDracoCompression.Location = new System.Drawing.Point(166, 163);
this.chkDracoCompression.Name = "chkDracoCompression";
- this.chkDracoCompression.Size = new System.Drawing.Size(200, 24);
+ this.chkDracoCompression.Size = new System.Drawing.Size(136, 17);
this.chkDracoCompression.TabIndex = 18;
this.chkDracoCompression.Text = "Use Draco compression";
this.chkDracoCompression.UseVisualStyleBackColor = true;
//
// txtQuality
//
- this.txtQuality.Location = new System.Drawing.Point(603, 143);
- this.txtQuality.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
+ this.txtQuality.Location = new System.Drawing.Point(402, 93);
this.txtQuality.Name = "txtQuality";
- this.txtQuality.Size = new System.Drawing.Size(61, 26);
+ this.txtQuality.Size = new System.Drawing.Size(42, 20);
this.txtQuality.TabIndex = 9;
this.txtQuality.Text = "100";
this.txtQuality.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
@@ -447,10 +420,9 @@ private void InitializeComponent()
// labelQuality
//
this.labelQuality.AutoSize = true;
- this.labelQuality.Location = new System.Drawing.Point(476, 151);
- this.labelQuality.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
+ this.labelQuality.Location = new System.Drawing.Point(317, 98);
this.labelQuality.Name = "labelQuality";
- this.labelQuality.Size = new System.Drawing.Size(115, 20);
+ this.labelQuality.Size = new System.Drawing.Size(79, 13);
this.labelQuality.TabIndex = 8;
this.labelQuality.Text = "Texture quality:";
//
@@ -460,10 +432,9 @@ private void InitializeComponent()
this.chkExportSkin.Checked = true;
this.chkExportSkin.CheckState = System.Windows.Forms.CheckState.Checked;
this.chkExportSkin.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.chkExportSkin.Location = new System.Drawing.Point(480, 251);
- this.chkExportSkin.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
+ this.chkExportSkin.Location = new System.Drawing.Point(320, 163);
this.chkExportSkin.Name = "chkExportSkin";
- this.chkExportSkin.Size = new System.Drawing.Size(116, 24);
+ this.chkExportSkin.Size = new System.Drawing.Size(80, 17);
this.chkExportSkin.TabIndex = 19;
this.chkExportSkin.Text = "Export skins";
this.chkExportSkin.UseVisualStyleBackColor = true;
@@ -474,10 +445,9 @@ private void InitializeComponent()
this.chkExportTangents.Checked = true;
this.chkExportTangents.CheckState = System.Windows.Forms.CheckState.Checked;
this.chkExportTangents.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.chkExportTangents.Location = new System.Drawing.Point(27, 251);
- this.chkExportTangents.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
+ this.chkExportTangents.Location = new System.Drawing.Point(18, 163);
this.chkExportTangents.Name = "chkExportTangents";
- this.chkExportTangents.Size = new System.Drawing.Size(143, 24);
+ this.chkExportTangents.Size = new System.Drawing.Size(97, 17);
this.chkExportTangents.TabIndex = 17;
this.chkExportTangents.Text = "Export tangents";
this.chkExportTangents.UseVisualStyleBackColor = true;
@@ -486,19 +456,17 @@ private void InitializeComponent()
// label4
//
this.label4.AutoSize = true;
- this.label4.Location = new System.Drawing.Point(494, 106);
- this.label4.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
+ this.label4.Location = new System.Drawing.Point(329, 69);
this.label4.Name = "label4";
- this.label4.Size = new System.Drawing.Size(98, 20);
+ this.label4.Size = new System.Drawing.Size(67, 13);
this.label4.TabIndex = 6;
this.label4.Text = "Scale factor:";
//
// txtScaleFactor
//
- this.txtScaleFactor.Location = new System.Drawing.Point(603, 102);
- this.txtScaleFactor.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
+ this.txtScaleFactor.Location = new System.Drawing.Point(402, 66);
this.txtScaleFactor.Name = "txtScaleFactor";
- this.txtScaleFactor.Size = new System.Drawing.Size(61, 26);
+ this.txtScaleFactor.Size = new System.Drawing.Size(42, 20);
this.txtScaleFactor.TabIndex = 7;
this.txtScaleFactor.Text = "1";
this.txtScaleFactor.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
@@ -509,10 +477,9 @@ private void InitializeComponent()
this.chkOptimizeVertices.Checked = true;
this.chkOptimizeVertices.CheckState = System.Windows.Forms.CheckState.Checked;
this.chkOptimizeVertices.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.chkOptimizeVertices.Location = new System.Drawing.Point(480, 215);
- this.chkOptimizeVertices.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
+ this.chkOptimizeVertices.Location = new System.Drawing.Point(320, 140);
this.chkOptimizeVertices.Name = "chkOptimizeVertices";
- this.chkOptimizeVertices.Size = new System.Drawing.Size(150, 24);
+ this.chkOptimizeVertices.Size = new System.Drawing.Size(103, 17);
this.chkOptimizeVertices.TabIndex = 16;
this.chkOptimizeVertices.Text = "Optimize vertices";
this.chkOptimizeVertices.UseVisualStyleBackColor = true;
@@ -520,10 +487,9 @@ private void InitializeComponent()
// label3
//
this.label3.AutoSize = true;
- this.label3.Location = new System.Drawing.Point(9, 106);
- this.label3.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
+ this.label3.Location = new System.Drawing.Point(6, 69);
this.label3.Name = "label3";
- this.label3.Size = new System.Drawing.Size(112, 20);
+ this.label3.Size = new System.Drawing.Size(74, 13);
this.label3.TabIndex = 4;
this.label3.Text = "Output format:";
//
@@ -535,10 +501,9 @@ private void InitializeComponent()
"binary babylon",
"gltf",
"glb"});
- this.comboOutputFormat.Location = new System.Drawing.Point(129, 102);
- this.comboOutputFormat.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
+ this.comboOutputFormat.Location = new System.Drawing.Point(86, 66);
this.comboOutputFormat.Name = "comboOutputFormat";
- this.comboOutputFormat.Size = new System.Drawing.Size(180, 28);
+ this.comboOutputFormat.Size = new System.Drawing.Size(121, 21);
this.comboOutputFormat.TabIndex = 5;
this.comboOutputFormat.SelectedIndexChanged += new System.EventHandler(this.comboOutputFormat_SelectedIndexChanged);
//
@@ -546,10 +511,9 @@ private void InitializeComponent()
//
this.chkOnlySelected.AutoSize = true;
this.chkOnlySelected.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.chkOnlySelected.Location = new System.Drawing.Point(480, 180);
- this.chkOnlySelected.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
+ this.chkOnlySelected.Location = new System.Drawing.Point(320, 117);
this.chkOnlySelected.Name = "chkOnlySelected";
- this.chkOnlySelected.Size = new System.Drawing.Size(172, 24);
+ this.chkOnlySelected.Size = new System.Drawing.Size(118, 17);
this.chkOnlySelected.TabIndex = 13;
this.chkOnlySelected.Text = "Export only selected";
this.chkOnlySelected.UseVisualStyleBackColor = true;
@@ -558,10 +522,9 @@ private void InitializeComponent()
//
this.chkAutoSave.AutoSize = true;
this.chkAutoSave.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.chkAutoSave.Location = new System.Drawing.Point(249, 215);
- this.chkAutoSave.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
+ this.chkAutoSave.Location = new System.Drawing.Point(166, 140);
this.chkAutoSave.Name = "chkAutoSave";
- this.chkAutoSave.Size = new System.Drawing.Size(167, 24);
+ this.chkAutoSave.Size = new System.Drawing.Size(116, 17);
this.chkAutoSave.TabIndex = 15;
this.chkAutoSave.Text = "Auto save Maya file";
this.chkAutoSave.UseVisualStyleBackColor = true;
@@ -570,10 +533,9 @@ private void InitializeComponent()
//
this.chkHidden.AutoSize = true;
this.chkHidden.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.chkHidden.Location = new System.Drawing.Point(249, 180);
- this.chkHidden.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
+ this.chkHidden.Location = new System.Drawing.Point(166, 117);
this.chkHidden.Name = "chkHidden";
- this.chkHidden.Size = new System.Drawing.Size(183, 24);
+ this.chkHidden.Size = new System.Drawing.Size(125, 17);
this.chkHidden.TabIndex = 12;
this.chkHidden.Text = "Export hidden objects";
this.chkHidden.UseVisualStyleBackColor = true;
@@ -583,10 +545,9 @@ private void InitializeComponent()
this.butExportAndRun.Anchor = System.Windows.Forms.AnchorStyles.Top;
this.butExportAndRun.Enabled = false;
this.butExportAndRun.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.butExportAndRun.Location = new System.Drawing.Point(617, 627);
- this.butExportAndRun.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
+ this.butExportAndRun.Location = new System.Drawing.Point(411, 408);
this.butExportAndRun.Name = "butExportAndRun";
- this.butExportAndRun.Size = new System.Drawing.Size(296, 42);
+ this.butExportAndRun.Size = new System.Drawing.Size(197, 27);
this.butExportAndRun.TabIndex = 101;
this.butExportAndRun.Text = "Export && Run";
this.butExportAndRun.UseVisualStyleBackColor = true;
@@ -596,10 +557,9 @@ private void InitializeComponent()
//
this.butClose.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
this.butClose.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.butClose.Location = new System.Drawing.Point(1113, 1131);
- this.butClose.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
+ this.butClose.Location = new System.Drawing.Point(742, 735);
this.butClose.Name = "butClose";
- this.butClose.Size = new System.Drawing.Size(120, 35);
+ this.butClose.Size = new System.Drawing.Size(80, 23);
this.butClose.TabIndex = 105;
this.butClose.Text = "Close";
this.butClose.UseVisualStyleBackColor = true;
@@ -618,19 +578,29 @@ private void InitializeComponent()
//
this.pictureBox2.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
this.pictureBox2.Image = global::Maya2Babylon.Properties.Resources.MayaExporter;
- this.pictureBox2.Location = new System.Drawing.Point(702, 18);
- this.pictureBox2.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
+ this.pictureBox2.Location = new System.Drawing.Point(468, 12);
this.pictureBox2.Name = "pictureBox2";
- this.pictureBox2.Size = new System.Drawing.Size(531, 259);
+ this.pictureBox2.Size = new System.Drawing.Size(354, 168);
this.pictureBox2.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
this.pictureBox2.TabIndex = 9;
this.pictureBox2.TabStop = false;
//
+ // chkExportKHRMaterialsUnlit
+ //
+ this.chkExportKHRMaterialsUnlit.AutoSize = true;
+ this.chkExportKHRMaterialsUnlit.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
+ this.chkExportKHRMaterialsUnlit.Location = new System.Drawing.Point(320, 256);
+ this.chkExportKHRMaterialsUnlit.Name = "chkExportKHRMaterialsUnlit";
+ this.chkExportKHRMaterialsUnlit.Size = new System.Drawing.Size(118, 17);
+ this.chkExportKHRMaterialsUnlit.TabIndex = 25;
+ this.chkExportKHRMaterialsUnlit.Text = "KHR_materials_unlit";
+ this.chkExportKHRMaterialsUnlit.UseVisualStyleBackColor = true;
+ //
// ExporterForm
//
- this.AutoScaleDimensions = new System.Drawing.SizeF(9F, 20F);
+ this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
- this.ClientSize = new System.Drawing.Size(1251, 1185);
+ this.ClientSize = new System.Drawing.Size(838, 690);
this.Controls.Add(this.butExportAndRun);
this.Controls.Add(this.groupBox1);
this.Controls.Add(this.pictureBox2);
@@ -641,8 +611,7 @@ private void InitializeComponent()
this.Controls.Add(this.butExport);
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.SizableToolWindow;
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
- this.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
- this.MinimumSize = new System.Drawing.Size(1273, 1241);
+ this.MinimumSize = new System.Drawing.Size(854, 688);
this.Name = "ExporterForm";
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
this.Text = "Babylon.js - Export scene to babylon or glTF format";
@@ -693,7 +662,8 @@ private void InitializeComponent()
private System.Windows.Forms.CheckBox chkExportMorphTangent;
private System.Windows.Forms.Label label6;
private System.Windows.Forms.CheckBox chkExportKHRTextureTransform;
- private System.Windows.Forms.CheckBox chkExportKHRLightsPunctual;
+ private System.Windows.Forms.CheckBox chkExportKHRLightsPunctual;
+ private System.Windows.Forms.CheckBox chkExportKHRMaterialsUnlit;
private System.Windows.Forms.Label label7;
private System.Windows.Forms.CheckBox chkBakeAnimationFrames;
private System.Windows.Forms.Label label9;
diff --git a/Maya/Forms/ExporterForm.cs b/Maya/Forms/ExporterForm.cs
index 279476ae..df8c0f15 100644
--- a/Maya/Forms/ExporterForm.cs
+++ b/Maya/Forms/ExporterForm.cs
@@ -27,6 +27,7 @@ public partial class ExporterForm : Form
const string chkExportMorphTangentProperty = "babylonjs_exportMorphTangent";
const string chkExportKHRTextureTransformProperty = "babylonjs_exportKHRTextureTransform";
const string chkExportKHRLightsPunctualProperty = "babylonjs_exportKHRLightsPunctual";
+ const string chkExportKHRMaterialsUnlitProperty = "babylonjs_exportKHRMaterialsUnlit";
const string chkBakeAnimationFramesProperty = "babylonjs_bakeAnimationFrames";
const string PBRFullPropertyName = "babylonjs_pbr_full";
@@ -80,6 +81,7 @@ private void ExporterForm_Load(object sender, EventArgs e)
chkExportMorphTangent.Checked = Loader.GetBoolProperty(chkExportMorphTangentProperty, false);
chkExportKHRLightsPunctual.Checked = Loader.GetBoolProperty(chkExportKHRTextureTransformProperty, false);
chkExportKHRTextureTransform.Checked = Loader.GetBoolProperty(chkExportKHRLightsPunctualProperty, false);
+ chkExportKHRMaterialsUnlit.Checked = Loader.GetBoolProperty(chkExportKHRMaterialsUnlitProperty, false);
chkBakeAnimationFrames.Checked = Loader.GetBoolProperty(chkBakeAnimationFramesProperty, false);
/* txtFilename.Text = Loader.Core.RootNode.GetLocalData();
Tools.PrepareComboBox(comboOutputFormat, Loader.Core.RootNode, "babylonjs_outputFormat", "babylon");*/
@@ -117,6 +119,7 @@ private async Task DoExport()
Loader.SetBoolProperty(chkExportMorphTangentProperty, chkExportMorphTangent.Checked);
Loader.SetBoolProperty(chkExportKHRLightsPunctualProperty, chkExportKHRLightsPunctual.Checked);
Loader.SetBoolProperty(chkExportKHRTextureTransformProperty, chkExportKHRTextureTransform.Checked);
+ Loader.SetBoolProperty(chkExportKHRMaterialsUnlitProperty, chkExportKHRMaterialsUnlit.Checked);
Loader.SetBoolProperty(chkBakeAnimationFramesProperty, chkBakeAnimationFrames.Checked);
Loader.SetBoolProperty(PBRFullPropertyName, chkFullPBR.Checked);
@@ -243,6 +246,7 @@ private async Task DoExport()
exportMorphTangents = chkExportMorphTangent.Checked,
enableKHRLightsPunctual = chkExportKHRLightsPunctual.Checked,
enableKHRTextureTransform = chkExportKHRTextureTransform.Checked,
+ enableKHRMaterialsUnlit = chkExportKHRMaterialsUnlit.Checked,
bakeAnimationFrames = chkBakeAnimationFrames.Checked,
pbrFull = chkFullPBR.Checked,
pbrNoLight = chkNoAutoLight.Checked,
diff --git a/Maya/Maya2Babylon2017.csproj b/Maya/Maya2Babylon2017.csproj
index 5240dc56..2c24a4d2 100644
--- a/Maya/Maya2Babylon2017.csproj
+++ b/Maya/Maya2Babylon2017.csproj
@@ -64,6 +64,7 @@
+
@@ -81,10 +82,14 @@
+
+
+
+
diff --git a/Maya/Maya2Babylon2019.csproj b/Maya/Maya2Babylon2019.csproj
index 6e2119e2..edf3123c 100644
--- a/Maya/Maya2Babylon2019.csproj
+++ b/Maya/Maya2Babylon2019.csproj
@@ -77,15 +77,20 @@
+
+
+
+
+
diff --git a/Maya/NETemplates/NEbabylonAiStandardSurfaceMaterialNodeTemplate.xml b/Maya/NETemplates/NEbabylonAiStandardSurfaceMaterialNodeTemplate.xml
new file mode 100644
index 00000000..b6524e50
--- /dev/null
+++ b/Maya/NETemplates/NEbabylonAiStandardSurfaceMaterialNodeTemplate.xml
@@ -0,0 +1,11 @@
+
+
+
+
+
+
+
+
+
+
+
diff --git a/Maya/NETemplates/NEbabylonStandardMaterialNodeTemplate.xml b/Maya/NETemplates/NEbabylonStandardMaterialNodeTemplate.xml
new file mode 100644
index 00000000..68f11f0d
--- /dev/null
+++ b/Maya/NETemplates/NEbabylonStandardMaterialNodeTemplate.xml
@@ -0,0 +1,11 @@
+
+
+
+
+
+
+
+
+
+
+
diff --git a/Maya/NETemplates/NEbabylonStingrayPBSMaterialNodeTemplate.xml b/Maya/NETemplates/NEbabylonStingrayPBSMaterialNodeTemplate.xml
new file mode 100644
index 00000000..d436aced
--- /dev/null
+++ b/Maya/NETemplates/NEbabylonStingrayPBSMaterialNodeTemplate.xml
@@ -0,0 +1,11 @@
+
+
+
+
+
+
+
+
+
+
+
diff --git a/Maya/Samples/babylon/BabylonMaterialAttributes/BackfaceCulling.babylon b/Maya/Samples/babylon/BabylonMaterialAttributes/BackfaceCulling.babylon
new file mode 100644
index 00000000..605b32a0
--- /dev/null
+++ b/Maya/Samples/babylon/BabylonMaterialAttributes/BackfaceCulling.babylon
@@ -0,0 +1 @@
+{"producer":{"name":"Maya","version":"2018","exporter_version":"1.4.0","file":"BackfaceCulling.babylon"},"autoClear":true,"clearColor":[0.2,0.2,0.3],"ambientColor":[0.0,0.0,0.0],"fogMode":0,"fogColor":null,"fogStart":0.0,"fogEnd":0.0,"fogDensity":0.0,"gravity":[0.0,0.0,-0.9],"physicsEngine":null,"physicsEnabled":false,"physicsGravity":null,"lights":[{"direction":[0.0,1.0,0.0],"type":3,"diffuse":[1.0,1.0,1.0],"specular":[1.0,1.0,1.0],"intensity":1.0,"range":3.40282347E+38,"exponent":0.0,"angle":0.0,"groundColor":[0.0,0.0,0.0],"excludedMeshesIds":null,"includedOnlyMeshesIds":null,"lightmapMode":null,"falloffType":null,"name":"Default light","id":"c749e719-7e46-4faf-b9fa-bf795bfdf824","parentId":null,"position":[0.0,0.0,0.0],"animations":null,"autoAnimate":false,"autoAnimateFrom":0,"autoAnimateTo":0,"autoAnimateLoop":false,"metadata":null}],"meshes":[{"materialId":"9B24F14E-4F69-6849-B864-07B9E4A7E9FF","isEnabled":true,"isVisible":true,"positions":[0.0,-0.9877,0.1564,-0.0483,-0.9877,0.1488,0.0,-0.9511,0.309,-0.0955,-0.9511,0.2939,-0.0919,-0.9877,0.1266,-0.1816,-0.9511,0.25,-0.1266,-0.9877,0.0919,-0.25,-0.9511,0.1816,-0.1488,-0.9877,0.0483,-0.2939,-0.9511,0.0955,-0.1564,-0.9877,0.0,-0.309,-0.9511,0.0,-0.1488,-0.9877,-0.0483,-0.2939,-0.9511,-0.0955,-0.1266,-0.9877,-0.0919,-0.25,-0.9511,-0.1816,-0.0919,-0.9877,-0.1266,-0.1816,-0.9511,-0.25,-0.0483,-0.9877,-0.1488,-0.0955,-0.9511,-0.2939,0.0,-0.9877,-0.1564,0.0,-0.9511,-0.309,0.0,-0.891,0.454,-0.1403,-0.891,0.4318,-0.2668,-0.891,0.3673,-0.3673,-0.891,0.2668,-0.4318,-0.891,0.1403,-0.454,-0.891,0.0,-0.4318,-0.891,-0.1403,-0.3673,-0.891,-0.2668,-0.2668,-0.891,-0.3673,-0.1403,-0.891,-0.4318,0.0,-0.891,-0.454,0.0,-0.809,0.5878,-0.1816,-0.809,0.559,-0.3455,-0.809,0.4755,-0.4755,-0.809,0.3455,-0.559,-0.809,0.1816,-0.5878,-0.809,0.0,-0.559,-0.809,-0.1816,-0.4755,-0.809,-0.3455,-0.3455,-0.809,-0.4755,-0.1816,-0.809,-0.559,0.0,-0.809,-0.5878,0.0,-0.7071,0.7071,-0.2185,-0.7071,0.6725,-0.4156,-0.7071,0.5721,-0.5721,-0.7071,0.4156,-0.6725,-0.7071,0.2185,-0.7071,-0.7071,0.0,-0.6725,-0.7071,-0.2185,-0.5721,-0.7071,-0.4156,-0.4156,-0.7071,-0.5721,-0.2185,-0.7071,-0.6725,0.0,-0.7071,-0.7071,0.0,-0.5878,0.809,-0.25,-0.5878,0.7694,-0.4755,-0.5878,0.6545,-0.6545,-0.5878,0.4755,-0.7694,-0.5878,0.25,-0.809,-0.5878,0.0,-0.7694,-0.5878,-0.25,-0.6545,-0.5878,-0.4755,-0.4755,-0.5878,-0.6545,-0.25,-0.5878,-0.7694,0.0,-0.5878,-0.809,0.0,-0.454,0.891,-0.2753,-0.454,0.8474,-0.5237,-0.454,0.7208,-0.7208,-0.454,0.5237,-0.8474,-0.454,0.2753,-0.891,-0.454,0.0,-0.8474,-0.454,-0.2753,-0.7208,-0.454,-0.5237,-0.5237,-0.454,-0.7208,-0.2753,-0.454,-0.8474,0.0,-0.454,-0.891,0.0,-0.309,0.9511,-0.2939,-0.309,0.9045,-0.559,-0.309,0.7694,-0.7694,-0.309,0.559,-0.9045,-0.309,0.2939,-0.9511,-0.309,0.0,-0.9045,-0.309,-0.2939,-0.7694,-0.309,-0.559,-0.559,-0.309,-0.7694,-0.2939,-0.309,-0.9045,0.0,-0.309,-0.9511,0.0,-0.1564,0.9877,-0.3052,-0.1564,0.9393,-0.5805,-0.1564,0.7991,-0.7991,-0.1564,0.5805,-0.9393,-0.1564,0.3052,-0.9877,-0.1564,0.0,-0.9393,-0.1564,-0.3052,-0.7991,-0.1564,-0.5805,-0.5805,-0.1564,-0.7991,-0.3052,-0.1564,-0.9393,0.0,-0.1564,-0.9877,0.0,0.0,1.0,-0.309,0.0,0.9511,-0.5878,0.0,0.809,-0.809,0.0,0.5878,-0.9511,0.0,0.309,-1.0,0.0,0.0,-0.9511,0.0,-0.309,-0.809,0.0,-0.5878,-0.5878,0.0,-0.809,-0.309,0.0,-0.9511,0.0,0.0,-1.0,0.0,0.1564,0.9877,-0.3052,0.1564,0.9393,-0.5805,0.1564,0.7991,-0.7991,0.1564,0.5805,-0.9393,0.1564,0.3052,-0.9877,0.1564,0.0,-0.9393,0.1564,-0.3052,-0.7991,0.1564,-0.5805,-0.5805,0.1564,-0.7991,-0.3052,0.1564,-0.9393,0.0,0.1564,-0.9877,0.0,0.309,0.9511,-0.2939,0.309,0.9045,-0.559,0.309,0.7694,-0.7694,0.309,0.559,-0.9045,0.309,0.2939,-0.9511,0.309,0.0,-0.9045,0.309,-0.2939,-0.7694,0.309,-0.559,-0.559,0.309,-0.7694,-0.2939,0.309,-0.9045,0.0,0.309,-0.9511,0.0,0.454,0.891,-0.2753,0.454,0.8474,-0.5237,0.454,0.7208,-0.7208,0.454,0.5237,-0.8474,0.454,0.2753,-0.891,0.454,0.0,-0.8474,0.454,-0.2753,-0.7208,0.454,-0.5237,-0.5237,0.454,-0.7208,-0.2753,0.454,-0.8474,0.0,0.454,-0.891,0.0,0.5878,0.809,-0.25,0.5878,0.7694,-0.4755,0.5878,0.6545,-0.6545,0.5878,0.4755,-0.7694,0.5878,0.25,-0.809,0.5878,0.0,-0.7694,0.5878,-0.25,-0.6545,0.5878,-0.4755,-0.4755,0.5878,-0.6545,-0.25,0.5878,-0.7694,0.0,0.5878,-0.809,0.0,0.7071,0.7071,-0.2185,0.7071,0.6725,-0.4156,0.7071,0.5721,-0.5721,0.7071,0.4156,-0.6725,0.7071,0.2185,-0.7071,0.7071,0.0,-0.6725,0.7071,-0.2185,-0.5721,0.7071,-0.4156,-0.4156,0.7071,-0.5721,-0.2185,0.7071,-0.6725,0.0,0.7071,-0.7071,0.0,0.809,0.5878,-0.1816,0.809,0.559,-0.3455,0.809,0.4755,-0.4755,0.809,0.3455,-0.559,0.809,0.1816,-0.5878,0.809,0.0,-0.559,0.809,-0.1816,-0.4755,0.809,-0.3455,-0.3455,0.809,-0.4755,-0.1816,0.809,-0.559,0.0,0.809,-0.5878,0.0,0.891,0.454,-0.1403,0.891,0.4318,-0.2668,0.891,0.3673,-0.3673,0.891,0.2668,-0.4318,0.891,0.1403,-0.454,0.891,0.0,-0.4318,0.891,-0.1403,-0.3673,0.891,-0.2668,-0.2668,0.891,-0.3673,-0.1403,0.891,-0.4318,0.0,0.891,-0.454,0.0,0.9511,0.309,-0.0955,0.9511,0.2939,-0.1816,0.9511,0.25,-0.25,0.9511,0.1816,-0.2939,0.9511,0.0955,-0.309,0.9511,0.0,-0.2939,0.9511,-0.0955,-0.25,0.9511,-0.1816,-0.1816,0.9511,-0.25,-0.0955,0.9511,-0.2939,0.0,0.9511,-0.309,0.0,0.9877,0.1564,-0.0483,0.9877,0.1488,-0.0919,0.9877,0.1266,-0.1266,0.9877,0.0919,-0.1488,0.9877,0.0483,-0.1564,0.9877,0.0,-0.1488,0.9877,-0.0483,-0.1266,0.9877,-0.0919,-0.0919,0.9877,-0.1266,-0.0483,0.9877,-0.1488,0.0,0.9877,-0.1564,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0],"normals":[-0.0317,-0.9792,0.2003,-0.0619,-0.9797,0.1906,-0.0528,-0.9414,0.3331,-0.1031,-0.9427,0.3173,-0.1178,-0.9797,0.1621,-0.1961,-0.9427,0.2699,-0.1621,-0.9797,0.1178,-0.2699,-0.9427,0.1961,-0.1906,-0.9797,0.0619,-0.3173,-0.9427,0.1031,-0.2004,-0.9797,0.0,-0.3336,-0.9427,0.0,-0.1906,-0.9797,-0.0619,-0.3173,-0.9427,-0.1031,-0.1621,-0.9797,-0.1178,-0.2699,-0.9427,-0.1961,-0.1178,-0.9797,-0.1621,-0.1961,-0.9427,-0.2699,-0.0619,-0.9797,-0.1906,-0.1031,-0.9427,-0.3173,-0.0317,-0.9792,-0.2003,-0.0528,-0.9414,-0.3331,-0.0744,-0.8798,0.4694,-0.1455,-0.8823,0.4477,-0.2767,-0.8823,0.3808,-0.3808,-0.8823,0.2767,-0.4477,-0.8823,0.1455,-0.4708,-0.8823,0.0,-0.4477,-0.8823,-0.1455,-0.3808,-0.8823,-0.2767,-0.2767,-0.8823,-0.3808,-0.1455,-0.8823,-0.4477,-0.0744,-0.8798,-0.4694,-0.0946,-0.7967,0.597,-0.1853,-0.8003,0.5703,-0.3525,-0.8003,0.4851,-0.4851,-0.8003,0.3525,-0.5703,-0.8003,0.1853,-0.5997,-0.8003,0.0,-0.5703,-0.8003,-0.1853,-0.4851,-0.8003,-0.3525,-0.3525,-0.8003,-0.4851,-0.1853,-0.8003,-0.5703,-0.0946,-0.7967,-0.597,-0.1126,-0.6943,0.7108,-0.221,-0.6988,0.6803,-0.4205,-0.6988,0.5787,-0.5787,-0.6988,0.4205,-0.6803,-0.6988,0.221,-0.7153,-0.6988,0.0,-0.6803,-0.6988,-0.221,-0.5787,-0.6988,-0.4205,-0.4205,-0.6988,-0.5787,-0.221,-0.6988,-0.6803,-0.1126,-0.6943,-0.7108,-0.1279,-0.5756,0.8076,-0.2516,-0.5804,0.7745,-0.4787,-0.5804,0.6588,-0.6588,-0.5804,0.4787,-0.7745,-0.5804,0.2516,-0.8143,-0.5804,0.0,-0.7745,-0.5804,-0.2516,-0.6588,-0.5804,-0.4787,-0.4787,-0.5804,-0.6588,-0.2516,-0.5804,-0.7745,-0.1279,-0.5756,-0.8076,-0.1402,-0.4436,0.8852,-0.2763,-0.448,0.8503,-0.5255,-0.448,0.7233,-0.7233,-0.448,0.5255,-0.8503,-0.448,0.2763,-0.894,-0.448,0.0,-0.8503,-0.448,-0.2763,-0.7233,-0.448,-0.5255,-0.5255,-0.448,-0.7233,-0.2763,-0.448,-0.8503,-0.1402,-0.4436,-0.8852,-0.1492,-0.3014,0.9418,-0.2943,-0.3048,0.9058,-0.5598,-0.3048,0.7705,-0.7705,-0.3048,0.5598,-0.9058,-0.3048,0.2943,-0.9524,-0.3048,0.0,-0.9058,-0.3048,-0.2943,-0.7705,-0.3048,-0.5598,-0.5598,-0.3048,-0.7705,-0.2943,-0.3048,-0.9058,-0.1492,-0.3014,-0.9418,-0.1546,-0.1524,0.9762,-0.3053,-0.1542,0.9397,-0.5808,-0.1542,0.7993,-0.7993,-0.1542,0.5808,-0.9397,-0.1542,0.3053,-0.988,-0.1542,0.0,-0.9397,-0.1542,-0.3053,-0.7993,-0.1542,-0.5808,-0.5808,-0.1542,-0.7993,-0.3053,-0.1542,-0.9397,-0.1546,-0.1524,-0.9762,-0.1564,0.0,0.9877,-0.309,0.0,0.9511,-0.5878,0.0,0.809,-0.809,0.0,0.5878,-0.9511,0.0,0.309,-1.0,0.0,0.0,-0.9511,0.0,-0.309,-0.809,0.0,-0.5878,-0.5878,0.0,-0.809,-0.309,0.0,-0.9511,-0.1564,0.0,-0.9877,-0.1546,0.1524,0.9762,-0.3053,0.1542,0.9397,-0.5808,0.1542,0.7993,-0.7993,0.1542,0.5808,-0.9397,0.1542,0.3053,-0.988,0.1542,0.0,-0.9397,0.1542,-0.3053,-0.7993,0.1542,-0.5808,-0.5808,0.1542,-0.7993,-0.3053,0.1542,-0.9397,-0.1546,0.1524,-0.9762,-0.1492,0.3014,0.9418,-0.2943,0.3048,0.9058,-0.5598,0.3048,0.7705,-0.7705,0.3048,0.5598,-0.9058,0.3048,0.2943,-0.9524,0.3048,0.0,-0.9058,0.3048,-0.2943,-0.7705,0.3048,-0.5598,-0.5598,0.3048,-0.7705,-0.2943,0.3048,-0.9058,-0.1492,0.3014,-0.9418,-0.1402,0.4436,0.8852,-0.2763,0.448,0.8503,-0.5255,0.448,0.7233,-0.7233,0.448,0.5255,-0.8503,0.448,0.2763,-0.894,0.448,0.0,-0.8503,0.448,-0.2763,-0.7233,0.448,-0.5255,-0.5255,0.448,-0.7233,-0.2763,0.448,-0.8503,-0.1402,0.4436,-0.8852,-0.1279,0.5756,0.8076,-0.2516,0.5804,0.7745,-0.4787,0.5804,0.6588,-0.6588,0.5804,0.4787,-0.7745,0.5804,0.2516,-0.8143,0.5804,0.0,-0.7745,0.5804,-0.2516,-0.6588,0.5804,-0.4787,-0.4787,0.5804,-0.6588,-0.2516,0.5804,-0.7745,-0.1279,0.5756,-0.8076,-0.1126,0.6943,0.7108,-0.221,0.6988,0.6803,-0.4205,0.6988,0.5787,-0.5787,0.6988,0.4205,-0.6803,0.6988,0.221,-0.7153,0.6988,0.0,-0.6803,0.6988,-0.221,-0.5787,0.6988,-0.4205,-0.4205,0.6988,-0.5787,-0.221,0.6988,-0.6803,-0.1126,0.6943,-0.7108,-0.0946,0.7967,0.597,-0.1853,0.8003,0.5703,-0.3525,0.8003,0.4851,-0.4851,0.8003,0.3525,-0.5703,0.8003,0.1853,-0.5997,0.8003,0.0,-0.5703,0.8003,-0.1853,-0.4851,0.8003,-0.3525,-0.3525,0.8003,-0.4851,-0.1853,0.8003,-0.5703,-0.0946,0.7967,-0.597,-0.0744,0.8798,0.4694,-0.1455,0.8823,0.4477,-0.2767,0.8823,0.3808,-0.3808,0.8823,0.2767,-0.4477,0.8823,0.1455,-0.4708,0.8823,0.0,-0.4477,0.8823,-0.1455,-0.3808,0.8823,-0.2767,-0.2767,0.8823,-0.3808,-0.1455,0.8823,-0.4477,-0.0744,0.8798,-0.4694,-0.0528,0.9414,0.3331,-0.1031,0.9427,0.3173,-0.1961,0.9427,0.2699,-0.2699,0.9427,0.1961,-0.3173,0.9427,0.1031,-0.3336,0.9427,0.0,-0.3173,0.9427,-0.1031,-0.2699,0.9427,-0.1961,-0.1961,0.9427,-0.2699,-0.1031,0.9427,-0.3173,-0.0528,0.9414,-0.3331,-0.0317,0.9792,0.2003,-0.0619,0.9797,0.1906,-0.1178,0.9797,0.1621,-0.1621,0.9797,0.1178,-0.1906,0.9797,0.0619,-0.2004,0.9797,0.0,-0.1906,0.9797,-0.0619,-0.1621,0.9797,-0.1178,-0.1178,0.9797,-0.1621,-0.0619,0.9797,-0.1906,-0.0317,0.9792,-0.2003,-0.0509,-0.9987,0.0,-0.0509,-0.9987,0.0,-0.0509,-0.9987,0.0,-0.0509,-0.9987,0.0,-0.0509,-0.9987,0.0,-0.0509,-0.9987,0.0,-0.0509,-0.9987,0.0,-0.0509,-0.9987,0.0,-0.0509,-0.9987,0.0,-0.0509,-0.9987,0.0,-0.0509,0.9987,0.0,-0.0509,0.9987,0.0,-0.0509,0.9987,0.0,-0.0509,0.9987,0.0,-0.0509,0.9987,0.0,-0.0509,0.9987,0.0,-0.0509,0.9987,0.0,-0.0509,0.9987,0.0,-0.0509,0.9987,0.0,-0.0509,0.9987,0.0],"tangents":[-0.9877,0.0,-0.1564,-1.0,-0.96,0.0062,-0.28,-1.0,-0.9877,0.0,-0.1564,-1.0,-0.9511,0.0,-0.309,-1.0,-0.8265,0.0062,-0.5629,-1.0,-0.809,0.0,-0.5878,-1.0,-0.6121,0.0062,-0.7908,-1.0,-0.5878,0.0,-0.809,-1.0,-0.3378,0.0062,-0.9412,-1.0,-0.309,0.0,-0.9511,-1.0,-0.0304,0.0062,-0.9995,-1.0,0.0,0.0,-1.0,-1.0,0.28,0.0062,-0.96,-1.0,0.309,0.0,-0.9511,-1.0,0.5629,0.0062,-0.8265,-1.0,0.5878,0.0,-0.809,-1.0,0.7908,0.0062,-0.6121,-1.0,0.809,0.0,-0.5878,-1.0,0.9412,0.0062,-0.3378,-1.0,0.9511,0.0,-0.309,-1.0,0.9877,0.0,-0.1564,-1.0,0.9877,0.0,-0.1564,-1.0,-0.9877,0.0,-0.1564,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,0.9877,0.0,-0.1564,-1.0,-0.9877,0.0,-0.1564,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,0.9877,0.0,-0.1564,-1.0,-0.9877,0.0,-0.1564,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,0.9877,0.0,-0.1564,-1.0,-0.9877,0.0,-0.1564,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,0.9877,0.0,-0.1564,-1.0,-0.9877,0.0,-0.1564,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,0.9877,0.0,-0.1564,-1.0,-0.9877,0.0,-0.1564,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,0.9877,0.0,-0.1564,-1.0,-0.9877,0.0,-0.1564,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,0.9877,0.0,-0.1564,-1.0,-0.9877,0.0,-0.1564,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,0.9877,0.0,-0.1564,-1.0,-0.9877,0.0,-0.1564,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,0.9877,0.0,-0.1564,-1.0,-0.9877,0.0,-0.1564,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,0.9877,0.0,-0.1564,-1.0,-0.9877,0.0,-0.1564,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,0.9877,0.0,-0.1564,-1.0,-0.9877,0.0,-0.1564,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,0.9877,0.0,-0.1564,-1.0,-0.9877,0.0,-0.1564,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,0.9877,0.0,-0.1564,-1.0,-0.9877,0.0,-0.1564,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,0.9877,0.0,-0.1564,-1.0,-0.9877,0.0,-0.1564,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,0.9877,0.0,-0.1564,-1.0,-0.9877,0.0,-0.1564,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,0.9877,0.0,-0.1564,-1.0,-0.9877,0.0,-0.1564,-1.0,-0.9412,0.0062,-0.3378,-1.0,-0.7908,0.0062,-0.6121,-1.0,-0.5629,0.0062,-0.8265,-1.0,-0.28,0.0062,-0.96,-1.0,0.0304,0.0062,-0.9995,-1.0,0.3378,0.0062,-0.9412,-1.0,0.6121,0.0062,-0.7908,-1.0,0.8265,0.0062,-0.5629,-1.0,0.96,0.0062,-0.28,-1.0,0.9877,0.0,-0.1564,-1.0,-0.9864,0.0502,-0.1566,-1.0,-0.8896,0.0453,-0.4545,-1.0,-0.7057,0.0359,-0.7076,-1.0,-0.4529,0.0231,-0.8912,-1.0,-0.156,0.0079,-0.9877,-1.0,0.156,-0.0079,-0.9877,-1.0,0.4529,-0.0231,-0.8912,-1.0,0.7057,-0.0359,-0.7076,-1.0,0.8896,-0.0453,-0.4545,-1.0,0.9864,-0.0502,-0.1566,-1.0,-0.9864,-0.0502,-0.1566,-1.0,-0.8896,-0.0453,-0.4545,-1.0,-0.7057,-0.0359,-0.7076,-1.0,-0.4529,-0.0231,-0.8912,-1.0,-0.156,-0.0079,-0.9877,-1.0,0.156,0.0079,-0.9877,-1.0,0.4529,0.0231,-0.8912,-1.0,0.7057,0.0359,-0.7076,-1.0,0.8896,0.0453,-0.4545,-1.0,0.9864,0.0502,-0.1566,-1.0],"uvs":[0.2,0.05,0.25,0.05,0.2,0.1,0.25,0.1,0.3,0.05,0.3,0.1,0.35,0.05,0.35,0.1,0.4,0.05,0.4,0.1,0.45,0.05,0.45,0.1,0.5,0.05,0.5,0.1,0.55,0.05,0.55,0.1,0.6,0.05,0.6,0.1,0.65,0.05,0.65,0.1,0.7,0.05,0.7,0.1,0.2,0.15,0.25,0.15,0.3,0.15,0.35,0.15,0.4,0.15,0.45,0.15,0.5,0.15,0.55,0.15,0.6,0.15,0.65,0.15,0.7,0.15,0.2,0.2,0.25,0.2,0.3,0.2,0.35,0.2,0.4,0.2,0.45,0.2,0.5,0.2,0.55,0.2,0.6,0.2,0.65,0.2,0.7,0.2,0.2,0.25,0.25,0.25,0.3,0.25,0.35,0.25,0.4,0.25,0.45,0.25,0.5,0.25,0.55,0.25,0.6,0.25,0.65,0.25,0.7,0.25,0.2,0.3,0.25,0.3,0.3,0.3,0.35,0.3,0.4,0.3,0.45,0.3,0.5,0.3,0.55,0.3,0.6,0.3,0.65,0.3,0.7,0.3,0.2,0.35,0.25,0.35,0.3,0.35,0.35,0.35,0.4,0.35,0.45,0.35,0.5,0.35,0.55,0.35,0.6,0.35,0.65,0.35,0.7,0.35,0.2,0.4,0.25,0.4,0.3,0.4,0.35,0.4,0.4,0.4,0.45,0.4,0.5,0.4,0.55,0.4,0.6,0.4,0.65,0.4,0.7,0.4,0.2,0.45,0.25,0.45,0.3,0.45,0.35,0.45,0.4,0.45,0.45,0.45,0.5,0.45,0.55,0.45,0.6,0.45,0.65,0.45,0.7,0.45,0.2,0.5,0.25,0.5,0.3,0.5,0.35,0.5,0.4,0.5,0.45,0.5,0.5,0.5,0.55,0.5,0.6,0.5,0.65,0.5,0.7,0.5,0.2,0.55,0.25,0.55,0.3,0.55,0.35,0.55,0.4,0.55,0.45,0.55,0.5,0.55,0.55,0.55,0.6,0.55,0.65,0.55,0.7,0.55,0.2,0.6,0.25,0.6,0.3,0.6,0.35,0.6,0.4,0.6,0.45,0.6,0.5,0.6,0.55,0.6,0.6,0.6,0.65,0.6,0.7,0.6,0.2,0.65,0.25,0.65,0.3,0.65,0.35,0.65,0.4,0.65,0.45,0.65,0.5,0.65,0.55,0.65,0.6,0.65,0.65,0.65,0.7,0.65,0.2,0.7,0.25,0.7,0.3,0.7,0.35,0.7,0.4,0.7,0.45,0.7,0.5,0.7,0.55,0.7,0.6,0.7,0.65,0.7,0.7,0.7,0.2,0.75,0.25,0.75,0.3,0.75,0.35,0.75,0.4,0.75,0.45,0.75,0.5,0.75,0.55,0.75,0.6,0.75,0.65,0.75,0.7,0.75,0.2,0.8,0.25,0.8,0.3,0.8,0.35,0.8,0.4,0.8,0.45,0.8,0.5,0.8,0.55,0.8,0.6,0.8,0.65,0.8,0.7,0.8,0.2,0.85,0.25,0.85,0.3,0.85,0.35,0.85,0.4,0.85,0.45,0.85,0.5,0.85,0.55,0.85,0.6,0.85,0.65,0.85,0.7,0.85,0.2,0.9,0.25,0.9,0.3,0.9,0.35,0.9,0.4,0.9,0.45,0.9,0.5,0.9,0.55,0.9,0.6,0.9,0.65,0.9,0.7,0.9,0.2,0.95,0.25,0.95,0.3,0.95,0.35,0.95,0.4,0.95,0.45,0.95,0.5,0.95,0.55,0.95,0.6,0.95,0.65,0.95,0.7,0.95,0.225,0.0,0.275,0.0,0.325,0.0,0.375,0.0,0.425,0.0,0.475,0.0,0.525,0.0,0.575,0.0,0.625,0.0,0.675,0.0,0.225,1.0,0.275,1.0,0.325,1.0,0.375,1.0,0.425,1.0,0.475,1.0,0.525,1.0,0.575,1.0,0.625,1.0,0.675,1.0],"uvs2":null,"colors":null,"hasVertexAlpha":false,"matricesIndices":null,"matricesWeights":null,"matricesIndicesExtra":null,"matricesWeightsExtra":null,"indices":[0,1,2,2,1,3,1,4,3,3,4,5,4,6,5,5,6,7,6,8,7,7,8,9,8,10,9,9,10,11,10,12,11,11,12,13,12,14,13,13,14,15,14,16,15,15,16,17,16,18,17,17,18,19,18,20,19,19,20,21,2,3,22,22,3,23,3,5,23,23,5,24,5,7,24,24,7,25,7,9,25,25,9,26,9,11,26,26,11,27,11,13,27,27,13,28,13,15,28,28,15,29,15,17,29,29,17,30,17,19,30,30,19,31,19,21,31,31,21,32,22,23,33,33,23,34,23,24,34,34,24,35,24,25,35,35,25,36,25,26,36,36,26,37,26,27,37,37,27,38,27,28,38,38,28,39,28,29,39,39,29,40,29,30,40,40,30,41,30,31,41,41,31,42,31,32,42,42,32,43,33,34,44,44,34,45,34,35,45,45,35,46,35,36,46,46,36,47,36,37,47,47,37,48,37,38,48,48,38,49,38,39,49,49,39,50,39,40,50,50,40,51,40,41,51,51,41,52,41,42,52,52,42,53,42,43,53,53,43,54,44,45,55,55,45,56,45,46,56,56,46,57,46,47,57,57,47,58,47,48,58,58,48,59,48,49,59,59,49,60,49,50,60,60,50,61,50,51,61,61,51,62,51,52,62,62,52,63,52,53,63,63,53,64,53,54,64,64,54,65,55,56,66,66,56,67,56,57,67,67,57,68,57,58,68,68,58,69,58,59,69,69,59,70,59,60,70,70,60,71,60,61,71,71,61,72,61,62,72,72,62,73,62,63,73,73,63,74,63,64,74,74,64,75,64,65,75,75,65,76,66,67,77,77,67,78,67,68,78,78,68,79,68,69,79,79,69,80,69,70,80,80,70,81,70,71,81,81,71,82,71,72,82,82,72,83,72,73,83,83,73,84,73,74,84,84,74,85,74,75,85,85,75,86,75,76,86,86,76,87,77,78,88,88,78,89,78,79,89,89,79,90,79,80,90,90,80,91,80,81,91,91,81,92,81,82,92,92,82,93,82,83,93,93,83,94,83,84,94,94,84,95,84,85,95,95,85,96,85,86,96,96,86,97,86,87,97,97,87,98,88,89,99,99,89,100,89,90,100,100,90,101,90,91,101,101,91,102,91,92,102,102,92,103,92,93,103,103,93,104,93,94,104,104,94,105,94,95,105,105,95,106,95,96,106,106,96,107,96,97,107,107,97,108,97,98,108,108,98,109,99,100,110,110,100,111,100,101,111,111,101,112,101,102,112,112,102,113,102,103,113,113,103,114,103,104,114,114,104,115,104,105,115,115,105,116,105,106,116,116,106,117,106,107,117,117,107,118,107,108,118,118,108,119,108,109,119,119,109,120,110,111,121,121,111,122,111,112,122,122,112,123,112,113,123,123,113,124,113,114,124,124,114,125,114,115,125,125,115,126,115,116,126,126,116,127,116,117,127,127,117,128,117,118,128,128,118,129,118,119,129,129,119,130,119,120,130,130,120,131,121,122,132,132,122,133,122,123,133,133,123,134,123,124,134,134,124,135,124,125,135,135,125,136,125,126,136,136,126,137,126,127,137,137,127,138,127,128,138,138,128,139,128,129,139,139,129,140,129,130,140,140,130,141,130,131,141,141,131,142,132,133,143,143,133,144,133,134,144,144,134,145,134,135,145,145,135,146,135,136,146,146,136,147,136,137,147,147,137,148,137,138,148,148,138,149,138,139,149,149,139,150,139,140,150,150,140,151,140,141,151,151,141,152,141,142,152,152,142,153,143,144,154,154,144,155,144,145,155,155,145,156,145,146,156,156,146,157,146,147,157,157,147,158,147,148,158,158,148,159,148,149,159,159,149,160,149,150,160,160,150,161,150,151,161,161,151,162,151,152,162,162,152,163,152,153,163,163,153,164,154,155,165,165,155,166,155,156,166,166,156,167,156,157,167,167,157,168,157,158,168,168,158,169,158,159,169,169,159,170,159,160,170,170,160,171,160,161,171,171,161,172,161,162,172,172,162,173,162,163,173,173,163,174,163,164,174,174,164,175,165,166,176,176,166,177,166,167,177,177,167,178,167,168,178,178,168,179,168,169,179,179,169,180,169,170,180,180,170,181,170,171,181,181,171,182,171,172,182,182,172,183,172,173,183,183,173,184,173,174,184,184,174,185,174,175,185,185,175,186,176,177,187,187,177,188,177,178,188,188,178,189,178,179,189,189,179,190,179,180,190,190,180,191,180,181,191,191,181,192,181,182,192,192,182,193,182,183,193,193,183,194,183,184,194,194,184,195,184,185,195,195,185,196,185,186,196,196,186,197,187,188,198,198,188,199,188,189,199,199,189,200,189,190,200,200,190,201,190,191,201,201,191,202,191,192,202,202,192,203,192,193,203,203,193,204,193,194,204,204,194,205,194,195,205,205,195,206,195,196,206,206,196,207,196,197,207,207,197,208,1,0,209,4,1,210,6,4,211,8,6,212,10,8,213,12,10,214,14,12,215,16,14,216,18,16,217,20,18,218,198,199,219,199,200,220,200,201,221,201,202,222,202,203,223,203,204,224,204,205,225,205,206,226,206,207,227,207,208,228],"receiveShadows":false,"infiniteDistance":false,"billboardMode":0,"visibility":1.0,"subMeshes":[{"materialIndex":0,"verticesStart":0,"verticesCount":229,"indexStart":0,"indexCount":1140}],"instances":null,"skeletonId":-1,"numBoneInfluencers":4,"applyFog":false,"lodMeshIds":null,"lodDistances":null,"lodCoverages":null,"rotation":null,"scaling":[1.0,1.0,1.0],"rotationQuaternion":[0.0,0.0,0.0,1.0],"actions":null,"checkCollisions":false,"pickable":true,"showBoundingBox":false,"showSubMeshesBoundingBox":false,"alphaIndex":0,"physicsImpostor":0,"physicsMass":0.0,"physicsFriction":0.0,"physicsRestitution":0.0,"name":"pSphere1","id":"39830D1B-4903-0C71-E956-0EBDE718A360","parentId":null,"position":[0.0,0.0,0.0],"animations":[],"autoAnimate":true,"autoAnimateFrom":1,"autoAnimateTo":200,"autoAnimateLoop":true,"metadata":{}},{"materialId":"0E49D5E9-4200-91FB-CB7B-93B40CEF850E","isEnabled":true,"isVisible":true,"positions":[0.0,-0.9877,0.1564,-0.0483,-0.9877,0.1488,0.0,-0.9511,0.309,-0.0955,-0.9511,0.2939,-0.0919,-0.9877,0.1266,-0.1816,-0.9511,0.25,-0.1266,-0.9877,0.0919,-0.25,-0.9511,0.1816,-0.1488,-0.9877,0.0483,-0.2939,-0.9511,0.0955,-0.1564,-0.9877,0.0,-0.309,-0.9511,0.0,-0.1488,-0.9877,-0.0483,-0.2939,-0.9511,-0.0955,-0.1266,-0.9877,-0.0919,-0.25,-0.9511,-0.1816,-0.0919,-0.9877,-0.1266,-0.1816,-0.9511,-0.25,-0.0483,-0.9877,-0.1488,-0.0955,-0.9511,-0.2939,0.0,-0.9877,-0.1564,0.0,-0.9511,-0.309,0.0,-0.891,0.454,-0.1403,-0.891,0.4318,-0.2668,-0.891,0.3673,-0.3673,-0.891,0.2668,-0.4318,-0.891,0.1403,-0.454,-0.891,0.0,-0.4318,-0.891,-0.1403,-0.3673,-0.891,-0.2668,-0.2668,-0.891,-0.3673,-0.1403,-0.891,-0.4318,0.0,-0.891,-0.454,0.0,-0.809,0.5878,-0.1816,-0.809,0.559,-0.3455,-0.809,0.4755,-0.4755,-0.809,0.3455,-0.559,-0.809,0.1816,-0.5878,-0.809,0.0,-0.559,-0.809,-0.1816,-0.4755,-0.809,-0.3455,-0.3455,-0.809,-0.4755,-0.1816,-0.809,-0.559,0.0,-0.809,-0.5878,0.0,-0.7071,0.7071,-0.2185,-0.7071,0.6725,-0.4156,-0.7071,0.5721,-0.5721,-0.7071,0.4156,-0.6725,-0.7071,0.2185,-0.7071,-0.7071,0.0,-0.6725,-0.7071,-0.2185,-0.5721,-0.7071,-0.4156,-0.4156,-0.7071,-0.5721,-0.2185,-0.7071,-0.6725,0.0,-0.7071,-0.7071,0.0,-0.5878,0.809,-0.25,-0.5878,0.7694,-0.4755,-0.5878,0.6545,-0.6545,-0.5878,0.4755,-0.7694,-0.5878,0.25,-0.809,-0.5878,0.0,-0.7694,-0.5878,-0.25,-0.6545,-0.5878,-0.4755,-0.4755,-0.5878,-0.6545,-0.25,-0.5878,-0.7694,0.0,-0.5878,-0.809,0.0,-0.454,0.891,-0.2753,-0.454,0.8474,-0.5237,-0.454,0.7208,-0.7208,-0.454,0.5237,-0.8474,-0.454,0.2753,-0.891,-0.454,0.0,-0.8474,-0.454,-0.2753,-0.7208,-0.454,-0.5237,-0.5237,-0.454,-0.7208,-0.2753,-0.454,-0.8474,0.0,-0.454,-0.891,0.0,-0.309,0.9511,-0.2939,-0.309,0.9045,-0.559,-0.309,0.7694,-0.7694,-0.309,0.559,-0.9045,-0.309,0.2939,-0.9511,-0.309,0.0,-0.9045,-0.309,-0.2939,-0.7694,-0.309,-0.559,-0.559,-0.309,-0.7694,-0.2939,-0.309,-0.9045,0.0,-0.309,-0.9511,0.0,-0.1564,0.9877,-0.3052,-0.1564,0.9393,-0.5805,-0.1564,0.7991,-0.7991,-0.1564,0.5805,-0.9393,-0.1564,0.3052,-0.9877,-0.1564,0.0,-0.9393,-0.1564,-0.3052,-0.7991,-0.1564,-0.5805,-0.5805,-0.1564,-0.7991,-0.3052,-0.1564,-0.9393,0.0,-0.1564,-0.9877,0.0,0.0,1.0,-0.309,0.0,0.9511,-0.5878,0.0,0.809,-0.809,0.0,0.5878,-0.9511,0.0,0.309,-1.0,0.0,0.0,-0.9511,0.0,-0.309,-0.809,0.0,-0.5878,-0.5878,0.0,-0.809,-0.309,0.0,-0.9511,0.0,0.0,-1.0,0.0,0.1564,0.9877,-0.3052,0.1564,0.9393,-0.5805,0.1564,0.7991,-0.7991,0.1564,0.5805,-0.9393,0.1564,0.3052,-0.9877,0.1564,0.0,-0.9393,0.1564,-0.3052,-0.7991,0.1564,-0.5805,-0.5805,0.1564,-0.7991,-0.3052,0.1564,-0.9393,0.0,0.1564,-0.9877,0.0,0.309,0.9511,-0.2939,0.309,0.9045,-0.559,0.309,0.7694,-0.7694,0.309,0.559,-0.9045,0.309,0.2939,-0.9511,0.309,0.0,-0.9045,0.309,-0.2939,-0.7694,0.309,-0.559,-0.559,0.309,-0.7694,-0.2939,0.309,-0.9045,0.0,0.309,-0.9511,0.0,0.454,0.891,-0.2753,0.454,0.8474,-0.5237,0.454,0.7208,-0.7208,0.454,0.5237,-0.8474,0.454,0.2753,-0.891,0.454,0.0,-0.8474,0.454,-0.2753,-0.7208,0.454,-0.5237,-0.5237,0.454,-0.7208,-0.2753,0.454,-0.8474,0.0,0.454,-0.891,0.0,0.5878,0.809,-0.25,0.5878,0.7694,-0.4755,0.5878,0.6545,-0.6545,0.5878,0.4755,-0.7694,0.5878,0.25,-0.809,0.5878,0.0,-0.7694,0.5878,-0.25,-0.6545,0.5878,-0.4755,-0.4755,0.5878,-0.6545,-0.25,0.5878,-0.7694,0.0,0.5878,-0.809,0.0,0.7071,0.7071,-0.2185,0.7071,0.6725,-0.4156,0.7071,0.5721,-0.5721,0.7071,0.4156,-0.6725,0.7071,0.2185,-0.7071,0.7071,0.0,-0.6725,0.7071,-0.2185,-0.5721,0.7071,-0.4156,-0.4156,0.7071,-0.5721,-0.2185,0.7071,-0.6725,0.0,0.7071,-0.7071,0.0,0.809,0.5878,-0.1816,0.809,0.559,-0.3455,0.809,0.4755,-0.4755,0.809,0.3455,-0.559,0.809,0.1816,-0.5878,0.809,0.0,-0.559,0.809,-0.1816,-0.4755,0.809,-0.3455,-0.3455,0.809,-0.4755,-0.1816,0.809,-0.559,0.0,0.809,-0.5878,0.0,0.891,0.454,-0.1403,0.891,0.4318,-0.2668,0.891,0.3673,-0.3673,0.891,0.2668,-0.4318,0.891,0.1403,-0.454,0.891,0.0,-0.4318,0.891,-0.1403,-0.3673,0.891,-0.2668,-0.2668,0.891,-0.3673,-0.1403,0.891,-0.4318,0.0,0.891,-0.454,0.0,0.9511,0.309,-0.0955,0.9511,0.2939,-0.1816,0.9511,0.25,-0.25,0.9511,0.1816,-0.2939,0.9511,0.0955,-0.309,0.9511,0.0,-0.2939,0.9511,-0.0955,-0.25,0.9511,-0.1816,-0.1816,0.9511,-0.25,-0.0955,0.9511,-0.2939,0.0,0.9511,-0.309,0.0,0.9877,0.1564,-0.0483,0.9877,0.1488,-0.0919,0.9877,0.1266,-0.1266,0.9877,0.0919,-0.1488,0.9877,0.0483,-0.1564,0.9877,0.0,-0.1488,0.9877,-0.0483,-0.1266,0.9877,-0.0919,-0.0919,0.9877,-0.1266,-0.0483,0.9877,-0.1488,0.0,0.9877,-0.1564,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0],"normals":[-0.0317,-0.9792,0.2003,-0.0619,-0.9797,0.1906,-0.0528,-0.9414,0.3331,-0.1031,-0.9427,0.3173,-0.1178,-0.9797,0.1621,-0.1961,-0.9427,0.2699,-0.1621,-0.9797,0.1178,-0.2699,-0.9427,0.1961,-0.1906,-0.9797,0.0619,-0.3173,-0.9427,0.1031,-0.2004,-0.9797,0.0,-0.3336,-0.9427,0.0,-0.1906,-0.9797,-0.0619,-0.3173,-0.9427,-0.1031,-0.1621,-0.9797,-0.1178,-0.2699,-0.9427,-0.1961,-0.1178,-0.9797,-0.1621,-0.1961,-0.9427,-0.2699,-0.0619,-0.9797,-0.1906,-0.1031,-0.9427,-0.3173,-0.0317,-0.9792,-0.2003,-0.0528,-0.9414,-0.3331,-0.0744,-0.8798,0.4694,-0.1455,-0.8823,0.4477,-0.2767,-0.8823,0.3808,-0.3808,-0.8823,0.2767,-0.4477,-0.8823,0.1455,-0.4708,-0.8823,0.0,-0.4477,-0.8823,-0.1455,-0.3808,-0.8823,-0.2767,-0.2767,-0.8823,-0.3808,-0.1455,-0.8823,-0.4477,-0.0744,-0.8798,-0.4694,-0.0946,-0.7967,0.597,-0.1853,-0.8003,0.5703,-0.3525,-0.8003,0.4851,-0.4851,-0.8003,0.3525,-0.5703,-0.8003,0.1853,-0.5997,-0.8003,0.0,-0.5703,-0.8003,-0.1853,-0.4851,-0.8003,-0.3525,-0.3525,-0.8003,-0.4851,-0.1853,-0.8003,-0.5703,-0.0946,-0.7967,-0.597,-0.1126,-0.6943,0.7108,-0.221,-0.6988,0.6803,-0.4205,-0.6988,0.5787,-0.5787,-0.6988,0.4205,-0.6803,-0.6988,0.221,-0.7153,-0.6988,0.0,-0.6803,-0.6988,-0.221,-0.5787,-0.6988,-0.4205,-0.4205,-0.6988,-0.5787,-0.221,-0.6988,-0.6803,-0.1126,-0.6943,-0.7108,-0.1279,-0.5756,0.8076,-0.2516,-0.5804,0.7745,-0.4787,-0.5804,0.6588,-0.6588,-0.5804,0.4787,-0.7745,-0.5804,0.2516,-0.8143,-0.5804,0.0,-0.7745,-0.5804,-0.2516,-0.6588,-0.5804,-0.4787,-0.4787,-0.5804,-0.6588,-0.2516,-0.5804,-0.7745,-0.1279,-0.5756,-0.8076,-0.1402,-0.4436,0.8852,-0.2763,-0.448,0.8503,-0.5255,-0.448,0.7233,-0.7233,-0.448,0.5255,-0.8503,-0.448,0.2763,-0.894,-0.448,0.0,-0.8503,-0.448,-0.2763,-0.7233,-0.448,-0.5255,-0.5255,-0.448,-0.7233,-0.2763,-0.448,-0.8503,-0.1402,-0.4436,-0.8852,-0.1492,-0.3014,0.9418,-0.2943,-0.3048,0.9058,-0.5598,-0.3048,0.7705,-0.7705,-0.3048,0.5598,-0.9058,-0.3048,0.2943,-0.9524,-0.3048,0.0,-0.9058,-0.3048,-0.2943,-0.7705,-0.3048,-0.5598,-0.5598,-0.3048,-0.7705,-0.2943,-0.3048,-0.9058,-0.1492,-0.3014,-0.9418,-0.1546,-0.1524,0.9762,-0.3053,-0.1542,0.9397,-0.5808,-0.1542,0.7993,-0.7993,-0.1542,0.5808,-0.9397,-0.1542,0.3053,-0.988,-0.1542,0.0,-0.9397,-0.1542,-0.3053,-0.7993,-0.1542,-0.5808,-0.5808,-0.1542,-0.7993,-0.3053,-0.1542,-0.9397,-0.1546,-0.1524,-0.9762,-0.1564,0.0,0.9877,-0.309,0.0,0.9511,-0.5878,0.0,0.809,-0.809,0.0,0.5878,-0.9511,0.0,0.309,-1.0,0.0,0.0,-0.9511,0.0,-0.309,-0.809,0.0,-0.5878,-0.5878,0.0,-0.809,-0.309,0.0,-0.9511,-0.1564,0.0,-0.9877,-0.1546,0.1524,0.9762,-0.3053,0.1542,0.9397,-0.5808,0.1542,0.7993,-0.7993,0.1542,0.5808,-0.9397,0.1542,0.3053,-0.988,0.1542,0.0,-0.9397,0.1542,-0.3053,-0.7993,0.1542,-0.5808,-0.5808,0.1542,-0.7993,-0.3053,0.1542,-0.9397,-0.1546,0.1524,-0.9762,-0.1492,0.3014,0.9418,-0.2943,0.3048,0.9058,-0.5598,0.3048,0.7705,-0.7705,0.3048,0.5598,-0.9058,0.3048,0.2943,-0.9524,0.3048,0.0,-0.9058,0.3048,-0.2943,-0.7705,0.3048,-0.5598,-0.5598,0.3048,-0.7705,-0.2943,0.3048,-0.9058,-0.1492,0.3014,-0.9418,-0.1402,0.4436,0.8852,-0.2763,0.448,0.8503,-0.5255,0.448,0.7233,-0.7233,0.448,0.5255,-0.8503,0.448,0.2763,-0.894,0.448,0.0,-0.8503,0.448,-0.2763,-0.7233,0.448,-0.5255,-0.5255,0.448,-0.7233,-0.2763,0.448,-0.8503,-0.1402,0.4436,-0.8852,-0.1279,0.5756,0.8076,-0.2516,0.5804,0.7745,-0.4787,0.5804,0.6588,-0.6588,0.5804,0.4787,-0.7745,0.5804,0.2516,-0.8143,0.5804,0.0,-0.7745,0.5804,-0.2516,-0.6588,0.5804,-0.4787,-0.4787,0.5804,-0.6588,-0.2516,0.5804,-0.7745,-0.1279,0.5756,-0.8076,-0.1126,0.6943,0.7108,-0.221,0.6988,0.6803,-0.4205,0.6988,0.5787,-0.5787,0.6988,0.4205,-0.6803,0.6988,0.221,-0.7153,0.6988,0.0,-0.6803,0.6988,-0.221,-0.5787,0.6988,-0.4205,-0.4205,0.6988,-0.5787,-0.221,0.6988,-0.6803,-0.1126,0.6943,-0.7108,-0.0946,0.7967,0.597,-0.1853,0.8003,0.5703,-0.3525,0.8003,0.4851,-0.4851,0.8003,0.3525,-0.5703,0.8003,0.1853,-0.5997,0.8003,0.0,-0.5703,0.8003,-0.1853,-0.4851,0.8003,-0.3525,-0.3525,0.8003,-0.4851,-0.1853,0.8003,-0.5703,-0.0946,0.7967,-0.597,-0.0744,0.8798,0.4694,-0.1455,0.8823,0.4477,-0.2767,0.8823,0.3808,-0.3808,0.8823,0.2767,-0.4477,0.8823,0.1455,-0.4708,0.8823,0.0,-0.4477,0.8823,-0.1455,-0.3808,0.8823,-0.2767,-0.2767,0.8823,-0.3808,-0.1455,0.8823,-0.4477,-0.0744,0.8798,-0.4694,-0.0528,0.9414,0.3331,-0.1031,0.9427,0.3173,-0.1961,0.9427,0.2699,-0.2699,0.9427,0.1961,-0.3173,0.9427,0.1031,-0.3336,0.9427,0.0,-0.3173,0.9427,-0.1031,-0.2699,0.9427,-0.1961,-0.1961,0.9427,-0.2699,-0.1031,0.9427,-0.3173,-0.0528,0.9414,-0.3331,-0.0317,0.9792,0.2003,-0.0619,0.9797,0.1906,-0.1178,0.9797,0.1621,-0.1621,0.9797,0.1178,-0.1906,0.9797,0.0619,-0.2004,0.9797,0.0,-0.1906,0.9797,-0.0619,-0.1621,0.9797,-0.1178,-0.1178,0.9797,-0.1621,-0.0619,0.9797,-0.1906,-0.0317,0.9792,-0.2003,-0.0509,-0.9987,0.0,-0.0509,-0.9987,0.0,-0.0509,-0.9987,0.0,-0.0509,-0.9987,0.0,-0.0509,-0.9987,0.0,-0.0509,-0.9987,0.0,-0.0509,-0.9987,0.0,-0.0509,-0.9987,0.0,-0.0509,-0.9987,0.0,-0.0509,-0.9987,0.0,-0.0509,0.9987,0.0,-0.0509,0.9987,0.0,-0.0509,0.9987,0.0,-0.0509,0.9987,0.0,-0.0509,0.9987,0.0,-0.0509,0.9987,0.0,-0.0509,0.9987,0.0,-0.0509,0.9987,0.0,-0.0509,0.9987,0.0,-0.0509,0.9987,0.0],"tangents":[-0.9877,0.0,-0.1564,-1.0,-0.96,0.0062,-0.28,-1.0,-0.9877,0.0,-0.1564,-1.0,-0.9511,0.0,-0.309,-1.0,-0.8265,0.0062,-0.5629,-1.0,-0.809,0.0,-0.5878,-1.0,-0.6121,0.0062,-0.7908,-1.0,-0.5878,0.0,-0.809,-1.0,-0.3378,0.0062,-0.9412,-1.0,-0.309,0.0,-0.9511,-1.0,-0.0304,0.0062,-0.9995,-1.0,0.0,0.0,-1.0,-1.0,0.28,0.0062,-0.96,-1.0,0.309,0.0,-0.9511,-1.0,0.5629,0.0062,-0.8265,-1.0,0.5878,0.0,-0.809,-1.0,0.7908,0.0062,-0.6121,-1.0,0.809,0.0,-0.5878,-1.0,0.9412,0.0062,-0.3378,-1.0,0.9511,0.0,-0.309,-1.0,0.9877,0.0,-0.1564,-1.0,0.9877,0.0,-0.1564,-1.0,-0.9877,0.0,-0.1564,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,0.9877,0.0,-0.1564,-1.0,-0.9877,0.0,-0.1564,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,0.9877,0.0,-0.1564,-1.0,-0.9877,0.0,-0.1564,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,0.9877,0.0,-0.1564,-1.0,-0.9877,0.0,-0.1564,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,0.9877,0.0,-0.1564,-1.0,-0.9877,0.0,-0.1564,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,0.9877,0.0,-0.1564,-1.0,-0.9877,0.0,-0.1564,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,0.9877,0.0,-0.1564,-1.0,-0.9877,0.0,-0.1564,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,0.9877,0.0,-0.1564,-1.0,-0.9877,0.0,-0.1564,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,0.9877,0.0,-0.1564,-1.0,-0.9877,0.0,-0.1564,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,0.9877,0.0,-0.1564,-1.0,-0.9877,0.0,-0.1564,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,0.9877,0.0,-0.1564,-1.0,-0.9877,0.0,-0.1564,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,0.9877,0.0,-0.1564,-1.0,-0.9877,0.0,-0.1564,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,0.9877,0.0,-0.1564,-1.0,-0.9877,0.0,-0.1564,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,0.9877,0.0,-0.1564,-1.0,-0.9877,0.0,-0.1564,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,0.9877,0.0,-0.1564,-1.0,-0.9877,0.0,-0.1564,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,0.9877,0.0,-0.1564,-1.0,-0.9877,0.0,-0.1564,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,0.9877,0.0,-0.1564,-1.0,-0.9877,0.0,-0.1564,-1.0,-0.9412,0.0062,-0.3378,-1.0,-0.7908,0.0062,-0.6121,-1.0,-0.5629,0.0062,-0.8265,-1.0,-0.28,0.0062,-0.96,-1.0,0.0304,0.0062,-0.9995,-1.0,0.3378,0.0062,-0.9412,-1.0,0.6121,0.0062,-0.7908,-1.0,0.8265,0.0062,-0.5629,-1.0,0.96,0.0062,-0.28,-1.0,0.9877,0.0,-0.1564,-1.0,-0.9864,0.0502,-0.1566,-1.0,-0.8896,0.0453,-0.4545,-1.0,-0.7057,0.0359,-0.7076,-1.0,-0.4529,0.0231,-0.8912,-1.0,-0.156,0.0079,-0.9877,-1.0,0.156,-0.0079,-0.9877,-1.0,0.4529,-0.0231,-0.8912,-1.0,0.7057,-0.0359,-0.7076,-1.0,0.8896,-0.0453,-0.4545,-1.0,0.9864,-0.0502,-0.1566,-1.0,-0.9864,-0.0502,-0.1566,-1.0,-0.8896,-0.0453,-0.4545,-1.0,-0.7057,-0.0359,-0.7076,-1.0,-0.4529,-0.0231,-0.8912,-1.0,-0.156,-0.0079,-0.9877,-1.0,0.156,0.0079,-0.9877,-1.0,0.4529,0.0231,-0.8912,-1.0,0.7057,0.0359,-0.7076,-1.0,0.8896,0.0453,-0.4545,-1.0,0.9864,0.0502,-0.1566,-1.0],"uvs":[0.2,0.05,0.25,0.05,0.2,0.1,0.25,0.1,0.3,0.05,0.3,0.1,0.35,0.05,0.35,0.1,0.4,0.05,0.4,0.1,0.45,0.05,0.45,0.1,0.5,0.05,0.5,0.1,0.55,0.05,0.55,0.1,0.6,0.05,0.6,0.1,0.65,0.05,0.65,0.1,0.7,0.05,0.7,0.1,0.2,0.15,0.25,0.15,0.3,0.15,0.35,0.15,0.4,0.15,0.45,0.15,0.5,0.15,0.55,0.15,0.6,0.15,0.65,0.15,0.7,0.15,0.2,0.2,0.25,0.2,0.3,0.2,0.35,0.2,0.4,0.2,0.45,0.2,0.5,0.2,0.55,0.2,0.6,0.2,0.65,0.2,0.7,0.2,0.2,0.25,0.25,0.25,0.3,0.25,0.35,0.25,0.4,0.25,0.45,0.25,0.5,0.25,0.55,0.25,0.6,0.25,0.65,0.25,0.7,0.25,0.2,0.3,0.25,0.3,0.3,0.3,0.35,0.3,0.4,0.3,0.45,0.3,0.5,0.3,0.55,0.3,0.6,0.3,0.65,0.3,0.7,0.3,0.2,0.35,0.25,0.35,0.3,0.35,0.35,0.35,0.4,0.35,0.45,0.35,0.5,0.35,0.55,0.35,0.6,0.35,0.65,0.35,0.7,0.35,0.2,0.4,0.25,0.4,0.3,0.4,0.35,0.4,0.4,0.4,0.45,0.4,0.5,0.4,0.55,0.4,0.6,0.4,0.65,0.4,0.7,0.4,0.2,0.45,0.25,0.45,0.3,0.45,0.35,0.45,0.4,0.45,0.45,0.45,0.5,0.45,0.55,0.45,0.6,0.45,0.65,0.45,0.7,0.45,0.2,0.5,0.25,0.5,0.3,0.5,0.35,0.5,0.4,0.5,0.45,0.5,0.5,0.5,0.55,0.5,0.6,0.5,0.65,0.5,0.7,0.5,0.2,0.55,0.25,0.55,0.3,0.55,0.35,0.55,0.4,0.55,0.45,0.55,0.5,0.55,0.55,0.55,0.6,0.55,0.65,0.55,0.7,0.55,0.2,0.6,0.25,0.6,0.3,0.6,0.35,0.6,0.4,0.6,0.45,0.6,0.5,0.6,0.55,0.6,0.6,0.6,0.65,0.6,0.7,0.6,0.2,0.65,0.25,0.65,0.3,0.65,0.35,0.65,0.4,0.65,0.45,0.65,0.5,0.65,0.55,0.65,0.6,0.65,0.65,0.65,0.7,0.65,0.2,0.7,0.25,0.7,0.3,0.7,0.35,0.7,0.4,0.7,0.45,0.7,0.5,0.7,0.55,0.7,0.6,0.7,0.65,0.7,0.7,0.7,0.2,0.75,0.25,0.75,0.3,0.75,0.35,0.75,0.4,0.75,0.45,0.75,0.5,0.75,0.55,0.75,0.6,0.75,0.65,0.75,0.7,0.75,0.2,0.8,0.25,0.8,0.3,0.8,0.35,0.8,0.4,0.8,0.45,0.8,0.5,0.8,0.55,0.8,0.6,0.8,0.65,0.8,0.7,0.8,0.2,0.85,0.25,0.85,0.3,0.85,0.35,0.85,0.4,0.85,0.45,0.85,0.5,0.85,0.55,0.85,0.6,0.85,0.65,0.85,0.7,0.85,0.2,0.9,0.25,0.9,0.3,0.9,0.35,0.9,0.4,0.9,0.45,0.9,0.5,0.9,0.55,0.9,0.6,0.9,0.65,0.9,0.7,0.9,0.2,0.95,0.25,0.95,0.3,0.95,0.35,0.95,0.4,0.95,0.45,0.95,0.5,0.95,0.55,0.95,0.6,0.95,0.65,0.95,0.7,0.95,0.225,0.0,0.275,0.0,0.325,0.0,0.375,0.0,0.425,0.0,0.475,0.0,0.525,0.0,0.575,0.0,0.625,0.0,0.675,0.0,0.225,1.0,0.275,1.0,0.325,1.0,0.375,1.0,0.425,1.0,0.475,1.0,0.525,1.0,0.575,1.0,0.625,1.0,0.675,1.0],"uvs2":null,"colors":null,"hasVertexAlpha":false,"matricesIndices":null,"matricesWeights":null,"matricesIndicesExtra":null,"matricesWeightsExtra":null,"indices":[0,1,2,2,1,3,1,4,3,3,4,5,4,6,5,5,6,7,6,8,7,7,8,9,8,10,9,9,10,11,10,12,11,11,12,13,12,14,13,13,14,15,14,16,15,15,16,17,16,18,17,17,18,19,18,20,19,19,20,21,2,3,22,22,3,23,3,5,23,23,5,24,5,7,24,24,7,25,7,9,25,25,9,26,9,11,26,26,11,27,11,13,27,27,13,28,13,15,28,28,15,29,15,17,29,29,17,30,17,19,30,30,19,31,19,21,31,31,21,32,22,23,33,33,23,34,23,24,34,34,24,35,24,25,35,35,25,36,25,26,36,36,26,37,26,27,37,37,27,38,27,28,38,38,28,39,28,29,39,39,29,40,29,30,40,40,30,41,30,31,41,41,31,42,31,32,42,42,32,43,33,34,44,44,34,45,34,35,45,45,35,46,35,36,46,46,36,47,36,37,47,47,37,48,37,38,48,48,38,49,38,39,49,49,39,50,39,40,50,50,40,51,40,41,51,51,41,52,41,42,52,52,42,53,42,43,53,53,43,54,44,45,55,55,45,56,45,46,56,56,46,57,46,47,57,57,47,58,47,48,58,58,48,59,48,49,59,59,49,60,49,50,60,60,50,61,50,51,61,61,51,62,51,52,62,62,52,63,52,53,63,63,53,64,53,54,64,64,54,65,55,56,66,66,56,67,56,57,67,67,57,68,57,58,68,68,58,69,58,59,69,69,59,70,59,60,70,70,60,71,60,61,71,71,61,72,61,62,72,72,62,73,62,63,73,73,63,74,63,64,74,74,64,75,64,65,75,75,65,76,66,67,77,77,67,78,67,68,78,78,68,79,68,69,79,79,69,80,69,70,80,80,70,81,70,71,81,81,71,82,71,72,82,82,72,83,72,73,83,83,73,84,73,74,84,84,74,85,74,75,85,85,75,86,75,76,86,86,76,87,77,78,88,88,78,89,78,79,89,89,79,90,79,80,90,90,80,91,80,81,91,91,81,92,81,82,92,92,82,93,82,83,93,93,83,94,83,84,94,94,84,95,84,85,95,95,85,96,85,86,96,96,86,97,86,87,97,97,87,98,88,89,99,99,89,100,89,90,100,100,90,101,90,91,101,101,91,102,91,92,102,102,92,103,92,93,103,103,93,104,93,94,104,104,94,105,94,95,105,105,95,106,95,96,106,106,96,107,96,97,107,107,97,108,97,98,108,108,98,109,99,100,110,110,100,111,100,101,111,111,101,112,101,102,112,112,102,113,102,103,113,113,103,114,103,104,114,114,104,115,104,105,115,115,105,116,105,106,116,116,106,117,106,107,117,117,107,118,107,108,118,118,108,119,108,109,119,119,109,120,110,111,121,121,111,122,111,112,122,122,112,123,112,113,123,123,113,124,113,114,124,124,114,125,114,115,125,125,115,126,115,116,126,126,116,127,116,117,127,127,117,128,117,118,128,128,118,129,118,119,129,129,119,130,119,120,130,130,120,131,121,122,132,132,122,133,122,123,133,133,123,134,123,124,134,134,124,135,124,125,135,135,125,136,125,126,136,136,126,137,126,127,137,137,127,138,127,128,138,138,128,139,128,129,139,139,129,140,129,130,140,140,130,141,130,131,141,141,131,142,132,133,143,143,133,144,133,134,144,144,134,145,134,135,145,145,135,146,135,136,146,146,136,147,136,137,147,147,137,148,137,138,148,148,138,149,138,139,149,149,139,150,139,140,150,150,140,151,140,141,151,151,141,152,141,142,152,152,142,153,143,144,154,154,144,155,144,145,155,155,145,156,145,146,156,156,146,157,146,147,157,157,147,158,147,148,158,158,148,159,148,149,159,159,149,160,149,150,160,160,150,161,150,151,161,161,151,162,151,152,162,162,152,163,152,153,163,163,153,164,154,155,165,165,155,166,155,156,166,166,156,167,156,157,167,167,157,168,157,158,168,168,158,169,158,159,169,169,159,170,159,160,170,170,160,171,160,161,171,171,161,172,161,162,172,172,162,173,162,163,173,173,163,174,163,164,174,174,164,175,165,166,176,176,166,177,166,167,177,177,167,178,167,168,178,178,168,179,168,169,179,179,169,180,169,170,180,180,170,181,170,171,181,181,171,182,171,172,182,182,172,183,172,173,183,183,173,184,173,174,184,184,174,185,174,175,185,185,175,186,176,177,187,187,177,188,177,178,188,188,178,189,178,179,189,189,179,190,179,180,190,190,180,191,180,181,191,191,181,192,181,182,192,192,182,193,182,183,193,193,183,194,183,184,194,194,184,195,184,185,195,195,185,196,185,186,196,196,186,197,187,188,198,198,188,199,188,189,199,199,189,200,189,190,200,200,190,201,190,191,201,201,191,202,191,192,202,202,192,203,192,193,203,203,193,204,193,194,204,204,194,205,194,195,205,205,195,206,195,196,206,206,196,207,196,197,207,207,197,208,1,0,209,4,1,210,6,4,211,8,6,212,10,8,213,12,10,214,14,12,215,16,14,216,18,16,217,20,18,218,198,199,219,199,200,220,200,201,221,201,202,222,202,203,223,203,204,224,204,205,225,205,206,226,206,207,227,207,208,228],"receiveShadows":false,"infiniteDistance":false,"billboardMode":0,"visibility":1.0,"subMeshes":[{"materialIndex":0,"verticesStart":0,"verticesCount":229,"indexStart":0,"indexCount":1140}],"instances":null,"skeletonId":-1,"numBoneInfluencers":4,"applyFog":false,"lodMeshIds":null,"lodDistances":null,"lodCoverages":null,"rotation":null,"scaling":[1.0,1.0,1.0],"rotationQuaternion":[0.0,0.0,0.0,1.0],"actions":null,"checkCollisions":false,"pickable":true,"showBoundingBox":false,"showSubMeshesBoundingBox":false,"alphaIndex":0,"physicsImpostor":0,"physicsMass":0.0,"physicsFriction":0.0,"physicsRestitution":0.0,"name":"pSphere2","id":"AAE56DAE-40BF-882A-5CE8-0AB477E46CDB","parentId":null,"position":[3.0,0.0,0.0],"animations":[],"autoAnimate":true,"autoAnimateFrom":1,"autoAnimateTo":200,"autoAnimateLoop":true,"metadata":{}},{"materialId":"79CDF1A6-4409-889B-46A9-43A586C10D94","isEnabled":true,"isVisible":true,"positions":[0.0,-0.9877,0.1564,-0.0483,-0.9877,0.1488,0.0,-0.9511,0.309,-0.0955,-0.9511,0.2939,-0.0919,-0.9877,0.1266,-0.1816,-0.9511,0.25,-0.1266,-0.9877,0.0919,-0.25,-0.9511,0.1816,-0.1488,-0.9877,0.0483,-0.2939,-0.9511,0.0955,-0.1564,-0.9877,0.0,-0.309,-0.9511,0.0,-0.1488,-0.9877,-0.0483,-0.2939,-0.9511,-0.0955,-0.1266,-0.9877,-0.0919,-0.25,-0.9511,-0.1816,-0.0919,-0.9877,-0.1266,-0.1816,-0.9511,-0.25,-0.0483,-0.9877,-0.1488,-0.0955,-0.9511,-0.2939,0.0,-0.9877,-0.1564,0.0,-0.9511,-0.309,0.0,-0.891,0.454,-0.1403,-0.891,0.4318,-0.2668,-0.891,0.3673,-0.3673,-0.891,0.2668,-0.4318,-0.891,0.1403,-0.454,-0.891,0.0,-0.4318,-0.891,-0.1403,-0.3673,-0.891,-0.2668,-0.2668,-0.891,-0.3673,-0.1403,-0.891,-0.4318,0.0,-0.891,-0.454,0.0,-0.809,0.5878,-0.1816,-0.809,0.559,-0.3455,-0.809,0.4755,-0.4755,-0.809,0.3455,-0.559,-0.809,0.1816,-0.5878,-0.809,0.0,-0.559,-0.809,-0.1816,-0.4755,-0.809,-0.3455,-0.3455,-0.809,-0.4755,-0.1816,-0.809,-0.559,0.0,-0.809,-0.5878,0.0,-0.7071,0.7071,-0.2185,-0.7071,0.6725,-0.4156,-0.7071,0.5721,-0.5721,-0.7071,0.4156,-0.6725,-0.7071,0.2185,-0.7071,-0.7071,0.0,-0.6725,-0.7071,-0.2185,-0.5721,-0.7071,-0.4156,-0.4156,-0.7071,-0.5721,-0.2185,-0.7071,-0.6725,0.0,-0.7071,-0.7071,0.0,-0.5878,0.809,-0.25,-0.5878,0.7694,-0.4755,-0.5878,0.6545,-0.6545,-0.5878,0.4755,-0.7694,-0.5878,0.25,-0.809,-0.5878,0.0,-0.7694,-0.5878,-0.25,-0.6545,-0.5878,-0.4755,-0.4755,-0.5878,-0.6545,-0.25,-0.5878,-0.7694,0.0,-0.5878,-0.809,0.0,-0.454,0.891,-0.2753,-0.454,0.8474,-0.5237,-0.454,0.7208,-0.7208,-0.454,0.5237,-0.8474,-0.454,0.2753,-0.891,-0.454,0.0,-0.8474,-0.454,-0.2753,-0.7208,-0.454,-0.5237,-0.5237,-0.454,-0.7208,-0.2753,-0.454,-0.8474,0.0,-0.454,-0.891,0.0,-0.309,0.9511,-0.2939,-0.309,0.9045,-0.559,-0.309,0.7694,-0.7694,-0.309,0.559,-0.9045,-0.309,0.2939,-0.9511,-0.309,0.0,-0.9045,-0.309,-0.2939,-0.7694,-0.309,-0.559,-0.559,-0.309,-0.7694,-0.2939,-0.309,-0.9045,0.0,-0.309,-0.9511,0.0,-0.1564,0.9877,-0.3052,-0.1564,0.9393,-0.5805,-0.1564,0.7991,-0.7991,-0.1564,0.5805,-0.9393,-0.1564,0.3052,-0.9877,-0.1564,0.0,-0.9393,-0.1564,-0.3052,-0.7991,-0.1564,-0.5805,-0.5805,-0.1564,-0.7991,-0.3052,-0.1564,-0.9393,0.0,-0.1564,-0.9877,0.0,0.0,1.0,-0.309,0.0,0.9511,-0.5878,0.0,0.809,-0.809,0.0,0.5878,-0.9511,0.0,0.309,-1.0,0.0,0.0,-0.9511,0.0,-0.309,-0.809,0.0,-0.5878,-0.5878,0.0,-0.809,-0.309,0.0,-0.9511,0.0,0.0,-1.0,0.0,0.1564,0.9877,-0.3052,0.1564,0.9393,-0.5805,0.1564,0.7991,-0.7991,0.1564,0.5805,-0.9393,0.1564,0.3052,-0.9877,0.1564,0.0,-0.9393,0.1564,-0.3052,-0.7991,0.1564,-0.5805,-0.5805,0.1564,-0.7991,-0.3052,0.1564,-0.9393,0.0,0.1564,-0.9877,0.0,0.309,0.9511,-0.2939,0.309,0.9045,-0.559,0.309,0.7694,-0.7694,0.309,0.559,-0.9045,0.309,0.2939,-0.9511,0.309,0.0,-0.9045,0.309,-0.2939,-0.7694,0.309,-0.559,-0.559,0.309,-0.7694,-0.2939,0.309,-0.9045,0.0,0.309,-0.9511,0.0,0.454,0.891,-0.2753,0.454,0.8474,-0.5237,0.454,0.7208,-0.7208,0.454,0.5237,-0.8474,0.454,0.2753,-0.891,0.454,0.0,-0.8474,0.454,-0.2753,-0.7208,0.454,-0.5237,-0.5237,0.454,-0.7208,-0.2753,0.454,-0.8474,0.0,0.454,-0.891,0.0,0.5878,0.809,-0.25,0.5878,0.7694,-0.4755,0.5878,0.6545,-0.6545,0.5878,0.4755,-0.7694,0.5878,0.25,-0.809,0.5878,0.0,-0.7694,0.5878,-0.25,-0.6545,0.5878,-0.4755,-0.4755,0.5878,-0.6545,-0.25,0.5878,-0.7694,0.0,0.5878,-0.809,0.0,0.7071,0.7071,-0.2185,0.7071,0.6725,-0.4156,0.7071,0.5721,-0.5721,0.7071,0.4156,-0.6725,0.7071,0.2185,-0.7071,0.7071,0.0,-0.6725,0.7071,-0.2185,-0.5721,0.7071,-0.4156,-0.4156,0.7071,-0.5721,-0.2185,0.7071,-0.6725,0.0,0.7071,-0.7071,0.0,0.809,0.5878,-0.1816,0.809,0.559,-0.3455,0.809,0.4755,-0.4755,0.809,0.3455,-0.559,0.809,0.1816,-0.5878,0.809,0.0,-0.559,0.809,-0.1816,-0.4755,0.809,-0.3455,-0.3455,0.809,-0.4755,-0.1816,0.809,-0.559,0.0,0.809,-0.5878,0.0,0.891,0.454,-0.1403,0.891,0.4318,-0.2668,0.891,0.3673,-0.3673,0.891,0.2668,-0.4318,0.891,0.1403,-0.454,0.891,0.0,-0.4318,0.891,-0.1403,-0.3673,0.891,-0.2668,-0.2668,0.891,-0.3673,-0.1403,0.891,-0.4318,0.0,0.891,-0.454,0.0,0.9511,0.309,-0.0955,0.9511,0.2939,-0.1816,0.9511,0.25,-0.25,0.9511,0.1816,-0.2939,0.9511,0.0955,-0.309,0.9511,0.0,-0.2939,0.9511,-0.0955,-0.25,0.9511,-0.1816,-0.1816,0.9511,-0.25,-0.0955,0.9511,-0.2939,0.0,0.9511,-0.309,0.0,0.9877,0.1564,-0.0483,0.9877,0.1488,-0.0919,0.9877,0.1266,-0.1266,0.9877,0.0919,-0.1488,0.9877,0.0483,-0.1564,0.9877,0.0,-0.1488,0.9877,-0.0483,-0.1266,0.9877,-0.0919,-0.0919,0.9877,-0.1266,-0.0483,0.9877,-0.1488,0.0,0.9877,-0.1564,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0],"normals":[-0.0317,-0.9792,0.2003,-0.0619,-0.9797,0.1906,-0.0528,-0.9414,0.3331,-0.1031,-0.9427,0.3173,-0.1178,-0.9797,0.1621,-0.1961,-0.9427,0.2699,-0.1621,-0.9797,0.1178,-0.2699,-0.9427,0.1961,-0.1906,-0.9797,0.0619,-0.3173,-0.9427,0.1031,-0.2004,-0.9797,0.0,-0.3336,-0.9427,0.0,-0.1906,-0.9797,-0.0619,-0.3173,-0.9427,-0.1031,-0.1621,-0.9797,-0.1178,-0.2699,-0.9427,-0.1961,-0.1178,-0.9797,-0.1621,-0.1961,-0.9427,-0.2699,-0.0619,-0.9797,-0.1906,-0.1031,-0.9427,-0.3173,-0.0317,-0.9792,-0.2003,-0.0528,-0.9414,-0.3331,-0.0744,-0.8798,0.4694,-0.1455,-0.8823,0.4477,-0.2767,-0.8823,0.3808,-0.3808,-0.8823,0.2767,-0.4477,-0.8823,0.1455,-0.4708,-0.8823,0.0,-0.4477,-0.8823,-0.1455,-0.3808,-0.8823,-0.2767,-0.2767,-0.8823,-0.3808,-0.1455,-0.8823,-0.4477,-0.0744,-0.8798,-0.4694,-0.0946,-0.7967,0.597,-0.1853,-0.8003,0.5703,-0.3525,-0.8003,0.4851,-0.4851,-0.8003,0.3525,-0.5703,-0.8003,0.1853,-0.5997,-0.8003,0.0,-0.5703,-0.8003,-0.1853,-0.4851,-0.8003,-0.3525,-0.3525,-0.8003,-0.4851,-0.1853,-0.8003,-0.5703,-0.0946,-0.7967,-0.597,-0.1126,-0.6943,0.7108,-0.221,-0.6988,0.6803,-0.4205,-0.6988,0.5787,-0.5787,-0.6988,0.4205,-0.6803,-0.6988,0.221,-0.7153,-0.6988,0.0,-0.6803,-0.6988,-0.221,-0.5787,-0.6988,-0.4205,-0.4205,-0.6988,-0.5787,-0.221,-0.6988,-0.6803,-0.1126,-0.6943,-0.7108,-0.1279,-0.5756,0.8076,-0.2516,-0.5804,0.7745,-0.4787,-0.5804,0.6588,-0.6588,-0.5804,0.4787,-0.7745,-0.5804,0.2516,-0.8143,-0.5804,0.0,-0.7745,-0.5804,-0.2516,-0.6588,-0.5804,-0.4787,-0.4787,-0.5804,-0.6588,-0.2516,-0.5804,-0.7745,-0.1279,-0.5756,-0.8076,-0.1402,-0.4436,0.8852,-0.2763,-0.448,0.8503,-0.5255,-0.448,0.7233,-0.7233,-0.448,0.5255,-0.8503,-0.448,0.2763,-0.894,-0.448,0.0,-0.8503,-0.448,-0.2763,-0.7233,-0.448,-0.5255,-0.5255,-0.448,-0.7233,-0.2763,-0.448,-0.8503,-0.1402,-0.4436,-0.8852,-0.1492,-0.3014,0.9418,-0.2943,-0.3048,0.9058,-0.5598,-0.3048,0.7705,-0.7705,-0.3048,0.5598,-0.9058,-0.3048,0.2943,-0.9524,-0.3048,0.0,-0.9058,-0.3048,-0.2943,-0.7705,-0.3048,-0.5598,-0.5598,-0.3048,-0.7705,-0.2943,-0.3048,-0.9058,-0.1492,-0.3014,-0.9418,-0.1546,-0.1524,0.9762,-0.3053,-0.1542,0.9397,-0.5808,-0.1542,0.7993,-0.7993,-0.1542,0.5808,-0.9397,-0.1542,0.3053,-0.988,-0.1542,0.0,-0.9397,-0.1542,-0.3053,-0.7993,-0.1542,-0.5808,-0.5808,-0.1542,-0.7993,-0.3053,-0.1542,-0.9397,-0.1546,-0.1524,-0.9762,-0.1564,0.0,0.9877,-0.309,0.0,0.9511,-0.5878,0.0,0.809,-0.809,0.0,0.5878,-0.9511,0.0,0.309,-1.0,0.0,0.0,-0.9511,0.0,-0.309,-0.809,0.0,-0.5878,-0.5878,0.0,-0.809,-0.309,0.0,-0.9511,-0.1564,0.0,-0.9877,-0.1546,0.1524,0.9762,-0.3053,0.1542,0.9397,-0.5808,0.1542,0.7993,-0.7993,0.1542,0.5808,-0.9397,0.1542,0.3053,-0.988,0.1542,0.0,-0.9397,0.1542,-0.3053,-0.7993,0.1542,-0.5808,-0.5808,0.1542,-0.7993,-0.3053,0.1542,-0.9397,-0.1546,0.1524,-0.9762,-0.1492,0.3014,0.9418,-0.2943,0.3048,0.9058,-0.5598,0.3048,0.7705,-0.7705,0.3048,0.5598,-0.9058,0.3048,0.2943,-0.9524,0.3048,0.0,-0.9058,0.3048,-0.2943,-0.7705,0.3048,-0.5598,-0.5598,0.3048,-0.7705,-0.2943,0.3048,-0.9058,-0.1492,0.3014,-0.9418,-0.1402,0.4436,0.8852,-0.2763,0.448,0.8503,-0.5255,0.448,0.7233,-0.7233,0.448,0.5255,-0.8503,0.448,0.2763,-0.894,0.448,0.0,-0.8503,0.448,-0.2763,-0.7233,0.448,-0.5255,-0.5255,0.448,-0.7233,-0.2763,0.448,-0.8503,-0.1402,0.4436,-0.8852,-0.1279,0.5756,0.8076,-0.2516,0.5804,0.7745,-0.4787,0.5804,0.6588,-0.6588,0.5804,0.4787,-0.7745,0.5804,0.2516,-0.8143,0.5804,0.0,-0.7745,0.5804,-0.2516,-0.6588,0.5804,-0.4787,-0.4787,0.5804,-0.6588,-0.2516,0.5804,-0.7745,-0.1279,0.5756,-0.8076,-0.1126,0.6943,0.7108,-0.221,0.6988,0.6803,-0.4205,0.6988,0.5787,-0.5787,0.6988,0.4205,-0.6803,0.6988,0.221,-0.7153,0.6988,0.0,-0.6803,0.6988,-0.221,-0.5787,0.6988,-0.4205,-0.4205,0.6988,-0.5787,-0.221,0.6988,-0.6803,-0.1126,0.6943,-0.7108,-0.0946,0.7967,0.597,-0.1853,0.8003,0.5703,-0.3525,0.8003,0.4851,-0.4851,0.8003,0.3525,-0.5703,0.8003,0.1853,-0.5997,0.8003,0.0,-0.5703,0.8003,-0.1853,-0.4851,0.8003,-0.3525,-0.3525,0.8003,-0.4851,-0.1853,0.8003,-0.5703,-0.0946,0.7967,-0.597,-0.0744,0.8798,0.4694,-0.1455,0.8823,0.4477,-0.2767,0.8823,0.3808,-0.3808,0.8823,0.2767,-0.4477,0.8823,0.1455,-0.4708,0.8823,0.0,-0.4477,0.8823,-0.1455,-0.3808,0.8823,-0.2767,-0.2767,0.8823,-0.3808,-0.1455,0.8823,-0.4477,-0.0744,0.8798,-0.4694,-0.0528,0.9414,0.3331,-0.1031,0.9427,0.3173,-0.1961,0.9427,0.2699,-0.2699,0.9427,0.1961,-0.3173,0.9427,0.1031,-0.3336,0.9427,0.0,-0.3173,0.9427,-0.1031,-0.2699,0.9427,-0.1961,-0.1961,0.9427,-0.2699,-0.1031,0.9427,-0.3173,-0.0528,0.9414,-0.3331,-0.0317,0.9792,0.2003,-0.0619,0.9797,0.1906,-0.1178,0.9797,0.1621,-0.1621,0.9797,0.1178,-0.1906,0.9797,0.0619,-0.2004,0.9797,0.0,-0.1906,0.9797,-0.0619,-0.1621,0.9797,-0.1178,-0.1178,0.9797,-0.1621,-0.0619,0.9797,-0.1906,-0.0317,0.9792,-0.2003,-0.0509,-0.9987,0.0,-0.0509,-0.9987,0.0,-0.0509,-0.9987,0.0,-0.0509,-0.9987,0.0,-0.0509,-0.9987,0.0,-0.0509,-0.9987,0.0,-0.0509,-0.9987,0.0,-0.0509,-0.9987,0.0,-0.0509,-0.9987,0.0,-0.0509,-0.9987,0.0,-0.0509,0.9987,0.0,-0.0509,0.9987,0.0,-0.0509,0.9987,0.0,-0.0509,0.9987,0.0,-0.0509,0.9987,0.0,-0.0509,0.9987,0.0,-0.0509,0.9987,0.0,-0.0509,0.9987,0.0,-0.0509,0.9987,0.0,-0.0509,0.9987,0.0],"tangents":[-0.9877,0.0,-0.1564,-1.0,-0.96,0.0062,-0.28,-1.0,-0.9877,0.0,-0.1564,-1.0,-0.9511,0.0,-0.309,-1.0,-0.8265,0.0062,-0.5629,-1.0,-0.809,0.0,-0.5878,-1.0,-0.6121,0.0062,-0.7908,-1.0,-0.5878,0.0,-0.809,-1.0,-0.3378,0.0062,-0.9412,-1.0,-0.309,0.0,-0.9511,-1.0,-0.0304,0.0062,-0.9995,-1.0,0.0,0.0,-1.0,-1.0,0.28,0.0062,-0.96,-1.0,0.309,0.0,-0.9511,-1.0,0.5629,0.0062,-0.8265,-1.0,0.5878,0.0,-0.809,-1.0,0.7908,0.0062,-0.6121,-1.0,0.809,0.0,-0.5878,-1.0,0.9412,0.0062,-0.3378,-1.0,0.9511,0.0,-0.309,-1.0,0.9877,0.0,-0.1564,-1.0,0.9877,0.0,-0.1564,-1.0,-0.9877,0.0,-0.1564,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,0.9877,0.0,-0.1564,-1.0,-0.9877,0.0,-0.1564,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,0.9877,0.0,-0.1564,-1.0,-0.9877,0.0,-0.1564,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,0.9877,0.0,-0.1564,-1.0,-0.9877,0.0,-0.1564,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,0.9877,0.0,-0.1564,-1.0,-0.9877,0.0,-0.1564,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,0.9877,0.0,-0.1564,-1.0,-0.9877,0.0,-0.1564,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,0.9877,0.0,-0.1564,-1.0,-0.9877,0.0,-0.1564,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,0.9877,0.0,-0.1564,-1.0,-0.9877,0.0,-0.1564,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,0.9877,0.0,-0.1564,-1.0,-0.9877,0.0,-0.1564,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,0.9877,0.0,-0.1564,-1.0,-0.9877,0.0,-0.1564,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,0.9877,0.0,-0.1564,-1.0,-0.9877,0.0,-0.1564,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,0.9877,0.0,-0.1564,-1.0,-0.9877,0.0,-0.1564,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,0.9877,0.0,-0.1564,-1.0,-0.9877,0.0,-0.1564,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,0.9877,0.0,-0.1564,-1.0,-0.9877,0.0,-0.1564,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,0.9877,0.0,-0.1564,-1.0,-0.9877,0.0,-0.1564,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,0.9877,0.0,-0.1564,-1.0,-0.9877,0.0,-0.1564,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,0.9877,0.0,-0.1564,-1.0,-0.9877,0.0,-0.1564,-1.0,-0.9412,0.0062,-0.3378,-1.0,-0.7908,0.0062,-0.6121,-1.0,-0.5629,0.0062,-0.8265,-1.0,-0.28,0.0062,-0.96,-1.0,0.0304,0.0062,-0.9995,-1.0,0.3378,0.0062,-0.9412,-1.0,0.6121,0.0062,-0.7908,-1.0,0.8265,0.0062,-0.5629,-1.0,0.96,0.0062,-0.28,-1.0,0.9877,0.0,-0.1564,-1.0,-0.9864,0.0502,-0.1566,-1.0,-0.8896,0.0453,-0.4545,-1.0,-0.7057,0.0359,-0.7076,-1.0,-0.4529,0.0231,-0.8912,-1.0,-0.156,0.0079,-0.9877,-1.0,0.156,-0.0079,-0.9877,-1.0,0.4529,-0.0231,-0.8912,-1.0,0.7057,-0.0359,-0.7076,-1.0,0.8896,-0.0453,-0.4545,-1.0,0.9864,-0.0502,-0.1566,-1.0,-0.9864,-0.0502,-0.1566,-1.0,-0.8896,-0.0453,-0.4545,-1.0,-0.7057,-0.0359,-0.7076,-1.0,-0.4529,-0.0231,-0.8912,-1.0,-0.156,-0.0079,-0.9877,-1.0,0.156,0.0079,-0.9877,-1.0,0.4529,0.0231,-0.8912,-1.0,0.7057,0.0359,-0.7076,-1.0,0.8896,0.0453,-0.4545,-1.0,0.9864,0.0502,-0.1566,-1.0],"uvs":[0.2,0.05,0.25,0.05,0.2,0.1,0.25,0.1,0.3,0.05,0.3,0.1,0.35,0.05,0.35,0.1,0.4,0.05,0.4,0.1,0.45,0.05,0.45,0.1,0.5,0.05,0.5,0.1,0.55,0.05,0.55,0.1,0.6,0.05,0.6,0.1,0.65,0.05,0.65,0.1,0.7,0.05,0.7,0.1,0.2,0.15,0.25,0.15,0.3,0.15,0.35,0.15,0.4,0.15,0.45,0.15,0.5,0.15,0.55,0.15,0.6,0.15,0.65,0.15,0.7,0.15,0.2,0.2,0.25,0.2,0.3,0.2,0.35,0.2,0.4,0.2,0.45,0.2,0.5,0.2,0.55,0.2,0.6,0.2,0.65,0.2,0.7,0.2,0.2,0.25,0.25,0.25,0.3,0.25,0.35,0.25,0.4,0.25,0.45,0.25,0.5,0.25,0.55,0.25,0.6,0.25,0.65,0.25,0.7,0.25,0.2,0.3,0.25,0.3,0.3,0.3,0.35,0.3,0.4,0.3,0.45,0.3,0.5,0.3,0.55,0.3,0.6,0.3,0.65,0.3,0.7,0.3,0.2,0.35,0.25,0.35,0.3,0.35,0.35,0.35,0.4,0.35,0.45,0.35,0.5,0.35,0.55,0.35,0.6,0.35,0.65,0.35,0.7,0.35,0.2,0.4,0.25,0.4,0.3,0.4,0.35,0.4,0.4,0.4,0.45,0.4,0.5,0.4,0.55,0.4,0.6,0.4,0.65,0.4,0.7,0.4,0.2,0.45,0.25,0.45,0.3,0.45,0.35,0.45,0.4,0.45,0.45,0.45,0.5,0.45,0.55,0.45,0.6,0.45,0.65,0.45,0.7,0.45,0.2,0.5,0.25,0.5,0.3,0.5,0.35,0.5,0.4,0.5,0.45,0.5,0.5,0.5,0.55,0.5,0.6,0.5,0.65,0.5,0.7,0.5,0.2,0.55,0.25,0.55,0.3,0.55,0.35,0.55,0.4,0.55,0.45,0.55,0.5,0.55,0.55,0.55,0.6,0.55,0.65,0.55,0.7,0.55,0.2,0.6,0.25,0.6,0.3,0.6,0.35,0.6,0.4,0.6,0.45,0.6,0.5,0.6,0.55,0.6,0.6,0.6,0.65,0.6,0.7,0.6,0.2,0.65,0.25,0.65,0.3,0.65,0.35,0.65,0.4,0.65,0.45,0.65,0.5,0.65,0.55,0.65,0.6,0.65,0.65,0.65,0.7,0.65,0.2,0.7,0.25,0.7,0.3,0.7,0.35,0.7,0.4,0.7,0.45,0.7,0.5,0.7,0.55,0.7,0.6,0.7,0.65,0.7,0.7,0.7,0.2,0.75,0.25,0.75,0.3,0.75,0.35,0.75,0.4,0.75,0.45,0.75,0.5,0.75,0.55,0.75,0.6,0.75,0.65,0.75,0.7,0.75,0.2,0.8,0.25,0.8,0.3,0.8,0.35,0.8,0.4,0.8,0.45,0.8,0.5,0.8,0.55,0.8,0.6,0.8,0.65,0.8,0.7,0.8,0.2,0.85,0.25,0.85,0.3,0.85,0.35,0.85,0.4,0.85,0.45,0.85,0.5,0.85,0.55,0.85,0.6,0.85,0.65,0.85,0.7,0.85,0.2,0.9,0.25,0.9,0.3,0.9,0.35,0.9,0.4,0.9,0.45,0.9,0.5,0.9,0.55,0.9,0.6,0.9,0.65,0.9,0.7,0.9,0.2,0.95,0.25,0.95,0.3,0.95,0.35,0.95,0.4,0.95,0.45,0.95,0.5,0.95,0.55,0.95,0.6,0.95,0.65,0.95,0.7,0.95,0.225,0.0,0.275,0.0,0.325,0.0,0.375,0.0,0.425,0.0,0.475,0.0,0.525,0.0,0.575,0.0,0.625,0.0,0.675,0.0,0.225,1.0,0.275,1.0,0.325,1.0,0.375,1.0,0.425,1.0,0.475,1.0,0.525,1.0,0.575,1.0,0.625,1.0,0.675,1.0],"uvs2":null,"colors":null,"hasVertexAlpha":false,"matricesIndices":null,"matricesWeights":null,"matricesIndicesExtra":null,"matricesWeightsExtra":null,"indices":[0,1,2,2,1,3,1,4,3,3,4,5,4,6,5,5,6,7,6,8,7,7,8,9,8,10,9,9,10,11,10,12,11,11,12,13,12,14,13,13,14,15,14,16,15,15,16,17,16,18,17,17,18,19,18,20,19,19,20,21,2,3,22,22,3,23,3,5,23,23,5,24,5,7,24,24,7,25,7,9,25,25,9,26,9,11,26,26,11,27,11,13,27,27,13,28,13,15,28,28,15,29,15,17,29,29,17,30,17,19,30,30,19,31,19,21,31,31,21,32,22,23,33,33,23,34,23,24,34,34,24,35,24,25,35,35,25,36,25,26,36,36,26,37,26,27,37,37,27,38,27,28,38,38,28,39,28,29,39,39,29,40,29,30,40,40,30,41,30,31,41,41,31,42,31,32,42,42,32,43,33,34,44,44,34,45,34,35,45,45,35,46,35,36,46,46,36,47,36,37,47,47,37,48,37,38,48,48,38,49,38,39,49,49,39,50,39,40,50,50,40,51,40,41,51,51,41,52,41,42,52,52,42,53,42,43,53,53,43,54,44,45,55,55,45,56,45,46,56,56,46,57,46,47,57,57,47,58,47,48,58,58,48,59,48,49,59,59,49,60,49,50,60,60,50,61,50,51,61,61,51,62,51,52,62,62,52,63,52,53,63,63,53,64,53,54,64,64,54,65,55,56,66,66,56,67,56,57,67,67,57,68,57,58,68,68,58,69,58,59,69,69,59,70,59,60,70,70,60,71,60,61,71,71,61,72,61,62,72,72,62,73,62,63,73,73,63,74,63,64,74,74,64,75,64,65,75,75,65,76,66,67,77,77,67,78,67,68,78,78,68,79,68,69,79,79,69,80,69,70,80,80,70,81,70,71,81,81,71,82,71,72,82,82,72,83,72,73,83,83,73,84,73,74,84,84,74,85,74,75,85,85,75,86,75,76,86,86,76,87,77,78,88,88,78,89,78,79,89,89,79,90,79,80,90,90,80,91,80,81,91,91,81,92,81,82,92,92,82,93,82,83,93,93,83,94,83,84,94,94,84,95,84,85,95,95,85,96,85,86,96,96,86,97,86,87,97,97,87,98,88,89,99,99,89,100,89,90,100,100,90,101,90,91,101,101,91,102,91,92,102,102,92,103,92,93,103,103,93,104,93,94,104,104,94,105,94,95,105,105,95,106,95,96,106,106,96,107,96,97,107,107,97,108,97,98,108,108,98,109,99,100,110,110,100,111,100,101,111,111,101,112,101,102,112,112,102,113,102,103,113,113,103,114,103,104,114,114,104,115,104,105,115,115,105,116,105,106,116,116,106,117,106,107,117,117,107,118,107,108,118,118,108,119,108,109,119,119,109,120,110,111,121,121,111,122,111,112,122,122,112,123,112,113,123,123,113,124,113,114,124,124,114,125,114,115,125,125,115,126,115,116,126,126,116,127,116,117,127,127,117,128,117,118,128,128,118,129,118,119,129,129,119,130,119,120,130,130,120,131,121,122,132,132,122,133,122,123,133,133,123,134,123,124,134,134,124,135,124,125,135,135,125,136,125,126,136,136,126,137,126,127,137,137,127,138,127,128,138,138,128,139,128,129,139,139,129,140,129,130,140,140,130,141,130,131,141,141,131,142,132,133,143,143,133,144,133,134,144,144,134,145,134,135,145,145,135,146,135,136,146,146,136,147,136,137,147,147,137,148,137,138,148,148,138,149,138,139,149,149,139,150,139,140,150,150,140,151,140,141,151,151,141,152,141,142,152,152,142,153,143,144,154,154,144,155,144,145,155,155,145,156,145,146,156,156,146,157,146,147,157,157,147,158,147,148,158,158,148,159,148,149,159,159,149,160,149,150,160,160,150,161,150,151,161,161,151,162,151,152,162,162,152,163,152,153,163,163,153,164,154,155,165,165,155,166,155,156,166,166,156,167,156,157,167,167,157,168,157,158,168,168,158,169,158,159,169,169,159,170,159,160,170,170,160,171,160,161,171,171,161,172,161,162,172,172,162,173,162,163,173,173,163,174,163,164,174,174,164,175,165,166,176,176,166,177,166,167,177,177,167,178,167,168,178,178,168,179,168,169,179,179,169,180,169,170,180,180,170,181,170,171,181,181,171,182,171,172,182,182,172,183,172,173,183,183,173,184,173,174,184,184,174,185,174,175,185,185,175,186,176,177,187,187,177,188,177,178,188,188,178,189,178,179,189,189,179,190,179,180,190,190,180,191,180,181,191,191,181,192,181,182,192,192,182,193,182,183,193,193,183,194,183,184,194,194,184,195,184,185,195,195,185,196,185,186,196,196,186,197,187,188,198,198,188,199,188,189,199,199,189,200,189,190,200,200,190,201,190,191,201,201,191,202,191,192,202,202,192,203,192,193,203,203,193,204,193,194,204,204,194,205,194,195,205,205,195,206,195,196,206,206,196,207,196,197,207,207,197,208,1,0,209,4,1,210,6,4,211,8,6,212,10,8,213,12,10,214,14,12,215,16,14,216,18,16,217,20,18,218,198,199,219,199,200,220,200,201,221,201,202,222,202,203,223,203,204,224,204,205,225,205,206,226,206,207,227,207,208,228],"receiveShadows":false,"infiniteDistance":false,"billboardMode":0,"visibility":1.0,"subMeshes":[{"materialIndex":0,"verticesStart":0,"verticesCount":229,"indexStart":0,"indexCount":1140}],"instances":null,"skeletonId":-1,"numBoneInfluencers":4,"applyFog":false,"lodMeshIds":null,"lodDistances":null,"lodCoverages":null,"rotation":null,"scaling":[1.0,1.0,1.0],"rotationQuaternion":[0.0,0.0,0.0,1.0],"actions":null,"checkCollisions":false,"pickable":true,"showBoundingBox":false,"showSubMeshesBoundingBox":false,"alphaIndex":0,"physicsImpostor":0,"physicsMass":0.0,"physicsFriction":0.0,"physicsRestitution":0.0,"name":"pSphere3","id":"3CC7A685-448C-CD8D-6923-DC9A8FDA8EAE","parentId":null,"position":[6.0,0.0,0.0],"animations":[],"autoAnimate":true,"autoAnimateFrom":1,"autoAnimateTo":200,"autoAnimateLoop":true,"metadata":{}},{"materialId":"C33371E3-49CC-50AB-9549-80BD2392C0F8","isEnabled":true,"isVisible":true,"positions":[0.0,-0.9877,0.1564,-0.0483,-0.9877,0.1488,0.0,-0.9511,0.309,-0.0955,-0.9511,0.2939,-0.0919,-0.9877,0.1266,-0.1816,-0.9511,0.25,-0.1266,-0.9877,0.0919,-0.25,-0.9511,0.1816,-0.1488,-0.9877,0.0483,-0.2939,-0.9511,0.0955,-0.1564,-0.9877,0.0,-0.309,-0.9511,0.0,-0.1488,-0.9877,-0.0483,-0.2939,-0.9511,-0.0955,-0.1266,-0.9877,-0.0919,-0.25,-0.9511,-0.1816,-0.0919,-0.9877,-0.1266,-0.1816,-0.9511,-0.25,-0.0483,-0.9877,-0.1488,-0.0955,-0.9511,-0.2939,0.0,-0.9877,-0.1564,0.0,-0.9511,-0.309,0.0,-0.891,0.454,-0.1403,-0.891,0.4318,-0.2668,-0.891,0.3673,-0.3673,-0.891,0.2668,-0.4318,-0.891,0.1403,-0.454,-0.891,0.0,-0.4318,-0.891,-0.1403,-0.3673,-0.891,-0.2668,-0.2668,-0.891,-0.3673,-0.1403,-0.891,-0.4318,0.0,-0.891,-0.454,0.0,-0.809,0.5878,-0.1816,-0.809,0.559,-0.3455,-0.809,0.4755,-0.4755,-0.809,0.3455,-0.559,-0.809,0.1816,-0.5878,-0.809,0.0,-0.559,-0.809,-0.1816,-0.4755,-0.809,-0.3455,-0.3455,-0.809,-0.4755,-0.1816,-0.809,-0.559,0.0,-0.809,-0.5878,0.0,-0.7071,0.7071,-0.2185,-0.7071,0.6725,-0.4156,-0.7071,0.5721,-0.5721,-0.7071,0.4156,-0.6725,-0.7071,0.2185,-0.7071,-0.7071,0.0,-0.6725,-0.7071,-0.2185,-0.5721,-0.7071,-0.4156,-0.4156,-0.7071,-0.5721,-0.2185,-0.7071,-0.6725,0.0,-0.7071,-0.7071,0.0,-0.5878,0.809,-0.25,-0.5878,0.7694,-0.4755,-0.5878,0.6545,-0.6545,-0.5878,0.4755,-0.7694,-0.5878,0.25,-0.809,-0.5878,0.0,-0.7694,-0.5878,-0.25,-0.6545,-0.5878,-0.4755,-0.4755,-0.5878,-0.6545,-0.25,-0.5878,-0.7694,0.0,-0.5878,-0.809,0.0,-0.454,0.891,-0.2753,-0.454,0.8474,-0.5237,-0.454,0.7208,-0.7208,-0.454,0.5237,-0.8474,-0.454,0.2753,-0.891,-0.454,0.0,-0.8474,-0.454,-0.2753,-0.7208,-0.454,-0.5237,-0.5237,-0.454,-0.7208,-0.2753,-0.454,-0.8474,0.0,-0.454,-0.891,0.0,-0.309,0.9511,-0.2939,-0.309,0.9045,-0.559,-0.309,0.7694,-0.7694,-0.309,0.559,-0.9045,-0.309,0.2939,-0.9511,-0.309,0.0,-0.9045,-0.309,-0.2939,-0.7694,-0.309,-0.559,-0.559,-0.309,-0.7694,-0.2939,-0.309,-0.9045,0.0,-0.309,-0.9511,0.0,-0.1564,0.9877,-0.3052,-0.1564,0.9393,-0.5805,-0.1564,0.7991,-0.7991,-0.1564,0.5805,-0.9393,-0.1564,0.3052,-0.9877,-0.1564,0.0,-0.9393,-0.1564,-0.3052,-0.7991,-0.1564,-0.5805,-0.5805,-0.1564,-0.7991,-0.3052,-0.1564,-0.9393,0.0,-0.1564,-0.9877,0.0,0.0,1.0,-0.309,0.0,0.9511,-0.5878,0.0,0.809,-0.809,0.0,0.5878,-0.9511,0.0,0.309,-1.0,0.0,0.0,-0.9511,0.0,-0.309,-0.809,0.0,-0.5878,-0.5878,0.0,-0.809,-0.309,0.0,-0.9511,0.0,0.0,-1.0,0.0,0.1564,0.9877,-0.3052,0.1564,0.9393,-0.5805,0.1564,0.7991,-0.7991,0.1564,0.5805,-0.9393,0.1564,0.3052,-0.9877,0.1564,0.0,-0.9393,0.1564,-0.3052,-0.7991,0.1564,-0.5805,-0.5805,0.1564,-0.7991,-0.3052,0.1564,-0.9393,0.0,0.1564,-0.9877,0.0,0.309,0.9511,-0.2939,0.309,0.9045,-0.559,0.309,0.7694,-0.7694,0.309,0.559,-0.9045,0.309,0.2939,-0.9511,0.309,0.0,-0.9045,0.309,-0.2939,-0.7694,0.309,-0.559,-0.559,0.309,-0.7694,-0.2939,0.309,-0.9045,0.0,0.309,-0.9511,0.0,0.454,0.891,-0.2753,0.454,0.8474,-0.5237,0.454,0.7208,-0.7208,0.454,0.5237,-0.8474,0.454,0.2753,-0.891,0.454,0.0,-0.8474,0.454,-0.2753,-0.7208,0.454,-0.5237,-0.5237,0.454,-0.7208,-0.2753,0.454,-0.8474,0.0,0.454,-0.891,0.0,0.5878,0.809,-0.25,0.5878,0.7694,-0.4755,0.5878,0.6545,-0.6545,0.5878,0.4755,-0.7694,0.5878,0.25,-0.809,0.5878,0.0,-0.7694,0.5878,-0.25,-0.6545,0.5878,-0.4755,-0.4755,0.5878,-0.6545,-0.25,0.5878,-0.7694,0.0,0.5878,-0.809,0.0,0.7071,0.7071,-0.2185,0.7071,0.6725,-0.4156,0.7071,0.5721,-0.5721,0.7071,0.4156,-0.6725,0.7071,0.2185,-0.7071,0.7071,0.0,-0.6725,0.7071,-0.2185,-0.5721,0.7071,-0.4156,-0.4156,0.7071,-0.5721,-0.2185,0.7071,-0.6725,0.0,0.7071,-0.7071,0.0,0.809,0.5878,-0.1816,0.809,0.559,-0.3455,0.809,0.4755,-0.4755,0.809,0.3455,-0.559,0.809,0.1816,-0.5878,0.809,0.0,-0.559,0.809,-0.1816,-0.4755,0.809,-0.3455,-0.3455,0.809,-0.4755,-0.1816,0.809,-0.559,0.0,0.809,-0.5878,0.0,0.891,0.454,-0.1403,0.891,0.4318,-0.2668,0.891,0.3673,-0.3673,0.891,0.2668,-0.4318,0.891,0.1403,-0.454,0.891,0.0,-0.4318,0.891,-0.1403,-0.3673,0.891,-0.2668,-0.2668,0.891,-0.3673,-0.1403,0.891,-0.4318,0.0,0.891,-0.454,0.0,0.9511,0.309,-0.0955,0.9511,0.2939,-0.1816,0.9511,0.25,-0.25,0.9511,0.1816,-0.2939,0.9511,0.0955,-0.309,0.9511,0.0,-0.2939,0.9511,-0.0955,-0.25,0.9511,-0.1816,-0.1816,0.9511,-0.25,-0.0955,0.9511,-0.2939,0.0,0.9511,-0.309,0.0,0.9877,0.1564,-0.0483,0.9877,0.1488,-0.0919,0.9877,0.1266,-0.1266,0.9877,0.0919,-0.1488,0.9877,0.0483,-0.1564,0.9877,0.0,-0.1488,0.9877,-0.0483,-0.1266,0.9877,-0.0919,-0.0919,0.9877,-0.1266,-0.0483,0.9877,-0.1488,0.0,0.9877,-0.1564,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0],"normals":[-0.0317,-0.9792,0.2003,-0.0619,-0.9797,0.1906,-0.0528,-0.9414,0.3331,-0.1031,-0.9427,0.3173,-0.1178,-0.9797,0.1621,-0.1961,-0.9427,0.2699,-0.1621,-0.9797,0.1178,-0.2699,-0.9427,0.1961,-0.1906,-0.9797,0.0619,-0.3173,-0.9427,0.1031,-0.2004,-0.9797,0.0,-0.3336,-0.9427,0.0,-0.1906,-0.9797,-0.0619,-0.3173,-0.9427,-0.1031,-0.1621,-0.9797,-0.1178,-0.2699,-0.9427,-0.1961,-0.1178,-0.9797,-0.1621,-0.1961,-0.9427,-0.2699,-0.0619,-0.9797,-0.1906,-0.1031,-0.9427,-0.3173,-0.0317,-0.9792,-0.2003,-0.0528,-0.9414,-0.3331,-0.0744,-0.8798,0.4694,-0.1455,-0.8823,0.4477,-0.2767,-0.8823,0.3808,-0.3808,-0.8823,0.2767,-0.4477,-0.8823,0.1455,-0.4708,-0.8823,0.0,-0.4477,-0.8823,-0.1455,-0.3808,-0.8823,-0.2767,-0.2767,-0.8823,-0.3808,-0.1455,-0.8823,-0.4477,-0.0744,-0.8798,-0.4694,-0.0946,-0.7967,0.597,-0.1853,-0.8003,0.5703,-0.3525,-0.8003,0.4851,-0.4851,-0.8003,0.3525,-0.5703,-0.8003,0.1853,-0.5997,-0.8003,0.0,-0.5703,-0.8003,-0.1853,-0.4851,-0.8003,-0.3525,-0.3525,-0.8003,-0.4851,-0.1853,-0.8003,-0.5703,-0.0946,-0.7967,-0.597,-0.1126,-0.6943,0.7108,-0.221,-0.6988,0.6803,-0.4205,-0.6988,0.5787,-0.5787,-0.6988,0.4205,-0.6803,-0.6988,0.221,-0.7153,-0.6988,0.0,-0.6803,-0.6988,-0.221,-0.5787,-0.6988,-0.4205,-0.4205,-0.6988,-0.5787,-0.221,-0.6988,-0.6803,-0.1126,-0.6943,-0.7108,-0.1279,-0.5756,0.8076,-0.2516,-0.5804,0.7745,-0.4787,-0.5804,0.6588,-0.6588,-0.5804,0.4787,-0.7745,-0.5804,0.2516,-0.8143,-0.5804,0.0,-0.7745,-0.5804,-0.2516,-0.6588,-0.5804,-0.4787,-0.4787,-0.5804,-0.6588,-0.2516,-0.5804,-0.7745,-0.1279,-0.5756,-0.8076,-0.1402,-0.4436,0.8852,-0.2763,-0.448,0.8503,-0.5255,-0.448,0.7233,-0.7233,-0.448,0.5255,-0.8503,-0.448,0.2763,-0.894,-0.448,0.0,-0.8503,-0.448,-0.2763,-0.7233,-0.448,-0.5255,-0.5255,-0.448,-0.7233,-0.2763,-0.448,-0.8503,-0.1402,-0.4436,-0.8852,-0.1492,-0.3014,0.9418,-0.2943,-0.3048,0.9058,-0.5598,-0.3048,0.7705,-0.7705,-0.3048,0.5598,-0.9058,-0.3048,0.2943,-0.9524,-0.3048,0.0,-0.9058,-0.3048,-0.2943,-0.7705,-0.3048,-0.5598,-0.5598,-0.3048,-0.7705,-0.2943,-0.3048,-0.9058,-0.1492,-0.3014,-0.9418,-0.1546,-0.1524,0.9762,-0.3053,-0.1542,0.9397,-0.5808,-0.1542,0.7993,-0.7993,-0.1542,0.5808,-0.9397,-0.1542,0.3053,-0.988,-0.1542,0.0,-0.9397,-0.1542,-0.3053,-0.7993,-0.1542,-0.5808,-0.5808,-0.1542,-0.7993,-0.3053,-0.1542,-0.9397,-0.1546,-0.1524,-0.9762,-0.1564,0.0,0.9877,-0.309,0.0,0.9511,-0.5878,0.0,0.809,-0.809,0.0,0.5878,-0.9511,0.0,0.309,-1.0,0.0,0.0,-0.9511,0.0,-0.309,-0.809,0.0,-0.5878,-0.5878,0.0,-0.809,-0.309,0.0,-0.9511,-0.1564,0.0,-0.9877,-0.1546,0.1524,0.9762,-0.3053,0.1542,0.9397,-0.5808,0.1542,0.7993,-0.7993,0.1542,0.5808,-0.9397,0.1542,0.3053,-0.988,0.1542,0.0,-0.9397,0.1542,-0.3053,-0.7993,0.1542,-0.5808,-0.5808,0.1542,-0.7993,-0.3053,0.1542,-0.9397,-0.1546,0.1524,-0.9762,-0.1492,0.3014,0.9418,-0.2943,0.3048,0.9058,-0.5598,0.3048,0.7705,-0.7705,0.3048,0.5598,-0.9058,0.3048,0.2943,-0.9524,0.3048,0.0,-0.9058,0.3048,-0.2943,-0.7705,0.3048,-0.5598,-0.5598,0.3048,-0.7705,-0.2943,0.3048,-0.9058,-0.1492,0.3014,-0.9418,-0.1402,0.4436,0.8852,-0.2763,0.448,0.8503,-0.5255,0.448,0.7233,-0.7233,0.448,0.5255,-0.8503,0.448,0.2763,-0.894,0.448,0.0,-0.8503,0.448,-0.2763,-0.7233,0.448,-0.5255,-0.5255,0.448,-0.7233,-0.2763,0.448,-0.8503,-0.1402,0.4436,-0.8852,-0.1279,0.5756,0.8076,-0.2516,0.5804,0.7745,-0.4787,0.5804,0.6588,-0.6588,0.5804,0.4787,-0.7745,0.5804,0.2516,-0.8143,0.5804,0.0,-0.7745,0.5804,-0.2516,-0.6588,0.5804,-0.4787,-0.4787,0.5804,-0.6588,-0.2516,0.5804,-0.7745,-0.1279,0.5756,-0.8076,-0.1126,0.6943,0.7108,-0.221,0.6988,0.6803,-0.4205,0.6988,0.5787,-0.5787,0.6988,0.4205,-0.6803,0.6988,0.221,-0.7153,0.6988,0.0,-0.6803,0.6988,-0.221,-0.5787,0.6988,-0.4205,-0.4205,0.6988,-0.5787,-0.221,0.6988,-0.6803,-0.1126,0.6943,-0.7108,-0.0946,0.7967,0.597,-0.1853,0.8003,0.5703,-0.3525,0.8003,0.4851,-0.4851,0.8003,0.3525,-0.5703,0.8003,0.1853,-0.5997,0.8003,0.0,-0.5703,0.8003,-0.1853,-0.4851,0.8003,-0.3525,-0.3525,0.8003,-0.4851,-0.1853,0.8003,-0.5703,-0.0946,0.7967,-0.597,-0.0744,0.8798,0.4694,-0.1455,0.8823,0.4477,-0.2767,0.8823,0.3808,-0.3808,0.8823,0.2767,-0.4477,0.8823,0.1455,-0.4708,0.8823,0.0,-0.4477,0.8823,-0.1455,-0.3808,0.8823,-0.2767,-0.2767,0.8823,-0.3808,-0.1455,0.8823,-0.4477,-0.0744,0.8798,-0.4694,-0.0528,0.9414,0.3331,-0.1031,0.9427,0.3173,-0.1961,0.9427,0.2699,-0.2699,0.9427,0.1961,-0.3173,0.9427,0.1031,-0.3336,0.9427,0.0,-0.3173,0.9427,-0.1031,-0.2699,0.9427,-0.1961,-0.1961,0.9427,-0.2699,-0.1031,0.9427,-0.3173,-0.0528,0.9414,-0.3331,-0.0317,0.9792,0.2003,-0.0619,0.9797,0.1906,-0.1178,0.9797,0.1621,-0.1621,0.9797,0.1178,-0.1906,0.9797,0.0619,-0.2004,0.9797,0.0,-0.1906,0.9797,-0.0619,-0.1621,0.9797,-0.1178,-0.1178,0.9797,-0.1621,-0.0619,0.9797,-0.1906,-0.0317,0.9792,-0.2003,-0.0509,-0.9987,0.0,-0.0509,-0.9987,0.0,-0.0509,-0.9987,0.0,-0.0509,-0.9987,0.0,-0.0509,-0.9987,0.0,-0.0509,-0.9987,0.0,-0.0509,-0.9987,0.0,-0.0509,-0.9987,0.0,-0.0509,-0.9987,0.0,-0.0509,-0.9987,0.0,-0.0509,0.9987,0.0,-0.0509,0.9987,0.0,-0.0509,0.9987,0.0,-0.0509,0.9987,0.0,-0.0509,0.9987,0.0,-0.0509,0.9987,0.0,-0.0509,0.9987,0.0,-0.0509,0.9987,0.0,-0.0509,0.9987,0.0,-0.0509,0.9987,0.0],"tangents":[-0.9877,0.0,-0.1564,-1.0,-0.96,0.0062,-0.28,-1.0,-0.9877,0.0,-0.1564,-1.0,-0.9511,0.0,-0.309,-1.0,-0.8265,0.0062,-0.5629,-1.0,-0.809,0.0,-0.5878,-1.0,-0.6121,0.0062,-0.7908,-1.0,-0.5878,0.0,-0.809,-1.0,-0.3378,0.0062,-0.9412,-1.0,-0.309,0.0,-0.9511,-1.0,-0.0304,0.0062,-0.9995,-1.0,0.0,0.0,-1.0,-1.0,0.28,0.0062,-0.96,-1.0,0.309,0.0,-0.9511,-1.0,0.5629,0.0062,-0.8265,-1.0,0.5878,0.0,-0.809,-1.0,0.7908,0.0062,-0.6121,-1.0,0.809,0.0,-0.5878,-1.0,0.9412,0.0062,-0.3378,-1.0,0.9511,0.0,-0.309,-1.0,0.9877,0.0,-0.1564,-1.0,0.9877,0.0,-0.1564,-1.0,-0.9877,0.0,-0.1564,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,0.9877,0.0,-0.1564,-1.0,-0.9877,0.0,-0.1564,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,0.9877,0.0,-0.1564,-1.0,-0.9877,0.0,-0.1564,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,0.9877,0.0,-0.1564,-1.0,-0.9877,0.0,-0.1564,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,0.9877,0.0,-0.1564,-1.0,-0.9877,0.0,-0.1564,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,0.9877,0.0,-0.1564,-1.0,-0.9877,0.0,-0.1564,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,0.9877,0.0,-0.1564,-1.0,-0.9877,0.0,-0.1564,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,0.9877,0.0,-0.1564,-1.0,-0.9877,0.0,-0.1564,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,0.9877,0.0,-0.1564,-1.0,-0.9877,0.0,-0.1564,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,0.9877,0.0,-0.1564,-1.0,-0.9877,0.0,-0.1564,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,0.9877,0.0,-0.1564,-1.0,-0.9877,0.0,-0.1564,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,0.9877,0.0,-0.1564,-1.0,-0.9877,0.0,-0.1564,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,0.9877,0.0,-0.1564,-1.0,-0.9877,0.0,-0.1564,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,0.9877,0.0,-0.1564,-1.0,-0.9877,0.0,-0.1564,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,0.9877,0.0,-0.1564,-1.0,-0.9877,0.0,-0.1564,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,0.9877,0.0,-0.1564,-1.0,-0.9877,0.0,-0.1564,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,0.9877,0.0,-0.1564,-1.0,-0.9877,0.0,-0.1564,-1.0,-0.9412,0.0062,-0.3378,-1.0,-0.7908,0.0062,-0.6121,-1.0,-0.5629,0.0062,-0.8265,-1.0,-0.28,0.0062,-0.96,-1.0,0.0304,0.0062,-0.9995,-1.0,0.3378,0.0062,-0.9412,-1.0,0.6121,0.0062,-0.7908,-1.0,0.8265,0.0062,-0.5629,-1.0,0.96,0.0062,-0.28,-1.0,0.9877,0.0,-0.1564,-1.0,-0.9864,0.0502,-0.1566,-1.0,-0.8896,0.0453,-0.4545,-1.0,-0.7057,0.0359,-0.7076,-1.0,-0.4529,0.0231,-0.8912,-1.0,-0.156,0.0079,-0.9877,-1.0,0.156,-0.0079,-0.9877,-1.0,0.4529,-0.0231,-0.8912,-1.0,0.7057,-0.0359,-0.7076,-1.0,0.8896,-0.0453,-0.4545,-1.0,0.9864,-0.0502,-0.1566,-1.0,-0.9864,-0.0502,-0.1566,-1.0,-0.8896,-0.0453,-0.4545,-1.0,-0.7057,-0.0359,-0.7076,-1.0,-0.4529,-0.0231,-0.8912,-1.0,-0.156,-0.0079,-0.9877,-1.0,0.156,0.0079,-0.9877,-1.0,0.4529,0.0231,-0.8912,-1.0,0.7057,0.0359,-0.7076,-1.0,0.8896,0.0453,-0.4545,-1.0,0.9864,0.0502,-0.1566,-1.0],"uvs":[0.2,0.05,0.25,0.05,0.2,0.1,0.25,0.1,0.3,0.05,0.3,0.1,0.35,0.05,0.35,0.1,0.4,0.05,0.4,0.1,0.45,0.05,0.45,0.1,0.5,0.05,0.5,0.1,0.55,0.05,0.55,0.1,0.6,0.05,0.6,0.1,0.65,0.05,0.65,0.1,0.7,0.05,0.7,0.1,0.2,0.15,0.25,0.15,0.3,0.15,0.35,0.15,0.4,0.15,0.45,0.15,0.5,0.15,0.55,0.15,0.6,0.15,0.65,0.15,0.7,0.15,0.2,0.2,0.25,0.2,0.3,0.2,0.35,0.2,0.4,0.2,0.45,0.2,0.5,0.2,0.55,0.2,0.6,0.2,0.65,0.2,0.7,0.2,0.2,0.25,0.25,0.25,0.3,0.25,0.35,0.25,0.4,0.25,0.45,0.25,0.5,0.25,0.55,0.25,0.6,0.25,0.65,0.25,0.7,0.25,0.2,0.3,0.25,0.3,0.3,0.3,0.35,0.3,0.4,0.3,0.45,0.3,0.5,0.3,0.55,0.3,0.6,0.3,0.65,0.3,0.7,0.3,0.2,0.35,0.25,0.35,0.3,0.35,0.35,0.35,0.4,0.35,0.45,0.35,0.5,0.35,0.55,0.35,0.6,0.35,0.65,0.35,0.7,0.35,0.2,0.4,0.25,0.4,0.3,0.4,0.35,0.4,0.4,0.4,0.45,0.4,0.5,0.4,0.55,0.4,0.6,0.4,0.65,0.4,0.7,0.4,0.2,0.45,0.25,0.45,0.3,0.45,0.35,0.45,0.4,0.45,0.45,0.45,0.5,0.45,0.55,0.45,0.6,0.45,0.65,0.45,0.7,0.45,0.2,0.5,0.25,0.5,0.3,0.5,0.35,0.5,0.4,0.5,0.45,0.5,0.5,0.5,0.55,0.5,0.6,0.5,0.65,0.5,0.7,0.5,0.2,0.55,0.25,0.55,0.3,0.55,0.35,0.55,0.4,0.55,0.45,0.55,0.5,0.55,0.55,0.55,0.6,0.55,0.65,0.55,0.7,0.55,0.2,0.6,0.25,0.6,0.3,0.6,0.35,0.6,0.4,0.6,0.45,0.6,0.5,0.6,0.55,0.6,0.6,0.6,0.65,0.6,0.7,0.6,0.2,0.65,0.25,0.65,0.3,0.65,0.35,0.65,0.4,0.65,0.45,0.65,0.5,0.65,0.55,0.65,0.6,0.65,0.65,0.65,0.7,0.65,0.2,0.7,0.25,0.7,0.3,0.7,0.35,0.7,0.4,0.7,0.45,0.7,0.5,0.7,0.55,0.7,0.6,0.7,0.65,0.7,0.7,0.7,0.2,0.75,0.25,0.75,0.3,0.75,0.35,0.75,0.4,0.75,0.45,0.75,0.5,0.75,0.55,0.75,0.6,0.75,0.65,0.75,0.7,0.75,0.2,0.8,0.25,0.8,0.3,0.8,0.35,0.8,0.4,0.8,0.45,0.8,0.5,0.8,0.55,0.8,0.6,0.8,0.65,0.8,0.7,0.8,0.2,0.85,0.25,0.85,0.3,0.85,0.35,0.85,0.4,0.85,0.45,0.85,0.5,0.85,0.55,0.85,0.6,0.85,0.65,0.85,0.7,0.85,0.2,0.9,0.25,0.9,0.3,0.9,0.35,0.9,0.4,0.9,0.45,0.9,0.5,0.9,0.55,0.9,0.6,0.9,0.65,0.9,0.7,0.9,0.2,0.95,0.25,0.95,0.3,0.95,0.35,0.95,0.4,0.95,0.45,0.95,0.5,0.95,0.55,0.95,0.6,0.95,0.65,0.95,0.7,0.95,0.225,0.0,0.275,0.0,0.325,0.0,0.375,0.0,0.425,0.0,0.475,0.0,0.525,0.0,0.575,0.0,0.625,0.0,0.675,0.0,0.225,1.0,0.275,1.0,0.325,1.0,0.375,1.0,0.425,1.0,0.475,1.0,0.525,1.0,0.575,1.0,0.625,1.0,0.675,1.0],"uvs2":null,"colors":null,"hasVertexAlpha":false,"matricesIndices":null,"matricesWeights":null,"matricesIndicesExtra":null,"matricesWeightsExtra":null,"indices":[0,1,2,2,1,3,1,4,3,3,4,5,4,6,5,5,6,7,6,8,7,7,8,9,8,10,9,9,10,11,10,12,11,11,12,13,12,14,13,13,14,15,14,16,15,15,16,17,16,18,17,17,18,19,18,20,19,19,20,21,2,3,22,22,3,23,3,5,23,23,5,24,5,7,24,24,7,25,7,9,25,25,9,26,9,11,26,26,11,27,11,13,27,27,13,28,13,15,28,28,15,29,15,17,29,29,17,30,17,19,30,30,19,31,19,21,31,31,21,32,22,23,33,33,23,34,23,24,34,34,24,35,24,25,35,35,25,36,25,26,36,36,26,37,26,27,37,37,27,38,27,28,38,38,28,39,28,29,39,39,29,40,29,30,40,40,30,41,30,31,41,41,31,42,31,32,42,42,32,43,33,34,44,44,34,45,34,35,45,45,35,46,35,36,46,46,36,47,36,37,47,47,37,48,37,38,48,48,38,49,38,39,49,49,39,50,39,40,50,50,40,51,40,41,51,51,41,52,41,42,52,52,42,53,42,43,53,53,43,54,44,45,55,55,45,56,45,46,56,56,46,57,46,47,57,57,47,58,47,48,58,58,48,59,48,49,59,59,49,60,49,50,60,60,50,61,50,51,61,61,51,62,51,52,62,62,52,63,52,53,63,63,53,64,53,54,64,64,54,65,55,56,66,66,56,67,56,57,67,67,57,68,57,58,68,68,58,69,58,59,69,69,59,70,59,60,70,70,60,71,60,61,71,71,61,72,61,62,72,72,62,73,62,63,73,73,63,74,63,64,74,74,64,75,64,65,75,75,65,76,66,67,77,77,67,78,67,68,78,78,68,79,68,69,79,79,69,80,69,70,80,80,70,81,70,71,81,81,71,82,71,72,82,82,72,83,72,73,83,83,73,84,73,74,84,84,74,85,74,75,85,85,75,86,75,76,86,86,76,87,77,78,88,88,78,89,78,79,89,89,79,90,79,80,90,90,80,91,80,81,91,91,81,92,81,82,92,92,82,93,82,83,93,93,83,94,83,84,94,94,84,95,84,85,95,95,85,96,85,86,96,96,86,97,86,87,97,97,87,98,88,89,99,99,89,100,89,90,100,100,90,101,90,91,101,101,91,102,91,92,102,102,92,103,92,93,103,103,93,104,93,94,104,104,94,105,94,95,105,105,95,106,95,96,106,106,96,107,96,97,107,107,97,108,97,98,108,108,98,109,99,100,110,110,100,111,100,101,111,111,101,112,101,102,112,112,102,113,102,103,113,113,103,114,103,104,114,114,104,115,104,105,115,115,105,116,105,106,116,116,106,117,106,107,117,117,107,118,107,108,118,118,108,119,108,109,119,119,109,120,110,111,121,121,111,122,111,112,122,122,112,123,112,113,123,123,113,124,113,114,124,124,114,125,114,115,125,125,115,126,115,116,126,126,116,127,116,117,127,127,117,128,117,118,128,128,118,129,118,119,129,129,119,130,119,120,130,130,120,131,121,122,132,132,122,133,122,123,133,133,123,134,123,124,134,134,124,135,124,125,135,135,125,136,125,126,136,136,126,137,126,127,137,137,127,138,127,128,138,138,128,139,128,129,139,139,129,140,129,130,140,140,130,141,130,131,141,141,131,142,132,133,143,143,133,144,133,134,144,144,134,145,134,135,145,145,135,146,135,136,146,146,136,147,136,137,147,147,137,148,137,138,148,148,138,149,138,139,149,149,139,150,139,140,150,150,140,151,140,141,151,151,141,152,141,142,152,152,142,153,143,144,154,154,144,155,144,145,155,155,145,156,145,146,156,156,146,157,146,147,157,157,147,158,147,148,158,158,148,159,148,149,159,159,149,160,149,150,160,160,150,161,150,151,161,161,151,162,151,152,162,162,152,163,152,153,163,163,153,164,154,155,165,165,155,166,155,156,166,166,156,167,156,157,167,167,157,168,157,158,168,168,158,169,158,159,169,169,159,170,159,160,170,170,160,171,160,161,171,171,161,172,161,162,172,172,162,173,162,163,173,173,163,174,163,164,174,174,164,175,165,166,176,176,166,177,166,167,177,177,167,178,167,168,178,178,168,179,168,169,179,179,169,180,169,170,180,180,170,181,170,171,181,181,171,182,171,172,182,182,172,183,172,173,183,183,173,184,173,174,184,184,174,185,174,175,185,185,175,186,176,177,187,187,177,188,177,178,188,188,178,189,178,179,189,189,179,190,179,180,190,190,180,191,180,181,191,191,181,192,181,182,192,192,182,193,182,183,193,193,183,194,183,184,194,194,184,195,184,185,195,195,185,196,185,186,196,196,186,197,187,188,198,198,188,199,188,189,199,199,189,200,189,190,200,200,190,201,190,191,201,201,191,202,191,192,202,202,192,203,192,193,203,203,193,204,193,194,204,204,194,205,194,195,205,205,195,206,195,196,206,206,196,207,196,197,207,207,197,208,1,0,209,4,1,210,6,4,211,8,6,212,10,8,213,12,10,214,14,12,215,16,14,216,18,16,217,20,18,218,198,199,219,199,200,220,200,201,221,201,202,222,202,203,223,203,204,224,204,205,225,205,206,226,206,207,227,207,208,228],"receiveShadows":false,"infiniteDistance":false,"billboardMode":0,"visibility":1.0,"subMeshes":[{"materialIndex":0,"verticesStart":0,"verticesCount":229,"indexStart":0,"indexCount":1140}],"instances":null,"skeletonId":-1,"numBoneInfluencers":4,"applyFog":false,"lodMeshIds":null,"lodDistances":null,"lodCoverages":null,"rotation":null,"scaling":[1.0,1.0,1.0],"rotationQuaternion":[0.0,0.0,0.0,1.0],"actions":null,"checkCollisions":false,"pickable":true,"showBoundingBox":false,"showSubMeshesBoundingBox":false,"alphaIndex":0,"physicsImpostor":0,"physicsMass":0.0,"physicsFriction":0.0,"physicsRestitution":0.0,"name":"pSphere4","id":"2F4F3A92-41B4-BFAB-58D5-7DBF6D8F2419","parentId":null,"position":[9.0,0.0,0.0],"animations":[],"autoAnimate":true,"autoAnimateFrom":1,"autoAnimateTo":200,"autoAnimateLoop":true,"metadata":{}},{"materialId":"78708E23-4DEB-D855-2196-43A7BA84D718","isEnabled":true,"isVisible":true,"positions":[0.0,-0.9877,0.1564,-0.0483,-0.9877,0.1488,0.0,-0.9511,0.309,-0.0955,-0.9511,0.2939,-0.0919,-0.9877,0.1266,-0.1816,-0.9511,0.25,-0.1266,-0.9877,0.0919,-0.25,-0.9511,0.1816,-0.1488,-0.9877,0.0483,-0.2939,-0.9511,0.0955,-0.1564,-0.9877,0.0,-0.309,-0.9511,0.0,-0.1488,-0.9877,-0.0483,-0.2939,-0.9511,-0.0955,-0.1266,-0.9877,-0.0919,-0.25,-0.9511,-0.1816,-0.0919,-0.9877,-0.1266,-0.1816,-0.9511,-0.25,-0.0483,-0.9877,-0.1488,-0.0955,-0.9511,-0.2939,0.0,-0.9877,-0.1564,0.0,-0.9511,-0.309,0.0,-0.891,0.454,-0.1403,-0.891,0.4318,-0.2668,-0.891,0.3673,-0.3673,-0.891,0.2668,-0.4318,-0.891,0.1403,-0.454,-0.891,0.0,-0.4318,-0.891,-0.1403,-0.3673,-0.891,-0.2668,-0.2668,-0.891,-0.3673,-0.1403,-0.891,-0.4318,0.0,-0.891,-0.454,0.0,-0.809,0.5878,-0.1816,-0.809,0.559,-0.3455,-0.809,0.4755,-0.4755,-0.809,0.3455,-0.559,-0.809,0.1816,-0.5878,-0.809,0.0,-0.559,-0.809,-0.1816,-0.4755,-0.809,-0.3455,-0.3455,-0.809,-0.4755,-0.1816,-0.809,-0.559,0.0,-0.809,-0.5878,0.0,-0.7071,0.7071,-0.2185,-0.7071,0.6725,-0.4156,-0.7071,0.5721,-0.5721,-0.7071,0.4156,-0.6725,-0.7071,0.2185,-0.7071,-0.7071,0.0,-0.6725,-0.7071,-0.2185,-0.5721,-0.7071,-0.4156,-0.4156,-0.7071,-0.5721,-0.2185,-0.7071,-0.6725,0.0,-0.7071,-0.7071,0.0,-0.5878,0.809,-0.25,-0.5878,0.7694,-0.4755,-0.5878,0.6545,-0.6545,-0.5878,0.4755,-0.7694,-0.5878,0.25,-0.809,-0.5878,0.0,-0.7694,-0.5878,-0.25,-0.6545,-0.5878,-0.4755,-0.4755,-0.5878,-0.6545,-0.25,-0.5878,-0.7694,0.0,-0.5878,-0.809,0.0,-0.454,0.891,-0.2753,-0.454,0.8474,-0.5237,-0.454,0.7208,-0.7208,-0.454,0.5237,-0.8474,-0.454,0.2753,-0.891,-0.454,0.0,-0.8474,-0.454,-0.2753,-0.7208,-0.454,-0.5237,-0.5237,-0.454,-0.7208,-0.2753,-0.454,-0.8474,0.0,-0.454,-0.891,0.0,-0.309,0.9511,-0.2939,-0.309,0.9045,-0.559,-0.309,0.7694,-0.7694,-0.309,0.559,-0.9045,-0.309,0.2939,-0.9511,-0.309,0.0,-0.9045,-0.309,-0.2939,-0.7694,-0.309,-0.559,-0.559,-0.309,-0.7694,-0.2939,-0.309,-0.9045,0.0,-0.309,-0.9511,0.0,-0.1564,0.9877,-0.3052,-0.1564,0.9393,-0.5805,-0.1564,0.7991,-0.7991,-0.1564,0.5805,-0.9393,-0.1564,0.3052,-0.9877,-0.1564,0.0,-0.9393,-0.1564,-0.3052,-0.7991,-0.1564,-0.5805,-0.5805,-0.1564,-0.7991,-0.3052,-0.1564,-0.9393,0.0,-0.1564,-0.9877,0.0,0.0,1.0,-0.309,0.0,0.9511,-0.5878,0.0,0.809,-0.809,0.0,0.5878,-0.9511,0.0,0.309,-1.0,0.0,0.0,-0.9511,0.0,-0.309,-0.809,0.0,-0.5878,-0.5878,0.0,-0.809,-0.309,0.0,-0.9511,0.0,0.0,-1.0,0.0,0.1564,0.9877,-0.3052,0.1564,0.9393,-0.5805,0.1564,0.7991,-0.7991,0.1564,0.5805,-0.9393,0.1564,0.3052,-0.9877,0.1564,0.0,-0.9393,0.1564,-0.3052,-0.7991,0.1564,-0.5805,-0.5805,0.1564,-0.7991,-0.3052,0.1564,-0.9393,0.0,0.1564,-0.9877,0.0,0.309,0.9511,-0.2939,0.309,0.9045,-0.559,0.309,0.7694,-0.7694,0.309,0.559,-0.9045,0.309,0.2939,-0.9511,0.309,0.0,-0.9045,0.309,-0.2939,-0.7694,0.309,-0.559,-0.559,0.309,-0.7694,-0.2939,0.309,-0.9045,0.0,0.309,-0.9511,0.0,0.454,0.891,-0.2753,0.454,0.8474,-0.5237,0.454,0.7208,-0.7208,0.454,0.5237,-0.8474,0.454,0.2753,-0.891,0.454,0.0,-0.8474,0.454,-0.2753,-0.7208,0.454,-0.5237,-0.5237,0.454,-0.7208,-0.2753,0.454,-0.8474,0.0,0.454,-0.891,0.0,0.5878,0.809,-0.25,0.5878,0.7694,-0.4755,0.5878,0.6545,-0.6545,0.5878,0.4755,-0.7694,0.5878,0.25,-0.809,0.5878,0.0,-0.7694,0.5878,-0.25,-0.6545,0.5878,-0.4755,-0.4755,0.5878,-0.6545,-0.25,0.5878,-0.7694,0.0,0.5878,-0.809,0.0,0.7071,0.7071,-0.2185,0.7071,0.6725,-0.4156,0.7071,0.5721,-0.5721,0.7071,0.4156,-0.6725,0.7071,0.2185,-0.7071,0.7071,0.0,-0.6725,0.7071,-0.2185,-0.5721,0.7071,-0.4156,-0.4156,0.7071,-0.5721,-0.2185,0.7071,-0.6725,0.0,0.7071,-0.7071,0.0,0.809,0.5878,-0.1816,0.809,0.559,-0.3455,0.809,0.4755,-0.4755,0.809,0.3455,-0.559,0.809,0.1816,-0.5878,0.809,0.0,-0.559,0.809,-0.1816,-0.4755,0.809,-0.3455,-0.3455,0.809,-0.4755,-0.1816,0.809,-0.559,0.0,0.809,-0.5878,0.0,0.891,0.454,-0.1403,0.891,0.4318,-0.2668,0.891,0.3673,-0.3673,0.891,0.2668,-0.4318,0.891,0.1403,-0.454,0.891,0.0,-0.4318,0.891,-0.1403,-0.3673,0.891,-0.2668,-0.2668,0.891,-0.3673,-0.1403,0.891,-0.4318,0.0,0.891,-0.454,0.0,0.9511,0.309,-0.0955,0.9511,0.2939,-0.1816,0.9511,0.25,-0.25,0.9511,0.1816,-0.2939,0.9511,0.0955,-0.309,0.9511,0.0,-0.2939,0.9511,-0.0955,-0.25,0.9511,-0.1816,-0.1816,0.9511,-0.25,-0.0955,0.9511,-0.2939,0.0,0.9511,-0.309,0.0,0.9877,0.1564,-0.0483,0.9877,0.1488,-0.0919,0.9877,0.1266,-0.1266,0.9877,0.0919,-0.1488,0.9877,0.0483,-0.1564,0.9877,0.0,-0.1488,0.9877,-0.0483,-0.1266,0.9877,-0.0919,-0.0919,0.9877,-0.1266,-0.0483,0.9877,-0.1488,0.0,0.9877,-0.1564,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0],"normals":[-0.0317,-0.9792,0.2003,-0.0619,-0.9797,0.1906,-0.0528,-0.9414,0.3331,-0.1031,-0.9427,0.3173,-0.1178,-0.9797,0.1621,-0.1961,-0.9427,0.2699,-0.1621,-0.9797,0.1178,-0.2699,-0.9427,0.1961,-0.1906,-0.9797,0.0619,-0.3173,-0.9427,0.1031,-0.2004,-0.9797,0.0,-0.3336,-0.9427,0.0,-0.1906,-0.9797,-0.0619,-0.3173,-0.9427,-0.1031,-0.1621,-0.9797,-0.1178,-0.2699,-0.9427,-0.1961,-0.1178,-0.9797,-0.1621,-0.1961,-0.9427,-0.2699,-0.0619,-0.9797,-0.1906,-0.1031,-0.9427,-0.3173,-0.0317,-0.9792,-0.2003,-0.0528,-0.9414,-0.3331,-0.0744,-0.8798,0.4694,-0.1455,-0.8823,0.4477,-0.2767,-0.8823,0.3808,-0.3808,-0.8823,0.2767,-0.4477,-0.8823,0.1455,-0.4708,-0.8823,0.0,-0.4477,-0.8823,-0.1455,-0.3808,-0.8823,-0.2767,-0.2767,-0.8823,-0.3808,-0.1455,-0.8823,-0.4477,-0.0744,-0.8798,-0.4694,-0.0946,-0.7967,0.597,-0.1853,-0.8003,0.5703,-0.3525,-0.8003,0.4851,-0.4851,-0.8003,0.3525,-0.5703,-0.8003,0.1853,-0.5997,-0.8003,0.0,-0.5703,-0.8003,-0.1853,-0.4851,-0.8003,-0.3525,-0.3525,-0.8003,-0.4851,-0.1853,-0.8003,-0.5703,-0.0946,-0.7967,-0.597,-0.1126,-0.6943,0.7108,-0.221,-0.6988,0.6803,-0.4205,-0.6988,0.5787,-0.5787,-0.6988,0.4205,-0.6803,-0.6988,0.221,-0.7153,-0.6988,0.0,-0.6803,-0.6988,-0.221,-0.5787,-0.6988,-0.4205,-0.4205,-0.6988,-0.5787,-0.221,-0.6988,-0.6803,-0.1126,-0.6943,-0.7108,-0.1279,-0.5756,0.8076,-0.2516,-0.5804,0.7745,-0.4787,-0.5804,0.6588,-0.6588,-0.5804,0.4787,-0.7745,-0.5804,0.2516,-0.8143,-0.5804,0.0,-0.7745,-0.5804,-0.2516,-0.6588,-0.5804,-0.4787,-0.4787,-0.5804,-0.6588,-0.2516,-0.5804,-0.7745,-0.1279,-0.5756,-0.8076,-0.1402,-0.4436,0.8852,-0.2763,-0.448,0.8503,-0.5255,-0.448,0.7233,-0.7233,-0.448,0.5255,-0.8503,-0.448,0.2763,-0.894,-0.448,0.0,-0.8503,-0.448,-0.2763,-0.7233,-0.448,-0.5255,-0.5255,-0.448,-0.7233,-0.2763,-0.448,-0.8503,-0.1402,-0.4436,-0.8852,-0.1492,-0.3014,0.9418,-0.2943,-0.3048,0.9058,-0.5598,-0.3048,0.7705,-0.7705,-0.3048,0.5598,-0.9058,-0.3048,0.2943,-0.9524,-0.3048,0.0,-0.9058,-0.3048,-0.2943,-0.7705,-0.3048,-0.5598,-0.5598,-0.3048,-0.7705,-0.2943,-0.3048,-0.9058,-0.1492,-0.3014,-0.9418,-0.1546,-0.1524,0.9762,-0.3053,-0.1542,0.9397,-0.5808,-0.1542,0.7993,-0.7993,-0.1542,0.5808,-0.9397,-0.1542,0.3053,-0.988,-0.1542,0.0,-0.9397,-0.1542,-0.3053,-0.7993,-0.1542,-0.5808,-0.5808,-0.1542,-0.7993,-0.3053,-0.1542,-0.9397,-0.1546,-0.1524,-0.9762,-0.1564,0.0,0.9877,-0.309,0.0,0.9511,-0.5878,0.0,0.809,-0.809,0.0,0.5878,-0.9511,0.0,0.309,-1.0,0.0,0.0,-0.9511,0.0,-0.309,-0.809,0.0,-0.5878,-0.5878,0.0,-0.809,-0.309,0.0,-0.9511,-0.1564,0.0,-0.9877,-0.1546,0.1524,0.9762,-0.3053,0.1542,0.9397,-0.5808,0.1542,0.7993,-0.7993,0.1542,0.5808,-0.9397,0.1542,0.3053,-0.988,0.1542,0.0,-0.9397,0.1542,-0.3053,-0.7993,0.1542,-0.5808,-0.5808,0.1542,-0.7993,-0.3053,0.1542,-0.9397,-0.1546,0.1524,-0.9762,-0.1492,0.3014,0.9418,-0.2943,0.3048,0.9058,-0.5598,0.3048,0.7705,-0.7705,0.3048,0.5598,-0.9058,0.3048,0.2943,-0.9524,0.3048,0.0,-0.9058,0.3048,-0.2943,-0.7705,0.3048,-0.5598,-0.5598,0.3048,-0.7705,-0.2943,0.3048,-0.9058,-0.1492,0.3014,-0.9418,-0.1402,0.4436,0.8852,-0.2763,0.448,0.8503,-0.5255,0.448,0.7233,-0.7233,0.448,0.5255,-0.8503,0.448,0.2763,-0.894,0.448,0.0,-0.8503,0.448,-0.2763,-0.7233,0.448,-0.5255,-0.5255,0.448,-0.7233,-0.2763,0.448,-0.8503,-0.1402,0.4436,-0.8852,-0.1279,0.5756,0.8076,-0.2516,0.5804,0.7745,-0.4787,0.5804,0.6588,-0.6588,0.5804,0.4787,-0.7745,0.5804,0.2516,-0.8143,0.5804,0.0,-0.7745,0.5804,-0.2516,-0.6588,0.5804,-0.4787,-0.4787,0.5804,-0.6588,-0.2516,0.5804,-0.7745,-0.1279,0.5756,-0.8076,-0.1126,0.6943,0.7108,-0.221,0.6988,0.6803,-0.4205,0.6988,0.5787,-0.5787,0.6988,0.4205,-0.6803,0.6988,0.221,-0.7153,0.6988,0.0,-0.6803,0.6988,-0.221,-0.5787,0.6988,-0.4205,-0.4205,0.6988,-0.5787,-0.221,0.6988,-0.6803,-0.1126,0.6943,-0.7108,-0.0946,0.7967,0.597,-0.1853,0.8003,0.5703,-0.3525,0.8003,0.4851,-0.4851,0.8003,0.3525,-0.5703,0.8003,0.1853,-0.5997,0.8003,0.0,-0.5703,0.8003,-0.1853,-0.4851,0.8003,-0.3525,-0.3525,0.8003,-0.4851,-0.1853,0.8003,-0.5703,-0.0946,0.7967,-0.597,-0.0744,0.8798,0.4694,-0.1455,0.8823,0.4477,-0.2767,0.8823,0.3808,-0.3808,0.8823,0.2767,-0.4477,0.8823,0.1455,-0.4708,0.8823,0.0,-0.4477,0.8823,-0.1455,-0.3808,0.8823,-0.2767,-0.2767,0.8823,-0.3808,-0.1455,0.8823,-0.4477,-0.0744,0.8798,-0.4694,-0.0528,0.9414,0.3331,-0.1031,0.9427,0.3173,-0.1961,0.9427,0.2699,-0.2699,0.9427,0.1961,-0.3173,0.9427,0.1031,-0.3336,0.9427,0.0,-0.3173,0.9427,-0.1031,-0.2699,0.9427,-0.1961,-0.1961,0.9427,-0.2699,-0.1031,0.9427,-0.3173,-0.0528,0.9414,-0.3331,-0.0317,0.9792,0.2003,-0.0619,0.9797,0.1906,-0.1178,0.9797,0.1621,-0.1621,0.9797,0.1178,-0.1906,0.9797,0.0619,-0.2004,0.9797,0.0,-0.1906,0.9797,-0.0619,-0.1621,0.9797,-0.1178,-0.1178,0.9797,-0.1621,-0.0619,0.9797,-0.1906,-0.0317,0.9792,-0.2003,-0.0509,-0.9987,0.0,-0.0509,-0.9987,0.0,-0.0509,-0.9987,0.0,-0.0509,-0.9987,0.0,-0.0509,-0.9987,0.0,-0.0509,-0.9987,0.0,-0.0509,-0.9987,0.0,-0.0509,-0.9987,0.0,-0.0509,-0.9987,0.0,-0.0509,-0.9987,0.0,-0.0509,0.9987,0.0,-0.0509,0.9987,0.0,-0.0509,0.9987,0.0,-0.0509,0.9987,0.0,-0.0509,0.9987,0.0,-0.0509,0.9987,0.0,-0.0509,0.9987,0.0,-0.0509,0.9987,0.0,-0.0509,0.9987,0.0,-0.0509,0.9987,0.0],"tangents":[-0.9877,0.0,-0.1564,-1.0,-0.96,0.0062,-0.28,-1.0,-0.9877,0.0,-0.1564,-1.0,-0.9511,0.0,-0.309,-1.0,-0.8265,0.0062,-0.5629,-1.0,-0.809,0.0,-0.5878,-1.0,-0.6121,0.0062,-0.7908,-1.0,-0.5878,0.0,-0.809,-1.0,-0.3378,0.0062,-0.9412,-1.0,-0.309,0.0,-0.9511,-1.0,-0.0304,0.0062,-0.9995,-1.0,0.0,0.0,-1.0,-1.0,0.28,0.0062,-0.96,-1.0,0.309,0.0,-0.9511,-1.0,0.5629,0.0062,-0.8265,-1.0,0.5878,0.0,-0.809,-1.0,0.7908,0.0062,-0.6121,-1.0,0.809,0.0,-0.5878,-1.0,0.9412,0.0062,-0.3378,-1.0,0.9511,0.0,-0.309,-1.0,0.9877,0.0,-0.1564,-1.0,0.9877,0.0,-0.1564,-1.0,-0.9877,0.0,-0.1564,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,0.9877,0.0,-0.1564,-1.0,-0.9877,0.0,-0.1564,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,0.9877,0.0,-0.1564,-1.0,-0.9877,0.0,-0.1564,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,0.9877,0.0,-0.1564,-1.0,-0.9877,0.0,-0.1564,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,0.9877,0.0,-0.1564,-1.0,-0.9877,0.0,-0.1564,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,0.9877,0.0,-0.1564,-1.0,-0.9877,0.0,-0.1564,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,0.9877,0.0,-0.1564,-1.0,-0.9877,0.0,-0.1564,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,0.9877,0.0,-0.1564,-1.0,-0.9877,0.0,-0.1564,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,0.9877,0.0,-0.1564,-1.0,-0.9877,0.0,-0.1564,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,0.9877,0.0,-0.1564,-1.0,-0.9877,0.0,-0.1564,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,0.9877,0.0,-0.1564,-1.0,-0.9877,0.0,-0.1564,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,0.9877,0.0,-0.1564,-1.0,-0.9877,0.0,-0.1564,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,0.9877,0.0,-0.1564,-1.0,-0.9877,0.0,-0.1564,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,0.9877,0.0,-0.1564,-1.0,-0.9877,0.0,-0.1564,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,0.9877,0.0,-0.1564,-1.0,-0.9877,0.0,-0.1564,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,0.9877,0.0,-0.1564,-1.0,-0.9877,0.0,-0.1564,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,0.9877,0.0,-0.1564,-1.0,-0.9877,0.0,-0.1564,-1.0,-0.9412,0.0062,-0.3378,-1.0,-0.7908,0.0062,-0.6121,-1.0,-0.5629,0.0062,-0.8265,-1.0,-0.28,0.0062,-0.96,-1.0,0.0304,0.0062,-0.9995,-1.0,0.3378,0.0062,-0.9412,-1.0,0.6121,0.0062,-0.7908,-1.0,0.8265,0.0062,-0.5629,-1.0,0.96,0.0062,-0.28,-1.0,0.9877,0.0,-0.1564,-1.0,-0.9864,0.0502,-0.1566,-1.0,-0.8896,0.0453,-0.4545,-1.0,-0.7057,0.0359,-0.7076,-1.0,-0.4529,0.0231,-0.8912,-1.0,-0.156,0.0079,-0.9877,-1.0,0.156,-0.0079,-0.9877,-1.0,0.4529,-0.0231,-0.8912,-1.0,0.7057,-0.0359,-0.7076,-1.0,0.8896,-0.0453,-0.4545,-1.0,0.9864,-0.0502,-0.1566,-1.0,-0.9864,-0.0502,-0.1566,-1.0,-0.8896,-0.0453,-0.4545,-1.0,-0.7057,-0.0359,-0.7076,-1.0,-0.4529,-0.0231,-0.8912,-1.0,-0.156,-0.0079,-0.9877,-1.0,0.156,0.0079,-0.9877,-1.0,0.4529,0.0231,-0.8912,-1.0,0.7057,0.0359,-0.7076,-1.0,0.8896,0.0453,-0.4545,-1.0,0.9864,0.0502,-0.1566,-1.0],"uvs":[0.2,0.05,0.25,0.05,0.2,0.1,0.25,0.1,0.3,0.05,0.3,0.1,0.35,0.05,0.35,0.1,0.4,0.05,0.4,0.1,0.45,0.05,0.45,0.1,0.5,0.05,0.5,0.1,0.55,0.05,0.55,0.1,0.6,0.05,0.6,0.1,0.65,0.05,0.65,0.1,0.7,0.05,0.7,0.1,0.2,0.15,0.25,0.15,0.3,0.15,0.35,0.15,0.4,0.15,0.45,0.15,0.5,0.15,0.55,0.15,0.6,0.15,0.65,0.15,0.7,0.15,0.2,0.2,0.25,0.2,0.3,0.2,0.35,0.2,0.4,0.2,0.45,0.2,0.5,0.2,0.55,0.2,0.6,0.2,0.65,0.2,0.7,0.2,0.2,0.25,0.25,0.25,0.3,0.25,0.35,0.25,0.4,0.25,0.45,0.25,0.5,0.25,0.55,0.25,0.6,0.25,0.65,0.25,0.7,0.25,0.2,0.3,0.25,0.3,0.3,0.3,0.35,0.3,0.4,0.3,0.45,0.3,0.5,0.3,0.55,0.3,0.6,0.3,0.65,0.3,0.7,0.3,0.2,0.35,0.25,0.35,0.3,0.35,0.35,0.35,0.4,0.35,0.45,0.35,0.5,0.35,0.55,0.35,0.6,0.35,0.65,0.35,0.7,0.35,0.2,0.4,0.25,0.4,0.3,0.4,0.35,0.4,0.4,0.4,0.45,0.4,0.5,0.4,0.55,0.4,0.6,0.4,0.65,0.4,0.7,0.4,0.2,0.45,0.25,0.45,0.3,0.45,0.35,0.45,0.4,0.45,0.45,0.45,0.5,0.45,0.55,0.45,0.6,0.45,0.65,0.45,0.7,0.45,0.2,0.5,0.25,0.5,0.3,0.5,0.35,0.5,0.4,0.5,0.45,0.5,0.5,0.5,0.55,0.5,0.6,0.5,0.65,0.5,0.7,0.5,0.2,0.55,0.25,0.55,0.3,0.55,0.35,0.55,0.4,0.55,0.45,0.55,0.5,0.55,0.55,0.55,0.6,0.55,0.65,0.55,0.7,0.55,0.2,0.6,0.25,0.6,0.3,0.6,0.35,0.6,0.4,0.6,0.45,0.6,0.5,0.6,0.55,0.6,0.6,0.6,0.65,0.6,0.7,0.6,0.2,0.65,0.25,0.65,0.3,0.65,0.35,0.65,0.4,0.65,0.45,0.65,0.5,0.65,0.55,0.65,0.6,0.65,0.65,0.65,0.7,0.65,0.2,0.7,0.25,0.7,0.3,0.7,0.35,0.7,0.4,0.7,0.45,0.7,0.5,0.7,0.55,0.7,0.6,0.7,0.65,0.7,0.7,0.7,0.2,0.75,0.25,0.75,0.3,0.75,0.35,0.75,0.4,0.75,0.45,0.75,0.5,0.75,0.55,0.75,0.6,0.75,0.65,0.75,0.7,0.75,0.2,0.8,0.25,0.8,0.3,0.8,0.35,0.8,0.4,0.8,0.45,0.8,0.5,0.8,0.55,0.8,0.6,0.8,0.65,0.8,0.7,0.8,0.2,0.85,0.25,0.85,0.3,0.85,0.35,0.85,0.4,0.85,0.45,0.85,0.5,0.85,0.55,0.85,0.6,0.85,0.65,0.85,0.7,0.85,0.2,0.9,0.25,0.9,0.3,0.9,0.35,0.9,0.4,0.9,0.45,0.9,0.5,0.9,0.55,0.9,0.6,0.9,0.65,0.9,0.7,0.9,0.2,0.95,0.25,0.95,0.3,0.95,0.35,0.95,0.4,0.95,0.45,0.95,0.5,0.95,0.55,0.95,0.6,0.95,0.65,0.95,0.7,0.95,0.225,0.0,0.275,0.0,0.325,0.0,0.375,0.0,0.425,0.0,0.475,0.0,0.525,0.0,0.575,0.0,0.625,0.0,0.675,0.0,0.225,1.0,0.275,1.0,0.325,1.0,0.375,1.0,0.425,1.0,0.475,1.0,0.525,1.0,0.575,1.0,0.625,1.0,0.675,1.0],"uvs2":null,"colors":null,"hasVertexAlpha":false,"matricesIndices":null,"matricesWeights":null,"matricesIndicesExtra":null,"matricesWeightsExtra":null,"indices":[0,1,2,2,1,3,1,4,3,3,4,5,4,6,5,5,6,7,6,8,7,7,8,9,8,10,9,9,10,11,10,12,11,11,12,13,12,14,13,13,14,15,14,16,15,15,16,17,16,18,17,17,18,19,18,20,19,19,20,21,2,3,22,22,3,23,3,5,23,23,5,24,5,7,24,24,7,25,7,9,25,25,9,26,9,11,26,26,11,27,11,13,27,27,13,28,13,15,28,28,15,29,15,17,29,29,17,30,17,19,30,30,19,31,19,21,31,31,21,32,22,23,33,33,23,34,23,24,34,34,24,35,24,25,35,35,25,36,25,26,36,36,26,37,26,27,37,37,27,38,27,28,38,38,28,39,28,29,39,39,29,40,29,30,40,40,30,41,30,31,41,41,31,42,31,32,42,42,32,43,33,34,44,44,34,45,34,35,45,45,35,46,35,36,46,46,36,47,36,37,47,47,37,48,37,38,48,48,38,49,38,39,49,49,39,50,39,40,50,50,40,51,40,41,51,51,41,52,41,42,52,52,42,53,42,43,53,53,43,54,44,45,55,55,45,56,45,46,56,56,46,57,46,47,57,57,47,58,47,48,58,58,48,59,48,49,59,59,49,60,49,50,60,60,50,61,50,51,61,61,51,62,51,52,62,62,52,63,52,53,63,63,53,64,53,54,64,64,54,65,55,56,66,66,56,67,56,57,67,67,57,68,57,58,68,68,58,69,58,59,69,69,59,70,59,60,70,70,60,71,60,61,71,71,61,72,61,62,72,72,62,73,62,63,73,73,63,74,63,64,74,74,64,75,64,65,75,75,65,76,66,67,77,77,67,78,67,68,78,78,68,79,68,69,79,79,69,80,69,70,80,80,70,81,70,71,81,81,71,82,71,72,82,82,72,83,72,73,83,83,73,84,73,74,84,84,74,85,74,75,85,85,75,86,75,76,86,86,76,87,77,78,88,88,78,89,78,79,89,89,79,90,79,80,90,90,80,91,80,81,91,91,81,92,81,82,92,92,82,93,82,83,93,93,83,94,83,84,94,94,84,95,84,85,95,95,85,96,85,86,96,96,86,97,86,87,97,97,87,98,88,89,99,99,89,100,89,90,100,100,90,101,90,91,101,101,91,102,91,92,102,102,92,103,92,93,103,103,93,104,93,94,104,104,94,105,94,95,105,105,95,106,95,96,106,106,96,107,96,97,107,107,97,108,97,98,108,108,98,109,99,100,110,110,100,111,100,101,111,111,101,112,101,102,112,112,102,113,102,103,113,113,103,114,103,104,114,114,104,115,104,105,115,115,105,116,105,106,116,116,106,117,106,107,117,117,107,118,107,108,118,118,108,119,108,109,119,119,109,120,110,111,121,121,111,122,111,112,122,122,112,123,112,113,123,123,113,124,113,114,124,124,114,125,114,115,125,125,115,126,115,116,126,126,116,127,116,117,127,127,117,128,117,118,128,128,118,129,118,119,129,129,119,130,119,120,130,130,120,131,121,122,132,132,122,133,122,123,133,133,123,134,123,124,134,134,124,135,124,125,135,135,125,136,125,126,136,136,126,137,126,127,137,137,127,138,127,128,138,138,128,139,128,129,139,139,129,140,129,130,140,140,130,141,130,131,141,141,131,142,132,133,143,143,133,144,133,134,144,144,134,145,134,135,145,145,135,146,135,136,146,146,136,147,136,137,147,147,137,148,137,138,148,148,138,149,138,139,149,149,139,150,139,140,150,150,140,151,140,141,151,151,141,152,141,142,152,152,142,153,143,144,154,154,144,155,144,145,155,155,145,156,145,146,156,156,146,157,146,147,157,157,147,158,147,148,158,158,148,159,148,149,159,159,149,160,149,150,160,160,150,161,150,151,161,161,151,162,151,152,162,162,152,163,152,153,163,163,153,164,154,155,165,165,155,166,155,156,166,166,156,167,156,157,167,167,157,168,157,158,168,168,158,169,158,159,169,169,159,170,159,160,170,170,160,171,160,161,171,171,161,172,161,162,172,172,162,173,162,163,173,173,163,174,163,164,174,174,164,175,165,166,176,176,166,177,166,167,177,177,167,178,167,168,178,178,168,179,168,169,179,179,169,180,169,170,180,180,170,181,170,171,181,181,171,182,171,172,182,182,172,183,172,173,183,183,173,184,173,174,184,184,174,185,174,175,185,185,175,186,176,177,187,187,177,188,177,178,188,188,178,189,178,179,189,189,179,190,179,180,190,190,180,191,180,181,191,191,181,192,181,182,192,192,182,193,182,183,193,193,183,194,183,184,194,194,184,195,184,185,195,195,185,196,185,186,196,196,186,197,187,188,198,198,188,199,188,189,199,199,189,200,189,190,200,200,190,201,190,191,201,201,191,202,191,192,202,202,192,203,192,193,203,203,193,204,193,194,204,204,194,205,194,195,205,205,195,206,195,196,206,206,196,207,196,197,207,207,197,208,1,0,209,4,1,210,6,4,211,8,6,212,10,8,213,12,10,214,14,12,215,16,14,216,18,16,217,20,18,218,198,199,219,199,200,220,200,201,221,201,202,222,202,203,223,203,204,224,204,205,225,205,206,226,206,207,227,207,208,228],"receiveShadows":false,"infiniteDistance":false,"billboardMode":0,"visibility":1.0,"subMeshes":[{"materialIndex":0,"verticesStart":0,"verticesCount":229,"indexStart":0,"indexCount":1140}],"instances":null,"skeletonId":-1,"numBoneInfluencers":4,"applyFog":false,"lodMeshIds":null,"lodDistances":null,"lodCoverages":null,"rotation":null,"scaling":[1.0,1.0,1.0],"rotationQuaternion":[0.0,0.0,0.0,1.0],"actions":null,"checkCollisions":false,"pickable":true,"showBoundingBox":false,"showSubMeshesBoundingBox":false,"alphaIndex":0,"physicsImpostor":0,"physicsMass":0.0,"physicsFriction":0.0,"physicsRestitution":0.0,"name":"pSphere6","id":"8F10FAB8-44E7-92AC-637F-43B7E8D95CCB","parentId":null,"position":[0.0,0.0,5.0],"animations":[],"autoAnimate":true,"autoAnimateFrom":1,"autoAnimateTo":200,"autoAnimateLoop":true,"metadata":{}},{"materialId":"79CDF1A6-4409-889B-46A9-43A586C10D94","isEnabled":true,"isVisible":true,"positions":[0.0,-0.9877,0.1564,-0.0483,-0.9877,0.1488,0.0,-0.9511,0.309,-0.0955,-0.9511,0.2939,-0.0919,-0.9877,0.1266,-0.1816,-0.9511,0.25,-0.1266,-0.9877,0.0919,-0.25,-0.9511,0.1816,-0.1488,-0.9877,0.0483,-0.2939,-0.9511,0.0955,-0.1564,-0.9877,0.0,-0.309,-0.9511,0.0,-0.1488,-0.9877,-0.0483,-0.2939,-0.9511,-0.0955,-0.1266,-0.9877,-0.0919,-0.25,-0.9511,-0.1816,-0.0919,-0.9877,-0.1266,-0.1816,-0.9511,-0.25,-0.0483,-0.9877,-0.1488,-0.0955,-0.9511,-0.2939,0.0,-0.9877,-0.1564,0.0,-0.9511,-0.309,0.0,-0.891,0.454,-0.1403,-0.891,0.4318,-0.2668,-0.891,0.3673,-0.3673,-0.891,0.2668,-0.4318,-0.891,0.1403,-0.454,-0.891,0.0,-0.4318,-0.891,-0.1403,-0.3673,-0.891,-0.2668,-0.2668,-0.891,-0.3673,-0.1403,-0.891,-0.4318,0.0,-0.891,-0.454,0.0,-0.809,0.5878,-0.1816,-0.809,0.559,-0.3455,-0.809,0.4755,-0.4755,-0.809,0.3455,-0.559,-0.809,0.1816,-0.5878,-0.809,0.0,-0.559,-0.809,-0.1816,-0.4755,-0.809,-0.3455,-0.3455,-0.809,-0.4755,-0.1816,-0.809,-0.559,0.0,-0.809,-0.5878,0.0,-0.7071,0.7071,-0.2185,-0.7071,0.6725,-0.4156,-0.7071,0.5721,-0.5721,-0.7071,0.4156,-0.6725,-0.7071,0.2185,-0.7071,-0.7071,0.0,-0.6725,-0.7071,-0.2185,-0.5721,-0.7071,-0.4156,-0.4156,-0.7071,-0.5721,-0.2185,-0.7071,-0.6725,0.0,-0.7071,-0.7071,0.0,-0.5878,0.809,-0.25,-0.5878,0.7694,-0.4755,-0.5878,0.6545,-0.6545,-0.5878,0.4755,-0.7694,-0.5878,0.25,-0.809,-0.5878,0.0,-0.7694,-0.5878,-0.25,-0.6545,-0.5878,-0.4755,-0.4755,-0.5878,-0.6545,-0.25,-0.5878,-0.7694,0.0,-0.5878,-0.809,0.0,-0.454,0.891,-0.2753,-0.454,0.8474,-0.5237,-0.454,0.7208,-0.7208,-0.454,0.5237,-0.8474,-0.454,0.2753,-0.891,-0.454,0.0,-0.8474,-0.454,-0.2753,-0.7208,-0.454,-0.5237,-0.5237,-0.454,-0.7208,-0.2753,-0.454,-0.8474,0.0,-0.454,-0.891,0.0,-0.309,0.9511,-0.2939,-0.309,0.9045,-0.559,-0.309,0.7694,-0.7694,-0.309,0.559,-0.9045,-0.309,0.2939,-0.9511,-0.309,0.0,-0.9045,-0.309,-0.2939,-0.7694,-0.309,-0.559,-0.559,-0.309,-0.7694,-0.2939,-0.309,-0.9045,0.0,-0.309,-0.9511,0.0,-0.1564,0.9877,-0.3052,-0.1564,0.9393,-0.5805,-0.1564,0.7991,-0.7991,-0.1564,0.5805,-0.9393,-0.1564,0.3052,-0.9877,-0.1564,0.0,-0.9393,-0.1564,-0.3052,-0.7991,-0.1564,-0.5805,-0.5805,-0.1564,-0.7991,-0.3052,-0.1564,-0.9393,0.0,-0.1564,-0.9877,0.0,0.0,1.0,-0.309,0.0,0.9511,-0.5878,0.0,0.809,-0.809,0.0,0.5878,-0.9511,0.0,0.309,-1.0,0.0,0.0,-0.9511,0.0,-0.309,-0.809,0.0,-0.5878,-0.5878,0.0,-0.809,-0.309,0.0,-0.9511,0.0,0.0,-1.0,0.0,0.1564,0.9877,-0.3052,0.1564,0.9393,-0.5805,0.1564,0.7991,-0.7991,0.1564,0.5805,-0.9393,0.1564,0.3052,-0.9877,0.1564,0.0,-0.9393,0.1564,-0.3052,-0.7991,0.1564,-0.5805,-0.5805,0.1564,-0.7991,-0.3052,0.1564,-0.9393,0.0,0.1564,-0.9877,0.0,0.309,0.9511,-0.2939,0.309,0.9045,-0.559,0.309,0.7694,-0.7694,0.309,0.559,-0.9045,0.309,0.2939,-0.9511,0.309,0.0,-0.9045,0.309,-0.2939,-0.7694,0.309,-0.559,-0.559,0.309,-0.7694,-0.2939,0.309,-0.9045,0.0,0.309,-0.9511,0.0,0.454,0.891,-0.2753,0.454,0.8474,-0.5237,0.454,0.7208,-0.7208,0.454,0.5237,-0.8474,0.454,0.2753,-0.891,0.454,0.0,-0.8474,0.454,-0.2753,-0.7208,0.454,-0.5237,-0.5237,0.454,-0.7208,-0.2753,0.454,-0.8474,0.0,0.454,-0.891,0.0,0.5878,0.809,-0.25,0.5878,0.7694,-0.4755,0.5878,0.6545,-0.6545,0.5878,0.4755,-0.7694,0.5878,0.25,-0.809,0.5878,0.0,-0.7694,0.5878,-0.25,-0.6545,0.5878,-0.4755,-0.4755,0.5878,-0.6545,-0.25,0.5878,-0.7694,0.0,0.5878,-0.809,0.0,0.7071,0.7071,-0.2185,0.7071,0.6725,-0.4156,0.7071,0.5721,-0.5721,0.7071,0.4156,-0.6725,0.7071,0.2185,-0.7071,0.7071,0.0,-0.6725,0.7071,-0.2185,-0.5721,0.7071,-0.4156,-0.4156,0.7071,-0.5721,-0.2185,0.7071,-0.6725,0.0,0.7071,-0.7071,0.0,0.809,0.5878,-0.1816,0.809,0.559,-0.3455,0.809,0.4755,-0.4755,0.809,0.3455,-0.559,0.809,0.1816,-0.5878,0.809,0.0,-0.559,0.809,-0.1816,-0.4755,0.809,-0.3455,-0.3455,0.809,-0.4755,-0.1816,0.809,-0.559,0.0,0.809,-0.5878,0.0,0.891,0.454,-0.1403,0.891,0.4318,-0.2668,0.891,0.3673,-0.3673,0.891,0.2668,-0.4318,0.891,0.1403,-0.454,0.891,0.0,-0.4318,0.891,-0.1403,-0.3673,0.891,-0.2668,-0.2668,0.891,-0.3673,-0.1403,0.891,-0.4318,0.0,0.891,-0.454,0.0,0.9511,0.309,-0.0955,0.9511,0.2939,-0.1816,0.9511,0.25,-0.25,0.9511,0.1816,-0.2939,0.9511,0.0955,-0.309,0.9511,0.0,-0.2939,0.9511,-0.0955,-0.25,0.9511,-0.1816,-0.1816,0.9511,-0.25,-0.0955,0.9511,-0.2939,0.0,0.9511,-0.309,0.0,0.9877,0.1564,-0.0483,0.9877,0.1488,-0.0919,0.9877,0.1266,-0.1266,0.9877,0.0919,-0.1488,0.9877,0.0483,-0.1564,0.9877,0.0,-0.1488,0.9877,-0.0483,-0.1266,0.9877,-0.0919,-0.0919,0.9877,-0.1266,-0.0483,0.9877,-0.1488,0.0,0.9877,-0.1564,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0],"normals":[-0.0317,-0.9792,0.2003,-0.0619,-0.9797,0.1906,-0.0528,-0.9414,0.3331,-0.1031,-0.9427,0.3173,-0.1178,-0.9797,0.1621,-0.1961,-0.9427,0.2699,-0.1621,-0.9797,0.1178,-0.2699,-0.9427,0.1961,-0.1906,-0.9797,0.0619,-0.3173,-0.9427,0.1031,-0.2004,-0.9797,0.0,-0.3336,-0.9427,0.0,-0.1906,-0.9797,-0.0619,-0.3173,-0.9427,-0.1031,-0.1621,-0.9797,-0.1178,-0.2699,-0.9427,-0.1961,-0.1178,-0.9797,-0.1621,-0.1961,-0.9427,-0.2699,-0.0619,-0.9797,-0.1906,-0.1031,-0.9427,-0.3173,-0.0317,-0.9792,-0.2003,-0.0528,-0.9414,-0.3331,-0.0744,-0.8798,0.4694,-0.1455,-0.8823,0.4477,-0.2767,-0.8823,0.3808,-0.3808,-0.8823,0.2767,-0.4477,-0.8823,0.1455,-0.4708,-0.8823,0.0,-0.4477,-0.8823,-0.1455,-0.3808,-0.8823,-0.2767,-0.2767,-0.8823,-0.3808,-0.1455,-0.8823,-0.4477,-0.0744,-0.8798,-0.4694,-0.0946,-0.7967,0.597,-0.1853,-0.8003,0.5703,-0.3525,-0.8003,0.4851,-0.4851,-0.8003,0.3525,-0.5703,-0.8003,0.1853,-0.5997,-0.8003,0.0,-0.5703,-0.8003,-0.1853,-0.4851,-0.8003,-0.3525,-0.3525,-0.8003,-0.4851,-0.1853,-0.8003,-0.5703,-0.0946,-0.7967,-0.597,-0.1126,-0.6943,0.7108,-0.221,-0.6988,0.6803,-0.4205,-0.6988,0.5787,-0.5787,-0.6988,0.4205,-0.6803,-0.6988,0.221,-0.7153,-0.6988,0.0,-0.6803,-0.6988,-0.221,-0.5787,-0.6988,-0.4205,-0.4205,-0.6988,-0.5787,-0.221,-0.6988,-0.6803,-0.1126,-0.6943,-0.7108,-0.1279,-0.5756,0.8076,-0.2516,-0.5804,0.7745,-0.4787,-0.5804,0.6588,-0.6588,-0.5804,0.4787,-0.7745,-0.5804,0.2516,-0.8143,-0.5804,0.0,-0.7745,-0.5804,-0.2516,-0.6588,-0.5804,-0.4787,-0.4787,-0.5804,-0.6588,-0.2516,-0.5804,-0.7745,-0.1279,-0.5756,-0.8076,-0.1402,-0.4436,0.8852,-0.2763,-0.448,0.8503,-0.5255,-0.448,0.7233,-0.7233,-0.448,0.5255,-0.8503,-0.448,0.2763,-0.894,-0.448,0.0,-0.8503,-0.448,-0.2763,-0.7233,-0.448,-0.5255,-0.5255,-0.448,-0.7233,-0.2763,-0.448,-0.8503,-0.1402,-0.4436,-0.8852,-0.1492,-0.3014,0.9418,-0.2943,-0.3048,0.9058,-0.5598,-0.3048,0.7705,-0.7705,-0.3048,0.5598,-0.9058,-0.3048,0.2943,-0.9524,-0.3048,0.0,-0.9058,-0.3048,-0.2943,-0.7705,-0.3048,-0.5598,-0.5598,-0.3048,-0.7705,-0.2943,-0.3048,-0.9058,-0.1492,-0.3014,-0.9418,-0.1546,-0.1524,0.9762,-0.3053,-0.1542,0.9397,-0.5808,-0.1542,0.7993,-0.7993,-0.1542,0.5808,-0.9397,-0.1542,0.3053,-0.988,-0.1542,0.0,-0.9397,-0.1542,-0.3053,-0.7993,-0.1542,-0.5808,-0.5808,-0.1542,-0.7993,-0.3053,-0.1542,-0.9397,-0.1546,-0.1524,-0.9762,-0.1564,0.0,0.9877,-0.309,0.0,0.9511,-0.5878,0.0,0.809,-0.809,0.0,0.5878,-0.9511,0.0,0.309,-1.0,0.0,0.0,-0.9511,0.0,-0.309,-0.809,0.0,-0.5878,-0.5878,0.0,-0.809,-0.309,0.0,-0.9511,-0.1564,0.0,-0.9877,-0.1546,0.1524,0.9762,-0.3053,0.1542,0.9397,-0.5808,0.1542,0.7993,-0.7993,0.1542,0.5808,-0.9397,0.1542,0.3053,-0.988,0.1542,0.0,-0.9397,0.1542,-0.3053,-0.7993,0.1542,-0.5808,-0.5808,0.1542,-0.7993,-0.3053,0.1542,-0.9397,-0.1546,0.1524,-0.9762,-0.1492,0.3014,0.9418,-0.2943,0.3048,0.9058,-0.5598,0.3048,0.7705,-0.7705,0.3048,0.5598,-0.9058,0.3048,0.2943,-0.9524,0.3048,0.0,-0.9058,0.3048,-0.2943,-0.7705,0.3048,-0.5598,-0.5598,0.3048,-0.7705,-0.2943,0.3048,-0.9058,-0.1492,0.3014,-0.9418,-0.1402,0.4436,0.8852,-0.2763,0.448,0.8503,-0.5255,0.448,0.7233,-0.7233,0.448,0.5255,-0.8503,0.448,0.2763,-0.894,0.448,0.0,-0.8503,0.448,-0.2763,-0.7233,0.448,-0.5255,-0.5255,0.448,-0.7233,-0.2763,0.448,-0.8503,-0.1402,0.4436,-0.8852,-0.1279,0.5756,0.8076,-0.2516,0.5804,0.7745,-0.4787,0.5804,0.6588,-0.6588,0.5804,0.4787,-0.7745,0.5804,0.2516,-0.8143,0.5804,0.0,-0.7745,0.5804,-0.2516,-0.6588,0.5804,-0.4787,-0.4787,0.5804,-0.6588,-0.2516,0.5804,-0.7745,-0.1279,0.5756,-0.8076,-0.1126,0.6943,0.7108,-0.221,0.6988,0.6803,-0.4205,0.6988,0.5787,-0.5787,0.6988,0.4205,-0.6803,0.6988,0.221,-0.7153,0.6988,0.0,-0.6803,0.6988,-0.221,-0.5787,0.6988,-0.4205,-0.4205,0.6988,-0.5787,-0.221,0.6988,-0.6803,-0.1126,0.6943,-0.7108,-0.0946,0.7967,0.597,-0.1853,0.8003,0.5703,-0.3525,0.8003,0.4851,-0.4851,0.8003,0.3525,-0.5703,0.8003,0.1853,-0.5997,0.8003,0.0,-0.5703,0.8003,-0.1853,-0.4851,0.8003,-0.3525,-0.3525,0.8003,-0.4851,-0.1853,0.8003,-0.5703,-0.0946,0.7967,-0.597,-0.0744,0.8798,0.4694,-0.1455,0.8823,0.4477,-0.2767,0.8823,0.3808,-0.3808,0.8823,0.2767,-0.4477,0.8823,0.1455,-0.4708,0.8823,0.0,-0.4477,0.8823,-0.1455,-0.3808,0.8823,-0.2767,-0.2767,0.8823,-0.3808,-0.1455,0.8823,-0.4477,-0.0744,0.8798,-0.4694,-0.0528,0.9414,0.3331,-0.1031,0.9427,0.3173,-0.1961,0.9427,0.2699,-0.2699,0.9427,0.1961,-0.3173,0.9427,0.1031,-0.3336,0.9427,0.0,-0.3173,0.9427,-0.1031,-0.2699,0.9427,-0.1961,-0.1961,0.9427,-0.2699,-0.1031,0.9427,-0.3173,-0.0528,0.9414,-0.3331,-0.0317,0.9792,0.2003,-0.0619,0.9797,0.1906,-0.1178,0.9797,0.1621,-0.1621,0.9797,0.1178,-0.1906,0.9797,0.0619,-0.2004,0.9797,0.0,-0.1906,0.9797,-0.0619,-0.1621,0.9797,-0.1178,-0.1178,0.9797,-0.1621,-0.0619,0.9797,-0.1906,-0.0317,0.9792,-0.2003,-0.0509,-0.9987,0.0,-0.0509,-0.9987,0.0,-0.0509,-0.9987,0.0,-0.0509,-0.9987,0.0,-0.0509,-0.9987,0.0,-0.0509,-0.9987,0.0,-0.0509,-0.9987,0.0,-0.0509,-0.9987,0.0,-0.0509,-0.9987,0.0,-0.0509,-0.9987,0.0,-0.0509,0.9987,0.0,-0.0509,0.9987,0.0,-0.0509,0.9987,0.0,-0.0509,0.9987,0.0,-0.0509,0.9987,0.0,-0.0509,0.9987,0.0,-0.0509,0.9987,0.0,-0.0509,0.9987,0.0,-0.0509,0.9987,0.0,-0.0509,0.9987,0.0],"tangents":[-0.9877,0.0,-0.1564,-1.0,-0.96,0.0062,-0.28,-1.0,-0.9877,0.0,-0.1564,-1.0,-0.9511,0.0,-0.309,-1.0,-0.8265,0.0062,-0.5629,-1.0,-0.809,0.0,-0.5878,-1.0,-0.6121,0.0062,-0.7908,-1.0,-0.5878,0.0,-0.809,-1.0,-0.3378,0.0062,-0.9412,-1.0,-0.309,0.0,-0.9511,-1.0,-0.0304,0.0062,-0.9995,-1.0,0.0,0.0,-1.0,-1.0,0.28,0.0062,-0.96,-1.0,0.309,0.0,-0.9511,-1.0,0.5629,0.0062,-0.8265,-1.0,0.5878,0.0,-0.809,-1.0,0.7908,0.0062,-0.6121,-1.0,0.809,0.0,-0.5878,-1.0,0.9412,0.0062,-0.3378,-1.0,0.9511,0.0,-0.309,-1.0,0.9877,0.0,-0.1564,-1.0,0.9877,0.0,-0.1564,-1.0,-0.9877,0.0,-0.1564,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,0.9877,0.0,-0.1564,-1.0,-0.9877,0.0,-0.1564,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,0.9877,0.0,-0.1564,-1.0,-0.9877,0.0,-0.1564,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,0.9877,0.0,-0.1564,-1.0,-0.9877,0.0,-0.1564,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,0.9877,0.0,-0.1564,-1.0,-0.9877,0.0,-0.1564,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,0.9877,0.0,-0.1564,-1.0,-0.9877,0.0,-0.1564,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,0.9877,0.0,-0.1564,-1.0,-0.9877,0.0,-0.1564,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,0.9877,0.0,-0.1564,-1.0,-0.9877,0.0,-0.1564,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,0.9877,0.0,-0.1564,-1.0,-0.9877,0.0,-0.1564,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,0.9877,0.0,-0.1564,-1.0,-0.9877,0.0,-0.1564,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,0.9877,0.0,-0.1564,-1.0,-0.9877,0.0,-0.1564,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,0.9877,0.0,-0.1564,-1.0,-0.9877,0.0,-0.1564,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,0.9877,0.0,-0.1564,-1.0,-0.9877,0.0,-0.1564,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,0.9877,0.0,-0.1564,-1.0,-0.9877,0.0,-0.1564,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,0.9877,0.0,-0.1564,-1.0,-0.9877,0.0,-0.1564,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,0.9877,0.0,-0.1564,-1.0,-0.9877,0.0,-0.1564,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,0.9877,0.0,-0.1564,-1.0,-0.9877,0.0,-0.1564,-1.0,-0.9412,0.0062,-0.3378,-1.0,-0.7908,0.0062,-0.6121,-1.0,-0.5629,0.0062,-0.8265,-1.0,-0.28,0.0062,-0.96,-1.0,0.0304,0.0062,-0.9995,-1.0,0.3378,0.0062,-0.9412,-1.0,0.6121,0.0062,-0.7908,-1.0,0.8265,0.0062,-0.5629,-1.0,0.96,0.0062,-0.28,-1.0,0.9877,0.0,-0.1564,-1.0,-0.9864,0.0502,-0.1566,-1.0,-0.8896,0.0453,-0.4545,-1.0,-0.7057,0.0359,-0.7076,-1.0,-0.4529,0.0231,-0.8912,-1.0,-0.156,0.0079,-0.9877,-1.0,0.156,-0.0079,-0.9877,-1.0,0.4529,-0.0231,-0.8912,-1.0,0.7057,-0.0359,-0.7076,-1.0,0.8896,-0.0453,-0.4545,-1.0,0.9864,-0.0502,-0.1566,-1.0,-0.9864,-0.0502,-0.1566,-1.0,-0.8896,-0.0453,-0.4545,-1.0,-0.7057,-0.0359,-0.7076,-1.0,-0.4529,-0.0231,-0.8912,-1.0,-0.156,-0.0079,-0.9877,-1.0,0.156,0.0079,-0.9877,-1.0,0.4529,0.0231,-0.8912,-1.0,0.7057,0.0359,-0.7076,-1.0,0.8896,0.0453,-0.4545,-1.0,0.9864,0.0502,-0.1566,-1.0],"uvs":[0.2,0.05,0.25,0.05,0.2,0.1,0.25,0.1,0.3,0.05,0.3,0.1,0.35,0.05,0.35,0.1,0.4,0.05,0.4,0.1,0.45,0.05,0.45,0.1,0.5,0.05,0.5,0.1,0.55,0.05,0.55,0.1,0.6,0.05,0.6,0.1,0.65,0.05,0.65,0.1,0.7,0.05,0.7,0.1,0.2,0.15,0.25,0.15,0.3,0.15,0.35,0.15,0.4,0.15,0.45,0.15,0.5,0.15,0.55,0.15,0.6,0.15,0.65,0.15,0.7,0.15,0.2,0.2,0.25,0.2,0.3,0.2,0.35,0.2,0.4,0.2,0.45,0.2,0.5,0.2,0.55,0.2,0.6,0.2,0.65,0.2,0.7,0.2,0.2,0.25,0.25,0.25,0.3,0.25,0.35,0.25,0.4,0.25,0.45,0.25,0.5,0.25,0.55,0.25,0.6,0.25,0.65,0.25,0.7,0.25,0.2,0.3,0.25,0.3,0.3,0.3,0.35,0.3,0.4,0.3,0.45,0.3,0.5,0.3,0.55,0.3,0.6,0.3,0.65,0.3,0.7,0.3,0.2,0.35,0.25,0.35,0.3,0.35,0.35,0.35,0.4,0.35,0.45,0.35,0.5,0.35,0.55,0.35,0.6,0.35,0.65,0.35,0.7,0.35,0.2,0.4,0.25,0.4,0.3,0.4,0.35,0.4,0.4,0.4,0.45,0.4,0.5,0.4,0.55,0.4,0.6,0.4,0.65,0.4,0.7,0.4,0.2,0.45,0.25,0.45,0.3,0.45,0.35,0.45,0.4,0.45,0.45,0.45,0.5,0.45,0.55,0.45,0.6,0.45,0.65,0.45,0.7,0.45,0.2,0.5,0.25,0.5,0.3,0.5,0.35,0.5,0.4,0.5,0.45,0.5,0.5,0.5,0.55,0.5,0.6,0.5,0.65,0.5,0.7,0.5,0.2,0.55,0.25,0.55,0.3,0.55,0.35,0.55,0.4,0.55,0.45,0.55,0.5,0.55,0.55,0.55,0.6,0.55,0.65,0.55,0.7,0.55,0.2,0.6,0.25,0.6,0.3,0.6,0.35,0.6,0.4,0.6,0.45,0.6,0.5,0.6,0.55,0.6,0.6,0.6,0.65,0.6,0.7,0.6,0.2,0.65,0.25,0.65,0.3,0.65,0.35,0.65,0.4,0.65,0.45,0.65,0.5,0.65,0.55,0.65,0.6,0.65,0.65,0.65,0.7,0.65,0.2,0.7,0.25,0.7,0.3,0.7,0.35,0.7,0.4,0.7,0.45,0.7,0.5,0.7,0.55,0.7,0.6,0.7,0.65,0.7,0.7,0.7,0.2,0.75,0.25,0.75,0.3,0.75,0.35,0.75,0.4,0.75,0.45,0.75,0.5,0.75,0.55,0.75,0.6,0.75,0.65,0.75,0.7,0.75,0.2,0.8,0.25,0.8,0.3,0.8,0.35,0.8,0.4,0.8,0.45,0.8,0.5,0.8,0.55,0.8,0.6,0.8,0.65,0.8,0.7,0.8,0.2,0.85,0.25,0.85,0.3,0.85,0.35,0.85,0.4,0.85,0.45,0.85,0.5,0.85,0.55,0.85,0.6,0.85,0.65,0.85,0.7,0.85,0.2,0.9,0.25,0.9,0.3,0.9,0.35,0.9,0.4,0.9,0.45,0.9,0.5,0.9,0.55,0.9,0.6,0.9,0.65,0.9,0.7,0.9,0.2,0.95,0.25,0.95,0.3,0.95,0.35,0.95,0.4,0.95,0.45,0.95,0.5,0.95,0.55,0.95,0.6,0.95,0.65,0.95,0.7,0.95,0.225,0.0,0.275,0.0,0.325,0.0,0.375,0.0,0.425,0.0,0.475,0.0,0.525,0.0,0.575,0.0,0.625,0.0,0.675,0.0,0.225,1.0,0.275,1.0,0.325,1.0,0.375,1.0,0.425,1.0,0.475,1.0,0.525,1.0,0.575,1.0,0.625,1.0,0.675,1.0],"uvs2":null,"colors":null,"hasVertexAlpha":false,"matricesIndices":null,"matricesWeights":null,"matricesIndicesExtra":null,"matricesWeightsExtra":null,"indices":[0,1,2,2,1,3,1,4,3,3,4,5,4,6,5,5,6,7,6,8,7,7,8,9,8,10,9,9,10,11,10,12,11,11,12,13,12,14,13,13,14,15,14,16,15,15,16,17,16,18,17,17,18,19,18,20,19,19,20,21,2,3,22,22,3,23,3,5,23,23,5,24,5,7,24,24,7,25,7,9,25,25,9,26,9,11,26,26,11,27,11,13,27,27,13,28,13,15,28,28,15,29,15,17,29,29,17,30,17,19,30,30,19,31,19,21,31,31,21,32,22,23,33,33,23,34,23,24,34,34,24,35,24,25,35,35,25,36,25,26,36,36,26,37,26,27,37,37,27,38,27,28,38,38,28,39,28,29,39,39,29,40,29,30,40,40,30,41,30,31,41,41,31,42,31,32,42,42,32,43,33,34,44,44,34,45,34,35,45,45,35,46,35,36,46,46,36,47,36,37,47,47,37,48,37,38,48,48,38,49,38,39,49,49,39,50,39,40,50,50,40,51,40,41,51,51,41,52,41,42,52,52,42,53,42,43,53,53,43,54,44,45,55,55,45,56,45,46,56,56,46,57,46,47,57,57,47,58,47,48,58,58,48,59,48,49,59,59,49,60,49,50,60,60,50,61,50,51,61,61,51,62,51,52,62,62,52,63,52,53,63,63,53,64,53,54,64,64,54,65,55,56,66,66,56,67,56,57,67,67,57,68,57,58,68,68,58,69,58,59,69,69,59,70,59,60,70,70,60,71,60,61,71,71,61,72,61,62,72,72,62,73,62,63,73,73,63,74,63,64,74,74,64,75,64,65,75,75,65,76,66,67,77,77,67,78,67,68,78,78,68,79,68,69,79,79,69,80,69,70,80,80,70,81,70,71,81,81,71,82,71,72,82,82,72,83,72,73,83,83,73,84,73,74,84,84,74,85,74,75,85,85,75,86,75,76,86,86,76,87,77,78,88,88,78,89,78,79,89,89,79,90,79,80,90,90,80,91,80,81,91,91,81,92,81,82,92,92,82,93,82,83,93,93,83,94,83,84,94,94,84,95,84,85,95,95,85,96,85,86,96,96,86,97,86,87,97,97,87,98,88,89,99,99,89,100,89,90,100,100,90,101,90,91,101,101,91,102,91,92,102,102,92,103,92,93,103,103,93,104,93,94,104,104,94,105,94,95,105,105,95,106,95,96,106,106,96,107,96,97,107,107,97,108,97,98,108,108,98,109,99,100,110,110,100,111,100,101,111,111,101,112,101,102,112,112,102,113,102,103,113,113,103,114,103,104,114,114,104,115,104,105,115,115,105,116,105,106,116,116,106,117,106,107,117,117,107,118,107,108,118,118,108,119,108,109,119,119,109,120,110,111,121,121,111,122,111,112,122,122,112,123,112,113,123,123,113,124,113,114,124,124,114,125,114,115,125,125,115,126,115,116,126,126,116,127,116,117,127,127,117,128,117,118,128,128,118,129,118,119,129,129,119,130,119,120,130,130,120,131,121,122,132,132,122,133,122,123,133,133,123,134,123,124,134,134,124,135,124,125,135,135,125,136,125,126,136,136,126,137,126,127,137,137,127,138,127,128,138,138,128,139,128,129,139,139,129,140,129,130,140,140,130,141,130,131,141,141,131,142,132,133,143,143,133,144,133,134,144,144,134,145,134,135,145,145,135,146,135,136,146,146,136,147,136,137,147,147,137,148,137,138,148,148,138,149,138,139,149,149,139,150,139,140,150,150,140,151,140,141,151,151,141,152,141,142,152,152,142,153,143,144,154,154,144,155,144,145,155,155,145,156,145,146,156,156,146,157,146,147,157,157,147,158,147,148,158,158,148,159,148,149,159,159,149,160,149,150,160,160,150,161,150,151,161,161,151,162,151,152,162,162,152,163,152,153,163,163,153,164,154,155,165,165,155,166,155,156,166,166,156,167,156,157,167,167,157,168,157,158,168,168,158,169,158,159,169,169,159,170,159,160,170,170,160,171,160,161,171,171,161,172,161,162,172,172,162,173,162,163,173,173,163,174,163,164,174,174,164,175,165,166,176,176,166,177,166,167,177,177,167,178,167,168,178,178,168,179,168,169,179,179,169,180,169,170,180,180,170,181,170,171,181,181,171,182,171,172,182,182,172,183,172,173,183,183,173,184,173,174,184,184,174,185,174,175,185,185,175,186,176,177,187,187,177,188,177,178,188,188,178,189,178,179,189,189,179,190,179,180,190,190,180,191,180,181,191,191,181,192,181,182,192,192,182,193,182,183,193,193,183,194,183,184,194,194,184,195,184,185,195,195,185,196,185,186,196,196,186,197,187,188,198,198,188,199,188,189,199,199,189,200,189,190,200,200,190,201,190,191,201,201,191,202,191,192,202,202,192,203,192,193,203,203,193,204,193,194,204,204,194,205,194,195,205,205,195,206,195,196,206,206,196,207,196,197,207,207,197,208,1,0,209,4,1,210,6,4,211,8,6,212,10,8,213,12,10,214,14,12,215,16,14,216,18,16,217,20,18,218,198,199,219,199,200,220,200,201,221,201,202,222,202,203,223,203,204,224,204,205,225,205,206,226,206,207,227,207,208,228],"receiveShadows":false,"infiniteDistance":false,"billboardMode":0,"visibility":1.0,"subMeshes":[{"materialIndex":0,"verticesStart":0,"verticesCount":229,"indexStart":0,"indexCount":1140}],"instances":null,"skeletonId":-1,"numBoneInfluencers":4,"applyFog":false,"lodMeshIds":null,"lodDistances":null,"lodCoverages":null,"rotation":null,"scaling":[1.0,1.0,1.0],"rotationQuaternion":[0.0,0.0,0.0,1.0],"actions":null,"checkCollisions":false,"pickable":true,"showBoundingBox":false,"showSubMeshesBoundingBox":false,"alphaIndex":0,"physicsImpostor":0,"physicsMass":0.0,"physicsFriction":0.0,"physicsRestitution":0.0,"name":"pSphere7","id":"A487CEF9-4F72-BC09-95BA-66BC39D5DEFD","parentId":null,"position":[6.0,0.0,5.0],"animations":[],"autoAnimate":true,"autoAnimateFrom":1,"autoAnimateTo":200,"autoAnimateLoop":true,"metadata":{}},{"materialId":"0E49D5E9-4200-91FB-CB7B-93B40CEF850E","isEnabled":true,"isVisible":true,"positions":[0.0,-0.9877,0.1564,-0.0483,-0.9877,0.1488,0.0,-0.9511,0.309,-0.0955,-0.9511,0.2939,-0.0919,-0.9877,0.1266,-0.1816,-0.9511,0.25,-0.1266,-0.9877,0.0919,-0.25,-0.9511,0.1816,-0.1488,-0.9877,0.0483,-0.2939,-0.9511,0.0955,-0.1564,-0.9877,0.0,-0.309,-0.9511,0.0,-0.1488,-0.9877,-0.0483,-0.2939,-0.9511,-0.0955,-0.1266,-0.9877,-0.0919,-0.25,-0.9511,-0.1816,-0.0919,-0.9877,-0.1266,-0.1816,-0.9511,-0.25,-0.0483,-0.9877,-0.1488,-0.0955,-0.9511,-0.2939,0.0,-0.9877,-0.1564,0.0,-0.9511,-0.309,0.0,-0.891,0.454,-0.1403,-0.891,0.4318,-0.2668,-0.891,0.3673,-0.3673,-0.891,0.2668,-0.4318,-0.891,0.1403,-0.454,-0.891,0.0,-0.4318,-0.891,-0.1403,-0.3673,-0.891,-0.2668,-0.2668,-0.891,-0.3673,-0.1403,-0.891,-0.4318,0.0,-0.891,-0.454,0.0,-0.809,0.5878,-0.1816,-0.809,0.559,-0.3455,-0.809,0.4755,-0.4755,-0.809,0.3455,-0.559,-0.809,0.1816,-0.5878,-0.809,0.0,-0.559,-0.809,-0.1816,-0.4755,-0.809,-0.3455,-0.3455,-0.809,-0.4755,-0.1816,-0.809,-0.559,0.0,-0.809,-0.5878,0.0,-0.7071,0.7071,-0.2185,-0.7071,0.6725,-0.4156,-0.7071,0.5721,-0.5721,-0.7071,0.4156,-0.6725,-0.7071,0.2185,-0.7071,-0.7071,0.0,-0.6725,-0.7071,-0.2185,-0.5721,-0.7071,-0.4156,-0.4156,-0.7071,-0.5721,-0.2185,-0.7071,-0.6725,0.0,-0.7071,-0.7071,0.0,-0.5878,0.809,-0.25,-0.5878,0.7694,-0.4755,-0.5878,0.6545,-0.6545,-0.5878,0.4755,-0.7694,-0.5878,0.25,-0.809,-0.5878,0.0,-0.7694,-0.5878,-0.25,-0.6545,-0.5878,-0.4755,-0.4755,-0.5878,-0.6545,-0.25,-0.5878,-0.7694,0.0,-0.5878,-0.809,0.0,-0.454,0.891,-0.2753,-0.454,0.8474,-0.5237,-0.454,0.7208,-0.7208,-0.454,0.5237,-0.8474,-0.454,0.2753,-0.891,-0.454,0.0,-0.8474,-0.454,-0.2753,-0.7208,-0.454,-0.5237,-0.5237,-0.454,-0.7208,-0.2753,-0.454,-0.8474,0.0,-0.454,-0.891,0.0,-0.309,0.9511,-0.2939,-0.309,0.9045,-0.559,-0.309,0.7694,-0.7694,-0.309,0.559,-0.9045,-0.309,0.2939,-0.9511,-0.309,0.0,-0.9045,-0.309,-0.2939,-0.7694,-0.309,-0.559,-0.559,-0.309,-0.7694,-0.2939,-0.309,-0.9045,0.0,-0.309,-0.9511,0.0,-0.1564,0.9877,-0.3052,-0.1564,0.9393,-0.5805,-0.1564,0.7991,-0.7991,-0.1564,0.5805,-0.9393,-0.1564,0.3052,-0.9877,-0.1564,0.0,-0.9393,-0.1564,-0.3052,-0.7991,-0.1564,-0.5805,-0.5805,-0.1564,-0.7991,-0.3052,-0.1564,-0.9393,0.0,-0.1564,-0.9877,0.0,0.0,1.0,-0.309,0.0,0.9511,-0.5878,0.0,0.809,-0.809,0.0,0.5878,-0.9511,0.0,0.309,-1.0,0.0,0.0,-0.9511,0.0,-0.309,-0.809,0.0,-0.5878,-0.5878,0.0,-0.809,-0.309,0.0,-0.9511,0.0,0.0,-1.0,0.0,0.1564,0.9877,-0.3052,0.1564,0.9393,-0.5805,0.1564,0.7991,-0.7991,0.1564,0.5805,-0.9393,0.1564,0.3052,-0.9877,0.1564,0.0,-0.9393,0.1564,-0.3052,-0.7991,0.1564,-0.5805,-0.5805,0.1564,-0.7991,-0.3052,0.1564,-0.9393,0.0,0.1564,-0.9877,0.0,0.309,0.9511,-0.2939,0.309,0.9045,-0.559,0.309,0.7694,-0.7694,0.309,0.559,-0.9045,0.309,0.2939,-0.9511,0.309,0.0,-0.9045,0.309,-0.2939,-0.7694,0.309,-0.559,-0.559,0.309,-0.7694,-0.2939,0.309,-0.9045,0.0,0.309,-0.9511,0.0,0.454,0.891,-0.2753,0.454,0.8474,-0.5237,0.454,0.7208,-0.7208,0.454,0.5237,-0.8474,0.454,0.2753,-0.891,0.454,0.0,-0.8474,0.454,-0.2753,-0.7208,0.454,-0.5237,-0.5237,0.454,-0.7208,-0.2753,0.454,-0.8474,0.0,0.454,-0.891,0.0,0.5878,0.809,-0.25,0.5878,0.7694,-0.4755,0.5878,0.6545,-0.6545,0.5878,0.4755,-0.7694,0.5878,0.25,-0.809,0.5878,0.0,-0.7694,0.5878,-0.25,-0.6545,0.5878,-0.4755,-0.4755,0.5878,-0.6545,-0.25,0.5878,-0.7694,0.0,0.5878,-0.809,0.0,0.7071,0.7071,-0.2185,0.7071,0.6725,-0.4156,0.7071,0.5721,-0.5721,0.7071,0.4156,-0.6725,0.7071,0.2185,-0.7071,0.7071,0.0,-0.6725,0.7071,-0.2185,-0.5721,0.7071,-0.4156,-0.4156,0.7071,-0.5721,-0.2185,0.7071,-0.6725,0.0,0.7071,-0.7071,0.0,0.809,0.5878,-0.1816,0.809,0.559,-0.3455,0.809,0.4755,-0.4755,0.809,0.3455,-0.559,0.809,0.1816,-0.5878,0.809,0.0,-0.559,0.809,-0.1816,-0.4755,0.809,-0.3455,-0.3455,0.809,-0.4755,-0.1816,0.809,-0.559,0.0,0.809,-0.5878,0.0,0.891,0.454,-0.1403,0.891,0.4318,-0.2668,0.891,0.3673,-0.3673,0.891,0.2668,-0.4318,0.891,0.1403,-0.454,0.891,0.0,-0.4318,0.891,-0.1403,-0.3673,0.891,-0.2668,-0.2668,0.891,-0.3673,-0.1403,0.891,-0.4318,0.0,0.891,-0.454,0.0,0.9511,0.309,-0.0955,0.9511,0.2939,-0.1816,0.9511,0.25,-0.25,0.9511,0.1816,-0.2939,0.9511,0.0955,-0.309,0.9511,0.0,-0.2939,0.9511,-0.0955,-0.25,0.9511,-0.1816,-0.1816,0.9511,-0.25,-0.0955,0.9511,-0.2939,0.0,0.9511,-0.309,0.0,0.9877,0.1564,-0.0483,0.9877,0.1488,-0.0919,0.9877,0.1266,-0.1266,0.9877,0.0919,-0.1488,0.9877,0.0483,-0.1564,0.9877,0.0,-0.1488,0.9877,-0.0483,-0.1266,0.9877,-0.0919,-0.0919,0.9877,-0.1266,-0.0483,0.9877,-0.1488,0.0,0.9877,-0.1564,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0],"normals":[-0.0317,-0.9792,0.2003,-0.0619,-0.9797,0.1906,-0.0528,-0.9414,0.3331,-0.1031,-0.9427,0.3173,-0.1178,-0.9797,0.1621,-0.1961,-0.9427,0.2699,-0.1621,-0.9797,0.1178,-0.2699,-0.9427,0.1961,-0.1906,-0.9797,0.0619,-0.3173,-0.9427,0.1031,-0.2004,-0.9797,0.0,-0.3336,-0.9427,0.0,-0.1906,-0.9797,-0.0619,-0.3173,-0.9427,-0.1031,-0.1621,-0.9797,-0.1178,-0.2699,-0.9427,-0.1961,-0.1178,-0.9797,-0.1621,-0.1961,-0.9427,-0.2699,-0.0619,-0.9797,-0.1906,-0.1031,-0.9427,-0.3173,-0.0317,-0.9792,-0.2003,-0.0528,-0.9414,-0.3331,-0.0744,-0.8798,0.4694,-0.1455,-0.8823,0.4477,-0.2767,-0.8823,0.3808,-0.3808,-0.8823,0.2767,-0.4477,-0.8823,0.1455,-0.4708,-0.8823,0.0,-0.4477,-0.8823,-0.1455,-0.3808,-0.8823,-0.2767,-0.2767,-0.8823,-0.3808,-0.1455,-0.8823,-0.4477,-0.0744,-0.8798,-0.4694,-0.0946,-0.7967,0.597,-0.1853,-0.8003,0.5703,-0.3525,-0.8003,0.4851,-0.4851,-0.8003,0.3525,-0.5703,-0.8003,0.1853,-0.5997,-0.8003,0.0,-0.5703,-0.8003,-0.1853,-0.4851,-0.8003,-0.3525,-0.3525,-0.8003,-0.4851,-0.1853,-0.8003,-0.5703,-0.0946,-0.7967,-0.597,-0.1126,-0.6943,0.7108,-0.221,-0.6988,0.6803,-0.4205,-0.6988,0.5787,-0.5787,-0.6988,0.4205,-0.6803,-0.6988,0.221,-0.7153,-0.6988,0.0,-0.6803,-0.6988,-0.221,-0.5787,-0.6988,-0.4205,-0.4205,-0.6988,-0.5787,-0.221,-0.6988,-0.6803,-0.1126,-0.6943,-0.7108,-0.1279,-0.5756,0.8076,-0.2516,-0.5804,0.7745,-0.4787,-0.5804,0.6588,-0.6588,-0.5804,0.4787,-0.7745,-0.5804,0.2516,-0.8143,-0.5804,0.0,-0.7745,-0.5804,-0.2516,-0.6588,-0.5804,-0.4787,-0.4787,-0.5804,-0.6588,-0.2516,-0.5804,-0.7745,-0.1279,-0.5756,-0.8076,-0.1402,-0.4436,0.8852,-0.2763,-0.448,0.8503,-0.5255,-0.448,0.7233,-0.7233,-0.448,0.5255,-0.8503,-0.448,0.2763,-0.894,-0.448,0.0,-0.8503,-0.448,-0.2763,-0.7233,-0.448,-0.5255,-0.5255,-0.448,-0.7233,-0.2763,-0.448,-0.8503,-0.1402,-0.4436,-0.8852,-0.1492,-0.3014,0.9418,-0.2943,-0.3048,0.9058,-0.5598,-0.3048,0.7705,-0.7705,-0.3048,0.5598,-0.9058,-0.3048,0.2943,-0.9524,-0.3048,0.0,-0.9058,-0.3048,-0.2943,-0.7705,-0.3048,-0.5598,-0.5598,-0.3048,-0.7705,-0.2943,-0.3048,-0.9058,-0.1492,-0.3014,-0.9418,-0.1546,-0.1524,0.9762,-0.3053,-0.1542,0.9397,-0.5808,-0.1542,0.7993,-0.7993,-0.1542,0.5808,-0.9397,-0.1542,0.3053,-0.988,-0.1542,0.0,-0.9397,-0.1542,-0.3053,-0.7993,-0.1542,-0.5808,-0.5808,-0.1542,-0.7993,-0.3053,-0.1542,-0.9397,-0.1546,-0.1524,-0.9762,-0.1564,0.0,0.9877,-0.309,0.0,0.9511,-0.5878,0.0,0.809,-0.809,0.0,0.5878,-0.9511,0.0,0.309,-1.0,0.0,0.0,-0.9511,0.0,-0.309,-0.809,0.0,-0.5878,-0.5878,0.0,-0.809,-0.309,0.0,-0.9511,-0.1564,0.0,-0.9877,-0.1546,0.1524,0.9762,-0.3053,0.1542,0.9397,-0.5808,0.1542,0.7993,-0.7993,0.1542,0.5808,-0.9397,0.1542,0.3053,-0.988,0.1542,0.0,-0.9397,0.1542,-0.3053,-0.7993,0.1542,-0.5808,-0.5808,0.1542,-0.7993,-0.3053,0.1542,-0.9397,-0.1546,0.1524,-0.9762,-0.1492,0.3014,0.9418,-0.2943,0.3048,0.9058,-0.5598,0.3048,0.7705,-0.7705,0.3048,0.5598,-0.9058,0.3048,0.2943,-0.9524,0.3048,0.0,-0.9058,0.3048,-0.2943,-0.7705,0.3048,-0.5598,-0.5598,0.3048,-0.7705,-0.2943,0.3048,-0.9058,-0.1492,0.3014,-0.9418,-0.1402,0.4436,0.8852,-0.2763,0.448,0.8503,-0.5255,0.448,0.7233,-0.7233,0.448,0.5255,-0.8503,0.448,0.2763,-0.894,0.448,0.0,-0.8503,0.448,-0.2763,-0.7233,0.448,-0.5255,-0.5255,0.448,-0.7233,-0.2763,0.448,-0.8503,-0.1402,0.4436,-0.8852,-0.1279,0.5756,0.8076,-0.2516,0.5804,0.7745,-0.4787,0.5804,0.6588,-0.6588,0.5804,0.4787,-0.7745,0.5804,0.2516,-0.8143,0.5804,0.0,-0.7745,0.5804,-0.2516,-0.6588,0.5804,-0.4787,-0.4787,0.5804,-0.6588,-0.2516,0.5804,-0.7745,-0.1279,0.5756,-0.8076,-0.1126,0.6943,0.7108,-0.221,0.6988,0.6803,-0.4205,0.6988,0.5787,-0.5787,0.6988,0.4205,-0.6803,0.6988,0.221,-0.7153,0.6988,0.0,-0.6803,0.6988,-0.221,-0.5787,0.6988,-0.4205,-0.4205,0.6988,-0.5787,-0.221,0.6988,-0.6803,-0.1126,0.6943,-0.7108,-0.0946,0.7967,0.597,-0.1853,0.8003,0.5703,-0.3525,0.8003,0.4851,-0.4851,0.8003,0.3525,-0.5703,0.8003,0.1853,-0.5997,0.8003,0.0,-0.5703,0.8003,-0.1853,-0.4851,0.8003,-0.3525,-0.3525,0.8003,-0.4851,-0.1853,0.8003,-0.5703,-0.0946,0.7967,-0.597,-0.0744,0.8798,0.4694,-0.1455,0.8823,0.4477,-0.2767,0.8823,0.3808,-0.3808,0.8823,0.2767,-0.4477,0.8823,0.1455,-0.4708,0.8823,0.0,-0.4477,0.8823,-0.1455,-0.3808,0.8823,-0.2767,-0.2767,0.8823,-0.3808,-0.1455,0.8823,-0.4477,-0.0744,0.8798,-0.4694,-0.0528,0.9414,0.3331,-0.1031,0.9427,0.3173,-0.1961,0.9427,0.2699,-0.2699,0.9427,0.1961,-0.3173,0.9427,0.1031,-0.3336,0.9427,0.0,-0.3173,0.9427,-0.1031,-0.2699,0.9427,-0.1961,-0.1961,0.9427,-0.2699,-0.1031,0.9427,-0.3173,-0.0528,0.9414,-0.3331,-0.0317,0.9792,0.2003,-0.0619,0.9797,0.1906,-0.1178,0.9797,0.1621,-0.1621,0.9797,0.1178,-0.1906,0.9797,0.0619,-0.2004,0.9797,0.0,-0.1906,0.9797,-0.0619,-0.1621,0.9797,-0.1178,-0.1178,0.9797,-0.1621,-0.0619,0.9797,-0.1906,-0.0317,0.9792,-0.2003,-0.0509,-0.9987,0.0,-0.0509,-0.9987,0.0,-0.0509,-0.9987,0.0,-0.0509,-0.9987,0.0,-0.0509,-0.9987,0.0,-0.0509,-0.9987,0.0,-0.0509,-0.9987,0.0,-0.0509,-0.9987,0.0,-0.0509,-0.9987,0.0,-0.0509,-0.9987,0.0,-0.0509,0.9987,0.0,-0.0509,0.9987,0.0,-0.0509,0.9987,0.0,-0.0509,0.9987,0.0,-0.0509,0.9987,0.0,-0.0509,0.9987,0.0,-0.0509,0.9987,0.0,-0.0509,0.9987,0.0,-0.0509,0.9987,0.0,-0.0509,0.9987,0.0],"tangents":[-0.9877,0.0,-0.1564,-1.0,-0.96,0.0062,-0.28,-1.0,-0.9877,0.0,-0.1564,-1.0,-0.9511,0.0,-0.309,-1.0,-0.8265,0.0062,-0.5629,-1.0,-0.809,0.0,-0.5878,-1.0,-0.6121,0.0062,-0.7908,-1.0,-0.5878,0.0,-0.809,-1.0,-0.3378,0.0062,-0.9412,-1.0,-0.309,0.0,-0.9511,-1.0,-0.0304,0.0062,-0.9995,-1.0,0.0,0.0,-1.0,-1.0,0.28,0.0062,-0.96,-1.0,0.309,0.0,-0.9511,-1.0,0.5629,0.0062,-0.8265,-1.0,0.5878,0.0,-0.809,-1.0,0.7908,0.0062,-0.6121,-1.0,0.809,0.0,-0.5878,-1.0,0.9412,0.0062,-0.3378,-1.0,0.9511,0.0,-0.309,-1.0,0.9877,0.0,-0.1564,-1.0,0.9877,0.0,-0.1564,-1.0,-0.9877,0.0,-0.1564,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,0.9877,0.0,-0.1564,-1.0,-0.9877,0.0,-0.1564,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,0.9877,0.0,-0.1564,-1.0,-0.9877,0.0,-0.1564,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,0.9877,0.0,-0.1564,-1.0,-0.9877,0.0,-0.1564,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,0.9877,0.0,-0.1564,-1.0,-0.9877,0.0,-0.1564,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,0.9877,0.0,-0.1564,-1.0,-0.9877,0.0,-0.1564,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,0.9877,0.0,-0.1564,-1.0,-0.9877,0.0,-0.1564,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,0.9877,0.0,-0.1564,-1.0,-0.9877,0.0,-0.1564,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,0.9877,0.0,-0.1564,-1.0,-0.9877,0.0,-0.1564,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,0.9877,0.0,-0.1564,-1.0,-0.9877,0.0,-0.1564,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,0.9877,0.0,-0.1564,-1.0,-0.9877,0.0,-0.1564,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,0.9877,0.0,-0.1564,-1.0,-0.9877,0.0,-0.1564,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,0.9877,0.0,-0.1564,-1.0,-0.9877,0.0,-0.1564,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,0.9877,0.0,-0.1564,-1.0,-0.9877,0.0,-0.1564,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,0.9877,0.0,-0.1564,-1.0,-0.9877,0.0,-0.1564,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,0.9877,0.0,-0.1564,-1.0,-0.9877,0.0,-0.1564,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,0.9877,0.0,-0.1564,-1.0,-0.9877,0.0,-0.1564,-1.0,-0.9412,0.0062,-0.3378,-1.0,-0.7908,0.0062,-0.6121,-1.0,-0.5629,0.0062,-0.8265,-1.0,-0.28,0.0062,-0.96,-1.0,0.0304,0.0062,-0.9995,-1.0,0.3378,0.0062,-0.9412,-1.0,0.6121,0.0062,-0.7908,-1.0,0.8265,0.0062,-0.5629,-1.0,0.96,0.0062,-0.28,-1.0,0.9877,0.0,-0.1564,-1.0,-0.9864,0.0502,-0.1566,-1.0,-0.8896,0.0453,-0.4545,-1.0,-0.7057,0.0359,-0.7076,-1.0,-0.4529,0.0231,-0.8912,-1.0,-0.156,0.0079,-0.9877,-1.0,0.156,-0.0079,-0.9877,-1.0,0.4529,-0.0231,-0.8912,-1.0,0.7057,-0.0359,-0.7076,-1.0,0.8896,-0.0453,-0.4545,-1.0,0.9864,-0.0502,-0.1566,-1.0,-0.9864,-0.0502,-0.1566,-1.0,-0.8896,-0.0453,-0.4545,-1.0,-0.7057,-0.0359,-0.7076,-1.0,-0.4529,-0.0231,-0.8912,-1.0,-0.156,-0.0079,-0.9877,-1.0,0.156,0.0079,-0.9877,-1.0,0.4529,0.0231,-0.8912,-1.0,0.7057,0.0359,-0.7076,-1.0,0.8896,0.0453,-0.4545,-1.0,0.9864,0.0502,-0.1566,-1.0],"uvs":[0.2,0.05,0.25,0.05,0.2,0.1,0.25,0.1,0.3,0.05,0.3,0.1,0.35,0.05,0.35,0.1,0.4,0.05,0.4,0.1,0.45,0.05,0.45,0.1,0.5,0.05,0.5,0.1,0.55,0.05,0.55,0.1,0.6,0.05,0.6,0.1,0.65,0.05,0.65,0.1,0.7,0.05,0.7,0.1,0.2,0.15,0.25,0.15,0.3,0.15,0.35,0.15,0.4,0.15,0.45,0.15,0.5,0.15,0.55,0.15,0.6,0.15,0.65,0.15,0.7,0.15,0.2,0.2,0.25,0.2,0.3,0.2,0.35,0.2,0.4,0.2,0.45,0.2,0.5,0.2,0.55,0.2,0.6,0.2,0.65,0.2,0.7,0.2,0.2,0.25,0.25,0.25,0.3,0.25,0.35,0.25,0.4,0.25,0.45,0.25,0.5,0.25,0.55,0.25,0.6,0.25,0.65,0.25,0.7,0.25,0.2,0.3,0.25,0.3,0.3,0.3,0.35,0.3,0.4,0.3,0.45,0.3,0.5,0.3,0.55,0.3,0.6,0.3,0.65,0.3,0.7,0.3,0.2,0.35,0.25,0.35,0.3,0.35,0.35,0.35,0.4,0.35,0.45,0.35,0.5,0.35,0.55,0.35,0.6,0.35,0.65,0.35,0.7,0.35,0.2,0.4,0.25,0.4,0.3,0.4,0.35,0.4,0.4,0.4,0.45,0.4,0.5,0.4,0.55,0.4,0.6,0.4,0.65,0.4,0.7,0.4,0.2,0.45,0.25,0.45,0.3,0.45,0.35,0.45,0.4,0.45,0.45,0.45,0.5,0.45,0.55,0.45,0.6,0.45,0.65,0.45,0.7,0.45,0.2,0.5,0.25,0.5,0.3,0.5,0.35,0.5,0.4,0.5,0.45,0.5,0.5,0.5,0.55,0.5,0.6,0.5,0.65,0.5,0.7,0.5,0.2,0.55,0.25,0.55,0.3,0.55,0.35,0.55,0.4,0.55,0.45,0.55,0.5,0.55,0.55,0.55,0.6,0.55,0.65,0.55,0.7,0.55,0.2,0.6,0.25,0.6,0.3,0.6,0.35,0.6,0.4,0.6,0.45,0.6,0.5,0.6,0.55,0.6,0.6,0.6,0.65,0.6,0.7,0.6,0.2,0.65,0.25,0.65,0.3,0.65,0.35,0.65,0.4,0.65,0.45,0.65,0.5,0.65,0.55,0.65,0.6,0.65,0.65,0.65,0.7,0.65,0.2,0.7,0.25,0.7,0.3,0.7,0.35,0.7,0.4,0.7,0.45,0.7,0.5,0.7,0.55,0.7,0.6,0.7,0.65,0.7,0.7,0.7,0.2,0.75,0.25,0.75,0.3,0.75,0.35,0.75,0.4,0.75,0.45,0.75,0.5,0.75,0.55,0.75,0.6,0.75,0.65,0.75,0.7,0.75,0.2,0.8,0.25,0.8,0.3,0.8,0.35,0.8,0.4,0.8,0.45,0.8,0.5,0.8,0.55,0.8,0.6,0.8,0.65,0.8,0.7,0.8,0.2,0.85,0.25,0.85,0.3,0.85,0.35,0.85,0.4,0.85,0.45,0.85,0.5,0.85,0.55,0.85,0.6,0.85,0.65,0.85,0.7,0.85,0.2,0.9,0.25,0.9,0.3,0.9,0.35,0.9,0.4,0.9,0.45,0.9,0.5,0.9,0.55,0.9,0.6,0.9,0.65,0.9,0.7,0.9,0.2,0.95,0.25,0.95,0.3,0.95,0.35,0.95,0.4,0.95,0.45,0.95,0.5,0.95,0.55,0.95,0.6,0.95,0.65,0.95,0.7,0.95,0.225,0.0,0.275,0.0,0.325,0.0,0.375,0.0,0.425,0.0,0.475,0.0,0.525,0.0,0.575,0.0,0.625,0.0,0.675,0.0,0.225,1.0,0.275,1.0,0.325,1.0,0.375,1.0,0.425,1.0,0.475,1.0,0.525,1.0,0.575,1.0,0.625,1.0,0.675,1.0],"uvs2":null,"colors":null,"hasVertexAlpha":false,"matricesIndices":null,"matricesWeights":null,"matricesIndicesExtra":null,"matricesWeightsExtra":null,"indices":[0,1,2,2,1,3,1,4,3,3,4,5,4,6,5,5,6,7,6,8,7,7,8,9,8,10,9,9,10,11,10,12,11,11,12,13,12,14,13,13,14,15,14,16,15,15,16,17,16,18,17,17,18,19,18,20,19,19,20,21,2,3,22,22,3,23,3,5,23,23,5,24,5,7,24,24,7,25,7,9,25,25,9,26,9,11,26,26,11,27,11,13,27,27,13,28,13,15,28,28,15,29,15,17,29,29,17,30,17,19,30,30,19,31,19,21,31,31,21,32,22,23,33,33,23,34,23,24,34,34,24,35,24,25,35,35,25,36,25,26,36,36,26,37,26,27,37,37,27,38,27,28,38,38,28,39,28,29,39,39,29,40,29,30,40,40,30,41,30,31,41,41,31,42,31,32,42,42,32,43,33,34,44,44,34,45,34,35,45,45,35,46,35,36,46,46,36,47,36,37,47,47,37,48,37,38,48,48,38,49,38,39,49,49,39,50,39,40,50,50,40,51,40,41,51,51,41,52,41,42,52,52,42,53,42,43,53,53,43,54,44,45,55,55,45,56,45,46,56,56,46,57,46,47,57,57,47,58,47,48,58,58,48,59,48,49,59,59,49,60,49,50,60,60,50,61,50,51,61,61,51,62,51,52,62,62,52,63,52,53,63,63,53,64,53,54,64,64,54,65,55,56,66,66,56,67,56,57,67,67,57,68,57,58,68,68,58,69,58,59,69,69,59,70,59,60,70,70,60,71,60,61,71,71,61,72,61,62,72,72,62,73,62,63,73,73,63,74,63,64,74,74,64,75,64,65,75,75,65,76,66,67,77,77,67,78,67,68,78,78,68,79,68,69,79,79,69,80,69,70,80,80,70,81,70,71,81,81,71,82,71,72,82,82,72,83,72,73,83,83,73,84,73,74,84,84,74,85,74,75,85,85,75,86,75,76,86,86,76,87,77,78,88,88,78,89,78,79,89,89,79,90,79,80,90,90,80,91,80,81,91,91,81,92,81,82,92,92,82,93,82,83,93,93,83,94,83,84,94,94,84,95,84,85,95,95,85,96,85,86,96,96,86,97,86,87,97,97,87,98,88,89,99,99,89,100,89,90,100,100,90,101,90,91,101,101,91,102,91,92,102,102,92,103,92,93,103,103,93,104,93,94,104,104,94,105,94,95,105,105,95,106,95,96,106,106,96,107,96,97,107,107,97,108,97,98,108,108,98,109,99,100,110,110,100,111,100,101,111,111,101,112,101,102,112,112,102,113,102,103,113,113,103,114,103,104,114,114,104,115,104,105,115,115,105,116,105,106,116,116,106,117,106,107,117,117,107,118,107,108,118,118,108,119,108,109,119,119,109,120,110,111,121,121,111,122,111,112,122,122,112,123,112,113,123,123,113,124,113,114,124,124,114,125,114,115,125,125,115,126,115,116,126,126,116,127,116,117,127,127,117,128,117,118,128,128,118,129,118,119,129,129,119,130,119,120,130,130,120,131,121,122,132,132,122,133,122,123,133,133,123,134,123,124,134,134,124,135,124,125,135,135,125,136,125,126,136,136,126,137,126,127,137,137,127,138,127,128,138,138,128,139,128,129,139,139,129,140,129,130,140,140,130,141,130,131,141,141,131,142,132,133,143,143,133,144,133,134,144,144,134,145,134,135,145,145,135,146,135,136,146,146,136,147,136,137,147,147,137,148,137,138,148,148,138,149,138,139,149,149,139,150,139,140,150,150,140,151,140,141,151,151,141,152,141,142,152,152,142,153,143,144,154,154,144,155,144,145,155,155,145,156,145,146,156,156,146,157,146,147,157,157,147,158,147,148,158,158,148,159,148,149,159,159,149,160,149,150,160,160,150,161,150,151,161,161,151,162,151,152,162,162,152,163,152,153,163,163,153,164,154,155,165,165,155,166,155,156,166,166,156,167,156,157,167,167,157,168,157,158,168,168,158,169,158,159,169,169,159,170,159,160,170,170,160,171,160,161,171,171,161,172,161,162,172,172,162,173,162,163,173,173,163,174,163,164,174,174,164,175,165,166,176,176,166,177,166,167,177,177,167,178,167,168,178,178,168,179,168,169,179,179,169,180,169,170,180,180,170,181,170,171,181,181,171,182,171,172,182,182,172,183,172,173,183,183,173,184,173,174,184,184,174,185,174,175,185,185,175,186,176,177,187,187,177,188,177,178,188,188,178,189,178,179,189,189,179,190,179,180,190,190,180,191,180,181,191,191,181,192,181,182,192,192,182,193,182,183,193,193,183,194,183,184,194,194,184,195,184,185,195,195,185,196,185,186,196,196,186,197,187,188,198,198,188,199,188,189,199,199,189,200,189,190,200,200,190,201,190,191,201,201,191,202,191,192,202,202,192,203,192,193,203,203,193,204,193,194,204,204,194,205,194,195,205,205,195,206,195,196,206,206,196,207,196,197,207,207,197,208,1,0,209,4,1,210,6,4,211,8,6,212,10,8,213,12,10,214,14,12,215,16,14,216,18,16,217,20,18,218,198,199,219,199,200,220,200,201,221,201,202,222,202,203,223,203,204,224,204,205,225,205,206,226,206,207,227,207,208,228],"receiveShadows":false,"infiniteDistance":false,"billboardMode":0,"visibility":1.0,"subMeshes":[{"materialIndex":0,"verticesStart":0,"verticesCount":229,"indexStart":0,"indexCount":1140}],"instances":null,"skeletonId":-1,"numBoneInfluencers":4,"applyFog":false,"lodMeshIds":null,"lodDistances":null,"lodCoverages":null,"rotation":null,"scaling":[1.0,1.0,1.0],"rotationQuaternion":[0.0,0.0,0.0,1.0],"actions":null,"checkCollisions":false,"pickable":true,"showBoundingBox":false,"showSubMeshesBoundingBox":false,"alphaIndex":0,"physicsImpostor":0,"physicsMass":0.0,"physicsFriction":0.0,"physicsRestitution":0.0,"name":"pSphere8","id":"AE587577-4690-ABB3-93DE-BBB4DB850C1A","parentId":null,"position":[3.0,0.0,5.0],"animations":[],"autoAnimate":true,"autoAnimateFrom":1,"autoAnimateTo":200,"autoAnimateLoop":true,"metadata":{}},{"materialId":"D27E80AB-42A2-4790-E758-5B85C6DE409F","isEnabled":true,"isVisible":true,"positions":[0.0,-0.9877,0.1564,-0.0483,-0.9877,0.1488,0.0,-0.9511,0.309,-0.0955,-0.9511,0.2939,-0.0919,-0.9877,0.1266,-0.1816,-0.9511,0.25,-0.1266,-0.9877,0.0919,-0.25,-0.9511,0.1816,-0.1488,-0.9877,0.0483,-0.2939,-0.9511,0.0955,-0.1564,-0.9877,0.0,-0.309,-0.9511,0.0,-0.1488,-0.9877,-0.0483,-0.2939,-0.9511,-0.0955,-0.1266,-0.9877,-0.0919,-0.25,-0.9511,-0.1816,-0.0919,-0.9877,-0.1266,-0.1816,-0.9511,-0.25,-0.0483,-0.9877,-0.1488,-0.0955,-0.9511,-0.2939,0.0,-0.9877,-0.1564,0.0,-0.9511,-0.309,0.0,-0.891,0.454,-0.1403,-0.891,0.4318,-0.2668,-0.891,0.3673,-0.3673,-0.891,0.2668,-0.4318,-0.891,0.1403,-0.454,-0.891,0.0,-0.4318,-0.891,-0.1403,-0.3673,-0.891,-0.2668,-0.2668,-0.891,-0.3673,-0.1403,-0.891,-0.4318,0.0,-0.891,-0.454,0.0,-0.809,0.5878,-0.1816,-0.809,0.559,-0.3455,-0.809,0.4755,-0.4755,-0.809,0.3455,-0.559,-0.809,0.1816,-0.5878,-0.809,0.0,-0.559,-0.809,-0.1816,-0.4755,-0.809,-0.3455,-0.3455,-0.809,-0.4755,-0.1816,-0.809,-0.559,0.0,-0.809,-0.5878,0.0,-0.7071,0.7071,-0.2185,-0.7071,0.6725,-0.4156,-0.7071,0.5721,-0.5721,-0.7071,0.4156,-0.6725,-0.7071,0.2185,-0.7071,-0.7071,0.0,-0.6725,-0.7071,-0.2185,-0.5721,-0.7071,-0.4156,-0.4156,-0.7071,-0.5721,-0.2185,-0.7071,-0.6725,0.0,-0.7071,-0.7071,0.0,-0.5878,0.809,-0.25,-0.5878,0.7694,-0.4755,-0.5878,0.6545,-0.6545,-0.5878,0.4755,-0.7694,-0.5878,0.25,-0.809,-0.5878,0.0,-0.7694,-0.5878,-0.25,-0.6545,-0.5878,-0.4755,-0.4755,-0.5878,-0.6545,-0.25,-0.5878,-0.7694,0.0,-0.5878,-0.809,0.0,-0.454,0.891,-0.2753,-0.454,0.8474,-0.5237,-0.454,0.7208,-0.7208,-0.454,0.5237,-0.8474,-0.454,0.2753,-0.891,-0.454,0.0,-0.8474,-0.454,-0.2753,-0.7208,-0.454,-0.5237,-0.5237,-0.454,-0.7208,-0.2753,-0.454,-0.8474,0.0,-0.454,-0.891,0.0,-0.309,0.9511,-0.2939,-0.309,0.9045,-0.559,-0.309,0.7694,-0.7694,-0.309,0.559,-0.9045,-0.309,0.2939,-0.9511,-0.309,0.0,-0.9045,-0.309,-0.2939,-0.7694,-0.309,-0.559,-0.559,-0.309,-0.7694,-0.2939,-0.309,-0.9045,0.0,-0.309,-0.9511,0.0,-0.1564,0.9877,-0.3052,-0.1564,0.9393,-0.5805,-0.1564,0.7991,-0.7991,-0.1564,0.5805,-0.9393,-0.1564,0.3052,-0.9877,-0.1564,0.0,-0.9393,-0.1564,-0.3052,-0.7991,-0.1564,-0.5805,-0.5805,-0.1564,-0.7991,-0.3052,-0.1564,-0.9393,0.0,-0.1564,-0.9877,0.0,0.0,1.0,-0.309,0.0,0.9511,-0.5878,0.0,0.809,-0.809,0.0,0.5878,-0.9511,0.0,0.309,-1.0,0.0,0.0,-0.9511,0.0,-0.309,-0.809,0.0,-0.5878,-0.5878,0.0,-0.809,-0.309,0.0,-0.9511,0.0,0.0,-1.0,0.0,0.1564,0.9877,-0.3052,0.1564,0.9393,-0.5805,0.1564,0.7991,-0.7991,0.1564,0.5805,-0.9393,0.1564,0.3052,-0.9877,0.1564,0.0,-0.9393,0.1564,-0.3052,-0.7991,0.1564,-0.5805,-0.5805,0.1564,-0.7991,-0.3052,0.1564,-0.9393,0.0,0.1564,-0.9877,0.0,0.309,0.9511,-0.2939,0.309,0.9045,-0.559,0.309,0.7694,-0.7694,0.309,0.559,-0.9045,0.309,0.2939,-0.9511,0.309,0.0,-0.9045,0.309,-0.2939,-0.7694,0.309,-0.559,-0.559,0.309,-0.7694,-0.2939,0.309,-0.9045,0.0,0.309,-0.9511,0.0,0.454,0.891,-0.2753,0.454,0.8474,-0.5237,0.454,0.7208,-0.7208,0.454,0.5237,-0.8474,0.454,0.2753,-0.891,0.454,0.0,-0.8474,0.454,-0.2753,-0.7208,0.454,-0.5237,-0.5237,0.454,-0.7208,-0.2753,0.454,-0.8474,0.0,0.454,-0.891,0.0,0.5878,0.809,-0.25,0.5878,0.7694,-0.4755,0.5878,0.6545,-0.6545,0.5878,0.4755,-0.7694,0.5878,0.25,-0.809,0.5878,0.0,-0.7694,0.5878,-0.25,-0.6545,0.5878,-0.4755,-0.4755,0.5878,-0.6545,-0.25,0.5878,-0.7694,0.0,0.5878,-0.809,0.0,0.7071,0.7071,-0.2185,0.7071,0.6725,-0.4156,0.7071,0.5721,-0.5721,0.7071,0.4156,-0.6725,0.7071,0.2185,-0.7071,0.7071,0.0,-0.6725,0.7071,-0.2185,-0.5721,0.7071,-0.4156,-0.4156,0.7071,-0.5721,-0.2185,0.7071,-0.6725,0.0,0.7071,-0.7071,0.0,0.809,0.5878,-0.1816,0.809,0.559,-0.3455,0.809,0.4755,-0.4755,0.809,0.3455,-0.559,0.809,0.1816,-0.5878,0.809,0.0,-0.559,0.809,-0.1816,-0.4755,0.809,-0.3455,-0.3455,0.809,-0.4755,-0.1816,0.809,-0.559,0.0,0.809,-0.5878,0.0,0.891,0.454,-0.1403,0.891,0.4318,-0.2668,0.891,0.3673,-0.3673,0.891,0.2668,-0.4318,0.891,0.1403,-0.454,0.891,0.0,-0.4318,0.891,-0.1403,-0.3673,0.891,-0.2668,-0.2668,0.891,-0.3673,-0.1403,0.891,-0.4318,0.0,0.891,-0.454,0.0,0.9511,0.309,-0.0955,0.9511,0.2939,-0.1816,0.9511,0.25,-0.25,0.9511,0.1816,-0.2939,0.9511,0.0955,-0.309,0.9511,0.0,-0.2939,0.9511,-0.0955,-0.25,0.9511,-0.1816,-0.1816,0.9511,-0.25,-0.0955,0.9511,-0.2939,0.0,0.9511,-0.309,0.0,0.9877,0.1564,-0.0483,0.9877,0.1488,-0.0919,0.9877,0.1266,-0.1266,0.9877,0.0919,-0.1488,0.9877,0.0483,-0.1564,0.9877,0.0,-0.1488,0.9877,-0.0483,-0.1266,0.9877,-0.0919,-0.0919,0.9877,-0.1266,-0.0483,0.9877,-0.1488,0.0,0.9877,-0.1564,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0],"normals":[-0.0317,-0.9792,0.2003,-0.0619,-0.9797,0.1906,-0.0528,-0.9414,0.3331,-0.1031,-0.9427,0.3173,-0.1178,-0.9797,0.1621,-0.1961,-0.9427,0.2699,-0.1621,-0.9797,0.1178,-0.2699,-0.9427,0.1961,-0.1906,-0.9797,0.0619,-0.3173,-0.9427,0.1031,-0.2004,-0.9797,0.0,-0.3336,-0.9427,0.0,-0.1906,-0.9797,-0.0619,-0.3173,-0.9427,-0.1031,-0.1621,-0.9797,-0.1178,-0.2699,-0.9427,-0.1961,-0.1178,-0.9797,-0.1621,-0.1961,-0.9427,-0.2699,-0.0619,-0.9797,-0.1906,-0.1031,-0.9427,-0.3173,-0.0317,-0.9792,-0.2003,-0.0528,-0.9414,-0.3331,-0.0744,-0.8798,0.4694,-0.1455,-0.8823,0.4477,-0.2767,-0.8823,0.3808,-0.3808,-0.8823,0.2767,-0.4477,-0.8823,0.1455,-0.4708,-0.8823,0.0,-0.4477,-0.8823,-0.1455,-0.3808,-0.8823,-0.2767,-0.2767,-0.8823,-0.3808,-0.1455,-0.8823,-0.4477,-0.0744,-0.8798,-0.4694,-0.0946,-0.7967,0.597,-0.1853,-0.8003,0.5703,-0.3525,-0.8003,0.4851,-0.4851,-0.8003,0.3525,-0.5703,-0.8003,0.1853,-0.5997,-0.8003,0.0,-0.5703,-0.8003,-0.1853,-0.4851,-0.8003,-0.3525,-0.3525,-0.8003,-0.4851,-0.1853,-0.8003,-0.5703,-0.0946,-0.7967,-0.597,-0.1126,-0.6943,0.7108,-0.221,-0.6988,0.6803,-0.4205,-0.6988,0.5787,-0.5787,-0.6988,0.4205,-0.6803,-0.6988,0.221,-0.7153,-0.6988,0.0,-0.6803,-0.6988,-0.221,-0.5787,-0.6988,-0.4205,-0.4205,-0.6988,-0.5787,-0.221,-0.6988,-0.6803,-0.1126,-0.6943,-0.7108,-0.1279,-0.5756,0.8076,-0.2516,-0.5804,0.7745,-0.4787,-0.5804,0.6588,-0.6588,-0.5804,0.4787,-0.7745,-0.5804,0.2516,-0.8143,-0.5804,0.0,-0.7745,-0.5804,-0.2516,-0.6588,-0.5804,-0.4787,-0.4787,-0.5804,-0.6588,-0.2516,-0.5804,-0.7745,-0.1279,-0.5756,-0.8076,-0.1402,-0.4436,0.8852,-0.2763,-0.448,0.8503,-0.5255,-0.448,0.7233,-0.7233,-0.448,0.5255,-0.8503,-0.448,0.2763,-0.894,-0.448,0.0,-0.8503,-0.448,-0.2763,-0.7233,-0.448,-0.5255,-0.5255,-0.448,-0.7233,-0.2763,-0.448,-0.8503,-0.1402,-0.4436,-0.8852,-0.1492,-0.3014,0.9418,-0.2943,-0.3048,0.9058,-0.5598,-0.3048,0.7705,-0.7705,-0.3048,0.5598,-0.9058,-0.3048,0.2943,-0.9524,-0.3048,0.0,-0.9058,-0.3048,-0.2943,-0.7705,-0.3048,-0.5598,-0.5598,-0.3048,-0.7705,-0.2943,-0.3048,-0.9058,-0.1492,-0.3014,-0.9418,-0.1546,-0.1524,0.9762,-0.3053,-0.1542,0.9397,-0.5808,-0.1542,0.7993,-0.7993,-0.1542,0.5808,-0.9397,-0.1542,0.3053,-0.988,-0.1542,0.0,-0.9397,-0.1542,-0.3053,-0.7993,-0.1542,-0.5808,-0.5808,-0.1542,-0.7993,-0.3053,-0.1542,-0.9397,-0.1546,-0.1524,-0.9762,-0.1564,0.0,0.9877,-0.309,0.0,0.9511,-0.5878,0.0,0.809,-0.809,0.0,0.5878,-0.9511,0.0,0.309,-1.0,0.0,0.0,-0.9511,0.0,-0.309,-0.809,0.0,-0.5878,-0.5878,0.0,-0.809,-0.309,0.0,-0.9511,-0.1564,0.0,-0.9877,-0.1546,0.1524,0.9762,-0.3053,0.1542,0.9397,-0.5808,0.1542,0.7993,-0.7993,0.1542,0.5808,-0.9397,0.1542,0.3053,-0.988,0.1542,0.0,-0.9397,0.1542,-0.3053,-0.7993,0.1542,-0.5808,-0.5808,0.1542,-0.7993,-0.3053,0.1542,-0.9397,-0.1546,0.1524,-0.9762,-0.1492,0.3014,0.9418,-0.2943,0.3048,0.9058,-0.5598,0.3048,0.7705,-0.7705,0.3048,0.5598,-0.9058,0.3048,0.2943,-0.9524,0.3048,0.0,-0.9058,0.3048,-0.2943,-0.7705,0.3048,-0.5598,-0.5598,0.3048,-0.7705,-0.2943,0.3048,-0.9058,-0.1492,0.3014,-0.9418,-0.1402,0.4436,0.8852,-0.2763,0.448,0.8503,-0.5255,0.448,0.7233,-0.7233,0.448,0.5255,-0.8503,0.448,0.2763,-0.894,0.448,0.0,-0.8503,0.448,-0.2763,-0.7233,0.448,-0.5255,-0.5255,0.448,-0.7233,-0.2763,0.448,-0.8503,-0.1402,0.4436,-0.8852,-0.1279,0.5756,0.8076,-0.2516,0.5804,0.7745,-0.4787,0.5804,0.6588,-0.6588,0.5804,0.4787,-0.7745,0.5804,0.2516,-0.8143,0.5804,0.0,-0.7745,0.5804,-0.2516,-0.6588,0.5804,-0.4787,-0.4787,0.5804,-0.6588,-0.2516,0.5804,-0.7745,-0.1279,0.5756,-0.8076,-0.1126,0.6943,0.7108,-0.221,0.6988,0.6803,-0.4205,0.6988,0.5787,-0.5787,0.6988,0.4205,-0.6803,0.6988,0.221,-0.7153,0.6988,0.0,-0.6803,0.6988,-0.221,-0.5787,0.6988,-0.4205,-0.4205,0.6988,-0.5787,-0.221,0.6988,-0.6803,-0.1126,0.6943,-0.7108,-0.0946,0.7967,0.597,-0.1853,0.8003,0.5703,-0.3525,0.8003,0.4851,-0.4851,0.8003,0.3525,-0.5703,0.8003,0.1853,-0.5997,0.8003,0.0,-0.5703,0.8003,-0.1853,-0.4851,0.8003,-0.3525,-0.3525,0.8003,-0.4851,-0.1853,0.8003,-0.5703,-0.0946,0.7967,-0.597,-0.0744,0.8798,0.4694,-0.1455,0.8823,0.4477,-0.2767,0.8823,0.3808,-0.3808,0.8823,0.2767,-0.4477,0.8823,0.1455,-0.4708,0.8823,0.0,-0.4477,0.8823,-0.1455,-0.3808,0.8823,-0.2767,-0.2767,0.8823,-0.3808,-0.1455,0.8823,-0.4477,-0.0744,0.8798,-0.4694,-0.0528,0.9414,0.3331,-0.1031,0.9427,0.3173,-0.1961,0.9427,0.2699,-0.2699,0.9427,0.1961,-0.3173,0.9427,0.1031,-0.3336,0.9427,0.0,-0.3173,0.9427,-0.1031,-0.2699,0.9427,-0.1961,-0.1961,0.9427,-0.2699,-0.1031,0.9427,-0.3173,-0.0528,0.9414,-0.3331,-0.0317,0.9792,0.2003,-0.0619,0.9797,0.1906,-0.1178,0.9797,0.1621,-0.1621,0.9797,0.1178,-0.1906,0.9797,0.0619,-0.2004,0.9797,0.0,-0.1906,0.9797,-0.0619,-0.1621,0.9797,-0.1178,-0.1178,0.9797,-0.1621,-0.0619,0.9797,-0.1906,-0.0317,0.9792,-0.2003,-0.0509,-0.9987,0.0,-0.0509,-0.9987,0.0,-0.0509,-0.9987,0.0,-0.0509,-0.9987,0.0,-0.0509,-0.9987,0.0,-0.0509,-0.9987,0.0,-0.0509,-0.9987,0.0,-0.0509,-0.9987,0.0,-0.0509,-0.9987,0.0,-0.0509,-0.9987,0.0,-0.0509,0.9987,0.0,-0.0509,0.9987,0.0,-0.0509,0.9987,0.0,-0.0509,0.9987,0.0,-0.0509,0.9987,0.0,-0.0509,0.9987,0.0,-0.0509,0.9987,0.0,-0.0509,0.9987,0.0,-0.0509,0.9987,0.0,-0.0509,0.9987,0.0],"tangents":[-0.9877,0.0,-0.1564,-1.0,-0.96,0.0062,-0.28,-1.0,-0.9877,0.0,-0.1564,-1.0,-0.9511,0.0,-0.309,-1.0,-0.8265,0.0062,-0.5629,-1.0,-0.809,0.0,-0.5878,-1.0,-0.6121,0.0062,-0.7908,-1.0,-0.5878,0.0,-0.809,-1.0,-0.3378,0.0062,-0.9412,-1.0,-0.309,0.0,-0.9511,-1.0,-0.0304,0.0062,-0.9995,-1.0,0.0,0.0,-1.0,-1.0,0.28,0.0062,-0.96,-1.0,0.309,0.0,-0.9511,-1.0,0.5629,0.0062,-0.8265,-1.0,0.5878,0.0,-0.809,-1.0,0.7908,0.0062,-0.6121,-1.0,0.809,0.0,-0.5878,-1.0,0.9412,0.0062,-0.3378,-1.0,0.9511,0.0,-0.309,-1.0,0.9877,0.0,-0.1564,-1.0,0.9877,0.0,-0.1564,-1.0,-0.9877,0.0,-0.1564,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,0.9877,0.0,-0.1564,-1.0,-0.9877,0.0,-0.1564,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,0.9877,0.0,-0.1564,-1.0,-0.9877,0.0,-0.1564,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,0.9877,0.0,-0.1564,-1.0,-0.9877,0.0,-0.1564,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,0.9877,0.0,-0.1564,-1.0,-0.9877,0.0,-0.1564,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,0.9877,0.0,-0.1564,-1.0,-0.9877,0.0,-0.1564,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,0.9877,0.0,-0.1564,-1.0,-0.9877,0.0,-0.1564,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,0.9877,0.0,-0.1564,-1.0,-0.9877,0.0,-0.1564,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,0.9877,0.0,-0.1564,-1.0,-0.9877,0.0,-0.1564,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,0.9877,0.0,-0.1564,-1.0,-0.9877,0.0,-0.1564,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,0.9877,0.0,-0.1564,-1.0,-0.9877,0.0,-0.1564,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,0.9877,0.0,-0.1564,-1.0,-0.9877,0.0,-0.1564,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,0.9877,0.0,-0.1564,-1.0,-0.9877,0.0,-0.1564,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,0.9877,0.0,-0.1564,-1.0,-0.9877,0.0,-0.1564,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,0.9877,0.0,-0.1564,-1.0,-0.9877,0.0,-0.1564,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,0.9877,0.0,-0.1564,-1.0,-0.9877,0.0,-0.1564,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,0.9877,0.0,-0.1564,-1.0,-0.9877,0.0,-0.1564,-1.0,-0.9412,0.0062,-0.3378,-1.0,-0.7908,0.0062,-0.6121,-1.0,-0.5629,0.0062,-0.8265,-1.0,-0.28,0.0062,-0.96,-1.0,0.0304,0.0062,-0.9995,-1.0,0.3378,0.0062,-0.9412,-1.0,0.6121,0.0062,-0.7908,-1.0,0.8265,0.0062,-0.5629,-1.0,0.96,0.0062,-0.28,-1.0,0.9877,0.0,-0.1564,-1.0,-0.9864,0.0502,-0.1566,-1.0,-0.8896,0.0453,-0.4545,-1.0,-0.7057,0.0359,-0.7076,-1.0,-0.4529,0.0231,-0.8912,-1.0,-0.156,0.0079,-0.9877,-1.0,0.156,-0.0079,-0.9877,-1.0,0.4529,-0.0231,-0.8912,-1.0,0.7057,-0.0359,-0.7076,-1.0,0.8896,-0.0453,-0.4545,-1.0,0.9864,-0.0502,-0.1566,-1.0,-0.9864,-0.0502,-0.1566,-1.0,-0.8896,-0.0453,-0.4545,-1.0,-0.7057,-0.0359,-0.7076,-1.0,-0.4529,-0.0231,-0.8912,-1.0,-0.156,-0.0079,-0.9877,-1.0,0.156,0.0079,-0.9877,-1.0,0.4529,0.0231,-0.8912,-1.0,0.7057,0.0359,-0.7076,-1.0,0.8896,0.0453,-0.4545,-1.0,0.9864,0.0502,-0.1566,-1.0],"uvs":[0.2,0.05,0.25,0.05,0.2,0.1,0.25,0.1,0.3,0.05,0.3,0.1,0.35,0.05,0.35,0.1,0.4,0.05,0.4,0.1,0.45,0.05,0.45,0.1,0.5,0.05,0.5,0.1,0.55,0.05,0.55,0.1,0.6,0.05,0.6,0.1,0.65,0.05,0.65,0.1,0.7,0.05,0.7,0.1,0.2,0.15,0.25,0.15,0.3,0.15,0.35,0.15,0.4,0.15,0.45,0.15,0.5,0.15,0.55,0.15,0.6,0.15,0.65,0.15,0.7,0.15,0.2,0.2,0.25,0.2,0.3,0.2,0.35,0.2,0.4,0.2,0.45,0.2,0.5,0.2,0.55,0.2,0.6,0.2,0.65,0.2,0.7,0.2,0.2,0.25,0.25,0.25,0.3,0.25,0.35,0.25,0.4,0.25,0.45,0.25,0.5,0.25,0.55,0.25,0.6,0.25,0.65,0.25,0.7,0.25,0.2,0.3,0.25,0.3,0.3,0.3,0.35,0.3,0.4,0.3,0.45,0.3,0.5,0.3,0.55,0.3,0.6,0.3,0.65,0.3,0.7,0.3,0.2,0.35,0.25,0.35,0.3,0.35,0.35,0.35,0.4,0.35,0.45,0.35,0.5,0.35,0.55,0.35,0.6,0.35,0.65,0.35,0.7,0.35,0.2,0.4,0.25,0.4,0.3,0.4,0.35,0.4,0.4,0.4,0.45,0.4,0.5,0.4,0.55,0.4,0.6,0.4,0.65,0.4,0.7,0.4,0.2,0.45,0.25,0.45,0.3,0.45,0.35,0.45,0.4,0.45,0.45,0.45,0.5,0.45,0.55,0.45,0.6,0.45,0.65,0.45,0.7,0.45,0.2,0.5,0.25,0.5,0.3,0.5,0.35,0.5,0.4,0.5,0.45,0.5,0.5,0.5,0.55,0.5,0.6,0.5,0.65,0.5,0.7,0.5,0.2,0.55,0.25,0.55,0.3,0.55,0.35,0.55,0.4,0.55,0.45,0.55,0.5,0.55,0.55,0.55,0.6,0.55,0.65,0.55,0.7,0.55,0.2,0.6,0.25,0.6,0.3,0.6,0.35,0.6,0.4,0.6,0.45,0.6,0.5,0.6,0.55,0.6,0.6,0.6,0.65,0.6,0.7,0.6,0.2,0.65,0.25,0.65,0.3,0.65,0.35,0.65,0.4,0.65,0.45,0.65,0.5,0.65,0.55,0.65,0.6,0.65,0.65,0.65,0.7,0.65,0.2,0.7,0.25,0.7,0.3,0.7,0.35,0.7,0.4,0.7,0.45,0.7,0.5,0.7,0.55,0.7,0.6,0.7,0.65,0.7,0.7,0.7,0.2,0.75,0.25,0.75,0.3,0.75,0.35,0.75,0.4,0.75,0.45,0.75,0.5,0.75,0.55,0.75,0.6,0.75,0.65,0.75,0.7,0.75,0.2,0.8,0.25,0.8,0.3,0.8,0.35,0.8,0.4,0.8,0.45,0.8,0.5,0.8,0.55,0.8,0.6,0.8,0.65,0.8,0.7,0.8,0.2,0.85,0.25,0.85,0.3,0.85,0.35,0.85,0.4,0.85,0.45,0.85,0.5,0.85,0.55,0.85,0.6,0.85,0.65,0.85,0.7,0.85,0.2,0.9,0.25,0.9,0.3,0.9,0.35,0.9,0.4,0.9,0.45,0.9,0.5,0.9,0.55,0.9,0.6,0.9,0.65,0.9,0.7,0.9,0.2,0.95,0.25,0.95,0.3,0.95,0.35,0.95,0.4,0.95,0.45,0.95,0.5,0.95,0.55,0.95,0.6,0.95,0.65,0.95,0.7,0.95,0.225,0.0,0.275,0.0,0.325,0.0,0.375,0.0,0.425,0.0,0.475,0.0,0.525,0.0,0.575,0.0,0.625,0.0,0.675,0.0,0.225,1.0,0.275,1.0,0.325,1.0,0.375,1.0,0.425,1.0,0.475,1.0,0.525,1.0,0.575,1.0,0.625,1.0,0.675,1.0],"uvs2":null,"colors":null,"hasVertexAlpha":false,"matricesIndices":null,"matricesWeights":null,"matricesIndicesExtra":null,"matricesWeightsExtra":null,"indices":[0,1,2,2,1,3,1,4,3,3,4,5,4,6,5,5,6,7,6,8,7,7,8,9,8,10,9,9,10,11,10,12,11,11,12,13,12,14,13,13,14,15,14,16,15,15,16,17,16,18,17,17,18,19,18,20,19,19,20,21,2,3,22,22,3,23,3,5,23,23,5,24,5,7,24,24,7,25,7,9,25,25,9,26,9,11,26,26,11,27,11,13,27,27,13,28,13,15,28,28,15,29,15,17,29,29,17,30,17,19,30,30,19,31,19,21,31,31,21,32,22,23,33,33,23,34,23,24,34,34,24,35,24,25,35,35,25,36,25,26,36,36,26,37,26,27,37,37,27,38,27,28,38,38,28,39,28,29,39,39,29,40,29,30,40,40,30,41,30,31,41,41,31,42,31,32,42,42,32,43,33,34,44,44,34,45,34,35,45,45,35,46,35,36,46,46,36,47,36,37,47,47,37,48,37,38,48,48,38,49,38,39,49,49,39,50,39,40,50,50,40,51,40,41,51,51,41,52,41,42,52,52,42,53,42,43,53,53,43,54,44,45,55,55,45,56,45,46,56,56,46,57,46,47,57,57,47,58,47,48,58,58,48,59,48,49,59,59,49,60,49,50,60,60,50,61,50,51,61,61,51,62,51,52,62,62,52,63,52,53,63,63,53,64,53,54,64,64,54,65,55,56,66,66,56,67,56,57,67,67,57,68,57,58,68,68,58,69,58,59,69,69,59,70,59,60,70,70,60,71,60,61,71,71,61,72,61,62,72,72,62,73,62,63,73,73,63,74,63,64,74,74,64,75,64,65,75,75,65,76,66,67,77,77,67,78,67,68,78,78,68,79,68,69,79,79,69,80,69,70,80,80,70,81,70,71,81,81,71,82,71,72,82,82,72,83,72,73,83,83,73,84,73,74,84,84,74,85,74,75,85,85,75,86,75,76,86,86,76,87,77,78,88,88,78,89,78,79,89,89,79,90,79,80,90,90,80,91,80,81,91,91,81,92,81,82,92,92,82,93,82,83,93,93,83,94,83,84,94,94,84,95,84,85,95,95,85,96,85,86,96,96,86,97,86,87,97,97,87,98,88,89,99,99,89,100,89,90,100,100,90,101,90,91,101,101,91,102,91,92,102,102,92,103,92,93,103,103,93,104,93,94,104,104,94,105,94,95,105,105,95,106,95,96,106,106,96,107,96,97,107,107,97,108,97,98,108,108,98,109,99,100,110,110,100,111,100,101,111,111,101,112,101,102,112,112,102,113,102,103,113,113,103,114,103,104,114,114,104,115,104,105,115,115,105,116,105,106,116,116,106,117,106,107,117,117,107,118,107,108,118,118,108,119,108,109,119,119,109,120,110,111,121,121,111,122,111,112,122,122,112,123,112,113,123,123,113,124,113,114,124,124,114,125,114,115,125,125,115,126,115,116,126,126,116,127,116,117,127,127,117,128,117,118,128,128,118,129,118,119,129,129,119,130,119,120,130,130,120,131,121,122,132,132,122,133,122,123,133,133,123,134,123,124,134,134,124,135,124,125,135,135,125,136,125,126,136,136,126,137,126,127,137,137,127,138,127,128,138,138,128,139,128,129,139,139,129,140,129,130,140,140,130,141,130,131,141,141,131,142,132,133,143,143,133,144,133,134,144,144,134,145,134,135,145,145,135,146,135,136,146,146,136,147,136,137,147,147,137,148,137,138,148,148,138,149,138,139,149,149,139,150,139,140,150,150,140,151,140,141,151,151,141,152,141,142,152,152,142,153,143,144,154,154,144,155,144,145,155,155,145,156,145,146,156,156,146,157,146,147,157,157,147,158,147,148,158,158,148,159,148,149,159,159,149,160,149,150,160,160,150,161,150,151,161,161,151,162,151,152,162,162,152,163,152,153,163,163,153,164,154,155,165,165,155,166,155,156,166,166,156,167,156,157,167,167,157,168,157,158,168,168,158,169,158,159,169,169,159,170,159,160,170,170,160,171,160,161,171,171,161,172,161,162,172,172,162,173,162,163,173,173,163,174,163,164,174,174,164,175,165,166,176,176,166,177,166,167,177,177,167,178,167,168,178,178,168,179,168,169,179,179,169,180,169,170,180,180,170,181,170,171,181,181,171,182,171,172,182,182,172,183,172,173,183,183,173,184,173,174,184,184,174,185,174,175,185,185,175,186,176,177,187,187,177,188,177,178,188,188,178,189,178,179,189,189,179,190,179,180,190,190,180,191,180,181,191,191,181,192,181,182,192,192,182,193,182,183,193,193,183,194,183,184,194,194,184,195,184,185,195,195,185,196,185,186,196,196,186,197,187,188,198,198,188,199,188,189,199,199,189,200,189,190,200,200,190,201,190,191,201,201,191,202,191,192,202,202,192,203,192,193,203,203,193,204,193,194,204,204,194,205,194,195,205,205,195,206,195,196,206,206,196,207,196,197,207,207,197,208,1,0,209,4,1,210,6,4,211,8,6,212,10,8,213,12,10,214,14,12,215,16,14,216,18,16,217,20,18,218,198,199,219,199,200,220,200,201,221,201,202,222,202,203,223,203,204,224,204,205,225,205,206,226,206,207,227,207,208,228],"receiveShadows":false,"infiniteDistance":false,"billboardMode":0,"visibility":1.0,"subMeshes":[{"materialIndex":0,"verticesStart":0,"verticesCount":229,"indexStart":0,"indexCount":1140}],"instances":null,"skeletonId":-1,"numBoneInfluencers":4,"applyFog":false,"lodMeshIds":null,"lodDistances":null,"lodCoverages":null,"rotation":null,"scaling":[1.0,1.0,1.0],"rotationQuaternion":[0.0,0.0,0.0,1.0],"actions":null,"checkCollisions":false,"pickable":true,"showBoundingBox":false,"showSubMeshesBoundingBox":false,"alphaIndex":0,"physicsImpostor":0,"physicsMass":0.0,"physicsFriction":0.0,"physicsRestitution":0.0,"name":"pSphere9","id":"96816822-4FDE-8EF8-18C0-9495CA329191","parentId":null,"position":[6.0,0.0,5.0],"animations":[],"autoAnimate":true,"autoAnimateFrom":1,"autoAnimateTo":200,"autoAnimateLoop":true,"metadata":{}},{"materialId":"9B24F14E-4F69-6849-B864-07B9E4A7E9FF","isEnabled":true,"isVisible":true,"positions":[0.0,-0.9877,0.1564,-0.0483,-0.9877,0.1488,0.0,-0.9511,0.309,-0.0955,-0.9511,0.2939,-0.0919,-0.9877,0.1266,-0.1816,-0.9511,0.25,-0.1266,-0.9877,0.0919,-0.25,-0.9511,0.1816,-0.1488,-0.9877,0.0483,-0.2939,-0.9511,0.0955,-0.1564,-0.9877,0.0,-0.309,-0.9511,0.0,-0.1488,-0.9877,-0.0483,-0.2939,-0.9511,-0.0955,-0.1266,-0.9877,-0.0919,-0.25,-0.9511,-0.1816,-0.0919,-0.9877,-0.1266,-0.1816,-0.9511,-0.25,-0.0483,-0.9877,-0.1488,-0.0955,-0.9511,-0.2939,0.0,-0.9877,-0.1564,0.0,-0.9511,-0.309,0.0,-0.891,0.454,-0.1403,-0.891,0.4318,-0.2668,-0.891,0.3673,-0.3673,-0.891,0.2668,-0.4318,-0.891,0.1403,-0.454,-0.891,0.0,-0.4318,-0.891,-0.1403,-0.3673,-0.891,-0.2668,-0.2668,-0.891,-0.3673,-0.1403,-0.891,-0.4318,0.0,-0.891,-0.454,0.0,-0.809,0.5878,-0.1816,-0.809,0.559,-0.3455,-0.809,0.4755,-0.4755,-0.809,0.3455,-0.559,-0.809,0.1816,-0.5878,-0.809,0.0,-0.559,-0.809,-0.1816,-0.4755,-0.809,-0.3455,-0.3455,-0.809,-0.4755,-0.1816,-0.809,-0.559,0.0,-0.809,-0.5878,0.0,-0.7071,0.7071,-0.2185,-0.7071,0.6725,-0.4156,-0.7071,0.5721,-0.5721,-0.7071,0.4156,-0.6725,-0.7071,0.2185,-0.7071,-0.7071,0.0,-0.6725,-0.7071,-0.2185,-0.5721,-0.7071,-0.4156,-0.4156,-0.7071,-0.5721,-0.2185,-0.7071,-0.6725,0.0,-0.7071,-0.7071,0.0,-0.5878,0.809,-0.25,-0.5878,0.7694,-0.4755,-0.5878,0.6545,-0.6545,-0.5878,0.4755,-0.7694,-0.5878,0.25,-0.809,-0.5878,0.0,-0.7694,-0.5878,-0.25,-0.6545,-0.5878,-0.4755,-0.4755,-0.5878,-0.6545,-0.25,-0.5878,-0.7694,0.0,-0.5878,-0.809,0.0,-0.454,0.891,-0.2753,-0.454,0.8474,-0.5237,-0.454,0.7208,-0.7208,-0.454,0.5237,-0.8474,-0.454,0.2753,-0.891,-0.454,0.0,-0.8474,-0.454,-0.2753,-0.7208,-0.454,-0.5237,-0.5237,-0.454,-0.7208,-0.2753,-0.454,-0.8474,0.0,-0.454,-0.891,0.0,-0.309,0.9511,-0.2939,-0.309,0.9045,-0.559,-0.309,0.7694,-0.7694,-0.309,0.559,-0.9045,-0.309,0.2939,-0.9511,-0.309,0.0,-0.9045,-0.309,-0.2939,-0.7694,-0.309,-0.559,-0.559,-0.309,-0.7694,-0.2939,-0.309,-0.9045,0.0,-0.309,-0.9511,0.0,-0.1564,0.9877,-0.3052,-0.1564,0.9393,-0.5805,-0.1564,0.7991,-0.7991,-0.1564,0.5805,-0.9393,-0.1564,0.3052,-0.9877,-0.1564,0.0,-0.9393,-0.1564,-0.3052,-0.7991,-0.1564,-0.5805,-0.5805,-0.1564,-0.7991,-0.3052,-0.1564,-0.9393,0.0,-0.1564,-0.9877,0.0,0.0,1.0,-0.309,0.0,0.9511,-0.5878,0.0,0.809,-0.809,0.0,0.5878,-0.9511,0.0,0.309,-1.0,0.0,0.0,-0.9511,0.0,-0.309,-0.809,0.0,-0.5878,-0.5878,0.0,-0.809,-0.309,0.0,-0.9511,0.0,0.0,-1.0,0.0,0.1564,0.9877,-0.3052,0.1564,0.9393,-0.5805,0.1564,0.7991,-0.7991,0.1564,0.5805,-0.9393,0.1564,0.3052,-0.9877,0.1564,0.0,-0.9393,0.1564,-0.3052,-0.7991,0.1564,-0.5805,-0.5805,0.1564,-0.7991,-0.3052,0.1564,-0.9393,0.0,0.1564,-0.9877,0.0,0.309,0.9511,-0.2939,0.309,0.9045,-0.559,0.309,0.7694,-0.7694,0.309,0.559,-0.9045,0.309,0.2939,-0.9511,0.309,0.0,-0.9045,0.309,-0.2939,-0.7694,0.309,-0.559,-0.559,0.309,-0.7694,-0.2939,0.309,-0.9045,0.0,0.309,-0.9511,0.0,0.454,0.891,-0.2753,0.454,0.8474,-0.5237,0.454,0.7208,-0.7208,0.454,0.5237,-0.8474,0.454,0.2753,-0.891,0.454,0.0,-0.8474,0.454,-0.2753,-0.7208,0.454,-0.5237,-0.5237,0.454,-0.7208,-0.2753,0.454,-0.8474,0.0,0.454,-0.891,0.0,0.5878,0.809,-0.25,0.5878,0.7694,-0.4755,0.5878,0.6545,-0.6545,0.5878,0.4755,-0.7694,0.5878,0.25,-0.809,0.5878,0.0,-0.7694,0.5878,-0.25,-0.6545,0.5878,-0.4755,-0.4755,0.5878,-0.6545,-0.25,0.5878,-0.7694,0.0,0.5878,-0.809,0.0,0.7071,0.7071,-0.2185,0.7071,0.6725,-0.4156,0.7071,0.5721,-0.5721,0.7071,0.4156,-0.6725,0.7071,0.2185,-0.7071,0.7071,0.0,-0.6725,0.7071,-0.2185,-0.5721,0.7071,-0.4156,-0.4156,0.7071,-0.5721,-0.2185,0.7071,-0.6725,0.0,0.7071,-0.7071,0.0,0.809,0.5878,-0.1816,0.809,0.559,-0.3455,0.809,0.4755,-0.4755,0.809,0.3455,-0.559,0.809,0.1816,-0.5878,0.809,0.0,-0.559,0.809,-0.1816,-0.4755,0.809,-0.3455,-0.3455,0.809,-0.4755,-0.1816,0.809,-0.559,0.0,0.809,-0.5878,0.0,0.891,0.454,-0.1403,0.891,0.4318,-0.2668,0.891,0.3673,-0.3673,0.891,0.2668,-0.4318,0.891,0.1403,-0.454,0.891,0.0,-0.4318,0.891,-0.1403,-0.3673,0.891,-0.2668,-0.2668,0.891,-0.3673,-0.1403,0.891,-0.4318,0.0,0.891,-0.454,0.0,0.9511,0.309,-0.0955,0.9511,0.2939,-0.1816,0.9511,0.25,-0.25,0.9511,0.1816,-0.2939,0.9511,0.0955,-0.309,0.9511,0.0,-0.2939,0.9511,-0.0955,-0.25,0.9511,-0.1816,-0.1816,0.9511,-0.25,-0.0955,0.9511,-0.2939,0.0,0.9511,-0.309,0.0,0.9877,0.1564,-0.0483,0.9877,0.1488,-0.0919,0.9877,0.1266,-0.1266,0.9877,0.0919,-0.1488,0.9877,0.0483,-0.1564,0.9877,0.0,-0.1488,0.9877,-0.0483,-0.1266,0.9877,-0.0919,-0.0919,0.9877,-0.1266,-0.0483,0.9877,-0.1488,0.0,0.9877,-0.1564,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0],"normals":[-0.0317,-0.9792,0.2003,-0.0619,-0.9797,0.1906,-0.0528,-0.9414,0.3331,-0.1031,-0.9427,0.3173,-0.1178,-0.9797,0.1621,-0.1961,-0.9427,0.2699,-0.1621,-0.9797,0.1178,-0.2699,-0.9427,0.1961,-0.1906,-0.9797,0.0619,-0.3173,-0.9427,0.1031,-0.2004,-0.9797,0.0,-0.3336,-0.9427,0.0,-0.1906,-0.9797,-0.0619,-0.3173,-0.9427,-0.1031,-0.1621,-0.9797,-0.1178,-0.2699,-0.9427,-0.1961,-0.1178,-0.9797,-0.1621,-0.1961,-0.9427,-0.2699,-0.0619,-0.9797,-0.1906,-0.1031,-0.9427,-0.3173,-0.0317,-0.9792,-0.2003,-0.0528,-0.9414,-0.3331,-0.0744,-0.8798,0.4694,-0.1455,-0.8823,0.4477,-0.2767,-0.8823,0.3808,-0.3808,-0.8823,0.2767,-0.4477,-0.8823,0.1455,-0.4708,-0.8823,0.0,-0.4477,-0.8823,-0.1455,-0.3808,-0.8823,-0.2767,-0.2767,-0.8823,-0.3808,-0.1455,-0.8823,-0.4477,-0.0744,-0.8798,-0.4694,-0.0946,-0.7967,0.597,-0.1853,-0.8003,0.5703,-0.3525,-0.8003,0.4851,-0.4851,-0.8003,0.3525,-0.5703,-0.8003,0.1853,-0.5997,-0.8003,0.0,-0.5703,-0.8003,-0.1853,-0.4851,-0.8003,-0.3525,-0.3525,-0.8003,-0.4851,-0.1853,-0.8003,-0.5703,-0.0946,-0.7967,-0.597,-0.1126,-0.6943,0.7108,-0.221,-0.6988,0.6803,-0.4205,-0.6988,0.5787,-0.5787,-0.6988,0.4205,-0.6803,-0.6988,0.221,-0.7153,-0.6988,0.0,-0.6803,-0.6988,-0.221,-0.5787,-0.6988,-0.4205,-0.4205,-0.6988,-0.5787,-0.221,-0.6988,-0.6803,-0.1126,-0.6943,-0.7108,-0.1279,-0.5756,0.8076,-0.2516,-0.5804,0.7745,-0.4787,-0.5804,0.6588,-0.6588,-0.5804,0.4787,-0.7745,-0.5804,0.2516,-0.8143,-0.5804,0.0,-0.7745,-0.5804,-0.2516,-0.6588,-0.5804,-0.4787,-0.4787,-0.5804,-0.6588,-0.2516,-0.5804,-0.7745,-0.1279,-0.5756,-0.8076,-0.1402,-0.4436,0.8852,-0.2763,-0.448,0.8503,-0.5255,-0.448,0.7233,-0.7233,-0.448,0.5255,-0.8503,-0.448,0.2763,-0.894,-0.448,0.0,-0.8503,-0.448,-0.2763,-0.7233,-0.448,-0.5255,-0.5255,-0.448,-0.7233,-0.2763,-0.448,-0.8503,-0.1402,-0.4436,-0.8852,-0.1492,-0.3014,0.9418,-0.2943,-0.3048,0.9058,-0.5598,-0.3048,0.7705,-0.7705,-0.3048,0.5598,-0.9058,-0.3048,0.2943,-0.9524,-0.3048,0.0,-0.9058,-0.3048,-0.2943,-0.7705,-0.3048,-0.5598,-0.5598,-0.3048,-0.7705,-0.2943,-0.3048,-0.9058,-0.1492,-0.3014,-0.9418,-0.1546,-0.1524,0.9762,-0.3053,-0.1542,0.9397,-0.5808,-0.1542,0.7993,-0.7993,-0.1542,0.5808,-0.9397,-0.1542,0.3053,-0.988,-0.1542,0.0,-0.9397,-0.1542,-0.3053,-0.7993,-0.1542,-0.5808,-0.5808,-0.1542,-0.7993,-0.3053,-0.1542,-0.9397,-0.1546,-0.1524,-0.9762,-0.1564,0.0,0.9877,-0.309,0.0,0.9511,-0.5878,0.0,0.809,-0.809,0.0,0.5878,-0.9511,0.0,0.309,-1.0,0.0,0.0,-0.9511,0.0,-0.309,-0.809,0.0,-0.5878,-0.5878,0.0,-0.809,-0.309,0.0,-0.9511,-0.1564,0.0,-0.9877,-0.1546,0.1524,0.9762,-0.3053,0.1542,0.9397,-0.5808,0.1542,0.7993,-0.7993,0.1542,0.5808,-0.9397,0.1542,0.3053,-0.988,0.1542,0.0,-0.9397,0.1542,-0.3053,-0.7993,0.1542,-0.5808,-0.5808,0.1542,-0.7993,-0.3053,0.1542,-0.9397,-0.1546,0.1524,-0.9762,-0.1492,0.3014,0.9418,-0.2943,0.3048,0.9058,-0.5598,0.3048,0.7705,-0.7705,0.3048,0.5598,-0.9058,0.3048,0.2943,-0.9524,0.3048,0.0,-0.9058,0.3048,-0.2943,-0.7705,0.3048,-0.5598,-0.5598,0.3048,-0.7705,-0.2943,0.3048,-0.9058,-0.1492,0.3014,-0.9418,-0.1402,0.4436,0.8852,-0.2763,0.448,0.8503,-0.5255,0.448,0.7233,-0.7233,0.448,0.5255,-0.8503,0.448,0.2763,-0.894,0.448,0.0,-0.8503,0.448,-0.2763,-0.7233,0.448,-0.5255,-0.5255,0.448,-0.7233,-0.2763,0.448,-0.8503,-0.1402,0.4436,-0.8852,-0.1279,0.5756,0.8076,-0.2516,0.5804,0.7745,-0.4787,0.5804,0.6588,-0.6588,0.5804,0.4787,-0.7745,0.5804,0.2516,-0.8143,0.5804,0.0,-0.7745,0.5804,-0.2516,-0.6588,0.5804,-0.4787,-0.4787,0.5804,-0.6588,-0.2516,0.5804,-0.7745,-0.1279,0.5756,-0.8076,-0.1126,0.6943,0.7108,-0.221,0.6988,0.6803,-0.4205,0.6988,0.5787,-0.5787,0.6988,0.4205,-0.6803,0.6988,0.221,-0.7153,0.6988,0.0,-0.6803,0.6988,-0.221,-0.5787,0.6988,-0.4205,-0.4205,0.6988,-0.5787,-0.221,0.6988,-0.6803,-0.1126,0.6943,-0.7108,-0.0946,0.7967,0.597,-0.1853,0.8003,0.5703,-0.3525,0.8003,0.4851,-0.4851,0.8003,0.3525,-0.5703,0.8003,0.1853,-0.5997,0.8003,0.0,-0.5703,0.8003,-0.1853,-0.4851,0.8003,-0.3525,-0.3525,0.8003,-0.4851,-0.1853,0.8003,-0.5703,-0.0946,0.7967,-0.597,-0.0744,0.8798,0.4694,-0.1455,0.8823,0.4477,-0.2767,0.8823,0.3808,-0.3808,0.8823,0.2767,-0.4477,0.8823,0.1455,-0.4708,0.8823,0.0,-0.4477,0.8823,-0.1455,-0.3808,0.8823,-0.2767,-0.2767,0.8823,-0.3808,-0.1455,0.8823,-0.4477,-0.0744,0.8798,-0.4694,-0.0528,0.9414,0.3331,-0.1031,0.9427,0.3173,-0.1961,0.9427,0.2699,-0.2699,0.9427,0.1961,-0.3173,0.9427,0.1031,-0.3336,0.9427,0.0,-0.3173,0.9427,-0.1031,-0.2699,0.9427,-0.1961,-0.1961,0.9427,-0.2699,-0.1031,0.9427,-0.3173,-0.0528,0.9414,-0.3331,-0.0317,0.9792,0.2003,-0.0619,0.9797,0.1906,-0.1178,0.9797,0.1621,-0.1621,0.9797,0.1178,-0.1906,0.9797,0.0619,-0.2004,0.9797,0.0,-0.1906,0.9797,-0.0619,-0.1621,0.9797,-0.1178,-0.1178,0.9797,-0.1621,-0.0619,0.9797,-0.1906,-0.0317,0.9792,-0.2003,-0.0509,-0.9987,0.0,-0.0509,-0.9987,0.0,-0.0509,-0.9987,0.0,-0.0509,-0.9987,0.0,-0.0509,-0.9987,0.0,-0.0509,-0.9987,0.0,-0.0509,-0.9987,0.0,-0.0509,-0.9987,0.0,-0.0509,-0.9987,0.0,-0.0509,-0.9987,0.0,-0.0509,0.9987,0.0,-0.0509,0.9987,0.0,-0.0509,0.9987,0.0,-0.0509,0.9987,0.0,-0.0509,0.9987,0.0,-0.0509,0.9987,0.0,-0.0509,0.9987,0.0,-0.0509,0.9987,0.0,-0.0509,0.9987,0.0,-0.0509,0.9987,0.0],"tangents":[-0.9877,0.0,-0.1564,-1.0,-0.96,0.0062,-0.28,-1.0,-0.9877,0.0,-0.1564,-1.0,-0.9511,0.0,-0.309,-1.0,-0.8265,0.0062,-0.5629,-1.0,-0.809,0.0,-0.5878,-1.0,-0.6121,0.0062,-0.7908,-1.0,-0.5878,0.0,-0.809,-1.0,-0.3378,0.0062,-0.9412,-1.0,-0.309,0.0,-0.9511,-1.0,-0.0304,0.0062,-0.9995,-1.0,0.0,0.0,-1.0,-1.0,0.28,0.0062,-0.96,-1.0,0.309,0.0,-0.9511,-1.0,0.5629,0.0062,-0.8265,-1.0,0.5878,0.0,-0.809,-1.0,0.7908,0.0062,-0.6121,-1.0,0.809,0.0,-0.5878,-1.0,0.9412,0.0062,-0.3378,-1.0,0.9511,0.0,-0.309,-1.0,0.9877,0.0,-0.1564,-1.0,0.9877,0.0,-0.1564,-1.0,-0.9877,0.0,-0.1564,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,0.9877,0.0,-0.1564,-1.0,-0.9877,0.0,-0.1564,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,0.9877,0.0,-0.1564,-1.0,-0.9877,0.0,-0.1564,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,0.9877,0.0,-0.1564,-1.0,-0.9877,0.0,-0.1564,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,0.9877,0.0,-0.1564,-1.0,-0.9877,0.0,-0.1564,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,0.9877,0.0,-0.1564,-1.0,-0.9877,0.0,-0.1564,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,0.9877,0.0,-0.1564,-1.0,-0.9877,0.0,-0.1564,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,0.9877,0.0,-0.1564,-1.0,-0.9877,0.0,-0.1564,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,0.9877,0.0,-0.1564,-1.0,-0.9877,0.0,-0.1564,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,0.9877,0.0,-0.1564,-1.0,-0.9877,0.0,-0.1564,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,0.9877,0.0,-0.1564,-1.0,-0.9877,0.0,-0.1564,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,0.9877,0.0,-0.1564,-1.0,-0.9877,0.0,-0.1564,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,0.9877,0.0,-0.1564,-1.0,-0.9877,0.0,-0.1564,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,0.9877,0.0,-0.1564,-1.0,-0.9877,0.0,-0.1564,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,0.9877,0.0,-0.1564,-1.0,-0.9877,0.0,-0.1564,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,0.9877,0.0,-0.1564,-1.0,-0.9877,0.0,-0.1564,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,0.9877,0.0,-0.1564,-1.0,-0.9877,0.0,-0.1564,-1.0,-0.9412,0.0062,-0.3378,-1.0,-0.7908,0.0062,-0.6121,-1.0,-0.5629,0.0062,-0.8265,-1.0,-0.28,0.0062,-0.96,-1.0,0.0304,0.0062,-0.9995,-1.0,0.3378,0.0062,-0.9412,-1.0,0.6121,0.0062,-0.7908,-1.0,0.8265,0.0062,-0.5629,-1.0,0.96,0.0062,-0.28,-1.0,0.9877,0.0,-0.1564,-1.0,-0.9864,0.0502,-0.1566,-1.0,-0.8896,0.0453,-0.4545,-1.0,-0.7057,0.0359,-0.7076,-1.0,-0.4529,0.0231,-0.8912,-1.0,-0.156,0.0079,-0.9877,-1.0,0.156,-0.0079,-0.9877,-1.0,0.4529,-0.0231,-0.8912,-1.0,0.7057,-0.0359,-0.7076,-1.0,0.8896,-0.0453,-0.4545,-1.0,0.9864,-0.0502,-0.1566,-1.0,-0.9864,-0.0502,-0.1566,-1.0,-0.8896,-0.0453,-0.4545,-1.0,-0.7057,-0.0359,-0.7076,-1.0,-0.4529,-0.0231,-0.8912,-1.0,-0.156,-0.0079,-0.9877,-1.0,0.156,0.0079,-0.9877,-1.0,0.4529,0.0231,-0.8912,-1.0,0.7057,0.0359,-0.7076,-1.0,0.8896,0.0453,-0.4545,-1.0,0.9864,0.0502,-0.1566,-1.0],"uvs":[0.2,0.05,0.25,0.05,0.2,0.1,0.25,0.1,0.3,0.05,0.3,0.1,0.35,0.05,0.35,0.1,0.4,0.05,0.4,0.1,0.45,0.05,0.45,0.1,0.5,0.05,0.5,0.1,0.55,0.05,0.55,0.1,0.6,0.05,0.6,0.1,0.65,0.05,0.65,0.1,0.7,0.05,0.7,0.1,0.2,0.15,0.25,0.15,0.3,0.15,0.35,0.15,0.4,0.15,0.45,0.15,0.5,0.15,0.55,0.15,0.6,0.15,0.65,0.15,0.7,0.15,0.2,0.2,0.25,0.2,0.3,0.2,0.35,0.2,0.4,0.2,0.45,0.2,0.5,0.2,0.55,0.2,0.6,0.2,0.65,0.2,0.7,0.2,0.2,0.25,0.25,0.25,0.3,0.25,0.35,0.25,0.4,0.25,0.45,0.25,0.5,0.25,0.55,0.25,0.6,0.25,0.65,0.25,0.7,0.25,0.2,0.3,0.25,0.3,0.3,0.3,0.35,0.3,0.4,0.3,0.45,0.3,0.5,0.3,0.55,0.3,0.6,0.3,0.65,0.3,0.7,0.3,0.2,0.35,0.25,0.35,0.3,0.35,0.35,0.35,0.4,0.35,0.45,0.35,0.5,0.35,0.55,0.35,0.6,0.35,0.65,0.35,0.7,0.35,0.2,0.4,0.25,0.4,0.3,0.4,0.35,0.4,0.4,0.4,0.45,0.4,0.5,0.4,0.55,0.4,0.6,0.4,0.65,0.4,0.7,0.4,0.2,0.45,0.25,0.45,0.3,0.45,0.35,0.45,0.4,0.45,0.45,0.45,0.5,0.45,0.55,0.45,0.6,0.45,0.65,0.45,0.7,0.45,0.2,0.5,0.25,0.5,0.3,0.5,0.35,0.5,0.4,0.5,0.45,0.5,0.5,0.5,0.55,0.5,0.6,0.5,0.65,0.5,0.7,0.5,0.2,0.55,0.25,0.55,0.3,0.55,0.35,0.55,0.4,0.55,0.45,0.55,0.5,0.55,0.55,0.55,0.6,0.55,0.65,0.55,0.7,0.55,0.2,0.6,0.25,0.6,0.3,0.6,0.35,0.6,0.4,0.6,0.45,0.6,0.5,0.6,0.55,0.6,0.6,0.6,0.65,0.6,0.7,0.6,0.2,0.65,0.25,0.65,0.3,0.65,0.35,0.65,0.4,0.65,0.45,0.65,0.5,0.65,0.55,0.65,0.6,0.65,0.65,0.65,0.7,0.65,0.2,0.7,0.25,0.7,0.3,0.7,0.35,0.7,0.4,0.7,0.45,0.7,0.5,0.7,0.55,0.7,0.6,0.7,0.65,0.7,0.7,0.7,0.2,0.75,0.25,0.75,0.3,0.75,0.35,0.75,0.4,0.75,0.45,0.75,0.5,0.75,0.55,0.75,0.6,0.75,0.65,0.75,0.7,0.75,0.2,0.8,0.25,0.8,0.3,0.8,0.35,0.8,0.4,0.8,0.45,0.8,0.5,0.8,0.55,0.8,0.6,0.8,0.65,0.8,0.7,0.8,0.2,0.85,0.25,0.85,0.3,0.85,0.35,0.85,0.4,0.85,0.45,0.85,0.5,0.85,0.55,0.85,0.6,0.85,0.65,0.85,0.7,0.85,0.2,0.9,0.25,0.9,0.3,0.9,0.35,0.9,0.4,0.9,0.45,0.9,0.5,0.9,0.55,0.9,0.6,0.9,0.65,0.9,0.7,0.9,0.2,0.95,0.25,0.95,0.3,0.95,0.35,0.95,0.4,0.95,0.45,0.95,0.5,0.95,0.55,0.95,0.6,0.95,0.65,0.95,0.7,0.95,0.225,0.0,0.275,0.0,0.325,0.0,0.375,0.0,0.425,0.0,0.475,0.0,0.525,0.0,0.575,0.0,0.625,0.0,0.675,0.0,0.225,1.0,0.275,1.0,0.325,1.0,0.375,1.0,0.425,1.0,0.475,1.0,0.525,1.0,0.575,1.0,0.625,1.0,0.675,1.0],"uvs2":null,"colors":null,"hasVertexAlpha":false,"matricesIndices":null,"matricesWeights":null,"matricesIndicesExtra":null,"matricesWeightsExtra":null,"indices":[0,1,2,2,1,3,1,4,3,3,4,5,4,6,5,5,6,7,6,8,7,7,8,9,8,10,9,9,10,11,10,12,11,11,12,13,12,14,13,13,14,15,14,16,15,15,16,17,16,18,17,17,18,19,18,20,19,19,20,21,2,3,22,22,3,23,3,5,23,23,5,24,5,7,24,24,7,25,7,9,25,25,9,26,9,11,26,26,11,27,11,13,27,27,13,28,13,15,28,28,15,29,15,17,29,29,17,30,17,19,30,30,19,31,19,21,31,31,21,32,22,23,33,33,23,34,23,24,34,34,24,35,24,25,35,35,25,36,25,26,36,36,26,37,26,27,37,37,27,38,27,28,38,38,28,39,28,29,39,39,29,40,29,30,40,40,30,41,30,31,41,41,31,42,31,32,42,42,32,43,33,34,44,44,34,45,34,35,45,45,35,46,35,36,46,46,36,47,36,37,47,47,37,48,37,38,48,48,38,49,38,39,49,49,39,50,39,40,50,50,40,51,40,41,51,51,41,52,41,42,52,52,42,53,42,43,53,53,43,54,44,45,55,55,45,56,45,46,56,56,46,57,46,47,57,57,47,58,47,48,58,58,48,59,48,49,59,59,49,60,49,50,60,60,50,61,50,51,61,61,51,62,51,52,62,62,52,63,52,53,63,63,53,64,53,54,64,64,54,65,55,56,66,66,56,67,56,57,67,67,57,68,57,58,68,68,58,69,58,59,69,69,59,70,59,60,70,70,60,71,60,61,71,71,61,72,61,62,72,72,62,73,62,63,73,73,63,74,63,64,74,74,64,75,64,65,75,75,65,76,66,67,77,77,67,78,67,68,78,78,68,79,68,69,79,79,69,80,69,70,80,80,70,81,70,71,81,81,71,82,71,72,82,82,72,83,72,73,83,83,73,84,73,74,84,84,74,85,74,75,85,85,75,86,75,76,86,86,76,87,77,78,88,88,78,89,78,79,89,89,79,90,79,80,90,90,80,91,80,81,91,91,81,92,81,82,92,92,82,93,82,83,93,93,83,94,83,84,94,94,84,95,84,85,95,95,85,96,85,86,96,96,86,97,86,87,97,97,87,98,88,89,99,99,89,100,89,90,100,100,90,101,90,91,101,101,91,102,91,92,102,102,92,103,92,93,103,103,93,104,93,94,104,104,94,105,94,95,105,105,95,106,95,96,106,106,96,107,96,97,107,107,97,108,97,98,108,108,98,109,99,100,110,110,100,111,100,101,111,111,101,112,101,102,112,112,102,113,102,103,113,113,103,114,103,104,114,114,104,115,104,105,115,115,105,116,105,106,116,116,106,117,106,107,117,117,107,118,107,108,118,118,108,119,108,109,119,119,109,120,110,111,121,121,111,122,111,112,122,122,112,123,112,113,123,123,113,124,113,114,124,124,114,125,114,115,125,125,115,126,115,116,126,126,116,127,116,117,127,127,117,128,117,118,128,128,118,129,118,119,129,129,119,130,119,120,130,130,120,131,121,122,132,132,122,133,122,123,133,133,123,134,123,124,134,134,124,135,124,125,135,135,125,136,125,126,136,136,126,137,126,127,137,137,127,138,127,128,138,138,128,139,128,129,139,139,129,140,129,130,140,140,130,141,130,131,141,141,131,142,132,133,143,143,133,144,133,134,144,144,134,145,134,135,145,145,135,146,135,136,146,146,136,147,136,137,147,147,137,148,137,138,148,148,138,149,138,139,149,149,139,150,139,140,150,150,140,151,140,141,151,151,141,152,141,142,152,152,142,153,143,144,154,154,144,155,144,145,155,155,145,156,145,146,156,156,146,157,146,147,157,157,147,158,147,148,158,158,148,159,148,149,159,159,149,160,149,150,160,160,150,161,150,151,161,161,151,162,151,152,162,162,152,163,152,153,163,163,153,164,154,155,165,165,155,166,155,156,166,166,156,167,156,157,167,167,157,168,157,158,168,168,158,169,158,159,169,169,159,170,159,160,170,170,160,171,160,161,171,171,161,172,161,162,172,172,162,173,162,163,173,173,163,174,163,164,174,174,164,175,165,166,176,176,166,177,166,167,177,177,167,178,167,168,178,178,168,179,168,169,179,179,169,180,169,170,180,180,170,181,170,171,181,181,171,182,171,172,182,182,172,183,172,173,183,183,173,184,173,174,184,184,174,185,174,175,185,185,175,186,176,177,187,187,177,188,177,178,188,188,178,189,178,179,189,189,179,190,179,180,190,190,180,191,180,181,191,191,181,192,181,182,192,192,182,193,182,183,193,193,183,194,183,184,194,194,184,195,184,185,195,195,185,196,185,186,196,196,186,197,187,188,198,198,188,199,188,189,199,199,189,200,189,190,200,200,190,201,190,191,201,201,191,202,191,192,202,202,192,203,192,193,203,203,193,204,193,194,204,204,194,205,194,195,205,205,195,206,195,196,206,206,196,207,196,197,207,207,197,208,1,0,209,4,1,210,6,4,211,8,6,212,10,8,213,12,10,214,14,12,215,16,14,216,18,16,217,20,18,218,198,199,219,199,200,220,200,201,221,201,202,222,202,203,223,203,204,224,204,205,225,205,206,226,206,207,227,207,208,228],"receiveShadows":false,"infiniteDistance":false,"billboardMode":0,"visibility":1.0,"subMeshes":[{"materialIndex":0,"verticesStart":0,"verticesCount":229,"indexStart":0,"indexCount":1140}],"instances":null,"skeletonId":-1,"numBoneInfluencers":4,"applyFog":false,"lodMeshIds":null,"lodDistances":null,"lodCoverages":null,"rotation":null,"scaling":[1.0,1.0,1.0],"rotationQuaternion":[0.0,0.0,0.0,1.0],"actions":null,"checkCollisions":false,"pickable":true,"showBoundingBox":false,"showSubMeshesBoundingBox":false,"alphaIndex":0,"physicsImpostor":0,"physicsMass":0.0,"physicsFriction":0.0,"physicsRestitution":0.0,"name":"pSphere10","id":"06F1F552-48DC-2080-0822-A0BA1A4ECB43","parentId":null,"position":[0.0,0.0,5.0],"animations":[],"autoAnimate":true,"autoAnimateFrom":1,"autoAnimateTo":200,"autoAnimateLoop":true,"metadata":{}},{"materialId":"79694F83-471A-939B-E14E-3F993E2D1D36","isEnabled":true,"isVisible":true,"positions":[0.0,-0.9877,0.1564,-0.0483,-0.9877,0.1488,0.0,-0.9511,0.309,-0.0955,-0.9511,0.2939,-0.0919,-0.9877,0.1266,-0.1816,-0.9511,0.25,-0.1266,-0.9877,0.0919,-0.25,-0.9511,0.1816,-0.1488,-0.9877,0.0483,-0.2939,-0.9511,0.0955,-0.1564,-0.9877,0.0,-0.309,-0.9511,0.0,-0.1488,-0.9877,-0.0483,-0.2939,-0.9511,-0.0955,-0.1266,-0.9877,-0.0919,-0.25,-0.9511,-0.1816,-0.0919,-0.9877,-0.1266,-0.1816,-0.9511,-0.25,-0.0483,-0.9877,-0.1488,-0.0955,-0.9511,-0.2939,0.0,-0.9877,-0.1564,0.0,-0.9511,-0.309,0.0,-0.891,0.454,-0.1403,-0.891,0.4318,-0.2668,-0.891,0.3673,-0.3673,-0.891,0.2668,-0.4318,-0.891,0.1403,-0.454,-0.891,0.0,-0.4318,-0.891,-0.1403,-0.3673,-0.891,-0.2668,-0.2668,-0.891,-0.3673,-0.1403,-0.891,-0.4318,0.0,-0.891,-0.454,0.0,-0.809,0.5878,-0.1816,-0.809,0.559,-0.3455,-0.809,0.4755,-0.4755,-0.809,0.3455,-0.559,-0.809,0.1816,-0.5878,-0.809,0.0,-0.559,-0.809,-0.1816,-0.4755,-0.809,-0.3455,-0.3455,-0.809,-0.4755,-0.1816,-0.809,-0.559,0.0,-0.809,-0.5878,0.0,-0.7071,0.7071,-0.2185,-0.7071,0.6725,-0.4156,-0.7071,0.5721,-0.5721,-0.7071,0.4156,-0.6725,-0.7071,0.2185,-0.7071,-0.7071,0.0,-0.6725,-0.7071,-0.2185,-0.5721,-0.7071,-0.4156,-0.4156,-0.7071,-0.5721,-0.2185,-0.7071,-0.6725,0.0,-0.7071,-0.7071,0.0,-0.5878,0.809,-0.25,-0.5878,0.7694,-0.4755,-0.5878,0.6545,-0.6545,-0.5878,0.4755,-0.7694,-0.5878,0.25,-0.809,-0.5878,0.0,-0.7694,-0.5878,-0.25,-0.6545,-0.5878,-0.4755,-0.4755,-0.5878,-0.6545,-0.25,-0.5878,-0.7694,0.0,-0.5878,-0.809,0.0,-0.454,0.891,-0.2753,-0.454,0.8474,-0.5237,-0.454,0.7208,-0.7208,-0.454,0.5237,-0.8474,-0.454,0.2753,-0.891,-0.454,0.0,-0.8474,-0.454,-0.2753,-0.7208,-0.454,-0.5237,-0.5237,-0.454,-0.7208,-0.2753,-0.454,-0.8474,0.0,-0.454,-0.891,0.0,-0.309,0.9511,-0.2939,-0.309,0.9045,-0.559,-0.309,0.7694,-0.7694,-0.309,0.559,-0.9045,-0.309,0.2939,-0.9511,-0.309,0.0,-0.9045,-0.309,-0.2939,-0.7694,-0.309,-0.559,-0.559,-0.309,-0.7694,-0.2939,-0.309,-0.9045,0.0,-0.309,-0.9511,0.0,-0.1564,0.9877,-0.3052,-0.1564,0.9393,-0.5805,-0.1564,0.7991,-0.7991,-0.1564,0.5805,-0.9393,-0.1564,0.3052,-0.9877,-0.1564,0.0,-0.9393,-0.1564,-0.3052,-0.7991,-0.1564,-0.5805,-0.5805,-0.1564,-0.7991,-0.3052,-0.1564,-0.9393,0.0,-0.1564,-0.9877,0.0,0.0,1.0,-0.309,0.0,0.9511,-0.5878,0.0,0.809,-0.809,0.0,0.5878,-0.9511,0.0,0.309,-1.0,0.0,0.0,-0.9511,0.0,-0.309,-0.809,0.0,-0.5878,-0.5878,0.0,-0.809,-0.309,0.0,-0.9511,0.0,0.0,-1.0,0.0,0.1564,0.9877,-0.3052,0.1564,0.9393,-0.5805,0.1564,0.7991,-0.7991,0.1564,0.5805,-0.9393,0.1564,0.3052,-0.9877,0.1564,0.0,-0.9393,0.1564,-0.3052,-0.7991,0.1564,-0.5805,-0.5805,0.1564,-0.7991,-0.3052,0.1564,-0.9393,0.0,0.1564,-0.9877,0.0,0.309,0.9511,-0.2939,0.309,0.9045,-0.559,0.309,0.7694,-0.7694,0.309,0.559,-0.9045,0.309,0.2939,-0.9511,0.309,0.0,-0.9045,0.309,-0.2939,-0.7694,0.309,-0.559,-0.559,0.309,-0.7694,-0.2939,0.309,-0.9045,0.0,0.309,-0.9511,0.0,0.454,0.891,-0.2753,0.454,0.8474,-0.5237,0.454,0.7208,-0.7208,0.454,0.5237,-0.8474,0.454,0.2753,-0.891,0.454,0.0,-0.8474,0.454,-0.2753,-0.7208,0.454,-0.5237,-0.5237,0.454,-0.7208,-0.2753,0.454,-0.8474,0.0,0.454,-0.891,0.0,0.5878,0.809,-0.25,0.5878,0.7694,-0.4755,0.5878,0.6545,-0.6545,0.5878,0.4755,-0.7694,0.5878,0.25,-0.809,0.5878,0.0,-0.7694,0.5878,-0.25,-0.6545,0.5878,-0.4755,-0.4755,0.5878,-0.6545,-0.25,0.5878,-0.7694,0.0,0.5878,-0.809,0.0,0.7071,0.7071,-0.2185,0.7071,0.6725,-0.4156,0.7071,0.5721,-0.5721,0.7071,0.4156,-0.6725,0.7071,0.2185,-0.7071,0.7071,0.0,-0.6725,0.7071,-0.2185,-0.5721,0.7071,-0.4156,-0.4156,0.7071,-0.5721,-0.2185,0.7071,-0.6725,0.0,0.7071,-0.7071,0.0,0.809,0.5878,-0.1816,0.809,0.559,-0.3455,0.809,0.4755,-0.4755,0.809,0.3455,-0.559,0.809,0.1816,-0.5878,0.809,0.0,-0.559,0.809,-0.1816,-0.4755,0.809,-0.3455,-0.3455,0.809,-0.4755,-0.1816,0.809,-0.559,0.0,0.809,-0.5878,0.0,0.891,0.454,-0.1403,0.891,0.4318,-0.2668,0.891,0.3673,-0.3673,0.891,0.2668,-0.4318,0.891,0.1403,-0.454,0.891,0.0,-0.4318,0.891,-0.1403,-0.3673,0.891,-0.2668,-0.2668,0.891,-0.3673,-0.1403,0.891,-0.4318,0.0,0.891,-0.454,0.0,0.9511,0.309,-0.0955,0.9511,0.2939,-0.1816,0.9511,0.25,-0.25,0.9511,0.1816,-0.2939,0.9511,0.0955,-0.309,0.9511,0.0,-0.2939,0.9511,-0.0955,-0.25,0.9511,-0.1816,-0.1816,0.9511,-0.25,-0.0955,0.9511,-0.2939,0.0,0.9511,-0.309,0.0,0.9877,0.1564,-0.0483,0.9877,0.1488,-0.0919,0.9877,0.1266,-0.1266,0.9877,0.0919,-0.1488,0.9877,0.0483,-0.1564,0.9877,0.0,-0.1488,0.9877,-0.0483,-0.1266,0.9877,-0.0919,-0.0919,0.9877,-0.1266,-0.0483,0.9877,-0.1488,0.0,0.9877,-0.1564,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0],"normals":[-0.0317,-0.9792,0.2003,-0.0619,-0.9797,0.1906,-0.0528,-0.9414,0.3331,-0.1031,-0.9427,0.3173,-0.1178,-0.9797,0.1621,-0.1961,-0.9427,0.2699,-0.1621,-0.9797,0.1178,-0.2699,-0.9427,0.1961,-0.1906,-0.9797,0.0619,-0.3173,-0.9427,0.1031,-0.2004,-0.9797,0.0,-0.3336,-0.9427,0.0,-0.1906,-0.9797,-0.0619,-0.3173,-0.9427,-0.1031,-0.1621,-0.9797,-0.1178,-0.2699,-0.9427,-0.1961,-0.1178,-0.9797,-0.1621,-0.1961,-0.9427,-0.2699,-0.0619,-0.9797,-0.1906,-0.1031,-0.9427,-0.3173,-0.0317,-0.9792,-0.2003,-0.0528,-0.9414,-0.3331,-0.0744,-0.8798,0.4694,-0.1455,-0.8823,0.4477,-0.2767,-0.8823,0.3808,-0.3808,-0.8823,0.2767,-0.4477,-0.8823,0.1455,-0.4708,-0.8823,0.0,-0.4477,-0.8823,-0.1455,-0.3808,-0.8823,-0.2767,-0.2767,-0.8823,-0.3808,-0.1455,-0.8823,-0.4477,-0.0744,-0.8798,-0.4694,-0.0946,-0.7967,0.597,-0.1853,-0.8003,0.5703,-0.3525,-0.8003,0.4851,-0.4851,-0.8003,0.3525,-0.5703,-0.8003,0.1853,-0.5997,-0.8003,0.0,-0.5703,-0.8003,-0.1853,-0.4851,-0.8003,-0.3525,-0.3525,-0.8003,-0.4851,-0.1853,-0.8003,-0.5703,-0.0946,-0.7967,-0.597,-0.1126,-0.6943,0.7108,-0.221,-0.6988,0.6803,-0.4205,-0.6988,0.5787,-0.5787,-0.6988,0.4205,-0.6803,-0.6988,0.221,-0.7153,-0.6988,0.0,-0.6803,-0.6988,-0.221,-0.5787,-0.6988,-0.4205,-0.4205,-0.6988,-0.5787,-0.221,-0.6988,-0.6803,-0.1126,-0.6943,-0.7108,-0.1279,-0.5756,0.8076,-0.2516,-0.5804,0.7745,-0.4787,-0.5804,0.6588,-0.6588,-0.5804,0.4787,-0.7745,-0.5804,0.2516,-0.8143,-0.5804,0.0,-0.7745,-0.5804,-0.2516,-0.6588,-0.5804,-0.4787,-0.4787,-0.5804,-0.6588,-0.2516,-0.5804,-0.7745,-0.1279,-0.5756,-0.8076,-0.1402,-0.4436,0.8852,-0.2763,-0.448,0.8503,-0.5255,-0.448,0.7233,-0.7233,-0.448,0.5255,-0.8503,-0.448,0.2763,-0.894,-0.448,0.0,-0.8503,-0.448,-0.2763,-0.7233,-0.448,-0.5255,-0.5255,-0.448,-0.7233,-0.2763,-0.448,-0.8503,-0.1402,-0.4436,-0.8852,-0.1492,-0.3014,0.9418,-0.2943,-0.3048,0.9058,-0.5598,-0.3048,0.7705,-0.7705,-0.3048,0.5598,-0.9058,-0.3048,0.2943,-0.9524,-0.3048,0.0,-0.9058,-0.3048,-0.2943,-0.7705,-0.3048,-0.5598,-0.5598,-0.3048,-0.7705,-0.2943,-0.3048,-0.9058,-0.1492,-0.3014,-0.9418,-0.1546,-0.1524,0.9762,-0.3053,-0.1542,0.9397,-0.5808,-0.1542,0.7993,-0.7993,-0.1542,0.5808,-0.9397,-0.1542,0.3053,-0.988,-0.1542,0.0,-0.9397,-0.1542,-0.3053,-0.7993,-0.1542,-0.5808,-0.5808,-0.1542,-0.7993,-0.3053,-0.1542,-0.9397,-0.1546,-0.1524,-0.9762,-0.1564,0.0,0.9877,-0.309,0.0,0.9511,-0.5878,0.0,0.809,-0.809,0.0,0.5878,-0.9511,0.0,0.309,-1.0,0.0,0.0,-0.9511,0.0,-0.309,-0.809,0.0,-0.5878,-0.5878,0.0,-0.809,-0.309,0.0,-0.9511,-0.1564,0.0,-0.9877,-0.1546,0.1524,0.9762,-0.3053,0.1542,0.9397,-0.5808,0.1542,0.7993,-0.7993,0.1542,0.5808,-0.9397,0.1542,0.3053,-0.988,0.1542,0.0,-0.9397,0.1542,-0.3053,-0.7993,0.1542,-0.5808,-0.5808,0.1542,-0.7993,-0.3053,0.1542,-0.9397,-0.1546,0.1524,-0.9762,-0.1492,0.3014,0.9418,-0.2943,0.3048,0.9058,-0.5598,0.3048,0.7705,-0.7705,0.3048,0.5598,-0.9058,0.3048,0.2943,-0.9524,0.3048,0.0,-0.9058,0.3048,-0.2943,-0.7705,0.3048,-0.5598,-0.5598,0.3048,-0.7705,-0.2943,0.3048,-0.9058,-0.1492,0.3014,-0.9418,-0.1402,0.4436,0.8852,-0.2763,0.448,0.8503,-0.5255,0.448,0.7233,-0.7233,0.448,0.5255,-0.8503,0.448,0.2763,-0.894,0.448,0.0,-0.8503,0.448,-0.2763,-0.7233,0.448,-0.5255,-0.5255,0.448,-0.7233,-0.2763,0.448,-0.8503,-0.1402,0.4436,-0.8852,-0.1279,0.5756,0.8076,-0.2516,0.5804,0.7745,-0.4787,0.5804,0.6588,-0.6588,0.5804,0.4787,-0.7745,0.5804,0.2516,-0.8143,0.5804,0.0,-0.7745,0.5804,-0.2516,-0.6588,0.5804,-0.4787,-0.4787,0.5804,-0.6588,-0.2516,0.5804,-0.7745,-0.1279,0.5756,-0.8076,-0.1126,0.6943,0.7108,-0.221,0.6988,0.6803,-0.4205,0.6988,0.5787,-0.5787,0.6988,0.4205,-0.6803,0.6988,0.221,-0.7153,0.6988,0.0,-0.6803,0.6988,-0.221,-0.5787,0.6988,-0.4205,-0.4205,0.6988,-0.5787,-0.221,0.6988,-0.6803,-0.1126,0.6943,-0.7108,-0.0946,0.7967,0.597,-0.1853,0.8003,0.5703,-0.3525,0.8003,0.4851,-0.4851,0.8003,0.3525,-0.5703,0.8003,0.1853,-0.5997,0.8003,0.0,-0.5703,0.8003,-0.1853,-0.4851,0.8003,-0.3525,-0.3525,0.8003,-0.4851,-0.1853,0.8003,-0.5703,-0.0946,0.7967,-0.597,-0.0744,0.8798,0.4694,-0.1455,0.8823,0.4477,-0.2767,0.8823,0.3808,-0.3808,0.8823,0.2767,-0.4477,0.8823,0.1455,-0.4708,0.8823,0.0,-0.4477,0.8823,-0.1455,-0.3808,0.8823,-0.2767,-0.2767,0.8823,-0.3808,-0.1455,0.8823,-0.4477,-0.0744,0.8798,-0.4694,-0.0528,0.9414,0.3331,-0.1031,0.9427,0.3173,-0.1961,0.9427,0.2699,-0.2699,0.9427,0.1961,-0.3173,0.9427,0.1031,-0.3336,0.9427,0.0,-0.3173,0.9427,-0.1031,-0.2699,0.9427,-0.1961,-0.1961,0.9427,-0.2699,-0.1031,0.9427,-0.3173,-0.0528,0.9414,-0.3331,-0.0317,0.9792,0.2003,-0.0619,0.9797,0.1906,-0.1178,0.9797,0.1621,-0.1621,0.9797,0.1178,-0.1906,0.9797,0.0619,-0.2004,0.9797,0.0,-0.1906,0.9797,-0.0619,-0.1621,0.9797,-0.1178,-0.1178,0.9797,-0.1621,-0.0619,0.9797,-0.1906,-0.0317,0.9792,-0.2003,-0.0509,-0.9987,0.0,-0.0509,-0.9987,0.0,-0.0509,-0.9987,0.0,-0.0509,-0.9987,0.0,-0.0509,-0.9987,0.0,-0.0509,-0.9987,0.0,-0.0509,-0.9987,0.0,-0.0509,-0.9987,0.0,-0.0509,-0.9987,0.0,-0.0509,-0.9987,0.0,-0.0509,0.9987,0.0,-0.0509,0.9987,0.0,-0.0509,0.9987,0.0,-0.0509,0.9987,0.0,-0.0509,0.9987,0.0,-0.0509,0.9987,0.0,-0.0509,0.9987,0.0,-0.0509,0.9987,0.0,-0.0509,0.9987,0.0,-0.0509,0.9987,0.0],"tangents":[-0.9877,0.0,-0.1564,-1.0,-0.96,0.0062,-0.28,-1.0,-0.9877,0.0,-0.1564,-1.0,-0.9511,0.0,-0.309,-1.0,-0.8265,0.0062,-0.5629,-1.0,-0.809,0.0,-0.5878,-1.0,-0.6121,0.0062,-0.7908,-1.0,-0.5878,0.0,-0.809,-1.0,-0.3378,0.0062,-0.9412,-1.0,-0.309,0.0,-0.9511,-1.0,-0.0304,0.0062,-0.9995,-1.0,0.0,0.0,-1.0,-1.0,0.28,0.0062,-0.96,-1.0,0.309,0.0,-0.9511,-1.0,0.5629,0.0062,-0.8265,-1.0,0.5878,0.0,-0.809,-1.0,0.7908,0.0062,-0.6121,-1.0,0.809,0.0,-0.5878,-1.0,0.9412,0.0062,-0.3378,-1.0,0.9511,0.0,-0.309,-1.0,0.9877,0.0,-0.1564,-1.0,0.9877,0.0,-0.1564,-1.0,-0.9877,0.0,-0.1564,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,0.9877,0.0,-0.1564,-1.0,-0.9877,0.0,-0.1564,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,0.9877,0.0,-0.1564,-1.0,-0.9877,0.0,-0.1564,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,0.9877,0.0,-0.1564,-1.0,-0.9877,0.0,-0.1564,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,0.9877,0.0,-0.1564,-1.0,-0.9877,0.0,-0.1564,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,0.9877,0.0,-0.1564,-1.0,-0.9877,0.0,-0.1564,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,0.9877,0.0,-0.1564,-1.0,-0.9877,0.0,-0.1564,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,0.9877,0.0,-0.1564,-1.0,-0.9877,0.0,-0.1564,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,0.9877,0.0,-0.1564,-1.0,-0.9877,0.0,-0.1564,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,0.9877,0.0,-0.1564,-1.0,-0.9877,0.0,-0.1564,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,0.9877,0.0,-0.1564,-1.0,-0.9877,0.0,-0.1564,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,0.9877,0.0,-0.1564,-1.0,-0.9877,0.0,-0.1564,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,0.9877,0.0,-0.1564,-1.0,-0.9877,0.0,-0.1564,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,0.9877,0.0,-0.1564,-1.0,-0.9877,0.0,-0.1564,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,0.9877,0.0,-0.1564,-1.0,-0.9877,0.0,-0.1564,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,0.9877,0.0,-0.1564,-1.0,-0.9877,0.0,-0.1564,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,0.9877,0.0,-0.1564,-1.0,-0.9877,0.0,-0.1564,-1.0,-0.9412,0.0062,-0.3378,-1.0,-0.7908,0.0062,-0.6121,-1.0,-0.5629,0.0062,-0.8265,-1.0,-0.28,0.0062,-0.96,-1.0,0.0304,0.0062,-0.9995,-1.0,0.3378,0.0062,-0.9412,-1.0,0.6121,0.0062,-0.7908,-1.0,0.8265,0.0062,-0.5629,-1.0,0.96,0.0062,-0.28,-1.0,0.9877,0.0,-0.1564,-1.0,-0.9864,0.0502,-0.1566,-1.0,-0.8896,0.0453,-0.4545,-1.0,-0.7057,0.0359,-0.7076,-1.0,-0.4529,0.0231,-0.8912,-1.0,-0.156,0.0079,-0.9877,-1.0,0.156,-0.0079,-0.9877,-1.0,0.4529,-0.0231,-0.8912,-1.0,0.7057,-0.0359,-0.7076,-1.0,0.8896,-0.0453,-0.4545,-1.0,0.9864,-0.0502,-0.1566,-1.0,-0.9864,-0.0502,-0.1566,-1.0,-0.8896,-0.0453,-0.4545,-1.0,-0.7057,-0.0359,-0.7076,-1.0,-0.4529,-0.0231,-0.8912,-1.0,-0.156,-0.0079,-0.9877,-1.0,0.156,0.0079,-0.9877,-1.0,0.4529,0.0231,-0.8912,-1.0,0.7057,0.0359,-0.7076,-1.0,0.8896,0.0453,-0.4545,-1.0,0.9864,0.0502,-0.1566,-1.0],"uvs":[0.2,0.05,0.25,0.05,0.2,0.1,0.25,0.1,0.3,0.05,0.3,0.1,0.35,0.05,0.35,0.1,0.4,0.05,0.4,0.1,0.45,0.05,0.45,0.1,0.5,0.05,0.5,0.1,0.55,0.05,0.55,0.1,0.6,0.05,0.6,0.1,0.65,0.05,0.65,0.1,0.7,0.05,0.7,0.1,0.2,0.15,0.25,0.15,0.3,0.15,0.35,0.15,0.4,0.15,0.45,0.15,0.5,0.15,0.55,0.15,0.6,0.15,0.65,0.15,0.7,0.15,0.2,0.2,0.25,0.2,0.3,0.2,0.35,0.2,0.4,0.2,0.45,0.2,0.5,0.2,0.55,0.2,0.6,0.2,0.65,0.2,0.7,0.2,0.2,0.25,0.25,0.25,0.3,0.25,0.35,0.25,0.4,0.25,0.45,0.25,0.5,0.25,0.55,0.25,0.6,0.25,0.65,0.25,0.7,0.25,0.2,0.3,0.25,0.3,0.3,0.3,0.35,0.3,0.4,0.3,0.45,0.3,0.5,0.3,0.55,0.3,0.6,0.3,0.65,0.3,0.7,0.3,0.2,0.35,0.25,0.35,0.3,0.35,0.35,0.35,0.4,0.35,0.45,0.35,0.5,0.35,0.55,0.35,0.6,0.35,0.65,0.35,0.7,0.35,0.2,0.4,0.25,0.4,0.3,0.4,0.35,0.4,0.4,0.4,0.45,0.4,0.5,0.4,0.55,0.4,0.6,0.4,0.65,0.4,0.7,0.4,0.2,0.45,0.25,0.45,0.3,0.45,0.35,0.45,0.4,0.45,0.45,0.45,0.5,0.45,0.55,0.45,0.6,0.45,0.65,0.45,0.7,0.45,0.2,0.5,0.25,0.5,0.3,0.5,0.35,0.5,0.4,0.5,0.45,0.5,0.5,0.5,0.55,0.5,0.6,0.5,0.65,0.5,0.7,0.5,0.2,0.55,0.25,0.55,0.3,0.55,0.35,0.55,0.4,0.55,0.45,0.55,0.5,0.55,0.55,0.55,0.6,0.55,0.65,0.55,0.7,0.55,0.2,0.6,0.25,0.6,0.3,0.6,0.35,0.6,0.4,0.6,0.45,0.6,0.5,0.6,0.55,0.6,0.6,0.6,0.65,0.6,0.7,0.6,0.2,0.65,0.25,0.65,0.3,0.65,0.35,0.65,0.4,0.65,0.45,0.65,0.5,0.65,0.55,0.65,0.6,0.65,0.65,0.65,0.7,0.65,0.2,0.7,0.25,0.7,0.3,0.7,0.35,0.7,0.4,0.7,0.45,0.7,0.5,0.7,0.55,0.7,0.6,0.7,0.65,0.7,0.7,0.7,0.2,0.75,0.25,0.75,0.3,0.75,0.35,0.75,0.4,0.75,0.45,0.75,0.5,0.75,0.55,0.75,0.6,0.75,0.65,0.75,0.7,0.75,0.2,0.8,0.25,0.8,0.3,0.8,0.35,0.8,0.4,0.8,0.45,0.8,0.5,0.8,0.55,0.8,0.6,0.8,0.65,0.8,0.7,0.8,0.2,0.85,0.25,0.85,0.3,0.85,0.35,0.85,0.4,0.85,0.45,0.85,0.5,0.85,0.55,0.85,0.6,0.85,0.65,0.85,0.7,0.85,0.2,0.9,0.25,0.9,0.3,0.9,0.35,0.9,0.4,0.9,0.45,0.9,0.5,0.9,0.55,0.9,0.6,0.9,0.65,0.9,0.7,0.9,0.2,0.95,0.25,0.95,0.3,0.95,0.35,0.95,0.4,0.95,0.45,0.95,0.5,0.95,0.55,0.95,0.6,0.95,0.65,0.95,0.7,0.95,0.225,0.0,0.275,0.0,0.325,0.0,0.375,0.0,0.425,0.0,0.475,0.0,0.525,0.0,0.575,0.0,0.625,0.0,0.675,0.0,0.225,1.0,0.275,1.0,0.325,1.0,0.375,1.0,0.425,1.0,0.475,1.0,0.525,1.0,0.575,1.0,0.625,1.0,0.675,1.0],"uvs2":null,"colors":null,"hasVertexAlpha":false,"matricesIndices":null,"matricesWeights":null,"matricesIndicesExtra":null,"matricesWeightsExtra":null,"indices":[0,1,2,2,1,3,1,4,3,3,4,5,4,6,5,5,6,7,6,8,7,7,8,9,8,10,9,9,10,11,10,12,11,11,12,13,12,14,13,13,14,15,14,16,15,15,16,17,16,18,17,17,18,19,18,20,19,19,20,21,2,3,22,22,3,23,3,5,23,23,5,24,5,7,24,24,7,25,7,9,25,25,9,26,9,11,26,26,11,27,11,13,27,27,13,28,13,15,28,28,15,29,15,17,29,29,17,30,17,19,30,30,19,31,19,21,31,31,21,32,22,23,33,33,23,34,23,24,34,34,24,35,24,25,35,35,25,36,25,26,36,36,26,37,26,27,37,37,27,38,27,28,38,38,28,39,28,29,39,39,29,40,29,30,40,40,30,41,30,31,41,41,31,42,31,32,42,42,32,43,33,34,44,44,34,45,34,35,45,45,35,46,35,36,46,46,36,47,36,37,47,47,37,48,37,38,48,48,38,49,38,39,49,49,39,50,39,40,50,50,40,51,40,41,51,51,41,52,41,42,52,52,42,53,42,43,53,53,43,54,44,45,55,55,45,56,45,46,56,56,46,57,46,47,57,57,47,58,47,48,58,58,48,59,48,49,59,59,49,60,49,50,60,60,50,61,50,51,61,61,51,62,51,52,62,62,52,63,52,53,63,63,53,64,53,54,64,64,54,65,55,56,66,66,56,67,56,57,67,67,57,68,57,58,68,68,58,69,58,59,69,69,59,70,59,60,70,70,60,71,60,61,71,71,61,72,61,62,72,72,62,73,62,63,73,73,63,74,63,64,74,74,64,75,64,65,75,75,65,76,66,67,77,77,67,78,67,68,78,78,68,79,68,69,79,79,69,80,69,70,80,80,70,81,70,71,81,81,71,82,71,72,82,82,72,83,72,73,83,83,73,84,73,74,84,84,74,85,74,75,85,85,75,86,75,76,86,86,76,87,77,78,88,88,78,89,78,79,89,89,79,90,79,80,90,90,80,91,80,81,91,91,81,92,81,82,92,92,82,93,82,83,93,93,83,94,83,84,94,94,84,95,84,85,95,95,85,96,85,86,96,96,86,97,86,87,97,97,87,98,88,89,99,99,89,100,89,90,100,100,90,101,90,91,101,101,91,102,91,92,102,102,92,103,92,93,103,103,93,104,93,94,104,104,94,105,94,95,105,105,95,106,95,96,106,106,96,107,96,97,107,107,97,108,97,98,108,108,98,109,99,100,110,110,100,111,100,101,111,111,101,112,101,102,112,112,102,113,102,103,113,113,103,114,103,104,114,114,104,115,104,105,115,115,105,116,105,106,116,116,106,117,106,107,117,117,107,118,107,108,118,118,108,119,108,109,119,119,109,120,110,111,121,121,111,122,111,112,122,122,112,123,112,113,123,123,113,124,113,114,124,124,114,125,114,115,125,125,115,126,115,116,126,126,116,127,116,117,127,127,117,128,117,118,128,128,118,129,118,119,129,129,119,130,119,120,130,130,120,131,121,122,132,132,122,133,122,123,133,133,123,134,123,124,134,134,124,135,124,125,135,135,125,136,125,126,136,136,126,137,126,127,137,137,127,138,127,128,138,138,128,139,128,129,139,139,129,140,129,130,140,140,130,141,130,131,141,141,131,142,132,133,143,143,133,144,133,134,144,144,134,145,134,135,145,145,135,146,135,136,146,146,136,147,136,137,147,147,137,148,137,138,148,148,138,149,138,139,149,149,139,150,139,140,150,150,140,151,140,141,151,151,141,152,141,142,152,152,142,153,143,144,154,154,144,155,144,145,155,155,145,156,145,146,156,156,146,157,146,147,157,157,147,158,147,148,158,158,148,159,148,149,159,159,149,160,149,150,160,160,150,161,150,151,161,161,151,162,151,152,162,162,152,163,152,153,163,163,153,164,154,155,165,165,155,166,155,156,166,166,156,167,156,157,167,167,157,168,157,158,168,168,158,169,158,159,169,169,159,170,159,160,170,170,160,171,160,161,171,171,161,172,161,162,172,172,162,173,162,163,173,173,163,174,163,164,174,174,164,175,165,166,176,176,166,177,166,167,177,177,167,178,167,168,178,178,168,179,168,169,179,179,169,180,169,170,180,180,170,181,170,171,181,181,171,182,171,172,182,182,172,183,172,173,183,183,173,184,173,174,184,184,174,185,174,175,185,185,175,186,176,177,187,187,177,188,177,178,188,188,178,189,178,179,189,189,179,190,179,180,190,190,180,191,180,181,191,191,181,192,181,182,192,192,182,193,182,183,193,193,183,194,183,184,194,194,184,195,184,185,195,195,185,196,185,186,196,196,186,197,187,188,198,198,188,199,188,189,199,199,189,200,189,190,200,200,190,201,190,191,201,201,191,202,191,192,202,202,192,203,192,193,203,203,193,204,193,194,204,204,194,205,194,195,205,205,195,206,195,196,206,206,196,207,196,197,207,207,197,208,1,0,209,4,1,210,6,4,211,8,6,212,10,8,213,12,10,214,14,12,215,16,14,216,18,16,217,20,18,218,198,199,219,199,200,220,200,201,221,201,202,222,202,203,223,203,204,224,204,205,225,205,206,226,206,207,227,207,208,228],"receiveShadows":false,"infiniteDistance":false,"billboardMode":0,"visibility":1.0,"subMeshes":[{"materialIndex":0,"verticesStart":0,"verticesCount":229,"indexStart":0,"indexCount":1140}],"instances":null,"skeletonId":-1,"numBoneInfluencers":4,"applyFog":false,"lodMeshIds":null,"lodDistances":null,"lodCoverages":null,"rotation":null,"scaling":[1.0,1.0,1.0],"rotationQuaternion":[0.0,0.0,0.0,1.0],"actions":null,"checkCollisions":false,"pickable":true,"showBoundingBox":false,"showSubMeshesBoundingBox":false,"alphaIndex":0,"physicsImpostor":0,"physicsMass":0.0,"physicsFriction":0.0,"physicsRestitution":0.0,"name":"pSphere11","id":"9C537009-45EC-483F-DB27-F0ABA46CBFB7","parentId":null,"position":[3.0,0.0,5.0],"animations":[],"autoAnimate":true,"autoAnimateFrom":1,"autoAnimateTo":200,"autoAnimateLoop":true,"metadata":{}},{"materialId":null,"isEnabled":true,"isVisible":true,"positions":null,"normals":null,"tangents":null,"uvs":null,"uvs2":null,"colors":null,"hasVertexAlpha":false,"matricesIndices":null,"matricesWeights":null,"matricesIndicesExtra":null,"matricesWeightsExtra":null,"indices":null,"receiveShadows":false,"infiniteDistance":false,"billboardMode":0,"visibility":1.0,"subMeshes":null,"instances":null,"skeletonId":-1,"numBoneInfluencers":4,"applyFog":false,"lodMeshIds":null,"lodDistances":null,"lodCoverages":null,"rotation":null,"scaling":[1.0,1.0,1.0],"rotationQuaternion":[0.0,0.0,0.0,1.0],"actions":null,"checkCollisions":false,"pickable":true,"showBoundingBox":false,"showSubMeshesBoundingBox":false,"alphaIndex":0,"physicsImpostor":0,"physicsMass":0.0,"physicsFriction":0.0,"physicsRestitution":0.0,"name":"group","id":"8E569C08-4B86-AA57-74E7-E9902231D610","parentId":null,"position":[0.0,0.0,0.0],"animations":[],"autoAnimate":true,"autoAnimateFrom":1,"autoAnimateTo":200,"autoAnimateLoop":true,"metadata":null},{"materialId":"D27E80AB-42A2-4790-E758-5B85C6DE409F","isEnabled":true,"isVisible":true,"positions":[0.0,-0.9877,0.1564,-0.0483,-0.9877,0.1488,0.0,-0.9511,0.309,-0.0955,-0.9511,0.2939,-0.0919,-0.9877,0.1266,-0.1816,-0.9511,0.25,-0.1266,-0.9877,0.0919,-0.25,-0.9511,0.1816,-0.1488,-0.9877,0.0483,-0.2939,-0.9511,0.0955,-0.1564,-0.9877,0.0,-0.309,-0.9511,0.0,-0.1488,-0.9877,-0.0483,-0.2939,-0.9511,-0.0955,-0.1266,-0.9877,-0.0919,-0.25,-0.9511,-0.1816,-0.0919,-0.9877,-0.1266,-0.1816,-0.9511,-0.25,-0.0483,-0.9877,-0.1488,-0.0955,-0.9511,-0.2939,0.0,-0.9877,-0.1564,0.0,-0.9511,-0.309,0.0,-0.891,0.454,-0.1403,-0.891,0.4318,-0.2668,-0.891,0.3673,-0.3673,-0.891,0.2668,-0.4318,-0.891,0.1403,-0.454,-0.891,0.0,-0.4318,-0.891,-0.1403,-0.3673,-0.891,-0.2668,-0.2668,-0.891,-0.3673,-0.1403,-0.891,-0.4318,0.0,-0.891,-0.454,0.0,-0.809,0.5878,-0.1816,-0.809,0.559,-0.3455,-0.809,0.4755,-0.4755,-0.809,0.3455,-0.559,-0.809,0.1816,-0.5878,-0.809,0.0,-0.559,-0.809,-0.1816,-0.4755,-0.809,-0.3455,-0.3455,-0.809,-0.4755,-0.1816,-0.809,-0.559,0.0,-0.809,-0.5878,0.0,-0.7071,0.7071,-0.2185,-0.7071,0.6725,-0.4156,-0.7071,0.5721,-0.5721,-0.7071,0.4156,-0.6725,-0.7071,0.2185,-0.7071,-0.7071,0.0,-0.6725,-0.7071,-0.2185,-0.5721,-0.7071,-0.4156,-0.4156,-0.7071,-0.5721,-0.2185,-0.7071,-0.6725,0.0,-0.7071,-0.7071,0.0,-0.5878,0.809,-0.25,-0.5878,0.7694,-0.4755,-0.5878,0.6545,-0.6545,-0.5878,0.4755,-0.7694,-0.5878,0.25,-0.809,-0.5878,0.0,-0.7694,-0.5878,-0.25,-0.6545,-0.5878,-0.4755,-0.4755,-0.5878,-0.6545,-0.25,-0.5878,-0.7694,0.0,-0.5878,-0.809,0.0,-0.454,0.891,-0.2753,-0.454,0.8474,-0.5237,-0.454,0.7208,-0.7208,-0.454,0.5237,-0.8474,-0.454,0.2753,-0.891,-0.454,0.0,-0.8474,-0.454,-0.2753,-0.7208,-0.454,-0.5237,-0.5237,-0.454,-0.7208,-0.2753,-0.454,-0.8474,0.0,-0.454,-0.891,0.0,-0.309,0.9511,-0.2939,-0.309,0.9045,-0.559,-0.309,0.7694,-0.7694,-0.309,0.559,-0.9045,-0.309,0.2939,-0.9511,-0.309,0.0,-0.9045,-0.309,-0.2939,-0.7694,-0.309,-0.559,-0.559,-0.309,-0.7694,-0.2939,-0.309,-0.9045,0.0,-0.309,-0.9511,0.0,-0.1564,0.9877,-0.3052,-0.1564,0.9393,-0.5805,-0.1564,0.7991,-0.7991,-0.1564,0.5805,-0.9393,-0.1564,0.3052,-0.9877,-0.1564,0.0,-0.9393,-0.1564,-0.3052,-0.7991,-0.1564,-0.5805,-0.5805,-0.1564,-0.7991,-0.3052,-0.1564,-0.9393,0.0,-0.1564,-0.9877,0.0,0.0,1.0,-0.309,0.0,0.9511,-0.5878,0.0,0.809,-0.809,0.0,0.5878,-0.9511,0.0,0.309,-1.0,0.0,0.0,-0.9511,0.0,-0.309,-0.809,0.0,-0.5878,-0.5878,0.0,-0.809,-0.309,0.0,-0.9511,0.0,0.0,-1.0,0.0,0.1564,0.9877,-0.3052,0.1564,0.9393,-0.5805,0.1564,0.7991,-0.7991,0.1564,0.5805,-0.9393,0.1564,0.3052,-0.9877,0.1564,0.0,-0.9393,0.1564,-0.3052,-0.7991,0.1564,-0.5805,-0.5805,0.1564,-0.7991,-0.3052,0.1564,-0.9393,0.0,0.1564,-0.9877,0.0,0.309,0.9511,-0.2939,0.309,0.9045,-0.559,0.309,0.7694,-0.7694,0.309,0.559,-0.9045,0.309,0.2939,-0.9511,0.309,0.0,-0.9045,0.309,-0.2939,-0.7694,0.309,-0.559,-0.559,0.309,-0.7694,-0.2939,0.309,-0.9045,0.0,0.309,-0.9511,0.0,0.454,0.891,-0.2753,0.454,0.8474,-0.5237,0.454,0.7208,-0.7208,0.454,0.5237,-0.8474,0.454,0.2753,-0.891,0.454,0.0,-0.8474,0.454,-0.2753,-0.7208,0.454,-0.5237,-0.5237,0.454,-0.7208,-0.2753,0.454,-0.8474,0.0,0.454,-0.891,0.0,0.5878,0.809,-0.25,0.5878,0.7694,-0.4755,0.5878,0.6545,-0.6545,0.5878,0.4755,-0.7694,0.5878,0.25,-0.809,0.5878,0.0,-0.7694,0.5878,-0.25,-0.6545,0.5878,-0.4755,-0.4755,0.5878,-0.6545,-0.25,0.5878,-0.7694,0.0,0.5878,-0.809,0.0,0.7071,0.7071,-0.2185,0.7071,0.6725,-0.4156,0.7071,0.5721,-0.5721,0.7071,0.4156,-0.6725,0.7071,0.2185,-0.7071,0.7071,0.0,-0.6725,0.7071,-0.2185,-0.5721,0.7071,-0.4156,-0.4156,0.7071,-0.5721,-0.2185,0.7071,-0.6725,0.0,0.7071,-0.7071,0.0,0.809,0.5878,-0.1816,0.809,0.559,-0.3455,0.809,0.4755,-0.4755,0.809,0.3455,-0.559,0.809,0.1816,-0.5878,0.809,0.0,-0.559,0.809,-0.1816,-0.4755,0.809,-0.3455,-0.3455,0.809,-0.4755,-0.1816,0.809,-0.559,0.0,0.809,-0.5878,0.0,0.891,0.454,-0.1403,0.891,0.4318,-0.2668,0.891,0.3673,-0.3673,0.891,0.2668,-0.4318,0.891,0.1403,-0.454,0.891,0.0,-0.4318,0.891,-0.1403,-0.3673,0.891,-0.2668,-0.2668,0.891,-0.3673,-0.1403,0.891,-0.4318,0.0,0.891,-0.454,0.0,0.9511,0.309,-0.0955,0.9511,0.2939,-0.1816,0.9511,0.25,-0.25,0.9511,0.1816,-0.2939,0.9511,0.0955,-0.309,0.9511,0.0,-0.2939,0.9511,-0.0955,-0.25,0.9511,-0.1816,-0.1816,0.9511,-0.25,-0.0955,0.9511,-0.2939,0.0,0.9511,-0.309,0.0,0.9877,0.1564,-0.0483,0.9877,0.1488,-0.0919,0.9877,0.1266,-0.1266,0.9877,0.0919,-0.1488,0.9877,0.0483,-0.1564,0.9877,0.0,-0.1488,0.9877,-0.0483,-0.1266,0.9877,-0.0919,-0.0919,0.9877,-0.1266,-0.0483,0.9877,-0.1488,0.0,0.9877,-0.1564,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0],"normals":[-0.0317,-0.9792,0.2003,-0.0619,-0.9797,0.1906,-0.0528,-0.9414,0.3331,-0.1031,-0.9427,0.3173,-0.1178,-0.9797,0.1621,-0.1961,-0.9427,0.2699,-0.1621,-0.9797,0.1178,-0.2699,-0.9427,0.1961,-0.1906,-0.9797,0.0619,-0.3173,-0.9427,0.1031,-0.2004,-0.9797,0.0,-0.3336,-0.9427,0.0,-0.1906,-0.9797,-0.0619,-0.3173,-0.9427,-0.1031,-0.1621,-0.9797,-0.1178,-0.2699,-0.9427,-0.1961,-0.1178,-0.9797,-0.1621,-0.1961,-0.9427,-0.2699,-0.0619,-0.9797,-0.1906,-0.1031,-0.9427,-0.3173,-0.0317,-0.9792,-0.2003,-0.0528,-0.9414,-0.3331,-0.0744,-0.8798,0.4694,-0.1455,-0.8823,0.4477,-0.2767,-0.8823,0.3808,-0.3808,-0.8823,0.2767,-0.4477,-0.8823,0.1455,-0.4708,-0.8823,0.0,-0.4477,-0.8823,-0.1455,-0.3808,-0.8823,-0.2767,-0.2767,-0.8823,-0.3808,-0.1455,-0.8823,-0.4477,-0.0744,-0.8798,-0.4694,-0.0946,-0.7967,0.597,-0.1853,-0.8003,0.5703,-0.3525,-0.8003,0.4851,-0.4851,-0.8003,0.3525,-0.5703,-0.8003,0.1853,-0.5997,-0.8003,0.0,-0.5703,-0.8003,-0.1853,-0.4851,-0.8003,-0.3525,-0.3525,-0.8003,-0.4851,-0.1853,-0.8003,-0.5703,-0.0946,-0.7967,-0.597,-0.1126,-0.6943,0.7108,-0.221,-0.6988,0.6803,-0.4205,-0.6988,0.5787,-0.5787,-0.6988,0.4205,-0.6803,-0.6988,0.221,-0.7153,-0.6988,0.0,-0.6803,-0.6988,-0.221,-0.5787,-0.6988,-0.4205,-0.4205,-0.6988,-0.5787,-0.221,-0.6988,-0.6803,-0.1126,-0.6943,-0.7108,-0.1279,-0.5756,0.8076,-0.2516,-0.5804,0.7745,-0.4787,-0.5804,0.6588,-0.6588,-0.5804,0.4787,-0.7745,-0.5804,0.2516,-0.8143,-0.5804,0.0,-0.7745,-0.5804,-0.2516,-0.6588,-0.5804,-0.4787,-0.4787,-0.5804,-0.6588,-0.2516,-0.5804,-0.7745,-0.1279,-0.5756,-0.8076,-0.1402,-0.4436,0.8852,-0.2763,-0.448,0.8503,-0.5255,-0.448,0.7233,-0.7233,-0.448,0.5255,-0.8503,-0.448,0.2763,-0.894,-0.448,0.0,-0.8503,-0.448,-0.2763,-0.7233,-0.448,-0.5255,-0.5255,-0.448,-0.7233,-0.2763,-0.448,-0.8503,-0.1402,-0.4436,-0.8852,-0.1492,-0.3014,0.9418,-0.2943,-0.3048,0.9058,-0.5598,-0.3048,0.7705,-0.7705,-0.3048,0.5598,-0.9058,-0.3048,0.2943,-0.9524,-0.3048,0.0,-0.9058,-0.3048,-0.2943,-0.7705,-0.3048,-0.5598,-0.5598,-0.3048,-0.7705,-0.2943,-0.3048,-0.9058,-0.1492,-0.3014,-0.9418,-0.1546,-0.1524,0.9762,-0.3053,-0.1542,0.9397,-0.5808,-0.1542,0.7993,-0.7993,-0.1542,0.5808,-0.9397,-0.1542,0.3053,-0.988,-0.1542,0.0,-0.9397,-0.1542,-0.3053,-0.7993,-0.1542,-0.5808,-0.5808,-0.1542,-0.7993,-0.3053,-0.1542,-0.9397,-0.1546,-0.1524,-0.9762,-0.1564,0.0,0.9877,-0.309,0.0,0.9511,-0.5878,0.0,0.809,-0.809,0.0,0.5878,-0.9511,0.0,0.309,-1.0,0.0,0.0,-0.9511,0.0,-0.309,-0.809,0.0,-0.5878,-0.5878,0.0,-0.809,-0.309,0.0,-0.9511,-0.1564,0.0,-0.9877,-0.1546,0.1524,0.9762,-0.3053,0.1542,0.9397,-0.5808,0.1542,0.7993,-0.7993,0.1542,0.5808,-0.9397,0.1542,0.3053,-0.988,0.1542,0.0,-0.9397,0.1542,-0.3053,-0.7993,0.1542,-0.5808,-0.5808,0.1542,-0.7993,-0.3053,0.1542,-0.9397,-0.1546,0.1524,-0.9762,-0.1492,0.3014,0.9418,-0.2943,0.3048,0.9058,-0.5598,0.3048,0.7705,-0.7705,0.3048,0.5598,-0.9058,0.3048,0.2943,-0.9524,0.3048,0.0,-0.9058,0.3048,-0.2943,-0.7705,0.3048,-0.5598,-0.5598,0.3048,-0.7705,-0.2943,0.3048,-0.9058,-0.1492,0.3014,-0.9418,-0.1402,0.4436,0.8852,-0.2763,0.448,0.8503,-0.5255,0.448,0.7233,-0.7233,0.448,0.5255,-0.8503,0.448,0.2763,-0.894,0.448,0.0,-0.8503,0.448,-0.2763,-0.7233,0.448,-0.5255,-0.5255,0.448,-0.7233,-0.2763,0.448,-0.8503,-0.1402,0.4436,-0.8852,-0.1279,0.5756,0.8076,-0.2516,0.5804,0.7745,-0.4787,0.5804,0.6588,-0.6588,0.5804,0.4787,-0.7745,0.5804,0.2516,-0.8143,0.5804,0.0,-0.7745,0.5804,-0.2516,-0.6588,0.5804,-0.4787,-0.4787,0.5804,-0.6588,-0.2516,0.5804,-0.7745,-0.1279,0.5756,-0.8076,-0.1126,0.6943,0.7108,-0.221,0.6988,0.6803,-0.4205,0.6988,0.5787,-0.5787,0.6988,0.4205,-0.6803,0.6988,0.221,-0.7153,0.6988,0.0,-0.6803,0.6988,-0.221,-0.5787,0.6988,-0.4205,-0.4205,0.6988,-0.5787,-0.221,0.6988,-0.6803,-0.1126,0.6943,-0.7108,-0.0946,0.7967,0.597,-0.1853,0.8003,0.5703,-0.3525,0.8003,0.4851,-0.4851,0.8003,0.3525,-0.5703,0.8003,0.1853,-0.5997,0.8003,0.0,-0.5703,0.8003,-0.1853,-0.4851,0.8003,-0.3525,-0.3525,0.8003,-0.4851,-0.1853,0.8003,-0.5703,-0.0946,0.7967,-0.597,-0.0744,0.8798,0.4694,-0.1455,0.8823,0.4477,-0.2767,0.8823,0.3808,-0.3808,0.8823,0.2767,-0.4477,0.8823,0.1455,-0.4708,0.8823,0.0,-0.4477,0.8823,-0.1455,-0.3808,0.8823,-0.2767,-0.2767,0.8823,-0.3808,-0.1455,0.8823,-0.4477,-0.0744,0.8798,-0.4694,-0.0528,0.9414,0.3331,-0.1031,0.9427,0.3173,-0.1961,0.9427,0.2699,-0.2699,0.9427,0.1961,-0.3173,0.9427,0.1031,-0.3336,0.9427,0.0,-0.3173,0.9427,-0.1031,-0.2699,0.9427,-0.1961,-0.1961,0.9427,-0.2699,-0.1031,0.9427,-0.3173,-0.0528,0.9414,-0.3331,-0.0317,0.9792,0.2003,-0.0619,0.9797,0.1906,-0.1178,0.9797,0.1621,-0.1621,0.9797,0.1178,-0.1906,0.9797,0.0619,-0.2004,0.9797,0.0,-0.1906,0.9797,-0.0619,-0.1621,0.9797,-0.1178,-0.1178,0.9797,-0.1621,-0.0619,0.9797,-0.1906,-0.0317,0.9792,-0.2003,-0.0509,-0.9987,0.0,-0.0509,-0.9987,0.0,-0.0509,-0.9987,0.0,-0.0509,-0.9987,0.0,-0.0509,-0.9987,0.0,-0.0509,-0.9987,0.0,-0.0509,-0.9987,0.0,-0.0509,-0.9987,0.0,-0.0509,-0.9987,0.0,-0.0509,-0.9987,0.0,-0.0509,0.9987,0.0,-0.0509,0.9987,0.0,-0.0509,0.9987,0.0,-0.0509,0.9987,0.0,-0.0509,0.9987,0.0,-0.0509,0.9987,0.0,-0.0509,0.9987,0.0,-0.0509,0.9987,0.0,-0.0509,0.9987,0.0,-0.0509,0.9987,0.0],"tangents":[-0.9877,0.0,-0.1564,-1.0,-0.96,0.0062,-0.28,-1.0,-0.9877,0.0,-0.1564,-1.0,-0.9511,0.0,-0.309,-1.0,-0.8265,0.0062,-0.5629,-1.0,-0.809,0.0,-0.5878,-1.0,-0.6121,0.0062,-0.7908,-1.0,-0.5878,0.0,-0.809,-1.0,-0.3378,0.0062,-0.9412,-1.0,-0.309,0.0,-0.9511,-1.0,-0.0304,0.0062,-0.9995,-1.0,0.0,0.0,-1.0,-1.0,0.28,0.0062,-0.96,-1.0,0.309,0.0,-0.9511,-1.0,0.5629,0.0062,-0.8265,-1.0,0.5878,0.0,-0.809,-1.0,0.7908,0.0062,-0.6121,-1.0,0.809,0.0,-0.5878,-1.0,0.9412,0.0062,-0.3378,-1.0,0.9511,0.0,-0.309,-1.0,0.9877,0.0,-0.1564,-1.0,0.9877,0.0,-0.1564,-1.0,-0.9877,0.0,-0.1564,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,0.9877,0.0,-0.1564,-1.0,-0.9877,0.0,-0.1564,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,0.9877,0.0,-0.1564,-1.0,-0.9877,0.0,-0.1564,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,0.9877,0.0,-0.1564,-1.0,-0.9877,0.0,-0.1564,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,0.9877,0.0,-0.1564,-1.0,-0.9877,0.0,-0.1564,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,0.9877,0.0,-0.1564,-1.0,-0.9877,0.0,-0.1564,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,0.9877,0.0,-0.1564,-1.0,-0.9877,0.0,-0.1564,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,0.9877,0.0,-0.1564,-1.0,-0.9877,0.0,-0.1564,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,0.9877,0.0,-0.1564,-1.0,-0.9877,0.0,-0.1564,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,0.9877,0.0,-0.1564,-1.0,-0.9877,0.0,-0.1564,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,0.9877,0.0,-0.1564,-1.0,-0.9877,0.0,-0.1564,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,0.9877,0.0,-0.1564,-1.0,-0.9877,0.0,-0.1564,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,0.9877,0.0,-0.1564,-1.0,-0.9877,0.0,-0.1564,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,0.9877,0.0,-0.1564,-1.0,-0.9877,0.0,-0.1564,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,0.9877,0.0,-0.1564,-1.0,-0.9877,0.0,-0.1564,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,0.9877,0.0,-0.1564,-1.0,-0.9877,0.0,-0.1564,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,0.9877,0.0,-0.1564,-1.0,-0.9877,0.0,-0.1564,-1.0,-0.9412,0.0062,-0.3378,-1.0,-0.7908,0.0062,-0.6121,-1.0,-0.5629,0.0062,-0.8265,-1.0,-0.28,0.0062,-0.96,-1.0,0.0304,0.0062,-0.9995,-1.0,0.3378,0.0062,-0.9412,-1.0,0.6121,0.0062,-0.7908,-1.0,0.8265,0.0062,-0.5629,-1.0,0.96,0.0062,-0.28,-1.0,0.9877,0.0,-0.1564,-1.0,-0.9864,0.0502,-0.1566,-1.0,-0.8896,0.0453,-0.4545,-1.0,-0.7057,0.0359,-0.7076,-1.0,-0.4529,0.0231,-0.8912,-1.0,-0.156,0.0079,-0.9877,-1.0,0.156,-0.0079,-0.9877,-1.0,0.4529,-0.0231,-0.8912,-1.0,0.7057,-0.0359,-0.7076,-1.0,0.8896,-0.0453,-0.4545,-1.0,0.9864,-0.0502,-0.1566,-1.0,-0.9864,-0.0502,-0.1566,-1.0,-0.8896,-0.0453,-0.4545,-1.0,-0.7057,-0.0359,-0.7076,-1.0,-0.4529,-0.0231,-0.8912,-1.0,-0.156,-0.0079,-0.9877,-1.0,0.156,0.0079,-0.9877,-1.0,0.4529,0.0231,-0.8912,-1.0,0.7057,0.0359,-0.7076,-1.0,0.8896,0.0453,-0.4545,-1.0,0.9864,0.0502,-0.1566,-1.0],"uvs":[0.2,0.05,0.25,0.05,0.2,0.1,0.25,0.1,0.3,0.05,0.3,0.1,0.35,0.05,0.35,0.1,0.4,0.05,0.4,0.1,0.45,0.05,0.45,0.1,0.5,0.05,0.5,0.1,0.55,0.05,0.55,0.1,0.6,0.05,0.6,0.1,0.65,0.05,0.65,0.1,0.7,0.05,0.7,0.1,0.2,0.15,0.25,0.15,0.3,0.15,0.35,0.15,0.4,0.15,0.45,0.15,0.5,0.15,0.55,0.15,0.6,0.15,0.65,0.15,0.7,0.15,0.2,0.2,0.25,0.2,0.3,0.2,0.35,0.2,0.4,0.2,0.45,0.2,0.5,0.2,0.55,0.2,0.6,0.2,0.65,0.2,0.7,0.2,0.2,0.25,0.25,0.25,0.3,0.25,0.35,0.25,0.4,0.25,0.45,0.25,0.5,0.25,0.55,0.25,0.6,0.25,0.65,0.25,0.7,0.25,0.2,0.3,0.25,0.3,0.3,0.3,0.35,0.3,0.4,0.3,0.45,0.3,0.5,0.3,0.55,0.3,0.6,0.3,0.65,0.3,0.7,0.3,0.2,0.35,0.25,0.35,0.3,0.35,0.35,0.35,0.4,0.35,0.45,0.35,0.5,0.35,0.55,0.35,0.6,0.35,0.65,0.35,0.7,0.35,0.2,0.4,0.25,0.4,0.3,0.4,0.35,0.4,0.4,0.4,0.45,0.4,0.5,0.4,0.55,0.4,0.6,0.4,0.65,0.4,0.7,0.4,0.2,0.45,0.25,0.45,0.3,0.45,0.35,0.45,0.4,0.45,0.45,0.45,0.5,0.45,0.55,0.45,0.6,0.45,0.65,0.45,0.7,0.45,0.2,0.5,0.25,0.5,0.3,0.5,0.35,0.5,0.4,0.5,0.45,0.5,0.5,0.5,0.55,0.5,0.6,0.5,0.65,0.5,0.7,0.5,0.2,0.55,0.25,0.55,0.3,0.55,0.35,0.55,0.4,0.55,0.45,0.55,0.5,0.55,0.55,0.55,0.6,0.55,0.65,0.55,0.7,0.55,0.2,0.6,0.25,0.6,0.3,0.6,0.35,0.6,0.4,0.6,0.45,0.6,0.5,0.6,0.55,0.6,0.6,0.6,0.65,0.6,0.7,0.6,0.2,0.65,0.25,0.65,0.3,0.65,0.35,0.65,0.4,0.65,0.45,0.65,0.5,0.65,0.55,0.65,0.6,0.65,0.65,0.65,0.7,0.65,0.2,0.7,0.25,0.7,0.3,0.7,0.35,0.7,0.4,0.7,0.45,0.7,0.5,0.7,0.55,0.7,0.6,0.7,0.65,0.7,0.7,0.7,0.2,0.75,0.25,0.75,0.3,0.75,0.35,0.75,0.4,0.75,0.45,0.75,0.5,0.75,0.55,0.75,0.6,0.75,0.65,0.75,0.7,0.75,0.2,0.8,0.25,0.8,0.3,0.8,0.35,0.8,0.4,0.8,0.45,0.8,0.5,0.8,0.55,0.8,0.6,0.8,0.65,0.8,0.7,0.8,0.2,0.85,0.25,0.85,0.3,0.85,0.35,0.85,0.4,0.85,0.45,0.85,0.5,0.85,0.55,0.85,0.6,0.85,0.65,0.85,0.7,0.85,0.2,0.9,0.25,0.9,0.3,0.9,0.35,0.9,0.4,0.9,0.45,0.9,0.5,0.9,0.55,0.9,0.6,0.9,0.65,0.9,0.7,0.9,0.2,0.95,0.25,0.95,0.3,0.95,0.35,0.95,0.4,0.95,0.45,0.95,0.5,0.95,0.55,0.95,0.6,0.95,0.65,0.95,0.7,0.95,0.225,0.0,0.275,0.0,0.325,0.0,0.375,0.0,0.425,0.0,0.475,0.0,0.525,0.0,0.575,0.0,0.625,0.0,0.675,0.0,0.225,1.0,0.275,1.0,0.325,1.0,0.375,1.0,0.425,1.0,0.475,1.0,0.525,1.0,0.575,1.0,0.625,1.0,0.675,1.0],"uvs2":null,"colors":null,"hasVertexAlpha":false,"matricesIndices":null,"matricesWeights":null,"matricesIndicesExtra":null,"matricesWeightsExtra":null,"indices":[0,1,2,2,1,3,1,4,3,3,4,5,4,6,5,5,6,7,6,8,7,7,8,9,8,10,9,9,10,11,10,12,11,11,12,13,12,14,13,13,14,15,14,16,15,15,16,17,16,18,17,17,18,19,18,20,19,19,20,21,2,3,22,22,3,23,3,5,23,23,5,24,5,7,24,24,7,25,7,9,25,25,9,26,9,11,26,26,11,27,11,13,27,27,13,28,13,15,28,28,15,29,15,17,29,29,17,30,17,19,30,30,19,31,19,21,31,31,21,32,22,23,33,33,23,34,23,24,34,34,24,35,24,25,35,35,25,36,25,26,36,36,26,37,26,27,37,37,27,38,27,28,38,38,28,39,28,29,39,39,29,40,29,30,40,40,30,41,30,31,41,41,31,42,31,32,42,42,32,43,33,34,44,44,34,45,34,35,45,45,35,46,35,36,46,46,36,47,36,37,47,47,37,48,37,38,48,48,38,49,38,39,49,49,39,50,39,40,50,50,40,51,40,41,51,51,41,52,41,42,52,52,42,53,42,43,53,53,43,54,44,45,55,55,45,56,45,46,56,56,46,57,46,47,57,57,47,58,47,48,58,58,48,59,48,49,59,59,49,60,49,50,60,60,50,61,50,51,61,61,51,62,51,52,62,62,52,63,52,53,63,63,53,64,53,54,64,64,54,65,55,56,66,66,56,67,56,57,67,67,57,68,57,58,68,68,58,69,58,59,69,69,59,70,59,60,70,70,60,71,60,61,71,71,61,72,61,62,72,72,62,73,62,63,73,73,63,74,63,64,74,74,64,75,64,65,75,75,65,76,66,67,77,77,67,78,67,68,78,78,68,79,68,69,79,79,69,80,69,70,80,80,70,81,70,71,81,81,71,82,71,72,82,82,72,83,72,73,83,83,73,84,73,74,84,84,74,85,74,75,85,85,75,86,75,76,86,86,76,87,77,78,88,88,78,89,78,79,89,89,79,90,79,80,90,90,80,91,80,81,91,91,81,92,81,82,92,92,82,93,82,83,93,93,83,94,83,84,94,94,84,95,84,85,95,95,85,96,85,86,96,96,86,97,86,87,97,97,87,98,88,89,99,99,89,100,89,90,100,100,90,101,90,91,101,101,91,102,91,92,102,102,92,103,92,93,103,103,93,104,93,94,104,104,94,105,94,95,105,105,95,106,95,96,106,106,96,107,96,97,107,107,97,108,97,98,108,108,98,109,99,100,110,110,100,111,100,101,111,111,101,112,101,102,112,112,102,113,102,103,113,113,103,114,103,104,114,114,104,115,104,105,115,115,105,116,105,106,116,116,106,117,106,107,117,117,107,118,107,108,118,118,108,119,108,109,119,119,109,120,110,111,121,121,111,122,111,112,122,122,112,123,112,113,123,123,113,124,113,114,124,124,114,125,114,115,125,125,115,126,115,116,126,126,116,127,116,117,127,127,117,128,117,118,128,128,118,129,118,119,129,129,119,130,119,120,130,130,120,131,121,122,132,132,122,133,122,123,133,133,123,134,123,124,134,134,124,135,124,125,135,135,125,136,125,126,136,136,126,137,126,127,137,137,127,138,127,128,138,138,128,139,128,129,139,139,129,140,129,130,140,140,130,141,130,131,141,141,131,142,132,133,143,143,133,144,133,134,144,144,134,145,134,135,145,145,135,146,135,136,146,146,136,147,136,137,147,147,137,148,137,138,148,148,138,149,138,139,149,149,139,150,139,140,150,150,140,151,140,141,151,151,141,152,141,142,152,152,142,153,143,144,154,154,144,155,144,145,155,155,145,156,145,146,156,156,146,157,146,147,157,157,147,158,147,148,158,158,148,159,148,149,159,159,149,160,149,150,160,160,150,161,150,151,161,161,151,162,151,152,162,162,152,163,152,153,163,163,153,164,154,155,165,165,155,166,155,156,166,166,156,167,156,157,167,167,157,168,157,158,168,168,158,169,158,159,169,169,159,170,159,160,170,170,160,171,160,161,171,171,161,172,161,162,172,172,162,173,162,163,173,173,163,174,163,164,174,174,164,175,165,166,176,176,166,177,166,167,177,177,167,178,167,168,178,178,168,179,168,169,179,179,169,180,169,170,180,180,170,181,170,171,181,181,171,182,171,172,182,182,172,183,172,173,183,183,173,184,173,174,184,184,174,185,174,175,185,185,175,186,176,177,187,187,177,188,177,178,188,188,178,189,178,179,189,189,179,190,179,180,190,190,180,191,180,181,191,191,181,192,181,182,192,192,182,193,182,183,193,193,183,194,183,184,194,194,184,195,184,185,195,195,185,196,185,186,196,196,186,197,187,188,198,198,188,199,188,189,199,199,189,200,189,190,200,200,190,201,190,191,201,201,191,202,191,192,202,202,192,203,192,193,203,203,193,204,193,194,204,204,194,205,194,195,205,205,195,206,195,196,206,206,196,207,196,197,207,207,197,208,1,0,209,4,1,210,6,4,211,8,6,212,10,8,213,12,10,214,14,12,215,16,14,216,18,16,217,20,18,218,198,199,219,199,200,220,200,201,221,201,202,222,202,203,223,203,204,224,204,205,225,205,206,226,206,207,227,207,208,228],"receiveShadows":false,"infiniteDistance":false,"billboardMode":0,"visibility":1.0,"subMeshes":[{"materialIndex":0,"verticesStart":0,"verticesCount":229,"indexStart":0,"indexCount":1140}],"instances":null,"skeletonId":-1,"numBoneInfluencers":4,"applyFog":false,"lodMeshIds":null,"lodDistances":null,"lodCoverages":null,"rotation":null,"scaling":[1.0,1.0,1.0],"rotationQuaternion":[0.0,0.0,0.0,1.0],"actions":null,"checkCollisions":false,"pickable":true,"showBoundingBox":false,"showSubMeshesBoundingBox":false,"alphaIndex":0,"physicsImpostor":0,"physicsMass":0.0,"physicsFriction":0.0,"physicsRestitution":0.0,"name":"pasted__pSphere9","id":"E0ACC528-42DB-18B6-B911-CD931A1F8997","parentId":"8E569C08-4B86-AA57-74E7-E9902231D610","position":[6.0,0.0,5.0],"animations":[],"autoAnimate":true,"autoAnimateFrom":1,"autoAnimateTo":200,"autoAnimateLoop":true,"metadata":{}},{"materialId":"78708E23-4DEB-D855-2196-43A7BA84D718","isEnabled":true,"isVisible":true,"positions":[0.0,-0.9877,0.1564,-0.0483,-0.9877,0.1488,0.0,-0.9511,0.309,-0.0955,-0.9511,0.2939,-0.0919,-0.9877,0.1266,-0.1816,-0.9511,0.25,-0.1266,-0.9877,0.0919,-0.25,-0.9511,0.1816,-0.1488,-0.9877,0.0483,-0.2939,-0.9511,0.0955,-0.1564,-0.9877,0.0,-0.309,-0.9511,0.0,-0.1488,-0.9877,-0.0483,-0.2939,-0.9511,-0.0955,-0.1266,-0.9877,-0.0919,-0.25,-0.9511,-0.1816,-0.0919,-0.9877,-0.1266,-0.1816,-0.9511,-0.25,-0.0483,-0.9877,-0.1488,-0.0955,-0.9511,-0.2939,0.0,-0.9877,-0.1564,0.0,-0.9511,-0.309,0.0,-0.891,0.454,-0.1403,-0.891,0.4318,-0.2668,-0.891,0.3673,-0.3673,-0.891,0.2668,-0.4318,-0.891,0.1403,-0.454,-0.891,0.0,-0.4318,-0.891,-0.1403,-0.3673,-0.891,-0.2668,-0.2668,-0.891,-0.3673,-0.1403,-0.891,-0.4318,0.0,-0.891,-0.454,0.0,-0.809,0.5878,-0.1816,-0.809,0.559,-0.3455,-0.809,0.4755,-0.4755,-0.809,0.3455,-0.559,-0.809,0.1816,-0.5878,-0.809,0.0,-0.559,-0.809,-0.1816,-0.4755,-0.809,-0.3455,-0.3455,-0.809,-0.4755,-0.1816,-0.809,-0.559,0.0,-0.809,-0.5878,0.0,-0.7071,0.7071,-0.2185,-0.7071,0.6725,-0.4156,-0.7071,0.5721,-0.5721,-0.7071,0.4156,-0.6725,-0.7071,0.2185,-0.7071,-0.7071,0.0,-0.6725,-0.7071,-0.2185,-0.5721,-0.7071,-0.4156,-0.4156,-0.7071,-0.5721,-0.2185,-0.7071,-0.6725,0.0,-0.7071,-0.7071,0.0,-0.5878,0.809,-0.25,-0.5878,0.7694,-0.4755,-0.5878,0.6545,-0.6545,-0.5878,0.4755,-0.7694,-0.5878,0.25,-0.809,-0.5878,0.0,-0.7694,-0.5878,-0.25,-0.6545,-0.5878,-0.4755,-0.4755,-0.5878,-0.6545,-0.25,-0.5878,-0.7694,0.0,-0.5878,-0.809,0.0,-0.454,0.891,-0.2753,-0.454,0.8474,-0.5237,-0.454,0.7208,-0.7208,-0.454,0.5237,-0.8474,-0.454,0.2753,-0.891,-0.454,0.0,-0.8474,-0.454,-0.2753,-0.7208,-0.454,-0.5237,-0.5237,-0.454,-0.7208,-0.2753,-0.454,-0.8474,0.0,-0.454,-0.891,0.0,-0.309,0.9511,-0.2939,-0.309,0.9045,-0.559,-0.309,0.7694,-0.7694,-0.309,0.559,-0.9045,-0.309,0.2939,-0.9511,-0.309,0.0,-0.9045,-0.309,-0.2939,-0.7694,-0.309,-0.559,-0.559,-0.309,-0.7694,-0.2939,-0.309,-0.9045,0.0,-0.309,-0.9511,0.0,-0.1564,0.9877,-0.3052,-0.1564,0.9393,-0.5805,-0.1564,0.7991,-0.7991,-0.1564,0.5805,-0.9393,-0.1564,0.3052,-0.9877,-0.1564,0.0,-0.9393,-0.1564,-0.3052,-0.7991,-0.1564,-0.5805,-0.5805,-0.1564,-0.7991,-0.3052,-0.1564,-0.9393,0.0,-0.1564,-0.9877,0.0,0.0,1.0,-0.309,0.0,0.9511,-0.5878,0.0,0.809,-0.809,0.0,0.5878,-0.9511,0.0,0.309,-1.0,0.0,0.0,-0.9511,0.0,-0.309,-0.809,0.0,-0.5878,-0.5878,0.0,-0.809,-0.309,0.0,-0.9511,0.0,0.0,-1.0,0.0,0.1564,0.9877,-0.3052,0.1564,0.9393,-0.5805,0.1564,0.7991,-0.7991,0.1564,0.5805,-0.9393,0.1564,0.3052,-0.9877,0.1564,0.0,-0.9393,0.1564,-0.3052,-0.7991,0.1564,-0.5805,-0.5805,0.1564,-0.7991,-0.3052,0.1564,-0.9393,0.0,0.1564,-0.9877,0.0,0.309,0.9511,-0.2939,0.309,0.9045,-0.559,0.309,0.7694,-0.7694,0.309,0.559,-0.9045,0.309,0.2939,-0.9511,0.309,0.0,-0.9045,0.309,-0.2939,-0.7694,0.309,-0.559,-0.559,0.309,-0.7694,-0.2939,0.309,-0.9045,0.0,0.309,-0.9511,0.0,0.454,0.891,-0.2753,0.454,0.8474,-0.5237,0.454,0.7208,-0.7208,0.454,0.5237,-0.8474,0.454,0.2753,-0.891,0.454,0.0,-0.8474,0.454,-0.2753,-0.7208,0.454,-0.5237,-0.5237,0.454,-0.7208,-0.2753,0.454,-0.8474,0.0,0.454,-0.891,0.0,0.5878,0.809,-0.25,0.5878,0.7694,-0.4755,0.5878,0.6545,-0.6545,0.5878,0.4755,-0.7694,0.5878,0.25,-0.809,0.5878,0.0,-0.7694,0.5878,-0.25,-0.6545,0.5878,-0.4755,-0.4755,0.5878,-0.6545,-0.25,0.5878,-0.7694,0.0,0.5878,-0.809,0.0,0.7071,0.7071,-0.2185,0.7071,0.6725,-0.4156,0.7071,0.5721,-0.5721,0.7071,0.4156,-0.6725,0.7071,0.2185,-0.7071,0.7071,0.0,-0.6725,0.7071,-0.2185,-0.5721,0.7071,-0.4156,-0.4156,0.7071,-0.5721,-0.2185,0.7071,-0.6725,0.0,0.7071,-0.7071,0.0,0.809,0.5878,-0.1816,0.809,0.559,-0.3455,0.809,0.4755,-0.4755,0.809,0.3455,-0.559,0.809,0.1816,-0.5878,0.809,0.0,-0.559,0.809,-0.1816,-0.4755,0.809,-0.3455,-0.3455,0.809,-0.4755,-0.1816,0.809,-0.559,0.0,0.809,-0.5878,0.0,0.891,0.454,-0.1403,0.891,0.4318,-0.2668,0.891,0.3673,-0.3673,0.891,0.2668,-0.4318,0.891,0.1403,-0.454,0.891,0.0,-0.4318,0.891,-0.1403,-0.3673,0.891,-0.2668,-0.2668,0.891,-0.3673,-0.1403,0.891,-0.4318,0.0,0.891,-0.454,0.0,0.9511,0.309,-0.0955,0.9511,0.2939,-0.1816,0.9511,0.25,-0.25,0.9511,0.1816,-0.2939,0.9511,0.0955,-0.309,0.9511,0.0,-0.2939,0.9511,-0.0955,-0.25,0.9511,-0.1816,-0.1816,0.9511,-0.25,-0.0955,0.9511,-0.2939,0.0,0.9511,-0.309,0.0,0.9877,0.1564,-0.0483,0.9877,0.1488,-0.0919,0.9877,0.1266,-0.1266,0.9877,0.0919,-0.1488,0.9877,0.0483,-0.1564,0.9877,0.0,-0.1488,0.9877,-0.0483,-0.1266,0.9877,-0.0919,-0.0919,0.9877,-0.1266,-0.0483,0.9877,-0.1488,0.0,0.9877,-0.1564,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0],"normals":[-0.0317,-0.9792,0.2003,-0.0619,-0.9797,0.1906,-0.0528,-0.9414,0.3331,-0.1031,-0.9427,0.3173,-0.1178,-0.9797,0.1621,-0.1961,-0.9427,0.2699,-0.1621,-0.9797,0.1178,-0.2699,-0.9427,0.1961,-0.1906,-0.9797,0.0619,-0.3173,-0.9427,0.1031,-0.2004,-0.9797,0.0,-0.3336,-0.9427,0.0,-0.1906,-0.9797,-0.0619,-0.3173,-0.9427,-0.1031,-0.1621,-0.9797,-0.1178,-0.2699,-0.9427,-0.1961,-0.1178,-0.9797,-0.1621,-0.1961,-0.9427,-0.2699,-0.0619,-0.9797,-0.1906,-0.1031,-0.9427,-0.3173,-0.0317,-0.9792,-0.2003,-0.0528,-0.9414,-0.3331,-0.0744,-0.8798,0.4694,-0.1455,-0.8823,0.4477,-0.2767,-0.8823,0.3808,-0.3808,-0.8823,0.2767,-0.4477,-0.8823,0.1455,-0.4708,-0.8823,0.0,-0.4477,-0.8823,-0.1455,-0.3808,-0.8823,-0.2767,-0.2767,-0.8823,-0.3808,-0.1455,-0.8823,-0.4477,-0.0744,-0.8798,-0.4694,-0.0946,-0.7967,0.597,-0.1853,-0.8003,0.5703,-0.3525,-0.8003,0.4851,-0.4851,-0.8003,0.3525,-0.5703,-0.8003,0.1853,-0.5997,-0.8003,0.0,-0.5703,-0.8003,-0.1853,-0.4851,-0.8003,-0.3525,-0.3525,-0.8003,-0.4851,-0.1853,-0.8003,-0.5703,-0.0946,-0.7967,-0.597,-0.1126,-0.6943,0.7108,-0.221,-0.6988,0.6803,-0.4205,-0.6988,0.5787,-0.5787,-0.6988,0.4205,-0.6803,-0.6988,0.221,-0.7153,-0.6988,0.0,-0.6803,-0.6988,-0.221,-0.5787,-0.6988,-0.4205,-0.4205,-0.6988,-0.5787,-0.221,-0.6988,-0.6803,-0.1126,-0.6943,-0.7108,-0.1279,-0.5756,0.8076,-0.2516,-0.5804,0.7745,-0.4787,-0.5804,0.6588,-0.6588,-0.5804,0.4787,-0.7745,-0.5804,0.2516,-0.8143,-0.5804,0.0,-0.7745,-0.5804,-0.2516,-0.6588,-0.5804,-0.4787,-0.4787,-0.5804,-0.6588,-0.2516,-0.5804,-0.7745,-0.1279,-0.5756,-0.8076,-0.1402,-0.4436,0.8852,-0.2763,-0.448,0.8503,-0.5255,-0.448,0.7233,-0.7233,-0.448,0.5255,-0.8503,-0.448,0.2763,-0.894,-0.448,0.0,-0.8503,-0.448,-0.2763,-0.7233,-0.448,-0.5255,-0.5255,-0.448,-0.7233,-0.2763,-0.448,-0.8503,-0.1402,-0.4436,-0.8852,-0.1492,-0.3014,0.9418,-0.2943,-0.3048,0.9058,-0.5598,-0.3048,0.7705,-0.7705,-0.3048,0.5598,-0.9058,-0.3048,0.2943,-0.9524,-0.3048,0.0,-0.9058,-0.3048,-0.2943,-0.7705,-0.3048,-0.5598,-0.5598,-0.3048,-0.7705,-0.2943,-0.3048,-0.9058,-0.1492,-0.3014,-0.9418,-0.1546,-0.1524,0.9762,-0.3053,-0.1542,0.9397,-0.5808,-0.1542,0.7993,-0.7993,-0.1542,0.5808,-0.9397,-0.1542,0.3053,-0.988,-0.1542,0.0,-0.9397,-0.1542,-0.3053,-0.7993,-0.1542,-0.5808,-0.5808,-0.1542,-0.7993,-0.3053,-0.1542,-0.9397,-0.1546,-0.1524,-0.9762,-0.1564,0.0,0.9877,-0.309,0.0,0.9511,-0.5878,0.0,0.809,-0.809,0.0,0.5878,-0.9511,0.0,0.309,-1.0,0.0,0.0,-0.9511,0.0,-0.309,-0.809,0.0,-0.5878,-0.5878,0.0,-0.809,-0.309,0.0,-0.9511,-0.1564,0.0,-0.9877,-0.1546,0.1524,0.9762,-0.3053,0.1542,0.9397,-0.5808,0.1542,0.7993,-0.7993,0.1542,0.5808,-0.9397,0.1542,0.3053,-0.988,0.1542,0.0,-0.9397,0.1542,-0.3053,-0.7993,0.1542,-0.5808,-0.5808,0.1542,-0.7993,-0.3053,0.1542,-0.9397,-0.1546,0.1524,-0.9762,-0.1492,0.3014,0.9418,-0.2943,0.3048,0.9058,-0.5598,0.3048,0.7705,-0.7705,0.3048,0.5598,-0.9058,0.3048,0.2943,-0.9524,0.3048,0.0,-0.9058,0.3048,-0.2943,-0.7705,0.3048,-0.5598,-0.5598,0.3048,-0.7705,-0.2943,0.3048,-0.9058,-0.1492,0.3014,-0.9418,-0.1402,0.4436,0.8852,-0.2763,0.448,0.8503,-0.5255,0.448,0.7233,-0.7233,0.448,0.5255,-0.8503,0.448,0.2763,-0.894,0.448,0.0,-0.8503,0.448,-0.2763,-0.7233,0.448,-0.5255,-0.5255,0.448,-0.7233,-0.2763,0.448,-0.8503,-0.1402,0.4436,-0.8852,-0.1279,0.5756,0.8076,-0.2516,0.5804,0.7745,-0.4787,0.5804,0.6588,-0.6588,0.5804,0.4787,-0.7745,0.5804,0.2516,-0.8143,0.5804,0.0,-0.7745,0.5804,-0.2516,-0.6588,0.5804,-0.4787,-0.4787,0.5804,-0.6588,-0.2516,0.5804,-0.7745,-0.1279,0.5756,-0.8076,-0.1126,0.6943,0.7108,-0.221,0.6988,0.6803,-0.4205,0.6988,0.5787,-0.5787,0.6988,0.4205,-0.6803,0.6988,0.221,-0.7153,0.6988,0.0,-0.6803,0.6988,-0.221,-0.5787,0.6988,-0.4205,-0.4205,0.6988,-0.5787,-0.221,0.6988,-0.6803,-0.1126,0.6943,-0.7108,-0.0946,0.7967,0.597,-0.1853,0.8003,0.5703,-0.3525,0.8003,0.4851,-0.4851,0.8003,0.3525,-0.5703,0.8003,0.1853,-0.5997,0.8003,0.0,-0.5703,0.8003,-0.1853,-0.4851,0.8003,-0.3525,-0.3525,0.8003,-0.4851,-0.1853,0.8003,-0.5703,-0.0946,0.7967,-0.597,-0.0744,0.8798,0.4694,-0.1455,0.8823,0.4477,-0.2767,0.8823,0.3808,-0.3808,0.8823,0.2767,-0.4477,0.8823,0.1455,-0.4708,0.8823,0.0,-0.4477,0.8823,-0.1455,-0.3808,0.8823,-0.2767,-0.2767,0.8823,-0.3808,-0.1455,0.8823,-0.4477,-0.0744,0.8798,-0.4694,-0.0528,0.9414,0.3331,-0.1031,0.9427,0.3173,-0.1961,0.9427,0.2699,-0.2699,0.9427,0.1961,-0.3173,0.9427,0.1031,-0.3336,0.9427,0.0,-0.3173,0.9427,-0.1031,-0.2699,0.9427,-0.1961,-0.1961,0.9427,-0.2699,-0.1031,0.9427,-0.3173,-0.0528,0.9414,-0.3331,-0.0317,0.9792,0.2003,-0.0619,0.9797,0.1906,-0.1178,0.9797,0.1621,-0.1621,0.9797,0.1178,-0.1906,0.9797,0.0619,-0.2004,0.9797,0.0,-0.1906,0.9797,-0.0619,-0.1621,0.9797,-0.1178,-0.1178,0.9797,-0.1621,-0.0619,0.9797,-0.1906,-0.0317,0.9792,-0.2003,-0.0509,-0.9987,0.0,-0.0509,-0.9987,0.0,-0.0509,-0.9987,0.0,-0.0509,-0.9987,0.0,-0.0509,-0.9987,0.0,-0.0509,-0.9987,0.0,-0.0509,-0.9987,0.0,-0.0509,-0.9987,0.0,-0.0509,-0.9987,0.0,-0.0509,-0.9987,0.0,-0.0509,0.9987,0.0,-0.0509,0.9987,0.0,-0.0509,0.9987,0.0,-0.0509,0.9987,0.0,-0.0509,0.9987,0.0,-0.0509,0.9987,0.0,-0.0509,0.9987,0.0,-0.0509,0.9987,0.0,-0.0509,0.9987,0.0,-0.0509,0.9987,0.0],"tangents":[-0.9877,0.0,-0.1564,-1.0,-0.96,0.0062,-0.28,-1.0,-0.9877,0.0,-0.1564,-1.0,-0.9511,0.0,-0.309,-1.0,-0.8265,0.0062,-0.5629,-1.0,-0.809,0.0,-0.5878,-1.0,-0.6121,0.0062,-0.7908,-1.0,-0.5878,0.0,-0.809,-1.0,-0.3378,0.0062,-0.9412,-1.0,-0.309,0.0,-0.9511,-1.0,-0.0304,0.0062,-0.9995,-1.0,0.0,0.0,-1.0,-1.0,0.28,0.0062,-0.96,-1.0,0.309,0.0,-0.9511,-1.0,0.5629,0.0062,-0.8265,-1.0,0.5878,0.0,-0.809,-1.0,0.7908,0.0062,-0.6121,-1.0,0.809,0.0,-0.5878,-1.0,0.9412,0.0062,-0.3378,-1.0,0.9511,0.0,-0.309,-1.0,0.9877,0.0,-0.1564,-1.0,0.9877,0.0,-0.1564,-1.0,-0.9877,0.0,-0.1564,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,0.9877,0.0,-0.1564,-1.0,-0.9877,0.0,-0.1564,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,0.9877,0.0,-0.1564,-1.0,-0.9877,0.0,-0.1564,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,0.9877,0.0,-0.1564,-1.0,-0.9877,0.0,-0.1564,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,0.9877,0.0,-0.1564,-1.0,-0.9877,0.0,-0.1564,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,0.9877,0.0,-0.1564,-1.0,-0.9877,0.0,-0.1564,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,0.9877,0.0,-0.1564,-1.0,-0.9877,0.0,-0.1564,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,0.9877,0.0,-0.1564,-1.0,-0.9877,0.0,-0.1564,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,0.9877,0.0,-0.1564,-1.0,-0.9877,0.0,-0.1564,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,0.9877,0.0,-0.1564,-1.0,-0.9877,0.0,-0.1564,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,0.9877,0.0,-0.1564,-1.0,-0.9877,0.0,-0.1564,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,0.9877,0.0,-0.1564,-1.0,-0.9877,0.0,-0.1564,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,0.9877,0.0,-0.1564,-1.0,-0.9877,0.0,-0.1564,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,0.9877,0.0,-0.1564,-1.0,-0.9877,0.0,-0.1564,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,0.9877,0.0,-0.1564,-1.0,-0.9877,0.0,-0.1564,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,0.9877,0.0,-0.1564,-1.0,-0.9877,0.0,-0.1564,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,0.9877,0.0,-0.1564,-1.0,-0.9877,0.0,-0.1564,-1.0,-0.9412,0.0062,-0.3378,-1.0,-0.7908,0.0062,-0.6121,-1.0,-0.5629,0.0062,-0.8265,-1.0,-0.28,0.0062,-0.96,-1.0,0.0304,0.0062,-0.9995,-1.0,0.3378,0.0062,-0.9412,-1.0,0.6121,0.0062,-0.7908,-1.0,0.8265,0.0062,-0.5629,-1.0,0.96,0.0062,-0.28,-1.0,0.9877,0.0,-0.1564,-1.0,-0.9864,0.0502,-0.1566,-1.0,-0.8896,0.0453,-0.4545,-1.0,-0.7057,0.0359,-0.7076,-1.0,-0.4529,0.0231,-0.8912,-1.0,-0.156,0.0079,-0.9877,-1.0,0.156,-0.0079,-0.9877,-1.0,0.4529,-0.0231,-0.8912,-1.0,0.7057,-0.0359,-0.7076,-1.0,0.8896,-0.0453,-0.4545,-1.0,0.9864,-0.0502,-0.1566,-1.0,-0.9864,-0.0502,-0.1566,-1.0,-0.8896,-0.0453,-0.4545,-1.0,-0.7057,-0.0359,-0.7076,-1.0,-0.4529,-0.0231,-0.8912,-1.0,-0.156,-0.0079,-0.9877,-1.0,0.156,0.0079,-0.9877,-1.0,0.4529,0.0231,-0.8912,-1.0,0.7057,0.0359,-0.7076,-1.0,0.8896,0.0453,-0.4545,-1.0,0.9864,0.0502,-0.1566,-1.0],"uvs":[0.2,0.05,0.25,0.05,0.2,0.1,0.25,0.1,0.3,0.05,0.3,0.1,0.35,0.05,0.35,0.1,0.4,0.05,0.4,0.1,0.45,0.05,0.45,0.1,0.5,0.05,0.5,0.1,0.55,0.05,0.55,0.1,0.6,0.05,0.6,0.1,0.65,0.05,0.65,0.1,0.7,0.05,0.7,0.1,0.2,0.15,0.25,0.15,0.3,0.15,0.35,0.15,0.4,0.15,0.45,0.15,0.5,0.15,0.55,0.15,0.6,0.15,0.65,0.15,0.7,0.15,0.2,0.2,0.25,0.2,0.3,0.2,0.35,0.2,0.4,0.2,0.45,0.2,0.5,0.2,0.55,0.2,0.6,0.2,0.65,0.2,0.7,0.2,0.2,0.25,0.25,0.25,0.3,0.25,0.35,0.25,0.4,0.25,0.45,0.25,0.5,0.25,0.55,0.25,0.6,0.25,0.65,0.25,0.7,0.25,0.2,0.3,0.25,0.3,0.3,0.3,0.35,0.3,0.4,0.3,0.45,0.3,0.5,0.3,0.55,0.3,0.6,0.3,0.65,0.3,0.7,0.3,0.2,0.35,0.25,0.35,0.3,0.35,0.35,0.35,0.4,0.35,0.45,0.35,0.5,0.35,0.55,0.35,0.6,0.35,0.65,0.35,0.7,0.35,0.2,0.4,0.25,0.4,0.3,0.4,0.35,0.4,0.4,0.4,0.45,0.4,0.5,0.4,0.55,0.4,0.6,0.4,0.65,0.4,0.7,0.4,0.2,0.45,0.25,0.45,0.3,0.45,0.35,0.45,0.4,0.45,0.45,0.45,0.5,0.45,0.55,0.45,0.6,0.45,0.65,0.45,0.7,0.45,0.2,0.5,0.25,0.5,0.3,0.5,0.35,0.5,0.4,0.5,0.45,0.5,0.5,0.5,0.55,0.5,0.6,0.5,0.65,0.5,0.7,0.5,0.2,0.55,0.25,0.55,0.3,0.55,0.35,0.55,0.4,0.55,0.45,0.55,0.5,0.55,0.55,0.55,0.6,0.55,0.65,0.55,0.7,0.55,0.2,0.6,0.25,0.6,0.3,0.6,0.35,0.6,0.4,0.6,0.45,0.6,0.5,0.6,0.55,0.6,0.6,0.6,0.65,0.6,0.7,0.6,0.2,0.65,0.25,0.65,0.3,0.65,0.35,0.65,0.4,0.65,0.45,0.65,0.5,0.65,0.55,0.65,0.6,0.65,0.65,0.65,0.7,0.65,0.2,0.7,0.25,0.7,0.3,0.7,0.35,0.7,0.4,0.7,0.45,0.7,0.5,0.7,0.55,0.7,0.6,0.7,0.65,0.7,0.7,0.7,0.2,0.75,0.25,0.75,0.3,0.75,0.35,0.75,0.4,0.75,0.45,0.75,0.5,0.75,0.55,0.75,0.6,0.75,0.65,0.75,0.7,0.75,0.2,0.8,0.25,0.8,0.3,0.8,0.35,0.8,0.4,0.8,0.45,0.8,0.5,0.8,0.55,0.8,0.6,0.8,0.65,0.8,0.7,0.8,0.2,0.85,0.25,0.85,0.3,0.85,0.35,0.85,0.4,0.85,0.45,0.85,0.5,0.85,0.55,0.85,0.6,0.85,0.65,0.85,0.7,0.85,0.2,0.9,0.25,0.9,0.3,0.9,0.35,0.9,0.4,0.9,0.45,0.9,0.5,0.9,0.55,0.9,0.6,0.9,0.65,0.9,0.7,0.9,0.2,0.95,0.25,0.95,0.3,0.95,0.35,0.95,0.4,0.95,0.45,0.95,0.5,0.95,0.55,0.95,0.6,0.95,0.65,0.95,0.7,0.95,0.225,0.0,0.275,0.0,0.325,0.0,0.375,0.0,0.425,0.0,0.475,0.0,0.525,0.0,0.575,0.0,0.625,0.0,0.675,0.0,0.225,1.0,0.275,1.0,0.325,1.0,0.375,1.0,0.425,1.0,0.475,1.0,0.525,1.0,0.575,1.0,0.625,1.0,0.675,1.0],"uvs2":null,"colors":null,"hasVertexAlpha":false,"matricesIndices":null,"matricesWeights":null,"matricesIndicesExtra":null,"matricesWeightsExtra":null,"indices":[0,1,2,2,1,3,1,4,3,3,4,5,4,6,5,5,6,7,6,8,7,7,8,9,8,10,9,9,10,11,10,12,11,11,12,13,12,14,13,13,14,15,14,16,15,15,16,17,16,18,17,17,18,19,18,20,19,19,20,21,2,3,22,22,3,23,3,5,23,23,5,24,5,7,24,24,7,25,7,9,25,25,9,26,9,11,26,26,11,27,11,13,27,27,13,28,13,15,28,28,15,29,15,17,29,29,17,30,17,19,30,30,19,31,19,21,31,31,21,32,22,23,33,33,23,34,23,24,34,34,24,35,24,25,35,35,25,36,25,26,36,36,26,37,26,27,37,37,27,38,27,28,38,38,28,39,28,29,39,39,29,40,29,30,40,40,30,41,30,31,41,41,31,42,31,32,42,42,32,43,33,34,44,44,34,45,34,35,45,45,35,46,35,36,46,46,36,47,36,37,47,47,37,48,37,38,48,48,38,49,38,39,49,49,39,50,39,40,50,50,40,51,40,41,51,51,41,52,41,42,52,52,42,53,42,43,53,53,43,54,44,45,55,55,45,56,45,46,56,56,46,57,46,47,57,57,47,58,47,48,58,58,48,59,48,49,59,59,49,60,49,50,60,60,50,61,50,51,61,61,51,62,51,52,62,62,52,63,52,53,63,63,53,64,53,54,64,64,54,65,55,56,66,66,56,67,56,57,67,67,57,68,57,58,68,68,58,69,58,59,69,69,59,70,59,60,70,70,60,71,60,61,71,71,61,72,61,62,72,72,62,73,62,63,73,73,63,74,63,64,74,74,64,75,64,65,75,75,65,76,66,67,77,77,67,78,67,68,78,78,68,79,68,69,79,79,69,80,69,70,80,80,70,81,70,71,81,81,71,82,71,72,82,82,72,83,72,73,83,83,73,84,73,74,84,84,74,85,74,75,85,85,75,86,75,76,86,86,76,87,77,78,88,88,78,89,78,79,89,89,79,90,79,80,90,90,80,91,80,81,91,91,81,92,81,82,92,92,82,93,82,83,93,93,83,94,83,84,94,94,84,95,84,85,95,95,85,96,85,86,96,96,86,97,86,87,97,97,87,98,88,89,99,99,89,100,89,90,100,100,90,101,90,91,101,101,91,102,91,92,102,102,92,103,92,93,103,103,93,104,93,94,104,104,94,105,94,95,105,105,95,106,95,96,106,106,96,107,96,97,107,107,97,108,97,98,108,108,98,109,99,100,110,110,100,111,100,101,111,111,101,112,101,102,112,112,102,113,102,103,113,113,103,114,103,104,114,114,104,115,104,105,115,115,105,116,105,106,116,116,106,117,106,107,117,117,107,118,107,108,118,118,108,119,108,109,119,119,109,120,110,111,121,121,111,122,111,112,122,122,112,123,112,113,123,123,113,124,113,114,124,124,114,125,114,115,125,125,115,126,115,116,126,126,116,127,116,117,127,127,117,128,117,118,128,128,118,129,118,119,129,129,119,130,119,120,130,130,120,131,121,122,132,132,122,133,122,123,133,133,123,134,123,124,134,134,124,135,124,125,135,135,125,136,125,126,136,136,126,137,126,127,137,137,127,138,127,128,138,138,128,139,128,129,139,139,129,140,129,130,140,140,130,141,130,131,141,141,131,142,132,133,143,143,133,144,133,134,144,144,134,145,134,135,145,145,135,146,135,136,146,146,136,147,136,137,147,147,137,148,137,138,148,148,138,149,138,139,149,149,139,150,139,140,150,150,140,151,140,141,151,151,141,152,141,142,152,152,142,153,143,144,154,154,144,155,144,145,155,155,145,156,145,146,156,156,146,157,146,147,157,157,147,158,147,148,158,158,148,159,148,149,159,159,149,160,149,150,160,160,150,161,150,151,161,161,151,162,151,152,162,162,152,163,152,153,163,163,153,164,154,155,165,165,155,166,155,156,166,166,156,167,156,157,167,167,157,168,157,158,168,168,158,169,158,159,169,169,159,170,159,160,170,170,160,171,160,161,171,171,161,172,161,162,172,172,162,173,162,163,173,173,163,174,163,164,174,174,164,175,165,166,176,176,166,177,166,167,177,177,167,178,167,168,178,178,168,179,168,169,179,179,169,180,169,170,180,180,170,181,170,171,181,181,171,182,171,172,182,182,172,183,172,173,183,183,173,184,173,174,184,184,174,185,174,175,185,185,175,186,176,177,187,187,177,188,177,178,188,188,178,189,178,179,189,189,179,190,179,180,190,190,180,191,180,181,191,191,181,192,181,182,192,192,182,193,182,183,193,193,183,194,183,184,194,194,184,195,184,185,195,195,185,196,185,186,196,196,186,197,187,188,198,198,188,199,188,189,199,199,189,200,189,190,200,200,190,201,190,191,201,201,191,202,191,192,202,202,192,203,192,193,203,203,193,204,193,194,204,204,194,205,194,195,205,205,195,206,195,196,206,206,196,207,196,197,207,207,197,208,1,0,209,4,1,210,6,4,211,8,6,212,10,8,213,12,10,214,14,12,215,16,14,216,18,16,217,20,18,218,198,199,219,199,200,220,200,201,221,201,202,222,202,203,223,203,204,224,204,205,225,205,206,226,206,207,227,207,208,228],"receiveShadows":false,"infiniteDistance":false,"billboardMode":0,"visibility":1.0,"subMeshes":[{"materialIndex":0,"verticesStart":0,"verticesCount":229,"indexStart":0,"indexCount":1140}],"instances":null,"skeletonId":-1,"numBoneInfluencers":4,"applyFog":false,"lodMeshIds":null,"lodDistances":null,"lodCoverages":null,"rotation":null,"scaling":[1.0,1.0,1.0],"rotationQuaternion":[0.0,0.0,0.0,1.0],"actions":null,"checkCollisions":false,"pickable":true,"showBoundingBox":false,"showSubMeshesBoundingBox":false,"alphaIndex":0,"physicsImpostor":0,"physicsMass":0.0,"physicsFriction":0.0,"physicsRestitution":0.0,"name":"pasted__pSphere10","id":"E75086CA-4CD3-F50F-F50A-ED834B636B02","parentId":"8E569C08-4B86-AA57-74E7-E9902231D610","position":[0.0,0.0,5.0],"animations":[],"autoAnimate":true,"autoAnimateFrom":1,"autoAnimateTo":200,"autoAnimateLoop":true,"metadata":{}},{"materialId":"79694F83-471A-939B-E14E-3F993E2D1D36","isEnabled":true,"isVisible":true,"positions":[0.0,-0.9877,0.1564,-0.0483,-0.9877,0.1488,0.0,-0.9511,0.309,-0.0955,-0.9511,0.2939,-0.0919,-0.9877,0.1266,-0.1816,-0.9511,0.25,-0.1266,-0.9877,0.0919,-0.25,-0.9511,0.1816,-0.1488,-0.9877,0.0483,-0.2939,-0.9511,0.0955,-0.1564,-0.9877,0.0,-0.309,-0.9511,0.0,-0.1488,-0.9877,-0.0483,-0.2939,-0.9511,-0.0955,-0.1266,-0.9877,-0.0919,-0.25,-0.9511,-0.1816,-0.0919,-0.9877,-0.1266,-0.1816,-0.9511,-0.25,-0.0483,-0.9877,-0.1488,-0.0955,-0.9511,-0.2939,0.0,-0.9877,-0.1564,0.0,-0.9511,-0.309,0.0,-0.891,0.454,-0.1403,-0.891,0.4318,-0.2668,-0.891,0.3673,-0.3673,-0.891,0.2668,-0.4318,-0.891,0.1403,-0.454,-0.891,0.0,-0.4318,-0.891,-0.1403,-0.3673,-0.891,-0.2668,-0.2668,-0.891,-0.3673,-0.1403,-0.891,-0.4318,0.0,-0.891,-0.454,0.0,-0.809,0.5878,-0.1816,-0.809,0.559,-0.3455,-0.809,0.4755,-0.4755,-0.809,0.3455,-0.559,-0.809,0.1816,-0.5878,-0.809,0.0,-0.559,-0.809,-0.1816,-0.4755,-0.809,-0.3455,-0.3455,-0.809,-0.4755,-0.1816,-0.809,-0.559,0.0,-0.809,-0.5878,0.0,-0.7071,0.7071,-0.2185,-0.7071,0.6725,-0.4156,-0.7071,0.5721,-0.5721,-0.7071,0.4156,-0.6725,-0.7071,0.2185,-0.7071,-0.7071,0.0,-0.6725,-0.7071,-0.2185,-0.5721,-0.7071,-0.4156,-0.4156,-0.7071,-0.5721,-0.2185,-0.7071,-0.6725,0.0,-0.7071,-0.7071,0.0,-0.5878,0.809,-0.25,-0.5878,0.7694,-0.4755,-0.5878,0.6545,-0.6545,-0.5878,0.4755,-0.7694,-0.5878,0.25,-0.809,-0.5878,0.0,-0.7694,-0.5878,-0.25,-0.6545,-0.5878,-0.4755,-0.4755,-0.5878,-0.6545,-0.25,-0.5878,-0.7694,0.0,-0.5878,-0.809,0.0,-0.454,0.891,-0.2753,-0.454,0.8474,-0.5237,-0.454,0.7208,-0.7208,-0.454,0.5237,-0.8474,-0.454,0.2753,-0.891,-0.454,0.0,-0.8474,-0.454,-0.2753,-0.7208,-0.454,-0.5237,-0.5237,-0.454,-0.7208,-0.2753,-0.454,-0.8474,0.0,-0.454,-0.891,0.0,-0.309,0.9511,-0.2939,-0.309,0.9045,-0.559,-0.309,0.7694,-0.7694,-0.309,0.559,-0.9045,-0.309,0.2939,-0.9511,-0.309,0.0,-0.9045,-0.309,-0.2939,-0.7694,-0.309,-0.559,-0.559,-0.309,-0.7694,-0.2939,-0.309,-0.9045,0.0,-0.309,-0.9511,0.0,-0.1564,0.9877,-0.3052,-0.1564,0.9393,-0.5805,-0.1564,0.7991,-0.7991,-0.1564,0.5805,-0.9393,-0.1564,0.3052,-0.9877,-0.1564,0.0,-0.9393,-0.1564,-0.3052,-0.7991,-0.1564,-0.5805,-0.5805,-0.1564,-0.7991,-0.3052,-0.1564,-0.9393,0.0,-0.1564,-0.9877,0.0,0.0,1.0,-0.309,0.0,0.9511,-0.5878,0.0,0.809,-0.809,0.0,0.5878,-0.9511,0.0,0.309,-1.0,0.0,0.0,-0.9511,0.0,-0.309,-0.809,0.0,-0.5878,-0.5878,0.0,-0.809,-0.309,0.0,-0.9511,0.0,0.0,-1.0,0.0,0.1564,0.9877,-0.3052,0.1564,0.9393,-0.5805,0.1564,0.7991,-0.7991,0.1564,0.5805,-0.9393,0.1564,0.3052,-0.9877,0.1564,0.0,-0.9393,0.1564,-0.3052,-0.7991,0.1564,-0.5805,-0.5805,0.1564,-0.7991,-0.3052,0.1564,-0.9393,0.0,0.1564,-0.9877,0.0,0.309,0.9511,-0.2939,0.309,0.9045,-0.559,0.309,0.7694,-0.7694,0.309,0.559,-0.9045,0.309,0.2939,-0.9511,0.309,0.0,-0.9045,0.309,-0.2939,-0.7694,0.309,-0.559,-0.559,0.309,-0.7694,-0.2939,0.309,-0.9045,0.0,0.309,-0.9511,0.0,0.454,0.891,-0.2753,0.454,0.8474,-0.5237,0.454,0.7208,-0.7208,0.454,0.5237,-0.8474,0.454,0.2753,-0.891,0.454,0.0,-0.8474,0.454,-0.2753,-0.7208,0.454,-0.5237,-0.5237,0.454,-0.7208,-0.2753,0.454,-0.8474,0.0,0.454,-0.891,0.0,0.5878,0.809,-0.25,0.5878,0.7694,-0.4755,0.5878,0.6545,-0.6545,0.5878,0.4755,-0.7694,0.5878,0.25,-0.809,0.5878,0.0,-0.7694,0.5878,-0.25,-0.6545,0.5878,-0.4755,-0.4755,0.5878,-0.6545,-0.25,0.5878,-0.7694,0.0,0.5878,-0.809,0.0,0.7071,0.7071,-0.2185,0.7071,0.6725,-0.4156,0.7071,0.5721,-0.5721,0.7071,0.4156,-0.6725,0.7071,0.2185,-0.7071,0.7071,0.0,-0.6725,0.7071,-0.2185,-0.5721,0.7071,-0.4156,-0.4156,0.7071,-0.5721,-0.2185,0.7071,-0.6725,0.0,0.7071,-0.7071,0.0,0.809,0.5878,-0.1816,0.809,0.559,-0.3455,0.809,0.4755,-0.4755,0.809,0.3455,-0.559,0.809,0.1816,-0.5878,0.809,0.0,-0.559,0.809,-0.1816,-0.4755,0.809,-0.3455,-0.3455,0.809,-0.4755,-0.1816,0.809,-0.559,0.0,0.809,-0.5878,0.0,0.891,0.454,-0.1403,0.891,0.4318,-0.2668,0.891,0.3673,-0.3673,0.891,0.2668,-0.4318,0.891,0.1403,-0.454,0.891,0.0,-0.4318,0.891,-0.1403,-0.3673,0.891,-0.2668,-0.2668,0.891,-0.3673,-0.1403,0.891,-0.4318,0.0,0.891,-0.454,0.0,0.9511,0.309,-0.0955,0.9511,0.2939,-0.1816,0.9511,0.25,-0.25,0.9511,0.1816,-0.2939,0.9511,0.0955,-0.309,0.9511,0.0,-0.2939,0.9511,-0.0955,-0.25,0.9511,-0.1816,-0.1816,0.9511,-0.25,-0.0955,0.9511,-0.2939,0.0,0.9511,-0.309,0.0,0.9877,0.1564,-0.0483,0.9877,0.1488,-0.0919,0.9877,0.1266,-0.1266,0.9877,0.0919,-0.1488,0.9877,0.0483,-0.1564,0.9877,0.0,-0.1488,0.9877,-0.0483,-0.1266,0.9877,-0.0919,-0.0919,0.9877,-0.1266,-0.0483,0.9877,-0.1488,0.0,0.9877,-0.1564,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0],"normals":[-0.0317,-0.9792,0.2003,-0.0619,-0.9797,0.1906,-0.0528,-0.9414,0.3331,-0.1031,-0.9427,0.3173,-0.1178,-0.9797,0.1621,-0.1961,-0.9427,0.2699,-0.1621,-0.9797,0.1178,-0.2699,-0.9427,0.1961,-0.1906,-0.9797,0.0619,-0.3173,-0.9427,0.1031,-0.2004,-0.9797,0.0,-0.3336,-0.9427,0.0,-0.1906,-0.9797,-0.0619,-0.3173,-0.9427,-0.1031,-0.1621,-0.9797,-0.1178,-0.2699,-0.9427,-0.1961,-0.1178,-0.9797,-0.1621,-0.1961,-0.9427,-0.2699,-0.0619,-0.9797,-0.1906,-0.1031,-0.9427,-0.3173,-0.0317,-0.9792,-0.2003,-0.0528,-0.9414,-0.3331,-0.0744,-0.8798,0.4694,-0.1455,-0.8823,0.4477,-0.2767,-0.8823,0.3808,-0.3808,-0.8823,0.2767,-0.4477,-0.8823,0.1455,-0.4708,-0.8823,0.0,-0.4477,-0.8823,-0.1455,-0.3808,-0.8823,-0.2767,-0.2767,-0.8823,-0.3808,-0.1455,-0.8823,-0.4477,-0.0744,-0.8798,-0.4694,-0.0946,-0.7967,0.597,-0.1853,-0.8003,0.5703,-0.3525,-0.8003,0.4851,-0.4851,-0.8003,0.3525,-0.5703,-0.8003,0.1853,-0.5997,-0.8003,0.0,-0.5703,-0.8003,-0.1853,-0.4851,-0.8003,-0.3525,-0.3525,-0.8003,-0.4851,-0.1853,-0.8003,-0.5703,-0.0946,-0.7967,-0.597,-0.1126,-0.6943,0.7108,-0.221,-0.6988,0.6803,-0.4205,-0.6988,0.5787,-0.5787,-0.6988,0.4205,-0.6803,-0.6988,0.221,-0.7153,-0.6988,0.0,-0.6803,-0.6988,-0.221,-0.5787,-0.6988,-0.4205,-0.4205,-0.6988,-0.5787,-0.221,-0.6988,-0.6803,-0.1126,-0.6943,-0.7108,-0.1279,-0.5756,0.8076,-0.2516,-0.5804,0.7745,-0.4787,-0.5804,0.6588,-0.6588,-0.5804,0.4787,-0.7745,-0.5804,0.2516,-0.8143,-0.5804,0.0,-0.7745,-0.5804,-0.2516,-0.6588,-0.5804,-0.4787,-0.4787,-0.5804,-0.6588,-0.2516,-0.5804,-0.7745,-0.1279,-0.5756,-0.8076,-0.1402,-0.4436,0.8852,-0.2763,-0.448,0.8503,-0.5255,-0.448,0.7233,-0.7233,-0.448,0.5255,-0.8503,-0.448,0.2763,-0.894,-0.448,0.0,-0.8503,-0.448,-0.2763,-0.7233,-0.448,-0.5255,-0.5255,-0.448,-0.7233,-0.2763,-0.448,-0.8503,-0.1402,-0.4436,-0.8852,-0.1492,-0.3014,0.9418,-0.2943,-0.3048,0.9058,-0.5598,-0.3048,0.7705,-0.7705,-0.3048,0.5598,-0.9058,-0.3048,0.2943,-0.9524,-0.3048,0.0,-0.9058,-0.3048,-0.2943,-0.7705,-0.3048,-0.5598,-0.5598,-0.3048,-0.7705,-0.2943,-0.3048,-0.9058,-0.1492,-0.3014,-0.9418,-0.1546,-0.1524,0.9762,-0.3053,-0.1542,0.9397,-0.5808,-0.1542,0.7993,-0.7993,-0.1542,0.5808,-0.9397,-0.1542,0.3053,-0.988,-0.1542,0.0,-0.9397,-0.1542,-0.3053,-0.7993,-0.1542,-0.5808,-0.5808,-0.1542,-0.7993,-0.3053,-0.1542,-0.9397,-0.1546,-0.1524,-0.9762,-0.1564,0.0,0.9877,-0.309,0.0,0.9511,-0.5878,0.0,0.809,-0.809,0.0,0.5878,-0.9511,0.0,0.309,-1.0,0.0,0.0,-0.9511,0.0,-0.309,-0.809,0.0,-0.5878,-0.5878,0.0,-0.809,-0.309,0.0,-0.9511,-0.1564,0.0,-0.9877,-0.1546,0.1524,0.9762,-0.3053,0.1542,0.9397,-0.5808,0.1542,0.7993,-0.7993,0.1542,0.5808,-0.9397,0.1542,0.3053,-0.988,0.1542,0.0,-0.9397,0.1542,-0.3053,-0.7993,0.1542,-0.5808,-0.5808,0.1542,-0.7993,-0.3053,0.1542,-0.9397,-0.1546,0.1524,-0.9762,-0.1492,0.3014,0.9418,-0.2943,0.3048,0.9058,-0.5598,0.3048,0.7705,-0.7705,0.3048,0.5598,-0.9058,0.3048,0.2943,-0.9524,0.3048,0.0,-0.9058,0.3048,-0.2943,-0.7705,0.3048,-0.5598,-0.5598,0.3048,-0.7705,-0.2943,0.3048,-0.9058,-0.1492,0.3014,-0.9418,-0.1402,0.4436,0.8852,-0.2763,0.448,0.8503,-0.5255,0.448,0.7233,-0.7233,0.448,0.5255,-0.8503,0.448,0.2763,-0.894,0.448,0.0,-0.8503,0.448,-0.2763,-0.7233,0.448,-0.5255,-0.5255,0.448,-0.7233,-0.2763,0.448,-0.8503,-0.1402,0.4436,-0.8852,-0.1279,0.5756,0.8076,-0.2516,0.5804,0.7745,-0.4787,0.5804,0.6588,-0.6588,0.5804,0.4787,-0.7745,0.5804,0.2516,-0.8143,0.5804,0.0,-0.7745,0.5804,-0.2516,-0.6588,0.5804,-0.4787,-0.4787,0.5804,-0.6588,-0.2516,0.5804,-0.7745,-0.1279,0.5756,-0.8076,-0.1126,0.6943,0.7108,-0.221,0.6988,0.6803,-0.4205,0.6988,0.5787,-0.5787,0.6988,0.4205,-0.6803,0.6988,0.221,-0.7153,0.6988,0.0,-0.6803,0.6988,-0.221,-0.5787,0.6988,-0.4205,-0.4205,0.6988,-0.5787,-0.221,0.6988,-0.6803,-0.1126,0.6943,-0.7108,-0.0946,0.7967,0.597,-0.1853,0.8003,0.5703,-0.3525,0.8003,0.4851,-0.4851,0.8003,0.3525,-0.5703,0.8003,0.1853,-0.5997,0.8003,0.0,-0.5703,0.8003,-0.1853,-0.4851,0.8003,-0.3525,-0.3525,0.8003,-0.4851,-0.1853,0.8003,-0.5703,-0.0946,0.7967,-0.597,-0.0744,0.8798,0.4694,-0.1455,0.8823,0.4477,-0.2767,0.8823,0.3808,-0.3808,0.8823,0.2767,-0.4477,0.8823,0.1455,-0.4708,0.8823,0.0,-0.4477,0.8823,-0.1455,-0.3808,0.8823,-0.2767,-0.2767,0.8823,-0.3808,-0.1455,0.8823,-0.4477,-0.0744,0.8798,-0.4694,-0.0528,0.9414,0.3331,-0.1031,0.9427,0.3173,-0.1961,0.9427,0.2699,-0.2699,0.9427,0.1961,-0.3173,0.9427,0.1031,-0.3336,0.9427,0.0,-0.3173,0.9427,-0.1031,-0.2699,0.9427,-0.1961,-0.1961,0.9427,-0.2699,-0.1031,0.9427,-0.3173,-0.0528,0.9414,-0.3331,-0.0317,0.9792,0.2003,-0.0619,0.9797,0.1906,-0.1178,0.9797,0.1621,-0.1621,0.9797,0.1178,-0.1906,0.9797,0.0619,-0.2004,0.9797,0.0,-0.1906,0.9797,-0.0619,-0.1621,0.9797,-0.1178,-0.1178,0.9797,-0.1621,-0.0619,0.9797,-0.1906,-0.0317,0.9792,-0.2003,-0.0509,-0.9987,0.0,-0.0509,-0.9987,0.0,-0.0509,-0.9987,0.0,-0.0509,-0.9987,0.0,-0.0509,-0.9987,0.0,-0.0509,-0.9987,0.0,-0.0509,-0.9987,0.0,-0.0509,-0.9987,0.0,-0.0509,-0.9987,0.0,-0.0509,-0.9987,0.0,-0.0509,0.9987,0.0,-0.0509,0.9987,0.0,-0.0509,0.9987,0.0,-0.0509,0.9987,0.0,-0.0509,0.9987,0.0,-0.0509,0.9987,0.0,-0.0509,0.9987,0.0,-0.0509,0.9987,0.0,-0.0509,0.9987,0.0,-0.0509,0.9987,0.0],"tangents":[-0.9877,0.0,-0.1564,-1.0,-0.96,0.0062,-0.28,-1.0,-0.9877,0.0,-0.1564,-1.0,-0.9511,0.0,-0.309,-1.0,-0.8265,0.0062,-0.5629,-1.0,-0.809,0.0,-0.5878,-1.0,-0.6121,0.0062,-0.7908,-1.0,-0.5878,0.0,-0.809,-1.0,-0.3378,0.0062,-0.9412,-1.0,-0.309,0.0,-0.9511,-1.0,-0.0304,0.0062,-0.9995,-1.0,0.0,0.0,-1.0,-1.0,0.28,0.0062,-0.96,-1.0,0.309,0.0,-0.9511,-1.0,0.5629,0.0062,-0.8265,-1.0,0.5878,0.0,-0.809,-1.0,0.7908,0.0062,-0.6121,-1.0,0.809,0.0,-0.5878,-1.0,0.9412,0.0062,-0.3378,-1.0,0.9511,0.0,-0.309,-1.0,0.9877,0.0,-0.1564,-1.0,0.9877,0.0,-0.1564,-1.0,-0.9877,0.0,-0.1564,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,0.9877,0.0,-0.1564,-1.0,-0.9877,0.0,-0.1564,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,0.9877,0.0,-0.1564,-1.0,-0.9877,0.0,-0.1564,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,0.9877,0.0,-0.1564,-1.0,-0.9877,0.0,-0.1564,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,0.9877,0.0,-0.1564,-1.0,-0.9877,0.0,-0.1564,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,0.9877,0.0,-0.1564,-1.0,-0.9877,0.0,-0.1564,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,0.9877,0.0,-0.1564,-1.0,-0.9877,0.0,-0.1564,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,0.9877,0.0,-0.1564,-1.0,-0.9877,0.0,-0.1564,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,0.9877,0.0,-0.1564,-1.0,-0.9877,0.0,-0.1564,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,0.9877,0.0,-0.1564,-1.0,-0.9877,0.0,-0.1564,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,0.9877,0.0,-0.1564,-1.0,-0.9877,0.0,-0.1564,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,0.9877,0.0,-0.1564,-1.0,-0.9877,0.0,-0.1564,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,0.9877,0.0,-0.1564,-1.0,-0.9877,0.0,-0.1564,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,0.9877,0.0,-0.1564,-1.0,-0.9877,0.0,-0.1564,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,0.9877,0.0,-0.1564,-1.0,-0.9877,0.0,-0.1564,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,0.9877,0.0,-0.1564,-1.0,-0.9877,0.0,-0.1564,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,0.9877,0.0,-0.1564,-1.0,-0.9877,0.0,-0.1564,-1.0,-0.9412,0.0062,-0.3378,-1.0,-0.7908,0.0062,-0.6121,-1.0,-0.5629,0.0062,-0.8265,-1.0,-0.28,0.0062,-0.96,-1.0,0.0304,0.0062,-0.9995,-1.0,0.3378,0.0062,-0.9412,-1.0,0.6121,0.0062,-0.7908,-1.0,0.8265,0.0062,-0.5629,-1.0,0.96,0.0062,-0.28,-1.0,0.9877,0.0,-0.1564,-1.0,-0.9864,0.0502,-0.1566,-1.0,-0.8896,0.0453,-0.4545,-1.0,-0.7057,0.0359,-0.7076,-1.0,-0.4529,0.0231,-0.8912,-1.0,-0.156,0.0079,-0.9877,-1.0,0.156,-0.0079,-0.9877,-1.0,0.4529,-0.0231,-0.8912,-1.0,0.7057,-0.0359,-0.7076,-1.0,0.8896,-0.0453,-0.4545,-1.0,0.9864,-0.0502,-0.1566,-1.0,-0.9864,-0.0502,-0.1566,-1.0,-0.8896,-0.0453,-0.4545,-1.0,-0.7057,-0.0359,-0.7076,-1.0,-0.4529,-0.0231,-0.8912,-1.0,-0.156,-0.0079,-0.9877,-1.0,0.156,0.0079,-0.9877,-1.0,0.4529,0.0231,-0.8912,-1.0,0.7057,0.0359,-0.7076,-1.0,0.8896,0.0453,-0.4545,-1.0,0.9864,0.0502,-0.1566,-1.0],"uvs":[0.2,0.05,0.25,0.05,0.2,0.1,0.25,0.1,0.3,0.05,0.3,0.1,0.35,0.05,0.35,0.1,0.4,0.05,0.4,0.1,0.45,0.05,0.45,0.1,0.5,0.05,0.5,0.1,0.55,0.05,0.55,0.1,0.6,0.05,0.6,0.1,0.65,0.05,0.65,0.1,0.7,0.05,0.7,0.1,0.2,0.15,0.25,0.15,0.3,0.15,0.35,0.15,0.4,0.15,0.45,0.15,0.5,0.15,0.55,0.15,0.6,0.15,0.65,0.15,0.7,0.15,0.2,0.2,0.25,0.2,0.3,0.2,0.35,0.2,0.4,0.2,0.45,0.2,0.5,0.2,0.55,0.2,0.6,0.2,0.65,0.2,0.7,0.2,0.2,0.25,0.25,0.25,0.3,0.25,0.35,0.25,0.4,0.25,0.45,0.25,0.5,0.25,0.55,0.25,0.6,0.25,0.65,0.25,0.7,0.25,0.2,0.3,0.25,0.3,0.3,0.3,0.35,0.3,0.4,0.3,0.45,0.3,0.5,0.3,0.55,0.3,0.6,0.3,0.65,0.3,0.7,0.3,0.2,0.35,0.25,0.35,0.3,0.35,0.35,0.35,0.4,0.35,0.45,0.35,0.5,0.35,0.55,0.35,0.6,0.35,0.65,0.35,0.7,0.35,0.2,0.4,0.25,0.4,0.3,0.4,0.35,0.4,0.4,0.4,0.45,0.4,0.5,0.4,0.55,0.4,0.6,0.4,0.65,0.4,0.7,0.4,0.2,0.45,0.25,0.45,0.3,0.45,0.35,0.45,0.4,0.45,0.45,0.45,0.5,0.45,0.55,0.45,0.6,0.45,0.65,0.45,0.7,0.45,0.2,0.5,0.25,0.5,0.3,0.5,0.35,0.5,0.4,0.5,0.45,0.5,0.5,0.5,0.55,0.5,0.6,0.5,0.65,0.5,0.7,0.5,0.2,0.55,0.25,0.55,0.3,0.55,0.35,0.55,0.4,0.55,0.45,0.55,0.5,0.55,0.55,0.55,0.6,0.55,0.65,0.55,0.7,0.55,0.2,0.6,0.25,0.6,0.3,0.6,0.35,0.6,0.4,0.6,0.45,0.6,0.5,0.6,0.55,0.6,0.6,0.6,0.65,0.6,0.7,0.6,0.2,0.65,0.25,0.65,0.3,0.65,0.35,0.65,0.4,0.65,0.45,0.65,0.5,0.65,0.55,0.65,0.6,0.65,0.65,0.65,0.7,0.65,0.2,0.7,0.25,0.7,0.3,0.7,0.35,0.7,0.4,0.7,0.45,0.7,0.5,0.7,0.55,0.7,0.6,0.7,0.65,0.7,0.7,0.7,0.2,0.75,0.25,0.75,0.3,0.75,0.35,0.75,0.4,0.75,0.45,0.75,0.5,0.75,0.55,0.75,0.6,0.75,0.65,0.75,0.7,0.75,0.2,0.8,0.25,0.8,0.3,0.8,0.35,0.8,0.4,0.8,0.45,0.8,0.5,0.8,0.55,0.8,0.6,0.8,0.65,0.8,0.7,0.8,0.2,0.85,0.25,0.85,0.3,0.85,0.35,0.85,0.4,0.85,0.45,0.85,0.5,0.85,0.55,0.85,0.6,0.85,0.65,0.85,0.7,0.85,0.2,0.9,0.25,0.9,0.3,0.9,0.35,0.9,0.4,0.9,0.45,0.9,0.5,0.9,0.55,0.9,0.6,0.9,0.65,0.9,0.7,0.9,0.2,0.95,0.25,0.95,0.3,0.95,0.35,0.95,0.4,0.95,0.45,0.95,0.5,0.95,0.55,0.95,0.6,0.95,0.65,0.95,0.7,0.95,0.225,0.0,0.275,0.0,0.325,0.0,0.375,0.0,0.425,0.0,0.475,0.0,0.525,0.0,0.575,0.0,0.625,0.0,0.675,0.0,0.225,1.0,0.275,1.0,0.325,1.0,0.375,1.0,0.425,1.0,0.475,1.0,0.525,1.0,0.575,1.0,0.625,1.0,0.675,1.0],"uvs2":null,"colors":null,"hasVertexAlpha":false,"matricesIndices":null,"matricesWeights":null,"matricesIndicesExtra":null,"matricesWeightsExtra":null,"indices":[0,1,2,2,1,3,1,4,3,3,4,5,4,6,5,5,6,7,6,8,7,7,8,9,8,10,9,9,10,11,10,12,11,11,12,13,12,14,13,13,14,15,14,16,15,15,16,17,16,18,17,17,18,19,18,20,19,19,20,21,2,3,22,22,3,23,3,5,23,23,5,24,5,7,24,24,7,25,7,9,25,25,9,26,9,11,26,26,11,27,11,13,27,27,13,28,13,15,28,28,15,29,15,17,29,29,17,30,17,19,30,30,19,31,19,21,31,31,21,32,22,23,33,33,23,34,23,24,34,34,24,35,24,25,35,35,25,36,25,26,36,36,26,37,26,27,37,37,27,38,27,28,38,38,28,39,28,29,39,39,29,40,29,30,40,40,30,41,30,31,41,41,31,42,31,32,42,42,32,43,33,34,44,44,34,45,34,35,45,45,35,46,35,36,46,46,36,47,36,37,47,47,37,48,37,38,48,48,38,49,38,39,49,49,39,50,39,40,50,50,40,51,40,41,51,51,41,52,41,42,52,52,42,53,42,43,53,53,43,54,44,45,55,55,45,56,45,46,56,56,46,57,46,47,57,57,47,58,47,48,58,58,48,59,48,49,59,59,49,60,49,50,60,60,50,61,50,51,61,61,51,62,51,52,62,62,52,63,52,53,63,63,53,64,53,54,64,64,54,65,55,56,66,66,56,67,56,57,67,67,57,68,57,58,68,68,58,69,58,59,69,69,59,70,59,60,70,70,60,71,60,61,71,71,61,72,61,62,72,72,62,73,62,63,73,73,63,74,63,64,74,74,64,75,64,65,75,75,65,76,66,67,77,77,67,78,67,68,78,78,68,79,68,69,79,79,69,80,69,70,80,80,70,81,70,71,81,81,71,82,71,72,82,82,72,83,72,73,83,83,73,84,73,74,84,84,74,85,74,75,85,85,75,86,75,76,86,86,76,87,77,78,88,88,78,89,78,79,89,89,79,90,79,80,90,90,80,91,80,81,91,91,81,92,81,82,92,92,82,93,82,83,93,93,83,94,83,84,94,94,84,95,84,85,95,95,85,96,85,86,96,96,86,97,86,87,97,97,87,98,88,89,99,99,89,100,89,90,100,100,90,101,90,91,101,101,91,102,91,92,102,102,92,103,92,93,103,103,93,104,93,94,104,104,94,105,94,95,105,105,95,106,95,96,106,106,96,107,96,97,107,107,97,108,97,98,108,108,98,109,99,100,110,110,100,111,100,101,111,111,101,112,101,102,112,112,102,113,102,103,113,113,103,114,103,104,114,114,104,115,104,105,115,115,105,116,105,106,116,116,106,117,106,107,117,117,107,118,107,108,118,118,108,119,108,109,119,119,109,120,110,111,121,121,111,122,111,112,122,122,112,123,112,113,123,123,113,124,113,114,124,124,114,125,114,115,125,125,115,126,115,116,126,126,116,127,116,117,127,127,117,128,117,118,128,128,118,129,118,119,129,129,119,130,119,120,130,130,120,131,121,122,132,132,122,133,122,123,133,133,123,134,123,124,134,134,124,135,124,125,135,135,125,136,125,126,136,136,126,137,126,127,137,137,127,138,127,128,138,138,128,139,128,129,139,139,129,140,129,130,140,140,130,141,130,131,141,141,131,142,132,133,143,143,133,144,133,134,144,144,134,145,134,135,145,145,135,146,135,136,146,146,136,147,136,137,147,147,137,148,137,138,148,148,138,149,138,139,149,149,139,150,139,140,150,150,140,151,140,141,151,151,141,152,141,142,152,152,142,153,143,144,154,154,144,155,144,145,155,155,145,156,145,146,156,156,146,157,146,147,157,157,147,158,147,148,158,158,148,159,148,149,159,159,149,160,149,150,160,160,150,161,150,151,161,161,151,162,151,152,162,162,152,163,152,153,163,163,153,164,154,155,165,165,155,166,155,156,166,166,156,167,156,157,167,167,157,168,157,158,168,168,158,169,158,159,169,169,159,170,159,160,170,170,160,171,160,161,171,171,161,172,161,162,172,172,162,173,162,163,173,173,163,174,163,164,174,174,164,175,165,166,176,176,166,177,166,167,177,177,167,178,167,168,178,178,168,179,168,169,179,179,169,180,169,170,180,180,170,181,170,171,181,181,171,182,171,172,182,182,172,183,172,173,183,183,173,184,173,174,184,184,174,185,174,175,185,185,175,186,176,177,187,187,177,188,177,178,188,188,178,189,178,179,189,189,179,190,179,180,190,190,180,191,180,181,191,191,181,192,181,182,192,192,182,193,182,183,193,193,183,194,183,184,194,194,184,195,184,185,195,195,185,196,185,186,196,196,186,197,187,188,198,198,188,199,188,189,199,199,189,200,189,190,200,200,190,201,190,191,201,201,191,202,191,192,202,202,192,203,192,193,203,203,193,204,193,194,204,204,194,205,194,195,205,205,195,206,195,196,206,206,196,207,196,197,207,207,197,208,1,0,209,4,1,210,6,4,211,8,6,212,10,8,213,12,10,214,14,12,215,16,14,216,18,16,217,20,18,218,198,199,219,199,200,220,200,201,221,201,202,222,202,203,223,203,204,224,204,205,225,205,206,226,206,207,227,207,208,228],"receiveShadows":false,"infiniteDistance":false,"billboardMode":0,"visibility":1.0,"subMeshes":[{"materialIndex":0,"verticesStart":0,"verticesCount":229,"indexStart":0,"indexCount":1140}],"instances":null,"skeletonId":-1,"numBoneInfluencers":4,"applyFog":false,"lodMeshIds":null,"lodDistances":null,"lodCoverages":null,"rotation":null,"scaling":[1.0,1.0,1.0],"rotationQuaternion":[0.0,0.0,0.0,1.0],"actions":null,"checkCollisions":false,"pickable":true,"showBoundingBox":false,"showSubMeshesBoundingBox":false,"alphaIndex":0,"physicsImpostor":0,"physicsMass":0.0,"physicsFriction":0.0,"physicsRestitution":0.0,"name":"pasted__pSphere11","id":"03263D7C-489F-E1C8-EF6B-0384662A33E1","parentId":"8E569C08-4B86-AA57-74E7-E9902231D610","position":[3.0,0.0,5.0],"animations":[],"autoAnimate":true,"autoAnimateFrom":1,"autoAnimateTo":200,"autoAnimateLoop":true,"metadata":{}}],"sounds":[],"materials":[{"customType":"BABYLON.StandardMaterial","ambient":[1.0,1.0,1.0],"diffuse":[1.0,0.0,0.0],"specular":[0.5,0.5,0.5],"emissive":[0.0,0.0,0.0],"specularPower":110.6414,"diffuseTexture":null,"diffuseFresnelParameters":null,"ambientTexture":null,"opacityTexture":null,"opacityFresnelParameters":null,"reflectionTexture":null,"reflectionFresnelParameters":null,"emissiveTexture":null,"lightmapTexture":null,"useLightmapAsShadowmap":false,"emissiveFresnelParameters":null,"specularTexture":null,"bumpTexture":null,"useSpecularOverAlpha":true,"disableLighting":false,"useEmissiveAsIllumination":false,"linkEmissiveWithDiffuse":true,"twoSidedLighting":false,"useGlossinessFromSpecularMapAlpha":false,"name":"StandardBackFaceMaterial","id":"9B24F14E-4F69-6849-B864-07B9E4A7E9FF","backFaceCulling":true,"wireframe":false,"alpha":1.0,"alphaMode":2,"maxSimultaneousLights":4,"metadata":{}},{"customType":"BABYLON.PBRMetallicRoughnessMaterial","baseColor":[0.0,1.0,0.0],"baseTexture":null,"metallic":0.0,"roughness":0.33,"metallicRoughnessTexture":null,"disableLighting":false,"invertNormalMapX":false,"invertNormalMapY":false,"normalTexture":null,"emissive":[0.0,0.0,0.0],"emissiveTexture":null,"occlusionStrength":1.0,"occlusionTexture":null,"transparencyMode":0,"doubleSided":false,"clearCoat":{"isEnabled":false,"intensity":1.0,"roughness":0.0,"indexOfRefraction":1.5,"texture":null,"bumpTexture":null,"isTintEnabled":false,"tintColor":[1.0,1.0,1.0],"tintThickness":1.0,"tintTexture":null},"name":"PhysicalBackFaceMaterial","id":"0E49D5E9-4200-91FB-CB7B-93B40CEF850E","backFaceCulling":true,"wireframe":false,"alpha":1.0,"alphaMode":2,"maxSimultaneousLights":4,"metadata":null},{"customType":"BABYLON.PBRMetallicRoughnessMaterial","baseColor":[0.0,0.0,0.8],"baseTexture":null,"metallic":0.0,"roughness":0.1,"metallicRoughnessTexture":null,"disableLighting":false,"invertNormalMapX":false,"invertNormalMapY":false,"normalTexture":null,"emissive":[0.0,0.0,0.0],"emissiveTexture":null,"occlusionStrength":1.0,"occlusionTexture":null,"transparencyMode":0,"doubleSided":false,"clearCoat":{"isEnabled":false,"intensity":1.0,"roughness":0.0,"indexOfRefraction":1.5,"texture":null,"bumpTexture":null,"isTintEnabled":false,"tintColor":[1.0,1.0,1.0],"tintThickness":1.0,"tintTexture":null},"name":"StandardBackfaceArnold","id":"79CDF1A6-4409-889B-46A9-43A586C10D94","backFaceCulling":true,"wireframe":false,"alpha":1.0,"alphaMode":2,"maxSimultaneousLights":4,"metadata":null},{"customType":"BABYLON.StandardMaterial","ambient":[1.0,1.0,1.0],"diffuse":[0.5,0.5,0.5],"specular":[0.0,0.0,0.0],"emissive":[0.0,0.0,0.0],"specularPower":25.6,"diffuseTexture":null,"diffuseFresnelParameters":null,"ambientTexture":null,"opacityTexture":null,"opacityFresnelParameters":null,"reflectionTexture":null,"reflectionFresnelParameters":null,"emissiveTexture":null,"lightmapTexture":null,"useLightmapAsShadowmap":false,"emissiveFresnelParameters":null,"specularTexture":null,"bumpTexture":null,"useSpecularOverAlpha":true,"disableLighting":false,"useEmissiveAsIllumination":false,"linkEmissiveWithDiffuse":true,"twoSidedLighting":false,"useGlossinessFromSpecularMapAlpha":false,"name":"lambert1","id":"C33371E3-49CC-50AB-9549-80BD2392C0F8","backFaceCulling":true,"wireframe":false,"alpha":1.0,"alphaMode":2,"maxSimultaneousLights":4,"metadata":{}},{"customType":"BABYLON.StandardMaterial","ambient":[1.0,1.0,1.0],"diffuse":[1.0,0.0,0.0],"specular":[0.5,0.5,0.5],"emissive":[0.0,0.0,0.0],"specularPower":110.6414,"diffuseTexture":null,"diffuseFresnelParameters":null,"ambientTexture":null,"opacityTexture":null,"opacityFresnelParameters":null,"reflectionTexture":null,"reflectionFresnelParameters":null,"emissiveTexture":null,"lightmapTexture":null,"useLightmapAsShadowmap":false,"emissiveFresnelParameters":null,"specularTexture":null,"bumpTexture":null,"useSpecularOverAlpha":true,"disableLighting":false,"useEmissiveAsIllumination":false,"linkEmissiveWithDiffuse":true,"twoSidedLighting":false,"useGlossinessFromSpecularMapAlpha":false,"name":"StandardMaterial","id":"78708E23-4DEB-D855-2196-43A7BA84D718","backFaceCulling":false,"wireframe":false,"alpha":1.0,"alphaMode":2,"maxSimultaneousLights":4,"metadata":{}},{"customType":"BABYLON.PBRMetallicRoughnessMaterial","baseColor":[0.0,0.0,0.8],"baseTexture":null,"metallic":0.0,"roughness":0.1,"metallicRoughnessTexture":null,"disableLighting":false,"invertNormalMapX":false,"invertNormalMapY":false,"normalTexture":null,"emissive":[0.0,0.0,0.0],"emissiveTexture":null,"occlusionStrength":1.0,"occlusionTexture":null,"transparencyMode":0,"doubleSided":true,"clearCoat":{"isEnabled":false,"intensity":1.0,"roughness":0.0,"indexOfRefraction":1.5,"texture":null,"bumpTexture":null,"isTintEnabled":false,"tintColor":[1.0,1.0,1.0],"tintThickness":1.0,"tintTexture":null},"name":"StandardArnold","id":"D27E80AB-42A2-4790-E758-5B85C6DE409F","backFaceCulling":false,"wireframe":false,"alpha":1.0,"alphaMode":2,"maxSimultaneousLights":4,"metadata":null},{"customType":"BABYLON.PBRMetallicRoughnessMaterial","baseColor":[0.0,1.0,0.0],"baseTexture":null,"metallic":0.0,"roughness":0.33,"metallicRoughnessTexture":null,"disableLighting":false,"invertNormalMapX":false,"invertNormalMapY":false,"normalTexture":null,"emissive":[0.0,0.0,0.0],"emissiveTexture":null,"occlusionStrength":1.0,"occlusionTexture":null,"transparencyMode":0,"doubleSided":true,"clearCoat":{"isEnabled":false,"intensity":1.0,"roughness":0.0,"indexOfRefraction":1.5,"texture":null,"bumpTexture":null,"isTintEnabled":false,"tintColor":[1.0,1.0,1.0],"tintThickness":1.0,"tintTexture":null},"name":"PhysicalMaterial","id":"79694F83-471A-939B-E14E-3F993E2D1D36","backFaceCulling":false,"wireframe":false,"alpha":1.0,"alphaMode":2,"maxSimultaneousLights":4,"metadata":null}],"multiMaterials":[],"particleSystems":null,"lensFlareSystems":null,"shadowGenerators":[],"skeletons":[],"actions":null,"metadata":null,"workerCollisions":false}
\ No newline at end of file
diff --git a/Maya/Samples/babylon/BabylonMaterialAttributes/Default.babylon b/Maya/Samples/babylon/BabylonMaterialAttributes/Default.babylon
new file mode 100644
index 00000000..8718861f
--- /dev/null
+++ b/Maya/Samples/babylon/BabylonMaterialAttributes/Default.babylon
@@ -0,0 +1 @@
+{"producer":{"name":"Maya","version":"2018","exporter_version":"1.4.0","file":"Default.babylon"},"autoClear":true,"clearColor":[0.2,0.2,0.3],"ambientColor":[0.0,0.0,0.0],"fogMode":0,"fogColor":null,"fogStart":0.0,"fogEnd":0.0,"fogDensity":0.0,"gravity":[0.0,0.0,-0.9],"physicsEngine":null,"physicsEnabled":false,"physicsGravity":null,"lights":[{"direction":[0.0,1.0,0.0],"type":3,"diffuse":[1.0,1.0,1.0],"specular":[1.0,1.0,1.0],"intensity":1.0,"range":3.40282347E+38,"exponent":0.0,"angle":0.0,"groundColor":[0.0,0.0,0.0],"excludedMeshesIds":null,"includedOnlyMeshesIds":null,"metadata":null,"lightmapMode":null,"falloffType":null,"name":"Default light","id":"75746e37-aecd-40ce-99c9-1d4dcdf65fc4","parentId":null,"position":[0.0,0.0,0.0],"animations":null,"autoAnimate":false,"autoAnimateFrom":0,"autoAnimateTo":0,"autoAnimateLoop":false}],"meshes":[{"materialId":"9B24F14E-4F69-6849-B864-07B9E4A7E9FF","isEnabled":true,"isVisible":true,"positions":[0.1488,-0.9877,0.0483,0.1266,-0.9877,0.0919,0.2939,-0.9511,0.0955,0.25,-0.9511,0.1816,0.0919,-0.9877,0.1266,0.1816,-0.9511,0.25,0.0483,-0.9877,0.1488,0.0955,-0.9511,0.2939,0.0,-0.9877,0.1564,0.0,-0.9511,0.309,-0.0483,-0.9877,0.1488,-0.0955,-0.9511,0.2939,-0.0919,-0.9877,0.1266,-0.1816,-0.9511,0.25,-0.1266,-0.9877,0.0919,-0.25,-0.9511,0.1816,-0.1488,-0.9877,0.0483,-0.2939,-0.9511,0.0955,-0.1564,-0.9877,0.0,-0.309,-0.9511,0.0,-0.1488,-0.9877,-0.0483,-0.2939,-0.9511,-0.0955,-0.1266,-0.9877,-0.0919,-0.25,-0.9511,-0.1816,-0.0919,-0.9877,-0.1266,-0.1816,-0.9511,-0.25,-0.0483,-0.9877,-0.1488,-0.0955,-0.9511,-0.2939,0.0,-0.9877,-0.1564,0.0,-0.9511,-0.309,0.0483,-0.9877,-0.1488,0.0955,-0.9511,-0.2939,0.0919,-0.9877,-0.1266,0.1816,-0.9511,-0.25,0.1266,-0.9877,-0.0919,0.25,-0.9511,-0.1816,0.1488,-0.9877,-0.0483,0.2939,-0.9511,-0.0955,0.1564,-0.9877,0.0,0.309,-0.9511,0.0,0.1488,-0.9877,0.0483,0.2939,-0.9511,0.0955,0.4318,-0.891,0.1403,0.3673,-0.891,0.2668,0.2668,-0.891,0.3673,0.1403,-0.891,0.4318,0.0,-0.891,0.454,-0.1403,-0.891,0.4318,-0.2668,-0.891,0.3673,-0.3673,-0.891,0.2668,-0.4318,-0.891,0.1403,-0.454,-0.891,0.0,-0.4318,-0.891,-0.1403,-0.3673,-0.891,-0.2668,-0.2668,-0.891,-0.3673,-0.1403,-0.891,-0.4318,0.0,-0.891,-0.454,0.1403,-0.891,-0.4318,0.2668,-0.891,-0.3673,0.3673,-0.891,-0.2668,0.4318,-0.891,-0.1403,0.454,-0.891,0.0,0.4318,-0.891,0.1403,0.559,-0.809,0.1816,0.4755,-0.809,0.3455,0.3455,-0.809,0.4755,0.1816,-0.809,0.559,0.0,-0.809,0.5878,-0.1816,-0.809,0.559,-0.3455,-0.809,0.4755,-0.4755,-0.809,0.3455,-0.559,-0.809,0.1816,-0.5878,-0.809,0.0,-0.559,-0.809,-0.1816,-0.4755,-0.809,-0.3455,-0.3455,-0.809,-0.4755,-0.1816,-0.809,-0.559,0.0,-0.809,-0.5878,0.1816,-0.809,-0.559,0.3455,-0.809,-0.4755,0.4755,-0.809,-0.3455,0.559,-0.809,-0.1816,0.5878,-0.809,0.0,0.559,-0.809,0.1816,0.6725,-0.7071,0.2185,0.5721,-0.7071,0.4156,0.4156,-0.7071,0.5721,0.2185,-0.7071,0.6725,0.0,-0.7071,0.7071,-0.2185,-0.7071,0.6725,-0.4156,-0.7071,0.5721,-0.5721,-0.7071,0.4156,-0.6725,-0.7071,0.2185,-0.7071,-0.7071,0.0,-0.6725,-0.7071,-0.2185,-0.5721,-0.7071,-0.4156,-0.4156,-0.7071,-0.5721,-0.2185,-0.7071,-0.6725,0.0,-0.7071,-0.7071,0.2185,-0.7071,-0.6725,0.4156,-0.7071,-0.5721,0.5721,-0.7071,-0.4156,0.6725,-0.7071,-0.2185,0.7071,-0.7071,0.0,0.6725,-0.7071,0.2185,0.7694,-0.5878,0.25,0.6545,-0.5878,0.4755,0.4755,-0.5878,0.6545,0.25,-0.5878,0.7694,0.0,-0.5878,0.809,-0.25,-0.5878,0.7694,-0.4755,-0.5878,0.6545,-0.6545,-0.5878,0.4755,-0.7694,-0.5878,0.25,-0.809,-0.5878,0.0,-0.7694,-0.5878,-0.25,-0.6545,-0.5878,-0.4755,-0.4755,-0.5878,-0.6545,-0.25,-0.5878,-0.7694,0.0,-0.5878,-0.809,0.25,-0.5878,-0.7694,0.4755,-0.5878,-0.6545,0.6545,-0.5878,-0.4755,0.7694,-0.5878,-0.25,0.809,-0.5878,0.0,0.7694,-0.5878,0.25,0.8474,-0.454,0.2753,0.7208,-0.454,0.5237,0.5237,-0.454,0.7208,0.2753,-0.454,0.8474,0.0,-0.454,0.891,-0.2753,-0.454,0.8474,-0.5237,-0.454,0.7208,-0.7208,-0.454,0.5237,-0.8474,-0.454,0.2753,-0.891,-0.454,0.0,-0.8474,-0.454,-0.2753,-0.7208,-0.454,-0.5237,-0.5237,-0.454,-0.7208,-0.2753,-0.454,-0.8474,0.0,-0.454,-0.891,0.2753,-0.454,-0.8474,0.5237,-0.454,-0.7208,0.7208,-0.454,-0.5237,0.8474,-0.454,-0.2753,0.891,-0.454,0.0,0.8474,-0.454,0.2753,0.9045,-0.309,0.2939,0.7694,-0.309,0.559,0.559,-0.309,0.7694,0.2939,-0.309,0.9045,0.0,-0.309,0.9511,-0.2939,-0.309,0.9045,-0.559,-0.309,0.7694,-0.7694,-0.309,0.559,-0.9045,-0.309,0.2939,-0.9511,-0.309,0.0,-0.9045,-0.309,-0.2939,-0.7694,-0.309,-0.559,-0.559,-0.309,-0.7694,-0.2939,-0.309,-0.9045,0.0,-0.309,-0.9511,0.2939,-0.309,-0.9045,0.559,-0.309,-0.7694,0.7694,-0.309,-0.559,0.9045,-0.309,-0.2939,0.9511,-0.309,0.0,0.9045,-0.309,0.2939,0.9393,-0.1564,0.3052,0.7991,-0.1564,0.5805,0.5805,-0.1564,0.7991,0.3052,-0.1564,0.9393,0.0,-0.1564,0.9877,-0.3052,-0.1564,0.9393,-0.5805,-0.1564,0.7991,-0.7991,-0.1564,0.5805,-0.9393,-0.1564,0.3052,-0.9877,-0.1564,0.0,-0.9393,-0.1564,-0.3052,-0.7991,-0.1564,-0.5805,-0.5805,-0.1564,-0.7991,-0.3052,-0.1564,-0.9393,0.0,-0.1564,-0.9877,0.3052,-0.1564,-0.9393,0.5805,-0.1564,-0.7991,0.7991,-0.1564,-0.5805,0.9393,-0.1564,-0.3052,0.9877,-0.1564,0.0,0.9393,-0.1564,0.3052,0.9511,0.0,0.309,0.809,0.0,0.5878,0.5878,0.0,0.809,0.309,0.0,0.9511,0.0,0.0,1.0,-0.309,0.0,0.9511,-0.5878,0.0,0.809,-0.809,0.0,0.5878,-0.9511,0.0,0.309,-1.0,0.0,0.0,-0.9511,0.0,-0.309,-0.809,0.0,-0.5878,-0.5878,0.0,-0.809,-0.309,0.0,-0.9511,0.0,0.0,-1.0,0.309,0.0,-0.9511,0.5878,0.0,-0.809,0.809,0.0,-0.5878,0.9511,0.0,-0.309,1.0,0.0,0.0,0.9511,0.0,0.309,0.9393,0.1564,0.3052,0.7991,0.1564,0.5805,0.5805,0.1564,0.7991,0.3052,0.1564,0.9393,0.0,0.1564,0.9877,-0.3052,0.1564,0.9393,-0.5805,0.1564,0.7991,-0.7991,0.1564,0.5805,-0.9393,0.1564,0.3052,-0.9877,0.1564,0.0,-0.9393,0.1564,-0.3052,-0.7991,0.1564,-0.5805,-0.5805,0.1564,-0.7991,-0.3052,0.1564,-0.9393,0.0,0.1564,-0.9877,0.3052,0.1564,-0.9393,0.5805,0.1564,-0.7991,0.7991,0.1564,-0.5805,0.9393,0.1564,-0.3052,0.9877,0.1564,0.0,0.9393,0.1564,0.3052,0.9045,0.309,0.2939,0.7694,0.309,0.559,0.559,0.309,0.7694,0.2939,0.309,0.9045,0.0,0.309,0.9511,-0.2939,0.309,0.9045,-0.559,0.309,0.7694,-0.7694,0.309,0.559,-0.9045,0.309,0.2939,-0.9511,0.309,0.0,-0.9045,0.309,-0.2939,-0.7694,0.309,-0.559,-0.559,0.309,-0.7694,-0.2939,0.309,-0.9045,0.0,0.309,-0.9511,0.2939,0.309,-0.9045,0.559,0.309,-0.7694,0.7694,0.309,-0.559,0.9045,0.309,-0.2939,0.9511,0.309,0.0,0.9045,0.309,0.2939,0.8474,0.454,0.2753,0.7208,0.454,0.5237,0.5237,0.454,0.7208,0.2753,0.454,0.8474,0.0,0.454,0.891,-0.2753,0.454,0.8474,-0.5237,0.454,0.7208,-0.7208,0.454,0.5237,-0.8474,0.454,0.2753,-0.891,0.454,0.0,-0.8474,0.454,-0.2753,-0.7208,0.454,-0.5237,-0.5237,0.454,-0.7208,-0.2753,0.454,-0.8474,0.0,0.454,-0.891,0.2753,0.454,-0.8474,0.5237,0.454,-0.7208,0.7208,0.454,-0.5237,0.8474,0.454,-0.2753,0.891,0.454,0.0,0.8474,0.454,0.2753,0.7694,0.5878,0.25,0.6545,0.5878,0.4755,0.4755,0.5878,0.6545,0.25,0.5878,0.7694,0.0,0.5878,0.809,-0.25,0.5878,0.7694,-0.4755,0.5878,0.6545,-0.6545,0.5878,0.4755,-0.7694,0.5878,0.25,-0.809,0.5878,0.0,-0.7694,0.5878,-0.25,-0.6545,0.5878,-0.4755,-0.4755,0.5878,-0.6545,-0.25,0.5878,-0.7694,0.0,0.5878,-0.809,0.25,0.5878,-0.7694,0.4755,0.5878,-0.6545,0.6545,0.5878,-0.4755,0.7694,0.5878,-0.25,0.809,0.5878,0.0,0.7694,0.5878,0.25,0.6725,0.7071,0.2185,0.5721,0.7071,0.4156,0.4156,0.7071,0.5721,0.2185,0.7071,0.6725,0.0,0.7071,0.7071,-0.2185,0.7071,0.6725,-0.4156,0.7071,0.5721,-0.5721,0.7071,0.4156,-0.6725,0.7071,0.2185,-0.7071,0.7071,0.0,-0.6725,0.7071,-0.2185,-0.5721,0.7071,-0.4156,-0.4156,0.7071,-0.5721,-0.2185,0.7071,-0.6725,0.0,0.7071,-0.7071,0.2185,0.7071,-0.6725,0.4156,0.7071,-0.5721,0.5721,0.7071,-0.4156,0.6725,0.7071,-0.2185,0.7071,0.7071,0.0,0.6725,0.7071,0.2185,0.559,0.809,0.1816,0.4755,0.809,0.3455,0.3455,0.809,0.4755,0.1816,0.809,0.559,0.0,0.809,0.5878,-0.1816,0.809,0.559,-0.3455,0.809,0.4755,-0.4755,0.809,0.3455,-0.559,0.809,0.1816,-0.5878,0.809,0.0,-0.559,0.809,-0.1816,-0.4755,0.809,-0.3455,-0.3455,0.809,-0.4755,-0.1816,0.809,-0.559,0.0,0.809,-0.5878,0.1816,0.809,-0.559,0.3455,0.809,-0.4755,0.4755,0.809,-0.3455,0.559,0.809,-0.1816,0.5878,0.809,0.0,0.559,0.809,0.1816,0.4318,0.891,0.1403,0.3673,0.891,0.2668,0.2668,0.891,0.3673,0.1403,0.891,0.4318,0.0,0.891,0.454,-0.1403,0.891,0.4318,-0.2668,0.891,0.3673,-0.3673,0.891,0.2668,-0.4318,0.891,0.1403,-0.454,0.891,0.0,-0.4318,0.891,-0.1403,-0.3673,0.891,-0.2668,-0.2668,0.891,-0.3673,-0.1403,0.891,-0.4318,0.0,0.891,-0.454,0.1403,0.891,-0.4318,0.2668,0.891,-0.3673,0.3673,0.891,-0.2668,0.4318,0.891,-0.1403,0.454,0.891,0.0,0.4318,0.891,0.1403,0.2939,0.9511,0.0955,0.25,0.9511,0.1816,0.1816,0.9511,0.25,0.0955,0.9511,0.2939,0.0,0.9511,0.309,-0.0955,0.9511,0.2939,-0.1816,0.9511,0.25,-0.25,0.9511,0.1816,-0.2939,0.9511,0.0955,-0.309,0.9511,0.0,-0.2939,0.9511,-0.0955,-0.25,0.9511,-0.1816,-0.1816,0.9511,-0.25,-0.0955,0.9511,-0.2939,0.0,0.9511,-0.309,0.0955,0.9511,-0.2939,0.1816,0.9511,-0.25,0.25,0.9511,-0.1816,0.2939,0.9511,-0.0955,0.309,0.9511,0.0,0.2939,0.9511,0.0955,0.1488,0.9877,0.0483,0.1266,0.9877,0.0919,0.0919,0.9877,0.1266,0.0483,0.9877,0.1488,0.0,0.9877,0.1564,-0.0483,0.9877,0.1488,-0.0919,0.9877,0.1266,-0.1266,0.9877,0.0919,-0.1488,0.9877,0.0483,-0.1564,0.9877,0.0,-0.1488,0.9877,-0.0483,-0.1266,0.9877,-0.0919,-0.0919,0.9877,-0.1266,-0.0483,0.9877,-0.1488,0.0,0.9877,-0.1564,0.0483,0.9877,-0.1488,0.0919,0.9877,-0.1266,0.1266,0.9877,-0.0919,0.1488,0.9877,-0.0483,0.1564,0.9877,0.0,0.1488,0.9877,0.0483,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0],"normals":[0.1906,-0.9797,0.0619,0.1621,-0.9797,0.1178,0.3173,-0.9427,0.1031,0.2699,-0.9427,0.1961,0.1178,-0.9797,0.1621,0.1961,-0.9427,0.2699,0.0619,-0.9797,0.1906,0.1031,-0.9427,0.3173,0.0,-0.9797,0.2004,0.0,-0.9427,0.3336,-0.0619,-0.9797,0.1906,-0.1031,-0.9427,0.3173,-0.1178,-0.9797,0.1621,-0.1961,-0.9427,0.2699,-0.1621,-0.9797,0.1178,-0.2699,-0.9427,0.1961,-0.1906,-0.9797,0.0619,-0.3173,-0.9427,0.1031,-0.2004,-0.9797,0.0,-0.3336,-0.9427,0.0,-0.1906,-0.9797,-0.0619,-0.3173,-0.9427,-0.1031,-0.1621,-0.9797,-0.1178,-0.2699,-0.9427,-0.1961,-0.1178,-0.9797,-0.1621,-0.1961,-0.9427,-0.2699,-0.0619,-0.9797,-0.1906,-0.1031,-0.9427,-0.3173,0.0,-0.9797,-0.2004,0.0,-0.9427,-0.3336,0.0619,-0.9797,-0.1906,0.1031,-0.9427,-0.3173,0.1178,-0.9797,-0.1621,0.1961,-0.9427,-0.2699,0.1621,-0.9797,-0.1178,0.2699,-0.9427,-0.1961,0.1906,-0.9797,-0.0619,0.3173,-0.9427,-0.1031,0.2004,-0.9797,0.0,0.3336,-0.9427,0.0,0.1906,-0.9797,0.0619,0.3173,-0.9427,0.1031,0.4477,-0.8823,0.1455,0.3808,-0.8823,0.2767,0.2767,-0.8823,0.3808,0.1455,-0.8823,0.4477,0.0,-0.8823,0.4708,-0.1455,-0.8823,0.4477,-0.2767,-0.8823,0.3808,-0.3808,-0.8823,0.2767,-0.4477,-0.8823,0.1455,-0.4708,-0.8823,0.0,-0.4477,-0.8823,-0.1455,-0.3808,-0.8823,-0.2767,-0.2767,-0.8823,-0.3808,-0.1455,-0.8823,-0.4477,0.0,-0.8823,-0.4708,0.1455,-0.8823,-0.4477,0.2767,-0.8823,-0.3808,0.3808,-0.8823,-0.2767,0.4477,-0.8823,-0.1455,0.4708,-0.8823,0.0,0.4477,-0.8823,0.1455,0.5703,-0.8003,0.1853,0.4851,-0.8003,0.3525,0.3525,-0.8003,0.4851,0.1853,-0.8003,0.5703,0.0,-0.8003,0.5997,-0.1853,-0.8003,0.5703,-0.3525,-0.8003,0.4851,-0.4851,-0.8003,0.3525,-0.5703,-0.8003,0.1853,-0.5997,-0.8003,0.0,-0.5703,-0.8003,-0.1853,-0.4851,-0.8003,-0.3525,-0.3525,-0.8003,-0.4851,-0.1853,-0.8003,-0.5703,0.0,-0.8003,-0.5997,0.1853,-0.8003,-0.5703,0.3525,-0.8003,-0.4851,0.4851,-0.8003,-0.3525,0.5703,-0.8003,-0.1853,0.5997,-0.8003,0.0,0.5703,-0.8003,0.1853,0.6803,-0.6988,0.221,0.5787,-0.6988,0.4205,0.4205,-0.6988,0.5787,0.221,-0.6988,0.6803,0.0,-0.6988,0.7153,-0.221,-0.6988,0.6803,-0.4205,-0.6988,0.5787,-0.5787,-0.6988,0.4205,-0.6803,-0.6988,0.221,-0.7153,-0.6988,0.0,-0.6803,-0.6988,-0.221,-0.5787,-0.6988,-0.4205,-0.4205,-0.6988,-0.5787,-0.221,-0.6988,-0.6803,0.0,-0.6988,-0.7153,0.221,-0.6988,-0.6803,0.4205,-0.6988,-0.5787,0.5787,-0.6988,-0.4205,0.6803,-0.6988,-0.221,0.7153,-0.6988,0.0,0.6803,-0.6988,0.221,0.7745,-0.5804,0.2516,0.6588,-0.5804,0.4787,0.4787,-0.5804,0.6588,0.2516,-0.5804,0.7745,0.0,-0.5804,0.8143,-0.2516,-0.5804,0.7745,-0.4787,-0.5804,0.6588,-0.6588,-0.5804,0.4787,-0.7745,-0.5804,0.2516,-0.8143,-0.5804,0.0,-0.7745,-0.5804,-0.2516,-0.6588,-0.5804,-0.4787,-0.4787,-0.5804,-0.6588,-0.2516,-0.5804,-0.7745,0.0,-0.5804,-0.8143,0.2516,-0.5804,-0.7745,0.4787,-0.5804,-0.6588,0.6588,-0.5804,-0.4787,0.7745,-0.5804,-0.2516,0.8143,-0.5804,0.0,0.7745,-0.5804,0.2516,0.8503,-0.448,0.2763,0.7233,-0.448,0.5255,0.5255,-0.448,0.7233,0.2763,-0.448,0.8503,0.0,-0.448,0.894,-0.2763,-0.448,0.8503,-0.5255,-0.448,0.7233,-0.7233,-0.448,0.5255,-0.8503,-0.448,0.2763,-0.894,-0.448,0.0,-0.8503,-0.448,-0.2763,-0.7233,-0.448,-0.5255,-0.5255,-0.448,-0.7233,-0.2763,-0.448,-0.8503,0.0,-0.448,-0.894,0.2763,-0.448,-0.8503,0.5255,-0.448,-0.7233,0.7233,-0.448,-0.5255,0.8503,-0.448,-0.2763,0.894,-0.448,0.0,0.8503,-0.448,0.2763,0.9058,-0.3048,0.2943,0.7705,-0.3048,0.5598,0.5598,-0.3048,0.7705,0.2943,-0.3048,0.9058,0.0,-0.3048,0.9524,-0.2943,-0.3048,0.9058,-0.5598,-0.3048,0.7705,-0.7705,-0.3048,0.5598,-0.9058,-0.3048,0.2943,-0.9524,-0.3048,0.0,-0.9058,-0.3048,-0.2943,-0.7705,-0.3048,-0.5598,-0.5598,-0.3048,-0.7705,-0.2943,-0.3048,-0.9058,0.0,-0.3048,-0.9524,0.2943,-0.3048,-0.9058,0.5598,-0.3048,-0.7705,0.7705,-0.3048,-0.5598,0.9058,-0.3048,-0.2943,0.9524,-0.3048,0.0,0.9058,-0.3048,0.2943,0.9397,-0.1542,0.3053,0.7993,-0.1542,0.5808,0.5808,-0.1542,0.7993,0.3053,-0.1542,0.9397,0.0,-0.1542,0.988,-0.3053,-0.1542,0.9397,-0.5808,-0.1542,0.7993,-0.7993,-0.1542,0.5808,-0.9397,-0.1542,0.3053,-0.988,-0.1542,0.0,-0.9397,-0.1542,-0.3053,-0.7993,-0.1542,-0.5808,-0.5808,-0.1542,-0.7993,-0.3053,-0.1542,-0.9397,0.0,-0.1542,-0.988,0.3053,-0.1542,-0.9397,0.5808,-0.1542,-0.7993,0.7993,-0.1542,-0.5808,0.9397,-0.1542,-0.3053,0.988,-0.1542,0.0,0.9397,-0.1542,0.3053,0.9511,0.0,0.309,0.809,0.0,0.5878,0.5878,0.0,0.809,0.309,0.0,0.9511,0.0,0.0,1.0,-0.309,0.0,0.9511,-0.5878,0.0,0.809,-0.809,0.0,0.5878,-0.9511,0.0,0.309,-1.0,0.0,0.0,-0.9511,0.0,-0.309,-0.809,0.0,-0.5878,-0.5878,0.0,-0.809,-0.309,0.0,-0.9511,0.0,0.0,-1.0,0.309,0.0,-0.9511,0.5878,0.0,-0.809,0.809,0.0,-0.5878,0.9511,0.0,-0.309,1.0,0.0,0.0,0.9511,0.0,0.309,0.9397,0.1542,0.3053,0.7993,0.1542,0.5808,0.5808,0.1542,0.7993,0.3053,0.1542,0.9397,0.0,0.1542,0.988,-0.3053,0.1542,0.9397,-0.5808,0.1542,0.7993,-0.7993,0.1542,0.5808,-0.9397,0.1542,0.3053,-0.988,0.1542,0.0,-0.9397,0.1542,-0.3053,-0.7993,0.1542,-0.5808,-0.5808,0.1542,-0.7993,-0.3053,0.1542,-0.9397,0.0,0.1542,-0.988,0.3053,0.1542,-0.9397,0.5808,0.1542,-0.7993,0.7993,0.1542,-0.5808,0.9397,0.1542,-0.3053,0.988,0.1542,0.0,0.9397,0.1542,0.3053,0.9058,0.3048,0.2943,0.7705,0.3048,0.5598,0.5598,0.3048,0.7705,0.2943,0.3048,0.9058,0.0,0.3048,0.9524,-0.2943,0.3048,0.9058,-0.5598,0.3048,0.7705,-0.7705,0.3048,0.5598,-0.9058,0.3048,0.2943,-0.9524,0.3048,0.0,-0.9058,0.3048,-0.2943,-0.7705,0.3048,-0.5598,-0.5598,0.3048,-0.7705,-0.2943,0.3048,-0.9058,0.0,0.3048,-0.9524,0.2943,0.3048,-0.9058,0.5598,0.3048,-0.7705,0.7705,0.3048,-0.5598,0.9058,0.3048,-0.2943,0.9524,0.3048,0.0,0.9058,0.3048,0.2943,0.8503,0.448,0.2763,0.7233,0.448,0.5255,0.5255,0.448,0.7233,0.2763,0.448,0.8503,0.0,0.448,0.894,-0.2763,0.448,0.8503,-0.5255,0.448,0.7233,-0.7233,0.448,0.5255,-0.8503,0.448,0.2763,-0.894,0.448,0.0,-0.8503,0.448,-0.2763,-0.7233,0.448,-0.5255,-0.5255,0.448,-0.7233,-0.2763,0.448,-0.8503,0.0,0.448,-0.894,0.2763,0.448,-0.8503,0.5255,0.448,-0.7233,0.7233,0.448,-0.5255,0.8503,0.448,-0.2763,0.894,0.448,0.0,0.8503,0.448,0.2763,0.7745,0.5804,0.2516,0.6588,0.5804,0.4787,0.4787,0.5804,0.6588,0.2516,0.5804,0.7745,0.0,0.5804,0.8143,-0.2516,0.5804,0.7745,-0.4787,0.5804,0.6588,-0.6588,0.5804,0.4787,-0.7745,0.5804,0.2516,-0.8143,0.5804,0.0,-0.7745,0.5804,-0.2516,-0.6588,0.5804,-0.4787,-0.4787,0.5804,-0.6588,-0.2516,0.5804,-0.7745,0.0,0.5804,-0.8143,0.2516,0.5804,-0.7745,0.4787,0.5804,-0.6588,0.6588,0.5804,-0.4787,0.7745,0.5804,-0.2516,0.8143,0.5804,0.0,0.7745,0.5804,0.2516,0.6803,0.6988,0.221,0.5787,0.6988,0.4205,0.4205,0.6988,0.5787,0.221,0.6988,0.6803,0.0,0.6988,0.7153,-0.221,0.6988,0.6803,-0.4205,0.6988,0.5787,-0.5787,0.6988,0.4205,-0.6803,0.6988,0.221,-0.7153,0.6988,0.0,-0.6803,0.6988,-0.221,-0.5787,0.6988,-0.4205,-0.4205,0.6988,-0.5787,-0.221,0.6988,-0.6803,0.0,0.6988,-0.7153,0.221,0.6988,-0.6803,0.4205,0.6988,-0.5787,0.5787,0.6988,-0.4205,0.6803,0.6988,-0.221,0.7153,0.6988,0.0,0.6803,0.6988,0.221,0.5703,0.8003,0.1853,0.4851,0.8003,0.3525,0.3525,0.8003,0.4851,0.1853,0.8003,0.5703,0.0,0.8003,0.5997,-0.1853,0.8003,0.5703,-0.3525,0.8003,0.4851,-0.4851,0.8003,0.3525,-0.5703,0.8003,0.1853,-0.5997,0.8003,0.0,-0.5703,0.8003,-0.1853,-0.4851,0.8003,-0.3525,-0.3525,0.8003,-0.4851,-0.1853,0.8003,-0.5703,0.0,0.8003,-0.5997,0.1853,0.8003,-0.5703,0.3525,0.8003,-0.4851,0.4851,0.8003,-0.3525,0.5703,0.8003,-0.1853,0.5997,0.8003,0.0,0.5703,0.8003,0.1853,0.4477,0.8823,0.1455,0.3808,0.8823,0.2767,0.2767,0.8823,0.3808,0.1455,0.8823,0.4477,0.0,0.8823,0.4708,-0.1455,0.8823,0.4477,-0.2767,0.8823,0.3808,-0.3808,0.8823,0.2767,-0.4477,0.8823,0.1455,-0.4708,0.8823,0.0,-0.4477,0.8823,-0.1455,-0.3808,0.8823,-0.2767,-0.2767,0.8823,-0.3808,-0.1455,0.8823,-0.4477,0.0,0.8823,-0.4708,0.1455,0.8823,-0.4477,0.2767,0.8823,-0.3808,0.3808,0.8823,-0.2767,0.4477,0.8823,-0.1455,0.4708,0.8823,0.0,0.4477,0.8823,0.1455,0.3173,0.9427,0.1031,0.2699,0.9427,0.1961,0.1961,0.9427,0.2699,0.1031,0.9427,0.3173,0.0,0.9427,0.3336,-0.1031,0.9427,0.3173,-0.1961,0.9427,0.2699,-0.2699,0.9427,0.1961,-0.3173,0.9427,0.1031,-0.3336,0.9427,0.0,-0.3173,0.9427,-0.1031,-0.2699,0.9427,-0.1961,-0.1961,0.9427,-0.2699,-0.1031,0.9427,-0.3173,0.0,0.9427,-0.3336,0.1031,0.9427,-0.3173,0.1961,0.9427,-0.2699,0.2699,0.9427,-0.1961,0.3173,0.9427,-0.1031,0.3336,0.9427,0.0,0.3173,0.9427,0.1031,0.1906,0.9797,0.0619,0.1621,0.9797,0.1178,0.1178,0.9797,0.1621,0.0619,0.9797,0.1906,0.0,0.9797,0.2004,-0.0619,0.9797,0.1906,-0.1178,0.9797,0.1621,-0.1621,0.9797,0.1178,-0.1906,0.9797,0.0619,-0.2004,0.9797,0.0,-0.1906,0.9797,-0.0619,-0.1621,0.9797,-0.1178,-0.1178,0.9797,-0.1621,-0.0619,0.9797,-0.1906,0.0,0.9797,-0.2004,0.0619,0.9797,-0.1906,0.1178,0.9797,-0.1621,0.1621,0.9797,-0.1178,0.1906,0.9797,-0.0619,0.2004,0.9797,0.0,0.1906,0.9797,0.0619,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0],"tangents":[-0.4482,-0.0307,0.8934,-1.0,-0.5629,0.0062,0.8265,-1.0,-0.438,-0.0493,0.8976,-1.0,-0.5878,0.0,0.809,-1.0,-0.7908,0.0062,0.6121,-1.0,-0.809,0.0,0.5878,-1.0,-0.9412,0.0062,0.3378,-1.0,-0.9511,0.0,0.309,-1.0,-0.9995,0.0062,0.0304,-1.0,-1.0,0.0,0.0,-1.0,-0.96,0.0062,-0.28,-1.0,-0.9511,0.0,-0.309,-1.0,-0.8265,0.0062,-0.5629,-1.0,-0.809,0.0,-0.5878,-1.0,-0.6121,0.0062,-0.7908,-1.0,-0.5878,0.0,-0.809,-1.0,-0.3378,0.0062,-0.9412,-1.0,-0.309,0.0,-0.9511,-1.0,-0.0304,0.0062,-0.9995,-1.0,0.0,0.0,-1.0,-1.0,0.28,0.0062,-0.96,-1.0,0.309,0.0,-0.9511,-1.0,0.5629,0.0062,-0.8265,-1.0,0.5878,0.0,-0.809,-1.0,0.7908,0.0062,-0.6121,-1.0,0.809,0.0,-0.5878,-1.0,0.9412,0.0062,-0.3378,-1.0,0.9511,0.0,-0.309,-1.0,0.9995,0.0062,-0.0304,-1.0,1.0,0.0,0.0,-1.0,0.96,0.0062,0.28,-1.0,0.9511,0.0,0.309,-1.0,0.8265,0.0062,0.5629,-1.0,0.809,0.0,0.5878,-1.0,0.6121,0.0062,0.7908,-1.0,0.5878,0.0,0.809,-1.0,0.3378,0.0062,0.9412,-1.0,0.309,0.0,0.9511,-1.0,0.0304,0.0062,0.9995,-1.0,0.0,0.0,1.0,-1.0,-0.1625,0.0307,0.9862,-1.0,-0.1732,0.0493,0.9836,-1.0,-0.4222,-0.0651,0.9042,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.1899,0.0651,0.9796,-1.0,-0.4023,-0.0754,0.9124,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.2109,0.0754,0.9746,-1.0,-0.3802,-0.0787,0.9215,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.234,0.0787,0.969,-1.0,-0.3582,-0.0745,0.9306,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.2572,0.0745,0.9635,-1.0,-0.3384,-0.0633,0.9389,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.2781,0.0633,0.9585,-1.0,-0.3226,-0.0459,0.9454,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.2947,0.0459,0.9545,-1.0,-0.3125,-0.0241,0.9496,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.3053,0.0241,0.9519,-1.0,-0.309,0.0,0.9511,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.309,0.0,0.9511,-1.0,-0.3125,0.0241,0.9496,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.3053,-0.0241,0.9519,-1.0,-0.3226,0.0459,0.9454,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.2947,-0.0459,0.9545,-1.0,-0.3384,0.0633,0.9389,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.2781,-0.0633,0.9585,-1.0,-0.3582,0.0745,0.9306,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.2572,-0.0745,0.9635,-1.0,-0.3802,0.0787,0.9215,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.234,-0.0787,0.969,-1.0,-0.4023,0.0754,0.9124,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.2109,-0.0754,0.9746,-1.0,-0.4222,0.0651,0.9042,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.1899,-0.0651,0.9796,-1.0,-0.438,0.0493,0.8976,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.1732,-0.0493,0.9836,-1.0,-0.4482,0.0307,0.8934,-1.0,-0.6121,0.0062,0.7908,-1.0,-0.8265,0.0062,0.5629,-1.0,-0.96,0.0062,0.28,-1.0,-0.9995,0.0062,-0.0304,-1.0,-0.9412,0.0062,-0.3378,-1.0,-0.7908,0.0062,-0.6121,-1.0,-0.5629,0.0062,-0.8265,-1.0,-0.28,0.0062,-0.96,-1.0,0.0304,0.0062,-0.9995,-1.0,0.3378,0.0062,-0.9412,-1.0,0.6121,0.0062,-0.7908,-1.0,0.8265,0.0062,-0.5629,-1.0,0.96,0.0062,-0.28,-1.0,0.9995,0.0062,0.0304,-1.0,0.9412,0.0062,0.3378,-1.0,0.7908,0.0062,0.6121,-1.0,0.5629,0.0062,0.8265,-1.0,0.28,0.0062,0.96,-1.0,-0.0304,0.0062,0.9995,-1.0,-0.1625,-0.0307,0.9862,-1.0,-0.454,0.0,0.891,-1.0,-0.7071,0.0,0.7071,-1.0,-0.891,0.0,0.454,-1.0,-0.9877,0.0,0.1564,-1.0,-0.9877,0.0,-0.1564,-1.0,-0.891,0.0,-0.454,-1.0,-0.7071,0.0,-0.7071,-1.0,-0.454,0.0,-0.891,-1.0,-0.1564,0.0,-0.9877,-1.0,0.1564,0.0,-0.9877,-1.0,0.454,0.0,-0.891,-1.0,0.7071,0.0,-0.7071,-1.0,0.891,0.0,-0.454,-1.0,0.9877,0.0,-0.1564,-1.0,0.9877,0.0,0.1564,-1.0,0.891,0.0,0.454,-1.0,0.7071,0.0,0.7071,-1.0,0.454,0.0,0.891,-1.0,0.1564,0.0,0.9877,-1.0,-0.1564,0.0,0.9877,-1.0,-0.454,0.0,0.891,-1.0,-0.7071,0.0,0.7071,-1.0,-0.891,0.0,0.454,-1.0,-0.9877,0.0,0.1564,-1.0,-0.9877,0.0,-0.1564,-1.0,-0.891,0.0,-0.454,-1.0,-0.7071,0.0,-0.7071,-1.0,-0.454,0.0,-0.891,-1.0,-0.1564,0.0,-0.9877,-1.0,0.1564,0.0,-0.9877,-1.0,0.454,0.0,-0.891,-1.0,0.7071,0.0,-0.7071,-1.0,0.891,0.0,-0.454,-1.0,0.9877,0.0,-0.1564,-1.0,0.9877,0.0,0.1564,-1.0,0.891,0.0,0.454,-1.0,0.7071,0.0,0.7071,-1.0,0.454,0.0,0.891,-1.0,0.1564,0.0,0.9877,-1.0,-0.1564,0.0,0.9877,-1.0],"uvs":[0.0,0.05,0.05,0.05,0.0,0.1,0.05,0.1,0.1,0.05,0.1,0.1,0.15,0.05,0.15,0.1,0.2,0.05,0.2,0.1,0.25,0.05,0.25,0.1,0.3,0.05,0.3,0.1,0.35,0.05,0.35,0.1,0.4,0.05,0.4,0.1,0.45,0.05,0.45,0.1,0.5,0.05,0.5,0.1,0.55,0.05,0.55,0.1,0.6,0.05,0.6,0.1,0.65,0.05,0.65,0.1,0.7,0.05,0.7,0.1,0.75,0.05,0.75,0.1,0.8,0.05,0.8,0.1,0.85,0.05,0.85,0.1,0.9,0.05,0.9,0.1,0.95,0.05,0.95,0.1,1.0,0.05,1.0,0.1,0.0,0.15,0.05,0.15,0.1,0.15,0.15,0.15,0.2,0.15,0.25,0.15,0.3,0.15,0.35,0.15,0.4,0.15,0.45,0.15,0.5,0.15,0.55,0.15,0.6,0.15,0.65,0.15,0.7,0.15,0.75,0.15,0.8,0.15,0.85,0.15,0.9,0.15,0.95,0.15,1.0,0.15,0.0,0.2,0.05,0.2,0.1,0.2,0.15,0.2,0.2,0.2,0.25,0.2,0.3,0.2,0.35,0.2,0.4,0.2,0.45,0.2,0.5,0.2,0.55,0.2,0.6,0.2,0.65,0.2,0.7,0.2,0.75,0.2,0.8,0.2,0.85,0.2,0.9,0.2,0.95,0.2,1.0,0.2,0.0,0.25,0.05,0.25,0.1,0.25,0.15,0.25,0.2,0.25,0.25,0.25,0.3,0.25,0.35,0.25,0.4,0.25,0.45,0.25,0.5,0.25,0.55,0.25,0.6,0.25,0.65,0.25,0.7,0.25,0.75,0.25,0.8,0.25,0.85,0.25,0.9,0.25,0.95,0.25,1.0,0.25,0.0,0.3,0.05,0.3,0.1,0.3,0.15,0.3,0.2,0.3,0.25,0.3,0.3,0.3,0.35,0.3,0.4,0.3,0.45,0.3,0.5,0.3,0.55,0.3,0.6,0.3,0.65,0.3,0.7,0.3,0.75,0.3,0.8,0.3,0.85,0.3,0.9,0.3,0.95,0.3,1.0,0.3,0.0,0.35,0.05,0.35,0.1,0.35,0.15,0.35,0.2,0.35,0.25,0.35,0.3,0.35,0.35,0.35,0.4,0.35,0.45,0.35,0.5,0.35,0.55,0.35,0.6,0.35,0.65,0.35,0.7,0.35,0.75,0.35,0.8,0.35,0.85,0.35,0.9,0.35,0.95,0.35,1.0,0.35,0.0,0.4,0.05,0.4,0.1,0.4,0.15,0.4,0.2,0.4,0.25,0.4,0.3,0.4,0.35,0.4,0.4,0.4,0.45,0.4,0.5,0.4,0.55,0.4,0.6,0.4,0.65,0.4,0.7,0.4,0.75,0.4,0.8,0.4,0.85,0.4,0.9,0.4,0.95,0.4,1.0,0.4,0.0,0.45,0.05,0.45,0.1,0.45,0.15,0.45,0.2,0.45,0.25,0.45,0.3,0.45,0.35,0.45,0.4,0.45,0.45,0.45,0.5,0.45,0.55,0.45,0.6,0.45,0.65,0.45,0.7,0.45,0.75,0.45,0.8,0.45,0.85,0.45,0.9,0.45,0.95,0.45,1.0,0.45,0.0,0.5,0.05,0.5,0.1,0.5,0.15,0.5,0.2,0.5,0.25,0.5,0.3,0.5,0.35,0.5,0.4,0.5,0.45,0.5,0.5,0.5,0.55,0.5,0.6,0.5,0.65,0.5,0.7,0.5,0.75,0.5,0.8,0.5,0.85,0.5,0.9,0.5,0.95,0.5,1.0,0.5,0.0,0.55,0.05,0.55,0.1,0.55,0.15,0.55,0.2,0.55,0.25,0.55,0.3,0.55,0.35,0.55,0.4,0.55,0.45,0.55,0.5,0.55,0.55,0.55,0.6,0.55,0.65,0.55,0.7,0.55,0.75,0.55,0.8,0.55,0.85,0.55,0.9,0.55,0.95,0.55,1.0,0.55,0.0,0.6,0.05,0.6,0.1,0.6,0.15,0.6,0.2,0.6,0.25,0.6,0.3,0.6,0.35,0.6,0.4,0.6,0.45,0.6,0.5,0.6,0.55,0.6,0.6,0.6,0.65,0.6,0.7,0.6,0.75,0.6,0.8,0.6,0.85,0.6,0.9,0.6,0.95,0.6,1.0,0.6,0.0,0.65,0.05,0.65,0.1,0.65,0.15,0.65,0.2,0.65,0.25,0.65,0.3,0.65,0.35,0.65,0.4,0.65,0.45,0.65,0.5,0.65,0.55,0.65,0.6,0.65,0.65,0.65,0.7,0.65,0.75,0.65,0.8,0.65,0.85,0.65,0.9,0.65,0.95,0.65,1.0,0.65,0.0,0.7,0.05,0.7,0.1,0.7,0.15,0.7,0.2,0.7,0.25,0.7,0.3,0.7,0.35,0.7,0.4,0.7,0.45,0.7,0.5,0.7,0.55,0.7,0.6,0.7,0.65,0.7,0.7,0.7,0.75,0.7,0.8,0.7,0.85,0.7,0.9,0.7,0.95,0.7,1.0,0.7,0.0,0.75,0.05,0.75,0.1,0.75,0.15,0.75,0.2,0.75,0.25,0.75,0.3,0.75,0.35,0.75,0.4,0.75,0.45,0.75,0.5,0.75,0.55,0.75,0.6,0.75,0.65,0.75,0.7,0.75,0.75,0.75,0.8,0.75,0.85,0.75,0.9,0.75,0.95,0.75,1.0,0.75,0.0,0.8,0.05,0.8,0.1,0.8,0.15,0.8,0.2,0.8,0.25,0.8,0.3,0.8,0.35,0.8,0.4,0.8,0.45,0.8,0.5,0.8,0.55,0.8,0.6,0.8,0.65,0.8,0.7,0.8,0.75,0.8,0.8,0.8,0.85,0.8,0.9,0.8,0.95,0.8,1.0,0.8,0.0,0.85,0.05,0.85,0.1,0.85,0.15,0.85,0.2,0.85,0.25,0.85,0.3,0.85,0.35,0.85,0.4,0.85,0.45,0.85,0.5,0.85,0.55,0.85,0.6,0.85,0.65,0.85,0.7,0.85,0.75,0.85,0.8,0.85,0.85,0.85,0.9,0.85,0.95,0.85,1.0,0.85,0.0,0.9,0.05,0.9,0.1,0.9,0.15,0.9,0.2,0.9,0.25,0.9,0.3,0.9,0.35,0.9,0.4,0.9,0.45,0.9,0.5,0.9,0.55,0.9,0.6,0.9,0.65,0.9,0.7,0.9,0.75,0.9,0.8,0.9,0.85,0.9,0.9,0.9,0.95,0.9,1.0,0.9,0.0,0.95,0.05,0.95,0.1,0.95,0.15,0.95,0.2,0.95,0.25,0.95,0.3,0.95,0.35,0.95,0.4,0.95,0.45,0.95,0.5,0.95,0.55,0.95,0.6,0.95,0.65,0.95,0.7,0.95,0.75,0.95,0.8,0.95,0.85,0.95,0.9,0.95,0.95,0.95,1.0,0.95,0.025,0.0,0.075,0.0,0.125,0.0,0.175,0.0,0.225,0.0,0.275,0.0,0.325,0.0,0.375,0.0,0.425,0.0,0.475,0.0,0.525,0.0,0.575,0.0,0.625,0.0,0.675,0.0,0.725,0.0,0.775,0.0,0.825,0.0,0.875,0.0,0.925,0.0,0.975,0.0,0.025,1.0,0.075,1.0,0.125,1.0,0.175,1.0,0.225,1.0,0.275,1.0,0.325,1.0,0.375,1.0,0.425,1.0,0.475,1.0,0.525,1.0,0.575,1.0,0.625,1.0,0.675,1.0,0.725,1.0,0.775,1.0,0.825,1.0,0.875,1.0,0.925,1.0,0.975,1.0],"uvs2":null,"colors":null,"hasVertexAlpha":false,"matricesIndices":null,"matricesWeights":null,"matricesIndicesExtra":null,"matricesWeightsExtra":null,"indices":[0,1,2,2,1,3,1,4,3,3,4,5,4,6,5,5,6,7,6,8,7,7,8,9,8,10,9,9,10,11,10,12,11,11,12,13,12,14,13,13,14,15,14,16,15,15,16,17,16,18,17,17,18,19,18,20,19,19,20,21,20,22,21,21,22,23,22,24,23,23,24,25,24,26,25,25,26,27,26,28,27,27,28,29,28,30,29,29,30,31,30,32,31,31,32,33,32,34,33,33,34,35,34,36,35,35,36,37,36,38,37,37,38,39,38,40,39,39,40,41,2,3,42,42,3,43,3,5,43,43,5,44,5,7,44,44,7,45,7,9,45,45,9,46,9,11,46,46,11,47,11,13,47,47,13,48,13,15,48,48,15,49,15,17,49,49,17,50,17,19,50,50,19,51,19,21,51,51,21,52,21,23,52,52,23,53,23,25,53,53,25,54,25,27,54,54,27,55,27,29,55,55,29,56,29,31,56,56,31,57,31,33,57,57,33,58,33,35,58,58,35,59,35,37,59,59,37,60,37,39,60,60,39,61,39,41,61,61,41,62,42,43,63,63,43,64,43,44,64,64,44,65,44,45,65,65,45,66,45,46,66,66,46,67,46,47,67,67,47,68,47,48,68,68,48,69,48,49,69,69,49,70,49,50,70,70,50,71,50,51,71,71,51,72,51,52,72,72,52,73,52,53,73,73,53,74,53,54,74,74,54,75,54,55,75,75,55,76,55,56,76,76,56,77,56,57,77,77,57,78,57,58,78,78,58,79,58,59,79,79,59,80,59,60,80,80,60,81,60,61,81,81,61,82,61,62,82,82,62,83,63,64,84,84,64,85,64,65,85,85,65,86,65,66,86,86,66,87,66,67,87,87,67,88,67,68,88,88,68,89,68,69,89,89,69,90,69,70,90,90,70,91,70,71,91,91,71,92,71,72,92,92,72,93,72,73,93,93,73,94,73,74,94,94,74,95,74,75,95,95,75,96,75,76,96,96,76,97,76,77,97,97,77,98,77,78,98,98,78,99,78,79,99,99,79,100,79,80,100,100,80,101,80,81,101,101,81,102,81,82,102,102,82,103,82,83,103,103,83,104,84,85,105,105,85,106,85,86,106,106,86,107,86,87,107,107,87,108,87,88,108,108,88,109,88,89,109,109,89,110,89,90,110,110,90,111,90,91,111,111,91,112,91,92,112,112,92,113,92,93,113,113,93,114,93,94,114,114,94,115,94,95,115,115,95,116,95,96,116,116,96,117,96,97,117,117,97,118,97,98,118,118,98,119,98,99,119,119,99,120,99,100,120,120,100,121,100,101,121,121,101,122,101,102,122,122,102,123,102,103,123,123,103,124,103,104,124,124,104,125,105,106,126,126,106,127,106,107,127,127,107,128,107,108,128,128,108,129,108,109,129,129,109,130,109,110,130,130,110,131,110,111,131,131,111,132,111,112,132,132,112,133,112,113,133,133,113,134,113,114,134,134,114,135,114,115,135,135,115,136,115,116,136,136,116,137,116,117,137,137,117,138,117,118,138,138,118,139,118,119,139,139,119,140,119,120,140,140,120,141,120,121,141,141,121,142,121,122,142,142,122,143,122,123,143,143,123,144,123,124,144,144,124,145,124,125,145,145,125,146,126,127,147,147,127,148,127,128,148,148,128,149,128,129,149,149,129,150,129,130,150,150,130,151,130,131,151,151,131,152,131,132,152,152,132,153,132,133,153,153,133,154,133,134,154,154,134,155,134,135,155,155,135,156,135,136,156,156,136,157,136,137,157,157,137,158,137,138,158,158,138,159,138,139,159,159,139,160,139,140,160,160,140,161,140,141,161,161,141,162,141,142,162,162,142,163,142,143,163,163,143,164,143,144,164,164,144,165,144,145,165,165,145,166,145,146,166,166,146,167,147,148,168,168,148,169,148,149,169,169,149,170,149,150,170,170,150,171,150,151,171,171,151,172,151,152,172,172,152,173,152,153,173,173,153,174,153,154,174,174,154,175,154,155,175,175,155,176,155,156,176,176,156,177,156,157,177,177,157,178,157,158,178,178,158,179,158,159,179,179,159,180,159,160,180,180,160,181,160,161,181,181,161,182,161,162,182,182,162,183,162,163,183,183,163,184,163,164,184,184,164,185,164,165,185,185,165,186,165,166,186,186,166,187,166,167,187,187,167,188,168,169,189,189,169,190,169,170,190,190,170,191,170,171,191,191,171,192,171,172,192,192,172,193,172,173,193,193,173,194,173,174,194,194,174,195,174,175,195,195,175,196,175,176,196,196,176,197,176,177,197,197,177,198,177,178,198,198,178,199,178,179,199,199,179,200,179,180,200,200,180,201,180,181,201,201,181,202,181,182,202,202,182,203,182,183,203,203,183,204,183,184,204,204,184,205,184,185,205,205,185,206,185,186,206,206,186,207,186,187,207,207,187,208,187,188,208,208,188,209,189,190,210,210,190,211,190,191,211,211,191,212,191,192,212,212,192,213,192,193,213,213,193,214,193,194,214,214,194,215,194,195,215,215,195,216,195,196,216,216,196,217,196,197,217,217,197,218,197,198,218,218,198,219,198,199,219,219,199,220,199,200,220,220,200,221,200,201,221,221,201,222,201,202,222,222,202,223,202,203,223,223,203,224,203,204,224,224,204,225,204,205,225,225,205,226,205,206,226,226,206,227,206,207,227,227,207,228,207,208,228,228,208,229,208,209,229,229,209,230,210,211,231,231,211,232,211,212,232,232,212,233,212,213,233,233,213,234,213,214,234,234,214,235,214,215,235,235,215,236,215,216,236,236,216,237,216,217,237,237,217,238,217,218,238,238,218,239,218,219,239,239,219,240,219,220,240,240,220,241,220,221,241,241,221,242,221,222,242,242,222,243,222,223,243,243,223,244,223,224,244,244,224,245,224,225,245,245,225,246,225,226,246,246,226,247,226,227,247,247,227,248,227,228,248,248,228,249,228,229,249,249,229,250,229,230,250,250,230,251,231,232,252,252,232,253,232,233,253,253,233,254,233,234,254,254,234,255,234,235,255,255,235,256,235,236,256,256,236,257,236,237,257,257,237,258,237,238,258,258,238,259,238,239,259,259,239,260,239,240,260,260,240,261,240,241,261,261,241,262,241,242,262,262,242,263,242,243,263,263,243,264,243,244,264,264,244,265,244,245,265,265,245,266,245,246,266,266,246,267,246,247,267,267,247,268,247,248,268,268,248,269,248,249,269,269,249,270,249,250,270,270,250,271,250,251,271,271,251,272,252,253,273,273,253,274,253,254,274,274,254,275,254,255,275,275,255,276,255,256,276,276,256,277,256,257,277,277,257,278,257,258,278,278,258,279,258,259,279,279,259,280,259,260,280,280,260,281,260,261,281,281,261,282,261,262,282,282,262,283,262,263,283,283,263,284,263,264,284,284,264,285,264,265,285,285,265,286,265,266,286,286,266,287,266,267,287,287,267,288,267,268,288,288,268,289,268,269,289,289,269,290,269,270,290,290,270,291,270,271,291,291,271,292,271,272,292,292,272,293,273,274,294,294,274,295,274,275,295,295,275,296,275,276,296,296,276,297,276,277,297,297,277,298,277,278,298,298,278,299,278,279,299,299,279,300,279,280,300,300,280,301,280,281,301,301,281,302,281,282,302,302,282,303,282,283,303,303,283,304,283,284,304,304,284,305,284,285,305,305,285,306,285,286,306,306,286,307,286,287,307,307,287,308,287,288,308,308,288,309,288,289,309,309,289,310,289,290,310,310,290,311,290,291,311,311,291,312,291,292,312,312,292,313,292,293,313,313,293,314,294,295,315,315,295,316,295,296,316,316,296,317,296,297,317,317,297,318,297,298,318,318,298,319,298,299,319,319,299,320,299,300,320,320,300,321,300,301,321,321,301,322,301,302,322,322,302,323,302,303,323,323,303,324,303,304,324,324,304,325,304,305,325,325,305,326,305,306,326,326,306,327,306,307,327,327,307,328,307,308,328,328,308,329,308,309,329,329,309,330,309,310,330,330,310,331,310,311,331,331,311,332,311,312,332,332,312,333,312,313,333,333,313,334,313,314,334,334,314,335,315,316,336,336,316,337,316,317,337,337,317,338,317,318,338,338,318,339,318,319,339,339,319,340,319,320,340,340,320,341,320,321,341,341,321,342,321,322,342,342,322,343,322,323,343,343,323,344,323,324,344,344,324,345,324,325,345,345,325,346,325,326,346,346,326,347,326,327,347,347,327,348,327,328,348,348,328,349,328,329,349,349,329,350,329,330,350,350,330,351,330,331,351,351,331,352,331,332,352,352,332,353,332,333,353,353,333,354,333,334,354,354,334,355,334,335,355,355,335,356,336,337,357,357,337,358,337,338,358,358,338,359,338,339,359,359,339,360,339,340,360,360,340,361,340,341,361,361,341,362,341,342,362,362,342,363,342,343,363,363,343,364,343,344,364,364,344,365,344,345,365,365,345,366,345,346,366,366,346,367,346,347,367,367,347,368,347,348,368,368,348,369,348,349,369,369,349,370,349,350,370,370,350,371,350,351,371,371,351,372,351,352,372,372,352,373,352,353,373,373,353,374,353,354,374,374,354,375,354,355,375,375,355,376,355,356,376,376,356,377,357,358,378,378,358,379,358,359,379,379,359,380,359,360,380,380,360,381,360,361,381,381,361,382,361,362,382,382,362,383,362,363,383,383,363,384,363,364,384,384,364,385,364,365,385,385,365,386,365,366,386,386,366,387,366,367,387,387,367,388,367,368,388,388,368,389,368,369,389,389,369,390,369,370,390,390,370,391,370,371,391,391,371,392,371,372,392,392,372,393,372,373,393,393,373,394,373,374,394,394,374,395,374,375,395,395,375,396,375,376,396,396,376,397,376,377,397,397,377,398,1,0,399,4,1,400,6,4,401,8,6,402,10,8,403,12,10,404,14,12,405,16,14,406,18,16,407,20,18,408,22,20,409,24,22,410,26,24,411,28,26,412,30,28,413,32,30,414,34,32,415,36,34,416,38,36,417,40,38,418,378,379,419,379,380,420,380,381,421,381,382,422,382,383,423,383,384,424,384,385,425,385,386,426,386,387,427,387,388,428,388,389,429,389,390,430,390,391,431,391,392,432,392,393,433,393,394,434,394,395,435,395,396,436,396,397,437,397,398,438],"receiveShadows":false,"infiniteDistance":false,"billboardMode":0,"visibility":1.0,"subMeshes":[{"materialIndex":0,"verticesStart":0,"verticesCount":439,"indexStart":0,"indexCount":2280}],"instances":null,"skeletonId":-1,"numBoneInfluencers":4,"applyFog":false,"metadata":null,"lodMeshIds":null,"lodDistances":null,"lodCoverages":null,"rotation":null,"scaling":[1.0,1.0,1.0],"rotationQuaternion":[0.0,0.0,0.0,1.0],"actions":null,"checkCollisions":false,"pickable":true,"showBoundingBox":false,"showSubMeshesBoundingBox":false,"alphaIndex":0,"physicsImpostor":0,"physicsMass":0.0,"physicsFriction":0.0,"physicsRestitution":0.0,"name":"pSphere1","id":"39830D1B-4903-0C71-E956-0EBDE718A360","parentId":null,"position":[0.0,0.0,0.0],"animations":[],"autoAnimate":true,"autoAnimateFrom":1,"autoAnimateTo":200,"autoAnimateLoop":true},{"materialId":"0E49D5E9-4200-91FB-CB7B-93B40CEF850E","isEnabled":true,"isVisible":true,"positions":[0.1488,-0.9877,0.0483,0.1266,-0.9877,0.0919,0.2939,-0.9511,0.0955,0.25,-0.9511,0.1816,0.0919,-0.9877,0.1266,0.1816,-0.9511,0.25,0.0483,-0.9877,0.1488,0.0955,-0.9511,0.2939,0.0,-0.9877,0.1564,0.0,-0.9511,0.309,-0.0483,-0.9877,0.1488,-0.0955,-0.9511,0.2939,-0.0919,-0.9877,0.1266,-0.1816,-0.9511,0.25,-0.1266,-0.9877,0.0919,-0.25,-0.9511,0.1816,-0.1488,-0.9877,0.0483,-0.2939,-0.9511,0.0955,-0.1564,-0.9877,0.0,-0.309,-0.9511,0.0,-0.1488,-0.9877,-0.0483,-0.2939,-0.9511,-0.0955,-0.1266,-0.9877,-0.0919,-0.25,-0.9511,-0.1816,-0.0919,-0.9877,-0.1266,-0.1816,-0.9511,-0.25,-0.0483,-0.9877,-0.1488,-0.0955,-0.9511,-0.2939,0.0,-0.9877,-0.1564,0.0,-0.9511,-0.309,0.0483,-0.9877,-0.1488,0.0955,-0.9511,-0.2939,0.0919,-0.9877,-0.1266,0.1816,-0.9511,-0.25,0.1266,-0.9877,-0.0919,0.25,-0.9511,-0.1816,0.1488,-0.9877,-0.0483,0.2939,-0.9511,-0.0955,0.1564,-0.9877,0.0,0.309,-0.9511,0.0,0.1488,-0.9877,0.0483,0.2939,-0.9511,0.0955,0.4318,-0.891,0.1403,0.3673,-0.891,0.2668,0.2668,-0.891,0.3673,0.1403,-0.891,0.4318,0.0,-0.891,0.454,-0.1403,-0.891,0.4318,-0.2668,-0.891,0.3673,-0.3673,-0.891,0.2668,-0.4318,-0.891,0.1403,-0.454,-0.891,0.0,-0.4318,-0.891,-0.1403,-0.3673,-0.891,-0.2668,-0.2668,-0.891,-0.3673,-0.1403,-0.891,-0.4318,0.0,-0.891,-0.454,0.1403,-0.891,-0.4318,0.2668,-0.891,-0.3673,0.3673,-0.891,-0.2668,0.4318,-0.891,-0.1403,0.454,-0.891,0.0,0.4318,-0.891,0.1403,0.559,-0.809,0.1816,0.4755,-0.809,0.3455,0.3455,-0.809,0.4755,0.1816,-0.809,0.559,0.0,-0.809,0.5878,-0.1816,-0.809,0.559,-0.3455,-0.809,0.4755,-0.4755,-0.809,0.3455,-0.559,-0.809,0.1816,-0.5878,-0.809,0.0,-0.559,-0.809,-0.1816,-0.4755,-0.809,-0.3455,-0.3455,-0.809,-0.4755,-0.1816,-0.809,-0.559,0.0,-0.809,-0.5878,0.1816,-0.809,-0.559,0.3455,-0.809,-0.4755,0.4755,-0.809,-0.3455,0.559,-0.809,-0.1816,0.5878,-0.809,0.0,0.559,-0.809,0.1816,0.6725,-0.7071,0.2185,0.5721,-0.7071,0.4156,0.4156,-0.7071,0.5721,0.2185,-0.7071,0.6725,0.0,-0.7071,0.7071,-0.2185,-0.7071,0.6725,-0.4156,-0.7071,0.5721,-0.5721,-0.7071,0.4156,-0.6725,-0.7071,0.2185,-0.7071,-0.7071,0.0,-0.6725,-0.7071,-0.2185,-0.5721,-0.7071,-0.4156,-0.4156,-0.7071,-0.5721,-0.2185,-0.7071,-0.6725,0.0,-0.7071,-0.7071,0.2185,-0.7071,-0.6725,0.4156,-0.7071,-0.5721,0.5721,-0.7071,-0.4156,0.6725,-0.7071,-0.2185,0.7071,-0.7071,0.0,0.6725,-0.7071,0.2185,0.7694,-0.5878,0.25,0.6545,-0.5878,0.4755,0.4755,-0.5878,0.6545,0.25,-0.5878,0.7694,0.0,-0.5878,0.809,-0.25,-0.5878,0.7694,-0.4755,-0.5878,0.6545,-0.6545,-0.5878,0.4755,-0.7694,-0.5878,0.25,-0.809,-0.5878,0.0,-0.7694,-0.5878,-0.25,-0.6545,-0.5878,-0.4755,-0.4755,-0.5878,-0.6545,-0.25,-0.5878,-0.7694,0.0,-0.5878,-0.809,0.25,-0.5878,-0.7694,0.4755,-0.5878,-0.6545,0.6545,-0.5878,-0.4755,0.7694,-0.5878,-0.25,0.809,-0.5878,0.0,0.7694,-0.5878,0.25,0.8474,-0.454,0.2753,0.7208,-0.454,0.5237,0.5237,-0.454,0.7208,0.2753,-0.454,0.8474,0.0,-0.454,0.891,-0.2753,-0.454,0.8474,-0.5237,-0.454,0.7208,-0.7208,-0.454,0.5237,-0.8474,-0.454,0.2753,-0.891,-0.454,0.0,-0.8474,-0.454,-0.2753,-0.7208,-0.454,-0.5237,-0.5237,-0.454,-0.7208,-0.2753,-0.454,-0.8474,0.0,-0.454,-0.891,0.2753,-0.454,-0.8474,0.5237,-0.454,-0.7208,0.7208,-0.454,-0.5237,0.8474,-0.454,-0.2753,0.891,-0.454,0.0,0.8474,-0.454,0.2753,0.9045,-0.309,0.2939,0.7694,-0.309,0.559,0.559,-0.309,0.7694,0.2939,-0.309,0.9045,0.0,-0.309,0.9511,-0.2939,-0.309,0.9045,-0.559,-0.309,0.7694,-0.7694,-0.309,0.559,-0.9045,-0.309,0.2939,-0.9511,-0.309,0.0,-0.9045,-0.309,-0.2939,-0.7694,-0.309,-0.559,-0.559,-0.309,-0.7694,-0.2939,-0.309,-0.9045,0.0,-0.309,-0.9511,0.2939,-0.309,-0.9045,0.559,-0.309,-0.7694,0.7694,-0.309,-0.559,0.9045,-0.309,-0.2939,0.9511,-0.309,0.0,0.9045,-0.309,0.2939,0.9393,-0.1564,0.3052,0.7991,-0.1564,0.5805,0.5805,-0.1564,0.7991,0.3052,-0.1564,0.9393,0.0,-0.1564,0.9877,-0.3052,-0.1564,0.9393,-0.5805,-0.1564,0.7991,-0.7991,-0.1564,0.5805,-0.9393,-0.1564,0.3052,-0.9877,-0.1564,0.0,-0.9393,-0.1564,-0.3052,-0.7991,-0.1564,-0.5805,-0.5805,-0.1564,-0.7991,-0.3052,-0.1564,-0.9393,0.0,-0.1564,-0.9877,0.3052,-0.1564,-0.9393,0.5805,-0.1564,-0.7991,0.7991,-0.1564,-0.5805,0.9393,-0.1564,-0.3052,0.9877,-0.1564,0.0,0.9393,-0.1564,0.3052,0.9511,0.0,0.309,0.809,0.0,0.5878,0.5878,0.0,0.809,0.309,0.0,0.9511,0.0,0.0,1.0,-0.309,0.0,0.9511,-0.5878,0.0,0.809,-0.809,0.0,0.5878,-0.9511,0.0,0.309,-1.0,0.0,0.0,-0.9511,0.0,-0.309,-0.809,0.0,-0.5878,-0.5878,0.0,-0.809,-0.309,0.0,-0.9511,0.0,0.0,-1.0,0.309,0.0,-0.9511,0.5878,0.0,-0.809,0.809,0.0,-0.5878,0.9511,0.0,-0.309,1.0,0.0,0.0,0.9511,0.0,0.309,0.9393,0.1564,0.3052,0.7991,0.1564,0.5805,0.5805,0.1564,0.7991,0.3052,0.1564,0.9393,0.0,0.1564,0.9877,-0.3052,0.1564,0.9393,-0.5805,0.1564,0.7991,-0.7991,0.1564,0.5805,-0.9393,0.1564,0.3052,-0.9877,0.1564,0.0,-0.9393,0.1564,-0.3052,-0.7991,0.1564,-0.5805,-0.5805,0.1564,-0.7991,-0.3052,0.1564,-0.9393,0.0,0.1564,-0.9877,0.3052,0.1564,-0.9393,0.5805,0.1564,-0.7991,0.7991,0.1564,-0.5805,0.9393,0.1564,-0.3052,0.9877,0.1564,0.0,0.9393,0.1564,0.3052,0.9045,0.309,0.2939,0.7694,0.309,0.559,0.559,0.309,0.7694,0.2939,0.309,0.9045,0.0,0.309,0.9511,-0.2939,0.309,0.9045,-0.559,0.309,0.7694,-0.7694,0.309,0.559,-0.9045,0.309,0.2939,-0.9511,0.309,0.0,-0.9045,0.309,-0.2939,-0.7694,0.309,-0.559,-0.559,0.309,-0.7694,-0.2939,0.309,-0.9045,0.0,0.309,-0.9511,0.2939,0.309,-0.9045,0.559,0.309,-0.7694,0.7694,0.309,-0.559,0.9045,0.309,-0.2939,0.9511,0.309,0.0,0.9045,0.309,0.2939,0.8474,0.454,0.2753,0.7208,0.454,0.5237,0.5237,0.454,0.7208,0.2753,0.454,0.8474,0.0,0.454,0.891,-0.2753,0.454,0.8474,-0.5237,0.454,0.7208,-0.7208,0.454,0.5237,-0.8474,0.454,0.2753,-0.891,0.454,0.0,-0.8474,0.454,-0.2753,-0.7208,0.454,-0.5237,-0.5237,0.454,-0.7208,-0.2753,0.454,-0.8474,0.0,0.454,-0.891,0.2753,0.454,-0.8474,0.5237,0.454,-0.7208,0.7208,0.454,-0.5237,0.8474,0.454,-0.2753,0.891,0.454,0.0,0.8474,0.454,0.2753,0.7694,0.5878,0.25,0.6545,0.5878,0.4755,0.4755,0.5878,0.6545,0.25,0.5878,0.7694,0.0,0.5878,0.809,-0.25,0.5878,0.7694,-0.4755,0.5878,0.6545,-0.6545,0.5878,0.4755,-0.7694,0.5878,0.25,-0.809,0.5878,0.0,-0.7694,0.5878,-0.25,-0.6545,0.5878,-0.4755,-0.4755,0.5878,-0.6545,-0.25,0.5878,-0.7694,0.0,0.5878,-0.809,0.25,0.5878,-0.7694,0.4755,0.5878,-0.6545,0.6545,0.5878,-0.4755,0.7694,0.5878,-0.25,0.809,0.5878,0.0,0.7694,0.5878,0.25,0.6725,0.7071,0.2185,0.5721,0.7071,0.4156,0.4156,0.7071,0.5721,0.2185,0.7071,0.6725,0.0,0.7071,0.7071,-0.2185,0.7071,0.6725,-0.4156,0.7071,0.5721,-0.5721,0.7071,0.4156,-0.6725,0.7071,0.2185,-0.7071,0.7071,0.0,-0.6725,0.7071,-0.2185,-0.5721,0.7071,-0.4156,-0.4156,0.7071,-0.5721,-0.2185,0.7071,-0.6725,0.0,0.7071,-0.7071,0.2185,0.7071,-0.6725,0.4156,0.7071,-0.5721,0.5721,0.7071,-0.4156,0.6725,0.7071,-0.2185,0.7071,0.7071,0.0,0.6725,0.7071,0.2185,0.559,0.809,0.1816,0.4755,0.809,0.3455,0.3455,0.809,0.4755,0.1816,0.809,0.559,0.0,0.809,0.5878,-0.1816,0.809,0.559,-0.3455,0.809,0.4755,-0.4755,0.809,0.3455,-0.559,0.809,0.1816,-0.5878,0.809,0.0,-0.559,0.809,-0.1816,-0.4755,0.809,-0.3455,-0.3455,0.809,-0.4755,-0.1816,0.809,-0.559,0.0,0.809,-0.5878,0.1816,0.809,-0.559,0.3455,0.809,-0.4755,0.4755,0.809,-0.3455,0.559,0.809,-0.1816,0.5878,0.809,0.0,0.559,0.809,0.1816,0.4318,0.891,0.1403,0.3673,0.891,0.2668,0.2668,0.891,0.3673,0.1403,0.891,0.4318,0.0,0.891,0.454,-0.1403,0.891,0.4318,-0.2668,0.891,0.3673,-0.3673,0.891,0.2668,-0.4318,0.891,0.1403,-0.454,0.891,0.0,-0.4318,0.891,-0.1403,-0.3673,0.891,-0.2668,-0.2668,0.891,-0.3673,-0.1403,0.891,-0.4318,0.0,0.891,-0.454,0.1403,0.891,-0.4318,0.2668,0.891,-0.3673,0.3673,0.891,-0.2668,0.4318,0.891,-0.1403,0.454,0.891,0.0,0.4318,0.891,0.1403,0.2939,0.9511,0.0955,0.25,0.9511,0.1816,0.1816,0.9511,0.25,0.0955,0.9511,0.2939,0.0,0.9511,0.309,-0.0955,0.9511,0.2939,-0.1816,0.9511,0.25,-0.25,0.9511,0.1816,-0.2939,0.9511,0.0955,-0.309,0.9511,0.0,-0.2939,0.9511,-0.0955,-0.25,0.9511,-0.1816,-0.1816,0.9511,-0.25,-0.0955,0.9511,-0.2939,0.0,0.9511,-0.309,0.0955,0.9511,-0.2939,0.1816,0.9511,-0.25,0.25,0.9511,-0.1816,0.2939,0.9511,-0.0955,0.309,0.9511,0.0,0.2939,0.9511,0.0955,0.1488,0.9877,0.0483,0.1266,0.9877,0.0919,0.0919,0.9877,0.1266,0.0483,0.9877,0.1488,0.0,0.9877,0.1564,-0.0483,0.9877,0.1488,-0.0919,0.9877,0.1266,-0.1266,0.9877,0.0919,-0.1488,0.9877,0.0483,-0.1564,0.9877,0.0,-0.1488,0.9877,-0.0483,-0.1266,0.9877,-0.0919,-0.0919,0.9877,-0.1266,-0.0483,0.9877,-0.1488,0.0,0.9877,-0.1564,0.0483,0.9877,-0.1488,0.0919,0.9877,-0.1266,0.1266,0.9877,-0.0919,0.1488,0.9877,-0.0483,0.1564,0.9877,0.0,0.1488,0.9877,0.0483,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0],"normals":[0.1906,-0.9797,0.0619,0.1621,-0.9797,0.1178,0.3173,-0.9427,0.1031,0.2699,-0.9427,0.1961,0.1178,-0.9797,0.1621,0.1961,-0.9427,0.2699,0.0619,-0.9797,0.1906,0.1031,-0.9427,0.3173,0.0,-0.9797,0.2004,0.0,-0.9427,0.3336,-0.0619,-0.9797,0.1906,-0.1031,-0.9427,0.3173,-0.1178,-0.9797,0.1621,-0.1961,-0.9427,0.2699,-0.1621,-0.9797,0.1178,-0.2699,-0.9427,0.1961,-0.1906,-0.9797,0.0619,-0.3173,-0.9427,0.1031,-0.2004,-0.9797,0.0,-0.3336,-0.9427,0.0,-0.1906,-0.9797,-0.0619,-0.3173,-0.9427,-0.1031,-0.1621,-0.9797,-0.1178,-0.2699,-0.9427,-0.1961,-0.1178,-0.9797,-0.1621,-0.1961,-0.9427,-0.2699,-0.0619,-0.9797,-0.1906,-0.1031,-0.9427,-0.3173,0.0,-0.9797,-0.2004,0.0,-0.9427,-0.3336,0.0619,-0.9797,-0.1906,0.1031,-0.9427,-0.3173,0.1178,-0.9797,-0.1621,0.1961,-0.9427,-0.2699,0.1621,-0.9797,-0.1178,0.2699,-0.9427,-0.1961,0.1906,-0.9797,-0.0619,0.3173,-0.9427,-0.1031,0.2004,-0.9797,0.0,0.3336,-0.9427,0.0,0.1906,-0.9797,0.0619,0.3173,-0.9427,0.1031,0.4477,-0.8823,0.1455,0.3808,-0.8823,0.2767,0.2767,-0.8823,0.3808,0.1455,-0.8823,0.4477,0.0,-0.8823,0.4708,-0.1455,-0.8823,0.4477,-0.2767,-0.8823,0.3808,-0.3808,-0.8823,0.2767,-0.4477,-0.8823,0.1455,-0.4708,-0.8823,0.0,-0.4477,-0.8823,-0.1455,-0.3808,-0.8823,-0.2767,-0.2767,-0.8823,-0.3808,-0.1455,-0.8823,-0.4477,0.0,-0.8823,-0.4708,0.1455,-0.8823,-0.4477,0.2767,-0.8823,-0.3808,0.3808,-0.8823,-0.2767,0.4477,-0.8823,-0.1455,0.4708,-0.8823,0.0,0.4477,-0.8823,0.1455,0.5703,-0.8003,0.1853,0.4851,-0.8003,0.3525,0.3525,-0.8003,0.4851,0.1853,-0.8003,0.5703,0.0,-0.8003,0.5997,-0.1853,-0.8003,0.5703,-0.3525,-0.8003,0.4851,-0.4851,-0.8003,0.3525,-0.5703,-0.8003,0.1853,-0.5997,-0.8003,0.0,-0.5703,-0.8003,-0.1853,-0.4851,-0.8003,-0.3525,-0.3525,-0.8003,-0.4851,-0.1853,-0.8003,-0.5703,0.0,-0.8003,-0.5997,0.1853,-0.8003,-0.5703,0.3525,-0.8003,-0.4851,0.4851,-0.8003,-0.3525,0.5703,-0.8003,-0.1853,0.5997,-0.8003,0.0,0.5703,-0.8003,0.1853,0.6803,-0.6988,0.221,0.5787,-0.6988,0.4205,0.4205,-0.6988,0.5787,0.221,-0.6988,0.6803,0.0,-0.6988,0.7153,-0.221,-0.6988,0.6803,-0.4205,-0.6988,0.5787,-0.5787,-0.6988,0.4205,-0.6803,-0.6988,0.221,-0.7153,-0.6988,0.0,-0.6803,-0.6988,-0.221,-0.5787,-0.6988,-0.4205,-0.4205,-0.6988,-0.5787,-0.221,-0.6988,-0.6803,0.0,-0.6988,-0.7153,0.221,-0.6988,-0.6803,0.4205,-0.6988,-0.5787,0.5787,-0.6988,-0.4205,0.6803,-0.6988,-0.221,0.7153,-0.6988,0.0,0.6803,-0.6988,0.221,0.7745,-0.5804,0.2516,0.6588,-0.5804,0.4787,0.4787,-0.5804,0.6588,0.2516,-0.5804,0.7745,0.0,-0.5804,0.8143,-0.2516,-0.5804,0.7745,-0.4787,-0.5804,0.6588,-0.6588,-0.5804,0.4787,-0.7745,-0.5804,0.2516,-0.8143,-0.5804,0.0,-0.7745,-0.5804,-0.2516,-0.6588,-0.5804,-0.4787,-0.4787,-0.5804,-0.6588,-0.2516,-0.5804,-0.7745,0.0,-0.5804,-0.8143,0.2516,-0.5804,-0.7745,0.4787,-0.5804,-0.6588,0.6588,-0.5804,-0.4787,0.7745,-0.5804,-0.2516,0.8143,-0.5804,0.0,0.7745,-0.5804,0.2516,0.8503,-0.448,0.2763,0.7233,-0.448,0.5255,0.5255,-0.448,0.7233,0.2763,-0.448,0.8503,0.0,-0.448,0.894,-0.2763,-0.448,0.8503,-0.5255,-0.448,0.7233,-0.7233,-0.448,0.5255,-0.8503,-0.448,0.2763,-0.894,-0.448,0.0,-0.8503,-0.448,-0.2763,-0.7233,-0.448,-0.5255,-0.5255,-0.448,-0.7233,-0.2763,-0.448,-0.8503,0.0,-0.448,-0.894,0.2763,-0.448,-0.8503,0.5255,-0.448,-0.7233,0.7233,-0.448,-0.5255,0.8503,-0.448,-0.2763,0.894,-0.448,0.0,0.8503,-0.448,0.2763,0.9058,-0.3048,0.2943,0.7705,-0.3048,0.5598,0.5598,-0.3048,0.7705,0.2943,-0.3048,0.9058,0.0,-0.3048,0.9524,-0.2943,-0.3048,0.9058,-0.5598,-0.3048,0.7705,-0.7705,-0.3048,0.5598,-0.9058,-0.3048,0.2943,-0.9524,-0.3048,0.0,-0.9058,-0.3048,-0.2943,-0.7705,-0.3048,-0.5598,-0.5598,-0.3048,-0.7705,-0.2943,-0.3048,-0.9058,0.0,-0.3048,-0.9524,0.2943,-0.3048,-0.9058,0.5598,-0.3048,-0.7705,0.7705,-0.3048,-0.5598,0.9058,-0.3048,-0.2943,0.9524,-0.3048,0.0,0.9058,-0.3048,0.2943,0.9397,-0.1542,0.3053,0.7993,-0.1542,0.5808,0.5808,-0.1542,0.7993,0.3053,-0.1542,0.9397,0.0,-0.1542,0.988,-0.3053,-0.1542,0.9397,-0.5808,-0.1542,0.7993,-0.7993,-0.1542,0.5808,-0.9397,-0.1542,0.3053,-0.988,-0.1542,0.0,-0.9397,-0.1542,-0.3053,-0.7993,-0.1542,-0.5808,-0.5808,-0.1542,-0.7993,-0.3053,-0.1542,-0.9397,0.0,-0.1542,-0.988,0.3053,-0.1542,-0.9397,0.5808,-0.1542,-0.7993,0.7993,-0.1542,-0.5808,0.9397,-0.1542,-0.3053,0.988,-0.1542,0.0,0.9397,-0.1542,0.3053,0.9511,0.0,0.309,0.809,0.0,0.5878,0.5878,0.0,0.809,0.309,0.0,0.9511,0.0,0.0,1.0,-0.309,0.0,0.9511,-0.5878,0.0,0.809,-0.809,0.0,0.5878,-0.9511,0.0,0.309,-1.0,0.0,0.0,-0.9511,0.0,-0.309,-0.809,0.0,-0.5878,-0.5878,0.0,-0.809,-0.309,0.0,-0.9511,0.0,0.0,-1.0,0.309,0.0,-0.9511,0.5878,0.0,-0.809,0.809,0.0,-0.5878,0.9511,0.0,-0.309,1.0,0.0,0.0,0.9511,0.0,0.309,0.9397,0.1542,0.3053,0.7993,0.1542,0.5808,0.5808,0.1542,0.7993,0.3053,0.1542,0.9397,0.0,0.1542,0.988,-0.3053,0.1542,0.9397,-0.5808,0.1542,0.7993,-0.7993,0.1542,0.5808,-0.9397,0.1542,0.3053,-0.988,0.1542,0.0,-0.9397,0.1542,-0.3053,-0.7993,0.1542,-0.5808,-0.5808,0.1542,-0.7993,-0.3053,0.1542,-0.9397,0.0,0.1542,-0.988,0.3053,0.1542,-0.9397,0.5808,0.1542,-0.7993,0.7993,0.1542,-0.5808,0.9397,0.1542,-0.3053,0.988,0.1542,0.0,0.9397,0.1542,0.3053,0.9058,0.3048,0.2943,0.7705,0.3048,0.5598,0.5598,0.3048,0.7705,0.2943,0.3048,0.9058,0.0,0.3048,0.9524,-0.2943,0.3048,0.9058,-0.5598,0.3048,0.7705,-0.7705,0.3048,0.5598,-0.9058,0.3048,0.2943,-0.9524,0.3048,0.0,-0.9058,0.3048,-0.2943,-0.7705,0.3048,-0.5598,-0.5598,0.3048,-0.7705,-0.2943,0.3048,-0.9058,0.0,0.3048,-0.9524,0.2943,0.3048,-0.9058,0.5598,0.3048,-0.7705,0.7705,0.3048,-0.5598,0.9058,0.3048,-0.2943,0.9524,0.3048,0.0,0.9058,0.3048,0.2943,0.8503,0.448,0.2763,0.7233,0.448,0.5255,0.5255,0.448,0.7233,0.2763,0.448,0.8503,0.0,0.448,0.894,-0.2763,0.448,0.8503,-0.5255,0.448,0.7233,-0.7233,0.448,0.5255,-0.8503,0.448,0.2763,-0.894,0.448,0.0,-0.8503,0.448,-0.2763,-0.7233,0.448,-0.5255,-0.5255,0.448,-0.7233,-0.2763,0.448,-0.8503,0.0,0.448,-0.894,0.2763,0.448,-0.8503,0.5255,0.448,-0.7233,0.7233,0.448,-0.5255,0.8503,0.448,-0.2763,0.894,0.448,0.0,0.8503,0.448,0.2763,0.7745,0.5804,0.2516,0.6588,0.5804,0.4787,0.4787,0.5804,0.6588,0.2516,0.5804,0.7745,0.0,0.5804,0.8143,-0.2516,0.5804,0.7745,-0.4787,0.5804,0.6588,-0.6588,0.5804,0.4787,-0.7745,0.5804,0.2516,-0.8143,0.5804,0.0,-0.7745,0.5804,-0.2516,-0.6588,0.5804,-0.4787,-0.4787,0.5804,-0.6588,-0.2516,0.5804,-0.7745,0.0,0.5804,-0.8143,0.2516,0.5804,-0.7745,0.4787,0.5804,-0.6588,0.6588,0.5804,-0.4787,0.7745,0.5804,-0.2516,0.8143,0.5804,0.0,0.7745,0.5804,0.2516,0.6803,0.6988,0.221,0.5787,0.6988,0.4205,0.4205,0.6988,0.5787,0.221,0.6988,0.6803,0.0,0.6988,0.7153,-0.221,0.6988,0.6803,-0.4205,0.6988,0.5787,-0.5787,0.6988,0.4205,-0.6803,0.6988,0.221,-0.7153,0.6988,0.0,-0.6803,0.6988,-0.221,-0.5787,0.6988,-0.4205,-0.4205,0.6988,-0.5787,-0.221,0.6988,-0.6803,0.0,0.6988,-0.7153,0.221,0.6988,-0.6803,0.4205,0.6988,-0.5787,0.5787,0.6988,-0.4205,0.6803,0.6988,-0.221,0.7153,0.6988,0.0,0.6803,0.6988,0.221,0.5703,0.8003,0.1853,0.4851,0.8003,0.3525,0.3525,0.8003,0.4851,0.1853,0.8003,0.5703,0.0,0.8003,0.5997,-0.1853,0.8003,0.5703,-0.3525,0.8003,0.4851,-0.4851,0.8003,0.3525,-0.5703,0.8003,0.1853,-0.5997,0.8003,0.0,-0.5703,0.8003,-0.1853,-0.4851,0.8003,-0.3525,-0.3525,0.8003,-0.4851,-0.1853,0.8003,-0.5703,0.0,0.8003,-0.5997,0.1853,0.8003,-0.5703,0.3525,0.8003,-0.4851,0.4851,0.8003,-0.3525,0.5703,0.8003,-0.1853,0.5997,0.8003,0.0,0.5703,0.8003,0.1853,0.4477,0.8823,0.1455,0.3808,0.8823,0.2767,0.2767,0.8823,0.3808,0.1455,0.8823,0.4477,0.0,0.8823,0.4708,-0.1455,0.8823,0.4477,-0.2767,0.8823,0.3808,-0.3808,0.8823,0.2767,-0.4477,0.8823,0.1455,-0.4708,0.8823,0.0,-0.4477,0.8823,-0.1455,-0.3808,0.8823,-0.2767,-0.2767,0.8823,-0.3808,-0.1455,0.8823,-0.4477,0.0,0.8823,-0.4708,0.1455,0.8823,-0.4477,0.2767,0.8823,-0.3808,0.3808,0.8823,-0.2767,0.4477,0.8823,-0.1455,0.4708,0.8823,0.0,0.4477,0.8823,0.1455,0.3173,0.9427,0.1031,0.2699,0.9427,0.1961,0.1961,0.9427,0.2699,0.1031,0.9427,0.3173,0.0,0.9427,0.3336,-0.1031,0.9427,0.3173,-0.1961,0.9427,0.2699,-0.2699,0.9427,0.1961,-0.3173,0.9427,0.1031,-0.3336,0.9427,0.0,-0.3173,0.9427,-0.1031,-0.2699,0.9427,-0.1961,-0.1961,0.9427,-0.2699,-0.1031,0.9427,-0.3173,0.0,0.9427,-0.3336,0.1031,0.9427,-0.3173,0.1961,0.9427,-0.2699,0.2699,0.9427,-0.1961,0.3173,0.9427,-0.1031,0.3336,0.9427,0.0,0.3173,0.9427,0.1031,0.1906,0.9797,0.0619,0.1621,0.9797,0.1178,0.1178,0.9797,0.1621,0.0619,0.9797,0.1906,0.0,0.9797,0.2004,-0.0619,0.9797,0.1906,-0.1178,0.9797,0.1621,-0.1621,0.9797,0.1178,-0.1906,0.9797,0.0619,-0.2004,0.9797,0.0,-0.1906,0.9797,-0.0619,-0.1621,0.9797,-0.1178,-0.1178,0.9797,-0.1621,-0.0619,0.9797,-0.1906,0.0,0.9797,-0.2004,0.0619,0.9797,-0.1906,0.1178,0.9797,-0.1621,0.1621,0.9797,-0.1178,0.1906,0.9797,-0.0619,0.2004,0.9797,0.0,0.1906,0.9797,0.0619,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0],"tangents":[-0.4482,-0.0307,0.8934,-1.0,-0.5629,0.0062,0.8265,-1.0,-0.438,-0.0493,0.8976,-1.0,-0.5878,0.0,0.809,-1.0,-0.7908,0.0062,0.6121,-1.0,-0.809,0.0,0.5878,-1.0,-0.9412,0.0062,0.3378,-1.0,-0.9511,0.0,0.309,-1.0,-0.9995,0.0062,0.0304,-1.0,-1.0,0.0,0.0,-1.0,-0.96,0.0062,-0.28,-1.0,-0.9511,0.0,-0.309,-1.0,-0.8265,0.0062,-0.5629,-1.0,-0.809,0.0,-0.5878,-1.0,-0.6121,0.0062,-0.7908,-1.0,-0.5878,0.0,-0.809,-1.0,-0.3378,0.0062,-0.9412,-1.0,-0.309,0.0,-0.9511,-1.0,-0.0304,0.0062,-0.9995,-1.0,0.0,0.0,-1.0,-1.0,0.28,0.0062,-0.96,-1.0,0.309,0.0,-0.9511,-1.0,0.5629,0.0062,-0.8265,-1.0,0.5878,0.0,-0.809,-1.0,0.7908,0.0062,-0.6121,-1.0,0.809,0.0,-0.5878,-1.0,0.9412,0.0062,-0.3378,-1.0,0.9511,0.0,-0.309,-1.0,0.9995,0.0062,-0.0304,-1.0,1.0,0.0,0.0,-1.0,0.96,0.0062,0.28,-1.0,0.9511,0.0,0.309,-1.0,0.8265,0.0062,0.5629,-1.0,0.809,0.0,0.5878,-1.0,0.6121,0.0062,0.7908,-1.0,0.5878,0.0,0.809,-1.0,0.3378,0.0062,0.9412,-1.0,0.309,0.0,0.9511,-1.0,0.0304,0.0062,0.9995,-1.0,0.0,0.0,1.0,-1.0,-0.1625,0.0307,0.9862,-1.0,-0.1732,0.0493,0.9836,-1.0,-0.4222,-0.0651,0.9042,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.1899,0.0651,0.9796,-1.0,-0.4023,-0.0754,0.9124,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.2109,0.0754,0.9746,-1.0,-0.3802,-0.0787,0.9215,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.234,0.0787,0.969,-1.0,-0.3582,-0.0745,0.9306,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.2572,0.0745,0.9635,-1.0,-0.3384,-0.0633,0.9389,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.2781,0.0633,0.9585,-1.0,-0.3226,-0.0459,0.9454,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.2947,0.0459,0.9545,-1.0,-0.3125,-0.0241,0.9496,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.3053,0.0241,0.9519,-1.0,-0.309,0.0,0.9511,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.309,0.0,0.9511,-1.0,-0.3125,0.0241,0.9496,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.3053,-0.0241,0.9519,-1.0,-0.3226,0.0459,0.9454,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.2947,-0.0459,0.9545,-1.0,-0.3384,0.0633,0.9389,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.2781,-0.0633,0.9585,-1.0,-0.3582,0.0745,0.9306,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.2572,-0.0745,0.9635,-1.0,-0.3802,0.0787,0.9215,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.234,-0.0787,0.969,-1.0,-0.4023,0.0754,0.9124,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.2109,-0.0754,0.9746,-1.0,-0.4222,0.0651,0.9042,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.1899,-0.0651,0.9796,-1.0,-0.438,0.0493,0.8976,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.1732,-0.0493,0.9836,-1.0,-0.4482,0.0307,0.8934,-1.0,-0.6121,0.0062,0.7908,-1.0,-0.8265,0.0062,0.5629,-1.0,-0.96,0.0062,0.28,-1.0,-0.9995,0.0062,-0.0304,-1.0,-0.9412,0.0062,-0.3378,-1.0,-0.7908,0.0062,-0.6121,-1.0,-0.5629,0.0062,-0.8265,-1.0,-0.28,0.0062,-0.96,-1.0,0.0304,0.0062,-0.9995,-1.0,0.3378,0.0062,-0.9412,-1.0,0.6121,0.0062,-0.7908,-1.0,0.8265,0.0062,-0.5629,-1.0,0.96,0.0062,-0.28,-1.0,0.9995,0.0062,0.0304,-1.0,0.9412,0.0062,0.3378,-1.0,0.7908,0.0062,0.6121,-1.0,0.5629,0.0062,0.8265,-1.0,0.28,0.0062,0.96,-1.0,-0.0304,0.0062,0.9995,-1.0,-0.1625,-0.0307,0.9862,-1.0,-0.454,0.0,0.891,-1.0,-0.7071,0.0,0.7071,-1.0,-0.891,0.0,0.454,-1.0,-0.9877,0.0,0.1564,-1.0,-0.9877,0.0,-0.1564,-1.0,-0.891,0.0,-0.454,-1.0,-0.7071,0.0,-0.7071,-1.0,-0.454,0.0,-0.891,-1.0,-0.1564,0.0,-0.9877,-1.0,0.1564,0.0,-0.9877,-1.0,0.454,0.0,-0.891,-1.0,0.7071,0.0,-0.7071,-1.0,0.891,0.0,-0.454,-1.0,0.9877,0.0,-0.1564,-1.0,0.9877,0.0,0.1564,-1.0,0.891,0.0,0.454,-1.0,0.7071,0.0,0.7071,-1.0,0.454,0.0,0.891,-1.0,0.1564,0.0,0.9877,-1.0,-0.1564,0.0,0.9877,-1.0,-0.454,0.0,0.891,-1.0,-0.7071,0.0,0.7071,-1.0,-0.891,0.0,0.454,-1.0,-0.9877,0.0,0.1564,-1.0,-0.9877,0.0,-0.1564,-1.0,-0.891,0.0,-0.454,-1.0,-0.7071,0.0,-0.7071,-1.0,-0.454,0.0,-0.891,-1.0,-0.1564,0.0,-0.9877,-1.0,0.1564,0.0,-0.9877,-1.0,0.454,0.0,-0.891,-1.0,0.7071,0.0,-0.7071,-1.0,0.891,0.0,-0.454,-1.0,0.9877,0.0,-0.1564,-1.0,0.9877,0.0,0.1564,-1.0,0.891,0.0,0.454,-1.0,0.7071,0.0,0.7071,-1.0,0.454,0.0,0.891,-1.0,0.1564,0.0,0.9877,-1.0,-0.1564,0.0,0.9877,-1.0],"uvs":[0.0,0.05,0.05,0.05,0.0,0.1,0.05,0.1,0.1,0.05,0.1,0.1,0.15,0.05,0.15,0.1,0.2,0.05,0.2,0.1,0.25,0.05,0.25,0.1,0.3,0.05,0.3,0.1,0.35,0.05,0.35,0.1,0.4,0.05,0.4,0.1,0.45,0.05,0.45,0.1,0.5,0.05,0.5,0.1,0.55,0.05,0.55,0.1,0.6,0.05,0.6,0.1,0.65,0.05,0.65,0.1,0.7,0.05,0.7,0.1,0.75,0.05,0.75,0.1,0.8,0.05,0.8,0.1,0.85,0.05,0.85,0.1,0.9,0.05,0.9,0.1,0.95,0.05,0.95,0.1,1.0,0.05,1.0,0.1,0.0,0.15,0.05,0.15,0.1,0.15,0.15,0.15,0.2,0.15,0.25,0.15,0.3,0.15,0.35,0.15,0.4,0.15,0.45,0.15,0.5,0.15,0.55,0.15,0.6,0.15,0.65,0.15,0.7,0.15,0.75,0.15,0.8,0.15,0.85,0.15,0.9,0.15,0.95,0.15,1.0,0.15,0.0,0.2,0.05,0.2,0.1,0.2,0.15,0.2,0.2,0.2,0.25,0.2,0.3,0.2,0.35,0.2,0.4,0.2,0.45,0.2,0.5,0.2,0.55,0.2,0.6,0.2,0.65,0.2,0.7,0.2,0.75,0.2,0.8,0.2,0.85,0.2,0.9,0.2,0.95,0.2,1.0,0.2,0.0,0.25,0.05,0.25,0.1,0.25,0.15,0.25,0.2,0.25,0.25,0.25,0.3,0.25,0.35,0.25,0.4,0.25,0.45,0.25,0.5,0.25,0.55,0.25,0.6,0.25,0.65,0.25,0.7,0.25,0.75,0.25,0.8,0.25,0.85,0.25,0.9,0.25,0.95,0.25,1.0,0.25,0.0,0.3,0.05,0.3,0.1,0.3,0.15,0.3,0.2,0.3,0.25,0.3,0.3,0.3,0.35,0.3,0.4,0.3,0.45,0.3,0.5,0.3,0.55,0.3,0.6,0.3,0.65,0.3,0.7,0.3,0.75,0.3,0.8,0.3,0.85,0.3,0.9,0.3,0.95,0.3,1.0,0.3,0.0,0.35,0.05,0.35,0.1,0.35,0.15,0.35,0.2,0.35,0.25,0.35,0.3,0.35,0.35,0.35,0.4,0.35,0.45,0.35,0.5,0.35,0.55,0.35,0.6,0.35,0.65,0.35,0.7,0.35,0.75,0.35,0.8,0.35,0.85,0.35,0.9,0.35,0.95,0.35,1.0,0.35,0.0,0.4,0.05,0.4,0.1,0.4,0.15,0.4,0.2,0.4,0.25,0.4,0.3,0.4,0.35,0.4,0.4,0.4,0.45,0.4,0.5,0.4,0.55,0.4,0.6,0.4,0.65,0.4,0.7,0.4,0.75,0.4,0.8,0.4,0.85,0.4,0.9,0.4,0.95,0.4,1.0,0.4,0.0,0.45,0.05,0.45,0.1,0.45,0.15,0.45,0.2,0.45,0.25,0.45,0.3,0.45,0.35,0.45,0.4,0.45,0.45,0.45,0.5,0.45,0.55,0.45,0.6,0.45,0.65,0.45,0.7,0.45,0.75,0.45,0.8,0.45,0.85,0.45,0.9,0.45,0.95,0.45,1.0,0.45,0.0,0.5,0.05,0.5,0.1,0.5,0.15,0.5,0.2,0.5,0.25,0.5,0.3,0.5,0.35,0.5,0.4,0.5,0.45,0.5,0.5,0.5,0.55,0.5,0.6,0.5,0.65,0.5,0.7,0.5,0.75,0.5,0.8,0.5,0.85,0.5,0.9,0.5,0.95,0.5,1.0,0.5,0.0,0.55,0.05,0.55,0.1,0.55,0.15,0.55,0.2,0.55,0.25,0.55,0.3,0.55,0.35,0.55,0.4,0.55,0.45,0.55,0.5,0.55,0.55,0.55,0.6,0.55,0.65,0.55,0.7,0.55,0.75,0.55,0.8,0.55,0.85,0.55,0.9,0.55,0.95,0.55,1.0,0.55,0.0,0.6,0.05,0.6,0.1,0.6,0.15,0.6,0.2,0.6,0.25,0.6,0.3,0.6,0.35,0.6,0.4,0.6,0.45,0.6,0.5,0.6,0.55,0.6,0.6,0.6,0.65,0.6,0.7,0.6,0.75,0.6,0.8,0.6,0.85,0.6,0.9,0.6,0.95,0.6,1.0,0.6,0.0,0.65,0.05,0.65,0.1,0.65,0.15,0.65,0.2,0.65,0.25,0.65,0.3,0.65,0.35,0.65,0.4,0.65,0.45,0.65,0.5,0.65,0.55,0.65,0.6,0.65,0.65,0.65,0.7,0.65,0.75,0.65,0.8,0.65,0.85,0.65,0.9,0.65,0.95,0.65,1.0,0.65,0.0,0.7,0.05,0.7,0.1,0.7,0.15,0.7,0.2,0.7,0.25,0.7,0.3,0.7,0.35,0.7,0.4,0.7,0.45,0.7,0.5,0.7,0.55,0.7,0.6,0.7,0.65,0.7,0.7,0.7,0.75,0.7,0.8,0.7,0.85,0.7,0.9,0.7,0.95,0.7,1.0,0.7,0.0,0.75,0.05,0.75,0.1,0.75,0.15,0.75,0.2,0.75,0.25,0.75,0.3,0.75,0.35,0.75,0.4,0.75,0.45,0.75,0.5,0.75,0.55,0.75,0.6,0.75,0.65,0.75,0.7,0.75,0.75,0.75,0.8,0.75,0.85,0.75,0.9,0.75,0.95,0.75,1.0,0.75,0.0,0.8,0.05,0.8,0.1,0.8,0.15,0.8,0.2,0.8,0.25,0.8,0.3,0.8,0.35,0.8,0.4,0.8,0.45,0.8,0.5,0.8,0.55,0.8,0.6,0.8,0.65,0.8,0.7,0.8,0.75,0.8,0.8,0.8,0.85,0.8,0.9,0.8,0.95,0.8,1.0,0.8,0.0,0.85,0.05,0.85,0.1,0.85,0.15,0.85,0.2,0.85,0.25,0.85,0.3,0.85,0.35,0.85,0.4,0.85,0.45,0.85,0.5,0.85,0.55,0.85,0.6,0.85,0.65,0.85,0.7,0.85,0.75,0.85,0.8,0.85,0.85,0.85,0.9,0.85,0.95,0.85,1.0,0.85,0.0,0.9,0.05,0.9,0.1,0.9,0.15,0.9,0.2,0.9,0.25,0.9,0.3,0.9,0.35,0.9,0.4,0.9,0.45,0.9,0.5,0.9,0.55,0.9,0.6,0.9,0.65,0.9,0.7,0.9,0.75,0.9,0.8,0.9,0.85,0.9,0.9,0.9,0.95,0.9,1.0,0.9,0.0,0.95,0.05,0.95,0.1,0.95,0.15,0.95,0.2,0.95,0.25,0.95,0.3,0.95,0.35,0.95,0.4,0.95,0.45,0.95,0.5,0.95,0.55,0.95,0.6,0.95,0.65,0.95,0.7,0.95,0.75,0.95,0.8,0.95,0.85,0.95,0.9,0.95,0.95,0.95,1.0,0.95,0.025,0.0,0.075,0.0,0.125,0.0,0.175,0.0,0.225,0.0,0.275,0.0,0.325,0.0,0.375,0.0,0.425,0.0,0.475,0.0,0.525,0.0,0.575,0.0,0.625,0.0,0.675,0.0,0.725,0.0,0.775,0.0,0.825,0.0,0.875,0.0,0.925,0.0,0.975,0.0,0.025,1.0,0.075,1.0,0.125,1.0,0.175,1.0,0.225,1.0,0.275,1.0,0.325,1.0,0.375,1.0,0.425,1.0,0.475,1.0,0.525,1.0,0.575,1.0,0.625,1.0,0.675,1.0,0.725,1.0,0.775,1.0,0.825,1.0,0.875,1.0,0.925,1.0,0.975,1.0],"uvs2":null,"colors":null,"hasVertexAlpha":false,"matricesIndices":null,"matricesWeights":null,"matricesIndicesExtra":null,"matricesWeightsExtra":null,"indices":[0,1,2,2,1,3,1,4,3,3,4,5,4,6,5,5,6,7,6,8,7,7,8,9,8,10,9,9,10,11,10,12,11,11,12,13,12,14,13,13,14,15,14,16,15,15,16,17,16,18,17,17,18,19,18,20,19,19,20,21,20,22,21,21,22,23,22,24,23,23,24,25,24,26,25,25,26,27,26,28,27,27,28,29,28,30,29,29,30,31,30,32,31,31,32,33,32,34,33,33,34,35,34,36,35,35,36,37,36,38,37,37,38,39,38,40,39,39,40,41,2,3,42,42,3,43,3,5,43,43,5,44,5,7,44,44,7,45,7,9,45,45,9,46,9,11,46,46,11,47,11,13,47,47,13,48,13,15,48,48,15,49,15,17,49,49,17,50,17,19,50,50,19,51,19,21,51,51,21,52,21,23,52,52,23,53,23,25,53,53,25,54,25,27,54,54,27,55,27,29,55,55,29,56,29,31,56,56,31,57,31,33,57,57,33,58,33,35,58,58,35,59,35,37,59,59,37,60,37,39,60,60,39,61,39,41,61,61,41,62,42,43,63,63,43,64,43,44,64,64,44,65,44,45,65,65,45,66,45,46,66,66,46,67,46,47,67,67,47,68,47,48,68,68,48,69,48,49,69,69,49,70,49,50,70,70,50,71,50,51,71,71,51,72,51,52,72,72,52,73,52,53,73,73,53,74,53,54,74,74,54,75,54,55,75,75,55,76,55,56,76,76,56,77,56,57,77,77,57,78,57,58,78,78,58,79,58,59,79,79,59,80,59,60,80,80,60,81,60,61,81,81,61,82,61,62,82,82,62,83,63,64,84,84,64,85,64,65,85,85,65,86,65,66,86,86,66,87,66,67,87,87,67,88,67,68,88,88,68,89,68,69,89,89,69,90,69,70,90,90,70,91,70,71,91,91,71,92,71,72,92,92,72,93,72,73,93,93,73,94,73,74,94,94,74,95,74,75,95,95,75,96,75,76,96,96,76,97,76,77,97,97,77,98,77,78,98,98,78,99,78,79,99,99,79,100,79,80,100,100,80,101,80,81,101,101,81,102,81,82,102,102,82,103,82,83,103,103,83,104,84,85,105,105,85,106,85,86,106,106,86,107,86,87,107,107,87,108,87,88,108,108,88,109,88,89,109,109,89,110,89,90,110,110,90,111,90,91,111,111,91,112,91,92,112,112,92,113,92,93,113,113,93,114,93,94,114,114,94,115,94,95,115,115,95,116,95,96,116,116,96,117,96,97,117,117,97,118,97,98,118,118,98,119,98,99,119,119,99,120,99,100,120,120,100,121,100,101,121,121,101,122,101,102,122,122,102,123,102,103,123,123,103,124,103,104,124,124,104,125,105,106,126,126,106,127,106,107,127,127,107,128,107,108,128,128,108,129,108,109,129,129,109,130,109,110,130,130,110,131,110,111,131,131,111,132,111,112,132,132,112,133,112,113,133,133,113,134,113,114,134,134,114,135,114,115,135,135,115,136,115,116,136,136,116,137,116,117,137,137,117,138,117,118,138,138,118,139,118,119,139,139,119,140,119,120,140,140,120,141,120,121,141,141,121,142,121,122,142,142,122,143,122,123,143,143,123,144,123,124,144,144,124,145,124,125,145,145,125,146,126,127,147,147,127,148,127,128,148,148,128,149,128,129,149,149,129,150,129,130,150,150,130,151,130,131,151,151,131,152,131,132,152,152,132,153,132,133,153,153,133,154,133,134,154,154,134,155,134,135,155,155,135,156,135,136,156,156,136,157,136,137,157,157,137,158,137,138,158,158,138,159,138,139,159,159,139,160,139,140,160,160,140,161,140,141,161,161,141,162,141,142,162,162,142,163,142,143,163,163,143,164,143,144,164,164,144,165,144,145,165,165,145,166,145,146,166,166,146,167,147,148,168,168,148,169,148,149,169,169,149,170,149,150,170,170,150,171,150,151,171,171,151,172,151,152,172,172,152,173,152,153,173,173,153,174,153,154,174,174,154,175,154,155,175,175,155,176,155,156,176,176,156,177,156,157,177,177,157,178,157,158,178,178,158,179,158,159,179,179,159,180,159,160,180,180,160,181,160,161,181,181,161,182,161,162,182,182,162,183,162,163,183,183,163,184,163,164,184,184,164,185,164,165,185,185,165,186,165,166,186,186,166,187,166,167,187,187,167,188,168,169,189,189,169,190,169,170,190,190,170,191,170,171,191,191,171,192,171,172,192,192,172,193,172,173,193,193,173,194,173,174,194,194,174,195,174,175,195,195,175,196,175,176,196,196,176,197,176,177,197,197,177,198,177,178,198,198,178,199,178,179,199,199,179,200,179,180,200,200,180,201,180,181,201,201,181,202,181,182,202,202,182,203,182,183,203,203,183,204,183,184,204,204,184,205,184,185,205,205,185,206,185,186,206,206,186,207,186,187,207,207,187,208,187,188,208,208,188,209,189,190,210,210,190,211,190,191,211,211,191,212,191,192,212,212,192,213,192,193,213,213,193,214,193,194,214,214,194,215,194,195,215,215,195,216,195,196,216,216,196,217,196,197,217,217,197,218,197,198,218,218,198,219,198,199,219,219,199,220,199,200,220,220,200,221,200,201,221,221,201,222,201,202,222,222,202,223,202,203,223,223,203,224,203,204,224,224,204,225,204,205,225,225,205,226,205,206,226,226,206,227,206,207,227,227,207,228,207,208,228,228,208,229,208,209,229,229,209,230,210,211,231,231,211,232,211,212,232,232,212,233,212,213,233,233,213,234,213,214,234,234,214,235,214,215,235,235,215,236,215,216,236,236,216,237,216,217,237,237,217,238,217,218,238,238,218,239,218,219,239,239,219,240,219,220,240,240,220,241,220,221,241,241,221,242,221,222,242,242,222,243,222,223,243,243,223,244,223,224,244,244,224,245,224,225,245,245,225,246,225,226,246,246,226,247,226,227,247,247,227,248,227,228,248,248,228,249,228,229,249,249,229,250,229,230,250,250,230,251,231,232,252,252,232,253,232,233,253,253,233,254,233,234,254,254,234,255,234,235,255,255,235,256,235,236,256,256,236,257,236,237,257,257,237,258,237,238,258,258,238,259,238,239,259,259,239,260,239,240,260,260,240,261,240,241,261,261,241,262,241,242,262,262,242,263,242,243,263,263,243,264,243,244,264,264,244,265,244,245,265,265,245,266,245,246,266,266,246,267,246,247,267,267,247,268,247,248,268,268,248,269,248,249,269,269,249,270,249,250,270,270,250,271,250,251,271,271,251,272,252,253,273,273,253,274,253,254,274,274,254,275,254,255,275,275,255,276,255,256,276,276,256,277,256,257,277,277,257,278,257,258,278,278,258,279,258,259,279,279,259,280,259,260,280,280,260,281,260,261,281,281,261,282,261,262,282,282,262,283,262,263,283,283,263,284,263,264,284,284,264,285,264,265,285,285,265,286,265,266,286,286,266,287,266,267,287,287,267,288,267,268,288,288,268,289,268,269,289,289,269,290,269,270,290,290,270,291,270,271,291,291,271,292,271,272,292,292,272,293,273,274,294,294,274,295,274,275,295,295,275,296,275,276,296,296,276,297,276,277,297,297,277,298,277,278,298,298,278,299,278,279,299,299,279,300,279,280,300,300,280,301,280,281,301,301,281,302,281,282,302,302,282,303,282,283,303,303,283,304,283,284,304,304,284,305,284,285,305,305,285,306,285,286,306,306,286,307,286,287,307,307,287,308,287,288,308,308,288,309,288,289,309,309,289,310,289,290,310,310,290,311,290,291,311,311,291,312,291,292,312,312,292,313,292,293,313,313,293,314,294,295,315,315,295,316,295,296,316,316,296,317,296,297,317,317,297,318,297,298,318,318,298,319,298,299,319,319,299,320,299,300,320,320,300,321,300,301,321,321,301,322,301,302,322,322,302,323,302,303,323,323,303,324,303,304,324,324,304,325,304,305,325,325,305,326,305,306,326,326,306,327,306,307,327,327,307,328,307,308,328,328,308,329,308,309,329,329,309,330,309,310,330,330,310,331,310,311,331,331,311,332,311,312,332,332,312,333,312,313,333,333,313,334,313,314,334,334,314,335,315,316,336,336,316,337,316,317,337,337,317,338,317,318,338,338,318,339,318,319,339,339,319,340,319,320,340,340,320,341,320,321,341,341,321,342,321,322,342,342,322,343,322,323,343,343,323,344,323,324,344,344,324,345,324,325,345,345,325,346,325,326,346,346,326,347,326,327,347,347,327,348,327,328,348,348,328,349,328,329,349,349,329,350,329,330,350,350,330,351,330,331,351,351,331,352,331,332,352,352,332,353,332,333,353,353,333,354,333,334,354,354,334,355,334,335,355,355,335,356,336,337,357,357,337,358,337,338,358,358,338,359,338,339,359,359,339,360,339,340,360,360,340,361,340,341,361,361,341,362,341,342,362,362,342,363,342,343,363,363,343,364,343,344,364,364,344,365,344,345,365,365,345,366,345,346,366,366,346,367,346,347,367,367,347,368,347,348,368,368,348,369,348,349,369,369,349,370,349,350,370,370,350,371,350,351,371,371,351,372,351,352,372,372,352,373,352,353,373,373,353,374,353,354,374,374,354,375,354,355,375,375,355,376,355,356,376,376,356,377,357,358,378,378,358,379,358,359,379,379,359,380,359,360,380,380,360,381,360,361,381,381,361,382,361,362,382,382,362,383,362,363,383,383,363,384,363,364,384,384,364,385,364,365,385,385,365,386,365,366,386,386,366,387,366,367,387,387,367,388,367,368,388,388,368,389,368,369,389,389,369,390,369,370,390,390,370,391,370,371,391,391,371,392,371,372,392,392,372,393,372,373,393,393,373,394,373,374,394,394,374,395,374,375,395,395,375,396,375,376,396,396,376,397,376,377,397,397,377,398,1,0,399,4,1,400,6,4,401,8,6,402,10,8,403,12,10,404,14,12,405,16,14,406,18,16,407,20,18,408,22,20,409,24,22,410,26,24,411,28,26,412,30,28,413,32,30,414,34,32,415,36,34,416,38,36,417,40,38,418,378,379,419,379,380,420,380,381,421,381,382,422,382,383,423,383,384,424,384,385,425,385,386,426,386,387,427,387,388,428,388,389,429,389,390,430,390,391,431,391,392,432,392,393,433,393,394,434,394,395,435,395,396,436,396,397,437,397,398,438],"receiveShadows":false,"infiniteDistance":false,"billboardMode":0,"visibility":1.0,"subMeshes":[{"materialIndex":0,"verticesStart":0,"verticesCount":439,"indexStart":0,"indexCount":2280}],"instances":null,"skeletonId":-1,"numBoneInfluencers":4,"applyFog":false,"metadata":null,"lodMeshIds":null,"lodDistances":null,"lodCoverages":null,"rotation":null,"scaling":[1.0,1.0,1.0],"rotationQuaternion":[0.0,0.0,0.0,1.0],"actions":null,"checkCollisions":false,"pickable":true,"showBoundingBox":false,"showSubMeshesBoundingBox":false,"alphaIndex":0,"physicsImpostor":0,"physicsMass":0.0,"physicsFriction":0.0,"physicsRestitution":0.0,"name":"pSphere2","id":"AAE56DAE-40BF-882A-5CE8-0AB477E46CDB","parentId":null,"position":[3.0,0.0,0.0],"animations":[],"autoAnimate":true,"autoAnimateFrom":1,"autoAnimateTo":200,"autoAnimateLoop":true},{"materialId":"79CDF1A6-4409-889B-46A9-43A586C10D94","isEnabled":true,"isVisible":true,"positions":[0.1488,-0.9877,0.0483,0.1266,-0.9877,0.0919,0.2939,-0.9511,0.0955,0.25,-0.9511,0.1816,0.0919,-0.9877,0.1266,0.1816,-0.9511,0.25,0.0483,-0.9877,0.1488,0.0955,-0.9511,0.2939,0.0,-0.9877,0.1564,0.0,-0.9511,0.309,-0.0483,-0.9877,0.1488,-0.0955,-0.9511,0.2939,-0.0919,-0.9877,0.1266,-0.1816,-0.9511,0.25,-0.1266,-0.9877,0.0919,-0.25,-0.9511,0.1816,-0.1488,-0.9877,0.0483,-0.2939,-0.9511,0.0955,-0.1564,-0.9877,0.0,-0.309,-0.9511,0.0,-0.1488,-0.9877,-0.0483,-0.2939,-0.9511,-0.0955,-0.1266,-0.9877,-0.0919,-0.25,-0.9511,-0.1816,-0.0919,-0.9877,-0.1266,-0.1816,-0.9511,-0.25,-0.0483,-0.9877,-0.1488,-0.0955,-0.9511,-0.2939,0.0,-0.9877,-0.1564,0.0,-0.9511,-0.309,0.0483,-0.9877,-0.1488,0.0955,-0.9511,-0.2939,0.0919,-0.9877,-0.1266,0.1816,-0.9511,-0.25,0.1266,-0.9877,-0.0919,0.25,-0.9511,-0.1816,0.1488,-0.9877,-0.0483,0.2939,-0.9511,-0.0955,0.1564,-0.9877,0.0,0.309,-0.9511,0.0,0.1488,-0.9877,0.0483,0.2939,-0.9511,0.0955,0.4318,-0.891,0.1403,0.3673,-0.891,0.2668,0.2668,-0.891,0.3673,0.1403,-0.891,0.4318,0.0,-0.891,0.454,-0.1403,-0.891,0.4318,-0.2668,-0.891,0.3673,-0.3673,-0.891,0.2668,-0.4318,-0.891,0.1403,-0.454,-0.891,0.0,-0.4318,-0.891,-0.1403,-0.3673,-0.891,-0.2668,-0.2668,-0.891,-0.3673,-0.1403,-0.891,-0.4318,0.0,-0.891,-0.454,0.1403,-0.891,-0.4318,0.2668,-0.891,-0.3673,0.3673,-0.891,-0.2668,0.4318,-0.891,-0.1403,0.454,-0.891,0.0,0.4318,-0.891,0.1403,0.559,-0.809,0.1816,0.4755,-0.809,0.3455,0.3455,-0.809,0.4755,0.1816,-0.809,0.559,0.0,-0.809,0.5878,-0.1816,-0.809,0.559,-0.3455,-0.809,0.4755,-0.4755,-0.809,0.3455,-0.559,-0.809,0.1816,-0.5878,-0.809,0.0,-0.559,-0.809,-0.1816,-0.4755,-0.809,-0.3455,-0.3455,-0.809,-0.4755,-0.1816,-0.809,-0.559,0.0,-0.809,-0.5878,0.1816,-0.809,-0.559,0.3455,-0.809,-0.4755,0.4755,-0.809,-0.3455,0.559,-0.809,-0.1816,0.5878,-0.809,0.0,0.559,-0.809,0.1816,0.6725,-0.7071,0.2185,0.5721,-0.7071,0.4156,0.4156,-0.7071,0.5721,0.2185,-0.7071,0.6725,0.0,-0.7071,0.7071,-0.2185,-0.7071,0.6725,-0.4156,-0.7071,0.5721,-0.5721,-0.7071,0.4156,-0.6725,-0.7071,0.2185,-0.7071,-0.7071,0.0,-0.6725,-0.7071,-0.2185,-0.5721,-0.7071,-0.4156,-0.4156,-0.7071,-0.5721,-0.2185,-0.7071,-0.6725,0.0,-0.7071,-0.7071,0.2185,-0.7071,-0.6725,0.4156,-0.7071,-0.5721,0.5721,-0.7071,-0.4156,0.6725,-0.7071,-0.2185,0.7071,-0.7071,0.0,0.6725,-0.7071,0.2185,0.7694,-0.5878,0.25,0.6545,-0.5878,0.4755,0.4755,-0.5878,0.6545,0.25,-0.5878,0.7694,0.0,-0.5878,0.809,-0.25,-0.5878,0.7694,-0.4755,-0.5878,0.6545,-0.6545,-0.5878,0.4755,-0.7694,-0.5878,0.25,-0.809,-0.5878,0.0,-0.7694,-0.5878,-0.25,-0.6545,-0.5878,-0.4755,-0.4755,-0.5878,-0.6545,-0.25,-0.5878,-0.7694,0.0,-0.5878,-0.809,0.25,-0.5878,-0.7694,0.4755,-0.5878,-0.6545,0.6545,-0.5878,-0.4755,0.7694,-0.5878,-0.25,0.809,-0.5878,0.0,0.7694,-0.5878,0.25,0.8474,-0.454,0.2753,0.7208,-0.454,0.5237,0.5237,-0.454,0.7208,0.2753,-0.454,0.8474,0.0,-0.454,0.891,-0.2753,-0.454,0.8474,-0.5237,-0.454,0.7208,-0.7208,-0.454,0.5237,-0.8474,-0.454,0.2753,-0.891,-0.454,0.0,-0.8474,-0.454,-0.2753,-0.7208,-0.454,-0.5237,-0.5237,-0.454,-0.7208,-0.2753,-0.454,-0.8474,0.0,-0.454,-0.891,0.2753,-0.454,-0.8474,0.5237,-0.454,-0.7208,0.7208,-0.454,-0.5237,0.8474,-0.454,-0.2753,0.891,-0.454,0.0,0.8474,-0.454,0.2753,0.9045,-0.309,0.2939,0.7694,-0.309,0.559,0.559,-0.309,0.7694,0.2939,-0.309,0.9045,0.0,-0.309,0.9511,-0.2939,-0.309,0.9045,-0.559,-0.309,0.7694,-0.7694,-0.309,0.559,-0.9045,-0.309,0.2939,-0.9511,-0.309,0.0,-0.9045,-0.309,-0.2939,-0.7694,-0.309,-0.559,-0.559,-0.309,-0.7694,-0.2939,-0.309,-0.9045,0.0,-0.309,-0.9511,0.2939,-0.309,-0.9045,0.559,-0.309,-0.7694,0.7694,-0.309,-0.559,0.9045,-0.309,-0.2939,0.9511,-0.309,0.0,0.9045,-0.309,0.2939,0.9393,-0.1564,0.3052,0.7991,-0.1564,0.5805,0.5805,-0.1564,0.7991,0.3052,-0.1564,0.9393,0.0,-0.1564,0.9877,-0.3052,-0.1564,0.9393,-0.5805,-0.1564,0.7991,-0.7991,-0.1564,0.5805,-0.9393,-0.1564,0.3052,-0.9877,-0.1564,0.0,-0.9393,-0.1564,-0.3052,-0.7991,-0.1564,-0.5805,-0.5805,-0.1564,-0.7991,-0.3052,-0.1564,-0.9393,0.0,-0.1564,-0.9877,0.3052,-0.1564,-0.9393,0.5805,-0.1564,-0.7991,0.7991,-0.1564,-0.5805,0.9393,-0.1564,-0.3052,0.9877,-0.1564,0.0,0.9393,-0.1564,0.3052,0.9511,0.0,0.309,0.809,0.0,0.5878,0.5878,0.0,0.809,0.309,0.0,0.9511,0.0,0.0,1.0,-0.309,0.0,0.9511,-0.5878,0.0,0.809,-0.809,0.0,0.5878,-0.9511,0.0,0.309,-1.0,0.0,0.0,-0.9511,0.0,-0.309,-0.809,0.0,-0.5878,-0.5878,0.0,-0.809,-0.309,0.0,-0.9511,0.0,0.0,-1.0,0.309,0.0,-0.9511,0.5878,0.0,-0.809,0.809,0.0,-0.5878,0.9511,0.0,-0.309,1.0,0.0,0.0,0.9511,0.0,0.309,0.9393,0.1564,0.3052,0.7991,0.1564,0.5805,0.5805,0.1564,0.7991,0.3052,0.1564,0.9393,0.0,0.1564,0.9877,-0.3052,0.1564,0.9393,-0.5805,0.1564,0.7991,-0.7991,0.1564,0.5805,-0.9393,0.1564,0.3052,-0.9877,0.1564,0.0,-0.9393,0.1564,-0.3052,-0.7991,0.1564,-0.5805,-0.5805,0.1564,-0.7991,-0.3052,0.1564,-0.9393,0.0,0.1564,-0.9877,0.3052,0.1564,-0.9393,0.5805,0.1564,-0.7991,0.7991,0.1564,-0.5805,0.9393,0.1564,-0.3052,0.9877,0.1564,0.0,0.9393,0.1564,0.3052,0.9045,0.309,0.2939,0.7694,0.309,0.559,0.559,0.309,0.7694,0.2939,0.309,0.9045,0.0,0.309,0.9511,-0.2939,0.309,0.9045,-0.559,0.309,0.7694,-0.7694,0.309,0.559,-0.9045,0.309,0.2939,-0.9511,0.309,0.0,-0.9045,0.309,-0.2939,-0.7694,0.309,-0.559,-0.559,0.309,-0.7694,-0.2939,0.309,-0.9045,0.0,0.309,-0.9511,0.2939,0.309,-0.9045,0.559,0.309,-0.7694,0.7694,0.309,-0.559,0.9045,0.309,-0.2939,0.9511,0.309,0.0,0.9045,0.309,0.2939,0.8474,0.454,0.2753,0.7208,0.454,0.5237,0.5237,0.454,0.7208,0.2753,0.454,0.8474,0.0,0.454,0.891,-0.2753,0.454,0.8474,-0.5237,0.454,0.7208,-0.7208,0.454,0.5237,-0.8474,0.454,0.2753,-0.891,0.454,0.0,-0.8474,0.454,-0.2753,-0.7208,0.454,-0.5237,-0.5237,0.454,-0.7208,-0.2753,0.454,-0.8474,0.0,0.454,-0.891,0.2753,0.454,-0.8474,0.5237,0.454,-0.7208,0.7208,0.454,-0.5237,0.8474,0.454,-0.2753,0.891,0.454,0.0,0.8474,0.454,0.2753,0.7694,0.5878,0.25,0.6545,0.5878,0.4755,0.4755,0.5878,0.6545,0.25,0.5878,0.7694,0.0,0.5878,0.809,-0.25,0.5878,0.7694,-0.4755,0.5878,0.6545,-0.6545,0.5878,0.4755,-0.7694,0.5878,0.25,-0.809,0.5878,0.0,-0.7694,0.5878,-0.25,-0.6545,0.5878,-0.4755,-0.4755,0.5878,-0.6545,-0.25,0.5878,-0.7694,0.0,0.5878,-0.809,0.25,0.5878,-0.7694,0.4755,0.5878,-0.6545,0.6545,0.5878,-0.4755,0.7694,0.5878,-0.25,0.809,0.5878,0.0,0.7694,0.5878,0.25,0.6725,0.7071,0.2185,0.5721,0.7071,0.4156,0.4156,0.7071,0.5721,0.2185,0.7071,0.6725,0.0,0.7071,0.7071,-0.2185,0.7071,0.6725,-0.4156,0.7071,0.5721,-0.5721,0.7071,0.4156,-0.6725,0.7071,0.2185,-0.7071,0.7071,0.0,-0.6725,0.7071,-0.2185,-0.5721,0.7071,-0.4156,-0.4156,0.7071,-0.5721,-0.2185,0.7071,-0.6725,0.0,0.7071,-0.7071,0.2185,0.7071,-0.6725,0.4156,0.7071,-0.5721,0.5721,0.7071,-0.4156,0.6725,0.7071,-0.2185,0.7071,0.7071,0.0,0.6725,0.7071,0.2185,0.559,0.809,0.1816,0.4755,0.809,0.3455,0.3455,0.809,0.4755,0.1816,0.809,0.559,0.0,0.809,0.5878,-0.1816,0.809,0.559,-0.3455,0.809,0.4755,-0.4755,0.809,0.3455,-0.559,0.809,0.1816,-0.5878,0.809,0.0,-0.559,0.809,-0.1816,-0.4755,0.809,-0.3455,-0.3455,0.809,-0.4755,-0.1816,0.809,-0.559,0.0,0.809,-0.5878,0.1816,0.809,-0.559,0.3455,0.809,-0.4755,0.4755,0.809,-0.3455,0.559,0.809,-0.1816,0.5878,0.809,0.0,0.559,0.809,0.1816,0.4318,0.891,0.1403,0.3673,0.891,0.2668,0.2668,0.891,0.3673,0.1403,0.891,0.4318,0.0,0.891,0.454,-0.1403,0.891,0.4318,-0.2668,0.891,0.3673,-0.3673,0.891,0.2668,-0.4318,0.891,0.1403,-0.454,0.891,0.0,-0.4318,0.891,-0.1403,-0.3673,0.891,-0.2668,-0.2668,0.891,-0.3673,-0.1403,0.891,-0.4318,0.0,0.891,-0.454,0.1403,0.891,-0.4318,0.2668,0.891,-0.3673,0.3673,0.891,-0.2668,0.4318,0.891,-0.1403,0.454,0.891,0.0,0.4318,0.891,0.1403,0.2939,0.9511,0.0955,0.25,0.9511,0.1816,0.1816,0.9511,0.25,0.0955,0.9511,0.2939,0.0,0.9511,0.309,-0.0955,0.9511,0.2939,-0.1816,0.9511,0.25,-0.25,0.9511,0.1816,-0.2939,0.9511,0.0955,-0.309,0.9511,0.0,-0.2939,0.9511,-0.0955,-0.25,0.9511,-0.1816,-0.1816,0.9511,-0.25,-0.0955,0.9511,-0.2939,0.0,0.9511,-0.309,0.0955,0.9511,-0.2939,0.1816,0.9511,-0.25,0.25,0.9511,-0.1816,0.2939,0.9511,-0.0955,0.309,0.9511,0.0,0.2939,0.9511,0.0955,0.1488,0.9877,0.0483,0.1266,0.9877,0.0919,0.0919,0.9877,0.1266,0.0483,0.9877,0.1488,0.0,0.9877,0.1564,-0.0483,0.9877,0.1488,-0.0919,0.9877,0.1266,-0.1266,0.9877,0.0919,-0.1488,0.9877,0.0483,-0.1564,0.9877,0.0,-0.1488,0.9877,-0.0483,-0.1266,0.9877,-0.0919,-0.0919,0.9877,-0.1266,-0.0483,0.9877,-0.1488,0.0,0.9877,-0.1564,0.0483,0.9877,-0.1488,0.0919,0.9877,-0.1266,0.1266,0.9877,-0.0919,0.1488,0.9877,-0.0483,0.1564,0.9877,0.0,0.1488,0.9877,0.0483,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0],"normals":[0.1906,-0.9797,0.0619,0.1621,-0.9797,0.1178,0.3173,-0.9427,0.1031,0.2699,-0.9427,0.1961,0.1178,-0.9797,0.1621,0.1961,-0.9427,0.2699,0.0619,-0.9797,0.1906,0.1031,-0.9427,0.3173,0.0,-0.9797,0.2004,0.0,-0.9427,0.3336,-0.0619,-0.9797,0.1906,-0.1031,-0.9427,0.3173,-0.1178,-0.9797,0.1621,-0.1961,-0.9427,0.2699,-0.1621,-0.9797,0.1178,-0.2699,-0.9427,0.1961,-0.1906,-0.9797,0.0619,-0.3173,-0.9427,0.1031,-0.2004,-0.9797,0.0,-0.3336,-0.9427,0.0,-0.1906,-0.9797,-0.0619,-0.3173,-0.9427,-0.1031,-0.1621,-0.9797,-0.1178,-0.2699,-0.9427,-0.1961,-0.1178,-0.9797,-0.1621,-0.1961,-0.9427,-0.2699,-0.0619,-0.9797,-0.1906,-0.1031,-0.9427,-0.3173,0.0,-0.9797,-0.2004,0.0,-0.9427,-0.3336,0.0619,-0.9797,-0.1906,0.1031,-0.9427,-0.3173,0.1178,-0.9797,-0.1621,0.1961,-0.9427,-0.2699,0.1621,-0.9797,-0.1178,0.2699,-0.9427,-0.1961,0.1906,-0.9797,-0.0619,0.3173,-0.9427,-0.1031,0.2004,-0.9797,0.0,0.3336,-0.9427,0.0,0.1906,-0.9797,0.0619,0.3173,-0.9427,0.1031,0.4477,-0.8823,0.1455,0.3808,-0.8823,0.2767,0.2767,-0.8823,0.3808,0.1455,-0.8823,0.4477,0.0,-0.8823,0.4708,-0.1455,-0.8823,0.4477,-0.2767,-0.8823,0.3808,-0.3808,-0.8823,0.2767,-0.4477,-0.8823,0.1455,-0.4708,-0.8823,0.0,-0.4477,-0.8823,-0.1455,-0.3808,-0.8823,-0.2767,-0.2767,-0.8823,-0.3808,-0.1455,-0.8823,-0.4477,0.0,-0.8823,-0.4708,0.1455,-0.8823,-0.4477,0.2767,-0.8823,-0.3808,0.3808,-0.8823,-0.2767,0.4477,-0.8823,-0.1455,0.4708,-0.8823,0.0,0.4477,-0.8823,0.1455,0.5703,-0.8003,0.1853,0.4851,-0.8003,0.3525,0.3525,-0.8003,0.4851,0.1853,-0.8003,0.5703,0.0,-0.8003,0.5997,-0.1853,-0.8003,0.5703,-0.3525,-0.8003,0.4851,-0.4851,-0.8003,0.3525,-0.5703,-0.8003,0.1853,-0.5997,-0.8003,0.0,-0.5703,-0.8003,-0.1853,-0.4851,-0.8003,-0.3525,-0.3525,-0.8003,-0.4851,-0.1853,-0.8003,-0.5703,0.0,-0.8003,-0.5997,0.1853,-0.8003,-0.5703,0.3525,-0.8003,-0.4851,0.4851,-0.8003,-0.3525,0.5703,-0.8003,-0.1853,0.5997,-0.8003,0.0,0.5703,-0.8003,0.1853,0.6803,-0.6988,0.221,0.5787,-0.6988,0.4205,0.4205,-0.6988,0.5787,0.221,-0.6988,0.6803,0.0,-0.6988,0.7153,-0.221,-0.6988,0.6803,-0.4205,-0.6988,0.5787,-0.5787,-0.6988,0.4205,-0.6803,-0.6988,0.221,-0.7153,-0.6988,0.0,-0.6803,-0.6988,-0.221,-0.5787,-0.6988,-0.4205,-0.4205,-0.6988,-0.5787,-0.221,-0.6988,-0.6803,0.0,-0.6988,-0.7153,0.221,-0.6988,-0.6803,0.4205,-0.6988,-0.5787,0.5787,-0.6988,-0.4205,0.6803,-0.6988,-0.221,0.7153,-0.6988,0.0,0.6803,-0.6988,0.221,0.7745,-0.5804,0.2516,0.6588,-0.5804,0.4787,0.4787,-0.5804,0.6588,0.2516,-0.5804,0.7745,0.0,-0.5804,0.8143,-0.2516,-0.5804,0.7745,-0.4787,-0.5804,0.6588,-0.6588,-0.5804,0.4787,-0.7745,-0.5804,0.2516,-0.8143,-0.5804,0.0,-0.7745,-0.5804,-0.2516,-0.6588,-0.5804,-0.4787,-0.4787,-0.5804,-0.6588,-0.2516,-0.5804,-0.7745,0.0,-0.5804,-0.8143,0.2516,-0.5804,-0.7745,0.4787,-0.5804,-0.6588,0.6588,-0.5804,-0.4787,0.7745,-0.5804,-0.2516,0.8143,-0.5804,0.0,0.7745,-0.5804,0.2516,0.8503,-0.448,0.2763,0.7233,-0.448,0.5255,0.5255,-0.448,0.7233,0.2763,-0.448,0.8503,0.0,-0.448,0.894,-0.2763,-0.448,0.8503,-0.5255,-0.448,0.7233,-0.7233,-0.448,0.5255,-0.8503,-0.448,0.2763,-0.894,-0.448,0.0,-0.8503,-0.448,-0.2763,-0.7233,-0.448,-0.5255,-0.5255,-0.448,-0.7233,-0.2763,-0.448,-0.8503,0.0,-0.448,-0.894,0.2763,-0.448,-0.8503,0.5255,-0.448,-0.7233,0.7233,-0.448,-0.5255,0.8503,-0.448,-0.2763,0.894,-0.448,0.0,0.8503,-0.448,0.2763,0.9058,-0.3048,0.2943,0.7705,-0.3048,0.5598,0.5598,-0.3048,0.7705,0.2943,-0.3048,0.9058,0.0,-0.3048,0.9524,-0.2943,-0.3048,0.9058,-0.5598,-0.3048,0.7705,-0.7705,-0.3048,0.5598,-0.9058,-0.3048,0.2943,-0.9524,-0.3048,0.0,-0.9058,-0.3048,-0.2943,-0.7705,-0.3048,-0.5598,-0.5598,-0.3048,-0.7705,-0.2943,-0.3048,-0.9058,0.0,-0.3048,-0.9524,0.2943,-0.3048,-0.9058,0.5598,-0.3048,-0.7705,0.7705,-0.3048,-0.5598,0.9058,-0.3048,-0.2943,0.9524,-0.3048,0.0,0.9058,-0.3048,0.2943,0.9397,-0.1542,0.3053,0.7993,-0.1542,0.5808,0.5808,-0.1542,0.7993,0.3053,-0.1542,0.9397,0.0,-0.1542,0.988,-0.3053,-0.1542,0.9397,-0.5808,-0.1542,0.7993,-0.7993,-0.1542,0.5808,-0.9397,-0.1542,0.3053,-0.988,-0.1542,0.0,-0.9397,-0.1542,-0.3053,-0.7993,-0.1542,-0.5808,-0.5808,-0.1542,-0.7993,-0.3053,-0.1542,-0.9397,0.0,-0.1542,-0.988,0.3053,-0.1542,-0.9397,0.5808,-0.1542,-0.7993,0.7993,-0.1542,-0.5808,0.9397,-0.1542,-0.3053,0.988,-0.1542,0.0,0.9397,-0.1542,0.3053,0.9511,0.0,0.309,0.809,0.0,0.5878,0.5878,0.0,0.809,0.309,0.0,0.9511,0.0,0.0,1.0,-0.309,0.0,0.9511,-0.5878,0.0,0.809,-0.809,0.0,0.5878,-0.9511,0.0,0.309,-1.0,0.0,0.0,-0.9511,0.0,-0.309,-0.809,0.0,-0.5878,-0.5878,0.0,-0.809,-0.309,0.0,-0.9511,0.0,0.0,-1.0,0.309,0.0,-0.9511,0.5878,0.0,-0.809,0.809,0.0,-0.5878,0.9511,0.0,-0.309,1.0,0.0,0.0,0.9511,0.0,0.309,0.9397,0.1542,0.3053,0.7993,0.1542,0.5808,0.5808,0.1542,0.7993,0.3053,0.1542,0.9397,0.0,0.1542,0.988,-0.3053,0.1542,0.9397,-0.5808,0.1542,0.7993,-0.7993,0.1542,0.5808,-0.9397,0.1542,0.3053,-0.988,0.1542,0.0,-0.9397,0.1542,-0.3053,-0.7993,0.1542,-0.5808,-0.5808,0.1542,-0.7993,-0.3053,0.1542,-0.9397,0.0,0.1542,-0.988,0.3053,0.1542,-0.9397,0.5808,0.1542,-0.7993,0.7993,0.1542,-0.5808,0.9397,0.1542,-0.3053,0.988,0.1542,0.0,0.9397,0.1542,0.3053,0.9058,0.3048,0.2943,0.7705,0.3048,0.5598,0.5598,0.3048,0.7705,0.2943,0.3048,0.9058,0.0,0.3048,0.9524,-0.2943,0.3048,0.9058,-0.5598,0.3048,0.7705,-0.7705,0.3048,0.5598,-0.9058,0.3048,0.2943,-0.9524,0.3048,0.0,-0.9058,0.3048,-0.2943,-0.7705,0.3048,-0.5598,-0.5598,0.3048,-0.7705,-0.2943,0.3048,-0.9058,0.0,0.3048,-0.9524,0.2943,0.3048,-0.9058,0.5598,0.3048,-0.7705,0.7705,0.3048,-0.5598,0.9058,0.3048,-0.2943,0.9524,0.3048,0.0,0.9058,0.3048,0.2943,0.8503,0.448,0.2763,0.7233,0.448,0.5255,0.5255,0.448,0.7233,0.2763,0.448,0.8503,0.0,0.448,0.894,-0.2763,0.448,0.8503,-0.5255,0.448,0.7233,-0.7233,0.448,0.5255,-0.8503,0.448,0.2763,-0.894,0.448,0.0,-0.8503,0.448,-0.2763,-0.7233,0.448,-0.5255,-0.5255,0.448,-0.7233,-0.2763,0.448,-0.8503,0.0,0.448,-0.894,0.2763,0.448,-0.8503,0.5255,0.448,-0.7233,0.7233,0.448,-0.5255,0.8503,0.448,-0.2763,0.894,0.448,0.0,0.8503,0.448,0.2763,0.7745,0.5804,0.2516,0.6588,0.5804,0.4787,0.4787,0.5804,0.6588,0.2516,0.5804,0.7745,0.0,0.5804,0.8143,-0.2516,0.5804,0.7745,-0.4787,0.5804,0.6588,-0.6588,0.5804,0.4787,-0.7745,0.5804,0.2516,-0.8143,0.5804,0.0,-0.7745,0.5804,-0.2516,-0.6588,0.5804,-0.4787,-0.4787,0.5804,-0.6588,-0.2516,0.5804,-0.7745,0.0,0.5804,-0.8143,0.2516,0.5804,-0.7745,0.4787,0.5804,-0.6588,0.6588,0.5804,-0.4787,0.7745,0.5804,-0.2516,0.8143,0.5804,0.0,0.7745,0.5804,0.2516,0.6803,0.6988,0.221,0.5787,0.6988,0.4205,0.4205,0.6988,0.5787,0.221,0.6988,0.6803,0.0,0.6988,0.7153,-0.221,0.6988,0.6803,-0.4205,0.6988,0.5787,-0.5787,0.6988,0.4205,-0.6803,0.6988,0.221,-0.7153,0.6988,0.0,-0.6803,0.6988,-0.221,-0.5787,0.6988,-0.4205,-0.4205,0.6988,-0.5787,-0.221,0.6988,-0.6803,0.0,0.6988,-0.7153,0.221,0.6988,-0.6803,0.4205,0.6988,-0.5787,0.5787,0.6988,-0.4205,0.6803,0.6988,-0.221,0.7153,0.6988,0.0,0.6803,0.6988,0.221,0.5703,0.8003,0.1853,0.4851,0.8003,0.3525,0.3525,0.8003,0.4851,0.1853,0.8003,0.5703,0.0,0.8003,0.5997,-0.1853,0.8003,0.5703,-0.3525,0.8003,0.4851,-0.4851,0.8003,0.3525,-0.5703,0.8003,0.1853,-0.5997,0.8003,0.0,-0.5703,0.8003,-0.1853,-0.4851,0.8003,-0.3525,-0.3525,0.8003,-0.4851,-0.1853,0.8003,-0.5703,0.0,0.8003,-0.5997,0.1853,0.8003,-0.5703,0.3525,0.8003,-0.4851,0.4851,0.8003,-0.3525,0.5703,0.8003,-0.1853,0.5997,0.8003,0.0,0.5703,0.8003,0.1853,0.4477,0.8823,0.1455,0.3808,0.8823,0.2767,0.2767,0.8823,0.3808,0.1455,0.8823,0.4477,0.0,0.8823,0.4708,-0.1455,0.8823,0.4477,-0.2767,0.8823,0.3808,-0.3808,0.8823,0.2767,-0.4477,0.8823,0.1455,-0.4708,0.8823,0.0,-0.4477,0.8823,-0.1455,-0.3808,0.8823,-0.2767,-0.2767,0.8823,-0.3808,-0.1455,0.8823,-0.4477,0.0,0.8823,-0.4708,0.1455,0.8823,-0.4477,0.2767,0.8823,-0.3808,0.3808,0.8823,-0.2767,0.4477,0.8823,-0.1455,0.4708,0.8823,0.0,0.4477,0.8823,0.1455,0.3173,0.9427,0.1031,0.2699,0.9427,0.1961,0.1961,0.9427,0.2699,0.1031,0.9427,0.3173,0.0,0.9427,0.3336,-0.1031,0.9427,0.3173,-0.1961,0.9427,0.2699,-0.2699,0.9427,0.1961,-0.3173,0.9427,0.1031,-0.3336,0.9427,0.0,-0.3173,0.9427,-0.1031,-0.2699,0.9427,-0.1961,-0.1961,0.9427,-0.2699,-0.1031,0.9427,-0.3173,0.0,0.9427,-0.3336,0.1031,0.9427,-0.3173,0.1961,0.9427,-0.2699,0.2699,0.9427,-0.1961,0.3173,0.9427,-0.1031,0.3336,0.9427,0.0,0.3173,0.9427,0.1031,0.1906,0.9797,0.0619,0.1621,0.9797,0.1178,0.1178,0.9797,0.1621,0.0619,0.9797,0.1906,0.0,0.9797,0.2004,-0.0619,0.9797,0.1906,-0.1178,0.9797,0.1621,-0.1621,0.9797,0.1178,-0.1906,0.9797,0.0619,-0.2004,0.9797,0.0,-0.1906,0.9797,-0.0619,-0.1621,0.9797,-0.1178,-0.1178,0.9797,-0.1621,-0.0619,0.9797,-0.1906,0.0,0.9797,-0.2004,0.0619,0.9797,-0.1906,0.1178,0.9797,-0.1621,0.1621,0.9797,-0.1178,0.1906,0.9797,-0.0619,0.2004,0.9797,0.0,0.1906,0.9797,0.0619,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0],"tangents":[-0.4482,-0.0307,0.8934,-1.0,-0.5629,0.0062,0.8265,-1.0,-0.438,-0.0493,0.8976,-1.0,-0.5878,0.0,0.809,-1.0,-0.7908,0.0062,0.6121,-1.0,-0.809,0.0,0.5878,-1.0,-0.9412,0.0062,0.3378,-1.0,-0.9511,0.0,0.309,-1.0,-0.9995,0.0062,0.0304,-1.0,-1.0,0.0,0.0,-1.0,-0.96,0.0062,-0.28,-1.0,-0.9511,0.0,-0.309,-1.0,-0.8265,0.0062,-0.5629,-1.0,-0.809,0.0,-0.5878,-1.0,-0.6121,0.0062,-0.7908,-1.0,-0.5878,0.0,-0.809,-1.0,-0.3378,0.0062,-0.9412,-1.0,-0.309,0.0,-0.9511,-1.0,-0.0304,0.0062,-0.9995,-1.0,0.0,0.0,-1.0,-1.0,0.28,0.0062,-0.96,-1.0,0.309,0.0,-0.9511,-1.0,0.5629,0.0062,-0.8265,-1.0,0.5878,0.0,-0.809,-1.0,0.7908,0.0062,-0.6121,-1.0,0.809,0.0,-0.5878,-1.0,0.9412,0.0062,-0.3378,-1.0,0.9511,0.0,-0.309,-1.0,0.9995,0.0062,-0.0304,-1.0,1.0,0.0,0.0,-1.0,0.96,0.0062,0.28,-1.0,0.9511,0.0,0.309,-1.0,0.8265,0.0062,0.5629,-1.0,0.809,0.0,0.5878,-1.0,0.6121,0.0062,0.7908,-1.0,0.5878,0.0,0.809,-1.0,0.3378,0.0062,0.9412,-1.0,0.309,0.0,0.9511,-1.0,0.0304,0.0062,0.9995,-1.0,0.0,0.0,1.0,-1.0,-0.1625,0.0307,0.9862,-1.0,-0.1732,0.0493,0.9836,-1.0,-0.4222,-0.0651,0.9042,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.1899,0.0651,0.9796,-1.0,-0.4023,-0.0754,0.9124,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.2109,0.0754,0.9746,-1.0,-0.3802,-0.0787,0.9215,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.234,0.0787,0.969,-1.0,-0.3582,-0.0745,0.9306,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.2572,0.0745,0.9635,-1.0,-0.3384,-0.0633,0.9389,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.2781,0.0633,0.9585,-1.0,-0.3226,-0.0459,0.9454,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.2947,0.0459,0.9545,-1.0,-0.3125,-0.0241,0.9496,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.3053,0.0241,0.9519,-1.0,-0.309,0.0,0.9511,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.309,0.0,0.9511,-1.0,-0.3125,0.0241,0.9496,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.3053,-0.0241,0.9519,-1.0,-0.3226,0.0459,0.9454,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.2947,-0.0459,0.9545,-1.0,-0.3384,0.0633,0.9389,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.2781,-0.0633,0.9585,-1.0,-0.3582,0.0745,0.9306,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.2572,-0.0745,0.9635,-1.0,-0.3802,0.0787,0.9215,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.234,-0.0787,0.969,-1.0,-0.4023,0.0754,0.9124,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.2109,-0.0754,0.9746,-1.0,-0.4222,0.0651,0.9042,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.1899,-0.0651,0.9796,-1.0,-0.438,0.0493,0.8976,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.1732,-0.0493,0.9836,-1.0,-0.4482,0.0307,0.8934,-1.0,-0.6121,0.0062,0.7908,-1.0,-0.8265,0.0062,0.5629,-1.0,-0.96,0.0062,0.28,-1.0,-0.9995,0.0062,-0.0304,-1.0,-0.9412,0.0062,-0.3378,-1.0,-0.7908,0.0062,-0.6121,-1.0,-0.5629,0.0062,-0.8265,-1.0,-0.28,0.0062,-0.96,-1.0,0.0304,0.0062,-0.9995,-1.0,0.3378,0.0062,-0.9412,-1.0,0.6121,0.0062,-0.7908,-1.0,0.8265,0.0062,-0.5629,-1.0,0.96,0.0062,-0.28,-1.0,0.9995,0.0062,0.0304,-1.0,0.9412,0.0062,0.3378,-1.0,0.7908,0.0062,0.6121,-1.0,0.5629,0.0062,0.8265,-1.0,0.28,0.0062,0.96,-1.0,-0.0304,0.0062,0.9995,-1.0,-0.1625,-0.0307,0.9862,-1.0,-0.454,0.0,0.891,-1.0,-0.7071,0.0,0.7071,-1.0,-0.891,0.0,0.454,-1.0,-0.9877,0.0,0.1564,-1.0,-0.9877,0.0,-0.1564,-1.0,-0.891,0.0,-0.454,-1.0,-0.7071,0.0,-0.7071,-1.0,-0.454,0.0,-0.891,-1.0,-0.1564,0.0,-0.9877,-1.0,0.1564,0.0,-0.9877,-1.0,0.454,0.0,-0.891,-1.0,0.7071,0.0,-0.7071,-1.0,0.891,0.0,-0.454,-1.0,0.9877,0.0,-0.1564,-1.0,0.9877,0.0,0.1564,-1.0,0.891,0.0,0.454,-1.0,0.7071,0.0,0.7071,-1.0,0.454,0.0,0.891,-1.0,0.1564,0.0,0.9877,-1.0,-0.1564,0.0,0.9877,-1.0,-0.454,0.0,0.891,-1.0,-0.7071,0.0,0.7071,-1.0,-0.891,0.0,0.454,-1.0,-0.9877,0.0,0.1564,-1.0,-0.9877,0.0,-0.1564,-1.0,-0.891,0.0,-0.454,-1.0,-0.7071,0.0,-0.7071,-1.0,-0.454,0.0,-0.891,-1.0,-0.1564,0.0,-0.9877,-1.0,0.1564,0.0,-0.9877,-1.0,0.454,0.0,-0.891,-1.0,0.7071,0.0,-0.7071,-1.0,0.891,0.0,-0.454,-1.0,0.9877,0.0,-0.1564,-1.0,0.9877,0.0,0.1564,-1.0,0.891,0.0,0.454,-1.0,0.7071,0.0,0.7071,-1.0,0.454,0.0,0.891,-1.0,0.1564,0.0,0.9877,-1.0,-0.1564,0.0,0.9877,-1.0],"uvs":[0.0,0.05,0.05,0.05,0.0,0.1,0.05,0.1,0.1,0.05,0.1,0.1,0.15,0.05,0.15,0.1,0.2,0.05,0.2,0.1,0.25,0.05,0.25,0.1,0.3,0.05,0.3,0.1,0.35,0.05,0.35,0.1,0.4,0.05,0.4,0.1,0.45,0.05,0.45,0.1,0.5,0.05,0.5,0.1,0.55,0.05,0.55,0.1,0.6,0.05,0.6,0.1,0.65,0.05,0.65,0.1,0.7,0.05,0.7,0.1,0.75,0.05,0.75,0.1,0.8,0.05,0.8,0.1,0.85,0.05,0.85,0.1,0.9,0.05,0.9,0.1,0.95,0.05,0.95,0.1,1.0,0.05,1.0,0.1,0.0,0.15,0.05,0.15,0.1,0.15,0.15,0.15,0.2,0.15,0.25,0.15,0.3,0.15,0.35,0.15,0.4,0.15,0.45,0.15,0.5,0.15,0.55,0.15,0.6,0.15,0.65,0.15,0.7,0.15,0.75,0.15,0.8,0.15,0.85,0.15,0.9,0.15,0.95,0.15,1.0,0.15,0.0,0.2,0.05,0.2,0.1,0.2,0.15,0.2,0.2,0.2,0.25,0.2,0.3,0.2,0.35,0.2,0.4,0.2,0.45,0.2,0.5,0.2,0.55,0.2,0.6,0.2,0.65,0.2,0.7,0.2,0.75,0.2,0.8,0.2,0.85,0.2,0.9,0.2,0.95,0.2,1.0,0.2,0.0,0.25,0.05,0.25,0.1,0.25,0.15,0.25,0.2,0.25,0.25,0.25,0.3,0.25,0.35,0.25,0.4,0.25,0.45,0.25,0.5,0.25,0.55,0.25,0.6,0.25,0.65,0.25,0.7,0.25,0.75,0.25,0.8,0.25,0.85,0.25,0.9,0.25,0.95,0.25,1.0,0.25,0.0,0.3,0.05,0.3,0.1,0.3,0.15,0.3,0.2,0.3,0.25,0.3,0.3,0.3,0.35,0.3,0.4,0.3,0.45,0.3,0.5,0.3,0.55,0.3,0.6,0.3,0.65,0.3,0.7,0.3,0.75,0.3,0.8,0.3,0.85,0.3,0.9,0.3,0.95,0.3,1.0,0.3,0.0,0.35,0.05,0.35,0.1,0.35,0.15,0.35,0.2,0.35,0.25,0.35,0.3,0.35,0.35,0.35,0.4,0.35,0.45,0.35,0.5,0.35,0.55,0.35,0.6,0.35,0.65,0.35,0.7,0.35,0.75,0.35,0.8,0.35,0.85,0.35,0.9,0.35,0.95,0.35,1.0,0.35,0.0,0.4,0.05,0.4,0.1,0.4,0.15,0.4,0.2,0.4,0.25,0.4,0.3,0.4,0.35,0.4,0.4,0.4,0.45,0.4,0.5,0.4,0.55,0.4,0.6,0.4,0.65,0.4,0.7,0.4,0.75,0.4,0.8,0.4,0.85,0.4,0.9,0.4,0.95,0.4,1.0,0.4,0.0,0.45,0.05,0.45,0.1,0.45,0.15,0.45,0.2,0.45,0.25,0.45,0.3,0.45,0.35,0.45,0.4,0.45,0.45,0.45,0.5,0.45,0.55,0.45,0.6,0.45,0.65,0.45,0.7,0.45,0.75,0.45,0.8,0.45,0.85,0.45,0.9,0.45,0.95,0.45,1.0,0.45,0.0,0.5,0.05,0.5,0.1,0.5,0.15,0.5,0.2,0.5,0.25,0.5,0.3,0.5,0.35,0.5,0.4,0.5,0.45,0.5,0.5,0.5,0.55,0.5,0.6,0.5,0.65,0.5,0.7,0.5,0.75,0.5,0.8,0.5,0.85,0.5,0.9,0.5,0.95,0.5,1.0,0.5,0.0,0.55,0.05,0.55,0.1,0.55,0.15,0.55,0.2,0.55,0.25,0.55,0.3,0.55,0.35,0.55,0.4,0.55,0.45,0.55,0.5,0.55,0.55,0.55,0.6,0.55,0.65,0.55,0.7,0.55,0.75,0.55,0.8,0.55,0.85,0.55,0.9,0.55,0.95,0.55,1.0,0.55,0.0,0.6,0.05,0.6,0.1,0.6,0.15,0.6,0.2,0.6,0.25,0.6,0.3,0.6,0.35,0.6,0.4,0.6,0.45,0.6,0.5,0.6,0.55,0.6,0.6,0.6,0.65,0.6,0.7,0.6,0.75,0.6,0.8,0.6,0.85,0.6,0.9,0.6,0.95,0.6,1.0,0.6,0.0,0.65,0.05,0.65,0.1,0.65,0.15,0.65,0.2,0.65,0.25,0.65,0.3,0.65,0.35,0.65,0.4,0.65,0.45,0.65,0.5,0.65,0.55,0.65,0.6,0.65,0.65,0.65,0.7,0.65,0.75,0.65,0.8,0.65,0.85,0.65,0.9,0.65,0.95,0.65,1.0,0.65,0.0,0.7,0.05,0.7,0.1,0.7,0.15,0.7,0.2,0.7,0.25,0.7,0.3,0.7,0.35,0.7,0.4,0.7,0.45,0.7,0.5,0.7,0.55,0.7,0.6,0.7,0.65,0.7,0.7,0.7,0.75,0.7,0.8,0.7,0.85,0.7,0.9,0.7,0.95,0.7,1.0,0.7,0.0,0.75,0.05,0.75,0.1,0.75,0.15,0.75,0.2,0.75,0.25,0.75,0.3,0.75,0.35,0.75,0.4,0.75,0.45,0.75,0.5,0.75,0.55,0.75,0.6,0.75,0.65,0.75,0.7,0.75,0.75,0.75,0.8,0.75,0.85,0.75,0.9,0.75,0.95,0.75,1.0,0.75,0.0,0.8,0.05,0.8,0.1,0.8,0.15,0.8,0.2,0.8,0.25,0.8,0.3,0.8,0.35,0.8,0.4,0.8,0.45,0.8,0.5,0.8,0.55,0.8,0.6,0.8,0.65,0.8,0.7,0.8,0.75,0.8,0.8,0.8,0.85,0.8,0.9,0.8,0.95,0.8,1.0,0.8,0.0,0.85,0.05,0.85,0.1,0.85,0.15,0.85,0.2,0.85,0.25,0.85,0.3,0.85,0.35,0.85,0.4,0.85,0.45,0.85,0.5,0.85,0.55,0.85,0.6,0.85,0.65,0.85,0.7,0.85,0.75,0.85,0.8,0.85,0.85,0.85,0.9,0.85,0.95,0.85,1.0,0.85,0.0,0.9,0.05,0.9,0.1,0.9,0.15,0.9,0.2,0.9,0.25,0.9,0.3,0.9,0.35,0.9,0.4,0.9,0.45,0.9,0.5,0.9,0.55,0.9,0.6,0.9,0.65,0.9,0.7,0.9,0.75,0.9,0.8,0.9,0.85,0.9,0.9,0.9,0.95,0.9,1.0,0.9,0.0,0.95,0.05,0.95,0.1,0.95,0.15,0.95,0.2,0.95,0.25,0.95,0.3,0.95,0.35,0.95,0.4,0.95,0.45,0.95,0.5,0.95,0.55,0.95,0.6,0.95,0.65,0.95,0.7,0.95,0.75,0.95,0.8,0.95,0.85,0.95,0.9,0.95,0.95,0.95,1.0,0.95,0.025,0.0,0.075,0.0,0.125,0.0,0.175,0.0,0.225,0.0,0.275,0.0,0.325,0.0,0.375,0.0,0.425,0.0,0.475,0.0,0.525,0.0,0.575,0.0,0.625,0.0,0.675,0.0,0.725,0.0,0.775,0.0,0.825,0.0,0.875,0.0,0.925,0.0,0.975,0.0,0.025,1.0,0.075,1.0,0.125,1.0,0.175,1.0,0.225,1.0,0.275,1.0,0.325,1.0,0.375,1.0,0.425,1.0,0.475,1.0,0.525,1.0,0.575,1.0,0.625,1.0,0.675,1.0,0.725,1.0,0.775,1.0,0.825,1.0,0.875,1.0,0.925,1.0,0.975,1.0],"uvs2":null,"colors":null,"hasVertexAlpha":false,"matricesIndices":null,"matricesWeights":null,"matricesIndicesExtra":null,"matricesWeightsExtra":null,"indices":[0,1,2,2,1,3,1,4,3,3,4,5,4,6,5,5,6,7,6,8,7,7,8,9,8,10,9,9,10,11,10,12,11,11,12,13,12,14,13,13,14,15,14,16,15,15,16,17,16,18,17,17,18,19,18,20,19,19,20,21,20,22,21,21,22,23,22,24,23,23,24,25,24,26,25,25,26,27,26,28,27,27,28,29,28,30,29,29,30,31,30,32,31,31,32,33,32,34,33,33,34,35,34,36,35,35,36,37,36,38,37,37,38,39,38,40,39,39,40,41,2,3,42,42,3,43,3,5,43,43,5,44,5,7,44,44,7,45,7,9,45,45,9,46,9,11,46,46,11,47,11,13,47,47,13,48,13,15,48,48,15,49,15,17,49,49,17,50,17,19,50,50,19,51,19,21,51,51,21,52,21,23,52,52,23,53,23,25,53,53,25,54,25,27,54,54,27,55,27,29,55,55,29,56,29,31,56,56,31,57,31,33,57,57,33,58,33,35,58,58,35,59,35,37,59,59,37,60,37,39,60,60,39,61,39,41,61,61,41,62,42,43,63,63,43,64,43,44,64,64,44,65,44,45,65,65,45,66,45,46,66,66,46,67,46,47,67,67,47,68,47,48,68,68,48,69,48,49,69,69,49,70,49,50,70,70,50,71,50,51,71,71,51,72,51,52,72,72,52,73,52,53,73,73,53,74,53,54,74,74,54,75,54,55,75,75,55,76,55,56,76,76,56,77,56,57,77,77,57,78,57,58,78,78,58,79,58,59,79,79,59,80,59,60,80,80,60,81,60,61,81,81,61,82,61,62,82,82,62,83,63,64,84,84,64,85,64,65,85,85,65,86,65,66,86,86,66,87,66,67,87,87,67,88,67,68,88,88,68,89,68,69,89,89,69,90,69,70,90,90,70,91,70,71,91,91,71,92,71,72,92,92,72,93,72,73,93,93,73,94,73,74,94,94,74,95,74,75,95,95,75,96,75,76,96,96,76,97,76,77,97,97,77,98,77,78,98,98,78,99,78,79,99,99,79,100,79,80,100,100,80,101,80,81,101,101,81,102,81,82,102,102,82,103,82,83,103,103,83,104,84,85,105,105,85,106,85,86,106,106,86,107,86,87,107,107,87,108,87,88,108,108,88,109,88,89,109,109,89,110,89,90,110,110,90,111,90,91,111,111,91,112,91,92,112,112,92,113,92,93,113,113,93,114,93,94,114,114,94,115,94,95,115,115,95,116,95,96,116,116,96,117,96,97,117,117,97,118,97,98,118,118,98,119,98,99,119,119,99,120,99,100,120,120,100,121,100,101,121,121,101,122,101,102,122,122,102,123,102,103,123,123,103,124,103,104,124,124,104,125,105,106,126,126,106,127,106,107,127,127,107,128,107,108,128,128,108,129,108,109,129,129,109,130,109,110,130,130,110,131,110,111,131,131,111,132,111,112,132,132,112,133,112,113,133,133,113,134,113,114,134,134,114,135,114,115,135,135,115,136,115,116,136,136,116,137,116,117,137,137,117,138,117,118,138,138,118,139,118,119,139,139,119,140,119,120,140,140,120,141,120,121,141,141,121,142,121,122,142,142,122,143,122,123,143,143,123,144,123,124,144,144,124,145,124,125,145,145,125,146,126,127,147,147,127,148,127,128,148,148,128,149,128,129,149,149,129,150,129,130,150,150,130,151,130,131,151,151,131,152,131,132,152,152,132,153,132,133,153,153,133,154,133,134,154,154,134,155,134,135,155,155,135,156,135,136,156,156,136,157,136,137,157,157,137,158,137,138,158,158,138,159,138,139,159,159,139,160,139,140,160,160,140,161,140,141,161,161,141,162,141,142,162,162,142,163,142,143,163,163,143,164,143,144,164,164,144,165,144,145,165,165,145,166,145,146,166,166,146,167,147,148,168,168,148,169,148,149,169,169,149,170,149,150,170,170,150,171,150,151,171,171,151,172,151,152,172,172,152,173,152,153,173,173,153,174,153,154,174,174,154,175,154,155,175,175,155,176,155,156,176,176,156,177,156,157,177,177,157,178,157,158,178,178,158,179,158,159,179,179,159,180,159,160,180,180,160,181,160,161,181,181,161,182,161,162,182,182,162,183,162,163,183,183,163,184,163,164,184,184,164,185,164,165,185,185,165,186,165,166,186,186,166,187,166,167,187,187,167,188,168,169,189,189,169,190,169,170,190,190,170,191,170,171,191,191,171,192,171,172,192,192,172,193,172,173,193,193,173,194,173,174,194,194,174,195,174,175,195,195,175,196,175,176,196,196,176,197,176,177,197,197,177,198,177,178,198,198,178,199,178,179,199,199,179,200,179,180,200,200,180,201,180,181,201,201,181,202,181,182,202,202,182,203,182,183,203,203,183,204,183,184,204,204,184,205,184,185,205,205,185,206,185,186,206,206,186,207,186,187,207,207,187,208,187,188,208,208,188,209,189,190,210,210,190,211,190,191,211,211,191,212,191,192,212,212,192,213,192,193,213,213,193,214,193,194,214,214,194,215,194,195,215,215,195,216,195,196,216,216,196,217,196,197,217,217,197,218,197,198,218,218,198,219,198,199,219,219,199,220,199,200,220,220,200,221,200,201,221,221,201,222,201,202,222,222,202,223,202,203,223,223,203,224,203,204,224,224,204,225,204,205,225,225,205,226,205,206,226,226,206,227,206,207,227,227,207,228,207,208,228,228,208,229,208,209,229,229,209,230,210,211,231,231,211,232,211,212,232,232,212,233,212,213,233,233,213,234,213,214,234,234,214,235,214,215,235,235,215,236,215,216,236,236,216,237,216,217,237,237,217,238,217,218,238,238,218,239,218,219,239,239,219,240,219,220,240,240,220,241,220,221,241,241,221,242,221,222,242,242,222,243,222,223,243,243,223,244,223,224,244,244,224,245,224,225,245,245,225,246,225,226,246,246,226,247,226,227,247,247,227,248,227,228,248,248,228,249,228,229,249,249,229,250,229,230,250,250,230,251,231,232,252,252,232,253,232,233,253,253,233,254,233,234,254,254,234,255,234,235,255,255,235,256,235,236,256,256,236,257,236,237,257,257,237,258,237,238,258,258,238,259,238,239,259,259,239,260,239,240,260,260,240,261,240,241,261,261,241,262,241,242,262,262,242,263,242,243,263,263,243,264,243,244,264,264,244,265,244,245,265,265,245,266,245,246,266,266,246,267,246,247,267,267,247,268,247,248,268,268,248,269,248,249,269,269,249,270,249,250,270,270,250,271,250,251,271,271,251,272,252,253,273,273,253,274,253,254,274,274,254,275,254,255,275,275,255,276,255,256,276,276,256,277,256,257,277,277,257,278,257,258,278,278,258,279,258,259,279,279,259,280,259,260,280,280,260,281,260,261,281,281,261,282,261,262,282,282,262,283,262,263,283,283,263,284,263,264,284,284,264,285,264,265,285,285,265,286,265,266,286,286,266,287,266,267,287,287,267,288,267,268,288,288,268,289,268,269,289,289,269,290,269,270,290,290,270,291,270,271,291,291,271,292,271,272,292,292,272,293,273,274,294,294,274,295,274,275,295,295,275,296,275,276,296,296,276,297,276,277,297,297,277,298,277,278,298,298,278,299,278,279,299,299,279,300,279,280,300,300,280,301,280,281,301,301,281,302,281,282,302,302,282,303,282,283,303,303,283,304,283,284,304,304,284,305,284,285,305,305,285,306,285,286,306,306,286,307,286,287,307,307,287,308,287,288,308,308,288,309,288,289,309,309,289,310,289,290,310,310,290,311,290,291,311,311,291,312,291,292,312,312,292,313,292,293,313,313,293,314,294,295,315,315,295,316,295,296,316,316,296,317,296,297,317,317,297,318,297,298,318,318,298,319,298,299,319,319,299,320,299,300,320,320,300,321,300,301,321,321,301,322,301,302,322,322,302,323,302,303,323,323,303,324,303,304,324,324,304,325,304,305,325,325,305,326,305,306,326,326,306,327,306,307,327,327,307,328,307,308,328,328,308,329,308,309,329,329,309,330,309,310,330,330,310,331,310,311,331,331,311,332,311,312,332,332,312,333,312,313,333,333,313,334,313,314,334,334,314,335,315,316,336,336,316,337,316,317,337,337,317,338,317,318,338,338,318,339,318,319,339,339,319,340,319,320,340,340,320,341,320,321,341,341,321,342,321,322,342,342,322,343,322,323,343,343,323,344,323,324,344,344,324,345,324,325,345,345,325,346,325,326,346,346,326,347,326,327,347,347,327,348,327,328,348,348,328,349,328,329,349,349,329,350,329,330,350,350,330,351,330,331,351,351,331,352,331,332,352,352,332,353,332,333,353,353,333,354,333,334,354,354,334,355,334,335,355,355,335,356,336,337,357,357,337,358,337,338,358,358,338,359,338,339,359,359,339,360,339,340,360,360,340,361,340,341,361,361,341,362,341,342,362,362,342,363,342,343,363,363,343,364,343,344,364,364,344,365,344,345,365,365,345,366,345,346,366,366,346,367,346,347,367,367,347,368,347,348,368,368,348,369,348,349,369,369,349,370,349,350,370,370,350,371,350,351,371,371,351,372,351,352,372,372,352,373,352,353,373,373,353,374,353,354,374,374,354,375,354,355,375,375,355,376,355,356,376,376,356,377,357,358,378,378,358,379,358,359,379,379,359,380,359,360,380,380,360,381,360,361,381,381,361,382,361,362,382,382,362,383,362,363,383,383,363,384,363,364,384,384,364,385,364,365,385,385,365,386,365,366,386,386,366,387,366,367,387,387,367,388,367,368,388,388,368,389,368,369,389,389,369,390,369,370,390,390,370,391,370,371,391,391,371,392,371,372,392,392,372,393,372,373,393,393,373,394,373,374,394,394,374,395,374,375,395,395,375,396,375,376,396,396,376,397,376,377,397,397,377,398,1,0,399,4,1,400,6,4,401,8,6,402,10,8,403,12,10,404,14,12,405,16,14,406,18,16,407,20,18,408,22,20,409,24,22,410,26,24,411,28,26,412,30,28,413,32,30,414,34,32,415,36,34,416,38,36,417,40,38,418,378,379,419,379,380,420,380,381,421,381,382,422,382,383,423,383,384,424,384,385,425,385,386,426,386,387,427,387,388,428,388,389,429,389,390,430,390,391,431,391,392,432,392,393,433,393,394,434,394,395,435,395,396,436,396,397,437,397,398,438],"receiveShadows":false,"infiniteDistance":false,"billboardMode":0,"visibility":1.0,"subMeshes":[{"materialIndex":0,"verticesStart":0,"verticesCount":439,"indexStart":0,"indexCount":2280}],"instances":null,"skeletonId":-1,"numBoneInfluencers":4,"applyFog":false,"metadata":null,"lodMeshIds":null,"lodDistances":null,"lodCoverages":null,"rotation":null,"scaling":[1.0,1.0,1.0],"rotationQuaternion":[0.0,0.0,0.0,1.0],"actions":null,"checkCollisions":false,"pickable":true,"showBoundingBox":false,"showSubMeshesBoundingBox":false,"alphaIndex":0,"physicsImpostor":0,"physicsMass":0.0,"physicsFriction":0.0,"physicsRestitution":0.0,"name":"pSphere3","id":"3CC7A685-448C-CD8D-6923-DC9A8FDA8EAE","parentId":null,"position":[6.0,0.0,0.0],"animations":[],"autoAnimate":true,"autoAnimateFrom":1,"autoAnimateTo":200,"autoAnimateLoop":true},{"materialId":"5573E15F-4EC5-6311-B16F-0E8ED93B9B6A","isEnabled":true,"isVisible":true,"positions":[0.1488,-0.9877,0.0483,0.1266,-0.9877,0.0919,0.2939,-0.9511,0.0955,0.25,-0.9511,0.1816,0.0919,-0.9877,0.1266,0.1816,-0.9511,0.25,0.0483,-0.9877,0.1488,0.0955,-0.9511,0.2939,0.0,-0.9877,0.1564,0.0,-0.9511,0.309,-0.0483,-0.9877,0.1488,-0.0955,-0.9511,0.2939,-0.0919,-0.9877,0.1266,-0.1816,-0.9511,0.25,-0.1266,-0.9877,0.0919,-0.25,-0.9511,0.1816,-0.1488,-0.9877,0.0483,-0.2939,-0.9511,0.0955,-0.1564,-0.9877,0.0,-0.309,-0.9511,0.0,-0.1488,-0.9877,-0.0483,-0.2939,-0.9511,-0.0955,-0.1266,-0.9877,-0.0919,-0.25,-0.9511,-0.1816,-0.0919,-0.9877,-0.1266,-0.1816,-0.9511,-0.25,-0.0483,-0.9877,-0.1488,-0.0955,-0.9511,-0.2939,0.0,-0.9877,-0.1564,0.0,-0.9511,-0.309,0.0483,-0.9877,-0.1488,0.0955,-0.9511,-0.2939,0.0919,-0.9877,-0.1266,0.1816,-0.9511,-0.25,0.1266,-0.9877,-0.0919,0.25,-0.9511,-0.1816,0.1488,-0.9877,-0.0483,0.2939,-0.9511,-0.0955,0.1564,-0.9877,0.0,0.309,-0.9511,0.0,0.1488,-0.9877,0.0483,0.2939,-0.9511,0.0955,0.4318,-0.891,0.1403,0.3673,-0.891,0.2668,0.2668,-0.891,0.3673,0.1403,-0.891,0.4318,0.0,-0.891,0.454,-0.1403,-0.891,0.4318,-0.2668,-0.891,0.3673,-0.3673,-0.891,0.2668,-0.4318,-0.891,0.1403,-0.454,-0.891,0.0,-0.4318,-0.891,-0.1403,-0.3673,-0.891,-0.2668,-0.2668,-0.891,-0.3673,-0.1403,-0.891,-0.4318,0.0,-0.891,-0.454,0.1403,-0.891,-0.4318,0.2668,-0.891,-0.3673,0.3673,-0.891,-0.2668,0.4318,-0.891,-0.1403,0.454,-0.891,0.0,0.4318,-0.891,0.1403,0.559,-0.809,0.1816,0.4755,-0.809,0.3455,0.3455,-0.809,0.4755,0.1816,-0.809,0.559,0.0,-0.809,0.5878,-0.1816,-0.809,0.559,-0.3455,-0.809,0.4755,-0.4755,-0.809,0.3455,-0.559,-0.809,0.1816,-0.5878,-0.809,0.0,-0.559,-0.809,-0.1816,-0.4755,-0.809,-0.3455,-0.3455,-0.809,-0.4755,-0.1816,-0.809,-0.559,0.0,-0.809,-0.5878,0.1816,-0.809,-0.559,0.3455,-0.809,-0.4755,0.4755,-0.809,-0.3455,0.559,-0.809,-0.1816,0.5878,-0.809,0.0,0.559,-0.809,0.1816,0.6725,-0.7071,0.2185,0.5721,-0.7071,0.4156,0.4156,-0.7071,0.5721,0.2185,-0.7071,0.6725,0.0,-0.7071,0.7071,-0.2185,-0.7071,0.6725,-0.4156,-0.7071,0.5721,-0.5721,-0.7071,0.4156,-0.6725,-0.7071,0.2185,-0.7071,-0.7071,0.0,-0.6725,-0.7071,-0.2185,-0.5721,-0.7071,-0.4156,-0.4156,-0.7071,-0.5721,-0.2185,-0.7071,-0.6725,0.0,-0.7071,-0.7071,0.2185,-0.7071,-0.6725,0.4156,-0.7071,-0.5721,0.5721,-0.7071,-0.4156,0.6725,-0.7071,-0.2185,0.7071,-0.7071,0.0,0.6725,-0.7071,0.2185,0.7694,-0.5878,0.25,0.6545,-0.5878,0.4755,0.4755,-0.5878,0.6545,0.25,-0.5878,0.7694,0.0,-0.5878,0.809,-0.25,-0.5878,0.7694,-0.4755,-0.5878,0.6545,-0.6545,-0.5878,0.4755,-0.7694,-0.5878,0.25,-0.809,-0.5878,0.0,-0.7694,-0.5878,-0.25,-0.6545,-0.5878,-0.4755,-0.4755,-0.5878,-0.6545,-0.25,-0.5878,-0.7694,0.0,-0.5878,-0.809,0.25,-0.5878,-0.7694,0.4755,-0.5878,-0.6545,0.6545,-0.5878,-0.4755,0.7694,-0.5878,-0.25,0.809,-0.5878,0.0,0.7694,-0.5878,0.25,0.8474,-0.454,0.2753,0.7208,-0.454,0.5237,0.5237,-0.454,0.7208,0.2753,-0.454,0.8474,0.0,-0.454,0.891,-0.2753,-0.454,0.8474,-0.5237,-0.454,0.7208,-0.7208,-0.454,0.5237,-0.8474,-0.454,0.2753,-0.891,-0.454,0.0,-0.8474,-0.454,-0.2753,-0.7208,-0.454,-0.5237,-0.5237,-0.454,-0.7208,-0.2753,-0.454,-0.8474,0.0,-0.454,-0.891,0.2753,-0.454,-0.8474,0.5237,-0.454,-0.7208,0.7208,-0.454,-0.5237,0.8474,-0.454,-0.2753,0.891,-0.454,0.0,0.8474,-0.454,0.2753,0.9045,-0.309,0.2939,0.7694,-0.309,0.559,0.559,-0.309,0.7694,0.2939,-0.309,0.9045,0.0,-0.309,0.9511,-0.2939,-0.309,0.9045,-0.559,-0.309,0.7694,-0.7694,-0.309,0.559,-0.9045,-0.309,0.2939,-0.9511,-0.309,0.0,-0.9045,-0.309,-0.2939,-0.7694,-0.309,-0.559,-0.559,-0.309,-0.7694,-0.2939,-0.309,-0.9045,0.0,-0.309,-0.9511,0.2939,-0.309,-0.9045,0.559,-0.309,-0.7694,0.7694,-0.309,-0.559,0.9045,-0.309,-0.2939,0.9511,-0.309,0.0,0.9045,-0.309,0.2939,0.9393,-0.1564,0.3052,0.7991,-0.1564,0.5805,0.5805,-0.1564,0.7991,0.3052,-0.1564,0.9393,0.0,-0.1564,0.9877,-0.3052,-0.1564,0.9393,-0.5805,-0.1564,0.7991,-0.7991,-0.1564,0.5805,-0.9393,-0.1564,0.3052,-0.9877,-0.1564,0.0,-0.9393,-0.1564,-0.3052,-0.7991,-0.1564,-0.5805,-0.5805,-0.1564,-0.7991,-0.3052,-0.1564,-0.9393,0.0,-0.1564,-0.9877,0.3052,-0.1564,-0.9393,0.5805,-0.1564,-0.7991,0.7991,-0.1564,-0.5805,0.9393,-0.1564,-0.3052,0.9877,-0.1564,0.0,0.9393,-0.1564,0.3052,0.9511,0.0,0.309,0.809,0.0,0.5878,0.5878,0.0,0.809,0.309,0.0,0.9511,0.0,0.0,1.0,-0.309,0.0,0.9511,-0.5878,0.0,0.809,-0.809,0.0,0.5878,-0.9511,0.0,0.309,-1.0,0.0,0.0,-0.9511,0.0,-0.309,-0.809,0.0,-0.5878,-0.5878,0.0,-0.809,-0.309,0.0,-0.9511,0.0,0.0,-1.0,0.309,0.0,-0.9511,0.5878,0.0,-0.809,0.809,0.0,-0.5878,0.9511,0.0,-0.309,1.0,0.0,0.0,0.9511,0.0,0.309,0.9393,0.1564,0.3052,0.7991,0.1564,0.5805,0.5805,0.1564,0.7991,0.3052,0.1564,0.9393,0.0,0.1564,0.9877,-0.3052,0.1564,0.9393,-0.5805,0.1564,0.7991,-0.7991,0.1564,0.5805,-0.9393,0.1564,0.3052,-0.9877,0.1564,0.0,-0.9393,0.1564,-0.3052,-0.7991,0.1564,-0.5805,-0.5805,0.1564,-0.7991,-0.3052,0.1564,-0.9393,0.0,0.1564,-0.9877,0.3052,0.1564,-0.9393,0.5805,0.1564,-0.7991,0.7991,0.1564,-0.5805,0.9393,0.1564,-0.3052,0.9877,0.1564,0.0,0.9393,0.1564,0.3052,0.9045,0.309,0.2939,0.7694,0.309,0.559,0.559,0.309,0.7694,0.2939,0.309,0.9045,0.0,0.309,0.9511,-0.2939,0.309,0.9045,-0.559,0.309,0.7694,-0.7694,0.309,0.559,-0.9045,0.309,0.2939,-0.9511,0.309,0.0,-0.9045,0.309,-0.2939,-0.7694,0.309,-0.559,-0.559,0.309,-0.7694,-0.2939,0.309,-0.9045,0.0,0.309,-0.9511,0.2939,0.309,-0.9045,0.559,0.309,-0.7694,0.7694,0.309,-0.559,0.9045,0.309,-0.2939,0.9511,0.309,0.0,0.9045,0.309,0.2939,0.8474,0.454,0.2753,0.7208,0.454,0.5237,0.5237,0.454,0.7208,0.2753,0.454,0.8474,0.0,0.454,0.891,-0.2753,0.454,0.8474,-0.5237,0.454,0.7208,-0.7208,0.454,0.5237,-0.8474,0.454,0.2753,-0.891,0.454,0.0,-0.8474,0.454,-0.2753,-0.7208,0.454,-0.5237,-0.5237,0.454,-0.7208,-0.2753,0.454,-0.8474,0.0,0.454,-0.891,0.2753,0.454,-0.8474,0.5237,0.454,-0.7208,0.7208,0.454,-0.5237,0.8474,0.454,-0.2753,0.891,0.454,0.0,0.8474,0.454,0.2753,0.7694,0.5878,0.25,0.6545,0.5878,0.4755,0.4755,0.5878,0.6545,0.25,0.5878,0.7694,0.0,0.5878,0.809,-0.25,0.5878,0.7694,-0.4755,0.5878,0.6545,-0.6545,0.5878,0.4755,-0.7694,0.5878,0.25,-0.809,0.5878,0.0,-0.7694,0.5878,-0.25,-0.6545,0.5878,-0.4755,-0.4755,0.5878,-0.6545,-0.25,0.5878,-0.7694,0.0,0.5878,-0.809,0.25,0.5878,-0.7694,0.4755,0.5878,-0.6545,0.6545,0.5878,-0.4755,0.7694,0.5878,-0.25,0.809,0.5878,0.0,0.7694,0.5878,0.25,0.6725,0.7071,0.2185,0.5721,0.7071,0.4156,0.4156,0.7071,0.5721,0.2185,0.7071,0.6725,0.0,0.7071,0.7071,-0.2185,0.7071,0.6725,-0.4156,0.7071,0.5721,-0.5721,0.7071,0.4156,-0.6725,0.7071,0.2185,-0.7071,0.7071,0.0,-0.6725,0.7071,-0.2185,-0.5721,0.7071,-0.4156,-0.4156,0.7071,-0.5721,-0.2185,0.7071,-0.6725,0.0,0.7071,-0.7071,0.2185,0.7071,-0.6725,0.4156,0.7071,-0.5721,0.5721,0.7071,-0.4156,0.6725,0.7071,-0.2185,0.7071,0.7071,0.0,0.6725,0.7071,0.2185,0.559,0.809,0.1816,0.4755,0.809,0.3455,0.3455,0.809,0.4755,0.1816,0.809,0.559,0.0,0.809,0.5878,-0.1816,0.809,0.559,-0.3455,0.809,0.4755,-0.4755,0.809,0.3455,-0.559,0.809,0.1816,-0.5878,0.809,0.0,-0.559,0.809,-0.1816,-0.4755,0.809,-0.3455,-0.3455,0.809,-0.4755,-0.1816,0.809,-0.559,0.0,0.809,-0.5878,0.1816,0.809,-0.559,0.3455,0.809,-0.4755,0.4755,0.809,-0.3455,0.559,0.809,-0.1816,0.5878,0.809,0.0,0.559,0.809,0.1816,0.4318,0.891,0.1403,0.3673,0.891,0.2668,0.2668,0.891,0.3673,0.1403,0.891,0.4318,0.0,0.891,0.454,-0.1403,0.891,0.4318,-0.2668,0.891,0.3673,-0.3673,0.891,0.2668,-0.4318,0.891,0.1403,-0.454,0.891,0.0,-0.4318,0.891,-0.1403,-0.3673,0.891,-0.2668,-0.2668,0.891,-0.3673,-0.1403,0.891,-0.4318,0.0,0.891,-0.454,0.1403,0.891,-0.4318,0.2668,0.891,-0.3673,0.3673,0.891,-0.2668,0.4318,0.891,-0.1403,0.454,0.891,0.0,0.4318,0.891,0.1403,0.2939,0.9511,0.0955,0.25,0.9511,0.1816,0.1816,0.9511,0.25,0.0955,0.9511,0.2939,0.0,0.9511,0.309,-0.0955,0.9511,0.2939,-0.1816,0.9511,0.25,-0.25,0.9511,0.1816,-0.2939,0.9511,0.0955,-0.309,0.9511,0.0,-0.2939,0.9511,-0.0955,-0.25,0.9511,-0.1816,-0.1816,0.9511,-0.25,-0.0955,0.9511,-0.2939,0.0,0.9511,-0.309,0.0955,0.9511,-0.2939,0.1816,0.9511,-0.25,0.25,0.9511,-0.1816,0.2939,0.9511,-0.0955,0.309,0.9511,0.0,0.2939,0.9511,0.0955,0.1488,0.9877,0.0483,0.1266,0.9877,0.0919,0.0919,0.9877,0.1266,0.0483,0.9877,0.1488,0.0,0.9877,0.1564,-0.0483,0.9877,0.1488,-0.0919,0.9877,0.1266,-0.1266,0.9877,0.0919,-0.1488,0.9877,0.0483,-0.1564,0.9877,0.0,-0.1488,0.9877,-0.0483,-0.1266,0.9877,-0.0919,-0.0919,0.9877,-0.1266,-0.0483,0.9877,-0.1488,0.0,0.9877,-0.1564,0.0483,0.9877,-0.1488,0.0919,0.9877,-0.1266,0.1266,0.9877,-0.0919,0.1488,0.9877,-0.0483,0.1564,0.9877,0.0,0.1488,0.9877,0.0483,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0],"normals":[0.1906,-0.9797,0.0619,0.1621,-0.9797,0.1178,0.3173,-0.9427,0.1031,0.2699,-0.9427,0.1961,0.1178,-0.9797,0.1621,0.1961,-0.9427,0.2699,0.0619,-0.9797,0.1906,0.1031,-0.9427,0.3173,0.0,-0.9797,0.2004,0.0,-0.9427,0.3336,-0.0619,-0.9797,0.1906,-0.1031,-0.9427,0.3173,-0.1178,-0.9797,0.1621,-0.1961,-0.9427,0.2699,-0.1621,-0.9797,0.1178,-0.2699,-0.9427,0.1961,-0.1906,-0.9797,0.0619,-0.3173,-0.9427,0.1031,-0.2004,-0.9797,0.0,-0.3336,-0.9427,0.0,-0.1906,-0.9797,-0.0619,-0.3173,-0.9427,-0.1031,-0.1621,-0.9797,-0.1178,-0.2699,-0.9427,-0.1961,-0.1178,-0.9797,-0.1621,-0.1961,-0.9427,-0.2699,-0.0619,-0.9797,-0.1906,-0.1031,-0.9427,-0.3173,0.0,-0.9797,-0.2004,0.0,-0.9427,-0.3336,0.0619,-0.9797,-0.1906,0.1031,-0.9427,-0.3173,0.1178,-0.9797,-0.1621,0.1961,-0.9427,-0.2699,0.1621,-0.9797,-0.1178,0.2699,-0.9427,-0.1961,0.1906,-0.9797,-0.0619,0.3173,-0.9427,-0.1031,0.2004,-0.9797,0.0,0.3336,-0.9427,0.0,0.1906,-0.9797,0.0619,0.3173,-0.9427,0.1031,0.4477,-0.8823,0.1455,0.3808,-0.8823,0.2767,0.2767,-0.8823,0.3808,0.1455,-0.8823,0.4477,0.0,-0.8823,0.4708,-0.1455,-0.8823,0.4477,-0.2767,-0.8823,0.3808,-0.3808,-0.8823,0.2767,-0.4477,-0.8823,0.1455,-0.4708,-0.8823,0.0,-0.4477,-0.8823,-0.1455,-0.3808,-0.8823,-0.2767,-0.2767,-0.8823,-0.3808,-0.1455,-0.8823,-0.4477,0.0,-0.8823,-0.4708,0.1455,-0.8823,-0.4477,0.2767,-0.8823,-0.3808,0.3808,-0.8823,-0.2767,0.4477,-0.8823,-0.1455,0.4708,-0.8823,0.0,0.4477,-0.8823,0.1455,0.5703,-0.8003,0.1853,0.4851,-0.8003,0.3525,0.3525,-0.8003,0.4851,0.1853,-0.8003,0.5703,0.0,-0.8003,0.5997,-0.1853,-0.8003,0.5703,-0.3525,-0.8003,0.4851,-0.4851,-0.8003,0.3525,-0.5703,-0.8003,0.1853,-0.5997,-0.8003,0.0,-0.5703,-0.8003,-0.1853,-0.4851,-0.8003,-0.3525,-0.3525,-0.8003,-0.4851,-0.1853,-0.8003,-0.5703,0.0,-0.8003,-0.5997,0.1853,-0.8003,-0.5703,0.3525,-0.8003,-0.4851,0.4851,-0.8003,-0.3525,0.5703,-0.8003,-0.1853,0.5997,-0.8003,0.0,0.5703,-0.8003,0.1853,0.6803,-0.6988,0.221,0.5787,-0.6988,0.4205,0.4205,-0.6988,0.5787,0.221,-0.6988,0.6803,0.0,-0.6988,0.7153,-0.221,-0.6988,0.6803,-0.4205,-0.6988,0.5787,-0.5787,-0.6988,0.4205,-0.6803,-0.6988,0.221,-0.7153,-0.6988,0.0,-0.6803,-0.6988,-0.221,-0.5787,-0.6988,-0.4205,-0.4205,-0.6988,-0.5787,-0.221,-0.6988,-0.6803,0.0,-0.6988,-0.7153,0.221,-0.6988,-0.6803,0.4205,-0.6988,-0.5787,0.5787,-0.6988,-0.4205,0.6803,-0.6988,-0.221,0.7153,-0.6988,0.0,0.6803,-0.6988,0.221,0.7745,-0.5804,0.2516,0.6588,-0.5804,0.4787,0.4787,-0.5804,0.6588,0.2516,-0.5804,0.7745,0.0,-0.5804,0.8143,-0.2516,-0.5804,0.7745,-0.4787,-0.5804,0.6588,-0.6588,-0.5804,0.4787,-0.7745,-0.5804,0.2516,-0.8143,-0.5804,0.0,-0.7745,-0.5804,-0.2516,-0.6588,-0.5804,-0.4787,-0.4787,-0.5804,-0.6588,-0.2516,-0.5804,-0.7745,0.0,-0.5804,-0.8143,0.2516,-0.5804,-0.7745,0.4787,-0.5804,-0.6588,0.6588,-0.5804,-0.4787,0.7745,-0.5804,-0.2516,0.8143,-0.5804,0.0,0.7745,-0.5804,0.2516,0.8503,-0.448,0.2763,0.7233,-0.448,0.5255,0.5255,-0.448,0.7233,0.2763,-0.448,0.8503,0.0,-0.448,0.894,-0.2763,-0.448,0.8503,-0.5255,-0.448,0.7233,-0.7233,-0.448,0.5255,-0.8503,-0.448,0.2763,-0.894,-0.448,0.0,-0.8503,-0.448,-0.2763,-0.7233,-0.448,-0.5255,-0.5255,-0.448,-0.7233,-0.2763,-0.448,-0.8503,0.0,-0.448,-0.894,0.2763,-0.448,-0.8503,0.5255,-0.448,-0.7233,0.7233,-0.448,-0.5255,0.8503,-0.448,-0.2763,0.894,-0.448,0.0,0.8503,-0.448,0.2763,0.9058,-0.3048,0.2943,0.7705,-0.3048,0.5598,0.5598,-0.3048,0.7705,0.2943,-0.3048,0.9058,0.0,-0.3048,0.9524,-0.2943,-0.3048,0.9058,-0.5598,-0.3048,0.7705,-0.7705,-0.3048,0.5598,-0.9058,-0.3048,0.2943,-0.9524,-0.3048,0.0,-0.9058,-0.3048,-0.2943,-0.7705,-0.3048,-0.5598,-0.5598,-0.3048,-0.7705,-0.2943,-0.3048,-0.9058,0.0,-0.3048,-0.9524,0.2943,-0.3048,-0.9058,0.5598,-0.3048,-0.7705,0.7705,-0.3048,-0.5598,0.9058,-0.3048,-0.2943,0.9524,-0.3048,0.0,0.9058,-0.3048,0.2943,0.9397,-0.1542,0.3053,0.7993,-0.1542,0.5808,0.5808,-0.1542,0.7993,0.3053,-0.1542,0.9397,0.0,-0.1542,0.988,-0.3053,-0.1542,0.9397,-0.5808,-0.1542,0.7993,-0.7993,-0.1542,0.5808,-0.9397,-0.1542,0.3053,-0.988,-0.1542,0.0,-0.9397,-0.1542,-0.3053,-0.7993,-0.1542,-0.5808,-0.5808,-0.1542,-0.7993,-0.3053,-0.1542,-0.9397,0.0,-0.1542,-0.988,0.3053,-0.1542,-0.9397,0.5808,-0.1542,-0.7993,0.7993,-0.1542,-0.5808,0.9397,-0.1542,-0.3053,0.988,-0.1542,0.0,0.9397,-0.1542,0.3053,0.9511,0.0,0.309,0.809,0.0,0.5878,0.5878,0.0,0.809,0.309,0.0,0.9511,0.0,0.0,1.0,-0.309,0.0,0.9511,-0.5878,0.0,0.809,-0.809,0.0,0.5878,-0.9511,0.0,0.309,-1.0,0.0,0.0,-0.9511,0.0,-0.309,-0.809,0.0,-0.5878,-0.5878,0.0,-0.809,-0.309,0.0,-0.9511,0.0,0.0,-1.0,0.309,0.0,-0.9511,0.5878,0.0,-0.809,0.809,0.0,-0.5878,0.9511,0.0,-0.309,1.0,0.0,0.0,0.9511,0.0,0.309,0.9397,0.1542,0.3053,0.7993,0.1542,0.5808,0.5808,0.1542,0.7993,0.3053,0.1542,0.9397,0.0,0.1542,0.988,-0.3053,0.1542,0.9397,-0.5808,0.1542,0.7993,-0.7993,0.1542,0.5808,-0.9397,0.1542,0.3053,-0.988,0.1542,0.0,-0.9397,0.1542,-0.3053,-0.7993,0.1542,-0.5808,-0.5808,0.1542,-0.7993,-0.3053,0.1542,-0.9397,0.0,0.1542,-0.988,0.3053,0.1542,-0.9397,0.5808,0.1542,-0.7993,0.7993,0.1542,-0.5808,0.9397,0.1542,-0.3053,0.988,0.1542,0.0,0.9397,0.1542,0.3053,0.9058,0.3048,0.2943,0.7705,0.3048,0.5598,0.5598,0.3048,0.7705,0.2943,0.3048,0.9058,0.0,0.3048,0.9524,-0.2943,0.3048,0.9058,-0.5598,0.3048,0.7705,-0.7705,0.3048,0.5598,-0.9058,0.3048,0.2943,-0.9524,0.3048,0.0,-0.9058,0.3048,-0.2943,-0.7705,0.3048,-0.5598,-0.5598,0.3048,-0.7705,-0.2943,0.3048,-0.9058,0.0,0.3048,-0.9524,0.2943,0.3048,-0.9058,0.5598,0.3048,-0.7705,0.7705,0.3048,-0.5598,0.9058,0.3048,-0.2943,0.9524,0.3048,0.0,0.9058,0.3048,0.2943,0.8503,0.448,0.2763,0.7233,0.448,0.5255,0.5255,0.448,0.7233,0.2763,0.448,0.8503,0.0,0.448,0.894,-0.2763,0.448,0.8503,-0.5255,0.448,0.7233,-0.7233,0.448,0.5255,-0.8503,0.448,0.2763,-0.894,0.448,0.0,-0.8503,0.448,-0.2763,-0.7233,0.448,-0.5255,-0.5255,0.448,-0.7233,-0.2763,0.448,-0.8503,0.0,0.448,-0.894,0.2763,0.448,-0.8503,0.5255,0.448,-0.7233,0.7233,0.448,-0.5255,0.8503,0.448,-0.2763,0.894,0.448,0.0,0.8503,0.448,0.2763,0.7745,0.5804,0.2516,0.6588,0.5804,0.4787,0.4787,0.5804,0.6588,0.2516,0.5804,0.7745,0.0,0.5804,0.8143,-0.2516,0.5804,0.7745,-0.4787,0.5804,0.6588,-0.6588,0.5804,0.4787,-0.7745,0.5804,0.2516,-0.8143,0.5804,0.0,-0.7745,0.5804,-0.2516,-0.6588,0.5804,-0.4787,-0.4787,0.5804,-0.6588,-0.2516,0.5804,-0.7745,0.0,0.5804,-0.8143,0.2516,0.5804,-0.7745,0.4787,0.5804,-0.6588,0.6588,0.5804,-0.4787,0.7745,0.5804,-0.2516,0.8143,0.5804,0.0,0.7745,0.5804,0.2516,0.6803,0.6988,0.221,0.5787,0.6988,0.4205,0.4205,0.6988,0.5787,0.221,0.6988,0.6803,0.0,0.6988,0.7153,-0.221,0.6988,0.6803,-0.4205,0.6988,0.5787,-0.5787,0.6988,0.4205,-0.6803,0.6988,0.221,-0.7153,0.6988,0.0,-0.6803,0.6988,-0.221,-0.5787,0.6988,-0.4205,-0.4205,0.6988,-0.5787,-0.221,0.6988,-0.6803,0.0,0.6988,-0.7153,0.221,0.6988,-0.6803,0.4205,0.6988,-0.5787,0.5787,0.6988,-0.4205,0.6803,0.6988,-0.221,0.7153,0.6988,0.0,0.6803,0.6988,0.221,0.5703,0.8003,0.1853,0.4851,0.8003,0.3525,0.3525,0.8003,0.4851,0.1853,0.8003,0.5703,0.0,0.8003,0.5997,-0.1853,0.8003,0.5703,-0.3525,0.8003,0.4851,-0.4851,0.8003,0.3525,-0.5703,0.8003,0.1853,-0.5997,0.8003,0.0,-0.5703,0.8003,-0.1853,-0.4851,0.8003,-0.3525,-0.3525,0.8003,-0.4851,-0.1853,0.8003,-0.5703,0.0,0.8003,-0.5997,0.1853,0.8003,-0.5703,0.3525,0.8003,-0.4851,0.4851,0.8003,-0.3525,0.5703,0.8003,-0.1853,0.5997,0.8003,0.0,0.5703,0.8003,0.1853,0.4477,0.8823,0.1455,0.3808,0.8823,0.2767,0.2767,0.8823,0.3808,0.1455,0.8823,0.4477,0.0,0.8823,0.4708,-0.1455,0.8823,0.4477,-0.2767,0.8823,0.3808,-0.3808,0.8823,0.2767,-0.4477,0.8823,0.1455,-0.4708,0.8823,0.0,-0.4477,0.8823,-0.1455,-0.3808,0.8823,-0.2767,-0.2767,0.8823,-0.3808,-0.1455,0.8823,-0.4477,0.0,0.8823,-0.4708,0.1455,0.8823,-0.4477,0.2767,0.8823,-0.3808,0.3808,0.8823,-0.2767,0.4477,0.8823,-0.1455,0.4708,0.8823,0.0,0.4477,0.8823,0.1455,0.3173,0.9427,0.1031,0.2699,0.9427,0.1961,0.1961,0.9427,0.2699,0.1031,0.9427,0.3173,0.0,0.9427,0.3336,-0.1031,0.9427,0.3173,-0.1961,0.9427,0.2699,-0.2699,0.9427,0.1961,-0.3173,0.9427,0.1031,-0.3336,0.9427,0.0,-0.3173,0.9427,-0.1031,-0.2699,0.9427,-0.1961,-0.1961,0.9427,-0.2699,-0.1031,0.9427,-0.3173,0.0,0.9427,-0.3336,0.1031,0.9427,-0.3173,0.1961,0.9427,-0.2699,0.2699,0.9427,-0.1961,0.3173,0.9427,-0.1031,0.3336,0.9427,0.0,0.3173,0.9427,0.1031,0.1906,0.9797,0.0619,0.1621,0.9797,0.1178,0.1178,0.9797,0.1621,0.0619,0.9797,0.1906,0.0,0.9797,0.2004,-0.0619,0.9797,0.1906,-0.1178,0.9797,0.1621,-0.1621,0.9797,0.1178,-0.1906,0.9797,0.0619,-0.2004,0.9797,0.0,-0.1906,0.9797,-0.0619,-0.1621,0.9797,-0.1178,-0.1178,0.9797,-0.1621,-0.0619,0.9797,-0.1906,0.0,0.9797,-0.2004,0.0619,0.9797,-0.1906,0.1178,0.9797,-0.1621,0.1621,0.9797,-0.1178,0.1906,0.9797,-0.0619,0.2004,0.9797,0.0,0.1906,0.9797,0.0619,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0],"tangents":[-0.4482,-0.0307,0.8934,-1.0,-0.5629,0.0062,0.8265,-1.0,-0.438,-0.0493,0.8976,-1.0,-0.5878,0.0,0.809,-1.0,-0.7908,0.0062,0.6121,-1.0,-0.809,0.0,0.5878,-1.0,-0.9412,0.0062,0.3378,-1.0,-0.9511,0.0,0.309,-1.0,-0.9995,0.0062,0.0304,-1.0,-1.0,0.0,0.0,-1.0,-0.96,0.0062,-0.28,-1.0,-0.9511,0.0,-0.309,-1.0,-0.8265,0.0062,-0.5629,-1.0,-0.809,0.0,-0.5878,-1.0,-0.6121,0.0062,-0.7908,-1.0,-0.5878,0.0,-0.809,-1.0,-0.3378,0.0062,-0.9412,-1.0,-0.309,0.0,-0.9511,-1.0,-0.0304,0.0062,-0.9995,-1.0,0.0,0.0,-1.0,-1.0,0.28,0.0062,-0.96,-1.0,0.309,0.0,-0.9511,-1.0,0.5629,0.0062,-0.8265,-1.0,0.5878,0.0,-0.809,-1.0,0.7908,0.0062,-0.6121,-1.0,0.809,0.0,-0.5878,-1.0,0.9412,0.0062,-0.3378,-1.0,0.9511,0.0,-0.309,-1.0,0.9995,0.0062,-0.0304,-1.0,1.0,0.0,0.0,-1.0,0.96,0.0062,0.28,-1.0,0.9511,0.0,0.309,-1.0,0.8265,0.0062,0.5629,-1.0,0.809,0.0,0.5878,-1.0,0.6121,0.0062,0.7908,-1.0,0.5878,0.0,0.809,-1.0,0.3378,0.0062,0.9412,-1.0,0.309,0.0,0.9511,-1.0,0.0304,0.0062,0.9995,-1.0,0.0,0.0,1.0,-1.0,-0.1625,0.0307,0.9862,-1.0,-0.1732,0.0493,0.9836,-1.0,-0.4222,-0.0651,0.9042,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.1899,0.0651,0.9796,-1.0,-0.4023,-0.0754,0.9124,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.2109,0.0754,0.9746,-1.0,-0.3802,-0.0787,0.9215,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.234,0.0787,0.969,-1.0,-0.3582,-0.0745,0.9306,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.2572,0.0745,0.9635,-1.0,-0.3384,-0.0633,0.9389,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.2781,0.0633,0.9585,-1.0,-0.3226,-0.0459,0.9454,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.2947,0.0459,0.9545,-1.0,-0.3125,-0.0241,0.9496,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.3053,0.0241,0.9519,-1.0,-0.309,0.0,0.9511,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.309,0.0,0.9511,-1.0,-0.3125,0.0241,0.9496,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.3053,-0.0241,0.9519,-1.0,-0.3226,0.0459,0.9454,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.2947,-0.0459,0.9545,-1.0,-0.3384,0.0633,0.9389,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.2781,-0.0633,0.9585,-1.0,-0.3582,0.0745,0.9306,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.2572,-0.0745,0.9635,-1.0,-0.3802,0.0787,0.9215,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.234,-0.0787,0.969,-1.0,-0.4023,0.0754,0.9124,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.2109,-0.0754,0.9746,-1.0,-0.4222,0.0651,0.9042,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.1899,-0.0651,0.9796,-1.0,-0.438,0.0493,0.8976,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.1732,-0.0493,0.9836,-1.0,-0.4482,0.0307,0.8934,-1.0,-0.6121,0.0062,0.7908,-1.0,-0.8265,0.0062,0.5629,-1.0,-0.96,0.0062,0.28,-1.0,-0.9995,0.0062,-0.0304,-1.0,-0.9412,0.0062,-0.3378,-1.0,-0.7908,0.0062,-0.6121,-1.0,-0.5629,0.0062,-0.8265,-1.0,-0.28,0.0062,-0.96,-1.0,0.0304,0.0062,-0.9995,-1.0,0.3378,0.0062,-0.9412,-1.0,0.6121,0.0062,-0.7908,-1.0,0.8265,0.0062,-0.5629,-1.0,0.96,0.0062,-0.28,-1.0,0.9995,0.0062,0.0304,-1.0,0.9412,0.0062,0.3378,-1.0,0.7908,0.0062,0.6121,-1.0,0.5629,0.0062,0.8265,-1.0,0.28,0.0062,0.96,-1.0,-0.0304,0.0062,0.9995,-1.0,-0.1625,-0.0307,0.9862,-1.0,-0.454,0.0,0.891,-1.0,-0.7071,0.0,0.7071,-1.0,-0.891,0.0,0.454,-1.0,-0.9877,0.0,0.1564,-1.0,-0.9877,0.0,-0.1564,-1.0,-0.891,0.0,-0.454,-1.0,-0.7071,0.0,-0.7071,-1.0,-0.454,0.0,-0.891,-1.0,-0.1564,0.0,-0.9877,-1.0,0.1564,0.0,-0.9877,-1.0,0.454,0.0,-0.891,-1.0,0.7071,0.0,-0.7071,-1.0,0.891,0.0,-0.454,-1.0,0.9877,0.0,-0.1564,-1.0,0.9877,0.0,0.1564,-1.0,0.891,0.0,0.454,-1.0,0.7071,0.0,0.7071,-1.0,0.454,0.0,0.891,-1.0,0.1564,0.0,0.9877,-1.0,-0.1564,0.0,0.9877,-1.0,-0.454,0.0,0.891,-1.0,-0.7071,0.0,0.7071,-1.0,-0.891,0.0,0.454,-1.0,-0.9877,0.0,0.1564,-1.0,-0.9877,0.0,-0.1564,-1.0,-0.891,0.0,-0.454,-1.0,-0.7071,0.0,-0.7071,-1.0,-0.454,0.0,-0.891,-1.0,-0.1564,0.0,-0.9877,-1.0,0.1564,0.0,-0.9877,-1.0,0.454,0.0,-0.891,-1.0,0.7071,0.0,-0.7071,-1.0,0.891,0.0,-0.454,-1.0,0.9877,0.0,-0.1564,-1.0,0.9877,0.0,0.1564,-1.0,0.891,0.0,0.454,-1.0,0.7071,0.0,0.7071,-1.0,0.454,0.0,0.891,-1.0,0.1564,0.0,0.9877,-1.0,-0.1564,0.0,0.9877,-1.0],"uvs":[0.0,0.05,0.05,0.05,0.0,0.1,0.05,0.1,0.1,0.05,0.1,0.1,0.15,0.05,0.15,0.1,0.2,0.05,0.2,0.1,0.25,0.05,0.25,0.1,0.3,0.05,0.3,0.1,0.35,0.05,0.35,0.1,0.4,0.05,0.4,0.1,0.45,0.05,0.45,0.1,0.5,0.05,0.5,0.1,0.55,0.05,0.55,0.1,0.6,0.05,0.6,0.1,0.65,0.05,0.65,0.1,0.7,0.05,0.7,0.1,0.75,0.05,0.75,0.1,0.8,0.05,0.8,0.1,0.85,0.05,0.85,0.1,0.9,0.05,0.9,0.1,0.95,0.05,0.95,0.1,1.0,0.05,1.0,0.1,0.0,0.15,0.05,0.15,0.1,0.15,0.15,0.15,0.2,0.15,0.25,0.15,0.3,0.15,0.35,0.15,0.4,0.15,0.45,0.15,0.5,0.15,0.55,0.15,0.6,0.15,0.65,0.15,0.7,0.15,0.75,0.15,0.8,0.15,0.85,0.15,0.9,0.15,0.95,0.15,1.0,0.15,0.0,0.2,0.05,0.2,0.1,0.2,0.15,0.2,0.2,0.2,0.25,0.2,0.3,0.2,0.35,0.2,0.4,0.2,0.45,0.2,0.5,0.2,0.55,0.2,0.6,0.2,0.65,0.2,0.7,0.2,0.75,0.2,0.8,0.2,0.85,0.2,0.9,0.2,0.95,0.2,1.0,0.2,0.0,0.25,0.05,0.25,0.1,0.25,0.15,0.25,0.2,0.25,0.25,0.25,0.3,0.25,0.35,0.25,0.4,0.25,0.45,0.25,0.5,0.25,0.55,0.25,0.6,0.25,0.65,0.25,0.7,0.25,0.75,0.25,0.8,0.25,0.85,0.25,0.9,0.25,0.95,0.25,1.0,0.25,0.0,0.3,0.05,0.3,0.1,0.3,0.15,0.3,0.2,0.3,0.25,0.3,0.3,0.3,0.35,0.3,0.4,0.3,0.45,0.3,0.5,0.3,0.55,0.3,0.6,0.3,0.65,0.3,0.7,0.3,0.75,0.3,0.8,0.3,0.85,0.3,0.9,0.3,0.95,0.3,1.0,0.3,0.0,0.35,0.05,0.35,0.1,0.35,0.15,0.35,0.2,0.35,0.25,0.35,0.3,0.35,0.35,0.35,0.4,0.35,0.45,0.35,0.5,0.35,0.55,0.35,0.6,0.35,0.65,0.35,0.7,0.35,0.75,0.35,0.8,0.35,0.85,0.35,0.9,0.35,0.95,0.35,1.0,0.35,0.0,0.4,0.05,0.4,0.1,0.4,0.15,0.4,0.2,0.4,0.25,0.4,0.3,0.4,0.35,0.4,0.4,0.4,0.45,0.4,0.5,0.4,0.55,0.4,0.6,0.4,0.65,0.4,0.7,0.4,0.75,0.4,0.8,0.4,0.85,0.4,0.9,0.4,0.95,0.4,1.0,0.4,0.0,0.45,0.05,0.45,0.1,0.45,0.15,0.45,0.2,0.45,0.25,0.45,0.3,0.45,0.35,0.45,0.4,0.45,0.45,0.45,0.5,0.45,0.55,0.45,0.6,0.45,0.65,0.45,0.7,0.45,0.75,0.45,0.8,0.45,0.85,0.45,0.9,0.45,0.95,0.45,1.0,0.45,0.0,0.5,0.05,0.5,0.1,0.5,0.15,0.5,0.2,0.5,0.25,0.5,0.3,0.5,0.35,0.5,0.4,0.5,0.45,0.5,0.5,0.5,0.55,0.5,0.6,0.5,0.65,0.5,0.7,0.5,0.75,0.5,0.8,0.5,0.85,0.5,0.9,0.5,0.95,0.5,1.0,0.5,0.0,0.55,0.05,0.55,0.1,0.55,0.15,0.55,0.2,0.55,0.25,0.55,0.3,0.55,0.35,0.55,0.4,0.55,0.45,0.55,0.5,0.55,0.55,0.55,0.6,0.55,0.65,0.55,0.7,0.55,0.75,0.55,0.8,0.55,0.85,0.55,0.9,0.55,0.95,0.55,1.0,0.55,0.0,0.6,0.05,0.6,0.1,0.6,0.15,0.6,0.2,0.6,0.25,0.6,0.3,0.6,0.35,0.6,0.4,0.6,0.45,0.6,0.5,0.6,0.55,0.6,0.6,0.6,0.65,0.6,0.7,0.6,0.75,0.6,0.8,0.6,0.85,0.6,0.9,0.6,0.95,0.6,1.0,0.6,0.0,0.65,0.05,0.65,0.1,0.65,0.15,0.65,0.2,0.65,0.25,0.65,0.3,0.65,0.35,0.65,0.4,0.65,0.45,0.65,0.5,0.65,0.55,0.65,0.6,0.65,0.65,0.65,0.7,0.65,0.75,0.65,0.8,0.65,0.85,0.65,0.9,0.65,0.95,0.65,1.0,0.65,0.0,0.7,0.05,0.7,0.1,0.7,0.15,0.7,0.2,0.7,0.25,0.7,0.3,0.7,0.35,0.7,0.4,0.7,0.45,0.7,0.5,0.7,0.55,0.7,0.6,0.7,0.65,0.7,0.7,0.7,0.75,0.7,0.8,0.7,0.85,0.7,0.9,0.7,0.95,0.7,1.0,0.7,0.0,0.75,0.05,0.75,0.1,0.75,0.15,0.75,0.2,0.75,0.25,0.75,0.3,0.75,0.35,0.75,0.4,0.75,0.45,0.75,0.5,0.75,0.55,0.75,0.6,0.75,0.65,0.75,0.7,0.75,0.75,0.75,0.8,0.75,0.85,0.75,0.9,0.75,0.95,0.75,1.0,0.75,0.0,0.8,0.05,0.8,0.1,0.8,0.15,0.8,0.2,0.8,0.25,0.8,0.3,0.8,0.35,0.8,0.4,0.8,0.45,0.8,0.5,0.8,0.55,0.8,0.6,0.8,0.65,0.8,0.7,0.8,0.75,0.8,0.8,0.8,0.85,0.8,0.9,0.8,0.95,0.8,1.0,0.8,0.0,0.85,0.05,0.85,0.1,0.85,0.15,0.85,0.2,0.85,0.25,0.85,0.3,0.85,0.35,0.85,0.4,0.85,0.45,0.85,0.5,0.85,0.55,0.85,0.6,0.85,0.65,0.85,0.7,0.85,0.75,0.85,0.8,0.85,0.85,0.85,0.9,0.85,0.95,0.85,1.0,0.85,0.0,0.9,0.05,0.9,0.1,0.9,0.15,0.9,0.2,0.9,0.25,0.9,0.3,0.9,0.35,0.9,0.4,0.9,0.45,0.9,0.5,0.9,0.55,0.9,0.6,0.9,0.65,0.9,0.7,0.9,0.75,0.9,0.8,0.9,0.85,0.9,0.9,0.9,0.95,0.9,1.0,0.9,0.0,0.95,0.05,0.95,0.1,0.95,0.15,0.95,0.2,0.95,0.25,0.95,0.3,0.95,0.35,0.95,0.4,0.95,0.45,0.95,0.5,0.95,0.55,0.95,0.6,0.95,0.65,0.95,0.7,0.95,0.75,0.95,0.8,0.95,0.85,0.95,0.9,0.95,0.95,0.95,1.0,0.95,0.025,0.0,0.075,0.0,0.125,0.0,0.175,0.0,0.225,0.0,0.275,0.0,0.325,0.0,0.375,0.0,0.425,0.0,0.475,0.0,0.525,0.0,0.575,0.0,0.625,0.0,0.675,0.0,0.725,0.0,0.775,0.0,0.825,0.0,0.875,0.0,0.925,0.0,0.975,0.0,0.025,1.0,0.075,1.0,0.125,1.0,0.175,1.0,0.225,1.0,0.275,1.0,0.325,1.0,0.375,1.0,0.425,1.0,0.475,1.0,0.525,1.0,0.575,1.0,0.625,1.0,0.675,1.0,0.725,1.0,0.775,1.0,0.825,1.0,0.875,1.0,0.925,1.0,0.975,1.0],"uvs2":null,"colors":null,"hasVertexAlpha":false,"matricesIndices":null,"matricesWeights":null,"matricesIndicesExtra":null,"matricesWeightsExtra":null,"indices":[0,1,2,2,1,3,1,4,3,3,4,5,4,6,5,5,6,7,6,8,7,7,8,9,8,10,9,9,10,11,10,12,11,11,12,13,12,14,13,13,14,15,14,16,15,15,16,17,16,18,17,17,18,19,18,20,19,19,20,21,20,22,21,21,22,23,22,24,23,23,24,25,24,26,25,25,26,27,26,28,27,27,28,29,28,30,29,29,30,31,30,32,31,31,32,33,32,34,33,33,34,35,34,36,35,35,36,37,36,38,37,37,38,39,38,40,39,39,40,41,2,3,42,42,3,43,3,5,43,43,5,44,5,7,44,44,7,45,7,9,45,45,9,46,9,11,46,46,11,47,11,13,47,47,13,48,13,15,48,48,15,49,15,17,49,49,17,50,17,19,50,50,19,51,19,21,51,51,21,52,21,23,52,52,23,53,23,25,53,53,25,54,25,27,54,54,27,55,27,29,55,55,29,56,29,31,56,56,31,57,31,33,57,57,33,58,33,35,58,58,35,59,35,37,59,59,37,60,37,39,60,60,39,61,39,41,61,61,41,62,42,43,63,63,43,64,43,44,64,64,44,65,44,45,65,65,45,66,45,46,66,66,46,67,46,47,67,67,47,68,47,48,68,68,48,69,48,49,69,69,49,70,49,50,70,70,50,71,50,51,71,71,51,72,51,52,72,72,52,73,52,53,73,73,53,74,53,54,74,74,54,75,54,55,75,75,55,76,55,56,76,76,56,77,56,57,77,77,57,78,57,58,78,78,58,79,58,59,79,79,59,80,59,60,80,80,60,81,60,61,81,81,61,82,61,62,82,82,62,83,63,64,84,84,64,85,64,65,85,85,65,86,65,66,86,86,66,87,66,67,87,87,67,88,67,68,88,88,68,89,68,69,89,89,69,90,69,70,90,90,70,91,70,71,91,91,71,92,71,72,92,92,72,93,72,73,93,93,73,94,73,74,94,94,74,95,74,75,95,95,75,96,75,76,96,96,76,97,76,77,97,97,77,98,77,78,98,98,78,99,78,79,99,99,79,100,79,80,100,100,80,101,80,81,101,101,81,102,81,82,102,102,82,103,82,83,103,103,83,104,84,85,105,105,85,106,85,86,106,106,86,107,86,87,107,107,87,108,87,88,108,108,88,109,88,89,109,109,89,110,89,90,110,110,90,111,90,91,111,111,91,112,91,92,112,112,92,113,92,93,113,113,93,114,93,94,114,114,94,115,94,95,115,115,95,116,95,96,116,116,96,117,96,97,117,117,97,118,97,98,118,118,98,119,98,99,119,119,99,120,99,100,120,120,100,121,100,101,121,121,101,122,101,102,122,122,102,123,102,103,123,123,103,124,103,104,124,124,104,125,105,106,126,126,106,127,106,107,127,127,107,128,107,108,128,128,108,129,108,109,129,129,109,130,109,110,130,130,110,131,110,111,131,131,111,132,111,112,132,132,112,133,112,113,133,133,113,134,113,114,134,134,114,135,114,115,135,135,115,136,115,116,136,136,116,137,116,117,137,137,117,138,117,118,138,138,118,139,118,119,139,139,119,140,119,120,140,140,120,141,120,121,141,141,121,142,121,122,142,142,122,143,122,123,143,143,123,144,123,124,144,144,124,145,124,125,145,145,125,146,126,127,147,147,127,148,127,128,148,148,128,149,128,129,149,149,129,150,129,130,150,150,130,151,130,131,151,151,131,152,131,132,152,152,132,153,132,133,153,153,133,154,133,134,154,154,134,155,134,135,155,155,135,156,135,136,156,156,136,157,136,137,157,157,137,158,137,138,158,158,138,159,138,139,159,159,139,160,139,140,160,160,140,161,140,141,161,161,141,162,141,142,162,162,142,163,142,143,163,163,143,164,143,144,164,164,144,165,144,145,165,165,145,166,145,146,166,166,146,167,147,148,168,168,148,169,148,149,169,169,149,170,149,150,170,170,150,171,150,151,171,171,151,172,151,152,172,172,152,173,152,153,173,173,153,174,153,154,174,174,154,175,154,155,175,175,155,176,155,156,176,176,156,177,156,157,177,177,157,178,157,158,178,178,158,179,158,159,179,179,159,180,159,160,180,180,160,181,160,161,181,181,161,182,161,162,182,182,162,183,162,163,183,183,163,184,163,164,184,184,164,185,164,165,185,185,165,186,165,166,186,186,166,187,166,167,187,187,167,188,168,169,189,189,169,190,169,170,190,190,170,191,170,171,191,191,171,192,171,172,192,192,172,193,172,173,193,193,173,194,173,174,194,194,174,195,174,175,195,195,175,196,175,176,196,196,176,197,176,177,197,197,177,198,177,178,198,198,178,199,178,179,199,199,179,200,179,180,200,200,180,201,180,181,201,201,181,202,181,182,202,202,182,203,182,183,203,203,183,204,183,184,204,204,184,205,184,185,205,205,185,206,185,186,206,206,186,207,186,187,207,207,187,208,187,188,208,208,188,209,189,190,210,210,190,211,190,191,211,211,191,212,191,192,212,212,192,213,192,193,213,213,193,214,193,194,214,214,194,215,194,195,215,215,195,216,195,196,216,216,196,217,196,197,217,217,197,218,197,198,218,218,198,219,198,199,219,219,199,220,199,200,220,220,200,221,200,201,221,221,201,222,201,202,222,222,202,223,202,203,223,223,203,224,203,204,224,224,204,225,204,205,225,225,205,226,205,206,226,226,206,227,206,207,227,227,207,228,207,208,228,228,208,229,208,209,229,229,209,230,210,211,231,231,211,232,211,212,232,232,212,233,212,213,233,233,213,234,213,214,234,234,214,235,214,215,235,235,215,236,215,216,236,236,216,237,216,217,237,237,217,238,217,218,238,238,218,239,218,219,239,239,219,240,219,220,240,240,220,241,220,221,241,241,221,242,221,222,242,242,222,243,222,223,243,243,223,244,223,224,244,244,224,245,224,225,245,245,225,246,225,226,246,246,226,247,226,227,247,247,227,248,227,228,248,248,228,249,228,229,249,249,229,250,229,230,250,250,230,251,231,232,252,252,232,253,232,233,253,253,233,254,233,234,254,254,234,255,234,235,255,255,235,256,235,236,256,256,236,257,236,237,257,257,237,258,237,238,258,258,238,259,238,239,259,259,239,260,239,240,260,260,240,261,240,241,261,261,241,262,241,242,262,262,242,263,242,243,263,263,243,264,243,244,264,264,244,265,244,245,265,265,245,266,245,246,266,266,246,267,246,247,267,267,247,268,247,248,268,268,248,269,248,249,269,269,249,270,249,250,270,270,250,271,250,251,271,271,251,272,252,253,273,273,253,274,253,254,274,274,254,275,254,255,275,275,255,276,255,256,276,276,256,277,256,257,277,277,257,278,257,258,278,278,258,279,258,259,279,279,259,280,259,260,280,280,260,281,260,261,281,281,261,282,261,262,282,282,262,283,262,263,283,283,263,284,263,264,284,284,264,285,264,265,285,285,265,286,265,266,286,286,266,287,266,267,287,287,267,288,267,268,288,288,268,289,268,269,289,289,269,290,269,270,290,290,270,291,270,271,291,291,271,292,271,272,292,292,272,293,273,274,294,294,274,295,274,275,295,295,275,296,275,276,296,296,276,297,276,277,297,297,277,298,277,278,298,298,278,299,278,279,299,299,279,300,279,280,300,300,280,301,280,281,301,301,281,302,281,282,302,302,282,303,282,283,303,303,283,304,283,284,304,304,284,305,284,285,305,305,285,306,285,286,306,306,286,307,286,287,307,307,287,308,287,288,308,308,288,309,288,289,309,309,289,310,289,290,310,310,290,311,290,291,311,311,291,312,291,292,312,312,292,313,292,293,313,313,293,314,294,295,315,315,295,316,295,296,316,316,296,317,296,297,317,317,297,318,297,298,318,318,298,319,298,299,319,319,299,320,299,300,320,320,300,321,300,301,321,321,301,322,301,302,322,322,302,323,302,303,323,323,303,324,303,304,324,324,304,325,304,305,325,325,305,326,305,306,326,326,306,327,306,307,327,327,307,328,307,308,328,328,308,329,308,309,329,329,309,330,309,310,330,330,310,331,310,311,331,331,311,332,311,312,332,332,312,333,312,313,333,333,313,334,313,314,334,334,314,335,315,316,336,336,316,337,316,317,337,337,317,338,317,318,338,338,318,339,318,319,339,339,319,340,319,320,340,340,320,341,320,321,341,341,321,342,321,322,342,342,322,343,322,323,343,343,323,344,323,324,344,344,324,345,324,325,345,345,325,346,325,326,346,346,326,347,326,327,347,347,327,348,327,328,348,348,328,349,328,329,349,349,329,350,329,330,350,350,330,351,330,331,351,351,331,352,331,332,352,352,332,353,332,333,353,353,333,354,333,334,354,354,334,355,334,335,355,355,335,356,336,337,357,357,337,358,337,338,358,358,338,359,338,339,359,359,339,360,339,340,360,360,340,361,340,341,361,361,341,362,341,342,362,362,342,363,342,343,363,363,343,364,343,344,364,364,344,365,344,345,365,365,345,366,345,346,366,366,346,367,346,347,367,367,347,368,347,348,368,368,348,369,348,349,369,369,349,370,349,350,370,370,350,371,350,351,371,371,351,372,351,352,372,372,352,373,352,353,373,373,353,374,353,354,374,374,354,375,354,355,375,375,355,376,355,356,376,376,356,377,357,358,378,378,358,379,358,359,379,379,359,380,359,360,380,380,360,381,360,361,381,381,361,382,361,362,382,382,362,383,362,363,383,383,363,384,363,364,384,384,364,385,364,365,385,385,365,386,365,366,386,386,366,387,366,367,387,387,367,388,367,368,388,388,368,389,368,369,389,389,369,390,369,370,390,390,370,391,370,371,391,391,371,392,371,372,392,392,372,393,372,373,393,393,373,394,373,374,394,394,374,395,374,375,395,395,375,396,375,376,396,396,376,397,376,377,397,397,377,398,1,0,399,4,1,400,6,4,401,8,6,402,10,8,403,12,10,404,14,12,405,16,14,406,18,16,407,20,18,408,22,20,409,24,22,410,26,24,411,28,26,412,30,28,413,32,30,414,34,32,415,36,34,416,38,36,417,40,38,418,378,379,419,379,380,420,380,381,421,381,382,422,382,383,423,383,384,424,384,385,425,385,386,426,386,387,427,387,388,428,388,389,429,389,390,430,390,391,431,391,392,432,392,393,433,393,394,434,394,395,435,395,396,436,396,397,437,397,398,438],"receiveShadows":false,"infiniteDistance":false,"billboardMode":0,"visibility":1.0,"subMeshes":[{"materialIndex":0,"verticesStart":0,"verticesCount":439,"indexStart":0,"indexCount":2280}],"instances":null,"skeletonId":-1,"numBoneInfluencers":4,"applyFog":false,"metadata":null,"lodMeshIds":null,"lodDistances":null,"lodCoverages":null,"rotation":null,"scaling":[1.0,1.0,1.0],"rotationQuaternion":[0.0,0.0,0.0,1.0],"actions":null,"checkCollisions":false,"pickable":true,"showBoundingBox":false,"showSubMeshesBoundingBox":false,"alphaIndex":0,"physicsImpostor":0,"physicsMass":0.0,"physicsFriction":0.0,"physicsRestitution":0.0,"name":"pSphere4","id":"2F4F3A92-41B4-BFAB-58D5-7DBF6D8F2419","parentId":null,"position":[9.0,0.0,0.0],"animations":[],"autoAnimate":true,"autoAnimateFrom":1,"autoAnimateTo":200,"autoAnimateLoop":true}],"sounds":[],"materials":[{"customType":"BABYLON.StandardMaterial","ambient":[1.0,1.0,1.0],"diffuse":[1.0,0.0,0.0],"specular":[0.5,0.5,0.5],"emissive":[0.0,0.0,0.0],"specularPower":110.6414,"diffuseTexture":null,"diffuseFresnelParameters":null,"ambientTexture":null,"opacityTexture":null,"opacityFresnelParameters":null,"reflectionTexture":null,"reflectionFresnelParameters":null,"emissiveTexture":null,"lightmapTexture":null,"useLightmapAsShadowmap":false,"emissiveFresnelParameters":null,"specularTexture":null,"bumpTexture":null,"useSpecularOverAlpha":true,"disableLighting":false,"useEmissiveAsIllumination":false,"linkEmissiveWithDiffuse":true,"twoSidedLighting":false,"useGlossinessFromSpecularMapAlpha":false,"name":"phong1","id":"9B24F14E-4F69-6849-B864-07B9E4A7E9FF","backFaceCulling":true,"wireframe":false,"alpha":1.0,"alphaMode":2,"maxSimultaneousLights":4},{"customType":"BABYLON.PBRMetallicRoughnessMaterial","baseColor":[0.0,1.0,0.0],"baseTexture":null,"metallic":0.0,"roughness":0.33,"metallicRoughnessTexture":null,"disableLighting":false,"invertNormalMapX":false,"invertNormalMapY":false,"normalTexture":null,"emissive":[0.0,0.0,0.0],"emissiveTexture":null,"occlusionStrength":1.0,"occlusionTexture":null,"alphaCutOff":0.5,"transparencyMode":0,"doubleSided":false,"clearCoat":{"isEnabled":false,"intensity":1.0,"roughness":0.0,"indexOfRefraction":1.5,"texture":null,"bumpTexture":null,"isTintEnabled":false,"tintColor":[1.0,1.0,1.0],"tintThickness":1.0,"tintTexture":null},"name":"StingrayPBS1","id":"0E49D5E9-4200-91FB-CB7B-93B40CEF850E","backFaceCulling":true,"wireframe":false,"alpha":1.0,"alphaMode":2,"maxSimultaneousLights":4},{"customType":"BABYLON.PBRMetallicRoughnessMaterial","baseColor":[0.0,0.0,0.8],"baseTexture":null,"metallic":0.0,"roughness":0.1,"metallicRoughnessTexture":null,"disableLighting":false,"invertNormalMapX":false,"invertNormalMapY":false,"normalTexture":null,"emissive":[0.0,0.0,0.0],"emissiveTexture":null,"occlusionStrength":1.0,"occlusionTexture":null,"alphaCutOff":0.5,"transparencyMode":0,"doubleSided":false,"clearCoat":{"isEnabled":false,"intensity":1.0,"roughness":0.0,"indexOfRefraction":1.5,"texture":null,"bumpTexture":null,"isTintEnabled":false,"tintColor":[1.0,1.0,1.0],"tintThickness":1.0,"tintTexture":null},"name":"aiStandardSurface1","id":"79CDF1A6-4409-889B-46A9-43A586C10D94","backFaceCulling":true,"wireframe":false,"alpha":1.0,"alphaMode":2,"maxSimultaneousLights":4},{"customType":"BABYLON.StandardMaterial","ambient":[1.0,1.0,1.0],"diffuse":[0.5,0.5,0.5],"specular":[0.0,0.0,0.0],"emissive":[0.0,0.0,0.0],"specularPower":25.6,"diffuseTexture":null,"diffuseFresnelParameters":null,"ambientTexture":null,"opacityTexture":null,"opacityFresnelParameters":null,"reflectionTexture":null,"reflectionFresnelParameters":null,"emissiveTexture":null,"lightmapTexture":null,"useLightmapAsShadowmap":false,"emissiveFresnelParameters":null,"specularTexture":null,"bumpTexture":null,"useSpecularOverAlpha":true,"disableLighting":false,"useEmissiveAsIllumination":false,"linkEmissiveWithDiffuse":true,"twoSidedLighting":false,"useGlossinessFromSpecularMapAlpha":false,"name":"lambert1","id":"5573E15F-4EC5-6311-B16F-0E8ED93B9B6A","backFaceCulling":true,"wireframe":false,"alpha":1.0,"alphaMode":2,"maxSimultaneousLights":4}],"multiMaterials":[],"particleSystems":null,"lensFlareSystems":null,"shadowGenerators":[],"skeletons":[],"actions":null,"metadata":null,"workerCollisions":false}
\ No newline at end of file
diff --git a/Maya/Samples/babylon/BabylonMaterialAttributes/MaxSimultaneousLights.babylon b/Maya/Samples/babylon/BabylonMaterialAttributes/MaxSimultaneousLights.babylon
new file mode 100644
index 00000000..1604672b
--- /dev/null
+++ b/Maya/Samples/babylon/BabylonMaterialAttributes/MaxSimultaneousLights.babylon
@@ -0,0 +1 @@
+{"producer":{"name":"Maya","version":"2018","exporter_version":"1.4.0","file":"MaxSimultaneousLights.babylon"},"autoClear":true,"clearColor":[0.2,0.2,0.3],"ambientColor":[0.0,0.0,0.0],"fogMode":0,"fogColor":null,"fogStart":0.0,"fogEnd":0.0,"fogDensity":0.0,"gravity":[0.0,0.0,-0.9],"physicsEngine":null,"physicsEnabled":false,"physicsGravity":null,"cameras":[{"isStereoscopicSideBySide":false,"lockedTargetId":"804AFC66-43CA-DFCC-DF65-0C9686404386","type":"FreeCamera","rotation":null,"rotationQuaternion":[0.1977,-0.1327,0.027,0.9709],"fov":0.6606,"minZ":0.1,"maxZ":10000.0,"speed":1.0,"inertia":0.9,"interaxialDistance":0.0637,"checkCollisions":false,"applyGravity":false,"ellipsoid":null,"mode":0,"orthoLeft":null,"orthoRight":null,"orthoBottom":null,"orthoTop":null,"name":"camera1","id":"ED66AFDF-45E3-B96D-6765-0AA2A16D5864","parentId":"137C4297-47D4-E2A5-10AF-0AA14915BEEF","position":[7.5145,4.3458,-8.4782],"animations":[{"name":"rotationQuaternion animation","property":"rotationQuaternion","dataType":2,"enableBlending":false,"blendingSpeed":0.01,"loopBehavior":1,"framePerSecond":24,"keys":[{"frame":1,"values":[0.1977,-0.1327,0.027,0.9709]},{"frame":200,"values":[0.1977,-0.1327,0.027,0.9709]}]},{"name":"position animation","property":"position","dataType":1,"enableBlending":false,"blendingSpeed":0.01,"loopBehavior":1,"framePerSecond":24,"keys":[{"frame":1,"values":[7.5145,4.3458,-8.4782]},{"frame":200,"values":[7.5145,4.3458,-8.4782]}]},{"name":"visibility animation","property":"visibility","dataType":0,"enableBlending":false,"blendingSpeed":0.01,"loopBehavior":1,"framePerSecond":24,"keys":[{"frame":1,"values":[1.0]},{"frame":200,"values":[1.0]}]}],"autoAnimate":true,"autoAnimateFrom":1,"autoAnimateTo":200,"autoAnimateLoop":true,"metadata":{}}],"activeCameraID":"ED66AFDF-45E3-B96D-6765-0AA2A16D5864","lights":[{"direction":[0.866,-0.5,0.0],"type":1,"diffuse":[1.0,1.0,1.0],"specular":[1.0,1.0,1.0],"intensity":10.0,"range":3.40282347E+38,"exponent":0.0,"angle":0.0,"groundColor":null,"excludedMeshesIds":null,"includedOnlyMeshesIds":["3CC7A685-448C-CD8D-6923-DC9A8FDA8EAE","39830D1B-4903-0C71-E956-0EBDE718A360","49BFB75F-4E5C-1233-ECCB-D18729E79868","2F4F3A92-41B4-BFAB-58D5-7DBF6D8F2419","AAE56DAE-40BF-882A-5CE8-0AB477E46CDB","92B858ED-49B8-E93D-F687-CF96ED0F335D","217F8624-4792-7AFF-6E31-1F80E9A1DE44"],"lightmapMode":null,"falloffType":null,"name":"directionalLight1","id":"AD75F1E1-4393-DDC1-F633-5BB2A158B0E9","parentId":null,"position":[0.0,3.0,0.0],"animations":[],"autoAnimate":true,"autoAnimateFrom":1,"autoAnimateTo":200,"autoAnimateLoop":true,"metadata":{}},{"direction":[0.9848,0.1736,0.0],"type":1,"diffuse":[1.0,1.0,1.0],"specular":[1.0,1.0,1.0],"intensity":10.0,"range":3.40282347E+38,"exponent":0.0,"angle":0.0,"groundColor":null,"excludedMeshesIds":null,"includedOnlyMeshesIds":["3CC7A685-448C-CD8D-6923-DC9A8FDA8EAE","39830D1B-4903-0C71-E956-0EBDE718A360","49BFB75F-4E5C-1233-ECCB-D18729E79868","2F4F3A92-41B4-BFAB-58D5-7DBF6D8F2419","AAE56DAE-40BF-882A-5CE8-0AB477E46CDB","92B858ED-49B8-E93D-F687-CF96ED0F335D","217F8624-4792-7AFF-6E31-1F80E9A1DE44"],"lightmapMode":null,"falloffType":null,"name":"pasted__directionalLight1","id":"98D3B886-4581-65F2-0FC8-A8A74467ED50","parentId":"12860585-4754-191F-7227-0A97E03C87D0","position":[0.0,3.0,0.0],"animations":[],"autoAnimate":true,"autoAnimateFrom":1,"autoAnimateTo":200,"autoAnimateLoop":true,"metadata":{}}],"meshes":[{"materialId":"9B24F14E-4F69-6849-B864-07B9E4A7E9FF","isEnabled":true,"isVisible":true,"positions":[0.1488,-0.9877,0.0483,0.1266,-0.9877,0.0919,0.2939,-0.9511,0.0955,0.25,-0.9511,0.1816,0.0919,-0.9877,0.1266,0.1816,-0.9511,0.25,0.0483,-0.9877,0.1488,0.0955,-0.9511,0.2939,0.0,-0.9877,0.1564,0.0,-0.9511,0.309,-0.0483,-0.9877,0.1488,-0.0955,-0.9511,0.2939,-0.0919,-0.9877,0.1266,-0.1816,-0.9511,0.25,-0.1266,-0.9877,0.0919,-0.25,-0.9511,0.1816,-0.1488,-0.9877,0.0483,-0.2939,-0.9511,0.0955,-0.1564,-0.9877,0.0,-0.309,-0.9511,0.0,-0.1488,-0.9877,-0.0483,-0.2939,-0.9511,-0.0955,-0.1266,-0.9877,-0.0919,-0.25,-0.9511,-0.1816,-0.0919,-0.9877,-0.1266,-0.1816,-0.9511,-0.25,-0.0483,-0.9877,-0.1488,-0.0955,-0.9511,-0.2939,0.0,-0.9877,-0.1564,0.0,-0.9511,-0.309,0.0483,-0.9877,-0.1488,0.0955,-0.9511,-0.2939,0.0919,-0.9877,-0.1266,0.1816,-0.9511,-0.25,0.1266,-0.9877,-0.0919,0.25,-0.9511,-0.1816,0.1488,-0.9877,-0.0483,0.2939,-0.9511,-0.0955,0.1564,-0.9877,0.0,0.309,-0.9511,0.0,0.1488,-0.9877,0.0483,0.2939,-0.9511,0.0955,0.4318,-0.891,0.1403,0.3673,-0.891,0.2668,0.2668,-0.891,0.3673,0.1403,-0.891,0.4318,0.0,-0.891,0.454,-0.1403,-0.891,0.4318,-0.2668,-0.891,0.3673,-0.3673,-0.891,0.2668,-0.4318,-0.891,0.1403,-0.454,-0.891,0.0,-0.4318,-0.891,-0.1403,-0.3673,-0.891,-0.2668,-0.2668,-0.891,-0.3673,-0.1403,-0.891,-0.4318,0.0,-0.891,-0.454,0.1403,-0.891,-0.4318,0.2668,-0.891,-0.3673,0.3673,-0.891,-0.2668,0.4318,-0.891,-0.1403,0.454,-0.891,0.0,0.4318,-0.891,0.1403,0.559,-0.809,0.1816,0.4755,-0.809,0.3455,0.3455,-0.809,0.4755,0.1816,-0.809,0.559,0.0,-0.809,0.5878,-0.1816,-0.809,0.559,-0.3455,-0.809,0.4755,-0.4755,-0.809,0.3455,-0.559,-0.809,0.1816,-0.5878,-0.809,0.0,-0.559,-0.809,-0.1816,-0.4755,-0.809,-0.3455,-0.3455,-0.809,-0.4755,-0.1816,-0.809,-0.559,0.0,-0.809,-0.5878,0.1816,-0.809,-0.559,0.3455,-0.809,-0.4755,0.4755,-0.809,-0.3455,0.559,-0.809,-0.1816,0.5878,-0.809,0.0,0.559,-0.809,0.1816,0.6725,-0.7071,0.2185,0.5721,-0.7071,0.4156,0.4156,-0.7071,0.5721,0.2185,-0.7071,0.6725,0.0,-0.7071,0.7071,-0.2185,-0.7071,0.6725,-0.4156,-0.7071,0.5721,-0.5721,-0.7071,0.4156,-0.6725,-0.7071,0.2185,-0.7071,-0.7071,0.0,-0.6725,-0.7071,-0.2185,-0.5721,-0.7071,-0.4156,-0.4156,-0.7071,-0.5721,-0.2185,-0.7071,-0.6725,0.0,-0.7071,-0.7071,0.2185,-0.7071,-0.6725,0.4156,-0.7071,-0.5721,0.5721,-0.7071,-0.4156,0.6725,-0.7071,-0.2185,0.7071,-0.7071,0.0,0.6725,-0.7071,0.2185,0.7694,-0.5878,0.25,0.6545,-0.5878,0.4755,0.4755,-0.5878,0.6545,0.25,-0.5878,0.7694,0.0,-0.5878,0.809,-0.25,-0.5878,0.7694,-0.4755,-0.5878,0.6545,-0.6545,-0.5878,0.4755,-0.7694,-0.5878,0.25,-0.809,-0.5878,0.0,-0.7694,-0.5878,-0.25,-0.6545,-0.5878,-0.4755,-0.4755,-0.5878,-0.6545,-0.25,-0.5878,-0.7694,0.0,-0.5878,-0.809,0.25,-0.5878,-0.7694,0.4755,-0.5878,-0.6545,0.6545,-0.5878,-0.4755,0.7694,-0.5878,-0.25,0.809,-0.5878,0.0,0.7694,-0.5878,0.25,0.8474,-0.454,0.2753,0.7208,-0.454,0.5237,0.5237,-0.454,0.7208,0.2753,-0.454,0.8474,0.0,-0.454,0.891,-0.2753,-0.454,0.8474,-0.5237,-0.454,0.7208,-0.7208,-0.454,0.5237,-0.8474,-0.454,0.2753,-0.891,-0.454,0.0,-0.8474,-0.454,-0.2753,-0.7208,-0.454,-0.5237,-0.5237,-0.454,-0.7208,-0.2753,-0.454,-0.8474,0.0,-0.454,-0.891,0.2753,-0.454,-0.8474,0.5237,-0.454,-0.7208,0.7208,-0.454,-0.5237,0.8474,-0.454,-0.2753,0.891,-0.454,0.0,0.8474,-0.454,0.2753,0.9045,-0.309,0.2939,0.7694,-0.309,0.559,0.559,-0.309,0.7694,0.2939,-0.309,0.9045,0.0,-0.309,0.9511,-0.2939,-0.309,0.9045,-0.559,-0.309,0.7694,-0.7694,-0.309,0.559,-0.9045,-0.309,0.2939,-0.9511,-0.309,0.0,-0.9045,-0.309,-0.2939,-0.7694,-0.309,-0.559,-0.559,-0.309,-0.7694,-0.2939,-0.309,-0.9045,0.0,-0.309,-0.9511,0.2939,-0.309,-0.9045,0.559,-0.309,-0.7694,0.7694,-0.309,-0.559,0.9045,-0.309,-0.2939,0.9511,-0.309,0.0,0.9045,-0.309,0.2939,0.9393,-0.1564,0.3052,0.7991,-0.1564,0.5805,0.5805,-0.1564,0.7991,0.3052,-0.1564,0.9393,0.0,-0.1564,0.9877,-0.3052,-0.1564,0.9393,-0.5805,-0.1564,0.7991,-0.7991,-0.1564,0.5805,-0.9393,-0.1564,0.3052,-0.9877,-0.1564,0.0,-0.9393,-0.1564,-0.3052,-0.7991,-0.1564,-0.5805,-0.5805,-0.1564,-0.7991,-0.3052,-0.1564,-0.9393,0.0,-0.1564,-0.9877,0.3052,-0.1564,-0.9393,0.5805,-0.1564,-0.7991,0.7991,-0.1564,-0.5805,0.9393,-0.1564,-0.3052,0.9877,-0.1564,0.0,0.9393,-0.1564,0.3052,0.9511,0.0,0.309,0.809,0.0,0.5878,0.5878,0.0,0.809,0.309,0.0,0.9511,0.0,0.0,1.0,-0.309,0.0,0.9511,-0.5878,0.0,0.809,-0.809,0.0,0.5878,-0.9511,0.0,0.309,-1.0,0.0,0.0,-0.9511,0.0,-0.309,-0.809,0.0,-0.5878,-0.5878,0.0,-0.809,-0.309,0.0,-0.9511,0.0,0.0,-1.0,0.309,0.0,-0.9511,0.5878,0.0,-0.809,0.809,0.0,-0.5878,0.9511,0.0,-0.309,1.0,0.0,0.0,0.9511,0.0,0.309,0.9393,0.1564,0.3052,0.7991,0.1564,0.5805,0.5805,0.1564,0.7991,0.3052,0.1564,0.9393,0.0,0.1564,0.9877,-0.3052,0.1564,0.9393,-0.5805,0.1564,0.7991,-0.7991,0.1564,0.5805,-0.9393,0.1564,0.3052,-0.9877,0.1564,0.0,-0.9393,0.1564,-0.3052,-0.7991,0.1564,-0.5805,-0.5805,0.1564,-0.7991,-0.3052,0.1564,-0.9393,0.0,0.1564,-0.9877,0.3052,0.1564,-0.9393,0.5805,0.1564,-0.7991,0.7991,0.1564,-0.5805,0.9393,0.1564,-0.3052,0.9877,0.1564,0.0,0.9393,0.1564,0.3052,0.9045,0.309,0.2939,0.7694,0.309,0.559,0.559,0.309,0.7694,0.2939,0.309,0.9045,0.0,0.309,0.9511,-0.2939,0.309,0.9045,-0.559,0.309,0.7694,-0.7694,0.309,0.559,-0.9045,0.309,0.2939,-0.9511,0.309,0.0,-0.9045,0.309,-0.2939,-0.7694,0.309,-0.559,-0.559,0.309,-0.7694,-0.2939,0.309,-0.9045,0.0,0.309,-0.9511,0.2939,0.309,-0.9045,0.559,0.309,-0.7694,0.7694,0.309,-0.559,0.9045,0.309,-0.2939,0.9511,0.309,0.0,0.9045,0.309,0.2939,0.8474,0.454,0.2753,0.7208,0.454,0.5237,0.5237,0.454,0.7208,0.2753,0.454,0.8474,0.0,0.454,0.891,-0.2753,0.454,0.8474,-0.5237,0.454,0.7208,-0.7208,0.454,0.5237,-0.8474,0.454,0.2753,-0.891,0.454,0.0,-0.8474,0.454,-0.2753,-0.7208,0.454,-0.5237,-0.5237,0.454,-0.7208,-0.2753,0.454,-0.8474,0.0,0.454,-0.891,0.2753,0.454,-0.8474,0.5237,0.454,-0.7208,0.7208,0.454,-0.5237,0.8474,0.454,-0.2753,0.891,0.454,0.0,0.8474,0.454,0.2753,0.7694,0.5878,0.25,0.6545,0.5878,0.4755,0.4755,0.5878,0.6545,0.25,0.5878,0.7694,0.0,0.5878,0.809,-0.25,0.5878,0.7694,-0.4755,0.5878,0.6545,-0.6545,0.5878,0.4755,-0.7694,0.5878,0.25,-0.809,0.5878,0.0,-0.7694,0.5878,-0.25,-0.6545,0.5878,-0.4755,-0.4755,0.5878,-0.6545,-0.25,0.5878,-0.7694,0.0,0.5878,-0.809,0.25,0.5878,-0.7694,0.4755,0.5878,-0.6545,0.6545,0.5878,-0.4755,0.7694,0.5878,-0.25,0.809,0.5878,0.0,0.7694,0.5878,0.25,0.6725,0.7071,0.2185,0.5721,0.7071,0.4156,0.4156,0.7071,0.5721,0.2185,0.7071,0.6725,0.0,0.7071,0.7071,-0.2185,0.7071,0.6725,-0.4156,0.7071,0.5721,-0.5721,0.7071,0.4156,-0.6725,0.7071,0.2185,-0.7071,0.7071,0.0,-0.6725,0.7071,-0.2185,-0.5721,0.7071,-0.4156,-0.4156,0.7071,-0.5721,-0.2185,0.7071,-0.6725,0.0,0.7071,-0.7071,0.2185,0.7071,-0.6725,0.4156,0.7071,-0.5721,0.5721,0.7071,-0.4156,0.6725,0.7071,-0.2185,0.7071,0.7071,0.0,0.6725,0.7071,0.2185,0.559,0.809,0.1816,0.4755,0.809,0.3455,0.3455,0.809,0.4755,0.1816,0.809,0.559,0.0,0.809,0.5878,-0.1816,0.809,0.559,-0.3455,0.809,0.4755,-0.4755,0.809,0.3455,-0.559,0.809,0.1816,-0.5878,0.809,0.0,-0.559,0.809,-0.1816,-0.4755,0.809,-0.3455,-0.3455,0.809,-0.4755,-0.1816,0.809,-0.559,0.0,0.809,-0.5878,0.1816,0.809,-0.559,0.3455,0.809,-0.4755,0.4755,0.809,-0.3455,0.559,0.809,-0.1816,0.5878,0.809,0.0,0.559,0.809,0.1816,0.4318,0.891,0.1403,0.3673,0.891,0.2668,0.2668,0.891,0.3673,0.1403,0.891,0.4318,0.0,0.891,0.454,-0.1403,0.891,0.4318,-0.2668,0.891,0.3673,-0.3673,0.891,0.2668,-0.4318,0.891,0.1403,-0.454,0.891,0.0,-0.4318,0.891,-0.1403,-0.3673,0.891,-0.2668,-0.2668,0.891,-0.3673,-0.1403,0.891,-0.4318,0.0,0.891,-0.454,0.1403,0.891,-0.4318,0.2668,0.891,-0.3673,0.3673,0.891,-0.2668,0.4318,0.891,-0.1403,0.454,0.891,0.0,0.4318,0.891,0.1403,0.2939,0.9511,0.0955,0.25,0.9511,0.1816,0.1816,0.9511,0.25,0.0955,0.9511,0.2939,0.0,0.9511,0.309,-0.0955,0.9511,0.2939,-0.1816,0.9511,0.25,-0.25,0.9511,0.1816,-0.2939,0.9511,0.0955,-0.309,0.9511,0.0,-0.2939,0.9511,-0.0955,-0.25,0.9511,-0.1816,-0.1816,0.9511,-0.25,-0.0955,0.9511,-0.2939,0.0,0.9511,-0.309,0.0955,0.9511,-0.2939,0.1816,0.9511,-0.25,0.25,0.9511,-0.1816,0.2939,0.9511,-0.0955,0.309,0.9511,0.0,0.2939,0.9511,0.0955,0.1488,0.9877,0.0483,0.1266,0.9877,0.0919,0.0919,0.9877,0.1266,0.0483,0.9877,0.1488,0.0,0.9877,0.1564,-0.0483,0.9877,0.1488,-0.0919,0.9877,0.1266,-0.1266,0.9877,0.0919,-0.1488,0.9877,0.0483,-0.1564,0.9877,0.0,-0.1488,0.9877,-0.0483,-0.1266,0.9877,-0.0919,-0.0919,0.9877,-0.1266,-0.0483,0.9877,-0.1488,0.0,0.9877,-0.1564,0.0483,0.9877,-0.1488,0.0919,0.9877,-0.1266,0.1266,0.9877,-0.0919,0.1488,0.9877,-0.0483,0.1564,0.9877,0.0,0.1488,0.9877,0.0483,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0],"normals":[0.1906,-0.9797,0.0619,0.1621,-0.9797,0.1178,0.3173,-0.9427,0.1031,0.2699,-0.9427,0.1961,0.1178,-0.9797,0.1621,0.1961,-0.9427,0.2699,0.0619,-0.9797,0.1906,0.1031,-0.9427,0.3173,0.0,-0.9797,0.2004,0.0,-0.9427,0.3336,-0.0619,-0.9797,0.1906,-0.1031,-0.9427,0.3173,-0.1178,-0.9797,0.1621,-0.1961,-0.9427,0.2699,-0.1621,-0.9797,0.1178,-0.2699,-0.9427,0.1961,-0.1906,-0.9797,0.0619,-0.3173,-0.9427,0.1031,-0.2004,-0.9797,0.0,-0.3336,-0.9427,0.0,-0.1906,-0.9797,-0.0619,-0.3173,-0.9427,-0.1031,-0.1621,-0.9797,-0.1178,-0.2699,-0.9427,-0.1961,-0.1178,-0.9797,-0.1621,-0.1961,-0.9427,-0.2699,-0.0619,-0.9797,-0.1906,-0.1031,-0.9427,-0.3173,0.0,-0.9797,-0.2004,0.0,-0.9427,-0.3336,0.0619,-0.9797,-0.1906,0.1031,-0.9427,-0.3173,0.1178,-0.9797,-0.1621,0.1961,-0.9427,-0.2699,0.1621,-0.9797,-0.1178,0.2699,-0.9427,-0.1961,0.1906,-0.9797,-0.0619,0.3173,-0.9427,-0.1031,0.2004,-0.9797,0.0,0.3336,-0.9427,0.0,0.1906,-0.9797,0.0619,0.3173,-0.9427,0.1031,0.4477,-0.8823,0.1455,0.3808,-0.8823,0.2767,0.2767,-0.8823,0.3808,0.1455,-0.8823,0.4477,0.0,-0.8823,0.4708,-0.1455,-0.8823,0.4477,-0.2767,-0.8823,0.3808,-0.3808,-0.8823,0.2767,-0.4477,-0.8823,0.1455,-0.4708,-0.8823,0.0,-0.4477,-0.8823,-0.1455,-0.3808,-0.8823,-0.2767,-0.2767,-0.8823,-0.3808,-0.1455,-0.8823,-0.4477,0.0,-0.8823,-0.4708,0.1455,-0.8823,-0.4477,0.2767,-0.8823,-0.3808,0.3808,-0.8823,-0.2767,0.4477,-0.8823,-0.1455,0.4708,-0.8823,0.0,0.4477,-0.8823,0.1455,0.5703,-0.8003,0.1853,0.4851,-0.8003,0.3525,0.3525,-0.8003,0.4851,0.1853,-0.8003,0.5703,0.0,-0.8003,0.5997,-0.1853,-0.8003,0.5703,-0.3525,-0.8003,0.4851,-0.4851,-0.8003,0.3525,-0.5703,-0.8003,0.1853,-0.5997,-0.8003,0.0,-0.5703,-0.8003,-0.1853,-0.4851,-0.8003,-0.3525,-0.3525,-0.8003,-0.4851,-0.1853,-0.8003,-0.5703,0.0,-0.8003,-0.5997,0.1853,-0.8003,-0.5703,0.3525,-0.8003,-0.4851,0.4851,-0.8003,-0.3525,0.5703,-0.8003,-0.1853,0.5997,-0.8003,0.0,0.5703,-0.8003,0.1853,0.6803,-0.6988,0.221,0.5787,-0.6988,0.4205,0.4205,-0.6988,0.5787,0.221,-0.6988,0.6803,0.0,-0.6988,0.7153,-0.221,-0.6988,0.6803,-0.4205,-0.6988,0.5787,-0.5787,-0.6988,0.4205,-0.6803,-0.6988,0.221,-0.7153,-0.6988,0.0,-0.6803,-0.6988,-0.221,-0.5787,-0.6988,-0.4205,-0.4205,-0.6988,-0.5787,-0.221,-0.6988,-0.6803,0.0,-0.6988,-0.7153,0.221,-0.6988,-0.6803,0.4205,-0.6988,-0.5787,0.5787,-0.6988,-0.4205,0.6803,-0.6988,-0.221,0.7153,-0.6988,0.0,0.6803,-0.6988,0.221,0.7745,-0.5804,0.2516,0.6588,-0.5804,0.4787,0.4787,-0.5804,0.6588,0.2516,-0.5804,0.7745,0.0,-0.5804,0.8143,-0.2516,-0.5804,0.7745,-0.4787,-0.5804,0.6588,-0.6588,-0.5804,0.4787,-0.7745,-0.5804,0.2516,-0.8143,-0.5804,0.0,-0.7745,-0.5804,-0.2516,-0.6588,-0.5804,-0.4787,-0.4787,-0.5804,-0.6588,-0.2516,-0.5804,-0.7745,0.0,-0.5804,-0.8143,0.2516,-0.5804,-0.7745,0.4787,-0.5804,-0.6588,0.6588,-0.5804,-0.4787,0.7745,-0.5804,-0.2516,0.8143,-0.5804,0.0,0.7745,-0.5804,0.2516,0.8503,-0.448,0.2763,0.7233,-0.448,0.5255,0.5255,-0.448,0.7233,0.2763,-0.448,0.8503,0.0,-0.448,0.894,-0.2763,-0.448,0.8503,-0.5255,-0.448,0.7233,-0.7233,-0.448,0.5255,-0.8503,-0.448,0.2763,-0.894,-0.448,0.0,-0.8503,-0.448,-0.2763,-0.7233,-0.448,-0.5255,-0.5255,-0.448,-0.7233,-0.2763,-0.448,-0.8503,0.0,-0.448,-0.894,0.2763,-0.448,-0.8503,0.5255,-0.448,-0.7233,0.7233,-0.448,-0.5255,0.8503,-0.448,-0.2763,0.894,-0.448,0.0,0.8503,-0.448,0.2763,0.9058,-0.3048,0.2943,0.7705,-0.3048,0.5598,0.5598,-0.3048,0.7705,0.2943,-0.3048,0.9058,0.0,-0.3048,0.9524,-0.2943,-0.3048,0.9058,-0.5598,-0.3048,0.7705,-0.7705,-0.3048,0.5598,-0.9058,-0.3048,0.2943,-0.9524,-0.3048,0.0,-0.9058,-0.3048,-0.2943,-0.7705,-0.3048,-0.5598,-0.5598,-0.3048,-0.7705,-0.2943,-0.3048,-0.9058,0.0,-0.3048,-0.9524,0.2943,-0.3048,-0.9058,0.5598,-0.3048,-0.7705,0.7705,-0.3048,-0.5598,0.9058,-0.3048,-0.2943,0.9524,-0.3048,0.0,0.9058,-0.3048,0.2943,0.9397,-0.1542,0.3053,0.7993,-0.1542,0.5808,0.5808,-0.1542,0.7993,0.3053,-0.1542,0.9397,0.0,-0.1542,0.988,-0.3053,-0.1542,0.9397,-0.5808,-0.1542,0.7993,-0.7993,-0.1542,0.5808,-0.9397,-0.1542,0.3053,-0.988,-0.1542,0.0,-0.9397,-0.1542,-0.3053,-0.7993,-0.1542,-0.5808,-0.5808,-0.1542,-0.7993,-0.3053,-0.1542,-0.9397,0.0,-0.1542,-0.988,0.3053,-0.1542,-0.9397,0.5808,-0.1542,-0.7993,0.7993,-0.1542,-0.5808,0.9397,-0.1542,-0.3053,0.988,-0.1542,0.0,0.9397,-0.1542,0.3053,0.9511,0.0,0.309,0.809,0.0,0.5878,0.5878,0.0,0.809,0.309,0.0,0.9511,0.0,0.0,1.0,-0.309,0.0,0.9511,-0.5878,0.0,0.809,-0.809,0.0,0.5878,-0.9511,0.0,0.309,-1.0,0.0,0.0,-0.9511,0.0,-0.309,-0.809,0.0,-0.5878,-0.5878,0.0,-0.809,-0.309,0.0,-0.9511,0.0,0.0,-1.0,0.309,0.0,-0.9511,0.5878,0.0,-0.809,0.809,0.0,-0.5878,0.9511,0.0,-0.309,1.0,0.0,0.0,0.9511,0.0,0.309,0.9397,0.1542,0.3053,0.7993,0.1542,0.5808,0.5808,0.1542,0.7993,0.3053,0.1542,0.9397,0.0,0.1542,0.988,-0.3053,0.1542,0.9397,-0.5808,0.1542,0.7993,-0.7993,0.1542,0.5808,-0.9397,0.1542,0.3053,-0.988,0.1542,0.0,-0.9397,0.1542,-0.3053,-0.7993,0.1542,-0.5808,-0.5808,0.1542,-0.7993,-0.3053,0.1542,-0.9397,0.0,0.1542,-0.988,0.3053,0.1542,-0.9397,0.5808,0.1542,-0.7993,0.7993,0.1542,-0.5808,0.9397,0.1542,-0.3053,0.988,0.1542,0.0,0.9397,0.1542,0.3053,0.9058,0.3048,0.2943,0.7705,0.3048,0.5598,0.5598,0.3048,0.7705,0.2943,0.3048,0.9058,0.0,0.3048,0.9524,-0.2943,0.3048,0.9058,-0.5598,0.3048,0.7705,-0.7705,0.3048,0.5598,-0.9058,0.3048,0.2943,-0.9524,0.3048,0.0,-0.9058,0.3048,-0.2943,-0.7705,0.3048,-0.5598,-0.5598,0.3048,-0.7705,-0.2943,0.3048,-0.9058,0.0,0.3048,-0.9524,0.2943,0.3048,-0.9058,0.5598,0.3048,-0.7705,0.7705,0.3048,-0.5598,0.9058,0.3048,-0.2943,0.9524,0.3048,0.0,0.9058,0.3048,0.2943,0.8503,0.448,0.2763,0.7233,0.448,0.5255,0.5255,0.448,0.7233,0.2763,0.448,0.8503,0.0,0.448,0.894,-0.2763,0.448,0.8503,-0.5255,0.448,0.7233,-0.7233,0.448,0.5255,-0.8503,0.448,0.2763,-0.894,0.448,0.0,-0.8503,0.448,-0.2763,-0.7233,0.448,-0.5255,-0.5255,0.448,-0.7233,-0.2763,0.448,-0.8503,0.0,0.448,-0.894,0.2763,0.448,-0.8503,0.5255,0.448,-0.7233,0.7233,0.448,-0.5255,0.8503,0.448,-0.2763,0.894,0.448,0.0,0.8503,0.448,0.2763,0.7745,0.5804,0.2516,0.6588,0.5804,0.4787,0.4787,0.5804,0.6588,0.2516,0.5804,0.7745,0.0,0.5804,0.8143,-0.2516,0.5804,0.7745,-0.4787,0.5804,0.6588,-0.6588,0.5804,0.4787,-0.7745,0.5804,0.2516,-0.8143,0.5804,0.0,-0.7745,0.5804,-0.2516,-0.6588,0.5804,-0.4787,-0.4787,0.5804,-0.6588,-0.2516,0.5804,-0.7745,0.0,0.5804,-0.8143,0.2516,0.5804,-0.7745,0.4787,0.5804,-0.6588,0.6588,0.5804,-0.4787,0.7745,0.5804,-0.2516,0.8143,0.5804,0.0,0.7745,0.5804,0.2516,0.6803,0.6988,0.221,0.5787,0.6988,0.4205,0.4205,0.6988,0.5787,0.221,0.6988,0.6803,0.0,0.6988,0.7153,-0.221,0.6988,0.6803,-0.4205,0.6988,0.5787,-0.5787,0.6988,0.4205,-0.6803,0.6988,0.221,-0.7153,0.6988,0.0,-0.6803,0.6988,-0.221,-0.5787,0.6988,-0.4205,-0.4205,0.6988,-0.5787,-0.221,0.6988,-0.6803,0.0,0.6988,-0.7153,0.221,0.6988,-0.6803,0.4205,0.6988,-0.5787,0.5787,0.6988,-0.4205,0.6803,0.6988,-0.221,0.7153,0.6988,0.0,0.6803,0.6988,0.221,0.5703,0.8003,0.1853,0.4851,0.8003,0.3525,0.3525,0.8003,0.4851,0.1853,0.8003,0.5703,0.0,0.8003,0.5997,-0.1853,0.8003,0.5703,-0.3525,0.8003,0.4851,-0.4851,0.8003,0.3525,-0.5703,0.8003,0.1853,-0.5997,0.8003,0.0,-0.5703,0.8003,-0.1853,-0.4851,0.8003,-0.3525,-0.3525,0.8003,-0.4851,-0.1853,0.8003,-0.5703,0.0,0.8003,-0.5997,0.1853,0.8003,-0.5703,0.3525,0.8003,-0.4851,0.4851,0.8003,-0.3525,0.5703,0.8003,-0.1853,0.5997,0.8003,0.0,0.5703,0.8003,0.1853,0.4477,0.8823,0.1455,0.3808,0.8823,0.2767,0.2767,0.8823,0.3808,0.1455,0.8823,0.4477,0.0,0.8823,0.4708,-0.1455,0.8823,0.4477,-0.2767,0.8823,0.3808,-0.3808,0.8823,0.2767,-0.4477,0.8823,0.1455,-0.4708,0.8823,0.0,-0.4477,0.8823,-0.1455,-0.3808,0.8823,-0.2767,-0.2767,0.8823,-0.3808,-0.1455,0.8823,-0.4477,0.0,0.8823,-0.4708,0.1455,0.8823,-0.4477,0.2767,0.8823,-0.3808,0.3808,0.8823,-0.2767,0.4477,0.8823,-0.1455,0.4708,0.8823,0.0,0.4477,0.8823,0.1455,0.3173,0.9427,0.1031,0.2699,0.9427,0.1961,0.1961,0.9427,0.2699,0.1031,0.9427,0.3173,0.0,0.9427,0.3336,-0.1031,0.9427,0.3173,-0.1961,0.9427,0.2699,-0.2699,0.9427,0.1961,-0.3173,0.9427,0.1031,-0.3336,0.9427,0.0,-0.3173,0.9427,-0.1031,-0.2699,0.9427,-0.1961,-0.1961,0.9427,-0.2699,-0.1031,0.9427,-0.3173,0.0,0.9427,-0.3336,0.1031,0.9427,-0.3173,0.1961,0.9427,-0.2699,0.2699,0.9427,-0.1961,0.3173,0.9427,-0.1031,0.3336,0.9427,0.0,0.3173,0.9427,0.1031,0.1906,0.9797,0.0619,0.1621,0.9797,0.1178,0.1178,0.9797,0.1621,0.0619,0.9797,0.1906,0.0,0.9797,0.2004,-0.0619,0.9797,0.1906,-0.1178,0.9797,0.1621,-0.1621,0.9797,0.1178,-0.1906,0.9797,0.0619,-0.2004,0.9797,0.0,-0.1906,0.9797,-0.0619,-0.1621,0.9797,-0.1178,-0.1178,0.9797,-0.1621,-0.0619,0.9797,-0.1906,0.0,0.9797,-0.2004,0.0619,0.9797,-0.1906,0.1178,0.9797,-0.1621,0.1621,0.9797,-0.1178,0.1906,0.9797,-0.0619,0.2004,0.9797,0.0,0.1906,0.9797,0.0619,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0],"tangents":[-0.4482,-0.0307,0.8934,-1.0,-0.5629,0.0062,0.8265,-1.0,-0.438,-0.0493,0.8976,-1.0,-0.5878,0.0,0.809,-1.0,-0.7908,0.0062,0.6121,-1.0,-0.809,0.0,0.5878,-1.0,-0.9412,0.0062,0.3378,-1.0,-0.9511,0.0,0.309,-1.0,-0.9995,0.0062,0.0304,-1.0,-1.0,0.0,0.0,-1.0,-0.96,0.0062,-0.28,-1.0,-0.9511,0.0,-0.309,-1.0,-0.8265,0.0062,-0.5629,-1.0,-0.809,0.0,-0.5878,-1.0,-0.6121,0.0062,-0.7908,-1.0,-0.5878,0.0,-0.809,-1.0,-0.3378,0.0062,-0.9412,-1.0,-0.309,0.0,-0.9511,-1.0,-0.0304,0.0062,-0.9995,-1.0,0.0,0.0,-1.0,-1.0,0.28,0.0062,-0.96,-1.0,0.309,0.0,-0.9511,-1.0,0.5629,0.0062,-0.8265,-1.0,0.5878,0.0,-0.809,-1.0,0.7908,0.0062,-0.6121,-1.0,0.809,0.0,-0.5878,-1.0,0.9412,0.0062,-0.3378,-1.0,0.9511,0.0,-0.309,-1.0,0.9995,0.0062,-0.0304,-1.0,1.0,0.0,0.0,-1.0,0.96,0.0062,0.28,-1.0,0.9511,0.0,0.309,-1.0,0.8265,0.0062,0.5629,-1.0,0.809,0.0,0.5878,-1.0,0.6121,0.0062,0.7908,-1.0,0.5878,0.0,0.809,-1.0,0.3378,0.0062,0.9412,-1.0,0.309,0.0,0.9511,-1.0,0.0304,0.0062,0.9995,-1.0,0.0,0.0,1.0,-1.0,-0.1625,0.0307,0.9862,-1.0,-0.1732,0.0493,0.9836,-1.0,-0.4222,-0.0651,0.9042,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.1899,0.0651,0.9796,-1.0,-0.4023,-0.0754,0.9124,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.2109,0.0754,0.9746,-1.0,-0.3802,-0.0787,0.9215,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.234,0.0787,0.969,-1.0,-0.3582,-0.0745,0.9306,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.2572,0.0745,0.9635,-1.0,-0.3384,-0.0633,0.9389,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.2781,0.0633,0.9585,-1.0,-0.3226,-0.0459,0.9454,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.2947,0.0459,0.9545,-1.0,-0.3125,-0.0241,0.9496,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.3053,0.0241,0.9519,-1.0,-0.309,0.0,0.9511,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.309,0.0,0.9511,-1.0,-0.3125,0.0241,0.9496,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.3053,-0.0241,0.9519,-1.0,-0.3226,0.0459,0.9454,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.2947,-0.0459,0.9545,-1.0,-0.3384,0.0633,0.9389,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.2781,-0.0633,0.9585,-1.0,-0.3582,0.0745,0.9306,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.2572,-0.0745,0.9635,-1.0,-0.3802,0.0787,0.9215,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.234,-0.0787,0.969,-1.0,-0.4023,0.0754,0.9124,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.2109,-0.0754,0.9746,-1.0,-0.4222,0.0651,0.9042,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.1899,-0.0651,0.9796,-1.0,-0.438,0.0493,0.8976,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.1732,-0.0493,0.9836,-1.0,-0.4482,0.0307,0.8934,-1.0,-0.6121,0.0062,0.7908,-1.0,-0.8265,0.0062,0.5629,-1.0,-0.96,0.0062,0.28,-1.0,-0.9995,0.0062,-0.0304,-1.0,-0.9412,0.0062,-0.3378,-1.0,-0.7908,0.0062,-0.6121,-1.0,-0.5629,0.0062,-0.8265,-1.0,-0.28,0.0062,-0.96,-1.0,0.0304,0.0062,-0.9995,-1.0,0.3378,0.0062,-0.9412,-1.0,0.6121,0.0062,-0.7908,-1.0,0.8265,0.0062,-0.5629,-1.0,0.96,0.0062,-0.28,-1.0,0.9995,0.0062,0.0304,-1.0,0.9412,0.0062,0.3378,-1.0,0.7908,0.0062,0.6121,-1.0,0.5629,0.0062,0.8265,-1.0,0.28,0.0062,0.96,-1.0,-0.0304,0.0062,0.9995,-1.0,-0.1625,-0.0307,0.9862,-1.0,-0.454,0.0,0.891,-1.0,-0.7071,0.0,0.7071,-1.0,-0.891,0.0,0.454,-1.0,-0.9877,0.0,0.1564,-1.0,-0.9877,0.0,-0.1564,-1.0,-0.891,0.0,-0.454,-1.0,-0.7071,0.0,-0.7071,-1.0,-0.454,0.0,-0.891,-1.0,-0.1564,0.0,-0.9877,-1.0,0.1564,0.0,-0.9877,-1.0,0.454,0.0,-0.891,-1.0,0.7071,0.0,-0.7071,-1.0,0.891,0.0,-0.454,-1.0,0.9877,0.0,-0.1564,-1.0,0.9877,0.0,0.1564,-1.0,0.891,0.0,0.454,-1.0,0.7071,0.0,0.7071,-1.0,0.454,0.0,0.891,-1.0,0.1564,0.0,0.9877,-1.0,-0.1564,0.0,0.9877,-1.0,-0.454,0.0,0.891,-1.0,-0.7071,0.0,0.7071,-1.0,-0.891,0.0,0.454,-1.0,-0.9877,0.0,0.1564,-1.0,-0.9877,0.0,-0.1564,-1.0,-0.891,0.0,-0.454,-1.0,-0.7071,0.0,-0.7071,-1.0,-0.454,0.0,-0.891,-1.0,-0.1564,0.0,-0.9877,-1.0,0.1564,0.0,-0.9877,-1.0,0.454,0.0,-0.891,-1.0,0.7071,0.0,-0.7071,-1.0,0.891,0.0,-0.454,-1.0,0.9877,0.0,-0.1564,-1.0,0.9877,0.0,0.1564,-1.0,0.891,0.0,0.454,-1.0,0.7071,0.0,0.7071,-1.0,0.454,0.0,0.891,-1.0,0.1564,0.0,0.9877,-1.0,-0.1564,0.0,0.9877,-1.0],"uvs":[0.0,0.05,0.05,0.05,0.0,0.1,0.05,0.1,0.1,0.05,0.1,0.1,0.15,0.05,0.15,0.1,0.2,0.05,0.2,0.1,0.25,0.05,0.25,0.1,0.3,0.05,0.3,0.1,0.35,0.05,0.35,0.1,0.4,0.05,0.4,0.1,0.45,0.05,0.45,0.1,0.5,0.05,0.5,0.1,0.55,0.05,0.55,0.1,0.6,0.05,0.6,0.1,0.65,0.05,0.65,0.1,0.7,0.05,0.7,0.1,0.75,0.05,0.75,0.1,0.8,0.05,0.8,0.1,0.85,0.05,0.85,0.1,0.9,0.05,0.9,0.1,0.95,0.05,0.95,0.1,1.0,0.05,1.0,0.1,0.0,0.15,0.05,0.15,0.1,0.15,0.15,0.15,0.2,0.15,0.25,0.15,0.3,0.15,0.35,0.15,0.4,0.15,0.45,0.15,0.5,0.15,0.55,0.15,0.6,0.15,0.65,0.15,0.7,0.15,0.75,0.15,0.8,0.15,0.85,0.15,0.9,0.15,0.95,0.15,1.0,0.15,0.0,0.2,0.05,0.2,0.1,0.2,0.15,0.2,0.2,0.2,0.25,0.2,0.3,0.2,0.35,0.2,0.4,0.2,0.45,0.2,0.5,0.2,0.55,0.2,0.6,0.2,0.65,0.2,0.7,0.2,0.75,0.2,0.8,0.2,0.85,0.2,0.9,0.2,0.95,0.2,1.0,0.2,0.0,0.25,0.05,0.25,0.1,0.25,0.15,0.25,0.2,0.25,0.25,0.25,0.3,0.25,0.35,0.25,0.4,0.25,0.45,0.25,0.5,0.25,0.55,0.25,0.6,0.25,0.65,0.25,0.7,0.25,0.75,0.25,0.8,0.25,0.85,0.25,0.9,0.25,0.95,0.25,1.0,0.25,0.0,0.3,0.05,0.3,0.1,0.3,0.15,0.3,0.2,0.3,0.25,0.3,0.3,0.3,0.35,0.3,0.4,0.3,0.45,0.3,0.5,0.3,0.55,0.3,0.6,0.3,0.65,0.3,0.7,0.3,0.75,0.3,0.8,0.3,0.85,0.3,0.9,0.3,0.95,0.3,1.0,0.3,0.0,0.35,0.05,0.35,0.1,0.35,0.15,0.35,0.2,0.35,0.25,0.35,0.3,0.35,0.35,0.35,0.4,0.35,0.45,0.35,0.5,0.35,0.55,0.35,0.6,0.35,0.65,0.35,0.7,0.35,0.75,0.35,0.8,0.35,0.85,0.35,0.9,0.35,0.95,0.35,1.0,0.35,0.0,0.4,0.05,0.4,0.1,0.4,0.15,0.4,0.2,0.4,0.25,0.4,0.3,0.4,0.35,0.4,0.4,0.4,0.45,0.4,0.5,0.4,0.55,0.4,0.6,0.4,0.65,0.4,0.7,0.4,0.75,0.4,0.8,0.4,0.85,0.4,0.9,0.4,0.95,0.4,1.0,0.4,0.0,0.45,0.05,0.45,0.1,0.45,0.15,0.45,0.2,0.45,0.25,0.45,0.3,0.45,0.35,0.45,0.4,0.45,0.45,0.45,0.5,0.45,0.55,0.45,0.6,0.45,0.65,0.45,0.7,0.45,0.75,0.45,0.8,0.45,0.85,0.45,0.9,0.45,0.95,0.45,1.0,0.45,0.0,0.5,0.05,0.5,0.1,0.5,0.15,0.5,0.2,0.5,0.25,0.5,0.3,0.5,0.35,0.5,0.4,0.5,0.45,0.5,0.5,0.5,0.55,0.5,0.6,0.5,0.65,0.5,0.7,0.5,0.75,0.5,0.8,0.5,0.85,0.5,0.9,0.5,0.95,0.5,1.0,0.5,0.0,0.55,0.05,0.55,0.1,0.55,0.15,0.55,0.2,0.55,0.25,0.55,0.3,0.55,0.35,0.55,0.4,0.55,0.45,0.55,0.5,0.55,0.55,0.55,0.6,0.55,0.65,0.55,0.7,0.55,0.75,0.55,0.8,0.55,0.85,0.55,0.9,0.55,0.95,0.55,1.0,0.55,0.0,0.6,0.05,0.6,0.1,0.6,0.15,0.6,0.2,0.6,0.25,0.6,0.3,0.6,0.35,0.6,0.4,0.6,0.45,0.6,0.5,0.6,0.55,0.6,0.6,0.6,0.65,0.6,0.7,0.6,0.75,0.6,0.8,0.6,0.85,0.6,0.9,0.6,0.95,0.6,1.0,0.6,0.0,0.65,0.05,0.65,0.1,0.65,0.15,0.65,0.2,0.65,0.25,0.65,0.3,0.65,0.35,0.65,0.4,0.65,0.45,0.65,0.5,0.65,0.55,0.65,0.6,0.65,0.65,0.65,0.7,0.65,0.75,0.65,0.8,0.65,0.85,0.65,0.9,0.65,0.95,0.65,1.0,0.65,0.0,0.7,0.05,0.7,0.1,0.7,0.15,0.7,0.2,0.7,0.25,0.7,0.3,0.7,0.35,0.7,0.4,0.7,0.45,0.7,0.5,0.7,0.55,0.7,0.6,0.7,0.65,0.7,0.7,0.7,0.75,0.7,0.8,0.7,0.85,0.7,0.9,0.7,0.95,0.7,1.0,0.7,0.0,0.75,0.05,0.75,0.1,0.75,0.15,0.75,0.2,0.75,0.25,0.75,0.3,0.75,0.35,0.75,0.4,0.75,0.45,0.75,0.5,0.75,0.55,0.75,0.6,0.75,0.65,0.75,0.7,0.75,0.75,0.75,0.8,0.75,0.85,0.75,0.9,0.75,0.95,0.75,1.0,0.75,0.0,0.8,0.05,0.8,0.1,0.8,0.15,0.8,0.2,0.8,0.25,0.8,0.3,0.8,0.35,0.8,0.4,0.8,0.45,0.8,0.5,0.8,0.55,0.8,0.6,0.8,0.65,0.8,0.7,0.8,0.75,0.8,0.8,0.8,0.85,0.8,0.9,0.8,0.95,0.8,1.0,0.8,0.0,0.85,0.05,0.85,0.1,0.85,0.15,0.85,0.2,0.85,0.25,0.85,0.3,0.85,0.35,0.85,0.4,0.85,0.45,0.85,0.5,0.85,0.55,0.85,0.6,0.85,0.65,0.85,0.7,0.85,0.75,0.85,0.8,0.85,0.85,0.85,0.9,0.85,0.95,0.85,1.0,0.85,0.0,0.9,0.05,0.9,0.1,0.9,0.15,0.9,0.2,0.9,0.25,0.9,0.3,0.9,0.35,0.9,0.4,0.9,0.45,0.9,0.5,0.9,0.55,0.9,0.6,0.9,0.65,0.9,0.7,0.9,0.75,0.9,0.8,0.9,0.85,0.9,0.9,0.9,0.95,0.9,1.0,0.9,0.0,0.95,0.05,0.95,0.1,0.95,0.15,0.95,0.2,0.95,0.25,0.95,0.3,0.95,0.35,0.95,0.4,0.95,0.45,0.95,0.5,0.95,0.55,0.95,0.6,0.95,0.65,0.95,0.7,0.95,0.75,0.95,0.8,0.95,0.85,0.95,0.9,0.95,0.95,0.95,1.0,0.95,0.025,0.0,0.075,0.0,0.125,0.0,0.175,0.0,0.225,0.0,0.275,0.0,0.325,0.0,0.375,0.0,0.425,0.0,0.475,0.0,0.525,0.0,0.575,0.0,0.625,0.0,0.675,0.0,0.725,0.0,0.775,0.0,0.825,0.0,0.875,0.0,0.925,0.0,0.975,0.0,0.025,1.0,0.075,1.0,0.125,1.0,0.175,1.0,0.225,1.0,0.275,1.0,0.325,1.0,0.375,1.0,0.425,1.0,0.475,1.0,0.525,1.0,0.575,1.0,0.625,1.0,0.675,1.0,0.725,1.0,0.775,1.0,0.825,1.0,0.875,1.0,0.925,1.0,0.975,1.0],"uvs2":null,"colors":null,"hasVertexAlpha":false,"matricesIndices":null,"matricesWeights":null,"matricesIndicesExtra":null,"matricesWeightsExtra":null,"indices":[0,1,2,2,1,3,1,4,3,3,4,5,4,6,5,5,6,7,6,8,7,7,8,9,8,10,9,9,10,11,10,12,11,11,12,13,12,14,13,13,14,15,14,16,15,15,16,17,16,18,17,17,18,19,18,20,19,19,20,21,20,22,21,21,22,23,22,24,23,23,24,25,24,26,25,25,26,27,26,28,27,27,28,29,28,30,29,29,30,31,30,32,31,31,32,33,32,34,33,33,34,35,34,36,35,35,36,37,36,38,37,37,38,39,38,40,39,39,40,41,2,3,42,42,3,43,3,5,43,43,5,44,5,7,44,44,7,45,7,9,45,45,9,46,9,11,46,46,11,47,11,13,47,47,13,48,13,15,48,48,15,49,15,17,49,49,17,50,17,19,50,50,19,51,19,21,51,51,21,52,21,23,52,52,23,53,23,25,53,53,25,54,25,27,54,54,27,55,27,29,55,55,29,56,29,31,56,56,31,57,31,33,57,57,33,58,33,35,58,58,35,59,35,37,59,59,37,60,37,39,60,60,39,61,39,41,61,61,41,62,42,43,63,63,43,64,43,44,64,64,44,65,44,45,65,65,45,66,45,46,66,66,46,67,46,47,67,67,47,68,47,48,68,68,48,69,48,49,69,69,49,70,49,50,70,70,50,71,50,51,71,71,51,72,51,52,72,72,52,73,52,53,73,73,53,74,53,54,74,74,54,75,54,55,75,75,55,76,55,56,76,76,56,77,56,57,77,77,57,78,57,58,78,78,58,79,58,59,79,79,59,80,59,60,80,80,60,81,60,61,81,81,61,82,61,62,82,82,62,83,63,64,84,84,64,85,64,65,85,85,65,86,65,66,86,86,66,87,66,67,87,87,67,88,67,68,88,88,68,89,68,69,89,89,69,90,69,70,90,90,70,91,70,71,91,91,71,92,71,72,92,92,72,93,72,73,93,93,73,94,73,74,94,94,74,95,74,75,95,95,75,96,75,76,96,96,76,97,76,77,97,97,77,98,77,78,98,98,78,99,78,79,99,99,79,100,79,80,100,100,80,101,80,81,101,101,81,102,81,82,102,102,82,103,82,83,103,103,83,104,84,85,105,105,85,106,85,86,106,106,86,107,86,87,107,107,87,108,87,88,108,108,88,109,88,89,109,109,89,110,89,90,110,110,90,111,90,91,111,111,91,112,91,92,112,112,92,113,92,93,113,113,93,114,93,94,114,114,94,115,94,95,115,115,95,116,95,96,116,116,96,117,96,97,117,117,97,118,97,98,118,118,98,119,98,99,119,119,99,120,99,100,120,120,100,121,100,101,121,121,101,122,101,102,122,122,102,123,102,103,123,123,103,124,103,104,124,124,104,125,105,106,126,126,106,127,106,107,127,127,107,128,107,108,128,128,108,129,108,109,129,129,109,130,109,110,130,130,110,131,110,111,131,131,111,132,111,112,132,132,112,133,112,113,133,133,113,134,113,114,134,134,114,135,114,115,135,135,115,136,115,116,136,136,116,137,116,117,137,137,117,138,117,118,138,138,118,139,118,119,139,139,119,140,119,120,140,140,120,141,120,121,141,141,121,142,121,122,142,142,122,143,122,123,143,143,123,144,123,124,144,144,124,145,124,125,145,145,125,146,126,127,147,147,127,148,127,128,148,148,128,149,128,129,149,149,129,150,129,130,150,150,130,151,130,131,151,151,131,152,131,132,152,152,132,153,132,133,153,153,133,154,133,134,154,154,134,155,134,135,155,155,135,156,135,136,156,156,136,157,136,137,157,157,137,158,137,138,158,158,138,159,138,139,159,159,139,160,139,140,160,160,140,161,140,141,161,161,141,162,141,142,162,162,142,163,142,143,163,163,143,164,143,144,164,164,144,165,144,145,165,165,145,166,145,146,166,166,146,167,147,148,168,168,148,169,148,149,169,169,149,170,149,150,170,170,150,171,150,151,171,171,151,172,151,152,172,172,152,173,152,153,173,173,153,174,153,154,174,174,154,175,154,155,175,175,155,176,155,156,176,176,156,177,156,157,177,177,157,178,157,158,178,178,158,179,158,159,179,179,159,180,159,160,180,180,160,181,160,161,181,181,161,182,161,162,182,182,162,183,162,163,183,183,163,184,163,164,184,184,164,185,164,165,185,185,165,186,165,166,186,186,166,187,166,167,187,187,167,188,168,169,189,189,169,190,169,170,190,190,170,191,170,171,191,191,171,192,171,172,192,192,172,193,172,173,193,193,173,194,173,174,194,194,174,195,174,175,195,195,175,196,175,176,196,196,176,197,176,177,197,197,177,198,177,178,198,198,178,199,178,179,199,199,179,200,179,180,200,200,180,201,180,181,201,201,181,202,181,182,202,202,182,203,182,183,203,203,183,204,183,184,204,204,184,205,184,185,205,205,185,206,185,186,206,206,186,207,186,187,207,207,187,208,187,188,208,208,188,209,189,190,210,210,190,211,190,191,211,211,191,212,191,192,212,212,192,213,192,193,213,213,193,214,193,194,214,214,194,215,194,195,215,215,195,216,195,196,216,216,196,217,196,197,217,217,197,218,197,198,218,218,198,219,198,199,219,219,199,220,199,200,220,220,200,221,200,201,221,221,201,222,201,202,222,222,202,223,202,203,223,223,203,224,203,204,224,224,204,225,204,205,225,225,205,226,205,206,226,226,206,227,206,207,227,227,207,228,207,208,228,228,208,229,208,209,229,229,209,230,210,211,231,231,211,232,211,212,232,232,212,233,212,213,233,233,213,234,213,214,234,234,214,235,214,215,235,235,215,236,215,216,236,236,216,237,216,217,237,237,217,238,217,218,238,238,218,239,218,219,239,239,219,240,219,220,240,240,220,241,220,221,241,241,221,242,221,222,242,242,222,243,222,223,243,243,223,244,223,224,244,244,224,245,224,225,245,245,225,246,225,226,246,246,226,247,226,227,247,247,227,248,227,228,248,248,228,249,228,229,249,249,229,250,229,230,250,250,230,251,231,232,252,252,232,253,232,233,253,253,233,254,233,234,254,254,234,255,234,235,255,255,235,256,235,236,256,256,236,257,236,237,257,257,237,258,237,238,258,258,238,259,238,239,259,259,239,260,239,240,260,260,240,261,240,241,261,261,241,262,241,242,262,262,242,263,242,243,263,263,243,264,243,244,264,264,244,265,244,245,265,265,245,266,245,246,266,266,246,267,246,247,267,267,247,268,247,248,268,268,248,269,248,249,269,269,249,270,249,250,270,270,250,271,250,251,271,271,251,272,252,253,273,273,253,274,253,254,274,274,254,275,254,255,275,275,255,276,255,256,276,276,256,277,256,257,277,277,257,278,257,258,278,278,258,279,258,259,279,279,259,280,259,260,280,280,260,281,260,261,281,281,261,282,261,262,282,282,262,283,262,263,283,283,263,284,263,264,284,284,264,285,264,265,285,285,265,286,265,266,286,286,266,287,266,267,287,287,267,288,267,268,288,288,268,289,268,269,289,289,269,290,269,270,290,290,270,291,270,271,291,291,271,292,271,272,292,292,272,293,273,274,294,294,274,295,274,275,295,295,275,296,275,276,296,296,276,297,276,277,297,297,277,298,277,278,298,298,278,299,278,279,299,299,279,300,279,280,300,300,280,301,280,281,301,301,281,302,281,282,302,302,282,303,282,283,303,303,283,304,283,284,304,304,284,305,284,285,305,305,285,306,285,286,306,306,286,307,286,287,307,307,287,308,287,288,308,308,288,309,288,289,309,309,289,310,289,290,310,310,290,311,290,291,311,311,291,312,291,292,312,312,292,313,292,293,313,313,293,314,294,295,315,315,295,316,295,296,316,316,296,317,296,297,317,317,297,318,297,298,318,318,298,319,298,299,319,319,299,320,299,300,320,320,300,321,300,301,321,321,301,322,301,302,322,322,302,323,302,303,323,323,303,324,303,304,324,324,304,325,304,305,325,325,305,326,305,306,326,326,306,327,306,307,327,327,307,328,307,308,328,328,308,329,308,309,329,329,309,330,309,310,330,330,310,331,310,311,331,331,311,332,311,312,332,332,312,333,312,313,333,333,313,334,313,314,334,334,314,335,315,316,336,336,316,337,316,317,337,337,317,338,317,318,338,338,318,339,318,319,339,339,319,340,319,320,340,340,320,341,320,321,341,341,321,342,321,322,342,342,322,343,322,323,343,343,323,344,323,324,344,344,324,345,324,325,345,345,325,346,325,326,346,346,326,347,326,327,347,347,327,348,327,328,348,348,328,349,328,329,349,349,329,350,329,330,350,350,330,351,330,331,351,351,331,352,331,332,352,352,332,353,332,333,353,353,333,354,333,334,354,354,334,355,334,335,355,355,335,356,336,337,357,357,337,358,337,338,358,358,338,359,338,339,359,359,339,360,339,340,360,360,340,361,340,341,361,361,341,362,341,342,362,362,342,363,342,343,363,363,343,364,343,344,364,364,344,365,344,345,365,365,345,366,345,346,366,366,346,367,346,347,367,367,347,368,347,348,368,368,348,369,348,349,369,369,349,370,349,350,370,370,350,371,350,351,371,371,351,372,351,352,372,372,352,373,352,353,373,373,353,374,353,354,374,374,354,375,354,355,375,375,355,376,355,356,376,376,356,377,357,358,378,378,358,379,358,359,379,379,359,380,359,360,380,380,360,381,360,361,381,381,361,382,361,362,382,382,362,383,362,363,383,383,363,384,363,364,384,384,364,385,364,365,385,385,365,386,365,366,386,386,366,387,366,367,387,387,367,388,367,368,388,388,368,389,368,369,389,389,369,390,369,370,390,390,370,391,370,371,391,391,371,392,371,372,392,392,372,393,372,373,393,393,373,394,373,374,394,394,374,395,374,375,395,395,375,396,375,376,396,396,376,397,376,377,397,397,377,398,1,0,399,4,1,400,6,4,401,8,6,402,10,8,403,12,10,404,14,12,405,16,14,406,18,16,407,20,18,408,22,20,409,24,22,410,26,24,411,28,26,412,30,28,413,32,30,414,34,32,415,36,34,416,38,36,417,40,38,418,378,379,419,379,380,420,380,381,421,381,382,422,382,383,423,383,384,424,384,385,425,385,386,426,386,387,427,387,388,428,388,389,429,389,390,430,390,391,431,391,392,432,392,393,433,393,394,434,394,395,435,395,396,436,396,397,437,397,398,438],"receiveShadows":false,"infiniteDistance":false,"billboardMode":0,"visibility":1.0,"subMeshes":[{"materialIndex":0,"verticesStart":0,"verticesCount":439,"indexStart":0,"indexCount":2280}],"instances":null,"skeletonId":-1,"numBoneInfluencers":4,"applyFog":false,"lodMeshIds":null,"lodDistances":null,"lodCoverages":null,"rotation":null,"scaling":[1.0,1.0,1.0],"rotationQuaternion":[0.0,0.0,0.0,1.0],"actions":null,"checkCollisions":false,"pickable":true,"showBoundingBox":false,"showSubMeshesBoundingBox":false,"alphaIndex":0,"physicsImpostor":0,"physicsMass":0.0,"physicsFriction":0.0,"physicsRestitution":0.0,"name":"pSphere1","id":"39830D1B-4903-0C71-E956-0EBDE718A360","parentId":null,"position":[0.0,0.0,0.0],"animations":[],"autoAnimate":true,"autoAnimateFrom":1,"autoAnimateTo":200,"autoAnimateLoop":true,"metadata":{}},{"materialId":"0E49D5E9-4200-91FB-CB7B-93B40CEF850E","isEnabled":true,"isVisible":true,"positions":[0.1488,-0.9877,0.0483,0.1266,-0.9877,0.0919,0.2939,-0.9511,0.0955,0.25,-0.9511,0.1816,0.0919,-0.9877,0.1266,0.1816,-0.9511,0.25,0.0483,-0.9877,0.1488,0.0955,-0.9511,0.2939,0.0,-0.9877,0.1564,0.0,-0.9511,0.309,-0.0483,-0.9877,0.1488,-0.0955,-0.9511,0.2939,-0.0919,-0.9877,0.1266,-0.1816,-0.9511,0.25,-0.1266,-0.9877,0.0919,-0.25,-0.9511,0.1816,-0.1488,-0.9877,0.0483,-0.2939,-0.9511,0.0955,-0.1564,-0.9877,0.0,-0.309,-0.9511,0.0,-0.1488,-0.9877,-0.0483,-0.2939,-0.9511,-0.0955,-0.1266,-0.9877,-0.0919,-0.25,-0.9511,-0.1816,-0.0919,-0.9877,-0.1266,-0.1816,-0.9511,-0.25,-0.0483,-0.9877,-0.1488,-0.0955,-0.9511,-0.2939,0.0,-0.9877,-0.1564,0.0,-0.9511,-0.309,0.0483,-0.9877,-0.1488,0.0955,-0.9511,-0.2939,0.0919,-0.9877,-0.1266,0.1816,-0.9511,-0.25,0.1266,-0.9877,-0.0919,0.25,-0.9511,-0.1816,0.1488,-0.9877,-0.0483,0.2939,-0.9511,-0.0955,0.1564,-0.9877,0.0,0.309,-0.9511,0.0,0.1488,-0.9877,0.0483,0.2939,-0.9511,0.0955,0.4318,-0.891,0.1403,0.3673,-0.891,0.2668,0.2668,-0.891,0.3673,0.1403,-0.891,0.4318,0.0,-0.891,0.454,-0.1403,-0.891,0.4318,-0.2668,-0.891,0.3673,-0.3673,-0.891,0.2668,-0.4318,-0.891,0.1403,-0.454,-0.891,0.0,-0.4318,-0.891,-0.1403,-0.3673,-0.891,-0.2668,-0.2668,-0.891,-0.3673,-0.1403,-0.891,-0.4318,0.0,-0.891,-0.454,0.1403,-0.891,-0.4318,0.2668,-0.891,-0.3673,0.3673,-0.891,-0.2668,0.4318,-0.891,-0.1403,0.454,-0.891,0.0,0.4318,-0.891,0.1403,0.559,-0.809,0.1816,0.4755,-0.809,0.3455,0.3455,-0.809,0.4755,0.1816,-0.809,0.559,0.0,-0.809,0.5878,-0.1816,-0.809,0.559,-0.3455,-0.809,0.4755,-0.4755,-0.809,0.3455,-0.559,-0.809,0.1816,-0.5878,-0.809,0.0,-0.559,-0.809,-0.1816,-0.4755,-0.809,-0.3455,-0.3455,-0.809,-0.4755,-0.1816,-0.809,-0.559,0.0,-0.809,-0.5878,0.1816,-0.809,-0.559,0.3455,-0.809,-0.4755,0.4755,-0.809,-0.3455,0.559,-0.809,-0.1816,0.5878,-0.809,0.0,0.559,-0.809,0.1816,0.6725,-0.7071,0.2185,0.5721,-0.7071,0.4156,0.4156,-0.7071,0.5721,0.2185,-0.7071,0.6725,0.0,-0.7071,0.7071,-0.2185,-0.7071,0.6725,-0.4156,-0.7071,0.5721,-0.5721,-0.7071,0.4156,-0.6725,-0.7071,0.2185,-0.7071,-0.7071,0.0,-0.6725,-0.7071,-0.2185,-0.5721,-0.7071,-0.4156,-0.4156,-0.7071,-0.5721,-0.2185,-0.7071,-0.6725,0.0,-0.7071,-0.7071,0.2185,-0.7071,-0.6725,0.4156,-0.7071,-0.5721,0.5721,-0.7071,-0.4156,0.6725,-0.7071,-0.2185,0.7071,-0.7071,0.0,0.6725,-0.7071,0.2185,0.7694,-0.5878,0.25,0.6545,-0.5878,0.4755,0.4755,-0.5878,0.6545,0.25,-0.5878,0.7694,0.0,-0.5878,0.809,-0.25,-0.5878,0.7694,-0.4755,-0.5878,0.6545,-0.6545,-0.5878,0.4755,-0.7694,-0.5878,0.25,-0.809,-0.5878,0.0,-0.7694,-0.5878,-0.25,-0.6545,-0.5878,-0.4755,-0.4755,-0.5878,-0.6545,-0.25,-0.5878,-0.7694,0.0,-0.5878,-0.809,0.25,-0.5878,-0.7694,0.4755,-0.5878,-0.6545,0.6545,-0.5878,-0.4755,0.7694,-0.5878,-0.25,0.809,-0.5878,0.0,0.7694,-0.5878,0.25,0.8474,-0.454,0.2753,0.7208,-0.454,0.5237,0.5237,-0.454,0.7208,0.2753,-0.454,0.8474,0.0,-0.454,0.891,-0.2753,-0.454,0.8474,-0.5237,-0.454,0.7208,-0.7208,-0.454,0.5237,-0.8474,-0.454,0.2753,-0.891,-0.454,0.0,-0.8474,-0.454,-0.2753,-0.7208,-0.454,-0.5237,-0.5237,-0.454,-0.7208,-0.2753,-0.454,-0.8474,0.0,-0.454,-0.891,0.2753,-0.454,-0.8474,0.5237,-0.454,-0.7208,0.7208,-0.454,-0.5237,0.8474,-0.454,-0.2753,0.891,-0.454,0.0,0.8474,-0.454,0.2753,0.9045,-0.309,0.2939,0.7694,-0.309,0.559,0.559,-0.309,0.7694,0.2939,-0.309,0.9045,0.0,-0.309,0.9511,-0.2939,-0.309,0.9045,-0.559,-0.309,0.7694,-0.7694,-0.309,0.559,-0.9045,-0.309,0.2939,-0.9511,-0.309,0.0,-0.9045,-0.309,-0.2939,-0.7694,-0.309,-0.559,-0.559,-0.309,-0.7694,-0.2939,-0.309,-0.9045,0.0,-0.309,-0.9511,0.2939,-0.309,-0.9045,0.559,-0.309,-0.7694,0.7694,-0.309,-0.559,0.9045,-0.309,-0.2939,0.9511,-0.309,0.0,0.9045,-0.309,0.2939,0.9393,-0.1564,0.3052,0.7991,-0.1564,0.5805,0.5805,-0.1564,0.7991,0.3052,-0.1564,0.9393,0.0,-0.1564,0.9877,-0.3052,-0.1564,0.9393,-0.5805,-0.1564,0.7991,-0.7991,-0.1564,0.5805,-0.9393,-0.1564,0.3052,-0.9877,-0.1564,0.0,-0.9393,-0.1564,-0.3052,-0.7991,-0.1564,-0.5805,-0.5805,-0.1564,-0.7991,-0.3052,-0.1564,-0.9393,0.0,-0.1564,-0.9877,0.3052,-0.1564,-0.9393,0.5805,-0.1564,-0.7991,0.7991,-0.1564,-0.5805,0.9393,-0.1564,-0.3052,0.9877,-0.1564,0.0,0.9393,-0.1564,0.3052,0.9511,0.0,0.309,0.809,0.0,0.5878,0.5878,0.0,0.809,0.309,0.0,0.9511,0.0,0.0,1.0,-0.309,0.0,0.9511,-0.5878,0.0,0.809,-0.809,0.0,0.5878,-0.9511,0.0,0.309,-1.0,0.0,0.0,-0.9511,0.0,-0.309,-0.809,0.0,-0.5878,-0.5878,0.0,-0.809,-0.309,0.0,-0.9511,0.0,0.0,-1.0,0.309,0.0,-0.9511,0.5878,0.0,-0.809,0.809,0.0,-0.5878,0.9511,0.0,-0.309,1.0,0.0,0.0,0.9511,0.0,0.309,0.9393,0.1564,0.3052,0.7991,0.1564,0.5805,0.5805,0.1564,0.7991,0.3052,0.1564,0.9393,0.0,0.1564,0.9877,-0.3052,0.1564,0.9393,-0.5805,0.1564,0.7991,-0.7991,0.1564,0.5805,-0.9393,0.1564,0.3052,-0.9877,0.1564,0.0,-0.9393,0.1564,-0.3052,-0.7991,0.1564,-0.5805,-0.5805,0.1564,-0.7991,-0.3052,0.1564,-0.9393,0.0,0.1564,-0.9877,0.3052,0.1564,-0.9393,0.5805,0.1564,-0.7991,0.7991,0.1564,-0.5805,0.9393,0.1564,-0.3052,0.9877,0.1564,0.0,0.9393,0.1564,0.3052,0.9045,0.309,0.2939,0.7694,0.309,0.559,0.559,0.309,0.7694,0.2939,0.309,0.9045,0.0,0.309,0.9511,-0.2939,0.309,0.9045,-0.559,0.309,0.7694,-0.7694,0.309,0.559,-0.9045,0.309,0.2939,-0.9511,0.309,0.0,-0.9045,0.309,-0.2939,-0.7694,0.309,-0.559,-0.559,0.309,-0.7694,-0.2939,0.309,-0.9045,0.0,0.309,-0.9511,0.2939,0.309,-0.9045,0.559,0.309,-0.7694,0.7694,0.309,-0.559,0.9045,0.309,-0.2939,0.9511,0.309,0.0,0.9045,0.309,0.2939,0.8474,0.454,0.2753,0.7208,0.454,0.5237,0.5237,0.454,0.7208,0.2753,0.454,0.8474,0.0,0.454,0.891,-0.2753,0.454,0.8474,-0.5237,0.454,0.7208,-0.7208,0.454,0.5237,-0.8474,0.454,0.2753,-0.891,0.454,0.0,-0.8474,0.454,-0.2753,-0.7208,0.454,-0.5237,-0.5237,0.454,-0.7208,-0.2753,0.454,-0.8474,0.0,0.454,-0.891,0.2753,0.454,-0.8474,0.5237,0.454,-0.7208,0.7208,0.454,-0.5237,0.8474,0.454,-0.2753,0.891,0.454,0.0,0.8474,0.454,0.2753,0.7694,0.5878,0.25,0.6545,0.5878,0.4755,0.4755,0.5878,0.6545,0.25,0.5878,0.7694,0.0,0.5878,0.809,-0.25,0.5878,0.7694,-0.4755,0.5878,0.6545,-0.6545,0.5878,0.4755,-0.7694,0.5878,0.25,-0.809,0.5878,0.0,-0.7694,0.5878,-0.25,-0.6545,0.5878,-0.4755,-0.4755,0.5878,-0.6545,-0.25,0.5878,-0.7694,0.0,0.5878,-0.809,0.25,0.5878,-0.7694,0.4755,0.5878,-0.6545,0.6545,0.5878,-0.4755,0.7694,0.5878,-0.25,0.809,0.5878,0.0,0.7694,0.5878,0.25,0.6725,0.7071,0.2185,0.5721,0.7071,0.4156,0.4156,0.7071,0.5721,0.2185,0.7071,0.6725,0.0,0.7071,0.7071,-0.2185,0.7071,0.6725,-0.4156,0.7071,0.5721,-0.5721,0.7071,0.4156,-0.6725,0.7071,0.2185,-0.7071,0.7071,0.0,-0.6725,0.7071,-0.2185,-0.5721,0.7071,-0.4156,-0.4156,0.7071,-0.5721,-0.2185,0.7071,-0.6725,0.0,0.7071,-0.7071,0.2185,0.7071,-0.6725,0.4156,0.7071,-0.5721,0.5721,0.7071,-0.4156,0.6725,0.7071,-0.2185,0.7071,0.7071,0.0,0.6725,0.7071,0.2185,0.559,0.809,0.1816,0.4755,0.809,0.3455,0.3455,0.809,0.4755,0.1816,0.809,0.559,0.0,0.809,0.5878,-0.1816,0.809,0.559,-0.3455,0.809,0.4755,-0.4755,0.809,0.3455,-0.559,0.809,0.1816,-0.5878,0.809,0.0,-0.559,0.809,-0.1816,-0.4755,0.809,-0.3455,-0.3455,0.809,-0.4755,-0.1816,0.809,-0.559,0.0,0.809,-0.5878,0.1816,0.809,-0.559,0.3455,0.809,-0.4755,0.4755,0.809,-0.3455,0.559,0.809,-0.1816,0.5878,0.809,0.0,0.559,0.809,0.1816,0.4318,0.891,0.1403,0.3673,0.891,0.2668,0.2668,0.891,0.3673,0.1403,0.891,0.4318,0.0,0.891,0.454,-0.1403,0.891,0.4318,-0.2668,0.891,0.3673,-0.3673,0.891,0.2668,-0.4318,0.891,0.1403,-0.454,0.891,0.0,-0.4318,0.891,-0.1403,-0.3673,0.891,-0.2668,-0.2668,0.891,-0.3673,-0.1403,0.891,-0.4318,0.0,0.891,-0.454,0.1403,0.891,-0.4318,0.2668,0.891,-0.3673,0.3673,0.891,-0.2668,0.4318,0.891,-0.1403,0.454,0.891,0.0,0.4318,0.891,0.1403,0.2939,0.9511,0.0955,0.25,0.9511,0.1816,0.1816,0.9511,0.25,0.0955,0.9511,0.2939,0.0,0.9511,0.309,-0.0955,0.9511,0.2939,-0.1816,0.9511,0.25,-0.25,0.9511,0.1816,-0.2939,0.9511,0.0955,-0.309,0.9511,0.0,-0.2939,0.9511,-0.0955,-0.25,0.9511,-0.1816,-0.1816,0.9511,-0.25,-0.0955,0.9511,-0.2939,0.0,0.9511,-0.309,0.0955,0.9511,-0.2939,0.1816,0.9511,-0.25,0.25,0.9511,-0.1816,0.2939,0.9511,-0.0955,0.309,0.9511,0.0,0.2939,0.9511,0.0955,0.1488,0.9877,0.0483,0.1266,0.9877,0.0919,0.0919,0.9877,0.1266,0.0483,0.9877,0.1488,0.0,0.9877,0.1564,-0.0483,0.9877,0.1488,-0.0919,0.9877,0.1266,-0.1266,0.9877,0.0919,-0.1488,0.9877,0.0483,-0.1564,0.9877,0.0,-0.1488,0.9877,-0.0483,-0.1266,0.9877,-0.0919,-0.0919,0.9877,-0.1266,-0.0483,0.9877,-0.1488,0.0,0.9877,-0.1564,0.0483,0.9877,-0.1488,0.0919,0.9877,-0.1266,0.1266,0.9877,-0.0919,0.1488,0.9877,-0.0483,0.1564,0.9877,0.0,0.1488,0.9877,0.0483,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0],"normals":[0.1906,-0.9797,0.0619,0.1621,-0.9797,0.1178,0.3173,-0.9427,0.1031,0.2699,-0.9427,0.1961,0.1178,-0.9797,0.1621,0.1961,-0.9427,0.2699,0.0619,-0.9797,0.1906,0.1031,-0.9427,0.3173,0.0,-0.9797,0.2004,0.0,-0.9427,0.3336,-0.0619,-0.9797,0.1906,-0.1031,-0.9427,0.3173,-0.1178,-0.9797,0.1621,-0.1961,-0.9427,0.2699,-0.1621,-0.9797,0.1178,-0.2699,-0.9427,0.1961,-0.1906,-0.9797,0.0619,-0.3173,-0.9427,0.1031,-0.2004,-0.9797,0.0,-0.3336,-0.9427,0.0,-0.1906,-0.9797,-0.0619,-0.3173,-0.9427,-0.1031,-0.1621,-0.9797,-0.1178,-0.2699,-0.9427,-0.1961,-0.1178,-0.9797,-0.1621,-0.1961,-0.9427,-0.2699,-0.0619,-0.9797,-0.1906,-0.1031,-0.9427,-0.3173,0.0,-0.9797,-0.2004,0.0,-0.9427,-0.3336,0.0619,-0.9797,-0.1906,0.1031,-0.9427,-0.3173,0.1178,-0.9797,-0.1621,0.1961,-0.9427,-0.2699,0.1621,-0.9797,-0.1178,0.2699,-0.9427,-0.1961,0.1906,-0.9797,-0.0619,0.3173,-0.9427,-0.1031,0.2004,-0.9797,0.0,0.3336,-0.9427,0.0,0.1906,-0.9797,0.0619,0.3173,-0.9427,0.1031,0.4477,-0.8823,0.1455,0.3808,-0.8823,0.2767,0.2767,-0.8823,0.3808,0.1455,-0.8823,0.4477,0.0,-0.8823,0.4708,-0.1455,-0.8823,0.4477,-0.2767,-0.8823,0.3808,-0.3808,-0.8823,0.2767,-0.4477,-0.8823,0.1455,-0.4708,-0.8823,0.0,-0.4477,-0.8823,-0.1455,-0.3808,-0.8823,-0.2767,-0.2767,-0.8823,-0.3808,-0.1455,-0.8823,-0.4477,0.0,-0.8823,-0.4708,0.1455,-0.8823,-0.4477,0.2767,-0.8823,-0.3808,0.3808,-0.8823,-0.2767,0.4477,-0.8823,-0.1455,0.4708,-0.8823,0.0,0.4477,-0.8823,0.1455,0.5703,-0.8003,0.1853,0.4851,-0.8003,0.3525,0.3525,-0.8003,0.4851,0.1853,-0.8003,0.5703,0.0,-0.8003,0.5997,-0.1853,-0.8003,0.5703,-0.3525,-0.8003,0.4851,-0.4851,-0.8003,0.3525,-0.5703,-0.8003,0.1853,-0.5997,-0.8003,0.0,-0.5703,-0.8003,-0.1853,-0.4851,-0.8003,-0.3525,-0.3525,-0.8003,-0.4851,-0.1853,-0.8003,-0.5703,0.0,-0.8003,-0.5997,0.1853,-0.8003,-0.5703,0.3525,-0.8003,-0.4851,0.4851,-0.8003,-0.3525,0.5703,-0.8003,-0.1853,0.5997,-0.8003,0.0,0.5703,-0.8003,0.1853,0.6803,-0.6988,0.221,0.5787,-0.6988,0.4205,0.4205,-0.6988,0.5787,0.221,-0.6988,0.6803,0.0,-0.6988,0.7153,-0.221,-0.6988,0.6803,-0.4205,-0.6988,0.5787,-0.5787,-0.6988,0.4205,-0.6803,-0.6988,0.221,-0.7153,-0.6988,0.0,-0.6803,-0.6988,-0.221,-0.5787,-0.6988,-0.4205,-0.4205,-0.6988,-0.5787,-0.221,-0.6988,-0.6803,0.0,-0.6988,-0.7153,0.221,-0.6988,-0.6803,0.4205,-0.6988,-0.5787,0.5787,-0.6988,-0.4205,0.6803,-0.6988,-0.221,0.7153,-0.6988,0.0,0.6803,-0.6988,0.221,0.7745,-0.5804,0.2516,0.6588,-0.5804,0.4787,0.4787,-0.5804,0.6588,0.2516,-0.5804,0.7745,0.0,-0.5804,0.8143,-0.2516,-0.5804,0.7745,-0.4787,-0.5804,0.6588,-0.6588,-0.5804,0.4787,-0.7745,-0.5804,0.2516,-0.8143,-0.5804,0.0,-0.7745,-0.5804,-0.2516,-0.6588,-0.5804,-0.4787,-0.4787,-0.5804,-0.6588,-0.2516,-0.5804,-0.7745,0.0,-0.5804,-0.8143,0.2516,-0.5804,-0.7745,0.4787,-0.5804,-0.6588,0.6588,-0.5804,-0.4787,0.7745,-0.5804,-0.2516,0.8143,-0.5804,0.0,0.7745,-0.5804,0.2516,0.8503,-0.448,0.2763,0.7233,-0.448,0.5255,0.5255,-0.448,0.7233,0.2763,-0.448,0.8503,0.0,-0.448,0.894,-0.2763,-0.448,0.8503,-0.5255,-0.448,0.7233,-0.7233,-0.448,0.5255,-0.8503,-0.448,0.2763,-0.894,-0.448,0.0,-0.8503,-0.448,-0.2763,-0.7233,-0.448,-0.5255,-0.5255,-0.448,-0.7233,-0.2763,-0.448,-0.8503,0.0,-0.448,-0.894,0.2763,-0.448,-0.8503,0.5255,-0.448,-0.7233,0.7233,-0.448,-0.5255,0.8503,-0.448,-0.2763,0.894,-0.448,0.0,0.8503,-0.448,0.2763,0.9058,-0.3048,0.2943,0.7705,-0.3048,0.5598,0.5598,-0.3048,0.7705,0.2943,-0.3048,0.9058,0.0,-0.3048,0.9524,-0.2943,-0.3048,0.9058,-0.5598,-0.3048,0.7705,-0.7705,-0.3048,0.5598,-0.9058,-0.3048,0.2943,-0.9524,-0.3048,0.0,-0.9058,-0.3048,-0.2943,-0.7705,-0.3048,-0.5598,-0.5598,-0.3048,-0.7705,-0.2943,-0.3048,-0.9058,0.0,-0.3048,-0.9524,0.2943,-0.3048,-0.9058,0.5598,-0.3048,-0.7705,0.7705,-0.3048,-0.5598,0.9058,-0.3048,-0.2943,0.9524,-0.3048,0.0,0.9058,-0.3048,0.2943,0.9397,-0.1542,0.3053,0.7993,-0.1542,0.5808,0.5808,-0.1542,0.7993,0.3053,-0.1542,0.9397,0.0,-0.1542,0.988,-0.3053,-0.1542,0.9397,-0.5808,-0.1542,0.7993,-0.7993,-0.1542,0.5808,-0.9397,-0.1542,0.3053,-0.988,-0.1542,0.0,-0.9397,-0.1542,-0.3053,-0.7993,-0.1542,-0.5808,-0.5808,-0.1542,-0.7993,-0.3053,-0.1542,-0.9397,0.0,-0.1542,-0.988,0.3053,-0.1542,-0.9397,0.5808,-0.1542,-0.7993,0.7993,-0.1542,-0.5808,0.9397,-0.1542,-0.3053,0.988,-0.1542,0.0,0.9397,-0.1542,0.3053,0.9511,0.0,0.309,0.809,0.0,0.5878,0.5878,0.0,0.809,0.309,0.0,0.9511,0.0,0.0,1.0,-0.309,0.0,0.9511,-0.5878,0.0,0.809,-0.809,0.0,0.5878,-0.9511,0.0,0.309,-1.0,0.0,0.0,-0.9511,0.0,-0.309,-0.809,0.0,-0.5878,-0.5878,0.0,-0.809,-0.309,0.0,-0.9511,0.0,0.0,-1.0,0.309,0.0,-0.9511,0.5878,0.0,-0.809,0.809,0.0,-0.5878,0.9511,0.0,-0.309,1.0,0.0,0.0,0.9511,0.0,0.309,0.9397,0.1542,0.3053,0.7993,0.1542,0.5808,0.5808,0.1542,0.7993,0.3053,0.1542,0.9397,0.0,0.1542,0.988,-0.3053,0.1542,0.9397,-0.5808,0.1542,0.7993,-0.7993,0.1542,0.5808,-0.9397,0.1542,0.3053,-0.988,0.1542,0.0,-0.9397,0.1542,-0.3053,-0.7993,0.1542,-0.5808,-0.5808,0.1542,-0.7993,-0.3053,0.1542,-0.9397,0.0,0.1542,-0.988,0.3053,0.1542,-0.9397,0.5808,0.1542,-0.7993,0.7993,0.1542,-0.5808,0.9397,0.1542,-0.3053,0.988,0.1542,0.0,0.9397,0.1542,0.3053,0.9058,0.3048,0.2943,0.7705,0.3048,0.5598,0.5598,0.3048,0.7705,0.2943,0.3048,0.9058,0.0,0.3048,0.9524,-0.2943,0.3048,0.9058,-0.5598,0.3048,0.7705,-0.7705,0.3048,0.5598,-0.9058,0.3048,0.2943,-0.9524,0.3048,0.0,-0.9058,0.3048,-0.2943,-0.7705,0.3048,-0.5598,-0.5598,0.3048,-0.7705,-0.2943,0.3048,-0.9058,0.0,0.3048,-0.9524,0.2943,0.3048,-0.9058,0.5598,0.3048,-0.7705,0.7705,0.3048,-0.5598,0.9058,0.3048,-0.2943,0.9524,0.3048,0.0,0.9058,0.3048,0.2943,0.8503,0.448,0.2763,0.7233,0.448,0.5255,0.5255,0.448,0.7233,0.2763,0.448,0.8503,0.0,0.448,0.894,-0.2763,0.448,0.8503,-0.5255,0.448,0.7233,-0.7233,0.448,0.5255,-0.8503,0.448,0.2763,-0.894,0.448,0.0,-0.8503,0.448,-0.2763,-0.7233,0.448,-0.5255,-0.5255,0.448,-0.7233,-0.2763,0.448,-0.8503,0.0,0.448,-0.894,0.2763,0.448,-0.8503,0.5255,0.448,-0.7233,0.7233,0.448,-0.5255,0.8503,0.448,-0.2763,0.894,0.448,0.0,0.8503,0.448,0.2763,0.7745,0.5804,0.2516,0.6588,0.5804,0.4787,0.4787,0.5804,0.6588,0.2516,0.5804,0.7745,0.0,0.5804,0.8143,-0.2516,0.5804,0.7745,-0.4787,0.5804,0.6588,-0.6588,0.5804,0.4787,-0.7745,0.5804,0.2516,-0.8143,0.5804,0.0,-0.7745,0.5804,-0.2516,-0.6588,0.5804,-0.4787,-0.4787,0.5804,-0.6588,-0.2516,0.5804,-0.7745,0.0,0.5804,-0.8143,0.2516,0.5804,-0.7745,0.4787,0.5804,-0.6588,0.6588,0.5804,-0.4787,0.7745,0.5804,-0.2516,0.8143,0.5804,0.0,0.7745,0.5804,0.2516,0.6803,0.6988,0.221,0.5787,0.6988,0.4205,0.4205,0.6988,0.5787,0.221,0.6988,0.6803,0.0,0.6988,0.7153,-0.221,0.6988,0.6803,-0.4205,0.6988,0.5787,-0.5787,0.6988,0.4205,-0.6803,0.6988,0.221,-0.7153,0.6988,0.0,-0.6803,0.6988,-0.221,-0.5787,0.6988,-0.4205,-0.4205,0.6988,-0.5787,-0.221,0.6988,-0.6803,0.0,0.6988,-0.7153,0.221,0.6988,-0.6803,0.4205,0.6988,-0.5787,0.5787,0.6988,-0.4205,0.6803,0.6988,-0.221,0.7153,0.6988,0.0,0.6803,0.6988,0.221,0.5703,0.8003,0.1853,0.4851,0.8003,0.3525,0.3525,0.8003,0.4851,0.1853,0.8003,0.5703,0.0,0.8003,0.5997,-0.1853,0.8003,0.5703,-0.3525,0.8003,0.4851,-0.4851,0.8003,0.3525,-0.5703,0.8003,0.1853,-0.5997,0.8003,0.0,-0.5703,0.8003,-0.1853,-0.4851,0.8003,-0.3525,-0.3525,0.8003,-0.4851,-0.1853,0.8003,-0.5703,0.0,0.8003,-0.5997,0.1853,0.8003,-0.5703,0.3525,0.8003,-0.4851,0.4851,0.8003,-0.3525,0.5703,0.8003,-0.1853,0.5997,0.8003,0.0,0.5703,0.8003,0.1853,0.4477,0.8823,0.1455,0.3808,0.8823,0.2767,0.2767,0.8823,0.3808,0.1455,0.8823,0.4477,0.0,0.8823,0.4708,-0.1455,0.8823,0.4477,-0.2767,0.8823,0.3808,-0.3808,0.8823,0.2767,-0.4477,0.8823,0.1455,-0.4708,0.8823,0.0,-0.4477,0.8823,-0.1455,-0.3808,0.8823,-0.2767,-0.2767,0.8823,-0.3808,-0.1455,0.8823,-0.4477,0.0,0.8823,-0.4708,0.1455,0.8823,-0.4477,0.2767,0.8823,-0.3808,0.3808,0.8823,-0.2767,0.4477,0.8823,-0.1455,0.4708,0.8823,0.0,0.4477,0.8823,0.1455,0.3173,0.9427,0.1031,0.2699,0.9427,0.1961,0.1961,0.9427,0.2699,0.1031,0.9427,0.3173,0.0,0.9427,0.3336,-0.1031,0.9427,0.3173,-0.1961,0.9427,0.2699,-0.2699,0.9427,0.1961,-0.3173,0.9427,0.1031,-0.3336,0.9427,0.0,-0.3173,0.9427,-0.1031,-0.2699,0.9427,-0.1961,-0.1961,0.9427,-0.2699,-0.1031,0.9427,-0.3173,0.0,0.9427,-0.3336,0.1031,0.9427,-0.3173,0.1961,0.9427,-0.2699,0.2699,0.9427,-0.1961,0.3173,0.9427,-0.1031,0.3336,0.9427,0.0,0.3173,0.9427,0.1031,0.1906,0.9797,0.0619,0.1621,0.9797,0.1178,0.1178,0.9797,0.1621,0.0619,0.9797,0.1906,0.0,0.9797,0.2004,-0.0619,0.9797,0.1906,-0.1178,0.9797,0.1621,-0.1621,0.9797,0.1178,-0.1906,0.9797,0.0619,-0.2004,0.9797,0.0,-0.1906,0.9797,-0.0619,-0.1621,0.9797,-0.1178,-0.1178,0.9797,-0.1621,-0.0619,0.9797,-0.1906,0.0,0.9797,-0.2004,0.0619,0.9797,-0.1906,0.1178,0.9797,-0.1621,0.1621,0.9797,-0.1178,0.1906,0.9797,-0.0619,0.2004,0.9797,0.0,0.1906,0.9797,0.0619,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0],"tangents":[-0.4482,-0.0307,0.8934,-1.0,-0.5629,0.0062,0.8265,-1.0,-0.438,-0.0493,0.8976,-1.0,-0.5878,0.0,0.809,-1.0,-0.7908,0.0062,0.6121,-1.0,-0.809,0.0,0.5878,-1.0,-0.9412,0.0062,0.3378,-1.0,-0.9511,0.0,0.309,-1.0,-0.9995,0.0062,0.0304,-1.0,-1.0,0.0,0.0,-1.0,-0.96,0.0062,-0.28,-1.0,-0.9511,0.0,-0.309,-1.0,-0.8265,0.0062,-0.5629,-1.0,-0.809,0.0,-0.5878,-1.0,-0.6121,0.0062,-0.7908,-1.0,-0.5878,0.0,-0.809,-1.0,-0.3378,0.0062,-0.9412,-1.0,-0.309,0.0,-0.9511,-1.0,-0.0304,0.0062,-0.9995,-1.0,0.0,0.0,-1.0,-1.0,0.28,0.0062,-0.96,-1.0,0.309,0.0,-0.9511,-1.0,0.5629,0.0062,-0.8265,-1.0,0.5878,0.0,-0.809,-1.0,0.7908,0.0062,-0.6121,-1.0,0.809,0.0,-0.5878,-1.0,0.9412,0.0062,-0.3378,-1.0,0.9511,0.0,-0.309,-1.0,0.9995,0.0062,-0.0304,-1.0,1.0,0.0,0.0,-1.0,0.96,0.0062,0.28,-1.0,0.9511,0.0,0.309,-1.0,0.8265,0.0062,0.5629,-1.0,0.809,0.0,0.5878,-1.0,0.6121,0.0062,0.7908,-1.0,0.5878,0.0,0.809,-1.0,0.3378,0.0062,0.9412,-1.0,0.309,0.0,0.9511,-1.0,0.0304,0.0062,0.9995,-1.0,0.0,0.0,1.0,-1.0,-0.1625,0.0307,0.9862,-1.0,-0.1732,0.0493,0.9836,-1.0,-0.4222,-0.0651,0.9042,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.1899,0.0651,0.9796,-1.0,-0.4023,-0.0754,0.9124,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.2109,0.0754,0.9746,-1.0,-0.3802,-0.0787,0.9215,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.234,0.0787,0.969,-1.0,-0.3582,-0.0745,0.9306,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.2572,0.0745,0.9635,-1.0,-0.3384,-0.0633,0.9389,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.2781,0.0633,0.9585,-1.0,-0.3226,-0.0459,0.9454,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.2947,0.0459,0.9545,-1.0,-0.3125,-0.0241,0.9496,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.3053,0.0241,0.9519,-1.0,-0.309,0.0,0.9511,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.309,0.0,0.9511,-1.0,-0.3125,0.0241,0.9496,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.3053,-0.0241,0.9519,-1.0,-0.3226,0.0459,0.9454,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.2947,-0.0459,0.9545,-1.0,-0.3384,0.0633,0.9389,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.2781,-0.0633,0.9585,-1.0,-0.3582,0.0745,0.9306,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.2572,-0.0745,0.9635,-1.0,-0.3802,0.0787,0.9215,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.234,-0.0787,0.969,-1.0,-0.4023,0.0754,0.9124,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.2109,-0.0754,0.9746,-1.0,-0.4222,0.0651,0.9042,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.1899,-0.0651,0.9796,-1.0,-0.438,0.0493,0.8976,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.1732,-0.0493,0.9836,-1.0,-0.4482,0.0307,0.8934,-1.0,-0.6121,0.0062,0.7908,-1.0,-0.8265,0.0062,0.5629,-1.0,-0.96,0.0062,0.28,-1.0,-0.9995,0.0062,-0.0304,-1.0,-0.9412,0.0062,-0.3378,-1.0,-0.7908,0.0062,-0.6121,-1.0,-0.5629,0.0062,-0.8265,-1.0,-0.28,0.0062,-0.96,-1.0,0.0304,0.0062,-0.9995,-1.0,0.3378,0.0062,-0.9412,-1.0,0.6121,0.0062,-0.7908,-1.0,0.8265,0.0062,-0.5629,-1.0,0.96,0.0062,-0.28,-1.0,0.9995,0.0062,0.0304,-1.0,0.9412,0.0062,0.3378,-1.0,0.7908,0.0062,0.6121,-1.0,0.5629,0.0062,0.8265,-1.0,0.28,0.0062,0.96,-1.0,-0.0304,0.0062,0.9995,-1.0,-0.1625,-0.0307,0.9862,-1.0,-0.454,0.0,0.891,-1.0,-0.7071,0.0,0.7071,-1.0,-0.891,0.0,0.454,-1.0,-0.9877,0.0,0.1564,-1.0,-0.9877,0.0,-0.1564,-1.0,-0.891,0.0,-0.454,-1.0,-0.7071,0.0,-0.7071,-1.0,-0.454,0.0,-0.891,-1.0,-0.1564,0.0,-0.9877,-1.0,0.1564,0.0,-0.9877,-1.0,0.454,0.0,-0.891,-1.0,0.7071,0.0,-0.7071,-1.0,0.891,0.0,-0.454,-1.0,0.9877,0.0,-0.1564,-1.0,0.9877,0.0,0.1564,-1.0,0.891,0.0,0.454,-1.0,0.7071,0.0,0.7071,-1.0,0.454,0.0,0.891,-1.0,0.1564,0.0,0.9877,-1.0,-0.1564,0.0,0.9877,-1.0,-0.454,0.0,0.891,-1.0,-0.7071,0.0,0.7071,-1.0,-0.891,0.0,0.454,-1.0,-0.9877,0.0,0.1564,-1.0,-0.9877,0.0,-0.1564,-1.0,-0.891,0.0,-0.454,-1.0,-0.7071,0.0,-0.7071,-1.0,-0.454,0.0,-0.891,-1.0,-0.1564,0.0,-0.9877,-1.0,0.1564,0.0,-0.9877,-1.0,0.454,0.0,-0.891,-1.0,0.7071,0.0,-0.7071,-1.0,0.891,0.0,-0.454,-1.0,0.9877,0.0,-0.1564,-1.0,0.9877,0.0,0.1564,-1.0,0.891,0.0,0.454,-1.0,0.7071,0.0,0.7071,-1.0,0.454,0.0,0.891,-1.0,0.1564,0.0,0.9877,-1.0,-0.1564,0.0,0.9877,-1.0],"uvs":[0.0,0.05,0.05,0.05,0.0,0.1,0.05,0.1,0.1,0.05,0.1,0.1,0.15,0.05,0.15,0.1,0.2,0.05,0.2,0.1,0.25,0.05,0.25,0.1,0.3,0.05,0.3,0.1,0.35,0.05,0.35,0.1,0.4,0.05,0.4,0.1,0.45,0.05,0.45,0.1,0.5,0.05,0.5,0.1,0.55,0.05,0.55,0.1,0.6,0.05,0.6,0.1,0.65,0.05,0.65,0.1,0.7,0.05,0.7,0.1,0.75,0.05,0.75,0.1,0.8,0.05,0.8,0.1,0.85,0.05,0.85,0.1,0.9,0.05,0.9,0.1,0.95,0.05,0.95,0.1,1.0,0.05,1.0,0.1,0.0,0.15,0.05,0.15,0.1,0.15,0.15,0.15,0.2,0.15,0.25,0.15,0.3,0.15,0.35,0.15,0.4,0.15,0.45,0.15,0.5,0.15,0.55,0.15,0.6,0.15,0.65,0.15,0.7,0.15,0.75,0.15,0.8,0.15,0.85,0.15,0.9,0.15,0.95,0.15,1.0,0.15,0.0,0.2,0.05,0.2,0.1,0.2,0.15,0.2,0.2,0.2,0.25,0.2,0.3,0.2,0.35,0.2,0.4,0.2,0.45,0.2,0.5,0.2,0.55,0.2,0.6,0.2,0.65,0.2,0.7,0.2,0.75,0.2,0.8,0.2,0.85,0.2,0.9,0.2,0.95,0.2,1.0,0.2,0.0,0.25,0.05,0.25,0.1,0.25,0.15,0.25,0.2,0.25,0.25,0.25,0.3,0.25,0.35,0.25,0.4,0.25,0.45,0.25,0.5,0.25,0.55,0.25,0.6,0.25,0.65,0.25,0.7,0.25,0.75,0.25,0.8,0.25,0.85,0.25,0.9,0.25,0.95,0.25,1.0,0.25,0.0,0.3,0.05,0.3,0.1,0.3,0.15,0.3,0.2,0.3,0.25,0.3,0.3,0.3,0.35,0.3,0.4,0.3,0.45,0.3,0.5,0.3,0.55,0.3,0.6,0.3,0.65,0.3,0.7,0.3,0.75,0.3,0.8,0.3,0.85,0.3,0.9,0.3,0.95,0.3,1.0,0.3,0.0,0.35,0.05,0.35,0.1,0.35,0.15,0.35,0.2,0.35,0.25,0.35,0.3,0.35,0.35,0.35,0.4,0.35,0.45,0.35,0.5,0.35,0.55,0.35,0.6,0.35,0.65,0.35,0.7,0.35,0.75,0.35,0.8,0.35,0.85,0.35,0.9,0.35,0.95,0.35,1.0,0.35,0.0,0.4,0.05,0.4,0.1,0.4,0.15,0.4,0.2,0.4,0.25,0.4,0.3,0.4,0.35,0.4,0.4,0.4,0.45,0.4,0.5,0.4,0.55,0.4,0.6,0.4,0.65,0.4,0.7,0.4,0.75,0.4,0.8,0.4,0.85,0.4,0.9,0.4,0.95,0.4,1.0,0.4,0.0,0.45,0.05,0.45,0.1,0.45,0.15,0.45,0.2,0.45,0.25,0.45,0.3,0.45,0.35,0.45,0.4,0.45,0.45,0.45,0.5,0.45,0.55,0.45,0.6,0.45,0.65,0.45,0.7,0.45,0.75,0.45,0.8,0.45,0.85,0.45,0.9,0.45,0.95,0.45,1.0,0.45,0.0,0.5,0.05,0.5,0.1,0.5,0.15,0.5,0.2,0.5,0.25,0.5,0.3,0.5,0.35,0.5,0.4,0.5,0.45,0.5,0.5,0.5,0.55,0.5,0.6,0.5,0.65,0.5,0.7,0.5,0.75,0.5,0.8,0.5,0.85,0.5,0.9,0.5,0.95,0.5,1.0,0.5,0.0,0.55,0.05,0.55,0.1,0.55,0.15,0.55,0.2,0.55,0.25,0.55,0.3,0.55,0.35,0.55,0.4,0.55,0.45,0.55,0.5,0.55,0.55,0.55,0.6,0.55,0.65,0.55,0.7,0.55,0.75,0.55,0.8,0.55,0.85,0.55,0.9,0.55,0.95,0.55,1.0,0.55,0.0,0.6,0.05,0.6,0.1,0.6,0.15,0.6,0.2,0.6,0.25,0.6,0.3,0.6,0.35,0.6,0.4,0.6,0.45,0.6,0.5,0.6,0.55,0.6,0.6,0.6,0.65,0.6,0.7,0.6,0.75,0.6,0.8,0.6,0.85,0.6,0.9,0.6,0.95,0.6,1.0,0.6,0.0,0.65,0.05,0.65,0.1,0.65,0.15,0.65,0.2,0.65,0.25,0.65,0.3,0.65,0.35,0.65,0.4,0.65,0.45,0.65,0.5,0.65,0.55,0.65,0.6,0.65,0.65,0.65,0.7,0.65,0.75,0.65,0.8,0.65,0.85,0.65,0.9,0.65,0.95,0.65,1.0,0.65,0.0,0.7,0.05,0.7,0.1,0.7,0.15,0.7,0.2,0.7,0.25,0.7,0.3,0.7,0.35,0.7,0.4,0.7,0.45,0.7,0.5,0.7,0.55,0.7,0.6,0.7,0.65,0.7,0.7,0.7,0.75,0.7,0.8,0.7,0.85,0.7,0.9,0.7,0.95,0.7,1.0,0.7,0.0,0.75,0.05,0.75,0.1,0.75,0.15,0.75,0.2,0.75,0.25,0.75,0.3,0.75,0.35,0.75,0.4,0.75,0.45,0.75,0.5,0.75,0.55,0.75,0.6,0.75,0.65,0.75,0.7,0.75,0.75,0.75,0.8,0.75,0.85,0.75,0.9,0.75,0.95,0.75,1.0,0.75,0.0,0.8,0.05,0.8,0.1,0.8,0.15,0.8,0.2,0.8,0.25,0.8,0.3,0.8,0.35,0.8,0.4,0.8,0.45,0.8,0.5,0.8,0.55,0.8,0.6,0.8,0.65,0.8,0.7,0.8,0.75,0.8,0.8,0.8,0.85,0.8,0.9,0.8,0.95,0.8,1.0,0.8,0.0,0.85,0.05,0.85,0.1,0.85,0.15,0.85,0.2,0.85,0.25,0.85,0.3,0.85,0.35,0.85,0.4,0.85,0.45,0.85,0.5,0.85,0.55,0.85,0.6,0.85,0.65,0.85,0.7,0.85,0.75,0.85,0.8,0.85,0.85,0.85,0.9,0.85,0.95,0.85,1.0,0.85,0.0,0.9,0.05,0.9,0.1,0.9,0.15,0.9,0.2,0.9,0.25,0.9,0.3,0.9,0.35,0.9,0.4,0.9,0.45,0.9,0.5,0.9,0.55,0.9,0.6,0.9,0.65,0.9,0.7,0.9,0.75,0.9,0.8,0.9,0.85,0.9,0.9,0.9,0.95,0.9,1.0,0.9,0.0,0.95,0.05,0.95,0.1,0.95,0.15,0.95,0.2,0.95,0.25,0.95,0.3,0.95,0.35,0.95,0.4,0.95,0.45,0.95,0.5,0.95,0.55,0.95,0.6,0.95,0.65,0.95,0.7,0.95,0.75,0.95,0.8,0.95,0.85,0.95,0.9,0.95,0.95,0.95,1.0,0.95,0.025,0.0,0.075,0.0,0.125,0.0,0.175,0.0,0.225,0.0,0.275,0.0,0.325,0.0,0.375,0.0,0.425,0.0,0.475,0.0,0.525,0.0,0.575,0.0,0.625,0.0,0.675,0.0,0.725,0.0,0.775,0.0,0.825,0.0,0.875,0.0,0.925,0.0,0.975,0.0,0.025,1.0,0.075,1.0,0.125,1.0,0.175,1.0,0.225,1.0,0.275,1.0,0.325,1.0,0.375,1.0,0.425,1.0,0.475,1.0,0.525,1.0,0.575,1.0,0.625,1.0,0.675,1.0,0.725,1.0,0.775,1.0,0.825,1.0,0.875,1.0,0.925,1.0,0.975,1.0],"uvs2":null,"colors":null,"hasVertexAlpha":false,"matricesIndices":null,"matricesWeights":null,"matricesIndicesExtra":null,"matricesWeightsExtra":null,"indices":[0,1,2,2,1,3,1,4,3,3,4,5,4,6,5,5,6,7,6,8,7,7,8,9,8,10,9,9,10,11,10,12,11,11,12,13,12,14,13,13,14,15,14,16,15,15,16,17,16,18,17,17,18,19,18,20,19,19,20,21,20,22,21,21,22,23,22,24,23,23,24,25,24,26,25,25,26,27,26,28,27,27,28,29,28,30,29,29,30,31,30,32,31,31,32,33,32,34,33,33,34,35,34,36,35,35,36,37,36,38,37,37,38,39,38,40,39,39,40,41,2,3,42,42,3,43,3,5,43,43,5,44,5,7,44,44,7,45,7,9,45,45,9,46,9,11,46,46,11,47,11,13,47,47,13,48,13,15,48,48,15,49,15,17,49,49,17,50,17,19,50,50,19,51,19,21,51,51,21,52,21,23,52,52,23,53,23,25,53,53,25,54,25,27,54,54,27,55,27,29,55,55,29,56,29,31,56,56,31,57,31,33,57,57,33,58,33,35,58,58,35,59,35,37,59,59,37,60,37,39,60,60,39,61,39,41,61,61,41,62,42,43,63,63,43,64,43,44,64,64,44,65,44,45,65,65,45,66,45,46,66,66,46,67,46,47,67,67,47,68,47,48,68,68,48,69,48,49,69,69,49,70,49,50,70,70,50,71,50,51,71,71,51,72,51,52,72,72,52,73,52,53,73,73,53,74,53,54,74,74,54,75,54,55,75,75,55,76,55,56,76,76,56,77,56,57,77,77,57,78,57,58,78,78,58,79,58,59,79,79,59,80,59,60,80,80,60,81,60,61,81,81,61,82,61,62,82,82,62,83,63,64,84,84,64,85,64,65,85,85,65,86,65,66,86,86,66,87,66,67,87,87,67,88,67,68,88,88,68,89,68,69,89,89,69,90,69,70,90,90,70,91,70,71,91,91,71,92,71,72,92,92,72,93,72,73,93,93,73,94,73,74,94,94,74,95,74,75,95,95,75,96,75,76,96,96,76,97,76,77,97,97,77,98,77,78,98,98,78,99,78,79,99,99,79,100,79,80,100,100,80,101,80,81,101,101,81,102,81,82,102,102,82,103,82,83,103,103,83,104,84,85,105,105,85,106,85,86,106,106,86,107,86,87,107,107,87,108,87,88,108,108,88,109,88,89,109,109,89,110,89,90,110,110,90,111,90,91,111,111,91,112,91,92,112,112,92,113,92,93,113,113,93,114,93,94,114,114,94,115,94,95,115,115,95,116,95,96,116,116,96,117,96,97,117,117,97,118,97,98,118,118,98,119,98,99,119,119,99,120,99,100,120,120,100,121,100,101,121,121,101,122,101,102,122,122,102,123,102,103,123,123,103,124,103,104,124,124,104,125,105,106,126,126,106,127,106,107,127,127,107,128,107,108,128,128,108,129,108,109,129,129,109,130,109,110,130,130,110,131,110,111,131,131,111,132,111,112,132,132,112,133,112,113,133,133,113,134,113,114,134,134,114,135,114,115,135,135,115,136,115,116,136,136,116,137,116,117,137,137,117,138,117,118,138,138,118,139,118,119,139,139,119,140,119,120,140,140,120,141,120,121,141,141,121,142,121,122,142,142,122,143,122,123,143,143,123,144,123,124,144,144,124,145,124,125,145,145,125,146,126,127,147,147,127,148,127,128,148,148,128,149,128,129,149,149,129,150,129,130,150,150,130,151,130,131,151,151,131,152,131,132,152,152,132,153,132,133,153,153,133,154,133,134,154,154,134,155,134,135,155,155,135,156,135,136,156,156,136,157,136,137,157,157,137,158,137,138,158,158,138,159,138,139,159,159,139,160,139,140,160,160,140,161,140,141,161,161,141,162,141,142,162,162,142,163,142,143,163,163,143,164,143,144,164,164,144,165,144,145,165,165,145,166,145,146,166,166,146,167,147,148,168,168,148,169,148,149,169,169,149,170,149,150,170,170,150,171,150,151,171,171,151,172,151,152,172,172,152,173,152,153,173,173,153,174,153,154,174,174,154,175,154,155,175,175,155,176,155,156,176,176,156,177,156,157,177,177,157,178,157,158,178,178,158,179,158,159,179,179,159,180,159,160,180,180,160,181,160,161,181,181,161,182,161,162,182,182,162,183,162,163,183,183,163,184,163,164,184,184,164,185,164,165,185,185,165,186,165,166,186,186,166,187,166,167,187,187,167,188,168,169,189,189,169,190,169,170,190,190,170,191,170,171,191,191,171,192,171,172,192,192,172,193,172,173,193,193,173,194,173,174,194,194,174,195,174,175,195,195,175,196,175,176,196,196,176,197,176,177,197,197,177,198,177,178,198,198,178,199,178,179,199,199,179,200,179,180,200,200,180,201,180,181,201,201,181,202,181,182,202,202,182,203,182,183,203,203,183,204,183,184,204,204,184,205,184,185,205,205,185,206,185,186,206,206,186,207,186,187,207,207,187,208,187,188,208,208,188,209,189,190,210,210,190,211,190,191,211,211,191,212,191,192,212,212,192,213,192,193,213,213,193,214,193,194,214,214,194,215,194,195,215,215,195,216,195,196,216,216,196,217,196,197,217,217,197,218,197,198,218,218,198,219,198,199,219,219,199,220,199,200,220,220,200,221,200,201,221,221,201,222,201,202,222,222,202,223,202,203,223,223,203,224,203,204,224,224,204,225,204,205,225,225,205,226,205,206,226,226,206,227,206,207,227,227,207,228,207,208,228,228,208,229,208,209,229,229,209,230,210,211,231,231,211,232,211,212,232,232,212,233,212,213,233,233,213,234,213,214,234,234,214,235,214,215,235,235,215,236,215,216,236,236,216,237,216,217,237,237,217,238,217,218,238,238,218,239,218,219,239,239,219,240,219,220,240,240,220,241,220,221,241,241,221,242,221,222,242,242,222,243,222,223,243,243,223,244,223,224,244,244,224,245,224,225,245,245,225,246,225,226,246,246,226,247,226,227,247,247,227,248,227,228,248,248,228,249,228,229,249,249,229,250,229,230,250,250,230,251,231,232,252,252,232,253,232,233,253,253,233,254,233,234,254,254,234,255,234,235,255,255,235,256,235,236,256,256,236,257,236,237,257,257,237,258,237,238,258,258,238,259,238,239,259,259,239,260,239,240,260,260,240,261,240,241,261,261,241,262,241,242,262,262,242,263,242,243,263,263,243,264,243,244,264,264,244,265,244,245,265,265,245,266,245,246,266,266,246,267,246,247,267,267,247,268,247,248,268,268,248,269,248,249,269,269,249,270,249,250,270,270,250,271,250,251,271,271,251,272,252,253,273,273,253,274,253,254,274,274,254,275,254,255,275,275,255,276,255,256,276,276,256,277,256,257,277,277,257,278,257,258,278,278,258,279,258,259,279,279,259,280,259,260,280,280,260,281,260,261,281,281,261,282,261,262,282,282,262,283,262,263,283,283,263,284,263,264,284,284,264,285,264,265,285,285,265,286,265,266,286,286,266,287,266,267,287,287,267,288,267,268,288,288,268,289,268,269,289,289,269,290,269,270,290,290,270,291,270,271,291,291,271,292,271,272,292,292,272,293,273,274,294,294,274,295,274,275,295,295,275,296,275,276,296,296,276,297,276,277,297,297,277,298,277,278,298,298,278,299,278,279,299,299,279,300,279,280,300,300,280,301,280,281,301,301,281,302,281,282,302,302,282,303,282,283,303,303,283,304,283,284,304,304,284,305,284,285,305,305,285,306,285,286,306,306,286,307,286,287,307,307,287,308,287,288,308,308,288,309,288,289,309,309,289,310,289,290,310,310,290,311,290,291,311,311,291,312,291,292,312,312,292,313,292,293,313,313,293,314,294,295,315,315,295,316,295,296,316,316,296,317,296,297,317,317,297,318,297,298,318,318,298,319,298,299,319,319,299,320,299,300,320,320,300,321,300,301,321,321,301,322,301,302,322,322,302,323,302,303,323,323,303,324,303,304,324,324,304,325,304,305,325,325,305,326,305,306,326,326,306,327,306,307,327,327,307,328,307,308,328,328,308,329,308,309,329,329,309,330,309,310,330,330,310,331,310,311,331,331,311,332,311,312,332,332,312,333,312,313,333,333,313,334,313,314,334,334,314,335,315,316,336,336,316,337,316,317,337,337,317,338,317,318,338,338,318,339,318,319,339,339,319,340,319,320,340,340,320,341,320,321,341,341,321,342,321,322,342,342,322,343,322,323,343,343,323,344,323,324,344,344,324,345,324,325,345,345,325,346,325,326,346,346,326,347,326,327,347,347,327,348,327,328,348,348,328,349,328,329,349,349,329,350,329,330,350,350,330,351,330,331,351,351,331,352,331,332,352,352,332,353,332,333,353,353,333,354,333,334,354,354,334,355,334,335,355,355,335,356,336,337,357,357,337,358,337,338,358,358,338,359,338,339,359,359,339,360,339,340,360,360,340,361,340,341,361,361,341,362,341,342,362,362,342,363,342,343,363,363,343,364,343,344,364,364,344,365,344,345,365,365,345,366,345,346,366,366,346,367,346,347,367,367,347,368,347,348,368,368,348,369,348,349,369,369,349,370,349,350,370,370,350,371,350,351,371,371,351,372,351,352,372,372,352,373,352,353,373,373,353,374,353,354,374,374,354,375,354,355,375,375,355,376,355,356,376,376,356,377,357,358,378,378,358,379,358,359,379,379,359,380,359,360,380,380,360,381,360,361,381,381,361,382,361,362,382,382,362,383,362,363,383,383,363,384,363,364,384,384,364,385,364,365,385,385,365,386,365,366,386,386,366,387,366,367,387,387,367,388,367,368,388,388,368,389,368,369,389,389,369,390,369,370,390,390,370,391,370,371,391,391,371,392,371,372,392,392,372,393,372,373,393,393,373,394,373,374,394,394,374,395,374,375,395,395,375,396,375,376,396,396,376,397,376,377,397,397,377,398,1,0,399,4,1,400,6,4,401,8,6,402,10,8,403,12,10,404,14,12,405,16,14,406,18,16,407,20,18,408,22,20,409,24,22,410,26,24,411,28,26,412,30,28,413,32,30,414,34,32,415,36,34,416,38,36,417,40,38,418,378,379,419,379,380,420,380,381,421,381,382,422,382,383,423,383,384,424,384,385,425,385,386,426,386,387,427,387,388,428,388,389,429,389,390,430,390,391,431,391,392,432,392,393,433,393,394,434,394,395,435,395,396,436,396,397,437,397,398,438],"receiveShadows":false,"infiniteDistance":false,"billboardMode":0,"visibility":1.0,"subMeshes":[{"materialIndex":0,"verticesStart":0,"verticesCount":439,"indexStart":0,"indexCount":2280}],"instances":null,"skeletonId":-1,"numBoneInfluencers":4,"applyFog":false,"lodMeshIds":null,"lodDistances":null,"lodCoverages":null,"rotation":null,"scaling":[1.0,1.0,1.0],"rotationQuaternion":[0.0,0.0,0.0,1.0],"actions":null,"checkCollisions":false,"pickable":true,"showBoundingBox":false,"showSubMeshesBoundingBox":false,"alphaIndex":0,"physicsImpostor":0,"physicsMass":0.0,"physicsFriction":0.0,"physicsRestitution":0.0,"name":"pSphere2","id":"AAE56DAE-40BF-882A-5CE8-0AB477E46CDB","parentId":null,"position":[3.0,0.0,0.0],"animations":[],"autoAnimate":true,"autoAnimateFrom":1,"autoAnimateTo":200,"autoAnimateLoop":true,"metadata":{}},{"materialId":"79CDF1A6-4409-889B-46A9-43A586C10D94","isEnabled":true,"isVisible":true,"positions":[0.1488,-0.9877,0.0483,0.1266,-0.9877,0.0919,0.2939,-0.9511,0.0955,0.25,-0.9511,0.1816,0.0919,-0.9877,0.1266,0.1816,-0.9511,0.25,0.0483,-0.9877,0.1488,0.0955,-0.9511,0.2939,0.0,-0.9877,0.1564,0.0,-0.9511,0.309,-0.0483,-0.9877,0.1488,-0.0955,-0.9511,0.2939,-0.0919,-0.9877,0.1266,-0.1816,-0.9511,0.25,-0.1266,-0.9877,0.0919,-0.25,-0.9511,0.1816,-0.1488,-0.9877,0.0483,-0.2939,-0.9511,0.0955,-0.1564,-0.9877,0.0,-0.309,-0.9511,0.0,-0.1488,-0.9877,-0.0483,-0.2939,-0.9511,-0.0955,-0.1266,-0.9877,-0.0919,-0.25,-0.9511,-0.1816,-0.0919,-0.9877,-0.1266,-0.1816,-0.9511,-0.25,-0.0483,-0.9877,-0.1488,-0.0955,-0.9511,-0.2939,0.0,-0.9877,-0.1564,0.0,-0.9511,-0.309,0.0483,-0.9877,-0.1488,0.0955,-0.9511,-0.2939,0.0919,-0.9877,-0.1266,0.1816,-0.9511,-0.25,0.1266,-0.9877,-0.0919,0.25,-0.9511,-0.1816,0.1488,-0.9877,-0.0483,0.2939,-0.9511,-0.0955,0.1564,-0.9877,0.0,0.309,-0.9511,0.0,0.1488,-0.9877,0.0483,0.2939,-0.9511,0.0955,0.4318,-0.891,0.1403,0.3673,-0.891,0.2668,0.2668,-0.891,0.3673,0.1403,-0.891,0.4318,0.0,-0.891,0.454,-0.1403,-0.891,0.4318,-0.2668,-0.891,0.3673,-0.3673,-0.891,0.2668,-0.4318,-0.891,0.1403,-0.454,-0.891,0.0,-0.4318,-0.891,-0.1403,-0.3673,-0.891,-0.2668,-0.2668,-0.891,-0.3673,-0.1403,-0.891,-0.4318,0.0,-0.891,-0.454,0.1403,-0.891,-0.4318,0.2668,-0.891,-0.3673,0.3673,-0.891,-0.2668,0.4318,-0.891,-0.1403,0.454,-0.891,0.0,0.4318,-0.891,0.1403,0.559,-0.809,0.1816,0.4755,-0.809,0.3455,0.3455,-0.809,0.4755,0.1816,-0.809,0.559,0.0,-0.809,0.5878,-0.1816,-0.809,0.559,-0.3455,-0.809,0.4755,-0.4755,-0.809,0.3455,-0.559,-0.809,0.1816,-0.5878,-0.809,0.0,-0.559,-0.809,-0.1816,-0.4755,-0.809,-0.3455,-0.3455,-0.809,-0.4755,-0.1816,-0.809,-0.559,0.0,-0.809,-0.5878,0.1816,-0.809,-0.559,0.3455,-0.809,-0.4755,0.4755,-0.809,-0.3455,0.559,-0.809,-0.1816,0.5878,-0.809,0.0,0.559,-0.809,0.1816,0.6725,-0.7071,0.2185,0.5721,-0.7071,0.4156,0.4156,-0.7071,0.5721,0.2185,-0.7071,0.6725,0.0,-0.7071,0.7071,-0.2185,-0.7071,0.6725,-0.4156,-0.7071,0.5721,-0.5721,-0.7071,0.4156,-0.6725,-0.7071,0.2185,-0.7071,-0.7071,0.0,-0.6725,-0.7071,-0.2185,-0.5721,-0.7071,-0.4156,-0.4156,-0.7071,-0.5721,-0.2185,-0.7071,-0.6725,0.0,-0.7071,-0.7071,0.2185,-0.7071,-0.6725,0.4156,-0.7071,-0.5721,0.5721,-0.7071,-0.4156,0.6725,-0.7071,-0.2185,0.7071,-0.7071,0.0,0.6725,-0.7071,0.2185,0.7694,-0.5878,0.25,0.6545,-0.5878,0.4755,0.4755,-0.5878,0.6545,0.25,-0.5878,0.7694,0.0,-0.5878,0.809,-0.25,-0.5878,0.7694,-0.4755,-0.5878,0.6545,-0.6545,-0.5878,0.4755,-0.7694,-0.5878,0.25,-0.809,-0.5878,0.0,-0.7694,-0.5878,-0.25,-0.6545,-0.5878,-0.4755,-0.4755,-0.5878,-0.6545,-0.25,-0.5878,-0.7694,0.0,-0.5878,-0.809,0.25,-0.5878,-0.7694,0.4755,-0.5878,-0.6545,0.6545,-0.5878,-0.4755,0.7694,-0.5878,-0.25,0.809,-0.5878,0.0,0.7694,-0.5878,0.25,0.8474,-0.454,0.2753,0.7208,-0.454,0.5237,0.5237,-0.454,0.7208,0.2753,-0.454,0.8474,0.0,-0.454,0.891,-0.2753,-0.454,0.8474,-0.5237,-0.454,0.7208,-0.7208,-0.454,0.5237,-0.8474,-0.454,0.2753,-0.891,-0.454,0.0,-0.8474,-0.454,-0.2753,-0.7208,-0.454,-0.5237,-0.5237,-0.454,-0.7208,-0.2753,-0.454,-0.8474,0.0,-0.454,-0.891,0.2753,-0.454,-0.8474,0.5237,-0.454,-0.7208,0.7208,-0.454,-0.5237,0.8474,-0.454,-0.2753,0.891,-0.454,0.0,0.8474,-0.454,0.2753,0.9045,-0.309,0.2939,0.7694,-0.309,0.559,0.559,-0.309,0.7694,0.2939,-0.309,0.9045,0.0,-0.309,0.9511,-0.2939,-0.309,0.9045,-0.559,-0.309,0.7694,-0.7694,-0.309,0.559,-0.9045,-0.309,0.2939,-0.9511,-0.309,0.0,-0.9045,-0.309,-0.2939,-0.7694,-0.309,-0.559,-0.559,-0.309,-0.7694,-0.2939,-0.309,-0.9045,0.0,-0.309,-0.9511,0.2939,-0.309,-0.9045,0.559,-0.309,-0.7694,0.7694,-0.309,-0.559,0.9045,-0.309,-0.2939,0.9511,-0.309,0.0,0.9045,-0.309,0.2939,0.9393,-0.1564,0.3052,0.7991,-0.1564,0.5805,0.5805,-0.1564,0.7991,0.3052,-0.1564,0.9393,0.0,-0.1564,0.9877,-0.3052,-0.1564,0.9393,-0.5805,-0.1564,0.7991,-0.7991,-0.1564,0.5805,-0.9393,-0.1564,0.3052,-0.9877,-0.1564,0.0,-0.9393,-0.1564,-0.3052,-0.7991,-0.1564,-0.5805,-0.5805,-0.1564,-0.7991,-0.3052,-0.1564,-0.9393,0.0,-0.1564,-0.9877,0.3052,-0.1564,-0.9393,0.5805,-0.1564,-0.7991,0.7991,-0.1564,-0.5805,0.9393,-0.1564,-0.3052,0.9877,-0.1564,0.0,0.9393,-0.1564,0.3052,0.9511,0.0,0.309,0.809,0.0,0.5878,0.5878,0.0,0.809,0.309,0.0,0.9511,0.0,0.0,1.0,-0.309,0.0,0.9511,-0.5878,0.0,0.809,-0.809,0.0,0.5878,-0.9511,0.0,0.309,-1.0,0.0,0.0,-0.9511,0.0,-0.309,-0.809,0.0,-0.5878,-0.5878,0.0,-0.809,-0.309,0.0,-0.9511,0.0,0.0,-1.0,0.309,0.0,-0.9511,0.5878,0.0,-0.809,0.809,0.0,-0.5878,0.9511,0.0,-0.309,1.0,0.0,0.0,0.9511,0.0,0.309,0.9393,0.1564,0.3052,0.7991,0.1564,0.5805,0.5805,0.1564,0.7991,0.3052,0.1564,0.9393,0.0,0.1564,0.9877,-0.3052,0.1564,0.9393,-0.5805,0.1564,0.7991,-0.7991,0.1564,0.5805,-0.9393,0.1564,0.3052,-0.9877,0.1564,0.0,-0.9393,0.1564,-0.3052,-0.7991,0.1564,-0.5805,-0.5805,0.1564,-0.7991,-0.3052,0.1564,-0.9393,0.0,0.1564,-0.9877,0.3052,0.1564,-0.9393,0.5805,0.1564,-0.7991,0.7991,0.1564,-0.5805,0.9393,0.1564,-0.3052,0.9877,0.1564,0.0,0.9393,0.1564,0.3052,0.9045,0.309,0.2939,0.7694,0.309,0.559,0.559,0.309,0.7694,0.2939,0.309,0.9045,0.0,0.309,0.9511,-0.2939,0.309,0.9045,-0.559,0.309,0.7694,-0.7694,0.309,0.559,-0.9045,0.309,0.2939,-0.9511,0.309,0.0,-0.9045,0.309,-0.2939,-0.7694,0.309,-0.559,-0.559,0.309,-0.7694,-0.2939,0.309,-0.9045,0.0,0.309,-0.9511,0.2939,0.309,-0.9045,0.559,0.309,-0.7694,0.7694,0.309,-0.559,0.9045,0.309,-0.2939,0.9511,0.309,0.0,0.9045,0.309,0.2939,0.8474,0.454,0.2753,0.7208,0.454,0.5237,0.5237,0.454,0.7208,0.2753,0.454,0.8474,0.0,0.454,0.891,-0.2753,0.454,0.8474,-0.5237,0.454,0.7208,-0.7208,0.454,0.5237,-0.8474,0.454,0.2753,-0.891,0.454,0.0,-0.8474,0.454,-0.2753,-0.7208,0.454,-0.5237,-0.5237,0.454,-0.7208,-0.2753,0.454,-0.8474,0.0,0.454,-0.891,0.2753,0.454,-0.8474,0.5237,0.454,-0.7208,0.7208,0.454,-0.5237,0.8474,0.454,-0.2753,0.891,0.454,0.0,0.8474,0.454,0.2753,0.7694,0.5878,0.25,0.6545,0.5878,0.4755,0.4755,0.5878,0.6545,0.25,0.5878,0.7694,0.0,0.5878,0.809,-0.25,0.5878,0.7694,-0.4755,0.5878,0.6545,-0.6545,0.5878,0.4755,-0.7694,0.5878,0.25,-0.809,0.5878,0.0,-0.7694,0.5878,-0.25,-0.6545,0.5878,-0.4755,-0.4755,0.5878,-0.6545,-0.25,0.5878,-0.7694,0.0,0.5878,-0.809,0.25,0.5878,-0.7694,0.4755,0.5878,-0.6545,0.6545,0.5878,-0.4755,0.7694,0.5878,-0.25,0.809,0.5878,0.0,0.7694,0.5878,0.25,0.6725,0.7071,0.2185,0.5721,0.7071,0.4156,0.4156,0.7071,0.5721,0.2185,0.7071,0.6725,0.0,0.7071,0.7071,-0.2185,0.7071,0.6725,-0.4156,0.7071,0.5721,-0.5721,0.7071,0.4156,-0.6725,0.7071,0.2185,-0.7071,0.7071,0.0,-0.6725,0.7071,-0.2185,-0.5721,0.7071,-0.4156,-0.4156,0.7071,-0.5721,-0.2185,0.7071,-0.6725,0.0,0.7071,-0.7071,0.2185,0.7071,-0.6725,0.4156,0.7071,-0.5721,0.5721,0.7071,-0.4156,0.6725,0.7071,-0.2185,0.7071,0.7071,0.0,0.6725,0.7071,0.2185,0.559,0.809,0.1816,0.4755,0.809,0.3455,0.3455,0.809,0.4755,0.1816,0.809,0.559,0.0,0.809,0.5878,-0.1816,0.809,0.559,-0.3455,0.809,0.4755,-0.4755,0.809,0.3455,-0.559,0.809,0.1816,-0.5878,0.809,0.0,-0.559,0.809,-0.1816,-0.4755,0.809,-0.3455,-0.3455,0.809,-0.4755,-0.1816,0.809,-0.559,0.0,0.809,-0.5878,0.1816,0.809,-0.559,0.3455,0.809,-0.4755,0.4755,0.809,-0.3455,0.559,0.809,-0.1816,0.5878,0.809,0.0,0.559,0.809,0.1816,0.4318,0.891,0.1403,0.3673,0.891,0.2668,0.2668,0.891,0.3673,0.1403,0.891,0.4318,0.0,0.891,0.454,-0.1403,0.891,0.4318,-0.2668,0.891,0.3673,-0.3673,0.891,0.2668,-0.4318,0.891,0.1403,-0.454,0.891,0.0,-0.4318,0.891,-0.1403,-0.3673,0.891,-0.2668,-0.2668,0.891,-0.3673,-0.1403,0.891,-0.4318,0.0,0.891,-0.454,0.1403,0.891,-0.4318,0.2668,0.891,-0.3673,0.3673,0.891,-0.2668,0.4318,0.891,-0.1403,0.454,0.891,0.0,0.4318,0.891,0.1403,0.2939,0.9511,0.0955,0.25,0.9511,0.1816,0.1816,0.9511,0.25,0.0955,0.9511,0.2939,0.0,0.9511,0.309,-0.0955,0.9511,0.2939,-0.1816,0.9511,0.25,-0.25,0.9511,0.1816,-0.2939,0.9511,0.0955,-0.309,0.9511,0.0,-0.2939,0.9511,-0.0955,-0.25,0.9511,-0.1816,-0.1816,0.9511,-0.25,-0.0955,0.9511,-0.2939,0.0,0.9511,-0.309,0.0955,0.9511,-0.2939,0.1816,0.9511,-0.25,0.25,0.9511,-0.1816,0.2939,0.9511,-0.0955,0.309,0.9511,0.0,0.2939,0.9511,0.0955,0.1488,0.9877,0.0483,0.1266,0.9877,0.0919,0.0919,0.9877,0.1266,0.0483,0.9877,0.1488,0.0,0.9877,0.1564,-0.0483,0.9877,0.1488,-0.0919,0.9877,0.1266,-0.1266,0.9877,0.0919,-0.1488,0.9877,0.0483,-0.1564,0.9877,0.0,-0.1488,0.9877,-0.0483,-0.1266,0.9877,-0.0919,-0.0919,0.9877,-0.1266,-0.0483,0.9877,-0.1488,0.0,0.9877,-0.1564,0.0483,0.9877,-0.1488,0.0919,0.9877,-0.1266,0.1266,0.9877,-0.0919,0.1488,0.9877,-0.0483,0.1564,0.9877,0.0,0.1488,0.9877,0.0483,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0],"normals":[0.1906,-0.9797,0.0619,0.1621,-0.9797,0.1178,0.3173,-0.9427,0.1031,0.2699,-0.9427,0.1961,0.1178,-0.9797,0.1621,0.1961,-0.9427,0.2699,0.0619,-0.9797,0.1906,0.1031,-0.9427,0.3173,0.0,-0.9797,0.2004,0.0,-0.9427,0.3336,-0.0619,-0.9797,0.1906,-0.1031,-0.9427,0.3173,-0.1178,-0.9797,0.1621,-0.1961,-0.9427,0.2699,-0.1621,-0.9797,0.1178,-0.2699,-0.9427,0.1961,-0.1906,-0.9797,0.0619,-0.3173,-0.9427,0.1031,-0.2004,-0.9797,0.0,-0.3336,-0.9427,0.0,-0.1906,-0.9797,-0.0619,-0.3173,-0.9427,-0.1031,-0.1621,-0.9797,-0.1178,-0.2699,-0.9427,-0.1961,-0.1178,-0.9797,-0.1621,-0.1961,-0.9427,-0.2699,-0.0619,-0.9797,-0.1906,-0.1031,-0.9427,-0.3173,0.0,-0.9797,-0.2004,0.0,-0.9427,-0.3336,0.0619,-0.9797,-0.1906,0.1031,-0.9427,-0.3173,0.1178,-0.9797,-0.1621,0.1961,-0.9427,-0.2699,0.1621,-0.9797,-0.1178,0.2699,-0.9427,-0.1961,0.1906,-0.9797,-0.0619,0.3173,-0.9427,-0.1031,0.2004,-0.9797,0.0,0.3336,-0.9427,0.0,0.1906,-0.9797,0.0619,0.3173,-0.9427,0.1031,0.4477,-0.8823,0.1455,0.3808,-0.8823,0.2767,0.2767,-0.8823,0.3808,0.1455,-0.8823,0.4477,0.0,-0.8823,0.4708,-0.1455,-0.8823,0.4477,-0.2767,-0.8823,0.3808,-0.3808,-0.8823,0.2767,-0.4477,-0.8823,0.1455,-0.4708,-0.8823,0.0,-0.4477,-0.8823,-0.1455,-0.3808,-0.8823,-0.2767,-0.2767,-0.8823,-0.3808,-0.1455,-0.8823,-0.4477,0.0,-0.8823,-0.4708,0.1455,-0.8823,-0.4477,0.2767,-0.8823,-0.3808,0.3808,-0.8823,-0.2767,0.4477,-0.8823,-0.1455,0.4708,-0.8823,0.0,0.4477,-0.8823,0.1455,0.5703,-0.8003,0.1853,0.4851,-0.8003,0.3525,0.3525,-0.8003,0.4851,0.1853,-0.8003,0.5703,0.0,-0.8003,0.5997,-0.1853,-0.8003,0.5703,-0.3525,-0.8003,0.4851,-0.4851,-0.8003,0.3525,-0.5703,-0.8003,0.1853,-0.5997,-0.8003,0.0,-0.5703,-0.8003,-0.1853,-0.4851,-0.8003,-0.3525,-0.3525,-0.8003,-0.4851,-0.1853,-0.8003,-0.5703,0.0,-0.8003,-0.5997,0.1853,-0.8003,-0.5703,0.3525,-0.8003,-0.4851,0.4851,-0.8003,-0.3525,0.5703,-0.8003,-0.1853,0.5997,-0.8003,0.0,0.5703,-0.8003,0.1853,0.6803,-0.6988,0.221,0.5787,-0.6988,0.4205,0.4205,-0.6988,0.5787,0.221,-0.6988,0.6803,0.0,-0.6988,0.7153,-0.221,-0.6988,0.6803,-0.4205,-0.6988,0.5787,-0.5787,-0.6988,0.4205,-0.6803,-0.6988,0.221,-0.7153,-0.6988,0.0,-0.6803,-0.6988,-0.221,-0.5787,-0.6988,-0.4205,-0.4205,-0.6988,-0.5787,-0.221,-0.6988,-0.6803,0.0,-0.6988,-0.7153,0.221,-0.6988,-0.6803,0.4205,-0.6988,-0.5787,0.5787,-0.6988,-0.4205,0.6803,-0.6988,-0.221,0.7153,-0.6988,0.0,0.6803,-0.6988,0.221,0.7745,-0.5804,0.2516,0.6588,-0.5804,0.4787,0.4787,-0.5804,0.6588,0.2516,-0.5804,0.7745,0.0,-0.5804,0.8143,-0.2516,-0.5804,0.7745,-0.4787,-0.5804,0.6588,-0.6588,-0.5804,0.4787,-0.7745,-0.5804,0.2516,-0.8143,-0.5804,0.0,-0.7745,-0.5804,-0.2516,-0.6588,-0.5804,-0.4787,-0.4787,-0.5804,-0.6588,-0.2516,-0.5804,-0.7745,0.0,-0.5804,-0.8143,0.2516,-0.5804,-0.7745,0.4787,-0.5804,-0.6588,0.6588,-0.5804,-0.4787,0.7745,-0.5804,-0.2516,0.8143,-0.5804,0.0,0.7745,-0.5804,0.2516,0.8503,-0.448,0.2763,0.7233,-0.448,0.5255,0.5255,-0.448,0.7233,0.2763,-0.448,0.8503,0.0,-0.448,0.894,-0.2763,-0.448,0.8503,-0.5255,-0.448,0.7233,-0.7233,-0.448,0.5255,-0.8503,-0.448,0.2763,-0.894,-0.448,0.0,-0.8503,-0.448,-0.2763,-0.7233,-0.448,-0.5255,-0.5255,-0.448,-0.7233,-0.2763,-0.448,-0.8503,0.0,-0.448,-0.894,0.2763,-0.448,-0.8503,0.5255,-0.448,-0.7233,0.7233,-0.448,-0.5255,0.8503,-0.448,-0.2763,0.894,-0.448,0.0,0.8503,-0.448,0.2763,0.9058,-0.3048,0.2943,0.7705,-0.3048,0.5598,0.5598,-0.3048,0.7705,0.2943,-0.3048,0.9058,0.0,-0.3048,0.9524,-0.2943,-0.3048,0.9058,-0.5598,-0.3048,0.7705,-0.7705,-0.3048,0.5598,-0.9058,-0.3048,0.2943,-0.9524,-0.3048,0.0,-0.9058,-0.3048,-0.2943,-0.7705,-0.3048,-0.5598,-0.5598,-0.3048,-0.7705,-0.2943,-0.3048,-0.9058,0.0,-0.3048,-0.9524,0.2943,-0.3048,-0.9058,0.5598,-0.3048,-0.7705,0.7705,-0.3048,-0.5598,0.9058,-0.3048,-0.2943,0.9524,-0.3048,0.0,0.9058,-0.3048,0.2943,0.9397,-0.1542,0.3053,0.7993,-0.1542,0.5808,0.5808,-0.1542,0.7993,0.3053,-0.1542,0.9397,0.0,-0.1542,0.988,-0.3053,-0.1542,0.9397,-0.5808,-0.1542,0.7993,-0.7993,-0.1542,0.5808,-0.9397,-0.1542,0.3053,-0.988,-0.1542,0.0,-0.9397,-0.1542,-0.3053,-0.7993,-0.1542,-0.5808,-0.5808,-0.1542,-0.7993,-0.3053,-0.1542,-0.9397,0.0,-0.1542,-0.988,0.3053,-0.1542,-0.9397,0.5808,-0.1542,-0.7993,0.7993,-0.1542,-0.5808,0.9397,-0.1542,-0.3053,0.988,-0.1542,0.0,0.9397,-0.1542,0.3053,0.9511,0.0,0.309,0.809,0.0,0.5878,0.5878,0.0,0.809,0.309,0.0,0.9511,0.0,0.0,1.0,-0.309,0.0,0.9511,-0.5878,0.0,0.809,-0.809,0.0,0.5878,-0.9511,0.0,0.309,-1.0,0.0,0.0,-0.9511,0.0,-0.309,-0.809,0.0,-0.5878,-0.5878,0.0,-0.809,-0.309,0.0,-0.9511,0.0,0.0,-1.0,0.309,0.0,-0.9511,0.5878,0.0,-0.809,0.809,0.0,-0.5878,0.9511,0.0,-0.309,1.0,0.0,0.0,0.9511,0.0,0.309,0.9397,0.1542,0.3053,0.7993,0.1542,0.5808,0.5808,0.1542,0.7993,0.3053,0.1542,0.9397,0.0,0.1542,0.988,-0.3053,0.1542,0.9397,-0.5808,0.1542,0.7993,-0.7993,0.1542,0.5808,-0.9397,0.1542,0.3053,-0.988,0.1542,0.0,-0.9397,0.1542,-0.3053,-0.7993,0.1542,-0.5808,-0.5808,0.1542,-0.7993,-0.3053,0.1542,-0.9397,0.0,0.1542,-0.988,0.3053,0.1542,-0.9397,0.5808,0.1542,-0.7993,0.7993,0.1542,-0.5808,0.9397,0.1542,-0.3053,0.988,0.1542,0.0,0.9397,0.1542,0.3053,0.9058,0.3048,0.2943,0.7705,0.3048,0.5598,0.5598,0.3048,0.7705,0.2943,0.3048,0.9058,0.0,0.3048,0.9524,-0.2943,0.3048,0.9058,-0.5598,0.3048,0.7705,-0.7705,0.3048,0.5598,-0.9058,0.3048,0.2943,-0.9524,0.3048,0.0,-0.9058,0.3048,-0.2943,-0.7705,0.3048,-0.5598,-0.5598,0.3048,-0.7705,-0.2943,0.3048,-0.9058,0.0,0.3048,-0.9524,0.2943,0.3048,-0.9058,0.5598,0.3048,-0.7705,0.7705,0.3048,-0.5598,0.9058,0.3048,-0.2943,0.9524,0.3048,0.0,0.9058,0.3048,0.2943,0.8503,0.448,0.2763,0.7233,0.448,0.5255,0.5255,0.448,0.7233,0.2763,0.448,0.8503,0.0,0.448,0.894,-0.2763,0.448,0.8503,-0.5255,0.448,0.7233,-0.7233,0.448,0.5255,-0.8503,0.448,0.2763,-0.894,0.448,0.0,-0.8503,0.448,-0.2763,-0.7233,0.448,-0.5255,-0.5255,0.448,-0.7233,-0.2763,0.448,-0.8503,0.0,0.448,-0.894,0.2763,0.448,-0.8503,0.5255,0.448,-0.7233,0.7233,0.448,-0.5255,0.8503,0.448,-0.2763,0.894,0.448,0.0,0.8503,0.448,0.2763,0.7745,0.5804,0.2516,0.6588,0.5804,0.4787,0.4787,0.5804,0.6588,0.2516,0.5804,0.7745,0.0,0.5804,0.8143,-0.2516,0.5804,0.7745,-0.4787,0.5804,0.6588,-0.6588,0.5804,0.4787,-0.7745,0.5804,0.2516,-0.8143,0.5804,0.0,-0.7745,0.5804,-0.2516,-0.6588,0.5804,-0.4787,-0.4787,0.5804,-0.6588,-0.2516,0.5804,-0.7745,0.0,0.5804,-0.8143,0.2516,0.5804,-0.7745,0.4787,0.5804,-0.6588,0.6588,0.5804,-0.4787,0.7745,0.5804,-0.2516,0.8143,0.5804,0.0,0.7745,0.5804,0.2516,0.6803,0.6988,0.221,0.5787,0.6988,0.4205,0.4205,0.6988,0.5787,0.221,0.6988,0.6803,0.0,0.6988,0.7153,-0.221,0.6988,0.6803,-0.4205,0.6988,0.5787,-0.5787,0.6988,0.4205,-0.6803,0.6988,0.221,-0.7153,0.6988,0.0,-0.6803,0.6988,-0.221,-0.5787,0.6988,-0.4205,-0.4205,0.6988,-0.5787,-0.221,0.6988,-0.6803,0.0,0.6988,-0.7153,0.221,0.6988,-0.6803,0.4205,0.6988,-0.5787,0.5787,0.6988,-0.4205,0.6803,0.6988,-0.221,0.7153,0.6988,0.0,0.6803,0.6988,0.221,0.5703,0.8003,0.1853,0.4851,0.8003,0.3525,0.3525,0.8003,0.4851,0.1853,0.8003,0.5703,0.0,0.8003,0.5997,-0.1853,0.8003,0.5703,-0.3525,0.8003,0.4851,-0.4851,0.8003,0.3525,-0.5703,0.8003,0.1853,-0.5997,0.8003,0.0,-0.5703,0.8003,-0.1853,-0.4851,0.8003,-0.3525,-0.3525,0.8003,-0.4851,-0.1853,0.8003,-0.5703,0.0,0.8003,-0.5997,0.1853,0.8003,-0.5703,0.3525,0.8003,-0.4851,0.4851,0.8003,-0.3525,0.5703,0.8003,-0.1853,0.5997,0.8003,0.0,0.5703,0.8003,0.1853,0.4477,0.8823,0.1455,0.3808,0.8823,0.2767,0.2767,0.8823,0.3808,0.1455,0.8823,0.4477,0.0,0.8823,0.4708,-0.1455,0.8823,0.4477,-0.2767,0.8823,0.3808,-0.3808,0.8823,0.2767,-0.4477,0.8823,0.1455,-0.4708,0.8823,0.0,-0.4477,0.8823,-0.1455,-0.3808,0.8823,-0.2767,-0.2767,0.8823,-0.3808,-0.1455,0.8823,-0.4477,0.0,0.8823,-0.4708,0.1455,0.8823,-0.4477,0.2767,0.8823,-0.3808,0.3808,0.8823,-0.2767,0.4477,0.8823,-0.1455,0.4708,0.8823,0.0,0.4477,0.8823,0.1455,0.3173,0.9427,0.1031,0.2699,0.9427,0.1961,0.1961,0.9427,0.2699,0.1031,0.9427,0.3173,0.0,0.9427,0.3336,-0.1031,0.9427,0.3173,-0.1961,0.9427,0.2699,-0.2699,0.9427,0.1961,-0.3173,0.9427,0.1031,-0.3336,0.9427,0.0,-0.3173,0.9427,-0.1031,-0.2699,0.9427,-0.1961,-0.1961,0.9427,-0.2699,-0.1031,0.9427,-0.3173,0.0,0.9427,-0.3336,0.1031,0.9427,-0.3173,0.1961,0.9427,-0.2699,0.2699,0.9427,-0.1961,0.3173,0.9427,-0.1031,0.3336,0.9427,0.0,0.3173,0.9427,0.1031,0.1906,0.9797,0.0619,0.1621,0.9797,0.1178,0.1178,0.9797,0.1621,0.0619,0.9797,0.1906,0.0,0.9797,0.2004,-0.0619,0.9797,0.1906,-0.1178,0.9797,0.1621,-0.1621,0.9797,0.1178,-0.1906,0.9797,0.0619,-0.2004,0.9797,0.0,-0.1906,0.9797,-0.0619,-0.1621,0.9797,-0.1178,-0.1178,0.9797,-0.1621,-0.0619,0.9797,-0.1906,0.0,0.9797,-0.2004,0.0619,0.9797,-0.1906,0.1178,0.9797,-0.1621,0.1621,0.9797,-0.1178,0.1906,0.9797,-0.0619,0.2004,0.9797,0.0,0.1906,0.9797,0.0619,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0],"tangents":[-0.4482,-0.0307,0.8934,-1.0,-0.5629,0.0062,0.8265,-1.0,-0.438,-0.0493,0.8976,-1.0,-0.5878,0.0,0.809,-1.0,-0.7908,0.0062,0.6121,-1.0,-0.809,0.0,0.5878,-1.0,-0.9412,0.0062,0.3378,-1.0,-0.9511,0.0,0.309,-1.0,-0.9995,0.0062,0.0304,-1.0,-1.0,0.0,0.0,-1.0,-0.96,0.0062,-0.28,-1.0,-0.9511,0.0,-0.309,-1.0,-0.8265,0.0062,-0.5629,-1.0,-0.809,0.0,-0.5878,-1.0,-0.6121,0.0062,-0.7908,-1.0,-0.5878,0.0,-0.809,-1.0,-0.3378,0.0062,-0.9412,-1.0,-0.309,0.0,-0.9511,-1.0,-0.0304,0.0062,-0.9995,-1.0,0.0,0.0,-1.0,-1.0,0.28,0.0062,-0.96,-1.0,0.309,0.0,-0.9511,-1.0,0.5629,0.0062,-0.8265,-1.0,0.5878,0.0,-0.809,-1.0,0.7908,0.0062,-0.6121,-1.0,0.809,0.0,-0.5878,-1.0,0.9412,0.0062,-0.3378,-1.0,0.9511,0.0,-0.309,-1.0,0.9995,0.0062,-0.0304,-1.0,1.0,0.0,0.0,-1.0,0.96,0.0062,0.28,-1.0,0.9511,0.0,0.309,-1.0,0.8265,0.0062,0.5629,-1.0,0.809,0.0,0.5878,-1.0,0.6121,0.0062,0.7908,-1.0,0.5878,0.0,0.809,-1.0,0.3378,0.0062,0.9412,-1.0,0.309,0.0,0.9511,-1.0,0.0304,0.0062,0.9995,-1.0,0.0,0.0,1.0,-1.0,-0.1625,0.0307,0.9862,-1.0,-0.1732,0.0493,0.9836,-1.0,-0.4222,-0.0651,0.9042,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.1899,0.0651,0.9796,-1.0,-0.4023,-0.0754,0.9124,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.2109,0.0754,0.9746,-1.0,-0.3802,-0.0787,0.9215,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.234,0.0787,0.969,-1.0,-0.3582,-0.0745,0.9306,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.2572,0.0745,0.9635,-1.0,-0.3384,-0.0633,0.9389,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.2781,0.0633,0.9585,-1.0,-0.3226,-0.0459,0.9454,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.2947,0.0459,0.9545,-1.0,-0.3125,-0.0241,0.9496,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.3053,0.0241,0.9519,-1.0,-0.309,0.0,0.9511,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.309,0.0,0.9511,-1.0,-0.3125,0.0241,0.9496,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.3053,-0.0241,0.9519,-1.0,-0.3226,0.0459,0.9454,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.2947,-0.0459,0.9545,-1.0,-0.3384,0.0633,0.9389,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.2781,-0.0633,0.9585,-1.0,-0.3582,0.0745,0.9306,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.2572,-0.0745,0.9635,-1.0,-0.3802,0.0787,0.9215,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.234,-0.0787,0.969,-1.0,-0.4023,0.0754,0.9124,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.2109,-0.0754,0.9746,-1.0,-0.4222,0.0651,0.9042,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.1899,-0.0651,0.9796,-1.0,-0.438,0.0493,0.8976,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.1732,-0.0493,0.9836,-1.0,-0.4482,0.0307,0.8934,-1.0,-0.6121,0.0062,0.7908,-1.0,-0.8265,0.0062,0.5629,-1.0,-0.96,0.0062,0.28,-1.0,-0.9995,0.0062,-0.0304,-1.0,-0.9412,0.0062,-0.3378,-1.0,-0.7908,0.0062,-0.6121,-1.0,-0.5629,0.0062,-0.8265,-1.0,-0.28,0.0062,-0.96,-1.0,0.0304,0.0062,-0.9995,-1.0,0.3378,0.0062,-0.9412,-1.0,0.6121,0.0062,-0.7908,-1.0,0.8265,0.0062,-0.5629,-1.0,0.96,0.0062,-0.28,-1.0,0.9995,0.0062,0.0304,-1.0,0.9412,0.0062,0.3378,-1.0,0.7908,0.0062,0.6121,-1.0,0.5629,0.0062,0.8265,-1.0,0.28,0.0062,0.96,-1.0,-0.0304,0.0062,0.9995,-1.0,-0.1625,-0.0307,0.9862,-1.0,-0.454,0.0,0.891,-1.0,-0.7071,0.0,0.7071,-1.0,-0.891,0.0,0.454,-1.0,-0.9877,0.0,0.1564,-1.0,-0.9877,0.0,-0.1564,-1.0,-0.891,0.0,-0.454,-1.0,-0.7071,0.0,-0.7071,-1.0,-0.454,0.0,-0.891,-1.0,-0.1564,0.0,-0.9877,-1.0,0.1564,0.0,-0.9877,-1.0,0.454,0.0,-0.891,-1.0,0.7071,0.0,-0.7071,-1.0,0.891,0.0,-0.454,-1.0,0.9877,0.0,-0.1564,-1.0,0.9877,0.0,0.1564,-1.0,0.891,0.0,0.454,-1.0,0.7071,0.0,0.7071,-1.0,0.454,0.0,0.891,-1.0,0.1564,0.0,0.9877,-1.0,-0.1564,0.0,0.9877,-1.0,-0.454,0.0,0.891,-1.0,-0.7071,0.0,0.7071,-1.0,-0.891,0.0,0.454,-1.0,-0.9877,0.0,0.1564,-1.0,-0.9877,0.0,-0.1564,-1.0,-0.891,0.0,-0.454,-1.0,-0.7071,0.0,-0.7071,-1.0,-0.454,0.0,-0.891,-1.0,-0.1564,0.0,-0.9877,-1.0,0.1564,0.0,-0.9877,-1.0,0.454,0.0,-0.891,-1.0,0.7071,0.0,-0.7071,-1.0,0.891,0.0,-0.454,-1.0,0.9877,0.0,-0.1564,-1.0,0.9877,0.0,0.1564,-1.0,0.891,0.0,0.454,-1.0,0.7071,0.0,0.7071,-1.0,0.454,0.0,0.891,-1.0,0.1564,0.0,0.9877,-1.0,-0.1564,0.0,0.9877,-1.0],"uvs":[0.0,0.05,0.05,0.05,0.0,0.1,0.05,0.1,0.1,0.05,0.1,0.1,0.15,0.05,0.15,0.1,0.2,0.05,0.2,0.1,0.25,0.05,0.25,0.1,0.3,0.05,0.3,0.1,0.35,0.05,0.35,0.1,0.4,0.05,0.4,0.1,0.45,0.05,0.45,0.1,0.5,0.05,0.5,0.1,0.55,0.05,0.55,0.1,0.6,0.05,0.6,0.1,0.65,0.05,0.65,0.1,0.7,0.05,0.7,0.1,0.75,0.05,0.75,0.1,0.8,0.05,0.8,0.1,0.85,0.05,0.85,0.1,0.9,0.05,0.9,0.1,0.95,0.05,0.95,0.1,1.0,0.05,1.0,0.1,0.0,0.15,0.05,0.15,0.1,0.15,0.15,0.15,0.2,0.15,0.25,0.15,0.3,0.15,0.35,0.15,0.4,0.15,0.45,0.15,0.5,0.15,0.55,0.15,0.6,0.15,0.65,0.15,0.7,0.15,0.75,0.15,0.8,0.15,0.85,0.15,0.9,0.15,0.95,0.15,1.0,0.15,0.0,0.2,0.05,0.2,0.1,0.2,0.15,0.2,0.2,0.2,0.25,0.2,0.3,0.2,0.35,0.2,0.4,0.2,0.45,0.2,0.5,0.2,0.55,0.2,0.6,0.2,0.65,0.2,0.7,0.2,0.75,0.2,0.8,0.2,0.85,0.2,0.9,0.2,0.95,0.2,1.0,0.2,0.0,0.25,0.05,0.25,0.1,0.25,0.15,0.25,0.2,0.25,0.25,0.25,0.3,0.25,0.35,0.25,0.4,0.25,0.45,0.25,0.5,0.25,0.55,0.25,0.6,0.25,0.65,0.25,0.7,0.25,0.75,0.25,0.8,0.25,0.85,0.25,0.9,0.25,0.95,0.25,1.0,0.25,0.0,0.3,0.05,0.3,0.1,0.3,0.15,0.3,0.2,0.3,0.25,0.3,0.3,0.3,0.35,0.3,0.4,0.3,0.45,0.3,0.5,0.3,0.55,0.3,0.6,0.3,0.65,0.3,0.7,0.3,0.75,0.3,0.8,0.3,0.85,0.3,0.9,0.3,0.95,0.3,1.0,0.3,0.0,0.35,0.05,0.35,0.1,0.35,0.15,0.35,0.2,0.35,0.25,0.35,0.3,0.35,0.35,0.35,0.4,0.35,0.45,0.35,0.5,0.35,0.55,0.35,0.6,0.35,0.65,0.35,0.7,0.35,0.75,0.35,0.8,0.35,0.85,0.35,0.9,0.35,0.95,0.35,1.0,0.35,0.0,0.4,0.05,0.4,0.1,0.4,0.15,0.4,0.2,0.4,0.25,0.4,0.3,0.4,0.35,0.4,0.4,0.4,0.45,0.4,0.5,0.4,0.55,0.4,0.6,0.4,0.65,0.4,0.7,0.4,0.75,0.4,0.8,0.4,0.85,0.4,0.9,0.4,0.95,0.4,1.0,0.4,0.0,0.45,0.05,0.45,0.1,0.45,0.15,0.45,0.2,0.45,0.25,0.45,0.3,0.45,0.35,0.45,0.4,0.45,0.45,0.45,0.5,0.45,0.55,0.45,0.6,0.45,0.65,0.45,0.7,0.45,0.75,0.45,0.8,0.45,0.85,0.45,0.9,0.45,0.95,0.45,1.0,0.45,0.0,0.5,0.05,0.5,0.1,0.5,0.15,0.5,0.2,0.5,0.25,0.5,0.3,0.5,0.35,0.5,0.4,0.5,0.45,0.5,0.5,0.5,0.55,0.5,0.6,0.5,0.65,0.5,0.7,0.5,0.75,0.5,0.8,0.5,0.85,0.5,0.9,0.5,0.95,0.5,1.0,0.5,0.0,0.55,0.05,0.55,0.1,0.55,0.15,0.55,0.2,0.55,0.25,0.55,0.3,0.55,0.35,0.55,0.4,0.55,0.45,0.55,0.5,0.55,0.55,0.55,0.6,0.55,0.65,0.55,0.7,0.55,0.75,0.55,0.8,0.55,0.85,0.55,0.9,0.55,0.95,0.55,1.0,0.55,0.0,0.6,0.05,0.6,0.1,0.6,0.15,0.6,0.2,0.6,0.25,0.6,0.3,0.6,0.35,0.6,0.4,0.6,0.45,0.6,0.5,0.6,0.55,0.6,0.6,0.6,0.65,0.6,0.7,0.6,0.75,0.6,0.8,0.6,0.85,0.6,0.9,0.6,0.95,0.6,1.0,0.6,0.0,0.65,0.05,0.65,0.1,0.65,0.15,0.65,0.2,0.65,0.25,0.65,0.3,0.65,0.35,0.65,0.4,0.65,0.45,0.65,0.5,0.65,0.55,0.65,0.6,0.65,0.65,0.65,0.7,0.65,0.75,0.65,0.8,0.65,0.85,0.65,0.9,0.65,0.95,0.65,1.0,0.65,0.0,0.7,0.05,0.7,0.1,0.7,0.15,0.7,0.2,0.7,0.25,0.7,0.3,0.7,0.35,0.7,0.4,0.7,0.45,0.7,0.5,0.7,0.55,0.7,0.6,0.7,0.65,0.7,0.7,0.7,0.75,0.7,0.8,0.7,0.85,0.7,0.9,0.7,0.95,0.7,1.0,0.7,0.0,0.75,0.05,0.75,0.1,0.75,0.15,0.75,0.2,0.75,0.25,0.75,0.3,0.75,0.35,0.75,0.4,0.75,0.45,0.75,0.5,0.75,0.55,0.75,0.6,0.75,0.65,0.75,0.7,0.75,0.75,0.75,0.8,0.75,0.85,0.75,0.9,0.75,0.95,0.75,1.0,0.75,0.0,0.8,0.05,0.8,0.1,0.8,0.15,0.8,0.2,0.8,0.25,0.8,0.3,0.8,0.35,0.8,0.4,0.8,0.45,0.8,0.5,0.8,0.55,0.8,0.6,0.8,0.65,0.8,0.7,0.8,0.75,0.8,0.8,0.8,0.85,0.8,0.9,0.8,0.95,0.8,1.0,0.8,0.0,0.85,0.05,0.85,0.1,0.85,0.15,0.85,0.2,0.85,0.25,0.85,0.3,0.85,0.35,0.85,0.4,0.85,0.45,0.85,0.5,0.85,0.55,0.85,0.6,0.85,0.65,0.85,0.7,0.85,0.75,0.85,0.8,0.85,0.85,0.85,0.9,0.85,0.95,0.85,1.0,0.85,0.0,0.9,0.05,0.9,0.1,0.9,0.15,0.9,0.2,0.9,0.25,0.9,0.3,0.9,0.35,0.9,0.4,0.9,0.45,0.9,0.5,0.9,0.55,0.9,0.6,0.9,0.65,0.9,0.7,0.9,0.75,0.9,0.8,0.9,0.85,0.9,0.9,0.9,0.95,0.9,1.0,0.9,0.0,0.95,0.05,0.95,0.1,0.95,0.15,0.95,0.2,0.95,0.25,0.95,0.3,0.95,0.35,0.95,0.4,0.95,0.45,0.95,0.5,0.95,0.55,0.95,0.6,0.95,0.65,0.95,0.7,0.95,0.75,0.95,0.8,0.95,0.85,0.95,0.9,0.95,0.95,0.95,1.0,0.95,0.025,0.0,0.075,0.0,0.125,0.0,0.175,0.0,0.225,0.0,0.275,0.0,0.325,0.0,0.375,0.0,0.425,0.0,0.475,0.0,0.525,0.0,0.575,0.0,0.625,0.0,0.675,0.0,0.725,0.0,0.775,0.0,0.825,0.0,0.875,0.0,0.925,0.0,0.975,0.0,0.025,1.0,0.075,1.0,0.125,1.0,0.175,1.0,0.225,1.0,0.275,1.0,0.325,1.0,0.375,1.0,0.425,1.0,0.475,1.0,0.525,1.0,0.575,1.0,0.625,1.0,0.675,1.0,0.725,1.0,0.775,1.0,0.825,1.0,0.875,1.0,0.925,1.0,0.975,1.0],"uvs2":null,"colors":null,"hasVertexAlpha":false,"matricesIndices":null,"matricesWeights":null,"matricesIndicesExtra":null,"matricesWeightsExtra":null,"indices":[0,1,2,2,1,3,1,4,3,3,4,5,4,6,5,5,6,7,6,8,7,7,8,9,8,10,9,9,10,11,10,12,11,11,12,13,12,14,13,13,14,15,14,16,15,15,16,17,16,18,17,17,18,19,18,20,19,19,20,21,20,22,21,21,22,23,22,24,23,23,24,25,24,26,25,25,26,27,26,28,27,27,28,29,28,30,29,29,30,31,30,32,31,31,32,33,32,34,33,33,34,35,34,36,35,35,36,37,36,38,37,37,38,39,38,40,39,39,40,41,2,3,42,42,3,43,3,5,43,43,5,44,5,7,44,44,7,45,7,9,45,45,9,46,9,11,46,46,11,47,11,13,47,47,13,48,13,15,48,48,15,49,15,17,49,49,17,50,17,19,50,50,19,51,19,21,51,51,21,52,21,23,52,52,23,53,23,25,53,53,25,54,25,27,54,54,27,55,27,29,55,55,29,56,29,31,56,56,31,57,31,33,57,57,33,58,33,35,58,58,35,59,35,37,59,59,37,60,37,39,60,60,39,61,39,41,61,61,41,62,42,43,63,63,43,64,43,44,64,64,44,65,44,45,65,65,45,66,45,46,66,66,46,67,46,47,67,67,47,68,47,48,68,68,48,69,48,49,69,69,49,70,49,50,70,70,50,71,50,51,71,71,51,72,51,52,72,72,52,73,52,53,73,73,53,74,53,54,74,74,54,75,54,55,75,75,55,76,55,56,76,76,56,77,56,57,77,77,57,78,57,58,78,78,58,79,58,59,79,79,59,80,59,60,80,80,60,81,60,61,81,81,61,82,61,62,82,82,62,83,63,64,84,84,64,85,64,65,85,85,65,86,65,66,86,86,66,87,66,67,87,87,67,88,67,68,88,88,68,89,68,69,89,89,69,90,69,70,90,90,70,91,70,71,91,91,71,92,71,72,92,92,72,93,72,73,93,93,73,94,73,74,94,94,74,95,74,75,95,95,75,96,75,76,96,96,76,97,76,77,97,97,77,98,77,78,98,98,78,99,78,79,99,99,79,100,79,80,100,100,80,101,80,81,101,101,81,102,81,82,102,102,82,103,82,83,103,103,83,104,84,85,105,105,85,106,85,86,106,106,86,107,86,87,107,107,87,108,87,88,108,108,88,109,88,89,109,109,89,110,89,90,110,110,90,111,90,91,111,111,91,112,91,92,112,112,92,113,92,93,113,113,93,114,93,94,114,114,94,115,94,95,115,115,95,116,95,96,116,116,96,117,96,97,117,117,97,118,97,98,118,118,98,119,98,99,119,119,99,120,99,100,120,120,100,121,100,101,121,121,101,122,101,102,122,122,102,123,102,103,123,123,103,124,103,104,124,124,104,125,105,106,126,126,106,127,106,107,127,127,107,128,107,108,128,128,108,129,108,109,129,129,109,130,109,110,130,130,110,131,110,111,131,131,111,132,111,112,132,132,112,133,112,113,133,133,113,134,113,114,134,134,114,135,114,115,135,135,115,136,115,116,136,136,116,137,116,117,137,137,117,138,117,118,138,138,118,139,118,119,139,139,119,140,119,120,140,140,120,141,120,121,141,141,121,142,121,122,142,142,122,143,122,123,143,143,123,144,123,124,144,144,124,145,124,125,145,145,125,146,126,127,147,147,127,148,127,128,148,148,128,149,128,129,149,149,129,150,129,130,150,150,130,151,130,131,151,151,131,152,131,132,152,152,132,153,132,133,153,153,133,154,133,134,154,154,134,155,134,135,155,155,135,156,135,136,156,156,136,157,136,137,157,157,137,158,137,138,158,158,138,159,138,139,159,159,139,160,139,140,160,160,140,161,140,141,161,161,141,162,141,142,162,162,142,163,142,143,163,163,143,164,143,144,164,164,144,165,144,145,165,165,145,166,145,146,166,166,146,167,147,148,168,168,148,169,148,149,169,169,149,170,149,150,170,170,150,171,150,151,171,171,151,172,151,152,172,172,152,173,152,153,173,173,153,174,153,154,174,174,154,175,154,155,175,175,155,176,155,156,176,176,156,177,156,157,177,177,157,178,157,158,178,178,158,179,158,159,179,179,159,180,159,160,180,180,160,181,160,161,181,181,161,182,161,162,182,182,162,183,162,163,183,183,163,184,163,164,184,184,164,185,164,165,185,185,165,186,165,166,186,186,166,187,166,167,187,187,167,188,168,169,189,189,169,190,169,170,190,190,170,191,170,171,191,191,171,192,171,172,192,192,172,193,172,173,193,193,173,194,173,174,194,194,174,195,174,175,195,195,175,196,175,176,196,196,176,197,176,177,197,197,177,198,177,178,198,198,178,199,178,179,199,199,179,200,179,180,200,200,180,201,180,181,201,201,181,202,181,182,202,202,182,203,182,183,203,203,183,204,183,184,204,204,184,205,184,185,205,205,185,206,185,186,206,206,186,207,186,187,207,207,187,208,187,188,208,208,188,209,189,190,210,210,190,211,190,191,211,211,191,212,191,192,212,212,192,213,192,193,213,213,193,214,193,194,214,214,194,215,194,195,215,215,195,216,195,196,216,216,196,217,196,197,217,217,197,218,197,198,218,218,198,219,198,199,219,219,199,220,199,200,220,220,200,221,200,201,221,221,201,222,201,202,222,222,202,223,202,203,223,223,203,224,203,204,224,224,204,225,204,205,225,225,205,226,205,206,226,226,206,227,206,207,227,227,207,228,207,208,228,228,208,229,208,209,229,229,209,230,210,211,231,231,211,232,211,212,232,232,212,233,212,213,233,233,213,234,213,214,234,234,214,235,214,215,235,235,215,236,215,216,236,236,216,237,216,217,237,237,217,238,217,218,238,238,218,239,218,219,239,239,219,240,219,220,240,240,220,241,220,221,241,241,221,242,221,222,242,242,222,243,222,223,243,243,223,244,223,224,244,244,224,245,224,225,245,245,225,246,225,226,246,246,226,247,226,227,247,247,227,248,227,228,248,248,228,249,228,229,249,249,229,250,229,230,250,250,230,251,231,232,252,252,232,253,232,233,253,253,233,254,233,234,254,254,234,255,234,235,255,255,235,256,235,236,256,256,236,257,236,237,257,257,237,258,237,238,258,258,238,259,238,239,259,259,239,260,239,240,260,260,240,261,240,241,261,261,241,262,241,242,262,262,242,263,242,243,263,263,243,264,243,244,264,264,244,265,244,245,265,265,245,266,245,246,266,266,246,267,246,247,267,267,247,268,247,248,268,268,248,269,248,249,269,269,249,270,249,250,270,270,250,271,250,251,271,271,251,272,252,253,273,273,253,274,253,254,274,274,254,275,254,255,275,275,255,276,255,256,276,276,256,277,256,257,277,277,257,278,257,258,278,278,258,279,258,259,279,279,259,280,259,260,280,280,260,281,260,261,281,281,261,282,261,262,282,282,262,283,262,263,283,283,263,284,263,264,284,284,264,285,264,265,285,285,265,286,265,266,286,286,266,287,266,267,287,287,267,288,267,268,288,288,268,289,268,269,289,289,269,290,269,270,290,290,270,291,270,271,291,291,271,292,271,272,292,292,272,293,273,274,294,294,274,295,274,275,295,295,275,296,275,276,296,296,276,297,276,277,297,297,277,298,277,278,298,298,278,299,278,279,299,299,279,300,279,280,300,300,280,301,280,281,301,301,281,302,281,282,302,302,282,303,282,283,303,303,283,304,283,284,304,304,284,305,284,285,305,305,285,306,285,286,306,306,286,307,286,287,307,307,287,308,287,288,308,308,288,309,288,289,309,309,289,310,289,290,310,310,290,311,290,291,311,311,291,312,291,292,312,312,292,313,292,293,313,313,293,314,294,295,315,315,295,316,295,296,316,316,296,317,296,297,317,317,297,318,297,298,318,318,298,319,298,299,319,319,299,320,299,300,320,320,300,321,300,301,321,321,301,322,301,302,322,322,302,323,302,303,323,323,303,324,303,304,324,324,304,325,304,305,325,325,305,326,305,306,326,326,306,327,306,307,327,327,307,328,307,308,328,328,308,329,308,309,329,329,309,330,309,310,330,330,310,331,310,311,331,331,311,332,311,312,332,332,312,333,312,313,333,333,313,334,313,314,334,334,314,335,315,316,336,336,316,337,316,317,337,337,317,338,317,318,338,338,318,339,318,319,339,339,319,340,319,320,340,340,320,341,320,321,341,341,321,342,321,322,342,342,322,343,322,323,343,343,323,344,323,324,344,344,324,345,324,325,345,345,325,346,325,326,346,346,326,347,326,327,347,347,327,348,327,328,348,348,328,349,328,329,349,349,329,350,329,330,350,350,330,351,330,331,351,351,331,352,331,332,352,352,332,353,332,333,353,353,333,354,333,334,354,354,334,355,334,335,355,355,335,356,336,337,357,357,337,358,337,338,358,358,338,359,338,339,359,359,339,360,339,340,360,360,340,361,340,341,361,361,341,362,341,342,362,362,342,363,342,343,363,363,343,364,343,344,364,364,344,365,344,345,365,365,345,366,345,346,366,366,346,367,346,347,367,367,347,368,347,348,368,368,348,369,348,349,369,369,349,370,349,350,370,370,350,371,350,351,371,371,351,372,351,352,372,372,352,373,352,353,373,373,353,374,353,354,374,374,354,375,354,355,375,375,355,376,355,356,376,376,356,377,357,358,378,378,358,379,358,359,379,379,359,380,359,360,380,380,360,381,360,361,381,381,361,382,361,362,382,382,362,383,362,363,383,383,363,384,363,364,384,384,364,385,364,365,385,385,365,386,365,366,386,386,366,387,366,367,387,387,367,388,367,368,388,388,368,389,368,369,389,389,369,390,369,370,390,390,370,391,370,371,391,391,371,392,371,372,392,392,372,393,372,373,393,393,373,394,373,374,394,394,374,395,374,375,395,395,375,396,375,376,396,396,376,397,376,377,397,397,377,398,1,0,399,4,1,400,6,4,401,8,6,402,10,8,403,12,10,404,14,12,405,16,14,406,18,16,407,20,18,408,22,20,409,24,22,410,26,24,411,28,26,412,30,28,413,32,30,414,34,32,415,36,34,416,38,36,417,40,38,418,378,379,419,379,380,420,380,381,421,381,382,422,382,383,423,383,384,424,384,385,425,385,386,426,386,387,427,387,388,428,388,389,429,389,390,430,390,391,431,391,392,432,392,393,433,393,394,434,394,395,435,395,396,436,396,397,437,397,398,438],"receiveShadows":false,"infiniteDistance":false,"billboardMode":0,"visibility":1.0,"subMeshes":[{"materialIndex":0,"verticesStart":0,"verticesCount":439,"indexStart":0,"indexCount":2280}],"instances":null,"skeletonId":-1,"numBoneInfluencers":4,"applyFog":false,"lodMeshIds":null,"lodDistances":null,"lodCoverages":null,"rotation":null,"scaling":[1.0,1.0,1.0],"rotationQuaternion":[0.0,0.0,0.0,1.0],"actions":null,"checkCollisions":false,"pickable":true,"showBoundingBox":false,"showSubMeshesBoundingBox":false,"alphaIndex":0,"physicsImpostor":0,"physicsMass":0.0,"physicsFriction":0.0,"physicsRestitution":0.0,"name":"pSphere3","id":"3CC7A685-448C-CD8D-6923-DC9A8FDA8EAE","parentId":null,"position":[6.0,0.0,0.0],"animations":[],"autoAnimate":true,"autoAnimateFrom":1,"autoAnimateTo":200,"autoAnimateLoop":true,"metadata":{}},{"materialId":"C33371E3-49CC-50AB-9549-80BD2392C0F8","isEnabled":true,"isVisible":true,"positions":[0.1488,-0.9877,0.0483,0.1266,-0.9877,0.0919,0.2939,-0.9511,0.0955,0.25,-0.9511,0.1816,0.0919,-0.9877,0.1266,0.1816,-0.9511,0.25,0.0483,-0.9877,0.1488,0.0955,-0.9511,0.2939,0.0,-0.9877,0.1564,0.0,-0.9511,0.309,-0.0483,-0.9877,0.1488,-0.0955,-0.9511,0.2939,-0.0919,-0.9877,0.1266,-0.1816,-0.9511,0.25,-0.1266,-0.9877,0.0919,-0.25,-0.9511,0.1816,-0.1488,-0.9877,0.0483,-0.2939,-0.9511,0.0955,-0.1564,-0.9877,0.0,-0.309,-0.9511,0.0,-0.1488,-0.9877,-0.0483,-0.2939,-0.9511,-0.0955,-0.1266,-0.9877,-0.0919,-0.25,-0.9511,-0.1816,-0.0919,-0.9877,-0.1266,-0.1816,-0.9511,-0.25,-0.0483,-0.9877,-0.1488,-0.0955,-0.9511,-0.2939,0.0,-0.9877,-0.1564,0.0,-0.9511,-0.309,0.0483,-0.9877,-0.1488,0.0955,-0.9511,-0.2939,0.0919,-0.9877,-0.1266,0.1816,-0.9511,-0.25,0.1266,-0.9877,-0.0919,0.25,-0.9511,-0.1816,0.1488,-0.9877,-0.0483,0.2939,-0.9511,-0.0955,0.1564,-0.9877,0.0,0.309,-0.9511,0.0,0.1488,-0.9877,0.0483,0.2939,-0.9511,0.0955,0.4318,-0.891,0.1403,0.3673,-0.891,0.2668,0.2668,-0.891,0.3673,0.1403,-0.891,0.4318,0.0,-0.891,0.454,-0.1403,-0.891,0.4318,-0.2668,-0.891,0.3673,-0.3673,-0.891,0.2668,-0.4318,-0.891,0.1403,-0.454,-0.891,0.0,-0.4318,-0.891,-0.1403,-0.3673,-0.891,-0.2668,-0.2668,-0.891,-0.3673,-0.1403,-0.891,-0.4318,0.0,-0.891,-0.454,0.1403,-0.891,-0.4318,0.2668,-0.891,-0.3673,0.3673,-0.891,-0.2668,0.4318,-0.891,-0.1403,0.454,-0.891,0.0,0.4318,-0.891,0.1403,0.559,-0.809,0.1816,0.4755,-0.809,0.3455,0.3455,-0.809,0.4755,0.1816,-0.809,0.559,0.0,-0.809,0.5878,-0.1816,-0.809,0.559,-0.3455,-0.809,0.4755,-0.4755,-0.809,0.3455,-0.559,-0.809,0.1816,-0.5878,-0.809,0.0,-0.559,-0.809,-0.1816,-0.4755,-0.809,-0.3455,-0.3455,-0.809,-0.4755,-0.1816,-0.809,-0.559,0.0,-0.809,-0.5878,0.1816,-0.809,-0.559,0.3455,-0.809,-0.4755,0.4755,-0.809,-0.3455,0.559,-0.809,-0.1816,0.5878,-0.809,0.0,0.559,-0.809,0.1816,0.6725,-0.7071,0.2185,0.5721,-0.7071,0.4156,0.4156,-0.7071,0.5721,0.2185,-0.7071,0.6725,0.0,-0.7071,0.7071,-0.2185,-0.7071,0.6725,-0.4156,-0.7071,0.5721,-0.5721,-0.7071,0.4156,-0.6725,-0.7071,0.2185,-0.7071,-0.7071,0.0,-0.6725,-0.7071,-0.2185,-0.5721,-0.7071,-0.4156,-0.4156,-0.7071,-0.5721,-0.2185,-0.7071,-0.6725,0.0,-0.7071,-0.7071,0.2185,-0.7071,-0.6725,0.4156,-0.7071,-0.5721,0.5721,-0.7071,-0.4156,0.6725,-0.7071,-0.2185,0.7071,-0.7071,0.0,0.6725,-0.7071,0.2185,0.7694,-0.5878,0.25,0.6545,-0.5878,0.4755,0.4755,-0.5878,0.6545,0.25,-0.5878,0.7694,0.0,-0.5878,0.809,-0.25,-0.5878,0.7694,-0.4755,-0.5878,0.6545,-0.6545,-0.5878,0.4755,-0.7694,-0.5878,0.25,-0.809,-0.5878,0.0,-0.7694,-0.5878,-0.25,-0.6545,-0.5878,-0.4755,-0.4755,-0.5878,-0.6545,-0.25,-0.5878,-0.7694,0.0,-0.5878,-0.809,0.25,-0.5878,-0.7694,0.4755,-0.5878,-0.6545,0.6545,-0.5878,-0.4755,0.7694,-0.5878,-0.25,0.809,-0.5878,0.0,0.7694,-0.5878,0.25,0.8474,-0.454,0.2753,0.7208,-0.454,0.5237,0.5237,-0.454,0.7208,0.2753,-0.454,0.8474,0.0,-0.454,0.891,-0.2753,-0.454,0.8474,-0.5237,-0.454,0.7208,-0.7208,-0.454,0.5237,-0.8474,-0.454,0.2753,-0.891,-0.454,0.0,-0.8474,-0.454,-0.2753,-0.7208,-0.454,-0.5237,-0.5237,-0.454,-0.7208,-0.2753,-0.454,-0.8474,0.0,-0.454,-0.891,0.2753,-0.454,-0.8474,0.5237,-0.454,-0.7208,0.7208,-0.454,-0.5237,0.8474,-0.454,-0.2753,0.891,-0.454,0.0,0.8474,-0.454,0.2753,0.9045,-0.309,0.2939,0.7694,-0.309,0.559,0.559,-0.309,0.7694,0.2939,-0.309,0.9045,0.0,-0.309,0.9511,-0.2939,-0.309,0.9045,-0.559,-0.309,0.7694,-0.7694,-0.309,0.559,-0.9045,-0.309,0.2939,-0.9511,-0.309,0.0,-0.9045,-0.309,-0.2939,-0.7694,-0.309,-0.559,-0.559,-0.309,-0.7694,-0.2939,-0.309,-0.9045,0.0,-0.309,-0.9511,0.2939,-0.309,-0.9045,0.559,-0.309,-0.7694,0.7694,-0.309,-0.559,0.9045,-0.309,-0.2939,0.9511,-0.309,0.0,0.9045,-0.309,0.2939,0.9393,-0.1564,0.3052,0.7991,-0.1564,0.5805,0.5805,-0.1564,0.7991,0.3052,-0.1564,0.9393,0.0,-0.1564,0.9877,-0.3052,-0.1564,0.9393,-0.5805,-0.1564,0.7991,-0.7991,-0.1564,0.5805,-0.9393,-0.1564,0.3052,-0.9877,-0.1564,0.0,-0.9393,-0.1564,-0.3052,-0.7991,-0.1564,-0.5805,-0.5805,-0.1564,-0.7991,-0.3052,-0.1564,-0.9393,0.0,-0.1564,-0.9877,0.3052,-0.1564,-0.9393,0.5805,-0.1564,-0.7991,0.7991,-0.1564,-0.5805,0.9393,-0.1564,-0.3052,0.9877,-0.1564,0.0,0.9393,-0.1564,0.3052,0.9511,0.0,0.309,0.809,0.0,0.5878,0.5878,0.0,0.809,0.309,0.0,0.9511,0.0,0.0,1.0,-0.309,0.0,0.9511,-0.5878,0.0,0.809,-0.809,0.0,0.5878,-0.9511,0.0,0.309,-1.0,0.0,0.0,-0.9511,0.0,-0.309,-0.809,0.0,-0.5878,-0.5878,0.0,-0.809,-0.309,0.0,-0.9511,0.0,0.0,-1.0,0.309,0.0,-0.9511,0.5878,0.0,-0.809,0.809,0.0,-0.5878,0.9511,0.0,-0.309,1.0,0.0,0.0,0.9511,0.0,0.309,0.9393,0.1564,0.3052,0.7991,0.1564,0.5805,0.5805,0.1564,0.7991,0.3052,0.1564,0.9393,0.0,0.1564,0.9877,-0.3052,0.1564,0.9393,-0.5805,0.1564,0.7991,-0.7991,0.1564,0.5805,-0.9393,0.1564,0.3052,-0.9877,0.1564,0.0,-0.9393,0.1564,-0.3052,-0.7991,0.1564,-0.5805,-0.5805,0.1564,-0.7991,-0.3052,0.1564,-0.9393,0.0,0.1564,-0.9877,0.3052,0.1564,-0.9393,0.5805,0.1564,-0.7991,0.7991,0.1564,-0.5805,0.9393,0.1564,-0.3052,0.9877,0.1564,0.0,0.9393,0.1564,0.3052,0.9045,0.309,0.2939,0.7694,0.309,0.559,0.559,0.309,0.7694,0.2939,0.309,0.9045,0.0,0.309,0.9511,-0.2939,0.309,0.9045,-0.559,0.309,0.7694,-0.7694,0.309,0.559,-0.9045,0.309,0.2939,-0.9511,0.309,0.0,-0.9045,0.309,-0.2939,-0.7694,0.309,-0.559,-0.559,0.309,-0.7694,-0.2939,0.309,-0.9045,0.0,0.309,-0.9511,0.2939,0.309,-0.9045,0.559,0.309,-0.7694,0.7694,0.309,-0.559,0.9045,0.309,-0.2939,0.9511,0.309,0.0,0.9045,0.309,0.2939,0.8474,0.454,0.2753,0.7208,0.454,0.5237,0.5237,0.454,0.7208,0.2753,0.454,0.8474,0.0,0.454,0.891,-0.2753,0.454,0.8474,-0.5237,0.454,0.7208,-0.7208,0.454,0.5237,-0.8474,0.454,0.2753,-0.891,0.454,0.0,-0.8474,0.454,-0.2753,-0.7208,0.454,-0.5237,-0.5237,0.454,-0.7208,-0.2753,0.454,-0.8474,0.0,0.454,-0.891,0.2753,0.454,-0.8474,0.5237,0.454,-0.7208,0.7208,0.454,-0.5237,0.8474,0.454,-0.2753,0.891,0.454,0.0,0.8474,0.454,0.2753,0.7694,0.5878,0.25,0.6545,0.5878,0.4755,0.4755,0.5878,0.6545,0.25,0.5878,0.7694,0.0,0.5878,0.809,-0.25,0.5878,0.7694,-0.4755,0.5878,0.6545,-0.6545,0.5878,0.4755,-0.7694,0.5878,0.25,-0.809,0.5878,0.0,-0.7694,0.5878,-0.25,-0.6545,0.5878,-0.4755,-0.4755,0.5878,-0.6545,-0.25,0.5878,-0.7694,0.0,0.5878,-0.809,0.25,0.5878,-0.7694,0.4755,0.5878,-0.6545,0.6545,0.5878,-0.4755,0.7694,0.5878,-0.25,0.809,0.5878,0.0,0.7694,0.5878,0.25,0.6725,0.7071,0.2185,0.5721,0.7071,0.4156,0.4156,0.7071,0.5721,0.2185,0.7071,0.6725,0.0,0.7071,0.7071,-0.2185,0.7071,0.6725,-0.4156,0.7071,0.5721,-0.5721,0.7071,0.4156,-0.6725,0.7071,0.2185,-0.7071,0.7071,0.0,-0.6725,0.7071,-0.2185,-0.5721,0.7071,-0.4156,-0.4156,0.7071,-0.5721,-0.2185,0.7071,-0.6725,0.0,0.7071,-0.7071,0.2185,0.7071,-0.6725,0.4156,0.7071,-0.5721,0.5721,0.7071,-0.4156,0.6725,0.7071,-0.2185,0.7071,0.7071,0.0,0.6725,0.7071,0.2185,0.559,0.809,0.1816,0.4755,0.809,0.3455,0.3455,0.809,0.4755,0.1816,0.809,0.559,0.0,0.809,0.5878,-0.1816,0.809,0.559,-0.3455,0.809,0.4755,-0.4755,0.809,0.3455,-0.559,0.809,0.1816,-0.5878,0.809,0.0,-0.559,0.809,-0.1816,-0.4755,0.809,-0.3455,-0.3455,0.809,-0.4755,-0.1816,0.809,-0.559,0.0,0.809,-0.5878,0.1816,0.809,-0.559,0.3455,0.809,-0.4755,0.4755,0.809,-0.3455,0.559,0.809,-0.1816,0.5878,0.809,0.0,0.559,0.809,0.1816,0.4318,0.891,0.1403,0.3673,0.891,0.2668,0.2668,0.891,0.3673,0.1403,0.891,0.4318,0.0,0.891,0.454,-0.1403,0.891,0.4318,-0.2668,0.891,0.3673,-0.3673,0.891,0.2668,-0.4318,0.891,0.1403,-0.454,0.891,0.0,-0.4318,0.891,-0.1403,-0.3673,0.891,-0.2668,-0.2668,0.891,-0.3673,-0.1403,0.891,-0.4318,0.0,0.891,-0.454,0.1403,0.891,-0.4318,0.2668,0.891,-0.3673,0.3673,0.891,-0.2668,0.4318,0.891,-0.1403,0.454,0.891,0.0,0.4318,0.891,0.1403,0.2939,0.9511,0.0955,0.25,0.9511,0.1816,0.1816,0.9511,0.25,0.0955,0.9511,0.2939,0.0,0.9511,0.309,-0.0955,0.9511,0.2939,-0.1816,0.9511,0.25,-0.25,0.9511,0.1816,-0.2939,0.9511,0.0955,-0.309,0.9511,0.0,-0.2939,0.9511,-0.0955,-0.25,0.9511,-0.1816,-0.1816,0.9511,-0.25,-0.0955,0.9511,-0.2939,0.0,0.9511,-0.309,0.0955,0.9511,-0.2939,0.1816,0.9511,-0.25,0.25,0.9511,-0.1816,0.2939,0.9511,-0.0955,0.309,0.9511,0.0,0.2939,0.9511,0.0955,0.1488,0.9877,0.0483,0.1266,0.9877,0.0919,0.0919,0.9877,0.1266,0.0483,0.9877,0.1488,0.0,0.9877,0.1564,-0.0483,0.9877,0.1488,-0.0919,0.9877,0.1266,-0.1266,0.9877,0.0919,-0.1488,0.9877,0.0483,-0.1564,0.9877,0.0,-0.1488,0.9877,-0.0483,-0.1266,0.9877,-0.0919,-0.0919,0.9877,-0.1266,-0.0483,0.9877,-0.1488,0.0,0.9877,-0.1564,0.0483,0.9877,-0.1488,0.0919,0.9877,-0.1266,0.1266,0.9877,-0.0919,0.1488,0.9877,-0.0483,0.1564,0.9877,0.0,0.1488,0.9877,0.0483,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0],"normals":[0.1906,-0.9797,0.0619,0.1621,-0.9797,0.1178,0.3173,-0.9427,0.1031,0.2699,-0.9427,0.1961,0.1178,-0.9797,0.1621,0.1961,-0.9427,0.2699,0.0619,-0.9797,0.1906,0.1031,-0.9427,0.3173,0.0,-0.9797,0.2004,0.0,-0.9427,0.3336,-0.0619,-0.9797,0.1906,-0.1031,-0.9427,0.3173,-0.1178,-0.9797,0.1621,-0.1961,-0.9427,0.2699,-0.1621,-0.9797,0.1178,-0.2699,-0.9427,0.1961,-0.1906,-0.9797,0.0619,-0.3173,-0.9427,0.1031,-0.2004,-0.9797,0.0,-0.3336,-0.9427,0.0,-0.1906,-0.9797,-0.0619,-0.3173,-0.9427,-0.1031,-0.1621,-0.9797,-0.1178,-0.2699,-0.9427,-0.1961,-0.1178,-0.9797,-0.1621,-0.1961,-0.9427,-0.2699,-0.0619,-0.9797,-0.1906,-0.1031,-0.9427,-0.3173,0.0,-0.9797,-0.2004,0.0,-0.9427,-0.3336,0.0619,-0.9797,-0.1906,0.1031,-0.9427,-0.3173,0.1178,-0.9797,-0.1621,0.1961,-0.9427,-0.2699,0.1621,-0.9797,-0.1178,0.2699,-0.9427,-0.1961,0.1906,-0.9797,-0.0619,0.3173,-0.9427,-0.1031,0.2004,-0.9797,0.0,0.3336,-0.9427,0.0,0.1906,-0.9797,0.0619,0.3173,-0.9427,0.1031,0.4477,-0.8823,0.1455,0.3808,-0.8823,0.2767,0.2767,-0.8823,0.3808,0.1455,-0.8823,0.4477,0.0,-0.8823,0.4708,-0.1455,-0.8823,0.4477,-0.2767,-0.8823,0.3808,-0.3808,-0.8823,0.2767,-0.4477,-0.8823,0.1455,-0.4708,-0.8823,0.0,-0.4477,-0.8823,-0.1455,-0.3808,-0.8823,-0.2767,-0.2767,-0.8823,-0.3808,-0.1455,-0.8823,-0.4477,0.0,-0.8823,-0.4708,0.1455,-0.8823,-0.4477,0.2767,-0.8823,-0.3808,0.3808,-0.8823,-0.2767,0.4477,-0.8823,-0.1455,0.4708,-0.8823,0.0,0.4477,-0.8823,0.1455,0.5703,-0.8003,0.1853,0.4851,-0.8003,0.3525,0.3525,-0.8003,0.4851,0.1853,-0.8003,0.5703,0.0,-0.8003,0.5997,-0.1853,-0.8003,0.5703,-0.3525,-0.8003,0.4851,-0.4851,-0.8003,0.3525,-0.5703,-0.8003,0.1853,-0.5997,-0.8003,0.0,-0.5703,-0.8003,-0.1853,-0.4851,-0.8003,-0.3525,-0.3525,-0.8003,-0.4851,-0.1853,-0.8003,-0.5703,0.0,-0.8003,-0.5997,0.1853,-0.8003,-0.5703,0.3525,-0.8003,-0.4851,0.4851,-0.8003,-0.3525,0.5703,-0.8003,-0.1853,0.5997,-0.8003,0.0,0.5703,-0.8003,0.1853,0.6803,-0.6988,0.221,0.5787,-0.6988,0.4205,0.4205,-0.6988,0.5787,0.221,-0.6988,0.6803,0.0,-0.6988,0.7153,-0.221,-0.6988,0.6803,-0.4205,-0.6988,0.5787,-0.5787,-0.6988,0.4205,-0.6803,-0.6988,0.221,-0.7153,-0.6988,0.0,-0.6803,-0.6988,-0.221,-0.5787,-0.6988,-0.4205,-0.4205,-0.6988,-0.5787,-0.221,-0.6988,-0.6803,0.0,-0.6988,-0.7153,0.221,-0.6988,-0.6803,0.4205,-0.6988,-0.5787,0.5787,-0.6988,-0.4205,0.6803,-0.6988,-0.221,0.7153,-0.6988,0.0,0.6803,-0.6988,0.221,0.7745,-0.5804,0.2516,0.6588,-0.5804,0.4787,0.4787,-0.5804,0.6588,0.2516,-0.5804,0.7745,0.0,-0.5804,0.8143,-0.2516,-0.5804,0.7745,-0.4787,-0.5804,0.6588,-0.6588,-0.5804,0.4787,-0.7745,-0.5804,0.2516,-0.8143,-0.5804,0.0,-0.7745,-0.5804,-0.2516,-0.6588,-0.5804,-0.4787,-0.4787,-0.5804,-0.6588,-0.2516,-0.5804,-0.7745,0.0,-0.5804,-0.8143,0.2516,-0.5804,-0.7745,0.4787,-0.5804,-0.6588,0.6588,-0.5804,-0.4787,0.7745,-0.5804,-0.2516,0.8143,-0.5804,0.0,0.7745,-0.5804,0.2516,0.8503,-0.448,0.2763,0.7233,-0.448,0.5255,0.5255,-0.448,0.7233,0.2763,-0.448,0.8503,0.0,-0.448,0.894,-0.2763,-0.448,0.8503,-0.5255,-0.448,0.7233,-0.7233,-0.448,0.5255,-0.8503,-0.448,0.2763,-0.894,-0.448,0.0,-0.8503,-0.448,-0.2763,-0.7233,-0.448,-0.5255,-0.5255,-0.448,-0.7233,-0.2763,-0.448,-0.8503,0.0,-0.448,-0.894,0.2763,-0.448,-0.8503,0.5255,-0.448,-0.7233,0.7233,-0.448,-0.5255,0.8503,-0.448,-0.2763,0.894,-0.448,0.0,0.8503,-0.448,0.2763,0.9058,-0.3048,0.2943,0.7705,-0.3048,0.5598,0.5598,-0.3048,0.7705,0.2943,-0.3048,0.9058,0.0,-0.3048,0.9524,-0.2943,-0.3048,0.9058,-0.5598,-0.3048,0.7705,-0.7705,-0.3048,0.5598,-0.9058,-0.3048,0.2943,-0.9524,-0.3048,0.0,-0.9058,-0.3048,-0.2943,-0.7705,-0.3048,-0.5598,-0.5598,-0.3048,-0.7705,-0.2943,-0.3048,-0.9058,0.0,-0.3048,-0.9524,0.2943,-0.3048,-0.9058,0.5598,-0.3048,-0.7705,0.7705,-0.3048,-0.5598,0.9058,-0.3048,-0.2943,0.9524,-0.3048,0.0,0.9058,-0.3048,0.2943,0.9397,-0.1542,0.3053,0.7993,-0.1542,0.5808,0.5808,-0.1542,0.7993,0.3053,-0.1542,0.9397,0.0,-0.1542,0.988,-0.3053,-0.1542,0.9397,-0.5808,-0.1542,0.7993,-0.7993,-0.1542,0.5808,-0.9397,-0.1542,0.3053,-0.988,-0.1542,0.0,-0.9397,-0.1542,-0.3053,-0.7993,-0.1542,-0.5808,-0.5808,-0.1542,-0.7993,-0.3053,-0.1542,-0.9397,0.0,-0.1542,-0.988,0.3053,-0.1542,-0.9397,0.5808,-0.1542,-0.7993,0.7993,-0.1542,-0.5808,0.9397,-0.1542,-0.3053,0.988,-0.1542,0.0,0.9397,-0.1542,0.3053,0.9511,0.0,0.309,0.809,0.0,0.5878,0.5878,0.0,0.809,0.309,0.0,0.9511,0.0,0.0,1.0,-0.309,0.0,0.9511,-0.5878,0.0,0.809,-0.809,0.0,0.5878,-0.9511,0.0,0.309,-1.0,0.0,0.0,-0.9511,0.0,-0.309,-0.809,0.0,-0.5878,-0.5878,0.0,-0.809,-0.309,0.0,-0.9511,0.0,0.0,-1.0,0.309,0.0,-0.9511,0.5878,0.0,-0.809,0.809,0.0,-0.5878,0.9511,0.0,-0.309,1.0,0.0,0.0,0.9511,0.0,0.309,0.9397,0.1542,0.3053,0.7993,0.1542,0.5808,0.5808,0.1542,0.7993,0.3053,0.1542,0.9397,0.0,0.1542,0.988,-0.3053,0.1542,0.9397,-0.5808,0.1542,0.7993,-0.7993,0.1542,0.5808,-0.9397,0.1542,0.3053,-0.988,0.1542,0.0,-0.9397,0.1542,-0.3053,-0.7993,0.1542,-0.5808,-0.5808,0.1542,-0.7993,-0.3053,0.1542,-0.9397,0.0,0.1542,-0.988,0.3053,0.1542,-0.9397,0.5808,0.1542,-0.7993,0.7993,0.1542,-0.5808,0.9397,0.1542,-0.3053,0.988,0.1542,0.0,0.9397,0.1542,0.3053,0.9058,0.3048,0.2943,0.7705,0.3048,0.5598,0.5598,0.3048,0.7705,0.2943,0.3048,0.9058,0.0,0.3048,0.9524,-0.2943,0.3048,0.9058,-0.5598,0.3048,0.7705,-0.7705,0.3048,0.5598,-0.9058,0.3048,0.2943,-0.9524,0.3048,0.0,-0.9058,0.3048,-0.2943,-0.7705,0.3048,-0.5598,-0.5598,0.3048,-0.7705,-0.2943,0.3048,-0.9058,0.0,0.3048,-0.9524,0.2943,0.3048,-0.9058,0.5598,0.3048,-0.7705,0.7705,0.3048,-0.5598,0.9058,0.3048,-0.2943,0.9524,0.3048,0.0,0.9058,0.3048,0.2943,0.8503,0.448,0.2763,0.7233,0.448,0.5255,0.5255,0.448,0.7233,0.2763,0.448,0.8503,0.0,0.448,0.894,-0.2763,0.448,0.8503,-0.5255,0.448,0.7233,-0.7233,0.448,0.5255,-0.8503,0.448,0.2763,-0.894,0.448,0.0,-0.8503,0.448,-0.2763,-0.7233,0.448,-0.5255,-0.5255,0.448,-0.7233,-0.2763,0.448,-0.8503,0.0,0.448,-0.894,0.2763,0.448,-0.8503,0.5255,0.448,-0.7233,0.7233,0.448,-0.5255,0.8503,0.448,-0.2763,0.894,0.448,0.0,0.8503,0.448,0.2763,0.7745,0.5804,0.2516,0.6588,0.5804,0.4787,0.4787,0.5804,0.6588,0.2516,0.5804,0.7745,0.0,0.5804,0.8143,-0.2516,0.5804,0.7745,-0.4787,0.5804,0.6588,-0.6588,0.5804,0.4787,-0.7745,0.5804,0.2516,-0.8143,0.5804,0.0,-0.7745,0.5804,-0.2516,-0.6588,0.5804,-0.4787,-0.4787,0.5804,-0.6588,-0.2516,0.5804,-0.7745,0.0,0.5804,-0.8143,0.2516,0.5804,-0.7745,0.4787,0.5804,-0.6588,0.6588,0.5804,-0.4787,0.7745,0.5804,-0.2516,0.8143,0.5804,0.0,0.7745,0.5804,0.2516,0.6803,0.6988,0.221,0.5787,0.6988,0.4205,0.4205,0.6988,0.5787,0.221,0.6988,0.6803,0.0,0.6988,0.7153,-0.221,0.6988,0.6803,-0.4205,0.6988,0.5787,-0.5787,0.6988,0.4205,-0.6803,0.6988,0.221,-0.7153,0.6988,0.0,-0.6803,0.6988,-0.221,-0.5787,0.6988,-0.4205,-0.4205,0.6988,-0.5787,-0.221,0.6988,-0.6803,0.0,0.6988,-0.7153,0.221,0.6988,-0.6803,0.4205,0.6988,-0.5787,0.5787,0.6988,-0.4205,0.6803,0.6988,-0.221,0.7153,0.6988,0.0,0.6803,0.6988,0.221,0.5703,0.8003,0.1853,0.4851,0.8003,0.3525,0.3525,0.8003,0.4851,0.1853,0.8003,0.5703,0.0,0.8003,0.5997,-0.1853,0.8003,0.5703,-0.3525,0.8003,0.4851,-0.4851,0.8003,0.3525,-0.5703,0.8003,0.1853,-0.5997,0.8003,0.0,-0.5703,0.8003,-0.1853,-0.4851,0.8003,-0.3525,-0.3525,0.8003,-0.4851,-0.1853,0.8003,-0.5703,0.0,0.8003,-0.5997,0.1853,0.8003,-0.5703,0.3525,0.8003,-0.4851,0.4851,0.8003,-0.3525,0.5703,0.8003,-0.1853,0.5997,0.8003,0.0,0.5703,0.8003,0.1853,0.4477,0.8823,0.1455,0.3808,0.8823,0.2767,0.2767,0.8823,0.3808,0.1455,0.8823,0.4477,0.0,0.8823,0.4708,-0.1455,0.8823,0.4477,-0.2767,0.8823,0.3808,-0.3808,0.8823,0.2767,-0.4477,0.8823,0.1455,-0.4708,0.8823,0.0,-0.4477,0.8823,-0.1455,-0.3808,0.8823,-0.2767,-0.2767,0.8823,-0.3808,-0.1455,0.8823,-0.4477,0.0,0.8823,-0.4708,0.1455,0.8823,-0.4477,0.2767,0.8823,-0.3808,0.3808,0.8823,-0.2767,0.4477,0.8823,-0.1455,0.4708,0.8823,0.0,0.4477,0.8823,0.1455,0.3173,0.9427,0.1031,0.2699,0.9427,0.1961,0.1961,0.9427,0.2699,0.1031,0.9427,0.3173,0.0,0.9427,0.3336,-0.1031,0.9427,0.3173,-0.1961,0.9427,0.2699,-0.2699,0.9427,0.1961,-0.3173,0.9427,0.1031,-0.3336,0.9427,0.0,-0.3173,0.9427,-0.1031,-0.2699,0.9427,-0.1961,-0.1961,0.9427,-0.2699,-0.1031,0.9427,-0.3173,0.0,0.9427,-0.3336,0.1031,0.9427,-0.3173,0.1961,0.9427,-0.2699,0.2699,0.9427,-0.1961,0.3173,0.9427,-0.1031,0.3336,0.9427,0.0,0.3173,0.9427,0.1031,0.1906,0.9797,0.0619,0.1621,0.9797,0.1178,0.1178,0.9797,0.1621,0.0619,0.9797,0.1906,0.0,0.9797,0.2004,-0.0619,0.9797,0.1906,-0.1178,0.9797,0.1621,-0.1621,0.9797,0.1178,-0.1906,0.9797,0.0619,-0.2004,0.9797,0.0,-0.1906,0.9797,-0.0619,-0.1621,0.9797,-0.1178,-0.1178,0.9797,-0.1621,-0.0619,0.9797,-0.1906,0.0,0.9797,-0.2004,0.0619,0.9797,-0.1906,0.1178,0.9797,-0.1621,0.1621,0.9797,-0.1178,0.1906,0.9797,-0.0619,0.2004,0.9797,0.0,0.1906,0.9797,0.0619,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0],"tangents":[-0.4482,-0.0307,0.8934,-1.0,-0.5629,0.0062,0.8265,-1.0,-0.438,-0.0493,0.8976,-1.0,-0.5878,0.0,0.809,-1.0,-0.7908,0.0062,0.6121,-1.0,-0.809,0.0,0.5878,-1.0,-0.9412,0.0062,0.3378,-1.0,-0.9511,0.0,0.309,-1.0,-0.9995,0.0062,0.0304,-1.0,-1.0,0.0,0.0,-1.0,-0.96,0.0062,-0.28,-1.0,-0.9511,0.0,-0.309,-1.0,-0.8265,0.0062,-0.5629,-1.0,-0.809,0.0,-0.5878,-1.0,-0.6121,0.0062,-0.7908,-1.0,-0.5878,0.0,-0.809,-1.0,-0.3378,0.0062,-0.9412,-1.0,-0.309,0.0,-0.9511,-1.0,-0.0304,0.0062,-0.9995,-1.0,0.0,0.0,-1.0,-1.0,0.28,0.0062,-0.96,-1.0,0.309,0.0,-0.9511,-1.0,0.5629,0.0062,-0.8265,-1.0,0.5878,0.0,-0.809,-1.0,0.7908,0.0062,-0.6121,-1.0,0.809,0.0,-0.5878,-1.0,0.9412,0.0062,-0.3378,-1.0,0.9511,0.0,-0.309,-1.0,0.9995,0.0062,-0.0304,-1.0,1.0,0.0,0.0,-1.0,0.96,0.0062,0.28,-1.0,0.9511,0.0,0.309,-1.0,0.8265,0.0062,0.5629,-1.0,0.809,0.0,0.5878,-1.0,0.6121,0.0062,0.7908,-1.0,0.5878,0.0,0.809,-1.0,0.3378,0.0062,0.9412,-1.0,0.309,0.0,0.9511,-1.0,0.0304,0.0062,0.9995,-1.0,0.0,0.0,1.0,-1.0,-0.1625,0.0307,0.9862,-1.0,-0.1732,0.0493,0.9836,-1.0,-0.4222,-0.0651,0.9042,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.1899,0.0651,0.9796,-1.0,-0.4023,-0.0754,0.9124,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.2109,0.0754,0.9746,-1.0,-0.3802,-0.0787,0.9215,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.234,0.0787,0.969,-1.0,-0.3582,-0.0745,0.9306,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.2572,0.0745,0.9635,-1.0,-0.3384,-0.0633,0.9389,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.2781,0.0633,0.9585,-1.0,-0.3226,-0.0459,0.9454,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.2947,0.0459,0.9545,-1.0,-0.3125,-0.0241,0.9496,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.3053,0.0241,0.9519,-1.0,-0.309,0.0,0.9511,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.309,0.0,0.9511,-1.0,-0.3125,0.0241,0.9496,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.3053,-0.0241,0.9519,-1.0,-0.3226,0.0459,0.9454,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.2947,-0.0459,0.9545,-1.0,-0.3384,0.0633,0.9389,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.2781,-0.0633,0.9585,-1.0,-0.3582,0.0745,0.9306,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.2572,-0.0745,0.9635,-1.0,-0.3802,0.0787,0.9215,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.234,-0.0787,0.969,-1.0,-0.4023,0.0754,0.9124,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.2109,-0.0754,0.9746,-1.0,-0.4222,0.0651,0.9042,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.1899,-0.0651,0.9796,-1.0,-0.438,0.0493,0.8976,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.1732,-0.0493,0.9836,-1.0,-0.4482,0.0307,0.8934,-1.0,-0.6121,0.0062,0.7908,-1.0,-0.8265,0.0062,0.5629,-1.0,-0.96,0.0062,0.28,-1.0,-0.9995,0.0062,-0.0304,-1.0,-0.9412,0.0062,-0.3378,-1.0,-0.7908,0.0062,-0.6121,-1.0,-0.5629,0.0062,-0.8265,-1.0,-0.28,0.0062,-0.96,-1.0,0.0304,0.0062,-0.9995,-1.0,0.3378,0.0062,-0.9412,-1.0,0.6121,0.0062,-0.7908,-1.0,0.8265,0.0062,-0.5629,-1.0,0.96,0.0062,-0.28,-1.0,0.9995,0.0062,0.0304,-1.0,0.9412,0.0062,0.3378,-1.0,0.7908,0.0062,0.6121,-1.0,0.5629,0.0062,0.8265,-1.0,0.28,0.0062,0.96,-1.0,-0.0304,0.0062,0.9995,-1.0,-0.1625,-0.0307,0.9862,-1.0,-0.454,0.0,0.891,-1.0,-0.7071,0.0,0.7071,-1.0,-0.891,0.0,0.454,-1.0,-0.9877,0.0,0.1564,-1.0,-0.9877,0.0,-0.1564,-1.0,-0.891,0.0,-0.454,-1.0,-0.7071,0.0,-0.7071,-1.0,-0.454,0.0,-0.891,-1.0,-0.1564,0.0,-0.9877,-1.0,0.1564,0.0,-0.9877,-1.0,0.454,0.0,-0.891,-1.0,0.7071,0.0,-0.7071,-1.0,0.891,0.0,-0.454,-1.0,0.9877,0.0,-0.1564,-1.0,0.9877,0.0,0.1564,-1.0,0.891,0.0,0.454,-1.0,0.7071,0.0,0.7071,-1.0,0.454,0.0,0.891,-1.0,0.1564,0.0,0.9877,-1.0,-0.1564,0.0,0.9877,-1.0,-0.454,0.0,0.891,-1.0,-0.7071,0.0,0.7071,-1.0,-0.891,0.0,0.454,-1.0,-0.9877,0.0,0.1564,-1.0,-0.9877,0.0,-0.1564,-1.0,-0.891,0.0,-0.454,-1.0,-0.7071,0.0,-0.7071,-1.0,-0.454,0.0,-0.891,-1.0,-0.1564,0.0,-0.9877,-1.0,0.1564,0.0,-0.9877,-1.0,0.454,0.0,-0.891,-1.0,0.7071,0.0,-0.7071,-1.0,0.891,0.0,-0.454,-1.0,0.9877,0.0,-0.1564,-1.0,0.9877,0.0,0.1564,-1.0,0.891,0.0,0.454,-1.0,0.7071,0.0,0.7071,-1.0,0.454,0.0,0.891,-1.0,0.1564,0.0,0.9877,-1.0,-0.1564,0.0,0.9877,-1.0],"uvs":[0.0,0.05,0.05,0.05,0.0,0.1,0.05,0.1,0.1,0.05,0.1,0.1,0.15,0.05,0.15,0.1,0.2,0.05,0.2,0.1,0.25,0.05,0.25,0.1,0.3,0.05,0.3,0.1,0.35,0.05,0.35,0.1,0.4,0.05,0.4,0.1,0.45,0.05,0.45,0.1,0.5,0.05,0.5,0.1,0.55,0.05,0.55,0.1,0.6,0.05,0.6,0.1,0.65,0.05,0.65,0.1,0.7,0.05,0.7,0.1,0.75,0.05,0.75,0.1,0.8,0.05,0.8,0.1,0.85,0.05,0.85,0.1,0.9,0.05,0.9,0.1,0.95,0.05,0.95,0.1,1.0,0.05,1.0,0.1,0.0,0.15,0.05,0.15,0.1,0.15,0.15,0.15,0.2,0.15,0.25,0.15,0.3,0.15,0.35,0.15,0.4,0.15,0.45,0.15,0.5,0.15,0.55,0.15,0.6,0.15,0.65,0.15,0.7,0.15,0.75,0.15,0.8,0.15,0.85,0.15,0.9,0.15,0.95,0.15,1.0,0.15,0.0,0.2,0.05,0.2,0.1,0.2,0.15,0.2,0.2,0.2,0.25,0.2,0.3,0.2,0.35,0.2,0.4,0.2,0.45,0.2,0.5,0.2,0.55,0.2,0.6,0.2,0.65,0.2,0.7,0.2,0.75,0.2,0.8,0.2,0.85,0.2,0.9,0.2,0.95,0.2,1.0,0.2,0.0,0.25,0.05,0.25,0.1,0.25,0.15,0.25,0.2,0.25,0.25,0.25,0.3,0.25,0.35,0.25,0.4,0.25,0.45,0.25,0.5,0.25,0.55,0.25,0.6,0.25,0.65,0.25,0.7,0.25,0.75,0.25,0.8,0.25,0.85,0.25,0.9,0.25,0.95,0.25,1.0,0.25,0.0,0.3,0.05,0.3,0.1,0.3,0.15,0.3,0.2,0.3,0.25,0.3,0.3,0.3,0.35,0.3,0.4,0.3,0.45,0.3,0.5,0.3,0.55,0.3,0.6,0.3,0.65,0.3,0.7,0.3,0.75,0.3,0.8,0.3,0.85,0.3,0.9,0.3,0.95,0.3,1.0,0.3,0.0,0.35,0.05,0.35,0.1,0.35,0.15,0.35,0.2,0.35,0.25,0.35,0.3,0.35,0.35,0.35,0.4,0.35,0.45,0.35,0.5,0.35,0.55,0.35,0.6,0.35,0.65,0.35,0.7,0.35,0.75,0.35,0.8,0.35,0.85,0.35,0.9,0.35,0.95,0.35,1.0,0.35,0.0,0.4,0.05,0.4,0.1,0.4,0.15,0.4,0.2,0.4,0.25,0.4,0.3,0.4,0.35,0.4,0.4,0.4,0.45,0.4,0.5,0.4,0.55,0.4,0.6,0.4,0.65,0.4,0.7,0.4,0.75,0.4,0.8,0.4,0.85,0.4,0.9,0.4,0.95,0.4,1.0,0.4,0.0,0.45,0.05,0.45,0.1,0.45,0.15,0.45,0.2,0.45,0.25,0.45,0.3,0.45,0.35,0.45,0.4,0.45,0.45,0.45,0.5,0.45,0.55,0.45,0.6,0.45,0.65,0.45,0.7,0.45,0.75,0.45,0.8,0.45,0.85,0.45,0.9,0.45,0.95,0.45,1.0,0.45,0.0,0.5,0.05,0.5,0.1,0.5,0.15,0.5,0.2,0.5,0.25,0.5,0.3,0.5,0.35,0.5,0.4,0.5,0.45,0.5,0.5,0.5,0.55,0.5,0.6,0.5,0.65,0.5,0.7,0.5,0.75,0.5,0.8,0.5,0.85,0.5,0.9,0.5,0.95,0.5,1.0,0.5,0.0,0.55,0.05,0.55,0.1,0.55,0.15,0.55,0.2,0.55,0.25,0.55,0.3,0.55,0.35,0.55,0.4,0.55,0.45,0.55,0.5,0.55,0.55,0.55,0.6,0.55,0.65,0.55,0.7,0.55,0.75,0.55,0.8,0.55,0.85,0.55,0.9,0.55,0.95,0.55,1.0,0.55,0.0,0.6,0.05,0.6,0.1,0.6,0.15,0.6,0.2,0.6,0.25,0.6,0.3,0.6,0.35,0.6,0.4,0.6,0.45,0.6,0.5,0.6,0.55,0.6,0.6,0.6,0.65,0.6,0.7,0.6,0.75,0.6,0.8,0.6,0.85,0.6,0.9,0.6,0.95,0.6,1.0,0.6,0.0,0.65,0.05,0.65,0.1,0.65,0.15,0.65,0.2,0.65,0.25,0.65,0.3,0.65,0.35,0.65,0.4,0.65,0.45,0.65,0.5,0.65,0.55,0.65,0.6,0.65,0.65,0.65,0.7,0.65,0.75,0.65,0.8,0.65,0.85,0.65,0.9,0.65,0.95,0.65,1.0,0.65,0.0,0.7,0.05,0.7,0.1,0.7,0.15,0.7,0.2,0.7,0.25,0.7,0.3,0.7,0.35,0.7,0.4,0.7,0.45,0.7,0.5,0.7,0.55,0.7,0.6,0.7,0.65,0.7,0.7,0.7,0.75,0.7,0.8,0.7,0.85,0.7,0.9,0.7,0.95,0.7,1.0,0.7,0.0,0.75,0.05,0.75,0.1,0.75,0.15,0.75,0.2,0.75,0.25,0.75,0.3,0.75,0.35,0.75,0.4,0.75,0.45,0.75,0.5,0.75,0.55,0.75,0.6,0.75,0.65,0.75,0.7,0.75,0.75,0.75,0.8,0.75,0.85,0.75,0.9,0.75,0.95,0.75,1.0,0.75,0.0,0.8,0.05,0.8,0.1,0.8,0.15,0.8,0.2,0.8,0.25,0.8,0.3,0.8,0.35,0.8,0.4,0.8,0.45,0.8,0.5,0.8,0.55,0.8,0.6,0.8,0.65,0.8,0.7,0.8,0.75,0.8,0.8,0.8,0.85,0.8,0.9,0.8,0.95,0.8,1.0,0.8,0.0,0.85,0.05,0.85,0.1,0.85,0.15,0.85,0.2,0.85,0.25,0.85,0.3,0.85,0.35,0.85,0.4,0.85,0.45,0.85,0.5,0.85,0.55,0.85,0.6,0.85,0.65,0.85,0.7,0.85,0.75,0.85,0.8,0.85,0.85,0.85,0.9,0.85,0.95,0.85,1.0,0.85,0.0,0.9,0.05,0.9,0.1,0.9,0.15,0.9,0.2,0.9,0.25,0.9,0.3,0.9,0.35,0.9,0.4,0.9,0.45,0.9,0.5,0.9,0.55,0.9,0.6,0.9,0.65,0.9,0.7,0.9,0.75,0.9,0.8,0.9,0.85,0.9,0.9,0.9,0.95,0.9,1.0,0.9,0.0,0.95,0.05,0.95,0.1,0.95,0.15,0.95,0.2,0.95,0.25,0.95,0.3,0.95,0.35,0.95,0.4,0.95,0.45,0.95,0.5,0.95,0.55,0.95,0.6,0.95,0.65,0.95,0.7,0.95,0.75,0.95,0.8,0.95,0.85,0.95,0.9,0.95,0.95,0.95,1.0,0.95,0.025,0.0,0.075,0.0,0.125,0.0,0.175,0.0,0.225,0.0,0.275,0.0,0.325,0.0,0.375,0.0,0.425,0.0,0.475,0.0,0.525,0.0,0.575,0.0,0.625,0.0,0.675,0.0,0.725,0.0,0.775,0.0,0.825,0.0,0.875,0.0,0.925,0.0,0.975,0.0,0.025,1.0,0.075,1.0,0.125,1.0,0.175,1.0,0.225,1.0,0.275,1.0,0.325,1.0,0.375,1.0,0.425,1.0,0.475,1.0,0.525,1.0,0.575,1.0,0.625,1.0,0.675,1.0,0.725,1.0,0.775,1.0,0.825,1.0,0.875,1.0,0.925,1.0,0.975,1.0],"uvs2":null,"colors":null,"hasVertexAlpha":false,"matricesIndices":null,"matricesWeights":null,"matricesIndicesExtra":null,"matricesWeightsExtra":null,"indices":[0,1,2,2,1,3,1,4,3,3,4,5,4,6,5,5,6,7,6,8,7,7,8,9,8,10,9,9,10,11,10,12,11,11,12,13,12,14,13,13,14,15,14,16,15,15,16,17,16,18,17,17,18,19,18,20,19,19,20,21,20,22,21,21,22,23,22,24,23,23,24,25,24,26,25,25,26,27,26,28,27,27,28,29,28,30,29,29,30,31,30,32,31,31,32,33,32,34,33,33,34,35,34,36,35,35,36,37,36,38,37,37,38,39,38,40,39,39,40,41,2,3,42,42,3,43,3,5,43,43,5,44,5,7,44,44,7,45,7,9,45,45,9,46,9,11,46,46,11,47,11,13,47,47,13,48,13,15,48,48,15,49,15,17,49,49,17,50,17,19,50,50,19,51,19,21,51,51,21,52,21,23,52,52,23,53,23,25,53,53,25,54,25,27,54,54,27,55,27,29,55,55,29,56,29,31,56,56,31,57,31,33,57,57,33,58,33,35,58,58,35,59,35,37,59,59,37,60,37,39,60,60,39,61,39,41,61,61,41,62,42,43,63,63,43,64,43,44,64,64,44,65,44,45,65,65,45,66,45,46,66,66,46,67,46,47,67,67,47,68,47,48,68,68,48,69,48,49,69,69,49,70,49,50,70,70,50,71,50,51,71,71,51,72,51,52,72,72,52,73,52,53,73,73,53,74,53,54,74,74,54,75,54,55,75,75,55,76,55,56,76,76,56,77,56,57,77,77,57,78,57,58,78,78,58,79,58,59,79,79,59,80,59,60,80,80,60,81,60,61,81,81,61,82,61,62,82,82,62,83,63,64,84,84,64,85,64,65,85,85,65,86,65,66,86,86,66,87,66,67,87,87,67,88,67,68,88,88,68,89,68,69,89,89,69,90,69,70,90,90,70,91,70,71,91,91,71,92,71,72,92,92,72,93,72,73,93,93,73,94,73,74,94,94,74,95,74,75,95,95,75,96,75,76,96,96,76,97,76,77,97,97,77,98,77,78,98,98,78,99,78,79,99,99,79,100,79,80,100,100,80,101,80,81,101,101,81,102,81,82,102,102,82,103,82,83,103,103,83,104,84,85,105,105,85,106,85,86,106,106,86,107,86,87,107,107,87,108,87,88,108,108,88,109,88,89,109,109,89,110,89,90,110,110,90,111,90,91,111,111,91,112,91,92,112,112,92,113,92,93,113,113,93,114,93,94,114,114,94,115,94,95,115,115,95,116,95,96,116,116,96,117,96,97,117,117,97,118,97,98,118,118,98,119,98,99,119,119,99,120,99,100,120,120,100,121,100,101,121,121,101,122,101,102,122,122,102,123,102,103,123,123,103,124,103,104,124,124,104,125,105,106,126,126,106,127,106,107,127,127,107,128,107,108,128,128,108,129,108,109,129,129,109,130,109,110,130,130,110,131,110,111,131,131,111,132,111,112,132,132,112,133,112,113,133,133,113,134,113,114,134,134,114,135,114,115,135,135,115,136,115,116,136,136,116,137,116,117,137,137,117,138,117,118,138,138,118,139,118,119,139,139,119,140,119,120,140,140,120,141,120,121,141,141,121,142,121,122,142,142,122,143,122,123,143,143,123,144,123,124,144,144,124,145,124,125,145,145,125,146,126,127,147,147,127,148,127,128,148,148,128,149,128,129,149,149,129,150,129,130,150,150,130,151,130,131,151,151,131,152,131,132,152,152,132,153,132,133,153,153,133,154,133,134,154,154,134,155,134,135,155,155,135,156,135,136,156,156,136,157,136,137,157,157,137,158,137,138,158,158,138,159,138,139,159,159,139,160,139,140,160,160,140,161,140,141,161,161,141,162,141,142,162,162,142,163,142,143,163,163,143,164,143,144,164,164,144,165,144,145,165,165,145,166,145,146,166,166,146,167,147,148,168,168,148,169,148,149,169,169,149,170,149,150,170,170,150,171,150,151,171,171,151,172,151,152,172,172,152,173,152,153,173,173,153,174,153,154,174,174,154,175,154,155,175,175,155,176,155,156,176,176,156,177,156,157,177,177,157,178,157,158,178,178,158,179,158,159,179,179,159,180,159,160,180,180,160,181,160,161,181,181,161,182,161,162,182,182,162,183,162,163,183,183,163,184,163,164,184,184,164,185,164,165,185,185,165,186,165,166,186,186,166,187,166,167,187,187,167,188,168,169,189,189,169,190,169,170,190,190,170,191,170,171,191,191,171,192,171,172,192,192,172,193,172,173,193,193,173,194,173,174,194,194,174,195,174,175,195,195,175,196,175,176,196,196,176,197,176,177,197,197,177,198,177,178,198,198,178,199,178,179,199,199,179,200,179,180,200,200,180,201,180,181,201,201,181,202,181,182,202,202,182,203,182,183,203,203,183,204,183,184,204,204,184,205,184,185,205,205,185,206,185,186,206,206,186,207,186,187,207,207,187,208,187,188,208,208,188,209,189,190,210,210,190,211,190,191,211,211,191,212,191,192,212,212,192,213,192,193,213,213,193,214,193,194,214,214,194,215,194,195,215,215,195,216,195,196,216,216,196,217,196,197,217,217,197,218,197,198,218,218,198,219,198,199,219,219,199,220,199,200,220,220,200,221,200,201,221,221,201,222,201,202,222,222,202,223,202,203,223,223,203,224,203,204,224,224,204,225,204,205,225,225,205,226,205,206,226,226,206,227,206,207,227,227,207,228,207,208,228,228,208,229,208,209,229,229,209,230,210,211,231,231,211,232,211,212,232,232,212,233,212,213,233,233,213,234,213,214,234,234,214,235,214,215,235,235,215,236,215,216,236,236,216,237,216,217,237,237,217,238,217,218,238,238,218,239,218,219,239,239,219,240,219,220,240,240,220,241,220,221,241,241,221,242,221,222,242,242,222,243,222,223,243,243,223,244,223,224,244,244,224,245,224,225,245,245,225,246,225,226,246,246,226,247,226,227,247,247,227,248,227,228,248,248,228,249,228,229,249,249,229,250,229,230,250,250,230,251,231,232,252,252,232,253,232,233,253,253,233,254,233,234,254,254,234,255,234,235,255,255,235,256,235,236,256,256,236,257,236,237,257,257,237,258,237,238,258,258,238,259,238,239,259,259,239,260,239,240,260,260,240,261,240,241,261,261,241,262,241,242,262,262,242,263,242,243,263,263,243,264,243,244,264,264,244,265,244,245,265,265,245,266,245,246,266,266,246,267,246,247,267,267,247,268,247,248,268,268,248,269,248,249,269,269,249,270,249,250,270,270,250,271,250,251,271,271,251,272,252,253,273,273,253,274,253,254,274,274,254,275,254,255,275,275,255,276,255,256,276,276,256,277,256,257,277,277,257,278,257,258,278,278,258,279,258,259,279,279,259,280,259,260,280,280,260,281,260,261,281,281,261,282,261,262,282,282,262,283,262,263,283,283,263,284,263,264,284,284,264,285,264,265,285,285,265,286,265,266,286,286,266,287,266,267,287,287,267,288,267,268,288,288,268,289,268,269,289,289,269,290,269,270,290,290,270,291,270,271,291,291,271,292,271,272,292,292,272,293,273,274,294,294,274,295,274,275,295,295,275,296,275,276,296,296,276,297,276,277,297,297,277,298,277,278,298,298,278,299,278,279,299,299,279,300,279,280,300,300,280,301,280,281,301,301,281,302,281,282,302,302,282,303,282,283,303,303,283,304,283,284,304,304,284,305,284,285,305,305,285,306,285,286,306,306,286,307,286,287,307,307,287,308,287,288,308,308,288,309,288,289,309,309,289,310,289,290,310,310,290,311,290,291,311,311,291,312,291,292,312,312,292,313,292,293,313,313,293,314,294,295,315,315,295,316,295,296,316,316,296,317,296,297,317,317,297,318,297,298,318,318,298,319,298,299,319,319,299,320,299,300,320,320,300,321,300,301,321,321,301,322,301,302,322,322,302,323,302,303,323,323,303,324,303,304,324,324,304,325,304,305,325,325,305,326,305,306,326,326,306,327,306,307,327,327,307,328,307,308,328,328,308,329,308,309,329,329,309,330,309,310,330,330,310,331,310,311,331,331,311,332,311,312,332,332,312,333,312,313,333,333,313,334,313,314,334,334,314,335,315,316,336,336,316,337,316,317,337,337,317,338,317,318,338,338,318,339,318,319,339,339,319,340,319,320,340,340,320,341,320,321,341,341,321,342,321,322,342,342,322,343,322,323,343,343,323,344,323,324,344,344,324,345,324,325,345,345,325,346,325,326,346,346,326,347,326,327,347,347,327,348,327,328,348,348,328,349,328,329,349,349,329,350,329,330,350,350,330,351,330,331,351,351,331,352,331,332,352,352,332,353,332,333,353,353,333,354,333,334,354,354,334,355,334,335,355,355,335,356,336,337,357,357,337,358,337,338,358,358,338,359,338,339,359,359,339,360,339,340,360,360,340,361,340,341,361,361,341,362,341,342,362,362,342,363,342,343,363,363,343,364,343,344,364,364,344,365,344,345,365,365,345,366,345,346,366,366,346,367,346,347,367,367,347,368,347,348,368,368,348,369,348,349,369,369,349,370,349,350,370,370,350,371,350,351,371,371,351,372,351,352,372,372,352,373,352,353,373,373,353,374,353,354,374,374,354,375,354,355,375,375,355,376,355,356,376,376,356,377,357,358,378,378,358,379,358,359,379,379,359,380,359,360,380,380,360,381,360,361,381,381,361,382,361,362,382,382,362,383,362,363,383,383,363,384,363,364,384,384,364,385,364,365,385,385,365,386,365,366,386,386,366,387,366,367,387,387,367,388,367,368,388,388,368,389,368,369,389,389,369,390,369,370,390,390,370,391,370,371,391,391,371,392,371,372,392,392,372,393,372,373,393,393,373,394,373,374,394,394,374,395,374,375,395,395,375,396,375,376,396,396,376,397,376,377,397,397,377,398,1,0,399,4,1,400,6,4,401,8,6,402,10,8,403,12,10,404,14,12,405,16,14,406,18,16,407,20,18,408,22,20,409,24,22,410,26,24,411,28,26,412,30,28,413,32,30,414,34,32,415,36,34,416,38,36,417,40,38,418,378,379,419,379,380,420,380,381,421,381,382,422,382,383,423,383,384,424,384,385,425,385,386,426,386,387,427,387,388,428,388,389,429,389,390,430,390,391,431,391,392,432,392,393,433,393,394,434,394,395,435,395,396,436,396,397,437,397,398,438],"receiveShadows":false,"infiniteDistance":false,"billboardMode":0,"visibility":1.0,"subMeshes":[{"materialIndex":0,"verticesStart":0,"verticesCount":439,"indexStart":0,"indexCount":2280}],"instances":null,"skeletonId":-1,"numBoneInfluencers":4,"applyFog":false,"lodMeshIds":null,"lodDistances":null,"lodCoverages":null,"rotation":null,"scaling":[1.0,1.0,1.0],"rotationQuaternion":[0.0,0.0,0.0,1.0],"actions":null,"checkCollisions":false,"pickable":true,"showBoundingBox":false,"showSubMeshesBoundingBox":false,"alphaIndex":0,"physicsImpostor":0,"physicsMass":0.0,"physicsFriction":0.0,"physicsRestitution":0.0,"name":"pSphere4","id":"2F4F3A92-41B4-BFAB-58D5-7DBF6D8F2419","parentId":null,"position":[9.0,0.0,0.0],"animations":[],"autoAnimate":true,"autoAnimateFrom":1,"autoAnimateTo":200,"autoAnimateLoop":true,"metadata":{}},{"materialId":"EBBE5BCD-47D9-6B9A-E159-BEBFD0E5AAE4","isEnabled":true,"isVisible":true,"positions":[0.1488,-0.9877,0.0483,0.1266,-0.9877,0.0919,0.2939,-0.9511,0.0955,0.25,-0.9511,0.1816,0.0919,-0.9877,0.1266,0.1816,-0.9511,0.25,0.0483,-0.9877,0.1488,0.0955,-0.9511,0.2939,0.0,-0.9877,0.1564,0.0,-0.9511,0.309,-0.0483,-0.9877,0.1488,-0.0955,-0.9511,0.2939,-0.0919,-0.9877,0.1266,-0.1816,-0.9511,0.25,-0.1266,-0.9877,0.0919,-0.25,-0.9511,0.1816,-0.1488,-0.9877,0.0483,-0.2939,-0.9511,0.0955,-0.1564,-0.9877,0.0,-0.309,-0.9511,0.0,-0.1488,-0.9877,-0.0483,-0.2939,-0.9511,-0.0955,-0.1266,-0.9877,-0.0919,-0.25,-0.9511,-0.1816,-0.0919,-0.9877,-0.1266,-0.1816,-0.9511,-0.25,-0.0483,-0.9877,-0.1488,-0.0955,-0.9511,-0.2939,0.0,-0.9877,-0.1564,0.0,-0.9511,-0.309,0.0483,-0.9877,-0.1488,0.0955,-0.9511,-0.2939,0.0919,-0.9877,-0.1266,0.1816,-0.9511,-0.25,0.1266,-0.9877,-0.0919,0.25,-0.9511,-0.1816,0.1488,-0.9877,-0.0483,0.2939,-0.9511,-0.0955,0.1564,-0.9877,0.0,0.309,-0.9511,0.0,0.1488,-0.9877,0.0483,0.2939,-0.9511,0.0955,0.4318,-0.891,0.1403,0.3673,-0.891,0.2668,0.2668,-0.891,0.3673,0.1403,-0.891,0.4318,0.0,-0.891,0.454,-0.1403,-0.891,0.4318,-0.2668,-0.891,0.3673,-0.3673,-0.891,0.2668,-0.4318,-0.891,0.1403,-0.454,-0.891,0.0,-0.4318,-0.891,-0.1403,-0.3673,-0.891,-0.2668,-0.2668,-0.891,-0.3673,-0.1403,-0.891,-0.4318,0.0,-0.891,-0.454,0.1403,-0.891,-0.4318,0.2668,-0.891,-0.3673,0.3673,-0.891,-0.2668,0.4318,-0.891,-0.1403,0.454,-0.891,0.0,0.4318,-0.891,0.1403,0.559,-0.809,0.1816,0.4755,-0.809,0.3455,0.3455,-0.809,0.4755,0.1816,-0.809,0.559,0.0,-0.809,0.5878,-0.1816,-0.809,0.559,-0.3455,-0.809,0.4755,-0.4755,-0.809,0.3455,-0.559,-0.809,0.1816,-0.5878,-0.809,0.0,-0.559,-0.809,-0.1816,-0.4755,-0.809,-0.3455,-0.3455,-0.809,-0.4755,-0.1816,-0.809,-0.559,0.0,-0.809,-0.5878,0.1816,-0.809,-0.559,0.3455,-0.809,-0.4755,0.4755,-0.809,-0.3455,0.559,-0.809,-0.1816,0.5878,-0.809,0.0,0.559,-0.809,0.1816,0.6725,-0.7071,0.2185,0.5721,-0.7071,0.4156,0.4156,-0.7071,0.5721,0.2185,-0.7071,0.6725,0.0,-0.7071,0.7071,-0.2185,-0.7071,0.6725,-0.4156,-0.7071,0.5721,-0.5721,-0.7071,0.4156,-0.6725,-0.7071,0.2185,-0.7071,-0.7071,0.0,-0.6725,-0.7071,-0.2185,-0.5721,-0.7071,-0.4156,-0.4156,-0.7071,-0.5721,-0.2185,-0.7071,-0.6725,0.0,-0.7071,-0.7071,0.2185,-0.7071,-0.6725,0.4156,-0.7071,-0.5721,0.5721,-0.7071,-0.4156,0.6725,-0.7071,-0.2185,0.7071,-0.7071,0.0,0.6725,-0.7071,0.2185,0.7694,-0.5878,0.25,0.6545,-0.5878,0.4755,0.4755,-0.5878,0.6545,0.25,-0.5878,0.7694,0.0,-0.5878,0.809,-0.25,-0.5878,0.7694,-0.4755,-0.5878,0.6545,-0.6545,-0.5878,0.4755,-0.7694,-0.5878,0.25,-0.809,-0.5878,0.0,-0.7694,-0.5878,-0.25,-0.6545,-0.5878,-0.4755,-0.4755,-0.5878,-0.6545,-0.25,-0.5878,-0.7694,0.0,-0.5878,-0.809,0.25,-0.5878,-0.7694,0.4755,-0.5878,-0.6545,0.6545,-0.5878,-0.4755,0.7694,-0.5878,-0.25,0.809,-0.5878,0.0,0.7694,-0.5878,0.25,0.8474,-0.454,0.2753,0.7208,-0.454,0.5237,0.5237,-0.454,0.7208,0.2753,-0.454,0.8474,0.0,-0.454,0.891,-0.2753,-0.454,0.8474,-0.5237,-0.454,0.7208,-0.7208,-0.454,0.5237,-0.8474,-0.454,0.2753,-0.891,-0.454,0.0,-0.8474,-0.454,-0.2753,-0.7208,-0.454,-0.5237,-0.5237,-0.454,-0.7208,-0.2753,-0.454,-0.8474,0.0,-0.454,-0.891,0.2753,-0.454,-0.8474,0.5237,-0.454,-0.7208,0.7208,-0.454,-0.5237,0.8474,-0.454,-0.2753,0.891,-0.454,0.0,0.8474,-0.454,0.2753,0.9045,-0.309,0.2939,0.7694,-0.309,0.559,0.559,-0.309,0.7694,0.2939,-0.309,0.9045,0.0,-0.309,0.9511,-0.2939,-0.309,0.9045,-0.559,-0.309,0.7694,-0.7694,-0.309,0.559,-0.9045,-0.309,0.2939,-0.9511,-0.309,0.0,-0.9045,-0.309,-0.2939,-0.7694,-0.309,-0.559,-0.559,-0.309,-0.7694,-0.2939,-0.309,-0.9045,0.0,-0.309,-0.9511,0.2939,-0.309,-0.9045,0.559,-0.309,-0.7694,0.7694,-0.309,-0.559,0.9045,-0.309,-0.2939,0.9511,-0.309,0.0,0.9045,-0.309,0.2939,0.9393,-0.1564,0.3052,0.7991,-0.1564,0.5805,0.5805,-0.1564,0.7991,0.3052,-0.1564,0.9393,0.0,-0.1564,0.9877,-0.3052,-0.1564,0.9393,-0.5805,-0.1564,0.7991,-0.7991,-0.1564,0.5805,-0.9393,-0.1564,0.3052,-0.9877,-0.1564,0.0,-0.9393,-0.1564,-0.3052,-0.7991,-0.1564,-0.5805,-0.5805,-0.1564,-0.7991,-0.3052,-0.1564,-0.9393,0.0,-0.1564,-0.9877,0.3052,-0.1564,-0.9393,0.5805,-0.1564,-0.7991,0.7991,-0.1564,-0.5805,0.9393,-0.1564,-0.3052,0.9877,-0.1564,0.0,0.9393,-0.1564,0.3052,0.9511,0.0,0.309,0.809,0.0,0.5878,0.5878,0.0,0.809,0.309,0.0,0.9511,0.0,0.0,1.0,-0.309,0.0,0.9511,-0.5878,0.0,0.809,-0.809,0.0,0.5878,-0.9511,0.0,0.309,-1.0,0.0,0.0,-0.9511,0.0,-0.309,-0.809,0.0,-0.5878,-0.5878,0.0,-0.809,-0.309,0.0,-0.9511,0.0,0.0,-1.0,0.309,0.0,-0.9511,0.5878,0.0,-0.809,0.809,0.0,-0.5878,0.9511,0.0,-0.309,1.0,0.0,0.0,0.9511,0.0,0.309,0.9393,0.1564,0.3052,0.7991,0.1564,0.5805,0.5805,0.1564,0.7991,0.3052,0.1564,0.9393,0.0,0.1564,0.9877,-0.3052,0.1564,0.9393,-0.5805,0.1564,0.7991,-0.7991,0.1564,0.5805,-0.9393,0.1564,0.3052,-0.9877,0.1564,0.0,-0.9393,0.1564,-0.3052,-0.7991,0.1564,-0.5805,-0.5805,0.1564,-0.7991,-0.3052,0.1564,-0.9393,0.0,0.1564,-0.9877,0.3052,0.1564,-0.9393,0.5805,0.1564,-0.7991,0.7991,0.1564,-0.5805,0.9393,0.1564,-0.3052,0.9877,0.1564,0.0,0.9393,0.1564,0.3052,0.9045,0.309,0.2939,0.7694,0.309,0.559,0.559,0.309,0.7694,0.2939,0.309,0.9045,0.0,0.309,0.9511,-0.2939,0.309,0.9045,-0.559,0.309,0.7694,-0.7694,0.309,0.559,-0.9045,0.309,0.2939,-0.9511,0.309,0.0,-0.9045,0.309,-0.2939,-0.7694,0.309,-0.559,-0.559,0.309,-0.7694,-0.2939,0.309,-0.9045,0.0,0.309,-0.9511,0.2939,0.309,-0.9045,0.559,0.309,-0.7694,0.7694,0.309,-0.559,0.9045,0.309,-0.2939,0.9511,0.309,0.0,0.9045,0.309,0.2939,0.8474,0.454,0.2753,0.7208,0.454,0.5237,0.5237,0.454,0.7208,0.2753,0.454,0.8474,0.0,0.454,0.891,-0.2753,0.454,0.8474,-0.5237,0.454,0.7208,-0.7208,0.454,0.5237,-0.8474,0.454,0.2753,-0.891,0.454,0.0,-0.8474,0.454,-0.2753,-0.7208,0.454,-0.5237,-0.5237,0.454,-0.7208,-0.2753,0.454,-0.8474,0.0,0.454,-0.891,0.2753,0.454,-0.8474,0.5237,0.454,-0.7208,0.7208,0.454,-0.5237,0.8474,0.454,-0.2753,0.891,0.454,0.0,0.8474,0.454,0.2753,0.7694,0.5878,0.25,0.6545,0.5878,0.4755,0.4755,0.5878,0.6545,0.25,0.5878,0.7694,0.0,0.5878,0.809,-0.25,0.5878,0.7694,-0.4755,0.5878,0.6545,-0.6545,0.5878,0.4755,-0.7694,0.5878,0.25,-0.809,0.5878,0.0,-0.7694,0.5878,-0.25,-0.6545,0.5878,-0.4755,-0.4755,0.5878,-0.6545,-0.25,0.5878,-0.7694,0.0,0.5878,-0.809,0.25,0.5878,-0.7694,0.4755,0.5878,-0.6545,0.6545,0.5878,-0.4755,0.7694,0.5878,-0.25,0.809,0.5878,0.0,0.7694,0.5878,0.25,0.6725,0.7071,0.2185,0.5721,0.7071,0.4156,0.4156,0.7071,0.5721,0.2185,0.7071,0.6725,0.0,0.7071,0.7071,-0.2185,0.7071,0.6725,-0.4156,0.7071,0.5721,-0.5721,0.7071,0.4156,-0.6725,0.7071,0.2185,-0.7071,0.7071,0.0,-0.6725,0.7071,-0.2185,-0.5721,0.7071,-0.4156,-0.4156,0.7071,-0.5721,-0.2185,0.7071,-0.6725,0.0,0.7071,-0.7071,0.2185,0.7071,-0.6725,0.4156,0.7071,-0.5721,0.5721,0.7071,-0.4156,0.6725,0.7071,-0.2185,0.7071,0.7071,0.0,0.6725,0.7071,0.2185,0.559,0.809,0.1816,0.4755,0.809,0.3455,0.3455,0.809,0.4755,0.1816,0.809,0.559,0.0,0.809,0.5878,-0.1816,0.809,0.559,-0.3455,0.809,0.4755,-0.4755,0.809,0.3455,-0.559,0.809,0.1816,-0.5878,0.809,0.0,-0.559,0.809,-0.1816,-0.4755,0.809,-0.3455,-0.3455,0.809,-0.4755,-0.1816,0.809,-0.559,0.0,0.809,-0.5878,0.1816,0.809,-0.559,0.3455,0.809,-0.4755,0.4755,0.809,-0.3455,0.559,0.809,-0.1816,0.5878,0.809,0.0,0.559,0.809,0.1816,0.4318,0.891,0.1403,0.3673,0.891,0.2668,0.2668,0.891,0.3673,0.1403,0.891,0.4318,0.0,0.891,0.454,-0.1403,0.891,0.4318,-0.2668,0.891,0.3673,-0.3673,0.891,0.2668,-0.4318,0.891,0.1403,-0.454,0.891,0.0,-0.4318,0.891,-0.1403,-0.3673,0.891,-0.2668,-0.2668,0.891,-0.3673,-0.1403,0.891,-0.4318,0.0,0.891,-0.454,0.1403,0.891,-0.4318,0.2668,0.891,-0.3673,0.3673,0.891,-0.2668,0.4318,0.891,-0.1403,0.454,0.891,0.0,0.4318,0.891,0.1403,0.2939,0.9511,0.0955,0.25,0.9511,0.1816,0.1816,0.9511,0.25,0.0955,0.9511,0.2939,0.0,0.9511,0.309,-0.0955,0.9511,0.2939,-0.1816,0.9511,0.25,-0.25,0.9511,0.1816,-0.2939,0.9511,0.0955,-0.309,0.9511,0.0,-0.2939,0.9511,-0.0955,-0.25,0.9511,-0.1816,-0.1816,0.9511,-0.25,-0.0955,0.9511,-0.2939,0.0,0.9511,-0.309,0.0955,0.9511,-0.2939,0.1816,0.9511,-0.25,0.25,0.9511,-0.1816,0.2939,0.9511,-0.0955,0.309,0.9511,0.0,0.2939,0.9511,0.0955,0.1488,0.9877,0.0483,0.1266,0.9877,0.0919,0.0919,0.9877,0.1266,0.0483,0.9877,0.1488,0.0,0.9877,0.1564,-0.0483,0.9877,0.1488,-0.0919,0.9877,0.1266,-0.1266,0.9877,0.0919,-0.1488,0.9877,0.0483,-0.1564,0.9877,0.0,-0.1488,0.9877,-0.0483,-0.1266,0.9877,-0.0919,-0.0919,0.9877,-0.1266,-0.0483,0.9877,-0.1488,0.0,0.9877,-0.1564,0.0483,0.9877,-0.1488,0.0919,0.9877,-0.1266,0.1266,0.9877,-0.0919,0.1488,0.9877,-0.0483,0.1564,0.9877,0.0,0.1488,0.9877,0.0483,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0],"normals":[0.1906,-0.9797,0.0619,0.1621,-0.9797,0.1178,0.3173,-0.9427,0.1031,0.2699,-0.9427,0.1961,0.1178,-0.9797,0.1621,0.1961,-0.9427,0.2699,0.0619,-0.9797,0.1906,0.1031,-0.9427,0.3173,0.0,-0.9797,0.2004,0.0,-0.9427,0.3336,-0.0619,-0.9797,0.1906,-0.1031,-0.9427,0.3173,-0.1178,-0.9797,0.1621,-0.1961,-0.9427,0.2699,-0.1621,-0.9797,0.1178,-0.2699,-0.9427,0.1961,-0.1906,-0.9797,0.0619,-0.3173,-0.9427,0.1031,-0.2004,-0.9797,0.0,-0.3336,-0.9427,0.0,-0.1906,-0.9797,-0.0619,-0.3173,-0.9427,-0.1031,-0.1621,-0.9797,-0.1178,-0.2699,-0.9427,-0.1961,-0.1178,-0.9797,-0.1621,-0.1961,-0.9427,-0.2699,-0.0619,-0.9797,-0.1906,-0.1031,-0.9427,-0.3173,0.0,-0.9797,-0.2004,0.0,-0.9427,-0.3336,0.0619,-0.9797,-0.1906,0.1031,-0.9427,-0.3173,0.1178,-0.9797,-0.1621,0.1961,-0.9427,-0.2699,0.1621,-0.9797,-0.1178,0.2699,-0.9427,-0.1961,0.1906,-0.9797,-0.0619,0.3173,-0.9427,-0.1031,0.2004,-0.9797,0.0,0.3336,-0.9427,0.0,0.1906,-0.9797,0.0619,0.3173,-0.9427,0.1031,0.4477,-0.8823,0.1455,0.3808,-0.8823,0.2767,0.2767,-0.8823,0.3808,0.1455,-0.8823,0.4477,0.0,-0.8823,0.4708,-0.1455,-0.8823,0.4477,-0.2767,-0.8823,0.3808,-0.3808,-0.8823,0.2767,-0.4477,-0.8823,0.1455,-0.4708,-0.8823,0.0,-0.4477,-0.8823,-0.1455,-0.3808,-0.8823,-0.2767,-0.2767,-0.8823,-0.3808,-0.1455,-0.8823,-0.4477,0.0,-0.8823,-0.4708,0.1455,-0.8823,-0.4477,0.2767,-0.8823,-0.3808,0.3808,-0.8823,-0.2767,0.4477,-0.8823,-0.1455,0.4708,-0.8823,0.0,0.4477,-0.8823,0.1455,0.5703,-0.8003,0.1853,0.4851,-0.8003,0.3525,0.3525,-0.8003,0.4851,0.1853,-0.8003,0.5703,0.0,-0.8003,0.5997,-0.1853,-0.8003,0.5703,-0.3525,-0.8003,0.4851,-0.4851,-0.8003,0.3525,-0.5703,-0.8003,0.1853,-0.5997,-0.8003,0.0,-0.5703,-0.8003,-0.1853,-0.4851,-0.8003,-0.3525,-0.3525,-0.8003,-0.4851,-0.1853,-0.8003,-0.5703,0.0,-0.8003,-0.5997,0.1853,-0.8003,-0.5703,0.3525,-0.8003,-0.4851,0.4851,-0.8003,-0.3525,0.5703,-0.8003,-0.1853,0.5997,-0.8003,0.0,0.5703,-0.8003,0.1853,0.6803,-0.6988,0.221,0.5787,-0.6988,0.4205,0.4205,-0.6988,0.5787,0.221,-0.6988,0.6803,0.0,-0.6988,0.7153,-0.221,-0.6988,0.6803,-0.4205,-0.6988,0.5787,-0.5787,-0.6988,0.4205,-0.6803,-0.6988,0.221,-0.7153,-0.6988,0.0,-0.6803,-0.6988,-0.221,-0.5787,-0.6988,-0.4205,-0.4205,-0.6988,-0.5787,-0.221,-0.6988,-0.6803,0.0,-0.6988,-0.7153,0.221,-0.6988,-0.6803,0.4205,-0.6988,-0.5787,0.5787,-0.6988,-0.4205,0.6803,-0.6988,-0.221,0.7153,-0.6988,0.0,0.6803,-0.6988,0.221,0.7745,-0.5804,0.2516,0.6588,-0.5804,0.4787,0.4787,-0.5804,0.6588,0.2516,-0.5804,0.7745,0.0,-0.5804,0.8143,-0.2516,-0.5804,0.7745,-0.4787,-0.5804,0.6588,-0.6588,-0.5804,0.4787,-0.7745,-0.5804,0.2516,-0.8143,-0.5804,0.0,-0.7745,-0.5804,-0.2516,-0.6588,-0.5804,-0.4787,-0.4787,-0.5804,-0.6588,-0.2516,-0.5804,-0.7745,0.0,-0.5804,-0.8143,0.2516,-0.5804,-0.7745,0.4787,-0.5804,-0.6588,0.6588,-0.5804,-0.4787,0.7745,-0.5804,-0.2516,0.8143,-0.5804,0.0,0.7745,-0.5804,0.2516,0.8503,-0.448,0.2763,0.7233,-0.448,0.5255,0.5255,-0.448,0.7233,0.2763,-0.448,0.8503,0.0,-0.448,0.894,-0.2763,-0.448,0.8503,-0.5255,-0.448,0.7233,-0.7233,-0.448,0.5255,-0.8503,-0.448,0.2763,-0.894,-0.448,0.0,-0.8503,-0.448,-0.2763,-0.7233,-0.448,-0.5255,-0.5255,-0.448,-0.7233,-0.2763,-0.448,-0.8503,0.0,-0.448,-0.894,0.2763,-0.448,-0.8503,0.5255,-0.448,-0.7233,0.7233,-0.448,-0.5255,0.8503,-0.448,-0.2763,0.894,-0.448,0.0,0.8503,-0.448,0.2763,0.9058,-0.3048,0.2943,0.7705,-0.3048,0.5598,0.5598,-0.3048,0.7705,0.2943,-0.3048,0.9058,0.0,-0.3048,0.9524,-0.2943,-0.3048,0.9058,-0.5598,-0.3048,0.7705,-0.7705,-0.3048,0.5598,-0.9058,-0.3048,0.2943,-0.9524,-0.3048,0.0,-0.9058,-0.3048,-0.2943,-0.7705,-0.3048,-0.5598,-0.5598,-0.3048,-0.7705,-0.2943,-0.3048,-0.9058,0.0,-0.3048,-0.9524,0.2943,-0.3048,-0.9058,0.5598,-0.3048,-0.7705,0.7705,-0.3048,-0.5598,0.9058,-0.3048,-0.2943,0.9524,-0.3048,0.0,0.9058,-0.3048,0.2943,0.9397,-0.1542,0.3053,0.7993,-0.1542,0.5808,0.5808,-0.1542,0.7993,0.3053,-0.1542,0.9397,0.0,-0.1542,0.988,-0.3053,-0.1542,0.9397,-0.5808,-0.1542,0.7993,-0.7993,-0.1542,0.5808,-0.9397,-0.1542,0.3053,-0.988,-0.1542,0.0,-0.9397,-0.1542,-0.3053,-0.7993,-0.1542,-0.5808,-0.5808,-0.1542,-0.7993,-0.3053,-0.1542,-0.9397,0.0,-0.1542,-0.988,0.3053,-0.1542,-0.9397,0.5808,-0.1542,-0.7993,0.7993,-0.1542,-0.5808,0.9397,-0.1542,-0.3053,0.988,-0.1542,0.0,0.9397,-0.1542,0.3053,0.9511,0.0,0.309,0.809,0.0,0.5878,0.5878,0.0,0.809,0.309,0.0,0.9511,0.0,0.0,1.0,-0.309,0.0,0.9511,-0.5878,0.0,0.809,-0.809,0.0,0.5878,-0.9511,0.0,0.309,-1.0,0.0,0.0,-0.9511,0.0,-0.309,-0.809,0.0,-0.5878,-0.5878,0.0,-0.809,-0.309,0.0,-0.9511,0.0,0.0,-1.0,0.309,0.0,-0.9511,0.5878,0.0,-0.809,0.809,0.0,-0.5878,0.9511,0.0,-0.309,1.0,0.0,0.0,0.9511,0.0,0.309,0.9397,0.1542,0.3053,0.7993,0.1542,0.5808,0.5808,0.1542,0.7993,0.3053,0.1542,0.9397,0.0,0.1542,0.988,-0.3053,0.1542,0.9397,-0.5808,0.1542,0.7993,-0.7993,0.1542,0.5808,-0.9397,0.1542,0.3053,-0.988,0.1542,0.0,-0.9397,0.1542,-0.3053,-0.7993,0.1542,-0.5808,-0.5808,0.1542,-0.7993,-0.3053,0.1542,-0.9397,0.0,0.1542,-0.988,0.3053,0.1542,-0.9397,0.5808,0.1542,-0.7993,0.7993,0.1542,-0.5808,0.9397,0.1542,-0.3053,0.988,0.1542,0.0,0.9397,0.1542,0.3053,0.9058,0.3048,0.2943,0.7705,0.3048,0.5598,0.5598,0.3048,0.7705,0.2943,0.3048,0.9058,0.0,0.3048,0.9524,-0.2943,0.3048,0.9058,-0.5598,0.3048,0.7705,-0.7705,0.3048,0.5598,-0.9058,0.3048,0.2943,-0.9524,0.3048,0.0,-0.9058,0.3048,-0.2943,-0.7705,0.3048,-0.5598,-0.5598,0.3048,-0.7705,-0.2943,0.3048,-0.9058,0.0,0.3048,-0.9524,0.2943,0.3048,-0.9058,0.5598,0.3048,-0.7705,0.7705,0.3048,-0.5598,0.9058,0.3048,-0.2943,0.9524,0.3048,0.0,0.9058,0.3048,0.2943,0.8503,0.448,0.2763,0.7233,0.448,0.5255,0.5255,0.448,0.7233,0.2763,0.448,0.8503,0.0,0.448,0.894,-0.2763,0.448,0.8503,-0.5255,0.448,0.7233,-0.7233,0.448,0.5255,-0.8503,0.448,0.2763,-0.894,0.448,0.0,-0.8503,0.448,-0.2763,-0.7233,0.448,-0.5255,-0.5255,0.448,-0.7233,-0.2763,0.448,-0.8503,0.0,0.448,-0.894,0.2763,0.448,-0.8503,0.5255,0.448,-0.7233,0.7233,0.448,-0.5255,0.8503,0.448,-0.2763,0.894,0.448,0.0,0.8503,0.448,0.2763,0.7745,0.5804,0.2516,0.6588,0.5804,0.4787,0.4787,0.5804,0.6588,0.2516,0.5804,0.7745,0.0,0.5804,0.8143,-0.2516,0.5804,0.7745,-0.4787,0.5804,0.6588,-0.6588,0.5804,0.4787,-0.7745,0.5804,0.2516,-0.8143,0.5804,0.0,-0.7745,0.5804,-0.2516,-0.6588,0.5804,-0.4787,-0.4787,0.5804,-0.6588,-0.2516,0.5804,-0.7745,0.0,0.5804,-0.8143,0.2516,0.5804,-0.7745,0.4787,0.5804,-0.6588,0.6588,0.5804,-0.4787,0.7745,0.5804,-0.2516,0.8143,0.5804,0.0,0.7745,0.5804,0.2516,0.6803,0.6988,0.221,0.5787,0.6988,0.4205,0.4205,0.6988,0.5787,0.221,0.6988,0.6803,0.0,0.6988,0.7153,-0.221,0.6988,0.6803,-0.4205,0.6988,0.5787,-0.5787,0.6988,0.4205,-0.6803,0.6988,0.221,-0.7153,0.6988,0.0,-0.6803,0.6988,-0.221,-0.5787,0.6988,-0.4205,-0.4205,0.6988,-0.5787,-0.221,0.6988,-0.6803,0.0,0.6988,-0.7153,0.221,0.6988,-0.6803,0.4205,0.6988,-0.5787,0.5787,0.6988,-0.4205,0.6803,0.6988,-0.221,0.7153,0.6988,0.0,0.6803,0.6988,0.221,0.5703,0.8003,0.1853,0.4851,0.8003,0.3525,0.3525,0.8003,0.4851,0.1853,0.8003,0.5703,0.0,0.8003,0.5997,-0.1853,0.8003,0.5703,-0.3525,0.8003,0.4851,-0.4851,0.8003,0.3525,-0.5703,0.8003,0.1853,-0.5997,0.8003,0.0,-0.5703,0.8003,-0.1853,-0.4851,0.8003,-0.3525,-0.3525,0.8003,-0.4851,-0.1853,0.8003,-0.5703,0.0,0.8003,-0.5997,0.1853,0.8003,-0.5703,0.3525,0.8003,-0.4851,0.4851,0.8003,-0.3525,0.5703,0.8003,-0.1853,0.5997,0.8003,0.0,0.5703,0.8003,0.1853,0.4477,0.8823,0.1455,0.3808,0.8823,0.2767,0.2767,0.8823,0.3808,0.1455,0.8823,0.4477,0.0,0.8823,0.4708,-0.1455,0.8823,0.4477,-0.2767,0.8823,0.3808,-0.3808,0.8823,0.2767,-0.4477,0.8823,0.1455,-0.4708,0.8823,0.0,-0.4477,0.8823,-0.1455,-0.3808,0.8823,-0.2767,-0.2767,0.8823,-0.3808,-0.1455,0.8823,-0.4477,0.0,0.8823,-0.4708,0.1455,0.8823,-0.4477,0.2767,0.8823,-0.3808,0.3808,0.8823,-0.2767,0.4477,0.8823,-0.1455,0.4708,0.8823,0.0,0.4477,0.8823,0.1455,0.3173,0.9427,0.1031,0.2699,0.9427,0.1961,0.1961,0.9427,0.2699,0.1031,0.9427,0.3173,0.0,0.9427,0.3336,-0.1031,0.9427,0.3173,-0.1961,0.9427,0.2699,-0.2699,0.9427,0.1961,-0.3173,0.9427,0.1031,-0.3336,0.9427,0.0,-0.3173,0.9427,-0.1031,-0.2699,0.9427,-0.1961,-0.1961,0.9427,-0.2699,-0.1031,0.9427,-0.3173,0.0,0.9427,-0.3336,0.1031,0.9427,-0.3173,0.1961,0.9427,-0.2699,0.2699,0.9427,-0.1961,0.3173,0.9427,-0.1031,0.3336,0.9427,0.0,0.3173,0.9427,0.1031,0.1906,0.9797,0.0619,0.1621,0.9797,0.1178,0.1178,0.9797,0.1621,0.0619,0.9797,0.1906,0.0,0.9797,0.2004,-0.0619,0.9797,0.1906,-0.1178,0.9797,0.1621,-0.1621,0.9797,0.1178,-0.1906,0.9797,0.0619,-0.2004,0.9797,0.0,-0.1906,0.9797,-0.0619,-0.1621,0.9797,-0.1178,-0.1178,0.9797,-0.1621,-0.0619,0.9797,-0.1906,0.0,0.9797,-0.2004,0.0619,0.9797,-0.1906,0.1178,0.9797,-0.1621,0.1621,0.9797,-0.1178,0.1906,0.9797,-0.0619,0.2004,0.9797,0.0,0.1906,0.9797,0.0619,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0],"tangents":[-0.4482,-0.0307,0.8934,-1.0,-0.5629,0.0062,0.8265,-1.0,-0.438,-0.0493,0.8976,-1.0,-0.5878,0.0,0.809,-1.0,-0.7908,0.0062,0.6121,-1.0,-0.809,0.0,0.5878,-1.0,-0.9412,0.0062,0.3378,-1.0,-0.9511,0.0,0.309,-1.0,-0.9995,0.0062,0.0304,-1.0,-1.0,0.0,0.0,-1.0,-0.96,0.0062,-0.28,-1.0,-0.9511,0.0,-0.309,-1.0,-0.8265,0.0062,-0.5629,-1.0,-0.809,0.0,-0.5878,-1.0,-0.6121,0.0062,-0.7908,-1.0,-0.5878,0.0,-0.809,-1.0,-0.3378,0.0062,-0.9412,-1.0,-0.309,0.0,-0.9511,-1.0,-0.0304,0.0062,-0.9995,-1.0,0.0,0.0,-1.0,-1.0,0.28,0.0062,-0.96,-1.0,0.309,0.0,-0.9511,-1.0,0.5629,0.0062,-0.8265,-1.0,0.5878,0.0,-0.809,-1.0,0.7908,0.0062,-0.6121,-1.0,0.809,0.0,-0.5878,-1.0,0.9412,0.0062,-0.3378,-1.0,0.9511,0.0,-0.309,-1.0,0.9995,0.0062,-0.0304,-1.0,1.0,0.0,0.0,-1.0,0.96,0.0062,0.28,-1.0,0.9511,0.0,0.309,-1.0,0.8265,0.0062,0.5629,-1.0,0.809,0.0,0.5878,-1.0,0.6121,0.0062,0.7908,-1.0,0.5878,0.0,0.809,-1.0,0.3378,0.0062,0.9412,-1.0,0.309,0.0,0.9511,-1.0,0.0304,0.0062,0.9995,-1.0,0.0,0.0,1.0,-1.0,-0.1625,0.0307,0.9862,-1.0,-0.1732,0.0493,0.9836,-1.0,-0.4222,-0.0651,0.9042,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.1899,0.0651,0.9796,-1.0,-0.4023,-0.0754,0.9124,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.2109,0.0754,0.9746,-1.0,-0.3802,-0.0787,0.9215,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.234,0.0787,0.969,-1.0,-0.3582,-0.0745,0.9306,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.2572,0.0745,0.9635,-1.0,-0.3384,-0.0633,0.9389,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.2781,0.0633,0.9585,-1.0,-0.3226,-0.0459,0.9454,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.2947,0.0459,0.9545,-1.0,-0.3125,-0.0241,0.9496,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.3053,0.0241,0.9519,-1.0,-0.309,0.0,0.9511,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.309,0.0,0.9511,-1.0,-0.3125,0.0241,0.9496,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.3053,-0.0241,0.9519,-1.0,-0.3226,0.0459,0.9454,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.2947,-0.0459,0.9545,-1.0,-0.3384,0.0633,0.9389,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.2781,-0.0633,0.9585,-1.0,-0.3582,0.0745,0.9306,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.2572,-0.0745,0.9635,-1.0,-0.3802,0.0787,0.9215,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.234,-0.0787,0.969,-1.0,-0.4023,0.0754,0.9124,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.2109,-0.0754,0.9746,-1.0,-0.4222,0.0651,0.9042,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.1899,-0.0651,0.9796,-1.0,-0.438,0.0493,0.8976,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.1732,-0.0493,0.9836,-1.0,-0.4482,0.0307,0.8934,-1.0,-0.6121,0.0062,0.7908,-1.0,-0.8265,0.0062,0.5629,-1.0,-0.96,0.0062,0.28,-1.0,-0.9995,0.0062,-0.0304,-1.0,-0.9412,0.0062,-0.3378,-1.0,-0.7908,0.0062,-0.6121,-1.0,-0.5629,0.0062,-0.8265,-1.0,-0.28,0.0062,-0.96,-1.0,0.0304,0.0062,-0.9995,-1.0,0.3378,0.0062,-0.9412,-1.0,0.6121,0.0062,-0.7908,-1.0,0.8265,0.0062,-0.5629,-1.0,0.96,0.0062,-0.28,-1.0,0.9995,0.0062,0.0304,-1.0,0.9412,0.0062,0.3378,-1.0,0.7908,0.0062,0.6121,-1.0,0.5629,0.0062,0.8265,-1.0,0.28,0.0062,0.96,-1.0,-0.0304,0.0062,0.9995,-1.0,-0.1625,-0.0307,0.9862,-1.0,-0.454,0.0,0.891,-1.0,-0.7071,0.0,0.7071,-1.0,-0.891,0.0,0.454,-1.0,-0.9877,0.0,0.1564,-1.0,-0.9877,0.0,-0.1564,-1.0,-0.891,0.0,-0.454,-1.0,-0.7071,0.0,-0.7071,-1.0,-0.454,0.0,-0.891,-1.0,-0.1564,0.0,-0.9877,-1.0,0.1564,0.0,-0.9877,-1.0,0.454,0.0,-0.891,-1.0,0.7071,0.0,-0.7071,-1.0,0.891,0.0,-0.454,-1.0,0.9877,0.0,-0.1564,-1.0,0.9877,0.0,0.1564,-1.0,0.891,0.0,0.454,-1.0,0.7071,0.0,0.7071,-1.0,0.454,0.0,0.891,-1.0,0.1564,0.0,0.9877,-1.0,-0.1564,0.0,0.9877,-1.0,-0.454,0.0,0.891,-1.0,-0.7071,0.0,0.7071,-1.0,-0.891,0.0,0.454,-1.0,-0.9877,0.0,0.1564,-1.0,-0.9877,0.0,-0.1564,-1.0,-0.891,0.0,-0.454,-1.0,-0.7071,0.0,-0.7071,-1.0,-0.454,0.0,-0.891,-1.0,-0.1564,0.0,-0.9877,-1.0,0.1564,0.0,-0.9877,-1.0,0.454,0.0,-0.891,-1.0,0.7071,0.0,-0.7071,-1.0,0.891,0.0,-0.454,-1.0,0.9877,0.0,-0.1564,-1.0,0.9877,0.0,0.1564,-1.0,0.891,0.0,0.454,-1.0,0.7071,0.0,0.7071,-1.0,0.454,0.0,0.891,-1.0,0.1564,0.0,0.9877,-1.0,-0.1564,0.0,0.9877,-1.0],"uvs":[0.0,0.05,0.05,0.05,0.0,0.1,0.05,0.1,0.1,0.05,0.1,0.1,0.15,0.05,0.15,0.1,0.2,0.05,0.2,0.1,0.25,0.05,0.25,0.1,0.3,0.05,0.3,0.1,0.35,0.05,0.35,0.1,0.4,0.05,0.4,0.1,0.45,0.05,0.45,0.1,0.5,0.05,0.5,0.1,0.55,0.05,0.55,0.1,0.6,0.05,0.6,0.1,0.65,0.05,0.65,0.1,0.7,0.05,0.7,0.1,0.75,0.05,0.75,0.1,0.8,0.05,0.8,0.1,0.85,0.05,0.85,0.1,0.9,0.05,0.9,0.1,0.95,0.05,0.95,0.1,1.0,0.05,1.0,0.1,0.0,0.15,0.05,0.15,0.1,0.15,0.15,0.15,0.2,0.15,0.25,0.15,0.3,0.15,0.35,0.15,0.4,0.15,0.45,0.15,0.5,0.15,0.55,0.15,0.6,0.15,0.65,0.15,0.7,0.15,0.75,0.15,0.8,0.15,0.85,0.15,0.9,0.15,0.95,0.15,1.0,0.15,0.0,0.2,0.05,0.2,0.1,0.2,0.15,0.2,0.2,0.2,0.25,0.2,0.3,0.2,0.35,0.2,0.4,0.2,0.45,0.2,0.5,0.2,0.55,0.2,0.6,0.2,0.65,0.2,0.7,0.2,0.75,0.2,0.8,0.2,0.85,0.2,0.9,0.2,0.95,0.2,1.0,0.2,0.0,0.25,0.05,0.25,0.1,0.25,0.15,0.25,0.2,0.25,0.25,0.25,0.3,0.25,0.35,0.25,0.4,0.25,0.45,0.25,0.5,0.25,0.55,0.25,0.6,0.25,0.65,0.25,0.7,0.25,0.75,0.25,0.8,0.25,0.85,0.25,0.9,0.25,0.95,0.25,1.0,0.25,0.0,0.3,0.05,0.3,0.1,0.3,0.15,0.3,0.2,0.3,0.25,0.3,0.3,0.3,0.35,0.3,0.4,0.3,0.45,0.3,0.5,0.3,0.55,0.3,0.6,0.3,0.65,0.3,0.7,0.3,0.75,0.3,0.8,0.3,0.85,0.3,0.9,0.3,0.95,0.3,1.0,0.3,0.0,0.35,0.05,0.35,0.1,0.35,0.15,0.35,0.2,0.35,0.25,0.35,0.3,0.35,0.35,0.35,0.4,0.35,0.45,0.35,0.5,0.35,0.55,0.35,0.6,0.35,0.65,0.35,0.7,0.35,0.75,0.35,0.8,0.35,0.85,0.35,0.9,0.35,0.95,0.35,1.0,0.35,0.0,0.4,0.05,0.4,0.1,0.4,0.15,0.4,0.2,0.4,0.25,0.4,0.3,0.4,0.35,0.4,0.4,0.4,0.45,0.4,0.5,0.4,0.55,0.4,0.6,0.4,0.65,0.4,0.7,0.4,0.75,0.4,0.8,0.4,0.85,0.4,0.9,0.4,0.95,0.4,1.0,0.4,0.0,0.45,0.05,0.45,0.1,0.45,0.15,0.45,0.2,0.45,0.25,0.45,0.3,0.45,0.35,0.45,0.4,0.45,0.45,0.45,0.5,0.45,0.55,0.45,0.6,0.45,0.65,0.45,0.7,0.45,0.75,0.45,0.8,0.45,0.85,0.45,0.9,0.45,0.95,0.45,1.0,0.45,0.0,0.5,0.05,0.5,0.1,0.5,0.15,0.5,0.2,0.5,0.25,0.5,0.3,0.5,0.35,0.5,0.4,0.5,0.45,0.5,0.5,0.5,0.55,0.5,0.6,0.5,0.65,0.5,0.7,0.5,0.75,0.5,0.8,0.5,0.85,0.5,0.9,0.5,0.95,0.5,1.0,0.5,0.0,0.55,0.05,0.55,0.1,0.55,0.15,0.55,0.2,0.55,0.25,0.55,0.3,0.55,0.35,0.55,0.4,0.55,0.45,0.55,0.5,0.55,0.55,0.55,0.6,0.55,0.65,0.55,0.7,0.55,0.75,0.55,0.8,0.55,0.85,0.55,0.9,0.55,0.95,0.55,1.0,0.55,0.0,0.6,0.05,0.6,0.1,0.6,0.15,0.6,0.2,0.6,0.25,0.6,0.3,0.6,0.35,0.6,0.4,0.6,0.45,0.6,0.5,0.6,0.55,0.6,0.6,0.6,0.65,0.6,0.7,0.6,0.75,0.6,0.8,0.6,0.85,0.6,0.9,0.6,0.95,0.6,1.0,0.6,0.0,0.65,0.05,0.65,0.1,0.65,0.15,0.65,0.2,0.65,0.25,0.65,0.3,0.65,0.35,0.65,0.4,0.65,0.45,0.65,0.5,0.65,0.55,0.65,0.6,0.65,0.65,0.65,0.7,0.65,0.75,0.65,0.8,0.65,0.85,0.65,0.9,0.65,0.95,0.65,1.0,0.65,0.0,0.7,0.05,0.7,0.1,0.7,0.15,0.7,0.2,0.7,0.25,0.7,0.3,0.7,0.35,0.7,0.4,0.7,0.45,0.7,0.5,0.7,0.55,0.7,0.6,0.7,0.65,0.7,0.7,0.7,0.75,0.7,0.8,0.7,0.85,0.7,0.9,0.7,0.95,0.7,1.0,0.7,0.0,0.75,0.05,0.75,0.1,0.75,0.15,0.75,0.2,0.75,0.25,0.75,0.3,0.75,0.35,0.75,0.4,0.75,0.45,0.75,0.5,0.75,0.55,0.75,0.6,0.75,0.65,0.75,0.7,0.75,0.75,0.75,0.8,0.75,0.85,0.75,0.9,0.75,0.95,0.75,1.0,0.75,0.0,0.8,0.05,0.8,0.1,0.8,0.15,0.8,0.2,0.8,0.25,0.8,0.3,0.8,0.35,0.8,0.4,0.8,0.45,0.8,0.5,0.8,0.55,0.8,0.6,0.8,0.65,0.8,0.7,0.8,0.75,0.8,0.8,0.8,0.85,0.8,0.9,0.8,0.95,0.8,1.0,0.8,0.0,0.85,0.05,0.85,0.1,0.85,0.15,0.85,0.2,0.85,0.25,0.85,0.3,0.85,0.35,0.85,0.4,0.85,0.45,0.85,0.5,0.85,0.55,0.85,0.6,0.85,0.65,0.85,0.7,0.85,0.75,0.85,0.8,0.85,0.85,0.85,0.9,0.85,0.95,0.85,1.0,0.85,0.0,0.9,0.05,0.9,0.1,0.9,0.15,0.9,0.2,0.9,0.25,0.9,0.3,0.9,0.35,0.9,0.4,0.9,0.45,0.9,0.5,0.9,0.55,0.9,0.6,0.9,0.65,0.9,0.7,0.9,0.75,0.9,0.8,0.9,0.85,0.9,0.9,0.9,0.95,0.9,1.0,0.9,0.0,0.95,0.05,0.95,0.1,0.95,0.15,0.95,0.2,0.95,0.25,0.95,0.3,0.95,0.35,0.95,0.4,0.95,0.45,0.95,0.5,0.95,0.55,0.95,0.6,0.95,0.65,0.95,0.7,0.95,0.75,0.95,0.8,0.95,0.85,0.95,0.9,0.95,0.95,0.95,1.0,0.95,0.025,0.0,0.075,0.0,0.125,0.0,0.175,0.0,0.225,0.0,0.275,0.0,0.325,0.0,0.375,0.0,0.425,0.0,0.475,0.0,0.525,0.0,0.575,0.0,0.625,0.0,0.675,0.0,0.725,0.0,0.775,0.0,0.825,0.0,0.875,0.0,0.925,0.0,0.975,0.0,0.025,1.0,0.075,1.0,0.125,1.0,0.175,1.0,0.225,1.0,0.275,1.0,0.325,1.0,0.375,1.0,0.425,1.0,0.475,1.0,0.525,1.0,0.575,1.0,0.625,1.0,0.675,1.0,0.725,1.0,0.775,1.0,0.825,1.0,0.875,1.0,0.925,1.0,0.975,1.0],"uvs2":null,"colors":null,"hasVertexAlpha":false,"matricesIndices":null,"matricesWeights":null,"matricesIndicesExtra":null,"matricesWeightsExtra":null,"indices":[0,1,2,2,1,3,1,4,3,3,4,5,4,6,5,5,6,7,6,8,7,7,8,9,8,10,9,9,10,11,10,12,11,11,12,13,12,14,13,13,14,15,14,16,15,15,16,17,16,18,17,17,18,19,18,20,19,19,20,21,20,22,21,21,22,23,22,24,23,23,24,25,24,26,25,25,26,27,26,28,27,27,28,29,28,30,29,29,30,31,30,32,31,31,32,33,32,34,33,33,34,35,34,36,35,35,36,37,36,38,37,37,38,39,38,40,39,39,40,41,2,3,42,42,3,43,3,5,43,43,5,44,5,7,44,44,7,45,7,9,45,45,9,46,9,11,46,46,11,47,11,13,47,47,13,48,13,15,48,48,15,49,15,17,49,49,17,50,17,19,50,50,19,51,19,21,51,51,21,52,21,23,52,52,23,53,23,25,53,53,25,54,25,27,54,54,27,55,27,29,55,55,29,56,29,31,56,56,31,57,31,33,57,57,33,58,33,35,58,58,35,59,35,37,59,59,37,60,37,39,60,60,39,61,39,41,61,61,41,62,42,43,63,63,43,64,43,44,64,64,44,65,44,45,65,65,45,66,45,46,66,66,46,67,46,47,67,67,47,68,47,48,68,68,48,69,48,49,69,69,49,70,49,50,70,70,50,71,50,51,71,71,51,72,51,52,72,72,52,73,52,53,73,73,53,74,53,54,74,74,54,75,54,55,75,75,55,76,55,56,76,76,56,77,56,57,77,77,57,78,57,58,78,78,58,79,58,59,79,79,59,80,59,60,80,80,60,81,60,61,81,81,61,82,61,62,82,82,62,83,63,64,84,84,64,85,64,65,85,85,65,86,65,66,86,86,66,87,66,67,87,87,67,88,67,68,88,88,68,89,68,69,89,89,69,90,69,70,90,90,70,91,70,71,91,91,71,92,71,72,92,92,72,93,72,73,93,93,73,94,73,74,94,94,74,95,74,75,95,95,75,96,75,76,96,96,76,97,76,77,97,97,77,98,77,78,98,98,78,99,78,79,99,99,79,100,79,80,100,100,80,101,80,81,101,101,81,102,81,82,102,102,82,103,82,83,103,103,83,104,84,85,105,105,85,106,85,86,106,106,86,107,86,87,107,107,87,108,87,88,108,108,88,109,88,89,109,109,89,110,89,90,110,110,90,111,90,91,111,111,91,112,91,92,112,112,92,113,92,93,113,113,93,114,93,94,114,114,94,115,94,95,115,115,95,116,95,96,116,116,96,117,96,97,117,117,97,118,97,98,118,118,98,119,98,99,119,119,99,120,99,100,120,120,100,121,100,101,121,121,101,122,101,102,122,122,102,123,102,103,123,123,103,124,103,104,124,124,104,125,105,106,126,126,106,127,106,107,127,127,107,128,107,108,128,128,108,129,108,109,129,129,109,130,109,110,130,130,110,131,110,111,131,131,111,132,111,112,132,132,112,133,112,113,133,133,113,134,113,114,134,134,114,135,114,115,135,135,115,136,115,116,136,136,116,137,116,117,137,137,117,138,117,118,138,138,118,139,118,119,139,139,119,140,119,120,140,140,120,141,120,121,141,141,121,142,121,122,142,142,122,143,122,123,143,143,123,144,123,124,144,144,124,145,124,125,145,145,125,146,126,127,147,147,127,148,127,128,148,148,128,149,128,129,149,149,129,150,129,130,150,150,130,151,130,131,151,151,131,152,131,132,152,152,132,153,132,133,153,153,133,154,133,134,154,154,134,155,134,135,155,155,135,156,135,136,156,156,136,157,136,137,157,157,137,158,137,138,158,158,138,159,138,139,159,159,139,160,139,140,160,160,140,161,140,141,161,161,141,162,141,142,162,162,142,163,142,143,163,163,143,164,143,144,164,164,144,165,144,145,165,165,145,166,145,146,166,166,146,167,147,148,168,168,148,169,148,149,169,169,149,170,149,150,170,170,150,171,150,151,171,171,151,172,151,152,172,172,152,173,152,153,173,173,153,174,153,154,174,174,154,175,154,155,175,175,155,176,155,156,176,176,156,177,156,157,177,177,157,178,157,158,178,178,158,179,158,159,179,179,159,180,159,160,180,180,160,181,160,161,181,181,161,182,161,162,182,182,162,183,162,163,183,183,163,184,163,164,184,184,164,185,164,165,185,185,165,186,165,166,186,186,166,187,166,167,187,187,167,188,168,169,189,189,169,190,169,170,190,190,170,191,170,171,191,191,171,192,171,172,192,192,172,193,172,173,193,193,173,194,173,174,194,194,174,195,174,175,195,195,175,196,175,176,196,196,176,197,176,177,197,197,177,198,177,178,198,198,178,199,178,179,199,199,179,200,179,180,200,200,180,201,180,181,201,201,181,202,181,182,202,202,182,203,182,183,203,203,183,204,183,184,204,204,184,205,184,185,205,205,185,206,185,186,206,206,186,207,186,187,207,207,187,208,187,188,208,208,188,209,189,190,210,210,190,211,190,191,211,211,191,212,191,192,212,212,192,213,192,193,213,213,193,214,193,194,214,214,194,215,194,195,215,215,195,216,195,196,216,216,196,217,196,197,217,217,197,218,197,198,218,218,198,219,198,199,219,219,199,220,199,200,220,220,200,221,200,201,221,221,201,222,201,202,222,222,202,223,202,203,223,223,203,224,203,204,224,224,204,225,204,205,225,225,205,226,205,206,226,226,206,227,206,207,227,227,207,228,207,208,228,228,208,229,208,209,229,229,209,230,210,211,231,231,211,232,211,212,232,232,212,233,212,213,233,233,213,234,213,214,234,234,214,235,214,215,235,235,215,236,215,216,236,236,216,237,216,217,237,237,217,238,217,218,238,238,218,239,218,219,239,239,219,240,219,220,240,240,220,241,220,221,241,241,221,242,221,222,242,242,222,243,222,223,243,243,223,244,223,224,244,244,224,245,224,225,245,245,225,246,225,226,246,246,226,247,226,227,247,247,227,248,227,228,248,248,228,249,228,229,249,249,229,250,229,230,250,250,230,251,231,232,252,252,232,253,232,233,253,253,233,254,233,234,254,254,234,255,234,235,255,255,235,256,235,236,256,256,236,257,236,237,257,257,237,258,237,238,258,258,238,259,238,239,259,259,239,260,239,240,260,260,240,261,240,241,261,261,241,262,241,242,262,262,242,263,242,243,263,263,243,264,243,244,264,264,244,265,244,245,265,265,245,266,245,246,266,266,246,267,246,247,267,267,247,268,247,248,268,268,248,269,248,249,269,269,249,270,249,250,270,270,250,271,250,251,271,271,251,272,252,253,273,273,253,274,253,254,274,274,254,275,254,255,275,275,255,276,255,256,276,276,256,277,256,257,277,277,257,278,257,258,278,278,258,279,258,259,279,279,259,280,259,260,280,280,260,281,260,261,281,281,261,282,261,262,282,282,262,283,262,263,283,283,263,284,263,264,284,284,264,285,264,265,285,285,265,286,265,266,286,286,266,287,266,267,287,287,267,288,267,268,288,288,268,289,268,269,289,289,269,290,269,270,290,290,270,291,270,271,291,291,271,292,271,272,292,292,272,293,273,274,294,294,274,295,274,275,295,295,275,296,275,276,296,296,276,297,276,277,297,297,277,298,277,278,298,298,278,299,278,279,299,299,279,300,279,280,300,300,280,301,280,281,301,301,281,302,281,282,302,302,282,303,282,283,303,303,283,304,283,284,304,304,284,305,284,285,305,305,285,306,285,286,306,306,286,307,286,287,307,307,287,308,287,288,308,308,288,309,288,289,309,309,289,310,289,290,310,310,290,311,290,291,311,311,291,312,291,292,312,312,292,313,292,293,313,313,293,314,294,295,315,315,295,316,295,296,316,316,296,317,296,297,317,317,297,318,297,298,318,318,298,319,298,299,319,319,299,320,299,300,320,320,300,321,300,301,321,321,301,322,301,302,322,322,302,323,302,303,323,323,303,324,303,304,324,324,304,325,304,305,325,325,305,326,305,306,326,326,306,327,306,307,327,327,307,328,307,308,328,328,308,329,308,309,329,329,309,330,309,310,330,330,310,331,310,311,331,331,311,332,311,312,332,332,312,333,312,313,333,333,313,334,313,314,334,334,314,335,315,316,336,336,316,337,316,317,337,337,317,338,317,318,338,338,318,339,318,319,339,339,319,340,319,320,340,340,320,341,320,321,341,341,321,342,321,322,342,342,322,343,322,323,343,343,323,344,323,324,344,344,324,345,324,325,345,345,325,346,325,326,346,346,326,347,326,327,347,347,327,348,327,328,348,348,328,349,328,329,349,349,329,350,329,330,350,350,330,351,330,331,351,351,331,352,331,332,352,352,332,353,332,333,353,353,333,354,333,334,354,354,334,355,334,335,355,355,335,356,336,337,357,357,337,358,337,338,358,358,338,359,338,339,359,359,339,360,339,340,360,360,340,361,340,341,361,361,341,362,341,342,362,362,342,363,342,343,363,363,343,364,343,344,364,364,344,365,344,345,365,365,345,366,345,346,366,366,346,367,346,347,367,367,347,368,347,348,368,368,348,369,348,349,369,369,349,370,349,350,370,370,350,371,350,351,371,371,351,372,351,352,372,372,352,373,352,353,373,373,353,374,353,354,374,374,354,375,354,355,375,375,355,376,355,356,376,376,356,377,357,358,378,378,358,379,358,359,379,379,359,380,359,360,380,380,360,381,360,361,381,381,361,382,361,362,382,382,362,383,362,363,383,383,363,384,363,364,384,384,364,385,364,365,385,385,365,386,365,366,386,386,366,387,366,367,387,387,367,388,367,368,388,388,368,389,368,369,389,389,369,390,369,370,390,390,370,391,370,371,391,391,371,392,371,372,392,392,372,393,372,373,393,393,373,394,373,374,394,394,374,395,374,375,395,395,375,396,375,376,396,396,376,397,376,377,397,397,377,398,1,0,399,4,1,400,6,4,401,8,6,402,10,8,403,12,10,404,14,12,405,16,14,406,18,16,407,20,18,408,22,20,409,24,22,410,26,24,411,28,26,412,30,28,413,32,30,414,34,32,415,36,34,416,38,36,417,40,38,418,378,379,419,379,380,420,380,381,421,381,382,422,382,383,423,383,384,424,384,385,425,385,386,426,386,387,427,387,388,428,388,389,429,389,390,430,390,391,431,391,392,432,392,393,433,393,394,434,394,395,435,395,396,436,396,397,437,397,398,438],"receiveShadows":false,"infiniteDistance":false,"billboardMode":0,"visibility":1.0,"subMeshes":[{"materialIndex":0,"verticesStart":0,"verticesCount":439,"indexStart":0,"indexCount":2280}],"instances":null,"skeletonId":-1,"numBoneInfluencers":4,"applyFog":false,"lodMeshIds":null,"lodDistances":null,"lodCoverages":null,"rotation":null,"scaling":[1.0,1.0,1.0],"rotationQuaternion":[0.0,0.0,0.0,1.0],"actions":null,"checkCollisions":false,"pickable":true,"showBoundingBox":false,"showSubMeshesBoundingBox":false,"alphaIndex":0,"physicsImpostor":0,"physicsMass":0.0,"physicsFriction":0.0,"physicsRestitution":0.0,"name":"pSphere6","id":"49BFB75F-4E5C-1233-ECCB-D18729E79868","parentId":null,"position":[6.0,0.0,5.0],"animations":[],"autoAnimate":true,"autoAnimateFrom":1,"autoAnimateTo":200,"autoAnimateLoop":true,"metadata":{}},{"materialId":"9B8FFE2E-45F3-A6A5-6DFB-0389B398548B","isEnabled":true,"isVisible":true,"positions":[0.1488,-0.9877,0.0483,0.1266,-0.9877,0.0919,0.2939,-0.9511,0.0955,0.25,-0.9511,0.1816,0.0919,-0.9877,0.1266,0.1816,-0.9511,0.25,0.0483,-0.9877,0.1488,0.0955,-0.9511,0.2939,0.0,-0.9877,0.1564,0.0,-0.9511,0.309,-0.0483,-0.9877,0.1488,-0.0955,-0.9511,0.2939,-0.0919,-0.9877,0.1266,-0.1816,-0.9511,0.25,-0.1266,-0.9877,0.0919,-0.25,-0.9511,0.1816,-0.1488,-0.9877,0.0483,-0.2939,-0.9511,0.0955,-0.1564,-0.9877,0.0,-0.309,-0.9511,0.0,-0.1488,-0.9877,-0.0483,-0.2939,-0.9511,-0.0955,-0.1266,-0.9877,-0.0919,-0.25,-0.9511,-0.1816,-0.0919,-0.9877,-0.1266,-0.1816,-0.9511,-0.25,-0.0483,-0.9877,-0.1488,-0.0955,-0.9511,-0.2939,0.0,-0.9877,-0.1564,0.0,-0.9511,-0.309,0.0483,-0.9877,-0.1488,0.0955,-0.9511,-0.2939,0.0919,-0.9877,-0.1266,0.1816,-0.9511,-0.25,0.1266,-0.9877,-0.0919,0.25,-0.9511,-0.1816,0.1488,-0.9877,-0.0483,0.2939,-0.9511,-0.0955,0.1564,-0.9877,0.0,0.309,-0.9511,0.0,0.1488,-0.9877,0.0483,0.2939,-0.9511,0.0955,0.4318,-0.891,0.1403,0.3673,-0.891,0.2668,0.2668,-0.891,0.3673,0.1403,-0.891,0.4318,0.0,-0.891,0.454,-0.1403,-0.891,0.4318,-0.2668,-0.891,0.3673,-0.3673,-0.891,0.2668,-0.4318,-0.891,0.1403,-0.454,-0.891,0.0,-0.4318,-0.891,-0.1403,-0.3673,-0.891,-0.2668,-0.2668,-0.891,-0.3673,-0.1403,-0.891,-0.4318,0.0,-0.891,-0.454,0.1403,-0.891,-0.4318,0.2668,-0.891,-0.3673,0.3673,-0.891,-0.2668,0.4318,-0.891,-0.1403,0.454,-0.891,0.0,0.4318,-0.891,0.1403,0.559,-0.809,0.1816,0.4755,-0.809,0.3455,0.3455,-0.809,0.4755,0.1816,-0.809,0.559,0.0,-0.809,0.5878,-0.1816,-0.809,0.559,-0.3455,-0.809,0.4755,-0.4755,-0.809,0.3455,-0.559,-0.809,0.1816,-0.5878,-0.809,0.0,-0.559,-0.809,-0.1816,-0.4755,-0.809,-0.3455,-0.3455,-0.809,-0.4755,-0.1816,-0.809,-0.559,0.0,-0.809,-0.5878,0.1816,-0.809,-0.559,0.3455,-0.809,-0.4755,0.4755,-0.809,-0.3455,0.559,-0.809,-0.1816,0.5878,-0.809,0.0,0.559,-0.809,0.1816,0.6725,-0.7071,0.2185,0.5721,-0.7071,0.4156,0.4156,-0.7071,0.5721,0.2185,-0.7071,0.6725,0.0,-0.7071,0.7071,-0.2185,-0.7071,0.6725,-0.4156,-0.7071,0.5721,-0.5721,-0.7071,0.4156,-0.6725,-0.7071,0.2185,-0.7071,-0.7071,0.0,-0.6725,-0.7071,-0.2185,-0.5721,-0.7071,-0.4156,-0.4156,-0.7071,-0.5721,-0.2185,-0.7071,-0.6725,0.0,-0.7071,-0.7071,0.2185,-0.7071,-0.6725,0.4156,-0.7071,-0.5721,0.5721,-0.7071,-0.4156,0.6725,-0.7071,-0.2185,0.7071,-0.7071,0.0,0.6725,-0.7071,0.2185,0.7694,-0.5878,0.25,0.6545,-0.5878,0.4755,0.4755,-0.5878,0.6545,0.25,-0.5878,0.7694,0.0,-0.5878,0.809,-0.25,-0.5878,0.7694,-0.4755,-0.5878,0.6545,-0.6545,-0.5878,0.4755,-0.7694,-0.5878,0.25,-0.809,-0.5878,0.0,-0.7694,-0.5878,-0.25,-0.6545,-0.5878,-0.4755,-0.4755,-0.5878,-0.6545,-0.25,-0.5878,-0.7694,0.0,-0.5878,-0.809,0.25,-0.5878,-0.7694,0.4755,-0.5878,-0.6545,0.6545,-0.5878,-0.4755,0.7694,-0.5878,-0.25,0.809,-0.5878,0.0,0.7694,-0.5878,0.25,0.8474,-0.454,0.2753,0.7208,-0.454,0.5237,0.5237,-0.454,0.7208,0.2753,-0.454,0.8474,0.0,-0.454,0.891,-0.2753,-0.454,0.8474,-0.5237,-0.454,0.7208,-0.7208,-0.454,0.5237,-0.8474,-0.454,0.2753,-0.891,-0.454,0.0,-0.8474,-0.454,-0.2753,-0.7208,-0.454,-0.5237,-0.5237,-0.454,-0.7208,-0.2753,-0.454,-0.8474,0.0,-0.454,-0.891,0.2753,-0.454,-0.8474,0.5237,-0.454,-0.7208,0.7208,-0.454,-0.5237,0.8474,-0.454,-0.2753,0.891,-0.454,0.0,0.8474,-0.454,0.2753,0.9045,-0.309,0.2939,0.7694,-0.309,0.559,0.559,-0.309,0.7694,0.2939,-0.309,0.9045,0.0,-0.309,0.9511,-0.2939,-0.309,0.9045,-0.559,-0.309,0.7694,-0.7694,-0.309,0.559,-0.9045,-0.309,0.2939,-0.9511,-0.309,0.0,-0.9045,-0.309,-0.2939,-0.7694,-0.309,-0.559,-0.559,-0.309,-0.7694,-0.2939,-0.309,-0.9045,0.0,-0.309,-0.9511,0.2939,-0.309,-0.9045,0.559,-0.309,-0.7694,0.7694,-0.309,-0.559,0.9045,-0.309,-0.2939,0.9511,-0.309,0.0,0.9045,-0.309,0.2939,0.9393,-0.1564,0.3052,0.7991,-0.1564,0.5805,0.5805,-0.1564,0.7991,0.3052,-0.1564,0.9393,0.0,-0.1564,0.9877,-0.3052,-0.1564,0.9393,-0.5805,-0.1564,0.7991,-0.7991,-0.1564,0.5805,-0.9393,-0.1564,0.3052,-0.9877,-0.1564,0.0,-0.9393,-0.1564,-0.3052,-0.7991,-0.1564,-0.5805,-0.5805,-0.1564,-0.7991,-0.3052,-0.1564,-0.9393,0.0,-0.1564,-0.9877,0.3052,-0.1564,-0.9393,0.5805,-0.1564,-0.7991,0.7991,-0.1564,-0.5805,0.9393,-0.1564,-0.3052,0.9877,-0.1564,0.0,0.9393,-0.1564,0.3052,0.9511,0.0,0.309,0.809,0.0,0.5878,0.5878,0.0,0.809,0.309,0.0,0.9511,0.0,0.0,1.0,-0.309,0.0,0.9511,-0.5878,0.0,0.809,-0.809,0.0,0.5878,-0.9511,0.0,0.309,-1.0,0.0,0.0,-0.9511,0.0,-0.309,-0.809,0.0,-0.5878,-0.5878,0.0,-0.809,-0.309,0.0,-0.9511,0.0,0.0,-1.0,0.309,0.0,-0.9511,0.5878,0.0,-0.809,0.809,0.0,-0.5878,0.9511,0.0,-0.309,1.0,0.0,0.0,0.9511,0.0,0.309,0.9393,0.1564,0.3052,0.7991,0.1564,0.5805,0.5805,0.1564,0.7991,0.3052,0.1564,0.9393,0.0,0.1564,0.9877,-0.3052,0.1564,0.9393,-0.5805,0.1564,0.7991,-0.7991,0.1564,0.5805,-0.9393,0.1564,0.3052,-0.9877,0.1564,0.0,-0.9393,0.1564,-0.3052,-0.7991,0.1564,-0.5805,-0.5805,0.1564,-0.7991,-0.3052,0.1564,-0.9393,0.0,0.1564,-0.9877,0.3052,0.1564,-0.9393,0.5805,0.1564,-0.7991,0.7991,0.1564,-0.5805,0.9393,0.1564,-0.3052,0.9877,0.1564,0.0,0.9393,0.1564,0.3052,0.9045,0.309,0.2939,0.7694,0.309,0.559,0.559,0.309,0.7694,0.2939,0.309,0.9045,0.0,0.309,0.9511,-0.2939,0.309,0.9045,-0.559,0.309,0.7694,-0.7694,0.309,0.559,-0.9045,0.309,0.2939,-0.9511,0.309,0.0,-0.9045,0.309,-0.2939,-0.7694,0.309,-0.559,-0.559,0.309,-0.7694,-0.2939,0.309,-0.9045,0.0,0.309,-0.9511,0.2939,0.309,-0.9045,0.559,0.309,-0.7694,0.7694,0.309,-0.559,0.9045,0.309,-0.2939,0.9511,0.309,0.0,0.9045,0.309,0.2939,0.8474,0.454,0.2753,0.7208,0.454,0.5237,0.5237,0.454,0.7208,0.2753,0.454,0.8474,0.0,0.454,0.891,-0.2753,0.454,0.8474,-0.5237,0.454,0.7208,-0.7208,0.454,0.5237,-0.8474,0.454,0.2753,-0.891,0.454,0.0,-0.8474,0.454,-0.2753,-0.7208,0.454,-0.5237,-0.5237,0.454,-0.7208,-0.2753,0.454,-0.8474,0.0,0.454,-0.891,0.2753,0.454,-0.8474,0.5237,0.454,-0.7208,0.7208,0.454,-0.5237,0.8474,0.454,-0.2753,0.891,0.454,0.0,0.8474,0.454,0.2753,0.7694,0.5878,0.25,0.6545,0.5878,0.4755,0.4755,0.5878,0.6545,0.25,0.5878,0.7694,0.0,0.5878,0.809,-0.25,0.5878,0.7694,-0.4755,0.5878,0.6545,-0.6545,0.5878,0.4755,-0.7694,0.5878,0.25,-0.809,0.5878,0.0,-0.7694,0.5878,-0.25,-0.6545,0.5878,-0.4755,-0.4755,0.5878,-0.6545,-0.25,0.5878,-0.7694,0.0,0.5878,-0.809,0.25,0.5878,-0.7694,0.4755,0.5878,-0.6545,0.6545,0.5878,-0.4755,0.7694,0.5878,-0.25,0.809,0.5878,0.0,0.7694,0.5878,0.25,0.6725,0.7071,0.2185,0.5721,0.7071,0.4156,0.4156,0.7071,0.5721,0.2185,0.7071,0.6725,0.0,0.7071,0.7071,-0.2185,0.7071,0.6725,-0.4156,0.7071,0.5721,-0.5721,0.7071,0.4156,-0.6725,0.7071,0.2185,-0.7071,0.7071,0.0,-0.6725,0.7071,-0.2185,-0.5721,0.7071,-0.4156,-0.4156,0.7071,-0.5721,-0.2185,0.7071,-0.6725,0.0,0.7071,-0.7071,0.2185,0.7071,-0.6725,0.4156,0.7071,-0.5721,0.5721,0.7071,-0.4156,0.6725,0.7071,-0.2185,0.7071,0.7071,0.0,0.6725,0.7071,0.2185,0.559,0.809,0.1816,0.4755,0.809,0.3455,0.3455,0.809,0.4755,0.1816,0.809,0.559,0.0,0.809,0.5878,-0.1816,0.809,0.559,-0.3455,0.809,0.4755,-0.4755,0.809,0.3455,-0.559,0.809,0.1816,-0.5878,0.809,0.0,-0.559,0.809,-0.1816,-0.4755,0.809,-0.3455,-0.3455,0.809,-0.4755,-0.1816,0.809,-0.559,0.0,0.809,-0.5878,0.1816,0.809,-0.559,0.3455,0.809,-0.4755,0.4755,0.809,-0.3455,0.559,0.809,-0.1816,0.5878,0.809,0.0,0.559,0.809,0.1816,0.4318,0.891,0.1403,0.3673,0.891,0.2668,0.2668,0.891,0.3673,0.1403,0.891,0.4318,0.0,0.891,0.454,-0.1403,0.891,0.4318,-0.2668,0.891,0.3673,-0.3673,0.891,0.2668,-0.4318,0.891,0.1403,-0.454,0.891,0.0,-0.4318,0.891,-0.1403,-0.3673,0.891,-0.2668,-0.2668,0.891,-0.3673,-0.1403,0.891,-0.4318,0.0,0.891,-0.454,0.1403,0.891,-0.4318,0.2668,0.891,-0.3673,0.3673,0.891,-0.2668,0.4318,0.891,-0.1403,0.454,0.891,0.0,0.4318,0.891,0.1403,0.2939,0.9511,0.0955,0.25,0.9511,0.1816,0.1816,0.9511,0.25,0.0955,0.9511,0.2939,0.0,0.9511,0.309,-0.0955,0.9511,0.2939,-0.1816,0.9511,0.25,-0.25,0.9511,0.1816,-0.2939,0.9511,0.0955,-0.309,0.9511,0.0,-0.2939,0.9511,-0.0955,-0.25,0.9511,-0.1816,-0.1816,0.9511,-0.25,-0.0955,0.9511,-0.2939,0.0,0.9511,-0.309,0.0955,0.9511,-0.2939,0.1816,0.9511,-0.25,0.25,0.9511,-0.1816,0.2939,0.9511,-0.0955,0.309,0.9511,0.0,0.2939,0.9511,0.0955,0.1488,0.9877,0.0483,0.1266,0.9877,0.0919,0.0919,0.9877,0.1266,0.0483,0.9877,0.1488,0.0,0.9877,0.1564,-0.0483,0.9877,0.1488,-0.0919,0.9877,0.1266,-0.1266,0.9877,0.0919,-0.1488,0.9877,0.0483,-0.1564,0.9877,0.0,-0.1488,0.9877,-0.0483,-0.1266,0.9877,-0.0919,-0.0919,0.9877,-0.1266,-0.0483,0.9877,-0.1488,0.0,0.9877,-0.1564,0.0483,0.9877,-0.1488,0.0919,0.9877,-0.1266,0.1266,0.9877,-0.0919,0.1488,0.9877,-0.0483,0.1564,0.9877,0.0,0.1488,0.9877,0.0483,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0],"normals":[0.1906,-0.9797,0.0619,0.1621,-0.9797,0.1178,0.3173,-0.9427,0.1031,0.2699,-0.9427,0.1961,0.1178,-0.9797,0.1621,0.1961,-0.9427,0.2699,0.0619,-0.9797,0.1906,0.1031,-0.9427,0.3173,0.0,-0.9797,0.2004,0.0,-0.9427,0.3336,-0.0619,-0.9797,0.1906,-0.1031,-0.9427,0.3173,-0.1178,-0.9797,0.1621,-0.1961,-0.9427,0.2699,-0.1621,-0.9797,0.1178,-0.2699,-0.9427,0.1961,-0.1906,-0.9797,0.0619,-0.3173,-0.9427,0.1031,-0.2004,-0.9797,0.0,-0.3336,-0.9427,0.0,-0.1906,-0.9797,-0.0619,-0.3173,-0.9427,-0.1031,-0.1621,-0.9797,-0.1178,-0.2699,-0.9427,-0.1961,-0.1178,-0.9797,-0.1621,-0.1961,-0.9427,-0.2699,-0.0619,-0.9797,-0.1906,-0.1031,-0.9427,-0.3173,0.0,-0.9797,-0.2004,0.0,-0.9427,-0.3336,0.0619,-0.9797,-0.1906,0.1031,-0.9427,-0.3173,0.1178,-0.9797,-0.1621,0.1961,-0.9427,-0.2699,0.1621,-0.9797,-0.1178,0.2699,-0.9427,-0.1961,0.1906,-0.9797,-0.0619,0.3173,-0.9427,-0.1031,0.2004,-0.9797,0.0,0.3336,-0.9427,0.0,0.1906,-0.9797,0.0619,0.3173,-0.9427,0.1031,0.4477,-0.8823,0.1455,0.3808,-0.8823,0.2767,0.2767,-0.8823,0.3808,0.1455,-0.8823,0.4477,0.0,-0.8823,0.4708,-0.1455,-0.8823,0.4477,-0.2767,-0.8823,0.3808,-0.3808,-0.8823,0.2767,-0.4477,-0.8823,0.1455,-0.4708,-0.8823,0.0,-0.4477,-0.8823,-0.1455,-0.3808,-0.8823,-0.2767,-0.2767,-0.8823,-0.3808,-0.1455,-0.8823,-0.4477,0.0,-0.8823,-0.4708,0.1455,-0.8823,-0.4477,0.2767,-0.8823,-0.3808,0.3808,-0.8823,-0.2767,0.4477,-0.8823,-0.1455,0.4708,-0.8823,0.0,0.4477,-0.8823,0.1455,0.5703,-0.8003,0.1853,0.4851,-0.8003,0.3525,0.3525,-0.8003,0.4851,0.1853,-0.8003,0.5703,0.0,-0.8003,0.5997,-0.1853,-0.8003,0.5703,-0.3525,-0.8003,0.4851,-0.4851,-0.8003,0.3525,-0.5703,-0.8003,0.1853,-0.5997,-0.8003,0.0,-0.5703,-0.8003,-0.1853,-0.4851,-0.8003,-0.3525,-0.3525,-0.8003,-0.4851,-0.1853,-0.8003,-0.5703,0.0,-0.8003,-0.5997,0.1853,-0.8003,-0.5703,0.3525,-0.8003,-0.4851,0.4851,-0.8003,-0.3525,0.5703,-0.8003,-0.1853,0.5997,-0.8003,0.0,0.5703,-0.8003,0.1853,0.6803,-0.6988,0.221,0.5787,-0.6988,0.4205,0.4205,-0.6988,0.5787,0.221,-0.6988,0.6803,0.0,-0.6988,0.7153,-0.221,-0.6988,0.6803,-0.4205,-0.6988,0.5787,-0.5787,-0.6988,0.4205,-0.6803,-0.6988,0.221,-0.7153,-0.6988,0.0,-0.6803,-0.6988,-0.221,-0.5787,-0.6988,-0.4205,-0.4205,-0.6988,-0.5787,-0.221,-0.6988,-0.6803,0.0,-0.6988,-0.7153,0.221,-0.6988,-0.6803,0.4205,-0.6988,-0.5787,0.5787,-0.6988,-0.4205,0.6803,-0.6988,-0.221,0.7153,-0.6988,0.0,0.6803,-0.6988,0.221,0.7745,-0.5804,0.2516,0.6588,-0.5804,0.4787,0.4787,-0.5804,0.6588,0.2516,-0.5804,0.7745,0.0,-0.5804,0.8143,-0.2516,-0.5804,0.7745,-0.4787,-0.5804,0.6588,-0.6588,-0.5804,0.4787,-0.7745,-0.5804,0.2516,-0.8143,-0.5804,0.0,-0.7745,-0.5804,-0.2516,-0.6588,-0.5804,-0.4787,-0.4787,-0.5804,-0.6588,-0.2516,-0.5804,-0.7745,0.0,-0.5804,-0.8143,0.2516,-0.5804,-0.7745,0.4787,-0.5804,-0.6588,0.6588,-0.5804,-0.4787,0.7745,-0.5804,-0.2516,0.8143,-0.5804,0.0,0.7745,-0.5804,0.2516,0.8503,-0.448,0.2763,0.7233,-0.448,0.5255,0.5255,-0.448,0.7233,0.2763,-0.448,0.8503,0.0,-0.448,0.894,-0.2763,-0.448,0.8503,-0.5255,-0.448,0.7233,-0.7233,-0.448,0.5255,-0.8503,-0.448,0.2763,-0.894,-0.448,0.0,-0.8503,-0.448,-0.2763,-0.7233,-0.448,-0.5255,-0.5255,-0.448,-0.7233,-0.2763,-0.448,-0.8503,0.0,-0.448,-0.894,0.2763,-0.448,-0.8503,0.5255,-0.448,-0.7233,0.7233,-0.448,-0.5255,0.8503,-0.448,-0.2763,0.894,-0.448,0.0,0.8503,-0.448,0.2763,0.9058,-0.3048,0.2943,0.7705,-0.3048,0.5598,0.5598,-0.3048,0.7705,0.2943,-0.3048,0.9058,0.0,-0.3048,0.9524,-0.2943,-0.3048,0.9058,-0.5598,-0.3048,0.7705,-0.7705,-0.3048,0.5598,-0.9058,-0.3048,0.2943,-0.9524,-0.3048,0.0,-0.9058,-0.3048,-0.2943,-0.7705,-0.3048,-0.5598,-0.5598,-0.3048,-0.7705,-0.2943,-0.3048,-0.9058,0.0,-0.3048,-0.9524,0.2943,-0.3048,-0.9058,0.5598,-0.3048,-0.7705,0.7705,-0.3048,-0.5598,0.9058,-0.3048,-0.2943,0.9524,-0.3048,0.0,0.9058,-0.3048,0.2943,0.9397,-0.1542,0.3053,0.7993,-0.1542,0.5808,0.5808,-0.1542,0.7993,0.3053,-0.1542,0.9397,0.0,-0.1542,0.988,-0.3053,-0.1542,0.9397,-0.5808,-0.1542,0.7993,-0.7993,-0.1542,0.5808,-0.9397,-0.1542,0.3053,-0.988,-0.1542,0.0,-0.9397,-0.1542,-0.3053,-0.7993,-0.1542,-0.5808,-0.5808,-0.1542,-0.7993,-0.3053,-0.1542,-0.9397,0.0,-0.1542,-0.988,0.3053,-0.1542,-0.9397,0.5808,-0.1542,-0.7993,0.7993,-0.1542,-0.5808,0.9397,-0.1542,-0.3053,0.988,-0.1542,0.0,0.9397,-0.1542,0.3053,0.9511,0.0,0.309,0.809,0.0,0.5878,0.5878,0.0,0.809,0.309,0.0,0.9511,0.0,0.0,1.0,-0.309,0.0,0.9511,-0.5878,0.0,0.809,-0.809,0.0,0.5878,-0.9511,0.0,0.309,-1.0,0.0,0.0,-0.9511,0.0,-0.309,-0.809,0.0,-0.5878,-0.5878,0.0,-0.809,-0.309,0.0,-0.9511,0.0,0.0,-1.0,0.309,0.0,-0.9511,0.5878,0.0,-0.809,0.809,0.0,-0.5878,0.9511,0.0,-0.309,1.0,0.0,0.0,0.9511,0.0,0.309,0.9397,0.1542,0.3053,0.7993,0.1542,0.5808,0.5808,0.1542,0.7993,0.3053,0.1542,0.9397,0.0,0.1542,0.988,-0.3053,0.1542,0.9397,-0.5808,0.1542,0.7993,-0.7993,0.1542,0.5808,-0.9397,0.1542,0.3053,-0.988,0.1542,0.0,-0.9397,0.1542,-0.3053,-0.7993,0.1542,-0.5808,-0.5808,0.1542,-0.7993,-0.3053,0.1542,-0.9397,0.0,0.1542,-0.988,0.3053,0.1542,-0.9397,0.5808,0.1542,-0.7993,0.7993,0.1542,-0.5808,0.9397,0.1542,-0.3053,0.988,0.1542,0.0,0.9397,0.1542,0.3053,0.9058,0.3048,0.2943,0.7705,0.3048,0.5598,0.5598,0.3048,0.7705,0.2943,0.3048,0.9058,0.0,0.3048,0.9524,-0.2943,0.3048,0.9058,-0.5598,0.3048,0.7705,-0.7705,0.3048,0.5598,-0.9058,0.3048,0.2943,-0.9524,0.3048,0.0,-0.9058,0.3048,-0.2943,-0.7705,0.3048,-0.5598,-0.5598,0.3048,-0.7705,-0.2943,0.3048,-0.9058,0.0,0.3048,-0.9524,0.2943,0.3048,-0.9058,0.5598,0.3048,-0.7705,0.7705,0.3048,-0.5598,0.9058,0.3048,-0.2943,0.9524,0.3048,0.0,0.9058,0.3048,0.2943,0.8503,0.448,0.2763,0.7233,0.448,0.5255,0.5255,0.448,0.7233,0.2763,0.448,0.8503,0.0,0.448,0.894,-0.2763,0.448,0.8503,-0.5255,0.448,0.7233,-0.7233,0.448,0.5255,-0.8503,0.448,0.2763,-0.894,0.448,0.0,-0.8503,0.448,-0.2763,-0.7233,0.448,-0.5255,-0.5255,0.448,-0.7233,-0.2763,0.448,-0.8503,0.0,0.448,-0.894,0.2763,0.448,-0.8503,0.5255,0.448,-0.7233,0.7233,0.448,-0.5255,0.8503,0.448,-0.2763,0.894,0.448,0.0,0.8503,0.448,0.2763,0.7745,0.5804,0.2516,0.6588,0.5804,0.4787,0.4787,0.5804,0.6588,0.2516,0.5804,0.7745,0.0,0.5804,0.8143,-0.2516,0.5804,0.7745,-0.4787,0.5804,0.6588,-0.6588,0.5804,0.4787,-0.7745,0.5804,0.2516,-0.8143,0.5804,0.0,-0.7745,0.5804,-0.2516,-0.6588,0.5804,-0.4787,-0.4787,0.5804,-0.6588,-0.2516,0.5804,-0.7745,0.0,0.5804,-0.8143,0.2516,0.5804,-0.7745,0.4787,0.5804,-0.6588,0.6588,0.5804,-0.4787,0.7745,0.5804,-0.2516,0.8143,0.5804,0.0,0.7745,0.5804,0.2516,0.6803,0.6988,0.221,0.5787,0.6988,0.4205,0.4205,0.6988,0.5787,0.221,0.6988,0.6803,0.0,0.6988,0.7153,-0.221,0.6988,0.6803,-0.4205,0.6988,0.5787,-0.5787,0.6988,0.4205,-0.6803,0.6988,0.221,-0.7153,0.6988,0.0,-0.6803,0.6988,-0.221,-0.5787,0.6988,-0.4205,-0.4205,0.6988,-0.5787,-0.221,0.6988,-0.6803,0.0,0.6988,-0.7153,0.221,0.6988,-0.6803,0.4205,0.6988,-0.5787,0.5787,0.6988,-0.4205,0.6803,0.6988,-0.221,0.7153,0.6988,0.0,0.6803,0.6988,0.221,0.5703,0.8003,0.1853,0.4851,0.8003,0.3525,0.3525,0.8003,0.4851,0.1853,0.8003,0.5703,0.0,0.8003,0.5997,-0.1853,0.8003,0.5703,-0.3525,0.8003,0.4851,-0.4851,0.8003,0.3525,-0.5703,0.8003,0.1853,-0.5997,0.8003,0.0,-0.5703,0.8003,-0.1853,-0.4851,0.8003,-0.3525,-0.3525,0.8003,-0.4851,-0.1853,0.8003,-0.5703,0.0,0.8003,-0.5997,0.1853,0.8003,-0.5703,0.3525,0.8003,-0.4851,0.4851,0.8003,-0.3525,0.5703,0.8003,-0.1853,0.5997,0.8003,0.0,0.5703,0.8003,0.1853,0.4477,0.8823,0.1455,0.3808,0.8823,0.2767,0.2767,0.8823,0.3808,0.1455,0.8823,0.4477,0.0,0.8823,0.4708,-0.1455,0.8823,0.4477,-0.2767,0.8823,0.3808,-0.3808,0.8823,0.2767,-0.4477,0.8823,0.1455,-0.4708,0.8823,0.0,-0.4477,0.8823,-0.1455,-0.3808,0.8823,-0.2767,-0.2767,0.8823,-0.3808,-0.1455,0.8823,-0.4477,0.0,0.8823,-0.4708,0.1455,0.8823,-0.4477,0.2767,0.8823,-0.3808,0.3808,0.8823,-0.2767,0.4477,0.8823,-0.1455,0.4708,0.8823,0.0,0.4477,0.8823,0.1455,0.3173,0.9427,0.1031,0.2699,0.9427,0.1961,0.1961,0.9427,0.2699,0.1031,0.9427,0.3173,0.0,0.9427,0.3336,-0.1031,0.9427,0.3173,-0.1961,0.9427,0.2699,-0.2699,0.9427,0.1961,-0.3173,0.9427,0.1031,-0.3336,0.9427,0.0,-0.3173,0.9427,-0.1031,-0.2699,0.9427,-0.1961,-0.1961,0.9427,-0.2699,-0.1031,0.9427,-0.3173,0.0,0.9427,-0.3336,0.1031,0.9427,-0.3173,0.1961,0.9427,-0.2699,0.2699,0.9427,-0.1961,0.3173,0.9427,-0.1031,0.3336,0.9427,0.0,0.3173,0.9427,0.1031,0.1906,0.9797,0.0619,0.1621,0.9797,0.1178,0.1178,0.9797,0.1621,0.0619,0.9797,0.1906,0.0,0.9797,0.2004,-0.0619,0.9797,0.1906,-0.1178,0.9797,0.1621,-0.1621,0.9797,0.1178,-0.1906,0.9797,0.0619,-0.2004,0.9797,0.0,-0.1906,0.9797,-0.0619,-0.1621,0.9797,-0.1178,-0.1178,0.9797,-0.1621,-0.0619,0.9797,-0.1906,0.0,0.9797,-0.2004,0.0619,0.9797,-0.1906,0.1178,0.9797,-0.1621,0.1621,0.9797,-0.1178,0.1906,0.9797,-0.0619,0.2004,0.9797,0.0,0.1906,0.9797,0.0619,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0],"tangents":[-0.4482,-0.0307,0.8934,-1.0,-0.5629,0.0062,0.8265,-1.0,-0.438,-0.0493,0.8976,-1.0,-0.5878,0.0,0.809,-1.0,-0.7908,0.0062,0.6121,-1.0,-0.809,0.0,0.5878,-1.0,-0.9412,0.0062,0.3378,-1.0,-0.9511,0.0,0.309,-1.0,-0.9995,0.0062,0.0304,-1.0,-1.0,0.0,0.0,-1.0,-0.96,0.0062,-0.28,-1.0,-0.9511,0.0,-0.309,-1.0,-0.8265,0.0062,-0.5629,-1.0,-0.809,0.0,-0.5878,-1.0,-0.6121,0.0062,-0.7908,-1.0,-0.5878,0.0,-0.809,-1.0,-0.3378,0.0062,-0.9412,-1.0,-0.309,0.0,-0.9511,-1.0,-0.0304,0.0062,-0.9995,-1.0,0.0,0.0,-1.0,-1.0,0.28,0.0062,-0.96,-1.0,0.309,0.0,-0.9511,-1.0,0.5629,0.0062,-0.8265,-1.0,0.5878,0.0,-0.809,-1.0,0.7908,0.0062,-0.6121,-1.0,0.809,0.0,-0.5878,-1.0,0.9412,0.0062,-0.3378,-1.0,0.9511,0.0,-0.309,-1.0,0.9995,0.0062,-0.0304,-1.0,1.0,0.0,0.0,-1.0,0.96,0.0062,0.28,-1.0,0.9511,0.0,0.309,-1.0,0.8265,0.0062,0.5629,-1.0,0.809,0.0,0.5878,-1.0,0.6121,0.0062,0.7908,-1.0,0.5878,0.0,0.809,-1.0,0.3378,0.0062,0.9412,-1.0,0.309,0.0,0.9511,-1.0,0.0304,0.0062,0.9995,-1.0,0.0,0.0,1.0,-1.0,-0.1625,0.0307,0.9862,-1.0,-0.1732,0.0493,0.9836,-1.0,-0.4222,-0.0651,0.9042,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.1899,0.0651,0.9796,-1.0,-0.4023,-0.0754,0.9124,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.2109,0.0754,0.9746,-1.0,-0.3802,-0.0787,0.9215,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.234,0.0787,0.969,-1.0,-0.3582,-0.0745,0.9306,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.2572,0.0745,0.9635,-1.0,-0.3384,-0.0633,0.9389,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.2781,0.0633,0.9585,-1.0,-0.3226,-0.0459,0.9454,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.2947,0.0459,0.9545,-1.0,-0.3125,-0.0241,0.9496,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.3053,0.0241,0.9519,-1.0,-0.309,0.0,0.9511,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.309,0.0,0.9511,-1.0,-0.3125,0.0241,0.9496,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.3053,-0.0241,0.9519,-1.0,-0.3226,0.0459,0.9454,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.2947,-0.0459,0.9545,-1.0,-0.3384,0.0633,0.9389,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.2781,-0.0633,0.9585,-1.0,-0.3582,0.0745,0.9306,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.2572,-0.0745,0.9635,-1.0,-0.3802,0.0787,0.9215,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.234,-0.0787,0.969,-1.0,-0.4023,0.0754,0.9124,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.2109,-0.0754,0.9746,-1.0,-0.4222,0.0651,0.9042,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.1899,-0.0651,0.9796,-1.0,-0.438,0.0493,0.8976,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.1732,-0.0493,0.9836,-1.0,-0.4482,0.0307,0.8934,-1.0,-0.6121,0.0062,0.7908,-1.0,-0.8265,0.0062,0.5629,-1.0,-0.96,0.0062,0.28,-1.0,-0.9995,0.0062,-0.0304,-1.0,-0.9412,0.0062,-0.3378,-1.0,-0.7908,0.0062,-0.6121,-1.0,-0.5629,0.0062,-0.8265,-1.0,-0.28,0.0062,-0.96,-1.0,0.0304,0.0062,-0.9995,-1.0,0.3378,0.0062,-0.9412,-1.0,0.6121,0.0062,-0.7908,-1.0,0.8265,0.0062,-0.5629,-1.0,0.96,0.0062,-0.28,-1.0,0.9995,0.0062,0.0304,-1.0,0.9412,0.0062,0.3378,-1.0,0.7908,0.0062,0.6121,-1.0,0.5629,0.0062,0.8265,-1.0,0.28,0.0062,0.96,-1.0,-0.0304,0.0062,0.9995,-1.0,-0.1625,-0.0307,0.9862,-1.0,-0.454,0.0,0.891,-1.0,-0.7071,0.0,0.7071,-1.0,-0.891,0.0,0.454,-1.0,-0.9877,0.0,0.1564,-1.0,-0.9877,0.0,-0.1564,-1.0,-0.891,0.0,-0.454,-1.0,-0.7071,0.0,-0.7071,-1.0,-0.454,0.0,-0.891,-1.0,-0.1564,0.0,-0.9877,-1.0,0.1564,0.0,-0.9877,-1.0,0.454,0.0,-0.891,-1.0,0.7071,0.0,-0.7071,-1.0,0.891,0.0,-0.454,-1.0,0.9877,0.0,-0.1564,-1.0,0.9877,0.0,0.1564,-1.0,0.891,0.0,0.454,-1.0,0.7071,0.0,0.7071,-1.0,0.454,0.0,0.891,-1.0,0.1564,0.0,0.9877,-1.0,-0.1564,0.0,0.9877,-1.0,-0.454,0.0,0.891,-1.0,-0.7071,0.0,0.7071,-1.0,-0.891,0.0,0.454,-1.0,-0.9877,0.0,0.1564,-1.0,-0.9877,0.0,-0.1564,-1.0,-0.891,0.0,-0.454,-1.0,-0.7071,0.0,-0.7071,-1.0,-0.454,0.0,-0.891,-1.0,-0.1564,0.0,-0.9877,-1.0,0.1564,0.0,-0.9877,-1.0,0.454,0.0,-0.891,-1.0,0.7071,0.0,-0.7071,-1.0,0.891,0.0,-0.454,-1.0,0.9877,0.0,-0.1564,-1.0,0.9877,0.0,0.1564,-1.0,0.891,0.0,0.454,-1.0,0.7071,0.0,0.7071,-1.0,0.454,0.0,0.891,-1.0,0.1564,0.0,0.9877,-1.0,-0.1564,0.0,0.9877,-1.0],"uvs":[0.0,0.05,0.05,0.05,0.0,0.1,0.05,0.1,0.1,0.05,0.1,0.1,0.15,0.05,0.15,0.1,0.2,0.05,0.2,0.1,0.25,0.05,0.25,0.1,0.3,0.05,0.3,0.1,0.35,0.05,0.35,0.1,0.4,0.05,0.4,0.1,0.45,0.05,0.45,0.1,0.5,0.05,0.5,0.1,0.55,0.05,0.55,0.1,0.6,0.05,0.6,0.1,0.65,0.05,0.65,0.1,0.7,0.05,0.7,0.1,0.75,0.05,0.75,0.1,0.8,0.05,0.8,0.1,0.85,0.05,0.85,0.1,0.9,0.05,0.9,0.1,0.95,0.05,0.95,0.1,1.0,0.05,1.0,0.1,0.0,0.15,0.05,0.15,0.1,0.15,0.15,0.15,0.2,0.15,0.25,0.15,0.3,0.15,0.35,0.15,0.4,0.15,0.45,0.15,0.5,0.15,0.55,0.15,0.6,0.15,0.65,0.15,0.7,0.15,0.75,0.15,0.8,0.15,0.85,0.15,0.9,0.15,0.95,0.15,1.0,0.15,0.0,0.2,0.05,0.2,0.1,0.2,0.15,0.2,0.2,0.2,0.25,0.2,0.3,0.2,0.35,0.2,0.4,0.2,0.45,0.2,0.5,0.2,0.55,0.2,0.6,0.2,0.65,0.2,0.7,0.2,0.75,0.2,0.8,0.2,0.85,0.2,0.9,0.2,0.95,0.2,1.0,0.2,0.0,0.25,0.05,0.25,0.1,0.25,0.15,0.25,0.2,0.25,0.25,0.25,0.3,0.25,0.35,0.25,0.4,0.25,0.45,0.25,0.5,0.25,0.55,0.25,0.6,0.25,0.65,0.25,0.7,0.25,0.75,0.25,0.8,0.25,0.85,0.25,0.9,0.25,0.95,0.25,1.0,0.25,0.0,0.3,0.05,0.3,0.1,0.3,0.15,0.3,0.2,0.3,0.25,0.3,0.3,0.3,0.35,0.3,0.4,0.3,0.45,0.3,0.5,0.3,0.55,0.3,0.6,0.3,0.65,0.3,0.7,0.3,0.75,0.3,0.8,0.3,0.85,0.3,0.9,0.3,0.95,0.3,1.0,0.3,0.0,0.35,0.05,0.35,0.1,0.35,0.15,0.35,0.2,0.35,0.25,0.35,0.3,0.35,0.35,0.35,0.4,0.35,0.45,0.35,0.5,0.35,0.55,0.35,0.6,0.35,0.65,0.35,0.7,0.35,0.75,0.35,0.8,0.35,0.85,0.35,0.9,0.35,0.95,0.35,1.0,0.35,0.0,0.4,0.05,0.4,0.1,0.4,0.15,0.4,0.2,0.4,0.25,0.4,0.3,0.4,0.35,0.4,0.4,0.4,0.45,0.4,0.5,0.4,0.55,0.4,0.6,0.4,0.65,0.4,0.7,0.4,0.75,0.4,0.8,0.4,0.85,0.4,0.9,0.4,0.95,0.4,1.0,0.4,0.0,0.45,0.05,0.45,0.1,0.45,0.15,0.45,0.2,0.45,0.25,0.45,0.3,0.45,0.35,0.45,0.4,0.45,0.45,0.45,0.5,0.45,0.55,0.45,0.6,0.45,0.65,0.45,0.7,0.45,0.75,0.45,0.8,0.45,0.85,0.45,0.9,0.45,0.95,0.45,1.0,0.45,0.0,0.5,0.05,0.5,0.1,0.5,0.15,0.5,0.2,0.5,0.25,0.5,0.3,0.5,0.35,0.5,0.4,0.5,0.45,0.5,0.5,0.5,0.55,0.5,0.6,0.5,0.65,0.5,0.7,0.5,0.75,0.5,0.8,0.5,0.85,0.5,0.9,0.5,0.95,0.5,1.0,0.5,0.0,0.55,0.05,0.55,0.1,0.55,0.15,0.55,0.2,0.55,0.25,0.55,0.3,0.55,0.35,0.55,0.4,0.55,0.45,0.55,0.5,0.55,0.55,0.55,0.6,0.55,0.65,0.55,0.7,0.55,0.75,0.55,0.8,0.55,0.85,0.55,0.9,0.55,0.95,0.55,1.0,0.55,0.0,0.6,0.05,0.6,0.1,0.6,0.15,0.6,0.2,0.6,0.25,0.6,0.3,0.6,0.35,0.6,0.4,0.6,0.45,0.6,0.5,0.6,0.55,0.6,0.6,0.6,0.65,0.6,0.7,0.6,0.75,0.6,0.8,0.6,0.85,0.6,0.9,0.6,0.95,0.6,1.0,0.6,0.0,0.65,0.05,0.65,0.1,0.65,0.15,0.65,0.2,0.65,0.25,0.65,0.3,0.65,0.35,0.65,0.4,0.65,0.45,0.65,0.5,0.65,0.55,0.65,0.6,0.65,0.65,0.65,0.7,0.65,0.75,0.65,0.8,0.65,0.85,0.65,0.9,0.65,0.95,0.65,1.0,0.65,0.0,0.7,0.05,0.7,0.1,0.7,0.15,0.7,0.2,0.7,0.25,0.7,0.3,0.7,0.35,0.7,0.4,0.7,0.45,0.7,0.5,0.7,0.55,0.7,0.6,0.7,0.65,0.7,0.7,0.7,0.75,0.7,0.8,0.7,0.85,0.7,0.9,0.7,0.95,0.7,1.0,0.7,0.0,0.75,0.05,0.75,0.1,0.75,0.15,0.75,0.2,0.75,0.25,0.75,0.3,0.75,0.35,0.75,0.4,0.75,0.45,0.75,0.5,0.75,0.55,0.75,0.6,0.75,0.65,0.75,0.7,0.75,0.75,0.75,0.8,0.75,0.85,0.75,0.9,0.75,0.95,0.75,1.0,0.75,0.0,0.8,0.05,0.8,0.1,0.8,0.15,0.8,0.2,0.8,0.25,0.8,0.3,0.8,0.35,0.8,0.4,0.8,0.45,0.8,0.5,0.8,0.55,0.8,0.6,0.8,0.65,0.8,0.7,0.8,0.75,0.8,0.8,0.8,0.85,0.8,0.9,0.8,0.95,0.8,1.0,0.8,0.0,0.85,0.05,0.85,0.1,0.85,0.15,0.85,0.2,0.85,0.25,0.85,0.3,0.85,0.35,0.85,0.4,0.85,0.45,0.85,0.5,0.85,0.55,0.85,0.6,0.85,0.65,0.85,0.7,0.85,0.75,0.85,0.8,0.85,0.85,0.85,0.9,0.85,0.95,0.85,1.0,0.85,0.0,0.9,0.05,0.9,0.1,0.9,0.15,0.9,0.2,0.9,0.25,0.9,0.3,0.9,0.35,0.9,0.4,0.9,0.45,0.9,0.5,0.9,0.55,0.9,0.6,0.9,0.65,0.9,0.7,0.9,0.75,0.9,0.8,0.9,0.85,0.9,0.9,0.9,0.95,0.9,1.0,0.9,0.0,0.95,0.05,0.95,0.1,0.95,0.15,0.95,0.2,0.95,0.25,0.95,0.3,0.95,0.35,0.95,0.4,0.95,0.45,0.95,0.5,0.95,0.55,0.95,0.6,0.95,0.65,0.95,0.7,0.95,0.75,0.95,0.8,0.95,0.85,0.95,0.9,0.95,0.95,0.95,1.0,0.95,0.025,0.0,0.075,0.0,0.125,0.0,0.175,0.0,0.225,0.0,0.275,0.0,0.325,0.0,0.375,0.0,0.425,0.0,0.475,0.0,0.525,0.0,0.575,0.0,0.625,0.0,0.675,0.0,0.725,0.0,0.775,0.0,0.825,0.0,0.875,0.0,0.925,0.0,0.975,0.0,0.025,1.0,0.075,1.0,0.125,1.0,0.175,1.0,0.225,1.0,0.275,1.0,0.325,1.0,0.375,1.0,0.425,1.0,0.475,1.0,0.525,1.0,0.575,1.0,0.625,1.0,0.675,1.0,0.725,1.0,0.775,1.0,0.825,1.0,0.875,1.0,0.925,1.0,0.975,1.0],"uvs2":null,"colors":null,"hasVertexAlpha":false,"matricesIndices":null,"matricesWeights":null,"matricesIndicesExtra":null,"matricesWeightsExtra":null,"indices":[0,1,2,2,1,3,1,4,3,3,4,5,4,6,5,5,6,7,6,8,7,7,8,9,8,10,9,9,10,11,10,12,11,11,12,13,12,14,13,13,14,15,14,16,15,15,16,17,16,18,17,17,18,19,18,20,19,19,20,21,20,22,21,21,22,23,22,24,23,23,24,25,24,26,25,25,26,27,26,28,27,27,28,29,28,30,29,29,30,31,30,32,31,31,32,33,32,34,33,33,34,35,34,36,35,35,36,37,36,38,37,37,38,39,38,40,39,39,40,41,2,3,42,42,3,43,3,5,43,43,5,44,5,7,44,44,7,45,7,9,45,45,9,46,9,11,46,46,11,47,11,13,47,47,13,48,13,15,48,48,15,49,15,17,49,49,17,50,17,19,50,50,19,51,19,21,51,51,21,52,21,23,52,52,23,53,23,25,53,53,25,54,25,27,54,54,27,55,27,29,55,55,29,56,29,31,56,56,31,57,31,33,57,57,33,58,33,35,58,58,35,59,35,37,59,59,37,60,37,39,60,60,39,61,39,41,61,61,41,62,42,43,63,63,43,64,43,44,64,64,44,65,44,45,65,65,45,66,45,46,66,66,46,67,46,47,67,67,47,68,47,48,68,68,48,69,48,49,69,69,49,70,49,50,70,70,50,71,50,51,71,71,51,72,51,52,72,72,52,73,52,53,73,73,53,74,53,54,74,74,54,75,54,55,75,75,55,76,55,56,76,76,56,77,56,57,77,77,57,78,57,58,78,78,58,79,58,59,79,79,59,80,59,60,80,80,60,81,60,61,81,81,61,82,61,62,82,82,62,83,63,64,84,84,64,85,64,65,85,85,65,86,65,66,86,86,66,87,66,67,87,87,67,88,67,68,88,88,68,89,68,69,89,89,69,90,69,70,90,90,70,91,70,71,91,91,71,92,71,72,92,92,72,93,72,73,93,93,73,94,73,74,94,94,74,95,74,75,95,95,75,96,75,76,96,96,76,97,76,77,97,97,77,98,77,78,98,98,78,99,78,79,99,99,79,100,79,80,100,100,80,101,80,81,101,101,81,102,81,82,102,102,82,103,82,83,103,103,83,104,84,85,105,105,85,106,85,86,106,106,86,107,86,87,107,107,87,108,87,88,108,108,88,109,88,89,109,109,89,110,89,90,110,110,90,111,90,91,111,111,91,112,91,92,112,112,92,113,92,93,113,113,93,114,93,94,114,114,94,115,94,95,115,115,95,116,95,96,116,116,96,117,96,97,117,117,97,118,97,98,118,118,98,119,98,99,119,119,99,120,99,100,120,120,100,121,100,101,121,121,101,122,101,102,122,122,102,123,102,103,123,123,103,124,103,104,124,124,104,125,105,106,126,126,106,127,106,107,127,127,107,128,107,108,128,128,108,129,108,109,129,129,109,130,109,110,130,130,110,131,110,111,131,131,111,132,111,112,132,132,112,133,112,113,133,133,113,134,113,114,134,134,114,135,114,115,135,135,115,136,115,116,136,136,116,137,116,117,137,137,117,138,117,118,138,138,118,139,118,119,139,139,119,140,119,120,140,140,120,141,120,121,141,141,121,142,121,122,142,142,122,143,122,123,143,143,123,144,123,124,144,144,124,145,124,125,145,145,125,146,126,127,147,147,127,148,127,128,148,148,128,149,128,129,149,149,129,150,129,130,150,150,130,151,130,131,151,151,131,152,131,132,152,152,132,153,132,133,153,153,133,154,133,134,154,154,134,155,134,135,155,155,135,156,135,136,156,156,136,157,136,137,157,157,137,158,137,138,158,158,138,159,138,139,159,159,139,160,139,140,160,160,140,161,140,141,161,161,141,162,141,142,162,162,142,163,142,143,163,163,143,164,143,144,164,164,144,165,144,145,165,165,145,166,145,146,166,166,146,167,147,148,168,168,148,169,148,149,169,169,149,170,149,150,170,170,150,171,150,151,171,171,151,172,151,152,172,172,152,173,152,153,173,173,153,174,153,154,174,174,154,175,154,155,175,175,155,176,155,156,176,176,156,177,156,157,177,177,157,178,157,158,178,178,158,179,158,159,179,179,159,180,159,160,180,180,160,181,160,161,181,181,161,182,161,162,182,182,162,183,162,163,183,183,163,184,163,164,184,184,164,185,164,165,185,185,165,186,165,166,186,186,166,187,166,167,187,187,167,188,168,169,189,189,169,190,169,170,190,190,170,191,170,171,191,191,171,192,171,172,192,192,172,193,172,173,193,193,173,194,173,174,194,194,174,195,174,175,195,195,175,196,175,176,196,196,176,197,176,177,197,197,177,198,177,178,198,198,178,199,178,179,199,199,179,200,179,180,200,200,180,201,180,181,201,201,181,202,181,182,202,202,182,203,182,183,203,203,183,204,183,184,204,204,184,205,184,185,205,205,185,206,185,186,206,206,186,207,186,187,207,207,187,208,187,188,208,208,188,209,189,190,210,210,190,211,190,191,211,211,191,212,191,192,212,212,192,213,192,193,213,213,193,214,193,194,214,214,194,215,194,195,215,215,195,216,195,196,216,216,196,217,196,197,217,217,197,218,197,198,218,218,198,219,198,199,219,219,199,220,199,200,220,220,200,221,200,201,221,221,201,222,201,202,222,222,202,223,202,203,223,223,203,224,203,204,224,224,204,225,204,205,225,225,205,226,205,206,226,226,206,227,206,207,227,227,207,228,207,208,228,228,208,229,208,209,229,229,209,230,210,211,231,231,211,232,211,212,232,232,212,233,212,213,233,233,213,234,213,214,234,234,214,235,214,215,235,235,215,236,215,216,236,236,216,237,216,217,237,237,217,238,217,218,238,238,218,239,218,219,239,239,219,240,219,220,240,240,220,241,220,221,241,241,221,242,221,222,242,242,222,243,222,223,243,243,223,244,223,224,244,244,224,245,224,225,245,245,225,246,225,226,246,246,226,247,226,227,247,247,227,248,227,228,248,248,228,249,228,229,249,249,229,250,229,230,250,250,230,251,231,232,252,252,232,253,232,233,253,253,233,254,233,234,254,254,234,255,234,235,255,255,235,256,235,236,256,256,236,257,236,237,257,257,237,258,237,238,258,258,238,259,238,239,259,259,239,260,239,240,260,260,240,261,240,241,261,261,241,262,241,242,262,262,242,263,242,243,263,263,243,264,243,244,264,264,244,265,244,245,265,265,245,266,245,246,266,266,246,267,246,247,267,267,247,268,247,248,268,268,248,269,248,249,269,269,249,270,249,250,270,270,250,271,250,251,271,271,251,272,252,253,273,273,253,274,253,254,274,274,254,275,254,255,275,275,255,276,255,256,276,276,256,277,256,257,277,277,257,278,257,258,278,278,258,279,258,259,279,279,259,280,259,260,280,280,260,281,260,261,281,281,261,282,261,262,282,282,262,283,262,263,283,283,263,284,263,264,284,284,264,285,264,265,285,285,265,286,265,266,286,286,266,287,266,267,287,287,267,288,267,268,288,288,268,289,268,269,289,289,269,290,269,270,290,290,270,291,270,271,291,291,271,292,271,272,292,292,272,293,273,274,294,294,274,295,274,275,295,295,275,296,275,276,296,296,276,297,276,277,297,297,277,298,277,278,298,298,278,299,278,279,299,299,279,300,279,280,300,300,280,301,280,281,301,301,281,302,281,282,302,302,282,303,282,283,303,303,283,304,283,284,304,304,284,305,284,285,305,305,285,306,285,286,306,306,286,307,286,287,307,307,287,308,287,288,308,308,288,309,288,289,309,309,289,310,289,290,310,310,290,311,290,291,311,311,291,312,291,292,312,312,292,313,292,293,313,313,293,314,294,295,315,315,295,316,295,296,316,316,296,317,296,297,317,317,297,318,297,298,318,318,298,319,298,299,319,319,299,320,299,300,320,320,300,321,300,301,321,321,301,322,301,302,322,322,302,323,302,303,323,323,303,324,303,304,324,324,304,325,304,305,325,325,305,326,305,306,326,326,306,327,306,307,327,327,307,328,307,308,328,328,308,329,308,309,329,329,309,330,309,310,330,330,310,331,310,311,331,331,311,332,311,312,332,332,312,333,312,313,333,333,313,334,313,314,334,334,314,335,315,316,336,336,316,337,316,317,337,337,317,338,317,318,338,338,318,339,318,319,339,339,319,340,319,320,340,340,320,341,320,321,341,341,321,342,321,322,342,342,322,343,322,323,343,343,323,344,323,324,344,344,324,345,324,325,345,345,325,346,325,326,346,346,326,347,326,327,347,347,327,348,327,328,348,348,328,349,328,329,349,349,329,350,329,330,350,350,330,351,330,331,351,351,331,352,331,332,352,352,332,353,332,333,353,353,333,354,333,334,354,354,334,355,334,335,355,355,335,356,336,337,357,357,337,358,337,338,358,358,338,359,338,339,359,359,339,360,339,340,360,360,340,361,340,341,361,361,341,362,341,342,362,362,342,363,342,343,363,363,343,364,343,344,364,364,344,365,344,345,365,365,345,366,345,346,366,366,346,367,346,347,367,367,347,368,347,348,368,368,348,369,348,349,369,369,349,370,349,350,370,370,350,371,350,351,371,371,351,372,351,352,372,372,352,373,352,353,373,373,353,374,353,354,374,374,354,375,354,355,375,375,355,376,355,356,376,376,356,377,357,358,378,378,358,379,358,359,379,379,359,380,359,360,380,380,360,381,360,361,381,381,361,382,361,362,382,382,362,383,362,363,383,383,363,384,363,364,384,384,364,385,364,365,385,385,365,386,365,366,386,386,366,387,366,367,387,387,367,388,367,368,388,388,368,389,368,369,389,389,369,390,369,370,390,390,370,391,370,371,391,391,371,392,371,372,392,392,372,393,372,373,393,393,373,394,373,374,394,394,374,395,374,375,395,395,375,396,375,376,396,396,376,397,376,377,397,397,377,398,1,0,399,4,1,400,6,4,401,8,6,402,10,8,403,12,10,404,14,12,405,16,14,406,18,16,407,20,18,408,22,20,409,24,22,410,26,24,411,28,26,412,30,28,413,32,30,414,34,32,415,36,34,416,38,36,417,40,38,418,378,379,419,379,380,420,380,381,421,381,382,422,382,383,423,383,384,424,384,385,425,385,386,426,386,387,427,387,388,428,388,389,429,389,390,430,390,391,431,391,392,432,392,393,433,393,394,434,394,395,435,395,396,436,396,397,437,397,398,438],"receiveShadows":false,"infiniteDistance":false,"billboardMode":0,"visibility":1.0,"subMeshes":[{"materialIndex":0,"verticesStart":0,"verticesCount":439,"indexStart":0,"indexCount":2280}],"instances":null,"skeletonId":-1,"numBoneInfluencers":4,"applyFog":false,"lodMeshIds":null,"lodDistances":null,"lodCoverages":null,"rotation":null,"scaling":[1.0,1.0,1.0],"rotationQuaternion":[0.0,0.0,0.0,1.0],"actions":null,"checkCollisions":false,"pickable":true,"showBoundingBox":false,"showSubMeshesBoundingBox":false,"alphaIndex":0,"physicsImpostor":0,"physicsMass":0.0,"physicsFriction":0.0,"physicsRestitution":0.0,"name":"pSphere8","id":"217F8624-4792-7AFF-6E31-1F80E9A1DE44","parentId":null,"position":[0.0,0.0,5.0],"animations":[],"autoAnimate":true,"autoAnimateFrom":1,"autoAnimateTo":200,"autoAnimateLoop":true,"metadata":{}},{"materialId":"5835C398-485B-5E77-AF0F-80B486274418","isEnabled":true,"isVisible":true,"positions":[0.1488,-0.9877,0.0483,0.1266,-0.9877,0.0919,0.2939,-0.9511,0.0955,0.25,-0.9511,0.1816,0.0919,-0.9877,0.1266,0.1816,-0.9511,0.25,0.0483,-0.9877,0.1488,0.0955,-0.9511,0.2939,0.0,-0.9877,0.1564,0.0,-0.9511,0.309,-0.0483,-0.9877,0.1488,-0.0955,-0.9511,0.2939,-0.0919,-0.9877,0.1266,-0.1816,-0.9511,0.25,-0.1266,-0.9877,0.0919,-0.25,-0.9511,0.1816,-0.1488,-0.9877,0.0483,-0.2939,-0.9511,0.0955,-0.1564,-0.9877,0.0,-0.309,-0.9511,0.0,-0.1488,-0.9877,-0.0483,-0.2939,-0.9511,-0.0955,-0.1266,-0.9877,-0.0919,-0.25,-0.9511,-0.1816,-0.0919,-0.9877,-0.1266,-0.1816,-0.9511,-0.25,-0.0483,-0.9877,-0.1488,-0.0955,-0.9511,-0.2939,0.0,-0.9877,-0.1564,0.0,-0.9511,-0.309,0.0483,-0.9877,-0.1488,0.0955,-0.9511,-0.2939,0.0919,-0.9877,-0.1266,0.1816,-0.9511,-0.25,0.1266,-0.9877,-0.0919,0.25,-0.9511,-0.1816,0.1488,-0.9877,-0.0483,0.2939,-0.9511,-0.0955,0.1564,-0.9877,0.0,0.309,-0.9511,0.0,0.1488,-0.9877,0.0483,0.2939,-0.9511,0.0955,0.4318,-0.891,0.1403,0.3673,-0.891,0.2668,0.2668,-0.891,0.3673,0.1403,-0.891,0.4318,0.0,-0.891,0.454,-0.1403,-0.891,0.4318,-0.2668,-0.891,0.3673,-0.3673,-0.891,0.2668,-0.4318,-0.891,0.1403,-0.454,-0.891,0.0,-0.4318,-0.891,-0.1403,-0.3673,-0.891,-0.2668,-0.2668,-0.891,-0.3673,-0.1403,-0.891,-0.4318,0.0,-0.891,-0.454,0.1403,-0.891,-0.4318,0.2668,-0.891,-0.3673,0.3673,-0.891,-0.2668,0.4318,-0.891,-0.1403,0.454,-0.891,0.0,0.4318,-0.891,0.1403,0.559,-0.809,0.1816,0.4755,-0.809,0.3455,0.3455,-0.809,0.4755,0.1816,-0.809,0.559,0.0,-0.809,0.5878,-0.1816,-0.809,0.559,-0.3455,-0.809,0.4755,-0.4755,-0.809,0.3455,-0.559,-0.809,0.1816,-0.5878,-0.809,0.0,-0.559,-0.809,-0.1816,-0.4755,-0.809,-0.3455,-0.3455,-0.809,-0.4755,-0.1816,-0.809,-0.559,0.0,-0.809,-0.5878,0.1816,-0.809,-0.559,0.3455,-0.809,-0.4755,0.4755,-0.809,-0.3455,0.559,-0.809,-0.1816,0.5878,-0.809,0.0,0.559,-0.809,0.1816,0.6725,-0.7071,0.2185,0.5721,-0.7071,0.4156,0.4156,-0.7071,0.5721,0.2185,-0.7071,0.6725,0.0,-0.7071,0.7071,-0.2185,-0.7071,0.6725,-0.4156,-0.7071,0.5721,-0.5721,-0.7071,0.4156,-0.6725,-0.7071,0.2185,-0.7071,-0.7071,0.0,-0.6725,-0.7071,-0.2185,-0.5721,-0.7071,-0.4156,-0.4156,-0.7071,-0.5721,-0.2185,-0.7071,-0.6725,0.0,-0.7071,-0.7071,0.2185,-0.7071,-0.6725,0.4156,-0.7071,-0.5721,0.5721,-0.7071,-0.4156,0.6725,-0.7071,-0.2185,0.7071,-0.7071,0.0,0.6725,-0.7071,0.2185,0.7694,-0.5878,0.25,0.6545,-0.5878,0.4755,0.4755,-0.5878,0.6545,0.25,-0.5878,0.7694,0.0,-0.5878,0.809,-0.25,-0.5878,0.7694,-0.4755,-0.5878,0.6545,-0.6545,-0.5878,0.4755,-0.7694,-0.5878,0.25,-0.809,-0.5878,0.0,-0.7694,-0.5878,-0.25,-0.6545,-0.5878,-0.4755,-0.4755,-0.5878,-0.6545,-0.25,-0.5878,-0.7694,0.0,-0.5878,-0.809,0.25,-0.5878,-0.7694,0.4755,-0.5878,-0.6545,0.6545,-0.5878,-0.4755,0.7694,-0.5878,-0.25,0.809,-0.5878,0.0,0.7694,-0.5878,0.25,0.8474,-0.454,0.2753,0.7208,-0.454,0.5237,0.5237,-0.454,0.7208,0.2753,-0.454,0.8474,0.0,-0.454,0.891,-0.2753,-0.454,0.8474,-0.5237,-0.454,0.7208,-0.7208,-0.454,0.5237,-0.8474,-0.454,0.2753,-0.891,-0.454,0.0,-0.8474,-0.454,-0.2753,-0.7208,-0.454,-0.5237,-0.5237,-0.454,-0.7208,-0.2753,-0.454,-0.8474,0.0,-0.454,-0.891,0.2753,-0.454,-0.8474,0.5237,-0.454,-0.7208,0.7208,-0.454,-0.5237,0.8474,-0.454,-0.2753,0.891,-0.454,0.0,0.8474,-0.454,0.2753,0.9045,-0.309,0.2939,0.7694,-0.309,0.559,0.559,-0.309,0.7694,0.2939,-0.309,0.9045,0.0,-0.309,0.9511,-0.2939,-0.309,0.9045,-0.559,-0.309,0.7694,-0.7694,-0.309,0.559,-0.9045,-0.309,0.2939,-0.9511,-0.309,0.0,-0.9045,-0.309,-0.2939,-0.7694,-0.309,-0.559,-0.559,-0.309,-0.7694,-0.2939,-0.309,-0.9045,0.0,-0.309,-0.9511,0.2939,-0.309,-0.9045,0.559,-0.309,-0.7694,0.7694,-0.309,-0.559,0.9045,-0.309,-0.2939,0.9511,-0.309,0.0,0.9045,-0.309,0.2939,0.9393,-0.1564,0.3052,0.7991,-0.1564,0.5805,0.5805,-0.1564,0.7991,0.3052,-0.1564,0.9393,0.0,-0.1564,0.9877,-0.3052,-0.1564,0.9393,-0.5805,-0.1564,0.7991,-0.7991,-0.1564,0.5805,-0.9393,-0.1564,0.3052,-0.9877,-0.1564,0.0,-0.9393,-0.1564,-0.3052,-0.7991,-0.1564,-0.5805,-0.5805,-0.1564,-0.7991,-0.3052,-0.1564,-0.9393,0.0,-0.1564,-0.9877,0.3052,-0.1564,-0.9393,0.5805,-0.1564,-0.7991,0.7991,-0.1564,-0.5805,0.9393,-0.1564,-0.3052,0.9877,-0.1564,0.0,0.9393,-0.1564,0.3052,0.9511,0.0,0.309,0.809,0.0,0.5878,0.5878,0.0,0.809,0.309,0.0,0.9511,0.0,0.0,1.0,-0.309,0.0,0.9511,-0.5878,0.0,0.809,-0.809,0.0,0.5878,-0.9511,0.0,0.309,-1.0,0.0,0.0,-0.9511,0.0,-0.309,-0.809,0.0,-0.5878,-0.5878,0.0,-0.809,-0.309,0.0,-0.9511,0.0,0.0,-1.0,0.309,0.0,-0.9511,0.5878,0.0,-0.809,0.809,0.0,-0.5878,0.9511,0.0,-0.309,1.0,0.0,0.0,0.9511,0.0,0.309,0.9393,0.1564,0.3052,0.7991,0.1564,0.5805,0.5805,0.1564,0.7991,0.3052,0.1564,0.9393,0.0,0.1564,0.9877,-0.3052,0.1564,0.9393,-0.5805,0.1564,0.7991,-0.7991,0.1564,0.5805,-0.9393,0.1564,0.3052,-0.9877,0.1564,0.0,-0.9393,0.1564,-0.3052,-0.7991,0.1564,-0.5805,-0.5805,0.1564,-0.7991,-0.3052,0.1564,-0.9393,0.0,0.1564,-0.9877,0.3052,0.1564,-0.9393,0.5805,0.1564,-0.7991,0.7991,0.1564,-0.5805,0.9393,0.1564,-0.3052,0.9877,0.1564,0.0,0.9393,0.1564,0.3052,0.9045,0.309,0.2939,0.7694,0.309,0.559,0.559,0.309,0.7694,0.2939,0.309,0.9045,0.0,0.309,0.9511,-0.2939,0.309,0.9045,-0.559,0.309,0.7694,-0.7694,0.309,0.559,-0.9045,0.309,0.2939,-0.9511,0.309,0.0,-0.9045,0.309,-0.2939,-0.7694,0.309,-0.559,-0.559,0.309,-0.7694,-0.2939,0.309,-0.9045,0.0,0.309,-0.9511,0.2939,0.309,-0.9045,0.559,0.309,-0.7694,0.7694,0.309,-0.559,0.9045,0.309,-0.2939,0.9511,0.309,0.0,0.9045,0.309,0.2939,0.8474,0.454,0.2753,0.7208,0.454,0.5237,0.5237,0.454,0.7208,0.2753,0.454,0.8474,0.0,0.454,0.891,-0.2753,0.454,0.8474,-0.5237,0.454,0.7208,-0.7208,0.454,0.5237,-0.8474,0.454,0.2753,-0.891,0.454,0.0,-0.8474,0.454,-0.2753,-0.7208,0.454,-0.5237,-0.5237,0.454,-0.7208,-0.2753,0.454,-0.8474,0.0,0.454,-0.891,0.2753,0.454,-0.8474,0.5237,0.454,-0.7208,0.7208,0.454,-0.5237,0.8474,0.454,-0.2753,0.891,0.454,0.0,0.8474,0.454,0.2753,0.7694,0.5878,0.25,0.6545,0.5878,0.4755,0.4755,0.5878,0.6545,0.25,0.5878,0.7694,0.0,0.5878,0.809,-0.25,0.5878,0.7694,-0.4755,0.5878,0.6545,-0.6545,0.5878,0.4755,-0.7694,0.5878,0.25,-0.809,0.5878,0.0,-0.7694,0.5878,-0.25,-0.6545,0.5878,-0.4755,-0.4755,0.5878,-0.6545,-0.25,0.5878,-0.7694,0.0,0.5878,-0.809,0.25,0.5878,-0.7694,0.4755,0.5878,-0.6545,0.6545,0.5878,-0.4755,0.7694,0.5878,-0.25,0.809,0.5878,0.0,0.7694,0.5878,0.25,0.6725,0.7071,0.2185,0.5721,0.7071,0.4156,0.4156,0.7071,0.5721,0.2185,0.7071,0.6725,0.0,0.7071,0.7071,-0.2185,0.7071,0.6725,-0.4156,0.7071,0.5721,-0.5721,0.7071,0.4156,-0.6725,0.7071,0.2185,-0.7071,0.7071,0.0,-0.6725,0.7071,-0.2185,-0.5721,0.7071,-0.4156,-0.4156,0.7071,-0.5721,-0.2185,0.7071,-0.6725,0.0,0.7071,-0.7071,0.2185,0.7071,-0.6725,0.4156,0.7071,-0.5721,0.5721,0.7071,-0.4156,0.6725,0.7071,-0.2185,0.7071,0.7071,0.0,0.6725,0.7071,0.2185,0.559,0.809,0.1816,0.4755,0.809,0.3455,0.3455,0.809,0.4755,0.1816,0.809,0.559,0.0,0.809,0.5878,-0.1816,0.809,0.559,-0.3455,0.809,0.4755,-0.4755,0.809,0.3455,-0.559,0.809,0.1816,-0.5878,0.809,0.0,-0.559,0.809,-0.1816,-0.4755,0.809,-0.3455,-0.3455,0.809,-0.4755,-0.1816,0.809,-0.559,0.0,0.809,-0.5878,0.1816,0.809,-0.559,0.3455,0.809,-0.4755,0.4755,0.809,-0.3455,0.559,0.809,-0.1816,0.5878,0.809,0.0,0.559,0.809,0.1816,0.4318,0.891,0.1403,0.3673,0.891,0.2668,0.2668,0.891,0.3673,0.1403,0.891,0.4318,0.0,0.891,0.454,-0.1403,0.891,0.4318,-0.2668,0.891,0.3673,-0.3673,0.891,0.2668,-0.4318,0.891,0.1403,-0.454,0.891,0.0,-0.4318,0.891,-0.1403,-0.3673,0.891,-0.2668,-0.2668,0.891,-0.3673,-0.1403,0.891,-0.4318,0.0,0.891,-0.454,0.1403,0.891,-0.4318,0.2668,0.891,-0.3673,0.3673,0.891,-0.2668,0.4318,0.891,-0.1403,0.454,0.891,0.0,0.4318,0.891,0.1403,0.2939,0.9511,0.0955,0.25,0.9511,0.1816,0.1816,0.9511,0.25,0.0955,0.9511,0.2939,0.0,0.9511,0.309,-0.0955,0.9511,0.2939,-0.1816,0.9511,0.25,-0.25,0.9511,0.1816,-0.2939,0.9511,0.0955,-0.309,0.9511,0.0,-0.2939,0.9511,-0.0955,-0.25,0.9511,-0.1816,-0.1816,0.9511,-0.25,-0.0955,0.9511,-0.2939,0.0,0.9511,-0.309,0.0955,0.9511,-0.2939,0.1816,0.9511,-0.25,0.25,0.9511,-0.1816,0.2939,0.9511,-0.0955,0.309,0.9511,0.0,0.2939,0.9511,0.0955,0.1488,0.9877,0.0483,0.1266,0.9877,0.0919,0.0919,0.9877,0.1266,0.0483,0.9877,0.1488,0.0,0.9877,0.1564,-0.0483,0.9877,0.1488,-0.0919,0.9877,0.1266,-0.1266,0.9877,0.0919,-0.1488,0.9877,0.0483,-0.1564,0.9877,0.0,-0.1488,0.9877,-0.0483,-0.1266,0.9877,-0.0919,-0.0919,0.9877,-0.1266,-0.0483,0.9877,-0.1488,0.0,0.9877,-0.1564,0.0483,0.9877,-0.1488,0.0919,0.9877,-0.1266,0.1266,0.9877,-0.0919,0.1488,0.9877,-0.0483,0.1564,0.9877,0.0,0.1488,0.9877,0.0483,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0],"normals":[0.1906,-0.9797,0.0619,0.1621,-0.9797,0.1178,0.3173,-0.9427,0.1031,0.2699,-0.9427,0.1961,0.1178,-0.9797,0.1621,0.1961,-0.9427,0.2699,0.0619,-0.9797,0.1906,0.1031,-0.9427,0.3173,0.0,-0.9797,0.2004,0.0,-0.9427,0.3336,-0.0619,-0.9797,0.1906,-0.1031,-0.9427,0.3173,-0.1178,-0.9797,0.1621,-0.1961,-0.9427,0.2699,-0.1621,-0.9797,0.1178,-0.2699,-0.9427,0.1961,-0.1906,-0.9797,0.0619,-0.3173,-0.9427,0.1031,-0.2004,-0.9797,0.0,-0.3336,-0.9427,0.0,-0.1906,-0.9797,-0.0619,-0.3173,-0.9427,-0.1031,-0.1621,-0.9797,-0.1178,-0.2699,-0.9427,-0.1961,-0.1178,-0.9797,-0.1621,-0.1961,-0.9427,-0.2699,-0.0619,-0.9797,-0.1906,-0.1031,-0.9427,-0.3173,0.0,-0.9797,-0.2004,0.0,-0.9427,-0.3336,0.0619,-0.9797,-0.1906,0.1031,-0.9427,-0.3173,0.1178,-0.9797,-0.1621,0.1961,-0.9427,-0.2699,0.1621,-0.9797,-0.1178,0.2699,-0.9427,-0.1961,0.1906,-0.9797,-0.0619,0.3173,-0.9427,-0.1031,0.2004,-0.9797,0.0,0.3336,-0.9427,0.0,0.1906,-0.9797,0.0619,0.3173,-0.9427,0.1031,0.4477,-0.8823,0.1455,0.3808,-0.8823,0.2767,0.2767,-0.8823,0.3808,0.1455,-0.8823,0.4477,0.0,-0.8823,0.4708,-0.1455,-0.8823,0.4477,-0.2767,-0.8823,0.3808,-0.3808,-0.8823,0.2767,-0.4477,-0.8823,0.1455,-0.4708,-0.8823,0.0,-0.4477,-0.8823,-0.1455,-0.3808,-0.8823,-0.2767,-0.2767,-0.8823,-0.3808,-0.1455,-0.8823,-0.4477,0.0,-0.8823,-0.4708,0.1455,-0.8823,-0.4477,0.2767,-0.8823,-0.3808,0.3808,-0.8823,-0.2767,0.4477,-0.8823,-0.1455,0.4708,-0.8823,0.0,0.4477,-0.8823,0.1455,0.5703,-0.8003,0.1853,0.4851,-0.8003,0.3525,0.3525,-0.8003,0.4851,0.1853,-0.8003,0.5703,0.0,-0.8003,0.5997,-0.1853,-0.8003,0.5703,-0.3525,-0.8003,0.4851,-0.4851,-0.8003,0.3525,-0.5703,-0.8003,0.1853,-0.5997,-0.8003,0.0,-0.5703,-0.8003,-0.1853,-0.4851,-0.8003,-0.3525,-0.3525,-0.8003,-0.4851,-0.1853,-0.8003,-0.5703,0.0,-0.8003,-0.5997,0.1853,-0.8003,-0.5703,0.3525,-0.8003,-0.4851,0.4851,-0.8003,-0.3525,0.5703,-0.8003,-0.1853,0.5997,-0.8003,0.0,0.5703,-0.8003,0.1853,0.6803,-0.6988,0.221,0.5787,-0.6988,0.4205,0.4205,-0.6988,0.5787,0.221,-0.6988,0.6803,0.0,-0.6988,0.7153,-0.221,-0.6988,0.6803,-0.4205,-0.6988,0.5787,-0.5787,-0.6988,0.4205,-0.6803,-0.6988,0.221,-0.7153,-0.6988,0.0,-0.6803,-0.6988,-0.221,-0.5787,-0.6988,-0.4205,-0.4205,-0.6988,-0.5787,-0.221,-0.6988,-0.6803,0.0,-0.6988,-0.7153,0.221,-0.6988,-0.6803,0.4205,-0.6988,-0.5787,0.5787,-0.6988,-0.4205,0.6803,-0.6988,-0.221,0.7153,-0.6988,0.0,0.6803,-0.6988,0.221,0.7745,-0.5804,0.2516,0.6588,-0.5804,0.4787,0.4787,-0.5804,0.6588,0.2516,-0.5804,0.7745,0.0,-0.5804,0.8143,-0.2516,-0.5804,0.7745,-0.4787,-0.5804,0.6588,-0.6588,-0.5804,0.4787,-0.7745,-0.5804,0.2516,-0.8143,-0.5804,0.0,-0.7745,-0.5804,-0.2516,-0.6588,-0.5804,-0.4787,-0.4787,-0.5804,-0.6588,-0.2516,-0.5804,-0.7745,0.0,-0.5804,-0.8143,0.2516,-0.5804,-0.7745,0.4787,-0.5804,-0.6588,0.6588,-0.5804,-0.4787,0.7745,-0.5804,-0.2516,0.8143,-0.5804,0.0,0.7745,-0.5804,0.2516,0.8503,-0.448,0.2763,0.7233,-0.448,0.5255,0.5255,-0.448,0.7233,0.2763,-0.448,0.8503,0.0,-0.448,0.894,-0.2763,-0.448,0.8503,-0.5255,-0.448,0.7233,-0.7233,-0.448,0.5255,-0.8503,-0.448,0.2763,-0.894,-0.448,0.0,-0.8503,-0.448,-0.2763,-0.7233,-0.448,-0.5255,-0.5255,-0.448,-0.7233,-0.2763,-0.448,-0.8503,0.0,-0.448,-0.894,0.2763,-0.448,-0.8503,0.5255,-0.448,-0.7233,0.7233,-0.448,-0.5255,0.8503,-0.448,-0.2763,0.894,-0.448,0.0,0.8503,-0.448,0.2763,0.9058,-0.3048,0.2943,0.7705,-0.3048,0.5598,0.5598,-0.3048,0.7705,0.2943,-0.3048,0.9058,0.0,-0.3048,0.9524,-0.2943,-0.3048,0.9058,-0.5598,-0.3048,0.7705,-0.7705,-0.3048,0.5598,-0.9058,-0.3048,0.2943,-0.9524,-0.3048,0.0,-0.9058,-0.3048,-0.2943,-0.7705,-0.3048,-0.5598,-0.5598,-0.3048,-0.7705,-0.2943,-0.3048,-0.9058,0.0,-0.3048,-0.9524,0.2943,-0.3048,-0.9058,0.5598,-0.3048,-0.7705,0.7705,-0.3048,-0.5598,0.9058,-0.3048,-0.2943,0.9524,-0.3048,0.0,0.9058,-0.3048,0.2943,0.9397,-0.1542,0.3053,0.7993,-0.1542,0.5808,0.5808,-0.1542,0.7993,0.3053,-0.1542,0.9397,0.0,-0.1542,0.988,-0.3053,-0.1542,0.9397,-0.5808,-0.1542,0.7993,-0.7993,-0.1542,0.5808,-0.9397,-0.1542,0.3053,-0.988,-0.1542,0.0,-0.9397,-0.1542,-0.3053,-0.7993,-0.1542,-0.5808,-0.5808,-0.1542,-0.7993,-0.3053,-0.1542,-0.9397,0.0,-0.1542,-0.988,0.3053,-0.1542,-0.9397,0.5808,-0.1542,-0.7993,0.7993,-0.1542,-0.5808,0.9397,-0.1542,-0.3053,0.988,-0.1542,0.0,0.9397,-0.1542,0.3053,0.9511,0.0,0.309,0.809,0.0,0.5878,0.5878,0.0,0.809,0.309,0.0,0.9511,0.0,0.0,1.0,-0.309,0.0,0.9511,-0.5878,0.0,0.809,-0.809,0.0,0.5878,-0.9511,0.0,0.309,-1.0,0.0,0.0,-0.9511,0.0,-0.309,-0.809,0.0,-0.5878,-0.5878,0.0,-0.809,-0.309,0.0,-0.9511,0.0,0.0,-1.0,0.309,0.0,-0.9511,0.5878,0.0,-0.809,0.809,0.0,-0.5878,0.9511,0.0,-0.309,1.0,0.0,0.0,0.9511,0.0,0.309,0.9397,0.1542,0.3053,0.7993,0.1542,0.5808,0.5808,0.1542,0.7993,0.3053,0.1542,0.9397,0.0,0.1542,0.988,-0.3053,0.1542,0.9397,-0.5808,0.1542,0.7993,-0.7993,0.1542,0.5808,-0.9397,0.1542,0.3053,-0.988,0.1542,0.0,-0.9397,0.1542,-0.3053,-0.7993,0.1542,-0.5808,-0.5808,0.1542,-0.7993,-0.3053,0.1542,-0.9397,0.0,0.1542,-0.988,0.3053,0.1542,-0.9397,0.5808,0.1542,-0.7993,0.7993,0.1542,-0.5808,0.9397,0.1542,-0.3053,0.988,0.1542,0.0,0.9397,0.1542,0.3053,0.9058,0.3048,0.2943,0.7705,0.3048,0.5598,0.5598,0.3048,0.7705,0.2943,0.3048,0.9058,0.0,0.3048,0.9524,-0.2943,0.3048,0.9058,-0.5598,0.3048,0.7705,-0.7705,0.3048,0.5598,-0.9058,0.3048,0.2943,-0.9524,0.3048,0.0,-0.9058,0.3048,-0.2943,-0.7705,0.3048,-0.5598,-0.5598,0.3048,-0.7705,-0.2943,0.3048,-0.9058,0.0,0.3048,-0.9524,0.2943,0.3048,-0.9058,0.5598,0.3048,-0.7705,0.7705,0.3048,-0.5598,0.9058,0.3048,-0.2943,0.9524,0.3048,0.0,0.9058,0.3048,0.2943,0.8503,0.448,0.2763,0.7233,0.448,0.5255,0.5255,0.448,0.7233,0.2763,0.448,0.8503,0.0,0.448,0.894,-0.2763,0.448,0.8503,-0.5255,0.448,0.7233,-0.7233,0.448,0.5255,-0.8503,0.448,0.2763,-0.894,0.448,0.0,-0.8503,0.448,-0.2763,-0.7233,0.448,-0.5255,-0.5255,0.448,-0.7233,-0.2763,0.448,-0.8503,0.0,0.448,-0.894,0.2763,0.448,-0.8503,0.5255,0.448,-0.7233,0.7233,0.448,-0.5255,0.8503,0.448,-0.2763,0.894,0.448,0.0,0.8503,0.448,0.2763,0.7745,0.5804,0.2516,0.6588,0.5804,0.4787,0.4787,0.5804,0.6588,0.2516,0.5804,0.7745,0.0,0.5804,0.8143,-0.2516,0.5804,0.7745,-0.4787,0.5804,0.6588,-0.6588,0.5804,0.4787,-0.7745,0.5804,0.2516,-0.8143,0.5804,0.0,-0.7745,0.5804,-0.2516,-0.6588,0.5804,-0.4787,-0.4787,0.5804,-0.6588,-0.2516,0.5804,-0.7745,0.0,0.5804,-0.8143,0.2516,0.5804,-0.7745,0.4787,0.5804,-0.6588,0.6588,0.5804,-0.4787,0.7745,0.5804,-0.2516,0.8143,0.5804,0.0,0.7745,0.5804,0.2516,0.6803,0.6988,0.221,0.5787,0.6988,0.4205,0.4205,0.6988,0.5787,0.221,0.6988,0.6803,0.0,0.6988,0.7153,-0.221,0.6988,0.6803,-0.4205,0.6988,0.5787,-0.5787,0.6988,0.4205,-0.6803,0.6988,0.221,-0.7153,0.6988,0.0,-0.6803,0.6988,-0.221,-0.5787,0.6988,-0.4205,-0.4205,0.6988,-0.5787,-0.221,0.6988,-0.6803,0.0,0.6988,-0.7153,0.221,0.6988,-0.6803,0.4205,0.6988,-0.5787,0.5787,0.6988,-0.4205,0.6803,0.6988,-0.221,0.7153,0.6988,0.0,0.6803,0.6988,0.221,0.5703,0.8003,0.1853,0.4851,0.8003,0.3525,0.3525,0.8003,0.4851,0.1853,0.8003,0.5703,0.0,0.8003,0.5997,-0.1853,0.8003,0.5703,-0.3525,0.8003,0.4851,-0.4851,0.8003,0.3525,-0.5703,0.8003,0.1853,-0.5997,0.8003,0.0,-0.5703,0.8003,-0.1853,-0.4851,0.8003,-0.3525,-0.3525,0.8003,-0.4851,-0.1853,0.8003,-0.5703,0.0,0.8003,-0.5997,0.1853,0.8003,-0.5703,0.3525,0.8003,-0.4851,0.4851,0.8003,-0.3525,0.5703,0.8003,-0.1853,0.5997,0.8003,0.0,0.5703,0.8003,0.1853,0.4477,0.8823,0.1455,0.3808,0.8823,0.2767,0.2767,0.8823,0.3808,0.1455,0.8823,0.4477,0.0,0.8823,0.4708,-0.1455,0.8823,0.4477,-0.2767,0.8823,0.3808,-0.3808,0.8823,0.2767,-0.4477,0.8823,0.1455,-0.4708,0.8823,0.0,-0.4477,0.8823,-0.1455,-0.3808,0.8823,-0.2767,-0.2767,0.8823,-0.3808,-0.1455,0.8823,-0.4477,0.0,0.8823,-0.4708,0.1455,0.8823,-0.4477,0.2767,0.8823,-0.3808,0.3808,0.8823,-0.2767,0.4477,0.8823,-0.1455,0.4708,0.8823,0.0,0.4477,0.8823,0.1455,0.3173,0.9427,0.1031,0.2699,0.9427,0.1961,0.1961,0.9427,0.2699,0.1031,0.9427,0.3173,0.0,0.9427,0.3336,-0.1031,0.9427,0.3173,-0.1961,0.9427,0.2699,-0.2699,0.9427,0.1961,-0.3173,0.9427,0.1031,-0.3336,0.9427,0.0,-0.3173,0.9427,-0.1031,-0.2699,0.9427,-0.1961,-0.1961,0.9427,-0.2699,-0.1031,0.9427,-0.3173,0.0,0.9427,-0.3336,0.1031,0.9427,-0.3173,0.1961,0.9427,-0.2699,0.2699,0.9427,-0.1961,0.3173,0.9427,-0.1031,0.3336,0.9427,0.0,0.3173,0.9427,0.1031,0.1906,0.9797,0.0619,0.1621,0.9797,0.1178,0.1178,0.9797,0.1621,0.0619,0.9797,0.1906,0.0,0.9797,0.2004,-0.0619,0.9797,0.1906,-0.1178,0.9797,0.1621,-0.1621,0.9797,0.1178,-0.1906,0.9797,0.0619,-0.2004,0.9797,0.0,-0.1906,0.9797,-0.0619,-0.1621,0.9797,-0.1178,-0.1178,0.9797,-0.1621,-0.0619,0.9797,-0.1906,0.0,0.9797,-0.2004,0.0619,0.9797,-0.1906,0.1178,0.9797,-0.1621,0.1621,0.9797,-0.1178,0.1906,0.9797,-0.0619,0.2004,0.9797,0.0,0.1906,0.9797,0.0619,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0],"tangents":[-0.4482,-0.0307,0.8934,-1.0,-0.5629,0.0062,0.8265,-1.0,-0.438,-0.0493,0.8976,-1.0,-0.5878,0.0,0.809,-1.0,-0.7908,0.0062,0.6121,-1.0,-0.809,0.0,0.5878,-1.0,-0.9412,0.0062,0.3378,-1.0,-0.9511,0.0,0.309,-1.0,-0.9995,0.0062,0.0304,-1.0,-1.0,0.0,0.0,-1.0,-0.96,0.0062,-0.28,-1.0,-0.9511,0.0,-0.309,-1.0,-0.8265,0.0062,-0.5629,-1.0,-0.809,0.0,-0.5878,-1.0,-0.6121,0.0062,-0.7908,-1.0,-0.5878,0.0,-0.809,-1.0,-0.3378,0.0062,-0.9412,-1.0,-0.309,0.0,-0.9511,-1.0,-0.0304,0.0062,-0.9995,-1.0,0.0,0.0,-1.0,-1.0,0.28,0.0062,-0.96,-1.0,0.309,0.0,-0.9511,-1.0,0.5629,0.0062,-0.8265,-1.0,0.5878,0.0,-0.809,-1.0,0.7908,0.0062,-0.6121,-1.0,0.809,0.0,-0.5878,-1.0,0.9412,0.0062,-0.3378,-1.0,0.9511,0.0,-0.309,-1.0,0.9995,0.0062,-0.0304,-1.0,1.0,0.0,0.0,-1.0,0.96,0.0062,0.28,-1.0,0.9511,0.0,0.309,-1.0,0.8265,0.0062,0.5629,-1.0,0.809,0.0,0.5878,-1.0,0.6121,0.0062,0.7908,-1.0,0.5878,0.0,0.809,-1.0,0.3378,0.0062,0.9412,-1.0,0.309,0.0,0.9511,-1.0,0.0304,0.0062,0.9995,-1.0,0.0,0.0,1.0,-1.0,-0.1625,0.0307,0.9862,-1.0,-0.1732,0.0493,0.9836,-1.0,-0.4222,-0.0651,0.9042,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.1899,0.0651,0.9796,-1.0,-0.4023,-0.0754,0.9124,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.2109,0.0754,0.9746,-1.0,-0.3802,-0.0787,0.9215,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.234,0.0787,0.969,-1.0,-0.3582,-0.0745,0.9306,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.2572,0.0745,0.9635,-1.0,-0.3384,-0.0633,0.9389,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.2781,0.0633,0.9585,-1.0,-0.3226,-0.0459,0.9454,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.2947,0.0459,0.9545,-1.0,-0.3125,-0.0241,0.9496,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.3053,0.0241,0.9519,-1.0,-0.309,0.0,0.9511,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.309,0.0,0.9511,-1.0,-0.3125,0.0241,0.9496,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.3053,-0.0241,0.9519,-1.0,-0.3226,0.0459,0.9454,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.2947,-0.0459,0.9545,-1.0,-0.3384,0.0633,0.9389,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.2781,-0.0633,0.9585,-1.0,-0.3582,0.0745,0.9306,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.2572,-0.0745,0.9635,-1.0,-0.3802,0.0787,0.9215,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.234,-0.0787,0.969,-1.0,-0.4023,0.0754,0.9124,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.2109,-0.0754,0.9746,-1.0,-0.4222,0.0651,0.9042,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.1899,-0.0651,0.9796,-1.0,-0.438,0.0493,0.8976,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.1732,-0.0493,0.9836,-1.0,-0.4482,0.0307,0.8934,-1.0,-0.6121,0.0062,0.7908,-1.0,-0.8265,0.0062,0.5629,-1.0,-0.96,0.0062,0.28,-1.0,-0.9995,0.0062,-0.0304,-1.0,-0.9412,0.0062,-0.3378,-1.0,-0.7908,0.0062,-0.6121,-1.0,-0.5629,0.0062,-0.8265,-1.0,-0.28,0.0062,-0.96,-1.0,0.0304,0.0062,-0.9995,-1.0,0.3378,0.0062,-0.9412,-1.0,0.6121,0.0062,-0.7908,-1.0,0.8265,0.0062,-0.5629,-1.0,0.96,0.0062,-0.28,-1.0,0.9995,0.0062,0.0304,-1.0,0.9412,0.0062,0.3378,-1.0,0.7908,0.0062,0.6121,-1.0,0.5629,0.0062,0.8265,-1.0,0.28,0.0062,0.96,-1.0,-0.0304,0.0062,0.9995,-1.0,-0.1625,-0.0307,0.9862,-1.0,-0.454,0.0,0.891,-1.0,-0.7071,0.0,0.7071,-1.0,-0.891,0.0,0.454,-1.0,-0.9877,0.0,0.1564,-1.0,-0.9877,0.0,-0.1564,-1.0,-0.891,0.0,-0.454,-1.0,-0.7071,0.0,-0.7071,-1.0,-0.454,0.0,-0.891,-1.0,-0.1564,0.0,-0.9877,-1.0,0.1564,0.0,-0.9877,-1.0,0.454,0.0,-0.891,-1.0,0.7071,0.0,-0.7071,-1.0,0.891,0.0,-0.454,-1.0,0.9877,0.0,-0.1564,-1.0,0.9877,0.0,0.1564,-1.0,0.891,0.0,0.454,-1.0,0.7071,0.0,0.7071,-1.0,0.454,0.0,0.891,-1.0,0.1564,0.0,0.9877,-1.0,-0.1564,0.0,0.9877,-1.0,-0.454,0.0,0.891,-1.0,-0.7071,0.0,0.7071,-1.0,-0.891,0.0,0.454,-1.0,-0.9877,0.0,0.1564,-1.0,-0.9877,0.0,-0.1564,-1.0,-0.891,0.0,-0.454,-1.0,-0.7071,0.0,-0.7071,-1.0,-0.454,0.0,-0.891,-1.0,-0.1564,0.0,-0.9877,-1.0,0.1564,0.0,-0.9877,-1.0,0.454,0.0,-0.891,-1.0,0.7071,0.0,-0.7071,-1.0,0.891,0.0,-0.454,-1.0,0.9877,0.0,-0.1564,-1.0,0.9877,0.0,0.1564,-1.0,0.891,0.0,0.454,-1.0,0.7071,0.0,0.7071,-1.0,0.454,0.0,0.891,-1.0,0.1564,0.0,0.9877,-1.0,-0.1564,0.0,0.9877,-1.0],"uvs":[0.0,0.05,0.05,0.05,0.0,0.1,0.05,0.1,0.1,0.05,0.1,0.1,0.15,0.05,0.15,0.1,0.2,0.05,0.2,0.1,0.25,0.05,0.25,0.1,0.3,0.05,0.3,0.1,0.35,0.05,0.35,0.1,0.4,0.05,0.4,0.1,0.45,0.05,0.45,0.1,0.5,0.05,0.5,0.1,0.55,0.05,0.55,0.1,0.6,0.05,0.6,0.1,0.65,0.05,0.65,0.1,0.7,0.05,0.7,0.1,0.75,0.05,0.75,0.1,0.8,0.05,0.8,0.1,0.85,0.05,0.85,0.1,0.9,0.05,0.9,0.1,0.95,0.05,0.95,0.1,1.0,0.05,1.0,0.1,0.0,0.15,0.05,0.15,0.1,0.15,0.15,0.15,0.2,0.15,0.25,0.15,0.3,0.15,0.35,0.15,0.4,0.15,0.45,0.15,0.5,0.15,0.55,0.15,0.6,0.15,0.65,0.15,0.7,0.15,0.75,0.15,0.8,0.15,0.85,0.15,0.9,0.15,0.95,0.15,1.0,0.15,0.0,0.2,0.05,0.2,0.1,0.2,0.15,0.2,0.2,0.2,0.25,0.2,0.3,0.2,0.35,0.2,0.4,0.2,0.45,0.2,0.5,0.2,0.55,0.2,0.6,0.2,0.65,0.2,0.7,0.2,0.75,0.2,0.8,0.2,0.85,0.2,0.9,0.2,0.95,0.2,1.0,0.2,0.0,0.25,0.05,0.25,0.1,0.25,0.15,0.25,0.2,0.25,0.25,0.25,0.3,0.25,0.35,0.25,0.4,0.25,0.45,0.25,0.5,0.25,0.55,0.25,0.6,0.25,0.65,0.25,0.7,0.25,0.75,0.25,0.8,0.25,0.85,0.25,0.9,0.25,0.95,0.25,1.0,0.25,0.0,0.3,0.05,0.3,0.1,0.3,0.15,0.3,0.2,0.3,0.25,0.3,0.3,0.3,0.35,0.3,0.4,0.3,0.45,0.3,0.5,0.3,0.55,0.3,0.6,0.3,0.65,0.3,0.7,0.3,0.75,0.3,0.8,0.3,0.85,0.3,0.9,0.3,0.95,0.3,1.0,0.3,0.0,0.35,0.05,0.35,0.1,0.35,0.15,0.35,0.2,0.35,0.25,0.35,0.3,0.35,0.35,0.35,0.4,0.35,0.45,0.35,0.5,0.35,0.55,0.35,0.6,0.35,0.65,0.35,0.7,0.35,0.75,0.35,0.8,0.35,0.85,0.35,0.9,0.35,0.95,0.35,1.0,0.35,0.0,0.4,0.05,0.4,0.1,0.4,0.15,0.4,0.2,0.4,0.25,0.4,0.3,0.4,0.35,0.4,0.4,0.4,0.45,0.4,0.5,0.4,0.55,0.4,0.6,0.4,0.65,0.4,0.7,0.4,0.75,0.4,0.8,0.4,0.85,0.4,0.9,0.4,0.95,0.4,1.0,0.4,0.0,0.45,0.05,0.45,0.1,0.45,0.15,0.45,0.2,0.45,0.25,0.45,0.3,0.45,0.35,0.45,0.4,0.45,0.45,0.45,0.5,0.45,0.55,0.45,0.6,0.45,0.65,0.45,0.7,0.45,0.75,0.45,0.8,0.45,0.85,0.45,0.9,0.45,0.95,0.45,1.0,0.45,0.0,0.5,0.05,0.5,0.1,0.5,0.15,0.5,0.2,0.5,0.25,0.5,0.3,0.5,0.35,0.5,0.4,0.5,0.45,0.5,0.5,0.5,0.55,0.5,0.6,0.5,0.65,0.5,0.7,0.5,0.75,0.5,0.8,0.5,0.85,0.5,0.9,0.5,0.95,0.5,1.0,0.5,0.0,0.55,0.05,0.55,0.1,0.55,0.15,0.55,0.2,0.55,0.25,0.55,0.3,0.55,0.35,0.55,0.4,0.55,0.45,0.55,0.5,0.55,0.55,0.55,0.6,0.55,0.65,0.55,0.7,0.55,0.75,0.55,0.8,0.55,0.85,0.55,0.9,0.55,0.95,0.55,1.0,0.55,0.0,0.6,0.05,0.6,0.1,0.6,0.15,0.6,0.2,0.6,0.25,0.6,0.3,0.6,0.35,0.6,0.4,0.6,0.45,0.6,0.5,0.6,0.55,0.6,0.6,0.6,0.65,0.6,0.7,0.6,0.75,0.6,0.8,0.6,0.85,0.6,0.9,0.6,0.95,0.6,1.0,0.6,0.0,0.65,0.05,0.65,0.1,0.65,0.15,0.65,0.2,0.65,0.25,0.65,0.3,0.65,0.35,0.65,0.4,0.65,0.45,0.65,0.5,0.65,0.55,0.65,0.6,0.65,0.65,0.65,0.7,0.65,0.75,0.65,0.8,0.65,0.85,0.65,0.9,0.65,0.95,0.65,1.0,0.65,0.0,0.7,0.05,0.7,0.1,0.7,0.15,0.7,0.2,0.7,0.25,0.7,0.3,0.7,0.35,0.7,0.4,0.7,0.45,0.7,0.5,0.7,0.55,0.7,0.6,0.7,0.65,0.7,0.7,0.7,0.75,0.7,0.8,0.7,0.85,0.7,0.9,0.7,0.95,0.7,1.0,0.7,0.0,0.75,0.05,0.75,0.1,0.75,0.15,0.75,0.2,0.75,0.25,0.75,0.3,0.75,0.35,0.75,0.4,0.75,0.45,0.75,0.5,0.75,0.55,0.75,0.6,0.75,0.65,0.75,0.7,0.75,0.75,0.75,0.8,0.75,0.85,0.75,0.9,0.75,0.95,0.75,1.0,0.75,0.0,0.8,0.05,0.8,0.1,0.8,0.15,0.8,0.2,0.8,0.25,0.8,0.3,0.8,0.35,0.8,0.4,0.8,0.45,0.8,0.5,0.8,0.55,0.8,0.6,0.8,0.65,0.8,0.7,0.8,0.75,0.8,0.8,0.8,0.85,0.8,0.9,0.8,0.95,0.8,1.0,0.8,0.0,0.85,0.05,0.85,0.1,0.85,0.15,0.85,0.2,0.85,0.25,0.85,0.3,0.85,0.35,0.85,0.4,0.85,0.45,0.85,0.5,0.85,0.55,0.85,0.6,0.85,0.65,0.85,0.7,0.85,0.75,0.85,0.8,0.85,0.85,0.85,0.9,0.85,0.95,0.85,1.0,0.85,0.0,0.9,0.05,0.9,0.1,0.9,0.15,0.9,0.2,0.9,0.25,0.9,0.3,0.9,0.35,0.9,0.4,0.9,0.45,0.9,0.5,0.9,0.55,0.9,0.6,0.9,0.65,0.9,0.7,0.9,0.75,0.9,0.8,0.9,0.85,0.9,0.9,0.9,0.95,0.9,1.0,0.9,0.0,0.95,0.05,0.95,0.1,0.95,0.15,0.95,0.2,0.95,0.25,0.95,0.3,0.95,0.35,0.95,0.4,0.95,0.45,0.95,0.5,0.95,0.55,0.95,0.6,0.95,0.65,0.95,0.7,0.95,0.75,0.95,0.8,0.95,0.85,0.95,0.9,0.95,0.95,0.95,1.0,0.95,0.025,0.0,0.075,0.0,0.125,0.0,0.175,0.0,0.225,0.0,0.275,0.0,0.325,0.0,0.375,0.0,0.425,0.0,0.475,0.0,0.525,0.0,0.575,0.0,0.625,0.0,0.675,0.0,0.725,0.0,0.775,0.0,0.825,0.0,0.875,0.0,0.925,0.0,0.975,0.0,0.025,1.0,0.075,1.0,0.125,1.0,0.175,1.0,0.225,1.0,0.275,1.0,0.325,1.0,0.375,1.0,0.425,1.0,0.475,1.0,0.525,1.0,0.575,1.0,0.625,1.0,0.675,1.0,0.725,1.0,0.775,1.0,0.825,1.0,0.875,1.0,0.925,1.0,0.975,1.0],"uvs2":null,"colors":null,"hasVertexAlpha":false,"matricesIndices":null,"matricesWeights":null,"matricesIndicesExtra":null,"matricesWeightsExtra":null,"indices":[0,1,2,2,1,3,1,4,3,3,4,5,4,6,5,5,6,7,6,8,7,7,8,9,8,10,9,9,10,11,10,12,11,11,12,13,12,14,13,13,14,15,14,16,15,15,16,17,16,18,17,17,18,19,18,20,19,19,20,21,20,22,21,21,22,23,22,24,23,23,24,25,24,26,25,25,26,27,26,28,27,27,28,29,28,30,29,29,30,31,30,32,31,31,32,33,32,34,33,33,34,35,34,36,35,35,36,37,36,38,37,37,38,39,38,40,39,39,40,41,2,3,42,42,3,43,3,5,43,43,5,44,5,7,44,44,7,45,7,9,45,45,9,46,9,11,46,46,11,47,11,13,47,47,13,48,13,15,48,48,15,49,15,17,49,49,17,50,17,19,50,50,19,51,19,21,51,51,21,52,21,23,52,52,23,53,23,25,53,53,25,54,25,27,54,54,27,55,27,29,55,55,29,56,29,31,56,56,31,57,31,33,57,57,33,58,33,35,58,58,35,59,35,37,59,59,37,60,37,39,60,60,39,61,39,41,61,61,41,62,42,43,63,63,43,64,43,44,64,64,44,65,44,45,65,65,45,66,45,46,66,66,46,67,46,47,67,67,47,68,47,48,68,68,48,69,48,49,69,69,49,70,49,50,70,70,50,71,50,51,71,71,51,72,51,52,72,72,52,73,52,53,73,73,53,74,53,54,74,74,54,75,54,55,75,75,55,76,55,56,76,76,56,77,56,57,77,77,57,78,57,58,78,78,58,79,58,59,79,79,59,80,59,60,80,80,60,81,60,61,81,81,61,82,61,62,82,82,62,83,63,64,84,84,64,85,64,65,85,85,65,86,65,66,86,86,66,87,66,67,87,87,67,88,67,68,88,88,68,89,68,69,89,89,69,90,69,70,90,90,70,91,70,71,91,91,71,92,71,72,92,92,72,93,72,73,93,93,73,94,73,74,94,94,74,95,74,75,95,95,75,96,75,76,96,96,76,97,76,77,97,97,77,98,77,78,98,98,78,99,78,79,99,99,79,100,79,80,100,100,80,101,80,81,101,101,81,102,81,82,102,102,82,103,82,83,103,103,83,104,84,85,105,105,85,106,85,86,106,106,86,107,86,87,107,107,87,108,87,88,108,108,88,109,88,89,109,109,89,110,89,90,110,110,90,111,90,91,111,111,91,112,91,92,112,112,92,113,92,93,113,113,93,114,93,94,114,114,94,115,94,95,115,115,95,116,95,96,116,116,96,117,96,97,117,117,97,118,97,98,118,118,98,119,98,99,119,119,99,120,99,100,120,120,100,121,100,101,121,121,101,122,101,102,122,122,102,123,102,103,123,123,103,124,103,104,124,124,104,125,105,106,126,126,106,127,106,107,127,127,107,128,107,108,128,128,108,129,108,109,129,129,109,130,109,110,130,130,110,131,110,111,131,131,111,132,111,112,132,132,112,133,112,113,133,133,113,134,113,114,134,134,114,135,114,115,135,135,115,136,115,116,136,136,116,137,116,117,137,137,117,138,117,118,138,138,118,139,118,119,139,139,119,140,119,120,140,140,120,141,120,121,141,141,121,142,121,122,142,142,122,143,122,123,143,143,123,144,123,124,144,144,124,145,124,125,145,145,125,146,126,127,147,147,127,148,127,128,148,148,128,149,128,129,149,149,129,150,129,130,150,150,130,151,130,131,151,151,131,152,131,132,152,152,132,153,132,133,153,153,133,154,133,134,154,154,134,155,134,135,155,155,135,156,135,136,156,156,136,157,136,137,157,157,137,158,137,138,158,158,138,159,138,139,159,159,139,160,139,140,160,160,140,161,140,141,161,161,141,162,141,142,162,162,142,163,142,143,163,163,143,164,143,144,164,164,144,165,144,145,165,165,145,166,145,146,166,166,146,167,147,148,168,168,148,169,148,149,169,169,149,170,149,150,170,170,150,171,150,151,171,171,151,172,151,152,172,172,152,173,152,153,173,173,153,174,153,154,174,174,154,175,154,155,175,175,155,176,155,156,176,176,156,177,156,157,177,177,157,178,157,158,178,178,158,179,158,159,179,179,159,180,159,160,180,180,160,181,160,161,181,181,161,182,161,162,182,182,162,183,162,163,183,183,163,184,163,164,184,184,164,185,164,165,185,185,165,186,165,166,186,186,166,187,166,167,187,187,167,188,168,169,189,189,169,190,169,170,190,190,170,191,170,171,191,191,171,192,171,172,192,192,172,193,172,173,193,193,173,194,173,174,194,194,174,195,174,175,195,195,175,196,175,176,196,196,176,197,176,177,197,197,177,198,177,178,198,198,178,199,178,179,199,199,179,200,179,180,200,200,180,201,180,181,201,201,181,202,181,182,202,202,182,203,182,183,203,203,183,204,183,184,204,204,184,205,184,185,205,205,185,206,185,186,206,206,186,207,186,187,207,207,187,208,187,188,208,208,188,209,189,190,210,210,190,211,190,191,211,211,191,212,191,192,212,212,192,213,192,193,213,213,193,214,193,194,214,214,194,215,194,195,215,215,195,216,195,196,216,216,196,217,196,197,217,217,197,218,197,198,218,218,198,219,198,199,219,219,199,220,199,200,220,220,200,221,200,201,221,221,201,222,201,202,222,222,202,223,202,203,223,223,203,224,203,204,224,224,204,225,204,205,225,225,205,226,205,206,226,226,206,227,206,207,227,227,207,228,207,208,228,228,208,229,208,209,229,229,209,230,210,211,231,231,211,232,211,212,232,232,212,233,212,213,233,233,213,234,213,214,234,234,214,235,214,215,235,235,215,236,215,216,236,236,216,237,216,217,237,237,217,238,217,218,238,238,218,239,218,219,239,239,219,240,219,220,240,240,220,241,220,221,241,241,221,242,221,222,242,242,222,243,222,223,243,243,223,244,223,224,244,244,224,245,224,225,245,245,225,246,225,226,246,246,226,247,226,227,247,247,227,248,227,228,248,248,228,249,228,229,249,249,229,250,229,230,250,250,230,251,231,232,252,252,232,253,232,233,253,253,233,254,233,234,254,254,234,255,234,235,255,255,235,256,235,236,256,256,236,257,236,237,257,257,237,258,237,238,258,258,238,259,238,239,259,259,239,260,239,240,260,260,240,261,240,241,261,261,241,262,241,242,262,262,242,263,242,243,263,263,243,264,243,244,264,264,244,265,244,245,265,265,245,266,245,246,266,266,246,267,246,247,267,267,247,268,247,248,268,268,248,269,248,249,269,269,249,270,249,250,270,270,250,271,250,251,271,271,251,272,252,253,273,273,253,274,253,254,274,274,254,275,254,255,275,275,255,276,255,256,276,276,256,277,256,257,277,277,257,278,257,258,278,278,258,279,258,259,279,279,259,280,259,260,280,280,260,281,260,261,281,281,261,282,261,262,282,282,262,283,262,263,283,283,263,284,263,264,284,284,264,285,264,265,285,285,265,286,265,266,286,286,266,287,266,267,287,287,267,288,267,268,288,288,268,289,268,269,289,289,269,290,269,270,290,290,270,291,270,271,291,291,271,292,271,272,292,292,272,293,273,274,294,294,274,295,274,275,295,295,275,296,275,276,296,296,276,297,276,277,297,297,277,298,277,278,298,298,278,299,278,279,299,299,279,300,279,280,300,300,280,301,280,281,301,301,281,302,281,282,302,302,282,303,282,283,303,303,283,304,283,284,304,304,284,305,284,285,305,305,285,306,285,286,306,306,286,307,286,287,307,307,287,308,287,288,308,308,288,309,288,289,309,309,289,310,289,290,310,310,290,311,290,291,311,311,291,312,291,292,312,312,292,313,292,293,313,313,293,314,294,295,315,315,295,316,295,296,316,316,296,317,296,297,317,317,297,318,297,298,318,318,298,319,298,299,319,319,299,320,299,300,320,320,300,321,300,301,321,321,301,322,301,302,322,322,302,323,302,303,323,323,303,324,303,304,324,324,304,325,304,305,325,325,305,326,305,306,326,326,306,327,306,307,327,327,307,328,307,308,328,328,308,329,308,309,329,329,309,330,309,310,330,330,310,331,310,311,331,331,311,332,311,312,332,332,312,333,312,313,333,333,313,334,313,314,334,334,314,335,315,316,336,336,316,337,316,317,337,337,317,338,317,318,338,338,318,339,318,319,339,339,319,340,319,320,340,340,320,341,320,321,341,341,321,342,321,322,342,342,322,343,322,323,343,343,323,344,323,324,344,344,324,345,324,325,345,345,325,346,325,326,346,346,326,347,326,327,347,347,327,348,327,328,348,348,328,349,328,329,349,349,329,350,329,330,350,350,330,351,330,331,351,351,331,352,331,332,352,352,332,353,332,333,353,353,333,354,333,334,354,354,334,355,334,335,355,355,335,356,336,337,357,357,337,358,337,338,358,358,338,359,338,339,359,359,339,360,339,340,360,360,340,361,340,341,361,361,341,362,341,342,362,362,342,363,342,343,363,363,343,364,343,344,364,364,344,365,344,345,365,365,345,366,345,346,366,366,346,367,346,347,367,367,347,368,347,348,368,368,348,369,348,349,369,369,349,370,349,350,370,370,350,371,350,351,371,371,351,372,351,352,372,372,352,373,352,353,373,373,353,374,353,354,374,374,354,375,354,355,375,375,355,376,355,356,376,376,356,377,357,358,378,378,358,379,358,359,379,379,359,380,359,360,380,380,360,381,360,361,381,381,361,382,361,362,382,382,362,383,362,363,383,383,363,384,363,364,384,384,364,385,364,365,385,385,365,386,365,366,386,386,366,387,366,367,387,387,367,388,367,368,388,388,368,389,368,369,389,389,369,390,369,370,390,390,370,391,370,371,391,391,371,392,371,372,392,392,372,393,372,373,393,393,373,394,373,374,394,394,374,395,374,375,395,395,375,396,375,376,396,396,376,397,376,377,397,397,377,398,1,0,399,4,1,400,6,4,401,8,6,402,10,8,403,12,10,404,14,12,405,16,14,406,18,16,407,20,18,408,22,20,409,24,22,410,26,24,411,28,26,412,30,28,413,32,30,414,34,32,415,36,34,416,38,36,417,40,38,418,378,379,419,379,380,420,380,381,421,381,382,422,382,383,423,383,384,424,384,385,425,385,386,426,386,387,427,387,388,428,388,389,429,389,390,430,390,391,431,391,392,432,392,393,433,393,394,434,394,395,435,395,396,436,396,397,437,397,398,438],"receiveShadows":false,"infiniteDistance":false,"billboardMode":0,"visibility":1.0,"subMeshes":[{"materialIndex":0,"verticesStart":0,"verticesCount":439,"indexStart":0,"indexCount":2280}],"instances":null,"skeletonId":-1,"numBoneInfluencers":4,"applyFog":false,"lodMeshIds":null,"lodDistances":null,"lodCoverages":null,"rotation":null,"scaling":[1.0,1.0,1.0],"rotationQuaternion":[0.0,0.0,0.0,1.0],"actions":null,"checkCollisions":false,"pickable":true,"showBoundingBox":false,"showSubMeshesBoundingBox":false,"alphaIndex":0,"physicsImpostor":0,"physicsMass":0.0,"physicsFriction":0.0,"physicsRestitution":0.0,"name":"pSphere9","id":"92B858ED-49B8-E93D-F687-CF96ED0F335D","parentId":null,"position":[3.0,0.0,5.0],"animations":[],"autoAnimate":true,"autoAnimateFrom":1,"autoAnimateTo":200,"autoAnimateLoop":true,"metadata":{}},{"materialId":null,"isEnabled":true,"isVisible":true,"positions":null,"normals":null,"tangents":null,"uvs":null,"uvs2":null,"colors":null,"hasVertexAlpha":false,"matricesIndices":null,"matricesWeights":null,"matricesIndicesExtra":null,"matricesWeightsExtra":null,"indices":null,"receiveShadows":false,"infiniteDistance":false,"billboardMode":0,"visibility":1.0,"subMeshes":null,"instances":null,"skeletonId":-1,"numBoneInfluencers":4,"applyFog":false,"lodMeshIds":null,"lodDistances":null,"lodCoverages":null,"rotation":null,"scaling":[1.0,1.0,1.0],"rotationQuaternion":[0.0,0.0,-0.9848,0.1736],"actions":null,"checkCollisions":false,"pickable":true,"showBoundingBox":false,"showSubMeshesBoundingBox":false,"alphaIndex":0,"physicsImpostor":0,"physicsMass":0.0,"physicsFriction":0.0,"physicsRestitution":0.0,"name":"group","id":"12860585-4754-191F-7227-0A97E03C87D0","parentId":null,"position":[3.9739,5.8191,0.0],"animations":[],"autoAnimate":true,"autoAnimateFrom":1,"autoAnimateTo":200,"autoAnimateLoop":true,"metadata":null},{"materialId":null,"isEnabled":true,"isVisible":true,"positions":null,"normals":null,"tangents":null,"uvs":null,"uvs2":null,"colors":null,"hasVertexAlpha":false,"matricesIndices":null,"matricesWeights":null,"matricesIndicesExtra":null,"matricesWeightsExtra":null,"indices":null,"receiveShadows":false,"infiniteDistance":false,"billboardMode":0,"visibility":1.0,"subMeshes":null,"instances":null,"skeletonId":-1,"numBoneInfluencers":4,"applyFog":false,"lodMeshIds":null,"lodDistances":null,"lodCoverages":null,"rotation":null,"scaling":[1.0,1.0,1.0],"rotationQuaternion":[0.0,0.0,0.0,1.0],"actions":null,"checkCollisions":false,"pickable":true,"showBoundingBox":false,"showSubMeshesBoundingBox":false,"alphaIndex":0,"physicsImpostor":0,"physicsMass":0.0,"physicsFriction":0.0,"physicsRestitution":0.0,"name":"camera1_group","id":"137C4297-47D4-E2A5-10AF-0AA14915BEEF","parentId":null,"position":[0.0,0.0,0.0],"animations":[],"autoAnimate":true,"autoAnimateFrom":1,"autoAnimateTo":200,"autoAnimateLoop":true,"metadata":null},{"materialId":null,"isEnabled":true,"isVisible":true,"positions":null,"normals":null,"tangents":null,"uvs":null,"uvs2":null,"colors":null,"hasVertexAlpha":false,"matricesIndices":null,"matricesWeights":null,"matricesIndicesExtra":null,"matricesWeightsExtra":null,"indices":null,"receiveShadows":false,"infiniteDistance":false,"billboardMode":0,"visibility":1.0,"subMeshes":null,"instances":null,"skeletonId":-1,"numBoneInfluencers":4,"applyFog":false,"lodMeshIds":null,"lodDistances":null,"lodCoverages":null,"rotation":null,"scaling":[1.0,1.0,1.0],"rotationQuaternion":[0.0,0.0,0.0,1.0],"actions":null,"checkCollisions":false,"pickable":true,"showBoundingBox":false,"showSubMeshesBoundingBox":false,"alphaIndex":0,"physicsImpostor":0,"physicsMass":0.0,"physicsFriction":0.0,"physicsRestitution":0.0,"name":"camera1_aim","id":"804AFC66-43CA-DFCC-DF65-0C9686404386","parentId":"137C4297-47D4-E2A5-10AF-0AA14915BEEF","position":[4.7687,0.0,1.3759],"animations":[],"autoAnimate":true,"autoAnimateFrom":1,"autoAnimateTo":200,"autoAnimateLoop":true,"metadata":null}],"sounds":[],"materials":[{"customType":"BABYLON.StandardMaterial","ambient":[1.0,1.0,1.0],"diffuse":[1.0,0.0,0.0],"specular":[0.5,0.5,0.5],"emissive":[0.0,0.0,0.0],"specularPower":110.6414,"diffuseTexture":null,"diffuseFresnelParameters":null,"ambientTexture":null,"opacityTexture":null,"opacityFresnelParameters":null,"reflectionTexture":null,"reflectionFresnelParameters":null,"emissiveTexture":null,"lightmapTexture":null,"useLightmapAsShadowmap":false,"emissiveFresnelParameters":null,"specularTexture":null,"bumpTexture":null,"useSpecularOverAlpha":true,"disableLighting":false,"useEmissiveAsIllumination":false,"linkEmissiveWithDiffuse":true,"twoSidedLighting":false,"useGlossinessFromSpecularMapAlpha":false,"name":"PhongMaterial1","id":"9B24F14E-4F69-6849-B864-07B9E4A7E9FF","backFaceCulling":true,"wireframe":false,"alpha":1.0,"alphaMode":2,"maxSimultaneousLights":1,"metadata":{}},{"customType":"BABYLON.PBRMetallicRoughnessMaterial","baseColor":[0.0,1.0,0.0],"baseTexture":null,"metallic":0.0,"roughness":0.33,"metallicRoughnessTexture":null,"disableLighting":false,"invertNormalMapX":false,"invertNormalMapY":false,"normalTexture":null,"emissive":[0.0,0.0,0.0],"emissiveTexture":null,"occlusionStrength":1.0,"occlusionTexture":null,"transparencyMode":0,"doubleSided":false,"clearCoat":{"isEnabled":false,"intensity":1.0,"roughness":0.0,"indexOfRefraction":1.5,"texture":null,"bumpTexture":null,"isTintEnabled":false,"tintColor":[1.0,1.0,1.0],"tintThickness":1.0,"tintTexture":null},"name":"PhysicalMaterial1","id":"0E49D5E9-4200-91FB-CB7B-93B40CEF850E","backFaceCulling":true,"wireframe":false,"alpha":1.0,"alphaMode":2,"maxSimultaneousLights":1,"metadata":null},{"customType":"BABYLON.PBRMetallicRoughnessMaterial","baseColor":[0.0,0.0,0.8],"baseTexture":null,"metallic":0.0,"roughness":0.1,"metallicRoughnessTexture":null,"disableLighting":false,"invertNormalMapX":false,"invertNormalMapY":false,"normalTexture":null,"emissive":[0.0,0.0,0.0],"emissiveTexture":null,"occlusionStrength":1.0,"occlusionTexture":null,"transparencyMode":0,"doubleSided":false,"clearCoat":{"isEnabled":false,"intensity":1.0,"roughness":0.0,"indexOfRefraction":1.5,"texture":null,"bumpTexture":null,"isTintEnabled":false,"tintColor":[1.0,1.0,1.0],"tintThickness":1.0,"tintTexture":null},"name":"StandardArnoldMaterial1","id":"79CDF1A6-4409-889B-46A9-43A586C10D94","backFaceCulling":true,"wireframe":false,"alpha":1.0,"alphaMode":2,"maxSimultaneousLights":1,"metadata":null},{"customType":"BABYLON.StandardMaterial","ambient":[1.0,1.0,1.0],"diffuse":[0.5,0.5,0.5],"specular":[0.0,0.0,0.0],"emissive":[0.0,0.0,0.0],"specularPower":25.6,"diffuseTexture":null,"diffuseFresnelParameters":null,"ambientTexture":null,"opacityTexture":null,"opacityFresnelParameters":null,"reflectionTexture":null,"reflectionFresnelParameters":null,"emissiveTexture":null,"lightmapTexture":null,"useLightmapAsShadowmap":false,"emissiveFresnelParameters":null,"specularTexture":null,"bumpTexture":null,"useSpecularOverAlpha":true,"disableLighting":false,"useEmissiveAsIllumination":false,"linkEmissiveWithDiffuse":true,"twoSidedLighting":false,"useGlossinessFromSpecularMapAlpha":false,"name":"lambert1","id":"C33371E3-49CC-50AB-9549-80BD2392C0F8","backFaceCulling":true,"wireframe":false,"alpha":1.0,"alphaMode":2,"maxSimultaneousLights":1,"metadata":{}},{"customType":"BABYLON.PBRMetallicRoughnessMaterial","baseColor":[0.0,0.0,0.8],"baseTexture":null,"metallic":0.0,"roughness":0.1,"metallicRoughnessTexture":null,"disableLighting":false,"invertNormalMapX":false,"invertNormalMapY":false,"normalTexture":null,"emissive":[0.0,0.0,0.0],"emissiveTexture":null,"occlusionStrength":1.0,"occlusionTexture":null,"transparencyMode":0,"doubleSided":false,"clearCoat":{"isEnabled":false,"intensity":1.0,"roughness":0.0,"indexOfRefraction":1.5,"texture":null,"bumpTexture":null,"isTintEnabled":false,"tintColor":[1.0,1.0,1.0],"tintThickness":1.0,"tintTexture":null},"name":"StandardArnoldMaterial2","id":"EBBE5BCD-47D9-6B9A-E159-BEBFD0E5AAE4","backFaceCulling":true,"wireframe":false,"alpha":1.0,"alphaMode":2,"maxSimultaneousLights":2,"metadata":null},{"customType":"BABYLON.StandardMaterial","ambient":[1.0,1.0,1.0],"diffuse":[1.0,0.0,0.0],"specular":[0.5,0.5,0.5],"emissive":[0.0,0.0,0.0],"specularPower":110.6414,"diffuseTexture":null,"diffuseFresnelParameters":null,"ambientTexture":null,"opacityTexture":null,"opacityFresnelParameters":null,"reflectionTexture":null,"reflectionFresnelParameters":null,"emissiveTexture":null,"lightmapTexture":null,"useLightmapAsShadowmap":false,"emissiveFresnelParameters":null,"specularTexture":null,"bumpTexture":null,"useSpecularOverAlpha":true,"disableLighting":false,"useEmissiveAsIllumination":false,"linkEmissiveWithDiffuse":true,"twoSidedLighting":false,"useGlossinessFromSpecularMapAlpha":false,"name":"PhongMaterial2","id":"9B8FFE2E-45F3-A6A5-6DFB-0389B398548B","backFaceCulling":true,"wireframe":false,"alpha":1.0,"alphaMode":2,"maxSimultaneousLights":2,"metadata":{}},{"customType":"BABYLON.PBRMetallicRoughnessMaterial","baseColor":[0.0,1.0,0.0],"baseTexture":null,"metallic":0.0,"roughness":0.33,"metallicRoughnessTexture":null,"disableLighting":false,"invertNormalMapX":false,"invertNormalMapY":false,"normalTexture":null,"emissive":[0.0,0.0,0.0],"emissiveTexture":null,"occlusionStrength":1.0,"occlusionTexture":null,"transparencyMode":0,"doubleSided":false,"clearCoat":{"isEnabled":false,"intensity":1.0,"roughness":0.0,"indexOfRefraction":1.5,"texture":null,"bumpTexture":null,"isTintEnabled":false,"tintColor":[1.0,1.0,1.0],"tintThickness":1.0,"tintTexture":null},"name":"PhysicalMaterial2","id":"5835C398-485B-5E77-AF0F-80B486274418","backFaceCulling":true,"wireframe":false,"alpha":1.0,"alphaMode":2,"maxSimultaneousLights":2,"metadata":null}],"multiMaterials":[],"particleSystems":null,"lensFlareSystems":null,"shadowGenerators":[],"skeletons":[],"actions":null,"metadata":null,"workerCollisions":false}
\ No newline at end of file
diff --git a/Maya/Samples/babylon/BabylonMaterialAttributes/TransparencyMode/Blend/StandardArnoldMaterial_baseColor.png b/Maya/Samples/babylon/BabylonMaterialAttributes/TransparencyMode/Blend/StandardArnoldMaterial_baseColor.png
new file mode 100644
index 00000000..1ab543b0
Binary files /dev/null and b/Maya/Samples/babylon/BabylonMaterialAttributes/TransparencyMode/Blend/StandardArnoldMaterial_baseColor.png differ
diff --git a/Maya/Samples/babylon/BabylonMaterialAttributes/TransparencyMode/Blend/TransparencyMode_Blend.babylon b/Maya/Samples/babylon/BabylonMaterialAttributes/TransparencyMode/Blend/TransparencyMode_Blend.babylon
new file mode 100644
index 00000000..df30fddc
--- /dev/null
+++ b/Maya/Samples/babylon/BabylonMaterialAttributes/TransparencyMode/Blend/TransparencyMode_Blend.babylon
@@ -0,0 +1 @@
+{"producer":{"name":"Maya","version":"2018","exporter_version":"1.4.0","file":"TransparencyMode_Blend.babylon"},"autoClear":true,"clearColor":[0.2,0.2,0.3],"ambientColor":[0.0,0.0,0.0],"fogMode":0,"fogColor":null,"fogStart":0.0,"fogEnd":0.0,"fogDensity":0.0,"gravity":[0.0,0.0,-0.9],"physicsEngine":null,"physicsEnabled":false,"physicsGravity":null,"cameras":[{"isStereoscopicSideBySide":false,"lockedTargetId":"35B30E14-45FB-B1BA-1FA6-278686591A99","type":"FreeCamera","rotation":null,"rotationQuaternion":[0.3731,-0.1283,0.0522,0.9174],"fov":0.6606,"minZ":0.1,"maxZ":10000.0,"speed":1.0,"inertia":0.9,"interaxialDistance":0.0637,"checkCollisions":false,"applyGravity":false,"ellipsoid":null,"mode":0,"orthoLeft":null,"orthoRight":null,"orthoBottom":null,"orthoTop":null,"name":"camera1","id":"E53390EE-47F1-9DC8-583C-958D4A76A8E9","parentId":"445214BC-44AE-3B76-F9B7-F39619D41560","position":[7.3754,9.6129,-7.2917],"animations":[{"name":"rotationQuaternion animation","property":"rotationQuaternion","dataType":2,"enableBlending":false,"blendingSpeed":0.01,"loopBehavior":1,"framePerSecond":24,"keys":[{"frame":1,"values":[0.3731,-0.1283,0.0522,0.9174]},{"frame":200,"values":[0.3731,-0.1283,0.0522,0.9174]}]},{"name":"position animation","property":"position","dataType":1,"enableBlending":false,"blendingSpeed":0.01,"loopBehavior":1,"framePerSecond":24,"keys":[{"frame":1,"values":[7.3754,9.6129,-7.2917]},{"frame":200,"values":[7.3754,9.6129,-7.2917]}]},{"name":"visibility animation","property":"visibility","dataType":0,"enableBlending":false,"blendingSpeed":0.01,"loopBehavior":1,"framePerSecond":24,"keys":[{"frame":1,"values":[1.0]},{"frame":200,"values":[1.0]}]}],"autoAnimate":true,"autoAnimateFrom":1,"autoAnimateTo":200,"autoAnimateLoop":true,"metadata":{}}],"activeCameraID":"E53390EE-47F1-9DC8-583C-958D4A76A8E9","lights":[{"direction":[0.0,1.0,0.0],"type":3,"diffuse":[1.0,1.0,1.0],"specular":[1.0,1.0,1.0],"intensity":1.0,"range":3.40282347E+38,"exponent":0.0,"angle":0.0,"groundColor":[0.0,0.0,0.0],"excludedMeshesIds":null,"includedOnlyMeshesIds":null,"lightmapMode":null,"falloffType":null,"name":"Default light","id":"e82ae40a-0f49-44c6-87c3-b07789ac26e1","parentId":null,"position":[0.0,0.0,0.0],"animations":null,"autoAnimate":false,"autoAnimateFrom":0,"autoAnimateTo":0,"autoAnimateLoop":false,"metadata":null}],"meshes":[{"materialId":"9B24F14E-4F69-6849-B864-07B9E4A7E9FF","isEnabled":true,"isVisible":true,"positions":[0.1488,-0.9877,0.0483,0.1266,-0.9877,0.0919,0.2939,-0.9511,0.0955,0.25,-0.9511,0.1816,0.0919,-0.9877,0.1266,0.1816,-0.9511,0.25,0.0483,-0.9877,0.1488,0.0955,-0.9511,0.2939,0.0,-0.9877,0.1564,0.0,-0.9511,0.309,-0.0483,-0.9877,0.1488,-0.0955,-0.9511,0.2939,-0.0919,-0.9877,0.1266,-0.1816,-0.9511,0.25,-0.1266,-0.9877,0.0919,-0.25,-0.9511,0.1816,-0.1488,-0.9877,0.0483,-0.2939,-0.9511,0.0955,-0.1564,-0.9877,0.0,-0.309,-0.9511,0.0,-0.1488,-0.9877,-0.0483,-0.2939,-0.9511,-0.0955,-0.1266,-0.9877,-0.0919,-0.25,-0.9511,-0.1816,-0.0919,-0.9877,-0.1266,-0.1816,-0.9511,-0.25,-0.0483,-0.9877,-0.1488,-0.0955,-0.9511,-0.2939,0.0,-0.9877,-0.1564,0.0,-0.9511,-0.309,0.0483,-0.9877,-0.1488,0.0955,-0.9511,-0.2939,0.0919,-0.9877,-0.1266,0.1816,-0.9511,-0.25,0.1266,-0.9877,-0.0919,0.25,-0.9511,-0.1816,0.1488,-0.9877,-0.0483,0.2939,-0.9511,-0.0955,0.1564,-0.9877,0.0,0.309,-0.9511,0.0,0.1488,-0.9877,0.0483,0.2939,-0.9511,0.0955,0.4318,-0.891,0.1403,0.3673,-0.891,0.2668,0.2668,-0.891,0.3673,0.1403,-0.891,0.4318,0.0,-0.891,0.454,-0.1403,-0.891,0.4318,-0.2668,-0.891,0.3673,-0.3673,-0.891,0.2668,-0.4318,-0.891,0.1403,-0.454,-0.891,0.0,-0.4318,-0.891,-0.1403,-0.3673,-0.891,-0.2668,-0.2668,-0.891,-0.3673,-0.1403,-0.891,-0.4318,0.0,-0.891,-0.454,0.1403,-0.891,-0.4318,0.2668,-0.891,-0.3673,0.3673,-0.891,-0.2668,0.4318,-0.891,-0.1403,0.454,-0.891,0.0,0.4318,-0.891,0.1403,0.559,-0.809,0.1816,0.4755,-0.809,0.3455,0.3455,-0.809,0.4755,0.1816,-0.809,0.559,0.0,-0.809,0.5878,-0.1816,-0.809,0.559,-0.3455,-0.809,0.4755,-0.4755,-0.809,0.3455,-0.559,-0.809,0.1816,-0.5878,-0.809,0.0,-0.559,-0.809,-0.1816,-0.4755,-0.809,-0.3455,-0.3455,-0.809,-0.4755,-0.1816,-0.809,-0.559,0.0,-0.809,-0.5878,0.1816,-0.809,-0.559,0.3455,-0.809,-0.4755,0.4755,-0.809,-0.3455,0.559,-0.809,-0.1816,0.5878,-0.809,0.0,0.559,-0.809,0.1816,0.6725,-0.7071,0.2185,0.5721,-0.7071,0.4156,0.4156,-0.7071,0.5721,0.2185,-0.7071,0.6725,0.0,-0.7071,0.7071,-0.2185,-0.7071,0.6725,-0.4156,-0.7071,0.5721,-0.5721,-0.7071,0.4156,-0.6725,-0.7071,0.2185,-0.7071,-0.7071,0.0,-0.6725,-0.7071,-0.2185,-0.5721,-0.7071,-0.4156,-0.4156,-0.7071,-0.5721,-0.2185,-0.7071,-0.6725,0.0,-0.7071,-0.7071,0.2185,-0.7071,-0.6725,0.4156,-0.7071,-0.5721,0.5721,-0.7071,-0.4156,0.6725,-0.7071,-0.2185,0.7071,-0.7071,0.0,0.6725,-0.7071,0.2185,0.7694,-0.5878,0.25,0.6545,-0.5878,0.4755,0.4755,-0.5878,0.6545,0.25,-0.5878,0.7694,0.0,-0.5878,0.809,-0.25,-0.5878,0.7694,-0.4755,-0.5878,0.6545,-0.6545,-0.5878,0.4755,-0.7694,-0.5878,0.25,-0.809,-0.5878,0.0,-0.7694,-0.5878,-0.25,-0.6545,-0.5878,-0.4755,-0.4755,-0.5878,-0.6545,-0.25,-0.5878,-0.7694,0.0,-0.5878,-0.809,0.25,-0.5878,-0.7694,0.4755,-0.5878,-0.6545,0.6545,-0.5878,-0.4755,0.7694,-0.5878,-0.25,0.809,-0.5878,0.0,0.7694,-0.5878,0.25,0.8474,-0.454,0.2753,0.7208,-0.454,0.5237,0.5237,-0.454,0.7208,0.2753,-0.454,0.8474,0.0,-0.454,0.891,-0.2753,-0.454,0.8474,-0.5237,-0.454,0.7208,-0.7208,-0.454,0.5237,-0.8474,-0.454,0.2753,-0.891,-0.454,0.0,-0.8474,-0.454,-0.2753,-0.7208,-0.454,-0.5237,-0.5237,-0.454,-0.7208,-0.2753,-0.454,-0.8474,0.0,-0.454,-0.891,0.2753,-0.454,-0.8474,0.5237,-0.454,-0.7208,0.7208,-0.454,-0.5237,0.8474,-0.454,-0.2753,0.891,-0.454,0.0,0.8474,-0.454,0.2753,0.9045,-0.309,0.2939,0.7694,-0.309,0.559,0.559,-0.309,0.7694,0.2939,-0.309,0.9045,0.0,-0.309,0.9511,-0.2939,-0.309,0.9045,-0.559,-0.309,0.7694,-0.7694,-0.309,0.559,-0.9045,-0.309,0.2939,-0.9511,-0.309,0.0,-0.9045,-0.309,-0.2939,-0.7694,-0.309,-0.559,-0.559,-0.309,-0.7694,-0.2939,-0.309,-0.9045,0.0,-0.309,-0.9511,0.2939,-0.309,-0.9045,0.559,-0.309,-0.7694,0.7694,-0.309,-0.559,0.9045,-0.309,-0.2939,0.9511,-0.309,0.0,0.9045,-0.309,0.2939,0.9393,-0.1564,0.3052,0.7991,-0.1564,0.5805,0.5805,-0.1564,0.7991,0.3052,-0.1564,0.9393,0.0,-0.1564,0.9877,-0.3052,-0.1564,0.9393,-0.5805,-0.1564,0.7991,-0.7991,-0.1564,0.5805,-0.9393,-0.1564,0.3052,-0.9877,-0.1564,0.0,-0.9393,-0.1564,-0.3052,-0.7991,-0.1564,-0.5805,-0.5805,-0.1564,-0.7991,-0.3052,-0.1564,-0.9393,0.0,-0.1564,-0.9877,0.3052,-0.1564,-0.9393,0.5805,-0.1564,-0.7991,0.7991,-0.1564,-0.5805,0.9393,-0.1564,-0.3052,0.9877,-0.1564,0.0,0.9393,-0.1564,0.3052,0.9511,0.0,0.309,0.809,0.0,0.5878,0.5878,0.0,0.809,0.309,0.0,0.9511,0.0,0.0,1.0,-0.309,0.0,0.9511,-0.5878,0.0,0.809,-0.809,0.0,0.5878,-0.9511,0.0,0.309,-1.0,0.0,0.0,-0.9511,0.0,-0.309,-0.809,0.0,-0.5878,-0.5878,0.0,-0.809,-0.309,0.0,-0.9511,0.0,0.0,-1.0,0.309,0.0,-0.9511,0.5878,0.0,-0.809,0.809,0.0,-0.5878,0.9511,0.0,-0.309,1.0,0.0,0.0,0.9511,0.0,0.309,0.9393,0.1564,0.3052,0.7991,0.1564,0.5805,0.5805,0.1564,0.7991,0.3052,0.1564,0.9393,0.0,0.1564,0.9877,-0.3052,0.1564,0.9393,-0.5805,0.1564,0.7991,-0.7991,0.1564,0.5805,-0.9393,0.1564,0.3052,-0.9877,0.1564,0.0,-0.9393,0.1564,-0.3052,-0.7991,0.1564,-0.5805,-0.5805,0.1564,-0.7991,-0.3052,0.1564,-0.9393,0.0,0.1564,-0.9877,0.3052,0.1564,-0.9393,0.5805,0.1564,-0.7991,0.7991,0.1564,-0.5805,0.9393,0.1564,-0.3052,0.9877,0.1564,0.0,0.9393,0.1564,0.3052,0.9045,0.309,0.2939,0.7694,0.309,0.559,0.559,0.309,0.7694,0.2939,0.309,0.9045,0.0,0.309,0.9511,-0.2939,0.309,0.9045,-0.559,0.309,0.7694,-0.7694,0.309,0.559,-0.9045,0.309,0.2939,-0.9511,0.309,0.0,-0.9045,0.309,-0.2939,-0.7694,0.309,-0.559,-0.559,0.309,-0.7694,-0.2939,0.309,-0.9045,0.0,0.309,-0.9511,0.2939,0.309,-0.9045,0.559,0.309,-0.7694,0.7694,0.309,-0.559,0.9045,0.309,-0.2939,0.9511,0.309,0.0,0.9045,0.309,0.2939,0.8474,0.454,0.2753,0.7208,0.454,0.5237,0.5237,0.454,0.7208,0.2753,0.454,0.8474,0.0,0.454,0.891,-0.2753,0.454,0.8474,-0.5237,0.454,0.7208,-0.7208,0.454,0.5237,-0.8474,0.454,0.2753,-0.891,0.454,0.0,-0.8474,0.454,-0.2753,-0.7208,0.454,-0.5237,-0.5237,0.454,-0.7208,-0.2753,0.454,-0.8474,0.0,0.454,-0.891,0.2753,0.454,-0.8474,0.5237,0.454,-0.7208,0.7208,0.454,-0.5237,0.8474,0.454,-0.2753,0.891,0.454,0.0,0.8474,0.454,0.2753,0.7694,0.5878,0.25,0.6545,0.5878,0.4755,0.4755,0.5878,0.6545,0.25,0.5878,0.7694,0.0,0.5878,0.809,-0.25,0.5878,0.7694,-0.4755,0.5878,0.6545,-0.6545,0.5878,0.4755,-0.7694,0.5878,0.25,-0.809,0.5878,0.0,-0.7694,0.5878,-0.25,-0.6545,0.5878,-0.4755,-0.4755,0.5878,-0.6545,-0.25,0.5878,-0.7694,0.0,0.5878,-0.809,0.25,0.5878,-0.7694,0.4755,0.5878,-0.6545,0.6545,0.5878,-0.4755,0.7694,0.5878,-0.25,0.809,0.5878,0.0,0.7694,0.5878,0.25,0.6725,0.7071,0.2185,0.5721,0.7071,0.4156,0.4156,0.7071,0.5721,0.2185,0.7071,0.6725,0.0,0.7071,0.7071,-0.2185,0.7071,0.6725,-0.4156,0.7071,0.5721,-0.5721,0.7071,0.4156,-0.6725,0.7071,0.2185,-0.7071,0.7071,0.0,-0.6725,0.7071,-0.2185,-0.5721,0.7071,-0.4156,-0.4156,0.7071,-0.5721,-0.2185,0.7071,-0.6725,0.0,0.7071,-0.7071,0.2185,0.7071,-0.6725,0.4156,0.7071,-0.5721,0.5721,0.7071,-0.4156,0.6725,0.7071,-0.2185,0.7071,0.7071,0.0,0.6725,0.7071,0.2185,0.559,0.809,0.1816,0.4755,0.809,0.3455,0.3455,0.809,0.4755,0.1816,0.809,0.559,0.0,0.809,0.5878,-0.1816,0.809,0.559,-0.3455,0.809,0.4755,-0.4755,0.809,0.3455,-0.559,0.809,0.1816,-0.5878,0.809,0.0,-0.559,0.809,-0.1816,-0.4755,0.809,-0.3455,-0.3455,0.809,-0.4755,-0.1816,0.809,-0.559,0.0,0.809,-0.5878,0.1816,0.809,-0.559,0.3455,0.809,-0.4755,0.4755,0.809,-0.3455,0.559,0.809,-0.1816,0.5878,0.809,0.0,0.559,0.809,0.1816,0.4318,0.891,0.1403,0.3673,0.891,0.2668,0.2668,0.891,0.3673,0.1403,0.891,0.4318,0.0,0.891,0.454,-0.1403,0.891,0.4318,-0.2668,0.891,0.3673,-0.3673,0.891,0.2668,-0.4318,0.891,0.1403,-0.454,0.891,0.0,-0.4318,0.891,-0.1403,-0.3673,0.891,-0.2668,-0.2668,0.891,-0.3673,-0.1403,0.891,-0.4318,0.0,0.891,-0.454,0.1403,0.891,-0.4318,0.2668,0.891,-0.3673,0.3673,0.891,-0.2668,0.4318,0.891,-0.1403,0.454,0.891,0.0,0.4318,0.891,0.1403,0.2939,0.9511,0.0955,0.25,0.9511,0.1816,0.1816,0.9511,0.25,0.0955,0.9511,0.2939,0.0,0.9511,0.309,-0.0955,0.9511,0.2939,-0.1816,0.9511,0.25,-0.25,0.9511,0.1816,-0.2939,0.9511,0.0955,-0.309,0.9511,0.0,-0.2939,0.9511,-0.0955,-0.25,0.9511,-0.1816,-0.1816,0.9511,-0.25,-0.0955,0.9511,-0.2939,0.0,0.9511,-0.309,0.0955,0.9511,-0.2939,0.1816,0.9511,-0.25,0.25,0.9511,-0.1816,0.2939,0.9511,-0.0955,0.309,0.9511,0.0,0.2939,0.9511,0.0955,0.1488,0.9877,0.0483,0.1266,0.9877,0.0919,0.0919,0.9877,0.1266,0.0483,0.9877,0.1488,0.0,0.9877,0.1564,-0.0483,0.9877,0.1488,-0.0919,0.9877,0.1266,-0.1266,0.9877,0.0919,-0.1488,0.9877,0.0483,-0.1564,0.9877,0.0,-0.1488,0.9877,-0.0483,-0.1266,0.9877,-0.0919,-0.0919,0.9877,-0.1266,-0.0483,0.9877,-0.1488,0.0,0.9877,-0.1564,0.0483,0.9877,-0.1488,0.0919,0.9877,-0.1266,0.1266,0.9877,-0.0919,0.1488,0.9877,-0.0483,0.1564,0.9877,0.0,0.1488,0.9877,0.0483,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0],"normals":[0.1906,-0.9797,0.0619,0.1621,-0.9797,0.1178,0.3173,-0.9427,0.1031,0.2699,-0.9427,0.1961,0.1178,-0.9797,0.1621,0.1961,-0.9427,0.2699,0.0619,-0.9797,0.1906,0.1031,-0.9427,0.3173,0.0,-0.9797,0.2004,0.0,-0.9427,0.3336,-0.0619,-0.9797,0.1906,-0.1031,-0.9427,0.3173,-0.1178,-0.9797,0.1621,-0.1961,-0.9427,0.2699,-0.1621,-0.9797,0.1178,-0.2699,-0.9427,0.1961,-0.1906,-0.9797,0.0619,-0.3173,-0.9427,0.1031,-0.2004,-0.9797,0.0,-0.3336,-0.9427,0.0,-0.1906,-0.9797,-0.0619,-0.3173,-0.9427,-0.1031,-0.1621,-0.9797,-0.1178,-0.2699,-0.9427,-0.1961,-0.1178,-0.9797,-0.1621,-0.1961,-0.9427,-0.2699,-0.0619,-0.9797,-0.1906,-0.1031,-0.9427,-0.3173,0.0,-0.9797,-0.2004,0.0,-0.9427,-0.3336,0.0619,-0.9797,-0.1906,0.1031,-0.9427,-0.3173,0.1178,-0.9797,-0.1621,0.1961,-0.9427,-0.2699,0.1621,-0.9797,-0.1178,0.2699,-0.9427,-0.1961,0.1906,-0.9797,-0.0619,0.3173,-0.9427,-0.1031,0.2004,-0.9797,0.0,0.3336,-0.9427,0.0,0.1906,-0.9797,0.0619,0.3173,-0.9427,0.1031,0.4477,-0.8823,0.1455,0.3808,-0.8823,0.2767,0.2767,-0.8823,0.3808,0.1455,-0.8823,0.4477,0.0,-0.8823,0.4708,-0.1455,-0.8823,0.4477,-0.2767,-0.8823,0.3808,-0.3808,-0.8823,0.2767,-0.4477,-0.8823,0.1455,-0.4708,-0.8823,0.0,-0.4477,-0.8823,-0.1455,-0.3808,-0.8823,-0.2767,-0.2767,-0.8823,-0.3808,-0.1455,-0.8823,-0.4477,0.0,-0.8823,-0.4708,0.1455,-0.8823,-0.4477,0.2767,-0.8823,-0.3808,0.3808,-0.8823,-0.2767,0.4477,-0.8823,-0.1455,0.4708,-0.8823,0.0,0.4477,-0.8823,0.1455,0.5703,-0.8003,0.1853,0.4851,-0.8003,0.3525,0.3525,-0.8003,0.4851,0.1853,-0.8003,0.5703,0.0,-0.8003,0.5997,-0.1853,-0.8003,0.5703,-0.3525,-0.8003,0.4851,-0.4851,-0.8003,0.3525,-0.5703,-0.8003,0.1853,-0.5997,-0.8003,0.0,-0.5703,-0.8003,-0.1853,-0.4851,-0.8003,-0.3525,-0.3525,-0.8003,-0.4851,-0.1853,-0.8003,-0.5703,0.0,-0.8003,-0.5997,0.1853,-0.8003,-0.5703,0.3525,-0.8003,-0.4851,0.4851,-0.8003,-0.3525,0.5703,-0.8003,-0.1853,0.5997,-0.8003,0.0,0.5703,-0.8003,0.1853,0.6803,-0.6988,0.221,0.5787,-0.6988,0.4205,0.4205,-0.6988,0.5787,0.221,-0.6988,0.6803,0.0,-0.6988,0.7153,-0.221,-0.6988,0.6803,-0.4205,-0.6988,0.5787,-0.5787,-0.6988,0.4205,-0.6803,-0.6988,0.221,-0.7153,-0.6988,0.0,-0.6803,-0.6988,-0.221,-0.5787,-0.6988,-0.4205,-0.4205,-0.6988,-0.5787,-0.221,-0.6988,-0.6803,0.0,-0.6988,-0.7153,0.221,-0.6988,-0.6803,0.4205,-0.6988,-0.5787,0.5787,-0.6988,-0.4205,0.6803,-0.6988,-0.221,0.7153,-0.6988,0.0,0.6803,-0.6988,0.221,0.7745,-0.5804,0.2516,0.6588,-0.5804,0.4787,0.4787,-0.5804,0.6588,0.2516,-0.5804,0.7745,0.0,-0.5804,0.8143,-0.2516,-0.5804,0.7745,-0.4787,-0.5804,0.6588,-0.6588,-0.5804,0.4787,-0.7745,-0.5804,0.2516,-0.8143,-0.5804,0.0,-0.7745,-0.5804,-0.2516,-0.6588,-0.5804,-0.4787,-0.4787,-0.5804,-0.6588,-0.2516,-0.5804,-0.7745,0.0,-0.5804,-0.8143,0.2516,-0.5804,-0.7745,0.4787,-0.5804,-0.6588,0.6588,-0.5804,-0.4787,0.7745,-0.5804,-0.2516,0.8143,-0.5804,0.0,0.7745,-0.5804,0.2516,0.8503,-0.448,0.2763,0.7233,-0.448,0.5255,0.5255,-0.448,0.7233,0.2763,-0.448,0.8503,0.0,-0.448,0.894,-0.2763,-0.448,0.8503,-0.5255,-0.448,0.7233,-0.7233,-0.448,0.5255,-0.8503,-0.448,0.2763,-0.894,-0.448,0.0,-0.8503,-0.448,-0.2763,-0.7233,-0.448,-0.5255,-0.5255,-0.448,-0.7233,-0.2763,-0.448,-0.8503,0.0,-0.448,-0.894,0.2763,-0.448,-0.8503,0.5255,-0.448,-0.7233,0.7233,-0.448,-0.5255,0.8503,-0.448,-0.2763,0.894,-0.448,0.0,0.8503,-0.448,0.2763,0.9058,-0.3048,0.2943,0.7705,-0.3048,0.5598,0.5598,-0.3048,0.7705,0.2943,-0.3048,0.9058,0.0,-0.3048,0.9524,-0.2943,-0.3048,0.9058,-0.5598,-0.3048,0.7705,-0.7705,-0.3048,0.5598,-0.9058,-0.3048,0.2943,-0.9524,-0.3048,0.0,-0.9058,-0.3048,-0.2943,-0.7705,-0.3048,-0.5598,-0.5598,-0.3048,-0.7705,-0.2943,-0.3048,-0.9058,0.0,-0.3048,-0.9524,0.2943,-0.3048,-0.9058,0.5598,-0.3048,-0.7705,0.7705,-0.3048,-0.5598,0.9058,-0.3048,-0.2943,0.9524,-0.3048,0.0,0.9058,-0.3048,0.2943,0.9397,-0.1542,0.3053,0.7993,-0.1542,0.5808,0.5808,-0.1542,0.7993,0.3053,-0.1542,0.9397,0.0,-0.1542,0.988,-0.3053,-0.1542,0.9397,-0.5808,-0.1542,0.7993,-0.7993,-0.1542,0.5808,-0.9397,-0.1542,0.3053,-0.988,-0.1542,0.0,-0.9397,-0.1542,-0.3053,-0.7993,-0.1542,-0.5808,-0.5808,-0.1542,-0.7993,-0.3053,-0.1542,-0.9397,0.0,-0.1542,-0.988,0.3053,-0.1542,-0.9397,0.5808,-0.1542,-0.7993,0.7993,-0.1542,-0.5808,0.9397,-0.1542,-0.3053,0.988,-0.1542,0.0,0.9397,-0.1542,0.3053,0.9511,0.0,0.309,0.809,0.0,0.5878,0.5878,0.0,0.809,0.309,0.0,0.9511,0.0,0.0,1.0,-0.309,0.0,0.9511,-0.5878,0.0,0.809,-0.809,0.0,0.5878,-0.9511,0.0,0.309,-1.0,0.0,0.0,-0.9511,0.0,-0.309,-0.809,0.0,-0.5878,-0.5878,0.0,-0.809,-0.309,0.0,-0.9511,0.0,0.0,-1.0,0.309,0.0,-0.9511,0.5878,0.0,-0.809,0.809,0.0,-0.5878,0.9511,0.0,-0.309,1.0,0.0,0.0,0.9511,0.0,0.309,0.9397,0.1542,0.3053,0.7993,0.1542,0.5808,0.5808,0.1542,0.7993,0.3053,0.1542,0.9397,0.0,0.1542,0.988,-0.3053,0.1542,0.9397,-0.5808,0.1542,0.7993,-0.7993,0.1542,0.5808,-0.9397,0.1542,0.3053,-0.988,0.1542,0.0,-0.9397,0.1542,-0.3053,-0.7993,0.1542,-0.5808,-0.5808,0.1542,-0.7993,-0.3053,0.1542,-0.9397,0.0,0.1542,-0.988,0.3053,0.1542,-0.9397,0.5808,0.1542,-0.7993,0.7993,0.1542,-0.5808,0.9397,0.1542,-0.3053,0.988,0.1542,0.0,0.9397,0.1542,0.3053,0.9058,0.3048,0.2943,0.7705,0.3048,0.5598,0.5598,0.3048,0.7705,0.2943,0.3048,0.9058,0.0,0.3048,0.9524,-0.2943,0.3048,0.9058,-0.5598,0.3048,0.7705,-0.7705,0.3048,0.5598,-0.9058,0.3048,0.2943,-0.9524,0.3048,0.0,-0.9058,0.3048,-0.2943,-0.7705,0.3048,-0.5598,-0.5598,0.3048,-0.7705,-0.2943,0.3048,-0.9058,0.0,0.3048,-0.9524,0.2943,0.3048,-0.9058,0.5598,0.3048,-0.7705,0.7705,0.3048,-0.5598,0.9058,0.3048,-0.2943,0.9524,0.3048,0.0,0.9058,0.3048,0.2943,0.8503,0.448,0.2763,0.7233,0.448,0.5255,0.5255,0.448,0.7233,0.2763,0.448,0.8503,0.0,0.448,0.894,-0.2763,0.448,0.8503,-0.5255,0.448,0.7233,-0.7233,0.448,0.5255,-0.8503,0.448,0.2763,-0.894,0.448,0.0,-0.8503,0.448,-0.2763,-0.7233,0.448,-0.5255,-0.5255,0.448,-0.7233,-0.2763,0.448,-0.8503,0.0,0.448,-0.894,0.2763,0.448,-0.8503,0.5255,0.448,-0.7233,0.7233,0.448,-0.5255,0.8503,0.448,-0.2763,0.894,0.448,0.0,0.8503,0.448,0.2763,0.7745,0.5804,0.2516,0.6588,0.5804,0.4787,0.4787,0.5804,0.6588,0.2516,0.5804,0.7745,0.0,0.5804,0.8143,-0.2516,0.5804,0.7745,-0.4787,0.5804,0.6588,-0.6588,0.5804,0.4787,-0.7745,0.5804,0.2516,-0.8143,0.5804,0.0,-0.7745,0.5804,-0.2516,-0.6588,0.5804,-0.4787,-0.4787,0.5804,-0.6588,-0.2516,0.5804,-0.7745,0.0,0.5804,-0.8143,0.2516,0.5804,-0.7745,0.4787,0.5804,-0.6588,0.6588,0.5804,-0.4787,0.7745,0.5804,-0.2516,0.8143,0.5804,0.0,0.7745,0.5804,0.2516,0.6803,0.6988,0.221,0.5787,0.6988,0.4205,0.4205,0.6988,0.5787,0.221,0.6988,0.6803,0.0,0.6988,0.7153,-0.221,0.6988,0.6803,-0.4205,0.6988,0.5787,-0.5787,0.6988,0.4205,-0.6803,0.6988,0.221,-0.7153,0.6988,0.0,-0.6803,0.6988,-0.221,-0.5787,0.6988,-0.4205,-0.4205,0.6988,-0.5787,-0.221,0.6988,-0.6803,0.0,0.6988,-0.7153,0.221,0.6988,-0.6803,0.4205,0.6988,-0.5787,0.5787,0.6988,-0.4205,0.6803,0.6988,-0.221,0.7153,0.6988,0.0,0.6803,0.6988,0.221,0.5703,0.8003,0.1853,0.4851,0.8003,0.3525,0.3525,0.8003,0.4851,0.1853,0.8003,0.5703,0.0,0.8003,0.5997,-0.1853,0.8003,0.5703,-0.3525,0.8003,0.4851,-0.4851,0.8003,0.3525,-0.5703,0.8003,0.1853,-0.5997,0.8003,0.0,-0.5703,0.8003,-0.1853,-0.4851,0.8003,-0.3525,-0.3525,0.8003,-0.4851,-0.1853,0.8003,-0.5703,0.0,0.8003,-0.5997,0.1853,0.8003,-0.5703,0.3525,0.8003,-0.4851,0.4851,0.8003,-0.3525,0.5703,0.8003,-0.1853,0.5997,0.8003,0.0,0.5703,0.8003,0.1853,0.4477,0.8823,0.1455,0.3808,0.8823,0.2767,0.2767,0.8823,0.3808,0.1455,0.8823,0.4477,0.0,0.8823,0.4708,-0.1455,0.8823,0.4477,-0.2767,0.8823,0.3808,-0.3808,0.8823,0.2767,-0.4477,0.8823,0.1455,-0.4708,0.8823,0.0,-0.4477,0.8823,-0.1455,-0.3808,0.8823,-0.2767,-0.2767,0.8823,-0.3808,-0.1455,0.8823,-0.4477,0.0,0.8823,-0.4708,0.1455,0.8823,-0.4477,0.2767,0.8823,-0.3808,0.3808,0.8823,-0.2767,0.4477,0.8823,-0.1455,0.4708,0.8823,0.0,0.4477,0.8823,0.1455,0.3173,0.9427,0.1031,0.2699,0.9427,0.1961,0.1961,0.9427,0.2699,0.1031,0.9427,0.3173,0.0,0.9427,0.3336,-0.1031,0.9427,0.3173,-0.1961,0.9427,0.2699,-0.2699,0.9427,0.1961,-0.3173,0.9427,0.1031,-0.3336,0.9427,0.0,-0.3173,0.9427,-0.1031,-0.2699,0.9427,-0.1961,-0.1961,0.9427,-0.2699,-0.1031,0.9427,-0.3173,0.0,0.9427,-0.3336,0.1031,0.9427,-0.3173,0.1961,0.9427,-0.2699,0.2699,0.9427,-0.1961,0.3173,0.9427,-0.1031,0.3336,0.9427,0.0,0.3173,0.9427,0.1031,0.1906,0.9797,0.0619,0.1621,0.9797,0.1178,0.1178,0.9797,0.1621,0.0619,0.9797,0.1906,0.0,0.9797,0.2004,-0.0619,0.9797,0.1906,-0.1178,0.9797,0.1621,-0.1621,0.9797,0.1178,-0.1906,0.9797,0.0619,-0.2004,0.9797,0.0,-0.1906,0.9797,-0.0619,-0.1621,0.9797,-0.1178,-0.1178,0.9797,-0.1621,-0.0619,0.9797,-0.1906,0.0,0.9797,-0.2004,0.0619,0.9797,-0.1906,0.1178,0.9797,-0.1621,0.1621,0.9797,-0.1178,0.1906,0.9797,-0.0619,0.2004,0.9797,0.0,0.1906,0.9797,0.0619,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0],"tangents":[-0.4482,-0.0307,0.8934,-1.0,-0.5629,0.0062,0.8265,-1.0,-0.438,-0.0493,0.8976,-1.0,-0.5878,0.0,0.809,-1.0,-0.7908,0.0062,0.6121,-1.0,-0.809,0.0,0.5878,-1.0,-0.9412,0.0062,0.3378,-1.0,-0.9511,0.0,0.309,-1.0,-0.9995,0.0062,0.0304,-1.0,-1.0,0.0,0.0,-1.0,-0.96,0.0062,-0.28,-1.0,-0.9511,0.0,-0.309,-1.0,-0.8265,0.0062,-0.5629,-1.0,-0.809,0.0,-0.5878,-1.0,-0.6121,0.0062,-0.7908,-1.0,-0.5878,0.0,-0.809,-1.0,-0.3378,0.0062,-0.9412,-1.0,-0.309,0.0,-0.9511,-1.0,-0.0304,0.0062,-0.9995,-1.0,0.0,0.0,-1.0,-1.0,0.28,0.0062,-0.96,-1.0,0.309,0.0,-0.9511,-1.0,0.5629,0.0062,-0.8265,-1.0,0.5878,0.0,-0.809,-1.0,0.7908,0.0062,-0.6121,-1.0,0.809,0.0,-0.5878,-1.0,0.9412,0.0062,-0.3378,-1.0,0.9511,0.0,-0.309,-1.0,0.9995,0.0062,-0.0304,-1.0,1.0,0.0,0.0,-1.0,0.96,0.0062,0.28,-1.0,0.9511,0.0,0.309,-1.0,0.8265,0.0062,0.5629,-1.0,0.809,0.0,0.5878,-1.0,0.6121,0.0062,0.7908,-1.0,0.5878,0.0,0.809,-1.0,0.3378,0.0062,0.9412,-1.0,0.309,0.0,0.9511,-1.0,0.0304,0.0062,0.9995,-1.0,0.0,0.0,1.0,-1.0,-0.1625,0.0307,0.9862,-1.0,-0.1732,0.0493,0.9836,-1.0,-0.4222,-0.0651,0.9042,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.1899,0.0651,0.9796,-1.0,-0.4023,-0.0754,0.9124,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.2109,0.0754,0.9746,-1.0,-0.3802,-0.0787,0.9215,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.234,0.0787,0.969,-1.0,-0.3582,-0.0745,0.9306,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.2572,0.0745,0.9635,-1.0,-0.3384,-0.0633,0.9389,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.2781,0.0633,0.9585,-1.0,-0.3226,-0.0459,0.9454,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.2947,0.0459,0.9545,-1.0,-0.3125,-0.0241,0.9496,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.3053,0.0241,0.9519,-1.0,-0.309,0.0,0.9511,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.309,0.0,0.9511,-1.0,-0.3125,0.0241,0.9496,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.3053,-0.0241,0.9519,-1.0,-0.3226,0.0459,0.9454,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.2947,-0.0459,0.9545,-1.0,-0.3384,0.0633,0.9389,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.2781,-0.0633,0.9585,-1.0,-0.3582,0.0745,0.9306,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.2572,-0.0745,0.9635,-1.0,-0.3802,0.0787,0.9215,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.234,-0.0787,0.969,-1.0,-0.4023,0.0754,0.9124,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.2109,-0.0754,0.9746,-1.0,-0.4222,0.0651,0.9042,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.1899,-0.0651,0.9796,-1.0,-0.438,0.0493,0.8976,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.1732,-0.0493,0.9836,-1.0,-0.4482,0.0307,0.8934,-1.0,-0.6121,0.0062,0.7908,-1.0,-0.8265,0.0062,0.5629,-1.0,-0.96,0.0062,0.28,-1.0,-0.9995,0.0062,-0.0304,-1.0,-0.9412,0.0062,-0.3378,-1.0,-0.7908,0.0062,-0.6121,-1.0,-0.5629,0.0062,-0.8265,-1.0,-0.28,0.0062,-0.96,-1.0,0.0304,0.0062,-0.9995,-1.0,0.3378,0.0062,-0.9412,-1.0,0.6121,0.0062,-0.7908,-1.0,0.8265,0.0062,-0.5629,-1.0,0.96,0.0062,-0.28,-1.0,0.9995,0.0062,0.0304,-1.0,0.9412,0.0062,0.3378,-1.0,0.7908,0.0062,0.6121,-1.0,0.5629,0.0062,0.8265,-1.0,0.28,0.0062,0.96,-1.0,-0.0304,0.0062,0.9995,-1.0,-0.1625,-0.0307,0.9862,-1.0,-0.454,0.0,0.891,-1.0,-0.7071,0.0,0.7071,-1.0,-0.891,0.0,0.454,-1.0,-0.9877,0.0,0.1564,-1.0,-0.9877,0.0,-0.1564,-1.0,-0.891,0.0,-0.454,-1.0,-0.7071,0.0,-0.7071,-1.0,-0.454,0.0,-0.891,-1.0,-0.1564,0.0,-0.9877,-1.0,0.1564,0.0,-0.9877,-1.0,0.454,0.0,-0.891,-1.0,0.7071,0.0,-0.7071,-1.0,0.891,0.0,-0.454,-1.0,0.9877,0.0,-0.1564,-1.0,0.9877,0.0,0.1564,-1.0,0.891,0.0,0.454,-1.0,0.7071,0.0,0.7071,-1.0,0.454,0.0,0.891,-1.0,0.1564,0.0,0.9877,-1.0,-0.1564,0.0,0.9877,-1.0,-0.454,0.0,0.891,-1.0,-0.7071,0.0,0.7071,-1.0,-0.891,0.0,0.454,-1.0,-0.9877,0.0,0.1564,-1.0,-0.9877,0.0,-0.1564,-1.0,-0.891,0.0,-0.454,-1.0,-0.7071,0.0,-0.7071,-1.0,-0.454,0.0,-0.891,-1.0,-0.1564,0.0,-0.9877,-1.0,0.1564,0.0,-0.9877,-1.0,0.454,0.0,-0.891,-1.0,0.7071,0.0,-0.7071,-1.0,0.891,0.0,-0.454,-1.0,0.9877,0.0,-0.1564,-1.0,0.9877,0.0,0.1564,-1.0,0.891,0.0,0.454,-1.0,0.7071,0.0,0.7071,-1.0,0.454,0.0,0.891,-1.0,0.1564,0.0,0.9877,-1.0,-0.1564,0.0,0.9877,-1.0],"uvs":[0.0,0.05,0.05,0.05,0.0,0.1,0.05,0.1,0.1,0.05,0.1,0.1,0.15,0.05,0.15,0.1,0.2,0.05,0.2,0.1,0.25,0.05,0.25,0.1,0.3,0.05,0.3,0.1,0.35,0.05,0.35,0.1,0.4,0.05,0.4,0.1,0.45,0.05,0.45,0.1,0.5,0.05,0.5,0.1,0.55,0.05,0.55,0.1,0.6,0.05,0.6,0.1,0.65,0.05,0.65,0.1,0.7,0.05,0.7,0.1,0.75,0.05,0.75,0.1,0.8,0.05,0.8,0.1,0.85,0.05,0.85,0.1,0.9,0.05,0.9,0.1,0.95,0.05,0.95,0.1,1.0,0.05,1.0,0.1,0.0,0.15,0.05,0.15,0.1,0.15,0.15,0.15,0.2,0.15,0.25,0.15,0.3,0.15,0.35,0.15,0.4,0.15,0.45,0.15,0.5,0.15,0.55,0.15,0.6,0.15,0.65,0.15,0.7,0.15,0.75,0.15,0.8,0.15,0.85,0.15,0.9,0.15,0.95,0.15,1.0,0.15,0.0,0.2,0.05,0.2,0.1,0.2,0.15,0.2,0.2,0.2,0.25,0.2,0.3,0.2,0.35,0.2,0.4,0.2,0.45,0.2,0.5,0.2,0.55,0.2,0.6,0.2,0.65,0.2,0.7,0.2,0.75,0.2,0.8,0.2,0.85,0.2,0.9,0.2,0.95,0.2,1.0,0.2,0.0,0.25,0.05,0.25,0.1,0.25,0.15,0.25,0.2,0.25,0.25,0.25,0.3,0.25,0.35,0.25,0.4,0.25,0.45,0.25,0.5,0.25,0.55,0.25,0.6,0.25,0.65,0.25,0.7,0.25,0.75,0.25,0.8,0.25,0.85,0.25,0.9,0.25,0.95,0.25,1.0,0.25,0.0,0.3,0.05,0.3,0.1,0.3,0.15,0.3,0.2,0.3,0.25,0.3,0.3,0.3,0.35,0.3,0.4,0.3,0.45,0.3,0.5,0.3,0.55,0.3,0.6,0.3,0.65,0.3,0.7,0.3,0.75,0.3,0.8,0.3,0.85,0.3,0.9,0.3,0.95,0.3,1.0,0.3,0.0,0.35,0.05,0.35,0.1,0.35,0.15,0.35,0.2,0.35,0.25,0.35,0.3,0.35,0.35,0.35,0.4,0.35,0.45,0.35,0.5,0.35,0.55,0.35,0.6,0.35,0.65,0.35,0.7,0.35,0.75,0.35,0.8,0.35,0.85,0.35,0.9,0.35,0.95,0.35,1.0,0.35,0.0,0.4,0.05,0.4,0.1,0.4,0.15,0.4,0.2,0.4,0.25,0.4,0.3,0.4,0.35,0.4,0.4,0.4,0.45,0.4,0.5,0.4,0.55,0.4,0.6,0.4,0.65,0.4,0.7,0.4,0.75,0.4,0.8,0.4,0.85,0.4,0.9,0.4,0.95,0.4,1.0,0.4,0.0,0.45,0.05,0.45,0.1,0.45,0.15,0.45,0.2,0.45,0.25,0.45,0.3,0.45,0.35,0.45,0.4,0.45,0.45,0.45,0.5,0.45,0.55,0.45,0.6,0.45,0.65,0.45,0.7,0.45,0.75,0.45,0.8,0.45,0.85,0.45,0.9,0.45,0.95,0.45,1.0,0.45,0.0,0.5,0.05,0.5,0.1,0.5,0.15,0.5,0.2,0.5,0.25,0.5,0.3,0.5,0.35,0.5,0.4,0.5,0.45,0.5,0.5,0.5,0.55,0.5,0.6,0.5,0.65,0.5,0.7,0.5,0.75,0.5,0.8,0.5,0.85,0.5,0.9,0.5,0.95,0.5,1.0,0.5,0.0,0.55,0.05,0.55,0.1,0.55,0.15,0.55,0.2,0.55,0.25,0.55,0.3,0.55,0.35,0.55,0.4,0.55,0.45,0.55,0.5,0.55,0.55,0.55,0.6,0.55,0.65,0.55,0.7,0.55,0.75,0.55,0.8,0.55,0.85,0.55,0.9,0.55,0.95,0.55,1.0,0.55,0.0,0.6,0.05,0.6,0.1,0.6,0.15,0.6,0.2,0.6,0.25,0.6,0.3,0.6,0.35,0.6,0.4,0.6,0.45,0.6,0.5,0.6,0.55,0.6,0.6,0.6,0.65,0.6,0.7,0.6,0.75,0.6,0.8,0.6,0.85,0.6,0.9,0.6,0.95,0.6,1.0,0.6,0.0,0.65,0.05,0.65,0.1,0.65,0.15,0.65,0.2,0.65,0.25,0.65,0.3,0.65,0.35,0.65,0.4,0.65,0.45,0.65,0.5,0.65,0.55,0.65,0.6,0.65,0.65,0.65,0.7,0.65,0.75,0.65,0.8,0.65,0.85,0.65,0.9,0.65,0.95,0.65,1.0,0.65,0.0,0.7,0.05,0.7,0.1,0.7,0.15,0.7,0.2,0.7,0.25,0.7,0.3,0.7,0.35,0.7,0.4,0.7,0.45,0.7,0.5,0.7,0.55,0.7,0.6,0.7,0.65,0.7,0.7,0.7,0.75,0.7,0.8,0.7,0.85,0.7,0.9,0.7,0.95,0.7,1.0,0.7,0.0,0.75,0.05,0.75,0.1,0.75,0.15,0.75,0.2,0.75,0.25,0.75,0.3,0.75,0.35,0.75,0.4,0.75,0.45,0.75,0.5,0.75,0.55,0.75,0.6,0.75,0.65,0.75,0.7,0.75,0.75,0.75,0.8,0.75,0.85,0.75,0.9,0.75,0.95,0.75,1.0,0.75,0.0,0.8,0.05,0.8,0.1,0.8,0.15,0.8,0.2,0.8,0.25,0.8,0.3,0.8,0.35,0.8,0.4,0.8,0.45,0.8,0.5,0.8,0.55,0.8,0.6,0.8,0.65,0.8,0.7,0.8,0.75,0.8,0.8,0.8,0.85,0.8,0.9,0.8,0.95,0.8,1.0,0.8,0.0,0.85,0.05,0.85,0.1,0.85,0.15,0.85,0.2,0.85,0.25,0.85,0.3,0.85,0.35,0.85,0.4,0.85,0.45,0.85,0.5,0.85,0.55,0.85,0.6,0.85,0.65,0.85,0.7,0.85,0.75,0.85,0.8,0.85,0.85,0.85,0.9,0.85,0.95,0.85,1.0,0.85,0.0,0.9,0.05,0.9,0.1,0.9,0.15,0.9,0.2,0.9,0.25,0.9,0.3,0.9,0.35,0.9,0.4,0.9,0.45,0.9,0.5,0.9,0.55,0.9,0.6,0.9,0.65,0.9,0.7,0.9,0.75,0.9,0.8,0.9,0.85,0.9,0.9,0.9,0.95,0.9,1.0,0.9,0.0,0.95,0.05,0.95,0.1,0.95,0.15,0.95,0.2,0.95,0.25,0.95,0.3,0.95,0.35,0.95,0.4,0.95,0.45,0.95,0.5,0.95,0.55,0.95,0.6,0.95,0.65,0.95,0.7,0.95,0.75,0.95,0.8,0.95,0.85,0.95,0.9,0.95,0.95,0.95,1.0,0.95,0.025,0.0,0.075,0.0,0.125,0.0,0.175,0.0,0.225,0.0,0.275,0.0,0.325,0.0,0.375,0.0,0.425,0.0,0.475,0.0,0.525,0.0,0.575,0.0,0.625,0.0,0.675,0.0,0.725,0.0,0.775,0.0,0.825,0.0,0.875,0.0,0.925,0.0,0.975,0.0,0.025,1.0,0.075,1.0,0.125,1.0,0.175,1.0,0.225,1.0,0.275,1.0,0.325,1.0,0.375,1.0,0.425,1.0,0.475,1.0,0.525,1.0,0.575,1.0,0.625,1.0,0.675,1.0,0.725,1.0,0.775,1.0,0.825,1.0,0.875,1.0,0.925,1.0,0.975,1.0],"uvs2":null,"colors":null,"hasVertexAlpha":false,"matricesIndices":null,"matricesWeights":null,"matricesIndicesExtra":null,"matricesWeightsExtra":null,"indices":[0,1,2,2,1,3,1,4,3,3,4,5,4,6,5,5,6,7,6,8,7,7,8,9,8,10,9,9,10,11,10,12,11,11,12,13,12,14,13,13,14,15,14,16,15,15,16,17,16,18,17,17,18,19,18,20,19,19,20,21,20,22,21,21,22,23,22,24,23,23,24,25,24,26,25,25,26,27,26,28,27,27,28,29,28,30,29,29,30,31,30,32,31,31,32,33,32,34,33,33,34,35,34,36,35,35,36,37,36,38,37,37,38,39,38,40,39,39,40,41,2,3,42,42,3,43,3,5,43,43,5,44,5,7,44,44,7,45,7,9,45,45,9,46,9,11,46,46,11,47,11,13,47,47,13,48,13,15,48,48,15,49,15,17,49,49,17,50,17,19,50,50,19,51,19,21,51,51,21,52,21,23,52,52,23,53,23,25,53,53,25,54,25,27,54,54,27,55,27,29,55,55,29,56,29,31,56,56,31,57,31,33,57,57,33,58,33,35,58,58,35,59,35,37,59,59,37,60,37,39,60,60,39,61,39,41,61,61,41,62,42,43,63,63,43,64,43,44,64,64,44,65,44,45,65,65,45,66,45,46,66,66,46,67,46,47,67,67,47,68,47,48,68,68,48,69,48,49,69,69,49,70,49,50,70,70,50,71,50,51,71,71,51,72,51,52,72,72,52,73,52,53,73,73,53,74,53,54,74,74,54,75,54,55,75,75,55,76,55,56,76,76,56,77,56,57,77,77,57,78,57,58,78,78,58,79,58,59,79,79,59,80,59,60,80,80,60,81,60,61,81,81,61,82,61,62,82,82,62,83,63,64,84,84,64,85,64,65,85,85,65,86,65,66,86,86,66,87,66,67,87,87,67,88,67,68,88,88,68,89,68,69,89,89,69,90,69,70,90,90,70,91,70,71,91,91,71,92,71,72,92,92,72,93,72,73,93,93,73,94,73,74,94,94,74,95,74,75,95,95,75,96,75,76,96,96,76,97,76,77,97,97,77,98,77,78,98,98,78,99,78,79,99,99,79,100,79,80,100,100,80,101,80,81,101,101,81,102,81,82,102,102,82,103,82,83,103,103,83,104,84,85,105,105,85,106,85,86,106,106,86,107,86,87,107,107,87,108,87,88,108,108,88,109,88,89,109,109,89,110,89,90,110,110,90,111,90,91,111,111,91,112,91,92,112,112,92,113,92,93,113,113,93,114,93,94,114,114,94,115,94,95,115,115,95,116,95,96,116,116,96,117,96,97,117,117,97,118,97,98,118,118,98,119,98,99,119,119,99,120,99,100,120,120,100,121,100,101,121,121,101,122,101,102,122,122,102,123,102,103,123,123,103,124,103,104,124,124,104,125,105,106,126,126,106,127,106,107,127,127,107,128,107,108,128,128,108,129,108,109,129,129,109,130,109,110,130,130,110,131,110,111,131,131,111,132,111,112,132,132,112,133,112,113,133,133,113,134,113,114,134,134,114,135,114,115,135,135,115,136,115,116,136,136,116,137,116,117,137,137,117,138,117,118,138,138,118,139,118,119,139,139,119,140,119,120,140,140,120,141,120,121,141,141,121,142,121,122,142,142,122,143,122,123,143,143,123,144,123,124,144,144,124,145,124,125,145,145,125,146,126,127,147,147,127,148,127,128,148,148,128,149,128,129,149,149,129,150,129,130,150,150,130,151,130,131,151,151,131,152,131,132,152,152,132,153,132,133,153,153,133,154,133,134,154,154,134,155,134,135,155,155,135,156,135,136,156,156,136,157,136,137,157,157,137,158,137,138,158,158,138,159,138,139,159,159,139,160,139,140,160,160,140,161,140,141,161,161,141,162,141,142,162,162,142,163,142,143,163,163,143,164,143,144,164,164,144,165,144,145,165,165,145,166,145,146,166,166,146,167,147,148,168,168,148,169,148,149,169,169,149,170,149,150,170,170,150,171,150,151,171,171,151,172,151,152,172,172,152,173,152,153,173,173,153,174,153,154,174,174,154,175,154,155,175,175,155,176,155,156,176,176,156,177,156,157,177,177,157,178,157,158,178,178,158,179,158,159,179,179,159,180,159,160,180,180,160,181,160,161,181,181,161,182,161,162,182,182,162,183,162,163,183,183,163,184,163,164,184,184,164,185,164,165,185,185,165,186,165,166,186,186,166,187,166,167,187,187,167,188,168,169,189,189,169,190,169,170,190,190,170,191,170,171,191,191,171,192,171,172,192,192,172,193,172,173,193,193,173,194,173,174,194,194,174,195,174,175,195,195,175,196,175,176,196,196,176,197,176,177,197,197,177,198,177,178,198,198,178,199,178,179,199,199,179,200,179,180,200,200,180,201,180,181,201,201,181,202,181,182,202,202,182,203,182,183,203,203,183,204,183,184,204,204,184,205,184,185,205,205,185,206,185,186,206,206,186,207,186,187,207,207,187,208,187,188,208,208,188,209,189,190,210,210,190,211,190,191,211,211,191,212,191,192,212,212,192,213,192,193,213,213,193,214,193,194,214,214,194,215,194,195,215,215,195,216,195,196,216,216,196,217,196,197,217,217,197,218,197,198,218,218,198,219,198,199,219,219,199,220,199,200,220,220,200,221,200,201,221,221,201,222,201,202,222,222,202,223,202,203,223,223,203,224,203,204,224,224,204,225,204,205,225,225,205,226,205,206,226,226,206,227,206,207,227,227,207,228,207,208,228,228,208,229,208,209,229,229,209,230,210,211,231,231,211,232,211,212,232,232,212,233,212,213,233,233,213,234,213,214,234,234,214,235,214,215,235,235,215,236,215,216,236,236,216,237,216,217,237,237,217,238,217,218,238,238,218,239,218,219,239,239,219,240,219,220,240,240,220,241,220,221,241,241,221,242,221,222,242,242,222,243,222,223,243,243,223,244,223,224,244,244,224,245,224,225,245,245,225,246,225,226,246,246,226,247,226,227,247,247,227,248,227,228,248,248,228,249,228,229,249,249,229,250,229,230,250,250,230,251,231,232,252,252,232,253,232,233,253,253,233,254,233,234,254,254,234,255,234,235,255,255,235,256,235,236,256,256,236,257,236,237,257,257,237,258,237,238,258,258,238,259,238,239,259,259,239,260,239,240,260,260,240,261,240,241,261,261,241,262,241,242,262,262,242,263,242,243,263,263,243,264,243,244,264,264,244,265,244,245,265,265,245,266,245,246,266,266,246,267,246,247,267,267,247,268,247,248,268,268,248,269,248,249,269,269,249,270,249,250,270,270,250,271,250,251,271,271,251,272,252,253,273,273,253,274,253,254,274,274,254,275,254,255,275,275,255,276,255,256,276,276,256,277,256,257,277,277,257,278,257,258,278,278,258,279,258,259,279,279,259,280,259,260,280,280,260,281,260,261,281,281,261,282,261,262,282,282,262,283,262,263,283,283,263,284,263,264,284,284,264,285,264,265,285,285,265,286,265,266,286,286,266,287,266,267,287,287,267,288,267,268,288,288,268,289,268,269,289,289,269,290,269,270,290,290,270,291,270,271,291,291,271,292,271,272,292,292,272,293,273,274,294,294,274,295,274,275,295,295,275,296,275,276,296,296,276,297,276,277,297,297,277,298,277,278,298,298,278,299,278,279,299,299,279,300,279,280,300,300,280,301,280,281,301,301,281,302,281,282,302,302,282,303,282,283,303,303,283,304,283,284,304,304,284,305,284,285,305,305,285,306,285,286,306,306,286,307,286,287,307,307,287,308,287,288,308,308,288,309,288,289,309,309,289,310,289,290,310,310,290,311,290,291,311,311,291,312,291,292,312,312,292,313,292,293,313,313,293,314,294,295,315,315,295,316,295,296,316,316,296,317,296,297,317,317,297,318,297,298,318,318,298,319,298,299,319,319,299,320,299,300,320,320,300,321,300,301,321,321,301,322,301,302,322,322,302,323,302,303,323,323,303,324,303,304,324,324,304,325,304,305,325,325,305,326,305,306,326,326,306,327,306,307,327,327,307,328,307,308,328,328,308,329,308,309,329,329,309,330,309,310,330,330,310,331,310,311,331,331,311,332,311,312,332,332,312,333,312,313,333,333,313,334,313,314,334,334,314,335,315,316,336,336,316,337,316,317,337,337,317,338,317,318,338,338,318,339,318,319,339,339,319,340,319,320,340,340,320,341,320,321,341,341,321,342,321,322,342,342,322,343,322,323,343,343,323,344,323,324,344,344,324,345,324,325,345,345,325,346,325,326,346,346,326,347,326,327,347,347,327,348,327,328,348,348,328,349,328,329,349,349,329,350,329,330,350,350,330,351,330,331,351,351,331,352,331,332,352,352,332,353,332,333,353,353,333,354,333,334,354,354,334,355,334,335,355,355,335,356,336,337,357,357,337,358,337,338,358,358,338,359,338,339,359,359,339,360,339,340,360,360,340,361,340,341,361,361,341,362,341,342,362,362,342,363,342,343,363,363,343,364,343,344,364,364,344,365,344,345,365,365,345,366,345,346,366,366,346,367,346,347,367,367,347,368,347,348,368,368,348,369,348,349,369,369,349,370,349,350,370,370,350,371,350,351,371,371,351,372,351,352,372,372,352,373,352,353,373,373,353,374,353,354,374,374,354,375,354,355,375,375,355,376,355,356,376,376,356,377,357,358,378,378,358,379,358,359,379,379,359,380,359,360,380,380,360,381,360,361,381,381,361,382,361,362,382,382,362,383,362,363,383,383,363,384,363,364,384,384,364,385,364,365,385,385,365,386,365,366,386,386,366,387,366,367,387,387,367,388,367,368,388,388,368,389,368,369,389,389,369,390,369,370,390,390,370,391,370,371,391,391,371,392,371,372,392,392,372,393,372,373,393,393,373,394,373,374,394,394,374,395,374,375,395,395,375,396,375,376,396,396,376,397,376,377,397,397,377,398,1,0,399,4,1,400,6,4,401,8,6,402,10,8,403,12,10,404,14,12,405,16,14,406,18,16,407,20,18,408,22,20,409,24,22,410,26,24,411,28,26,412,30,28,413,32,30,414,34,32,415,36,34,416,38,36,417,40,38,418,378,379,419,379,380,420,380,381,421,381,382,422,382,383,423,383,384,424,384,385,425,385,386,426,386,387,427,387,388,428,388,389,429,389,390,430,390,391,431,391,392,432,392,393,433,393,394,434,394,395,435,395,396,436,396,397,437,397,398,438],"receiveShadows":false,"infiniteDistance":false,"billboardMode":0,"visibility":1.0,"subMeshes":[{"materialIndex":0,"verticesStart":0,"verticesCount":439,"indexStart":0,"indexCount":2280}],"instances":null,"skeletonId":-1,"numBoneInfluencers":4,"applyFog":false,"lodMeshIds":null,"lodDistances":null,"lodCoverages":null,"rotation":null,"scaling":[1.0,1.0,1.0],"rotationQuaternion":[0.0,0.1736,0.0,0.9848],"actions":null,"checkCollisions":false,"pickable":true,"showBoundingBox":false,"showSubMeshesBoundingBox":false,"alphaIndex":0,"physicsImpostor":0,"physicsMass":0.0,"physicsFriction":0.0,"physicsRestitution":0.0,"name":"pSphere1","id":"39830D1B-4903-0C71-E956-0EBDE718A360","parentId":null,"position":[0.0,0.0,0.0],"animations":[],"autoAnimate":true,"autoAnimateFrom":1,"autoAnimateTo":200,"autoAnimateLoop":true,"metadata":{}},{"materialId":"0E49D5E9-4200-91FB-CB7B-93B40CEF850E","isEnabled":true,"isVisible":true,"positions":[0.1488,-0.9877,0.0483,0.1266,-0.9877,0.0919,0.2939,-0.9511,0.0955,0.25,-0.9511,0.1816,0.0919,-0.9877,0.1266,0.1816,-0.9511,0.25,0.0483,-0.9877,0.1488,0.0955,-0.9511,0.2939,0.0,-0.9877,0.1564,0.0,-0.9511,0.309,-0.0483,-0.9877,0.1488,-0.0955,-0.9511,0.2939,-0.0919,-0.9877,0.1266,-0.1816,-0.9511,0.25,-0.1266,-0.9877,0.0919,-0.25,-0.9511,0.1816,-0.1488,-0.9877,0.0483,-0.2939,-0.9511,0.0955,-0.1564,-0.9877,0.0,-0.309,-0.9511,0.0,-0.1488,-0.9877,-0.0483,-0.2939,-0.9511,-0.0955,-0.1266,-0.9877,-0.0919,-0.25,-0.9511,-0.1816,-0.0919,-0.9877,-0.1266,-0.1816,-0.9511,-0.25,-0.0483,-0.9877,-0.1488,-0.0955,-0.9511,-0.2939,0.0,-0.9877,-0.1564,0.0,-0.9511,-0.309,0.0483,-0.9877,-0.1488,0.0955,-0.9511,-0.2939,0.0919,-0.9877,-0.1266,0.1816,-0.9511,-0.25,0.1266,-0.9877,-0.0919,0.25,-0.9511,-0.1816,0.1488,-0.9877,-0.0483,0.2939,-0.9511,-0.0955,0.1564,-0.9877,0.0,0.309,-0.9511,0.0,0.1488,-0.9877,0.0483,0.2939,-0.9511,0.0955,0.4318,-0.891,0.1403,0.3673,-0.891,0.2668,0.2668,-0.891,0.3673,0.1403,-0.891,0.4318,0.0,-0.891,0.454,-0.1403,-0.891,0.4318,-0.2668,-0.891,0.3673,-0.3673,-0.891,0.2668,-0.4318,-0.891,0.1403,-0.454,-0.891,0.0,-0.4318,-0.891,-0.1403,-0.3673,-0.891,-0.2668,-0.2668,-0.891,-0.3673,-0.1403,-0.891,-0.4318,0.0,-0.891,-0.454,0.1403,-0.891,-0.4318,0.2668,-0.891,-0.3673,0.3673,-0.891,-0.2668,0.4318,-0.891,-0.1403,0.454,-0.891,0.0,0.4318,-0.891,0.1403,0.559,-0.809,0.1816,0.4755,-0.809,0.3455,0.3455,-0.809,0.4755,0.1816,-0.809,0.559,0.0,-0.809,0.5878,-0.1816,-0.809,0.559,-0.3455,-0.809,0.4755,-0.4755,-0.809,0.3455,-0.559,-0.809,0.1816,-0.5878,-0.809,0.0,-0.559,-0.809,-0.1816,-0.4755,-0.809,-0.3455,-0.3455,-0.809,-0.4755,-0.1816,-0.809,-0.559,0.0,-0.809,-0.5878,0.1816,-0.809,-0.559,0.3455,-0.809,-0.4755,0.4755,-0.809,-0.3455,0.559,-0.809,-0.1816,0.5878,-0.809,0.0,0.559,-0.809,0.1816,0.6725,-0.7071,0.2185,0.5721,-0.7071,0.4156,0.4156,-0.7071,0.5721,0.2185,-0.7071,0.6725,0.0,-0.7071,0.7071,-0.2185,-0.7071,0.6725,-0.4156,-0.7071,0.5721,-0.5721,-0.7071,0.4156,-0.6725,-0.7071,0.2185,-0.7071,-0.7071,0.0,-0.6725,-0.7071,-0.2185,-0.5721,-0.7071,-0.4156,-0.4156,-0.7071,-0.5721,-0.2185,-0.7071,-0.6725,0.0,-0.7071,-0.7071,0.2185,-0.7071,-0.6725,0.4156,-0.7071,-0.5721,0.5721,-0.7071,-0.4156,0.6725,-0.7071,-0.2185,0.7071,-0.7071,0.0,0.6725,-0.7071,0.2185,0.7694,-0.5878,0.25,0.6545,-0.5878,0.4755,0.4755,-0.5878,0.6545,0.25,-0.5878,0.7694,0.0,-0.5878,0.809,-0.25,-0.5878,0.7694,-0.4755,-0.5878,0.6545,-0.6545,-0.5878,0.4755,-0.7694,-0.5878,0.25,-0.809,-0.5878,0.0,-0.7694,-0.5878,-0.25,-0.6545,-0.5878,-0.4755,-0.4755,-0.5878,-0.6545,-0.25,-0.5878,-0.7694,0.0,-0.5878,-0.809,0.25,-0.5878,-0.7694,0.4755,-0.5878,-0.6545,0.6545,-0.5878,-0.4755,0.7694,-0.5878,-0.25,0.809,-0.5878,0.0,0.7694,-0.5878,0.25,0.8474,-0.454,0.2753,0.7208,-0.454,0.5237,0.5237,-0.454,0.7208,0.2753,-0.454,0.8474,0.0,-0.454,0.891,-0.2753,-0.454,0.8474,-0.5237,-0.454,0.7208,-0.7208,-0.454,0.5237,-0.8474,-0.454,0.2753,-0.891,-0.454,0.0,-0.8474,-0.454,-0.2753,-0.7208,-0.454,-0.5237,-0.5237,-0.454,-0.7208,-0.2753,-0.454,-0.8474,0.0,-0.454,-0.891,0.2753,-0.454,-0.8474,0.5237,-0.454,-0.7208,0.7208,-0.454,-0.5237,0.8474,-0.454,-0.2753,0.891,-0.454,0.0,0.8474,-0.454,0.2753,0.9045,-0.309,0.2939,0.7694,-0.309,0.559,0.559,-0.309,0.7694,0.2939,-0.309,0.9045,0.0,-0.309,0.9511,-0.2939,-0.309,0.9045,-0.559,-0.309,0.7694,-0.7694,-0.309,0.559,-0.9045,-0.309,0.2939,-0.9511,-0.309,0.0,-0.9045,-0.309,-0.2939,-0.7694,-0.309,-0.559,-0.559,-0.309,-0.7694,-0.2939,-0.309,-0.9045,0.0,-0.309,-0.9511,0.2939,-0.309,-0.9045,0.559,-0.309,-0.7694,0.7694,-0.309,-0.559,0.9045,-0.309,-0.2939,0.9511,-0.309,0.0,0.9045,-0.309,0.2939,0.9393,-0.1564,0.3052,0.7991,-0.1564,0.5805,0.5805,-0.1564,0.7991,0.3052,-0.1564,0.9393,0.0,-0.1564,0.9877,-0.3052,-0.1564,0.9393,-0.5805,-0.1564,0.7991,-0.7991,-0.1564,0.5805,-0.9393,-0.1564,0.3052,-0.9877,-0.1564,0.0,-0.9393,-0.1564,-0.3052,-0.7991,-0.1564,-0.5805,-0.5805,-0.1564,-0.7991,-0.3052,-0.1564,-0.9393,0.0,-0.1564,-0.9877,0.3052,-0.1564,-0.9393,0.5805,-0.1564,-0.7991,0.7991,-0.1564,-0.5805,0.9393,-0.1564,-0.3052,0.9877,-0.1564,0.0,0.9393,-0.1564,0.3052,0.9511,0.0,0.309,0.809,0.0,0.5878,0.5878,0.0,0.809,0.309,0.0,0.9511,0.0,0.0,1.0,-0.309,0.0,0.9511,-0.5878,0.0,0.809,-0.809,0.0,0.5878,-0.9511,0.0,0.309,-1.0,0.0,0.0,-0.9511,0.0,-0.309,-0.809,0.0,-0.5878,-0.5878,0.0,-0.809,-0.309,0.0,-0.9511,0.0,0.0,-1.0,0.309,0.0,-0.9511,0.5878,0.0,-0.809,0.809,0.0,-0.5878,0.9511,0.0,-0.309,1.0,0.0,0.0,0.9511,0.0,0.309,0.9393,0.1564,0.3052,0.7991,0.1564,0.5805,0.5805,0.1564,0.7991,0.3052,0.1564,0.9393,0.0,0.1564,0.9877,-0.3052,0.1564,0.9393,-0.5805,0.1564,0.7991,-0.7991,0.1564,0.5805,-0.9393,0.1564,0.3052,-0.9877,0.1564,0.0,-0.9393,0.1564,-0.3052,-0.7991,0.1564,-0.5805,-0.5805,0.1564,-0.7991,-0.3052,0.1564,-0.9393,0.0,0.1564,-0.9877,0.3052,0.1564,-0.9393,0.5805,0.1564,-0.7991,0.7991,0.1564,-0.5805,0.9393,0.1564,-0.3052,0.9877,0.1564,0.0,0.9393,0.1564,0.3052,0.9045,0.309,0.2939,0.7694,0.309,0.559,0.559,0.309,0.7694,0.2939,0.309,0.9045,0.0,0.309,0.9511,-0.2939,0.309,0.9045,-0.559,0.309,0.7694,-0.7694,0.309,0.559,-0.9045,0.309,0.2939,-0.9511,0.309,0.0,-0.9045,0.309,-0.2939,-0.7694,0.309,-0.559,-0.559,0.309,-0.7694,-0.2939,0.309,-0.9045,0.0,0.309,-0.9511,0.2939,0.309,-0.9045,0.559,0.309,-0.7694,0.7694,0.309,-0.559,0.9045,0.309,-0.2939,0.9511,0.309,0.0,0.9045,0.309,0.2939,0.8474,0.454,0.2753,0.7208,0.454,0.5237,0.5237,0.454,0.7208,0.2753,0.454,0.8474,0.0,0.454,0.891,-0.2753,0.454,0.8474,-0.5237,0.454,0.7208,-0.7208,0.454,0.5237,-0.8474,0.454,0.2753,-0.891,0.454,0.0,-0.8474,0.454,-0.2753,-0.7208,0.454,-0.5237,-0.5237,0.454,-0.7208,-0.2753,0.454,-0.8474,0.0,0.454,-0.891,0.2753,0.454,-0.8474,0.5237,0.454,-0.7208,0.7208,0.454,-0.5237,0.8474,0.454,-0.2753,0.891,0.454,0.0,0.8474,0.454,0.2753,0.7694,0.5878,0.25,0.6545,0.5878,0.4755,0.4755,0.5878,0.6545,0.25,0.5878,0.7694,0.0,0.5878,0.809,-0.25,0.5878,0.7694,-0.4755,0.5878,0.6545,-0.6545,0.5878,0.4755,-0.7694,0.5878,0.25,-0.809,0.5878,0.0,-0.7694,0.5878,-0.25,-0.6545,0.5878,-0.4755,-0.4755,0.5878,-0.6545,-0.25,0.5878,-0.7694,0.0,0.5878,-0.809,0.25,0.5878,-0.7694,0.4755,0.5878,-0.6545,0.6545,0.5878,-0.4755,0.7694,0.5878,-0.25,0.809,0.5878,0.0,0.7694,0.5878,0.25,0.6725,0.7071,0.2185,0.5721,0.7071,0.4156,0.4156,0.7071,0.5721,0.2185,0.7071,0.6725,0.0,0.7071,0.7071,-0.2185,0.7071,0.6725,-0.4156,0.7071,0.5721,-0.5721,0.7071,0.4156,-0.6725,0.7071,0.2185,-0.7071,0.7071,0.0,-0.6725,0.7071,-0.2185,-0.5721,0.7071,-0.4156,-0.4156,0.7071,-0.5721,-0.2185,0.7071,-0.6725,0.0,0.7071,-0.7071,0.2185,0.7071,-0.6725,0.4156,0.7071,-0.5721,0.5721,0.7071,-0.4156,0.6725,0.7071,-0.2185,0.7071,0.7071,0.0,0.6725,0.7071,0.2185,0.559,0.809,0.1816,0.4755,0.809,0.3455,0.3455,0.809,0.4755,0.1816,0.809,0.559,0.0,0.809,0.5878,-0.1816,0.809,0.559,-0.3455,0.809,0.4755,-0.4755,0.809,0.3455,-0.559,0.809,0.1816,-0.5878,0.809,0.0,-0.559,0.809,-0.1816,-0.4755,0.809,-0.3455,-0.3455,0.809,-0.4755,-0.1816,0.809,-0.559,0.0,0.809,-0.5878,0.1816,0.809,-0.559,0.3455,0.809,-0.4755,0.4755,0.809,-0.3455,0.559,0.809,-0.1816,0.5878,0.809,0.0,0.559,0.809,0.1816,0.4318,0.891,0.1403,0.3673,0.891,0.2668,0.2668,0.891,0.3673,0.1403,0.891,0.4318,0.0,0.891,0.454,-0.1403,0.891,0.4318,-0.2668,0.891,0.3673,-0.3673,0.891,0.2668,-0.4318,0.891,0.1403,-0.454,0.891,0.0,-0.4318,0.891,-0.1403,-0.3673,0.891,-0.2668,-0.2668,0.891,-0.3673,-0.1403,0.891,-0.4318,0.0,0.891,-0.454,0.1403,0.891,-0.4318,0.2668,0.891,-0.3673,0.3673,0.891,-0.2668,0.4318,0.891,-0.1403,0.454,0.891,0.0,0.4318,0.891,0.1403,0.2939,0.9511,0.0955,0.25,0.9511,0.1816,0.1816,0.9511,0.25,0.0955,0.9511,0.2939,0.0,0.9511,0.309,-0.0955,0.9511,0.2939,-0.1816,0.9511,0.25,-0.25,0.9511,0.1816,-0.2939,0.9511,0.0955,-0.309,0.9511,0.0,-0.2939,0.9511,-0.0955,-0.25,0.9511,-0.1816,-0.1816,0.9511,-0.25,-0.0955,0.9511,-0.2939,0.0,0.9511,-0.309,0.0955,0.9511,-0.2939,0.1816,0.9511,-0.25,0.25,0.9511,-0.1816,0.2939,0.9511,-0.0955,0.309,0.9511,0.0,0.2939,0.9511,0.0955,0.1488,0.9877,0.0483,0.1266,0.9877,0.0919,0.0919,0.9877,0.1266,0.0483,0.9877,0.1488,0.0,0.9877,0.1564,-0.0483,0.9877,0.1488,-0.0919,0.9877,0.1266,-0.1266,0.9877,0.0919,-0.1488,0.9877,0.0483,-0.1564,0.9877,0.0,-0.1488,0.9877,-0.0483,-0.1266,0.9877,-0.0919,-0.0919,0.9877,-0.1266,-0.0483,0.9877,-0.1488,0.0,0.9877,-0.1564,0.0483,0.9877,-0.1488,0.0919,0.9877,-0.1266,0.1266,0.9877,-0.0919,0.1488,0.9877,-0.0483,0.1564,0.9877,0.0,0.1488,0.9877,0.0483,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0],"normals":[0.1906,-0.9797,0.0619,0.1621,-0.9797,0.1178,0.3173,-0.9427,0.1031,0.2699,-0.9427,0.1961,0.1178,-0.9797,0.1621,0.1961,-0.9427,0.2699,0.0619,-0.9797,0.1906,0.1031,-0.9427,0.3173,0.0,-0.9797,0.2004,0.0,-0.9427,0.3336,-0.0619,-0.9797,0.1906,-0.1031,-0.9427,0.3173,-0.1178,-0.9797,0.1621,-0.1961,-0.9427,0.2699,-0.1621,-0.9797,0.1178,-0.2699,-0.9427,0.1961,-0.1906,-0.9797,0.0619,-0.3173,-0.9427,0.1031,-0.2004,-0.9797,0.0,-0.3336,-0.9427,0.0,-0.1906,-0.9797,-0.0619,-0.3173,-0.9427,-0.1031,-0.1621,-0.9797,-0.1178,-0.2699,-0.9427,-0.1961,-0.1178,-0.9797,-0.1621,-0.1961,-0.9427,-0.2699,-0.0619,-0.9797,-0.1906,-0.1031,-0.9427,-0.3173,0.0,-0.9797,-0.2004,0.0,-0.9427,-0.3336,0.0619,-0.9797,-0.1906,0.1031,-0.9427,-0.3173,0.1178,-0.9797,-0.1621,0.1961,-0.9427,-0.2699,0.1621,-0.9797,-0.1178,0.2699,-0.9427,-0.1961,0.1906,-0.9797,-0.0619,0.3173,-0.9427,-0.1031,0.2004,-0.9797,0.0,0.3336,-0.9427,0.0,0.1906,-0.9797,0.0619,0.3173,-0.9427,0.1031,0.4477,-0.8823,0.1455,0.3808,-0.8823,0.2767,0.2767,-0.8823,0.3808,0.1455,-0.8823,0.4477,0.0,-0.8823,0.4708,-0.1455,-0.8823,0.4477,-0.2767,-0.8823,0.3808,-0.3808,-0.8823,0.2767,-0.4477,-0.8823,0.1455,-0.4708,-0.8823,0.0,-0.4477,-0.8823,-0.1455,-0.3808,-0.8823,-0.2767,-0.2767,-0.8823,-0.3808,-0.1455,-0.8823,-0.4477,0.0,-0.8823,-0.4708,0.1455,-0.8823,-0.4477,0.2767,-0.8823,-0.3808,0.3808,-0.8823,-0.2767,0.4477,-0.8823,-0.1455,0.4708,-0.8823,0.0,0.4477,-0.8823,0.1455,0.5703,-0.8003,0.1853,0.4851,-0.8003,0.3525,0.3525,-0.8003,0.4851,0.1853,-0.8003,0.5703,0.0,-0.8003,0.5997,-0.1853,-0.8003,0.5703,-0.3525,-0.8003,0.4851,-0.4851,-0.8003,0.3525,-0.5703,-0.8003,0.1853,-0.5997,-0.8003,0.0,-0.5703,-0.8003,-0.1853,-0.4851,-0.8003,-0.3525,-0.3525,-0.8003,-0.4851,-0.1853,-0.8003,-0.5703,0.0,-0.8003,-0.5997,0.1853,-0.8003,-0.5703,0.3525,-0.8003,-0.4851,0.4851,-0.8003,-0.3525,0.5703,-0.8003,-0.1853,0.5997,-0.8003,0.0,0.5703,-0.8003,0.1853,0.6803,-0.6988,0.221,0.5787,-0.6988,0.4205,0.4205,-0.6988,0.5787,0.221,-0.6988,0.6803,0.0,-0.6988,0.7153,-0.221,-0.6988,0.6803,-0.4205,-0.6988,0.5787,-0.5787,-0.6988,0.4205,-0.6803,-0.6988,0.221,-0.7153,-0.6988,0.0,-0.6803,-0.6988,-0.221,-0.5787,-0.6988,-0.4205,-0.4205,-0.6988,-0.5787,-0.221,-0.6988,-0.6803,0.0,-0.6988,-0.7153,0.221,-0.6988,-0.6803,0.4205,-0.6988,-0.5787,0.5787,-0.6988,-0.4205,0.6803,-0.6988,-0.221,0.7153,-0.6988,0.0,0.6803,-0.6988,0.221,0.7745,-0.5804,0.2516,0.6588,-0.5804,0.4787,0.4787,-0.5804,0.6588,0.2516,-0.5804,0.7745,0.0,-0.5804,0.8143,-0.2516,-0.5804,0.7745,-0.4787,-0.5804,0.6588,-0.6588,-0.5804,0.4787,-0.7745,-0.5804,0.2516,-0.8143,-0.5804,0.0,-0.7745,-0.5804,-0.2516,-0.6588,-0.5804,-0.4787,-0.4787,-0.5804,-0.6588,-0.2516,-0.5804,-0.7745,0.0,-0.5804,-0.8143,0.2516,-0.5804,-0.7745,0.4787,-0.5804,-0.6588,0.6588,-0.5804,-0.4787,0.7745,-0.5804,-0.2516,0.8143,-0.5804,0.0,0.7745,-0.5804,0.2516,0.8503,-0.448,0.2763,0.7233,-0.448,0.5255,0.5255,-0.448,0.7233,0.2763,-0.448,0.8503,0.0,-0.448,0.894,-0.2763,-0.448,0.8503,-0.5255,-0.448,0.7233,-0.7233,-0.448,0.5255,-0.8503,-0.448,0.2763,-0.894,-0.448,0.0,-0.8503,-0.448,-0.2763,-0.7233,-0.448,-0.5255,-0.5255,-0.448,-0.7233,-0.2763,-0.448,-0.8503,0.0,-0.448,-0.894,0.2763,-0.448,-0.8503,0.5255,-0.448,-0.7233,0.7233,-0.448,-0.5255,0.8503,-0.448,-0.2763,0.894,-0.448,0.0,0.8503,-0.448,0.2763,0.9058,-0.3048,0.2943,0.7705,-0.3048,0.5598,0.5598,-0.3048,0.7705,0.2943,-0.3048,0.9058,0.0,-0.3048,0.9524,-0.2943,-0.3048,0.9058,-0.5598,-0.3048,0.7705,-0.7705,-0.3048,0.5598,-0.9058,-0.3048,0.2943,-0.9524,-0.3048,0.0,-0.9058,-0.3048,-0.2943,-0.7705,-0.3048,-0.5598,-0.5598,-0.3048,-0.7705,-0.2943,-0.3048,-0.9058,0.0,-0.3048,-0.9524,0.2943,-0.3048,-0.9058,0.5598,-0.3048,-0.7705,0.7705,-0.3048,-0.5598,0.9058,-0.3048,-0.2943,0.9524,-0.3048,0.0,0.9058,-0.3048,0.2943,0.9397,-0.1542,0.3053,0.7993,-0.1542,0.5808,0.5808,-0.1542,0.7993,0.3053,-0.1542,0.9397,0.0,-0.1542,0.988,-0.3053,-0.1542,0.9397,-0.5808,-0.1542,0.7993,-0.7993,-0.1542,0.5808,-0.9397,-0.1542,0.3053,-0.988,-0.1542,0.0,-0.9397,-0.1542,-0.3053,-0.7993,-0.1542,-0.5808,-0.5808,-0.1542,-0.7993,-0.3053,-0.1542,-0.9397,0.0,-0.1542,-0.988,0.3053,-0.1542,-0.9397,0.5808,-0.1542,-0.7993,0.7993,-0.1542,-0.5808,0.9397,-0.1542,-0.3053,0.988,-0.1542,0.0,0.9397,-0.1542,0.3053,0.9511,0.0,0.309,0.809,0.0,0.5878,0.5878,0.0,0.809,0.309,0.0,0.9511,0.0,0.0,1.0,-0.309,0.0,0.9511,-0.5878,0.0,0.809,-0.809,0.0,0.5878,-0.9511,0.0,0.309,-1.0,0.0,0.0,-0.9511,0.0,-0.309,-0.809,0.0,-0.5878,-0.5878,0.0,-0.809,-0.309,0.0,-0.9511,0.0,0.0,-1.0,0.309,0.0,-0.9511,0.5878,0.0,-0.809,0.809,0.0,-0.5878,0.9511,0.0,-0.309,1.0,0.0,0.0,0.9511,0.0,0.309,0.9397,0.1542,0.3053,0.7993,0.1542,0.5808,0.5808,0.1542,0.7993,0.3053,0.1542,0.9397,0.0,0.1542,0.988,-0.3053,0.1542,0.9397,-0.5808,0.1542,0.7993,-0.7993,0.1542,0.5808,-0.9397,0.1542,0.3053,-0.988,0.1542,0.0,-0.9397,0.1542,-0.3053,-0.7993,0.1542,-0.5808,-0.5808,0.1542,-0.7993,-0.3053,0.1542,-0.9397,0.0,0.1542,-0.988,0.3053,0.1542,-0.9397,0.5808,0.1542,-0.7993,0.7993,0.1542,-0.5808,0.9397,0.1542,-0.3053,0.988,0.1542,0.0,0.9397,0.1542,0.3053,0.9058,0.3048,0.2943,0.7705,0.3048,0.5598,0.5598,0.3048,0.7705,0.2943,0.3048,0.9058,0.0,0.3048,0.9524,-0.2943,0.3048,0.9058,-0.5598,0.3048,0.7705,-0.7705,0.3048,0.5598,-0.9058,0.3048,0.2943,-0.9524,0.3048,0.0,-0.9058,0.3048,-0.2943,-0.7705,0.3048,-0.5598,-0.5598,0.3048,-0.7705,-0.2943,0.3048,-0.9058,0.0,0.3048,-0.9524,0.2943,0.3048,-0.9058,0.5598,0.3048,-0.7705,0.7705,0.3048,-0.5598,0.9058,0.3048,-0.2943,0.9524,0.3048,0.0,0.9058,0.3048,0.2943,0.8503,0.448,0.2763,0.7233,0.448,0.5255,0.5255,0.448,0.7233,0.2763,0.448,0.8503,0.0,0.448,0.894,-0.2763,0.448,0.8503,-0.5255,0.448,0.7233,-0.7233,0.448,0.5255,-0.8503,0.448,0.2763,-0.894,0.448,0.0,-0.8503,0.448,-0.2763,-0.7233,0.448,-0.5255,-0.5255,0.448,-0.7233,-0.2763,0.448,-0.8503,0.0,0.448,-0.894,0.2763,0.448,-0.8503,0.5255,0.448,-0.7233,0.7233,0.448,-0.5255,0.8503,0.448,-0.2763,0.894,0.448,0.0,0.8503,0.448,0.2763,0.7745,0.5804,0.2516,0.6588,0.5804,0.4787,0.4787,0.5804,0.6588,0.2516,0.5804,0.7745,0.0,0.5804,0.8143,-0.2516,0.5804,0.7745,-0.4787,0.5804,0.6588,-0.6588,0.5804,0.4787,-0.7745,0.5804,0.2516,-0.8143,0.5804,0.0,-0.7745,0.5804,-0.2516,-0.6588,0.5804,-0.4787,-0.4787,0.5804,-0.6588,-0.2516,0.5804,-0.7745,0.0,0.5804,-0.8143,0.2516,0.5804,-0.7745,0.4787,0.5804,-0.6588,0.6588,0.5804,-0.4787,0.7745,0.5804,-0.2516,0.8143,0.5804,0.0,0.7745,0.5804,0.2516,0.6803,0.6988,0.221,0.5787,0.6988,0.4205,0.4205,0.6988,0.5787,0.221,0.6988,0.6803,0.0,0.6988,0.7153,-0.221,0.6988,0.6803,-0.4205,0.6988,0.5787,-0.5787,0.6988,0.4205,-0.6803,0.6988,0.221,-0.7153,0.6988,0.0,-0.6803,0.6988,-0.221,-0.5787,0.6988,-0.4205,-0.4205,0.6988,-0.5787,-0.221,0.6988,-0.6803,0.0,0.6988,-0.7153,0.221,0.6988,-0.6803,0.4205,0.6988,-0.5787,0.5787,0.6988,-0.4205,0.6803,0.6988,-0.221,0.7153,0.6988,0.0,0.6803,0.6988,0.221,0.5703,0.8003,0.1853,0.4851,0.8003,0.3525,0.3525,0.8003,0.4851,0.1853,0.8003,0.5703,0.0,0.8003,0.5997,-0.1853,0.8003,0.5703,-0.3525,0.8003,0.4851,-0.4851,0.8003,0.3525,-0.5703,0.8003,0.1853,-0.5997,0.8003,0.0,-0.5703,0.8003,-0.1853,-0.4851,0.8003,-0.3525,-0.3525,0.8003,-0.4851,-0.1853,0.8003,-0.5703,0.0,0.8003,-0.5997,0.1853,0.8003,-0.5703,0.3525,0.8003,-0.4851,0.4851,0.8003,-0.3525,0.5703,0.8003,-0.1853,0.5997,0.8003,0.0,0.5703,0.8003,0.1853,0.4477,0.8823,0.1455,0.3808,0.8823,0.2767,0.2767,0.8823,0.3808,0.1455,0.8823,0.4477,0.0,0.8823,0.4708,-0.1455,0.8823,0.4477,-0.2767,0.8823,0.3808,-0.3808,0.8823,0.2767,-0.4477,0.8823,0.1455,-0.4708,0.8823,0.0,-0.4477,0.8823,-0.1455,-0.3808,0.8823,-0.2767,-0.2767,0.8823,-0.3808,-0.1455,0.8823,-0.4477,0.0,0.8823,-0.4708,0.1455,0.8823,-0.4477,0.2767,0.8823,-0.3808,0.3808,0.8823,-0.2767,0.4477,0.8823,-0.1455,0.4708,0.8823,0.0,0.4477,0.8823,0.1455,0.3173,0.9427,0.1031,0.2699,0.9427,0.1961,0.1961,0.9427,0.2699,0.1031,0.9427,0.3173,0.0,0.9427,0.3336,-0.1031,0.9427,0.3173,-0.1961,0.9427,0.2699,-0.2699,0.9427,0.1961,-0.3173,0.9427,0.1031,-0.3336,0.9427,0.0,-0.3173,0.9427,-0.1031,-0.2699,0.9427,-0.1961,-0.1961,0.9427,-0.2699,-0.1031,0.9427,-0.3173,0.0,0.9427,-0.3336,0.1031,0.9427,-0.3173,0.1961,0.9427,-0.2699,0.2699,0.9427,-0.1961,0.3173,0.9427,-0.1031,0.3336,0.9427,0.0,0.3173,0.9427,0.1031,0.1906,0.9797,0.0619,0.1621,0.9797,0.1178,0.1178,0.9797,0.1621,0.0619,0.9797,0.1906,0.0,0.9797,0.2004,-0.0619,0.9797,0.1906,-0.1178,0.9797,0.1621,-0.1621,0.9797,0.1178,-0.1906,0.9797,0.0619,-0.2004,0.9797,0.0,-0.1906,0.9797,-0.0619,-0.1621,0.9797,-0.1178,-0.1178,0.9797,-0.1621,-0.0619,0.9797,-0.1906,0.0,0.9797,-0.2004,0.0619,0.9797,-0.1906,0.1178,0.9797,-0.1621,0.1621,0.9797,-0.1178,0.1906,0.9797,-0.0619,0.2004,0.9797,0.0,0.1906,0.9797,0.0619,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0],"tangents":[-0.4482,-0.0307,0.8934,-1.0,-0.5629,0.0062,0.8265,-1.0,-0.438,-0.0493,0.8976,-1.0,-0.5878,0.0,0.809,-1.0,-0.7908,0.0062,0.6121,-1.0,-0.809,0.0,0.5878,-1.0,-0.9412,0.0062,0.3378,-1.0,-0.9511,0.0,0.309,-1.0,-0.9995,0.0062,0.0304,-1.0,-1.0,0.0,0.0,-1.0,-0.96,0.0062,-0.28,-1.0,-0.9511,0.0,-0.309,-1.0,-0.8265,0.0062,-0.5629,-1.0,-0.809,0.0,-0.5878,-1.0,-0.6121,0.0062,-0.7908,-1.0,-0.5878,0.0,-0.809,-1.0,-0.3378,0.0062,-0.9412,-1.0,-0.309,0.0,-0.9511,-1.0,-0.0304,0.0062,-0.9995,-1.0,0.0,0.0,-1.0,-1.0,0.28,0.0062,-0.96,-1.0,0.309,0.0,-0.9511,-1.0,0.5629,0.0062,-0.8265,-1.0,0.5878,0.0,-0.809,-1.0,0.7908,0.0062,-0.6121,-1.0,0.809,0.0,-0.5878,-1.0,0.9412,0.0062,-0.3378,-1.0,0.9511,0.0,-0.309,-1.0,0.9995,0.0062,-0.0304,-1.0,1.0,0.0,0.0,-1.0,0.96,0.0062,0.28,-1.0,0.9511,0.0,0.309,-1.0,0.8265,0.0062,0.5629,-1.0,0.809,0.0,0.5878,-1.0,0.6121,0.0062,0.7908,-1.0,0.5878,0.0,0.809,-1.0,0.3378,0.0062,0.9412,-1.0,0.309,0.0,0.9511,-1.0,0.0304,0.0062,0.9995,-1.0,0.0,0.0,1.0,-1.0,-0.1625,0.0307,0.9862,-1.0,-0.1732,0.0493,0.9836,-1.0,-0.4222,-0.0651,0.9042,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.1899,0.0651,0.9796,-1.0,-0.4023,-0.0754,0.9124,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.2109,0.0754,0.9746,-1.0,-0.3802,-0.0787,0.9215,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.234,0.0787,0.969,-1.0,-0.3582,-0.0745,0.9306,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.2572,0.0745,0.9635,-1.0,-0.3384,-0.0633,0.9389,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.2781,0.0633,0.9585,-1.0,-0.3226,-0.0459,0.9454,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.2947,0.0459,0.9545,-1.0,-0.3125,-0.0241,0.9496,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.3053,0.0241,0.9519,-1.0,-0.309,0.0,0.9511,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.309,0.0,0.9511,-1.0,-0.3125,0.0241,0.9496,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.3053,-0.0241,0.9519,-1.0,-0.3226,0.0459,0.9454,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.2947,-0.0459,0.9545,-1.0,-0.3384,0.0633,0.9389,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.2781,-0.0633,0.9585,-1.0,-0.3582,0.0745,0.9306,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.2572,-0.0745,0.9635,-1.0,-0.3802,0.0787,0.9215,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.234,-0.0787,0.969,-1.0,-0.4023,0.0754,0.9124,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.2109,-0.0754,0.9746,-1.0,-0.4222,0.0651,0.9042,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.1899,-0.0651,0.9796,-1.0,-0.438,0.0493,0.8976,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.1732,-0.0493,0.9836,-1.0,-0.4482,0.0307,0.8934,-1.0,-0.6121,0.0062,0.7908,-1.0,-0.8265,0.0062,0.5629,-1.0,-0.96,0.0062,0.28,-1.0,-0.9995,0.0062,-0.0304,-1.0,-0.9412,0.0062,-0.3378,-1.0,-0.7908,0.0062,-0.6121,-1.0,-0.5629,0.0062,-0.8265,-1.0,-0.28,0.0062,-0.96,-1.0,0.0304,0.0062,-0.9995,-1.0,0.3378,0.0062,-0.9412,-1.0,0.6121,0.0062,-0.7908,-1.0,0.8265,0.0062,-0.5629,-1.0,0.96,0.0062,-0.28,-1.0,0.9995,0.0062,0.0304,-1.0,0.9412,0.0062,0.3378,-1.0,0.7908,0.0062,0.6121,-1.0,0.5629,0.0062,0.8265,-1.0,0.28,0.0062,0.96,-1.0,-0.0304,0.0062,0.9995,-1.0,-0.1625,-0.0307,0.9862,-1.0,-0.454,0.0,0.891,-1.0,-0.7071,0.0,0.7071,-1.0,-0.891,0.0,0.454,-1.0,-0.9877,0.0,0.1564,-1.0,-0.9877,0.0,-0.1564,-1.0,-0.891,0.0,-0.454,-1.0,-0.7071,0.0,-0.7071,-1.0,-0.454,0.0,-0.891,-1.0,-0.1564,0.0,-0.9877,-1.0,0.1564,0.0,-0.9877,-1.0,0.454,0.0,-0.891,-1.0,0.7071,0.0,-0.7071,-1.0,0.891,0.0,-0.454,-1.0,0.9877,0.0,-0.1564,-1.0,0.9877,0.0,0.1564,-1.0,0.891,0.0,0.454,-1.0,0.7071,0.0,0.7071,-1.0,0.454,0.0,0.891,-1.0,0.1564,0.0,0.9877,-1.0,-0.1564,0.0,0.9877,-1.0,-0.454,0.0,0.891,-1.0,-0.7071,0.0,0.7071,-1.0,-0.891,0.0,0.454,-1.0,-0.9877,0.0,0.1564,-1.0,-0.9877,0.0,-0.1564,-1.0,-0.891,0.0,-0.454,-1.0,-0.7071,0.0,-0.7071,-1.0,-0.454,0.0,-0.891,-1.0,-0.1564,0.0,-0.9877,-1.0,0.1564,0.0,-0.9877,-1.0,0.454,0.0,-0.891,-1.0,0.7071,0.0,-0.7071,-1.0,0.891,0.0,-0.454,-1.0,0.9877,0.0,-0.1564,-1.0,0.9877,0.0,0.1564,-1.0,0.891,0.0,0.454,-1.0,0.7071,0.0,0.7071,-1.0,0.454,0.0,0.891,-1.0,0.1564,0.0,0.9877,-1.0,-0.1564,0.0,0.9877,-1.0],"uvs":[0.0,0.05,0.05,0.05,0.0,0.1,0.05,0.1,0.1,0.05,0.1,0.1,0.15,0.05,0.15,0.1,0.2,0.05,0.2,0.1,0.25,0.05,0.25,0.1,0.3,0.05,0.3,0.1,0.35,0.05,0.35,0.1,0.4,0.05,0.4,0.1,0.45,0.05,0.45,0.1,0.5,0.05,0.5,0.1,0.55,0.05,0.55,0.1,0.6,0.05,0.6,0.1,0.65,0.05,0.65,0.1,0.7,0.05,0.7,0.1,0.75,0.05,0.75,0.1,0.8,0.05,0.8,0.1,0.85,0.05,0.85,0.1,0.9,0.05,0.9,0.1,0.95,0.05,0.95,0.1,1.0,0.05,1.0,0.1,0.0,0.15,0.05,0.15,0.1,0.15,0.15,0.15,0.2,0.15,0.25,0.15,0.3,0.15,0.35,0.15,0.4,0.15,0.45,0.15,0.5,0.15,0.55,0.15,0.6,0.15,0.65,0.15,0.7,0.15,0.75,0.15,0.8,0.15,0.85,0.15,0.9,0.15,0.95,0.15,1.0,0.15,0.0,0.2,0.05,0.2,0.1,0.2,0.15,0.2,0.2,0.2,0.25,0.2,0.3,0.2,0.35,0.2,0.4,0.2,0.45,0.2,0.5,0.2,0.55,0.2,0.6,0.2,0.65,0.2,0.7,0.2,0.75,0.2,0.8,0.2,0.85,0.2,0.9,0.2,0.95,0.2,1.0,0.2,0.0,0.25,0.05,0.25,0.1,0.25,0.15,0.25,0.2,0.25,0.25,0.25,0.3,0.25,0.35,0.25,0.4,0.25,0.45,0.25,0.5,0.25,0.55,0.25,0.6,0.25,0.65,0.25,0.7,0.25,0.75,0.25,0.8,0.25,0.85,0.25,0.9,0.25,0.95,0.25,1.0,0.25,0.0,0.3,0.05,0.3,0.1,0.3,0.15,0.3,0.2,0.3,0.25,0.3,0.3,0.3,0.35,0.3,0.4,0.3,0.45,0.3,0.5,0.3,0.55,0.3,0.6,0.3,0.65,0.3,0.7,0.3,0.75,0.3,0.8,0.3,0.85,0.3,0.9,0.3,0.95,0.3,1.0,0.3,0.0,0.35,0.05,0.35,0.1,0.35,0.15,0.35,0.2,0.35,0.25,0.35,0.3,0.35,0.35,0.35,0.4,0.35,0.45,0.35,0.5,0.35,0.55,0.35,0.6,0.35,0.65,0.35,0.7,0.35,0.75,0.35,0.8,0.35,0.85,0.35,0.9,0.35,0.95,0.35,1.0,0.35,0.0,0.4,0.05,0.4,0.1,0.4,0.15,0.4,0.2,0.4,0.25,0.4,0.3,0.4,0.35,0.4,0.4,0.4,0.45,0.4,0.5,0.4,0.55,0.4,0.6,0.4,0.65,0.4,0.7,0.4,0.75,0.4,0.8,0.4,0.85,0.4,0.9,0.4,0.95,0.4,1.0,0.4,0.0,0.45,0.05,0.45,0.1,0.45,0.15,0.45,0.2,0.45,0.25,0.45,0.3,0.45,0.35,0.45,0.4,0.45,0.45,0.45,0.5,0.45,0.55,0.45,0.6,0.45,0.65,0.45,0.7,0.45,0.75,0.45,0.8,0.45,0.85,0.45,0.9,0.45,0.95,0.45,1.0,0.45,0.0,0.5,0.05,0.5,0.1,0.5,0.15,0.5,0.2,0.5,0.25,0.5,0.3,0.5,0.35,0.5,0.4,0.5,0.45,0.5,0.5,0.5,0.55,0.5,0.6,0.5,0.65,0.5,0.7,0.5,0.75,0.5,0.8,0.5,0.85,0.5,0.9,0.5,0.95,0.5,1.0,0.5,0.0,0.55,0.05,0.55,0.1,0.55,0.15,0.55,0.2,0.55,0.25,0.55,0.3,0.55,0.35,0.55,0.4,0.55,0.45,0.55,0.5,0.55,0.55,0.55,0.6,0.55,0.65,0.55,0.7,0.55,0.75,0.55,0.8,0.55,0.85,0.55,0.9,0.55,0.95,0.55,1.0,0.55,0.0,0.6,0.05,0.6,0.1,0.6,0.15,0.6,0.2,0.6,0.25,0.6,0.3,0.6,0.35,0.6,0.4,0.6,0.45,0.6,0.5,0.6,0.55,0.6,0.6,0.6,0.65,0.6,0.7,0.6,0.75,0.6,0.8,0.6,0.85,0.6,0.9,0.6,0.95,0.6,1.0,0.6,0.0,0.65,0.05,0.65,0.1,0.65,0.15,0.65,0.2,0.65,0.25,0.65,0.3,0.65,0.35,0.65,0.4,0.65,0.45,0.65,0.5,0.65,0.55,0.65,0.6,0.65,0.65,0.65,0.7,0.65,0.75,0.65,0.8,0.65,0.85,0.65,0.9,0.65,0.95,0.65,1.0,0.65,0.0,0.7,0.05,0.7,0.1,0.7,0.15,0.7,0.2,0.7,0.25,0.7,0.3,0.7,0.35,0.7,0.4,0.7,0.45,0.7,0.5,0.7,0.55,0.7,0.6,0.7,0.65,0.7,0.7,0.7,0.75,0.7,0.8,0.7,0.85,0.7,0.9,0.7,0.95,0.7,1.0,0.7,0.0,0.75,0.05,0.75,0.1,0.75,0.15,0.75,0.2,0.75,0.25,0.75,0.3,0.75,0.35,0.75,0.4,0.75,0.45,0.75,0.5,0.75,0.55,0.75,0.6,0.75,0.65,0.75,0.7,0.75,0.75,0.75,0.8,0.75,0.85,0.75,0.9,0.75,0.95,0.75,1.0,0.75,0.0,0.8,0.05,0.8,0.1,0.8,0.15,0.8,0.2,0.8,0.25,0.8,0.3,0.8,0.35,0.8,0.4,0.8,0.45,0.8,0.5,0.8,0.55,0.8,0.6,0.8,0.65,0.8,0.7,0.8,0.75,0.8,0.8,0.8,0.85,0.8,0.9,0.8,0.95,0.8,1.0,0.8,0.0,0.85,0.05,0.85,0.1,0.85,0.15,0.85,0.2,0.85,0.25,0.85,0.3,0.85,0.35,0.85,0.4,0.85,0.45,0.85,0.5,0.85,0.55,0.85,0.6,0.85,0.65,0.85,0.7,0.85,0.75,0.85,0.8,0.85,0.85,0.85,0.9,0.85,0.95,0.85,1.0,0.85,0.0,0.9,0.05,0.9,0.1,0.9,0.15,0.9,0.2,0.9,0.25,0.9,0.3,0.9,0.35,0.9,0.4,0.9,0.45,0.9,0.5,0.9,0.55,0.9,0.6,0.9,0.65,0.9,0.7,0.9,0.75,0.9,0.8,0.9,0.85,0.9,0.9,0.9,0.95,0.9,1.0,0.9,0.0,0.95,0.05,0.95,0.1,0.95,0.15,0.95,0.2,0.95,0.25,0.95,0.3,0.95,0.35,0.95,0.4,0.95,0.45,0.95,0.5,0.95,0.55,0.95,0.6,0.95,0.65,0.95,0.7,0.95,0.75,0.95,0.8,0.95,0.85,0.95,0.9,0.95,0.95,0.95,1.0,0.95,0.025,0.0,0.075,0.0,0.125,0.0,0.175,0.0,0.225,0.0,0.275,0.0,0.325,0.0,0.375,0.0,0.425,0.0,0.475,0.0,0.525,0.0,0.575,0.0,0.625,0.0,0.675,0.0,0.725,0.0,0.775,0.0,0.825,0.0,0.875,0.0,0.925,0.0,0.975,0.0,0.025,1.0,0.075,1.0,0.125,1.0,0.175,1.0,0.225,1.0,0.275,1.0,0.325,1.0,0.375,1.0,0.425,1.0,0.475,1.0,0.525,1.0,0.575,1.0,0.625,1.0,0.675,1.0,0.725,1.0,0.775,1.0,0.825,1.0,0.875,1.0,0.925,1.0,0.975,1.0],"uvs2":null,"colors":null,"hasVertexAlpha":false,"matricesIndices":null,"matricesWeights":null,"matricesIndicesExtra":null,"matricesWeightsExtra":null,"indices":[0,1,2,2,1,3,1,4,3,3,4,5,4,6,5,5,6,7,6,8,7,7,8,9,8,10,9,9,10,11,10,12,11,11,12,13,12,14,13,13,14,15,14,16,15,15,16,17,16,18,17,17,18,19,18,20,19,19,20,21,20,22,21,21,22,23,22,24,23,23,24,25,24,26,25,25,26,27,26,28,27,27,28,29,28,30,29,29,30,31,30,32,31,31,32,33,32,34,33,33,34,35,34,36,35,35,36,37,36,38,37,37,38,39,38,40,39,39,40,41,2,3,42,42,3,43,3,5,43,43,5,44,5,7,44,44,7,45,7,9,45,45,9,46,9,11,46,46,11,47,11,13,47,47,13,48,13,15,48,48,15,49,15,17,49,49,17,50,17,19,50,50,19,51,19,21,51,51,21,52,21,23,52,52,23,53,23,25,53,53,25,54,25,27,54,54,27,55,27,29,55,55,29,56,29,31,56,56,31,57,31,33,57,57,33,58,33,35,58,58,35,59,35,37,59,59,37,60,37,39,60,60,39,61,39,41,61,61,41,62,42,43,63,63,43,64,43,44,64,64,44,65,44,45,65,65,45,66,45,46,66,66,46,67,46,47,67,67,47,68,47,48,68,68,48,69,48,49,69,69,49,70,49,50,70,70,50,71,50,51,71,71,51,72,51,52,72,72,52,73,52,53,73,73,53,74,53,54,74,74,54,75,54,55,75,75,55,76,55,56,76,76,56,77,56,57,77,77,57,78,57,58,78,78,58,79,58,59,79,79,59,80,59,60,80,80,60,81,60,61,81,81,61,82,61,62,82,82,62,83,63,64,84,84,64,85,64,65,85,85,65,86,65,66,86,86,66,87,66,67,87,87,67,88,67,68,88,88,68,89,68,69,89,89,69,90,69,70,90,90,70,91,70,71,91,91,71,92,71,72,92,92,72,93,72,73,93,93,73,94,73,74,94,94,74,95,74,75,95,95,75,96,75,76,96,96,76,97,76,77,97,97,77,98,77,78,98,98,78,99,78,79,99,99,79,100,79,80,100,100,80,101,80,81,101,101,81,102,81,82,102,102,82,103,82,83,103,103,83,104,84,85,105,105,85,106,85,86,106,106,86,107,86,87,107,107,87,108,87,88,108,108,88,109,88,89,109,109,89,110,89,90,110,110,90,111,90,91,111,111,91,112,91,92,112,112,92,113,92,93,113,113,93,114,93,94,114,114,94,115,94,95,115,115,95,116,95,96,116,116,96,117,96,97,117,117,97,118,97,98,118,118,98,119,98,99,119,119,99,120,99,100,120,120,100,121,100,101,121,121,101,122,101,102,122,122,102,123,102,103,123,123,103,124,103,104,124,124,104,125,105,106,126,126,106,127,106,107,127,127,107,128,107,108,128,128,108,129,108,109,129,129,109,130,109,110,130,130,110,131,110,111,131,131,111,132,111,112,132,132,112,133,112,113,133,133,113,134,113,114,134,134,114,135,114,115,135,135,115,136,115,116,136,136,116,137,116,117,137,137,117,138,117,118,138,138,118,139,118,119,139,139,119,140,119,120,140,140,120,141,120,121,141,141,121,142,121,122,142,142,122,143,122,123,143,143,123,144,123,124,144,144,124,145,124,125,145,145,125,146,126,127,147,147,127,148,127,128,148,148,128,149,128,129,149,149,129,150,129,130,150,150,130,151,130,131,151,151,131,152,131,132,152,152,132,153,132,133,153,153,133,154,133,134,154,154,134,155,134,135,155,155,135,156,135,136,156,156,136,157,136,137,157,157,137,158,137,138,158,158,138,159,138,139,159,159,139,160,139,140,160,160,140,161,140,141,161,161,141,162,141,142,162,162,142,163,142,143,163,163,143,164,143,144,164,164,144,165,144,145,165,165,145,166,145,146,166,166,146,167,147,148,168,168,148,169,148,149,169,169,149,170,149,150,170,170,150,171,150,151,171,171,151,172,151,152,172,172,152,173,152,153,173,173,153,174,153,154,174,174,154,175,154,155,175,175,155,176,155,156,176,176,156,177,156,157,177,177,157,178,157,158,178,178,158,179,158,159,179,179,159,180,159,160,180,180,160,181,160,161,181,181,161,182,161,162,182,182,162,183,162,163,183,183,163,184,163,164,184,184,164,185,164,165,185,185,165,186,165,166,186,186,166,187,166,167,187,187,167,188,168,169,189,189,169,190,169,170,190,190,170,191,170,171,191,191,171,192,171,172,192,192,172,193,172,173,193,193,173,194,173,174,194,194,174,195,174,175,195,195,175,196,175,176,196,196,176,197,176,177,197,197,177,198,177,178,198,198,178,199,178,179,199,199,179,200,179,180,200,200,180,201,180,181,201,201,181,202,181,182,202,202,182,203,182,183,203,203,183,204,183,184,204,204,184,205,184,185,205,205,185,206,185,186,206,206,186,207,186,187,207,207,187,208,187,188,208,208,188,209,189,190,210,210,190,211,190,191,211,211,191,212,191,192,212,212,192,213,192,193,213,213,193,214,193,194,214,214,194,215,194,195,215,215,195,216,195,196,216,216,196,217,196,197,217,217,197,218,197,198,218,218,198,219,198,199,219,219,199,220,199,200,220,220,200,221,200,201,221,221,201,222,201,202,222,222,202,223,202,203,223,223,203,224,203,204,224,224,204,225,204,205,225,225,205,226,205,206,226,226,206,227,206,207,227,227,207,228,207,208,228,228,208,229,208,209,229,229,209,230,210,211,231,231,211,232,211,212,232,232,212,233,212,213,233,233,213,234,213,214,234,234,214,235,214,215,235,235,215,236,215,216,236,236,216,237,216,217,237,237,217,238,217,218,238,238,218,239,218,219,239,239,219,240,219,220,240,240,220,241,220,221,241,241,221,242,221,222,242,242,222,243,222,223,243,243,223,244,223,224,244,244,224,245,224,225,245,245,225,246,225,226,246,246,226,247,226,227,247,247,227,248,227,228,248,248,228,249,228,229,249,249,229,250,229,230,250,250,230,251,231,232,252,252,232,253,232,233,253,253,233,254,233,234,254,254,234,255,234,235,255,255,235,256,235,236,256,256,236,257,236,237,257,257,237,258,237,238,258,258,238,259,238,239,259,259,239,260,239,240,260,260,240,261,240,241,261,261,241,262,241,242,262,262,242,263,242,243,263,263,243,264,243,244,264,264,244,265,244,245,265,265,245,266,245,246,266,266,246,267,246,247,267,267,247,268,247,248,268,268,248,269,248,249,269,269,249,270,249,250,270,270,250,271,250,251,271,271,251,272,252,253,273,273,253,274,253,254,274,274,254,275,254,255,275,275,255,276,255,256,276,276,256,277,256,257,277,277,257,278,257,258,278,278,258,279,258,259,279,279,259,280,259,260,280,280,260,281,260,261,281,281,261,282,261,262,282,282,262,283,262,263,283,283,263,284,263,264,284,284,264,285,264,265,285,285,265,286,265,266,286,286,266,287,266,267,287,287,267,288,267,268,288,288,268,289,268,269,289,289,269,290,269,270,290,290,270,291,270,271,291,291,271,292,271,272,292,292,272,293,273,274,294,294,274,295,274,275,295,295,275,296,275,276,296,296,276,297,276,277,297,297,277,298,277,278,298,298,278,299,278,279,299,299,279,300,279,280,300,300,280,301,280,281,301,301,281,302,281,282,302,302,282,303,282,283,303,303,283,304,283,284,304,304,284,305,284,285,305,305,285,306,285,286,306,306,286,307,286,287,307,307,287,308,287,288,308,308,288,309,288,289,309,309,289,310,289,290,310,310,290,311,290,291,311,311,291,312,291,292,312,312,292,313,292,293,313,313,293,314,294,295,315,315,295,316,295,296,316,316,296,317,296,297,317,317,297,318,297,298,318,318,298,319,298,299,319,319,299,320,299,300,320,320,300,321,300,301,321,321,301,322,301,302,322,322,302,323,302,303,323,323,303,324,303,304,324,324,304,325,304,305,325,325,305,326,305,306,326,326,306,327,306,307,327,327,307,328,307,308,328,328,308,329,308,309,329,329,309,330,309,310,330,330,310,331,310,311,331,331,311,332,311,312,332,332,312,333,312,313,333,333,313,334,313,314,334,334,314,335,315,316,336,336,316,337,316,317,337,337,317,338,317,318,338,338,318,339,318,319,339,339,319,340,319,320,340,340,320,341,320,321,341,341,321,342,321,322,342,342,322,343,322,323,343,343,323,344,323,324,344,344,324,345,324,325,345,345,325,346,325,326,346,346,326,347,326,327,347,347,327,348,327,328,348,348,328,349,328,329,349,349,329,350,329,330,350,350,330,351,330,331,351,351,331,352,331,332,352,352,332,353,332,333,353,353,333,354,333,334,354,354,334,355,334,335,355,355,335,356,336,337,357,357,337,358,337,338,358,358,338,359,338,339,359,359,339,360,339,340,360,360,340,361,340,341,361,361,341,362,341,342,362,362,342,363,342,343,363,363,343,364,343,344,364,364,344,365,344,345,365,365,345,366,345,346,366,366,346,367,346,347,367,367,347,368,347,348,368,368,348,369,348,349,369,369,349,370,349,350,370,370,350,371,350,351,371,371,351,372,351,352,372,372,352,373,352,353,373,373,353,374,353,354,374,374,354,375,354,355,375,375,355,376,355,356,376,376,356,377,357,358,378,378,358,379,358,359,379,379,359,380,359,360,380,380,360,381,360,361,381,381,361,382,361,362,382,382,362,383,362,363,383,383,363,384,363,364,384,384,364,385,364,365,385,385,365,386,365,366,386,386,366,387,366,367,387,387,367,388,367,368,388,388,368,389,368,369,389,389,369,390,369,370,390,390,370,391,370,371,391,391,371,392,371,372,392,392,372,393,372,373,393,393,373,394,373,374,394,394,374,395,374,375,395,395,375,396,375,376,396,396,376,397,376,377,397,397,377,398,1,0,399,4,1,400,6,4,401,8,6,402,10,8,403,12,10,404,14,12,405,16,14,406,18,16,407,20,18,408,22,20,409,24,22,410,26,24,411,28,26,412,30,28,413,32,30,414,34,32,415,36,34,416,38,36,417,40,38,418,378,379,419,379,380,420,380,381,421,381,382,422,382,383,423,383,384,424,384,385,425,385,386,426,386,387,427,387,388,428,388,389,429,389,390,430,390,391,431,391,392,432,392,393,433,393,394,434,394,395,435,395,396,436,396,397,437,397,398,438],"receiveShadows":false,"infiniteDistance":false,"billboardMode":0,"visibility":1.0,"subMeshes":[{"materialIndex":0,"verticesStart":0,"verticesCount":439,"indexStart":0,"indexCount":2280}],"instances":null,"skeletonId":-1,"numBoneInfluencers":4,"applyFog":false,"lodMeshIds":null,"lodDistances":null,"lodCoverages":null,"rotation":null,"scaling":[1.0,1.0,1.0],"rotationQuaternion":[0.0,0.1736,0.0,0.9848],"actions":null,"checkCollisions":false,"pickable":true,"showBoundingBox":false,"showSubMeshesBoundingBox":false,"alphaIndex":0,"physicsImpostor":0,"physicsMass":0.0,"physicsFriction":0.0,"physicsRestitution":0.0,"name":"pSphere2","id":"AAE56DAE-40BF-882A-5CE8-0AB477E46CDB","parentId":null,"position":[3.0,0.0,0.0],"animations":[],"autoAnimate":true,"autoAnimateFrom":1,"autoAnimateTo":200,"autoAnimateLoop":true,"metadata":{}},{"materialId":"79CDF1A6-4409-889B-46A9-43A586C10D94","isEnabled":true,"isVisible":true,"positions":[0.1488,-0.9877,0.0483,0.1266,-0.9877,0.0919,0.2939,-0.9511,0.0955,0.25,-0.9511,0.1816,0.0919,-0.9877,0.1266,0.1816,-0.9511,0.25,0.0483,-0.9877,0.1488,0.0955,-0.9511,0.2939,0.0,-0.9877,0.1564,0.0,-0.9511,0.309,-0.0483,-0.9877,0.1488,-0.0955,-0.9511,0.2939,-0.0919,-0.9877,0.1266,-0.1816,-0.9511,0.25,-0.1266,-0.9877,0.0919,-0.25,-0.9511,0.1816,-0.1488,-0.9877,0.0483,-0.2939,-0.9511,0.0955,-0.1564,-0.9877,0.0,-0.309,-0.9511,0.0,-0.1488,-0.9877,-0.0483,-0.2939,-0.9511,-0.0955,-0.1266,-0.9877,-0.0919,-0.25,-0.9511,-0.1816,-0.0919,-0.9877,-0.1266,-0.1816,-0.9511,-0.25,-0.0483,-0.9877,-0.1488,-0.0955,-0.9511,-0.2939,0.0,-0.9877,-0.1564,0.0,-0.9511,-0.309,0.0483,-0.9877,-0.1488,0.0955,-0.9511,-0.2939,0.0919,-0.9877,-0.1266,0.1816,-0.9511,-0.25,0.1266,-0.9877,-0.0919,0.25,-0.9511,-0.1816,0.1488,-0.9877,-0.0483,0.2939,-0.9511,-0.0955,0.1564,-0.9877,0.0,0.309,-0.9511,0.0,0.1488,-0.9877,0.0483,0.2939,-0.9511,0.0955,0.4318,-0.891,0.1403,0.3673,-0.891,0.2668,0.2668,-0.891,0.3673,0.1403,-0.891,0.4318,0.0,-0.891,0.454,-0.1403,-0.891,0.4318,-0.2668,-0.891,0.3673,-0.3673,-0.891,0.2668,-0.4318,-0.891,0.1403,-0.454,-0.891,0.0,-0.4318,-0.891,-0.1403,-0.3673,-0.891,-0.2668,-0.2668,-0.891,-0.3673,-0.1403,-0.891,-0.4318,0.0,-0.891,-0.454,0.1403,-0.891,-0.4318,0.2668,-0.891,-0.3673,0.3673,-0.891,-0.2668,0.4318,-0.891,-0.1403,0.454,-0.891,0.0,0.4318,-0.891,0.1403,0.559,-0.809,0.1816,0.4755,-0.809,0.3455,0.3455,-0.809,0.4755,0.1816,-0.809,0.559,0.0,-0.809,0.5878,-0.1816,-0.809,0.559,-0.3455,-0.809,0.4755,-0.4755,-0.809,0.3455,-0.559,-0.809,0.1816,-0.5878,-0.809,0.0,-0.559,-0.809,-0.1816,-0.4755,-0.809,-0.3455,-0.3455,-0.809,-0.4755,-0.1816,-0.809,-0.559,0.0,-0.809,-0.5878,0.1816,-0.809,-0.559,0.3455,-0.809,-0.4755,0.4755,-0.809,-0.3455,0.559,-0.809,-0.1816,0.5878,-0.809,0.0,0.559,-0.809,0.1816,0.6725,-0.7071,0.2185,0.5721,-0.7071,0.4156,0.4156,-0.7071,0.5721,0.2185,-0.7071,0.6725,0.0,-0.7071,0.7071,-0.2185,-0.7071,0.6725,-0.4156,-0.7071,0.5721,-0.5721,-0.7071,0.4156,-0.6725,-0.7071,0.2185,-0.7071,-0.7071,0.0,-0.6725,-0.7071,-0.2185,-0.5721,-0.7071,-0.4156,-0.4156,-0.7071,-0.5721,-0.2185,-0.7071,-0.6725,0.0,-0.7071,-0.7071,0.2185,-0.7071,-0.6725,0.4156,-0.7071,-0.5721,0.5721,-0.7071,-0.4156,0.6725,-0.7071,-0.2185,0.7071,-0.7071,0.0,0.6725,-0.7071,0.2185,0.7694,-0.5878,0.25,0.6545,-0.5878,0.4755,0.4755,-0.5878,0.6545,0.25,-0.5878,0.7694,0.0,-0.5878,0.809,-0.25,-0.5878,0.7694,-0.4755,-0.5878,0.6545,-0.6545,-0.5878,0.4755,-0.7694,-0.5878,0.25,-0.809,-0.5878,0.0,-0.7694,-0.5878,-0.25,-0.6545,-0.5878,-0.4755,-0.4755,-0.5878,-0.6545,-0.25,-0.5878,-0.7694,0.0,-0.5878,-0.809,0.25,-0.5878,-0.7694,0.4755,-0.5878,-0.6545,0.6545,-0.5878,-0.4755,0.7694,-0.5878,-0.25,0.809,-0.5878,0.0,0.7694,-0.5878,0.25,0.8474,-0.454,0.2753,0.7208,-0.454,0.5237,0.5237,-0.454,0.7208,0.2753,-0.454,0.8474,0.0,-0.454,0.891,-0.2753,-0.454,0.8474,-0.5237,-0.454,0.7208,-0.7208,-0.454,0.5237,-0.8474,-0.454,0.2753,-0.891,-0.454,0.0,-0.8474,-0.454,-0.2753,-0.7208,-0.454,-0.5237,-0.5237,-0.454,-0.7208,-0.2753,-0.454,-0.8474,0.0,-0.454,-0.891,0.2753,-0.454,-0.8474,0.5237,-0.454,-0.7208,0.7208,-0.454,-0.5237,0.8474,-0.454,-0.2753,0.891,-0.454,0.0,0.8474,-0.454,0.2753,0.9045,-0.309,0.2939,0.7694,-0.309,0.559,0.559,-0.309,0.7694,0.2939,-0.309,0.9045,0.0,-0.309,0.9511,-0.2939,-0.309,0.9045,-0.559,-0.309,0.7694,-0.7694,-0.309,0.559,-0.9045,-0.309,0.2939,-0.9511,-0.309,0.0,-0.9045,-0.309,-0.2939,-0.7694,-0.309,-0.559,-0.559,-0.309,-0.7694,-0.2939,-0.309,-0.9045,0.0,-0.309,-0.9511,0.2939,-0.309,-0.9045,0.559,-0.309,-0.7694,0.7694,-0.309,-0.559,0.9045,-0.309,-0.2939,0.9511,-0.309,0.0,0.9045,-0.309,0.2939,0.9393,-0.1564,0.3052,0.7991,-0.1564,0.5805,0.5805,-0.1564,0.7991,0.3052,-0.1564,0.9393,0.0,-0.1564,0.9877,-0.3052,-0.1564,0.9393,-0.5805,-0.1564,0.7991,-0.7991,-0.1564,0.5805,-0.9393,-0.1564,0.3052,-0.9877,-0.1564,0.0,-0.9393,-0.1564,-0.3052,-0.7991,-0.1564,-0.5805,-0.5805,-0.1564,-0.7991,-0.3052,-0.1564,-0.9393,0.0,-0.1564,-0.9877,0.3052,-0.1564,-0.9393,0.5805,-0.1564,-0.7991,0.7991,-0.1564,-0.5805,0.9393,-0.1564,-0.3052,0.9877,-0.1564,0.0,0.9393,-0.1564,0.3052,0.9511,0.0,0.309,0.809,0.0,0.5878,0.5878,0.0,0.809,0.309,0.0,0.9511,0.0,0.0,1.0,-0.309,0.0,0.9511,-0.5878,0.0,0.809,-0.809,0.0,0.5878,-0.9511,0.0,0.309,-1.0,0.0,0.0,-0.9511,0.0,-0.309,-0.809,0.0,-0.5878,-0.5878,0.0,-0.809,-0.309,0.0,-0.9511,0.0,0.0,-1.0,0.309,0.0,-0.9511,0.5878,0.0,-0.809,0.809,0.0,-0.5878,0.9511,0.0,-0.309,1.0,0.0,0.0,0.9511,0.0,0.309,0.9393,0.1564,0.3052,0.7991,0.1564,0.5805,0.5805,0.1564,0.7991,0.3052,0.1564,0.9393,0.0,0.1564,0.9877,-0.3052,0.1564,0.9393,-0.5805,0.1564,0.7991,-0.7991,0.1564,0.5805,-0.9393,0.1564,0.3052,-0.9877,0.1564,0.0,-0.9393,0.1564,-0.3052,-0.7991,0.1564,-0.5805,-0.5805,0.1564,-0.7991,-0.3052,0.1564,-0.9393,0.0,0.1564,-0.9877,0.3052,0.1564,-0.9393,0.5805,0.1564,-0.7991,0.7991,0.1564,-0.5805,0.9393,0.1564,-0.3052,0.9877,0.1564,0.0,0.9393,0.1564,0.3052,0.9045,0.309,0.2939,0.7694,0.309,0.559,0.559,0.309,0.7694,0.2939,0.309,0.9045,0.0,0.309,0.9511,-0.2939,0.309,0.9045,-0.559,0.309,0.7694,-0.7694,0.309,0.559,-0.9045,0.309,0.2939,-0.9511,0.309,0.0,-0.9045,0.309,-0.2939,-0.7694,0.309,-0.559,-0.559,0.309,-0.7694,-0.2939,0.309,-0.9045,0.0,0.309,-0.9511,0.2939,0.309,-0.9045,0.559,0.309,-0.7694,0.7694,0.309,-0.559,0.9045,0.309,-0.2939,0.9511,0.309,0.0,0.9045,0.309,0.2939,0.8474,0.454,0.2753,0.7208,0.454,0.5237,0.5237,0.454,0.7208,0.2753,0.454,0.8474,0.0,0.454,0.891,-0.2753,0.454,0.8474,-0.5237,0.454,0.7208,-0.7208,0.454,0.5237,-0.8474,0.454,0.2753,-0.891,0.454,0.0,-0.8474,0.454,-0.2753,-0.7208,0.454,-0.5237,-0.5237,0.454,-0.7208,-0.2753,0.454,-0.8474,0.0,0.454,-0.891,0.2753,0.454,-0.8474,0.5237,0.454,-0.7208,0.7208,0.454,-0.5237,0.8474,0.454,-0.2753,0.891,0.454,0.0,0.8474,0.454,0.2753,0.7694,0.5878,0.25,0.6545,0.5878,0.4755,0.4755,0.5878,0.6545,0.25,0.5878,0.7694,0.0,0.5878,0.809,-0.25,0.5878,0.7694,-0.4755,0.5878,0.6545,-0.6545,0.5878,0.4755,-0.7694,0.5878,0.25,-0.809,0.5878,0.0,-0.7694,0.5878,-0.25,-0.6545,0.5878,-0.4755,-0.4755,0.5878,-0.6545,-0.25,0.5878,-0.7694,0.0,0.5878,-0.809,0.25,0.5878,-0.7694,0.4755,0.5878,-0.6545,0.6545,0.5878,-0.4755,0.7694,0.5878,-0.25,0.809,0.5878,0.0,0.7694,0.5878,0.25,0.6725,0.7071,0.2185,0.5721,0.7071,0.4156,0.4156,0.7071,0.5721,0.2185,0.7071,0.6725,0.0,0.7071,0.7071,-0.2185,0.7071,0.6725,-0.4156,0.7071,0.5721,-0.5721,0.7071,0.4156,-0.6725,0.7071,0.2185,-0.7071,0.7071,0.0,-0.6725,0.7071,-0.2185,-0.5721,0.7071,-0.4156,-0.4156,0.7071,-0.5721,-0.2185,0.7071,-0.6725,0.0,0.7071,-0.7071,0.2185,0.7071,-0.6725,0.4156,0.7071,-0.5721,0.5721,0.7071,-0.4156,0.6725,0.7071,-0.2185,0.7071,0.7071,0.0,0.6725,0.7071,0.2185,0.559,0.809,0.1816,0.4755,0.809,0.3455,0.3455,0.809,0.4755,0.1816,0.809,0.559,0.0,0.809,0.5878,-0.1816,0.809,0.559,-0.3455,0.809,0.4755,-0.4755,0.809,0.3455,-0.559,0.809,0.1816,-0.5878,0.809,0.0,-0.559,0.809,-0.1816,-0.4755,0.809,-0.3455,-0.3455,0.809,-0.4755,-0.1816,0.809,-0.559,0.0,0.809,-0.5878,0.1816,0.809,-0.559,0.3455,0.809,-0.4755,0.4755,0.809,-0.3455,0.559,0.809,-0.1816,0.5878,0.809,0.0,0.559,0.809,0.1816,0.4318,0.891,0.1403,0.3673,0.891,0.2668,0.2668,0.891,0.3673,0.1403,0.891,0.4318,0.0,0.891,0.454,-0.1403,0.891,0.4318,-0.2668,0.891,0.3673,-0.3673,0.891,0.2668,-0.4318,0.891,0.1403,-0.454,0.891,0.0,-0.4318,0.891,-0.1403,-0.3673,0.891,-0.2668,-0.2668,0.891,-0.3673,-0.1403,0.891,-0.4318,0.0,0.891,-0.454,0.1403,0.891,-0.4318,0.2668,0.891,-0.3673,0.3673,0.891,-0.2668,0.4318,0.891,-0.1403,0.454,0.891,0.0,0.4318,0.891,0.1403,0.2939,0.9511,0.0955,0.25,0.9511,0.1816,0.1816,0.9511,0.25,0.0955,0.9511,0.2939,0.0,0.9511,0.309,-0.0955,0.9511,0.2939,-0.1816,0.9511,0.25,-0.25,0.9511,0.1816,-0.2939,0.9511,0.0955,-0.309,0.9511,0.0,-0.2939,0.9511,-0.0955,-0.25,0.9511,-0.1816,-0.1816,0.9511,-0.25,-0.0955,0.9511,-0.2939,0.0,0.9511,-0.309,0.0955,0.9511,-0.2939,0.1816,0.9511,-0.25,0.25,0.9511,-0.1816,0.2939,0.9511,-0.0955,0.309,0.9511,0.0,0.2939,0.9511,0.0955,0.1488,0.9877,0.0483,0.1266,0.9877,0.0919,0.0919,0.9877,0.1266,0.0483,0.9877,0.1488,0.0,0.9877,0.1564,-0.0483,0.9877,0.1488,-0.0919,0.9877,0.1266,-0.1266,0.9877,0.0919,-0.1488,0.9877,0.0483,-0.1564,0.9877,0.0,-0.1488,0.9877,-0.0483,-0.1266,0.9877,-0.0919,-0.0919,0.9877,-0.1266,-0.0483,0.9877,-0.1488,0.0,0.9877,-0.1564,0.0483,0.9877,-0.1488,0.0919,0.9877,-0.1266,0.1266,0.9877,-0.0919,0.1488,0.9877,-0.0483,0.1564,0.9877,0.0,0.1488,0.9877,0.0483,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0],"normals":[0.1906,-0.9797,0.0619,0.1621,-0.9797,0.1178,0.3173,-0.9427,0.1031,0.2699,-0.9427,0.1961,0.1178,-0.9797,0.1621,0.1961,-0.9427,0.2699,0.0619,-0.9797,0.1906,0.1031,-0.9427,0.3173,0.0,-0.9797,0.2004,0.0,-0.9427,0.3336,-0.0619,-0.9797,0.1906,-0.1031,-0.9427,0.3173,-0.1178,-0.9797,0.1621,-0.1961,-0.9427,0.2699,-0.1621,-0.9797,0.1178,-0.2699,-0.9427,0.1961,-0.1906,-0.9797,0.0619,-0.3173,-0.9427,0.1031,-0.2004,-0.9797,0.0,-0.3336,-0.9427,0.0,-0.1906,-0.9797,-0.0619,-0.3173,-0.9427,-0.1031,-0.1621,-0.9797,-0.1178,-0.2699,-0.9427,-0.1961,-0.1178,-0.9797,-0.1621,-0.1961,-0.9427,-0.2699,-0.0619,-0.9797,-0.1906,-0.1031,-0.9427,-0.3173,0.0,-0.9797,-0.2004,0.0,-0.9427,-0.3336,0.0619,-0.9797,-0.1906,0.1031,-0.9427,-0.3173,0.1178,-0.9797,-0.1621,0.1961,-0.9427,-0.2699,0.1621,-0.9797,-0.1178,0.2699,-0.9427,-0.1961,0.1906,-0.9797,-0.0619,0.3173,-0.9427,-0.1031,0.2004,-0.9797,0.0,0.3336,-0.9427,0.0,0.1906,-0.9797,0.0619,0.3173,-0.9427,0.1031,0.4477,-0.8823,0.1455,0.3808,-0.8823,0.2767,0.2767,-0.8823,0.3808,0.1455,-0.8823,0.4477,0.0,-0.8823,0.4708,-0.1455,-0.8823,0.4477,-0.2767,-0.8823,0.3808,-0.3808,-0.8823,0.2767,-0.4477,-0.8823,0.1455,-0.4708,-0.8823,0.0,-0.4477,-0.8823,-0.1455,-0.3808,-0.8823,-0.2767,-0.2767,-0.8823,-0.3808,-0.1455,-0.8823,-0.4477,0.0,-0.8823,-0.4708,0.1455,-0.8823,-0.4477,0.2767,-0.8823,-0.3808,0.3808,-0.8823,-0.2767,0.4477,-0.8823,-0.1455,0.4708,-0.8823,0.0,0.4477,-0.8823,0.1455,0.5703,-0.8003,0.1853,0.4851,-0.8003,0.3525,0.3525,-0.8003,0.4851,0.1853,-0.8003,0.5703,0.0,-0.8003,0.5997,-0.1853,-0.8003,0.5703,-0.3525,-0.8003,0.4851,-0.4851,-0.8003,0.3525,-0.5703,-0.8003,0.1853,-0.5997,-0.8003,0.0,-0.5703,-0.8003,-0.1853,-0.4851,-0.8003,-0.3525,-0.3525,-0.8003,-0.4851,-0.1853,-0.8003,-0.5703,0.0,-0.8003,-0.5997,0.1853,-0.8003,-0.5703,0.3525,-0.8003,-0.4851,0.4851,-0.8003,-0.3525,0.5703,-0.8003,-0.1853,0.5997,-0.8003,0.0,0.5703,-0.8003,0.1853,0.6803,-0.6988,0.221,0.5787,-0.6988,0.4205,0.4205,-0.6988,0.5787,0.221,-0.6988,0.6803,0.0,-0.6988,0.7153,-0.221,-0.6988,0.6803,-0.4205,-0.6988,0.5787,-0.5787,-0.6988,0.4205,-0.6803,-0.6988,0.221,-0.7153,-0.6988,0.0,-0.6803,-0.6988,-0.221,-0.5787,-0.6988,-0.4205,-0.4205,-0.6988,-0.5787,-0.221,-0.6988,-0.6803,0.0,-0.6988,-0.7153,0.221,-0.6988,-0.6803,0.4205,-0.6988,-0.5787,0.5787,-0.6988,-0.4205,0.6803,-0.6988,-0.221,0.7153,-0.6988,0.0,0.6803,-0.6988,0.221,0.7745,-0.5804,0.2516,0.6588,-0.5804,0.4787,0.4787,-0.5804,0.6588,0.2516,-0.5804,0.7745,0.0,-0.5804,0.8143,-0.2516,-0.5804,0.7745,-0.4787,-0.5804,0.6588,-0.6588,-0.5804,0.4787,-0.7745,-0.5804,0.2516,-0.8143,-0.5804,0.0,-0.7745,-0.5804,-0.2516,-0.6588,-0.5804,-0.4787,-0.4787,-0.5804,-0.6588,-0.2516,-0.5804,-0.7745,0.0,-0.5804,-0.8143,0.2516,-0.5804,-0.7745,0.4787,-0.5804,-0.6588,0.6588,-0.5804,-0.4787,0.7745,-0.5804,-0.2516,0.8143,-0.5804,0.0,0.7745,-0.5804,0.2516,0.8503,-0.448,0.2763,0.7233,-0.448,0.5255,0.5255,-0.448,0.7233,0.2763,-0.448,0.8503,0.0,-0.448,0.894,-0.2763,-0.448,0.8503,-0.5255,-0.448,0.7233,-0.7233,-0.448,0.5255,-0.8503,-0.448,0.2763,-0.894,-0.448,0.0,-0.8503,-0.448,-0.2763,-0.7233,-0.448,-0.5255,-0.5255,-0.448,-0.7233,-0.2763,-0.448,-0.8503,0.0,-0.448,-0.894,0.2763,-0.448,-0.8503,0.5255,-0.448,-0.7233,0.7233,-0.448,-0.5255,0.8503,-0.448,-0.2763,0.894,-0.448,0.0,0.8503,-0.448,0.2763,0.9058,-0.3048,0.2943,0.7705,-0.3048,0.5598,0.5598,-0.3048,0.7705,0.2943,-0.3048,0.9058,0.0,-0.3048,0.9524,-0.2943,-0.3048,0.9058,-0.5598,-0.3048,0.7705,-0.7705,-0.3048,0.5598,-0.9058,-0.3048,0.2943,-0.9524,-0.3048,0.0,-0.9058,-0.3048,-0.2943,-0.7705,-0.3048,-0.5598,-0.5598,-0.3048,-0.7705,-0.2943,-0.3048,-0.9058,0.0,-0.3048,-0.9524,0.2943,-0.3048,-0.9058,0.5598,-0.3048,-0.7705,0.7705,-0.3048,-0.5598,0.9058,-0.3048,-0.2943,0.9524,-0.3048,0.0,0.9058,-0.3048,0.2943,0.9397,-0.1542,0.3053,0.7993,-0.1542,0.5808,0.5808,-0.1542,0.7993,0.3053,-0.1542,0.9397,0.0,-0.1542,0.988,-0.3053,-0.1542,0.9397,-0.5808,-0.1542,0.7993,-0.7993,-0.1542,0.5808,-0.9397,-0.1542,0.3053,-0.988,-0.1542,0.0,-0.9397,-0.1542,-0.3053,-0.7993,-0.1542,-0.5808,-0.5808,-0.1542,-0.7993,-0.3053,-0.1542,-0.9397,0.0,-0.1542,-0.988,0.3053,-0.1542,-0.9397,0.5808,-0.1542,-0.7993,0.7993,-0.1542,-0.5808,0.9397,-0.1542,-0.3053,0.988,-0.1542,0.0,0.9397,-0.1542,0.3053,0.9511,0.0,0.309,0.809,0.0,0.5878,0.5878,0.0,0.809,0.309,0.0,0.9511,0.0,0.0,1.0,-0.309,0.0,0.9511,-0.5878,0.0,0.809,-0.809,0.0,0.5878,-0.9511,0.0,0.309,-1.0,0.0,0.0,-0.9511,0.0,-0.309,-0.809,0.0,-0.5878,-0.5878,0.0,-0.809,-0.309,0.0,-0.9511,0.0,0.0,-1.0,0.309,0.0,-0.9511,0.5878,0.0,-0.809,0.809,0.0,-0.5878,0.9511,0.0,-0.309,1.0,0.0,0.0,0.9511,0.0,0.309,0.9397,0.1542,0.3053,0.7993,0.1542,0.5808,0.5808,0.1542,0.7993,0.3053,0.1542,0.9397,0.0,0.1542,0.988,-0.3053,0.1542,0.9397,-0.5808,0.1542,0.7993,-0.7993,0.1542,0.5808,-0.9397,0.1542,0.3053,-0.988,0.1542,0.0,-0.9397,0.1542,-0.3053,-0.7993,0.1542,-0.5808,-0.5808,0.1542,-0.7993,-0.3053,0.1542,-0.9397,0.0,0.1542,-0.988,0.3053,0.1542,-0.9397,0.5808,0.1542,-0.7993,0.7993,0.1542,-0.5808,0.9397,0.1542,-0.3053,0.988,0.1542,0.0,0.9397,0.1542,0.3053,0.9058,0.3048,0.2943,0.7705,0.3048,0.5598,0.5598,0.3048,0.7705,0.2943,0.3048,0.9058,0.0,0.3048,0.9524,-0.2943,0.3048,0.9058,-0.5598,0.3048,0.7705,-0.7705,0.3048,0.5598,-0.9058,0.3048,0.2943,-0.9524,0.3048,0.0,-0.9058,0.3048,-0.2943,-0.7705,0.3048,-0.5598,-0.5598,0.3048,-0.7705,-0.2943,0.3048,-0.9058,0.0,0.3048,-0.9524,0.2943,0.3048,-0.9058,0.5598,0.3048,-0.7705,0.7705,0.3048,-0.5598,0.9058,0.3048,-0.2943,0.9524,0.3048,0.0,0.9058,0.3048,0.2943,0.8503,0.448,0.2763,0.7233,0.448,0.5255,0.5255,0.448,0.7233,0.2763,0.448,0.8503,0.0,0.448,0.894,-0.2763,0.448,0.8503,-0.5255,0.448,0.7233,-0.7233,0.448,0.5255,-0.8503,0.448,0.2763,-0.894,0.448,0.0,-0.8503,0.448,-0.2763,-0.7233,0.448,-0.5255,-0.5255,0.448,-0.7233,-0.2763,0.448,-0.8503,0.0,0.448,-0.894,0.2763,0.448,-0.8503,0.5255,0.448,-0.7233,0.7233,0.448,-0.5255,0.8503,0.448,-0.2763,0.894,0.448,0.0,0.8503,0.448,0.2763,0.7745,0.5804,0.2516,0.6588,0.5804,0.4787,0.4787,0.5804,0.6588,0.2516,0.5804,0.7745,0.0,0.5804,0.8143,-0.2516,0.5804,0.7745,-0.4787,0.5804,0.6588,-0.6588,0.5804,0.4787,-0.7745,0.5804,0.2516,-0.8143,0.5804,0.0,-0.7745,0.5804,-0.2516,-0.6588,0.5804,-0.4787,-0.4787,0.5804,-0.6588,-0.2516,0.5804,-0.7745,0.0,0.5804,-0.8143,0.2516,0.5804,-0.7745,0.4787,0.5804,-0.6588,0.6588,0.5804,-0.4787,0.7745,0.5804,-0.2516,0.8143,0.5804,0.0,0.7745,0.5804,0.2516,0.6803,0.6988,0.221,0.5787,0.6988,0.4205,0.4205,0.6988,0.5787,0.221,0.6988,0.6803,0.0,0.6988,0.7153,-0.221,0.6988,0.6803,-0.4205,0.6988,0.5787,-0.5787,0.6988,0.4205,-0.6803,0.6988,0.221,-0.7153,0.6988,0.0,-0.6803,0.6988,-0.221,-0.5787,0.6988,-0.4205,-0.4205,0.6988,-0.5787,-0.221,0.6988,-0.6803,0.0,0.6988,-0.7153,0.221,0.6988,-0.6803,0.4205,0.6988,-0.5787,0.5787,0.6988,-0.4205,0.6803,0.6988,-0.221,0.7153,0.6988,0.0,0.6803,0.6988,0.221,0.5703,0.8003,0.1853,0.4851,0.8003,0.3525,0.3525,0.8003,0.4851,0.1853,0.8003,0.5703,0.0,0.8003,0.5997,-0.1853,0.8003,0.5703,-0.3525,0.8003,0.4851,-0.4851,0.8003,0.3525,-0.5703,0.8003,0.1853,-0.5997,0.8003,0.0,-0.5703,0.8003,-0.1853,-0.4851,0.8003,-0.3525,-0.3525,0.8003,-0.4851,-0.1853,0.8003,-0.5703,0.0,0.8003,-0.5997,0.1853,0.8003,-0.5703,0.3525,0.8003,-0.4851,0.4851,0.8003,-0.3525,0.5703,0.8003,-0.1853,0.5997,0.8003,0.0,0.5703,0.8003,0.1853,0.4477,0.8823,0.1455,0.3808,0.8823,0.2767,0.2767,0.8823,0.3808,0.1455,0.8823,0.4477,0.0,0.8823,0.4708,-0.1455,0.8823,0.4477,-0.2767,0.8823,0.3808,-0.3808,0.8823,0.2767,-0.4477,0.8823,0.1455,-0.4708,0.8823,0.0,-0.4477,0.8823,-0.1455,-0.3808,0.8823,-0.2767,-0.2767,0.8823,-0.3808,-0.1455,0.8823,-0.4477,0.0,0.8823,-0.4708,0.1455,0.8823,-0.4477,0.2767,0.8823,-0.3808,0.3808,0.8823,-0.2767,0.4477,0.8823,-0.1455,0.4708,0.8823,0.0,0.4477,0.8823,0.1455,0.3173,0.9427,0.1031,0.2699,0.9427,0.1961,0.1961,0.9427,0.2699,0.1031,0.9427,0.3173,0.0,0.9427,0.3336,-0.1031,0.9427,0.3173,-0.1961,0.9427,0.2699,-0.2699,0.9427,0.1961,-0.3173,0.9427,0.1031,-0.3336,0.9427,0.0,-0.3173,0.9427,-0.1031,-0.2699,0.9427,-0.1961,-0.1961,0.9427,-0.2699,-0.1031,0.9427,-0.3173,0.0,0.9427,-0.3336,0.1031,0.9427,-0.3173,0.1961,0.9427,-0.2699,0.2699,0.9427,-0.1961,0.3173,0.9427,-0.1031,0.3336,0.9427,0.0,0.3173,0.9427,0.1031,0.1906,0.9797,0.0619,0.1621,0.9797,0.1178,0.1178,0.9797,0.1621,0.0619,0.9797,0.1906,0.0,0.9797,0.2004,-0.0619,0.9797,0.1906,-0.1178,0.9797,0.1621,-0.1621,0.9797,0.1178,-0.1906,0.9797,0.0619,-0.2004,0.9797,0.0,-0.1906,0.9797,-0.0619,-0.1621,0.9797,-0.1178,-0.1178,0.9797,-0.1621,-0.0619,0.9797,-0.1906,0.0,0.9797,-0.2004,0.0619,0.9797,-0.1906,0.1178,0.9797,-0.1621,0.1621,0.9797,-0.1178,0.1906,0.9797,-0.0619,0.2004,0.9797,0.0,0.1906,0.9797,0.0619,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0],"tangents":[-0.4482,-0.0307,0.8934,-1.0,-0.5629,0.0062,0.8265,-1.0,-0.438,-0.0493,0.8976,-1.0,-0.5878,0.0,0.809,-1.0,-0.7908,0.0062,0.6121,-1.0,-0.809,0.0,0.5878,-1.0,-0.9412,0.0062,0.3378,-1.0,-0.9511,0.0,0.309,-1.0,-0.9995,0.0062,0.0304,-1.0,-1.0,0.0,0.0,-1.0,-0.96,0.0062,-0.28,-1.0,-0.9511,0.0,-0.309,-1.0,-0.8265,0.0062,-0.5629,-1.0,-0.809,0.0,-0.5878,-1.0,-0.6121,0.0062,-0.7908,-1.0,-0.5878,0.0,-0.809,-1.0,-0.3378,0.0062,-0.9412,-1.0,-0.309,0.0,-0.9511,-1.0,-0.0304,0.0062,-0.9995,-1.0,0.0,0.0,-1.0,-1.0,0.28,0.0062,-0.96,-1.0,0.309,0.0,-0.9511,-1.0,0.5629,0.0062,-0.8265,-1.0,0.5878,0.0,-0.809,-1.0,0.7908,0.0062,-0.6121,-1.0,0.809,0.0,-0.5878,-1.0,0.9412,0.0062,-0.3378,-1.0,0.9511,0.0,-0.309,-1.0,0.9995,0.0062,-0.0304,-1.0,1.0,0.0,0.0,-1.0,0.96,0.0062,0.28,-1.0,0.9511,0.0,0.309,-1.0,0.8265,0.0062,0.5629,-1.0,0.809,0.0,0.5878,-1.0,0.6121,0.0062,0.7908,-1.0,0.5878,0.0,0.809,-1.0,0.3378,0.0062,0.9412,-1.0,0.309,0.0,0.9511,-1.0,0.0304,0.0062,0.9995,-1.0,0.0,0.0,1.0,-1.0,-0.1625,0.0307,0.9862,-1.0,-0.1732,0.0493,0.9836,-1.0,-0.4222,-0.0651,0.9042,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.1899,0.0651,0.9796,-1.0,-0.4023,-0.0754,0.9124,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.2109,0.0754,0.9746,-1.0,-0.3802,-0.0787,0.9215,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.234,0.0787,0.969,-1.0,-0.3582,-0.0745,0.9306,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.2572,0.0745,0.9635,-1.0,-0.3384,-0.0633,0.9389,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.2781,0.0633,0.9585,-1.0,-0.3226,-0.0459,0.9454,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.2947,0.0459,0.9545,-1.0,-0.3125,-0.0241,0.9496,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.3053,0.0241,0.9519,-1.0,-0.309,0.0,0.9511,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.309,0.0,0.9511,-1.0,-0.3125,0.0241,0.9496,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.3053,-0.0241,0.9519,-1.0,-0.3226,0.0459,0.9454,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.2947,-0.0459,0.9545,-1.0,-0.3384,0.0633,0.9389,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.2781,-0.0633,0.9585,-1.0,-0.3582,0.0745,0.9306,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.2572,-0.0745,0.9635,-1.0,-0.3802,0.0787,0.9215,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.234,-0.0787,0.969,-1.0,-0.4023,0.0754,0.9124,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.2109,-0.0754,0.9746,-1.0,-0.4222,0.0651,0.9042,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.1899,-0.0651,0.9796,-1.0,-0.438,0.0493,0.8976,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.1732,-0.0493,0.9836,-1.0,-0.4482,0.0307,0.8934,-1.0,-0.6121,0.0062,0.7908,-1.0,-0.8265,0.0062,0.5629,-1.0,-0.96,0.0062,0.28,-1.0,-0.9995,0.0062,-0.0304,-1.0,-0.9412,0.0062,-0.3378,-1.0,-0.7908,0.0062,-0.6121,-1.0,-0.5629,0.0062,-0.8265,-1.0,-0.28,0.0062,-0.96,-1.0,0.0304,0.0062,-0.9995,-1.0,0.3378,0.0062,-0.9412,-1.0,0.6121,0.0062,-0.7908,-1.0,0.8265,0.0062,-0.5629,-1.0,0.96,0.0062,-0.28,-1.0,0.9995,0.0062,0.0304,-1.0,0.9412,0.0062,0.3378,-1.0,0.7908,0.0062,0.6121,-1.0,0.5629,0.0062,0.8265,-1.0,0.28,0.0062,0.96,-1.0,-0.0304,0.0062,0.9995,-1.0,-0.1625,-0.0307,0.9862,-1.0,-0.454,0.0,0.891,-1.0,-0.7071,0.0,0.7071,-1.0,-0.891,0.0,0.454,-1.0,-0.9877,0.0,0.1564,-1.0,-0.9877,0.0,-0.1564,-1.0,-0.891,0.0,-0.454,-1.0,-0.7071,0.0,-0.7071,-1.0,-0.454,0.0,-0.891,-1.0,-0.1564,0.0,-0.9877,-1.0,0.1564,0.0,-0.9877,-1.0,0.454,0.0,-0.891,-1.0,0.7071,0.0,-0.7071,-1.0,0.891,0.0,-0.454,-1.0,0.9877,0.0,-0.1564,-1.0,0.9877,0.0,0.1564,-1.0,0.891,0.0,0.454,-1.0,0.7071,0.0,0.7071,-1.0,0.454,0.0,0.891,-1.0,0.1564,0.0,0.9877,-1.0,-0.1564,0.0,0.9877,-1.0,-0.454,0.0,0.891,-1.0,-0.7071,0.0,0.7071,-1.0,-0.891,0.0,0.454,-1.0,-0.9877,0.0,0.1564,-1.0,-0.9877,0.0,-0.1564,-1.0,-0.891,0.0,-0.454,-1.0,-0.7071,0.0,-0.7071,-1.0,-0.454,0.0,-0.891,-1.0,-0.1564,0.0,-0.9877,-1.0,0.1564,0.0,-0.9877,-1.0,0.454,0.0,-0.891,-1.0,0.7071,0.0,-0.7071,-1.0,0.891,0.0,-0.454,-1.0,0.9877,0.0,-0.1564,-1.0,0.9877,0.0,0.1564,-1.0,0.891,0.0,0.454,-1.0,0.7071,0.0,0.7071,-1.0,0.454,0.0,0.891,-1.0,0.1564,0.0,0.9877,-1.0,-0.1564,0.0,0.9877,-1.0],"uvs":[0.0,0.05,0.05,0.05,0.0,0.1,0.05,0.1,0.1,0.05,0.1,0.1,0.15,0.05,0.15,0.1,0.2,0.05,0.2,0.1,0.25,0.05,0.25,0.1,0.3,0.05,0.3,0.1,0.35,0.05,0.35,0.1,0.4,0.05,0.4,0.1,0.45,0.05,0.45,0.1,0.5,0.05,0.5,0.1,0.55,0.05,0.55,0.1,0.6,0.05,0.6,0.1,0.65,0.05,0.65,0.1,0.7,0.05,0.7,0.1,0.75,0.05,0.75,0.1,0.8,0.05,0.8,0.1,0.85,0.05,0.85,0.1,0.9,0.05,0.9,0.1,0.95,0.05,0.95,0.1,1.0,0.05,1.0,0.1,0.0,0.15,0.05,0.15,0.1,0.15,0.15,0.15,0.2,0.15,0.25,0.15,0.3,0.15,0.35,0.15,0.4,0.15,0.45,0.15,0.5,0.15,0.55,0.15,0.6,0.15,0.65,0.15,0.7,0.15,0.75,0.15,0.8,0.15,0.85,0.15,0.9,0.15,0.95,0.15,1.0,0.15,0.0,0.2,0.05,0.2,0.1,0.2,0.15,0.2,0.2,0.2,0.25,0.2,0.3,0.2,0.35,0.2,0.4,0.2,0.45,0.2,0.5,0.2,0.55,0.2,0.6,0.2,0.65,0.2,0.7,0.2,0.75,0.2,0.8,0.2,0.85,0.2,0.9,0.2,0.95,0.2,1.0,0.2,0.0,0.25,0.05,0.25,0.1,0.25,0.15,0.25,0.2,0.25,0.25,0.25,0.3,0.25,0.35,0.25,0.4,0.25,0.45,0.25,0.5,0.25,0.55,0.25,0.6,0.25,0.65,0.25,0.7,0.25,0.75,0.25,0.8,0.25,0.85,0.25,0.9,0.25,0.95,0.25,1.0,0.25,0.0,0.3,0.05,0.3,0.1,0.3,0.15,0.3,0.2,0.3,0.25,0.3,0.3,0.3,0.35,0.3,0.4,0.3,0.45,0.3,0.5,0.3,0.55,0.3,0.6,0.3,0.65,0.3,0.7,0.3,0.75,0.3,0.8,0.3,0.85,0.3,0.9,0.3,0.95,0.3,1.0,0.3,0.0,0.35,0.05,0.35,0.1,0.35,0.15,0.35,0.2,0.35,0.25,0.35,0.3,0.35,0.35,0.35,0.4,0.35,0.45,0.35,0.5,0.35,0.55,0.35,0.6,0.35,0.65,0.35,0.7,0.35,0.75,0.35,0.8,0.35,0.85,0.35,0.9,0.35,0.95,0.35,1.0,0.35,0.0,0.4,0.05,0.4,0.1,0.4,0.15,0.4,0.2,0.4,0.25,0.4,0.3,0.4,0.35,0.4,0.4,0.4,0.45,0.4,0.5,0.4,0.55,0.4,0.6,0.4,0.65,0.4,0.7,0.4,0.75,0.4,0.8,0.4,0.85,0.4,0.9,0.4,0.95,0.4,1.0,0.4,0.0,0.45,0.05,0.45,0.1,0.45,0.15,0.45,0.2,0.45,0.25,0.45,0.3,0.45,0.35,0.45,0.4,0.45,0.45,0.45,0.5,0.45,0.55,0.45,0.6,0.45,0.65,0.45,0.7,0.45,0.75,0.45,0.8,0.45,0.85,0.45,0.9,0.45,0.95,0.45,1.0,0.45,0.0,0.5,0.05,0.5,0.1,0.5,0.15,0.5,0.2,0.5,0.25,0.5,0.3,0.5,0.35,0.5,0.4,0.5,0.45,0.5,0.5,0.5,0.55,0.5,0.6,0.5,0.65,0.5,0.7,0.5,0.75,0.5,0.8,0.5,0.85,0.5,0.9,0.5,0.95,0.5,1.0,0.5,0.0,0.55,0.05,0.55,0.1,0.55,0.15,0.55,0.2,0.55,0.25,0.55,0.3,0.55,0.35,0.55,0.4,0.55,0.45,0.55,0.5,0.55,0.55,0.55,0.6,0.55,0.65,0.55,0.7,0.55,0.75,0.55,0.8,0.55,0.85,0.55,0.9,0.55,0.95,0.55,1.0,0.55,0.0,0.6,0.05,0.6,0.1,0.6,0.15,0.6,0.2,0.6,0.25,0.6,0.3,0.6,0.35,0.6,0.4,0.6,0.45,0.6,0.5,0.6,0.55,0.6,0.6,0.6,0.65,0.6,0.7,0.6,0.75,0.6,0.8,0.6,0.85,0.6,0.9,0.6,0.95,0.6,1.0,0.6,0.0,0.65,0.05,0.65,0.1,0.65,0.15,0.65,0.2,0.65,0.25,0.65,0.3,0.65,0.35,0.65,0.4,0.65,0.45,0.65,0.5,0.65,0.55,0.65,0.6,0.65,0.65,0.65,0.7,0.65,0.75,0.65,0.8,0.65,0.85,0.65,0.9,0.65,0.95,0.65,1.0,0.65,0.0,0.7,0.05,0.7,0.1,0.7,0.15,0.7,0.2,0.7,0.25,0.7,0.3,0.7,0.35,0.7,0.4,0.7,0.45,0.7,0.5,0.7,0.55,0.7,0.6,0.7,0.65,0.7,0.7,0.7,0.75,0.7,0.8,0.7,0.85,0.7,0.9,0.7,0.95,0.7,1.0,0.7,0.0,0.75,0.05,0.75,0.1,0.75,0.15,0.75,0.2,0.75,0.25,0.75,0.3,0.75,0.35,0.75,0.4,0.75,0.45,0.75,0.5,0.75,0.55,0.75,0.6,0.75,0.65,0.75,0.7,0.75,0.75,0.75,0.8,0.75,0.85,0.75,0.9,0.75,0.95,0.75,1.0,0.75,0.0,0.8,0.05,0.8,0.1,0.8,0.15,0.8,0.2,0.8,0.25,0.8,0.3,0.8,0.35,0.8,0.4,0.8,0.45,0.8,0.5,0.8,0.55,0.8,0.6,0.8,0.65,0.8,0.7,0.8,0.75,0.8,0.8,0.8,0.85,0.8,0.9,0.8,0.95,0.8,1.0,0.8,0.0,0.85,0.05,0.85,0.1,0.85,0.15,0.85,0.2,0.85,0.25,0.85,0.3,0.85,0.35,0.85,0.4,0.85,0.45,0.85,0.5,0.85,0.55,0.85,0.6,0.85,0.65,0.85,0.7,0.85,0.75,0.85,0.8,0.85,0.85,0.85,0.9,0.85,0.95,0.85,1.0,0.85,0.0,0.9,0.05,0.9,0.1,0.9,0.15,0.9,0.2,0.9,0.25,0.9,0.3,0.9,0.35,0.9,0.4,0.9,0.45,0.9,0.5,0.9,0.55,0.9,0.6,0.9,0.65,0.9,0.7,0.9,0.75,0.9,0.8,0.9,0.85,0.9,0.9,0.9,0.95,0.9,1.0,0.9,0.0,0.95,0.05,0.95,0.1,0.95,0.15,0.95,0.2,0.95,0.25,0.95,0.3,0.95,0.35,0.95,0.4,0.95,0.45,0.95,0.5,0.95,0.55,0.95,0.6,0.95,0.65,0.95,0.7,0.95,0.75,0.95,0.8,0.95,0.85,0.95,0.9,0.95,0.95,0.95,1.0,0.95,0.025,0.0,0.075,0.0,0.125,0.0,0.175,0.0,0.225,0.0,0.275,0.0,0.325,0.0,0.375,0.0,0.425,0.0,0.475,0.0,0.525,0.0,0.575,0.0,0.625,0.0,0.675,0.0,0.725,0.0,0.775,0.0,0.825,0.0,0.875,0.0,0.925,0.0,0.975,0.0,0.025,1.0,0.075,1.0,0.125,1.0,0.175,1.0,0.225,1.0,0.275,1.0,0.325,1.0,0.375,1.0,0.425,1.0,0.475,1.0,0.525,1.0,0.575,1.0,0.625,1.0,0.675,1.0,0.725,1.0,0.775,1.0,0.825,1.0,0.875,1.0,0.925,1.0,0.975,1.0],"uvs2":null,"colors":null,"hasVertexAlpha":false,"matricesIndices":null,"matricesWeights":null,"matricesIndicesExtra":null,"matricesWeightsExtra":null,"indices":[0,1,2,2,1,3,1,4,3,3,4,5,4,6,5,5,6,7,6,8,7,7,8,9,8,10,9,9,10,11,10,12,11,11,12,13,12,14,13,13,14,15,14,16,15,15,16,17,16,18,17,17,18,19,18,20,19,19,20,21,20,22,21,21,22,23,22,24,23,23,24,25,24,26,25,25,26,27,26,28,27,27,28,29,28,30,29,29,30,31,30,32,31,31,32,33,32,34,33,33,34,35,34,36,35,35,36,37,36,38,37,37,38,39,38,40,39,39,40,41,2,3,42,42,3,43,3,5,43,43,5,44,5,7,44,44,7,45,7,9,45,45,9,46,9,11,46,46,11,47,11,13,47,47,13,48,13,15,48,48,15,49,15,17,49,49,17,50,17,19,50,50,19,51,19,21,51,51,21,52,21,23,52,52,23,53,23,25,53,53,25,54,25,27,54,54,27,55,27,29,55,55,29,56,29,31,56,56,31,57,31,33,57,57,33,58,33,35,58,58,35,59,35,37,59,59,37,60,37,39,60,60,39,61,39,41,61,61,41,62,42,43,63,63,43,64,43,44,64,64,44,65,44,45,65,65,45,66,45,46,66,66,46,67,46,47,67,67,47,68,47,48,68,68,48,69,48,49,69,69,49,70,49,50,70,70,50,71,50,51,71,71,51,72,51,52,72,72,52,73,52,53,73,73,53,74,53,54,74,74,54,75,54,55,75,75,55,76,55,56,76,76,56,77,56,57,77,77,57,78,57,58,78,78,58,79,58,59,79,79,59,80,59,60,80,80,60,81,60,61,81,81,61,82,61,62,82,82,62,83,63,64,84,84,64,85,64,65,85,85,65,86,65,66,86,86,66,87,66,67,87,87,67,88,67,68,88,88,68,89,68,69,89,89,69,90,69,70,90,90,70,91,70,71,91,91,71,92,71,72,92,92,72,93,72,73,93,93,73,94,73,74,94,94,74,95,74,75,95,95,75,96,75,76,96,96,76,97,76,77,97,97,77,98,77,78,98,98,78,99,78,79,99,99,79,100,79,80,100,100,80,101,80,81,101,101,81,102,81,82,102,102,82,103,82,83,103,103,83,104,84,85,105,105,85,106,85,86,106,106,86,107,86,87,107,107,87,108,87,88,108,108,88,109,88,89,109,109,89,110,89,90,110,110,90,111,90,91,111,111,91,112,91,92,112,112,92,113,92,93,113,113,93,114,93,94,114,114,94,115,94,95,115,115,95,116,95,96,116,116,96,117,96,97,117,117,97,118,97,98,118,118,98,119,98,99,119,119,99,120,99,100,120,120,100,121,100,101,121,121,101,122,101,102,122,122,102,123,102,103,123,123,103,124,103,104,124,124,104,125,105,106,126,126,106,127,106,107,127,127,107,128,107,108,128,128,108,129,108,109,129,129,109,130,109,110,130,130,110,131,110,111,131,131,111,132,111,112,132,132,112,133,112,113,133,133,113,134,113,114,134,134,114,135,114,115,135,135,115,136,115,116,136,136,116,137,116,117,137,137,117,138,117,118,138,138,118,139,118,119,139,139,119,140,119,120,140,140,120,141,120,121,141,141,121,142,121,122,142,142,122,143,122,123,143,143,123,144,123,124,144,144,124,145,124,125,145,145,125,146,126,127,147,147,127,148,127,128,148,148,128,149,128,129,149,149,129,150,129,130,150,150,130,151,130,131,151,151,131,152,131,132,152,152,132,153,132,133,153,153,133,154,133,134,154,154,134,155,134,135,155,155,135,156,135,136,156,156,136,157,136,137,157,157,137,158,137,138,158,158,138,159,138,139,159,159,139,160,139,140,160,160,140,161,140,141,161,161,141,162,141,142,162,162,142,163,142,143,163,163,143,164,143,144,164,164,144,165,144,145,165,165,145,166,145,146,166,166,146,167,147,148,168,168,148,169,148,149,169,169,149,170,149,150,170,170,150,171,150,151,171,171,151,172,151,152,172,172,152,173,152,153,173,173,153,174,153,154,174,174,154,175,154,155,175,175,155,176,155,156,176,176,156,177,156,157,177,177,157,178,157,158,178,178,158,179,158,159,179,179,159,180,159,160,180,180,160,181,160,161,181,181,161,182,161,162,182,182,162,183,162,163,183,183,163,184,163,164,184,184,164,185,164,165,185,185,165,186,165,166,186,186,166,187,166,167,187,187,167,188,168,169,189,189,169,190,169,170,190,190,170,191,170,171,191,191,171,192,171,172,192,192,172,193,172,173,193,193,173,194,173,174,194,194,174,195,174,175,195,195,175,196,175,176,196,196,176,197,176,177,197,197,177,198,177,178,198,198,178,199,178,179,199,199,179,200,179,180,200,200,180,201,180,181,201,201,181,202,181,182,202,202,182,203,182,183,203,203,183,204,183,184,204,204,184,205,184,185,205,205,185,206,185,186,206,206,186,207,186,187,207,207,187,208,187,188,208,208,188,209,189,190,210,210,190,211,190,191,211,211,191,212,191,192,212,212,192,213,192,193,213,213,193,214,193,194,214,214,194,215,194,195,215,215,195,216,195,196,216,216,196,217,196,197,217,217,197,218,197,198,218,218,198,219,198,199,219,219,199,220,199,200,220,220,200,221,200,201,221,221,201,222,201,202,222,222,202,223,202,203,223,223,203,224,203,204,224,224,204,225,204,205,225,225,205,226,205,206,226,226,206,227,206,207,227,227,207,228,207,208,228,228,208,229,208,209,229,229,209,230,210,211,231,231,211,232,211,212,232,232,212,233,212,213,233,233,213,234,213,214,234,234,214,235,214,215,235,235,215,236,215,216,236,236,216,237,216,217,237,237,217,238,217,218,238,238,218,239,218,219,239,239,219,240,219,220,240,240,220,241,220,221,241,241,221,242,221,222,242,242,222,243,222,223,243,243,223,244,223,224,244,244,224,245,224,225,245,245,225,246,225,226,246,246,226,247,226,227,247,247,227,248,227,228,248,248,228,249,228,229,249,249,229,250,229,230,250,250,230,251,231,232,252,252,232,253,232,233,253,253,233,254,233,234,254,254,234,255,234,235,255,255,235,256,235,236,256,256,236,257,236,237,257,257,237,258,237,238,258,258,238,259,238,239,259,259,239,260,239,240,260,260,240,261,240,241,261,261,241,262,241,242,262,262,242,263,242,243,263,263,243,264,243,244,264,264,244,265,244,245,265,265,245,266,245,246,266,266,246,267,246,247,267,267,247,268,247,248,268,268,248,269,248,249,269,269,249,270,249,250,270,270,250,271,250,251,271,271,251,272,252,253,273,273,253,274,253,254,274,274,254,275,254,255,275,275,255,276,255,256,276,276,256,277,256,257,277,277,257,278,257,258,278,278,258,279,258,259,279,279,259,280,259,260,280,280,260,281,260,261,281,281,261,282,261,262,282,282,262,283,262,263,283,283,263,284,263,264,284,284,264,285,264,265,285,285,265,286,265,266,286,286,266,287,266,267,287,287,267,288,267,268,288,288,268,289,268,269,289,289,269,290,269,270,290,290,270,291,270,271,291,291,271,292,271,272,292,292,272,293,273,274,294,294,274,295,274,275,295,295,275,296,275,276,296,296,276,297,276,277,297,297,277,298,277,278,298,298,278,299,278,279,299,299,279,300,279,280,300,300,280,301,280,281,301,301,281,302,281,282,302,302,282,303,282,283,303,303,283,304,283,284,304,304,284,305,284,285,305,305,285,306,285,286,306,306,286,307,286,287,307,307,287,308,287,288,308,308,288,309,288,289,309,309,289,310,289,290,310,310,290,311,290,291,311,311,291,312,291,292,312,312,292,313,292,293,313,313,293,314,294,295,315,315,295,316,295,296,316,316,296,317,296,297,317,317,297,318,297,298,318,318,298,319,298,299,319,319,299,320,299,300,320,320,300,321,300,301,321,321,301,322,301,302,322,322,302,323,302,303,323,323,303,324,303,304,324,324,304,325,304,305,325,325,305,326,305,306,326,326,306,327,306,307,327,327,307,328,307,308,328,328,308,329,308,309,329,329,309,330,309,310,330,330,310,331,310,311,331,331,311,332,311,312,332,332,312,333,312,313,333,333,313,334,313,314,334,334,314,335,315,316,336,336,316,337,316,317,337,337,317,338,317,318,338,338,318,339,318,319,339,339,319,340,319,320,340,340,320,341,320,321,341,341,321,342,321,322,342,342,322,343,322,323,343,343,323,344,323,324,344,344,324,345,324,325,345,345,325,346,325,326,346,346,326,347,326,327,347,347,327,348,327,328,348,348,328,349,328,329,349,349,329,350,329,330,350,350,330,351,330,331,351,351,331,352,331,332,352,352,332,353,332,333,353,353,333,354,333,334,354,354,334,355,334,335,355,355,335,356,336,337,357,357,337,358,337,338,358,358,338,359,338,339,359,359,339,360,339,340,360,360,340,361,340,341,361,361,341,362,341,342,362,362,342,363,342,343,363,363,343,364,343,344,364,364,344,365,344,345,365,365,345,366,345,346,366,366,346,367,346,347,367,367,347,368,347,348,368,368,348,369,348,349,369,369,349,370,349,350,370,370,350,371,350,351,371,371,351,372,351,352,372,372,352,373,352,353,373,373,353,374,353,354,374,374,354,375,354,355,375,375,355,376,355,356,376,376,356,377,357,358,378,378,358,379,358,359,379,379,359,380,359,360,380,380,360,381,360,361,381,381,361,382,361,362,382,382,362,383,362,363,383,383,363,384,363,364,384,384,364,385,364,365,385,385,365,386,365,366,386,386,366,387,366,367,387,387,367,388,367,368,388,388,368,389,368,369,389,389,369,390,369,370,390,390,370,391,370,371,391,391,371,392,371,372,392,392,372,393,372,373,393,393,373,394,373,374,394,394,374,395,374,375,395,395,375,396,375,376,396,396,376,397,376,377,397,397,377,398,1,0,399,4,1,400,6,4,401,8,6,402,10,8,403,12,10,404,14,12,405,16,14,406,18,16,407,20,18,408,22,20,409,24,22,410,26,24,411,28,26,412,30,28,413,32,30,414,34,32,415,36,34,416,38,36,417,40,38,418,378,379,419,379,380,420,380,381,421,381,382,422,382,383,423,383,384,424,384,385,425,385,386,426,386,387,427,387,388,428,388,389,429,389,390,430,390,391,431,391,392,432,392,393,433,393,394,434,394,395,435,395,396,436,396,397,437,397,398,438],"receiveShadows":false,"infiniteDistance":false,"billboardMode":0,"visibility":1.0,"subMeshes":[{"materialIndex":0,"verticesStart":0,"verticesCount":439,"indexStart":0,"indexCount":2280}],"instances":null,"skeletonId":-1,"numBoneInfluencers":4,"applyFog":false,"lodMeshIds":null,"lodDistances":null,"lodCoverages":null,"rotation":null,"scaling":[1.0,1.0,1.0],"rotationQuaternion":[0.0,0.1736,0.0,0.9848],"actions":null,"checkCollisions":false,"pickable":true,"showBoundingBox":false,"showSubMeshesBoundingBox":false,"alphaIndex":0,"physicsImpostor":0,"physicsMass":0.0,"physicsFriction":0.0,"physicsRestitution":0.0,"name":"pSphere3","id":"3CC7A685-448C-CD8D-6923-DC9A8FDA8EAE","parentId":null,"position":[6.0,0.0,0.0],"animations":[],"autoAnimate":true,"autoAnimateFrom":1,"autoAnimateTo":200,"autoAnimateLoop":true,"metadata":{}},{"materialId":"C33371E3-49CC-50AB-9549-80BD2392C0F8","isEnabled":true,"isVisible":true,"positions":[0.1488,-0.9877,0.0483,0.1266,-0.9877,0.0919,0.2939,-0.9511,0.0955,0.25,-0.9511,0.1816,0.0919,-0.9877,0.1266,0.1816,-0.9511,0.25,0.0483,-0.9877,0.1488,0.0955,-0.9511,0.2939,0.0,-0.9877,0.1564,0.0,-0.9511,0.309,-0.0483,-0.9877,0.1488,-0.0955,-0.9511,0.2939,-0.0919,-0.9877,0.1266,-0.1816,-0.9511,0.25,-0.1266,-0.9877,0.0919,-0.25,-0.9511,0.1816,-0.1488,-0.9877,0.0483,-0.2939,-0.9511,0.0955,-0.1564,-0.9877,0.0,-0.309,-0.9511,0.0,-0.1488,-0.9877,-0.0483,-0.2939,-0.9511,-0.0955,-0.1266,-0.9877,-0.0919,-0.25,-0.9511,-0.1816,-0.0919,-0.9877,-0.1266,-0.1816,-0.9511,-0.25,-0.0483,-0.9877,-0.1488,-0.0955,-0.9511,-0.2939,0.0,-0.9877,-0.1564,0.0,-0.9511,-0.309,0.0483,-0.9877,-0.1488,0.0955,-0.9511,-0.2939,0.0919,-0.9877,-0.1266,0.1816,-0.9511,-0.25,0.1266,-0.9877,-0.0919,0.25,-0.9511,-0.1816,0.1488,-0.9877,-0.0483,0.2939,-0.9511,-0.0955,0.1564,-0.9877,0.0,0.309,-0.9511,0.0,0.1488,-0.9877,0.0483,0.2939,-0.9511,0.0955,0.4318,-0.891,0.1403,0.3673,-0.891,0.2668,0.2668,-0.891,0.3673,0.1403,-0.891,0.4318,0.0,-0.891,0.454,-0.1403,-0.891,0.4318,-0.2668,-0.891,0.3673,-0.3673,-0.891,0.2668,-0.4318,-0.891,0.1403,-0.454,-0.891,0.0,-0.4318,-0.891,-0.1403,-0.3673,-0.891,-0.2668,-0.2668,-0.891,-0.3673,-0.1403,-0.891,-0.4318,0.0,-0.891,-0.454,0.1403,-0.891,-0.4318,0.2668,-0.891,-0.3673,0.3673,-0.891,-0.2668,0.4318,-0.891,-0.1403,0.454,-0.891,0.0,0.4318,-0.891,0.1403,0.559,-0.809,0.1816,0.4755,-0.809,0.3455,0.3455,-0.809,0.4755,0.1816,-0.809,0.559,0.0,-0.809,0.5878,-0.1816,-0.809,0.559,-0.3455,-0.809,0.4755,-0.4755,-0.809,0.3455,-0.559,-0.809,0.1816,-0.5878,-0.809,0.0,-0.559,-0.809,-0.1816,-0.4755,-0.809,-0.3455,-0.3455,-0.809,-0.4755,-0.1816,-0.809,-0.559,0.0,-0.809,-0.5878,0.1816,-0.809,-0.559,0.3455,-0.809,-0.4755,0.4755,-0.809,-0.3455,0.559,-0.809,-0.1816,0.5878,-0.809,0.0,0.559,-0.809,0.1816,0.6725,-0.7071,0.2185,0.5721,-0.7071,0.4156,0.4156,-0.7071,0.5721,0.2185,-0.7071,0.6725,0.0,-0.7071,0.7071,-0.2185,-0.7071,0.6725,-0.4156,-0.7071,0.5721,-0.5721,-0.7071,0.4156,-0.6725,-0.7071,0.2185,-0.7071,-0.7071,0.0,-0.6725,-0.7071,-0.2185,-0.5721,-0.7071,-0.4156,-0.4156,-0.7071,-0.5721,-0.2185,-0.7071,-0.6725,0.0,-0.7071,-0.7071,0.2185,-0.7071,-0.6725,0.4156,-0.7071,-0.5721,0.5721,-0.7071,-0.4156,0.6725,-0.7071,-0.2185,0.7071,-0.7071,0.0,0.6725,-0.7071,0.2185,0.7694,-0.5878,0.25,0.6545,-0.5878,0.4755,0.4755,-0.5878,0.6545,0.25,-0.5878,0.7694,0.0,-0.5878,0.809,-0.25,-0.5878,0.7694,-0.4755,-0.5878,0.6545,-0.6545,-0.5878,0.4755,-0.7694,-0.5878,0.25,-0.809,-0.5878,0.0,-0.7694,-0.5878,-0.25,-0.6545,-0.5878,-0.4755,-0.4755,-0.5878,-0.6545,-0.25,-0.5878,-0.7694,0.0,-0.5878,-0.809,0.25,-0.5878,-0.7694,0.4755,-0.5878,-0.6545,0.6545,-0.5878,-0.4755,0.7694,-0.5878,-0.25,0.809,-0.5878,0.0,0.7694,-0.5878,0.25,0.8474,-0.454,0.2753,0.7208,-0.454,0.5237,0.5237,-0.454,0.7208,0.2753,-0.454,0.8474,0.0,-0.454,0.891,-0.2753,-0.454,0.8474,-0.5237,-0.454,0.7208,-0.7208,-0.454,0.5237,-0.8474,-0.454,0.2753,-0.891,-0.454,0.0,-0.8474,-0.454,-0.2753,-0.7208,-0.454,-0.5237,-0.5237,-0.454,-0.7208,-0.2753,-0.454,-0.8474,0.0,-0.454,-0.891,0.2753,-0.454,-0.8474,0.5237,-0.454,-0.7208,0.7208,-0.454,-0.5237,0.8474,-0.454,-0.2753,0.891,-0.454,0.0,0.8474,-0.454,0.2753,0.9045,-0.309,0.2939,0.7694,-0.309,0.559,0.559,-0.309,0.7694,0.2939,-0.309,0.9045,0.0,-0.309,0.9511,-0.2939,-0.309,0.9045,-0.559,-0.309,0.7694,-0.7694,-0.309,0.559,-0.9045,-0.309,0.2939,-0.9511,-0.309,0.0,-0.9045,-0.309,-0.2939,-0.7694,-0.309,-0.559,-0.559,-0.309,-0.7694,-0.2939,-0.309,-0.9045,0.0,-0.309,-0.9511,0.2939,-0.309,-0.9045,0.559,-0.309,-0.7694,0.7694,-0.309,-0.559,0.9045,-0.309,-0.2939,0.9511,-0.309,0.0,0.9045,-0.309,0.2939,0.9393,-0.1564,0.3052,0.7991,-0.1564,0.5805,0.5805,-0.1564,0.7991,0.3052,-0.1564,0.9393,0.0,-0.1564,0.9877,-0.3052,-0.1564,0.9393,-0.5805,-0.1564,0.7991,-0.7991,-0.1564,0.5805,-0.9393,-0.1564,0.3052,-0.9877,-0.1564,0.0,-0.9393,-0.1564,-0.3052,-0.7991,-0.1564,-0.5805,-0.5805,-0.1564,-0.7991,-0.3052,-0.1564,-0.9393,0.0,-0.1564,-0.9877,0.3052,-0.1564,-0.9393,0.5805,-0.1564,-0.7991,0.7991,-0.1564,-0.5805,0.9393,-0.1564,-0.3052,0.9877,-0.1564,0.0,0.9393,-0.1564,0.3052,0.9511,0.0,0.309,0.809,0.0,0.5878,0.5878,0.0,0.809,0.309,0.0,0.9511,0.0,0.0,1.0,-0.309,0.0,0.9511,-0.5878,0.0,0.809,-0.809,0.0,0.5878,-0.9511,0.0,0.309,-1.0,0.0,0.0,-0.9511,0.0,-0.309,-0.809,0.0,-0.5878,-0.5878,0.0,-0.809,-0.309,0.0,-0.9511,0.0,0.0,-1.0,0.309,0.0,-0.9511,0.5878,0.0,-0.809,0.809,0.0,-0.5878,0.9511,0.0,-0.309,1.0,0.0,0.0,0.9511,0.0,0.309,0.9393,0.1564,0.3052,0.7991,0.1564,0.5805,0.5805,0.1564,0.7991,0.3052,0.1564,0.9393,0.0,0.1564,0.9877,-0.3052,0.1564,0.9393,-0.5805,0.1564,0.7991,-0.7991,0.1564,0.5805,-0.9393,0.1564,0.3052,-0.9877,0.1564,0.0,-0.9393,0.1564,-0.3052,-0.7991,0.1564,-0.5805,-0.5805,0.1564,-0.7991,-0.3052,0.1564,-0.9393,0.0,0.1564,-0.9877,0.3052,0.1564,-0.9393,0.5805,0.1564,-0.7991,0.7991,0.1564,-0.5805,0.9393,0.1564,-0.3052,0.9877,0.1564,0.0,0.9393,0.1564,0.3052,0.9045,0.309,0.2939,0.7694,0.309,0.559,0.559,0.309,0.7694,0.2939,0.309,0.9045,0.0,0.309,0.9511,-0.2939,0.309,0.9045,-0.559,0.309,0.7694,-0.7694,0.309,0.559,-0.9045,0.309,0.2939,-0.9511,0.309,0.0,-0.9045,0.309,-0.2939,-0.7694,0.309,-0.559,-0.559,0.309,-0.7694,-0.2939,0.309,-0.9045,0.0,0.309,-0.9511,0.2939,0.309,-0.9045,0.559,0.309,-0.7694,0.7694,0.309,-0.559,0.9045,0.309,-0.2939,0.9511,0.309,0.0,0.9045,0.309,0.2939,0.8474,0.454,0.2753,0.7208,0.454,0.5237,0.5237,0.454,0.7208,0.2753,0.454,0.8474,0.0,0.454,0.891,-0.2753,0.454,0.8474,-0.5237,0.454,0.7208,-0.7208,0.454,0.5237,-0.8474,0.454,0.2753,-0.891,0.454,0.0,-0.8474,0.454,-0.2753,-0.7208,0.454,-0.5237,-0.5237,0.454,-0.7208,-0.2753,0.454,-0.8474,0.0,0.454,-0.891,0.2753,0.454,-0.8474,0.5237,0.454,-0.7208,0.7208,0.454,-0.5237,0.8474,0.454,-0.2753,0.891,0.454,0.0,0.8474,0.454,0.2753,0.7694,0.5878,0.25,0.6545,0.5878,0.4755,0.4755,0.5878,0.6545,0.25,0.5878,0.7694,0.0,0.5878,0.809,-0.25,0.5878,0.7694,-0.4755,0.5878,0.6545,-0.6545,0.5878,0.4755,-0.7694,0.5878,0.25,-0.809,0.5878,0.0,-0.7694,0.5878,-0.25,-0.6545,0.5878,-0.4755,-0.4755,0.5878,-0.6545,-0.25,0.5878,-0.7694,0.0,0.5878,-0.809,0.25,0.5878,-0.7694,0.4755,0.5878,-0.6545,0.6545,0.5878,-0.4755,0.7694,0.5878,-0.25,0.809,0.5878,0.0,0.7694,0.5878,0.25,0.6725,0.7071,0.2185,0.5721,0.7071,0.4156,0.4156,0.7071,0.5721,0.2185,0.7071,0.6725,0.0,0.7071,0.7071,-0.2185,0.7071,0.6725,-0.4156,0.7071,0.5721,-0.5721,0.7071,0.4156,-0.6725,0.7071,0.2185,-0.7071,0.7071,0.0,-0.6725,0.7071,-0.2185,-0.5721,0.7071,-0.4156,-0.4156,0.7071,-0.5721,-0.2185,0.7071,-0.6725,0.0,0.7071,-0.7071,0.2185,0.7071,-0.6725,0.4156,0.7071,-0.5721,0.5721,0.7071,-0.4156,0.6725,0.7071,-0.2185,0.7071,0.7071,0.0,0.6725,0.7071,0.2185,0.559,0.809,0.1816,0.4755,0.809,0.3455,0.3455,0.809,0.4755,0.1816,0.809,0.559,0.0,0.809,0.5878,-0.1816,0.809,0.559,-0.3455,0.809,0.4755,-0.4755,0.809,0.3455,-0.559,0.809,0.1816,-0.5878,0.809,0.0,-0.559,0.809,-0.1816,-0.4755,0.809,-0.3455,-0.3455,0.809,-0.4755,-0.1816,0.809,-0.559,0.0,0.809,-0.5878,0.1816,0.809,-0.559,0.3455,0.809,-0.4755,0.4755,0.809,-0.3455,0.559,0.809,-0.1816,0.5878,0.809,0.0,0.559,0.809,0.1816,0.4318,0.891,0.1403,0.3673,0.891,0.2668,0.2668,0.891,0.3673,0.1403,0.891,0.4318,0.0,0.891,0.454,-0.1403,0.891,0.4318,-0.2668,0.891,0.3673,-0.3673,0.891,0.2668,-0.4318,0.891,0.1403,-0.454,0.891,0.0,-0.4318,0.891,-0.1403,-0.3673,0.891,-0.2668,-0.2668,0.891,-0.3673,-0.1403,0.891,-0.4318,0.0,0.891,-0.454,0.1403,0.891,-0.4318,0.2668,0.891,-0.3673,0.3673,0.891,-0.2668,0.4318,0.891,-0.1403,0.454,0.891,0.0,0.4318,0.891,0.1403,0.2939,0.9511,0.0955,0.25,0.9511,0.1816,0.1816,0.9511,0.25,0.0955,0.9511,0.2939,0.0,0.9511,0.309,-0.0955,0.9511,0.2939,-0.1816,0.9511,0.25,-0.25,0.9511,0.1816,-0.2939,0.9511,0.0955,-0.309,0.9511,0.0,-0.2939,0.9511,-0.0955,-0.25,0.9511,-0.1816,-0.1816,0.9511,-0.25,-0.0955,0.9511,-0.2939,0.0,0.9511,-0.309,0.0955,0.9511,-0.2939,0.1816,0.9511,-0.25,0.25,0.9511,-0.1816,0.2939,0.9511,-0.0955,0.309,0.9511,0.0,0.2939,0.9511,0.0955,0.1488,0.9877,0.0483,0.1266,0.9877,0.0919,0.0919,0.9877,0.1266,0.0483,0.9877,0.1488,0.0,0.9877,0.1564,-0.0483,0.9877,0.1488,-0.0919,0.9877,0.1266,-0.1266,0.9877,0.0919,-0.1488,0.9877,0.0483,-0.1564,0.9877,0.0,-0.1488,0.9877,-0.0483,-0.1266,0.9877,-0.0919,-0.0919,0.9877,-0.1266,-0.0483,0.9877,-0.1488,0.0,0.9877,-0.1564,0.0483,0.9877,-0.1488,0.0919,0.9877,-0.1266,0.1266,0.9877,-0.0919,0.1488,0.9877,-0.0483,0.1564,0.9877,0.0,0.1488,0.9877,0.0483,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0],"normals":[0.1906,-0.9797,0.0619,0.1621,-0.9797,0.1178,0.3173,-0.9427,0.1031,0.2699,-0.9427,0.1961,0.1178,-0.9797,0.1621,0.1961,-0.9427,0.2699,0.0619,-0.9797,0.1906,0.1031,-0.9427,0.3173,0.0,-0.9797,0.2004,0.0,-0.9427,0.3336,-0.0619,-0.9797,0.1906,-0.1031,-0.9427,0.3173,-0.1178,-0.9797,0.1621,-0.1961,-0.9427,0.2699,-0.1621,-0.9797,0.1178,-0.2699,-0.9427,0.1961,-0.1906,-0.9797,0.0619,-0.3173,-0.9427,0.1031,-0.2004,-0.9797,0.0,-0.3336,-0.9427,0.0,-0.1906,-0.9797,-0.0619,-0.3173,-0.9427,-0.1031,-0.1621,-0.9797,-0.1178,-0.2699,-0.9427,-0.1961,-0.1178,-0.9797,-0.1621,-0.1961,-0.9427,-0.2699,-0.0619,-0.9797,-0.1906,-0.1031,-0.9427,-0.3173,0.0,-0.9797,-0.2004,0.0,-0.9427,-0.3336,0.0619,-0.9797,-0.1906,0.1031,-0.9427,-0.3173,0.1178,-0.9797,-0.1621,0.1961,-0.9427,-0.2699,0.1621,-0.9797,-0.1178,0.2699,-0.9427,-0.1961,0.1906,-0.9797,-0.0619,0.3173,-0.9427,-0.1031,0.2004,-0.9797,0.0,0.3336,-0.9427,0.0,0.1906,-0.9797,0.0619,0.3173,-0.9427,0.1031,0.4477,-0.8823,0.1455,0.3808,-0.8823,0.2767,0.2767,-0.8823,0.3808,0.1455,-0.8823,0.4477,0.0,-0.8823,0.4708,-0.1455,-0.8823,0.4477,-0.2767,-0.8823,0.3808,-0.3808,-0.8823,0.2767,-0.4477,-0.8823,0.1455,-0.4708,-0.8823,0.0,-0.4477,-0.8823,-0.1455,-0.3808,-0.8823,-0.2767,-0.2767,-0.8823,-0.3808,-0.1455,-0.8823,-0.4477,0.0,-0.8823,-0.4708,0.1455,-0.8823,-0.4477,0.2767,-0.8823,-0.3808,0.3808,-0.8823,-0.2767,0.4477,-0.8823,-0.1455,0.4708,-0.8823,0.0,0.4477,-0.8823,0.1455,0.5703,-0.8003,0.1853,0.4851,-0.8003,0.3525,0.3525,-0.8003,0.4851,0.1853,-0.8003,0.5703,0.0,-0.8003,0.5997,-0.1853,-0.8003,0.5703,-0.3525,-0.8003,0.4851,-0.4851,-0.8003,0.3525,-0.5703,-0.8003,0.1853,-0.5997,-0.8003,0.0,-0.5703,-0.8003,-0.1853,-0.4851,-0.8003,-0.3525,-0.3525,-0.8003,-0.4851,-0.1853,-0.8003,-0.5703,0.0,-0.8003,-0.5997,0.1853,-0.8003,-0.5703,0.3525,-0.8003,-0.4851,0.4851,-0.8003,-0.3525,0.5703,-0.8003,-0.1853,0.5997,-0.8003,0.0,0.5703,-0.8003,0.1853,0.6803,-0.6988,0.221,0.5787,-0.6988,0.4205,0.4205,-0.6988,0.5787,0.221,-0.6988,0.6803,0.0,-0.6988,0.7153,-0.221,-0.6988,0.6803,-0.4205,-0.6988,0.5787,-0.5787,-0.6988,0.4205,-0.6803,-0.6988,0.221,-0.7153,-0.6988,0.0,-0.6803,-0.6988,-0.221,-0.5787,-0.6988,-0.4205,-0.4205,-0.6988,-0.5787,-0.221,-0.6988,-0.6803,0.0,-0.6988,-0.7153,0.221,-0.6988,-0.6803,0.4205,-0.6988,-0.5787,0.5787,-0.6988,-0.4205,0.6803,-0.6988,-0.221,0.7153,-0.6988,0.0,0.6803,-0.6988,0.221,0.7745,-0.5804,0.2516,0.6588,-0.5804,0.4787,0.4787,-0.5804,0.6588,0.2516,-0.5804,0.7745,0.0,-0.5804,0.8143,-0.2516,-0.5804,0.7745,-0.4787,-0.5804,0.6588,-0.6588,-0.5804,0.4787,-0.7745,-0.5804,0.2516,-0.8143,-0.5804,0.0,-0.7745,-0.5804,-0.2516,-0.6588,-0.5804,-0.4787,-0.4787,-0.5804,-0.6588,-0.2516,-0.5804,-0.7745,0.0,-0.5804,-0.8143,0.2516,-0.5804,-0.7745,0.4787,-0.5804,-0.6588,0.6588,-0.5804,-0.4787,0.7745,-0.5804,-0.2516,0.8143,-0.5804,0.0,0.7745,-0.5804,0.2516,0.8503,-0.448,0.2763,0.7233,-0.448,0.5255,0.5255,-0.448,0.7233,0.2763,-0.448,0.8503,0.0,-0.448,0.894,-0.2763,-0.448,0.8503,-0.5255,-0.448,0.7233,-0.7233,-0.448,0.5255,-0.8503,-0.448,0.2763,-0.894,-0.448,0.0,-0.8503,-0.448,-0.2763,-0.7233,-0.448,-0.5255,-0.5255,-0.448,-0.7233,-0.2763,-0.448,-0.8503,0.0,-0.448,-0.894,0.2763,-0.448,-0.8503,0.5255,-0.448,-0.7233,0.7233,-0.448,-0.5255,0.8503,-0.448,-0.2763,0.894,-0.448,0.0,0.8503,-0.448,0.2763,0.9058,-0.3048,0.2943,0.7705,-0.3048,0.5598,0.5598,-0.3048,0.7705,0.2943,-0.3048,0.9058,0.0,-0.3048,0.9524,-0.2943,-0.3048,0.9058,-0.5598,-0.3048,0.7705,-0.7705,-0.3048,0.5598,-0.9058,-0.3048,0.2943,-0.9524,-0.3048,0.0,-0.9058,-0.3048,-0.2943,-0.7705,-0.3048,-0.5598,-0.5598,-0.3048,-0.7705,-0.2943,-0.3048,-0.9058,0.0,-0.3048,-0.9524,0.2943,-0.3048,-0.9058,0.5598,-0.3048,-0.7705,0.7705,-0.3048,-0.5598,0.9058,-0.3048,-0.2943,0.9524,-0.3048,0.0,0.9058,-0.3048,0.2943,0.9397,-0.1542,0.3053,0.7993,-0.1542,0.5808,0.5808,-0.1542,0.7993,0.3053,-0.1542,0.9397,0.0,-0.1542,0.988,-0.3053,-0.1542,0.9397,-0.5808,-0.1542,0.7993,-0.7993,-0.1542,0.5808,-0.9397,-0.1542,0.3053,-0.988,-0.1542,0.0,-0.9397,-0.1542,-0.3053,-0.7993,-0.1542,-0.5808,-0.5808,-0.1542,-0.7993,-0.3053,-0.1542,-0.9397,0.0,-0.1542,-0.988,0.3053,-0.1542,-0.9397,0.5808,-0.1542,-0.7993,0.7993,-0.1542,-0.5808,0.9397,-0.1542,-0.3053,0.988,-0.1542,0.0,0.9397,-0.1542,0.3053,0.9511,0.0,0.309,0.809,0.0,0.5878,0.5878,0.0,0.809,0.309,0.0,0.9511,0.0,0.0,1.0,-0.309,0.0,0.9511,-0.5878,0.0,0.809,-0.809,0.0,0.5878,-0.9511,0.0,0.309,-1.0,0.0,0.0,-0.9511,0.0,-0.309,-0.809,0.0,-0.5878,-0.5878,0.0,-0.809,-0.309,0.0,-0.9511,0.0,0.0,-1.0,0.309,0.0,-0.9511,0.5878,0.0,-0.809,0.809,0.0,-0.5878,0.9511,0.0,-0.309,1.0,0.0,0.0,0.9511,0.0,0.309,0.9397,0.1542,0.3053,0.7993,0.1542,0.5808,0.5808,0.1542,0.7993,0.3053,0.1542,0.9397,0.0,0.1542,0.988,-0.3053,0.1542,0.9397,-0.5808,0.1542,0.7993,-0.7993,0.1542,0.5808,-0.9397,0.1542,0.3053,-0.988,0.1542,0.0,-0.9397,0.1542,-0.3053,-0.7993,0.1542,-0.5808,-0.5808,0.1542,-0.7993,-0.3053,0.1542,-0.9397,0.0,0.1542,-0.988,0.3053,0.1542,-0.9397,0.5808,0.1542,-0.7993,0.7993,0.1542,-0.5808,0.9397,0.1542,-0.3053,0.988,0.1542,0.0,0.9397,0.1542,0.3053,0.9058,0.3048,0.2943,0.7705,0.3048,0.5598,0.5598,0.3048,0.7705,0.2943,0.3048,0.9058,0.0,0.3048,0.9524,-0.2943,0.3048,0.9058,-0.5598,0.3048,0.7705,-0.7705,0.3048,0.5598,-0.9058,0.3048,0.2943,-0.9524,0.3048,0.0,-0.9058,0.3048,-0.2943,-0.7705,0.3048,-0.5598,-0.5598,0.3048,-0.7705,-0.2943,0.3048,-0.9058,0.0,0.3048,-0.9524,0.2943,0.3048,-0.9058,0.5598,0.3048,-0.7705,0.7705,0.3048,-0.5598,0.9058,0.3048,-0.2943,0.9524,0.3048,0.0,0.9058,0.3048,0.2943,0.8503,0.448,0.2763,0.7233,0.448,0.5255,0.5255,0.448,0.7233,0.2763,0.448,0.8503,0.0,0.448,0.894,-0.2763,0.448,0.8503,-0.5255,0.448,0.7233,-0.7233,0.448,0.5255,-0.8503,0.448,0.2763,-0.894,0.448,0.0,-0.8503,0.448,-0.2763,-0.7233,0.448,-0.5255,-0.5255,0.448,-0.7233,-0.2763,0.448,-0.8503,0.0,0.448,-0.894,0.2763,0.448,-0.8503,0.5255,0.448,-0.7233,0.7233,0.448,-0.5255,0.8503,0.448,-0.2763,0.894,0.448,0.0,0.8503,0.448,0.2763,0.7745,0.5804,0.2516,0.6588,0.5804,0.4787,0.4787,0.5804,0.6588,0.2516,0.5804,0.7745,0.0,0.5804,0.8143,-0.2516,0.5804,0.7745,-0.4787,0.5804,0.6588,-0.6588,0.5804,0.4787,-0.7745,0.5804,0.2516,-0.8143,0.5804,0.0,-0.7745,0.5804,-0.2516,-0.6588,0.5804,-0.4787,-0.4787,0.5804,-0.6588,-0.2516,0.5804,-0.7745,0.0,0.5804,-0.8143,0.2516,0.5804,-0.7745,0.4787,0.5804,-0.6588,0.6588,0.5804,-0.4787,0.7745,0.5804,-0.2516,0.8143,0.5804,0.0,0.7745,0.5804,0.2516,0.6803,0.6988,0.221,0.5787,0.6988,0.4205,0.4205,0.6988,0.5787,0.221,0.6988,0.6803,0.0,0.6988,0.7153,-0.221,0.6988,0.6803,-0.4205,0.6988,0.5787,-0.5787,0.6988,0.4205,-0.6803,0.6988,0.221,-0.7153,0.6988,0.0,-0.6803,0.6988,-0.221,-0.5787,0.6988,-0.4205,-0.4205,0.6988,-0.5787,-0.221,0.6988,-0.6803,0.0,0.6988,-0.7153,0.221,0.6988,-0.6803,0.4205,0.6988,-0.5787,0.5787,0.6988,-0.4205,0.6803,0.6988,-0.221,0.7153,0.6988,0.0,0.6803,0.6988,0.221,0.5703,0.8003,0.1853,0.4851,0.8003,0.3525,0.3525,0.8003,0.4851,0.1853,0.8003,0.5703,0.0,0.8003,0.5997,-0.1853,0.8003,0.5703,-0.3525,0.8003,0.4851,-0.4851,0.8003,0.3525,-0.5703,0.8003,0.1853,-0.5997,0.8003,0.0,-0.5703,0.8003,-0.1853,-0.4851,0.8003,-0.3525,-0.3525,0.8003,-0.4851,-0.1853,0.8003,-0.5703,0.0,0.8003,-0.5997,0.1853,0.8003,-0.5703,0.3525,0.8003,-0.4851,0.4851,0.8003,-0.3525,0.5703,0.8003,-0.1853,0.5997,0.8003,0.0,0.5703,0.8003,0.1853,0.4477,0.8823,0.1455,0.3808,0.8823,0.2767,0.2767,0.8823,0.3808,0.1455,0.8823,0.4477,0.0,0.8823,0.4708,-0.1455,0.8823,0.4477,-0.2767,0.8823,0.3808,-0.3808,0.8823,0.2767,-0.4477,0.8823,0.1455,-0.4708,0.8823,0.0,-0.4477,0.8823,-0.1455,-0.3808,0.8823,-0.2767,-0.2767,0.8823,-0.3808,-0.1455,0.8823,-0.4477,0.0,0.8823,-0.4708,0.1455,0.8823,-0.4477,0.2767,0.8823,-0.3808,0.3808,0.8823,-0.2767,0.4477,0.8823,-0.1455,0.4708,0.8823,0.0,0.4477,0.8823,0.1455,0.3173,0.9427,0.1031,0.2699,0.9427,0.1961,0.1961,0.9427,0.2699,0.1031,0.9427,0.3173,0.0,0.9427,0.3336,-0.1031,0.9427,0.3173,-0.1961,0.9427,0.2699,-0.2699,0.9427,0.1961,-0.3173,0.9427,0.1031,-0.3336,0.9427,0.0,-0.3173,0.9427,-0.1031,-0.2699,0.9427,-0.1961,-0.1961,0.9427,-0.2699,-0.1031,0.9427,-0.3173,0.0,0.9427,-0.3336,0.1031,0.9427,-0.3173,0.1961,0.9427,-0.2699,0.2699,0.9427,-0.1961,0.3173,0.9427,-0.1031,0.3336,0.9427,0.0,0.3173,0.9427,0.1031,0.1906,0.9797,0.0619,0.1621,0.9797,0.1178,0.1178,0.9797,0.1621,0.0619,0.9797,0.1906,0.0,0.9797,0.2004,-0.0619,0.9797,0.1906,-0.1178,0.9797,0.1621,-0.1621,0.9797,0.1178,-0.1906,0.9797,0.0619,-0.2004,0.9797,0.0,-0.1906,0.9797,-0.0619,-0.1621,0.9797,-0.1178,-0.1178,0.9797,-0.1621,-0.0619,0.9797,-0.1906,0.0,0.9797,-0.2004,0.0619,0.9797,-0.1906,0.1178,0.9797,-0.1621,0.1621,0.9797,-0.1178,0.1906,0.9797,-0.0619,0.2004,0.9797,0.0,0.1906,0.9797,0.0619,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0],"tangents":[-0.4482,-0.0307,0.8934,-1.0,-0.5629,0.0062,0.8265,-1.0,-0.438,-0.0493,0.8976,-1.0,-0.5878,0.0,0.809,-1.0,-0.7908,0.0062,0.6121,-1.0,-0.809,0.0,0.5878,-1.0,-0.9412,0.0062,0.3378,-1.0,-0.9511,0.0,0.309,-1.0,-0.9995,0.0062,0.0304,-1.0,-1.0,0.0,0.0,-1.0,-0.96,0.0062,-0.28,-1.0,-0.9511,0.0,-0.309,-1.0,-0.8265,0.0062,-0.5629,-1.0,-0.809,0.0,-0.5878,-1.0,-0.6121,0.0062,-0.7908,-1.0,-0.5878,0.0,-0.809,-1.0,-0.3378,0.0062,-0.9412,-1.0,-0.309,0.0,-0.9511,-1.0,-0.0304,0.0062,-0.9995,-1.0,0.0,0.0,-1.0,-1.0,0.28,0.0062,-0.96,-1.0,0.309,0.0,-0.9511,-1.0,0.5629,0.0062,-0.8265,-1.0,0.5878,0.0,-0.809,-1.0,0.7908,0.0062,-0.6121,-1.0,0.809,0.0,-0.5878,-1.0,0.9412,0.0062,-0.3378,-1.0,0.9511,0.0,-0.309,-1.0,0.9995,0.0062,-0.0304,-1.0,1.0,0.0,0.0,-1.0,0.96,0.0062,0.28,-1.0,0.9511,0.0,0.309,-1.0,0.8265,0.0062,0.5629,-1.0,0.809,0.0,0.5878,-1.0,0.6121,0.0062,0.7908,-1.0,0.5878,0.0,0.809,-1.0,0.3378,0.0062,0.9412,-1.0,0.309,0.0,0.9511,-1.0,0.0304,0.0062,0.9995,-1.0,0.0,0.0,1.0,-1.0,-0.1625,0.0307,0.9862,-1.0,-0.1732,0.0493,0.9836,-1.0,-0.4222,-0.0651,0.9042,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.1899,0.0651,0.9796,-1.0,-0.4023,-0.0754,0.9124,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.2109,0.0754,0.9746,-1.0,-0.3802,-0.0787,0.9215,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.234,0.0787,0.969,-1.0,-0.3582,-0.0745,0.9306,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.2572,0.0745,0.9635,-1.0,-0.3384,-0.0633,0.9389,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.2781,0.0633,0.9585,-1.0,-0.3226,-0.0459,0.9454,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.2947,0.0459,0.9545,-1.0,-0.3125,-0.0241,0.9496,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.3053,0.0241,0.9519,-1.0,-0.309,0.0,0.9511,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.309,0.0,0.9511,-1.0,-0.3125,0.0241,0.9496,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.3053,-0.0241,0.9519,-1.0,-0.3226,0.0459,0.9454,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.2947,-0.0459,0.9545,-1.0,-0.3384,0.0633,0.9389,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.2781,-0.0633,0.9585,-1.0,-0.3582,0.0745,0.9306,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.2572,-0.0745,0.9635,-1.0,-0.3802,0.0787,0.9215,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.234,-0.0787,0.969,-1.0,-0.4023,0.0754,0.9124,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.2109,-0.0754,0.9746,-1.0,-0.4222,0.0651,0.9042,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.1899,-0.0651,0.9796,-1.0,-0.438,0.0493,0.8976,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.1732,-0.0493,0.9836,-1.0,-0.4482,0.0307,0.8934,-1.0,-0.6121,0.0062,0.7908,-1.0,-0.8265,0.0062,0.5629,-1.0,-0.96,0.0062,0.28,-1.0,-0.9995,0.0062,-0.0304,-1.0,-0.9412,0.0062,-0.3378,-1.0,-0.7908,0.0062,-0.6121,-1.0,-0.5629,0.0062,-0.8265,-1.0,-0.28,0.0062,-0.96,-1.0,0.0304,0.0062,-0.9995,-1.0,0.3378,0.0062,-0.9412,-1.0,0.6121,0.0062,-0.7908,-1.0,0.8265,0.0062,-0.5629,-1.0,0.96,0.0062,-0.28,-1.0,0.9995,0.0062,0.0304,-1.0,0.9412,0.0062,0.3378,-1.0,0.7908,0.0062,0.6121,-1.0,0.5629,0.0062,0.8265,-1.0,0.28,0.0062,0.96,-1.0,-0.0304,0.0062,0.9995,-1.0,-0.1625,-0.0307,0.9862,-1.0,-0.454,0.0,0.891,-1.0,-0.7071,0.0,0.7071,-1.0,-0.891,0.0,0.454,-1.0,-0.9877,0.0,0.1564,-1.0,-0.9877,0.0,-0.1564,-1.0,-0.891,0.0,-0.454,-1.0,-0.7071,0.0,-0.7071,-1.0,-0.454,0.0,-0.891,-1.0,-0.1564,0.0,-0.9877,-1.0,0.1564,0.0,-0.9877,-1.0,0.454,0.0,-0.891,-1.0,0.7071,0.0,-0.7071,-1.0,0.891,0.0,-0.454,-1.0,0.9877,0.0,-0.1564,-1.0,0.9877,0.0,0.1564,-1.0,0.891,0.0,0.454,-1.0,0.7071,0.0,0.7071,-1.0,0.454,0.0,0.891,-1.0,0.1564,0.0,0.9877,-1.0,-0.1564,0.0,0.9877,-1.0,-0.454,0.0,0.891,-1.0,-0.7071,0.0,0.7071,-1.0,-0.891,0.0,0.454,-1.0,-0.9877,0.0,0.1564,-1.0,-0.9877,0.0,-0.1564,-1.0,-0.891,0.0,-0.454,-1.0,-0.7071,0.0,-0.7071,-1.0,-0.454,0.0,-0.891,-1.0,-0.1564,0.0,-0.9877,-1.0,0.1564,0.0,-0.9877,-1.0,0.454,0.0,-0.891,-1.0,0.7071,0.0,-0.7071,-1.0,0.891,0.0,-0.454,-1.0,0.9877,0.0,-0.1564,-1.0,0.9877,0.0,0.1564,-1.0,0.891,0.0,0.454,-1.0,0.7071,0.0,0.7071,-1.0,0.454,0.0,0.891,-1.0,0.1564,0.0,0.9877,-1.0,-0.1564,0.0,0.9877,-1.0],"uvs":[0.0,0.05,0.05,0.05,0.0,0.1,0.05,0.1,0.1,0.05,0.1,0.1,0.15,0.05,0.15,0.1,0.2,0.05,0.2,0.1,0.25,0.05,0.25,0.1,0.3,0.05,0.3,0.1,0.35,0.05,0.35,0.1,0.4,0.05,0.4,0.1,0.45,0.05,0.45,0.1,0.5,0.05,0.5,0.1,0.55,0.05,0.55,0.1,0.6,0.05,0.6,0.1,0.65,0.05,0.65,0.1,0.7,0.05,0.7,0.1,0.75,0.05,0.75,0.1,0.8,0.05,0.8,0.1,0.85,0.05,0.85,0.1,0.9,0.05,0.9,0.1,0.95,0.05,0.95,0.1,1.0,0.05,1.0,0.1,0.0,0.15,0.05,0.15,0.1,0.15,0.15,0.15,0.2,0.15,0.25,0.15,0.3,0.15,0.35,0.15,0.4,0.15,0.45,0.15,0.5,0.15,0.55,0.15,0.6,0.15,0.65,0.15,0.7,0.15,0.75,0.15,0.8,0.15,0.85,0.15,0.9,0.15,0.95,0.15,1.0,0.15,0.0,0.2,0.05,0.2,0.1,0.2,0.15,0.2,0.2,0.2,0.25,0.2,0.3,0.2,0.35,0.2,0.4,0.2,0.45,0.2,0.5,0.2,0.55,0.2,0.6,0.2,0.65,0.2,0.7,0.2,0.75,0.2,0.8,0.2,0.85,0.2,0.9,0.2,0.95,0.2,1.0,0.2,0.0,0.25,0.05,0.25,0.1,0.25,0.15,0.25,0.2,0.25,0.25,0.25,0.3,0.25,0.35,0.25,0.4,0.25,0.45,0.25,0.5,0.25,0.55,0.25,0.6,0.25,0.65,0.25,0.7,0.25,0.75,0.25,0.8,0.25,0.85,0.25,0.9,0.25,0.95,0.25,1.0,0.25,0.0,0.3,0.05,0.3,0.1,0.3,0.15,0.3,0.2,0.3,0.25,0.3,0.3,0.3,0.35,0.3,0.4,0.3,0.45,0.3,0.5,0.3,0.55,0.3,0.6,0.3,0.65,0.3,0.7,0.3,0.75,0.3,0.8,0.3,0.85,0.3,0.9,0.3,0.95,0.3,1.0,0.3,0.0,0.35,0.05,0.35,0.1,0.35,0.15,0.35,0.2,0.35,0.25,0.35,0.3,0.35,0.35,0.35,0.4,0.35,0.45,0.35,0.5,0.35,0.55,0.35,0.6,0.35,0.65,0.35,0.7,0.35,0.75,0.35,0.8,0.35,0.85,0.35,0.9,0.35,0.95,0.35,1.0,0.35,0.0,0.4,0.05,0.4,0.1,0.4,0.15,0.4,0.2,0.4,0.25,0.4,0.3,0.4,0.35,0.4,0.4,0.4,0.45,0.4,0.5,0.4,0.55,0.4,0.6,0.4,0.65,0.4,0.7,0.4,0.75,0.4,0.8,0.4,0.85,0.4,0.9,0.4,0.95,0.4,1.0,0.4,0.0,0.45,0.05,0.45,0.1,0.45,0.15,0.45,0.2,0.45,0.25,0.45,0.3,0.45,0.35,0.45,0.4,0.45,0.45,0.45,0.5,0.45,0.55,0.45,0.6,0.45,0.65,0.45,0.7,0.45,0.75,0.45,0.8,0.45,0.85,0.45,0.9,0.45,0.95,0.45,1.0,0.45,0.0,0.5,0.05,0.5,0.1,0.5,0.15,0.5,0.2,0.5,0.25,0.5,0.3,0.5,0.35,0.5,0.4,0.5,0.45,0.5,0.5,0.5,0.55,0.5,0.6,0.5,0.65,0.5,0.7,0.5,0.75,0.5,0.8,0.5,0.85,0.5,0.9,0.5,0.95,0.5,1.0,0.5,0.0,0.55,0.05,0.55,0.1,0.55,0.15,0.55,0.2,0.55,0.25,0.55,0.3,0.55,0.35,0.55,0.4,0.55,0.45,0.55,0.5,0.55,0.55,0.55,0.6,0.55,0.65,0.55,0.7,0.55,0.75,0.55,0.8,0.55,0.85,0.55,0.9,0.55,0.95,0.55,1.0,0.55,0.0,0.6,0.05,0.6,0.1,0.6,0.15,0.6,0.2,0.6,0.25,0.6,0.3,0.6,0.35,0.6,0.4,0.6,0.45,0.6,0.5,0.6,0.55,0.6,0.6,0.6,0.65,0.6,0.7,0.6,0.75,0.6,0.8,0.6,0.85,0.6,0.9,0.6,0.95,0.6,1.0,0.6,0.0,0.65,0.05,0.65,0.1,0.65,0.15,0.65,0.2,0.65,0.25,0.65,0.3,0.65,0.35,0.65,0.4,0.65,0.45,0.65,0.5,0.65,0.55,0.65,0.6,0.65,0.65,0.65,0.7,0.65,0.75,0.65,0.8,0.65,0.85,0.65,0.9,0.65,0.95,0.65,1.0,0.65,0.0,0.7,0.05,0.7,0.1,0.7,0.15,0.7,0.2,0.7,0.25,0.7,0.3,0.7,0.35,0.7,0.4,0.7,0.45,0.7,0.5,0.7,0.55,0.7,0.6,0.7,0.65,0.7,0.7,0.7,0.75,0.7,0.8,0.7,0.85,0.7,0.9,0.7,0.95,0.7,1.0,0.7,0.0,0.75,0.05,0.75,0.1,0.75,0.15,0.75,0.2,0.75,0.25,0.75,0.3,0.75,0.35,0.75,0.4,0.75,0.45,0.75,0.5,0.75,0.55,0.75,0.6,0.75,0.65,0.75,0.7,0.75,0.75,0.75,0.8,0.75,0.85,0.75,0.9,0.75,0.95,0.75,1.0,0.75,0.0,0.8,0.05,0.8,0.1,0.8,0.15,0.8,0.2,0.8,0.25,0.8,0.3,0.8,0.35,0.8,0.4,0.8,0.45,0.8,0.5,0.8,0.55,0.8,0.6,0.8,0.65,0.8,0.7,0.8,0.75,0.8,0.8,0.8,0.85,0.8,0.9,0.8,0.95,0.8,1.0,0.8,0.0,0.85,0.05,0.85,0.1,0.85,0.15,0.85,0.2,0.85,0.25,0.85,0.3,0.85,0.35,0.85,0.4,0.85,0.45,0.85,0.5,0.85,0.55,0.85,0.6,0.85,0.65,0.85,0.7,0.85,0.75,0.85,0.8,0.85,0.85,0.85,0.9,0.85,0.95,0.85,1.0,0.85,0.0,0.9,0.05,0.9,0.1,0.9,0.15,0.9,0.2,0.9,0.25,0.9,0.3,0.9,0.35,0.9,0.4,0.9,0.45,0.9,0.5,0.9,0.55,0.9,0.6,0.9,0.65,0.9,0.7,0.9,0.75,0.9,0.8,0.9,0.85,0.9,0.9,0.9,0.95,0.9,1.0,0.9,0.0,0.95,0.05,0.95,0.1,0.95,0.15,0.95,0.2,0.95,0.25,0.95,0.3,0.95,0.35,0.95,0.4,0.95,0.45,0.95,0.5,0.95,0.55,0.95,0.6,0.95,0.65,0.95,0.7,0.95,0.75,0.95,0.8,0.95,0.85,0.95,0.9,0.95,0.95,0.95,1.0,0.95,0.025,0.0,0.075,0.0,0.125,0.0,0.175,0.0,0.225,0.0,0.275,0.0,0.325,0.0,0.375,0.0,0.425,0.0,0.475,0.0,0.525,0.0,0.575,0.0,0.625,0.0,0.675,0.0,0.725,0.0,0.775,0.0,0.825,0.0,0.875,0.0,0.925,0.0,0.975,0.0,0.025,1.0,0.075,1.0,0.125,1.0,0.175,1.0,0.225,1.0,0.275,1.0,0.325,1.0,0.375,1.0,0.425,1.0,0.475,1.0,0.525,1.0,0.575,1.0,0.625,1.0,0.675,1.0,0.725,1.0,0.775,1.0,0.825,1.0,0.875,1.0,0.925,1.0,0.975,1.0],"uvs2":null,"colors":null,"hasVertexAlpha":false,"matricesIndices":null,"matricesWeights":null,"matricesIndicesExtra":null,"matricesWeightsExtra":null,"indices":[0,1,2,2,1,3,1,4,3,3,4,5,4,6,5,5,6,7,6,8,7,7,8,9,8,10,9,9,10,11,10,12,11,11,12,13,12,14,13,13,14,15,14,16,15,15,16,17,16,18,17,17,18,19,18,20,19,19,20,21,20,22,21,21,22,23,22,24,23,23,24,25,24,26,25,25,26,27,26,28,27,27,28,29,28,30,29,29,30,31,30,32,31,31,32,33,32,34,33,33,34,35,34,36,35,35,36,37,36,38,37,37,38,39,38,40,39,39,40,41,2,3,42,42,3,43,3,5,43,43,5,44,5,7,44,44,7,45,7,9,45,45,9,46,9,11,46,46,11,47,11,13,47,47,13,48,13,15,48,48,15,49,15,17,49,49,17,50,17,19,50,50,19,51,19,21,51,51,21,52,21,23,52,52,23,53,23,25,53,53,25,54,25,27,54,54,27,55,27,29,55,55,29,56,29,31,56,56,31,57,31,33,57,57,33,58,33,35,58,58,35,59,35,37,59,59,37,60,37,39,60,60,39,61,39,41,61,61,41,62,42,43,63,63,43,64,43,44,64,64,44,65,44,45,65,65,45,66,45,46,66,66,46,67,46,47,67,67,47,68,47,48,68,68,48,69,48,49,69,69,49,70,49,50,70,70,50,71,50,51,71,71,51,72,51,52,72,72,52,73,52,53,73,73,53,74,53,54,74,74,54,75,54,55,75,75,55,76,55,56,76,76,56,77,56,57,77,77,57,78,57,58,78,78,58,79,58,59,79,79,59,80,59,60,80,80,60,81,60,61,81,81,61,82,61,62,82,82,62,83,63,64,84,84,64,85,64,65,85,85,65,86,65,66,86,86,66,87,66,67,87,87,67,88,67,68,88,88,68,89,68,69,89,89,69,90,69,70,90,90,70,91,70,71,91,91,71,92,71,72,92,92,72,93,72,73,93,93,73,94,73,74,94,94,74,95,74,75,95,95,75,96,75,76,96,96,76,97,76,77,97,97,77,98,77,78,98,98,78,99,78,79,99,99,79,100,79,80,100,100,80,101,80,81,101,101,81,102,81,82,102,102,82,103,82,83,103,103,83,104,84,85,105,105,85,106,85,86,106,106,86,107,86,87,107,107,87,108,87,88,108,108,88,109,88,89,109,109,89,110,89,90,110,110,90,111,90,91,111,111,91,112,91,92,112,112,92,113,92,93,113,113,93,114,93,94,114,114,94,115,94,95,115,115,95,116,95,96,116,116,96,117,96,97,117,117,97,118,97,98,118,118,98,119,98,99,119,119,99,120,99,100,120,120,100,121,100,101,121,121,101,122,101,102,122,122,102,123,102,103,123,123,103,124,103,104,124,124,104,125,105,106,126,126,106,127,106,107,127,127,107,128,107,108,128,128,108,129,108,109,129,129,109,130,109,110,130,130,110,131,110,111,131,131,111,132,111,112,132,132,112,133,112,113,133,133,113,134,113,114,134,134,114,135,114,115,135,135,115,136,115,116,136,136,116,137,116,117,137,137,117,138,117,118,138,138,118,139,118,119,139,139,119,140,119,120,140,140,120,141,120,121,141,141,121,142,121,122,142,142,122,143,122,123,143,143,123,144,123,124,144,144,124,145,124,125,145,145,125,146,126,127,147,147,127,148,127,128,148,148,128,149,128,129,149,149,129,150,129,130,150,150,130,151,130,131,151,151,131,152,131,132,152,152,132,153,132,133,153,153,133,154,133,134,154,154,134,155,134,135,155,155,135,156,135,136,156,156,136,157,136,137,157,157,137,158,137,138,158,158,138,159,138,139,159,159,139,160,139,140,160,160,140,161,140,141,161,161,141,162,141,142,162,162,142,163,142,143,163,163,143,164,143,144,164,164,144,165,144,145,165,165,145,166,145,146,166,166,146,167,147,148,168,168,148,169,148,149,169,169,149,170,149,150,170,170,150,171,150,151,171,171,151,172,151,152,172,172,152,173,152,153,173,173,153,174,153,154,174,174,154,175,154,155,175,175,155,176,155,156,176,176,156,177,156,157,177,177,157,178,157,158,178,178,158,179,158,159,179,179,159,180,159,160,180,180,160,181,160,161,181,181,161,182,161,162,182,182,162,183,162,163,183,183,163,184,163,164,184,184,164,185,164,165,185,185,165,186,165,166,186,186,166,187,166,167,187,187,167,188,168,169,189,189,169,190,169,170,190,190,170,191,170,171,191,191,171,192,171,172,192,192,172,193,172,173,193,193,173,194,173,174,194,194,174,195,174,175,195,195,175,196,175,176,196,196,176,197,176,177,197,197,177,198,177,178,198,198,178,199,178,179,199,199,179,200,179,180,200,200,180,201,180,181,201,201,181,202,181,182,202,202,182,203,182,183,203,203,183,204,183,184,204,204,184,205,184,185,205,205,185,206,185,186,206,206,186,207,186,187,207,207,187,208,187,188,208,208,188,209,189,190,210,210,190,211,190,191,211,211,191,212,191,192,212,212,192,213,192,193,213,213,193,214,193,194,214,214,194,215,194,195,215,215,195,216,195,196,216,216,196,217,196,197,217,217,197,218,197,198,218,218,198,219,198,199,219,219,199,220,199,200,220,220,200,221,200,201,221,221,201,222,201,202,222,222,202,223,202,203,223,223,203,224,203,204,224,224,204,225,204,205,225,225,205,226,205,206,226,226,206,227,206,207,227,227,207,228,207,208,228,228,208,229,208,209,229,229,209,230,210,211,231,231,211,232,211,212,232,232,212,233,212,213,233,233,213,234,213,214,234,234,214,235,214,215,235,235,215,236,215,216,236,236,216,237,216,217,237,237,217,238,217,218,238,238,218,239,218,219,239,239,219,240,219,220,240,240,220,241,220,221,241,241,221,242,221,222,242,242,222,243,222,223,243,243,223,244,223,224,244,244,224,245,224,225,245,245,225,246,225,226,246,246,226,247,226,227,247,247,227,248,227,228,248,248,228,249,228,229,249,249,229,250,229,230,250,250,230,251,231,232,252,252,232,253,232,233,253,253,233,254,233,234,254,254,234,255,234,235,255,255,235,256,235,236,256,256,236,257,236,237,257,257,237,258,237,238,258,258,238,259,238,239,259,259,239,260,239,240,260,260,240,261,240,241,261,261,241,262,241,242,262,262,242,263,242,243,263,263,243,264,243,244,264,264,244,265,244,245,265,265,245,266,245,246,266,266,246,267,246,247,267,267,247,268,247,248,268,268,248,269,248,249,269,269,249,270,249,250,270,270,250,271,250,251,271,271,251,272,252,253,273,273,253,274,253,254,274,274,254,275,254,255,275,275,255,276,255,256,276,276,256,277,256,257,277,277,257,278,257,258,278,278,258,279,258,259,279,279,259,280,259,260,280,280,260,281,260,261,281,281,261,282,261,262,282,282,262,283,262,263,283,283,263,284,263,264,284,284,264,285,264,265,285,285,265,286,265,266,286,286,266,287,266,267,287,287,267,288,267,268,288,288,268,289,268,269,289,289,269,290,269,270,290,290,270,291,270,271,291,291,271,292,271,272,292,292,272,293,273,274,294,294,274,295,274,275,295,295,275,296,275,276,296,296,276,297,276,277,297,297,277,298,277,278,298,298,278,299,278,279,299,299,279,300,279,280,300,300,280,301,280,281,301,301,281,302,281,282,302,302,282,303,282,283,303,303,283,304,283,284,304,304,284,305,284,285,305,305,285,306,285,286,306,306,286,307,286,287,307,307,287,308,287,288,308,308,288,309,288,289,309,309,289,310,289,290,310,310,290,311,290,291,311,311,291,312,291,292,312,312,292,313,292,293,313,313,293,314,294,295,315,315,295,316,295,296,316,316,296,317,296,297,317,317,297,318,297,298,318,318,298,319,298,299,319,319,299,320,299,300,320,320,300,321,300,301,321,321,301,322,301,302,322,322,302,323,302,303,323,323,303,324,303,304,324,324,304,325,304,305,325,325,305,326,305,306,326,326,306,327,306,307,327,327,307,328,307,308,328,328,308,329,308,309,329,329,309,330,309,310,330,330,310,331,310,311,331,331,311,332,311,312,332,332,312,333,312,313,333,333,313,334,313,314,334,334,314,335,315,316,336,336,316,337,316,317,337,337,317,338,317,318,338,338,318,339,318,319,339,339,319,340,319,320,340,340,320,341,320,321,341,341,321,342,321,322,342,342,322,343,322,323,343,343,323,344,323,324,344,344,324,345,324,325,345,345,325,346,325,326,346,346,326,347,326,327,347,347,327,348,327,328,348,348,328,349,328,329,349,349,329,350,329,330,350,350,330,351,330,331,351,351,331,352,331,332,352,352,332,353,332,333,353,353,333,354,333,334,354,354,334,355,334,335,355,355,335,356,336,337,357,357,337,358,337,338,358,358,338,359,338,339,359,359,339,360,339,340,360,360,340,361,340,341,361,361,341,362,341,342,362,362,342,363,342,343,363,363,343,364,343,344,364,364,344,365,344,345,365,365,345,366,345,346,366,366,346,367,346,347,367,367,347,368,347,348,368,368,348,369,348,349,369,369,349,370,349,350,370,370,350,371,350,351,371,371,351,372,351,352,372,372,352,373,352,353,373,373,353,374,353,354,374,374,354,375,354,355,375,375,355,376,355,356,376,376,356,377,357,358,378,378,358,379,358,359,379,379,359,380,359,360,380,380,360,381,360,361,381,381,361,382,361,362,382,382,362,383,362,363,383,383,363,384,363,364,384,384,364,385,364,365,385,385,365,386,365,366,386,386,366,387,366,367,387,387,367,388,367,368,388,388,368,389,368,369,389,389,369,390,369,370,390,390,370,391,370,371,391,391,371,392,371,372,392,392,372,393,372,373,393,393,373,394,373,374,394,394,374,395,374,375,395,395,375,396,375,376,396,396,376,397,376,377,397,397,377,398,1,0,399,4,1,400,6,4,401,8,6,402,10,8,403,12,10,404,14,12,405,16,14,406,18,16,407,20,18,408,22,20,409,24,22,410,26,24,411,28,26,412,30,28,413,32,30,414,34,32,415,36,34,416,38,36,417,40,38,418,378,379,419,379,380,420,380,381,421,381,382,422,382,383,423,383,384,424,384,385,425,385,386,426,386,387,427,387,388,428,388,389,429,389,390,430,390,391,431,391,392,432,392,393,433,393,394,434,394,395,435,395,396,436,396,397,437,397,398,438],"receiveShadows":false,"infiniteDistance":false,"billboardMode":0,"visibility":1.0,"subMeshes":[{"materialIndex":0,"verticesStart":0,"verticesCount":439,"indexStart":0,"indexCount":2280}],"instances":null,"skeletonId":-1,"numBoneInfluencers":4,"applyFog":false,"lodMeshIds":null,"lodDistances":null,"lodCoverages":null,"rotation":null,"scaling":[1.0,1.0,1.0],"rotationQuaternion":[0.0,0.1736,0.0,0.9848],"actions":null,"checkCollisions":false,"pickable":true,"showBoundingBox":false,"showSubMeshesBoundingBox":false,"alphaIndex":0,"physicsImpostor":0,"physicsMass":0.0,"physicsFriction":0.0,"physicsRestitution":0.0,"name":"pSphere4","id":"2F4F3A92-41B4-BFAB-58D5-7DBF6D8F2419","parentId":null,"position":[9.0,0.0,0.0],"animations":[],"autoAnimate":true,"autoAnimateFrom":1,"autoAnimateTo":200,"autoAnimateLoop":true,"metadata":{}},{"materialId":"4210F93C-4939-B2D9-C251-EF99F41E6FF9","isEnabled":true,"isVisible":true,"positions":[0.1488,-0.9877,0.0483,0.1266,-0.9877,0.0919,0.2939,-0.9511,0.0955,0.25,-0.9511,0.1816,0.0919,-0.9877,0.1266,0.1816,-0.9511,0.25,0.0483,-0.9877,0.1488,0.0955,-0.9511,0.2939,0.0,-0.9877,0.1564,0.0,-0.9511,0.309,-0.0483,-0.9877,0.1488,-0.0955,-0.9511,0.2939,-0.0919,-0.9877,0.1266,-0.1816,-0.9511,0.25,-0.1266,-0.9877,0.0919,-0.25,-0.9511,0.1816,-0.1488,-0.9877,0.0483,-0.2939,-0.9511,0.0955,-0.1564,-0.9877,0.0,-0.309,-0.9511,0.0,-0.1488,-0.9877,-0.0483,-0.2939,-0.9511,-0.0955,-0.1266,-0.9877,-0.0919,-0.25,-0.9511,-0.1816,-0.0919,-0.9877,-0.1266,-0.1816,-0.9511,-0.25,-0.0483,-0.9877,-0.1488,-0.0955,-0.9511,-0.2939,0.0,-0.9877,-0.1564,0.0,-0.9511,-0.309,0.0483,-0.9877,-0.1488,0.0955,-0.9511,-0.2939,0.0919,-0.9877,-0.1266,0.1816,-0.9511,-0.25,0.1266,-0.9877,-0.0919,0.25,-0.9511,-0.1816,0.1488,-0.9877,-0.0483,0.2939,-0.9511,-0.0955,0.1564,-0.9877,0.0,0.309,-0.9511,0.0,0.1488,-0.9877,0.0483,0.2939,-0.9511,0.0955,0.4318,-0.891,0.1403,0.3673,-0.891,0.2668,0.2668,-0.891,0.3673,0.1403,-0.891,0.4318,0.0,-0.891,0.454,-0.1403,-0.891,0.4318,-0.2668,-0.891,0.3673,-0.3673,-0.891,0.2668,-0.4318,-0.891,0.1403,-0.454,-0.891,0.0,-0.4318,-0.891,-0.1403,-0.3673,-0.891,-0.2668,-0.2668,-0.891,-0.3673,-0.1403,-0.891,-0.4318,0.0,-0.891,-0.454,0.1403,-0.891,-0.4318,0.2668,-0.891,-0.3673,0.3673,-0.891,-0.2668,0.4318,-0.891,-0.1403,0.454,-0.891,0.0,0.4318,-0.891,0.1403,0.559,-0.809,0.1816,0.4755,-0.809,0.3455,0.3455,-0.809,0.4755,0.1816,-0.809,0.559,0.0,-0.809,0.5878,-0.1816,-0.809,0.559,-0.3455,-0.809,0.4755,-0.4755,-0.809,0.3455,-0.559,-0.809,0.1816,-0.5878,-0.809,0.0,-0.559,-0.809,-0.1816,-0.4755,-0.809,-0.3455,-0.3455,-0.809,-0.4755,-0.1816,-0.809,-0.559,0.0,-0.809,-0.5878,0.1816,-0.809,-0.559,0.3455,-0.809,-0.4755,0.4755,-0.809,-0.3455,0.559,-0.809,-0.1816,0.5878,-0.809,0.0,0.559,-0.809,0.1816,0.6725,-0.7071,0.2185,0.5721,-0.7071,0.4156,0.4156,-0.7071,0.5721,0.2185,-0.7071,0.6725,0.0,-0.7071,0.7071,-0.2185,-0.7071,0.6725,-0.4156,-0.7071,0.5721,-0.5721,-0.7071,0.4156,-0.6725,-0.7071,0.2185,-0.7071,-0.7071,0.0,-0.6725,-0.7071,-0.2185,-0.5721,-0.7071,-0.4156,-0.4156,-0.7071,-0.5721,-0.2185,-0.7071,-0.6725,0.0,-0.7071,-0.7071,0.2185,-0.7071,-0.6725,0.4156,-0.7071,-0.5721,0.5721,-0.7071,-0.4156,0.6725,-0.7071,-0.2185,0.7071,-0.7071,0.0,0.6725,-0.7071,0.2185,0.7694,-0.5878,0.25,0.6545,-0.5878,0.4755,0.4755,-0.5878,0.6545,0.25,-0.5878,0.7694,0.0,-0.5878,0.809,-0.25,-0.5878,0.7694,-0.4755,-0.5878,0.6545,-0.6545,-0.5878,0.4755,-0.7694,-0.5878,0.25,-0.809,-0.5878,0.0,-0.7694,-0.5878,-0.25,-0.6545,-0.5878,-0.4755,-0.4755,-0.5878,-0.6545,-0.25,-0.5878,-0.7694,0.0,-0.5878,-0.809,0.25,-0.5878,-0.7694,0.4755,-0.5878,-0.6545,0.6545,-0.5878,-0.4755,0.7694,-0.5878,-0.25,0.809,-0.5878,0.0,0.7694,-0.5878,0.25,0.8474,-0.454,0.2753,0.7208,-0.454,0.5237,0.5237,-0.454,0.7208,0.2753,-0.454,0.8474,0.0,-0.454,0.891,-0.2753,-0.454,0.8474,-0.5237,-0.454,0.7208,-0.7208,-0.454,0.5237,-0.8474,-0.454,0.2753,-0.891,-0.454,0.0,-0.8474,-0.454,-0.2753,-0.7208,-0.454,-0.5237,-0.5237,-0.454,-0.7208,-0.2753,-0.454,-0.8474,0.0,-0.454,-0.891,0.2753,-0.454,-0.8474,0.5237,-0.454,-0.7208,0.7208,-0.454,-0.5237,0.8474,-0.454,-0.2753,0.891,-0.454,0.0,0.8474,-0.454,0.2753,0.9045,-0.309,0.2939,0.7694,-0.309,0.559,0.559,-0.309,0.7694,0.2939,-0.309,0.9045,0.0,-0.309,0.9511,-0.2939,-0.309,0.9045,-0.559,-0.309,0.7694,-0.7694,-0.309,0.559,-0.9045,-0.309,0.2939,-0.9511,-0.309,0.0,-0.9045,-0.309,-0.2939,-0.7694,-0.309,-0.559,-0.559,-0.309,-0.7694,-0.2939,-0.309,-0.9045,0.0,-0.309,-0.9511,0.2939,-0.309,-0.9045,0.559,-0.309,-0.7694,0.7694,-0.309,-0.559,0.9045,-0.309,-0.2939,0.9511,-0.309,0.0,0.9045,-0.309,0.2939,0.9393,-0.1564,0.3052,0.7991,-0.1564,0.5805,0.5805,-0.1564,0.7991,0.3052,-0.1564,0.9393,0.0,-0.1564,0.9877,-0.3052,-0.1564,0.9393,-0.5805,-0.1564,0.7991,-0.7991,-0.1564,0.5805,-0.9393,-0.1564,0.3052,-0.9877,-0.1564,0.0,-0.9393,-0.1564,-0.3052,-0.7991,-0.1564,-0.5805,-0.5805,-0.1564,-0.7991,-0.3052,-0.1564,-0.9393,0.0,-0.1564,-0.9877,0.3052,-0.1564,-0.9393,0.5805,-0.1564,-0.7991,0.7991,-0.1564,-0.5805,0.9393,-0.1564,-0.3052,0.9877,-0.1564,0.0,0.9393,-0.1564,0.3052,0.9511,0.0,0.309,0.809,0.0,0.5878,0.5878,0.0,0.809,0.309,0.0,0.9511,0.0,0.0,1.0,-0.309,0.0,0.9511,-0.5878,0.0,0.809,-0.809,0.0,0.5878,-0.9511,0.0,0.309,-1.0,0.0,0.0,-0.9511,0.0,-0.309,-0.809,0.0,-0.5878,-0.5878,0.0,-0.809,-0.309,0.0,-0.9511,0.0,0.0,-1.0,0.309,0.0,-0.9511,0.5878,0.0,-0.809,0.809,0.0,-0.5878,0.9511,0.0,-0.309,1.0,0.0,0.0,0.9511,0.0,0.309,0.9393,0.1564,0.3052,0.7991,0.1564,0.5805,0.5805,0.1564,0.7991,0.3052,0.1564,0.9393,0.0,0.1564,0.9877,-0.3052,0.1564,0.9393,-0.5805,0.1564,0.7991,-0.7991,0.1564,0.5805,-0.9393,0.1564,0.3052,-0.9877,0.1564,0.0,-0.9393,0.1564,-0.3052,-0.7991,0.1564,-0.5805,-0.5805,0.1564,-0.7991,-0.3052,0.1564,-0.9393,0.0,0.1564,-0.9877,0.3052,0.1564,-0.9393,0.5805,0.1564,-0.7991,0.7991,0.1564,-0.5805,0.9393,0.1564,-0.3052,0.9877,0.1564,0.0,0.9393,0.1564,0.3052,0.9045,0.309,0.2939,0.7694,0.309,0.559,0.559,0.309,0.7694,0.2939,0.309,0.9045,0.0,0.309,0.9511,-0.2939,0.309,0.9045,-0.559,0.309,0.7694,-0.7694,0.309,0.559,-0.9045,0.309,0.2939,-0.9511,0.309,0.0,-0.9045,0.309,-0.2939,-0.7694,0.309,-0.559,-0.559,0.309,-0.7694,-0.2939,0.309,-0.9045,0.0,0.309,-0.9511,0.2939,0.309,-0.9045,0.559,0.309,-0.7694,0.7694,0.309,-0.559,0.9045,0.309,-0.2939,0.9511,0.309,0.0,0.9045,0.309,0.2939,0.8474,0.454,0.2753,0.7208,0.454,0.5237,0.5237,0.454,0.7208,0.2753,0.454,0.8474,0.0,0.454,0.891,-0.2753,0.454,0.8474,-0.5237,0.454,0.7208,-0.7208,0.454,0.5237,-0.8474,0.454,0.2753,-0.891,0.454,0.0,-0.8474,0.454,-0.2753,-0.7208,0.454,-0.5237,-0.5237,0.454,-0.7208,-0.2753,0.454,-0.8474,0.0,0.454,-0.891,0.2753,0.454,-0.8474,0.5237,0.454,-0.7208,0.7208,0.454,-0.5237,0.8474,0.454,-0.2753,0.891,0.454,0.0,0.8474,0.454,0.2753,0.7694,0.5878,0.25,0.6545,0.5878,0.4755,0.4755,0.5878,0.6545,0.25,0.5878,0.7694,0.0,0.5878,0.809,-0.25,0.5878,0.7694,-0.4755,0.5878,0.6545,-0.6545,0.5878,0.4755,-0.7694,0.5878,0.25,-0.809,0.5878,0.0,-0.7694,0.5878,-0.25,-0.6545,0.5878,-0.4755,-0.4755,0.5878,-0.6545,-0.25,0.5878,-0.7694,0.0,0.5878,-0.809,0.25,0.5878,-0.7694,0.4755,0.5878,-0.6545,0.6545,0.5878,-0.4755,0.7694,0.5878,-0.25,0.809,0.5878,0.0,0.7694,0.5878,0.25,0.6725,0.7071,0.2185,0.5721,0.7071,0.4156,0.4156,0.7071,0.5721,0.2185,0.7071,0.6725,0.0,0.7071,0.7071,-0.2185,0.7071,0.6725,-0.4156,0.7071,0.5721,-0.5721,0.7071,0.4156,-0.6725,0.7071,0.2185,-0.7071,0.7071,0.0,-0.6725,0.7071,-0.2185,-0.5721,0.7071,-0.4156,-0.4156,0.7071,-0.5721,-0.2185,0.7071,-0.6725,0.0,0.7071,-0.7071,0.2185,0.7071,-0.6725,0.4156,0.7071,-0.5721,0.5721,0.7071,-0.4156,0.6725,0.7071,-0.2185,0.7071,0.7071,0.0,0.6725,0.7071,0.2185,0.559,0.809,0.1816,0.4755,0.809,0.3455,0.3455,0.809,0.4755,0.1816,0.809,0.559,0.0,0.809,0.5878,-0.1816,0.809,0.559,-0.3455,0.809,0.4755,-0.4755,0.809,0.3455,-0.559,0.809,0.1816,-0.5878,0.809,0.0,-0.559,0.809,-0.1816,-0.4755,0.809,-0.3455,-0.3455,0.809,-0.4755,-0.1816,0.809,-0.559,0.0,0.809,-0.5878,0.1816,0.809,-0.559,0.3455,0.809,-0.4755,0.4755,0.809,-0.3455,0.559,0.809,-0.1816,0.5878,0.809,0.0,0.559,0.809,0.1816,0.4318,0.891,0.1403,0.3673,0.891,0.2668,0.2668,0.891,0.3673,0.1403,0.891,0.4318,0.0,0.891,0.454,-0.1403,0.891,0.4318,-0.2668,0.891,0.3673,-0.3673,0.891,0.2668,-0.4318,0.891,0.1403,-0.454,0.891,0.0,-0.4318,0.891,-0.1403,-0.3673,0.891,-0.2668,-0.2668,0.891,-0.3673,-0.1403,0.891,-0.4318,0.0,0.891,-0.454,0.1403,0.891,-0.4318,0.2668,0.891,-0.3673,0.3673,0.891,-0.2668,0.4318,0.891,-0.1403,0.454,0.891,0.0,0.4318,0.891,0.1403,0.2939,0.9511,0.0955,0.25,0.9511,0.1816,0.1816,0.9511,0.25,0.0955,0.9511,0.2939,0.0,0.9511,0.309,-0.0955,0.9511,0.2939,-0.1816,0.9511,0.25,-0.25,0.9511,0.1816,-0.2939,0.9511,0.0955,-0.309,0.9511,0.0,-0.2939,0.9511,-0.0955,-0.25,0.9511,-0.1816,-0.1816,0.9511,-0.25,-0.0955,0.9511,-0.2939,0.0,0.9511,-0.309,0.0955,0.9511,-0.2939,0.1816,0.9511,-0.25,0.25,0.9511,-0.1816,0.2939,0.9511,-0.0955,0.309,0.9511,0.0,0.2939,0.9511,0.0955,0.1488,0.9877,0.0483,0.1266,0.9877,0.0919,0.0919,0.9877,0.1266,0.0483,0.9877,0.1488,0.0,0.9877,0.1564,-0.0483,0.9877,0.1488,-0.0919,0.9877,0.1266,-0.1266,0.9877,0.0919,-0.1488,0.9877,0.0483,-0.1564,0.9877,0.0,-0.1488,0.9877,-0.0483,-0.1266,0.9877,-0.0919,-0.0919,0.9877,-0.1266,-0.0483,0.9877,-0.1488,0.0,0.9877,-0.1564,0.0483,0.9877,-0.1488,0.0919,0.9877,-0.1266,0.1266,0.9877,-0.0919,0.1488,0.9877,-0.0483,0.1564,0.9877,0.0,0.1488,0.9877,0.0483,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0],"normals":[0.1906,-0.9797,0.0619,0.1621,-0.9797,0.1178,0.3173,-0.9427,0.1031,0.2699,-0.9427,0.1961,0.1178,-0.9797,0.1621,0.1961,-0.9427,0.2699,0.0619,-0.9797,0.1906,0.1031,-0.9427,0.3173,0.0,-0.9797,0.2004,0.0,-0.9427,0.3336,-0.0619,-0.9797,0.1906,-0.1031,-0.9427,0.3173,-0.1178,-0.9797,0.1621,-0.1961,-0.9427,0.2699,-0.1621,-0.9797,0.1178,-0.2699,-0.9427,0.1961,-0.1906,-0.9797,0.0619,-0.3173,-0.9427,0.1031,-0.2004,-0.9797,0.0,-0.3336,-0.9427,0.0,-0.1906,-0.9797,-0.0619,-0.3173,-0.9427,-0.1031,-0.1621,-0.9797,-0.1178,-0.2699,-0.9427,-0.1961,-0.1178,-0.9797,-0.1621,-0.1961,-0.9427,-0.2699,-0.0619,-0.9797,-0.1906,-0.1031,-0.9427,-0.3173,0.0,-0.9797,-0.2004,0.0,-0.9427,-0.3336,0.0619,-0.9797,-0.1906,0.1031,-0.9427,-0.3173,0.1178,-0.9797,-0.1621,0.1961,-0.9427,-0.2699,0.1621,-0.9797,-0.1178,0.2699,-0.9427,-0.1961,0.1906,-0.9797,-0.0619,0.3173,-0.9427,-0.1031,0.2004,-0.9797,0.0,0.3336,-0.9427,0.0,0.1906,-0.9797,0.0619,0.3173,-0.9427,0.1031,0.4477,-0.8823,0.1455,0.3808,-0.8823,0.2767,0.2767,-0.8823,0.3808,0.1455,-0.8823,0.4477,0.0,-0.8823,0.4708,-0.1455,-0.8823,0.4477,-0.2767,-0.8823,0.3808,-0.3808,-0.8823,0.2767,-0.4477,-0.8823,0.1455,-0.4708,-0.8823,0.0,-0.4477,-0.8823,-0.1455,-0.3808,-0.8823,-0.2767,-0.2767,-0.8823,-0.3808,-0.1455,-0.8823,-0.4477,0.0,-0.8823,-0.4708,0.1455,-0.8823,-0.4477,0.2767,-0.8823,-0.3808,0.3808,-0.8823,-0.2767,0.4477,-0.8823,-0.1455,0.4708,-0.8823,0.0,0.4477,-0.8823,0.1455,0.5703,-0.8003,0.1853,0.4851,-0.8003,0.3525,0.3525,-0.8003,0.4851,0.1853,-0.8003,0.5703,0.0,-0.8003,0.5997,-0.1853,-0.8003,0.5703,-0.3525,-0.8003,0.4851,-0.4851,-0.8003,0.3525,-0.5703,-0.8003,0.1853,-0.5997,-0.8003,0.0,-0.5703,-0.8003,-0.1853,-0.4851,-0.8003,-0.3525,-0.3525,-0.8003,-0.4851,-0.1853,-0.8003,-0.5703,0.0,-0.8003,-0.5997,0.1853,-0.8003,-0.5703,0.3525,-0.8003,-0.4851,0.4851,-0.8003,-0.3525,0.5703,-0.8003,-0.1853,0.5997,-0.8003,0.0,0.5703,-0.8003,0.1853,0.6803,-0.6988,0.221,0.5787,-0.6988,0.4205,0.4205,-0.6988,0.5787,0.221,-0.6988,0.6803,0.0,-0.6988,0.7153,-0.221,-0.6988,0.6803,-0.4205,-0.6988,0.5787,-0.5787,-0.6988,0.4205,-0.6803,-0.6988,0.221,-0.7153,-0.6988,0.0,-0.6803,-0.6988,-0.221,-0.5787,-0.6988,-0.4205,-0.4205,-0.6988,-0.5787,-0.221,-0.6988,-0.6803,0.0,-0.6988,-0.7153,0.221,-0.6988,-0.6803,0.4205,-0.6988,-0.5787,0.5787,-0.6988,-0.4205,0.6803,-0.6988,-0.221,0.7153,-0.6988,0.0,0.6803,-0.6988,0.221,0.7745,-0.5804,0.2516,0.6588,-0.5804,0.4787,0.4787,-0.5804,0.6588,0.2516,-0.5804,0.7745,0.0,-0.5804,0.8143,-0.2516,-0.5804,0.7745,-0.4787,-0.5804,0.6588,-0.6588,-0.5804,0.4787,-0.7745,-0.5804,0.2516,-0.8143,-0.5804,0.0,-0.7745,-0.5804,-0.2516,-0.6588,-0.5804,-0.4787,-0.4787,-0.5804,-0.6588,-0.2516,-0.5804,-0.7745,0.0,-0.5804,-0.8143,0.2516,-0.5804,-0.7745,0.4787,-0.5804,-0.6588,0.6588,-0.5804,-0.4787,0.7745,-0.5804,-0.2516,0.8143,-0.5804,0.0,0.7745,-0.5804,0.2516,0.8503,-0.448,0.2763,0.7233,-0.448,0.5255,0.5255,-0.448,0.7233,0.2763,-0.448,0.8503,0.0,-0.448,0.894,-0.2763,-0.448,0.8503,-0.5255,-0.448,0.7233,-0.7233,-0.448,0.5255,-0.8503,-0.448,0.2763,-0.894,-0.448,0.0,-0.8503,-0.448,-0.2763,-0.7233,-0.448,-0.5255,-0.5255,-0.448,-0.7233,-0.2763,-0.448,-0.8503,0.0,-0.448,-0.894,0.2763,-0.448,-0.8503,0.5255,-0.448,-0.7233,0.7233,-0.448,-0.5255,0.8503,-0.448,-0.2763,0.894,-0.448,0.0,0.8503,-0.448,0.2763,0.9058,-0.3048,0.2943,0.7705,-0.3048,0.5598,0.5598,-0.3048,0.7705,0.2943,-0.3048,0.9058,0.0,-0.3048,0.9524,-0.2943,-0.3048,0.9058,-0.5598,-0.3048,0.7705,-0.7705,-0.3048,0.5598,-0.9058,-0.3048,0.2943,-0.9524,-0.3048,0.0,-0.9058,-0.3048,-0.2943,-0.7705,-0.3048,-0.5598,-0.5598,-0.3048,-0.7705,-0.2943,-0.3048,-0.9058,0.0,-0.3048,-0.9524,0.2943,-0.3048,-0.9058,0.5598,-0.3048,-0.7705,0.7705,-0.3048,-0.5598,0.9058,-0.3048,-0.2943,0.9524,-0.3048,0.0,0.9058,-0.3048,0.2943,0.9397,-0.1542,0.3053,0.7993,-0.1542,0.5808,0.5808,-0.1542,0.7993,0.3053,-0.1542,0.9397,0.0,-0.1542,0.988,-0.3053,-0.1542,0.9397,-0.5808,-0.1542,0.7993,-0.7993,-0.1542,0.5808,-0.9397,-0.1542,0.3053,-0.988,-0.1542,0.0,-0.9397,-0.1542,-0.3053,-0.7993,-0.1542,-0.5808,-0.5808,-0.1542,-0.7993,-0.3053,-0.1542,-0.9397,0.0,-0.1542,-0.988,0.3053,-0.1542,-0.9397,0.5808,-0.1542,-0.7993,0.7993,-0.1542,-0.5808,0.9397,-0.1542,-0.3053,0.988,-0.1542,0.0,0.9397,-0.1542,0.3053,0.9511,0.0,0.309,0.809,0.0,0.5878,0.5878,0.0,0.809,0.309,0.0,0.9511,0.0,0.0,1.0,-0.309,0.0,0.9511,-0.5878,0.0,0.809,-0.809,0.0,0.5878,-0.9511,0.0,0.309,-1.0,0.0,0.0,-0.9511,0.0,-0.309,-0.809,0.0,-0.5878,-0.5878,0.0,-0.809,-0.309,0.0,-0.9511,0.0,0.0,-1.0,0.309,0.0,-0.9511,0.5878,0.0,-0.809,0.809,0.0,-0.5878,0.9511,0.0,-0.309,1.0,0.0,0.0,0.9511,0.0,0.309,0.9397,0.1542,0.3053,0.7993,0.1542,0.5808,0.5808,0.1542,0.7993,0.3053,0.1542,0.9397,0.0,0.1542,0.988,-0.3053,0.1542,0.9397,-0.5808,0.1542,0.7993,-0.7993,0.1542,0.5808,-0.9397,0.1542,0.3053,-0.988,0.1542,0.0,-0.9397,0.1542,-0.3053,-0.7993,0.1542,-0.5808,-0.5808,0.1542,-0.7993,-0.3053,0.1542,-0.9397,0.0,0.1542,-0.988,0.3053,0.1542,-0.9397,0.5808,0.1542,-0.7993,0.7993,0.1542,-0.5808,0.9397,0.1542,-0.3053,0.988,0.1542,0.0,0.9397,0.1542,0.3053,0.9058,0.3048,0.2943,0.7705,0.3048,0.5598,0.5598,0.3048,0.7705,0.2943,0.3048,0.9058,0.0,0.3048,0.9524,-0.2943,0.3048,0.9058,-0.5598,0.3048,0.7705,-0.7705,0.3048,0.5598,-0.9058,0.3048,0.2943,-0.9524,0.3048,0.0,-0.9058,0.3048,-0.2943,-0.7705,0.3048,-0.5598,-0.5598,0.3048,-0.7705,-0.2943,0.3048,-0.9058,0.0,0.3048,-0.9524,0.2943,0.3048,-0.9058,0.5598,0.3048,-0.7705,0.7705,0.3048,-0.5598,0.9058,0.3048,-0.2943,0.9524,0.3048,0.0,0.9058,0.3048,0.2943,0.8503,0.448,0.2763,0.7233,0.448,0.5255,0.5255,0.448,0.7233,0.2763,0.448,0.8503,0.0,0.448,0.894,-0.2763,0.448,0.8503,-0.5255,0.448,0.7233,-0.7233,0.448,0.5255,-0.8503,0.448,0.2763,-0.894,0.448,0.0,-0.8503,0.448,-0.2763,-0.7233,0.448,-0.5255,-0.5255,0.448,-0.7233,-0.2763,0.448,-0.8503,0.0,0.448,-0.894,0.2763,0.448,-0.8503,0.5255,0.448,-0.7233,0.7233,0.448,-0.5255,0.8503,0.448,-0.2763,0.894,0.448,0.0,0.8503,0.448,0.2763,0.7745,0.5804,0.2516,0.6588,0.5804,0.4787,0.4787,0.5804,0.6588,0.2516,0.5804,0.7745,0.0,0.5804,0.8143,-0.2516,0.5804,0.7745,-0.4787,0.5804,0.6588,-0.6588,0.5804,0.4787,-0.7745,0.5804,0.2516,-0.8143,0.5804,0.0,-0.7745,0.5804,-0.2516,-0.6588,0.5804,-0.4787,-0.4787,0.5804,-0.6588,-0.2516,0.5804,-0.7745,0.0,0.5804,-0.8143,0.2516,0.5804,-0.7745,0.4787,0.5804,-0.6588,0.6588,0.5804,-0.4787,0.7745,0.5804,-0.2516,0.8143,0.5804,0.0,0.7745,0.5804,0.2516,0.6803,0.6988,0.221,0.5787,0.6988,0.4205,0.4205,0.6988,0.5787,0.221,0.6988,0.6803,0.0,0.6988,0.7153,-0.221,0.6988,0.6803,-0.4205,0.6988,0.5787,-0.5787,0.6988,0.4205,-0.6803,0.6988,0.221,-0.7153,0.6988,0.0,-0.6803,0.6988,-0.221,-0.5787,0.6988,-0.4205,-0.4205,0.6988,-0.5787,-0.221,0.6988,-0.6803,0.0,0.6988,-0.7153,0.221,0.6988,-0.6803,0.4205,0.6988,-0.5787,0.5787,0.6988,-0.4205,0.6803,0.6988,-0.221,0.7153,0.6988,0.0,0.6803,0.6988,0.221,0.5703,0.8003,0.1853,0.4851,0.8003,0.3525,0.3525,0.8003,0.4851,0.1853,0.8003,0.5703,0.0,0.8003,0.5997,-0.1853,0.8003,0.5703,-0.3525,0.8003,0.4851,-0.4851,0.8003,0.3525,-0.5703,0.8003,0.1853,-0.5997,0.8003,0.0,-0.5703,0.8003,-0.1853,-0.4851,0.8003,-0.3525,-0.3525,0.8003,-0.4851,-0.1853,0.8003,-0.5703,0.0,0.8003,-0.5997,0.1853,0.8003,-0.5703,0.3525,0.8003,-0.4851,0.4851,0.8003,-0.3525,0.5703,0.8003,-0.1853,0.5997,0.8003,0.0,0.5703,0.8003,0.1853,0.4477,0.8823,0.1455,0.3808,0.8823,0.2767,0.2767,0.8823,0.3808,0.1455,0.8823,0.4477,0.0,0.8823,0.4708,-0.1455,0.8823,0.4477,-0.2767,0.8823,0.3808,-0.3808,0.8823,0.2767,-0.4477,0.8823,0.1455,-0.4708,0.8823,0.0,-0.4477,0.8823,-0.1455,-0.3808,0.8823,-0.2767,-0.2767,0.8823,-0.3808,-0.1455,0.8823,-0.4477,0.0,0.8823,-0.4708,0.1455,0.8823,-0.4477,0.2767,0.8823,-0.3808,0.3808,0.8823,-0.2767,0.4477,0.8823,-0.1455,0.4708,0.8823,0.0,0.4477,0.8823,0.1455,0.3173,0.9427,0.1031,0.2699,0.9427,0.1961,0.1961,0.9427,0.2699,0.1031,0.9427,0.3173,0.0,0.9427,0.3336,-0.1031,0.9427,0.3173,-0.1961,0.9427,0.2699,-0.2699,0.9427,0.1961,-0.3173,0.9427,0.1031,-0.3336,0.9427,0.0,-0.3173,0.9427,-0.1031,-0.2699,0.9427,-0.1961,-0.1961,0.9427,-0.2699,-0.1031,0.9427,-0.3173,0.0,0.9427,-0.3336,0.1031,0.9427,-0.3173,0.1961,0.9427,-0.2699,0.2699,0.9427,-0.1961,0.3173,0.9427,-0.1031,0.3336,0.9427,0.0,0.3173,0.9427,0.1031,0.1906,0.9797,0.0619,0.1621,0.9797,0.1178,0.1178,0.9797,0.1621,0.0619,0.9797,0.1906,0.0,0.9797,0.2004,-0.0619,0.9797,0.1906,-0.1178,0.9797,0.1621,-0.1621,0.9797,0.1178,-0.1906,0.9797,0.0619,-0.2004,0.9797,0.0,-0.1906,0.9797,-0.0619,-0.1621,0.9797,-0.1178,-0.1178,0.9797,-0.1621,-0.0619,0.9797,-0.1906,0.0,0.9797,-0.2004,0.0619,0.9797,-0.1906,0.1178,0.9797,-0.1621,0.1621,0.9797,-0.1178,0.1906,0.9797,-0.0619,0.2004,0.9797,0.0,0.1906,0.9797,0.0619,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0],"tangents":[-0.4482,-0.0307,0.8934,-1.0,-0.5629,0.0062,0.8265,-1.0,-0.438,-0.0493,0.8976,-1.0,-0.5878,0.0,0.809,-1.0,-0.7908,0.0062,0.6121,-1.0,-0.809,0.0,0.5878,-1.0,-0.9412,0.0062,0.3378,-1.0,-0.9511,0.0,0.309,-1.0,-0.9995,0.0062,0.0304,-1.0,-1.0,0.0,0.0,-1.0,-0.96,0.0062,-0.28,-1.0,-0.9511,0.0,-0.309,-1.0,-0.8265,0.0062,-0.5629,-1.0,-0.809,0.0,-0.5878,-1.0,-0.6121,0.0062,-0.7908,-1.0,-0.5878,0.0,-0.809,-1.0,-0.3378,0.0062,-0.9412,-1.0,-0.309,0.0,-0.9511,-1.0,-0.0304,0.0062,-0.9995,-1.0,0.0,0.0,-1.0,-1.0,0.28,0.0062,-0.96,-1.0,0.309,0.0,-0.9511,-1.0,0.5629,0.0062,-0.8265,-1.0,0.5878,0.0,-0.809,-1.0,0.7908,0.0062,-0.6121,-1.0,0.809,0.0,-0.5878,-1.0,0.9412,0.0062,-0.3378,-1.0,0.9511,0.0,-0.309,-1.0,0.9995,0.0062,-0.0304,-1.0,1.0,0.0,0.0,-1.0,0.96,0.0062,0.28,-1.0,0.9511,0.0,0.309,-1.0,0.8265,0.0062,0.5629,-1.0,0.809,0.0,0.5878,-1.0,0.6121,0.0062,0.7908,-1.0,0.5878,0.0,0.809,-1.0,0.3378,0.0062,0.9412,-1.0,0.309,0.0,0.9511,-1.0,0.0304,0.0062,0.9995,-1.0,0.0,0.0,1.0,-1.0,-0.1625,0.0307,0.9862,-1.0,-0.1732,0.0493,0.9836,-1.0,-0.4222,-0.0651,0.9042,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.1899,0.0651,0.9796,-1.0,-0.4023,-0.0754,0.9124,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.2109,0.0754,0.9746,-1.0,-0.3802,-0.0787,0.9215,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.234,0.0787,0.969,-1.0,-0.3582,-0.0745,0.9306,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.2572,0.0745,0.9635,-1.0,-0.3384,-0.0633,0.9389,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.2781,0.0633,0.9585,-1.0,-0.3226,-0.0459,0.9454,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.2947,0.0459,0.9545,-1.0,-0.3125,-0.0241,0.9496,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.3053,0.0241,0.9519,-1.0,-0.309,0.0,0.9511,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.309,0.0,0.9511,-1.0,-0.3125,0.0241,0.9496,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.3053,-0.0241,0.9519,-1.0,-0.3226,0.0459,0.9454,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.2947,-0.0459,0.9545,-1.0,-0.3384,0.0633,0.9389,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.2781,-0.0633,0.9585,-1.0,-0.3582,0.0745,0.9306,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.2572,-0.0745,0.9635,-1.0,-0.3802,0.0787,0.9215,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.234,-0.0787,0.969,-1.0,-0.4023,0.0754,0.9124,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.2109,-0.0754,0.9746,-1.0,-0.4222,0.0651,0.9042,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.1899,-0.0651,0.9796,-1.0,-0.438,0.0493,0.8976,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.1732,-0.0493,0.9836,-1.0,-0.4482,0.0307,0.8934,-1.0,-0.6121,0.0062,0.7908,-1.0,-0.8265,0.0062,0.5629,-1.0,-0.96,0.0062,0.28,-1.0,-0.9995,0.0062,-0.0304,-1.0,-0.9412,0.0062,-0.3378,-1.0,-0.7908,0.0062,-0.6121,-1.0,-0.5629,0.0062,-0.8265,-1.0,-0.28,0.0062,-0.96,-1.0,0.0304,0.0062,-0.9995,-1.0,0.3378,0.0062,-0.9412,-1.0,0.6121,0.0062,-0.7908,-1.0,0.8265,0.0062,-0.5629,-1.0,0.96,0.0062,-0.28,-1.0,0.9995,0.0062,0.0304,-1.0,0.9412,0.0062,0.3378,-1.0,0.7908,0.0062,0.6121,-1.0,0.5629,0.0062,0.8265,-1.0,0.28,0.0062,0.96,-1.0,-0.0304,0.0062,0.9995,-1.0,-0.1625,-0.0307,0.9862,-1.0,-0.454,0.0,0.891,-1.0,-0.7071,0.0,0.7071,-1.0,-0.891,0.0,0.454,-1.0,-0.9877,0.0,0.1564,-1.0,-0.9877,0.0,-0.1564,-1.0,-0.891,0.0,-0.454,-1.0,-0.7071,0.0,-0.7071,-1.0,-0.454,0.0,-0.891,-1.0,-0.1564,0.0,-0.9877,-1.0,0.1564,0.0,-0.9877,-1.0,0.454,0.0,-0.891,-1.0,0.7071,0.0,-0.7071,-1.0,0.891,0.0,-0.454,-1.0,0.9877,0.0,-0.1564,-1.0,0.9877,0.0,0.1564,-1.0,0.891,0.0,0.454,-1.0,0.7071,0.0,0.7071,-1.0,0.454,0.0,0.891,-1.0,0.1564,0.0,0.9877,-1.0,-0.1564,0.0,0.9877,-1.0,-0.454,0.0,0.891,-1.0,-0.7071,0.0,0.7071,-1.0,-0.891,0.0,0.454,-1.0,-0.9877,0.0,0.1564,-1.0,-0.9877,0.0,-0.1564,-1.0,-0.891,0.0,-0.454,-1.0,-0.7071,0.0,-0.7071,-1.0,-0.454,0.0,-0.891,-1.0,-0.1564,0.0,-0.9877,-1.0,0.1564,0.0,-0.9877,-1.0,0.454,0.0,-0.891,-1.0,0.7071,0.0,-0.7071,-1.0,0.891,0.0,-0.454,-1.0,0.9877,0.0,-0.1564,-1.0,0.9877,0.0,0.1564,-1.0,0.891,0.0,0.454,-1.0,0.7071,0.0,0.7071,-1.0,0.454,0.0,0.891,-1.0,0.1564,0.0,0.9877,-1.0,-0.1564,0.0,0.9877,-1.0],"uvs":[0.0,0.05,0.05,0.05,0.0,0.1,0.05,0.1,0.1,0.05,0.1,0.1,0.15,0.05,0.15,0.1,0.2,0.05,0.2,0.1,0.25,0.05,0.25,0.1,0.3,0.05,0.3,0.1,0.35,0.05,0.35,0.1,0.4,0.05,0.4,0.1,0.45,0.05,0.45,0.1,0.5,0.05,0.5,0.1,0.55,0.05,0.55,0.1,0.6,0.05,0.6,0.1,0.65,0.05,0.65,0.1,0.7,0.05,0.7,0.1,0.75,0.05,0.75,0.1,0.8,0.05,0.8,0.1,0.85,0.05,0.85,0.1,0.9,0.05,0.9,0.1,0.95,0.05,0.95,0.1,1.0,0.05,1.0,0.1,0.0,0.15,0.05,0.15,0.1,0.15,0.15,0.15,0.2,0.15,0.25,0.15,0.3,0.15,0.35,0.15,0.4,0.15,0.45,0.15,0.5,0.15,0.55,0.15,0.6,0.15,0.65,0.15,0.7,0.15,0.75,0.15,0.8,0.15,0.85,0.15,0.9,0.15,0.95,0.15,1.0,0.15,0.0,0.2,0.05,0.2,0.1,0.2,0.15,0.2,0.2,0.2,0.25,0.2,0.3,0.2,0.35,0.2,0.4,0.2,0.45,0.2,0.5,0.2,0.55,0.2,0.6,0.2,0.65,0.2,0.7,0.2,0.75,0.2,0.8,0.2,0.85,0.2,0.9,0.2,0.95,0.2,1.0,0.2,0.0,0.25,0.05,0.25,0.1,0.25,0.15,0.25,0.2,0.25,0.25,0.25,0.3,0.25,0.35,0.25,0.4,0.25,0.45,0.25,0.5,0.25,0.55,0.25,0.6,0.25,0.65,0.25,0.7,0.25,0.75,0.25,0.8,0.25,0.85,0.25,0.9,0.25,0.95,0.25,1.0,0.25,0.0,0.3,0.05,0.3,0.1,0.3,0.15,0.3,0.2,0.3,0.25,0.3,0.3,0.3,0.35,0.3,0.4,0.3,0.45,0.3,0.5,0.3,0.55,0.3,0.6,0.3,0.65,0.3,0.7,0.3,0.75,0.3,0.8,0.3,0.85,0.3,0.9,0.3,0.95,0.3,1.0,0.3,0.0,0.35,0.05,0.35,0.1,0.35,0.15,0.35,0.2,0.35,0.25,0.35,0.3,0.35,0.35,0.35,0.4,0.35,0.45,0.35,0.5,0.35,0.55,0.35,0.6,0.35,0.65,0.35,0.7,0.35,0.75,0.35,0.8,0.35,0.85,0.35,0.9,0.35,0.95,0.35,1.0,0.35,0.0,0.4,0.05,0.4,0.1,0.4,0.15,0.4,0.2,0.4,0.25,0.4,0.3,0.4,0.35,0.4,0.4,0.4,0.45,0.4,0.5,0.4,0.55,0.4,0.6,0.4,0.65,0.4,0.7,0.4,0.75,0.4,0.8,0.4,0.85,0.4,0.9,0.4,0.95,0.4,1.0,0.4,0.0,0.45,0.05,0.45,0.1,0.45,0.15,0.45,0.2,0.45,0.25,0.45,0.3,0.45,0.35,0.45,0.4,0.45,0.45,0.45,0.5,0.45,0.55,0.45,0.6,0.45,0.65,0.45,0.7,0.45,0.75,0.45,0.8,0.45,0.85,0.45,0.9,0.45,0.95,0.45,1.0,0.45,0.0,0.5,0.05,0.5,0.1,0.5,0.15,0.5,0.2,0.5,0.25,0.5,0.3,0.5,0.35,0.5,0.4,0.5,0.45,0.5,0.5,0.5,0.55,0.5,0.6,0.5,0.65,0.5,0.7,0.5,0.75,0.5,0.8,0.5,0.85,0.5,0.9,0.5,0.95,0.5,1.0,0.5,0.0,0.55,0.05,0.55,0.1,0.55,0.15,0.55,0.2,0.55,0.25,0.55,0.3,0.55,0.35,0.55,0.4,0.55,0.45,0.55,0.5,0.55,0.55,0.55,0.6,0.55,0.65,0.55,0.7,0.55,0.75,0.55,0.8,0.55,0.85,0.55,0.9,0.55,0.95,0.55,1.0,0.55,0.0,0.6,0.05,0.6,0.1,0.6,0.15,0.6,0.2,0.6,0.25,0.6,0.3,0.6,0.35,0.6,0.4,0.6,0.45,0.6,0.5,0.6,0.55,0.6,0.6,0.6,0.65,0.6,0.7,0.6,0.75,0.6,0.8,0.6,0.85,0.6,0.9,0.6,0.95,0.6,1.0,0.6,0.0,0.65,0.05,0.65,0.1,0.65,0.15,0.65,0.2,0.65,0.25,0.65,0.3,0.65,0.35,0.65,0.4,0.65,0.45,0.65,0.5,0.65,0.55,0.65,0.6,0.65,0.65,0.65,0.7,0.65,0.75,0.65,0.8,0.65,0.85,0.65,0.9,0.65,0.95,0.65,1.0,0.65,0.0,0.7,0.05,0.7,0.1,0.7,0.15,0.7,0.2,0.7,0.25,0.7,0.3,0.7,0.35,0.7,0.4,0.7,0.45,0.7,0.5,0.7,0.55,0.7,0.6,0.7,0.65,0.7,0.7,0.7,0.75,0.7,0.8,0.7,0.85,0.7,0.9,0.7,0.95,0.7,1.0,0.7,0.0,0.75,0.05,0.75,0.1,0.75,0.15,0.75,0.2,0.75,0.25,0.75,0.3,0.75,0.35,0.75,0.4,0.75,0.45,0.75,0.5,0.75,0.55,0.75,0.6,0.75,0.65,0.75,0.7,0.75,0.75,0.75,0.8,0.75,0.85,0.75,0.9,0.75,0.95,0.75,1.0,0.75,0.0,0.8,0.05,0.8,0.1,0.8,0.15,0.8,0.2,0.8,0.25,0.8,0.3,0.8,0.35,0.8,0.4,0.8,0.45,0.8,0.5,0.8,0.55,0.8,0.6,0.8,0.65,0.8,0.7,0.8,0.75,0.8,0.8,0.8,0.85,0.8,0.9,0.8,0.95,0.8,1.0,0.8,0.0,0.85,0.05,0.85,0.1,0.85,0.15,0.85,0.2,0.85,0.25,0.85,0.3,0.85,0.35,0.85,0.4,0.85,0.45,0.85,0.5,0.85,0.55,0.85,0.6,0.85,0.65,0.85,0.7,0.85,0.75,0.85,0.8,0.85,0.85,0.85,0.9,0.85,0.95,0.85,1.0,0.85,0.0,0.9,0.05,0.9,0.1,0.9,0.15,0.9,0.2,0.9,0.25,0.9,0.3,0.9,0.35,0.9,0.4,0.9,0.45,0.9,0.5,0.9,0.55,0.9,0.6,0.9,0.65,0.9,0.7,0.9,0.75,0.9,0.8,0.9,0.85,0.9,0.9,0.9,0.95,0.9,1.0,0.9,0.0,0.95,0.05,0.95,0.1,0.95,0.15,0.95,0.2,0.95,0.25,0.95,0.3,0.95,0.35,0.95,0.4,0.95,0.45,0.95,0.5,0.95,0.55,0.95,0.6,0.95,0.65,0.95,0.7,0.95,0.75,0.95,0.8,0.95,0.85,0.95,0.9,0.95,0.95,0.95,1.0,0.95,0.025,0.0,0.075,0.0,0.125,0.0,0.175,0.0,0.225,0.0,0.275,0.0,0.325,0.0,0.375,0.0,0.425,0.0,0.475,0.0,0.525,0.0,0.575,0.0,0.625,0.0,0.675,0.0,0.725,0.0,0.775,0.0,0.825,0.0,0.875,0.0,0.925,0.0,0.975,0.0,0.025,1.0,0.075,1.0,0.125,1.0,0.175,1.0,0.225,1.0,0.275,1.0,0.325,1.0,0.375,1.0,0.425,1.0,0.475,1.0,0.525,1.0,0.575,1.0,0.625,1.0,0.675,1.0,0.725,1.0,0.775,1.0,0.825,1.0,0.875,1.0,0.925,1.0,0.975,1.0],"uvs2":null,"colors":null,"hasVertexAlpha":false,"matricesIndices":null,"matricesWeights":null,"matricesIndicesExtra":null,"matricesWeightsExtra":null,"indices":[0,1,2,2,1,3,1,4,3,3,4,5,4,6,5,5,6,7,6,8,7,7,8,9,8,10,9,9,10,11,10,12,11,11,12,13,12,14,13,13,14,15,14,16,15,15,16,17,16,18,17,17,18,19,18,20,19,19,20,21,20,22,21,21,22,23,22,24,23,23,24,25,24,26,25,25,26,27,26,28,27,27,28,29,28,30,29,29,30,31,30,32,31,31,32,33,32,34,33,33,34,35,34,36,35,35,36,37,36,38,37,37,38,39,38,40,39,39,40,41,2,3,42,42,3,43,3,5,43,43,5,44,5,7,44,44,7,45,7,9,45,45,9,46,9,11,46,46,11,47,11,13,47,47,13,48,13,15,48,48,15,49,15,17,49,49,17,50,17,19,50,50,19,51,19,21,51,51,21,52,21,23,52,52,23,53,23,25,53,53,25,54,25,27,54,54,27,55,27,29,55,55,29,56,29,31,56,56,31,57,31,33,57,57,33,58,33,35,58,58,35,59,35,37,59,59,37,60,37,39,60,60,39,61,39,41,61,61,41,62,42,43,63,63,43,64,43,44,64,64,44,65,44,45,65,65,45,66,45,46,66,66,46,67,46,47,67,67,47,68,47,48,68,68,48,69,48,49,69,69,49,70,49,50,70,70,50,71,50,51,71,71,51,72,51,52,72,72,52,73,52,53,73,73,53,74,53,54,74,74,54,75,54,55,75,75,55,76,55,56,76,76,56,77,56,57,77,77,57,78,57,58,78,78,58,79,58,59,79,79,59,80,59,60,80,80,60,81,60,61,81,81,61,82,61,62,82,82,62,83,63,64,84,84,64,85,64,65,85,85,65,86,65,66,86,86,66,87,66,67,87,87,67,88,67,68,88,88,68,89,68,69,89,89,69,90,69,70,90,90,70,91,70,71,91,91,71,92,71,72,92,92,72,93,72,73,93,93,73,94,73,74,94,94,74,95,74,75,95,95,75,96,75,76,96,96,76,97,76,77,97,97,77,98,77,78,98,98,78,99,78,79,99,99,79,100,79,80,100,100,80,101,80,81,101,101,81,102,81,82,102,102,82,103,82,83,103,103,83,104,84,85,105,105,85,106,85,86,106,106,86,107,86,87,107,107,87,108,87,88,108,108,88,109,88,89,109,109,89,110,89,90,110,110,90,111,90,91,111,111,91,112,91,92,112,112,92,113,92,93,113,113,93,114,93,94,114,114,94,115,94,95,115,115,95,116,95,96,116,116,96,117,96,97,117,117,97,118,97,98,118,118,98,119,98,99,119,119,99,120,99,100,120,120,100,121,100,101,121,121,101,122,101,102,122,122,102,123,102,103,123,123,103,124,103,104,124,124,104,125,105,106,126,126,106,127,106,107,127,127,107,128,107,108,128,128,108,129,108,109,129,129,109,130,109,110,130,130,110,131,110,111,131,131,111,132,111,112,132,132,112,133,112,113,133,133,113,134,113,114,134,134,114,135,114,115,135,135,115,136,115,116,136,136,116,137,116,117,137,137,117,138,117,118,138,138,118,139,118,119,139,139,119,140,119,120,140,140,120,141,120,121,141,141,121,142,121,122,142,142,122,143,122,123,143,143,123,144,123,124,144,144,124,145,124,125,145,145,125,146,126,127,147,147,127,148,127,128,148,148,128,149,128,129,149,149,129,150,129,130,150,150,130,151,130,131,151,151,131,152,131,132,152,152,132,153,132,133,153,153,133,154,133,134,154,154,134,155,134,135,155,155,135,156,135,136,156,156,136,157,136,137,157,157,137,158,137,138,158,158,138,159,138,139,159,159,139,160,139,140,160,160,140,161,140,141,161,161,141,162,141,142,162,162,142,163,142,143,163,163,143,164,143,144,164,164,144,165,144,145,165,165,145,166,145,146,166,166,146,167,147,148,168,168,148,169,148,149,169,169,149,170,149,150,170,170,150,171,150,151,171,171,151,172,151,152,172,172,152,173,152,153,173,173,153,174,153,154,174,174,154,175,154,155,175,175,155,176,155,156,176,176,156,177,156,157,177,177,157,178,157,158,178,178,158,179,158,159,179,179,159,180,159,160,180,180,160,181,160,161,181,181,161,182,161,162,182,182,162,183,162,163,183,183,163,184,163,164,184,184,164,185,164,165,185,185,165,186,165,166,186,186,166,187,166,167,187,187,167,188,168,169,189,189,169,190,169,170,190,190,170,191,170,171,191,191,171,192,171,172,192,192,172,193,172,173,193,193,173,194,173,174,194,194,174,195,174,175,195,195,175,196,175,176,196,196,176,197,176,177,197,197,177,198,177,178,198,198,178,199,178,179,199,199,179,200,179,180,200,200,180,201,180,181,201,201,181,202,181,182,202,202,182,203,182,183,203,203,183,204,183,184,204,204,184,205,184,185,205,205,185,206,185,186,206,206,186,207,186,187,207,207,187,208,187,188,208,208,188,209,189,190,210,210,190,211,190,191,211,211,191,212,191,192,212,212,192,213,192,193,213,213,193,214,193,194,214,214,194,215,194,195,215,215,195,216,195,196,216,216,196,217,196,197,217,217,197,218,197,198,218,218,198,219,198,199,219,219,199,220,199,200,220,220,200,221,200,201,221,221,201,222,201,202,222,222,202,223,202,203,223,223,203,224,203,204,224,224,204,225,204,205,225,225,205,226,205,206,226,226,206,227,206,207,227,227,207,228,207,208,228,228,208,229,208,209,229,229,209,230,210,211,231,231,211,232,211,212,232,232,212,233,212,213,233,233,213,234,213,214,234,234,214,235,214,215,235,235,215,236,215,216,236,236,216,237,216,217,237,237,217,238,217,218,238,238,218,239,218,219,239,239,219,240,219,220,240,240,220,241,220,221,241,241,221,242,221,222,242,242,222,243,222,223,243,243,223,244,223,224,244,244,224,245,224,225,245,245,225,246,225,226,246,246,226,247,226,227,247,247,227,248,227,228,248,248,228,249,228,229,249,249,229,250,229,230,250,250,230,251,231,232,252,252,232,253,232,233,253,253,233,254,233,234,254,254,234,255,234,235,255,255,235,256,235,236,256,256,236,257,236,237,257,257,237,258,237,238,258,258,238,259,238,239,259,259,239,260,239,240,260,260,240,261,240,241,261,261,241,262,241,242,262,262,242,263,242,243,263,263,243,264,243,244,264,264,244,265,244,245,265,265,245,266,245,246,266,266,246,267,246,247,267,267,247,268,247,248,268,268,248,269,248,249,269,269,249,270,249,250,270,270,250,271,250,251,271,271,251,272,252,253,273,273,253,274,253,254,274,274,254,275,254,255,275,275,255,276,255,256,276,276,256,277,256,257,277,277,257,278,257,258,278,278,258,279,258,259,279,279,259,280,259,260,280,280,260,281,260,261,281,281,261,282,261,262,282,282,262,283,262,263,283,283,263,284,263,264,284,284,264,285,264,265,285,285,265,286,265,266,286,286,266,287,266,267,287,287,267,288,267,268,288,288,268,289,268,269,289,289,269,290,269,270,290,290,270,291,270,271,291,291,271,292,271,272,292,292,272,293,273,274,294,294,274,295,274,275,295,295,275,296,275,276,296,296,276,297,276,277,297,297,277,298,277,278,298,298,278,299,278,279,299,299,279,300,279,280,300,300,280,301,280,281,301,301,281,302,281,282,302,302,282,303,282,283,303,303,283,304,283,284,304,304,284,305,284,285,305,305,285,306,285,286,306,306,286,307,286,287,307,307,287,308,287,288,308,308,288,309,288,289,309,309,289,310,289,290,310,310,290,311,290,291,311,311,291,312,291,292,312,312,292,313,292,293,313,313,293,314,294,295,315,315,295,316,295,296,316,316,296,317,296,297,317,317,297,318,297,298,318,318,298,319,298,299,319,319,299,320,299,300,320,320,300,321,300,301,321,321,301,322,301,302,322,322,302,323,302,303,323,323,303,324,303,304,324,324,304,325,304,305,325,325,305,326,305,306,326,326,306,327,306,307,327,327,307,328,307,308,328,328,308,329,308,309,329,329,309,330,309,310,330,330,310,331,310,311,331,331,311,332,311,312,332,332,312,333,312,313,333,333,313,334,313,314,334,334,314,335,315,316,336,336,316,337,316,317,337,337,317,338,317,318,338,338,318,339,318,319,339,339,319,340,319,320,340,340,320,341,320,321,341,341,321,342,321,322,342,342,322,343,322,323,343,343,323,344,323,324,344,344,324,345,324,325,345,345,325,346,325,326,346,346,326,347,326,327,347,347,327,348,327,328,348,348,328,349,328,329,349,349,329,350,329,330,350,350,330,351,330,331,351,351,331,352,331,332,352,352,332,353,332,333,353,353,333,354,333,334,354,354,334,355,334,335,355,355,335,356,336,337,357,357,337,358,337,338,358,358,338,359,338,339,359,359,339,360,339,340,360,360,340,361,340,341,361,361,341,362,341,342,362,362,342,363,342,343,363,363,343,364,343,344,364,364,344,365,344,345,365,365,345,366,345,346,366,366,346,367,346,347,367,367,347,368,347,348,368,368,348,369,348,349,369,369,349,370,349,350,370,370,350,371,350,351,371,371,351,372,351,352,372,372,352,373,352,353,373,373,353,374,353,354,374,374,354,375,354,355,375,375,355,376,355,356,376,376,356,377,357,358,378,378,358,379,358,359,379,379,359,380,359,360,380,380,360,381,360,361,381,381,361,382,361,362,382,382,362,383,362,363,383,383,363,384,363,364,384,384,364,385,364,365,385,385,365,386,365,366,386,386,366,387,366,367,387,387,367,388,367,368,388,388,368,389,368,369,389,389,369,390,369,370,390,390,370,391,370,371,391,391,371,392,371,372,392,392,372,393,372,373,393,393,373,394,373,374,394,394,374,395,374,375,395,395,375,396,375,376,396,396,376,397,376,377,397,397,377,398,1,0,399,4,1,400,6,4,401,8,6,402,10,8,403,12,10,404,14,12,405,16,14,406,18,16,407,20,18,408,22,20,409,24,22,410,26,24,411,28,26,412,30,28,413,32,30,414,34,32,415,36,34,416,38,36,417,40,38,418,378,379,419,379,380,420,380,381,421,381,382,422,382,383,423,383,384,424,384,385,425,385,386,426,386,387,427,387,388,428,388,389,429,389,390,430,390,391,431,391,392,432,392,393,433,393,394,434,394,395,435,395,396,436,396,397,437,397,398,438],"receiveShadows":false,"infiniteDistance":false,"billboardMode":0,"visibility":1.0,"subMeshes":[{"materialIndex":0,"verticesStart":0,"verticesCount":439,"indexStart":0,"indexCount":2280}],"instances":null,"skeletonId":-1,"numBoneInfluencers":4,"applyFog":false,"lodMeshIds":null,"lodDistances":null,"lodCoverages":null,"rotation":null,"scaling":[1.0,1.0,1.0],"rotationQuaternion":[0.0,0.1736,0.0,0.9848],"actions":null,"checkCollisions":false,"pickable":true,"showBoundingBox":false,"showSubMeshesBoundingBox":false,"alphaIndex":0,"physicsImpostor":0,"physicsMass":0.0,"physicsFriction":0.0,"physicsRestitution":0.0,"name":"pSphere5","id":"36C2E6AB-4AC0-8CA5-042B-7FB4C99705F1","parentId":null,"position":[6.0,0.0,5.0],"animations":[],"autoAnimate":true,"autoAnimateFrom":1,"autoAnimateTo":200,"autoAnimateLoop":true,"metadata":{}},{"materialId":null,"isEnabled":true,"isVisible":true,"positions":null,"normals":null,"tangents":null,"uvs":null,"uvs2":null,"colors":null,"hasVertexAlpha":false,"matricesIndices":null,"matricesWeights":null,"matricesIndicesExtra":null,"matricesWeightsExtra":null,"indices":null,"receiveShadows":false,"infiniteDistance":false,"billboardMode":0,"visibility":1.0,"subMeshes":null,"instances":null,"skeletonId":-1,"numBoneInfluencers":4,"applyFog":false,"lodMeshIds":null,"lodDistances":null,"lodCoverages":null,"rotation":null,"scaling":[1.0,1.0,1.0],"rotationQuaternion":[0.0,0.0,0.0,1.0],"actions":null,"checkCollisions":false,"pickable":true,"showBoundingBox":false,"showSubMeshesBoundingBox":false,"alphaIndex":0,"physicsImpostor":0,"physicsMass":0.0,"physicsFriction":0.0,"physicsRestitution":0.0,"name":"camera1_group","id":"445214BC-44AE-3B76-F9B7-F39619D41560","parentId":null,"position":[0.0,0.0,0.0],"animations":[],"autoAnimate":true,"autoAnimateFrom":1,"autoAnimateTo":200,"autoAnimateLoop":true,"metadata":null},{"materialId":null,"isEnabled":true,"isVisible":true,"positions":null,"normals":null,"tangents":null,"uvs":null,"uvs2":null,"colors":null,"hasVertexAlpha":false,"matricesIndices":null,"matricesWeights":null,"matricesIndicesExtra":null,"matricesWeightsExtra":null,"indices":null,"receiveShadows":false,"infiniteDistance":false,"billboardMode":0,"visibility":1.0,"subMeshes":null,"instances":null,"skeletonId":-1,"numBoneInfluencers":4,"applyFog":false,"lodMeshIds":null,"lodDistances":null,"lodCoverages":null,"rotation":null,"scaling":[1.0,1.0,1.0],"rotationQuaternion":[0.0,0.0,0.0,1.0],"actions":null,"checkCollisions":false,"pickable":true,"showBoundingBox":false,"showSubMeshesBoundingBox":false,"alphaIndex":0,"physicsImpostor":0,"physicsMass":0.0,"physicsFriction":0.0,"physicsRestitution":0.0,"name":"camera1_aim","id":"35B30E14-45FB-B1BA-1FA6-278686591A99","parentId":"445214BC-44AE-3B76-F9B7-F39619D41560","position":[4.6701,0.0,2.1927],"animations":[],"autoAnimate":true,"autoAnimateFrom":1,"autoAnimateTo":200,"autoAnimateLoop":true,"metadata":null}],"sounds":[],"materials":[{"customType":"BABYLON.StandardMaterial","ambient":[1.0,1.0,1.0],"diffuse":[1.0,0.0,0.0],"specular":[0.5,0.5,0.5],"emissive":[0.0,0.0,0.0],"specularPower":110.6414,"diffuseTexture":null,"diffuseFresnelParameters":null,"ambientTexture":null,"opacityTexture":{"name":"gradation_horizontal.jpg","level":1.0,"hasAlpha":true,"getAlphaFromRGB":true,"coordinatesMode":0,"isCube":false,"uOffset":0.0,"vOffset":0.0,"uScale":1.0,"vScale":1.0,"uRotationCenter":0.5,"vRotationCenter":0.5,"wRotationCenter":0.5,"invertY":true,"uAng":0.0,"vAng":0.0,"wAng":0.0,"wrapU":1,"wrapV":1,"coordinatesIndex":0,"isRenderTarget":false,"renderTargetSize":0,"mirrorPlane":null,"renderList":null,"animations":[{"name":"uOffset animation","property":"uOffset","dataType":0,"enableBlending":false,"blendingSpeed":0.01,"loopBehavior":1,"framePerSecond":24,"keys":[{"frame":1,"values":[0.0]},{"frame":200,"values":[0.0]}]},{"name":"vOffset animation","property":"vOffset","dataType":0,"enableBlending":false,"blendingSpeed":0.01,"loopBehavior":1,"framePerSecond":24,"keys":[{"frame":1,"values":[0.0]},{"frame":200,"values":[0.0]}]},{"name":"uScale animation","property":"uScale","dataType":0,"enableBlending":false,"blendingSpeed":0.01,"loopBehavior":1,"framePerSecond":24,"keys":[{"frame":1,"values":[1.0]},{"frame":200,"values":[1.0]}]},{"name":"vScale animation","property":"vScale","dataType":0,"enableBlending":false,"blendingSpeed":0.01,"loopBehavior":1,"framePerSecond":24,"keys":[{"frame":1,"values":[1.0]},{"frame":200,"values":[1.0]}]},{"name":"wAng animation","property":"wAng","dataType":0,"enableBlending":false,"blendingSpeed":0.01,"loopBehavior":1,"framePerSecond":24,"keys":[{"frame":1,"values":[0.0]},{"frame":200,"values":[0.0]}]}],"extensions":null,"samplingMode":3},"opacityFresnelParameters":null,"reflectionTexture":null,"reflectionFresnelParameters":null,"emissiveTexture":null,"lightmapTexture":null,"useLightmapAsShadowmap":false,"emissiveFresnelParameters":null,"specularTexture":null,"bumpTexture":null,"useSpecularOverAlpha":true,"disableLighting":false,"useEmissiveAsIllumination":false,"linkEmissiveWithDiffuse":true,"twoSidedLighting":false,"useGlossinessFromSpecularMapAlpha":false,"name":"phong","id":"9B24F14E-4F69-6849-B864-07B9E4A7E9FF","backFaceCulling":true,"wireframe":false,"alpha":1.0,"alphaMode":2,"maxSimultaneousLights":4,"metadata":{}},{"customType":"BABYLON.PBRMetallicRoughnessMaterial","baseColor":[1.0,1.0,1.0],"baseTexture":{"name":"diffuse_green_opacity_gradation_horizontal.png","level":1.0,"hasAlpha":true,"getAlphaFromRGB":false,"coordinatesMode":0,"isCube":false,"uOffset":0.0,"vOffset":0.0,"uScale":1.0,"vScale":1.0,"uRotationCenter":0.5,"vRotationCenter":0.5,"wRotationCenter":0.5,"invertY":true,"uAng":0.0,"vAng":0.0,"wAng":0.0,"wrapU":1,"wrapV":1,"coordinatesIndex":0,"isRenderTarget":false,"renderTargetSize":0,"mirrorPlane":null,"renderList":null,"animations":[],"extensions":null,"samplingMode":3},"metallic":0.0,"roughness":0.33,"metallicRoughnessTexture":null,"disableLighting":false,"invertNormalMapX":false,"invertNormalMapY":false,"normalTexture":null,"emissive":[0.0,0.0,0.0],"emissiveTexture":null,"occlusionStrength":1.0,"occlusionTexture":null,"transparencyMode":2,"doubleSided":false,"clearCoat":{"isEnabled":false,"intensity":1.0,"roughness":0.0,"indexOfRefraction":1.5,"texture":null,"bumpTexture":null,"isTintEnabled":false,"tintColor":[1.0,1.0,1.0],"tintThickness":1.0,"tintTexture":null},"name":"PhysicalMaterial","id":"0E49D5E9-4200-91FB-CB7B-93B40CEF850E","backFaceCulling":true,"wireframe":false,"alpha":1.0,"alphaMode":2,"maxSimultaneousLights":4,"metadata":null},{"customType":"BABYLON.PBRMetallicRoughnessMaterial","baseColor":[0.8,0.8,0.8],"baseTexture":{"name":"StandardArnoldMaterial_baseColor.png","level":1.0,"hasAlpha":false,"getAlphaFromRGB":false,"coordinatesMode":0,"isCube":false,"uOffset":0.0,"vOffset":0.0,"uScale":1.0,"vScale":1.0,"uRotationCenter":0.5,"vRotationCenter":0.5,"wRotationCenter":0.5,"invertY":true,"uAng":0.0,"vAng":0.0,"wAng":0.0,"wrapU":1,"wrapV":1,"coordinatesIndex":0,"isRenderTarget":false,"renderTargetSize":0,"mirrorPlane":null,"renderList":null,"animations":[{"name":"uOffset animation","property":"uOffset","dataType":0,"enableBlending":false,"blendingSpeed":0.01,"loopBehavior":1,"framePerSecond":24,"keys":[{"frame":1,"values":[0.0]},{"frame":200,"values":[0.0]}]},{"name":"vOffset animation","property":"vOffset","dataType":0,"enableBlending":false,"blendingSpeed":0.01,"loopBehavior":1,"framePerSecond":24,"keys":[{"frame":1,"values":[0.0]},{"frame":200,"values":[0.0]}]},{"name":"uScale animation","property":"uScale","dataType":0,"enableBlending":false,"blendingSpeed":0.01,"loopBehavior":1,"framePerSecond":24,"keys":[{"frame":1,"values":[1.0]},{"frame":200,"values":[1.0]}]},{"name":"vScale animation","property":"vScale","dataType":0,"enableBlending":false,"blendingSpeed":0.01,"loopBehavior":1,"framePerSecond":24,"keys":[{"frame":1,"values":[1.0]},{"frame":200,"values":[1.0]}]},{"name":"wAng animation","property":"wAng","dataType":0,"enableBlending":false,"blendingSpeed":0.01,"loopBehavior":1,"framePerSecond":24,"keys":[{"frame":1,"values":[0.0]},{"frame":200,"values":[0.0]}]}],"extensions":null,"samplingMode":3},"metallic":0.0,"roughness":0.1,"metallicRoughnessTexture":null,"disableLighting":false,"invertNormalMapX":false,"invertNormalMapY":false,"normalTexture":null,"emissive":[0.0,0.0,0.0],"emissiveTexture":null,"occlusionStrength":1.0,"occlusionTexture":null,"transparencyMode":0,"doubleSided":false,"clearCoat":{"isEnabled":false,"intensity":1.0,"roughness":0.0,"indexOfRefraction":1.5,"texture":null,"bumpTexture":null,"isTintEnabled":false,"tintColor":[1.0,1.0,1.0],"tintThickness":1.0,"tintTexture":null},"name":"StandardArnoldMaterial","id":"4210F93C-4939-B2D9-C251-EF99F41E6FF9","backFaceCulling":true,"wireframe":false,"alpha":1.0,"alphaMode":2,"maxSimultaneousLights":4,"metadata":null},{"customType":"BABYLON.PBRMetallicRoughnessMaterial","baseColor":[0.8,0.8,0.8],"baseTexture":{"name":"StandardArnoldMaterial_baseColor.png","level":1.0,"hasAlpha":true,"getAlphaFromRGB":false,"coordinatesMode":0,"isCube":false,"uOffset":0.0,"vOffset":0.0,"uScale":1.0,"vScale":1.0,"uRotationCenter":0.5,"vRotationCenter":0.5,"wRotationCenter":0.5,"invertY":true,"uAng":0.0,"vAng":0.0,"wAng":0.0,"wrapU":1,"wrapV":1,"coordinatesIndex":0,"isRenderTarget":false,"renderTargetSize":0,"mirrorPlane":null,"renderList":null,"animations":[{"name":"uOffset animation","property":"uOffset","dataType":0,"enableBlending":false,"blendingSpeed":0.01,"loopBehavior":1,"framePerSecond":24,"keys":[{"frame":1,"values":[0.0]},{"frame":200,"values":[0.0]}]},{"name":"vOffset animation","property":"vOffset","dataType":0,"enableBlending":false,"blendingSpeed":0.01,"loopBehavior":1,"framePerSecond":24,"keys":[{"frame":1,"values":[0.0]},{"frame":200,"values":[0.0]}]},{"name":"uScale animation","property":"uScale","dataType":0,"enableBlending":false,"blendingSpeed":0.01,"loopBehavior":1,"framePerSecond":24,"keys":[{"frame":1,"values":[1.0]},{"frame":200,"values":[1.0]}]},{"name":"vScale animation","property":"vScale","dataType":0,"enableBlending":false,"blendingSpeed":0.01,"loopBehavior":1,"framePerSecond":24,"keys":[{"frame":1,"values":[1.0]},{"frame":200,"values":[1.0]}]},{"name":"wAng animation","property":"wAng","dataType":0,"enableBlending":false,"blendingSpeed":0.01,"loopBehavior":1,"framePerSecond":24,"keys":[{"frame":1,"values":[0.0]},{"frame":200,"values":[0.0]}]}],"extensions":null,"samplingMode":3},"metallic":0.0,"roughness":0.1,"metallicRoughnessTexture":null,"disableLighting":false,"invertNormalMapX":false,"invertNormalMapY":false,"normalTexture":null,"emissive":[0.0,0.0,0.0],"emissiveTexture":null,"occlusionStrength":1.0,"occlusionTexture":null,"transparencyMode":2,"doubleSided":false,"clearCoat":{"isEnabled":false,"intensity":1.0,"roughness":0.0,"indexOfRefraction":1.5,"texture":null,"bumpTexture":null,"isTintEnabled":false,"tintColor":[1.0,1.0,1.0],"tintThickness":1.0,"tintTexture":null},"name":"StandardArnoldMaterial","id":"79CDF1A6-4409-889B-46A9-43A586C10D94","backFaceCulling":true,"wireframe":false,"alpha":1.0,"alphaMode":2,"maxSimultaneousLights":4,"metadata":null},{"customType":"BABYLON.StandardMaterial","ambient":[1.0,1.0,1.0],"diffuse":[0.5,0.5,0.5],"specular":[0.0,0.0,0.0],"emissive":[0.0,0.0,0.0],"specularPower":25.6,"diffuseTexture":null,"diffuseFresnelParameters":null,"ambientTexture":null,"opacityTexture":{"name":"gradation_horizontal.jpg","level":1.0,"hasAlpha":true,"getAlphaFromRGB":true,"coordinatesMode":0,"isCube":false,"uOffset":0.0,"vOffset":0.0,"uScale":1.0,"vScale":1.0,"uRotationCenter":0.5,"vRotationCenter":0.5,"wRotationCenter":0.5,"invertY":true,"uAng":0.0,"vAng":0.0,"wAng":0.0,"wrapU":1,"wrapV":1,"coordinatesIndex":0,"isRenderTarget":false,"renderTargetSize":0,"mirrorPlane":null,"renderList":null,"animations":[{"name":"uOffset animation","property":"uOffset","dataType":0,"enableBlending":false,"blendingSpeed":0.01,"loopBehavior":1,"framePerSecond":24,"keys":[{"frame":1,"values":[0.0]},{"frame":200,"values":[0.0]}]},{"name":"vOffset animation","property":"vOffset","dataType":0,"enableBlending":false,"blendingSpeed":0.01,"loopBehavior":1,"framePerSecond":24,"keys":[{"frame":1,"values":[0.0]},{"frame":200,"values":[0.0]}]},{"name":"uScale animation","property":"uScale","dataType":0,"enableBlending":false,"blendingSpeed":0.01,"loopBehavior":1,"framePerSecond":24,"keys":[{"frame":1,"values":[1.0]},{"frame":200,"values":[1.0]}]},{"name":"vScale animation","property":"vScale","dataType":0,"enableBlending":false,"blendingSpeed":0.01,"loopBehavior":1,"framePerSecond":24,"keys":[{"frame":1,"values":[1.0]},{"frame":200,"values":[1.0]}]},{"name":"wAng animation","property":"wAng","dataType":0,"enableBlending":false,"blendingSpeed":0.01,"loopBehavior":1,"framePerSecond":24,"keys":[{"frame":1,"values":[0.0]},{"frame":200,"values":[0.0]}]}],"extensions":null,"samplingMode":3},"opacityFresnelParameters":null,"reflectionTexture":null,"reflectionFresnelParameters":null,"emissiveTexture":null,"lightmapTexture":null,"useLightmapAsShadowmap":false,"emissiveFresnelParameters":null,"specularTexture":null,"bumpTexture":null,"useSpecularOverAlpha":true,"disableLighting":false,"useEmissiveAsIllumination":false,"linkEmissiveWithDiffuse":true,"twoSidedLighting":false,"useGlossinessFromSpecularMapAlpha":false,"name":"lambert1","id":"C33371E3-49CC-50AB-9549-80BD2392C0F8","backFaceCulling":true,"wireframe":false,"alpha":1.0,"alphaMode":2,"maxSimultaneousLights":4,"metadata":{}}],"multiMaterials":[],"particleSystems":null,"lensFlareSystems":null,"shadowGenerators":[],"skeletons":[],"actions":null,"metadata":null,"workerCollisions":false}
\ No newline at end of file
diff --git a/Maya/Samples/babylon/BabylonMaterialAttributes/TransparencyMode/Blend/aiStandardSurface1_baseColor.png b/Maya/Samples/babylon/BabylonMaterialAttributes/TransparencyMode/Blend/aiStandardSurface1_baseColor.png
new file mode 100644
index 00000000..1ab543b0
Binary files /dev/null and b/Maya/Samples/babylon/BabylonMaterialAttributes/TransparencyMode/Blend/aiStandardSurface1_baseColor.png differ
diff --git a/Maya/Samples/babylon/BabylonMaterialAttributes/TransparencyMode/Blend/diffuse_green_opacity_gradation_horizontal.png b/Maya/Samples/babylon/BabylonMaterialAttributes/TransparencyMode/Blend/diffuse_green_opacity_gradation_horizontal.png
new file mode 100644
index 00000000..c4b0e568
Binary files /dev/null and b/Maya/Samples/babylon/BabylonMaterialAttributes/TransparencyMode/Blend/diffuse_green_opacity_gradation_horizontal.png differ
diff --git a/Maya/Samples/babylon/BabylonMaterialAttributes/TransparencyMode/Blend/gradation_horizontal.jpg b/Maya/Samples/babylon/BabylonMaterialAttributes/TransparencyMode/Blend/gradation_horizontal.jpg
new file mode 100644
index 00000000..7437068c
Binary files /dev/null and b/Maya/Samples/babylon/BabylonMaterialAttributes/TransparencyMode/Blend/gradation_horizontal.jpg differ
diff --git a/Maya/Samples/babylon/BabylonMaterialAttributes/TransparencyMode/Mask/ArnoldStandardBackFace_baseColor.png b/Maya/Samples/babylon/BabylonMaterialAttributes/TransparencyMode/Mask/ArnoldStandardBackFace_baseColor.png
new file mode 100644
index 00000000..1ab543b0
Binary files /dev/null and b/Maya/Samples/babylon/BabylonMaterialAttributes/TransparencyMode/Mask/ArnoldStandardBackFace_baseColor.png differ
diff --git a/Maya/Samples/babylon/BabylonMaterialAttributes/TransparencyMode/Mask/PhongMaterial_baseColor.png b/Maya/Samples/babylon/BabylonMaterialAttributes/TransparencyMode/Mask/PhongMaterial_baseColor.png
new file mode 100644
index 00000000..fcd01433
Binary files /dev/null and b/Maya/Samples/babylon/BabylonMaterialAttributes/TransparencyMode/Mask/PhongMaterial_baseColor.png differ
diff --git a/Maya/Samples/babylon/BabylonMaterialAttributes/TransparencyMode/Mask/PhysicalMaterialBackFaceWithoutOpacity_baseColor.png b/Maya/Samples/babylon/BabylonMaterialAttributes/TransparencyMode/Mask/PhysicalMaterialBackFaceWithoutOpacity_baseColor.png
new file mode 100644
index 00000000..c8587f76
Binary files /dev/null and b/Maya/Samples/babylon/BabylonMaterialAttributes/TransparencyMode/Mask/PhysicalMaterialBackFaceWithoutOpacity_baseColor.png differ
diff --git a/Maya/Samples/babylon/BabylonMaterialAttributes/TransparencyMode/Mask/StingrayPBS2_baseColor.png b/Maya/Samples/babylon/BabylonMaterialAttributes/TransparencyMode/Mask/StingrayPBS2_baseColor.png
new file mode 100644
index 00000000..c8587f76
Binary files /dev/null and b/Maya/Samples/babylon/BabylonMaterialAttributes/TransparencyMode/Mask/StingrayPBS2_baseColor.png differ
diff --git a/Maya/Samples/babylon/BabylonMaterialAttributes/TransparencyMode/Mask/TransparencyMode_Mask.babylon b/Maya/Samples/babylon/BabylonMaterialAttributes/TransparencyMode/Mask/TransparencyMode_Mask.babylon
new file mode 100644
index 00000000..60479f32
--- /dev/null
+++ b/Maya/Samples/babylon/BabylonMaterialAttributes/TransparencyMode/Mask/TransparencyMode_Mask.babylon
@@ -0,0 +1 @@
+{"producer":{"name":"Maya","version":"2018","exporter_version":"1.4.0","file":"TransparencyMode_Mask.babylon"},"autoClear":true,"clearColor":[0.2,0.2,0.3],"ambientColor":[0.0,0.0,0.0],"fogMode":0,"fogColor":null,"fogStart":0.0,"fogEnd":0.0,"fogDensity":0.0,"gravity":[0.0,0.0,-0.9],"physicsEngine":null,"physicsEnabled":false,"physicsGravity":null,"lights":[{"direction":[0.0,1.0,0.0],"type":3,"diffuse":[1.0,1.0,1.0],"specular":[1.0,1.0,1.0],"intensity":1.0,"range":3.40282347E+38,"exponent":0.0,"angle":0.0,"groundColor":[0.0,0.0,0.0],"excludedMeshesIds":null,"includedOnlyMeshesIds":null,"lightmapMode":null,"falloffType":null,"name":"Default light","id":"03f31ecb-0ad4-4c4b-85b7-9905d4814870","parentId":null,"position":[0.0,0.0,0.0],"animations":null,"autoAnimate":false,"autoAnimateFrom":0,"autoAnimateTo":0,"autoAnimateLoop":false,"metadata":null}],"meshes":[{"materialId":"9B24F14E-4F69-6849-B864-07B9E4A7E9FF","isEnabled":true,"isVisible":true,"positions":[0.1488,-0.9877,0.0483,0.1266,-0.9877,0.0919,0.2939,-0.9511,0.0955,0.25,-0.9511,0.1816,0.0919,-0.9877,0.1266,0.1816,-0.9511,0.25,0.0483,-0.9877,0.1488,0.0955,-0.9511,0.2939,0.0,-0.9877,0.1564,0.0,-0.9511,0.309,-0.0483,-0.9877,0.1488,-0.0955,-0.9511,0.2939,-0.0919,-0.9877,0.1266,-0.1816,-0.9511,0.25,-0.1266,-0.9877,0.0919,-0.25,-0.9511,0.1816,-0.1488,-0.9877,0.0483,-0.2939,-0.9511,0.0955,-0.1564,-0.9877,0.0,-0.309,-0.9511,0.0,-0.1488,-0.9877,-0.0483,-0.2939,-0.9511,-0.0955,-0.1266,-0.9877,-0.0919,-0.25,-0.9511,-0.1816,-0.0919,-0.9877,-0.1266,-0.1816,-0.9511,-0.25,-0.0483,-0.9877,-0.1488,-0.0955,-0.9511,-0.2939,0.0,-0.9877,-0.1564,0.0,-0.9511,-0.309,0.0483,-0.9877,-0.1488,0.0955,-0.9511,-0.2939,0.0919,-0.9877,-0.1266,0.1816,-0.9511,-0.25,0.1266,-0.9877,-0.0919,0.25,-0.9511,-0.1816,0.1488,-0.9877,-0.0483,0.2939,-0.9511,-0.0955,0.1564,-0.9877,0.0,0.309,-0.9511,0.0,0.1488,-0.9877,0.0483,0.2939,-0.9511,0.0955,0.4318,-0.891,0.1403,0.3673,-0.891,0.2668,0.2668,-0.891,0.3673,0.1403,-0.891,0.4318,0.0,-0.891,0.454,-0.1403,-0.891,0.4318,-0.2668,-0.891,0.3673,-0.3673,-0.891,0.2668,-0.4318,-0.891,0.1403,-0.454,-0.891,0.0,-0.4318,-0.891,-0.1403,-0.3673,-0.891,-0.2668,-0.2668,-0.891,-0.3673,-0.1403,-0.891,-0.4318,0.0,-0.891,-0.454,0.1403,-0.891,-0.4318,0.2668,-0.891,-0.3673,0.3673,-0.891,-0.2668,0.4318,-0.891,-0.1403,0.454,-0.891,0.0,0.4318,-0.891,0.1403,0.559,-0.809,0.1816,0.4755,-0.809,0.3455,0.3455,-0.809,0.4755,0.1816,-0.809,0.559,0.0,-0.809,0.5878,-0.1816,-0.809,0.559,-0.3455,-0.809,0.4755,-0.4755,-0.809,0.3455,-0.559,-0.809,0.1816,-0.5878,-0.809,0.0,-0.559,-0.809,-0.1816,-0.4755,-0.809,-0.3455,-0.3455,-0.809,-0.4755,-0.1816,-0.809,-0.559,0.0,-0.809,-0.5878,0.1816,-0.809,-0.559,0.3455,-0.809,-0.4755,0.4755,-0.809,-0.3455,0.559,-0.809,-0.1816,0.5878,-0.809,0.0,0.559,-0.809,0.1816,0.6725,-0.7071,0.2185,0.5721,-0.7071,0.4156,0.4156,-0.7071,0.5721,0.2185,-0.7071,0.6725,0.0,-0.7071,0.7071,-0.2185,-0.7071,0.6725,-0.4156,-0.7071,0.5721,-0.5721,-0.7071,0.4156,-0.6725,-0.7071,0.2185,-0.7071,-0.7071,0.0,-0.6725,-0.7071,-0.2185,-0.5721,-0.7071,-0.4156,-0.4156,-0.7071,-0.5721,-0.2185,-0.7071,-0.6725,0.0,-0.7071,-0.7071,0.2185,-0.7071,-0.6725,0.4156,-0.7071,-0.5721,0.5721,-0.7071,-0.4156,0.6725,-0.7071,-0.2185,0.7071,-0.7071,0.0,0.6725,-0.7071,0.2185,0.7694,-0.5878,0.25,0.6545,-0.5878,0.4755,0.4755,-0.5878,0.6545,0.25,-0.5878,0.7694,0.0,-0.5878,0.809,-0.25,-0.5878,0.7694,-0.4755,-0.5878,0.6545,-0.6545,-0.5878,0.4755,-0.7694,-0.5878,0.25,-0.809,-0.5878,0.0,-0.7694,-0.5878,-0.25,-0.6545,-0.5878,-0.4755,-0.4755,-0.5878,-0.6545,-0.25,-0.5878,-0.7694,0.0,-0.5878,-0.809,0.25,-0.5878,-0.7694,0.4755,-0.5878,-0.6545,0.6545,-0.5878,-0.4755,0.7694,-0.5878,-0.25,0.809,-0.5878,0.0,0.7694,-0.5878,0.25,0.8474,-0.454,0.2753,0.7208,-0.454,0.5237,0.5237,-0.454,0.7208,0.2753,-0.454,0.8474,0.0,-0.454,0.891,-0.2753,-0.454,0.8474,-0.5237,-0.454,0.7208,-0.7208,-0.454,0.5237,-0.8474,-0.454,0.2753,-0.891,-0.454,0.0,-0.8474,-0.454,-0.2753,-0.7208,-0.454,-0.5237,-0.5237,-0.454,-0.7208,-0.2753,-0.454,-0.8474,0.0,-0.454,-0.891,0.2753,-0.454,-0.8474,0.5237,-0.454,-0.7208,0.7208,-0.454,-0.5237,0.8474,-0.454,-0.2753,0.891,-0.454,0.0,0.8474,-0.454,0.2753,0.9045,-0.309,0.2939,0.7694,-0.309,0.559,0.559,-0.309,0.7694,0.2939,-0.309,0.9045,0.0,-0.309,0.9511,-0.2939,-0.309,0.9045,-0.559,-0.309,0.7694,-0.7694,-0.309,0.559,-0.9045,-0.309,0.2939,-0.9511,-0.309,0.0,-0.9045,-0.309,-0.2939,-0.7694,-0.309,-0.559,-0.559,-0.309,-0.7694,-0.2939,-0.309,-0.9045,0.0,-0.309,-0.9511,0.2939,-0.309,-0.9045,0.559,-0.309,-0.7694,0.7694,-0.309,-0.559,0.9045,-0.309,-0.2939,0.9511,-0.309,0.0,0.9045,-0.309,0.2939,0.9393,-0.1564,0.3052,0.7991,-0.1564,0.5805,0.5805,-0.1564,0.7991,0.3052,-0.1564,0.9393,0.0,-0.1564,0.9877,-0.3052,-0.1564,0.9393,-0.5805,-0.1564,0.7991,-0.7991,-0.1564,0.5805,-0.9393,-0.1564,0.3052,-0.9877,-0.1564,0.0,-0.9393,-0.1564,-0.3052,-0.7991,-0.1564,-0.5805,-0.5805,-0.1564,-0.7991,-0.3052,-0.1564,-0.9393,0.0,-0.1564,-0.9877,0.3052,-0.1564,-0.9393,0.5805,-0.1564,-0.7991,0.7991,-0.1564,-0.5805,0.9393,-0.1564,-0.3052,0.9877,-0.1564,0.0,0.9393,-0.1564,0.3052,0.9511,0.0,0.309,0.809,0.0,0.5878,0.5878,0.0,0.809,0.309,0.0,0.9511,0.0,0.0,1.0,-0.309,0.0,0.9511,-0.5878,0.0,0.809,-0.809,0.0,0.5878,-0.9511,0.0,0.309,-1.0,0.0,0.0,-0.9511,0.0,-0.309,-0.809,0.0,-0.5878,-0.5878,0.0,-0.809,-0.309,0.0,-0.9511,0.0,0.0,-1.0,0.309,0.0,-0.9511,0.5878,0.0,-0.809,0.809,0.0,-0.5878,0.9511,0.0,-0.309,1.0,0.0,0.0,0.9511,0.0,0.309,0.9393,0.1564,0.3052,0.7991,0.1564,0.5805,0.5805,0.1564,0.7991,0.3052,0.1564,0.9393,0.0,0.1564,0.9877,-0.3052,0.1564,0.9393,-0.5805,0.1564,0.7991,-0.7991,0.1564,0.5805,-0.9393,0.1564,0.3052,-0.9877,0.1564,0.0,-0.9393,0.1564,-0.3052,-0.7991,0.1564,-0.5805,-0.5805,0.1564,-0.7991,-0.3052,0.1564,-0.9393,0.0,0.1564,-0.9877,0.3052,0.1564,-0.9393,0.5805,0.1564,-0.7991,0.7991,0.1564,-0.5805,0.9393,0.1564,-0.3052,0.9877,0.1564,0.0,0.9393,0.1564,0.3052,0.9045,0.309,0.2939,0.7694,0.309,0.559,0.559,0.309,0.7694,0.2939,0.309,0.9045,0.0,0.309,0.9511,-0.2939,0.309,0.9045,-0.559,0.309,0.7694,-0.7694,0.309,0.559,-0.9045,0.309,0.2939,-0.9511,0.309,0.0,-0.9045,0.309,-0.2939,-0.7694,0.309,-0.559,-0.559,0.309,-0.7694,-0.2939,0.309,-0.9045,0.0,0.309,-0.9511,0.2939,0.309,-0.9045,0.559,0.309,-0.7694,0.7694,0.309,-0.559,0.9045,0.309,-0.2939,0.9511,0.309,0.0,0.9045,0.309,0.2939,0.8474,0.454,0.2753,0.7208,0.454,0.5237,0.5237,0.454,0.7208,0.2753,0.454,0.8474,0.0,0.454,0.891,-0.2753,0.454,0.8474,-0.5237,0.454,0.7208,-0.7208,0.454,0.5237,-0.8474,0.454,0.2753,-0.891,0.454,0.0,-0.8474,0.454,-0.2753,-0.7208,0.454,-0.5237,-0.5237,0.454,-0.7208,-0.2753,0.454,-0.8474,0.0,0.454,-0.891,0.2753,0.454,-0.8474,0.5237,0.454,-0.7208,0.7208,0.454,-0.5237,0.8474,0.454,-0.2753,0.891,0.454,0.0,0.8474,0.454,0.2753,0.7694,0.5878,0.25,0.6545,0.5878,0.4755,0.4755,0.5878,0.6545,0.25,0.5878,0.7694,0.0,0.5878,0.809,-0.25,0.5878,0.7694,-0.4755,0.5878,0.6545,-0.6545,0.5878,0.4755,-0.7694,0.5878,0.25,-0.809,0.5878,0.0,-0.7694,0.5878,-0.25,-0.6545,0.5878,-0.4755,-0.4755,0.5878,-0.6545,-0.25,0.5878,-0.7694,0.0,0.5878,-0.809,0.25,0.5878,-0.7694,0.4755,0.5878,-0.6545,0.6545,0.5878,-0.4755,0.7694,0.5878,-0.25,0.809,0.5878,0.0,0.7694,0.5878,0.25,0.6725,0.7071,0.2185,0.5721,0.7071,0.4156,0.4156,0.7071,0.5721,0.2185,0.7071,0.6725,0.0,0.7071,0.7071,-0.2185,0.7071,0.6725,-0.4156,0.7071,0.5721,-0.5721,0.7071,0.4156,-0.6725,0.7071,0.2185,-0.7071,0.7071,0.0,-0.6725,0.7071,-0.2185,-0.5721,0.7071,-0.4156,-0.4156,0.7071,-0.5721,-0.2185,0.7071,-0.6725,0.0,0.7071,-0.7071,0.2185,0.7071,-0.6725,0.4156,0.7071,-0.5721,0.5721,0.7071,-0.4156,0.6725,0.7071,-0.2185,0.7071,0.7071,0.0,0.6725,0.7071,0.2185,0.559,0.809,0.1816,0.4755,0.809,0.3455,0.3455,0.809,0.4755,0.1816,0.809,0.559,0.0,0.809,0.5878,-0.1816,0.809,0.559,-0.3455,0.809,0.4755,-0.4755,0.809,0.3455,-0.559,0.809,0.1816,-0.5878,0.809,0.0,-0.559,0.809,-0.1816,-0.4755,0.809,-0.3455,-0.3455,0.809,-0.4755,-0.1816,0.809,-0.559,0.0,0.809,-0.5878,0.1816,0.809,-0.559,0.3455,0.809,-0.4755,0.4755,0.809,-0.3455,0.559,0.809,-0.1816,0.5878,0.809,0.0,0.559,0.809,0.1816,0.4318,0.891,0.1403,0.3673,0.891,0.2668,0.2668,0.891,0.3673,0.1403,0.891,0.4318,0.0,0.891,0.454,-0.1403,0.891,0.4318,-0.2668,0.891,0.3673,-0.3673,0.891,0.2668,-0.4318,0.891,0.1403,-0.454,0.891,0.0,-0.4318,0.891,-0.1403,-0.3673,0.891,-0.2668,-0.2668,0.891,-0.3673,-0.1403,0.891,-0.4318,0.0,0.891,-0.454,0.1403,0.891,-0.4318,0.2668,0.891,-0.3673,0.3673,0.891,-0.2668,0.4318,0.891,-0.1403,0.454,0.891,0.0,0.4318,0.891,0.1403,0.2939,0.9511,0.0955,0.25,0.9511,0.1816,0.1816,0.9511,0.25,0.0955,0.9511,0.2939,0.0,0.9511,0.309,-0.0955,0.9511,0.2939,-0.1816,0.9511,0.25,-0.25,0.9511,0.1816,-0.2939,0.9511,0.0955,-0.309,0.9511,0.0,-0.2939,0.9511,-0.0955,-0.25,0.9511,-0.1816,-0.1816,0.9511,-0.25,-0.0955,0.9511,-0.2939,0.0,0.9511,-0.309,0.0955,0.9511,-0.2939,0.1816,0.9511,-0.25,0.25,0.9511,-0.1816,0.2939,0.9511,-0.0955,0.309,0.9511,0.0,0.2939,0.9511,0.0955,0.1488,0.9877,0.0483,0.1266,0.9877,0.0919,0.0919,0.9877,0.1266,0.0483,0.9877,0.1488,0.0,0.9877,0.1564,-0.0483,0.9877,0.1488,-0.0919,0.9877,0.1266,-0.1266,0.9877,0.0919,-0.1488,0.9877,0.0483,-0.1564,0.9877,0.0,-0.1488,0.9877,-0.0483,-0.1266,0.9877,-0.0919,-0.0919,0.9877,-0.1266,-0.0483,0.9877,-0.1488,0.0,0.9877,-0.1564,0.0483,0.9877,-0.1488,0.0919,0.9877,-0.1266,0.1266,0.9877,-0.0919,0.1488,0.9877,-0.0483,0.1564,0.9877,0.0,0.1488,0.9877,0.0483,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0],"normals":[0.1906,-0.9797,0.0619,0.1621,-0.9797,0.1178,0.3173,-0.9427,0.1031,0.2699,-0.9427,0.1961,0.1178,-0.9797,0.1621,0.1961,-0.9427,0.2699,0.0619,-0.9797,0.1906,0.1031,-0.9427,0.3173,0.0,-0.9797,0.2004,0.0,-0.9427,0.3336,-0.0619,-0.9797,0.1906,-0.1031,-0.9427,0.3173,-0.1178,-0.9797,0.1621,-0.1961,-0.9427,0.2699,-0.1621,-0.9797,0.1178,-0.2699,-0.9427,0.1961,-0.1906,-0.9797,0.0619,-0.3173,-0.9427,0.1031,-0.2004,-0.9797,0.0,-0.3336,-0.9427,0.0,-0.1906,-0.9797,-0.0619,-0.3173,-0.9427,-0.1031,-0.1621,-0.9797,-0.1178,-0.2699,-0.9427,-0.1961,-0.1178,-0.9797,-0.1621,-0.1961,-0.9427,-0.2699,-0.0619,-0.9797,-0.1906,-0.1031,-0.9427,-0.3173,0.0,-0.9797,-0.2004,0.0,-0.9427,-0.3336,0.0619,-0.9797,-0.1906,0.1031,-0.9427,-0.3173,0.1178,-0.9797,-0.1621,0.1961,-0.9427,-0.2699,0.1621,-0.9797,-0.1178,0.2699,-0.9427,-0.1961,0.1906,-0.9797,-0.0619,0.3173,-0.9427,-0.1031,0.2004,-0.9797,0.0,0.3336,-0.9427,0.0,0.1906,-0.9797,0.0619,0.3173,-0.9427,0.1031,0.4477,-0.8823,0.1455,0.3808,-0.8823,0.2767,0.2767,-0.8823,0.3808,0.1455,-0.8823,0.4477,0.0,-0.8823,0.4708,-0.1455,-0.8823,0.4477,-0.2767,-0.8823,0.3808,-0.3808,-0.8823,0.2767,-0.4477,-0.8823,0.1455,-0.4708,-0.8823,0.0,-0.4477,-0.8823,-0.1455,-0.3808,-0.8823,-0.2767,-0.2767,-0.8823,-0.3808,-0.1455,-0.8823,-0.4477,0.0,-0.8823,-0.4708,0.1455,-0.8823,-0.4477,0.2767,-0.8823,-0.3808,0.3808,-0.8823,-0.2767,0.4477,-0.8823,-0.1455,0.4708,-0.8823,0.0,0.4477,-0.8823,0.1455,0.5703,-0.8003,0.1853,0.4851,-0.8003,0.3525,0.3525,-0.8003,0.4851,0.1853,-0.8003,0.5703,0.0,-0.8003,0.5997,-0.1853,-0.8003,0.5703,-0.3525,-0.8003,0.4851,-0.4851,-0.8003,0.3525,-0.5703,-0.8003,0.1853,-0.5997,-0.8003,0.0,-0.5703,-0.8003,-0.1853,-0.4851,-0.8003,-0.3525,-0.3525,-0.8003,-0.4851,-0.1853,-0.8003,-0.5703,0.0,-0.8003,-0.5997,0.1853,-0.8003,-0.5703,0.3525,-0.8003,-0.4851,0.4851,-0.8003,-0.3525,0.5703,-0.8003,-0.1853,0.5997,-0.8003,0.0,0.5703,-0.8003,0.1853,0.6803,-0.6988,0.221,0.5787,-0.6988,0.4205,0.4205,-0.6988,0.5787,0.221,-0.6988,0.6803,0.0,-0.6988,0.7153,-0.221,-0.6988,0.6803,-0.4205,-0.6988,0.5787,-0.5787,-0.6988,0.4205,-0.6803,-0.6988,0.221,-0.7153,-0.6988,0.0,-0.6803,-0.6988,-0.221,-0.5787,-0.6988,-0.4205,-0.4205,-0.6988,-0.5787,-0.221,-0.6988,-0.6803,0.0,-0.6988,-0.7153,0.221,-0.6988,-0.6803,0.4205,-0.6988,-0.5787,0.5787,-0.6988,-0.4205,0.6803,-0.6988,-0.221,0.7153,-0.6988,0.0,0.6803,-0.6988,0.221,0.7745,-0.5804,0.2516,0.6588,-0.5804,0.4787,0.4787,-0.5804,0.6588,0.2516,-0.5804,0.7745,0.0,-0.5804,0.8143,-0.2516,-0.5804,0.7745,-0.4787,-0.5804,0.6588,-0.6588,-0.5804,0.4787,-0.7745,-0.5804,0.2516,-0.8143,-0.5804,0.0,-0.7745,-0.5804,-0.2516,-0.6588,-0.5804,-0.4787,-0.4787,-0.5804,-0.6588,-0.2516,-0.5804,-0.7745,0.0,-0.5804,-0.8143,0.2516,-0.5804,-0.7745,0.4787,-0.5804,-0.6588,0.6588,-0.5804,-0.4787,0.7745,-0.5804,-0.2516,0.8143,-0.5804,0.0,0.7745,-0.5804,0.2516,0.8503,-0.448,0.2763,0.7233,-0.448,0.5255,0.5255,-0.448,0.7233,0.2763,-0.448,0.8503,0.0,-0.448,0.894,-0.2763,-0.448,0.8503,-0.5255,-0.448,0.7233,-0.7233,-0.448,0.5255,-0.8503,-0.448,0.2763,-0.894,-0.448,0.0,-0.8503,-0.448,-0.2763,-0.7233,-0.448,-0.5255,-0.5255,-0.448,-0.7233,-0.2763,-0.448,-0.8503,0.0,-0.448,-0.894,0.2763,-0.448,-0.8503,0.5255,-0.448,-0.7233,0.7233,-0.448,-0.5255,0.8503,-0.448,-0.2763,0.894,-0.448,0.0,0.8503,-0.448,0.2763,0.9058,-0.3048,0.2943,0.7705,-0.3048,0.5598,0.5598,-0.3048,0.7705,0.2943,-0.3048,0.9058,0.0,-0.3048,0.9524,-0.2943,-0.3048,0.9058,-0.5598,-0.3048,0.7705,-0.7705,-0.3048,0.5598,-0.9058,-0.3048,0.2943,-0.9524,-0.3048,0.0,-0.9058,-0.3048,-0.2943,-0.7705,-0.3048,-0.5598,-0.5598,-0.3048,-0.7705,-0.2943,-0.3048,-0.9058,0.0,-0.3048,-0.9524,0.2943,-0.3048,-0.9058,0.5598,-0.3048,-0.7705,0.7705,-0.3048,-0.5598,0.9058,-0.3048,-0.2943,0.9524,-0.3048,0.0,0.9058,-0.3048,0.2943,0.9397,-0.1542,0.3053,0.7993,-0.1542,0.5808,0.5808,-0.1542,0.7993,0.3053,-0.1542,0.9397,0.0,-0.1542,0.988,-0.3053,-0.1542,0.9397,-0.5808,-0.1542,0.7993,-0.7993,-0.1542,0.5808,-0.9397,-0.1542,0.3053,-0.988,-0.1542,0.0,-0.9397,-0.1542,-0.3053,-0.7993,-0.1542,-0.5808,-0.5808,-0.1542,-0.7993,-0.3053,-0.1542,-0.9397,0.0,-0.1542,-0.988,0.3053,-0.1542,-0.9397,0.5808,-0.1542,-0.7993,0.7993,-0.1542,-0.5808,0.9397,-0.1542,-0.3053,0.988,-0.1542,0.0,0.9397,-0.1542,0.3053,0.9511,0.0,0.309,0.809,0.0,0.5878,0.5878,0.0,0.809,0.309,0.0,0.9511,0.0,0.0,1.0,-0.309,0.0,0.9511,-0.5878,0.0,0.809,-0.809,0.0,0.5878,-0.9511,0.0,0.309,-1.0,0.0,0.0,-0.9511,0.0,-0.309,-0.809,0.0,-0.5878,-0.5878,0.0,-0.809,-0.309,0.0,-0.9511,0.0,0.0,-1.0,0.309,0.0,-0.9511,0.5878,0.0,-0.809,0.809,0.0,-0.5878,0.9511,0.0,-0.309,1.0,0.0,0.0,0.9511,0.0,0.309,0.9397,0.1542,0.3053,0.7993,0.1542,0.5808,0.5808,0.1542,0.7993,0.3053,0.1542,0.9397,0.0,0.1542,0.988,-0.3053,0.1542,0.9397,-0.5808,0.1542,0.7993,-0.7993,0.1542,0.5808,-0.9397,0.1542,0.3053,-0.988,0.1542,0.0,-0.9397,0.1542,-0.3053,-0.7993,0.1542,-0.5808,-0.5808,0.1542,-0.7993,-0.3053,0.1542,-0.9397,0.0,0.1542,-0.988,0.3053,0.1542,-0.9397,0.5808,0.1542,-0.7993,0.7993,0.1542,-0.5808,0.9397,0.1542,-0.3053,0.988,0.1542,0.0,0.9397,0.1542,0.3053,0.9058,0.3048,0.2943,0.7705,0.3048,0.5598,0.5598,0.3048,0.7705,0.2943,0.3048,0.9058,0.0,0.3048,0.9524,-0.2943,0.3048,0.9058,-0.5598,0.3048,0.7705,-0.7705,0.3048,0.5598,-0.9058,0.3048,0.2943,-0.9524,0.3048,0.0,-0.9058,0.3048,-0.2943,-0.7705,0.3048,-0.5598,-0.5598,0.3048,-0.7705,-0.2943,0.3048,-0.9058,0.0,0.3048,-0.9524,0.2943,0.3048,-0.9058,0.5598,0.3048,-0.7705,0.7705,0.3048,-0.5598,0.9058,0.3048,-0.2943,0.9524,0.3048,0.0,0.9058,0.3048,0.2943,0.8503,0.448,0.2763,0.7233,0.448,0.5255,0.5255,0.448,0.7233,0.2763,0.448,0.8503,0.0,0.448,0.894,-0.2763,0.448,0.8503,-0.5255,0.448,0.7233,-0.7233,0.448,0.5255,-0.8503,0.448,0.2763,-0.894,0.448,0.0,-0.8503,0.448,-0.2763,-0.7233,0.448,-0.5255,-0.5255,0.448,-0.7233,-0.2763,0.448,-0.8503,0.0,0.448,-0.894,0.2763,0.448,-0.8503,0.5255,0.448,-0.7233,0.7233,0.448,-0.5255,0.8503,0.448,-0.2763,0.894,0.448,0.0,0.8503,0.448,0.2763,0.7745,0.5804,0.2516,0.6588,0.5804,0.4787,0.4787,0.5804,0.6588,0.2516,0.5804,0.7745,0.0,0.5804,0.8143,-0.2516,0.5804,0.7745,-0.4787,0.5804,0.6588,-0.6588,0.5804,0.4787,-0.7745,0.5804,0.2516,-0.8143,0.5804,0.0,-0.7745,0.5804,-0.2516,-0.6588,0.5804,-0.4787,-0.4787,0.5804,-0.6588,-0.2516,0.5804,-0.7745,0.0,0.5804,-0.8143,0.2516,0.5804,-0.7745,0.4787,0.5804,-0.6588,0.6588,0.5804,-0.4787,0.7745,0.5804,-0.2516,0.8143,0.5804,0.0,0.7745,0.5804,0.2516,0.6803,0.6988,0.221,0.5787,0.6988,0.4205,0.4205,0.6988,0.5787,0.221,0.6988,0.6803,0.0,0.6988,0.7153,-0.221,0.6988,0.6803,-0.4205,0.6988,0.5787,-0.5787,0.6988,0.4205,-0.6803,0.6988,0.221,-0.7153,0.6988,0.0,-0.6803,0.6988,-0.221,-0.5787,0.6988,-0.4205,-0.4205,0.6988,-0.5787,-0.221,0.6988,-0.6803,0.0,0.6988,-0.7153,0.221,0.6988,-0.6803,0.4205,0.6988,-0.5787,0.5787,0.6988,-0.4205,0.6803,0.6988,-0.221,0.7153,0.6988,0.0,0.6803,0.6988,0.221,0.5703,0.8003,0.1853,0.4851,0.8003,0.3525,0.3525,0.8003,0.4851,0.1853,0.8003,0.5703,0.0,0.8003,0.5997,-0.1853,0.8003,0.5703,-0.3525,0.8003,0.4851,-0.4851,0.8003,0.3525,-0.5703,0.8003,0.1853,-0.5997,0.8003,0.0,-0.5703,0.8003,-0.1853,-0.4851,0.8003,-0.3525,-0.3525,0.8003,-0.4851,-0.1853,0.8003,-0.5703,0.0,0.8003,-0.5997,0.1853,0.8003,-0.5703,0.3525,0.8003,-0.4851,0.4851,0.8003,-0.3525,0.5703,0.8003,-0.1853,0.5997,0.8003,0.0,0.5703,0.8003,0.1853,0.4477,0.8823,0.1455,0.3808,0.8823,0.2767,0.2767,0.8823,0.3808,0.1455,0.8823,0.4477,0.0,0.8823,0.4708,-0.1455,0.8823,0.4477,-0.2767,0.8823,0.3808,-0.3808,0.8823,0.2767,-0.4477,0.8823,0.1455,-0.4708,0.8823,0.0,-0.4477,0.8823,-0.1455,-0.3808,0.8823,-0.2767,-0.2767,0.8823,-0.3808,-0.1455,0.8823,-0.4477,0.0,0.8823,-0.4708,0.1455,0.8823,-0.4477,0.2767,0.8823,-0.3808,0.3808,0.8823,-0.2767,0.4477,0.8823,-0.1455,0.4708,0.8823,0.0,0.4477,0.8823,0.1455,0.3173,0.9427,0.1031,0.2699,0.9427,0.1961,0.1961,0.9427,0.2699,0.1031,0.9427,0.3173,0.0,0.9427,0.3336,-0.1031,0.9427,0.3173,-0.1961,0.9427,0.2699,-0.2699,0.9427,0.1961,-0.3173,0.9427,0.1031,-0.3336,0.9427,0.0,-0.3173,0.9427,-0.1031,-0.2699,0.9427,-0.1961,-0.1961,0.9427,-0.2699,-0.1031,0.9427,-0.3173,0.0,0.9427,-0.3336,0.1031,0.9427,-0.3173,0.1961,0.9427,-0.2699,0.2699,0.9427,-0.1961,0.3173,0.9427,-0.1031,0.3336,0.9427,0.0,0.3173,0.9427,0.1031,0.1906,0.9797,0.0619,0.1621,0.9797,0.1178,0.1178,0.9797,0.1621,0.0619,0.9797,0.1906,0.0,0.9797,0.2004,-0.0619,0.9797,0.1906,-0.1178,0.9797,0.1621,-0.1621,0.9797,0.1178,-0.1906,0.9797,0.0619,-0.2004,0.9797,0.0,-0.1906,0.9797,-0.0619,-0.1621,0.9797,-0.1178,-0.1178,0.9797,-0.1621,-0.0619,0.9797,-0.1906,0.0,0.9797,-0.2004,0.0619,0.9797,-0.1906,0.1178,0.9797,-0.1621,0.1621,0.9797,-0.1178,0.1906,0.9797,-0.0619,0.2004,0.9797,0.0,0.1906,0.9797,0.0619,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0],"tangents":[-0.4482,-0.0307,0.8934,-1.0,-0.5629,0.0062,0.8265,-1.0,-0.438,-0.0493,0.8976,-1.0,-0.5878,0.0,0.809,-1.0,-0.7908,0.0062,0.6121,-1.0,-0.809,0.0,0.5878,-1.0,-0.9412,0.0062,0.3378,-1.0,-0.9511,0.0,0.309,-1.0,-0.9995,0.0062,0.0304,-1.0,-1.0,0.0,0.0,-1.0,-0.96,0.0062,-0.28,-1.0,-0.9511,0.0,-0.309,-1.0,-0.8265,0.0062,-0.5629,-1.0,-0.809,0.0,-0.5878,-1.0,-0.6121,0.0062,-0.7908,-1.0,-0.5878,0.0,-0.809,-1.0,-0.3378,0.0062,-0.9412,-1.0,-0.309,0.0,-0.9511,-1.0,-0.0304,0.0062,-0.9995,-1.0,0.0,0.0,-1.0,-1.0,0.28,0.0062,-0.96,-1.0,0.309,0.0,-0.9511,-1.0,0.5629,0.0062,-0.8265,-1.0,0.5878,0.0,-0.809,-1.0,0.7908,0.0062,-0.6121,-1.0,0.809,0.0,-0.5878,-1.0,0.9412,0.0062,-0.3378,-1.0,0.9511,0.0,-0.309,-1.0,0.9995,0.0062,-0.0304,-1.0,1.0,0.0,0.0,-1.0,0.96,0.0062,0.28,-1.0,0.9511,0.0,0.309,-1.0,0.8265,0.0062,0.5629,-1.0,0.809,0.0,0.5878,-1.0,0.6121,0.0062,0.7908,-1.0,0.5878,0.0,0.809,-1.0,0.3378,0.0062,0.9412,-1.0,0.309,0.0,0.9511,-1.0,0.0304,0.0062,0.9995,-1.0,0.0,0.0,1.0,-1.0,-0.1625,0.0307,0.9862,-1.0,-0.1732,0.0493,0.9836,-1.0,-0.4222,-0.0651,0.9042,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.1899,0.0651,0.9796,-1.0,-0.4023,-0.0754,0.9124,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.2109,0.0754,0.9746,-1.0,-0.3802,-0.0787,0.9215,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.234,0.0787,0.969,-1.0,-0.3582,-0.0745,0.9306,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.2572,0.0745,0.9635,-1.0,-0.3384,-0.0633,0.9389,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.2781,0.0633,0.9585,-1.0,-0.3226,-0.0459,0.9454,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.2947,0.0459,0.9545,-1.0,-0.3125,-0.0241,0.9496,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.3053,0.0241,0.9519,-1.0,-0.309,0.0,0.9511,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.309,0.0,0.9511,-1.0,-0.3125,0.0241,0.9496,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.3053,-0.0241,0.9519,-1.0,-0.3226,0.0459,0.9454,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.2947,-0.0459,0.9545,-1.0,-0.3384,0.0633,0.9389,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.2781,-0.0633,0.9585,-1.0,-0.3582,0.0745,0.9306,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.2572,-0.0745,0.9635,-1.0,-0.3802,0.0787,0.9215,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.234,-0.0787,0.969,-1.0,-0.4023,0.0754,0.9124,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.2109,-0.0754,0.9746,-1.0,-0.4222,0.0651,0.9042,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.1899,-0.0651,0.9796,-1.0,-0.438,0.0493,0.8976,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.1732,-0.0493,0.9836,-1.0,-0.4482,0.0307,0.8934,-1.0,-0.6121,0.0062,0.7908,-1.0,-0.8265,0.0062,0.5629,-1.0,-0.96,0.0062,0.28,-1.0,-0.9995,0.0062,-0.0304,-1.0,-0.9412,0.0062,-0.3378,-1.0,-0.7908,0.0062,-0.6121,-1.0,-0.5629,0.0062,-0.8265,-1.0,-0.28,0.0062,-0.96,-1.0,0.0304,0.0062,-0.9995,-1.0,0.3378,0.0062,-0.9412,-1.0,0.6121,0.0062,-0.7908,-1.0,0.8265,0.0062,-0.5629,-1.0,0.96,0.0062,-0.28,-1.0,0.9995,0.0062,0.0304,-1.0,0.9412,0.0062,0.3378,-1.0,0.7908,0.0062,0.6121,-1.0,0.5629,0.0062,0.8265,-1.0,0.28,0.0062,0.96,-1.0,-0.0304,0.0062,0.9995,-1.0,-0.1625,-0.0307,0.9862,-1.0,-0.454,0.0,0.891,-1.0,-0.7071,0.0,0.7071,-1.0,-0.891,0.0,0.454,-1.0,-0.9877,0.0,0.1564,-1.0,-0.9877,0.0,-0.1564,-1.0,-0.891,0.0,-0.454,-1.0,-0.7071,0.0,-0.7071,-1.0,-0.454,0.0,-0.891,-1.0,-0.1564,0.0,-0.9877,-1.0,0.1564,0.0,-0.9877,-1.0,0.454,0.0,-0.891,-1.0,0.7071,0.0,-0.7071,-1.0,0.891,0.0,-0.454,-1.0,0.9877,0.0,-0.1564,-1.0,0.9877,0.0,0.1564,-1.0,0.891,0.0,0.454,-1.0,0.7071,0.0,0.7071,-1.0,0.454,0.0,0.891,-1.0,0.1564,0.0,0.9877,-1.0,-0.1564,0.0,0.9877,-1.0,-0.454,0.0,0.891,-1.0,-0.7071,0.0,0.7071,-1.0,-0.891,0.0,0.454,-1.0,-0.9877,0.0,0.1564,-1.0,-0.9877,0.0,-0.1564,-1.0,-0.891,0.0,-0.454,-1.0,-0.7071,0.0,-0.7071,-1.0,-0.454,0.0,-0.891,-1.0,-0.1564,0.0,-0.9877,-1.0,0.1564,0.0,-0.9877,-1.0,0.454,0.0,-0.891,-1.0,0.7071,0.0,-0.7071,-1.0,0.891,0.0,-0.454,-1.0,0.9877,0.0,-0.1564,-1.0,0.9877,0.0,0.1564,-1.0,0.891,0.0,0.454,-1.0,0.7071,0.0,0.7071,-1.0,0.454,0.0,0.891,-1.0,0.1564,0.0,0.9877,-1.0,-0.1564,0.0,0.9877,-1.0],"uvs":[0.0,0.05,0.05,0.05,0.0,0.1,0.05,0.1,0.1,0.05,0.1,0.1,0.15,0.05,0.15,0.1,0.2,0.05,0.2,0.1,0.25,0.05,0.25,0.1,0.3,0.05,0.3,0.1,0.35,0.05,0.35,0.1,0.4,0.05,0.4,0.1,0.45,0.05,0.45,0.1,0.5,0.05,0.5,0.1,0.55,0.05,0.55,0.1,0.6,0.05,0.6,0.1,0.65,0.05,0.65,0.1,0.7,0.05,0.7,0.1,0.75,0.05,0.75,0.1,0.8,0.05,0.8,0.1,0.85,0.05,0.85,0.1,0.9,0.05,0.9,0.1,0.95,0.05,0.95,0.1,1.0,0.05,1.0,0.1,0.0,0.15,0.05,0.15,0.1,0.15,0.15,0.15,0.2,0.15,0.25,0.15,0.3,0.15,0.35,0.15,0.4,0.15,0.45,0.15,0.5,0.15,0.55,0.15,0.6,0.15,0.65,0.15,0.7,0.15,0.75,0.15,0.8,0.15,0.85,0.15,0.9,0.15,0.95,0.15,1.0,0.15,0.0,0.2,0.05,0.2,0.1,0.2,0.15,0.2,0.2,0.2,0.25,0.2,0.3,0.2,0.35,0.2,0.4,0.2,0.45,0.2,0.5,0.2,0.55,0.2,0.6,0.2,0.65,0.2,0.7,0.2,0.75,0.2,0.8,0.2,0.85,0.2,0.9,0.2,0.95,0.2,1.0,0.2,0.0,0.25,0.05,0.25,0.1,0.25,0.15,0.25,0.2,0.25,0.25,0.25,0.3,0.25,0.35,0.25,0.4,0.25,0.45,0.25,0.5,0.25,0.55,0.25,0.6,0.25,0.65,0.25,0.7,0.25,0.75,0.25,0.8,0.25,0.85,0.25,0.9,0.25,0.95,0.25,1.0,0.25,0.0,0.3,0.05,0.3,0.1,0.3,0.15,0.3,0.2,0.3,0.25,0.3,0.3,0.3,0.35,0.3,0.4,0.3,0.45,0.3,0.5,0.3,0.55,0.3,0.6,0.3,0.65,0.3,0.7,0.3,0.75,0.3,0.8,0.3,0.85,0.3,0.9,0.3,0.95,0.3,1.0,0.3,0.0,0.35,0.05,0.35,0.1,0.35,0.15,0.35,0.2,0.35,0.25,0.35,0.3,0.35,0.35,0.35,0.4,0.35,0.45,0.35,0.5,0.35,0.55,0.35,0.6,0.35,0.65,0.35,0.7,0.35,0.75,0.35,0.8,0.35,0.85,0.35,0.9,0.35,0.95,0.35,1.0,0.35,0.0,0.4,0.05,0.4,0.1,0.4,0.15,0.4,0.2,0.4,0.25,0.4,0.3,0.4,0.35,0.4,0.4,0.4,0.45,0.4,0.5,0.4,0.55,0.4,0.6,0.4,0.65,0.4,0.7,0.4,0.75,0.4,0.8,0.4,0.85,0.4,0.9,0.4,0.95,0.4,1.0,0.4,0.0,0.45,0.05,0.45,0.1,0.45,0.15,0.45,0.2,0.45,0.25,0.45,0.3,0.45,0.35,0.45,0.4,0.45,0.45,0.45,0.5,0.45,0.55,0.45,0.6,0.45,0.65,0.45,0.7,0.45,0.75,0.45,0.8,0.45,0.85,0.45,0.9,0.45,0.95,0.45,1.0,0.45,0.0,0.5,0.05,0.5,0.1,0.5,0.15,0.5,0.2,0.5,0.25,0.5,0.3,0.5,0.35,0.5,0.4,0.5,0.45,0.5,0.5,0.5,0.55,0.5,0.6,0.5,0.65,0.5,0.7,0.5,0.75,0.5,0.8,0.5,0.85,0.5,0.9,0.5,0.95,0.5,1.0,0.5,0.0,0.55,0.05,0.55,0.1,0.55,0.15,0.55,0.2,0.55,0.25,0.55,0.3,0.55,0.35,0.55,0.4,0.55,0.45,0.55,0.5,0.55,0.55,0.55,0.6,0.55,0.65,0.55,0.7,0.55,0.75,0.55,0.8,0.55,0.85,0.55,0.9,0.55,0.95,0.55,1.0,0.55,0.0,0.6,0.05,0.6,0.1,0.6,0.15,0.6,0.2,0.6,0.25,0.6,0.3,0.6,0.35,0.6,0.4,0.6,0.45,0.6,0.5,0.6,0.55,0.6,0.6,0.6,0.65,0.6,0.7,0.6,0.75,0.6,0.8,0.6,0.85,0.6,0.9,0.6,0.95,0.6,1.0,0.6,0.0,0.65,0.05,0.65,0.1,0.65,0.15,0.65,0.2,0.65,0.25,0.65,0.3,0.65,0.35,0.65,0.4,0.65,0.45,0.65,0.5,0.65,0.55,0.65,0.6,0.65,0.65,0.65,0.7,0.65,0.75,0.65,0.8,0.65,0.85,0.65,0.9,0.65,0.95,0.65,1.0,0.65,0.0,0.7,0.05,0.7,0.1,0.7,0.15,0.7,0.2,0.7,0.25,0.7,0.3,0.7,0.35,0.7,0.4,0.7,0.45,0.7,0.5,0.7,0.55,0.7,0.6,0.7,0.65,0.7,0.7,0.7,0.75,0.7,0.8,0.7,0.85,0.7,0.9,0.7,0.95,0.7,1.0,0.7,0.0,0.75,0.05,0.75,0.1,0.75,0.15,0.75,0.2,0.75,0.25,0.75,0.3,0.75,0.35,0.75,0.4,0.75,0.45,0.75,0.5,0.75,0.55,0.75,0.6,0.75,0.65,0.75,0.7,0.75,0.75,0.75,0.8,0.75,0.85,0.75,0.9,0.75,0.95,0.75,1.0,0.75,0.0,0.8,0.05,0.8,0.1,0.8,0.15,0.8,0.2,0.8,0.25,0.8,0.3,0.8,0.35,0.8,0.4,0.8,0.45,0.8,0.5,0.8,0.55,0.8,0.6,0.8,0.65,0.8,0.7,0.8,0.75,0.8,0.8,0.8,0.85,0.8,0.9,0.8,0.95,0.8,1.0,0.8,0.0,0.85,0.05,0.85,0.1,0.85,0.15,0.85,0.2,0.85,0.25,0.85,0.3,0.85,0.35,0.85,0.4,0.85,0.45,0.85,0.5,0.85,0.55,0.85,0.6,0.85,0.65,0.85,0.7,0.85,0.75,0.85,0.8,0.85,0.85,0.85,0.9,0.85,0.95,0.85,1.0,0.85,0.0,0.9,0.05,0.9,0.1,0.9,0.15,0.9,0.2,0.9,0.25,0.9,0.3,0.9,0.35,0.9,0.4,0.9,0.45,0.9,0.5,0.9,0.55,0.9,0.6,0.9,0.65,0.9,0.7,0.9,0.75,0.9,0.8,0.9,0.85,0.9,0.9,0.9,0.95,0.9,1.0,0.9,0.0,0.95,0.05,0.95,0.1,0.95,0.15,0.95,0.2,0.95,0.25,0.95,0.3,0.95,0.35,0.95,0.4,0.95,0.45,0.95,0.5,0.95,0.55,0.95,0.6,0.95,0.65,0.95,0.7,0.95,0.75,0.95,0.8,0.95,0.85,0.95,0.9,0.95,0.95,0.95,1.0,0.95,0.025,0.0,0.075,0.0,0.125,0.0,0.175,0.0,0.225,0.0,0.275,0.0,0.325,0.0,0.375,0.0,0.425,0.0,0.475,0.0,0.525,0.0,0.575,0.0,0.625,0.0,0.675,0.0,0.725,0.0,0.775,0.0,0.825,0.0,0.875,0.0,0.925,0.0,0.975,0.0,0.025,1.0,0.075,1.0,0.125,1.0,0.175,1.0,0.225,1.0,0.275,1.0,0.325,1.0,0.375,1.0,0.425,1.0,0.475,1.0,0.525,1.0,0.575,1.0,0.625,1.0,0.675,1.0,0.725,1.0,0.775,1.0,0.825,1.0,0.875,1.0,0.925,1.0,0.975,1.0],"uvs2":null,"colors":null,"hasVertexAlpha":false,"matricesIndices":null,"matricesWeights":null,"matricesIndicesExtra":null,"matricesWeightsExtra":null,"indices":[0,1,2,2,1,3,1,4,3,3,4,5,4,6,5,5,6,7,6,8,7,7,8,9,8,10,9,9,10,11,10,12,11,11,12,13,12,14,13,13,14,15,14,16,15,15,16,17,16,18,17,17,18,19,18,20,19,19,20,21,20,22,21,21,22,23,22,24,23,23,24,25,24,26,25,25,26,27,26,28,27,27,28,29,28,30,29,29,30,31,30,32,31,31,32,33,32,34,33,33,34,35,34,36,35,35,36,37,36,38,37,37,38,39,38,40,39,39,40,41,2,3,42,42,3,43,3,5,43,43,5,44,5,7,44,44,7,45,7,9,45,45,9,46,9,11,46,46,11,47,11,13,47,47,13,48,13,15,48,48,15,49,15,17,49,49,17,50,17,19,50,50,19,51,19,21,51,51,21,52,21,23,52,52,23,53,23,25,53,53,25,54,25,27,54,54,27,55,27,29,55,55,29,56,29,31,56,56,31,57,31,33,57,57,33,58,33,35,58,58,35,59,35,37,59,59,37,60,37,39,60,60,39,61,39,41,61,61,41,62,42,43,63,63,43,64,43,44,64,64,44,65,44,45,65,65,45,66,45,46,66,66,46,67,46,47,67,67,47,68,47,48,68,68,48,69,48,49,69,69,49,70,49,50,70,70,50,71,50,51,71,71,51,72,51,52,72,72,52,73,52,53,73,73,53,74,53,54,74,74,54,75,54,55,75,75,55,76,55,56,76,76,56,77,56,57,77,77,57,78,57,58,78,78,58,79,58,59,79,79,59,80,59,60,80,80,60,81,60,61,81,81,61,82,61,62,82,82,62,83,63,64,84,84,64,85,64,65,85,85,65,86,65,66,86,86,66,87,66,67,87,87,67,88,67,68,88,88,68,89,68,69,89,89,69,90,69,70,90,90,70,91,70,71,91,91,71,92,71,72,92,92,72,93,72,73,93,93,73,94,73,74,94,94,74,95,74,75,95,95,75,96,75,76,96,96,76,97,76,77,97,97,77,98,77,78,98,98,78,99,78,79,99,99,79,100,79,80,100,100,80,101,80,81,101,101,81,102,81,82,102,102,82,103,82,83,103,103,83,104,84,85,105,105,85,106,85,86,106,106,86,107,86,87,107,107,87,108,87,88,108,108,88,109,88,89,109,109,89,110,89,90,110,110,90,111,90,91,111,111,91,112,91,92,112,112,92,113,92,93,113,113,93,114,93,94,114,114,94,115,94,95,115,115,95,116,95,96,116,116,96,117,96,97,117,117,97,118,97,98,118,118,98,119,98,99,119,119,99,120,99,100,120,120,100,121,100,101,121,121,101,122,101,102,122,122,102,123,102,103,123,123,103,124,103,104,124,124,104,125,105,106,126,126,106,127,106,107,127,127,107,128,107,108,128,128,108,129,108,109,129,129,109,130,109,110,130,130,110,131,110,111,131,131,111,132,111,112,132,132,112,133,112,113,133,133,113,134,113,114,134,134,114,135,114,115,135,135,115,136,115,116,136,136,116,137,116,117,137,137,117,138,117,118,138,138,118,139,118,119,139,139,119,140,119,120,140,140,120,141,120,121,141,141,121,142,121,122,142,142,122,143,122,123,143,143,123,144,123,124,144,144,124,145,124,125,145,145,125,146,126,127,147,147,127,148,127,128,148,148,128,149,128,129,149,149,129,150,129,130,150,150,130,151,130,131,151,151,131,152,131,132,152,152,132,153,132,133,153,153,133,154,133,134,154,154,134,155,134,135,155,155,135,156,135,136,156,156,136,157,136,137,157,157,137,158,137,138,158,158,138,159,138,139,159,159,139,160,139,140,160,160,140,161,140,141,161,161,141,162,141,142,162,162,142,163,142,143,163,163,143,164,143,144,164,164,144,165,144,145,165,165,145,166,145,146,166,166,146,167,147,148,168,168,148,169,148,149,169,169,149,170,149,150,170,170,150,171,150,151,171,171,151,172,151,152,172,172,152,173,152,153,173,173,153,174,153,154,174,174,154,175,154,155,175,175,155,176,155,156,176,176,156,177,156,157,177,177,157,178,157,158,178,178,158,179,158,159,179,179,159,180,159,160,180,180,160,181,160,161,181,181,161,182,161,162,182,182,162,183,162,163,183,183,163,184,163,164,184,184,164,185,164,165,185,185,165,186,165,166,186,186,166,187,166,167,187,187,167,188,168,169,189,189,169,190,169,170,190,190,170,191,170,171,191,191,171,192,171,172,192,192,172,193,172,173,193,193,173,194,173,174,194,194,174,195,174,175,195,195,175,196,175,176,196,196,176,197,176,177,197,197,177,198,177,178,198,198,178,199,178,179,199,199,179,200,179,180,200,200,180,201,180,181,201,201,181,202,181,182,202,202,182,203,182,183,203,203,183,204,183,184,204,204,184,205,184,185,205,205,185,206,185,186,206,206,186,207,186,187,207,207,187,208,187,188,208,208,188,209,189,190,210,210,190,211,190,191,211,211,191,212,191,192,212,212,192,213,192,193,213,213,193,214,193,194,214,214,194,215,194,195,215,215,195,216,195,196,216,216,196,217,196,197,217,217,197,218,197,198,218,218,198,219,198,199,219,219,199,220,199,200,220,220,200,221,200,201,221,221,201,222,201,202,222,222,202,223,202,203,223,223,203,224,203,204,224,224,204,225,204,205,225,225,205,226,205,206,226,226,206,227,206,207,227,227,207,228,207,208,228,228,208,229,208,209,229,229,209,230,210,211,231,231,211,232,211,212,232,232,212,233,212,213,233,233,213,234,213,214,234,234,214,235,214,215,235,235,215,236,215,216,236,236,216,237,216,217,237,237,217,238,217,218,238,238,218,239,218,219,239,239,219,240,219,220,240,240,220,241,220,221,241,241,221,242,221,222,242,242,222,243,222,223,243,243,223,244,223,224,244,244,224,245,224,225,245,245,225,246,225,226,246,246,226,247,226,227,247,247,227,248,227,228,248,248,228,249,228,229,249,249,229,250,229,230,250,250,230,251,231,232,252,252,232,253,232,233,253,253,233,254,233,234,254,254,234,255,234,235,255,255,235,256,235,236,256,256,236,257,236,237,257,257,237,258,237,238,258,258,238,259,238,239,259,259,239,260,239,240,260,260,240,261,240,241,261,261,241,262,241,242,262,262,242,263,242,243,263,263,243,264,243,244,264,264,244,265,244,245,265,265,245,266,245,246,266,266,246,267,246,247,267,267,247,268,247,248,268,268,248,269,248,249,269,269,249,270,249,250,270,270,250,271,250,251,271,271,251,272,252,253,273,273,253,274,253,254,274,274,254,275,254,255,275,275,255,276,255,256,276,276,256,277,256,257,277,277,257,278,257,258,278,278,258,279,258,259,279,279,259,280,259,260,280,280,260,281,260,261,281,281,261,282,261,262,282,282,262,283,262,263,283,283,263,284,263,264,284,284,264,285,264,265,285,285,265,286,265,266,286,286,266,287,266,267,287,287,267,288,267,268,288,288,268,289,268,269,289,289,269,290,269,270,290,290,270,291,270,271,291,291,271,292,271,272,292,292,272,293,273,274,294,294,274,295,274,275,295,295,275,296,275,276,296,296,276,297,276,277,297,297,277,298,277,278,298,298,278,299,278,279,299,299,279,300,279,280,300,300,280,301,280,281,301,301,281,302,281,282,302,302,282,303,282,283,303,303,283,304,283,284,304,304,284,305,284,285,305,305,285,306,285,286,306,306,286,307,286,287,307,307,287,308,287,288,308,308,288,309,288,289,309,309,289,310,289,290,310,310,290,311,290,291,311,311,291,312,291,292,312,312,292,313,292,293,313,313,293,314,294,295,315,315,295,316,295,296,316,316,296,317,296,297,317,317,297,318,297,298,318,318,298,319,298,299,319,319,299,320,299,300,320,320,300,321,300,301,321,321,301,322,301,302,322,322,302,323,302,303,323,323,303,324,303,304,324,324,304,325,304,305,325,325,305,326,305,306,326,326,306,327,306,307,327,327,307,328,307,308,328,328,308,329,308,309,329,329,309,330,309,310,330,330,310,331,310,311,331,331,311,332,311,312,332,332,312,333,312,313,333,333,313,334,313,314,334,334,314,335,315,316,336,336,316,337,316,317,337,337,317,338,317,318,338,338,318,339,318,319,339,339,319,340,319,320,340,340,320,341,320,321,341,341,321,342,321,322,342,342,322,343,322,323,343,343,323,344,323,324,344,344,324,345,324,325,345,345,325,346,325,326,346,346,326,347,326,327,347,347,327,348,327,328,348,348,328,349,328,329,349,349,329,350,329,330,350,350,330,351,330,331,351,351,331,352,331,332,352,352,332,353,332,333,353,353,333,354,333,334,354,354,334,355,334,335,355,355,335,356,336,337,357,357,337,358,337,338,358,358,338,359,338,339,359,359,339,360,339,340,360,360,340,361,340,341,361,361,341,362,341,342,362,362,342,363,342,343,363,363,343,364,343,344,364,364,344,365,344,345,365,365,345,366,345,346,366,366,346,367,346,347,367,367,347,368,347,348,368,368,348,369,348,349,369,369,349,370,349,350,370,370,350,371,350,351,371,371,351,372,351,352,372,372,352,373,352,353,373,373,353,374,353,354,374,374,354,375,354,355,375,375,355,376,355,356,376,376,356,377,357,358,378,378,358,379,358,359,379,379,359,380,359,360,380,380,360,381,360,361,381,381,361,382,361,362,382,382,362,383,362,363,383,383,363,384,363,364,384,384,364,385,364,365,385,385,365,386,365,366,386,386,366,387,366,367,387,387,367,388,367,368,388,388,368,389,368,369,389,389,369,390,369,370,390,390,370,391,370,371,391,391,371,392,371,372,392,392,372,393,372,373,393,393,373,394,373,374,394,394,374,395,374,375,395,395,375,396,375,376,396,396,376,397,376,377,397,397,377,398,1,0,399,4,1,400,6,4,401,8,6,402,10,8,403,12,10,404,14,12,405,16,14,406,18,16,407,20,18,408,22,20,409,24,22,410,26,24,411,28,26,412,30,28,413,32,30,414,34,32,415,36,34,416,38,36,417,40,38,418,378,379,419,379,380,420,380,381,421,381,382,422,382,383,423,383,384,424,384,385,425,385,386,426,386,387,427,387,388,428,388,389,429,389,390,430,390,391,431,391,392,432,392,393,433,393,394,434,394,395,435,395,396,436,396,397,437,397,398,438],"receiveShadows":false,"infiniteDistance":false,"billboardMode":0,"visibility":1.0,"subMeshes":[{"materialIndex":0,"verticesStart":0,"verticesCount":439,"indexStart":0,"indexCount":2280}],"instances":null,"skeletonId":-1,"numBoneInfluencers":4,"applyFog":false,"lodMeshIds":null,"lodDistances":null,"lodCoverages":null,"rotation":null,"scaling":[1.0,1.0,1.0],"rotationQuaternion":[0.0,0.1736,0.0,0.9848],"actions":null,"checkCollisions":false,"pickable":true,"showBoundingBox":false,"showSubMeshesBoundingBox":false,"alphaIndex":0,"physicsImpostor":0,"physicsMass":0.0,"physicsFriction":0.0,"physicsRestitution":0.0,"name":"pSphere1","id":"39830D1B-4903-0C71-E956-0EBDE718A360","parentId":null,"position":[0.0,0.0,0.0],"animations":[],"autoAnimate":true,"autoAnimateFrom":1,"autoAnimateTo":200,"autoAnimateLoop":true,"metadata":{}},{"materialId":"0E49D5E9-4200-91FB-CB7B-93B40CEF850E","isEnabled":true,"isVisible":true,"positions":[0.1488,-0.9877,0.0483,0.1266,-0.9877,0.0919,0.2939,-0.9511,0.0955,0.25,-0.9511,0.1816,0.0919,-0.9877,0.1266,0.1816,-0.9511,0.25,0.0483,-0.9877,0.1488,0.0955,-0.9511,0.2939,0.0,-0.9877,0.1564,0.0,-0.9511,0.309,-0.0483,-0.9877,0.1488,-0.0955,-0.9511,0.2939,-0.0919,-0.9877,0.1266,-0.1816,-0.9511,0.25,-0.1266,-0.9877,0.0919,-0.25,-0.9511,0.1816,-0.1488,-0.9877,0.0483,-0.2939,-0.9511,0.0955,-0.1564,-0.9877,0.0,-0.309,-0.9511,0.0,-0.1488,-0.9877,-0.0483,-0.2939,-0.9511,-0.0955,-0.1266,-0.9877,-0.0919,-0.25,-0.9511,-0.1816,-0.0919,-0.9877,-0.1266,-0.1816,-0.9511,-0.25,-0.0483,-0.9877,-0.1488,-0.0955,-0.9511,-0.2939,0.0,-0.9877,-0.1564,0.0,-0.9511,-0.309,0.0483,-0.9877,-0.1488,0.0955,-0.9511,-0.2939,0.0919,-0.9877,-0.1266,0.1816,-0.9511,-0.25,0.1266,-0.9877,-0.0919,0.25,-0.9511,-0.1816,0.1488,-0.9877,-0.0483,0.2939,-0.9511,-0.0955,0.1564,-0.9877,0.0,0.309,-0.9511,0.0,0.1488,-0.9877,0.0483,0.2939,-0.9511,0.0955,0.4318,-0.891,0.1403,0.3673,-0.891,0.2668,0.2668,-0.891,0.3673,0.1403,-0.891,0.4318,0.0,-0.891,0.454,-0.1403,-0.891,0.4318,-0.2668,-0.891,0.3673,-0.3673,-0.891,0.2668,-0.4318,-0.891,0.1403,-0.454,-0.891,0.0,-0.4318,-0.891,-0.1403,-0.3673,-0.891,-0.2668,-0.2668,-0.891,-0.3673,-0.1403,-0.891,-0.4318,0.0,-0.891,-0.454,0.1403,-0.891,-0.4318,0.2668,-0.891,-0.3673,0.3673,-0.891,-0.2668,0.4318,-0.891,-0.1403,0.454,-0.891,0.0,0.4318,-0.891,0.1403,0.559,-0.809,0.1816,0.4755,-0.809,0.3455,0.3455,-0.809,0.4755,0.1816,-0.809,0.559,0.0,-0.809,0.5878,-0.1816,-0.809,0.559,-0.3455,-0.809,0.4755,-0.4755,-0.809,0.3455,-0.559,-0.809,0.1816,-0.5878,-0.809,0.0,-0.559,-0.809,-0.1816,-0.4755,-0.809,-0.3455,-0.3455,-0.809,-0.4755,-0.1816,-0.809,-0.559,0.0,-0.809,-0.5878,0.1816,-0.809,-0.559,0.3455,-0.809,-0.4755,0.4755,-0.809,-0.3455,0.559,-0.809,-0.1816,0.5878,-0.809,0.0,0.559,-0.809,0.1816,0.6725,-0.7071,0.2185,0.5721,-0.7071,0.4156,0.4156,-0.7071,0.5721,0.2185,-0.7071,0.6725,0.0,-0.7071,0.7071,-0.2185,-0.7071,0.6725,-0.4156,-0.7071,0.5721,-0.5721,-0.7071,0.4156,-0.6725,-0.7071,0.2185,-0.7071,-0.7071,0.0,-0.6725,-0.7071,-0.2185,-0.5721,-0.7071,-0.4156,-0.4156,-0.7071,-0.5721,-0.2185,-0.7071,-0.6725,0.0,-0.7071,-0.7071,0.2185,-0.7071,-0.6725,0.4156,-0.7071,-0.5721,0.5721,-0.7071,-0.4156,0.6725,-0.7071,-0.2185,0.7071,-0.7071,0.0,0.6725,-0.7071,0.2185,0.7694,-0.5878,0.25,0.6545,-0.5878,0.4755,0.4755,-0.5878,0.6545,0.25,-0.5878,0.7694,0.0,-0.5878,0.809,-0.25,-0.5878,0.7694,-0.4755,-0.5878,0.6545,-0.6545,-0.5878,0.4755,-0.7694,-0.5878,0.25,-0.809,-0.5878,0.0,-0.7694,-0.5878,-0.25,-0.6545,-0.5878,-0.4755,-0.4755,-0.5878,-0.6545,-0.25,-0.5878,-0.7694,0.0,-0.5878,-0.809,0.25,-0.5878,-0.7694,0.4755,-0.5878,-0.6545,0.6545,-0.5878,-0.4755,0.7694,-0.5878,-0.25,0.809,-0.5878,0.0,0.7694,-0.5878,0.25,0.8474,-0.454,0.2753,0.7208,-0.454,0.5237,0.5237,-0.454,0.7208,0.2753,-0.454,0.8474,0.0,-0.454,0.891,-0.2753,-0.454,0.8474,-0.5237,-0.454,0.7208,-0.7208,-0.454,0.5237,-0.8474,-0.454,0.2753,-0.891,-0.454,0.0,-0.8474,-0.454,-0.2753,-0.7208,-0.454,-0.5237,-0.5237,-0.454,-0.7208,-0.2753,-0.454,-0.8474,0.0,-0.454,-0.891,0.2753,-0.454,-0.8474,0.5237,-0.454,-0.7208,0.7208,-0.454,-0.5237,0.8474,-0.454,-0.2753,0.891,-0.454,0.0,0.8474,-0.454,0.2753,0.9045,-0.309,0.2939,0.7694,-0.309,0.559,0.559,-0.309,0.7694,0.2939,-0.309,0.9045,0.0,-0.309,0.9511,-0.2939,-0.309,0.9045,-0.559,-0.309,0.7694,-0.7694,-0.309,0.559,-0.9045,-0.309,0.2939,-0.9511,-0.309,0.0,-0.9045,-0.309,-0.2939,-0.7694,-0.309,-0.559,-0.559,-0.309,-0.7694,-0.2939,-0.309,-0.9045,0.0,-0.309,-0.9511,0.2939,-0.309,-0.9045,0.559,-0.309,-0.7694,0.7694,-0.309,-0.559,0.9045,-0.309,-0.2939,0.9511,-0.309,0.0,0.9045,-0.309,0.2939,0.9393,-0.1564,0.3052,0.7991,-0.1564,0.5805,0.5805,-0.1564,0.7991,0.3052,-0.1564,0.9393,0.0,-0.1564,0.9877,-0.3052,-0.1564,0.9393,-0.5805,-0.1564,0.7991,-0.7991,-0.1564,0.5805,-0.9393,-0.1564,0.3052,-0.9877,-0.1564,0.0,-0.9393,-0.1564,-0.3052,-0.7991,-0.1564,-0.5805,-0.5805,-0.1564,-0.7991,-0.3052,-0.1564,-0.9393,0.0,-0.1564,-0.9877,0.3052,-0.1564,-0.9393,0.5805,-0.1564,-0.7991,0.7991,-0.1564,-0.5805,0.9393,-0.1564,-0.3052,0.9877,-0.1564,0.0,0.9393,-0.1564,0.3052,0.9511,0.0,0.309,0.809,0.0,0.5878,0.5878,0.0,0.809,0.309,0.0,0.9511,0.0,0.0,1.0,-0.309,0.0,0.9511,-0.5878,0.0,0.809,-0.809,0.0,0.5878,-0.9511,0.0,0.309,-1.0,0.0,0.0,-0.9511,0.0,-0.309,-0.809,0.0,-0.5878,-0.5878,0.0,-0.809,-0.309,0.0,-0.9511,0.0,0.0,-1.0,0.309,0.0,-0.9511,0.5878,0.0,-0.809,0.809,0.0,-0.5878,0.9511,0.0,-0.309,1.0,0.0,0.0,0.9511,0.0,0.309,0.9393,0.1564,0.3052,0.7991,0.1564,0.5805,0.5805,0.1564,0.7991,0.3052,0.1564,0.9393,0.0,0.1564,0.9877,-0.3052,0.1564,0.9393,-0.5805,0.1564,0.7991,-0.7991,0.1564,0.5805,-0.9393,0.1564,0.3052,-0.9877,0.1564,0.0,-0.9393,0.1564,-0.3052,-0.7991,0.1564,-0.5805,-0.5805,0.1564,-0.7991,-0.3052,0.1564,-0.9393,0.0,0.1564,-0.9877,0.3052,0.1564,-0.9393,0.5805,0.1564,-0.7991,0.7991,0.1564,-0.5805,0.9393,0.1564,-0.3052,0.9877,0.1564,0.0,0.9393,0.1564,0.3052,0.9045,0.309,0.2939,0.7694,0.309,0.559,0.559,0.309,0.7694,0.2939,0.309,0.9045,0.0,0.309,0.9511,-0.2939,0.309,0.9045,-0.559,0.309,0.7694,-0.7694,0.309,0.559,-0.9045,0.309,0.2939,-0.9511,0.309,0.0,-0.9045,0.309,-0.2939,-0.7694,0.309,-0.559,-0.559,0.309,-0.7694,-0.2939,0.309,-0.9045,0.0,0.309,-0.9511,0.2939,0.309,-0.9045,0.559,0.309,-0.7694,0.7694,0.309,-0.559,0.9045,0.309,-0.2939,0.9511,0.309,0.0,0.9045,0.309,0.2939,0.8474,0.454,0.2753,0.7208,0.454,0.5237,0.5237,0.454,0.7208,0.2753,0.454,0.8474,0.0,0.454,0.891,-0.2753,0.454,0.8474,-0.5237,0.454,0.7208,-0.7208,0.454,0.5237,-0.8474,0.454,0.2753,-0.891,0.454,0.0,-0.8474,0.454,-0.2753,-0.7208,0.454,-0.5237,-0.5237,0.454,-0.7208,-0.2753,0.454,-0.8474,0.0,0.454,-0.891,0.2753,0.454,-0.8474,0.5237,0.454,-0.7208,0.7208,0.454,-0.5237,0.8474,0.454,-0.2753,0.891,0.454,0.0,0.8474,0.454,0.2753,0.7694,0.5878,0.25,0.6545,0.5878,0.4755,0.4755,0.5878,0.6545,0.25,0.5878,0.7694,0.0,0.5878,0.809,-0.25,0.5878,0.7694,-0.4755,0.5878,0.6545,-0.6545,0.5878,0.4755,-0.7694,0.5878,0.25,-0.809,0.5878,0.0,-0.7694,0.5878,-0.25,-0.6545,0.5878,-0.4755,-0.4755,0.5878,-0.6545,-0.25,0.5878,-0.7694,0.0,0.5878,-0.809,0.25,0.5878,-0.7694,0.4755,0.5878,-0.6545,0.6545,0.5878,-0.4755,0.7694,0.5878,-0.25,0.809,0.5878,0.0,0.7694,0.5878,0.25,0.6725,0.7071,0.2185,0.5721,0.7071,0.4156,0.4156,0.7071,0.5721,0.2185,0.7071,0.6725,0.0,0.7071,0.7071,-0.2185,0.7071,0.6725,-0.4156,0.7071,0.5721,-0.5721,0.7071,0.4156,-0.6725,0.7071,0.2185,-0.7071,0.7071,0.0,-0.6725,0.7071,-0.2185,-0.5721,0.7071,-0.4156,-0.4156,0.7071,-0.5721,-0.2185,0.7071,-0.6725,0.0,0.7071,-0.7071,0.2185,0.7071,-0.6725,0.4156,0.7071,-0.5721,0.5721,0.7071,-0.4156,0.6725,0.7071,-0.2185,0.7071,0.7071,0.0,0.6725,0.7071,0.2185,0.559,0.809,0.1816,0.4755,0.809,0.3455,0.3455,0.809,0.4755,0.1816,0.809,0.559,0.0,0.809,0.5878,-0.1816,0.809,0.559,-0.3455,0.809,0.4755,-0.4755,0.809,0.3455,-0.559,0.809,0.1816,-0.5878,0.809,0.0,-0.559,0.809,-0.1816,-0.4755,0.809,-0.3455,-0.3455,0.809,-0.4755,-0.1816,0.809,-0.559,0.0,0.809,-0.5878,0.1816,0.809,-0.559,0.3455,0.809,-0.4755,0.4755,0.809,-0.3455,0.559,0.809,-0.1816,0.5878,0.809,0.0,0.559,0.809,0.1816,0.4318,0.891,0.1403,0.3673,0.891,0.2668,0.2668,0.891,0.3673,0.1403,0.891,0.4318,0.0,0.891,0.454,-0.1403,0.891,0.4318,-0.2668,0.891,0.3673,-0.3673,0.891,0.2668,-0.4318,0.891,0.1403,-0.454,0.891,0.0,-0.4318,0.891,-0.1403,-0.3673,0.891,-0.2668,-0.2668,0.891,-0.3673,-0.1403,0.891,-0.4318,0.0,0.891,-0.454,0.1403,0.891,-0.4318,0.2668,0.891,-0.3673,0.3673,0.891,-0.2668,0.4318,0.891,-0.1403,0.454,0.891,0.0,0.4318,0.891,0.1403,0.2939,0.9511,0.0955,0.25,0.9511,0.1816,0.1816,0.9511,0.25,0.0955,0.9511,0.2939,0.0,0.9511,0.309,-0.0955,0.9511,0.2939,-0.1816,0.9511,0.25,-0.25,0.9511,0.1816,-0.2939,0.9511,0.0955,-0.309,0.9511,0.0,-0.2939,0.9511,-0.0955,-0.25,0.9511,-0.1816,-0.1816,0.9511,-0.25,-0.0955,0.9511,-0.2939,0.0,0.9511,-0.309,0.0955,0.9511,-0.2939,0.1816,0.9511,-0.25,0.25,0.9511,-0.1816,0.2939,0.9511,-0.0955,0.309,0.9511,0.0,0.2939,0.9511,0.0955,0.1488,0.9877,0.0483,0.1266,0.9877,0.0919,0.0919,0.9877,0.1266,0.0483,0.9877,0.1488,0.0,0.9877,0.1564,-0.0483,0.9877,0.1488,-0.0919,0.9877,0.1266,-0.1266,0.9877,0.0919,-0.1488,0.9877,0.0483,-0.1564,0.9877,0.0,-0.1488,0.9877,-0.0483,-0.1266,0.9877,-0.0919,-0.0919,0.9877,-0.1266,-0.0483,0.9877,-0.1488,0.0,0.9877,-0.1564,0.0483,0.9877,-0.1488,0.0919,0.9877,-0.1266,0.1266,0.9877,-0.0919,0.1488,0.9877,-0.0483,0.1564,0.9877,0.0,0.1488,0.9877,0.0483,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0],"normals":[0.1906,-0.9797,0.0619,0.1621,-0.9797,0.1178,0.3173,-0.9427,0.1031,0.2699,-0.9427,0.1961,0.1178,-0.9797,0.1621,0.1961,-0.9427,0.2699,0.0619,-0.9797,0.1906,0.1031,-0.9427,0.3173,0.0,-0.9797,0.2004,0.0,-0.9427,0.3336,-0.0619,-0.9797,0.1906,-0.1031,-0.9427,0.3173,-0.1178,-0.9797,0.1621,-0.1961,-0.9427,0.2699,-0.1621,-0.9797,0.1178,-0.2699,-0.9427,0.1961,-0.1906,-0.9797,0.0619,-0.3173,-0.9427,0.1031,-0.2004,-0.9797,0.0,-0.3336,-0.9427,0.0,-0.1906,-0.9797,-0.0619,-0.3173,-0.9427,-0.1031,-0.1621,-0.9797,-0.1178,-0.2699,-0.9427,-0.1961,-0.1178,-0.9797,-0.1621,-0.1961,-0.9427,-0.2699,-0.0619,-0.9797,-0.1906,-0.1031,-0.9427,-0.3173,0.0,-0.9797,-0.2004,0.0,-0.9427,-0.3336,0.0619,-0.9797,-0.1906,0.1031,-0.9427,-0.3173,0.1178,-0.9797,-0.1621,0.1961,-0.9427,-0.2699,0.1621,-0.9797,-0.1178,0.2699,-0.9427,-0.1961,0.1906,-0.9797,-0.0619,0.3173,-0.9427,-0.1031,0.2004,-0.9797,0.0,0.3336,-0.9427,0.0,0.1906,-0.9797,0.0619,0.3173,-0.9427,0.1031,0.4477,-0.8823,0.1455,0.3808,-0.8823,0.2767,0.2767,-0.8823,0.3808,0.1455,-0.8823,0.4477,0.0,-0.8823,0.4708,-0.1455,-0.8823,0.4477,-0.2767,-0.8823,0.3808,-0.3808,-0.8823,0.2767,-0.4477,-0.8823,0.1455,-0.4708,-0.8823,0.0,-0.4477,-0.8823,-0.1455,-0.3808,-0.8823,-0.2767,-0.2767,-0.8823,-0.3808,-0.1455,-0.8823,-0.4477,0.0,-0.8823,-0.4708,0.1455,-0.8823,-0.4477,0.2767,-0.8823,-0.3808,0.3808,-0.8823,-0.2767,0.4477,-0.8823,-0.1455,0.4708,-0.8823,0.0,0.4477,-0.8823,0.1455,0.5703,-0.8003,0.1853,0.4851,-0.8003,0.3525,0.3525,-0.8003,0.4851,0.1853,-0.8003,0.5703,0.0,-0.8003,0.5997,-0.1853,-0.8003,0.5703,-0.3525,-0.8003,0.4851,-0.4851,-0.8003,0.3525,-0.5703,-0.8003,0.1853,-0.5997,-0.8003,0.0,-0.5703,-0.8003,-0.1853,-0.4851,-0.8003,-0.3525,-0.3525,-0.8003,-0.4851,-0.1853,-0.8003,-0.5703,0.0,-0.8003,-0.5997,0.1853,-0.8003,-0.5703,0.3525,-0.8003,-0.4851,0.4851,-0.8003,-0.3525,0.5703,-0.8003,-0.1853,0.5997,-0.8003,0.0,0.5703,-0.8003,0.1853,0.6803,-0.6988,0.221,0.5787,-0.6988,0.4205,0.4205,-0.6988,0.5787,0.221,-0.6988,0.6803,0.0,-0.6988,0.7153,-0.221,-0.6988,0.6803,-0.4205,-0.6988,0.5787,-0.5787,-0.6988,0.4205,-0.6803,-0.6988,0.221,-0.7153,-0.6988,0.0,-0.6803,-0.6988,-0.221,-0.5787,-0.6988,-0.4205,-0.4205,-0.6988,-0.5787,-0.221,-0.6988,-0.6803,0.0,-0.6988,-0.7153,0.221,-0.6988,-0.6803,0.4205,-0.6988,-0.5787,0.5787,-0.6988,-0.4205,0.6803,-0.6988,-0.221,0.7153,-0.6988,0.0,0.6803,-0.6988,0.221,0.7745,-0.5804,0.2516,0.6588,-0.5804,0.4787,0.4787,-0.5804,0.6588,0.2516,-0.5804,0.7745,0.0,-0.5804,0.8143,-0.2516,-0.5804,0.7745,-0.4787,-0.5804,0.6588,-0.6588,-0.5804,0.4787,-0.7745,-0.5804,0.2516,-0.8143,-0.5804,0.0,-0.7745,-0.5804,-0.2516,-0.6588,-0.5804,-0.4787,-0.4787,-0.5804,-0.6588,-0.2516,-0.5804,-0.7745,0.0,-0.5804,-0.8143,0.2516,-0.5804,-0.7745,0.4787,-0.5804,-0.6588,0.6588,-0.5804,-0.4787,0.7745,-0.5804,-0.2516,0.8143,-0.5804,0.0,0.7745,-0.5804,0.2516,0.8503,-0.448,0.2763,0.7233,-0.448,0.5255,0.5255,-0.448,0.7233,0.2763,-0.448,0.8503,0.0,-0.448,0.894,-0.2763,-0.448,0.8503,-0.5255,-0.448,0.7233,-0.7233,-0.448,0.5255,-0.8503,-0.448,0.2763,-0.894,-0.448,0.0,-0.8503,-0.448,-0.2763,-0.7233,-0.448,-0.5255,-0.5255,-0.448,-0.7233,-0.2763,-0.448,-0.8503,0.0,-0.448,-0.894,0.2763,-0.448,-0.8503,0.5255,-0.448,-0.7233,0.7233,-0.448,-0.5255,0.8503,-0.448,-0.2763,0.894,-0.448,0.0,0.8503,-0.448,0.2763,0.9058,-0.3048,0.2943,0.7705,-0.3048,0.5598,0.5598,-0.3048,0.7705,0.2943,-0.3048,0.9058,0.0,-0.3048,0.9524,-0.2943,-0.3048,0.9058,-0.5598,-0.3048,0.7705,-0.7705,-0.3048,0.5598,-0.9058,-0.3048,0.2943,-0.9524,-0.3048,0.0,-0.9058,-0.3048,-0.2943,-0.7705,-0.3048,-0.5598,-0.5598,-0.3048,-0.7705,-0.2943,-0.3048,-0.9058,0.0,-0.3048,-0.9524,0.2943,-0.3048,-0.9058,0.5598,-0.3048,-0.7705,0.7705,-0.3048,-0.5598,0.9058,-0.3048,-0.2943,0.9524,-0.3048,0.0,0.9058,-0.3048,0.2943,0.9397,-0.1542,0.3053,0.7993,-0.1542,0.5808,0.5808,-0.1542,0.7993,0.3053,-0.1542,0.9397,0.0,-0.1542,0.988,-0.3053,-0.1542,0.9397,-0.5808,-0.1542,0.7993,-0.7993,-0.1542,0.5808,-0.9397,-0.1542,0.3053,-0.988,-0.1542,0.0,-0.9397,-0.1542,-0.3053,-0.7993,-0.1542,-0.5808,-0.5808,-0.1542,-0.7993,-0.3053,-0.1542,-0.9397,0.0,-0.1542,-0.988,0.3053,-0.1542,-0.9397,0.5808,-0.1542,-0.7993,0.7993,-0.1542,-0.5808,0.9397,-0.1542,-0.3053,0.988,-0.1542,0.0,0.9397,-0.1542,0.3053,0.9511,0.0,0.309,0.809,0.0,0.5878,0.5878,0.0,0.809,0.309,0.0,0.9511,0.0,0.0,1.0,-0.309,0.0,0.9511,-0.5878,0.0,0.809,-0.809,0.0,0.5878,-0.9511,0.0,0.309,-1.0,0.0,0.0,-0.9511,0.0,-0.309,-0.809,0.0,-0.5878,-0.5878,0.0,-0.809,-0.309,0.0,-0.9511,0.0,0.0,-1.0,0.309,0.0,-0.9511,0.5878,0.0,-0.809,0.809,0.0,-0.5878,0.9511,0.0,-0.309,1.0,0.0,0.0,0.9511,0.0,0.309,0.9397,0.1542,0.3053,0.7993,0.1542,0.5808,0.5808,0.1542,0.7993,0.3053,0.1542,0.9397,0.0,0.1542,0.988,-0.3053,0.1542,0.9397,-0.5808,0.1542,0.7993,-0.7993,0.1542,0.5808,-0.9397,0.1542,0.3053,-0.988,0.1542,0.0,-0.9397,0.1542,-0.3053,-0.7993,0.1542,-0.5808,-0.5808,0.1542,-0.7993,-0.3053,0.1542,-0.9397,0.0,0.1542,-0.988,0.3053,0.1542,-0.9397,0.5808,0.1542,-0.7993,0.7993,0.1542,-0.5808,0.9397,0.1542,-0.3053,0.988,0.1542,0.0,0.9397,0.1542,0.3053,0.9058,0.3048,0.2943,0.7705,0.3048,0.5598,0.5598,0.3048,0.7705,0.2943,0.3048,0.9058,0.0,0.3048,0.9524,-0.2943,0.3048,0.9058,-0.5598,0.3048,0.7705,-0.7705,0.3048,0.5598,-0.9058,0.3048,0.2943,-0.9524,0.3048,0.0,-0.9058,0.3048,-0.2943,-0.7705,0.3048,-0.5598,-0.5598,0.3048,-0.7705,-0.2943,0.3048,-0.9058,0.0,0.3048,-0.9524,0.2943,0.3048,-0.9058,0.5598,0.3048,-0.7705,0.7705,0.3048,-0.5598,0.9058,0.3048,-0.2943,0.9524,0.3048,0.0,0.9058,0.3048,0.2943,0.8503,0.448,0.2763,0.7233,0.448,0.5255,0.5255,0.448,0.7233,0.2763,0.448,0.8503,0.0,0.448,0.894,-0.2763,0.448,0.8503,-0.5255,0.448,0.7233,-0.7233,0.448,0.5255,-0.8503,0.448,0.2763,-0.894,0.448,0.0,-0.8503,0.448,-0.2763,-0.7233,0.448,-0.5255,-0.5255,0.448,-0.7233,-0.2763,0.448,-0.8503,0.0,0.448,-0.894,0.2763,0.448,-0.8503,0.5255,0.448,-0.7233,0.7233,0.448,-0.5255,0.8503,0.448,-0.2763,0.894,0.448,0.0,0.8503,0.448,0.2763,0.7745,0.5804,0.2516,0.6588,0.5804,0.4787,0.4787,0.5804,0.6588,0.2516,0.5804,0.7745,0.0,0.5804,0.8143,-0.2516,0.5804,0.7745,-0.4787,0.5804,0.6588,-0.6588,0.5804,0.4787,-0.7745,0.5804,0.2516,-0.8143,0.5804,0.0,-0.7745,0.5804,-0.2516,-0.6588,0.5804,-0.4787,-0.4787,0.5804,-0.6588,-0.2516,0.5804,-0.7745,0.0,0.5804,-0.8143,0.2516,0.5804,-0.7745,0.4787,0.5804,-0.6588,0.6588,0.5804,-0.4787,0.7745,0.5804,-0.2516,0.8143,0.5804,0.0,0.7745,0.5804,0.2516,0.6803,0.6988,0.221,0.5787,0.6988,0.4205,0.4205,0.6988,0.5787,0.221,0.6988,0.6803,0.0,0.6988,0.7153,-0.221,0.6988,0.6803,-0.4205,0.6988,0.5787,-0.5787,0.6988,0.4205,-0.6803,0.6988,0.221,-0.7153,0.6988,0.0,-0.6803,0.6988,-0.221,-0.5787,0.6988,-0.4205,-0.4205,0.6988,-0.5787,-0.221,0.6988,-0.6803,0.0,0.6988,-0.7153,0.221,0.6988,-0.6803,0.4205,0.6988,-0.5787,0.5787,0.6988,-0.4205,0.6803,0.6988,-0.221,0.7153,0.6988,0.0,0.6803,0.6988,0.221,0.5703,0.8003,0.1853,0.4851,0.8003,0.3525,0.3525,0.8003,0.4851,0.1853,0.8003,0.5703,0.0,0.8003,0.5997,-0.1853,0.8003,0.5703,-0.3525,0.8003,0.4851,-0.4851,0.8003,0.3525,-0.5703,0.8003,0.1853,-0.5997,0.8003,0.0,-0.5703,0.8003,-0.1853,-0.4851,0.8003,-0.3525,-0.3525,0.8003,-0.4851,-0.1853,0.8003,-0.5703,0.0,0.8003,-0.5997,0.1853,0.8003,-0.5703,0.3525,0.8003,-0.4851,0.4851,0.8003,-0.3525,0.5703,0.8003,-0.1853,0.5997,0.8003,0.0,0.5703,0.8003,0.1853,0.4477,0.8823,0.1455,0.3808,0.8823,0.2767,0.2767,0.8823,0.3808,0.1455,0.8823,0.4477,0.0,0.8823,0.4708,-0.1455,0.8823,0.4477,-0.2767,0.8823,0.3808,-0.3808,0.8823,0.2767,-0.4477,0.8823,0.1455,-0.4708,0.8823,0.0,-0.4477,0.8823,-0.1455,-0.3808,0.8823,-0.2767,-0.2767,0.8823,-0.3808,-0.1455,0.8823,-0.4477,0.0,0.8823,-0.4708,0.1455,0.8823,-0.4477,0.2767,0.8823,-0.3808,0.3808,0.8823,-0.2767,0.4477,0.8823,-0.1455,0.4708,0.8823,0.0,0.4477,0.8823,0.1455,0.3173,0.9427,0.1031,0.2699,0.9427,0.1961,0.1961,0.9427,0.2699,0.1031,0.9427,0.3173,0.0,0.9427,0.3336,-0.1031,0.9427,0.3173,-0.1961,0.9427,0.2699,-0.2699,0.9427,0.1961,-0.3173,0.9427,0.1031,-0.3336,0.9427,0.0,-0.3173,0.9427,-0.1031,-0.2699,0.9427,-0.1961,-0.1961,0.9427,-0.2699,-0.1031,0.9427,-0.3173,0.0,0.9427,-0.3336,0.1031,0.9427,-0.3173,0.1961,0.9427,-0.2699,0.2699,0.9427,-0.1961,0.3173,0.9427,-0.1031,0.3336,0.9427,0.0,0.3173,0.9427,0.1031,0.1906,0.9797,0.0619,0.1621,0.9797,0.1178,0.1178,0.9797,0.1621,0.0619,0.9797,0.1906,0.0,0.9797,0.2004,-0.0619,0.9797,0.1906,-0.1178,0.9797,0.1621,-0.1621,0.9797,0.1178,-0.1906,0.9797,0.0619,-0.2004,0.9797,0.0,-0.1906,0.9797,-0.0619,-0.1621,0.9797,-0.1178,-0.1178,0.9797,-0.1621,-0.0619,0.9797,-0.1906,0.0,0.9797,-0.2004,0.0619,0.9797,-0.1906,0.1178,0.9797,-0.1621,0.1621,0.9797,-0.1178,0.1906,0.9797,-0.0619,0.2004,0.9797,0.0,0.1906,0.9797,0.0619,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0],"tangents":[-0.4482,-0.0307,0.8934,-1.0,-0.5629,0.0062,0.8265,-1.0,-0.438,-0.0493,0.8976,-1.0,-0.5878,0.0,0.809,-1.0,-0.7908,0.0062,0.6121,-1.0,-0.809,0.0,0.5878,-1.0,-0.9412,0.0062,0.3378,-1.0,-0.9511,0.0,0.309,-1.0,-0.9995,0.0062,0.0304,-1.0,-1.0,0.0,0.0,-1.0,-0.96,0.0062,-0.28,-1.0,-0.9511,0.0,-0.309,-1.0,-0.8265,0.0062,-0.5629,-1.0,-0.809,0.0,-0.5878,-1.0,-0.6121,0.0062,-0.7908,-1.0,-0.5878,0.0,-0.809,-1.0,-0.3378,0.0062,-0.9412,-1.0,-0.309,0.0,-0.9511,-1.0,-0.0304,0.0062,-0.9995,-1.0,0.0,0.0,-1.0,-1.0,0.28,0.0062,-0.96,-1.0,0.309,0.0,-0.9511,-1.0,0.5629,0.0062,-0.8265,-1.0,0.5878,0.0,-0.809,-1.0,0.7908,0.0062,-0.6121,-1.0,0.809,0.0,-0.5878,-1.0,0.9412,0.0062,-0.3378,-1.0,0.9511,0.0,-0.309,-1.0,0.9995,0.0062,-0.0304,-1.0,1.0,0.0,0.0,-1.0,0.96,0.0062,0.28,-1.0,0.9511,0.0,0.309,-1.0,0.8265,0.0062,0.5629,-1.0,0.809,0.0,0.5878,-1.0,0.6121,0.0062,0.7908,-1.0,0.5878,0.0,0.809,-1.0,0.3378,0.0062,0.9412,-1.0,0.309,0.0,0.9511,-1.0,0.0304,0.0062,0.9995,-1.0,0.0,0.0,1.0,-1.0,-0.1625,0.0307,0.9862,-1.0,-0.1732,0.0493,0.9836,-1.0,-0.4222,-0.0651,0.9042,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.1899,0.0651,0.9796,-1.0,-0.4023,-0.0754,0.9124,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.2109,0.0754,0.9746,-1.0,-0.3802,-0.0787,0.9215,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.234,0.0787,0.969,-1.0,-0.3582,-0.0745,0.9306,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.2572,0.0745,0.9635,-1.0,-0.3384,-0.0633,0.9389,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.2781,0.0633,0.9585,-1.0,-0.3226,-0.0459,0.9454,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.2947,0.0459,0.9545,-1.0,-0.3125,-0.0241,0.9496,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.3053,0.0241,0.9519,-1.0,-0.309,0.0,0.9511,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.309,0.0,0.9511,-1.0,-0.3125,0.0241,0.9496,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.3053,-0.0241,0.9519,-1.0,-0.3226,0.0459,0.9454,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.2947,-0.0459,0.9545,-1.0,-0.3384,0.0633,0.9389,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.2781,-0.0633,0.9585,-1.0,-0.3582,0.0745,0.9306,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.2572,-0.0745,0.9635,-1.0,-0.3802,0.0787,0.9215,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.234,-0.0787,0.969,-1.0,-0.4023,0.0754,0.9124,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.2109,-0.0754,0.9746,-1.0,-0.4222,0.0651,0.9042,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.1899,-0.0651,0.9796,-1.0,-0.438,0.0493,0.8976,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.1732,-0.0493,0.9836,-1.0,-0.4482,0.0307,0.8934,-1.0,-0.6121,0.0062,0.7908,-1.0,-0.8265,0.0062,0.5629,-1.0,-0.96,0.0062,0.28,-1.0,-0.9995,0.0062,-0.0304,-1.0,-0.9412,0.0062,-0.3378,-1.0,-0.7908,0.0062,-0.6121,-1.0,-0.5629,0.0062,-0.8265,-1.0,-0.28,0.0062,-0.96,-1.0,0.0304,0.0062,-0.9995,-1.0,0.3378,0.0062,-0.9412,-1.0,0.6121,0.0062,-0.7908,-1.0,0.8265,0.0062,-0.5629,-1.0,0.96,0.0062,-0.28,-1.0,0.9995,0.0062,0.0304,-1.0,0.9412,0.0062,0.3378,-1.0,0.7908,0.0062,0.6121,-1.0,0.5629,0.0062,0.8265,-1.0,0.28,0.0062,0.96,-1.0,-0.0304,0.0062,0.9995,-1.0,-0.1625,-0.0307,0.9862,-1.0,-0.454,0.0,0.891,-1.0,-0.7071,0.0,0.7071,-1.0,-0.891,0.0,0.454,-1.0,-0.9877,0.0,0.1564,-1.0,-0.9877,0.0,-0.1564,-1.0,-0.891,0.0,-0.454,-1.0,-0.7071,0.0,-0.7071,-1.0,-0.454,0.0,-0.891,-1.0,-0.1564,0.0,-0.9877,-1.0,0.1564,0.0,-0.9877,-1.0,0.454,0.0,-0.891,-1.0,0.7071,0.0,-0.7071,-1.0,0.891,0.0,-0.454,-1.0,0.9877,0.0,-0.1564,-1.0,0.9877,0.0,0.1564,-1.0,0.891,0.0,0.454,-1.0,0.7071,0.0,0.7071,-1.0,0.454,0.0,0.891,-1.0,0.1564,0.0,0.9877,-1.0,-0.1564,0.0,0.9877,-1.0,-0.454,0.0,0.891,-1.0,-0.7071,0.0,0.7071,-1.0,-0.891,0.0,0.454,-1.0,-0.9877,0.0,0.1564,-1.0,-0.9877,0.0,-0.1564,-1.0,-0.891,0.0,-0.454,-1.0,-0.7071,0.0,-0.7071,-1.0,-0.454,0.0,-0.891,-1.0,-0.1564,0.0,-0.9877,-1.0,0.1564,0.0,-0.9877,-1.0,0.454,0.0,-0.891,-1.0,0.7071,0.0,-0.7071,-1.0,0.891,0.0,-0.454,-1.0,0.9877,0.0,-0.1564,-1.0,0.9877,0.0,0.1564,-1.0,0.891,0.0,0.454,-1.0,0.7071,0.0,0.7071,-1.0,0.454,0.0,0.891,-1.0,0.1564,0.0,0.9877,-1.0,-0.1564,0.0,0.9877,-1.0],"uvs":[0.0,0.05,0.05,0.05,0.0,0.1,0.05,0.1,0.1,0.05,0.1,0.1,0.15,0.05,0.15,0.1,0.2,0.05,0.2,0.1,0.25,0.05,0.25,0.1,0.3,0.05,0.3,0.1,0.35,0.05,0.35,0.1,0.4,0.05,0.4,0.1,0.45,0.05,0.45,0.1,0.5,0.05,0.5,0.1,0.55,0.05,0.55,0.1,0.6,0.05,0.6,0.1,0.65,0.05,0.65,0.1,0.7,0.05,0.7,0.1,0.75,0.05,0.75,0.1,0.8,0.05,0.8,0.1,0.85,0.05,0.85,0.1,0.9,0.05,0.9,0.1,0.95,0.05,0.95,0.1,1.0,0.05,1.0,0.1,0.0,0.15,0.05,0.15,0.1,0.15,0.15,0.15,0.2,0.15,0.25,0.15,0.3,0.15,0.35,0.15,0.4,0.15,0.45,0.15,0.5,0.15,0.55,0.15,0.6,0.15,0.65,0.15,0.7,0.15,0.75,0.15,0.8,0.15,0.85,0.15,0.9,0.15,0.95,0.15,1.0,0.15,0.0,0.2,0.05,0.2,0.1,0.2,0.15,0.2,0.2,0.2,0.25,0.2,0.3,0.2,0.35,0.2,0.4,0.2,0.45,0.2,0.5,0.2,0.55,0.2,0.6,0.2,0.65,0.2,0.7,0.2,0.75,0.2,0.8,0.2,0.85,0.2,0.9,0.2,0.95,0.2,1.0,0.2,0.0,0.25,0.05,0.25,0.1,0.25,0.15,0.25,0.2,0.25,0.25,0.25,0.3,0.25,0.35,0.25,0.4,0.25,0.45,0.25,0.5,0.25,0.55,0.25,0.6,0.25,0.65,0.25,0.7,0.25,0.75,0.25,0.8,0.25,0.85,0.25,0.9,0.25,0.95,0.25,1.0,0.25,0.0,0.3,0.05,0.3,0.1,0.3,0.15,0.3,0.2,0.3,0.25,0.3,0.3,0.3,0.35,0.3,0.4,0.3,0.45,0.3,0.5,0.3,0.55,0.3,0.6,0.3,0.65,0.3,0.7,0.3,0.75,0.3,0.8,0.3,0.85,0.3,0.9,0.3,0.95,0.3,1.0,0.3,0.0,0.35,0.05,0.35,0.1,0.35,0.15,0.35,0.2,0.35,0.25,0.35,0.3,0.35,0.35,0.35,0.4,0.35,0.45,0.35,0.5,0.35,0.55,0.35,0.6,0.35,0.65,0.35,0.7,0.35,0.75,0.35,0.8,0.35,0.85,0.35,0.9,0.35,0.95,0.35,1.0,0.35,0.0,0.4,0.05,0.4,0.1,0.4,0.15,0.4,0.2,0.4,0.25,0.4,0.3,0.4,0.35,0.4,0.4,0.4,0.45,0.4,0.5,0.4,0.55,0.4,0.6,0.4,0.65,0.4,0.7,0.4,0.75,0.4,0.8,0.4,0.85,0.4,0.9,0.4,0.95,0.4,1.0,0.4,0.0,0.45,0.05,0.45,0.1,0.45,0.15,0.45,0.2,0.45,0.25,0.45,0.3,0.45,0.35,0.45,0.4,0.45,0.45,0.45,0.5,0.45,0.55,0.45,0.6,0.45,0.65,0.45,0.7,0.45,0.75,0.45,0.8,0.45,0.85,0.45,0.9,0.45,0.95,0.45,1.0,0.45,0.0,0.5,0.05,0.5,0.1,0.5,0.15,0.5,0.2,0.5,0.25,0.5,0.3,0.5,0.35,0.5,0.4,0.5,0.45,0.5,0.5,0.5,0.55,0.5,0.6,0.5,0.65,0.5,0.7,0.5,0.75,0.5,0.8,0.5,0.85,0.5,0.9,0.5,0.95,0.5,1.0,0.5,0.0,0.55,0.05,0.55,0.1,0.55,0.15,0.55,0.2,0.55,0.25,0.55,0.3,0.55,0.35,0.55,0.4,0.55,0.45,0.55,0.5,0.55,0.55,0.55,0.6,0.55,0.65,0.55,0.7,0.55,0.75,0.55,0.8,0.55,0.85,0.55,0.9,0.55,0.95,0.55,1.0,0.55,0.0,0.6,0.05,0.6,0.1,0.6,0.15,0.6,0.2,0.6,0.25,0.6,0.3,0.6,0.35,0.6,0.4,0.6,0.45,0.6,0.5,0.6,0.55,0.6,0.6,0.6,0.65,0.6,0.7,0.6,0.75,0.6,0.8,0.6,0.85,0.6,0.9,0.6,0.95,0.6,1.0,0.6,0.0,0.65,0.05,0.65,0.1,0.65,0.15,0.65,0.2,0.65,0.25,0.65,0.3,0.65,0.35,0.65,0.4,0.65,0.45,0.65,0.5,0.65,0.55,0.65,0.6,0.65,0.65,0.65,0.7,0.65,0.75,0.65,0.8,0.65,0.85,0.65,0.9,0.65,0.95,0.65,1.0,0.65,0.0,0.7,0.05,0.7,0.1,0.7,0.15,0.7,0.2,0.7,0.25,0.7,0.3,0.7,0.35,0.7,0.4,0.7,0.45,0.7,0.5,0.7,0.55,0.7,0.6,0.7,0.65,0.7,0.7,0.7,0.75,0.7,0.8,0.7,0.85,0.7,0.9,0.7,0.95,0.7,1.0,0.7,0.0,0.75,0.05,0.75,0.1,0.75,0.15,0.75,0.2,0.75,0.25,0.75,0.3,0.75,0.35,0.75,0.4,0.75,0.45,0.75,0.5,0.75,0.55,0.75,0.6,0.75,0.65,0.75,0.7,0.75,0.75,0.75,0.8,0.75,0.85,0.75,0.9,0.75,0.95,0.75,1.0,0.75,0.0,0.8,0.05,0.8,0.1,0.8,0.15,0.8,0.2,0.8,0.25,0.8,0.3,0.8,0.35,0.8,0.4,0.8,0.45,0.8,0.5,0.8,0.55,0.8,0.6,0.8,0.65,0.8,0.7,0.8,0.75,0.8,0.8,0.8,0.85,0.8,0.9,0.8,0.95,0.8,1.0,0.8,0.0,0.85,0.05,0.85,0.1,0.85,0.15,0.85,0.2,0.85,0.25,0.85,0.3,0.85,0.35,0.85,0.4,0.85,0.45,0.85,0.5,0.85,0.55,0.85,0.6,0.85,0.65,0.85,0.7,0.85,0.75,0.85,0.8,0.85,0.85,0.85,0.9,0.85,0.95,0.85,1.0,0.85,0.0,0.9,0.05,0.9,0.1,0.9,0.15,0.9,0.2,0.9,0.25,0.9,0.3,0.9,0.35,0.9,0.4,0.9,0.45,0.9,0.5,0.9,0.55,0.9,0.6,0.9,0.65,0.9,0.7,0.9,0.75,0.9,0.8,0.9,0.85,0.9,0.9,0.9,0.95,0.9,1.0,0.9,0.0,0.95,0.05,0.95,0.1,0.95,0.15,0.95,0.2,0.95,0.25,0.95,0.3,0.95,0.35,0.95,0.4,0.95,0.45,0.95,0.5,0.95,0.55,0.95,0.6,0.95,0.65,0.95,0.7,0.95,0.75,0.95,0.8,0.95,0.85,0.95,0.9,0.95,0.95,0.95,1.0,0.95,0.025,0.0,0.075,0.0,0.125,0.0,0.175,0.0,0.225,0.0,0.275,0.0,0.325,0.0,0.375,0.0,0.425,0.0,0.475,0.0,0.525,0.0,0.575,0.0,0.625,0.0,0.675,0.0,0.725,0.0,0.775,0.0,0.825,0.0,0.875,0.0,0.925,0.0,0.975,0.0,0.025,1.0,0.075,1.0,0.125,1.0,0.175,1.0,0.225,1.0,0.275,1.0,0.325,1.0,0.375,1.0,0.425,1.0,0.475,1.0,0.525,1.0,0.575,1.0,0.625,1.0,0.675,1.0,0.725,1.0,0.775,1.0,0.825,1.0,0.875,1.0,0.925,1.0,0.975,1.0],"uvs2":null,"colors":null,"hasVertexAlpha":false,"matricesIndices":null,"matricesWeights":null,"matricesIndicesExtra":null,"matricesWeightsExtra":null,"indices":[0,1,2,2,1,3,1,4,3,3,4,5,4,6,5,5,6,7,6,8,7,7,8,9,8,10,9,9,10,11,10,12,11,11,12,13,12,14,13,13,14,15,14,16,15,15,16,17,16,18,17,17,18,19,18,20,19,19,20,21,20,22,21,21,22,23,22,24,23,23,24,25,24,26,25,25,26,27,26,28,27,27,28,29,28,30,29,29,30,31,30,32,31,31,32,33,32,34,33,33,34,35,34,36,35,35,36,37,36,38,37,37,38,39,38,40,39,39,40,41,2,3,42,42,3,43,3,5,43,43,5,44,5,7,44,44,7,45,7,9,45,45,9,46,9,11,46,46,11,47,11,13,47,47,13,48,13,15,48,48,15,49,15,17,49,49,17,50,17,19,50,50,19,51,19,21,51,51,21,52,21,23,52,52,23,53,23,25,53,53,25,54,25,27,54,54,27,55,27,29,55,55,29,56,29,31,56,56,31,57,31,33,57,57,33,58,33,35,58,58,35,59,35,37,59,59,37,60,37,39,60,60,39,61,39,41,61,61,41,62,42,43,63,63,43,64,43,44,64,64,44,65,44,45,65,65,45,66,45,46,66,66,46,67,46,47,67,67,47,68,47,48,68,68,48,69,48,49,69,69,49,70,49,50,70,70,50,71,50,51,71,71,51,72,51,52,72,72,52,73,52,53,73,73,53,74,53,54,74,74,54,75,54,55,75,75,55,76,55,56,76,76,56,77,56,57,77,77,57,78,57,58,78,78,58,79,58,59,79,79,59,80,59,60,80,80,60,81,60,61,81,81,61,82,61,62,82,82,62,83,63,64,84,84,64,85,64,65,85,85,65,86,65,66,86,86,66,87,66,67,87,87,67,88,67,68,88,88,68,89,68,69,89,89,69,90,69,70,90,90,70,91,70,71,91,91,71,92,71,72,92,92,72,93,72,73,93,93,73,94,73,74,94,94,74,95,74,75,95,95,75,96,75,76,96,96,76,97,76,77,97,97,77,98,77,78,98,98,78,99,78,79,99,99,79,100,79,80,100,100,80,101,80,81,101,101,81,102,81,82,102,102,82,103,82,83,103,103,83,104,84,85,105,105,85,106,85,86,106,106,86,107,86,87,107,107,87,108,87,88,108,108,88,109,88,89,109,109,89,110,89,90,110,110,90,111,90,91,111,111,91,112,91,92,112,112,92,113,92,93,113,113,93,114,93,94,114,114,94,115,94,95,115,115,95,116,95,96,116,116,96,117,96,97,117,117,97,118,97,98,118,118,98,119,98,99,119,119,99,120,99,100,120,120,100,121,100,101,121,121,101,122,101,102,122,122,102,123,102,103,123,123,103,124,103,104,124,124,104,125,105,106,126,126,106,127,106,107,127,127,107,128,107,108,128,128,108,129,108,109,129,129,109,130,109,110,130,130,110,131,110,111,131,131,111,132,111,112,132,132,112,133,112,113,133,133,113,134,113,114,134,134,114,135,114,115,135,135,115,136,115,116,136,136,116,137,116,117,137,137,117,138,117,118,138,138,118,139,118,119,139,139,119,140,119,120,140,140,120,141,120,121,141,141,121,142,121,122,142,142,122,143,122,123,143,143,123,144,123,124,144,144,124,145,124,125,145,145,125,146,126,127,147,147,127,148,127,128,148,148,128,149,128,129,149,149,129,150,129,130,150,150,130,151,130,131,151,151,131,152,131,132,152,152,132,153,132,133,153,153,133,154,133,134,154,154,134,155,134,135,155,155,135,156,135,136,156,156,136,157,136,137,157,157,137,158,137,138,158,158,138,159,138,139,159,159,139,160,139,140,160,160,140,161,140,141,161,161,141,162,141,142,162,162,142,163,142,143,163,163,143,164,143,144,164,164,144,165,144,145,165,165,145,166,145,146,166,166,146,167,147,148,168,168,148,169,148,149,169,169,149,170,149,150,170,170,150,171,150,151,171,171,151,172,151,152,172,172,152,173,152,153,173,173,153,174,153,154,174,174,154,175,154,155,175,175,155,176,155,156,176,176,156,177,156,157,177,177,157,178,157,158,178,178,158,179,158,159,179,179,159,180,159,160,180,180,160,181,160,161,181,181,161,182,161,162,182,182,162,183,162,163,183,183,163,184,163,164,184,184,164,185,164,165,185,185,165,186,165,166,186,186,166,187,166,167,187,187,167,188,168,169,189,189,169,190,169,170,190,190,170,191,170,171,191,191,171,192,171,172,192,192,172,193,172,173,193,193,173,194,173,174,194,194,174,195,174,175,195,195,175,196,175,176,196,196,176,197,176,177,197,197,177,198,177,178,198,198,178,199,178,179,199,199,179,200,179,180,200,200,180,201,180,181,201,201,181,202,181,182,202,202,182,203,182,183,203,203,183,204,183,184,204,204,184,205,184,185,205,205,185,206,185,186,206,206,186,207,186,187,207,207,187,208,187,188,208,208,188,209,189,190,210,210,190,211,190,191,211,211,191,212,191,192,212,212,192,213,192,193,213,213,193,214,193,194,214,214,194,215,194,195,215,215,195,216,195,196,216,216,196,217,196,197,217,217,197,218,197,198,218,218,198,219,198,199,219,219,199,220,199,200,220,220,200,221,200,201,221,221,201,222,201,202,222,222,202,223,202,203,223,223,203,224,203,204,224,224,204,225,204,205,225,225,205,226,205,206,226,226,206,227,206,207,227,227,207,228,207,208,228,228,208,229,208,209,229,229,209,230,210,211,231,231,211,232,211,212,232,232,212,233,212,213,233,233,213,234,213,214,234,234,214,235,214,215,235,235,215,236,215,216,236,236,216,237,216,217,237,237,217,238,217,218,238,238,218,239,218,219,239,239,219,240,219,220,240,240,220,241,220,221,241,241,221,242,221,222,242,242,222,243,222,223,243,243,223,244,223,224,244,244,224,245,224,225,245,245,225,246,225,226,246,246,226,247,226,227,247,247,227,248,227,228,248,248,228,249,228,229,249,249,229,250,229,230,250,250,230,251,231,232,252,252,232,253,232,233,253,253,233,254,233,234,254,254,234,255,234,235,255,255,235,256,235,236,256,256,236,257,236,237,257,257,237,258,237,238,258,258,238,259,238,239,259,259,239,260,239,240,260,260,240,261,240,241,261,261,241,262,241,242,262,262,242,263,242,243,263,263,243,264,243,244,264,264,244,265,244,245,265,265,245,266,245,246,266,266,246,267,246,247,267,267,247,268,247,248,268,268,248,269,248,249,269,269,249,270,249,250,270,270,250,271,250,251,271,271,251,272,252,253,273,273,253,274,253,254,274,274,254,275,254,255,275,275,255,276,255,256,276,276,256,277,256,257,277,277,257,278,257,258,278,278,258,279,258,259,279,279,259,280,259,260,280,280,260,281,260,261,281,281,261,282,261,262,282,282,262,283,262,263,283,283,263,284,263,264,284,284,264,285,264,265,285,285,265,286,265,266,286,286,266,287,266,267,287,287,267,288,267,268,288,288,268,289,268,269,289,289,269,290,269,270,290,290,270,291,270,271,291,291,271,292,271,272,292,292,272,293,273,274,294,294,274,295,274,275,295,295,275,296,275,276,296,296,276,297,276,277,297,297,277,298,277,278,298,298,278,299,278,279,299,299,279,300,279,280,300,300,280,301,280,281,301,301,281,302,281,282,302,302,282,303,282,283,303,303,283,304,283,284,304,304,284,305,284,285,305,305,285,306,285,286,306,306,286,307,286,287,307,307,287,308,287,288,308,308,288,309,288,289,309,309,289,310,289,290,310,310,290,311,290,291,311,311,291,312,291,292,312,312,292,313,292,293,313,313,293,314,294,295,315,315,295,316,295,296,316,316,296,317,296,297,317,317,297,318,297,298,318,318,298,319,298,299,319,319,299,320,299,300,320,320,300,321,300,301,321,321,301,322,301,302,322,322,302,323,302,303,323,323,303,324,303,304,324,324,304,325,304,305,325,325,305,326,305,306,326,326,306,327,306,307,327,327,307,328,307,308,328,328,308,329,308,309,329,329,309,330,309,310,330,330,310,331,310,311,331,331,311,332,311,312,332,332,312,333,312,313,333,333,313,334,313,314,334,334,314,335,315,316,336,336,316,337,316,317,337,337,317,338,317,318,338,338,318,339,318,319,339,339,319,340,319,320,340,340,320,341,320,321,341,341,321,342,321,322,342,342,322,343,322,323,343,343,323,344,323,324,344,344,324,345,324,325,345,345,325,346,325,326,346,346,326,347,326,327,347,347,327,348,327,328,348,348,328,349,328,329,349,349,329,350,329,330,350,350,330,351,330,331,351,351,331,352,331,332,352,352,332,353,332,333,353,353,333,354,333,334,354,354,334,355,334,335,355,355,335,356,336,337,357,357,337,358,337,338,358,358,338,359,338,339,359,359,339,360,339,340,360,360,340,361,340,341,361,361,341,362,341,342,362,362,342,363,342,343,363,363,343,364,343,344,364,364,344,365,344,345,365,365,345,366,345,346,366,366,346,367,346,347,367,367,347,368,347,348,368,368,348,369,348,349,369,369,349,370,349,350,370,370,350,371,350,351,371,371,351,372,351,352,372,372,352,373,352,353,373,373,353,374,353,354,374,374,354,375,354,355,375,375,355,376,355,356,376,376,356,377,357,358,378,378,358,379,358,359,379,379,359,380,359,360,380,380,360,381,360,361,381,381,361,382,361,362,382,382,362,383,362,363,383,383,363,384,363,364,384,384,364,385,364,365,385,385,365,386,365,366,386,386,366,387,366,367,387,387,367,388,367,368,388,388,368,389,368,369,389,389,369,390,369,370,390,390,370,391,370,371,391,391,371,392,371,372,392,392,372,393,372,373,393,393,373,394,373,374,394,394,374,395,374,375,395,395,375,396,375,376,396,396,376,397,376,377,397,397,377,398,1,0,399,4,1,400,6,4,401,8,6,402,10,8,403,12,10,404,14,12,405,16,14,406,18,16,407,20,18,408,22,20,409,24,22,410,26,24,411,28,26,412,30,28,413,32,30,414,34,32,415,36,34,416,38,36,417,40,38,418,378,379,419,379,380,420,380,381,421,381,382,422,382,383,423,383,384,424,384,385,425,385,386,426,386,387,427,387,388,428,388,389,429,389,390,430,390,391,431,391,392,432,392,393,433,393,394,434,394,395,435,395,396,436,396,397,437,397,398,438],"receiveShadows":false,"infiniteDistance":false,"billboardMode":0,"visibility":1.0,"subMeshes":[{"materialIndex":0,"verticesStart":0,"verticesCount":439,"indexStart":0,"indexCount":2280}],"instances":null,"skeletonId":-1,"numBoneInfluencers":4,"applyFog":false,"lodMeshIds":null,"lodDistances":null,"lodCoverages":null,"rotation":null,"scaling":[1.0,1.0,1.0],"rotationQuaternion":[0.0,0.1736,0.0,0.9848],"actions":null,"checkCollisions":false,"pickable":true,"showBoundingBox":false,"showSubMeshesBoundingBox":false,"alphaIndex":0,"physicsImpostor":0,"physicsMass":0.0,"physicsFriction":0.0,"physicsRestitution":0.0,"name":"pSphere2","id":"AAE56DAE-40BF-882A-5CE8-0AB477E46CDB","parentId":null,"position":[3.0,0.0,0.0],"animations":[],"autoAnimate":true,"autoAnimateFrom":1,"autoAnimateTo":200,"autoAnimateLoop":true,"metadata":{}},{"materialId":"79CDF1A6-4409-889B-46A9-43A586C10D94","isEnabled":true,"isVisible":true,"positions":[0.1488,-0.9877,0.0483,0.1266,-0.9877,0.0919,0.2939,-0.9511,0.0955,0.25,-0.9511,0.1816,0.0919,-0.9877,0.1266,0.1816,-0.9511,0.25,0.0483,-0.9877,0.1488,0.0955,-0.9511,0.2939,0.0,-0.9877,0.1564,0.0,-0.9511,0.309,-0.0483,-0.9877,0.1488,-0.0955,-0.9511,0.2939,-0.0919,-0.9877,0.1266,-0.1816,-0.9511,0.25,-0.1266,-0.9877,0.0919,-0.25,-0.9511,0.1816,-0.1488,-0.9877,0.0483,-0.2939,-0.9511,0.0955,-0.1564,-0.9877,0.0,-0.309,-0.9511,0.0,-0.1488,-0.9877,-0.0483,-0.2939,-0.9511,-0.0955,-0.1266,-0.9877,-0.0919,-0.25,-0.9511,-0.1816,-0.0919,-0.9877,-0.1266,-0.1816,-0.9511,-0.25,-0.0483,-0.9877,-0.1488,-0.0955,-0.9511,-0.2939,0.0,-0.9877,-0.1564,0.0,-0.9511,-0.309,0.0483,-0.9877,-0.1488,0.0955,-0.9511,-0.2939,0.0919,-0.9877,-0.1266,0.1816,-0.9511,-0.25,0.1266,-0.9877,-0.0919,0.25,-0.9511,-0.1816,0.1488,-0.9877,-0.0483,0.2939,-0.9511,-0.0955,0.1564,-0.9877,0.0,0.309,-0.9511,0.0,0.1488,-0.9877,0.0483,0.2939,-0.9511,0.0955,0.4318,-0.891,0.1403,0.3673,-0.891,0.2668,0.2668,-0.891,0.3673,0.1403,-0.891,0.4318,0.0,-0.891,0.454,-0.1403,-0.891,0.4318,-0.2668,-0.891,0.3673,-0.3673,-0.891,0.2668,-0.4318,-0.891,0.1403,-0.454,-0.891,0.0,-0.4318,-0.891,-0.1403,-0.3673,-0.891,-0.2668,-0.2668,-0.891,-0.3673,-0.1403,-0.891,-0.4318,0.0,-0.891,-0.454,0.1403,-0.891,-0.4318,0.2668,-0.891,-0.3673,0.3673,-0.891,-0.2668,0.4318,-0.891,-0.1403,0.454,-0.891,0.0,0.4318,-0.891,0.1403,0.559,-0.809,0.1816,0.4755,-0.809,0.3455,0.3455,-0.809,0.4755,0.1816,-0.809,0.559,0.0,-0.809,0.5878,-0.1816,-0.809,0.559,-0.3455,-0.809,0.4755,-0.4755,-0.809,0.3455,-0.559,-0.809,0.1816,-0.5878,-0.809,0.0,-0.559,-0.809,-0.1816,-0.4755,-0.809,-0.3455,-0.3455,-0.809,-0.4755,-0.1816,-0.809,-0.559,0.0,-0.809,-0.5878,0.1816,-0.809,-0.559,0.3455,-0.809,-0.4755,0.4755,-0.809,-0.3455,0.559,-0.809,-0.1816,0.5878,-0.809,0.0,0.559,-0.809,0.1816,0.6725,-0.7071,0.2185,0.5721,-0.7071,0.4156,0.4156,-0.7071,0.5721,0.2185,-0.7071,0.6725,0.0,-0.7071,0.7071,-0.2185,-0.7071,0.6725,-0.4156,-0.7071,0.5721,-0.5721,-0.7071,0.4156,-0.6725,-0.7071,0.2185,-0.7071,-0.7071,0.0,-0.6725,-0.7071,-0.2185,-0.5721,-0.7071,-0.4156,-0.4156,-0.7071,-0.5721,-0.2185,-0.7071,-0.6725,0.0,-0.7071,-0.7071,0.2185,-0.7071,-0.6725,0.4156,-0.7071,-0.5721,0.5721,-0.7071,-0.4156,0.6725,-0.7071,-0.2185,0.7071,-0.7071,0.0,0.6725,-0.7071,0.2185,0.7694,-0.5878,0.25,0.6545,-0.5878,0.4755,0.4755,-0.5878,0.6545,0.25,-0.5878,0.7694,0.0,-0.5878,0.809,-0.25,-0.5878,0.7694,-0.4755,-0.5878,0.6545,-0.6545,-0.5878,0.4755,-0.7694,-0.5878,0.25,-0.809,-0.5878,0.0,-0.7694,-0.5878,-0.25,-0.6545,-0.5878,-0.4755,-0.4755,-0.5878,-0.6545,-0.25,-0.5878,-0.7694,0.0,-0.5878,-0.809,0.25,-0.5878,-0.7694,0.4755,-0.5878,-0.6545,0.6545,-0.5878,-0.4755,0.7694,-0.5878,-0.25,0.809,-0.5878,0.0,0.7694,-0.5878,0.25,0.8474,-0.454,0.2753,0.7208,-0.454,0.5237,0.5237,-0.454,0.7208,0.2753,-0.454,0.8474,0.0,-0.454,0.891,-0.2753,-0.454,0.8474,-0.5237,-0.454,0.7208,-0.7208,-0.454,0.5237,-0.8474,-0.454,0.2753,-0.891,-0.454,0.0,-0.8474,-0.454,-0.2753,-0.7208,-0.454,-0.5237,-0.5237,-0.454,-0.7208,-0.2753,-0.454,-0.8474,0.0,-0.454,-0.891,0.2753,-0.454,-0.8474,0.5237,-0.454,-0.7208,0.7208,-0.454,-0.5237,0.8474,-0.454,-0.2753,0.891,-0.454,0.0,0.8474,-0.454,0.2753,0.9045,-0.309,0.2939,0.7694,-0.309,0.559,0.559,-0.309,0.7694,0.2939,-0.309,0.9045,0.0,-0.309,0.9511,-0.2939,-0.309,0.9045,-0.559,-0.309,0.7694,-0.7694,-0.309,0.559,-0.9045,-0.309,0.2939,-0.9511,-0.309,0.0,-0.9045,-0.309,-0.2939,-0.7694,-0.309,-0.559,-0.559,-0.309,-0.7694,-0.2939,-0.309,-0.9045,0.0,-0.309,-0.9511,0.2939,-0.309,-0.9045,0.559,-0.309,-0.7694,0.7694,-0.309,-0.559,0.9045,-0.309,-0.2939,0.9511,-0.309,0.0,0.9045,-0.309,0.2939,0.9393,-0.1564,0.3052,0.7991,-0.1564,0.5805,0.5805,-0.1564,0.7991,0.3052,-0.1564,0.9393,0.0,-0.1564,0.9877,-0.3052,-0.1564,0.9393,-0.5805,-0.1564,0.7991,-0.7991,-0.1564,0.5805,-0.9393,-0.1564,0.3052,-0.9877,-0.1564,0.0,-0.9393,-0.1564,-0.3052,-0.7991,-0.1564,-0.5805,-0.5805,-0.1564,-0.7991,-0.3052,-0.1564,-0.9393,0.0,-0.1564,-0.9877,0.3052,-0.1564,-0.9393,0.5805,-0.1564,-0.7991,0.7991,-0.1564,-0.5805,0.9393,-0.1564,-0.3052,0.9877,-0.1564,0.0,0.9393,-0.1564,0.3052,0.9511,0.0,0.309,0.809,0.0,0.5878,0.5878,0.0,0.809,0.309,0.0,0.9511,0.0,0.0,1.0,-0.309,0.0,0.9511,-0.5878,0.0,0.809,-0.809,0.0,0.5878,-0.9511,0.0,0.309,-1.0,0.0,0.0,-0.9511,0.0,-0.309,-0.809,0.0,-0.5878,-0.5878,0.0,-0.809,-0.309,0.0,-0.9511,0.0,0.0,-1.0,0.309,0.0,-0.9511,0.5878,0.0,-0.809,0.809,0.0,-0.5878,0.9511,0.0,-0.309,1.0,0.0,0.0,0.9511,0.0,0.309,0.9393,0.1564,0.3052,0.7991,0.1564,0.5805,0.5805,0.1564,0.7991,0.3052,0.1564,0.9393,0.0,0.1564,0.9877,-0.3052,0.1564,0.9393,-0.5805,0.1564,0.7991,-0.7991,0.1564,0.5805,-0.9393,0.1564,0.3052,-0.9877,0.1564,0.0,-0.9393,0.1564,-0.3052,-0.7991,0.1564,-0.5805,-0.5805,0.1564,-0.7991,-0.3052,0.1564,-0.9393,0.0,0.1564,-0.9877,0.3052,0.1564,-0.9393,0.5805,0.1564,-0.7991,0.7991,0.1564,-0.5805,0.9393,0.1564,-0.3052,0.9877,0.1564,0.0,0.9393,0.1564,0.3052,0.9045,0.309,0.2939,0.7694,0.309,0.559,0.559,0.309,0.7694,0.2939,0.309,0.9045,0.0,0.309,0.9511,-0.2939,0.309,0.9045,-0.559,0.309,0.7694,-0.7694,0.309,0.559,-0.9045,0.309,0.2939,-0.9511,0.309,0.0,-0.9045,0.309,-0.2939,-0.7694,0.309,-0.559,-0.559,0.309,-0.7694,-0.2939,0.309,-0.9045,0.0,0.309,-0.9511,0.2939,0.309,-0.9045,0.559,0.309,-0.7694,0.7694,0.309,-0.559,0.9045,0.309,-0.2939,0.9511,0.309,0.0,0.9045,0.309,0.2939,0.8474,0.454,0.2753,0.7208,0.454,0.5237,0.5237,0.454,0.7208,0.2753,0.454,0.8474,0.0,0.454,0.891,-0.2753,0.454,0.8474,-0.5237,0.454,0.7208,-0.7208,0.454,0.5237,-0.8474,0.454,0.2753,-0.891,0.454,0.0,-0.8474,0.454,-0.2753,-0.7208,0.454,-0.5237,-0.5237,0.454,-0.7208,-0.2753,0.454,-0.8474,0.0,0.454,-0.891,0.2753,0.454,-0.8474,0.5237,0.454,-0.7208,0.7208,0.454,-0.5237,0.8474,0.454,-0.2753,0.891,0.454,0.0,0.8474,0.454,0.2753,0.7694,0.5878,0.25,0.6545,0.5878,0.4755,0.4755,0.5878,0.6545,0.25,0.5878,0.7694,0.0,0.5878,0.809,-0.25,0.5878,0.7694,-0.4755,0.5878,0.6545,-0.6545,0.5878,0.4755,-0.7694,0.5878,0.25,-0.809,0.5878,0.0,-0.7694,0.5878,-0.25,-0.6545,0.5878,-0.4755,-0.4755,0.5878,-0.6545,-0.25,0.5878,-0.7694,0.0,0.5878,-0.809,0.25,0.5878,-0.7694,0.4755,0.5878,-0.6545,0.6545,0.5878,-0.4755,0.7694,0.5878,-0.25,0.809,0.5878,0.0,0.7694,0.5878,0.25,0.6725,0.7071,0.2185,0.5721,0.7071,0.4156,0.4156,0.7071,0.5721,0.2185,0.7071,0.6725,0.0,0.7071,0.7071,-0.2185,0.7071,0.6725,-0.4156,0.7071,0.5721,-0.5721,0.7071,0.4156,-0.6725,0.7071,0.2185,-0.7071,0.7071,0.0,-0.6725,0.7071,-0.2185,-0.5721,0.7071,-0.4156,-0.4156,0.7071,-0.5721,-0.2185,0.7071,-0.6725,0.0,0.7071,-0.7071,0.2185,0.7071,-0.6725,0.4156,0.7071,-0.5721,0.5721,0.7071,-0.4156,0.6725,0.7071,-0.2185,0.7071,0.7071,0.0,0.6725,0.7071,0.2185,0.559,0.809,0.1816,0.4755,0.809,0.3455,0.3455,0.809,0.4755,0.1816,0.809,0.559,0.0,0.809,0.5878,-0.1816,0.809,0.559,-0.3455,0.809,0.4755,-0.4755,0.809,0.3455,-0.559,0.809,0.1816,-0.5878,0.809,0.0,-0.559,0.809,-0.1816,-0.4755,0.809,-0.3455,-0.3455,0.809,-0.4755,-0.1816,0.809,-0.559,0.0,0.809,-0.5878,0.1816,0.809,-0.559,0.3455,0.809,-0.4755,0.4755,0.809,-0.3455,0.559,0.809,-0.1816,0.5878,0.809,0.0,0.559,0.809,0.1816,0.4318,0.891,0.1403,0.3673,0.891,0.2668,0.2668,0.891,0.3673,0.1403,0.891,0.4318,0.0,0.891,0.454,-0.1403,0.891,0.4318,-0.2668,0.891,0.3673,-0.3673,0.891,0.2668,-0.4318,0.891,0.1403,-0.454,0.891,0.0,-0.4318,0.891,-0.1403,-0.3673,0.891,-0.2668,-0.2668,0.891,-0.3673,-0.1403,0.891,-0.4318,0.0,0.891,-0.454,0.1403,0.891,-0.4318,0.2668,0.891,-0.3673,0.3673,0.891,-0.2668,0.4318,0.891,-0.1403,0.454,0.891,0.0,0.4318,0.891,0.1403,0.2939,0.9511,0.0955,0.25,0.9511,0.1816,0.1816,0.9511,0.25,0.0955,0.9511,0.2939,0.0,0.9511,0.309,-0.0955,0.9511,0.2939,-0.1816,0.9511,0.25,-0.25,0.9511,0.1816,-0.2939,0.9511,0.0955,-0.309,0.9511,0.0,-0.2939,0.9511,-0.0955,-0.25,0.9511,-0.1816,-0.1816,0.9511,-0.25,-0.0955,0.9511,-0.2939,0.0,0.9511,-0.309,0.0955,0.9511,-0.2939,0.1816,0.9511,-0.25,0.25,0.9511,-0.1816,0.2939,0.9511,-0.0955,0.309,0.9511,0.0,0.2939,0.9511,0.0955,0.1488,0.9877,0.0483,0.1266,0.9877,0.0919,0.0919,0.9877,0.1266,0.0483,0.9877,0.1488,0.0,0.9877,0.1564,-0.0483,0.9877,0.1488,-0.0919,0.9877,0.1266,-0.1266,0.9877,0.0919,-0.1488,0.9877,0.0483,-0.1564,0.9877,0.0,-0.1488,0.9877,-0.0483,-0.1266,0.9877,-0.0919,-0.0919,0.9877,-0.1266,-0.0483,0.9877,-0.1488,0.0,0.9877,-0.1564,0.0483,0.9877,-0.1488,0.0919,0.9877,-0.1266,0.1266,0.9877,-0.0919,0.1488,0.9877,-0.0483,0.1564,0.9877,0.0,0.1488,0.9877,0.0483,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0],"normals":[0.1906,-0.9797,0.0619,0.1621,-0.9797,0.1178,0.3173,-0.9427,0.1031,0.2699,-0.9427,0.1961,0.1178,-0.9797,0.1621,0.1961,-0.9427,0.2699,0.0619,-0.9797,0.1906,0.1031,-0.9427,0.3173,0.0,-0.9797,0.2004,0.0,-0.9427,0.3336,-0.0619,-0.9797,0.1906,-0.1031,-0.9427,0.3173,-0.1178,-0.9797,0.1621,-0.1961,-0.9427,0.2699,-0.1621,-0.9797,0.1178,-0.2699,-0.9427,0.1961,-0.1906,-0.9797,0.0619,-0.3173,-0.9427,0.1031,-0.2004,-0.9797,0.0,-0.3336,-0.9427,0.0,-0.1906,-0.9797,-0.0619,-0.3173,-0.9427,-0.1031,-0.1621,-0.9797,-0.1178,-0.2699,-0.9427,-0.1961,-0.1178,-0.9797,-0.1621,-0.1961,-0.9427,-0.2699,-0.0619,-0.9797,-0.1906,-0.1031,-0.9427,-0.3173,0.0,-0.9797,-0.2004,0.0,-0.9427,-0.3336,0.0619,-0.9797,-0.1906,0.1031,-0.9427,-0.3173,0.1178,-0.9797,-0.1621,0.1961,-0.9427,-0.2699,0.1621,-0.9797,-0.1178,0.2699,-0.9427,-0.1961,0.1906,-0.9797,-0.0619,0.3173,-0.9427,-0.1031,0.2004,-0.9797,0.0,0.3336,-0.9427,0.0,0.1906,-0.9797,0.0619,0.3173,-0.9427,0.1031,0.4477,-0.8823,0.1455,0.3808,-0.8823,0.2767,0.2767,-0.8823,0.3808,0.1455,-0.8823,0.4477,0.0,-0.8823,0.4708,-0.1455,-0.8823,0.4477,-0.2767,-0.8823,0.3808,-0.3808,-0.8823,0.2767,-0.4477,-0.8823,0.1455,-0.4708,-0.8823,0.0,-0.4477,-0.8823,-0.1455,-0.3808,-0.8823,-0.2767,-0.2767,-0.8823,-0.3808,-0.1455,-0.8823,-0.4477,0.0,-0.8823,-0.4708,0.1455,-0.8823,-0.4477,0.2767,-0.8823,-0.3808,0.3808,-0.8823,-0.2767,0.4477,-0.8823,-0.1455,0.4708,-0.8823,0.0,0.4477,-0.8823,0.1455,0.5703,-0.8003,0.1853,0.4851,-0.8003,0.3525,0.3525,-0.8003,0.4851,0.1853,-0.8003,0.5703,0.0,-0.8003,0.5997,-0.1853,-0.8003,0.5703,-0.3525,-0.8003,0.4851,-0.4851,-0.8003,0.3525,-0.5703,-0.8003,0.1853,-0.5997,-0.8003,0.0,-0.5703,-0.8003,-0.1853,-0.4851,-0.8003,-0.3525,-0.3525,-0.8003,-0.4851,-0.1853,-0.8003,-0.5703,0.0,-0.8003,-0.5997,0.1853,-0.8003,-0.5703,0.3525,-0.8003,-0.4851,0.4851,-0.8003,-0.3525,0.5703,-0.8003,-0.1853,0.5997,-0.8003,0.0,0.5703,-0.8003,0.1853,0.6803,-0.6988,0.221,0.5787,-0.6988,0.4205,0.4205,-0.6988,0.5787,0.221,-0.6988,0.6803,0.0,-0.6988,0.7153,-0.221,-0.6988,0.6803,-0.4205,-0.6988,0.5787,-0.5787,-0.6988,0.4205,-0.6803,-0.6988,0.221,-0.7153,-0.6988,0.0,-0.6803,-0.6988,-0.221,-0.5787,-0.6988,-0.4205,-0.4205,-0.6988,-0.5787,-0.221,-0.6988,-0.6803,0.0,-0.6988,-0.7153,0.221,-0.6988,-0.6803,0.4205,-0.6988,-0.5787,0.5787,-0.6988,-0.4205,0.6803,-0.6988,-0.221,0.7153,-0.6988,0.0,0.6803,-0.6988,0.221,0.7745,-0.5804,0.2516,0.6588,-0.5804,0.4787,0.4787,-0.5804,0.6588,0.2516,-0.5804,0.7745,0.0,-0.5804,0.8143,-0.2516,-0.5804,0.7745,-0.4787,-0.5804,0.6588,-0.6588,-0.5804,0.4787,-0.7745,-0.5804,0.2516,-0.8143,-0.5804,0.0,-0.7745,-0.5804,-0.2516,-0.6588,-0.5804,-0.4787,-0.4787,-0.5804,-0.6588,-0.2516,-0.5804,-0.7745,0.0,-0.5804,-0.8143,0.2516,-0.5804,-0.7745,0.4787,-0.5804,-0.6588,0.6588,-0.5804,-0.4787,0.7745,-0.5804,-0.2516,0.8143,-0.5804,0.0,0.7745,-0.5804,0.2516,0.8503,-0.448,0.2763,0.7233,-0.448,0.5255,0.5255,-0.448,0.7233,0.2763,-0.448,0.8503,0.0,-0.448,0.894,-0.2763,-0.448,0.8503,-0.5255,-0.448,0.7233,-0.7233,-0.448,0.5255,-0.8503,-0.448,0.2763,-0.894,-0.448,0.0,-0.8503,-0.448,-0.2763,-0.7233,-0.448,-0.5255,-0.5255,-0.448,-0.7233,-0.2763,-0.448,-0.8503,0.0,-0.448,-0.894,0.2763,-0.448,-0.8503,0.5255,-0.448,-0.7233,0.7233,-0.448,-0.5255,0.8503,-0.448,-0.2763,0.894,-0.448,0.0,0.8503,-0.448,0.2763,0.9058,-0.3048,0.2943,0.7705,-0.3048,0.5598,0.5598,-0.3048,0.7705,0.2943,-0.3048,0.9058,0.0,-0.3048,0.9524,-0.2943,-0.3048,0.9058,-0.5598,-0.3048,0.7705,-0.7705,-0.3048,0.5598,-0.9058,-0.3048,0.2943,-0.9524,-0.3048,0.0,-0.9058,-0.3048,-0.2943,-0.7705,-0.3048,-0.5598,-0.5598,-0.3048,-0.7705,-0.2943,-0.3048,-0.9058,0.0,-0.3048,-0.9524,0.2943,-0.3048,-0.9058,0.5598,-0.3048,-0.7705,0.7705,-0.3048,-0.5598,0.9058,-0.3048,-0.2943,0.9524,-0.3048,0.0,0.9058,-0.3048,0.2943,0.9397,-0.1542,0.3053,0.7993,-0.1542,0.5808,0.5808,-0.1542,0.7993,0.3053,-0.1542,0.9397,0.0,-0.1542,0.988,-0.3053,-0.1542,0.9397,-0.5808,-0.1542,0.7993,-0.7993,-0.1542,0.5808,-0.9397,-0.1542,0.3053,-0.988,-0.1542,0.0,-0.9397,-0.1542,-0.3053,-0.7993,-0.1542,-0.5808,-0.5808,-0.1542,-0.7993,-0.3053,-0.1542,-0.9397,0.0,-0.1542,-0.988,0.3053,-0.1542,-0.9397,0.5808,-0.1542,-0.7993,0.7993,-0.1542,-0.5808,0.9397,-0.1542,-0.3053,0.988,-0.1542,0.0,0.9397,-0.1542,0.3053,0.9511,0.0,0.309,0.809,0.0,0.5878,0.5878,0.0,0.809,0.309,0.0,0.9511,0.0,0.0,1.0,-0.309,0.0,0.9511,-0.5878,0.0,0.809,-0.809,0.0,0.5878,-0.9511,0.0,0.309,-1.0,0.0,0.0,-0.9511,0.0,-0.309,-0.809,0.0,-0.5878,-0.5878,0.0,-0.809,-0.309,0.0,-0.9511,0.0,0.0,-1.0,0.309,0.0,-0.9511,0.5878,0.0,-0.809,0.809,0.0,-0.5878,0.9511,0.0,-0.309,1.0,0.0,0.0,0.9511,0.0,0.309,0.9397,0.1542,0.3053,0.7993,0.1542,0.5808,0.5808,0.1542,0.7993,0.3053,0.1542,0.9397,0.0,0.1542,0.988,-0.3053,0.1542,0.9397,-0.5808,0.1542,0.7993,-0.7993,0.1542,0.5808,-0.9397,0.1542,0.3053,-0.988,0.1542,0.0,-0.9397,0.1542,-0.3053,-0.7993,0.1542,-0.5808,-0.5808,0.1542,-0.7993,-0.3053,0.1542,-0.9397,0.0,0.1542,-0.988,0.3053,0.1542,-0.9397,0.5808,0.1542,-0.7993,0.7993,0.1542,-0.5808,0.9397,0.1542,-0.3053,0.988,0.1542,0.0,0.9397,0.1542,0.3053,0.9058,0.3048,0.2943,0.7705,0.3048,0.5598,0.5598,0.3048,0.7705,0.2943,0.3048,0.9058,0.0,0.3048,0.9524,-0.2943,0.3048,0.9058,-0.5598,0.3048,0.7705,-0.7705,0.3048,0.5598,-0.9058,0.3048,0.2943,-0.9524,0.3048,0.0,-0.9058,0.3048,-0.2943,-0.7705,0.3048,-0.5598,-0.5598,0.3048,-0.7705,-0.2943,0.3048,-0.9058,0.0,0.3048,-0.9524,0.2943,0.3048,-0.9058,0.5598,0.3048,-0.7705,0.7705,0.3048,-0.5598,0.9058,0.3048,-0.2943,0.9524,0.3048,0.0,0.9058,0.3048,0.2943,0.8503,0.448,0.2763,0.7233,0.448,0.5255,0.5255,0.448,0.7233,0.2763,0.448,0.8503,0.0,0.448,0.894,-0.2763,0.448,0.8503,-0.5255,0.448,0.7233,-0.7233,0.448,0.5255,-0.8503,0.448,0.2763,-0.894,0.448,0.0,-0.8503,0.448,-0.2763,-0.7233,0.448,-0.5255,-0.5255,0.448,-0.7233,-0.2763,0.448,-0.8503,0.0,0.448,-0.894,0.2763,0.448,-0.8503,0.5255,0.448,-0.7233,0.7233,0.448,-0.5255,0.8503,0.448,-0.2763,0.894,0.448,0.0,0.8503,0.448,0.2763,0.7745,0.5804,0.2516,0.6588,0.5804,0.4787,0.4787,0.5804,0.6588,0.2516,0.5804,0.7745,0.0,0.5804,0.8143,-0.2516,0.5804,0.7745,-0.4787,0.5804,0.6588,-0.6588,0.5804,0.4787,-0.7745,0.5804,0.2516,-0.8143,0.5804,0.0,-0.7745,0.5804,-0.2516,-0.6588,0.5804,-0.4787,-0.4787,0.5804,-0.6588,-0.2516,0.5804,-0.7745,0.0,0.5804,-0.8143,0.2516,0.5804,-0.7745,0.4787,0.5804,-0.6588,0.6588,0.5804,-0.4787,0.7745,0.5804,-0.2516,0.8143,0.5804,0.0,0.7745,0.5804,0.2516,0.6803,0.6988,0.221,0.5787,0.6988,0.4205,0.4205,0.6988,0.5787,0.221,0.6988,0.6803,0.0,0.6988,0.7153,-0.221,0.6988,0.6803,-0.4205,0.6988,0.5787,-0.5787,0.6988,0.4205,-0.6803,0.6988,0.221,-0.7153,0.6988,0.0,-0.6803,0.6988,-0.221,-0.5787,0.6988,-0.4205,-0.4205,0.6988,-0.5787,-0.221,0.6988,-0.6803,0.0,0.6988,-0.7153,0.221,0.6988,-0.6803,0.4205,0.6988,-0.5787,0.5787,0.6988,-0.4205,0.6803,0.6988,-0.221,0.7153,0.6988,0.0,0.6803,0.6988,0.221,0.5703,0.8003,0.1853,0.4851,0.8003,0.3525,0.3525,0.8003,0.4851,0.1853,0.8003,0.5703,0.0,0.8003,0.5997,-0.1853,0.8003,0.5703,-0.3525,0.8003,0.4851,-0.4851,0.8003,0.3525,-0.5703,0.8003,0.1853,-0.5997,0.8003,0.0,-0.5703,0.8003,-0.1853,-0.4851,0.8003,-0.3525,-0.3525,0.8003,-0.4851,-0.1853,0.8003,-0.5703,0.0,0.8003,-0.5997,0.1853,0.8003,-0.5703,0.3525,0.8003,-0.4851,0.4851,0.8003,-0.3525,0.5703,0.8003,-0.1853,0.5997,0.8003,0.0,0.5703,0.8003,0.1853,0.4477,0.8823,0.1455,0.3808,0.8823,0.2767,0.2767,0.8823,0.3808,0.1455,0.8823,0.4477,0.0,0.8823,0.4708,-0.1455,0.8823,0.4477,-0.2767,0.8823,0.3808,-0.3808,0.8823,0.2767,-0.4477,0.8823,0.1455,-0.4708,0.8823,0.0,-0.4477,0.8823,-0.1455,-0.3808,0.8823,-0.2767,-0.2767,0.8823,-0.3808,-0.1455,0.8823,-0.4477,0.0,0.8823,-0.4708,0.1455,0.8823,-0.4477,0.2767,0.8823,-0.3808,0.3808,0.8823,-0.2767,0.4477,0.8823,-0.1455,0.4708,0.8823,0.0,0.4477,0.8823,0.1455,0.3173,0.9427,0.1031,0.2699,0.9427,0.1961,0.1961,0.9427,0.2699,0.1031,0.9427,0.3173,0.0,0.9427,0.3336,-0.1031,0.9427,0.3173,-0.1961,0.9427,0.2699,-0.2699,0.9427,0.1961,-0.3173,0.9427,0.1031,-0.3336,0.9427,0.0,-0.3173,0.9427,-0.1031,-0.2699,0.9427,-0.1961,-0.1961,0.9427,-0.2699,-0.1031,0.9427,-0.3173,0.0,0.9427,-0.3336,0.1031,0.9427,-0.3173,0.1961,0.9427,-0.2699,0.2699,0.9427,-0.1961,0.3173,0.9427,-0.1031,0.3336,0.9427,0.0,0.3173,0.9427,0.1031,0.1906,0.9797,0.0619,0.1621,0.9797,0.1178,0.1178,0.9797,0.1621,0.0619,0.9797,0.1906,0.0,0.9797,0.2004,-0.0619,0.9797,0.1906,-0.1178,0.9797,0.1621,-0.1621,0.9797,0.1178,-0.1906,0.9797,0.0619,-0.2004,0.9797,0.0,-0.1906,0.9797,-0.0619,-0.1621,0.9797,-0.1178,-0.1178,0.9797,-0.1621,-0.0619,0.9797,-0.1906,0.0,0.9797,-0.2004,0.0619,0.9797,-0.1906,0.1178,0.9797,-0.1621,0.1621,0.9797,-0.1178,0.1906,0.9797,-0.0619,0.2004,0.9797,0.0,0.1906,0.9797,0.0619,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0],"tangents":[-0.4482,-0.0307,0.8934,-1.0,-0.5629,0.0062,0.8265,-1.0,-0.438,-0.0493,0.8976,-1.0,-0.5878,0.0,0.809,-1.0,-0.7908,0.0062,0.6121,-1.0,-0.809,0.0,0.5878,-1.0,-0.9412,0.0062,0.3378,-1.0,-0.9511,0.0,0.309,-1.0,-0.9995,0.0062,0.0304,-1.0,-1.0,0.0,0.0,-1.0,-0.96,0.0062,-0.28,-1.0,-0.9511,0.0,-0.309,-1.0,-0.8265,0.0062,-0.5629,-1.0,-0.809,0.0,-0.5878,-1.0,-0.6121,0.0062,-0.7908,-1.0,-0.5878,0.0,-0.809,-1.0,-0.3378,0.0062,-0.9412,-1.0,-0.309,0.0,-0.9511,-1.0,-0.0304,0.0062,-0.9995,-1.0,0.0,0.0,-1.0,-1.0,0.28,0.0062,-0.96,-1.0,0.309,0.0,-0.9511,-1.0,0.5629,0.0062,-0.8265,-1.0,0.5878,0.0,-0.809,-1.0,0.7908,0.0062,-0.6121,-1.0,0.809,0.0,-0.5878,-1.0,0.9412,0.0062,-0.3378,-1.0,0.9511,0.0,-0.309,-1.0,0.9995,0.0062,-0.0304,-1.0,1.0,0.0,0.0,-1.0,0.96,0.0062,0.28,-1.0,0.9511,0.0,0.309,-1.0,0.8265,0.0062,0.5629,-1.0,0.809,0.0,0.5878,-1.0,0.6121,0.0062,0.7908,-1.0,0.5878,0.0,0.809,-1.0,0.3378,0.0062,0.9412,-1.0,0.309,0.0,0.9511,-1.0,0.0304,0.0062,0.9995,-1.0,0.0,0.0,1.0,-1.0,-0.1625,0.0307,0.9862,-1.0,-0.1732,0.0493,0.9836,-1.0,-0.4222,-0.0651,0.9042,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.1899,0.0651,0.9796,-1.0,-0.4023,-0.0754,0.9124,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.2109,0.0754,0.9746,-1.0,-0.3802,-0.0787,0.9215,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.234,0.0787,0.969,-1.0,-0.3582,-0.0745,0.9306,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.2572,0.0745,0.9635,-1.0,-0.3384,-0.0633,0.9389,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.2781,0.0633,0.9585,-1.0,-0.3226,-0.0459,0.9454,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.2947,0.0459,0.9545,-1.0,-0.3125,-0.0241,0.9496,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.3053,0.0241,0.9519,-1.0,-0.309,0.0,0.9511,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.309,0.0,0.9511,-1.0,-0.3125,0.0241,0.9496,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.3053,-0.0241,0.9519,-1.0,-0.3226,0.0459,0.9454,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.2947,-0.0459,0.9545,-1.0,-0.3384,0.0633,0.9389,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.2781,-0.0633,0.9585,-1.0,-0.3582,0.0745,0.9306,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.2572,-0.0745,0.9635,-1.0,-0.3802,0.0787,0.9215,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.234,-0.0787,0.969,-1.0,-0.4023,0.0754,0.9124,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.2109,-0.0754,0.9746,-1.0,-0.4222,0.0651,0.9042,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.1899,-0.0651,0.9796,-1.0,-0.438,0.0493,0.8976,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.1732,-0.0493,0.9836,-1.0,-0.4482,0.0307,0.8934,-1.0,-0.6121,0.0062,0.7908,-1.0,-0.8265,0.0062,0.5629,-1.0,-0.96,0.0062,0.28,-1.0,-0.9995,0.0062,-0.0304,-1.0,-0.9412,0.0062,-0.3378,-1.0,-0.7908,0.0062,-0.6121,-1.0,-0.5629,0.0062,-0.8265,-1.0,-0.28,0.0062,-0.96,-1.0,0.0304,0.0062,-0.9995,-1.0,0.3378,0.0062,-0.9412,-1.0,0.6121,0.0062,-0.7908,-1.0,0.8265,0.0062,-0.5629,-1.0,0.96,0.0062,-0.28,-1.0,0.9995,0.0062,0.0304,-1.0,0.9412,0.0062,0.3378,-1.0,0.7908,0.0062,0.6121,-1.0,0.5629,0.0062,0.8265,-1.0,0.28,0.0062,0.96,-1.0,-0.0304,0.0062,0.9995,-1.0,-0.1625,-0.0307,0.9862,-1.0,-0.454,0.0,0.891,-1.0,-0.7071,0.0,0.7071,-1.0,-0.891,0.0,0.454,-1.0,-0.9877,0.0,0.1564,-1.0,-0.9877,0.0,-0.1564,-1.0,-0.891,0.0,-0.454,-1.0,-0.7071,0.0,-0.7071,-1.0,-0.454,0.0,-0.891,-1.0,-0.1564,0.0,-0.9877,-1.0,0.1564,0.0,-0.9877,-1.0,0.454,0.0,-0.891,-1.0,0.7071,0.0,-0.7071,-1.0,0.891,0.0,-0.454,-1.0,0.9877,0.0,-0.1564,-1.0,0.9877,0.0,0.1564,-1.0,0.891,0.0,0.454,-1.0,0.7071,0.0,0.7071,-1.0,0.454,0.0,0.891,-1.0,0.1564,0.0,0.9877,-1.0,-0.1564,0.0,0.9877,-1.0,-0.454,0.0,0.891,-1.0,-0.7071,0.0,0.7071,-1.0,-0.891,0.0,0.454,-1.0,-0.9877,0.0,0.1564,-1.0,-0.9877,0.0,-0.1564,-1.0,-0.891,0.0,-0.454,-1.0,-0.7071,0.0,-0.7071,-1.0,-0.454,0.0,-0.891,-1.0,-0.1564,0.0,-0.9877,-1.0,0.1564,0.0,-0.9877,-1.0,0.454,0.0,-0.891,-1.0,0.7071,0.0,-0.7071,-1.0,0.891,0.0,-0.454,-1.0,0.9877,0.0,-0.1564,-1.0,0.9877,0.0,0.1564,-1.0,0.891,0.0,0.454,-1.0,0.7071,0.0,0.7071,-1.0,0.454,0.0,0.891,-1.0,0.1564,0.0,0.9877,-1.0,-0.1564,0.0,0.9877,-1.0],"uvs":[0.0,0.05,0.05,0.05,0.0,0.1,0.05,0.1,0.1,0.05,0.1,0.1,0.15,0.05,0.15,0.1,0.2,0.05,0.2,0.1,0.25,0.05,0.25,0.1,0.3,0.05,0.3,0.1,0.35,0.05,0.35,0.1,0.4,0.05,0.4,0.1,0.45,0.05,0.45,0.1,0.5,0.05,0.5,0.1,0.55,0.05,0.55,0.1,0.6,0.05,0.6,0.1,0.65,0.05,0.65,0.1,0.7,0.05,0.7,0.1,0.75,0.05,0.75,0.1,0.8,0.05,0.8,0.1,0.85,0.05,0.85,0.1,0.9,0.05,0.9,0.1,0.95,0.05,0.95,0.1,1.0,0.05,1.0,0.1,0.0,0.15,0.05,0.15,0.1,0.15,0.15,0.15,0.2,0.15,0.25,0.15,0.3,0.15,0.35,0.15,0.4,0.15,0.45,0.15,0.5,0.15,0.55,0.15,0.6,0.15,0.65,0.15,0.7,0.15,0.75,0.15,0.8,0.15,0.85,0.15,0.9,0.15,0.95,0.15,1.0,0.15,0.0,0.2,0.05,0.2,0.1,0.2,0.15,0.2,0.2,0.2,0.25,0.2,0.3,0.2,0.35,0.2,0.4,0.2,0.45,0.2,0.5,0.2,0.55,0.2,0.6,0.2,0.65,0.2,0.7,0.2,0.75,0.2,0.8,0.2,0.85,0.2,0.9,0.2,0.95,0.2,1.0,0.2,0.0,0.25,0.05,0.25,0.1,0.25,0.15,0.25,0.2,0.25,0.25,0.25,0.3,0.25,0.35,0.25,0.4,0.25,0.45,0.25,0.5,0.25,0.55,0.25,0.6,0.25,0.65,0.25,0.7,0.25,0.75,0.25,0.8,0.25,0.85,0.25,0.9,0.25,0.95,0.25,1.0,0.25,0.0,0.3,0.05,0.3,0.1,0.3,0.15,0.3,0.2,0.3,0.25,0.3,0.3,0.3,0.35,0.3,0.4,0.3,0.45,0.3,0.5,0.3,0.55,0.3,0.6,0.3,0.65,0.3,0.7,0.3,0.75,0.3,0.8,0.3,0.85,0.3,0.9,0.3,0.95,0.3,1.0,0.3,0.0,0.35,0.05,0.35,0.1,0.35,0.15,0.35,0.2,0.35,0.25,0.35,0.3,0.35,0.35,0.35,0.4,0.35,0.45,0.35,0.5,0.35,0.55,0.35,0.6,0.35,0.65,0.35,0.7,0.35,0.75,0.35,0.8,0.35,0.85,0.35,0.9,0.35,0.95,0.35,1.0,0.35,0.0,0.4,0.05,0.4,0.1,0.4,0.15,0.4,0.2,0.4,0.25,0.4,0.3,0.4,0.35,0.4,0.4,0.4,0.45,0.4,0.5,0.4,0.55,0.4,0.6,0.4,0.65,0.4,0.7,0.4,0.75,0.4,0.8,0.4,0.85,0.4,0.9,0.4,0.95,0.4,1.0,0.4,0.0,0.45,0.05,0.45,0.1,0.45,0.15,0.45,0.2,0.45,0.25,0.45,0.3,0.45,0.35,0.45,0.4,0.45,0.45,0.45,0.5,0.45,0.55,0.45,0.6,0.45,0.65,0.45,0.7,0.45,0.75,0.45,0.8,0.45,0.85,0.45,0.9,0.45,0.95,0.45,1.0,0.45,0.0,0.5,0.05,0.5,0.1,0.5,0.15,0.5,0.2,0.5,0.25,0.5,0.3,0.5,0.35,0.5,0.4,0.5,0.45,0.5,0.5,0.5,0.55,0.5,0.6,0.5,0.65,0.5,0.7,0.5,0.75,0.5,0.8,0.5,0.85,0.5,0.9,0.5,0.95,0.5,1.0,0.5,0.0,0.55,0.05,0.55,0.1,0.55,0.15,0.55,0.2,0.55,0.25,0.55,0.3,0.55,0.35,0.55,0.4,0.55,0.45,0.55,0.5,0.55,0.55,0.55,0.6,0.55,0.65,0.55,0.7,0.55,0.75,0.55,0.8,0.55,0.85,0.55,0.9,0.55,0.95,0.55,1.0,0.55,0.0,0.6,0.05,0.6,0.1,0.6,0.15,0.6,0.2,0.6,0.25,0.6,0.3,0.6,0.35,0.6,0.4,0.6,0.45,0.6,0.5,0.6,0.55,0.6,0.6,0.6,0.65,0.6,0.7,0.6,0.75,0.6,0.8,0.6,0.85,0.6,0.9,0.6,0.95,0.6,1.0,0.6,0.0,0.65,0.05,0.65,0.1,0.65,0.15,0.65,0.2,0.65,0.25,0.65,0.3,0.65,0.35,0.65,0.4,0.65,0.45,0.65,0.5,0.65,0.55,0.65,0.6,0.65,0.65,0.65,0.7,0.65,0.75,0.65,0.8,0.65,0.85,0.65,0.9,0.65,0.95,0.65,1.0,0.65,0.0,0.7,0.05,0.7,0.1,0.7,0.15,0.7,0.2,0.7,0.25,0.7,0.3,0.7,0.35,0.7,0.4,0.7,0.45,0.7,0.5,0.7,0.55,0.7,0.6,0.7,0.65,0.7,0.7,0.7,0.75,0.7,0.8,0.7,0.85,0.7,0.9,0.7,0.95,0.7,1.0,0.7,0.0,0.75,0.05,0.75,0.1,0.75,0.15,0.75,0.2,0.75,0.25,0.75,0.3,0.75,0.35,0.75,0.4,0.75,0.45,0.75,0.5,0.75,0.55,0.75,0.6,0.75,0.65,0.75,0.7,0.75,0.75,0.75,0.8,0.75,0.85,0.75,0.9,0.75,0.95,0.75,1.0,0.75,0.0,0.8,0.05,0.8,0.1,0.8,0.15,0.8,0.2,0.8,0.25,0.8,0.3,0.8,0.35,0.8,0.4,0.8,0.45,0.8,0.5,0.8,0.55,0.8,0.6,0.8,0.65,0.8,0.7,0.8,0.75,0.8,0.8,0.8,0.85,0.8,0.9,0.8,0.95,0.8,1.0,0.8,0.0,0.85,0.05,0.85,0.1,0.85,0.15,0.85,0.2,0.85,0.25,0.85,0.3,0.85,0.35,0.85,0.4,0.85,0.45,0.85,0.5,0.85,0.55,0.85,0.6,0.85,0.65,0.85,0.7,0.85,0.75,0.85,0.8,0.85,0.85,0.85,0.9,0.85,0.95,0.85,1.0,0.85,0.0,0.9,0.05,0.9,0.1,0.9,0.15,0.9,0.2,0.9,0.25,0.9,0.3,0.9,0.35,0.9,0.4,0.9,0.45,0.9,0.5,0.9,0.55,0.9,0.6,0.9,0.65,0.9,0.7,0.9,0.75,0.9,0.8,0.9,0.85,0.9,0.9,0.9,0.95,0.9,1.0,0.9,0.0,0.95,0.05,0.95,0.1,0.95,0.15,0.95,0.2,0.95,0.25,0.95,0.3,0.95,0.35,0.95,0.4,0.95,0.45,0.95,0.5,0.95,0.55,0.95,0.6,0.95,0.65,0.95,0.7,0.95,0.75,0.95,0.8,0.95,0.85,0.95,0.9,0.95,0.95,0.95,1.0,0.95,0.025,0.0,0.075,0.0,0.125,0.0,0.175,0.0,0.225,0.0,0.275,0.0,0.325,0.0,0.375,0.0,0.425,0.0,0.475,0.0,0.525,0.0,0.575,0.0,0.625,0.0,0.675,0.0,0.725,0.0,0.775,0.0,0.825,0.0,0.875,0.0,0.925,0.0,0.975,0.0,0.025,1.0,0.075,1.0,0.125,1.0,0.175,1.0,0.225,1.0,0.275,1.0,0.325,1.0,0.375,1.0,0.425,1.0,0.475,1.0,0.525,1.0,0.575,1.0,0.625,1.0,0.675,1.0,0.725,1.0,0.775,1.0,0.825,1.0,0.875,1.0,0.925,1.0,0.975,1.0],"uvs2":null,"colors":null,"hasVertexAlpha":false,"matricesIndices":null,"matricesWeights":null,"matricesIndicesExtra":null,"matricesWeightsExtra":null,"indices":[0,1,2,2,1,3,1,4,3,3,4,5,4,6,5,5,6,7,6,8,7,7,8,9,8,10,9,9,10,11,10,12,11,11,12,13,12,14,13,13,14,15,14,16,15,15,16,17,16,18,17,17,18,19,18,20,19,19,20,21,20,22,21,21,22,23,22,24,23,23,24,25,24,26,25,25,26,27,26,28,27,27,28,29,28,30,29,29,30,31,30,32,31,31,32,33,32,34,33,33,34,35,34,36,35,35,36,37,36,38,37,37,38,39,38,40,39,39,40,41,2,3,42,42,3,43,3,5,43,43,5,44,5,7,44,44,7,45,7,9,45,45,9,46,9,11,46,46,11,47,11,13,47,47,13,48,13,15,48,48,15,49,15,17,49,49,17,50,17,19,50,50,19,51,19,21,51,51,21,52,21,23,52,52,23,53,23,25,53,53,25,54,25,27,54,54,27,55,27,29,55,55,29,56,29,31,56,56,31,57,31,33,57,57,33,58,33,35,58,58,35,59,35,37,59,59,37,60,37,39,60,60,39,61,39,41,61,61,41,62,42,43,63,63,43,64,43,44,64,64,44,65,44,45,65,65,45,66,45,46,66,66,46,67,46,47,67,67,47,68,47,48,68,68,48,69,48,49,69,69,49,70,49,50,70,70,50,71,50,51,71,71,51,72,51,52,72,72,52,73,52,53,73,73,53,74,53,54,74,74,54,75,54,55,75,75,55,76,55,56,76,76,56,77,56,57,77,77,57,78,57,58,78,78,58,79,58,59,79,79,59,80,59,60,80,80,60,81,60,61,81,81,61,82,61,62,82,82,62,83,63,64,84,84,64,85,64,65,85,85,65,86,65,66,86,86,66,87,66,67,87,87,67,88,67,68,88,88,68,89,68,69,89,89,69,90,69,70,90,90,70,91,70,71,91,91,71,92,71,72,92,92,72,93,72,73,93,93,73,94,73,74,94,94,74,95,74,75,95,95,75,96,75,76,96,96,76,97,76,77,97,97,77,98,77,78,98,98,78,99,78,79,99,99,79,100,79,80,100,100,80,101,80,81,101,101,81,102,81,82,102,102,82,103,82,83,103,103,83,104,84,85,105,105,85,106,85,86,106,106,86,107,86,87,107,107,87,108,87,88,108,108,88,109,88,89,109,109,89,110,89,90,110,110,90,111,90,91,111,111,91,112,91,92,112,112,92,113,92,93,113,113,93,114,93,94,114,114,94,115,94,95,115,115,95,116,95,96,116,116,96,117,96,97,117,117,97,118,97,98,118,118,98,119,98,99,119,119,99,120,99,100,120,120,100,121,100,101,121,121,101,122,101,102,122,122,102,123,102,103,123,123,103,124,103,104,124,124,104,125,105,106,126,126,106,127,106,107,127,127,107,128,107,108,128,128,108,129,108,109,129,129,109,130,109,110,130,130,110,131,110,111,131,131,111,132,111,112,132,132,112,133,112,113,133,133,113,134,113,114,134,134,114,135,114,115,135,135,115,136,115,116,136,136,116,137,116,117,137,137,117,138,117,118,138,138,118,139,118,119,139,139,119,140,119,120,140,140,120,141,120,121,141,141,121,142,121,122,142,142,122,143,122,123,143,143,123,144,123,124,144,144,124,145,124,125,145,145,125,146,126,127,147,147,127,148,127,128,148,148,128,149,128,129,149,149,129,150,129,130,150,150,130,151,130,131,151,151,131,152,131,132,152,152,132,153,132,133,153,153,133,154,133,134,154,154,134,155,134,135,155,155,135,156,135,136,156,156,136,157,136,137,157,157,137,158,137,138,158,158,138,159,138,139,159,159,139,160,139,140,160,160,140,161,140,141,161,161,141,162,141,142,162,162,142,163,142,143,163,163,143,164,143,144,164,164,144,165,144,145,165,165,145,166,145,146,166,166,146,167,147,148,168,168,148,169,148,149,169,169,149,170,149,150,170,170,150,171,150,151,171,171,151,172,151,152,172,172,152,173,152,153,173,173,153,174,153,154,174,174,154,175,154,155,175,175,155,176,155,156,176,176,156,177,156,157,177,177,157,178,157,158,178,178,158,179,158,159,179,179,159,180,159,160,180,180,160,181,160,161,181,181,161,182,161,162,182,182,162,183,162,163,183,183,163,184,163,164,184,184,164,185,164,165,185,185,165,186,165,166,186,186,166,187,166,167,187,187,167,188,168,169,189,189,169,190,169,170,190,190,170,191,170,171,191,191,171,192,171,172,192,192,172,193,172,173,193,193,173,194,173,174,194,194,174,195,174,175,195,195,175,196,175,176,196,196,176,197,176,177,197,197,177,198,177,178,198,198,178,199,178,179,199,199,179,200,179,180,200,200,180,201,180,181,201,201,181,202,181,182,202,202,182,203,182,183,203,203,183,204,183,184,204,204,184,205,184,185,205,205,185,206,185,186,206,206,186,207,186,187,207,207,187,208,187,188,208,208,188,209,189,190,210,210,190,211,190,191,211,211,191,212,191,192,212,212,192,213,192,193,213,213,193,214,193,194,214,214,194,215,194,195,215,215,195,216,195,196,216,216,196,217,196,197,217,217,197,218,197,198,218,218,198,219,198,199,219,219,199,220,199,200,220,220,200,221,200,201,221,221,201,222,201,202,222,222,202,223,202,203,223,223,203,224,203,204,224,224,204,225,204,205,225,225,205,226,205,206,226,226,206,227,206,207,227,227,207,228,207,208,228,228,208,229,208,209,229,229,209,230,210,211,231,231,211,232,211,212,232,232,212,233,212,213,233,233,213,234,213,214,234,234,214,235,214,215,235,235,215,236,215,216,236,236,216,237,216,217,237,237,217,238,217,218,238,238,218,239,218,219,239,239,219,240,219,220,240,240,220,241,220,221,241,241,221,242,221,222,242,242,222,243,222,223,243,243,223,244,223,224,244,244,224,245,224,225,245,245,225,246,225,226,246,246,226,247,226,227,247,247,227,248,227,228,248,248,228,249,228,229,249,249,229,250,229,230,250,250,230,251,231,232,252,252,232,253,232,233,253,253,233,254,233,234,254,254,234,255,234,235,255,255,235,256,235,236,256,256,236,257,236,237,257,257,237,258,237,238,258,258,238,259,238,239,259,259,239,260,239,240,260,260,240,261,240,241,261,261,241,262,241,242,262,262,242,263,242,243,263,263,243,264,243,244,264,264,244,265,244,245,265,265,245,266,245,246,266,266,246,267,246,247,267,267,247,268,247,248,268,268,248,269,248,249,269,269,249,270,249,250,270,270,250,271,250,251,271,271,251,272,252,253,273,273,253,274,253,254,274,274,254,275,254,255,275,275,255,276,255,256,276,276,256,277,256,257,277,277,257,278,257,258,278,278,258,279,258,259,279,279,259,280,259,260,280,280,260,281,260,261,281,281,261,282,261,262,282,282,262,283,262,263,283,283,263,284,263,264,284,284,264,285,264,265,285,285,265,286,265,266,286,286,266,287,266,267,287,287,267,288,267,268,288,288,268,289,268,269,289,289,269,290,269,270,290,290,270,291,270,271,291,291,271,292,271,272,292,292,272,293,273,274,294,294,274,295,274,275,295,295,275,296,275,276,296,296,276,297,276,277,297,297,277,298,277,278,298,298,278,299,278,279,299,299,279,300,279,280,300,300,280,301,280,281,301,301,281,302,281,282,302,302,282,303,282,283,303,303,283,304,283,284,304,304,284,305,284,285,305,305,285,306,285,286,306,306,286,307,286,287,307,307,287,308,287,288,308,308,288,309,288,289,309,309,289,310,289,290,310,310,290,311,290,291,311,311,291,312,291,292,312,312,292,313,292,293,313,313,293,314,294,295,315,315,295,316,295,296,316,316,296,317,296,297,317,317,297,318,297,298,318,318,298,319,298,299,319,319,299,320,299,300,320,320,300,321,300,301,321,321,301,322,301,302,322,322,302,323,302,303,323,323,303,324,303,304,324,324,304,325,304,305,325,325,305,326,305,306,326,326,306,327,306,307,327,327,307,328,307,308,328,328,308,329,308,309,329,329,309,330,309,310,330,330,310,331,310,311,331,331,311,332,311,312,332,332,312,333,312,313,333,333,313,334,313,314,334,334,314,335,315,316,336,336,316,337,316,317,337,337,317,338,317,318,338,338,318,339,318,319,339,339,319,340,319,320,340,340,320,341,320,321,341,341,321,342,321,322,342,342,322,343,322,323,343,343,323,344,323,324,344,344,324,345,324,325,345,345,325,346,325,326,346,346,326,347,326,327,347,347,327,348,327,328,348,348,328,349,328,329,349,349,329,350,329,330,350,350,330,351,330,331,351,351,331,352,331,332,352,352,332,353,332,333,353,353,333,354,333,334,354,354,334,355,334,335,355,355,335,356,336,337,357,357,337,358,337,338,358,358,338,359,338,339,359,359,339,360,339,340,360,360,340,361,340,341,361,361,341,362,341,342,362,362,342,363,342,343,363,363,343,364,343,344,364,364,344,365,344,345,365,365,345,366,345,346,366,366,346,367,346,347,367,367,347,368,347,348,368,368,348,369,348,349,369,369,349,370,349,350,370,370,350,371,350,351,371,371,351,372,351,352,372,372,352,373,352,353,373,373,353,374,353,354,374,374,354,375,354,355,375,375,355,376,355,356,376,376,356,377,357,358,378,378,358,379,358,359,379,379,359,380,359,360,380,380,360,381,360,361,381,381,361,382,361,362,382,382,362,383,362,363,383,383,363,384,363,364,384,384,364,385,364,365,385,385,365,386,365,366,386,386,366,387,366,367,387,387,367,388,367,368,388,388,368,389,368,369,389,389,369,390,369,370,390,390,370,391,370,371,391,391,371,392,371,372,392,392,372,393,372,373,393,393,373,394,373,374,394,394,374,395,374,375,395,395,375,396,375,376,396,396,376,397,376,377,397,397,377,398,1,0,399,4,1,400,6,4,401,8,6,402,10,8,403,12,10,404,14,12,405,16,14,406,18,16,407,20,18,408,22,20,409,24,22,410,26,24,411,28,26,412,30,28,413,32,30,414,34,32,415,36,34,416,38,36,417,40,38,418,378,379,419,379,380,420,380,381,421,381,382,422,382,383,423,383,384,424,384,385,425,385,386,426,386,387,427,387,388,428,388,389,429,389,390,430,390,391,431,391,392,432,392,393,433,393,394,434,394,395,435,395,396,436,396,397,437,397,398,438],"receiveShadows":false,"infiniteDistance":false,"billboardMode":0,"visibility":1.0,"subMeshes":[{"materialIndex":0,"verticesStart":0,"verticesCount":439,"indexStart":0,"indexCount":2280}],"instances":null,"skeletonId":-1,"numBoneInfluencers":4,"applyFog":false,"lodMeshIds":null,"lodDistances":null,"lodCoverages":null,"rotation":null,"scaling":[1.0,1.0,1.0],"rotationQuaternion":[0.0,0.1736,0.0,0.9848],"actions":null,"checkCollisions":false,"pickable":true,"showBoundingBox":false,"showSubMeshesBoundingBox":false,"alphaIndex":0,"physicsImpostor":0,"physicsMass":0.0,"physicsFriction":0.0,"physicsRestitution":0.0,"name":"pSphere3","id":"3CC7A685-448C-CD8D-6923-DC9A8FDA8EAE","parentId":null,"position":[6.0,0.0,0.0],"animations":[],"autoAnimate":true,"autoAnimateFrom":1,"autoAnimateTo":200,"autoAnimateLoop":true,"metadata":{}},{"materialId":"C33371E3-49CC-50AB-9549-80BD2392C0F8","isEnabled":true,"isVisible":true,"positions":[0.1488,-0.9877,0.0483,0.1266,-0.9877,0.0919,0.2939,-0.9511,0.0955,0.25,-0.9511,0.1816,0.0919,-0.9877,0.1266,0.1816,-0.9511,0.25,0.0483,-0.9877,0.1488,0.0955,-0.9511,0.2939,0.0,-0.9877,0.1564,0.0,-0.9511,0.309,-0.0483,-0.9877,0.1488,-0.0955,-0.9511,0.2939,-0.0919,-0.9877,0.1266,-0.1816,-0.9511,0.25,-0.1266,-0.9877,0.0919,-0.25,-0.9511,0.1816,-0.1488,-0.9877,0.0483,-0.2939,-0.9511,0.0955,-0.1564,-0.9877,0.0,-0.309,-0.9511,0.0,-0.1488,-0.9877,-0.0483,-0.2939,-0.9511,-0.0955,-0.1266,-0.9877,-0.0919,-0.25,-0.9511,-0.1816,-0.0919,-0.9877,-0.1266,-0.1816,-0.9511,-0.25,-0.0483,-0.9877,-0.1488,-0.0955,-0.9511,-0.2939,0.0,-0.9877,-0.1564,0.0,-0.9511,-0.309,0.0483,-0.9877,-0.1488,0.0955,-0.9511,-0.2939,0.0919,-0.9877,-0.1266,0.1816,-0.9511,-0.25,0.1266,-0.9877,-0.0919,0.25,-0.9511,-0.1816,0.1488,-0.9877,-0.0483,0.2939,-0.9511,-0.0955,0.1564,-0.9877,0.0,0.309,-0.9511,0.0,0.1488,-0.9877,0.0483,0.2939,-0.9511,0.0955,0.4318,-0.891,0.1403,0.3673,-0.891,0.2668,0.2668,-0.891,0.3673,0.1403,-0.891,0.4318,0.0,-0.891,0.454,-0.1403,-0.891,0.4318,-0.2668,-0.891,0.3673,-0.3673,-0.891,0.2668,-0.4318,-0.891,0.1403,-0.454,-0.891,0.0,-0.4318,-0.891,-0.1403,-0.3673,-0.891,-0.2668,-0.2668,-0.891,-0.3673,-0.1403,-0.891,-0.4318,0.0,-0.891,-0.454,0.1403,-0.891,-0.4318,0.2668,-0.891,-0.3673,0.3673,-0.891,-0.2668,0.4318,-0.891,-0.1403,0.454,-0.891,0.0,0.4318,-0.891,0.1403,0.559,-0.809,0.1816,0.4755,-0.809,0.3455,0.3455,-0.809,0.4755,0.1816,-0.809,0.559,0.0,-0.809,0.5878,-0.1816,-0.809,0.559,-0.3455,-0.809,0.4755,-0.4755,-0.809,0.3455,-0.559,-0.809,0.1816,-0.5878,-0.809,0.0,-0.559,-0.809,-0.1816,-0.4755,-0.809,-0.3455,-0.3455,-0.809,-0.4755,-0.1816,-0.809,-0.559,0.0,-0.809,-0.5878,0.1816,-0.809,-0.559,0.3455,-0.809,-0.4755,0.4755,-0.809,-0.3455,0.559,-0.809,-0.1816,0.5878,-0.809,0.0,0.559,-0.809,0.1816,0.6725,-0.7071,0.2185,0.5721,-0.7071,0.4156,0.4156,-0.7071,0.5721,0.2185,-0.7071,0.6725,0.0,-0.7071,0.7071,-0.2185,-0.7071,0.6725,-0.4156,-0.7071,0.5721,-0.5721,-0.7071,0.4156,-0.6725,-0.7071,0.2185,-0.7071,-0.7071,0.0,-0.6725,-0.7071,-0.2185,-0.5721,-0.7071,-0.4156,-0.4156,-0.7071,-0.5721,-0.2185,-0.7071,-0.6725,0.0,-0.7071,-0.7071,0.2185,-0.7071,-0.6725,0.4156,-0.7071,-0.5721,0.5721,-0.7071,-0.4156,0.6725,-0.7071,-0.2185,0.7071,-0.7071,0.0,0.6725,-0.7071,0.2185,0.7694,-0.5878,0.25,0.6545,-0.5878,0.4755,0.4755,-0.5878,0.6545,0.25,-0.5878,0.7694,0.0,-0.5878,0.809,-0.25,-0.5878,0.7694,-0.4755,-0.5878,0.6545,-0.6545,-0.5878,0.4755,-0.7694,-0.5878,0.25,-0.809,-0.5878,0.0,-0.7694,-0.5878,-0.25,-0.6545,-0.5878,-0.4755,-0.4755,-0.5878,-0.6545,-0.25,-0.5878,-0.7694,0.0,-0.5878,-0.809,0.25,-0.5878,-0.7694,0.4755,-0.5878,-0.6545,0.6545,-0.5878,-0.4755,0.7694,-0.5878,-0.25,0.809,-0.5878,0.0,0.7694,-0.5878,0.25,0.8474,-0.454,0.2753,0.7208,-0.454,0.5237,0.5237,-0.454,0.7208,0.2753,-0.454,0.8474,0.0,-0.454,0.891,-0.2753,-0.454,0.8474,-0.5237,-0.454,0.7208,-0.7208,-0.454,0.5237,-0.8474,-0.454,0.2753,-0.891,-0.454,0.0,-0.8474,-0.454,-0.2753,-0.7208,-0.454,-0.5237,-0.5237,-0.454,-0.7208,-0.2753,-0.454,-0.8474,0.0,-0.454,-0.891,0.2753,-0.454,-0.8474,0.5237,-0.454,-0.7208,0.7208,-0.454,-0.5237,0.8474,-0.454,-0.2753,0.891,-0.454,0.0,0.8474,-0.454,0.2753,0.9045,-0.309,0.2939,0.7694,-0.309,0.559,0.559,-0.309,0.7694,0.2939,-0.309,0.9045,0.0,-0.309,0.9511,-0.2939,-0.309,0.9045,-0.559,-0.309,0.7694,-0.7694,-0.309,0.559,-0.9045,-0.309,0.2939,-0.9511,-0.309,0.0,-0.9045,-0.309,-0.2939,-0.7694,-0.309,-0.559,-0.559,-0.309,-0.7694,-0.2939,-0.309,-0.9045,0.0,-0.309,-0.9511,0.2939,-0.309,-0.9045,0.559,-0.309,-0.7694,0.7694,-0.309,-0.559,0.9045,-0.309,-0.2939,0.9511,-0.309,0.0,0.9045,-0.309,0.2939,0.9393,-0.1564,0.3052,0.7991,-0.1564,0.5805,0.5805,-0.1564,0.7991,0.3052,-0.1564,0.9393,0.0,-0.1564,0.9877,-0.3052,-0.1564,0.9393,-0.5805,-0.1564,0.7991,-0.7991,-0.1564,0.5805,-0.9393,-0.1564,0.3052,-0.9877,-0.1564,0.0,-0.9393,-0.1564,-0.3052,-0.7991,-0.1564,-0.5805,-0.5805,-0.1564,-0.7991,-0.3052,-0.1564,-0.9393,0.0,-0.1564,-0.9877,0.3052,-0.1564,-0.9393,0.5805,-0.1564,-0.7991,0.7991,-0.1564,-0.5805,0.9393,-0.1564,-0.3052,0.9877,-0.1564,0.0,0.9393,-0.1564,0.3052,0.9511,0.0,0.309,0.809,0.0,0.5878,0.5878,0.0,0.809,0.309,0.0,0.9511,0.0,0.0,1.0,-0.309,0.0,0.9511,-0.5878,0.0,0.809,-0.809,0.0,0.5878,-0.9511,0.0,0.309,-1.0,0.0,0.0,-0.9511,0.0,-0.309,-0.809,0.0,-0.5878,-0.5878,0.0,-0.809,-0.309,0.0,-0.9511,0.0,0.0,-1.0,0.309,0.0,-0.9511,0.5878,0.0,-0.809,0.809,0.0,-0.5878,0.9511,0.0,-0.309,1.0,0.0,0.0,0.9511,0.0,0.309,0.9393,0.1564,0.3052,0.7991,0.1564,0.5805,0.5805,0.1564,0.7991,0.3052,0.1564,0.9393,0.0,0.1564,0.9877,-0.3052,0.1564,0.9393,-0.5805,0.1564,0.7991,-0.7991,0.1564,0.5805,-0.9393,0.1564,0.3052,-0.9877,0.1564,0.0,-0.9393,0.1564,-0.3052,-0.7991,0.1564,-0.5805,-0.5805,0.1564,-0.7991,-0.3052,0.1564,-0.9393,0.0,0.1564,-0.9877,0.3052,0.1564,-0.9393,0.5805,0.1564,-0.7991,0.7991,0.1564,-0.5805,0.9393,0.1564,-0.3052,0.9877,0.1564,0.0,0.9393,0.1564,0.3052,0.9045,0.309,0.2939,0.7694,0.309,0.559,0.559,0.309,0.7694,0.2939,0.309,0.9045,0.0,0.309,0.9511,-0.2939,0.309,0.9045,-0.559,0.309,0.7694,-0.7694,0.309,0.559,-0.9045,0.309,0.2939,-0.9511,0.309,0.0,-0.9045,0.309,-0.2939,-0.7694,0.309,-0.559,-0.559,0.309,-0.7694,-0.2939,0.309,-0.9045,0.0,0.309,-0.9511,0.2939,0.309,-0.9045,0.559,0.309,-0.7694,0.7694,0.309,-0.559,0.9045,0.309,-0.2939,0.9511,0.309,0.0,0.9045,0.309,0.2939,0.8474,0.454,0.2753,0.7208,0.454,0.5237,0.5237,0.454,0.7208,0.2753,0.454,0.8474,0.0,0.454,0.891,-0.2753,0.454,0.8474,-0.5237,0.454,0.7208,-0.7208,0.454,0.5237,-0.8474,0.454,0.2753,-0.891,0.454,0.0,-0.8474,0.454,-0.2753,-0.7208,0.454,-0.5237,-0.5237,0.454,-0.7208,-0.2753,0.454,-0.8474,0.0,0.454,-0.891,0.2753,0.454,-0.8474,0.5237,0.454,-0.7208,0.7208,0.454,-0.5237,0.8474,0.454,-0.2753,0.891,0.454,0.0,0.8474,0.454,0.2753,0.7694,0.5878,0.25,0.6545,0.5878,0.4755,0.4755,0.5878,0.6545,0.25,0.5878,0.7694,0.0,0.5878,0.809,-0.25,0.5878,0.7694,-0.4755,0.5878,0.6545,-0.6545,0.5878,0.4755,-0.7694,0.5878,0.25,-0.809,0.5878,0.0,-0.7694,0.5878,-0.25,-0.6545,0.5878,-0.4755,-0.4755,0.5878,-0.6545,-0.25,0.5878,-0.7694,0.0,0.5878,-0.809,0.25,0.5878,-0.7694,0.4755,0.5878,-0.6545,0.6545,0.5878,-0.4755,0.7694,0.5878,-0.25,0.809,0.5878,0.0,0.7694,0.5878,0.25,0.6725,0.7071,0.2185,0.5721,0.7071,0.4156,0.4156,0.7071,0.5721,0.2185,0.7071,0.6725,0.0,0.7071,0.7071,-0.2185,0.7071,0.6725,-0.4156,0.7071,0.5721,-0.5721,0.7071,0.4156,-0.6725,0.7071,0.2185,-0.7071,0.7071,0.0,-0.6725,0.7071,-0.2185,-0.5721,0.7071,-0.4156,-0.4156,0.7071,-0.5721,-0.2185,0.7071,-0.6725,0.0,0.7071,-0.7071,0.2185,0.7071,-0.6725,0.4156,0.7071,-0.5721,0.5721,0.7071,-0.4156,0.6725,0.7071,-0.2185,0.7071,0.7071,0.0,0.6725,0.7071,0.2185,0.559,0.809,0.1816,0.4755,0.809,0.3455,0.3455,0.809,0.4755,0.1816,0.809,0.559,0.0,0.809,0.5878,-0.1816,0.809,0.559,-0.3455,0.809,0.4755,-0.4755,0.809,0.3455,-0.559,0.809,0.1816,-0.5878,0.809,0.0,-0.559,0.809,-0.1816,-0.4755,0.809,-0.3455,-0.3455,0.809,-0.4755,-0.1816,0.809,-0.559,0.0,0.809,-0.5878,0.1816,0.809,-0.559,0.3455,0.809,-0.4755,0.4755,0.809,-0.3455,0.559,0.809,-0.1816,0.5878,0.809,0.0,0.559,0.809,0.1816,0.4318,0.891,0.1403,0.3673,0.891,0.2668,0.2668,0.891,0.3673,0.1403,0.891,0.4318,0.0,0.891,0.454,-0.1403,0.891,0.4318,-0.2668,0.891,0.3673,-0.3673,0.891,0.2668,-0.4318,0.891,0.1403,-0.454,0.891,0.0,-0.4318,0.891,-0.1403,-0.3673,0.891,-0.2668,-0.2668,0.891,-0.3673,-0.1403,0.891,-0.4318,0.0,0.891,-0.454,0.1403,0.891,-0.4318,0.2668,0.891,-0.3673,0.3673,0.891,-0.2668,0.4318,0.891,-0.1403,0.454,0.891,0.0,0.4318,0.891,0.1403,0.2939,0.9511,0.0955,0.25,0.9511,0.1816,0.1816,0.9511,0.25,0.0955,0.9511,0.2939,0.0,0.9511,0.309,-0.0955,0.9511,0.2939,-0.1816,0.9511,0.25,-0.25,0.9511,0.1816,-0.2939,0.9511,0.0955,-0.309,0.9511,0.0,-0.2939,0.9511,-0.0955,-0.25,0.9511,-0.1816,-0.1816,0.9511,-0.25,-0.0955,0.9511,-0.2939,0.0,0.9511,-0.309,0.0955,0.9511,-0.2939,0.1816,0.9511,-0.25,0.25,0.9511,-0.1816,0.2939,0.9511,-0.0955,0.309,0.9511,0.0,0.2939,0.9511,0.0955,0.1488,0.9877,0.0483,0.1266,0.9877,0.0919,0.0919,0.9877,0.1266,0.0483,0.9877,0.1488,0.0,0.9877,0.1564,-0.0483,0.9877,0.1488,-0.0919,0.9877,0.1266,-0.1266,0.9877,0.0919,-0.1488,0.9877,0.0483,-0.1564,0.9877,0.0,-0.1488,0.9877,-0.0483,-0.1266,0.9877,-0.0919,-0.0919,0.9877,-0.1266,-0.0483,0.9877,-0.1488,0.0,0.9877,-0.1564,0.0483,0.9877,-0.1488,0.0919,0.9877,-0.1266,0.1266,0.9877,-0.0919,0.1488,0.9877,-0.0483,0.1564,0.9877,0.0,0.1488,0.9877,0.0483,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0],"normals":[0.1906,-0.9797,0.0619,0.1621,-0.9797,0.1178,0.3173,-0.9427,0.1031,0.2699,-0.9427,0.1961,0.1178,-0.9797,0.1621,0.1961,-0.9427,0.2699,0.0619,-0.9797,0.1906,0.1031,-0.9427,0.3173,0.0,-0.9797,0.2004,0.0,-0.9427,0.3336,-0.0619,-0.9797,0.1906,-0.1031,-0.9427,0.3173,-0.1178,-0.9797,0.1621,-0.1961,-0.9427,0.2699,-0.1621,-0.9797,0.1178,-0.2699,-0.9427,0.1961,-0.1906,-0.9797,0.0619,-0.3173,-0.9427,0.1031,-0.2004,-0.9797,0.0,-0.3336,-0.9427,0.0,-0.1906,-0.9797,-0.0619,-0.3173,-0.9427,-0.1031,-0.1621,-0.9797,-0.1178,-0.2699,-0.9427,-0.1961,-0.1178,-0.9797,-0.1621,-0.1961,-0.9427,-0.2699,-0.0619,-0.9797,-0.1906,-0.1031,-0.9427,-0.3173,0.0,-0.9797,-0.2004,0.0,-0.9427,-0.3336,0.0619,-0.9797,-0.1906,0.1031,-0.9427,-0.3173,0.1178,-0.9797,-0.1621,0.1961,-0.9427,-0.2699,0.1621,-0.9797,-0.1178,0.2699,-0.9427,-0.1961,0.1906,-0.9797,-0.0619,0.3173,-0.9427,-0.1031,0.2004,-0.9797,0.0,0.3336,-0.9427,0.0,0.1906,-0.9797,0.0619,0.3173,-0.9427,0.1031,0.4477,-0.8823,0.1455,0.3808,-0.8823,0.2767,0.2767,-0.8823,0.3808,0.1455,-0.8823,0.4477,0.0,-0.8823,0.4708,-0.1455,-0.8823,0.4477,-0.2767,-0.8823,0.3808,-0.3808,-0.8823,0.2767,-0.4477,-0.8823,0.1455,-0.4708,-0.8823,0.0,-0.4477,-0.8823,-0.1455,-0.3808,-0.8823,-0.2767,-0.2767,-0.8823,-0.3808,-0.1455,-0.8823,-0.4477,0.0,-0.8823,-0.4708,0.1455,-0.8823,-0.4477,0.2767,-0.8823,-0.3808,0.3808,-0.8823,-0.2767,0.4477,-0.8823,-0.1455,0.4708,-0.8823,0.0,0.4477,-0.8823,0.1455,0.5703,-0.8003,0.1853,0.4851,-0.8003,0.3525,0.3525,-0.8003,0.4851,0.1853,-0.8003,0.5703,0.0,-0.8003,0.5997,-0.1853,-0.8003,0.5703,-0.3525,-0.8003,0.4851,-0.4851,-0.8003,0.3525,-0.5703,-0.8003,0.1853,-0.5997,-0.8003,0.0,-0.5703,-0.8003,-0.1853,-0.4851,-0.8003,-0.3525,-0.3525,-0.8003,-0.4851,-0.1853,-0.8003,-0.5703,0.0,-0.8003,-0.5997,0.1853,-0.8003,-0.5703,0.3525,-0.8003,-0.4851,0.4851,-0.8003,-0.3525,0.5703,-0.8003,-0.1853,0.5997,-0.8003,0.0,0.5703,-0.8003,0.1853,0.6803,-0.6988,0.221,0.5787,-0.6988,0.4205,0.4205,-0.6988,0.5787,0.221,-0.6988,0.6803,0.0,-0.6988,0.7153,-0.221,-0.6988,0.6803,-0.4205,-0.6988,0.5787,-0.5787,-0.6988,0.4205,-0.6803,-0.6988,0.221,-0.7153,-0.6988,0.0,-0.6803,-0.6988,-0.221,-0.5787,-0.6988,-0.4205,-0.4205,-0.6988,-0.5787,-0.221,-0.6988,-0.6803,0.0,-0.6988,-0.7153,0.221,-0.6988,-0.6803,0.4205,-0.6988,-0.5787,0.5787,-0.6988,-0.4205,0.6803,-0.6988,-0.221,0.7153,-0.6988,0.0,0.6803,-0.6988,0.221,0.7745,-0.5804,0.2516,0.6588,-0.5804,0.4787,0.4787,-0.5804,0.6588,0.2516,-0.5804,0.7745,0.0,-0.5804,0.8143,-0.2516,-0.5804,0.7745,-0.4787,-0.5804,0.6588,-0.6588,-0.5804,0.4787,-0.7745,-0.5804,0.2516,-0.8143,-0.5804,0.0,-0.7745,-0.5804,-0.2516,-0.6588,-0.5804,-0.4787,-0.4787,-0.5804,-0.6588,-0.2516,-0.5804,-0.7745,0.0,-0.5804,-0.8143,0.2516,-0.5804,-0.7745,0.4787,-0.5804,-0.6588,0.6588,-0.5804,-0.4787,0.7745,-0.5804,-0.2516,0.8143,-0.5804,0.0,0.7745,-0.5804,0.2516,0.8503,-0.448,0.2763,0.7233,-0.448,0.5255,0.5255,-0.448,0.7233,0.2763,-0.448,0.8503,0.0,-0.448,0.894,-0.2763,-0.448,0.8503,-0.5255,-0.448,0.7233,-0.7233,-0.448,0.5255,-0.8503,-0.448,0.2763,-0.894,-0.448,0.0,-0.8503,-0.448,-0.2763,-0.7233,-0.448,-0.5255,-0.5255,-0.448,-0.7233,-0.2763,-0.448,-0.8503,0.0,-0.448,-0.894,0.2763,-0.448,-0.8503,0.5255,-0.448,-0.7233,0.7233,-0.448,-0.5255,0.8503,-0.448,-0.2763,0.894,-0.448,0.0,0.8503,-0.448,0.2763,0.9058,-0.3048,0.2943,0.7705,-0.3048,0.5598,0.5598,-0.3048,0.7705,0.2943,-0.3048,0.9058,0.0,-0.3048,0.9524,-0.2943,-0.3048,0.9058,-0.5598,-0.3048,0.7705,-0.7705,-0.3048,0.5598,-0.9058,-0.3048,0.2943,-0.9524,-0.3048,0.0,-0.9058,-0.3048,-0.2943,-0.7705,-0.3048,-0.5598,-0.5598,-0.3048,-0.7705,-0.2943,-0.3048,-0.9058,0.0,-0.3048,-0.9524,0.2943,-0.3048,-0.9058,0.5598,-0.3048,-0.7705,0.7705,-0.3048,-0.5598,0.9058,-0.3048,-0.2943,0.9524,-0.3048,0.0,0.9058,-0.3048,0.2943,0.9397,-0.1542,0.3053,0.7993,-0.1542,0.5808,0.5808,-0.1542,0.7993,0.3053,-0.1542,0.9397,0.0,-0.1542,0.988,-0.3053,-0.1542,0.9397,-0.5808,-0.1542,0.7993,-0.7993,-0.1542,0.5808,-0.9397,-0.1542,0.3053,-0.988,-0.1542,0.0,-0.9397,-0.1542,-0.3053,-0.7993,-0.1542,-0.5808,-0.5808,-0.1542,-0.7993,-0.3053,-0.1542,-0.9397,0.0,-0.1542,-0.988,0.3053,-0.1542,-0.9397,0.5808,-0.1542,-0.7993,0.7993,-0.1542,-0.5808,0.9397,-0.1542,-0.3053,0.988,-0.1542,0.0,0.9397,-0.1542,0.3053,0.9511,0.0,0.309,0.809,0.0,0.5878,0.5878,0.0,0.809,0.309,0.0,0.9511,0.0,0.0,1.0,-0.309,0.0,0.9511,-0.5878,0.0,0.809,-0.809,0.0,0.5878,-0.9511,0.0,0.309,-1.0,0.0,0.0,-0.9511,0.0,-0.309,-0.809,0.0,-0.5878,-0.5878,0.0,-0.809,-0.309,0.0,-0.9511,0.0,0.0,-1.0,0.309,0.0,-0.9511,0.5878,0.0,-0.809,0.809,0.0,-0.5878,0.9511,0.0,-0.309,1.0,0.0,0.0,0.9511,0.0,0.309,0.9397,0.1542,0.3053,0.7993,0.1542,0.5808,0.5808,0.1542,0.7993,0.3053,0.1542,0.9397,0.0,0.1542,0.988,-0.3053,0.1542,0.9397,-0.5808,0.1542,0.7993,-0.7993,0.1542,0.5808,-0.9397,0.1542,0.3053,-0.988,0.1542,0.0,-0.9397,0.1542,-0.3053,-0.7993,0.1542,-0.5808,-0.5808,0.1542,-0.7993,-0.3053,0.1542,-0.9397,0.0,0.1542,-0.988,0.3053,0.1542,-0.9397,0.5808,0.1542,-0.7993,0.7993,0.1542,-0.5808,0.9397,0.1542,-0.3053,0.988,0.1542,0.0,0.9397,0.1542,0.3053,0.9058,0.3048,0.2943,0.7705,0.3048,0.5598,0.5598,0.3048,0.7705,0.2943,0.3048,0.9058,0.0,0.3048,0.9524,-0.2943,0.3048,0.9058,-0.5598,0.3048,0.7705,-0.7705,0.3048,0.5598,-0.9058,0.3048,0.2943,-0.9524,0.3048,0.0,-0.9058,0.3048,-0.2943,-0.7705,0.3048,-0.5598,-0.5598,0.3048,-0.7705,-0.2943,0.3048,-0.9058,0.0,0.3048,-0.9524,0.2943,0.3048,-0.9058,0.5598,0.3048,-0.7705,0.7705,0.3048,-0.5598,0.9058,0.3048,-0.2943,0.9524,0.3048,0.0,0.9058,0.3048,0.2943,0.8503,0.448,0.2763,0.7233,0.448,0.5255,0.5255,0.448,0.7233,0.2763,0.448,0.8503,0.0,0.448,0.894,-0.2763,0.448,0.8503,-0.5255,0.448,0.7233,-0.7233,0.448,0.5255,-0.8503,0.448,0.2763,-0.894,0.448,0.0,-0.8503,0.448,-0.2763,-0.7233,0.448,-0.5255,-0.5255,0.448,-0.7233,-0.2763,0.448,-0.8503,0.0,0.448,-0.894,0.2763,0.448,-0.8503,0.5255,0.448,-0.7233,0.7233,0.448,-0.5255,0.8503,0.448,-0.2763,0.894,0.448,0.0,0.8503,0.448,0.2763,0.7745,0.5804,0.2516,0.6588,0.5804,0.4787,0.4787,0.5804,0.6588,0.2516,0.5804,0.7745,0.0,0.5804,0.8143,-0.2516,0.5804,0.7745,-0.4787,0.5804,0.6588,-0.6588,0.5804,0.4787,-0.7745,0.5804,0.2516,-0.8143,0.5804,0.0,-0.7745,0.5804,-0.2516,-0.6588,0.5804,-0.4787,-0.4787,0.5804,-0.6588,-0.2516,0.5804,-0.7745,0.0,0.5804,-0.8143,0.2516,0.5804,-0.7745,0.4787,0.5804,-0.6588,0.6588,0.5804,-0.4787,0.7745,0.5804,-0.2516,0.8143,0.5804,0.0,0.7745,0.5804,0.2516,0.6803,0.6988,0.221,0.5787,0.6988,0.4205,0.4205,0.6988,0.5787,0.221,0.6988,0.6803,0.0,0.6988,0.7153,-0.221,0.6988,0.6803,-0.4205,0.6988,0.5787,-0.5787,0.6988,0.4205,-0.6803,0.6988,0.221,-0.7153,0.6988,0.0,-0.6803,0.6988,-0.221,-0.5787,0.6988,-0.4205,-0.4205,0.6988,-0.5787,-0.221,0.6988,-0.6803,0.0,0.6988,-0.7153,0.221,0.6988,-0.6803,0.4205,0.6988,-0.5787,0.5787,0.6988,-0.4205,0.6803,0.6988,-0.221,0.7153,0.6988,0.0,0.6803,0.6988,0.221,0.5703,0.8003,0.1853,0.4851,0.8003,0.3525,0.3525,0.8003,0.4851,0.1853,0.8003,0.5703,0.0,0.8003,0.5997,-0.1853,0.8003,0.5703,-0.3525,0.8003,0.4851,-0.4851,0.8003,0.3525,-0.5703,0.8003,0.1853,-0.5997,0.8003,0.0,-0.5703,0.8003,-0.1853,-0.4851,0.8003,-0.3525,-0.3525,0.8003,-0.4851,-0.1853,0.8003,-0.5703,0.0,0.8003,-0.5997,0.1853,0.8003,-0.5703,0.3525,0.8003,-0.4851,0.4851,0.8003,-0.3525,0.5703,0.8003,-0.1853,0.5997,0.8003,0.0,0.5703,0.8003,0.1853,0.4477,0.8823,0.1455,0.3808,0.8823,0.2767,0.2767,0.8823,0.3808,0.1455,0.8823,0.4477,0.0,0.8823,0.4708,-0.1455,0.8823,0.4477,-0.2767,0.8823,0.3808,-0.3808,0.8823,0.2767,-0.4477,0.8823,0.1455,-0.4708,0.8823,0.0,-0.4477,0.8823,-0.1455,-0.3808,0.8823,-0.2767,-0.2767,0.8823,-0.3808,-0.1455,0.8823,-0.4477,0.0,0.8823,-0.4708,0.1455,0.8823,-0.4477,0.2767,0.8823,-0.3808,0.3808,0.8823,-0.2767,0.4477,0.8823,-0.1455,0.4708,0.8823,0.0,0.4477,0.8823,0.1455,0.3173,0.9427,0.1031,0.2699,0.9427,0.1961,0.1961,0.9427,0.2699,0.1031,0.9427,0.3173,0.0,0.9427,0.3336,-0.1031,0.9427,0.3173,-0.1961,0.9427,0.2699,-0.2699,0.9427,0.1961,-0.3173,0.9427,0.1031,-0.3336,0.9427,0.0,-0.3173,0.9427,-0.1031,-0.2699,0.9427,-0.1961,-0.1961,0.9427,-0.2699,-0.1031,0.9427,-0.3173,0.0,0.9427,-0.3336,0.1031,0.9427,-0.3173,0.1961,0.9427,-0.2699,0.2699,0.9427,-0.1961,0.3173,0.9427,-0.1031,0.3336,0.9427,0.0,0.3173,0.9427,0.1031,0.1906,0.9797,0.0619,0.1621,0.9797,0.1178,0.1178,0.9797,0.1621,0.0619,0.9797,0.1906,0.0,0.9797,0.2004,-0.0619,0.9797,0.1906,-0.1178,0.9797,0.1621,-0.1621,0.9797,0.1178,-0.1906,0.9797,0.0619,-0.2004,0.9797,0.0,-0.1906,0.9797,-0.0619,-0.1621,0.9797,-0.1178,-0.1178,0.9797,-0.1621,-0.0619,0.9797,-0.1906,0.0,0.9797,-0.2004,0.0619,0.9797,-0.1906,0.1178,0.9797,-0.1621,0.1621,0.9797,-0.1178,0.1906,0.9797,-0.0619,0.2004,0.9797,0.0,0.1906,0.9797,0.0619,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0],"tangents":[-0.4482,-0.0307,0.8934,-1.0,-0.5629,0.0062,0.8265,-1.0,-0.438,-0.0493,0.8976,-1.0,-0.5878,0.0,0.809,-1.0,-0.7908,0.0062,0.6121,-1.0,-0.809,0.0,0.5878,-1.0,-0.9412,0.0062,0.3378,-1.0,-0.9511,0.0,0.309,-1.0,-0.9995,0.0062,0.0304,-1.0,-1.0,0.0,0.0,-1.0,-0.96,0.0062,-0.28,-1.0,-0.9511,0.0,-0.309,-1.0,-0.8265,0.0062,-0.5629,-1.0,-0.809,0.0,-0.5878,-1.0,-0.6121,0.0062,-0.7908,-1.0,-0.5878,0.0,-0.809,-1.0,-0.3378,0.0062,-0.9412,-1.0,-0.309,0.0,-0.9511,-1.0,-0.0304,0.0062,-0.9995,-1.0,0.0,0.0,-1.0,-1.0,0.28,0.0062,-0.96,-1.0,0.309,0.0,-0.9511,-1.0,0.5629,0.0062,-0.8265,-1.0,0.5878,0.0,-0.809,-1.0,0.7908,0.0062,-0.6121,-1.0,0.809,0.0,-0.5878,-1.0,0.9412,0.0062,-0.3378,-1.0,0.9511,0.0,-0.309,-1.0,0.9995,0.0062,-0.0304,-1.0,1.0,0.0,0.0,-1.0,0.96,0.0062,0.28,-1.0,0.9511,0.0,0.309,-1.0,0.8265,0.0062,0.5629,-1.0,0.809,0.0,0.5878,-1.0,0.6121,0.0062,0.7908,-1.0,0.5878,0.0,0.809,-1.0,0.3378,0.0062,0.9412,-1.0,0.309,0.0,0.9511,-1.0,0.0304,0.0062,0.9995,-1.0,0.0,0.0,1.0,-1.0,-0.1625,0.0307,0.9862,-1.0,-0.1732,0.0493,0.9836,-1.0,-0.4222,-0.0651,0.9042,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.1899,0.0651,0.9796,-1.0,-0.4023,-0.0754,0.9124,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.2109,0.0754,0.9746,-1.0,-0.3802,-0.0787,0.9215,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.234,0.0787,0.969,-1.0,-0.3582,-0.0745,0.9306,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.2572,0.0745,0.9635,-1.0,-0.3384,-0.0633,0.9389,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.2781,0.0633,0.9585,-1.0,-0.3226,-0.0459,0.9454,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.2947,0.0459,0.9545,-1.0,-0.3125,-0.0241,0.9496,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.3053,0.0241,0.9519,-1.0,-0.309,0.0,0.9511,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.309,0.0,0.9511,-1.0,-0.3125,0.0241,0.9496,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.3053,-0.0241,0.9519,-1.0,-0.3226,0.0459,0.9454,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.2947,-0.0459,0.9545,-1.0,-0.3384,0.0633,0.9389,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.2781,-0.0633,0.9585,-1.0,-0.3582,0.0745,0.9306,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.2572,-0.0745,0.9635,-1.0,-0.3802,0.0787,0.9215,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.234,-0.0787,0.969,-1.0,-0.4023,0.0754,0.9124,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.2109,-0.0754,0.9746,-1.0,-0.4222,0.0651,0.9042,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.1899,-0.0651,0.9796,-1.0,-0.438,0.0493,0.8976,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.1732,-0.0493,0.9836,-1.0,-0.4482,0.0307,0.8934,-1.0,-0.6121,0.0062,0.7908,-1.0,-0.8265,0.0062,0.5629,-1.0,-0.96,0.0062,0.28,-1.0,-0.9995,0.0062,-0.0304,-1.0,-0.9412,0.0062,-0.3378,-1.0,-0.7908,0.0062,-0.6121,-1.0,-0.5629,0.0062,-0.8265,-1.0,-0.28,0.0062,-0.96,-1.0,0.0304,0.0062,-0.9995,-1.0,0.3378,0.0062,-0.9412,-1.0,0.6121,0.0062,-0.7908,-1.0,0.8265,0.0062,-0.5629,-1.0,0.96,0.0062,-0.28,-1.0,0.9995,0.0062,0.0304,-1.0,0.9412,0.0062,0.3378,-1.0,0.7908,0.0062,0.6121,-1.0,0.5629,0.0062,0.8265,-1.0,0.28,0.0062,0.96,-1.0,-0.0304,0.0062,0.9995,-1.0,-0.1625,-0.0307,0.9862,-1.0,-0.454,0.0,0.891,-1.0,-0.7071,0.0,0.7071,-1.0,-0.891,0.0,0.454,-1.0,-0.9877,0.0,0.1564,-1.0,-0.9877,0.0,-0.1564,-1.0,-0.891,0.0,-0.454,-1.0,-0.7071,0.0,-0.7071,-1.0,-0.454,0.0,-0.891,-1.0,-0.1564,0.0,-0.9877,-1.0,0.1564,0.0,-0.9877,-1.0,0.454,0.0,-0.891,-1.0,0.7071,0.0,-0.7071,-1.0,0.891,0.0,-0.454,-1.0,0.9877,0.0,-0.1564,-1.0,0.9877,0.0,0.1564,-1.0,0.891,0.0,0.454,-1.0,0.7071,0.0,0.7071,-1.0,0.454,0.0,0.891,-1.0,0.1564,0.0,0.9877,-1.0,-0.1564,0.0,0.9877,-1.0,-0.454,0.0,0.891,-1.0,-0.7071,0.0,0.7071,-1.0,-0.891,0.0,0.454,-1.0,-0.9877,0.0,0.1564,-1.0,-0.9877,0.0,-0.1564,-1.0,-0.891,0.0,-0.454,-1.0,-0.7071,0.0,-0.7071,-1.0,-0.454,0.0,-0.891,-1.0,-0.1564,0.0,-0.9877,-1.0,0.1564,0.0,-0.9877,-1.0,0.454,0.0,-0.891,-1.0,0.7071,0.0,-0.7071,-1.0,0.891,0.0,-0.454,-1.0,0.9877,0.0,-0.1564,-1.0,0.9877,0.0,0.1564,-1.0,0.891,0.0,0.454,-1.0,0.7071,0.0,0.7071,-1.0,0.454,0.0,0.891,-1.0,0.1564,0.0,0.9877,-1.0,-0.1564,0.0,0.9877,-1.0],"uvs":[0.0,0.05,0.05,0.05,0.0,0.1,0.05,0.1,0.1,0.05,0.1,0.1,0.15,0.05,0.15,0.1,0.2,0.05,0.2,0.1,0.25,0.05,0.25,0.1,0.3,0.05,0.3,0.1,0.35,0.05,0.35,0.1,0.4,0.05,0.4,0.1,0.45,0.05,0.45,0.1,0.5,0.05,0.5,0.1,0.55,0.05,0.55,0.1,0.6,0.05,0.6,0.1,0.65,0.05,0.65,0.1,0.7,0.05,0.7,0.1,0.75,0.05,0.75,0.1,0.8,0.05,0.8,0.1,0.85,0.05,0.85,0.1,0.9,0.05,0.9,0.1,0.95,0.05,0.95,0.1,1.0,0.05,1.0,0.1,0.0,0.15,0.05,0.15,0.1,0.15,0.15,0.15,0.2,0.15,0.25,0.15,0.3,0.15,0.35,0.15,0.4,0.15,0.45,0.15,0.5,0.15,0.55,0.15,0.6,0.15,0.65,0.15,0.7,0.15,0.75,0.15,0.8,0.15,0.85,0.15,0.9,0.15,0.95,0.15,1.0,0.15,0.0,0.2,0.05,0.2,0.1,0.2,0.15,0.2,0.2,0.2,0.25,0.2,0.3,0.2,0.35,0.2,0.4,0.2,0.45,0.2,0.5,0.2,0.55,0.2,0.6,0.2,0.65,0.2,0.7,0.2,0.75,0.2,0.8,0.2,0.85,0.2,0.9,0.2,0.95,0.2,1.0,0.2,0.0,0.25,0.05,0.25,0.1,0.25,0.15,0.25,0.2,0.25,0.25,0.25,0.3,0.25,0.35,0.25,0.4,0.25,0.45,0.25,0.5,0.25,0.55,0.25,0.6,0.25,0.65,0.25,0.7,0.25,0.75,0.25,0.8,0.25,0.85,0.25,0.9,0.25,0.95,0.25,1.0,0.25,0.0,0.3,0.05,0.3,0.1,0.3,0.15,0.3,0.2,0.3,0.25,0.3,0.3,0.3,0.35,0.3,0.4,0.3,0.45,0.3,0.5,0.3,0.55,0.3,0.6,0.3,0.65,0.3,0.7,0.3,0.75,0.3,0.8,0.3,0.85,0.3,0.9,0.3,0.95,0.3,1.0,0.3,0.0,0.35,0.05,0.35,0.1,0.35,0.15,0.35,0.2,0.35,0.25,0.35,0.3,0.35,0.35,0.35,0.4,0.35,0.45,0.35,0.5,0.35,0.55,0.35,0.6,0.35,0.65,0.35,0.7,0.35,0.75,0.35,0.8,0.35,0.85,0.35,0.9,0.35,0.95,0.35,1.0,0.35,0.0,0.4,0.05,0.4,0.1,0.4,0.15,0.4,0.2,0.4,0.25,0.4,0.3,0.4,0.35,0.4,0.4,0.4,0.45,0.4,0.5,0.4,0.55,0.4,0.6,0.4,0.65,0.4,0.7,0.4,0.75,0.4,0.8,0.4,0.85,0.4,0.9,0.4,0.95,0.4,1.0,0.4,0.0,0.45,0.05,0.45,0.1,0.45,0.15,0.45,0.2,0.45,0.25,0.45,0.3,0.45,0.35,0.45,0.4,0.45,0.45,0.45,0.5,0.45,0.55,0.45,0.6,0.45,0.65,0.45,0.7,0.45,0.75,0.45,0.8,0.45,0.85,0.45,0.9,0.45,0.95,0.45,1.0,0.45,0.0,0.5,0.05,0.5,0.1,0.5,0.15,0.5,0.2,0.5,0.25,0.5,0.3,0.5,0.35,0.5,0.4,0.5,0.45,0.5,0.5,0.5,0.55,0.5,0.6,0.5,0.65,0.5,0.7,0.5,0.75,0.5,0.8,0.5,0.85,0.5,0.9,0.5,0.95,0.5,1.0,0.5,0.0,0.55,0.05,0.55,0.1,0.55,0.15,0.55,0.2,0.55,0.25,0.55,0.3,0.55,0.35,0.55,0.4,0.55,0.45,0.55,0.5,0.55,0.55,0.55,0.6,0.55,0.65,0.55,0.7,0.55,0.75,0.55,0.8,0.55,0.85,0.55,0.9,0.55,0.95,0.55,1.0,0.55,0.0,0.6,0.05,0.6,0.1,0.6,0.15,0.6,0.2,0.6,0.25,0.6,0.3,0.6,0.35,0.6,0.4,0.6,0.45,0.6,0.5,0.6,0.55,0.6,0.6,0.6,0.65,0.6,0.7,0.6,0.75,0.6,0.8,0.6,0.85,0.6,0.9,0.6,0.95,0.6,1.0,0.6,0.0,0.65,0.05,0.65,0.1,0.65,0.15,0.65,0.2,0.65,0.25,0.65,0.3,0.65,0.35,0.65,0.4,0.65,0.45,0.65,0.5,0.65,0.55,0.65,0.6,0.65,0.65,0.65,0.7,0.65,0.75,0.65,0.8,0.65,0.85,0.65,0.9,0.65,0.95,0.65,1.0,0.65,0.0,0.7,0.05,0.7,0.1,0.7,0.15,0.7,0.2,0.7,0.25,0.7,0.3,0.7,0.35,0.7,0.4,0.7,0.45,0.7,0.5,0.7,0.55,0.7,0.6,0.7,0.65,0.7,0.7,0.7,0.75,0.7,0.8,0.7,0.85,0.7,0.9,0.7,0.95,0.7,1.0,0.7,0.0,0.75,0.05,0.75,0.1,0.75,0.15,0.75,0.2,0.75,0.25,0.75,0.3,0.75,0.35,0.75,0.4,0.75,0.45,0.75,0.5,0.75,0.55,0.75,0.6,0.75,0.65,0.75,0.7,0.75,0.75,0.75,0.8,0.75,0.85,0.75,0.9,0.75,0.95,0.75,1.0,0.75,0.0,0.8,0.05,0.8,0.1,0.8,0.15,0.8,0.2,0.8,0.25,0.8,0.3,0.8,0.35,0.8,0.4,0.8,0.45,0.8,0.5,0.8,0.55,0.8,0.6,0.8,0.65,0.8,0.7,0.8,0.75,0.8,0.8,0.8,0.85,0.8,0.9,0.8,0.95,0.8,1.0,0.8,0.0,0.85,0.05,0.85,0.1,0.85,0.15,0.85,0.2,0.85,0.25,0.85,0.3,0.85,0.35,0.85,0.4,0.85,0.45,0.85,0.5,0.85,0.55,0.85,0.6,0.85,0.65,0.85,0.7,0.85,0.75,0.85,0.8,0.85,0.85,0.85,0.9,0.85,0.95,0.85,1.0,0.85,0.0,0.9,0.05,0.9,0.1,0.9,0.15,0.9,0.2,0.9,0.25,0.9,0.3,0.9,0.35,0.9,0.4,0.9,0.45,0.9,0.5,0.9,0.55,0.9,0.6,0.9,0.65,0.9,0.7,0.9,0.75,0.9,0.8,0.9,0.85,0.9,0.9,0.9,0.95,0.9,1.0,0.9,0.0,0.95,0.05,0.95,0.1,0.95,0.15,0.95,0.2,0.95,0.25,0.95,0.3,0.95,0.35,0.95,0.4,0.95,0.45,0.95,0.5,0.95,0.55,0.95,0.6,0.95,0.65,0.95,0.7,0.95,0.75,0.95,0.8,0.95,0.85,0.95,0.9,0.95,0.95,0.95,1.0,0.95,0.025,0.0,0.075,0.0,0.125,0.0,0.175,0.0,0.225,0.0,0.275,0.0,0.325,0.0,0.375,0.0,0.425,0.0,0.475,0.0,0.525,0.0,0.575,0.0,0.625,0.0,0.675,0.0,0.725,0.0,0.775,0.0,0.825,0.0,0.875,0.0,0.925,0.0,0.975,0.0,0.025,1.0,0.075,1.0,0.125,1.0,0.175,1.0,0.225,1.0,0.275,1.0,0.325,1.0,0.375,1.0,0.425,1.0,0.475,1.0,0.525,1.0,0.575,1.0,0.625,1.0,0.675,1.0,0.725,1.0,0.775,1.0,0.825,1.0,0.875,1.0,0.925,1.0,0.975,1.0],"uvs2":null,"colors":null,"hasVertexAlpha":false,"matricesIndices":null,"matricesWeights":null,"matricesIndicesExtra":null,"matricesWeightsExtra":null,"indices":[0,1,2,2,1,3,1,4,3,3,4,5,4,6,5,5,6,7,6,8,7,7,8,9,8,10,9,9,10,11,10,12,11,11,12,13,12,14,13,13,14,15,14,16,15,15,16,17,16,18,17,17,18,19,18,20,19,19,20,21,20,22,21,21,22,23,22,24,23,23,24,25,24,26,25,25,26,27,26,28,27,27,28,29,28,30,29,29,30,31,30,32,31,31,32,33,32,34,33,33,34,35,34,36,35,35,36,37,36,38,37,37,38,39,38,40,39,39,40,41,2,3,42,42,3,43,3,5,43,43,5,44,5,7,44,44,7,45,7,9,45,45,9,46,9,11,46,46,11,47,11,13,47,47,13,48,13,15,48,48,15,49,15,17,49,49,17,50,17,19,50,50,19,51,19,21,51,51,21,52,21,23,52,52,23,53,23,25,53,53,25,54,25,27,54,54,27,55,27,29,55,55,29,56,29,31,56,56,31,57,31,33,57,57,33,58,33,35,58,58,35,59,35,37,59,59,37,60,37,39,60,60,39,61,39,41,61,61,41,62,42,43,63,63,43,64,43,44,64,64,44,65,44,45,65,65,45,66,45,46,66,66,46,67,46,47,67,67,47,68,47,48,68,68,48,69,48,49,69,69,49,70,49,50,70,70,50,71,50,51,71,71,51,72,51,52,72,72,52,73,52,53,73,73,53,74,53,54,74,74,54,75,54,55,75,75,55,76,55,56,76,76,56,77,56,57,77,77,57,78,57,58,78,78,58,79,58,59,79,79,59,80,59,60,80,80,60,81,60,61,81,81,61,82,61,62,82,82,62,83,63,64,84,84,64,85,64,65,85,85,65,86,65,66,86,86,66,87,66,67,87,87,67,88,67,68,88,88,68,89,68,69,89,89,69,90,69,70,90,90,70,91,70,71,91,91,71,92,71,72,92,92,72,93,72,73,93,93,73,94,73,74,94,94,74,95,74,75,95,95,75,96,75,76,96,96,76,97,76,77,97,97,77,98,77,78,98,98,78,99,78,79,99,99,79,100,79,80,100,100,80,101,80,81,101,101,81,102,81,82,102,102,82,103,82,83,103,103,83,104,84,85,105,105,85,106,85,86,106,106,86,107,86,87,107,107,87,108,87,88,108,108,88,109,88,89,109,109,89,110,89,90,110,110,90,111,90,91,111,111,91,112,91,92,112,112,92,113,92,93,113,113,93,114,93,94,114,114,94,115,94,95,115,115,95,116,95,96,116,116,96,117,96,97,117,117,97,118,97,98,118,118,98,119,98,99,119,119,99,120,99,100,120,120,100,121,100,101,121,121,101,122,101,102,122,122,102,123,102,103,123,123,103,124,103,104,124,124,104,125,105,106,126,126,106,127,106,107,127,127,107,128,107,108,128,128,108,129,108,109,129,129,109,130,109,110,130,130,110,131,110,111,131,131,111,132,111,112,132,132,112,133,112,113,133,133,113,134,113,114,134,134,114,135,114,115,135,135,115,136,115,116,136,136,116,137,116,117,137,137,117,138,117,118,138,138,118,139,118,119,139,139,119,140,119,120,140,140,120,141,120,121,141,141,121,142,121,122,142,142,122,143,122,123,143,143,123,144,123,124,144,144,124,145,124,125,145,145,125,146,126,127,147,147,127,148,127,128,148,148,128,149,128,129,149,149,129,150,129,130,150,150,130,151,130,131,151,151,131,152,131,132,152,152,132,153,132,133,153,153,133,154,133,134,154,154,134,155,134,135,155,155,135,156,135,136,156,156,136,157,136,137,157,157,137,158,137,138,158,158,138,159,138,139,159,159,139,160,139,140,160,160,140,161,140,141,161,161,141,162,141,142,162,162,142,163,142,143,163,163,143,164,143,144,164,164,144,165,144,145,165,165,145,166,145,146,166,166,146,167,147,148,168,168,148,169,148,149,169,169,149,170,149,150,170,170,150,171,150,151,171,171,151,172,151,152,172,172,152,173,152,153,173,173,153,174,153,154,174,174,154,175,154,155,175,175,155,176,155,156,176,176,156,177,156,157,177,177,157,178,157,158,178,178,158,179,158,159,179,179,159,180,159,160,180,180,160,181,160,161,181,181,161,182,161,162,182,182,162,183,162,163,183,183,163,184,163,164,184,184,164,185,164,165,185,185,165,186,165,166,186,186,166,187,166,167,187,187,167,188,168,169,189,189,169,190,169,170,190,190,170,191,170,171,191,191,171,192,171,172,192,192,172,193,172,173,193,193,173,194,173,174,194,194,174,195,174,175,195,195,175,196,175,176,196,196,176,197,176,177,197,197,177,198,177,178,198,198,178,199,178,179,199,199,179,200,179,180,200,200,180,201,180,181,201,201,181,202,181,182,202,202,182,203,182,183,203,203,183,204,183,184,204,204,184,205,184,185,205,205,185,206,185,186,206,206,186,207,186,187,207,207,187,208,187,188,208,208,188,209,189,190,210,210,190,211,190,191,211,211,191,212,191,192,212,212,192,213,192,193,213,213,193,214,193,194,214,214,194,215,194,195,215,215,195,216,195,196,216,216,196,217,196,197,217,217,197,218,197,198,218,218,198,219,198,199,219,219,199,220,199,200,220,220,200,221,200,201,221,221,201,222,201,202,222,222,202,223,202,203,223,223,203,224,203,204,224,224,204,225,204,205,225,225,205,226,205,206,226,226,206,227,206,207,227,227,207,228,207,208,228,228,208,229,208,209,229,229,209,230,210,211,231,231,211,232,211,212,232,232,212,233,212,213,233,233,213,234,213,214,234,234,214,235,214,215,235,235,215,236,215,216,236,236,216,237,216,217,237,237,217,238,217,218,238,238,218,239,218,219,239,239,219,240,219,220,240,240,220,241,220,221,241,241,221,242,221,222,242,242,222,243,222,223,243,243,223,244,223,224,244,244,224,245,224,225,245,245,225,246,225,226,246,246,226,247,226,227,247,247,227,248,227,228,248,248,228,249,228,229,249,249,229,250,229,230,250,250,230,251,231,232,252,252,232,253,232,233,253,253,233,254,233,234,254,254,234,255,234,235,255,255,235,256,235,236,256,256,236,257,236,237,257,257,237,258,237,238,258,258,238,259,238,239,259,259,239,260,239,240,260,260,240,261,240,241,261,261,241,262,241,242,262,262,242,263,242,243,263,263,243,264,243,244,264,264,244,265,244,245,265,265,245,266,245,246,266,266,246,267,246,247,267,267,247,268,247,248,268,268,248,269,248,249,269,269,249,270,249,250,270,270,250,271,250,251,271,271,251,272,252,253,273,273,253,274,253,254,274,274,254,275,254,255,275,275,255,276,255,256,276,276,256,277,256,257,277,277,257,278,257,258,278,278,258,279,258,259,279,279,259,280,259,260,280,280,260,281,260,261,281,281,261,282,261,262,282,282,262,283,262,263,283,283,263,284,263,264,284,284,264,285,264,265,285,285,265,286,265,266,286,286,266,287,266,267,287,287,267,288,267,268,288,288,268,289,268,269,289,289,269,290,269,270,290,290,270,291,270,271,291,291,271,292,271,272,292,292,272,293,273,274,294,294,274,295,274,275,295,295,275,296,275,276,296,296,276,297,276,277,297,297,277,298,277,278,298,298,278,299,278,279,299,299,279,300,279,280,300,300,280,301,280,281,301,301,281,302,281,282,302,302,282,303,282,283,303,303,283,304,283,284,304,304,284,305,284,285,305,305,285,306,285,286,306,306,286,307,286,287,307,307,287,308,287,288,308,308,288,309,288,289,309,309,289,310,289,290,310,310,290,311,290,291,311,311,291,312,291,292,312,312,292,313,292,293,313,313,293,314,294,295,315,315,295,316,295,296,316,316,296,317,296,297,317,317,297,318,297,298,318,318,298,319,298,299,319,319,299,320,299,300,320,320,300,321,300,301,321,321,301,322,301,302,322,322,302,323,302,303,323,323,303,324,303,304,324,324,304,325,304,305,325,325,305,326,305,306,326,326,306,327,306,307,327,327,307,328,307,308,328,328,308,329,308,309,329,329,309,330,309,310,330,330,310,331,310,311,331,331,311,332,311,312,332,332,312,333,312,313,333,333,313,334,313,314,334,334,314,335,315,316,336,336,316,337,316,317,337,337,317,338,317,318,338,338,318,339,318,319,339,339,319,340,319,320,340,340,320,341,320,321,341,341,321,342,321,322,342,342,322,343,322,323,343,343,323,344,323,324,344,344,324,345,324,325,345,345,325,346,325,326,346,346,326,347,326,327,347,347,327,348,327,328,348,348,328,349,328,329,349,349,329,350,329,330,350,350,330,351,330,331,351,351,331,352,331,332,352,352,332,353,332,333,353,353,333,354,333,334,354,354,334,355,334,335,355,355,335,356,336,337,357,357,337,358,337,338,358,358,338,359,338,339,359,359,339,360,339,340,360,360,340,361,340,341,361,361,341,362,341,342,362,362,342,363,342,343,363,363,343,364,343,344,364,364,344,365,344,345,365,365,345,366,345,346,366,366,346,367,346,347,367,367,347,368,347,348,368,368,348,369,348,349,369,369,349,370,349,350,370,370,350,371,350,351,371,371,351,372,351,352,372,372,352,373,352,353,373,373,353,374,353,354,374,374,354,375,354,355,375,375,355,376,355,356,376,376,356,377,357,358,378,378,358,379,358,359,379,379,359,380,359,360,380,380,360,381,360,361,381,381,361,382,361,362,382,382,362,383,362,363,383,383,363,384,363,364,384,384,364,385,364,365,385,385,365,386,365,366,386,386,366,387,366,367,387,387,367,388,367,368,388,388,368,389,368,369,389,389,369,390,369,370,390,390,370,391,370,371,391,391,371,392,371,372,392,392,372,393,372,373,393,393,373,394,373,374,394,394,374,395,374,375,395,395,375,396,375,376,396,396,376,397,376,377,397,397,377,398,1,0,399,4,1,400,6,4,401,8,6,402,10,8,403,12,10,404,14,12,405,16,14,406,18,16,407,20,18,408,22,20,409,24,22,410,26,24,411,28,26,412,30,28,413,32,30,414,34,32,415,36,34,416,38,36,417,40,38,418,378,379,419,379,380,420,380,381,421,381,382,422,382,383,423,383,384,424,384,385,425,385,386,426,386,387,427,387,388,428,388,389,429,389,390,430,390,391,431,391,392,432,392,393,433,393,394,434,394,395,435,395,396,436,396,397,437,397,398,438],"receiveShadows":false,"infiniteDistance":false,"billboardMode":0,"visibility":1.0,"subMeshes":[{"materialIndex":0,"verticesStart":0,"verticesCount":439,"indexStart":0,"indexCount":2280}],"instances":null,"skeletonId":-1,"numBoneInfluencers":4,"applyFog":false,"lodMeshIds":null,"lodDistances":null,"lodCoverages":null,"rotation":null,"scaling":[1.0,1.0,1.0],"rotationQuaternion":[0.0,0.1736,0.0,0.9848],"actions":null,"checkCollisions":false,"pickable":true,"showBoundingBox":false,"showSubMeshesBoundingBox":false,"alphaIndex":0,"physicsImpostor":0,"physicsMass":0.0,"physicsFriction":0.0,"physicsRestitution":0.0,"name":"pSphere4","id":"2F4F3A92-41B4-BFAB-58D5-7DBF6D8F2419","parentId":null,"position":[9.0,0.0,0.0],"animations":[],"autoAnimate":true,"autoAnimateFrom":1,"autoAnimateTo":200,"autoAnimateLoop":true,"metadata":{}},{"materialId":"89D7C59E-42EA-CBDA-96BF-B8838BCC9C60","isEnabled":true,"isVisible":true,"positions":[0.1488,-0.9877,0.0483,0.1266,-0.9877,0.0919,0.2939,-0.9511,0.0955,0.25,-0.9511,0.1816,0.0919,-0.9877,0.1266,0.1816,-0.9511,0.25,0.0483,-0.9877,0.1488,0.0955,-0.9511,0.2939,0.0,-0.9877,0.1564,0.0,-0.9511,0.309,-0.0483,-0.9877,0.1488,-0.0955,-0.9511,0.2939,-0.0919,-0.9877,0.1266,-0.1816,-0.9511,0.25,-0.1266,-0.9877,0.0919,-0.25,-0.9511,0.1816,-0.1488,-0.9877,0.0483,-0.2939,-0.9511,0.0955,-0.1564,-0.9877,0.0,-0.309,-0.9511,0.0,-0.1488,-0.9877,-0.0483,-0.2939,-0.9511,-0.0955,-0.1266,-0.9877,-0.0919,-0.25,-0.9511,-0.1816,-0.0919,-0.9877,-0.1266,-0.1816,-0.9511,-0.25,-0.0483,-0.9877,-0.1488,-0.0955,-0.9511,-0.2939,0.0,-0.9877,-0.1564,0.0,-0.9511,-0.309,0.0483,-0.9877,-0.1488,0.0955,-0.9511,-0.2939,0.0919,-0.9877,-0.1266,0.1816,-0.9511,-0.25,0.1266,-0.9877,-0.0919,0.25,-0.9511,-0.1816,0.1488,-0.9877,-0.0483,0.2939,-0.9511,-0.0955,0.1564,-0.9877,0.0,0.309,-0.9511,0.0,0.1488,-0.9877,0.0483,0.2939,-0.9511,0.0955,0.4318,-0.891,0.1403,0.3673,-0.891,0.2668,0.2668,-0.891,0.3673,0.1403,-0.891,0.4318,0.0,-0.891,0.454,-0.1403,-0.891,0.4318,-0.2668,-0.891,0.3673,-0.3673,-0.891,0.2668,-0.4318,-0.891,0.1403,-0.454,-0.891,0.0,-0.4318,-0.891,-0.1403,-0.3673,-0.891,-0.2668,-0.2668,-0.891,-0.3673,-0.1403,-0.891,-0.4318,0.0,-0.891,-0.454,0.1403,-0.891,-0.4318,0.2668,-0.891,-0.3673,0.3673,-0.891,-0.2668,0.4318,-0.891,-0.1403,0.454,-0.891,0.0,0.4318,-0.891,0.1403,0.559,-0.809,0.1816,0.4755,-0.809,0.3455,0.3455,-0.809,0.4755,0.1816,-0.809,0.559,0.0,-0.809,0.5878,-0.1816,-0.809,0.559,-0.3455,-0.809,0.4755,-0.4755,-0.809,0.3455,-0.559,-0.809,0.1816,-0.5878,-0.809,0.0,-0.559,-0.809,-0.1816,-0.4755,-0.809,-0.3455,-0.3455,-0.809,-0.4755,-0.1816,-0.809,-0.559,0.0,-0.809,-0.5878,0.1816,-0.809,-0.559,0.3455,-0.809,-0.4755,0.4755,-0.809,-0.3455,0.559,-0.809,-0.1816,0.5878,-0.809,0.0,0.559,-0.809,0.1816,0.6725,-0.7071,0.2185,0.5721,-0.7071,0.4156,0.4156,-0.7071,0.5721,0.2185,-0.7071,0.6725,0.0,-0.7071,0.7071,-0.2185,-0.7071,0.6725,-0.4156,-0.7071,0.5721,-0.5721,-0.7071,0.4156,-0.6725,-0.7071,0.2185,-0.7071,-0.7071,0.0,-0.6725,-0.7071,-0.2185,-0.5721,-0.7071,-0.4156,-0.4156,-0.7071,-0.5721,-0.2185,-0.7071,-0.6725,0.0,-0.7071,-0.7071,0.2185,-0.7071,-0.6725,0.4156,-0.7071,-0.5721,0.5721,-0.7071,-0.4156,0.6725,-0.7071,-0.2185,0.7071,-0.7071,0.0,0.6725,-0.7071,0.2185,0.7694,-0.5878,0.25,0.6545,-0.5878,0.4755,0.4755,-0.5878,0.6545,0.25,-0.5878,0.7694,0.0,-0.5878,0.809,-0.25,-0.5878,0.7694,-0.4755,-0.5878,0.6545,-0.6545,-0.5878,0.4755,-0.7694,-0.5878,0.25,-0.809,-0.5878,0.0,-0.7694,-0.5878,-0.25,-0.6545,-0.5878,-0.4755,-0.4755,-0.5878,-0.6545,-0.25,-0.5878,-0.7694,0.0,-0.5878,-0.809,0.25,-0.5878,-0.7694,0.4755,-0.5878,-0.6545,0.6545,-0.5878,-0.4755,0.7694,-0.5878,-0.25,0.809,-0.5878,0.0,0.7694,-0.5878,0.25,0.8474,-0.454,0.2753,0.7208,-0.454,0.5237,0.5237,-0.454,0.7208,0.2753,-0.454,0.8474,0.0,-0.454,0.891,-0.2753,-0.454,0.8474,-0.5237,-0.454,0.7208,-0.7208,-0.454,0.5237,-0.8474,-0.454,0.2753,-0.891,-0.454,0.0,-0.8474,-0.454,-0.2753,-0.7208,-0.454,-0.5237,-0.5237,-0.454,-0.7208,-0.2753,-0.454,-0.8474,0.0,-0.454,-0.891,0.2753,-0.454,-0.8474,0.5237,-0.454,-0.7208,0.7208,-0.454,-0.5237,0.8474,-0.454,-0.2753,0.891,-0.454,0.0,0.8474,-0.454,0.2753,0.9045,-0.309,0.2939,0.7694,-0.309,0.559,0.559,-0.309,0.7694,0.2939,-0.309,0.9045,0.0,-0.309,0.9511,-0.2939,-0.309,0.9045,-0.559,-0.309,0.7694,-0.7694,-0.309,0.559,-0.9045,-0.309,0.2939,-0.9511,-0.309,0.0,-0.9045,-0.309,-0.2939,-0.7694,-0.309,-0.559,-0.559,-0.309,-0.7694,-0.2939,-0.309,-0.9045,0.0,-0.309,-0.9511,0.2939,-0.309,-0.9045,0.559,-0.309,-0.7694,0.7694,-0.309,-0.559,0.9045,-0.309,-0.2939,0.9511,-0.309,0.0,0.9045,-0.309,0.2939,0.9393,-0.1564,0.3052,0.7991,-0.1564,0.5805,0.5805,-0.1564,0.7991,0.3052,-0.1564,0.9393,0.0,-0.1564,0.9877,-0.3052,-0.1564,0.9393,-0.5805,-0.1564,0.7991,-0.7991,-0.1564,0.5805,-0.9393,-0.1564,0.3052,-0.9877,-0.1564,0.0,-0.9393,-0.1564,-0.3052,-0.7991,-0.1564,-0.5805,-0.5805,-0.1564,-0.7991,-0.3052,-0.1564,-0.9393,0.0,-0.1564,-0.9877,0.3052,-0.1564,-0.9393,0.5805,-0.1564,-0.7991,0.7991,-0.1564,-0.5805,0.9393,-0.1564,-0.3052,0.9877,-0.1564,0.0,0.9393,-0.1564,0.3052,0.9511,0.0,0.309,0.809,0.0,0.5878,0.5878,0.0,0.809,0.309,0.0,0.9511,0.0,0.0,1.0,-0.309,0.0,0.9511,-0.5878,0.0,0.809,-0.809,0.0,0.5878,-0.9511,0.0,0.309,-1.0,0.0,0.0,-0.9511,0.0,-0.309,-0.809,0.0,-0.5878,-0.5878,0.0,-0.809,-0.309,0.0,-0.9511,0.0,0.0,-1.0,0.309,0.0,-0.9511,0.5878,0.0,-0.809,0.809,0.0,-0.5878,0.9511,0.0,-0.309,1.0,0.0,0.0,0.9511,0.0,0.309,0.9393,0.1564,0.3052,0.7991,0.1564,0.5805,0.5805,0.1564,0.7991,0.3052,0.1564,0.9393,0.0,0.1564,0.9877,-0.3052,0.1564,0.9393,-0.5805,0.1564,0.7991,-0.7991,0.1564,0.5805,-0.9393,0.1564,0.3052,-0.9877,0.1564,0.0,-0.9393,0.1564,-0.3052,-0.7991,0.1564,-0.5805,-0.5805,0.1564,-0.7991,-0.3052,0.1564,-0.9393,0.0,0.1564,-0.9877,0.3052,0.1564,-0.9393,0.5805,0.1564,-0.7991,0.7991,0.1564,-0.5805,0.9393,0.1564,-0.3052,0.9877,0.1564,0.0,0.9393,0.1564,0.3052,0.9045,0.309,0.2939,0.7694,0.309,0.559,0.559,0.309,0.7694,0.2939,0.309,0.9045,0.0,0.309,0.9511,-0.2939,0.309,0.9045,-0.559,0.309,0.7694,-0.7694,0.309,0.559,-0.9045,0.309,0.2939,-0.9511,0.309,0.0,-0.9045,0.309,-0.2939,-0.7694,0.309,-0.559,-0.559,0.309,-0.7694,-0.2939,0.309,-0.9045,0.0,0.309,-0.9511,0.2939,0.309,-0.9045,0.559,0.309,-0.7694,0.7694,0.309,-0.559,0.9045,0.309,-0.2939,0.9511,0.309,0.0,0.9045,0.309,0.2939,0.8474,0.454,0.2753,0.7208,0.454,0.5237,0.5237,0.454,0.7208,0.2753,0.454,0.8474,0.0,0.454,0.891,-0.2753,0.454,0.8474,-0.5237,0.454,0.7208,-0.7208,0.454,0.5237,-0.8474,0.454,0.2753,-0.891,0.454,0.0,-0.8474,0.454,-0.2753,-0.7208,0.454,-0.5237,-0.5237,0.454,-0.7208,-0.2753,0.454,-0.8474,0.0,0.454,-0.891,0.2753,0.454,-0.8474,0.5237,0.454,-0.7208,0.7208,0.454,-0.5237,0.8474,0.454,-0.2753,0.891,0.454,0.0,0.8474,0.454,0.2753,0.7694,0.5878,0.25,0.6545,0.5878,0.4755,0.4755,0.5878,0.6545,0.25,0.5878,0.7694,0.0,0.5878,0.809,-0.25,0.5878,0.7694,-0.4755,0.5878,0.6545,-0.6545,0.5878,0.4755,-0.7694,0.5878,0.25,-0.809,0.5878,0.0,-0.7694,0.5878,-0.25,-0.6545,0.5878,-0.4755,-0.4755,0.5878,-0.6545,-0.25,0.5878,-0.7694,0.0,0.5878,-0.809,0.25,0.5878,-0.7694,0.4755,0.5878,-0.6545,0.6545,0.5878,-0.4755,0.7694,0.5878,-0.25,0.809,0.5878,0.0,0.7694,0.5878,0.25,0.6725,0.7071,0.2185,0.5721,0.7071,0.4156,0.4156,0.7071,0.5721,0.2185,0.7071,0.6725,0.0,0.7071,0.7071,-0.2185,0.7071,0.6725,-0.4156,0.7071,0.5721,-0.5721,0.7071,0.4156,-0.6725,0.7071,0.2185,-0.7071,0.7071,0.0,-0.6725,0.7071,-0.2185,-0.5721,0.7071,-0.4156,-0.4156,0.7071,-0.5721,-0.2185,0.7071,-0.6725,0.0,0.7071,-0.7071,0.2185,0.7071,-0.6725,0.4156,0.7071,-0.5721,0.5721,0.7071,-0.4156,0.6725,0.7071,-0.2185,0.7071,0.7071,0.0,0.6725,0.7071,0.2185,0.559,0.809,0.1816,0.4755,0.809,0.3455,0.3455,0.809,0.4755,0.1816,0.809,0.559,0.0,0.809,0.5878,-0.1816,0.809,0.559,-0.3455,0.809,0.4755,-0.4755,0.809,0.3455,-0.559,0.809,0.1816,-0.5878,0.809,0.0,-0.559,0.809,-0.1816,-0.4755,0.809,-0.3455,-0.3455,0.809,-0.4755,-0.1816,0.809,-0.559,0.0,0.809,-0.5878,0.1816,0.809,-0.559,0.3455,0.809,-0.4755,0.4755,0.809,-0.3455,0.559,0.809,-0.1816,0.5878,0.809,0.0,0.559,0.809,0.1816,0.4318,0.891,0.1403,0.3673,0.891,0.2668,0.2668,0.891,0.3673,0.1403,0.891,0.4318,0.0,0.891,0.454,-0.1403,0.891,0.4318,-0.2668,0.891,0.3673,-0.3673,0.891,0.2668,-0.4318,0.891,0.1403,-0.454,0.891,0.0,-0.4318,0.891,-0.1403,-0.3673,0.891,-0.2668,-0.2668,0.891,-0.3673,-0.1403,0.891,-0.4318,0.0,0.891,-0.454,0.1403,0.891,-0.4318,0.2668,0.891,-0.3673,0.3673,0.891,-0.2668,0.4318,0.891,-0.1403,0.454,0.891,0.0,0.4318,0.891,0.1403,0.2939,0.9511,0.0955,0.25,0.9511,0.1816,0.1816,0.9511,0.25,0.0955,0.9511,0.2939,0.0,0.9511,0.309,-0.0955,0.9511,0.2939,-0.1816,0.9511,0.25,-0.25,0.9511,0.1816,-0.2939,0.9511,0.0955,-0.309,0.9511,0.0,-0.2939,0.9511,-0.0955,-0.25,0.9511,-0.1816,-0.1816,0.9511,-0.25,-0.0955,0.9511,-0.2939,0.0,0.9511,-0.309,0.0955,0.9511,-0.2939,0.1816,0.9511,-0.25,0.25,0.9511,-0.1816,0.2939,0.9511,-0.0955,0.309,0.9511,0.0,0.2939,0.9511,0.0955,0.1488,0.9877,0.0483,0.1266,0.9877,0.0919,0.0919,0.9877,0.1266,0.0483,0.9877,0.1488,0.0,0.9877,0.1564,-0.0483,0.9877,0.1488,-0.0919,0.9877,0.1266,-0.1266,0.9877,0.0919,-0.1488,0.9877,0.0483,-0.1564,0.9877,0.0,-0.1488,0.9877,-0.0483,-0.1266,0.9877,-0.0919,-0.0919,0.9877,-0.1266,-0.0483,0.9877,-0.1488,0.0,0.9877,-0.1564,0.0483,0.9877,-0.1488,0.0919,0.9877,-0.1266,0.1266,0.9877,-0.0919,0.1488,0.9877,-0.0483,0.1564,0.9877,0.0,0.1488,0.9877,0.0483,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0],"normals":[0.1906,-0.9797,0.0619,0.1621,-0.9797,0.1178,0.3173,-0.9427,0.1031,0.2699,-0.9427,0.1961,0.1178,-0.9797,0.1621,0.1961,-0.9427,0.2699,0.0619,-0.9797,0.1906,0.1031,-0.9427,0.3173,0.0,-0.9797,0.2004,0.0,-0.9427,0.3336,-0.0619,-0.9797,0.1906,-0.1031,-0.9427,0.3173,-0.1178,-0.9797,0.1621,-0.1961,-0.9427,0.2699,-0.1621,-0.9797,0.1178,-0.2699,-0.9427,0.1961,-0.1906,-0.9797,0.0619,-0.3173,-0.9427,0.1031,-0.2004,-0.9797,0.0,-0.3336,-0.9427,0.0,-0.1906,-0.9797,-0.0619,-0.3173,-0.9427,-0.1031,-0.1621,-0.9797,-0.1178,-0.2699,-0.9427,-0.1961,-0.1178,-0.9797,-0.1621,-0.1961,-0.9427,-0.2699,-0.0619,-0.9797,-0.1906,-0.1031,-0.9427,-0.3173,0.0,-0.9797,-0.2004,0.0,-0.9427,-0.3336,0.0619,-0.9797,-0.1906,0.1031,-0.9427,-0.3173,0.1178,-0.9797,-0.1621,0.1961,-0.9427,-0.2699,0.1621,-0.9797,-0.1178,0.2699,-0.9427,-0.1961,0.1906,-0.9797,-0.0619,0.3173,-0.9427,-0.1031,0.2004,-0.9797,0.0,0.3336,-0.9427,0.0,0.1906,-0.9797,0.0619,0.3173,-0.9427,0.1031,0.4477,-0.8823,0.1455,0.3808,-0.8823,0.2767,0.2767,-0.8823,0.3808,0.1455,-0.8823,0.4477,0.0,-0.8823,0.4708,-0.1455,-0.8823,0.4477,-0.2767,-0.8823,0.3808,-0.3808,-0.8823,0.2767,-0.4477,-0.8823,0.1455,-0.4708,-0.8823,0.0,-0.4477,-0.8823,-0.1455,-0.3808,-0.8823,-0.2767,-0.2767,-0.8823,-0.3808,-0.1455,-0.8823,-0.4477,0.0,-0.8823,-0.4708,0.1455,-0.8823,-0.4477,0.2767,-0.8823,-0.3808,0.3808,-0.8823,-0.2767,0.4477,-0.8823,-0.1455,0.4708,-0.8823,0.0,0.4477,-0.8823,0.1455,0.5703,-0.8003,0.1853,0.4851,-0.8003,0.3525,0.3525,-0.8003,0.4851,0.1853,-0.8003,0.5703,0.0,-0.8003,0.5997,-0.1853,-0.8003,0.5703,-0.3525,-0.8003,0.4851,-0.4851,-0.8003,0.3525,-0.5703,-0.8003,0.1853,-0.5997,-0.8003,0.0,-0.5703,-0.8003,-0.1853,-0.4851,-0.8003,-0.3525,-0.3525,-0.8003,-0.4851,-0.1853,-0.8003,-0.5703,0.0,-0.8003,-0.5997,0.1853,-0.8003,-0.5703,0.3525,-0.8003,-0.4851,0.4851,-0.8003,-0.3525,0.5703,-0.8003,-0.1853,0.5997,-0.8003,0.0,0.5703,-0.8003,0.1853,0.6803,-0.6988,0.221,0.5787,-0.6988,0.4205,0.4205,-0.6988,0.5787,0.221,-0.6988,0.6803,0.0,-0.6988,0.7153,-0.221,-0.6988,0.6803,-0.4205,-0.6988,0.5787,-0.5787,-0.6988,0.4205,-0.6803,-0.6988,0.221,-0.7153,-0.6988,0.0,-0.6803,-0.6988,-0.221,-0.5787,-0.6988,-0.4205,-0.4205,-0.6988,-0.5787,-0.221,-0.6988,-0.6803,0.0,-0.6988,-0.7153,0.221,-0.6988,-0.6803,0.4205,-0.6988,-0.5787,0.5787,-0.6988,-0.4205,0.6803,-0.6988,-0.221,0.7153,-0.6988,0.0,0.6803,-0.6988,0.221,0.7745,-0.5804,0.2516,0.6588,-0.5804,0.4787,0.4787,-0.5804,0.6588,0.2516,-0.5804,0.7745,0.0,-0.5804,0.8143,-0.2516,-0.5804,0.7745,-0.4787,-0.5804,0.6588,-0.6588,-0.5804,0.4787,-0.7745,-0.5804,0.2516,-0.8143,-0.5804,0.0,-0.7745,-0.5804,-0.2516,-0.6588,-0.5804,-0.4787,-0.4787,-0.5804,-0.6588,-0.2516,-0.5804,-0.7745,0.0,-0.5804,-0.8143,0.2516,-0.5804,-0.7745,0.4787,-0.5804,-0.6588,0.6588,-0.5804,-0.4787,0.7745,-0.5804,-0.2516,0.8143,-0.5804,0.0,0.7745,-0.5804,0.2516,0.8503,-0.448,0.2763,0.7233,-0.448,0.5255,0.5255,-0.448,0.7233,0.2763,-0.448,0.8503,0.0,-0.448,0.894,-0.2763,-0.448,0.8503,-0.5255,-0.448,0.7233,-0.7233,-0.448,0.5255,-0.8503,-0.448,0.2763,-0.894,-0.448,0.0,-0.8503,-0.448,-0.2763,-0.7233,-0.448,-0.5255,-0.5255,-0.448,-0.7233,-0.2763,-0.448,-0.8503,0.0,-0.448,-0.894,0.2763,-0.448,-0.8503,0.5255,-0.448,-0.7233,0.7233,-0.448,-0.5255,0.8503,-0.448,-0.2763,0.894,-0.448,0.0,0.8503,-0.448,0.2763,0.9058,-0.3048,0.2943,0.7705,-0.3048,0.5598,0.5598,-0.3048,0.7705,0.2943,-0.3048,0.9058,0.0,-0.3048,0.9524,-0.2943,-0.3048,0.9058,-0.5598,-0.3048,0.7705,-0.7705,-0.3048,0.5598,-0.9058,-0.3048,0.2943,-0.9524,-0.3048,0.0,-0.9058,-0.3048,-0.2943,-0.7705,-0.3048,-0.5598,-0.5598,-0.3048,-0.7705,-0.2943,-0.3048,-0.9058,0.0,-0.3048,-0.9524,0.2943,-0.3048,-0.9058,0.5598,-0.3048,-0.7705,0.7705,-0.3048,-0.5598,0.9058,-0.3048,-0.2943,0.9524,-0.3048,0.0,0.9058,-0.3048,0.2943,0.9397,-0.1542,0.3053,0.7993,-0.1542,0.5808,0.5808,-0.1542,0.7993,0.3053,-0.1542,0.9397,0.0,-0.1542,0.988,-0.3053,-0.1542,0.9397,-0.5808,-0.1542,0.7993,-0.7993,-0.1542,0.5808,-0.9397,-0.1542,0.3053,-0.988,-0.1542,0.0,-0.9397,-0.1542,-0.3053,-0.7993,-0.1542,-0.5808,-0.5808,-0.1542,-0.7993,-0.3053,-0.1542,-0.9397,0.0,-0.1542,-0.988,0.3053,-0.1542,-0.9397,0.5808,-0.1542,-0.7993,0.7993,-0.1542,-0.5808,0.9397,-0.1542,-0.3053,0.988,-0.1542,0.0,0.9397,-0.1542,0.3053,0.9511,0.0,0.309,0.809,0.0,0.5878,0.5878,0.0,0.809,0.309,0.0,0.9511,0.0,0.0,1.0,-0.309,0.0,0.9511,-0.5878,0.0,0.809,-0.809,0.0,0.5878,-0.9511,0.0,0.309,-1.0,0.0,0.0,-0.9511,0.0,-0.309,-0.809,0.0,-0.5878,-0.5878,0.0,-0.809,-0.309,0.0,-0.9511,0.0,0.0,-1.0,0.309,0.0,-0.9511,0.5878,0.0,-0.809,0.809,0.0,-0.5878,0.9511,0.0,-0.309,1.0,0.0,0.0,0.9511,0.0,0.309,0.9397,0.1542,0.3053,0.7993,0.1542,0.5808,0.5808,0.1542,0.7993,0.3053,0.1542,0.9397,0.0,0.1542,0.988,-0.3053,0.1542,0.9397,-0.5808,0.1542,0.7993,-0.7993,0.1542,0.5808,-0.9397,0.1542,0.3053,-0.988,0.1542,0.0,-0.9397,0.1542,-0.3053,-0.7993,0.1542,-0.5808,-0.5808,0.1542,-0.7993,-0.3053,0.1542,-0.9397,0.0,0.1542,-0.988,0.3053,0.1542,-0.9397,0.5808,0.1542,-0.7993,0.7993,0.1542,-0.5808,0.9397,0.1542,-0.3053,0.988,0.1542,0.0,0.9397,0.1542,0.3053,0.9058,0.3048,0.2943,0.7705,0.3048,0.5598,0.5598,0.3048,0.7705,0.2943,0.3048,0.9058,0.0,0.3048,0.9524,-0.2943,0.3048,0.9058,-0.5598,0.3048,0.7705,-0.7705,0.3048,0.5598,-0.9058,0.3048,0.2943,-0.9524,0.3048,0.0,-0.9058,0.3048,-0.2943,-0.7705,0.3048,-0.5598,-0.5598,0.3048,-0.7705,-0.2943,0.3048,-0.9058,0.0,0.3048,-0.9524,0.2943,0.3048,-0.9058,0.5598,0.3048,-0.7705,0.7705,0.3048,-0.5598,0.9058,0.3048,-0.2943,0.9524,0.3048,0.0,0.9058,0.3048,0.2943,0.8503,0.448,0.2763,0.7233,0.448,0.5255,0.5255,0.448,0.7233,0.2763,0.448,0.8503,0.0,0.448,0.894,-0.2763,0.448,0.8503,-0.5255,0.448,0.7233,-0.7233,0.448,0.5255,-0.8503,0.448,0.2763,-0.894,0.448,0.0,-0.8503,0.448,-0.2763,-0.7233,0.448,-0.5255,-0.5255,0.448,-0.7233,-0.2763,0.448,-0.8503,0.0,0.448,-0.894,0.2763,0.448,-0.8503,0.5255,0.448,-0.7233,0.7233,0.448,-0.5255,0.8503,0.448,-0.2763,0.894,0.448,0.0,0.8503,0.448,0.2763,0.7745,0.5804,0.2516,0.6588,0.5804,0.4787,0.4787,0.5804,0.6588,0.2516,0.5804,0.7745,0.0,0.5804,0.8143,-0.2516,0.5804,0.7745,-0.4787,0.5804,0.6588,-0.6588,0.5804,0.4787,-0.7745,0.5804,0.2516,-0.8143,0.5804,0.0,-0.7745,0.5804,-0.2516,-0.6588,0.5804,-0.4787,-0.4787,0.5804,-0.6588,-0.2516,0.5804,-0.7745,0.0,0.5804,-0.8143,0.2516,0.5804,-0.7745,0.4787,0.5804,-0.6588,0.6588,0.5804,-0.4787,0.7745,0.5804,-0.2516,0.8143,0.5804,0.0,0.7745,0.5804,0.2516,0.6803,0.6988,0.221,0.5787,0.6988,0.4205,0.4205,0.6988,0.5787,0.221,0.6988,0.6803,0.0,0.6988,0.7153,-0.221,0.6988,0.6803,-0.4205,0.6988,0.5787,-0.5787,0.6988,0.4205,-0.6803,0.6988,0.221,-0.7153,0.6988,0.0,-0.6803,0.6988,-0.221,-0.5787,0.6988,-0.4205,-0.4205,0.6988,-0.5787,-0.221,0.6988,-0.6803,0.0,0.6988,-0.7153,0.221,0.6988,-0.6803,0.4205,0.6988,-0.5787,0.5787,0.6988,-0.4205,0.6803,0.6988,-0.221,0.7153,0.6988,0.0,0.6803,0.6988,0.221,0.5703,0.8003,0.1853,0.4851,0.8003,0.3525,0.3525,0.8003,0.4851,0.1853,0.8003,0.5703,0.0,0.8003,0.5997,-0.1853,0.8003,0.5703,-0.3525,0.8003,0.4851,-0.4851,0.8003,0.3525,-0.5703,0.8003,0.1853,-0.5997,0.8003,0.0,-0.5703,0.8003,-0.1853,-0.4851,0.8003,-0.3525,-0.3525,0.8003,-0.4851,-0.1853,0.8003,-0.5703,0.0,0.8003,-0.5997,0.1853,0.8003,-0.5703,0.3525,0.8003,-0.4851,0.4851,0.8003,-0.3525,0.5703,0.8003,-0.1853,0.5997,0.8003,0.0,0.5703,0.8003,0.1853,0.4477,0.8823,0.1455,0.3808,0.8823,0.2767,0.2767,0.8823,0.3808,0.1455,0.8823,0.4477,0.0,0.8823,0.4708,-0.1455,0.8823,0.4477,-0.2767,0.8823,0.3808,-0.3808,0.8823,0.2767,-0.4477,0.8823,0.1455,-0.4708,0.8823,0.0,-0.4477,0.8823,-0.1455,-0.3808,0.8823,-0.2767,-0.2767,0.8823,-0.3808,-0.1455,0.8823,-0.4477,0.0,0.8823,-0.4708,0.1455,0.8823,-0.4477,0.2767,0.8823,-0.3808,0.3808,0.8823,-0.2767,0.4477,0.8823,-0.1455,0.4708,0.8823,0.0,0.4477,0.8823,0.1455,0.3173,0.9427,0.1031,0.2699,0.9427,0.1961,0.1961,0.9427,0.2699,0.1031,0.9427,0.3173,0.0,0.9427,0.3336,-0.1031,0.9427,0.3173,-0.1961,0.9427,0.2699,-0.2699,0.9427,0.1961,-0.3173,0.9427,0.1031,-0.3336,0.9427,0.0,-0.3173,0.9427,-0.1031,-0.2699,0.9427,-0.1961,-0.1961,0.9427,-0.2699,-0.1031,0.9427,-0.3173,0.0,0.9427,-0.3336,0.1031,0.9427,-0.3173,0.1961,0.9427,-0.2699,0.2699,0.9427,-0.1961,0.3173,0.9427,-0.1031,0.3336,0.9427,0.0,0.3173,0.9427,0.1031,0.1906,0.9797,0.0619,0.1621,0.9797,0.1178,0.1178,0.9797,0.1621,0.0619,0.9797,0.1906,0.0,0.9797,0.2004,-0.0619,0.9797,0.1906,-0.1178,0.9797,0.1621,-0.1621,0.9797,0.1178,-0.1906,0.9797,0.0619,-0.2004,0.9797,0.0,-0.1906,0.9797,-0.0619,-0.1621,0.9797,-0.1178,-0.1178,0.9797,-0.1621,-0.0619,0.9797,-0.1906,0.0,0.9797,-0.2004,0.0619,0.9797,-0.1906,0.1178,0.9797,-0.1621,0.1621,0.9797,-0.1178,0.1906,0.9797,-0.0619,0.2004,0.9797,0.0,0.1906,0.9797,0.0619,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0],"tangents":[-0.4482,-0.0307,0.8934,-1.0,-0.5629,0.0062,0.8265,-1.0,-0.438,-0.0493,0.8976,-1.0,-0.5878,0.0,0.809,-1.0,-0.7908,0.0062,0.6121,-1.0,-0.809,0.0,0.5878,-1.0,-0.9412,0.0062,0.3378,-1.0,-0.9511,0.0,0.309,-1.0,-0.9995,0.0062,0.0304,-1.0,-1.0,0.0,0.0,-1.0,-0.96,0.0062,-0.28,-1.0,-0.9511,0.0,-0.309,-1.0,-0.8265,0.0062,-0.5629,-1.0,-0.809,0.0,-0.5878,-1.0,-0.6121,0.0062,-0.7908,-1.0,-0.5878,0.0,-0.809,-1.0,-0.3378,0.0062,-0.9412,-1.0,-0.309,0.0,-0.9511,-1.0,-0.0304,0.0062,-0.9995,-1.0,0.0,0.0,-1.0,-1.0,0.28,0.0062,-0.96,-1.0,0.309,0.0,-0.9511,-1.0,0.5629,0.0062,-0.8265,-1.0,0.5878,0.0,-0.809,-1.0,0.7908,0.0062,-0.6121,-1.0,0.809,0.0,-0.5878,-1.0,0.9412,0.0062,-0.3378,-1.0,0.9511,0.0,-0.309,-1.0,0.9995,0.0062,-0.0304,-1.0,1.0,0.0,0.0,-1.0,0.96,0.0062,0.28,-1.0,0.9511,0.0,0.309,-1.0,0.8265,0.0062,0.5629,-1.0,0.809,0.0,0.5878,-1.0,0.6121,0.0062,0.7908,-1.0,0.5878,0.0,0.809,-1.0,0.3378,0.0062,0.9412,-1.0,0.309,0.0,0.9511,-1.0,0.0304,0.0062,0.9995,-1.0,0.0,0.0,1.0,-1.0,-0.1625,0.0307,0.9862,-1.0,-0.1732,0.0493,0.9836,-1.0,-0.4222,-0.0651,0.9042,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.1899,0.0651,0.9796,-1.0,-0.4023,-0.0754,0.9124,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.2109,0.0754,0.9746,-1.0,-0.3802,-0.0787,0.9215,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.234,0.0787,0.969,-1.0,-0.3582,-0.0745,0.9306,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.2572,0.0745,0.9635,-1.0,-0.3384,-0.0633,0.9389,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.2781,0.0633,0.9585,-1.0,-0.3226,-0.0459,0.9454,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.2947,0.0459,0.9545,-1.0,-0.3125,-0.0241,0.9496,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.3053,0.0241,0.9519,-1.0,-0.309,0.0,0.9511,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.309,0.0,0.9511,-1.0,-0.3125,0.0241,0.9496,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.3053,-0.0241,0.9519,-1.0,-0.3226,0.0459,0.9454,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.2947,-0.0459,0.9545,-1.0,-0.3384,0.0633,0.9389,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.2781,-0.0633,0.9585,-1.0,-0.3582,0.0745,0.9306,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.2572,-0.0745,0.9635,-1.0,-0.3802,0.0787,0.9215,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.234,-0.0787,0.969,-1.0,-0.4023,0.0754,0.9124,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.2109,-0.0754,0.9746,-1.0,-0.4222,0.0651,0.9042,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.1899,-0.0651,0.9796,-1.0,-0.438,0.0493,0.8976,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.1732,-0.0493,0.9836,-1.0,-0.4482,0.0307,0.8934,-1.0,-0.6121,0.0062,0.7908,-1.0,-0.8265,0.0062,0.5629,-1.0,-0.96,0.0062,0.28,-1.0,-0.9995,0.0062,-0.0304,-1.0,-0.9412,0.0062,-0.3378,-1.0,-0.7908,0.0062,-0.6121,-1.0,-0.5629,0.0062,-0.8265,-1.0,-0.28,0.0062,-0.96,-1.0,0.0304,0.0062,-0.9995,-1.0,0.3378,0.0062,-0.9412,-1.0,0.6121,0.0062,-0.7908,-1.0,0.8265,0.0062,-0.5629,-1.0,0.96,0.0062,-0.28,-1.0,0.9995,0.0062,0.0304,-1.0,0.9412,0.0062,0.3378,-1.0,0.7908,0.0062,0.6121,-1.0,0.5629,0.0062,0.8265,-1.0,0.28,0.0062,0.96,-1.0,-0.0304,0.0062,0.9995,-1.0,-0.1625,-0.0307,0.9862,-1.0,-0.454,0.0,0.891,-1.0,-0.7071,0.0,0.7071,-1.0,-0.891,0.0,0.454,-1.0,-0.9877,0.0,0.1564,-1.0,-0.9877,0.0,-0.1564,-1.0,-0.891,0.0,-0.454,-1.0,-0.7071,0.0,-0.7071,-1.0,-0.454,0.0,-0.891,-1.0,-0.1564,0.0,-0.9877,-1.0,0.1564,0.0,-0.9877,-1.0,0.454,0.0,-0.891,-1.0,0.7071,0.0,-0.7071,-1.0,0.891,0.0,-0.454,-1.0,0.9877,0.0,-0.1564,-1.0,0.9877,0.0,0.1564,-1.0,0.891,0.0,0.454,-1.0,0.7071,0.0,0.7071,-1.0,0.454,0.0,0.891,-1.0,0.1564,0.0,0.9877,-1.0,-0.1564,0.0,0.9877,-1.0,-0.454,0.0,0.891,-1.0,-0.7071,0.0,0.7071,-1.0,-0.891,0.0,0.454,-1.0,-0.9877,0.0,0.1564,-1.0,-0.9877,0.0,-0.1564,-1.0,-0.891,0.0,-0.454,-1.0,-0.7071,0.0,-0.7071,-1.0,-0.454,0.0,-0.891,-1.0,-0.1564,0.0,-0.9877,-1.0,0.1564,0.0,-0.9877,-1.0,0.454,0.0,-0.891,-1.0,0.7071,0.0,-0.7071,-1.0,0.891,0.0,-0.454,-1.0,0.9877,0.0,-0.1564,-1.0,0.9877,0.0,0.1564,-1.0,0.891,0.0,0.454,-1.0,0.7071,0.0,0.7071,-1.0,0.454,0.0,0.891,-1.0,0.1564,0.0,0.9877,-1.0,-0.1564,0.0,0.9877,-1.0],"uvs":[0.0,0.05,0.05,0.05,0.0,0.1,0.05,0.1,0.1,0.05,0.1,0.1,0.15,0.05,0.15,0.1,0.2,0.05,0.2,0.1,0.25,0.05,0.25,0.1,0.3,0.05,0.3,0.1,0.35,0.05,0.35,0.1,0.4,0.05,0.4,0.1,0.45,0.05,0.45,0.1,0.5,0.05,0.5,0.1,0.55,0.05,0.55,0.1,0.6,0.05,0.6,0.1,0.65,0.05,0.65,0.1,0.7,0.05,0.7,0.1,0.75,0.05,0.75,0.1,0.8,0.05,0.8,0.1,0.85,0.05,0.85,0.1,0.9,0.05,0.9,0.1,0.95,0.05,0.95,0.1,1.0,0.05,1.0,0.1,0.0,0.15,0.05,0.15,0.1,0.15,0.15,0.15,0.2,0.15,0.25,0.15,0.3,0.15,0.35,0.15,0.4,0.15,0.45,0.15,0.5,0.15,0.55,0.15,0.6,0.15,0.65,0.15,0.7,0.15,0.75,0.15,0.8,0.15,0.85,0.15,0.9,0.15,0.95,0.15,1.0,0.15,0.0,0.2,0.05,0.2,0.1,0.2,0.15,0.2,0.2,0.2,0.25,0.2,0.3,0.2,0.35,0.2,0.4,0.2,0.45,0.2,0.5,0.2,0.55,0.2,0.6,0.2,0.65,0.2,0.7,0.2,0.75,0.2,0.8,0.2,0.85,0.2,0.9,0.2,0.95,0.2,1.0,0.2,0.0,0.25,0.05,0.25,0.1,0.25,0.15,0.25,0.2,0.25,0.25,0.25,0.3,0.25,0.35,0.25,0.4,0.25,0.45,0.25,0.5,0.25,0.55,0.25,0.6,0.25,0.65,0.25,0.7,0.25,0.75,0.25,0.8,0.25,0.85,0.25,0.9,0.25,0.95,0.25,1.0,0.25,0.0,0.3,0.05,0.3,0.1,0.3,0.15,0.3,0.2,0.3,0.25,0.3,0.3,0.3,0.35,0.3,0.4,0.3,0.45,0.3,0.5,0.3,0.55,0.3,0.6,0.3,0.65,0.3,0.7,0.3,0.75,0.3,0.8,0.3,0.85,0.3,0.9,0.3,0.95,0.3,1.0,0.3,0.0,0.35,0.05,0.35,0.1,0.35,0.15,0.35,0.2,0.35,0.25,0.35,0.3,0.35,0.35,0.35,0.4,0.35,0.45,0.35,0.5,0.35,0.55,0.35,0.6,0.35,0.65,0.35,0.7,0.35,0.75,0.35,0.8,0.35,0.85,0.35,0.9,0.35,0.95,0.35,1.0,0.35,0.0,0.4,0.05,0.4,0.1,0.4,0.15,0.4,0.2,0.4,0.25,0.4,0.3,0.4,0.35,0.4,0.4,0.4,0.45,0.4,0.5,0.4,0.55,0.4,0.6,0.4,0.65,0.4,0.7,0.4,0.75,0.4,0.8,0.4,0.85,0.4,0.9,0.4,0.95,0.4,1.0,0.4,0.0,0.45,0.05,0.45,0.1,0.45,0.15,0.45,0.2,0.45,0.25,0.45,0.3,0.45,0.35,0.45,0.4,0.45,0.45,0.45,0.5,0.45,0.55,0.45,0.6,0.45,0.65,0.45,0.7,0.45,0.75,0.45,0.8,0.45,0.85,0.45,0.9,0.45,0.95,0.45,1.0,0.45,0.0,0.5,0.05,0.5,0.1,0.5,0.15,0.5,0.2,0.5,0.25,0.5,0.3,0.5,0.35,0.5,0.4,0.5,0.45,0.5,0.5,0.5,0.55,0.5,0.6,0.5,0.65,0.5,0.7,0.5,0.75,0.5,0.8,0.5,0.85,0.5,0.9,0.5,0.95,0.5,1.0,0.5,0.0,0.55,0.05,0.55,0.1,0.55,0.15,0.55,0.2,0.55,0.25,0.55,0.3,0.55,0.35,0.55,0.4,0.55,0.45,0.55,0.5,0.55,0.55,0.55,0.6,0.55,0.65,0.55,0.7,0.55,0.75,0.55,0.8,0.55,0.85,0.55,0.9,0.55,0.95,0.55,1.0,0.55,0.0,0.6,0.05,0.6,0.1,0.6,0.15,0.6,0.2,0.6,0.25,0.6,0.3,0.6,0.35,0.6,0.4,0.6,0.45,0.6,0.5,0.6,0.55,0.6,0.6,0.6,0.65,0.6,0.7,0.6,0.75,0.6,0.8,0.6,0.85,0.6,0.9,0.6,0.95,0.6,1.0,0.6,0.0,0.65,0.05,0.65,0.1,0.65,0.15,0.65,0.2,0.65,0.25,0.65,0.3,0.65,0.35,0.65,0.4,0.65,0.45,0.65,0.5,0.65,0.55,0.65,0.6,0.65,0.65,0.65,0.7,0.65,0.75,0.65,0.8,0.65,0.85,0.65,0.9,0.65,0.95,0.65,1.0,0.65,0.0,0.7,0.05,0.7,0.1,0.7,0.15,0.7,0.2,0.7,0.25,0.7,0.3,0.7,0.35,0.7,0.4,0.7,0.45,0.7,0.5,0.7,0.55,0.7,0.6,0.7,0.65,0.7,0.7,0.7,0.75,0.7,0.8,0.7,0.85,0.7,0.9,0.7,0.95,0.7,1.0,0.7,0.0,0.75,0.05,0.75,0.1,0.75,0.15,0.75,0.2,0.75,0.25,0.75,0.3,0.75,0.35,0.75,0.4,0.75,0.45,0.75,0.5,0.75,0.55,0.75,0.6,0.75,0.65,0.75,0.7,0.75,0.75,0.75,0.8,0.75,0.85,0.75,0.9,0.75,0.95,0.75,1.0,0.75,0.0,0.8,0.05,0.8,0.1,0.8,0.15,0.8,0.2,0.8,0.25,0.8,0.3,0.8,0.35,0.8,0.4,0.8,0.45,0.8,0.5,0.8,0.55,0.8,0.6,0.8,0.65,0.8,0.7,0.8,0.75,0.8,0.8,0.8,0.85,0.8,0.9,0.8,0.95,0.8,1.0,0.8,0.0,0.85,0.05,0.85,0.1,0.85,0.15,0.85,0.2,0.85,0.25,0.85,0.3,0.85,0.35,0.85,0.4,0.85,0.45,0.85,0.5,0.85,0.55,0.85,0.6,0.85,0.65,0.85,0.7,0.85,0.75,0.85,0.8,0.85,0.85,0.85,0.9,0.85,0.95,0.85,1.0,0.85,0.0,0.9,0.05,0.9,0.1,0.9,0.15,0.9,0.2,0.9,0.25,0.9,0.3,0.9,0.35,0.9,0.4,0.9,0.45,0.9,0.5,0.9,0.55,0.9,0.6,0.9,0.65,0.9,0.7,0.9,0.75,0.9,0.8,0.9,0.85,0.9,0.9,0.9,0.95,0.9,1.0,0.9,0.0,0.95,0.05,0.95,0.1,0.95,0.15,0.95,0.2,0.95,0.25,0.95,0.3,0.95,0.35,0.95,0.4,0.95,0.45,0.95,0.5,0.95,0.55,0.95,0.6,0.95,0.65,0.95,0.7,0.95,0.75,0.95,0.8,0.95,0.85,0.95,0.9,0.95,0.95,0.95,1.0,0.95,0.025,0.0,0.075,0.0,0.125,0.0,0.175,0.0,0.225,0.0,0.275,0.0,0.325,0.0,0.375,0.0,0.425,0.0,0.475,0.0,0.525,0.0,0.575,0.0,0.625,0.0,0.675,0.0,0.725,0.0,0.775,0.0,0.825,0.0,0.875,0.0,0.925,0.0,0.975,0.0,0.025,1.0,0.075,1.0,0.125,1.0,0.175,1.0,0.225,1.0,0.275,1.0,0.325,1.0,0.375,1.0,0.425,1.0,0.475,1.0,0.525,1.0,0.575,1.0,0.625,1.0,0.675,1.0,0.725,1.0,0.775,1.0,0.825,1.0,0.875,1.0,0.925,1.0,0.975,1.0],"uvs2":null,"colors":null,"hasVertexAlpha":false,"matricesIndices":null,"matricesWeights":null,"matricesIndicesExtra":null,"matricesWeightsExtra":null,"indices":[0,1,2,2,1,3,1,4,3,3,4,5,4,6,5,5,6,7,6,8,7,7,8,9,8,10,9,9,10,11,10,12,11,11,12,13,12,14,13,13,14,15,14,16,15,15,16,17,16,18,17,17,18,19,18,20,19,19,20,21,20,22,21,21,22,23,22,24,23,23,24,25,24,26,25,25,26,27,26,28,27,27,28,29,28,30,29,29,30,31,30,32,31,31,32,33,32,34,33,33,34,35,34,36,35,35,36,37,36,38,37,37,38,39,38,40,39,39,40,41,2,3,42,42,3,43,3,5,43,43,5,44,5,7,44,44,7,45,7,9,45,45,9,46,9,11,46,46,11,47,11,13,47,47,13,48,13,15,48,48,15,49,15,17,49,49,17,50,17,19,50,50,19,51,19,21,51,51,21,52,21,23,52,52,23,53,23,25,53,53,25,54,25,27,54,54,27,55,27,29,55,55,29,56,29,31,56,56,31,57,31,33,57,57,33,58,33,35,58,58,35,59,35,37,59,59,37,60,37,39,60,60,39,61,39,41,61,61,41,62,42,43,63,63,43,64,43,44,64,64,44,65,44,45,65,65,45,66,45,46,66,66,46,67,46,47,67,67,47,68,47,48,68,68,48,69,48,49,69,69,49,70,49,50,70,70,50,71,50,51,71,71,51,72,51,52,72,72,52,73,52,53,73,73,53,74,53,54,74,74,54,75,54,55,75,75,55,76,55,56,76,76,56,77,56,57,77,77,57,78,57,58,78,78,58,79,58,59,79,79,59,80,59,60,80,80,60,81,60,61,81,81,61,82,61,62,82,82,62,83,63,64,84,84,64,85,64,65,85,85,65,86,65,66,86,86,66,87,66,67,87,87,67,88,67,68,88,88,68,89,68,69,89,89,69,90,69,70,90,90,70,91,70,71,91,91,71,92,71,72,92,92,72,93,72,73,93,93,73,94,73,74,94,94,74,95,74,75,95,95,75,96,75,76,96,96,76,97,76,77,97,97,77,98,77,78,98,98,78,99,78,79,99,99,79,100,79,80,100,100,80,101,80,81,101,101,81,102,81,82,102,102,82,103,82,83,103,103,83,104,84,85,105,105,85,106,85,86,106,106,86,107,86,87,107,107,87,108,87,88,108,108,88,109,88,89,109,109,89,110,89,90,110,110,90,111,90,91,111,111,91,112,91,92,112,112,92,113,92,93,113,113,93,114,93,94,114,114,94,115,94,95,115,115,95,116,95,96,116,116,96,117,96,97,117,117,97,118,97,98,118,118,98,119,98,99,119,119,99,120,99,100,120,120,100,121,100,101,121,121,101,122,101,102,122,122,102,123,102,103,123,123,103,124,103,104,124,124,104,125,105,106,126,126,106,127,106,107,127,127,107,128,107,108,128,128,108,129,108,109,129,129,109,130,109,110,130,130,110,131,110,111,131,131,111,132,111,112,132,132,112,133,112,113,133,133,113,134,113,114,134,134,114,135,114,115,135,135,115,136,115,116,136,136,116,137,116,117,137,137,117,138,117,118,138,138,118,139,118,119,139,139,119,140,119,120,140,140,120,141,120,121,141,141,121,142,121,122,142,142,122,143,122,123,143,143,123,144,123,124,144,144,124,145,124,125,145,145,125,146,126,127,147,147,127,148,127,128,148,148,128,149,128,129,149,149,129,150,129,130,150,150,130,151,130,131,151,151,131,152,131,132,152,152,132,153,132,133,153,153,133,154,133,134,154,154,134,155,134,135,155,155,135,156,135,136,156,156,136,157,136,137,157,157,137,158,137,138,158,158,138,159,138,139,159,159,139,160,139,140,160,160,140,161,140,141,161,161,141,162,141,142,162,162,142,163,142,143,163,163,143,164,143,144,164,164,144,165,144,145,165,165,145,166,145,146,166,166,146,167,147,148,168,168,148,169,148,149,169,169,149,170,149,150,170,170,150,171,150,151,171,171,151,172,151,152,172,172,152,173,152,153,173,173,153,174,153,154,174,174,154,175,154,155,175,175,155,176,155,156,176,176,156,177,156,157,177,177,157,178,157,158,178,178,158,179,158,159,179,179,159,180,159,160,180,180,160,181,160,161,181,181,161,182,161,162,182,182,162,183,162,163,183,183,163,184,163,164,184,184,164,185,164,165,185,185,165,186,165,166,186,186,166,187,166,167,187,187,167,188,168,169,189,189,169,190,169,170,190,190,170,191,170,171,191,191,171,192,171,172,192,192,172,193,172,173,193,193,173,194,173,174,194,194,174,195,174,175,195,195,175,196,175,176,196,196,176,197,176,177,197,197,177,198,177,178,198,198,178,199,178,179,199,199,179,200,179,180,200,200,180,201,180,181,201,201,181,202,181,182,202,202,182,203,182,183,203,203,183,204,183,184,204,204,184,205,184,185,205,205,185,206,185,186,206,206,186,207,186,187,207,207,187,208,187,188,208,208,188,209,189,190,210,210,190,211,190,191,211,211,191,212,191,192,212,212,192,213,192,193,213,213,193,214,193,194,214,214,194,215,194,195,215,215,195,216,195,196,216,216,196,217,196,197,217,217,197,218,197,198,218,218,198,219,198,199,219,219,199,220,199,200,220,220,200,221,200,201,221,221,201,222,201,202,222,222,202,223,202,203,223,223,203,224,203,204,224,224,204,225,204,205,225,225,205,226,205,206,226,226,206,227,206,207,227,227,207,228,207,208,228,228,208,229,208,209,229,229,209,230,210,211,231,231,211,232,211,212,232,232,212,233,212,213,233,233,213,234,213,214,234,234,214,235,214,215,235,235,215,236,215,216,236,236,216,237,216,217,237,237,217,238,217,218,238,238,218,239,218,219,239,239,219,240,219,220,240,240,220,241,220,221,241,241,221,242,221,222,242,242,222,243,222,223,243,243,223,244,223,224,244,244,224,245,224,225,245,245,225,246,225,226,246,246,226,247,226,227,247,247,227,248,227,228,248,248,228,249,228,229,249,249,229,250,229,230,250,250,230,251,231,232,252,252,232,253,232,233,253,253,233,254,233,234,254,254,234,255,234,235,255,255,235,256,235,236,256,256,236,257,236,237,257,257,237,258,237,238,258,258,238,259,238,239,259,259,239,260,239,240,260,260,240,261,240,241,261,261,241,262,241,242,262,262,242,263,242,243,263,263,243,264,243,244,264,264,244,265,244,245,265,265,245,266,245,246,266,266,246,267,246,247,267,267,247,268,247,248,268,268,248,269,248,249,269,269,249,270,249,250,270,270,250,271,250,251,271,271,251,272,252,253,273,273,253,274,253,254,274,274,254,275,254,255,275,275,255,276,255,256,276,276,256,277,256,257,277,277,257,278,257,258,278,278,258,279,258,259,279,279,259,280,259,260,280,280,260,281,260,261,281,281,261,282,261,262,282,282,262,283,262,263,283,283,263,284,263,264,284,284,264,285,264,265,285,285,265,286,265,266,286,286,266,287,266,267,287,287,267,288,267,268,288,288,268,289,268,269,289,289,269,290,269,270,290,290,270,291,270,271,291,291,271,292,271,272,292,292,272,293,273,274,294,294,274,295,274,275,295,295,275,296,275,276,296,296,276,297,276,277,297,297,277,298,277,278,298,298,278,299,278,279,299,299,279,300,279,280,300,300,280,301,280,281,301,301,281,302,281,282,302,302,282,303,282,283,303,303,283,304,283,284,304,304,284,305,284,285,305,305,285,306,285,286,306,306,286,307,286,287,307,307,287,308,287,288,308,308,288,309,288,289,309,309,289,310,289,290,310,310,290,311,290,291,311,311,291,312,291,292,312,312,292,313,292,293,313,313,293,314,294,295,315,315,295,316,295,296,316,316,296,317,296,297,317,317,297,318,297,298,318,318,298,319,298,299,319,319,299,320,299,300,320,320,300,321,300,301,321,321,301,322,301,302,322,322,302,323,302,303,323,323,303,324,303,304,324,324,304,325,304,305,325,325,305,326,305,306,326,326,306,327,306,307,327,327,307,328,307,308,328,328,308,329,308,309,329,329,309,330,309,310,330,330,310,331,310,311,331,331,311,332,311,312,332,332,312,333,312,313,333,333,313,334,313,314,334,334,314,335,315,316,336,336,316,337,316,317,337,337,317,338,317,318,338,338,318,339,318,319,339,339,319,340,319,320,340,340,320,341,320,321,341,341,321,342,321,322,342,342,322,343,322,323,343,343,323,344,323,324,344,344,324,345,324,325,345,345,325,346,325,326,346,346,326,347,326,327,347,347,327,348,327,328,348,348,328,349,328,329,349,349,329,350,329,330,350,350,330,351,330,331,351,351,331,352,331,332,352,352,332,353,332,333,353,353,333,354,333,334,354,354,334,355,334,335,355,355,335,356,336,337,357,357,337,358,337,338,358,358,338,359,338,339,359,359,339,360,339,340,360,360,340,361,340,341,361,361,341,362,341,342,362,362,342,363,342,343,363,363,343,364,343,344,364,364,344,365,344,345,365,365,345,366,345,346,366,366,346,367,346,347,367,367,347,368,347,348,368,368,348,369,348,349,369,369,349,370,349,350,370,370,350,371,350,351,371,371,351,372,351,352,372,372,352,373,352,353,373,373,353,374,353,354,374,374,354,375,354,355,375,375,355,376,355,356,376,376,356,377,357,358,378,378,358,379,358,359,379,379,359,380,359,360,380,380,360,381,360,361,381,381,361,382,361,362,382,382,362,383,362,363,383,383,363,384,363,364,384,384,364,385,364,365,385,385,365,386,365,366,386,386,366,387,366,367,387,387,367,388,367,368,388,388,368,389,368,369,389,389,369,390,369,370,390,390,370,391,370,371,391,391,371,392,371,372,392,392,372,393,372,373,393,393,373,394,373,374,394,394,374,395,374,375,395,395,375,396,375,376,396,396,376,397,376,377,397,397,377,398,1,0,399,4,1,400,6,4,401,8,6,402,10,8,403,12,10,404,14,12,405,16,14,406,18,16,407,20,18,408,22,20,409,24,22,410,26,24,411,28,26,412,30,28,413,32,30,414,34,32,415,36,34,416,38,36,417,40,38,418,378,379,419,379,380,420,380,381,421,381,382,422,382,383,423,383,384,424,384,385,425,385,386,426,386,387,427,387,388,428,388,389,429,389,390,430,390,391,431,391,392,432,392,393,433,393,394,434,394,395,435,395,396,436,396,397,437,397,398,438],"receiveShadows":false,"infiniteDistance":false,"billboardMode":0,"visibility":1.0,"subMeshes":[{"materialIndex":0,"verticesStart":0,"verticesCount":439,"indexStart":0,"indexCount":2280}],"instances":null,"skeletonId":-1,"numBoneInfluencers":4,"applyFog":false,"lodMeshIds":null,"lodDistances":null,"lodCoverages":null,"rotation":null,"scaling":[1.0,1.0,1.0],"rotationQuaternion":[0.0,0.1736,0.0,0.9848],"actions":null,"checkCollisions":false,"pickable":true,"showBoundingBox":false,"showSubMeshesBoundingBox":false,"alphaIndex":0,"physicsImpostor":0,"physicsMass":0.0,"physicsFriction":0.0,"physicsRestitution":0.0,"name":"pSphere5","id":"36C2E6AB-4AC0-8CA5-042B-7FB4C99705F1","parentId":null,"position":[6.0,0.0,5.0],"animations":[],"autoAnimate":true,"autoAnimateFrom":1,"autoAnimateTo":200,"autoAnimateLoop":true,"metadata":{}},{"materialId":"996C2977-4867-A7DC-F33E-A88D8BC4D135","isEnabled":true,"isVisible":true,"positions":[0.1488,-0.9877,0.0483,0.1266,-0.9877,0.0919,0.2939,-0.9511,0.0955,0.25,-0.9511,0.1816,0.0919,-0.9877,0.1266,0.1816,-0.9511,0.25,0.0483,-0.9877,0.1488,0.0955,-0.9511,0.2939,0.0,-0.9877,0.1564,0.0,-0.9511,0.309,-0.0483,-0.9877,0.1488,-0.0955,-0.9511,0.2939,-0.0919,-0.9877,0.1266,-0.1816,-0.9511,0.25,-0.1266,-0.9877,0.0919,-0.25,-0.9511,0.1816,-0.1488,-0.9877,0.0483,-0.2939,-0.9511,0.0955,-0.1564,-0.9877,0.0,-0.309,-0.9511,0.0,-0.1488,-0.9877,-0.0483,-0.2939,-0.9511,-0.0955,-0.1266,-0.9877,-0.0919,-0.25,-0.9511,-0.1816,-0.0919,-0.9877,-0.1266,-0.1816,-0.9511,-0.25,-0.0483,-0.9877,-0.1488,-0.0955,-0.9511,-0.2939,0.0,-0.9877,-0.1564,0.0,-0.9511,-0.309,0.0483,-0.9877,-0.1488,0.0955,-0.9511,-0.2939,0.0919,-0.9877,-0.1266,0.1816,-0.9511,-0.25,0.1266,-0.9877,-0.0919,0.25,-0.9511,-0.1816,0.1488,-0.9877,-0.0483,0.2939,-0.9511,-0.0955,0.1564,-0.9877,0.0,0.309,-0.9511,0.0,0.1488,-0.9877,0.0483,0.2939,-0.9511,0.0955,0.4318,-0.891,0.1403,0.3673,-0.891,0.2668,0.2668,-0.891,0.3673,0.1403,-0.891,0.4318,0.0,-0.891,0.454,-0.1403,-0.891,0.4318,-0.2668,-0.891,0.3673,-0.3673,-0.891,0.2668,-0.4318,-0.891,0.1403,-0.454,-0.891,0.0,-0.4318,-0.891,-0.1403,-0.3673,-0.891,-0.2668,-0.2668,-0.891,-0.3673,-0.1403,-0.891,-0.4318,0.0,-0.891,-0.454,0.1403,-0.891,-0.4318,0.2668,-0.891,-0.3673,0.3673,-0.891,-0.2668,0.4318,-0.891,-0.1403,0.454,-0.891,0.0,0.4318,-0.891,0.1403,0.559,-0.809,0.1816,0.4755,-0.809,0.3455,0.3455,-0.809,0.4755,0.1816,-0.809,0.559,0.0,-0.809,0.5878,-0.1816,-0.809,0.559,-0.3455,-0.809,0.4755,-0.4755,-0.809,0.3455,-0.559,-0.809,0.1816,-0.5878,-0.809,0.0,-0.559,-0.809,-0.1816,-0.4755,-0.809,-0.3455,-0.3455,-0.809,-0.4755,-0.1816,-0.809,-0.559,0.0,-0.809,-0.5878,0.1816,-0.809,-0.559,0.3455,-0.809,-0.4755,0.4755,-0.809,-0.3455,0.559,-0.809,-0.1816,0.5878,-0.809,0.0,0.559,-0.809,0.1816,0.6725,-0.7071,0.2185,0.5721,-0.7071,0.4156,0.4156,-0.7071,0.5721,0.2185,-0.7071,0.6725,0.0,-0.7071,0.7071,-0.2185,-0.7071,0.6725,-0.4156,-0.7071,0.5721,-0.5721,-0.7071,0.4156,-0.6725,-0.7071,0.2185,-0.7071,-0.7071,0.0,-0.6725,-0.7071,-0.2185,-0.5721,-0.7071,-0.4156,-0.4156,-0.7071,-0.5721,-0.2185,-0.7071,-0.6725,0.0,-0.7071,-0.7071,0.2185,-0.7071,-0.6725,0.4156,-0.7071,-0.5721,0.5721,-0.7071,-0.4156,0.6725,-0.7071,-0.2185,0.7071,-0.7071,0.0,0.6725,-0.7071,0.2185,0.7694,-0.5878,0.25,0.6545,-0.5878,0.4755,0.4755,-0.5878,0.6545,0.25,-0.5878,0.7694,0.0,-0.5878,0.809,-0.25,-0.5878,0.7694,-0.4755,-0.5878,0.6545,-0.6545,-0.5878,0.4755,-0.7694,-0.5878,0.25,-0.809,-0.5878,0.0,-0.7694,-0.5878,-0.25,-0.6545,-0.5878,-0.4755,-0.4755,-0.5878,-0.6545,-0.25,-0.5878,-0.7694,0.0,-0.5878,-0.809,0.25,-0.5878,-0.7694,0.4755,-0.5878,-0.6545,0.6545,-0.5878,-0.4755,0.7694,-0.5878,-0.25,0.809,-0.5878,0.0,0.7694,-0.5878,0.25,0.8474,-0.454,0.2753,0.7208,-0.454,0.5237,0.5237,-0.454,0.7208,0.2753,-0.454,0.8474,0.0,-0.454,0.891,-0.2753,-0.454,0.8474,-0.5237,-0.454,0.7208,-0.7208,-0.454,0.5237,-0.8474,-0.454,0.2753,-0.891,-0.454,0.0,-0.8474,-0.454,-0.2753,-0.7208,-0.454,-0.5237,-0.5237,-0.454,-0.7208,-0.2753,-0.454,-0.8474,0.0,-0.454,-0.891,0.2753,-0.454,-0.8474,0.5237,-0.454,-0.7208,0.7208,-0.454,-0.5237,0.8474,-0.454,-0.2753,0.891,-0.454,0.0,0.8474,-0.454,0.2753,0.9045,-0.309,0.2939,0.7694,-0.309,0.559,0.559,-0.309,0.7694,0.2939,-0.309,0.9045,0.0,-0.309,0.9511,-0.2939,-0.309,0.9045,-0.559,-0.309,0.7694,-0.7694,-0.309,0.559,-0.9045,-0.309,0.2939,-0.9511,-0.309,0.0,-0.9045,-0.309,-0.2939,-0.7694,-0.309,-0.559,-0.559,-0.309,-0.7694,-0.2939,-0.309,-0.9045,0.0,-0.309,-0.9511,0.2939,-0.309,-0.9045,0.559,-0.309,-0.7694,0.7694,-0.309,-0.559,0.9045,-0.309,-0.2939,0.9511,-0.309,0.0,0.9045,-0.309,0.2939,0.9393,-0.1564,0.3052,0.7991,-0.1564,0.5805,0.5805,-0.1564,0.7991,0.3052,-0.1564,0.9393,0.0,-0.1564,0.9877,-0.3052,-0.1564,0.9393,-0.5805,-0.1564,0.7991,-0.7991,-0.1564,0.5805,-0.9393,-0.1564,0.3052,-0.9877,-0.1564,0.0,-0.9393,-0.1564,-0.3052,-0.7991,-0.1564,-0.5805,-0.5805,-0.1564,-0.7991,-0.3052,-0.1564,-0.9393,0.0,-0.1564,-0.9877,0.3052,-0.1564,-0.9393,0.5805,-0.1564,-0.7991,0.7991,-0.1564,-0.5805,0.9393,-0.1564,-0.3052,0.9877,-0.1564,0.0,0.9393,-0.1564,0.3052,0.9511,0.0,0.309,0.809,0.0,0.5878,0.5878,0.0,0.809,0.309,0.0,0.9511,0.0,0.0,1.0,-0.309,0.0,0.9511,-0.5878,0.0,0.809,-0.809,0.0,0.5878,-0.9511,0.0,0.309,-1.0,0.0,0.0,-0.9511,0.0,-0.309,-0.809,0.0,-0.5878,-0.5878,0.0,-0.809,-0.309,0.0,-0.9511,0.0,0.0,-1.0,0.309,0.0,-0.9511,0.5878,0.0,-0.809,0.809,0.0,-0.5878,0.9511,0.0,-0.309,1.0,0.0,0.0,0.9511,0.0,0.309,0.9393,0.1564,0.3052,0.7991,0.1564,0.5805,0.5805,0.1564,0.7991,0.3052,0.1564,0.9393,0.0,0.1564,0.9877,-0.3052,0.1564,0.9393,-0.5805,0.1564,0.7991,-0.7991,0.1564,0.5805,-0.9393,0.1564,0.3052,-0.9877,0.1564,0.0,-0.9393,0.1564,-0.3052,-0.7991,0.1564,-0.5805,-0.5805,0.1564,-0.7991,-0.3052,0.1564,-0.9393,0.0,0.1564,-0.9877,0.3052,0.1564,-0.9393,0.5805,0.1564,-0.7991,0.7991,0.1564,-0.5805,0.9393,0.1564,-0.3052,0.9877,0.1564,0.0,0.9393,0.1564,0.3052,0.9045,0.309,0.2939,0.7694,0.309,0.559,0.559,0.309,0.7694,0.2939,0.309,0.9045,0.0,0.309,0.9511,-0.2939,0.309,0.9045,-0.559,0.309,0.7694,-0.7694,0.309,0.559,-0.9045,0.309,0.2939,-0.9511,0.309,0.0,-0.9045,0.309,-0.2939,-0.7694,0.309,-0.559,-0.559,0.309,-0.7694,-0.2939,0.309,-0.9045,0.0,0.309,-0.9511,0.2939,0.309,-0.9045,0.559,0.309,-0.7694,0.7694,0.309,-0.559,0.9045,0.309,-0.2939,0.9511,0.309,0.0,0.9045,0.309,0.2939,0.8474,0.454,0.2753,0.7208,0.454,0.5237,0.5237,0.454,0.7208,0.2753,0.454,0.8474,0.0,0.454,0.891,-0.2753,0.454,0.8474,-0.5237,0.454,0.7208,-0.7208,0.454,0.5237,-0.8474,0.454,0.2753,-0.891,0.454,0.0,-0.8474,0.454,-0.2753,-0.7208,0.454,-0.5237,-0.5237,0.454,-0.7208,-0.2753,0.454,-0.8474,0.0,0.454,-0.891,0.2753,0.454,-0.8474,0.5237,0.454,-0.7208,0.7208,0.454,-0.5237,0.8474,0.454,-0.2753,0.891,0.454,0.0,0.8474,0.454,0.2753,0.7694,0.5878,0.25,0.6545,0.5878,0.4755,0.4755,0.5878,0.6545,0.25,0.5878,0.7694,0.0,0.5878,0.809,-0.25,0.5878,0.7694,-0.4755,0.5878,0.6545,-0.6545,0.5878,0.4755,-0.7694,0.5878,0.25,-0.809,0.5878,0.0,-0.7694,0.5878,-0.25,-0.6545,0.5878,-0.4755,-0.4755,0.5878,-0.6545,-0.25,0.5878,-0.7694,0.0,0.5878,-0.809,0.25,0.5878,-0.7694,0.4755,0.5878,-0.6545,0.6545,0.5878,-0.4755,0.7694,0.5878,-0.25,0.809,0.5878,0.0,0.7694,0.5878,0.25,0.6725,0.7071,0.2185,0.5721,0.7071,0.4156,0.4156,0.7071,0.5721,0.2185,0.7071,0.6725,0.0,0.7071,0.7071,-0.2185,0.7071,0.6725,-0.4156,0.7071,0.5721,-0.5721,0.7071,0.4156,-0.6725,0.7071,0.2185,-0.7071,0.7071,0.0,-0.6725,0.7071,-0.2185,-0.5721,0.7071,-0.4156,-0.4156,0.7071,-0.5721,-0.2185,0.7071,-0.6725,0.0,0.7071,-0.7071,0.2185,0.7071,-0.6725,0.4156,0.7071,-0.5721,0.5721,0.7071,-0.4156,0.6725,0.7071,-0.2185,0.7071,0.7071,0.0,0.6725,0.7071,0.2185,0.559,0.809,0.1816,0.4755,0.809,0.3455,0.3455,0.809,0.4755,0.1816,0.809,0.559,0.0,0.809,0.5878,-0.1816,0.809,0.559,-0.3455,0.809,0.4755,-0.4755,0.809,0.3455,-0.559,0.809,0.1816,-0.5878,0.809,0.0,-0.559,0.809,-0.1816,-0.4755,0.809,-0.3455,-0.3455,0.809,-0.4755,-0.1816,0.809,-0.559,0.0,0.809,-0.5878,0.1816,0.809,-0.559,0.3455,0.809,-0.4755,0.4755,0.809,-0.3455,0.559,0.809,-0.1816,0.5878,0.809,0.0,0.559,0.809,0.1816,0.4318,0.891,0.1403,0.3673,0.891,0.2668,0.2668,0.891,0.3673,0.1403,0.891,0.4318,0.0,0.891,0.454,-0.1403,0.891,0.4318,-0.2668,0.891,0.3673,-0.3673,0.891,0.2668,-0.4318,0.891,0.1403,-0.454,0.891,0.0,-0.4318,0.891,-0.1403,-0.3673,0.891,-0.2668,-0.2668,0.891,-0.3673,-0.1403,0.891,-0.4318,0.0,0.891,-0.454,0.1403,0.891,-0.4318,0.2668,0.891,-0.3673,0.3673,0.891,-0.2668,0.4318,0.891,-0.1403,0.454,0.891,0.0,0.4318,0.891,0.1403,0.2939,0.9511,0.0955,0.25,0.9511,0.1816,0.1816,0.9511,0.25,0.0955,0.9511,0.2939,0.0,0.9511,0.309,-0.0955,0.9511,0.2939,-0.1816,0.9511,0.25,-0.25,0.9511,0.1816,-0.2939,0.9511,0.0955,-0.309,0.9511,0.0,-0.2939,0.9511,-0.0955,-0.25,0.9511,-0.1816,-0.1816,0.9511,-0.25,-0.0955,0.9511,-0.2939,0.0,0.9511,-0.309,0.0955,0.9511,-0.2939,0.1816,0.9511,-0.25,0.25,0.9511,-0.1816,0.2939,0.9511,-0.0955,0.309,0.9511,0.0,0.2939,0.9511,0.0955,0.1488,0.9877,0.0483,0.1266,0.9877,0.0919,0.0919,0.9877,0.1266,0.0483,0.9877,0.1488,0.0,0.9877,0.1564,-0.0483,0.9877,0.1488,-0.0919,0.9877,0.1266,-0.1266,0.9877,0.0919,-0.1488,0.9877,0.0483,-0.1564,0.9877,0.0,-0.1488,0.9877,-0.0483,-0.1266,0.9877,-0.0919,-0.0919,0.9877,-0.1266,-0.0483,0.9877,-0.1488,0.0,0.9877,-0.1564,0.0483,0.9877,-0.1488,0.0919,0.9877,-0.1266,0.1266,0.9877,-0.0919,0.1488,0.9877,-0.0483,0.1564,0.9877,0.0,0.1488,0.9877,0.0483,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0],"normals":[0.1906,-0.9797,0.0619,0.1621,-0.9797,0.1178,0.3173,-0.9427,0.1031,0.2699,-0.9427,0.1961,0.1178,-0.9797,0.1621,0.1961,-0.9427,0.2699,0.0619,-0.9797,0.1906,0.1031,-0.9427,0.3173,0.0,-0.9797,0.2004,0.0,-0.9427,0.3336,-0.0619,-0.9797,0.1906,-0.1031,-0.9427,0.3173,-0.1178,-0.9797,0.1621,-0.1961,-0.9427,0.2699,-0.1621,-0.9797,0.1178,-0.2699,-0.9427,0.1961,-0.1906,-0.9797,0.0619,-0.3173,-0.9427,0.1031,-0.2004,-0.9797,0.0,-0.3336,-0.9427,0.0,-0.1906,-0.9797,-0.0619,-0.3173,-0.9427,-0.1031,-0.1621,-0.9797,-0.1178,-0.2699,-0.9427,-0.1961,-0.1178,-0.9797,-0.1621,-0.1961,-0.9427,-0.2699,-0.0619,-0.9797,-0.1906,-0.1031,-0.9427,-0.3173,0.0,-0.9797,-0.2004,0.0,-0.9427,-0.3336,0.0619,-0.9797,-0.1906,0.1031,-0.9427,-0.3173,0.1178,-0.9797,-0.1621,0.1961,-0.9427,-0.2699,0.1621,-0.9797,-0.1178,0.2699,-0.9427,-0.1961,0.1906,-0.9797,-0.0619,0.3173,-0.9427,-0.1031,0.2004,-0.9797,0.0,0.3336,-0.9427,0.0,0.1906,-0.9797,0.0619,0.3173,-0.9427,0.1031,0.4477,-0.8823,0.1455,0.3808,-0.8823,0.2767,0.2767,-0.8823,0.3808,0.1455,-0.8823,0.4477,0.0,-0.8823,0.4708,-0.1455,-0.8823,0.4477,-0.2767,-0.8823,0.3808,-0.3808,-0.8823,0.2767,-0.4477,-0.8823,0.1455,-0.4708,-0.8823,0.0,-0.4477,-0.8823,-0.1455,-0.3808,-0.8823,-0.2767,-0.2767,-0.8823,-0.3808,-0.1455,-0.8823,-0.4477,0.0,-0.8823,-0.4708,0.1455,-0.8823,-0.4477,0.2767,-0.8823,-0.3808,0.3808,-0.8823,-0.2767,0.4477,-0.8823,-0.1455,0.4708,-0.8823,0.0,0.4477,-0.8823,0.1455,0.5703,-0.8003,0.1853,0.4851,-0.8003,0.3525,0.3525,-0.8003,0.4851,0.1853,-0.8003,0.5703,0.0,-0.8003,0.5997,-0.1853,-0.8003,0.5703,-0.3525,-0.8003,0.4851,-0.4851,-0.8003,0.3525,-0.5703,-0.8003,0.1853,-0.5997,-0.8003,0.0,-0.5703,-0.8003,-0.1853,-0.4851,-0.8003,-0.3525,-0.3525,-0.8003,-0.4851,-0.1853,-0.8003,-0.5703,0.0,-0.8003,-0.5997,0.1853,-0.8003,-0.5703,0.3525,-0.8003,-0.4851,0.4851,-0.8003,-0.3525,0.5703,-0.8003,-0.1853,0.5997,-0.8003,0.0,0.5703,-0.8003,0.1853,0.6803,-0.6988,0.221,0.5787,-0.6988,0.4205,0.4205,-0.6988,0.5787,0.221,-0.6988,0.6803,0.0,-0.6988,0.7153,-0.221,-0.6988,0.6803,-0.4205,-0.6988,0.5787,-0.5787,-0.6988,0.4205,-0.6803,-0.6988,0.221,-0.7153,-0.6988,0.0,-0.6803,-0.6988,-0.221,-0.5787,-0.6988,-0.4205,-0.4205,-0.6988,-0.5787,-0.221,-0.6988,-0.6803,0.0,-0.6988,-0.7153,0.221,-0.6988,-0.6803,0.4205,-0.6988,-0.5787,0.5787,-0.6988,-0.4205,0.6803,-0.6988,-0.221,0.7153,-0.6988,0.0,0.6803,-0.6988,0.221,0.7745,-0.5804,0.2516,0.6588,-0.5804,0.4787,0.4787,-0.5804,0.6588,0.2516,-0.5804,0.7745,0.0,-0.5804,0.8143,-0.2516,-0.5804,0.7745,-0.4787,-0.5804,0.6588,-0.6588,-0.5804,0.4787,-0.7745,-0.5804,0.2516,-0.8143,-0.5804,0.0,-0.7745,-0.5804,-0.2516,-0.6588,-0.5804,-0.4787,-0.4787,-0.5804,-0.6588,-0.2516,-0.5804,-0.7745,0.0,-0.5804,-0.8143,0.2516,-0.5804,-0.7745,0.4787,-0.5804,-0.6588,0.6588,-0.5804,-0.4787,0.7745,-0.5804,-0.2516,0.8143,-0.5804,0.0,0.7745,-0.5804,0.2516,0.8503,-0.448,0.2763,0.7233,-0.448,0.5255,0.5255,-0.448,0.7233,0.2763,-0.448,0.8503,0.0,-0.448,0.894,-0.2763,-0.448,0.8503,-0.5255,-0.448,0.7233,-0.7233,-0.448,0.5255,-0.8503,-0.448,0.2763,-0.894,-0.448,0.0,-0.8503,-0.448,-0.2763,-0.7233,-0.448,-0.5255,-0.5255,-0.448,-0.7233,-0.2763,-0.448,-0.8503,0.0,-0.448,-0.894,0.2763,-0.448,-0.8503,0.5255,-0.448,-0.7233,0.7233,-0.448,-0.5255,0.8503,-0.448,-0.2763,0.894,-0.448,0.0,0.8503,-0.448,0.2763,0.9058,-0.3048,0.2943,0.7705,-0.3048,0.5598,0.5598,-0.3048,0.7705,0.2943,-0.3048,0.9058,0.0,-0.3048,0.9524,-0.2943,-0.3048,0.9058,-0.5598,-0.3048,0.7705,-0.7705,-0.3048,0.5598,-0.9058,-0.3048,0.2943,-0.9524,-0.3048,0.0,-0.9058,-0.3048,-0.2943,-0.7705,-0.3048,-0.5598,-0.5598,-0.3048,-0.7705,-0.2943,-0.3048,-0.9058,0.0,-0.3048,-0.9524,0.2943,-0.3048,-0.9058,0.5598,-0.3048,-0.7705,0.7705,-0.3048,-0.5598,0.9058,-0.3048,-0.2943,0.9524,-0.3048,0.0,0.9058,-0.3048,0.2943,0.9397,-0.1542,0.3053,0.7993,-0.1542,0.5808,0.5808,-0.1542,0.7993,0.3053,-0.1542,0.9397,0.0,-0.1542,0.988,-0.3053,-0.1542,0.9397,-0.5808,-0.1542,0.7993,-0.7993,-0.1542,0.5808,-0.9397,-0.1542,0.3053,-0.988,-0.1542,0.0,-0.9397,-0.1542,-0.3053,-0.7993,-0.1542,-0.5808,-0.5808,-0.1542,-0.7993,-0.3053,-0.1542,-0.9397,0.0,-0.1542,-0.988,0.3053,-0.1542,-0.9397,0.5808,-0.1542,-0.7993,0.7993,-0.1542,-0.5808,0.9397,-0.1542,-0.3053,0.988,-0.1542,0.0,0.9397,-0.1542,0.3053,0.9511,0.0,0.309,0.809,0.0,0.5878,0.5878,0.0,0.809,0.309,0.0,0.9511,0.0,0.0,1.0,-0.309,0.0,0.9511,-0.5878,0.0,0.809,-0.809,0.0,0.5878,-0.9511,0.0,0.309,-1.0,0.0,0.0,-0.9511,0.0,-0.309,-0.809,0.0,-0.5878,-0.5878,0.0,-0.809,-0.309,0.0,-0.9511,0.0,0.0,-1.0,0.309,0.0,-0.9511,0.5878,0.0,-0.809,0.809,0.0,-0.5878,0.9511,0.0,-0.309,1.0,0.0,0.0,0.9511,0.0,0.309,0.9397,0.1542,0.3053,0.7993,0.1542,0.5808,0.5808,0.1542,0.7993,0.3053,0.1542,0.9397,0.0,0.1542,0.988,-0.3053,0.1542,0.9397,-0.5808,0.1542,0.7993,-0.7993,0.1542,0.5808,-0.9397,0.1542,0.3053,-0.988,0.1542,0.0,-0.9397,0.1542,-0.3053,-0.7993,0.1542,-0.5808,-0.5808,0.1542,-0.7993,-0.3053,0.1542,-0.9397,0.0,0.1542,-0.988,0.3053,0.1542,-0.9397,0.5808,0.1542,-0.7993,0.7993,0.1542,-0.5808,0.9397,0.1542,-0.3053,0.988,0.1542,0.0,0.9397,0.1542,0.3053,0.9058,0.3048,0.2943,0.7705,0.3048,0.5598,0.5598,0.3048,0.7705,0.2943,0.3048,0.9058,0.0,0.3048,0.9524,-0.2943,0.3048,0.9058,-0.5598,0.3048,0.7705,-0.7705,0.3048,0.5598,-0.9058,0.3048,0.2943,-0.9524,0.3048,0.0,-0.9058,0.3048,-0.2943,-0.7705,0.3048,-0.5598,-0.5598,0.3048,-0.7705,-0.2943,0.3048,-0.9058,0.0,0.3048,-0.9524,0.2943,0.3048,-0.9058,0.5598,0.3048,-0.7705,0.7705,0.3048,-0.5598,0.9058,0.3048,-0.2943,0.9524,0.3048,0.0,0.9058,0.3048,0.2943,0.8503,0.448,0.2763,0.7233,0.448,0.5255,0.5255,0.448,0.7233,0.2763,0.448,0.8503,0.0,0.448,0.894,-0.2763,0.448,0.8503,-0.5255,0.448,0.7233,-0.7233,0.448,0.5255,-0.8503,0.448,0.2763,-0.894,0.448,0.0,-0.8503,0.448,-0.2763,-0.7233,0.448,-0.5255,-0.5255,0.448,-0.7233,-0.2763,0.448,-0.8503,0.0,0.448,-0.894,0.2763,0.448,-0.8503,0.5255,0.448,-0.7233,0.7233,0.448,-0.5255,0.8503,0.448,-0.2763,0.894,0.448,0.0,0.8503,0.448,0.2763,0.7745,0.5804,0.2516,0.6588,0.5804,0.4787,0.4787,0.5804,0.6588,0.2516,0.5804,0.7745,0.0,0.5804,0.8143,-0.2516,0.5804,0.7745,-0.4787,0.5804,0.6588,-0.6588,0.5804,0.4787,-0.7745,0.5804,0.2516,-0.8143,0.5804,0.0,-0.7745,0.5804,-0.2516,-0.6588,0.5804,-0.4787,-0.4787,0.5804,-0.6588,-0.2516,0.5804,-0.7745,0.0,0.5804,-0.8143,0.2516,0.5804,-0.7745,0.4787,0.5804,-0.6588,0.6588,0.5804,-0.4787,0.7745,0.5804,-0.2516,0.8143,0.5804,0.0,0.7745,0.5804,0.2516,0.6803,0.6988,0.221,0.5787,0.6988,0.4205,0.4205,0.6988,0.5787,0.221,0.6988,0.6803,0.0,0.6988,0.7153,-0.221,0.6988,0.6803,-0.4205,0.6988,0.5787,-0.5787,0.6988,0.4205,-0.6803,0.6988,0.221,-0.7153,0.6988,0.0,-0.6803,0.6988,-0.221,-0.5787,0.6988,-0.4205,-0.4205,0.6988,-0.5787,-0.221,0.6988,-0.6803,0.0,0.6988,-0.7153,0.221,0.6988,-0.6803,0.4205,0.6988,-0.5787,0.5787,0.6988,-0.4205,0.6803,0.6988,-0.221,0.7153,0.6988,0.0,0.6803,0.6988,0.221,0.5703,0.8003,0.1853,0.4851,0.8003,0.3525,0.3525,0.8003,0.4851,0.1853,0.8003,0.5703,0.0,0.8003,0.5997,-0.1853,0.8003,0.5703,-0.3525,0.8003,0.4851,-0.4851,0.8003,0.3525,-0.5703,0.8003,0.1853,-0.5997,0.8003,0.0,-0.5703,0.8003,-0.1853,-0.4851,0.8003,-0.3525,-0.3525,0.8003,-0.4851,-0.1853,0.8003,-0.5703,0.0,0.8003,-0.5997,0.1853,0.8003,-0.5703,0.3525,0.8003,-0.4851,0.4851,0.8003,-0.3525,0.5703,0.8003,-0.1853,0.5997,0.8003,0.0,0.5703,0.8003,0.1853,0.4477,0.8823,0.1455,0.3808,0.8823,0.2767,0.2767,0.8823,0.3808,0.1455,0.8823,0.4477,0.0,0.8823,0.4708,-0.1455,0.8823,0.4477,-0.2767,0.8823,0.3808,-0.3808,0.8823,0.2767,-0.4477,0.8823,0.1455,-0.4708,0.8823,0.0,-0.4477,0.8823,-0.1455,-0.3808,0.8823,-0.2767,-0.2767,0.8823,-0.3808,-0.1455,0.8823,-0.4477,0.0,0.8823,-0.4708,0.1455,0.8823,-0.4477,0.2767,0.8823,-0.3808,0.3808,0.8823,-0.2767,0.4477,0.8823,-0.1455,0.4708,0.8823,0.0,0.4477,0.8823,0.1455,0.3173,0.9427,0.1031,0.2699,0.9427,0.1961,0.1961,0.9427,0.2699,0.1031,0.9427,0.3173,0.0,0.9427,0.3336,-0.1031,0.9427,0.3173,-0.1961,0.9427,0.2699,-0.2699,0.9427,0.1961,-0.3173,0.9427,0.1031,-0.3336,0.9427,0.0,-0.3173,0.9427,-0.1031,-0.2699,0.9427,-0.1961,-0.1961,0.9427,-0.2699,-0.1031,0.9427,-0.3173,0.0,0.9427,-0.3336,0.1031,0.9427,-0.3173,0.1961,0.9427,-0.2699,0.2699,0.9427,-0.1961,0.3173,0.9427,-0.1031,0.3336,0.9427,0.0,0.3173,0.9427,0.1031,0.1906,0.9797,0.0619,0.1621,0.9797,0.1178,0.1178,0.9797,0.1621,0.0619,0.9797,0.1906,0.0,0.9797,0.2004,-0.0619,0.9797,0.1906,-0.1178,0.9797,0.1621,-0.1621,0.9797,0.1178,-0.1906,0.9797,0.0619,-0.2004,0.9797,0.0,-0.1906,0.9797,-0.0619,-0.1621,0.9797,-0.1178,-0.1178,0.9797,-0.1621,-0.0619,0.9797,-0.1906,0.0,0.9797,-0.2004,0.0619,0.9797,-0.1906,0.1178,0.9797,-0.1621,0.1621,0.9797,-0.1178,0.1906,0.9797,-0.0619,0.2004,0.9797,0.0,0.1906,0.9797,0.0619,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0],"tangents":[-0.4482,-0.0307,0.8934,-1.0,-0.5629,0.0062,0.8265,-1.0,-0.438,-0.0493,0.8976,-1.0,-0.5878,0.0,0.809,-1.0,-0.7908,0.0062,0.6121,-1.0,-0.809,0.0,0.5878,-1.0,-0.9412,0.0062,0.3378,-1.0,-0.9511,0.0,0.309,-1.0,-0.9995,0.0062,0.0304,-1.0,-1.0,0.0,0.0,-1.0,-0.96,0.0062,-0.28,-1.0,-0.9511,0.0,-0.309,-1.0,-0.8265,0.0062,-0.5629,-1.0,-0.809,0.0,-0.5878,-1.0,-0.6121,0.0062,-0.7908,-1.0,-0.5878,0.0,-0.809,-1.0,-0.3378,0.0062,-0.9412,-1.0,-0.309,0.0,-0.9511,-1.0,-0.0304,0.0062,-0.9995,-1.0,0.0,0.0,-1.0,-1.0,0.28,0.0062,-0.96,-1.0,0.309,0.0,-0.9511,-1.0,0.5629,0.0062,-0.8265,-1.0,0.5878,0.0,-0.809,-1.0,0.7908,0.0062,-0.6121,-1.0,0.809,0.0,-0.5878,-1.0,0.9412,0.0062,-0.3378,-1.0,0.9511,0.0,-0.309,-1.0,0.9995,0.0062,-0.0304,-1.0,1.0,0.0,0.0,-1.0,0.96,0.0062,0.28,-1.0,0.9511,0.0,0.309,-1.0,0.8265,0.0062,0.5629,-1.0,0.809,0.0,0.5878,-1.0,0.6121,0.0062,0.7908,-1.0,0.5878,0.0,0.809,-1.0,0.3378,0.0062,0.9412,-1.0,0.309,0.0,0.9511,-1.0,0.0304,0.0062,0.9995,-1.0,0.0,0.0,1.0,-1.0,-0.1625,0.0307,0.9862,-1.0,-0.1732,0.0493,0.9836,-1.0,-0.4222,-0.0651,0.9042,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.1899,0.0651,0.9796,-1.0,-0.4023,-0.0754,0.9124,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.2109,0.0754,0.9746,-1.0,-0.3802,-0.0787,0.9215,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.234,0.0787,0.969,-1.0,-0.3582,-0.0745,0.9306,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.2572,0.0745,0.9635,-1.0,-0.3384,-0.0633,0.9389,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.2781,0.0633,0.9585,-1.0,-0.3226,-0.0459,0.9454,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.2947,0.0459,0.9545,-1.0,-0.3125,-0.0241,0.9496,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.3053,0.0241,0.9519,-1.0,-0.309,0.0,0.9511,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.309,0.0,0.9511,-1.0,-0.3125,0.0241,0.9496,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.3053,-0.0241,0.9519,-1.0,-0.3226,0.0459,0.9454,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.2947,-0.0459,0.9545,-1.0,-0.3384,0.0633,0.9389,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.2781,-0.0633,0.9585,-1.0,-0.3582,0.0745,0.9306,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.2572,-0.0745,0.9635,-1.0,-0.3802,0.0787,0.9215,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.234,-0.0787,0.969,-1.0,-0.4023,0.0754,0.9124,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.2109,-0.0754,0.9746,-1.0,-0.4222,0.0651,0.9042,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.1899,-0.0651,0.9796,-1.0,-0.438,0.0493,0.8976,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.1732,-0.0493,0.9836,-1.0,-0.4482,0.0307,0.8934,-1.0,-0.6121,0.0062,0.7908,-1.0,-0.8265,0.0062,0.5629,-1.0,-0.96,0.0062,0.28,-1.0,-0.9995,0.0062,-0.0304,-1.0,-0.9412,0.0062,-0.3378,-1.0,-0.7908,0.0062,-0.6121,-1.0,-0.5629,0.0062,-0.8265,-1.0,-0.28,0.0062,-0.96,-1.0,0.0304,0.0062,-0.9995,-1.0,0.3378,0.0062,-0.9412,-1.0,0.6121,0.0062,-0.7908,-1.0,0.8265,0.0062,-0.5629,-1.0,0.96,0.0062,-0.28,-1.0,0.9995,0.0062,0.0304,-1.0,0.9412,0.0062,0.3378,-1.0,0.7908,0.0062,0.6121,-1.0,0.5629,0.0062,0.8265,-1.0,0.28,0.0062,0.96,-1.0,-0.0304,0.0062,0.9995,-1.0,-0.1625,-0.0307,0.9862,-1.0,-0.454,0.0,0.891,-1.0,-0.7071,0.0,0.7071,-1.0,-0.891,0.0,0.454,-1.0,-0.9877,0.0,0.1564,-1.0,-0.9877,0.0,-0.1564,-1.0,-0.891,0.0,-0.454,-1.0,-0.7071,0.0,-0.7071,-1.0,-0.454,0.0,-0.891,-1.0,-0.1564,0.0,-0.9877,-1.0,0.1564,0.0,-0.9877,-1.0,0.454,0.0,-0.891,-1.0,0.7071,0.0,-0.7071,-1.0,0.891,0.0,-0.454,-1.0,0.9877,0.0,-0.1564,-1.0,0.9877,0.0,0.1564,-1.0,0.891,0.0,0.454,-1.0,0.7071,0.0,0.7071,-1.0,0.454,0.0,0.891,-1.0,0.1564,0.0,0.9877,-1.0,-0.1564,0.0,0.9877,-1.0,-0.454,0.0,0.891,-1.0,-0.7071,0.0,0.7071,-1.0,-0.891,0.0,0.454,-1.0,-0.9877,0.0,0.1564,-1.0,-0.9877,0.0,-0.1564,-1.0,-0.891,0.0,-0.454,-1.0,-0.7071,0.0,-0.7071,-1.0,-0.454,0.0,-0.891,-1.0,-0.1564,0.0,-0.9877,-1.0,0.1564,0.0,-0.9877,-1.0,0.454,0.0,-0.891,-1.0,0.7071,0.0,-0.7071,-1.0,0.891,0.0,-0.454,-1.0,0.9877,0.0,-0.1564,-1.0,0.9877,0.0,0.1564,-1.0,0.891,0.0,0.454,-1.0,0.7071,0.0,0.7071,-1.0,0.454,0.0,0.891,-1.0,0.1564,0.0,0.9877,-1.0,-0.1564,0.0,0.9877,-1.0],"uvs":[0.0,0.05,0.05,0.05,0.0,0.1,0.05,0.1,0.1,0.05,0.1,0.1,0.15,0.05,0.15,0.1,0.2,0.05,0.2,0.1,0.25,0.05,0.25,0.1,0.3,0.05,0.3,0.1,0.35,0.05,0.35,0.1,0.4,0.05,0.4,0.1,0.45,0.05,0.45,0.1,0.5,0.05,0.5,0.1,0.55,0.05,0.55,0.1,0.6,0.05,0.6,0.1,0.65,0.05,0.65,0.1,0.7,0.05,0.7,0.1,0.75,0.05,0.75,0.1,0.8,0.05,0.8,0.1,0.85,0.05,0.85,0.1,0.9,0.05,0.9,0.1,0.95,0.05,0.95,0.1,1.0,0.05,1.0,0.1,0.0,0.15,0.05,0.15,0.1,0.15,0.15,0.15,0.2,0.15,0.25,0.15,0.3,0.15,0.35,0.15,0.4,0.15,0.45,0.15,0.5,0.15,0.55,0.15,0.6,0.15,0.65,0.15,0.7,0.15,0.75,0.15,0.8,0.15,0.85,0.15,0.9,0.15,0.95,0.15,1.0,0.15,0.0,0.2,0.05,0.2,0.1,0.2,0.15,0.2,0.2,0.2,0.25,0.2,0.3,0.2,0.35,0.2,0.4,0.2,0.45,0.2,0.5,0.2,0.55,0.2,0.6,0.2,0.65,0.2,0.7,0.2,0.75,0.2,0.8,0.2,0.85,0.2,0.9,0.2,0.95,0.2,1.0,0.2,0.0,0.25,0.05,0.25,0.1,0.25,0.15,0.25,0.2,0.25,0.25,0.25,0.3,0.25,0.35,0.25,0.4,0.25,0.45,0.25,0.5,0.25,0.55,0.25,0.6,0.25,0.65,0.25,0.7,0.25,0.75,0.25,0.8,0.25,0.85,0.25,0.9,0.25,0.95,0.25,1.0,0.25,0.0,0.3,0.05,0.3,0.1,0.3,0.15,0.3,0.2,0.3,0.25,0.3,0.3,0.3,0.35,0.3,0.4,0.3,0.45,0.3,0.5,0.3,0.55,0.3,0.6,0.3,0.65,0.3,0.7,0.3,0.75,0.3,0.8,0.3,0.85,0.3,0.9,0.3,0.95,0.3,1.0,0.3,0.0,0.35,0.05,0.35,0.1,0.35,0.15,0.35,0.2,0.35,0.25,0.35,0.3,0.35,0.35,0.35,0.4,0.35,0.45,0.35,0.5,0.35,0.55,0.35,0.6,0.35,0.65,0.35,0.7,0.35,0.75,0.35,0.8,0.35,0.85,0.35,0.9,0.35,0.95,0.35,1.0,0.35,0.0,0.4,0.05,0.4,0.1,0.4,0.15,0.4,0.2,0.4,0.25,0.4,0.3,0.4,0.35,0.4,0.4,0.4,0.45,0.4,0.5,0.4,0.55,0.4,0.6,0.4,0.65,0.4,0.7,0.4,0.75,0.4,0.8,0.4,0.85,0.4,0.9,0.4,0.95,0.4,1.0,0.4,0.0,0.45,0.05,0.45,0.1,0.45,0.15,0.45,0.2,0.45,0.25,0.45,0.3,0.45,0.35,0.45,0.4,0.45,0.45,0.45,0.5,0.45,0.55,0.45,0.6,0.45,0.65,0.45,0.7,0.45,0.75,0.45,0.8,0.45,0.85,0.45,0.9,0.45,0.95,0.45,1.0,0.45,0.0,0.5,0.05,0.5,0.1,0.5,0.15,0.5,0.2,0.5,0.25,0.5,0.3,0.5,0.35,0.5,0.4,0.5,0.45,0.5,0.5,0.5,0.55,0.5,0.6,0.5,0.65,0.5,0.7,0.5,0.75,0.5,0.8,0.5,0.85,0.5,0.9,0.5,0.95,0.5,1.0,0.5,0.0,0.55,0.05,0.55,0.1,0.55,0.15,0.55,0.2,0.55,0.25,0.55,0.3,0.55,0.35,0.55,0.4,0.55,0.45,0.55,0.5,0.55,0.55,0.55,0.6,0.55,0.65,0.55,0.7,0.55,0.75,0.55,0.8,0.55,0.85,0.55,0.9,0.55,0.95,0.55,1.0,0.55,0.0,0.6,0.05,0.6,0.1,0.6,0.15,0.6,0.2,0.6,0.25,0.6,0.3,0.6,0.35,0.6,0.4,0.6,0.45,0.6,0.5,0.6,0.55,0.6,0.6,0.6,0.65,0.6,0.7,0.6,0.75,0.6,0.8,0.6,0.85,0.6,0.9,0.6,0.95,0.6,1.0,0.6,0.0,0.65,0.05,0.65,0.1,0.65,0.15,0.65,0.2,0.65,0.25,0.65,0.3,0.65,0.35,0.65,0.4,0.65,0.45,0.65,0.5,0.65,0.55,0.65,0.6,0.65,0.65,0.65,0.7,0.65,0.75,0.65,0.8,0.65,0.85,0.65,0.9,0.65,0.95,0.65,1.0,0.65,0.0,0.7,0.05,0.7,0.1,0.7,0.15,0.7,0.2,0.7,0.25,0.7,0.3,0.7,0.35,0.7,0.4,0.7,0.45,0.7,0.5,0.7,0.55,0.7,0.6,0.7,0.65,0.7,0.7,0.7,0.75,0.7,0.8,0.7,0.85,0.7,0.9,0.7,0.95,0.7,1.0,0.7,0.0,0.75,0.05,0.75,0.1,0.75,0.15,0.75,0.2,0.75,0.25,0.75,0.3,0.75,0.35,0.75,0.4,0.75,0.45,0.75,0.5,0.75,0.55,0.75,0.6,0.75,0.65,0.75,0.7,0.75,0.75,0.75,0.8,0.75,0.85,0.75,0.9,0.75,0.95,0.75,1.0,0.75,0.0,0.8,0.05,0.8,0.1,0.8,0.15,0.8,0.2,0.8,0.25,0.8,0.3,0.8,0.35,0.8,0.4,0.8,0.45,0.8,0.5,0.8,0.55,0.8,0.6,0.8,0.65,0.8,0.7,0.8,0.75,0.8,0.8,0.8,0.85,0.8,0.9,0.8,0.95,0.8,1.0,0.8,0.0,0.85,0.05,0.85,0.1,0.85,0.15,0.85,0.2,0.85,0.25,0.85,0.3,0.85,0.35,0.85,0.4,0.85,0.45,0.85,0.5,0.85,0.55,0.85,0.6,0.85,0.65,0.85,0.7,0.85,0.75,0.85,0.8,0.85,0.85,0.85,0.9,0.85,0.95,0.85,1.0,0.85,0.0,0.9,0.05,0.9,0.1,0.9,0.15,0.9,0.2,0.9,0.25,0.9,0.3,0.9,0.35,0.9,0.4,0.9,0.45,0.9,0.5,0.9,0.55,0.9,0.6,0.9,0.65,0.9,0.7,0.9,0.75,0.9,0.8,0.9,0.85,0.9,0.9,0.9,0.95,0.9,1.0,0.9,0.0,0.95,0.05,0.95,0.1,0.95,0.15,0.95,0.2,0.95,0.25,0.95,0.3,0.95,0.35,0.95,0.4,0.95,0.45,0.95,0.5,0.95,0.55,0.95,0.6,0.95,0.65,0.95,0.7,0.95,0.75,0.95,0.8,0.95,0.85,0.95,0.9,0.95,0.95,0.95,1.0,0.95,0.025,0.0,0.075,0.0,0.125,0.0,0.175,0.0,0.225,0.0,0.275,0.0,0.325,0.0,0.375,0.0,0.425,0.0,0.475,0.0,0.525,0.0,0.575,0.0,0.625,0.0,0.675,0.0,0.725,0.0,0.775,0.0,0.825,0.0,0.875,0.0,0.925,0.0,0.975,0.0,0.025,1.0,0.075,1.0,0.125,1.0,0.175,1.0,0.225,1.0,0.275,1.0,0.325,1.0,0.375,1.0,0.425,1.0,0.475,1.0,0.525,1.0,0.575,1.0,0.625,1.0,0.675,1.0,0.725,1.0,0.775,1.0,0.825,1.0,0.875,1.0,0.925,1.0,0.975,1.0],"uvs2":null,"colors":null,"hasVertexAlpha":false,"matricesIndices":null,"matricesWeights":null,"matricesIndicesExtra":null,"matricesWeightsExtra":null,"indices":[0,1,2,2,1,3,1,4,3,3,4,5,4,6,5,5,6,7,6,8,7,7,8,9,8,10,9,9,10,11,10,12,11,11,12,13,12,14,13,13,14,15,14,16,15,15,16,17,16,18,17,17,18,19,18,20,19,19,20,21,20,22,21,21,22,23,22,24,23,23,24,25,24,26,25,25,26,27,26,28,27,27,28,29,28,30,29,29,30,31,30,32,31,31,32,33,32,34,33,33,34,35,34,36,35,35,36,37,36,38,37,37,38,39,38,40,39,39,40,41,2,3,42,42,3,43,3,5,43,43,5,44,5,7,44,44,7,45,7,9,45,45,9,46,9,11,46,46,11,47,11,13,47,47,13,48,13,15,48,48,15,49,15,17,49,49,17,50,17,19,50,50,19,51,19,21,51,51,21,52,21,23,52,52,23,53,23,25,53,53,25,54,25,27,54,54,27,55,27,29,55,55,29,56,29,31,56,56,31,57,31,33,57,57,33,58,33,35,58,58,35,59,35,37,59,59,37,60,37,39,60,60,39,61,39,41,61,61,41,62,42,43,63,63,43,64,43,44,64,64,44,65,44,45,65,65,45,66,45,46,66,66,46,67,46,47,67,67,47,68,47,48,68,68,48,69,48,49,69,69,49,70,49,50,70,70,50,71,50,51,71,71,51,72,51,52,72,72,52,73,52,53,73,73,53,74,53,54,74,74,54,75,54,55,75,75,55,76,55,56,76,76,56,77,56,57,77,77,57,78,57,58,78,78,58,79,58,59,79,79,59,80,59,60,80,80,60,81,60,61,81,81,61,82,61,62,82,82,62,83,63,64,84,84,64,85,64,65,85,85,65,86,65,66,86,86,66,87,66,67,87,87,67,88,67,68,88,88,68,89,68,69,89,89,69,90,69,70,90,90,70,91,70,71,91,91,71,92,71,72,92,92,72,93,72,73,93,93,73,94,73,74,94,94,74,95,74,75,95,95,75,96,75,76,96,96,76,97,76,77,97,97,77,98,77,78,98,98,78,99,78,79,99,99,79,100,79,80,100,100,80,101,80,81,101,101,81,102,81,82,102,102,82,103,82,83,103,103,83,104,84,85,105,105,85,106,85,86,106,106,86,107,86,87,107,107,87,108,87,88,108,108,88,109,88,89,109,109,89,110,89,90,110,110,90,111,90,91,111,111,91,112,91,92,112,112,92,113,92,93,113,113,93,114,93,94,114,114,94,115,94,95,115,115,95,116,95,96,116,116,96,117,96,97,117,117,97,118,97,98,118,118,98,119,98,99,119,119,99,120,99,100,120,120,100,121,100,101,121,121,101,122,101,102,122,122,102,123,102,103,123,123,103,124,103,104,124,124,104,125,105,106,126,126,106,127,106,107,127,127,107,128,107,108,128,128,108,129,108,109,129,129,109,130,109,110,130,130,110,131,110,111,131,131,111,132,111,112,132,132,112,133,112,113,133,133,113,134,113,114,134,134,114,135,114,115,135,135,115,136,115,116,136,136,116,137,116,117,137,137,117,138,117,118,138,138,118,139,118,119,139,139,119,140,119,120,140,140,120,141,120,121,141,141,121,142,121,122,142,142,122,143,122,123,143,143,123,144,123,124,144,144,124,145,124,125,145,145,125,146,126,127,147,147,127,148,127,128,148,148,128,149,128,129,149,149,129,150,129,130,150,150,130,151,130,131,151,151,131,152,131,132,152,152,132,153,132,133,153,153,133,154,133,134,154,154,134,155,134,135,155,155,135,156,135,136,156,156,136,157,136,137,157,157,137,158,137,138,158,158,138,159,138,139,159,159,139,160,139,140,160,160,140,161,140,141,161,161,141,162,141,142,162,162,142,163,142,143,163,163,143,164,143,144,164,164,144,165,144,145,165,165,145,166,145,146,166,166,146,167,147,148,168,168,148,169,148,149,169,169,149,170,149,150,170,170,150,171,150,151,171,171,151,172,151,152,172,172,152,173,152,153,173,173,153,174,153,154,174,174,154,175,154,155,175,175,155,176,155,156,176,176,156,177,156,157,177,177,157,178,157,158,178,178,158,179,158,159,179,179,159,180,159,160,180,180,160,181,160,161,181,181,161,182,161,162,182,182,162,183,162,163,183,183,163,184,163,164,184,184,164,185,164,165,185,185,165,186,165,166,186,186,166,187,166,167,187,187,167,188,168,169,189,189,169,190,169,170,190,190,170,191,170,171,191,191,171,192,171,172,192,192,172,193,172,173,193,193,173,194,173,174,194,194,174,195,174,175,195,195,175,196,175,176,196,196,176,197,176,177,197,197,177,198,177,178,198,198,178,199,178,179,199,199,179,200,179,180,200,200,180,201,180,181,201,201,181,202,181,182,202,202,182,203,182,183,203,203,183,204,183,184,204,204,184,205,184,185,205,205,185,206,185,186,206,206,186,207,186,187,207,207,187,208,187,188,208,208,188,209,189,190,210,210,190,211,190,191,211,211,191,212,191,192,212,212,192,213,192,193,213,213,193,214,193,194,214,214,194,215,194,195,215,215,195,216,195,196,216,216,196,217,196,197,217,217,197,218,197,198,218,218,198,219,198,199,219,219,199,220,199,200,220,220,200,221,200,201,221,221,201,222,201,202,222,222,202,223,202,203,223,223,203,224,203,204,224,224,204,225,204,205,225,225,205,226,205,206,226,226,206,227,206,207,227,227,207,228,207,208,228,228,208,229,208,209,229,229,209,230,210,211,231,231,211,232,211,212,232,232,212,233,212,213,233,233,213,234,213,214,234,234,214,235,214,215,235,235,215,236,215,216,236,236,216,237,216,217,237,237,217,238,217,218,238,238,218,239,218,219,239,239,219,240,219,220,240,240,220,241,220,221,241,241,221,242,221,222,242,242,222,243,222,223,243,243,223,244,223,224,244,244,224,245,224,225,245,245,225,246,225,226,246,246,226,247,226,227,247,247,227,248,227,228,248,248,228,249,228,229,249,249,229,250,229,230,250,250,230,251,231,232,252,252,232,253,232,233,253,253,233,254,233,234,254,254,234,255,234,235,255,255,235,256,235,236,256,256,236,257,236,237,257,257,237,258,237,238,258,258,238,259,238,239,259,259,239,260,239,240,260,260,240,261,240,241,261,261,241,262,241,242,262,262,242,263,242,243,263,263,243,264,243,244,264,264,244,265,244,245,265,265,245,266,245,246,266,266,246,267,246,247,267,267,247,268,247,248,268,268,248,269,248,249,269,269,249,270,249,250,270,270,250,271,250,251,271,271,251,272,252,253,273,273,253,274,253,254,274,274,254,275,254,255,275,275,255,276,255,256,276,276,256,277,256,257,277,277,257,278,257,258,278,278,258,279,258,259,279,279,259,280,259,260,280,280,260,281,260,261,281,281,261,282,261,262,282,282,262,283,262,263,283,283,263,284,263,264,284,284,264,285,264,265,285,285,265,286,265,266,286,286,266,287,266,267,287,287,267,288,267,268,288,288,268,289,268,269,289,289,269,290,269,270,290,290,270,291,270,271,291,291,271,292,271,272,292,292,272,293,273,274,294,294,274,295,274,275,295,295,275,296,275,276,296,296,276,297,276,277,297,297,277,298,277,278,298,298,278,299,278,279,299,299,279,300,279,280,300,300,280,301,280,281,301,301,281,302,281,282,302,302,282,303,282,283,303,303,283,304,283,284,304,304,284,305,284,285,305,305,285,306,285,286,306,306,286,307,286,287,307,307,287,308,287,288,308,308,288,309,288,289,309,309,289,310,289,290,310,310,290,311,290,291,311,311,291,312,291,292,312,312,292,313,292,293,313,313,293,314,294,295,315,315,295,316,295,296,316,316,296,317,296,297,317,317,297,318,297,298,318,318,298,319,298,299,319,319,299,320,299,300,320,320,300,321,300,301,321,321,301,322,301,302,322,322,302,323,302,303,323,323,303,324,303,304,324,324,304,325,304,305,325,325,305,326,305,306,326,326,306,327,306,307,327,327,307,328,307,308,328,328,308,329,308,309,329,329,309,330,309,310,330,330,310,331,310,311,331,331,311,332,311,312,332,332,312,333,312,313,333,333,313,334,313,314,334,334,314,335,315,316,336,336,316,337,316,317,337,337,317,338,317,318,338,338,318,339,318,319,339,339,319,340,319,320,340,340,320,341,320,321,341,341,321,342,321,322,342,342,322,343,322,323,343,343,323,344,323,324,344,344,324,345,324,325,345,345,325,346,325,326,346,346,326,347,326,327,347,347,327,348,327,328,348,348,328,349,328,329,349,349,329,350,329,330,350,350,330,351,330,331,351,351,331,352,331,332,352,352,332,353,332,333,353,353,333,354,333,334,354,354,334,355,334,335,355,355,335,356,336,337,357,357,337,358,337,338,358,358,338,359,338,339,359,359,339,360,339,340,360,360,340,361,340,341,361,361,341,362,341,342,362,362,342,363,342,343,363,363,343,364,343,344,364,364,344,365,344,345,365,365,345,366,345,346,366,366,346,367,346,347,367,367,347,368,347,348,368,368,348,369,348,349,369,369,349,370,349,350,370,370,350,371,350,351,371,371,351,372,351,352,372,372,352,373,352,353,373,373,353,374,353,354,374,374,354,375,354,355,375,375,355,376,355,356,376,376,356,377,357,358,378,378,358,379,358,359,379,379,359,380,359,360,380,380,360,381,360,361,381,381,361,382,361,362,382,382,362,383,362,363,383,383,363,384,363,364,384,384,364,385,364,365,385,385,365,386,365,366,386,386,366,387,366,367,387,387,367,388,367,368,388,388,368,389,368,369,389,389,369,390,369,370,390,390,370,391,370,371,391,391,371,392,371,372,392,392,372,393,372,373,393,393,373,394,373,374,394,394,374,395,374,375,395,395,375,396,375,376,396,396,376,397,376,377,397,397,377,398,1,0,399,4,1,400,6,4,401,8,6,402,10,8,403,12,10,404,14,12,405,16,14,406,18,16,407,20,18,408,22,20,409,24,22,410,26,24,411,28,26,412,30,28,413,32,30,414,34,32,415,36,34,416,38,36,417,40,38,418,378,379,419,379,380,420,380,381,421,381,382,422,382,383,423,383,384,424,384,385,425,385,386,426,386,387,427,387,388,428,388,389,429,389,390,430,390,391,431,391,392,432,392,393,433,393,394,434,394,395,435,395,396,436,396,397,437,397,398,438],"receiveShadows":false,"infiniteDistance":false,"billboardMode":0,"visibility":1.0,"subMeshes":[{"materialIndex":0,"verticesStart":0,"verticesCount":439,"indexStart":0,"indexCount":2280}],"instances":null,"skeletonId":-1,"numBoneInfluencers":4,"applyFog":false,"lodMeshIds":null,"lodDistances":null,"lodCoverages":null,"rotation":null,"scaling":[1.0,1.0,1.0],"rotationQuaternion":[0.0,0.0,0.0,1.0],"actions":null,"checkCollisions":false,"pickable":true,"showBoundingBox":false,"showSubMeshesBoundingBox":false,"alphaIndex":0,"physicsImpostor":0,"physicsMass":0.0,"physicsFriction":0.0,"physicsRestitution":0.0,"name":"pSphere6","id":"1737360A-48D6-20A8-3294-B980D855536F","parentId":null,"position":[3.0,0.0,10.0],"animations":[],"autoAnimate":true,"autoAnimateFrom":1,"autoAnimateTo":200,"autoAnimateLoop":true,"metadata":{}},{"materialId":"9662A69B-4085-1DA0-7E85-2BBBA15737BF","isEnabled":true,"isVisible":true,"positions":[0.1488,-0.9877,0.0483,0.1266,-0.9877,0.0919,0.2939,-0.9511,0.0955,0.25,-0.9511,0.1816,0.0919,-0.9877,0.1266,0.1816,-0.9511,0.25,0.0483,-0.9877,0.1488,0.0955,-0.9511,0.2939,0.0,-0.9877,0.1564,0.0,-0.9511,0.309,-0.0483,-0.9877,0.1488,-0.0955,-0.9511,0.2939,-0.0919,-0.9877,0.1266,-0.1816,-0.9511,0.25,-0.1266,-0.9877,0.0919,-0.25,-0.9511,0.1816,-0.1488,-0.9877,0.0483,-0.2939,-0.9511,0.0955,-0.1564,-0.9877,0.0,-0.309,-0.9511,0.0,-0.1488,-0.9877,-0.0483,-0.2939,-0.9511,-0.0955,-0.1266,-0.9877,-0.0919,-0.25,-0.9511,-0.1816,-0.0919,-0.9877,-0.1266,-0.1816,-0.9511,-0.25,-0.0483,-0.9877,-0.1488,-0.0955,-0.9511,-0.2939,0.0,-0.9877,-0.1564,0.0,-0.9511,-0.309,0.0483,-0.9877,-0.1488,0.0955,-0.9511,-0.2939,0.0919,-0.9877,-0.1266,0.1816,-0.9511,-0.25,0.1266,-0.9877,-0.0919,0.25,-0.9511,-0.1816,0.1488,-0.9877,-0.0483,0.2939,-0.9511,-0.0955,0.1564,-0.9877,0.0,0.309,-0.9511,0.0,0.1488,-0.9877,0.0483,0.2939,-0.9511,0.0955,0.4318,-0.891,0.1403,0.3673,-0.891,0.2668,0.2668,-0.891,0.3673,0.1403,-0.891,0.4318,0.0,-0.891,0.454,-0.1403,-0.891,0.4318,-0.2668,-0.891,0.3673,-0.3673,-0.891,0.2668,-0.4318,-0.891,0.1403,-0.454,-0.891,0.0,-0.4318,-0.891,-0.1403,-0.3673,-0.891,-0.2668,-0.2668,-0.891,-0.3673,-0.1403,-0.891,-0.4318,0.0,-0.891,-0.454,0.1403,-0.891,-0.4318,0.2668,-0.891,-0.3673,0.3673,-0.891,-0.2668,0.4318,-0.891,-0.1403,0.454,-0.891,0.0,0.4318,-0.891,0.1403,0.559,-0.809,0.1816,0.4755,-0.809,0.3455,0.3455,-0.809,0.4755,0.1816,-0.809,0.559,0.0,-0.809,0.5878,-0.1816,-0.809,0.559,-0.3455,-0.809,0.4755,-0.4755,-0.809,0.3455,-0.559,-0.809,0.1816,-0.5878,-0.809,0.0,-0.559,-0.809,-0.1816,-0.4755,-0.809,-0.3455,-0.3455,-0.809,-0.4755,-0.1816,-0.809,-0.559,0.0,-0.809,-0.5878,0.1816,-0.809,-0.559,0.3455,-0.809,-0.4755,0.4755,-0.809,-0.3455,0.559,-0.809,-0.1816,0.5878,-0.809,0.0,0.559,-0.809,0.1816,0.6725,-0.7071,0.2185,0.5721,-0.7071,0.4156,0.4156,-0.7071,0.5721,0.2185,-0.7071,0.6725,0.0,-0.7071,0.7071,-0.2185,-0.7071,0.6725,-0.4156,-0.7071,0.5721,-0.5721,-0.7071,0.4156,-0.6725,-0.7071,0.2185,-0.7071,-0.7071,0.0,-0.6725,-0.7071,-0.2185,-0.5721,-0.7071,-0.4156,-0.4156,-0.7071,-0.5721,-0.2185,-0.7071,-0.6725,0.0,-0.7071,-0.7071,0.2185,-0.7071,-0.6725,0.4156,-0.7071,-0.5721,0.5721,-0.7071,-0.4156,0.6725,-0.7071,-0.2185,0.7071,-0.7071,0.0,0.6725,-0.7071,0.2185,0.7694,-0.5878,0.25,0.6545,-0.5878,0.4755,0.4755,-0.5878,0.6545,0.25,-0.5878,0.7694,0.0,-0.5878,0.809,-0.25,-0.5878,0.7694,-0.4755,-0.5878,0.6545,-0.6545,-0.5878,0.4755,-0.7694,-0.5878,0.25,-0.809,-0.5878,0.0,-0.7694,-0.5878,-0.25,-0.6545,-0.5878,-0.4755,-0.4755,-0.5878,-0.6545,-0.25,-0.5878,-0.7694,0.0,-0.5878,-0.809,0.25,-0.5878,-0.7694,0.4755,-0.5878,-0.6545,0.6545,-0.5878,-0.4755,0.7694,-0.5878,-0.25,0.809,-0.5878,0.0,0.7694,-0.5878,0.25,0.8474,-0.454,0.2753,0.7208,-0.454,0.5237,0.5237,-0.454,0.7208,0.2753,-0.454,0.8474,0.0,-0.454,0.891,-0.2753,-0.454,0.8474,-0.5237,-0.454,0.7208,-0.7208,-0.454,0.5237,-0.8474,-0.454,0.2753,-0.891,-0.454,0.0,-0.8474,-0.454,-0.2753,-0.7208,-0.454,-0.5237,-0.5237,-0.454,-0.7208,-0.2753,-0.454,-0.8474,0.0,-0.454,-0.891,0.2753,-0.454,-0.8474,0.5237,-0.454,-0.7208,0.7208,-0.454,-0.5237,0.8474,-0.454,-0.2753,0.891,-0.454,0.0,0.8474,-0.454,0.2753,0.9045,-0.309,0.2939,0.7694,-0.309,0.559,0.559,-0.309,0.7694,0.2939,-0.309,0.9045,0.0,-0.309,0.9511,-0.2939,-0.309,0.9045,-0.559,-0.309,0.7694,-0.7694,-0.309,0.559,-0.9045,-0.309,0.2939,-0.9511,-0.309,0.0,-0.9045,-0.309,-0.2939,-0.7694,-0.309,-0.559,-0.559,-0.309,-0.7694,-0.2939,-0.309,-0.9045,0.0,-0.309,-0.9511,0.2939,-0.309,-0.9045,0.559,-0.309,-0.7694,0.7694,-0.309,-0.559,0.9045,-0.309,-0.2939,0.9511,-0.309,0.0,0.9045,-0.309,0.2939,0.9393,-0.1564,0.3052,0.7991,-0.1564,0.5805,0.5805,-0.1564,0.7991,0.3052,-0.1564,0.9393,0.0,-0.1564,0.9877,-0.3052,-0.1564,0.9393,-0.5805,-0.1564,0.7991,-0.7991,-0.1564,0.5805,-0.9393,-0.1564,0.3052,-0.9877,-0.1564,0.0,-0.9393,-0.1564,-0.3052,-0.7991,-0.1564,-0.5805,-0.5805,-0.1564,-0.7991,-0.3052,-0.1564,-0.9393,0.0,-0.1564,-0.9877,0.3052,-0.1564,-0.9393,0.5805,-0.1564,-0.7991,0.7991,-0.1564,-0.5805,0.9393,-0.1564,-0.3052,0.9877,-0.1564,0.0,0.9393,-0.1564,0.3052,0.9511,0.0,0.309,0.809,0.0,0.5878,0.5878,0.0,0.809,0.309,0.0,0.9511,0.0,0.0,1.0,-0.309,0.0,0.9511,-0.5878,0.0,0.809,-0.809,0.0,0.5878,-0.9511,0.0,0.309,-1.0,0.0,0.0,-0.9511,0.0,-0.309,-0.809,0.0,-0.5878,-0.5878,0.0,-0.809,-0.309,0.0,-0.9511,0.0,0.0,-1.0,0.309,0.0,-0.9511,0.5878,0.0,-0.809,0.809,0.0,-0.5878,0.9511,0.0,-0.309,1.0,0.0,0.0,0.9511,0.0,0.309,0.9393,0.1564,0.3052,0.7991,0.1564,0.5805,0.5805,0.1564,0.7991,0.3052,0.1564,0.9393,0.0,0.1564,0.9877,-0.3052,0.1564,0.9393,-0.5805,0.1564,0.7991,-0.7991,0.1564,0.5805,-0.9393,0.1564,0.3052,-0.9877,0.1564,0.0,-0.9393,0.1564,-0.3052,-0.7991,0.1564,-0.5805,-0.5805,0.1564,-0.7991,-0.3052,0.1564,-0.9393,0.0,0.1564,-0.9877,0.3052,0.1564,-0.9393,0.5805,0.1564,-0.7991,0.7991,0.1564,-0.5805,0.9393,0.1564,-0.3052,0.9877,0.1564,0.0,0.9393,0.1564,0.3052,0.9045,0.309,0.2939,0.7694,0.309,0.559,0.559,0.309,0.7694,0.2939,0.309,0.9045,0.0,0.309,0.9511,-0.2939,0.309,0.9045,-0.559,0.309,0.7694,-0.7694,0.309,0.559,-0.9045,0.309,0.2939,-0.9511,0.309,0.0,-0.9045,0.309,-0.2939,-0.7694,0.309,-0.559,-0.559,0.309,-0.7694,-0.2939,0.309,-0.9045,0.0,0.309,-0.9511,0.2939,0.309,-0.9045,0.559,0.309,-0.7694,0.7694,0.309,-0.559,0.9045,0.309,-0.2939,0.9511,0.309,0.0,0.9045,0.309,0.2939,0.8474,0.454,0.2753,0.7208,0.454,0.5237,0.5237,0.454,0.7208,0.2753,0.454,0.8474,0.0,0.454,0.891,-0.2753,0.454,0.8474,-0.5237,0.454,0.7208,-0.7208,0.454,0.5237,-0.8474,0.454,0.2753,-0.891,0.454,0.0,-0.8474,0.454,-0.2753,-0.7208,0.454,-0.5237,-0.5237,0.454,-0.7208,-0.2753,0.454,-0.8474,0.0,0.454,-0.891,0.2753,0.454,-0.8474,0.5237,0.454,-0.7208,0.7208,0.454,-0.5237,0.8474,0.454,-0.2753,0.891,0.454,0.0,0.8474,0.454,0.2753,0.7694,0.5878,0.25,0.6545,0.5878,0.4755,0.4755,0.5878,0.6545,0.25,0.5878,0.7694,0.0,0.5878,0.809,-0.25,0.5878,0.7694,-0.4755,0.5878,0.6545,-0.6545,0.5878,0.4755,-0.7694,0.5878,0.25,-0.809,0.5878,0.0,-0.7694,0.5878,-0.25,-0.6545,0.5878,-0.4755,-0.4755,0.5878,-0.6545,-0.25,0.5878,-0.7694,0.0,0.5878,-0.809,0.25,0.5878,-0.7694,0.4755,0.5878,-0.6545,0.6545,0.5878,-0.4755,0.7694,0.5878,-0.25,0.809,0.5878,0.0,0.7694,0.5878,0.25,0.6725,0.7071,0.2185,0.5721,0.7071,0.4156,0.4156,0.7071,0.5721,0.2185,0.7071,0.6725,0.0,0.7071,0.7071,-0.2185,0.7071,0.6725,-0.4156,0.7071,0.5721,-0.5721,0.7071,0.4156,-0.6725,0.7071,0.2185,-0.7071,0.7071,0.0,-0.6725,0.7071,-0.2185,-0.5721,0.7071,-0.4156,-0.4156,0.7071,-0.5721,-0.2185,0.7071,-0.6725,0.0,0.7071,-0.7071,0.2185,0.7071,-0.6725,0.4156,0.7071,-0.5721,0.5721,0.7071,-0.4156,0.6725,0.7071,-0.2185,0.7071,0.7071,0.0,0.6725,0.7071,0.2185,0.559,0.809,0.1816,0.4755,0.809,0.3455,0.3455,0.809,0.4755,0.1816,0.809,0.559,0.0,0.809,0.5878,-0.1816,0.809,0.559,-0.3455,0.809,0.4755,-0.4755,0.809,0.3455,-0.559,0.809,0.1816,-0.5878,0.809,0.0,-0.559,0.809,-0.1816,-0.4755,0.809,-0.3455,-0.3455,0.809,-0.4755,-0.1816,0.809,-0.559,0.0,0.809,-0.5878,0.1816,0.809,-0.559,0.3455,0.809,-0.4755,0.4755,0.809,-0.3455,0.559,0.809,-0.1816,0.5878,0.809,0.0,0.559,0.809,0.1816,0.4318,0.891,0.1403,0.3673,0.891,0.2668,0.2668,0.891,0.3673,0.1403,0.891,0.4318,0.0,0.891,0.454,-0.1403,0.891,0.4318,-0.2668,0.891,0.3673,-0.3673,0.891,0.2668,-0.4318,0.891,0.1403,-0.454,0.891,0.0,-0.4318,0.891,-0.1403,-0.3673,0.891,-0.2668,-0.2668,0.891,-0.3673,-0.1403,0.891,-0.4318,0.0,0.891,-0.454,0.1403,0.891,-0.4318,0.2668,0.891,-0.3673,0.3673,0.891,-0.2668,0.4318,0.891,-0.1403,0.454,0.891,0.0,0.4318,0.891,0.1403,0.2939,0.9511,0.0955,0.25,0.9511,0.1816,0.1816,0.9511,0.25,0.0955,0.9511,0.2939,0.0,0.9511,0.309,-0.0955,0.9511,0.2939,-0.1816,0.9511,0.25,-0.25,0.9511,0.1816,-0.2939,0.9511,0.0955,-0.309,0.9511,0.0,-0.2939,0.9511,-0.0955,-0.25,0.9511,-0.1816,-0.1816,0.9511,-0.25,-0.0955,0.9511,-0.2939,0.0,0.9511,-0.309,0.0955,0.9511,-0.2939,0.1816,0.9511,-0.25,0.25,0.9511,-0.1816,0.2939,0.9511,-0.0955,0.309,0.9511,0.0,0.2939,0.9511,0.0955,0.1488,0.9877,0.0483,0.1266,0.9877,0.0919,0.0919,0.9877,0.1266,0.0483,0.9877,0.1488,0.0,0.9877,0.1564,-0.0483,0.9877,0.1488,-0.0919,0.9877,0.1266,-0.1266,0.9877,0.0919,-0.1488,0.9877,0.0483,-0.1564,0.9877,0.0,-0.1488,0.9877,-0.0483,-0.1266,0.9877,-0.0919,-0.0919,0.9877,-0.1266,-0.0483,0.9877,-0.1488,0.0,0.9877,-0.1564,0.0483,0.9877,-0.1488,0.0919,0.9877,-0.1266,0.1266,0.9877,-0.0919,0.1488,0.9877,-0.0483,0.1564,0.9877,0.0,0.1488,0.9877,0.0483,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0],"normals":[0.1906,-0.9797,0.0619,0.1621,-0.9797,0.1178,0.3173,-0.9427,0.1031,0.2699,-0.9427,0.1961,0.1178,-0.9797,0.1621,0.1961,-0.9427,0.2699,0.0619,-0.9797,0.1906,0.1031,-0.9427,0.3173,0.0,-0.9797,0.2004,0.0,-0.9427,0.3336,-0.0619,-0.9797,0.1906,-0.1031,-0.9427,0.3173,-0.1178,-0.9797,0.1621,-0.1961,-0.9427,0.2699,-0.1621,-0.9797,0.1178,-0.2699,-0.9427,0.1961,-0.1906,-0.9797,0.0619,-0.3173,-0.9427,0.1031,-0.2004,-0.9797,0.0,-0.3336,-0.9427,0.0,-0.1906,-0.9797,-0.0619,-0.3173,-0.9427,-0.1031,-0.1621,-0.9797,-0.1178,-0.2699,-0.9427,-0.1961,-0.1178,-0.9797,-0.1621,-0.1961,-0.9427,-0.2699,-0.0619,-0.9797,-0.1906,-0.1031,-0.9427,-0.3173,0.0,-0.9797,-0.2004,0.0,-0.9427,-0.3336,0.0619,-0.9797,-0.1906,0.1031,-0.9427,-0.3173,0.1178,-0.9797,-0.1621,0.1961,-0.9427,-0.2699,0.1621,-0.9797,-0.1178,0.2699,-0.9427,-0.1961,0.1906,-0.9797,-0.0619,0.3173,-0.9427,-0.1031,0.2004,-0.9797,0.0,0.3336,-0.9427,0.0,0.1906,-0.9797,0.0619,0.3173,-0.9427,0.1031,0.4477,-0.8823,0.1455,0.3808,-0.8823,0.2767,0.2767,-0.8823,0.3808,0.1455,-0.8823,0.4477,0.0,-0.8823,0.4708,-0.1455,-0.8823,0.4477,-0.2767,-0.8823,0.3808,-0.3808,-0.8823,0.2767,-0.4477,-0.8823,0.1455,-0.4708,-0.8823,0.0,-0.4477,-0.8823,-0.1455,-0.3808,-0.8823,-0.2767,-0.2767,-0.8823,-0.3808,-0.1455,-0.8823,-0.4477,0.0,-0.8823,-0.4708,0.1455,-0.8823,-0.4477,0.2767,-0.8823,-0.3808,0.3808,-0.8823,-0.2767,0.4477,-0.8823,-0.1455,0.4708,-0.8823,0.0,0.4477,-0.8823,0.1455,0.5703,-0.8003,0.1853,0.4851,-0.8003,0.3525,0.3525,-0.8003,0.4851,0.1853,-0.8003,0.5703,0.0,-0.8003,0.5997,-0.1853,-0.8003,0.5703,-0.3525,-0.8003,0.4851,-0.4851,-0.8003,0.3525,-0.5703,-0.8003,0.1853,-0.5997,-0.8003,0.0,-0.5703,-0.8003,-0.1853,-0.4851,-0.8003,-0.3525,-0.3525,-0.8003,-0.4851,-0.1853,-0.8003,-0.5703,0.0,-0.8003,-0.5997,0.1853,-0.8003,-0.5703,0.3525,-0.8003,-0.4851,0.4851,-0.8003,-0.3525,0.5703,-0.8003,-0.1853,0.5997,-0.8003,0.0,0.5703,-0.8003,0.1853,0.6803,-0.6988,0.221,0.5787,-0.6988,0.4205,0.4205,-0.6988,0.5787,0.221,-0.6988,0.6803,0.0,-0.6988,0.7153,-0.221,-0.6988,0.6803,-0.4205,-0.6988,0.5787,-0.5787,-0.6988,0.4205,-0.6803,-0.6988,0.221,-0.7153,-0.6988,0.0,-0.6803,-0.6988,-0.221,-0.5787,-0.6988,-0.4205,-0.4205,-0.6988,-0.5787,-0.221,-0.6988,-0.6803,0.0,-0.6988,-0.7153,0.221,-0.6988,-0.6803,0.4205,-0.6988,-0.5787,0.5787,-0.6988,-0.4205,0.6803,-0.6988,-0.221,0.7153,-0.6988,0.0,0.6803,-0.6988,0.221,0.7745,-0.5804,0.2516,0.6588,-0.5804,0.4787,0.4787,-0.5804,0.6588,0.2516,-0.5804,0.7745,0.0,-0.5804,0.8143,-0.2516,-0.5804,0.7745,-0.4787,-0.5804,0.6588,-0.6588,-0.5804,0.4787,-0.7745,-0.5804,0.2516,-0.8143,-0.5804,0.0,-0.7745,-0.5804,-0.2516,-0.6588,-0.5804,-0.4787,-0.4787,-0.5804,-0.6588,-0.2516,-0.5804,-0.7745,0.0,-0.5804,-0.8143,0.2516,-0.5804,-0.7745,0.4787,-0.5804,-0.6588,0.6588,-0.5804,-0.4787,0.7745,-0.5804,-0.2516,0.8143,-0.5804,0.0,0.7745,-0.5804,0.2516,0.8503,-0.448,0.2763,0.7233,-0.448,0.5255,0.5255,-0.448,0.7233,0.2763,-0.448,0.8503,0.0,-0.448,0.894,-0.2763,-0.448,0.8503,-0.5255,-0.448,0.7233,-0.7233,-0.448,0.5255,-0.8503,-0.448,0.2763,-0.894,-0.448,0.0,-0.8503,-0.448,-0.2763,-0.7233,-0.448,-0.5255,-0.5255,-0.448,-0.7233,-0.2763,-0.448,-0.8503,0.0,-0.448,-0.894,0.2763,-0.448,-0.8503,0.5255,-0.448,-0.7233,0.7233,-0.448,-0.5255,0.8503,-0.448,-0.2763,0.894,-0.448,0.0,0.8503,-0.448,0.2763,0.9058,-0.3048,0.2943,0.7705,-0.3048,0.5598,0.5598,-0.3048,0.7705,0.2943,-0.3048,0.9058,0.0,-0.3048,0.9524,-0.2943,-0.3048,0.9058,-0.5598,-0.3048,0.7705,-0.7705,-0.3048,0.5598,-0.9058,-0.3048,0.2943,-0.9524,-0.3048,0.0,-0.9058,-0.3048,-0.2943,-0.7705,-0.3048,-0.5598,-0.5598,-0.3048,-0.7705,-0.2943,-0.3048,-0.9058,0.0,-0.3048,-0.9524,0.2943,-0.3048,-0.9058,0.5598,-0.3048,-0.7705,0.7705,-0.3048,-0.5598,0.9058,-0.3048,-0.2943,0.9524,-0.3048,0.0,0.9058,-0.3048,0.2943,0.9397,-0.1542,0.3053,0.7993,-0.1542,0.5808,0.5808,-0.1542,0.7993,0.3053,-0.1542,0.9397,0.0,-0.1542,0.988,-0.3053,-0.1542,0.9397,-0.5808,-0.1542,0.7993,-0.7993,-0.1542,0.5808,-0.9397,-0.1542,0.3053,-0.988,-0.1542,0.0,-0.9397,-0.1542,-0.3053,-0.7993,-0.1542,-0.5808,-0.5808,-0.1542,-0.7993,-0.3053,-0.1542,-0.9397,0.0,-0.1542,-0.988,0.3053,-0.1542,-0.9397,0.5808,-0.1542,-0.7993,0.7993,-0.1542,-0.5808,0.9397,-0.1542,-0.3053,0.988,-0.1542,0.0,0.9397,-0.1542,0.3053,0.9511,0.0,0.309,0.809,0.0,0.5878,0.5878,0.0,0.809,0.309,0.0,0.9511,0.0,0.0,1.0,-0.309,0.0,0.9511,-0.5878,0.0,0.809,-0.809,0.0,0.5878,-0.9511,0.0,0.309,-1.0,0.0,0.0,-0.9511,0.0,-0.309,-0.809,0.0,-0.5878,-0.5878,0.0,-0.809,-0.309,0.0,-0.9511,0.0,0.0,-1.0,0.309,0.0,-0.9511,0.5878,0.0,-0.809,0.809,0.0,-0.5878,0.9511,0.0,-0.309,1.0,0.0,0.0,0.9511,0.0,0.309,0.9397,0.1542,0.3053,0.7993,0.1542,0.5808,0.5808,0.1542,0.7993,0.3053,0.1542,0.9397,0.0,0.1542,0.988,-0.3053,0.1542,0.9397,-0.5808,0.1542,0.7993,-0.7993,0.1542,0.5808,-0.9397,0.1542,0.3053,-0.988,0.1542,0.0,-0.9397,0.1542,-0.3053,-0.7993,0.1542,-0.5808,-0.5808,0.1542,-0.7993,-0.3053,0.1542,-0.9397,0.0,0.1542,-0.988,0.3053,0.1542,-0.9397,0.5808,0.1542,-0.7993,0.7993,0.1542,-0.5808,0.9397,0.1542,-0.3053,0.988,0.1542,0.0,0.9397,0.1542,0.3053,0.9058,0.3048,0.2943,0.7705,0.3048,0.5598,0.5598,0.3048,0.7705,0.2943,0.3048,0.9058,0.0,0.3048,0.9524,-0.2943,0.3048,0.9058,-0.5598,0.3048,0.7705,-0.7705,0.3048,0.5598,-0.9058,0.3048,0.2943,-0.9524,0.3048,0.0,-0.9058,0.3048,-0.2943,-0.7705,0.3048,-0.5598,-0.5598,0.3048,-0.7705,-0.2943,0.3048,-0.9058,0.0,0.3048,-0.9524,0.2943,0.3048,-0.9058,0.5598,0.3048,-0.7705,0.7705,0.3048,-0.5598,0.9058,0.3048,-0.2943,0.9524,0.3048,0.0,0.9058,0.3048,0.2943,0.8503,0.448,0.2763,0.7233,0.448,0.5255,0.5255,0.448,0.7233,0.2763,0.448,0.8503,0.0,0.448,0.894,-0.2763,0.448,0.8503,-0.5255,0.448,0.7233,-0.7233,0.448,0.5255,-0.8503,0.448,0.2763,-0.894,0.448,0.0,-0.8503,0.448,-0.2763,-0.7233,0.448,-0.5255,-0.5255,0.448,-0.7233,-0.2763,0.448,-0.8503,0.0,0.448,-0.894,0.2763,0.448,-0.8503,0.5255,0.448,-0.7233,0.7233,0.448,-0.5255,0.8503,0.448,-0.2763,0.894,0.448,0.0,0.8503,0.448,0.2763,0.7745,0.5804,0.2516,0.6588,0.5804,0.4787,0.4787,0.5804,0.6588,0.2516,0.5804,0.7745,0.0,0.5804,0.8143,-0.2516,0.5804,0.7745,-0.4787,0.5804,0.6588,-0.6588,0.5804,0.4787,-0.7745,0.5804,0.2516,-0.8143,0.5804,0.0,-0.7745,0.5804,-0.2516,-0.6588,0.5804,-0.4787,-0.4787,0.5804,-0.6588,-0.2516,0.5804,-0.7745,0.0,0.5804,-0.8143,0.2516,0.5804,-0.7745,0.4787,0.5804,-0.6588,0.6588,0.5804,-0.4787,0.7745,0.5804,-0.2516,0.8143,0.5804,0.0,0.7745,0.5804,0.2516,0.6803,0.6988,0.221,0.5787,0.6988,0.4205,0.4205,0.6988,0.5787,0.221,0.6988,0.6803,0.0,0.6988,0.7153,-0.221,0.6988,0.6803,-0.4205,0.6988,0.5787,-0.5787,0.6988,0.4205,-0.6803,0.6988,0.221,-0.7153,0.6988,0.0,-0.6803,0.6988,-0.221,-0.5787,0.6988,-0.4205,-0.4205,0.6988,-0.5787,-0.221,0.6988,-0.6803,0.0,0.6988,-0.7153,0.221,0.6988,-0.6803,0.4205,0.6988,-0.5787,0.5787,0.6988,-0.4205,0.6803,0.6988,-0.221,0.7153,0.6988,0.0,0.6803,0.6988,0.221,0.5703,0.8003,0.1853,0.4851,0.8003,0.3525,0.3525,0.8003,0.4851,0.1853,0.8003,0.5703,0.0,0.8003,0.5997,-0.1853,0.8003,0.5703,-0.3525,0.8003,0.4851,-0.4851,0.8003,0.3525,-0.5703,0.8003,0.1853,-0.5997,0.8003,0.0,-0.5703,0.8003,-0.1853,-0.4851,0.8003,-0.3525,-0.3525,0.8003,-0.4851,-0.1853,0.8003,-0.5703,0.0,0.8003,-0.5997,0.1853,0.8003,-0.5703,0.3525,0.8003,-0.4851,0.4851,0.8003,-0.3525,0.5703,0.8003,-0.1853,0.5997,0.8003,0.0,0.5703,0.8003,0.1853,0.4477,0.8823,0.1455,0.3808,0.8823,0.2767,0.2767,0.8823,0.3808,0.1455,0.8823,0.4477,0.0,0.8823,0.4708,-0.1455,0.8823,0.4477,-0.2767,0.8823,0.3808,-0.3808,0.8823,0.2767,-0.4477,0.8823,0.1455,-0.4708,0.8823,0.0,-0.4477,0.8823,-0.1455,-0.3808,0.8823,-0.2767,-0.2767,0.8823,-0.3808,-0.1455,0.8823,-0.4477,0.0,0.8823,-0.4708,0.1455,0.8823,-0.4477,0.2767,0.8823,-0.3808,0.3808,0.8823,-0.2767,0.4477,0.8823,-0.1455,0.4708,0.8823,0.0,0.4477,0.8823,0.1455,0.3173,0.9427,0.1031,0.2699,0.9427,0.1961,0.1961,0.9427,0.2699,0.1031,0.9427,0.3173,0.0,0.9427,0.3336,-0.1031,0.9427,0.3173,-0.1961,0.9427,0.2699,-0.2699,0.9427,0.1961,-0.3173,0.9427,0.1031,-0.3336,0.9427,0.0,-0.3173,0.9427,-0.1031,-0.2699,0.9427,-0.1961,-0.1961,0.9427,-0.2699,-0.1031,0.9427,-0.3173,0.0,0.9427,-0.3336,0.1031,0.9427,-0.3173,0.1961,0.9427,-0.2699,0.2699,0.9427,-0.1961,0.3173,0.9427,-0.1031,0.3336,0.9427,0.0,0.3173,0.9427,0.1031,0.1906,0.9797,0.0619,0.1621,0.9797,0.1178,0.1178,0.9797,0.1621,0.0619,0.9797,0.1906,0.0,0.9797,0.2004,-0.0619,0.9797,0.1906,-0.1178,0.9797,0.1621,-0.1621,0.9797,0.1178,-0.1906,0.9797,0.0619,-0.2004,0.9797,0.0,-0.1906,0.9797,-0.0619,-0.1621,0.9797,-0.1178,-0.1178,0.9797,-0.1621,-0.0619,0.9797,-0.1906,0.0,0.9797,-0.2004,0.0619,0.9797,-0.1906,0.1178,0.9797,-0.1621,0.1621,0.9797,-0.1178,0.1906,0.9797,-0.0619,0.2004,0.9797,0.0,0.1906,0.9797,0.0619,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0],"tangents":[-0.4482,-0.0307,0.8934,-1.0,-0.5629,0.0062,0.8265,-1.0,-0.438,-0.0493,0.8976,-1.0,-0.5878,0.0,0.809,-1.0,-0.7908,0.0062,0.6121,-1.0,-0.809,0.0,0.5878,-1.0,-0.9412,0.0062,0.3378,-1.0,-0.9511,0.0,0.309,-1.0,-0.9995,0.0062,0.0304,-1.0,-1.0,0.0,0.0,-1.0,-0.96,0.0062,-0.28,-1.0,-0.9511,0.0,-0.309,-1.0,-0.8265,0.0062,-0.5629,-1.0,-0.809,0.0,-0.5878,-1.0,-0.6121,0.0062,-0.7908,-1.0,-0.5878,0.0,-0.809,-1.0,-0.3378,0.0062,-0.9412,-1.0,-0.309,0.0,-0.9511,-1.0,-0.0304,0.0062,-0.9995,-1.0,0.0,0.0,-1.0,-1.0,0.28,0.0062,-0.96,-1.0,0.309,0.0,-0.9511,-1.0,0.5629,0.0062,-0.8265,-1.0,0.5878,0.0,-0.809,-1.0,0.7908,0.0062,-0.6121,-1.0,0.809,0.0,-0.5878,-1.0,0.9412,0.0062,-0.3378,-1.0,0.9511,0.0,-0.309,-1.0,0.9995,0.0062,-0.0304,-1.0,1.0,0.0,0.0,-1.0,0.96,0.0062,0.28,-1.0,0.9511,0.0,0.309,-1.0,0.8265,0.0062,0.5629,-1.0,0.809,0.0,0.5878,-1.0,0.6121,0.0062,0.7908,-1.0,0.5878,0.0,0.809,-1.0,0.3378,0.0062,0.9412,-1.0,0.309,0.0,0.9511,-1.0,0.0304,0.0062,0.9995,-1.0,0.0,0.0,1.0,-1.0,-0.1625,0.0307,0.9862,-1.0,-0.1732,0.0493,0.9836,-1.0,-0.4222,-0.0651,0.9042,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.1899,0.0651,0.9796,-1.0,-0.4023,-0.0754,0.9124,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.2109,0.0754,0.9746,-1.0,-0.3802,-0.0787,0.9215,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.234,0.0787,0.969,-1.0,-0.3582,-0.0745,0.9306,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.2572,0.0745,0.9635,-1.0,-0.3384,-0.0633,0.9389,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.2781,0.0633,0.9585,-1.0,-0.3226,-0.0459,0.9454,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.2947,0.0459,0.9545,-1.0,-0.3125,-0.0241,0.9496,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.3053,0.0241,0.9519,-1.0,-0.309,0.0,0.9511,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.309,0.0,0.9511,-1.0,-0.3125,0.0241,0.9496,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.3053,-0.0241,0.9519,-1.0,-0.3226,0.0459,0.9454,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.2947,-0.0459,0.9545,-1.0,-0.3384,0.0633,0.9389,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.2781,-0.0633,0.9585,-1.0,-0.3582,0.0745,0.9306,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.2572,-0.0745,0.9635,-1.0,-0.3802,0.0787,0.9215,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.234,-0.0787,0.969,-1.0,-0.4023,0.0754,0.9124,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.2109,-0.0754,0.9746,-1.0,-0.4222,0.0651,0.9042,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.1899,-0.0651,0.9796,-1.0,-0.438,0.0493,0.8976,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.1732,-0.0493,0.9836,-1.0,-0.4482,0.0307,0.8934,-1.0,-0.6121,0.0062,0.7908,-1.0,-0.8265,0.0062,0.5629,-1.0,-0.96,0.0062,0.28,-1.0,-0.9995,0.0062,-0.0304,-1.0,-0.9412,0.0062,-0.3378,-1.0,-0.7908,0.0062,-0.6121,-1.0,-0.5629,0.0062,-0.8265,-1.0,-0.28,0.0062,-0.96,-1.0,0.0304,0.0062,-0.9995,-1.0,0.3378,0.0062,-0.9412,-1.0,0.6121,0.0062,-0.7908,-1.0,0.8265,0.0062,-0.5629,-1.0,0.96,0.0062,-0.28,-1.0,0.9995,0.0062,0.0304,-1.0,0.9412,0.0062,0.3378,-1.0,0.7908,0.0062,0.6121,-1.0,0.5629,0.0062,0.8265,-1.0,0.28,0.0062,0.96,-1.0,-0.0304,0.0062,0.9995,-1.0,-0.1625,-0.0307,0.9862,-1.0,-0.454,0.0,0.891,-1.0,-0.7071,0.0,0.7071,-1.0,-0.891,0.0,0.454,-1.0,-0.9877,0.0,0.1564,-1.0,-0.9877,0.0,-0.1564,-1.0,-0.891,0.0,-0.454,-1.0,-0.7071,0.0,-0.7071,-1.0,-0.454,0.0,-0.891,-1.0,-0.1564,0.0,-0.9877,-1.0,0.1564,0.0,-0.9877,-1.0,0.454,0.0,-0.891,-1.0,0.7071,0.0,-0.7071,-1.0,0.891,0.0,-0.454,-1.0,0.9877,0.0,-0.1564,-1.0,0.9877,0.0,0.1564,-1.0,0.891,0.0,0.454,-1.0,0.7071,0.0,0.7071,-1.0,0.454,0.0,0.891,-1.0,0.1564,0.0,0.9877,-1.0,-0.1564,0.0,0.9877,-1.0,-0.454,0.0,0.891,-1.0,-0.7071,0.0,0.7071,-1.0,-0.891,0.0,0.454,-1.0,-0.9877,0.0,0.1564,-1.0,-0.9877,0.0,-0.1564,-1.0,-0.891,0.0,-0.454,-1.0,-0.7071,0.0,-0.7071,-1.0,-0.454,0.0,-0.891,-1.0,-0.1564,0.0,-0.9877,-1.0,0.1564,0.0,-0.9877,-1.0,0.454,0.0,-0.891,-1.0,0.7071,0.0,-0.7071,-1.0,0.891,0.0,-0.454,-1.0,0.9877,0.0,-0.1564,-1.0,0.9877,0.0,0.1564,-1.0,0.891,0.0,0.454,-1.0,0.7071,0.0,0.7071,-1.0,0.454,0.0,0.891,-1.0,0.1564,0.0,0.9877,-1.0,-0.1564,0.0,0.9877,-1.0],"uvs":[0.0,0.05,0.05,0.05,0.0,0.1,0.05,0.1,0.1,0.05,0.1,0.1,0.15,0.05,0.15,0.1,0.2,0.05,0.2,0.1,0.25,0.05,0.25,0.1,0.3,0.05,0.3,0.1,0.35,0.05,0.35,0.1,0.4,0.05,0.4,0.1,0.45,0.05,0.45,0.1,0.5,0.05,0.5,0.1,0.55,0.05,0.55,0.1,0.6,0.05,0.6,0.1,0.65,0.05,0.65,0.1,0.7,0.05,0.7,0.1,0.75,0.05,0.75,0.1,0.8,0.05,0.8,0.1,0.85,0.05,0.85,0.1,0.9,0.05,0.9,0.1,0.95,0.05,0.95,0.1,1.0,0.05,1.0,0.1,0.0,0.15,0.05,0.15,0.1,0.15,0.15,0.15,0.2,0.15,0.25,0.15,0.3,0.15,0.35,0.15,0.4,0.15,0.45,0.15,0.5,0.15,0.55,0.15,0.6,0.15,0.65,0.15,0.7,0.15,0.75,0.15,0.8,0.15,0.85,0.15,0.9,0.15,0.95,0.15,1.0,0.15,0.0,0.2,0.05,0.2,0.1,0.2,0.15,0.2,0.2,0.2,0.25,0.2,0.3,0.2,0.35,0.2,0.4,0.2,0.45,0.2,0.5,0.2,0.55,0.2,0.6,0.2,0.65,0.2,0.7,0.2,0.75,0.2,0.8,0.2,0.85,0.2,0.9,0.2,0.95,0.2,1.0,0.2,0.0,0.25,0.05,0.25,0.1,0.25,0.15,0.25,0.2,0.25,0.25,0.25,0.3,0.25,0.35,0.25,0.4,0.25,0.45,0.25,0.5,0.25,0.55,0.25,0.6,0.25,0.65,0.25,0.7,0.25,0.75,0.25,0.8,0.25,0.85,0.25,0.9,0.25,0.95,0.25,1.0,0.25,0.0,0.3,0.05,0.3,0.1,0.3,0.15,0.3,0.2,0.3,0.25,0.3,0.3,0.3,0.35,0.3,0.4,0.3,0.45,0.3,0.5,0.3,0.55,0.3,0.6,0.3,0.65,0.3,0.7,0.3,0.75,0.3,0.8,0.3,0.85,0.3,0.9,0.3,0.95,0.3,1.0,0.3,0.0,0.35,0.05,0.35,0.1,0.35,0.15,0.35,0.2,0.35,0.25,0.35,0.3,0.35,0.35,0.35,0.4,0.35,0.45,0.35,0.5,0.35,0.55,0.35,0.6,0.35,0.65,0.35,0.7,0.35,0.75,0.35,0.8,0.35,0.85,0.35,0.9,0.35,0.95,0.35,1.0,0.35,0.0,0.4,0.05,0.4,0.1,0.4,0.15,0.4,0.2,0.4,0.25,0.4,0.3,0.4,0.35,0.4,0.4,0.4,0.45,0.4,0.5,0.4,0.55,0.4,0.6,0.4,0.65,0.4,0.7,0.4,0.75,0.4,0.8,0.4,0.85,0.4,0.9,0.4,0.95,0.4,1.0,0.4,0.0,0.45,0.05,0.45,0.1,0.45,0.15,0.45,0.2,0.45,0.25,0.45,0.3,0.45,0.35,0.45,0.4,0.45,0.45,0.45,0.5,0.45,0.55,0.45,0.6,0.45,0.65,0.45,0.7,0.45,0.75,0.45,0.8,0.45,0.85,0.45,0.9,0.45,0.95,0.45,1.0,0.45,0.0,0.5,0.05,0.5,0.1,0.5,0.15,0.5,0.2,0.5,0.25,0.5,0.3,0.5,0.35,0.5,0.4,0.5,0.45,0.5,0.5,0.5,0.55,0.5,0.6,0.5,0.65,0.5,0.7,0.5,0.75,0.5,0.8,0.5,0.85,0.5,0.9,0.5,0.95,0.5,1.0,0.5,0.0,0.55,0.05,0.55,0.1,0.55,0.15,0.55,0.2,0.55,0.25,0.55,0.3,0.55,0.35,0.55,0.4,0.55,0.45,0.55,0.5,0.55,0.55,0.55,0.6,0.55,0.65,0.55,0.7,0.55,0.75,0.55,0.8,0.55,0.85,0.55,0.9,0.55,0.95,0.55,1.0,0.55,0.0,0.6,0.05,0.6,0.1,0.6,0.15,0.6,0.2,0.6,0.25,0.6,0.3,0.6,0.35,0.6,0.4,0.6,0.45,0.6,0.5,0.6,0.55,0.6,0.6,0.6,0.65,0.6,0.7,0.6,0.75,0.6,0.8,0.6,0.85,0.6,0.9,0.6,0.95,0.6,1.0,0.6,0.0,0.65,0.05,0.65,0.1,0.65,0.15,0.65,0.2,0.65,0.25,0.65,0.3,0.65,0.35,0.65,0.4,0.65,0.45,0.65,0.5,0.65,0.55,0.65,0.6,0.65,0.65,0.65,0.7,0.65,0.75,0.65,0.8,0.65,0.85,0.65,0.9,0.65,0.95,0.65,1.0,0.65,0.0,0.7,0.05,0.7,0.1,0.7,0.15,0.7,0.2,0.7,0.25,0.7,0.3,0.7,0.35,0.7,0.4,0.7,0.45,0.7,0.5,0.7,0.55,0.7,0.6,0.7,0.65,0.7,0.7,0.7,0.75,0.7,0.8,0.7,0.85,0.7,0.9,0.7,0.95,0.7,1.0,0.7,0.0,0.75,0.05,0.75,0.1,0.75,0.15,0.75,0.2,0.75,0.25,0.75,0.3,0.75,0.35,0.75,0.4,0.75,0.45,0.75,0.5,0.75,0.55,0.75,0.6,0.75,0.65,0.75,0.7,0.75,0.75,0.75,0.8,0.75,0.85,0.75,0.9,0.75,0.95,0.75,1.0,0.75,0.0,0.8,0.05,0.8,0.1,0.8,0.15,0.8,0.2,0.8,0.25,0.8,0.3,0.8,0.35,0.8,0.4,0.8,0.45,0.8,0.5,0.8,0.55,0.8,0.6,0.8,0.65,0.8,0.7,0.8,0.75,0.8,0.8,0.8,0.85,0.8,0.9,0.8,0.95,0.8,1.0,0.8,0.0,0.85,0.05,0.85,0.1,0.85,0.15,0.85,0.2,0.85,0.25,0.85,0.3,0.85,0.35,0.85,0.4,0.85,0.45,0.85,0.5,0.85,0.55,0.85,0.6,0.85,0.65,0.85,0.7,0.85,0.75,0.85,0.8,0.85,0.85,0.85,0.9,0.85,0.95,0.85,1.0,0.85,0.0,0.9,0.05,0.9,0.1,0.9,0.15,0.9,0.2,0.9,0.25,0.9,0.3,0.9,0.35,0.9,0.4,0.9,0.45,0.9,0.5,0.9,0.55,0.9,0.6,0.9,0.65,0.9,0.7,0.9,0.75,0.9,0.8,0.9,0.85,0.9,0.9,0.9,0.95,0.9,1.0,0.9,0.0,0.95,0.05,0.95,0.1,0.95,0.15,0.95,0.2,0.95,0.25,0.95,0.3,0.95,0.35,0.95,0.4,0.95,0.45,0.95,0.5,0.95,0.55,0.95,0.6,0.95,0.65,0.95,0.7,0.95,0.75,0.95,0.8,0.95,0.85,0.95,0.9,0.95,0.95,0.95,1.0,0.95,0.025,0.0,0.075,0.0,0.125,0.0,0.175,0.0,0.225,0.0,0.275,0.0,0.325,0.0,0.375,0.0,0.425,0.0,0.475,0.0,0.525,0.0,0.575,0.0,0.625,0.0,0.675,0.0,0.725,0.0,0.775,0.0,0.825,0.0,0.875,0.0,0.925,0.0,0.975,0.0,0.025,1.0,0.075,1.0,0.125,1.0,0.175,1.0,0.225,1.0,0.275,1.0,0.325,1.0,0.375,1.0,0.425,1.0,0.475,1.0,0.525,1.0,0.575,1.0,0.625,1.0,0.675,1.0,0.725,1.0,0.775,1.0,0.825,1.0,0.875,1.0,0.925,1.0,0.975,1.0],"uvs2":null,"colors":null,"hasVertexAlpha":false,"matricesIndices":null,"matricesWeights":null,"matricesIndicesExtra":null,"matricesWeightsExtra":null,"indices":[0,1,2,2,1,3,1,4,3,3,4,5,4,6,5,5,6,7,6,8,7,7,8,9,8,10,9,9,10,11,10,12,11,11,12,13,12,14,13,13,14,15,14,16,15,15,16,17,16,18,17,17,18,19,18,20,19,19,20,21,20,22,21,21,22,23,22,24,23,23,24,25,24,26,25,25,26,27,26,28,27,27,28,29,28,30,29,29,30,31,30,32,31,31,32,33,32,34,33,33,34,35,34,36,35,35,36,37,36,38,37,37,38,39,38,40,39,39,40,41,2,3,42,42,3,43,3,5,43,43,5,44,5,7,44,44,7,45,7,9,45,45,9,46,9,11,46,46,11,47,11,13,47,47,13,48,13,15,48,48,15,49,15,17,49,49,17,50,17,19,50,50,19,51,19,21,51,51,21,52,21,23,52,52,23,53,23,25,53,53,25,54,25,27,54,54,27,55,27,29,55,55,29,56,29,31,56,56,31,57,31,33,57,57,33,58,33,35,58,58,35,59,35,37,59,59,37,60,37,39,60,60,39,61,39,41,61,61,41,62,42,43,63,63,43,64,43,44,64,64,44,65,44,45,65,65,45,66,45,46,66,66,46,67,46,47,67,67,47,68,47,48,68,68,48,69,48,49,69,69,49,70,49,50,70,70,50,71,50,51,71,71,51,72,51,52,72,72,52,73,52,53,73,73,53,74,53,54,74,74,54,75,54,55,75,75,55,76,55,56,76,76,56,77,56,57,77,77,57,78,57,58,78,78,58,79,58,59,79,79,59,80,59,60,80,80,60,81,60,61,81,81,61,82,61,62,82,82,62,83,63,64,84,84,64,85,64,65,85,85,65,86,65,66,86,86,66,87,66,67,87,87,67,88,67,68,88,88,68,89,68,69,89,89,69,90,69,70,90,90,70,91,70,71,91,91,71,92,71,72,92,92,72,93,72,73,93,93,73,94,73,74,94,94,74,95,74,75,95,95,75,96,75,76,96,96,76,97,76,77,97,97,77,98,77,78,98,98,78,99,78,79,99,99,79,100,79,80,100,100,80,101,80,81,101,101,81,102,81,82,102,102,82,103,82,83,103,103,83,104,84,85,105,105,85,106,85,86,106,106,86,107,86,87,107,107,87,108,87,88,108,108,88,109,88,89,109,109,89,110,89,90,110,110,90,111,90,91,111,111,91,112,91,92,112,112,92,113,92,93,113,113,93,114,93,94,114,114,94,115,94,95,115,115,95,116,95,96,116,116,96,117,96,97,117,117,97,118,97,98,118,118,98,119,98,99,119,119,99,120,99,100,120,120,100,121,100,101,121,121,101,122,101,102,122,122,102,123,102,103,123,123,103,124,103,104,124,124,104,125,105,106,126,126,106,127,106,107,127,127,107,128,107,108,128,128,108,129,108,109,129,129,109,130,109,110,130,130,110,131,110,111,131,131,111,132,111,112,132,132,112,133,112,113,133,133,113,134,113,114,134,134,114,135,114,115,135,135,115,136,115,116,136,136,116,137,116,117,137,137,117,138,117,118,138,138,118,139,118,119,139,139,119,140,119,120,140,140,120,141,120,121,141,141,121,142,121,122,142,142,122,143,122,123,143,143,123,144,123,124,144,144,124,145,124,125,145,145,125,146,126,127,147,147,127,148,127,128,148,148,128,149,128,129,149,149,129,150,129,130,150,150,130,151,130,131,151,151,131,152,131,132,152,152,132,153,132,133,153,153,133,154,133,134,154,154,134,155,134,135,155,155,135,156,135,136,156,156,136,157,136,137,157,157,137,158,137,138,158,158,138,159,138,139,159,159,139,160,139,140,160,160,140,161,140,141,161,161,141,162,141,142,162,162,142,163,142,143,163,163,143,164,143,144,164,164,144,165,144,145,165,165,145,166,145,146,166,166,146,167,147,148,168,168,148,169,148,149,169,169,149,170,149,150,170,170,150,171,150,151,171,171,151,172,151,152,172,172,152,173,152,153,173,173,153,174,153,154,174,174,154,175,154,155,175,175,155,176,155,156,176,176,156,177,156,157,177,177,157,178,157,158,178,178,158,179,158,159,179,179,159,180,159,160,180,180,160,181,160,161,181,181,161,182,161,162,182,182,162,183,162,163,183,183,163,184,163,164,184,184,164,185,164,165,185,185,165,186,165,166,186,186,166,187,166,167,187,187,167,188,168,169,189,189,169,190,169,170,190,190,170,191,170,171,191,191,171,192,171,172,192,192,172,193,172,173,193,193,173,194,173,174,194,194,174,195,174,175,195,195,175,196,175,176,196,196,176,197,176,177,197,197,177,198,177,178,198,198,178,199,178,179,199,199,179,200,179,180,200,200,180,201,180,181,201,201,181,202,181,182,202,202,182,203,182,183,203,203,183,204,183,184,204,204,184,205,184,185,205,205,185,206,185,186,206,206,186,207,186,187,207,207,187,208,187,188,208,208,188,209,189,190,210,210,190,211,190,191,211,211,191,212,191,192,212,212,192,213,192,193,213,213,193,214,193,194,214,214,194,215,194,195,215,215,195,216,195,196,216,216,196,217,196,197,217,217,197,218,197,198,218,218,198,219,198,199,219,219,199,220,199,200,220,220,200,221,200,201,221,221,201,222,201,202,222,222,202,223,202,203,223,223,203,224,203,204,224,224,204,225,204,205,225,225,205,226,205,206,226,226,206,227,206,207,227,227,207,228,207,208,228,228,208,229,208,209,229,229,209,230,210,211,231,231,211,232,211,212,232,232,212,233,212,213,233,233,213,234,213,214,234,234,214,235,214,215,235,235,215,236,215,216,236,236,216,237,216,217,237,237,217,238,217,218,238,238,218,239,218,219,239,239,219,240,219,220,240,240,220,241,220,221,241,241,221,242,221,222,242,242,222,243,222,223,243,243,223,244,223,224,244,244,224,245,224,225,245,245,225,246,225,226,246,246,226,247,226,227,247,247,227,248,227,228,248,248,228,249,228,229,249,249,229,250,229,230,250,250,230,251,231,232,252,252,232,253,232,233,253,253,233,254,233,234,254,254,234,255,234,235,255,255,235,256,235,236,256,256,236,257,236,237,257,257,237,258,237,238,258,258,238,259,238,239,259,259,239,260,239,240,260,260,240,261,240,241,261,261,241,262,241,242,262,262,242,263,242,243,263,263,243,264,243,244,264,264,244,265,244,245,265,265,245,266,245,246,266,266,246,267,246,247,267,267,247,268,247,248,268,268,248,269,248,249,269,269,249,270,249,250,270,270,250,271,250,251,271,271,251,272,252,253,273,273,253,274,253,254,274,274,254,275,254,255,275,275,255,276,255,256,276,276,256,277,256,257,277,277,257,278,257,258,278,278,258,279,258,259,279,279,259,280,259,260,280,280,260,281,260,261,281,281,261,282,261,262,282,282,262,283,262,263,283,283,263,284,263,264,284,284,264,285,264,265,285,285,265,286,265,266,286,286,266,287,266,267,287,287,267,288,267,268,288,288,268,289,268,269,289,289,269,290,269,270,290,290,270,291,270,271,291,291,271,292,271,272,292,292,272,293,273,274,294,294,274,295,274,275,295,295,275,296,275,276,296,296,276,297,276,277,297,297,277,298,277,278,298,298,278,299,278,279,299,299,279,300,279,280,300,300,280,301,280,281,301,301,281,302,281,282,302,302,282,303,282,283,303,303,283,304,283,284,304,304,284,305,284,285,305,305,285,306,285,286,306,306,286,307,286,287,307,307,287,308,287,288,308,308,288,309,288,289,309,309,289,310,289,290,310,310,290,311,290,291,311,311,291,312,291,292,312,312,292,313,292,293,313,313,293,314,294,295,315,315,295,316,295,296,316,316,296,317,296,297,317,317,297,318,297,298,318,318,298,319,298,299,319,319,299,320,299,300,320,320,300,321,300,301,321,321,301,322,301,302,322,322,302,323,302,303,323,323,303,324,303,304,324,324,304,325,304,305,325,325,305,326,305,306,326,326,306,327,306,307,327,327,307,328,307,308,328,328,308,329,308,309,329,329,309,330,309,310,330,330,310,331,310,311,331,331,311,332,311,312,332,332,312,333,312,313,333,333,313,334,313,314,334,334,314,335,315,316,336,336,316,337,316,317,337,337,317,338,317,318,338,338,318,339,318,319,339,339,319,340,319,320,340,340,320,341,320,321,341,341,321,342,321,322,342,342,322,343,322,323,343,343,323,344,323,324,344,344,324,345,324,325,345,345,325,346,325,326,346,346,326,347,326,327,347,347,327,348,327,328,348,348,328,349,328,329,349,349,329,350,329,330,350,350,330,351,330,331,351,351,331,352,331,332,352,352,332,353,332,333,353,353,333,354,333,334,354,354,334,355,334,335,355,355,335,356,336,337,357,357,337,358,337,338,358,358,338,359,338,339,359,359,339,360,339,340,360,360,340,361,340,341,361,361,341,362,341,342,362,362,342,363,342,343,363,363,343,364,343,344,364,364,344,365,344,345,365,365,345,366,345,346,366,366,346,367,346,347,367,367,347,368,347,348,368,368,348,369,348,349,369,369,349,370,349,350,370,370,350,371,350,351,371,371,351,372,351,352,372,372,352,373,352,353,373,373,353,374,353,354,374,374,354,375,354,355,375,375,355,376,355,356,376,376,356,377,357,358,378,378,358,379,358,359,379,379,359,380,359,360,380,380,360,381,360,361,381,381,361,382,361,362,382,382,362,383,362,363,383,383,363,384,363,364,384,384,364,385,364,365,385,385,365,386,365,366,386,386,366,387,366,367,387,387,367,388,367,368,388,388,368,389,368,369,389,389,369,390,369,370,390,390,370,391,370,371,391,391,371,392,371,372,392,392,372,393,372,373,393,393,373,394,373,374,394,394,374,395,374,375,395,395,375,396,375,376,396,396,376,397,376,377,397,397,377,398,1,0,399,4,1,400,6,4,401,8,6,402,10,8,403,12,10,404,14,12,405,16,14,406,18,16,407,20,18,408,22,20,409,24,22,410,26,24,411,28,26,412,30,28,413,32,30,414,34,32,415,36,34,416,38,36,417,40,38,418,378,379,419,379,380,420,380,381,421,381,382,422,382,383,423,383,384,424,384,385,425,385,386,426,386,387,427,387,388,428,388,389,429,389,390,430,390,391,431,391,392,432,392,393,433,393,394,434,394,395,435,395,396,436,396,397,437,397,398,438],"receiveShadows":false,"infiniteDistance":false,"billboardMode":0,"visibility":1.0,"subMeshes":[{"materialIndex":0,"verticesStart":0,"verticesCount":439,"indexStart":0,"indexCount":2280}],"instances":null,"skeletonId":-1,"numBoneInfluencers":4,"applyFog":false,"lodMeshIds":null,"lodDistances":null,"lodCoverages":null,"rotation":null,"scaling":[1.0,1.0,1.0],"rotationQuaternion":[0.0,0.1736,0.0,0.9848],"actions":null,"checkCollisions":false,"pickable":true,"showBoundingBox":false,"showSubMeshesBoundingBox":false,"alphaIndex":0,"physicsImpostor":0,"physicsMass":0.0,"physicsFriction":0.0,"physicsRestitution":0.0,"name":"pSphere7","id":"BC3DC0B8-48A9-5B94-E63F-2FB926FBAA44","parentId":null,"position":[3.0,0.0,5.0],"animations":[],"autoAnimate":true,"autoAnimateFrom":1,"autoAnimateTo":200,"autoAnimateLoop":true,"metadata":{}}],"sounds":[],"materials":[{"customType":"BABYLON.StandardMaterial","ambient":[1.0,1.0,1.0],"diffuse":[1.0,0.0,0.0],"specular":[0.5,0.5,0.5],"emissive":[0.0,0.0,0.0],"specularPower":110.6414,"diffuseTexture":{"name":"PhongMaterial_baseColor.png","level":1.0,"hasAlpha":true,"getAlphaFromRGB":false,"coordinatesMode":0,"isCube":false,"uOffset":0.0,"vOffset":0.0,"uScale":1.0,"vScale":1.0,"uRotationCenter":0.5,"vRotationCenter":0.5,"wRotationCenter":0.5,"invertY":true,"uAng":0.0,"vAng":0.0,"wAng":0.0,"wrapU":1,"wrapV":1,"coordinatesIndex":0,"isRenderTarget":false,"renderTargetSize":0,"mirrorPlane":null,"renderList":null,"animations":[{"name":"uOffset animation","property":"uOffset","dataType":0,"enableBlending":false,"blendingSpeed":0.01,"loopBehavior":1,"framePerSecond":24,"keys":[{"frame":1,"values":[0.0]},{"frame":200,"values":[0.0]}]},{"name":"vOffset animation","property":"vOffset","dataType":0,"enableBlending":false,"blendingSpeed":0.01,"loopBehavior":1,"framePerSecond":24,"keys":[{"frame":1,"values":[0.0]},{"frame":200,"values":[0.0]}]},{"name":"uScale animation","property":"uScale","dataType":0,"enableBlending":false,"blendingSpeed":0.01,"loopBehavior":1,"framePerSecond":24,"keys":[{"frame":1,"values":[1.0]},{"frame":200,"values":[1.0]}]},{"name":"vScale animation","property":"vScale","dataType":0,"enableBlending":false,"blendingSpeed":0.01,"loopBehavior":1,"framePerSecond":24,"keys":[{"frame":1,"values":[1.0]},{"frame":200,"values":[1.0]}]},{"name":"wAng animation","property":"wAng","dataType":0,"enableBlending":false,"blendingSpeed":0.01,"loopBehavior":1,"framePerSecond":24,"keys":[{"frame":1,"values":[0.0]},{"frame":200,"values":[0.0]}]}],"extensions":null,"samplingMode":3},"diffuseFresnelParameters":null,"ambientTexture":null,"opacityTexture":null,"opacityFresnelParameters":null,"reflectionTexture":null,"reflectionFresnelParameters":null,"emissiveTexture":null,"lightmapTexture":null,"useLightmapAsShadowmap":false,"emissiveFresnelParameters":null,"specularTexture":null,"bumpTexture":null,"useSpecularOverAlpha":true,"disableLighting":false,"useEmissiveAsIllumination":false,"linkEmissiveWithDiffuse":true,"twoSidedLighting":false,"useGlossinessFromSpecularMapAlpha":false,"alphaCutOff":0.5,"name":"PhongMaterial","id":"9B24F14E-4F69-6849-B864-07B9E4A7E9FF","backFaceCulling":true,"wireframe":false,"alpha":1.0,"alphaMode":2,"maxSimultaneousLights":4,"metadata":{}},{"customType":"BABYLON.PBRMetallicRoughnessMaterial","baseColor":[1.0,1.0,1.0],"baseTexture":{"name":"diffuse_green_opacity_gradation_horizontal.png","level":1.0,"hasAlpha":true,"getAlphaFromRGB":false,"coordinatesMode":0,"isCube":false,"uOffset":0.0,"vOffset":0.0,"uScale":1.0,"vScale":1.0,"uRotationCenter":0.5,"vRotationCenter":0.5,"wRotationCenter":0.5,"invertY":true,"uAng":0.0,"vAng":0.0,"wAng":0.0,"wrapU":1,"wrapV":1,"coordinatesIndex":0,"isRenderTarget":false,"renderTargetSize":0,"mirrorPlane":null,"renderList":null,"animations":[],"extensions":null,"samplingMode":3},"metallic":0.0,"roughness":0.33,"metallicRoughnessTexture":null,"disableLighting":false,"invertNormalMapX":false,"invertNormalMapY":false,"normalTexture":null,"emissive":[0.0,0.0,0.0],"emissiveTexture":null,"occlusionStrength":1.0,"occlusionTexture":null,"alphaCutOff":0.5,"transparencyMode":1,"doubleSided":false,"clearCoat":{"isEnabled":false,"intensity":1.0,"roughness":0.0,"indexOfRefraction":1.5,"texture":null,"bumpTexture":null,"isTintEnabled":false,"tintColor":[1.0,1.0,1.0],"tintThickness":1.0,"tintTexture":null},"name":"PhysicalMaterialBackFace0_5","id":"0E49D5E9-4200-91FB-CB7B-93B40CEF850E","backFaceCulling":true,"wireframe":false,"alpha":1.0,"alphaMode":2,"maxSimultaneousLights":4,"metadata":null},{"customType":"BABYLON.PBRMetallicRoughnessMaterial","baseColor":[0.8,0.8,0.8],"baseTexture":{"name":"ArnoldStandardBackFace_baseColor.png","level":1.0,"hasAlpha":false,"getAlphaFromRGB":false,"coordinatesMode":0,"isCube":false,"uOffset":0.0,"vOffset":0.0,"uScale":1.0,"vScale":1.0,"uRotationCenter":0.5,"vRotationCenter":0.5,"wRotationCenter":0.5,"invertY":true,"uAng":0.0,"vAng":0.0,"wAng":0.0,"wrapU":1,"wrapV":1,"coordinatesIndex":0,"isRenderTarget":false,"renderTargetSize":0,"mirrorPlane":null,"renderList":null,"animations":[{"name":"uOffset animation","property":"uOffset","dataType":0,"enableBlending":false,"blendingSpeed":0.01,"loopBehavior":1,"framePerSecond":24,"keys":[{"frame":1,"values":[0.0]},{"frame":200,"values":[0.0]}]},{"name":"vOffset animation","property":"vOffset","dataType":0,"enableBlending":false,"blendingSpeed":0.01,"loopBehavior":1,"framePerSecond":24,"keys":[{"frame":1,"values":[0.0]},{"frame":200,"values":[0.0]}]},{"name":"uScale animation","property":"uScale","dataType":0,"enableBlending":false,"blendingSpeed":0.01,"loopBehavior":1,"framePerSecond":24,"keys":[{"frame":1,"values":[1.0]},{"frame":200,"values":[1.0]}]},{"name":"vScale animation","property":"vScale","dataType":0,"enableBlending":false,"blendingSpeed":0.01,"loopBehavior":1,"framePerSecond":24,"keys":[{"frame":1,"values":[1.0]},{"frame":200,"values":[1.0]}]},{"name":"wAng animation","property":"wAng","dataType":0,"enableBlending":false,"blendingSpeed":0.01,"loopBehavior":1,"framePerSecond":24,"keys":[{"frame":1,"values":[0.0]},{"frame":200,"values":[0.0]}]}],"extensions":null,"samplingMode":3},"metallic":0.0,"roughness":0.1,"metallicRoughnessTexture":null,"disableLighting":false,"invertNormalMapX":false,"invertNormalMapY":false,"normalTexture":null,"emissive":[0.0,0.0,0.0],"emissiveTexture":null,"occlusionStrength":1.0,"occlusionTexture":null,"transparencyMode":0,"doubleSided":false,"clearCoat":{"isEnabled":false,"intensity":1.0,"roughness":0.0,"indexOfRefraction":1.5,"texture":null,"bumpTexture":null,"isTintEnabled":false,"tintColor":[1.0,1.0,1.0],"tintThickness":1.0,"tintTexture":null},"name":"ArnoldStandardBackFace","id":"89D7C59E-42EA-CBDA-96BF-B8838BCC9C60","backFaceCulling":true,"wireframe":false,"alpha":1.0,"alphaMode":2,"maxSimultaneousLights":4,"metadata":null},{"customType":"BABYLON.PBRMetallicRoughnessMaterial","baseColor":[0.8,0.8,0.8],"baseTexture":{"name":"ArnoldStandardBackFace_baseColor.png","level":1.0,"hasAlpha":true,"getAlphaFromRGB":false,"coordinatesMode":0,"isCube":false,"uOffset":0.0,"vOffset":0.0,"uScale":1.0,"vScale":1.0,"uRotationCenter":0.5,"vRotationCenter":0.5,"wRotationCenter":0.5,"invertY":true,"uAng":0.0,"vAng":0.0,"wAng":0.0,"wrapU":1,"wrapV":1,"coordinatesIndex":0,"isRenderTarget":false,"renderTargetSize":0,"mirrorPlane":null,"renderList":null,"animations":[{"name":"uOffset animation","property":"uOffset","dataType":0,"enableBlending":false,"blendingSpeed":0.01,"loopBehavior":1,"framePerSecond":24,"keys":[{"frame":1,"values":[0.0]},{"frame":200,"values":[0.0]}]},{"name":"vOffset animation","property":"vOffset","dataType":0,"enableBlending":false,"blendingSpeed":0.01,"loopBehavior":1,"framePerSecond":24,"keys":[{"frame":1,"values":[0.0]},{"frame":200,"values":[0.0]}]},{"name":"uScale animation","property":"uScale","dataType":0,"enableBlending":false,"blendingSpeed":0.01,"loopBehavior":1,"framePerSecond":24,"keys":[{"frame":1,"values":[1.0]},{"frame":200,"values":[1.0]}]},{"name":"vScale animation","property":"vScale","dataType":0,"enableBlending":false,"blendingSpeed":0.01,"loopBehavior":1,"framePerSecond":24,"keys":[{"frame":1,"values":[1.0]},{"frame":200,"values":[1.0]}]},{"name":"wAng animation","property":"wAng","dataType":0,"enableBlending":false,"blendingSpeed":0.01,"loopBehavior":1,"framePerSecond":24,"keys":[{"frame":1,"values":[0.0]},{"frame":200,"values":[0.0]}]}],"extensions":null,"samplingMode":3},"metallic":0.0,"roughness":0.1,"metallicRoughnessTexture":null,"disableLighting":false,"invertNormalMapX":false,"invertNormalMapY":false,"normalTexture":null,"emissive":[0.0,0.0,0.0],"emissiveTexture":null,"occlusionStrength":1.0,"occlusionTexture":null,"alphaCutOff":0.5,"transparencyMode":1,"doubleSided":false,"clearCoat":{"isEnabled":false,"intensity":1.0,"roughness":0.0,"indexOfRefraction":1.5,"texture":null,"bumpTexture":null,"isTintEnabled":false,"tintColor":[1.0,1.0,1.0],"tintThickness":1.0,"tintTexture":null},"name":"ArnoldStandardBackFace","id":"79CDF1A6-4409-889B-46A9-43A586C10D94","backFaceCulling":true,"wireframe":false,"alpha":1.0,"alphaMode":2,"maxSimultaneousLights":4,"metadata":null},{"customType":"BABYLON.StandardMaterial","ambient":[1.0,1.0,1.0],"diffuse":[0.5,0.5,0.5],"specular":[0.0,0.0,0.0],"emissive":[0.0,0.0,0.0],"specularPower":25.6,"diffuseTexture":{"name":"lambert1_baseColor.png","level":1.0,"hasAlpha":true,"getAlphaFromRGB":false,"coordinatesMode":0,"isCube":false,"uOffset":0.0,"vOffset":0.0,"uScale":1.0,"vScale":1.0,"uRotationCenter":0.5,"vRotationCenter":0.5,"wRotationCenter":0.5,"invertY":true,"uAng":0.0,"vAng":0.0,"wAng":0.0,"wrapU":1,"wrapV":1,"coordinatesIndex":0,"isRenderTarget":false,"renderTargetSize":0,"mirrorPlane":null,"renderList":null,"animations":[{"name":"uOffset animation","property":"uOffset","dataType":0,"enableBlending":false,"blendingSpeed":0.01,"loopBehavior":1,"framePerSecond":24,"keys":[{"frame":1,"values":[0.0]},{"frame":200,"values":[0.0]}]},{"name":"vOffset animation","property":"vOffset","dataType":0,"enableBlending":false,"blendingSpeed":0.01,"loopBehavior":1,"framePerSecond":24,"keys":[{"frame":1,"values":[0.0]},{"frame":200,"values":[0.0]}]},{"name":"uScale animation","property":"uScale","dataType":0,"enableBlending":false,"blendingSpeed":0.01,"loopBehavior":1,"framePerSecond":24,"keys":[{"frame":1,"values":[1.0]},{"frame":200,"values":[1.0]}]},{"name":"vScale animation","property":"vScale","dataType":0,"enableBlending":false,"blendingSpeed":0.01,"loopBehavior":1,"framePerSecond":24,"keys":[{"frame":1,"values":[1.0]},{"frame":200,"values":[1.0]}]},{"name":"wAng animation","property":"wAng","dataType":0,"enableBlending":false,"blendingSpeed":0.01,"loopBehavior":1,"framePerSecond":24,"keys":[{"frame":1,"values":[0.0]},{"frame":200,"values":[0.0]}]}],"extensions":null,"samplingMode":3},"diffuseFresnelParameters":null,"ambientTexture":null,"opacityTexture":null,"opacityFresnelParameters":null,"reflectionTexture":null,"reflectionFresnelParameters":null,"emissiveTexture":null,"lightmapTexture":null,"useLightmapAsShadowmap":false,"emissiveFresnelParameters":null,"specularTexture":null,"bumpTexture":null,"useSpecularOverAlpha":true,"disableLighting":false,"useEmissiveAsIllumination":false,"linkEmissiveWithDiffuse":true,"twoSidedLighting":false,"useGlossinessFromSpecularMapAlpha":false,"alphaCutOff":0.5,"name":"lambert1","id":"C33371E3-49CC-50AB-9549-80BD2392C0F8","backFaceCulling":true,"wireframe":false,"alpha":1.0,"alphaMode":2,"maxSimultaneousLights":4,"metadata":{}},{"customType":"BABYLON.PBRMetallicRoughnessMaterial","baseColor":[1.0,1.0,1.0],"baseTexture":{"name":"PhysicalMaterialBackFaceWithoutOpacity_baseColor.png","level":1.0,"hasAlpha":true,"getAlphaFromRGB":false,"coordinatesMode":0,"isCube":false,"uOffset":0.0,"vOffset":0.0,"uScale":1.0,"vScale":1.0,"uRotationCenter":0.5,"vRotationCenter":0.5,"wRotationCenter":0.5,"invertY":true,"uAng":0.0,"vAng":0.0,"wAng":0.0,"wrapU":1,"wrapV":1,"coordinatesIndex":0,"isRenderTarget":false,"renderTargetSize":0,"mirrorPlane":null,"renderList":null,"animations":[],"extensions":null,"samplingMode":3},"metallic":0.0,"roughness":0.33,"metallicRoughnessTexture":null,"disableLighting":false,"invertNormalMapX":false,"invertNormalMapY":false,"normalTexture":null,"emissive":[0.0,0.0,0.0],"emissiveTexture":null,"occlusionStrength":1.0,"occlusionTexture":null,"alphaCutOff":0.5,"transparencyMode":1,"doubleSided":false,"clearCoat":{"isEnabled":false,"intensity":1.0,"roughness":0.0,"indexOfRefraction":1.5,"texture":null,"bumpTexture":null,"isTintEnabled":false,"tintColor":[1.0,1.0,1.0],"tintThickness":1.0,"tintTexture":null},"name":"PhysicalMaterialBackFaceWithoutOpacity","id":"996C2977-4867-A7DC-F33E-A88D8BC4D135","backFaceCulling":true,"wireframe":false,"alpha":1.0,"alphaMode":2,"maxSimultaneousLights":4,"metadata":null},{"customType":"BABYLON.PBRMetallicRoughnessMaterial","baseColor":[1.0,1.0,1.0],"baseTexture":{"name":"diffuse_green_opacity_gradation_horizontal.png","level":1.0,"hasAlpha":true,"getAlphaFromRGB":false,"coordinatesMode":0,"isCube":false,"uOffset":0.0,"vOffset":0.0,"uScale":1.0,"vScale":1.0,"uRotationCenter":0.5,"vRotationCenter":0.5,"wRotationCenter":0.5,"invertY":true,"uAng":0.0,"vAng":0.0,"wAng":0.0,"wrapU":1,"wrapV":1,"coordinatesIndex":0,"isRenderTarget":false,"renderTargetSize":0,"mirrorPlane":null,"renderList":null,"animations":[],"extensions":null,"samplingMode":3},"metallic":0.0,"roughness":0.33,"metallicRoughnessTexture":null,"disableLighting":false,"invertNormalMapX":false,"invertNormalMapY":false,"normalTexture":null,"emissive":[0.0,0.0,0.0],"emissiveTexture":null,"occlusionStrength":1.0,"occlusionTexture":null,"alphaCutOff":0.75,"transparencyMode":1,"doubleSided":false,"clearCoat":{"isEnabled":false,"intensity":1.0,"roughness":0.0,"indexOfRefraction":1.5,"texture":null,"bumpTexture":null,"isTintEnabled":false,"tintColor":[1.0,1.0,1.0],"tintThickness":1.0,"tintTexture":null},"name":"PhysicalMaterialBackFace0_75","id":"9662A69B-4085-1DA0-7E85-2BBBA15737BF","backFaceCulling":true,"wireframe":false,"alpha":1.0,"alphaMode":2,"maxSimultaneousLights":4,"metadata":null}],"multiMaterials":[],"particleSystems":null,"lensFlareSystems":null,"shadowGenerators":[],"skeletons":[],"actions":null,"metadata":null,"workerCollisions":false}
\ No newline at end of file
diff --git a/Maya/Samples/babylon/BabylonMaterialAttributes/TransparencyMode/Mask/aiStandardSurface1_baseColor.png b/Maya/Samples/babylon/BabylonMaterialAttributes/TransparencyMode/Mask/aiStandardSurface1_baseColor.png
new file mode 100644
index 00000000..1ab543b0
Binary files /dev/null and b/Maya/Samples/babylon/BabylonMaterialAttributes/TransparencyMode/Mask/aiStandardSurface1_baseColor.png differ
diff --git a/Maya/Samples/babylon/BabylonMaterialAttributes/TransparencyMode/Mask/diffuse_green_opacity_gradation_horizontal.png b/Maya/Samples/babylon/BabylonMaterialAttributes/TransparencyMode/Mask/diffuse_green_opacity_gradation_horizontal.png
new file mode 100644
index 00000000..c4b0e568
Binary files /dev/null and b/Maya/Samples/babylon/BabylonMaterialAttributes/TransparencyMode/Mask/diffuse_green_opacity_gradation_horizontal.png differ
diff --git a/Maya/Samples/babylon/BabylonMaterialAttributes/TransparencyMode/Mask/gradation_horizontal.jpg b/Maya/Samples/babylon/BabylonMaterialAttributes/TransparencyMode/Mask/gradation_horizontal.jpg
new file mode 100644
index 00000000..7437068c
Binary files /dev/null and b/Maya/Samples/babylon/BabylonMaterialAttributes/TransparencyMode/Mask/gradation_horizontal.jpg differ
diff --git a/Maya/Samples/babylon/BabylonMaterialAttributes/TransparencyMode/Mask/lambert1_baseColor.png b/Maya/Samples/babylon/BabylonMaterialAttributes/TransparencyMode/Mask/lambert1_baseColor.png
new file mode 100644
index 00000000..424aeeb4
Binary files /dev/null and b/Maya/Samples/babylon/BabylonMaterialAttributes/TransparencyMode/Mask/lambert1_baseColor.png differ
diff --git a/Maya/Samples/babylon/BabylonMaterialAttributes/TransparencyMode/Mask/phong1_baseColor.png b/Maya/Samples/babylon/BabylonMaterialAttributes/TransparencyMode/Mask/phong1_baseColor.png
new file mode 100644
index 00000000..fcd01433
Binary files /dev/null and b/Maya/Samples/babylon/BabylonMaterialAttributes/TransparencyMode/Mask/phong1_baseColor.png differ
diff --git a/Maya/Samples/babylon/BabylonMaterialAttributes/TransparencyMode/Opaque/TransparencyMode_Opaque.babylon b/Maya/Samples/babylon/BabylonMaterialAttributes/TransparencyMode/Opaque/TransparencyMode_Opaque.babylon
new file mode 100644
index 00000000..158fcf8d
--- /dev/null
+++ b/Maya/Samples/babylon/BabylonMaterialAttributes/TransparencyMode/Opaque/TransparencyMode_Opaque.babylon
@@ -0,0 +1 @@
+{"producer":{"name":"Maya","version":"2018","exporter_version":"1.4.0","file":"TransparencyMode_Opaque.babylon"},"autoClear":true,"clearColor":[0.2,0.2,0.3],"ambientColor":[0.0,0.0,0.0],"fogMode":0,"fogColor":null,"fogStart":0.0,"fogEnd":0.0,"fogDensity":0.0,"gravity":[0.0,0.0,-0.9],"physicsEngine":null,"physicsEnabled":false,"physicsGravity":null,"cameras":[{"isStereoscopicSideBySide":false,"lockedTargetId":"35B30E14-45FB-B1BA-1FA6-278686591A99","type":"FreeCamera","rotation":null,"rotationQuaternion":[0.3731,-0.1283,0.0522,0.9174],"fov":0.6606,"minZ":0.1,"maxZ":10000.0,"speed":1.0,"inertia":0.9,"interaxialDistance":0.0637,"checkCollisions":false,"applyGravity":false,"ellipsoid":null,"mode":0,"orthoLeft":null,"orthoRight":null,"orthoBottom":null,"orthoTop":null,"name":"camera1","id":"E53390EE-47F1-9DC8-583C-958D4A76A8E9","parentId":"445214BC-44AE-3B76-F9B7-F39619D41560","position":[7.3754,9.6129,-7.2917],"animations":[{"name":"rotationQuaternion animation","property":"rotationQuaternion","dataType":2,"enableBlending":false,"blendingSpeed":0.01,"loopBehavior":1,"framePerSecond":24,"keys":[{"frame":1,"values":[0.3731,-0.1283,0.0522,0.9174]},{"frame":200,"values":[0.3731,-0.1283,0.0522,0.9174]}]},{"name":"position animation","property":"position","dataType":1,"enableBlending":false,"blendingSpeed":0.01,"loopBehavior":1,"framePerSecond":24,"keys":[{"frame":1,"values":[7.3754,9.6129,-7.2917]},{"frame":200,"values":[7.3754,9.6129,-7.2917]}]},{"name":"visibility animation","property":"visibility","dataType":0,"enableBlending":false,"blendingSpeed":0.01,"loopBehavior":1,"framePerSecond":24,"keys":[{"frame":1,"values":[1.0]},{"frame":200,"values":[1.0]}]}],"autoAnimate":true,"autoAnimateFrom":1,"autoAnimateTo":200,"autoAnimateLoop":true,"metadata":{}}],"activeCameraID":"E53390EE-47F1-9DC8-583C-958D4A76A8E9","lights":[{"direction":[0.0,1.0,0.0],"type":3,"diffuse":[1.0,1.0,1.0],"specular":[1.0,1.0,1.0],"intensity":1.0,"range":3.40282347E+38,"exponent":0.0,"angle":0.0,"groundColor":[0.0,0.0,0.0],"excludedMeshesIds":null,"includedOnlyMeshesIds":null,"lightmapMode":null,"falloffType":null,"name":"Default light","id":"29ef57f4-0b0d-498f-aba1-2f9ea201897c","parentId":null,"position":[0.0,0.0,0.0],"animations":null,"autoAnimate":false,"autoAnimateFrom":0,"autoAnimateTo":0,"autoAnimateLoop":false,"metadata":null}],"meshes":[{"materialId":"9B24F14E-4F69-6849-B864-07B9E4A7E9FF","isEnabled":true,"isVisible":true,"positions":[0.1488,-0.9877,0.0483,0.1266,-0.9877,0.0919,0.2939,-0.9511,0.0955,0.25,-0.9511,0.1816,0.0919,-0.9877,0.1266,0.1816,-0.9511,0.25,0.0483,-0.9877,0.1488,0.0955,-0.9511,0.2939,0.0,-0.9877,0.1564,0.0,-0.9511,0.309,-0.0483,-0.9877,0.1488,-0.0955,-0.9511,0.2939,-0.0919,-0.9877,0.1266,-0.1816,-0.9511,0.25,-0.1266,-0.9877,0.0919,-0.25,-0.9511,0.1816,-0.1488,-0.9877,0.0483,-0.2939,-0.9511,0.0955,-0.1564,-0.9877,0.0,-0.309,-0.9511,0.0,-0.1488,-0.9877,-0.0483,-0.2939,-0.9511,-0.0955,-0.1266,-0.9877,-0.0919,-0.25,-0.9511,-0.1816,-0.0919,-0.9877,-0.1266,-0.1816,-0.9511,-0.25,-0.0483,-0.9877,-0.1488,-0.0955,-0.9511,-0.2939,0.0,-0.9877,-0.1564,0.0,-0.9511,-0.309,0.0483,-0.9877,-0.1488,0.0955,-0.9511,-0.2939,0.0919,-0.9877,-0.1266,0.1816,-0.9511,-0.25,0.1266,-0.9877,-0.0919,0.25,-0.9511,-0.1816,0.1488,-0.9877,-0.0483,0.2939,-0.9511,-0.0955,0.1564,-0.9877,0.0,0.309,-0.9511,0.0,0.1488,-0.9877,0.0483,0.2939,-0.9511,0.0955,0.4318,-0.891,0.1403,0.3673,-0.891,0.2668,0.2668,-0.891,0.3673,0.1403,-0.891,0.4318,0.0,-0.891,0.454,-0.1403,-0.891,0.4318,-0.2668,-0.891,0.3673,-0.3673,-0.891,0.2668,-0.4318,-0.891,0.1403,-0.454,-0.891,0.0,-0.4318,-0.891,-0.1403,-0.3673,-0.891,-0.2668,-0.2668,-0.891,-0.3673,-0.1403,-0.891,-0.4318,0.0,-0.891,-0.454,0.1403,-0.891,-0.4318,0.2668,-0.891,-0.3673,0.3673,-0.891,-0.2668,0.4318,-0.891,-0.1403,0.454,-0.891,0.0,0.4318,-0.891,0.1403,0.559,-0.809,0.1816,0.4755,-0.809,0.3455,0.3455,-0.809,0.4755,0.1816,-0.809,0.559,0.0,-0.809,0.5878,-0.1816,-0.809,0.559,-0.3455,-0.809,0.4755,-0.4755,-0.809,0.3455,-0.559,-0.809,0.1816,-0.5878,-0.809,0.0,-0.559,-0.809,-0.1816,-0.4755,-0.809,-0.3455,-0.3455,-0.809,-0.4755,-0.1816,-0.809,-0.559,0.0,-0.809,-0.5878,0.1816,-0.809,-0.559,0.3455,-0.809,-0.4755,0.4755,-0.809,-0.3455,0.559,-0.809,-0.1816,0.5878,-0.809,0.0,0.559,-0.809,0.1816,0.6725,-0.7071,0.2185,0.5721,-0.7071,0.4156,0.4156,-0.7071,0.5721,0.2185,-0.7071,0.6725,0.0,-0.7071,0.7071,-0.2185,-0.7071,0.6725,-0.4156,-0.7071,0.5721,-0.5721,-0.7071,0.4156,-0.6725,-0.7071,0.2185,-0.7071,-0.7071,0.0,-0.6725,-0.7071,-0.2185,-0.5721,-0.7071,-0.4156,-0.4156,-0.7071,-0.5721,-0.2185,-0.7071,-0.6725,0.0,-0.7071,-0.7071,0.2185,-0.7071,-0.6725,0.4156,-0.7071,-0.5721,0.5721,-0.7071,-0.4156,0.6725,-0.7071,-0.2185,0.7071,-0.7071,0.0,0.6725,-0.7071,0.2185,0.7694,-0.5878,0.25,0.6545,-0.5878,0.4755,0.4755,-0.5878,0.6545,0.25,-0.5878,0.7694,0.0,-0.5878,0.809,-0.25,-0.5878,0.7694,-0.4755,-0.5878,0.6545,-0.6545,-0.5878,0.4755,-0.7694,-0.5878,0.25,-0.809,-0.5878,0.0,-0.7694,-0.5878,-0.25,-0.6545,-0.5878,-0.4755,-0.4755,-0.5878,-0.6545,-0.25,-0.5878,-0.7694,0.0,-0.5878,-0.809,0.25,-0.5878,-0.7694,0.4755,-0.5878,-0.6545,0.6545,-0.5878,-0.4755,0.7694,-0.5878,-0.25,0.809,-0.5878,0.0,0.7694,-0.5878,0.25,0.8474,-0.454,0.2753,0.7208,-0.454,0.5237,0.5237,-0.454,0.7208,0.2753,-0.454,0.8474,0.0,-0.454,0.891,-0.2753,-0.454,0.8474,-0.5237,-0.454,0.7208,-0.7208,-0.454,0.5237,-0.8474,-0.454,0.2753,-0.891,-0.454,0.0,-0.8474,-0.454,-0.2753,-0.7208,-0.454,-0.5237,-0.5237,-0.454,-0.7208,-0.2753,-0.454,-0.8474,0.0,-0.454,-0.891,0.2753,-0.454,-0.8474,0.5237,-0.454,-0.7208,0.7208,-0.454,-0.5237,0.8474,-0.454,-0.2753,0.891,-0.454,0.0,0.8474,-0.454,0.2753,0.9045,-0.309,0.2939,0.7694,-0.309,0.559,0.559,-0.309,0.7694,0.2939,-0.309,0.9045,0.0,-0.309,0.9511,-0.2939,-0.309,0.9045,-0.559,-0.309,0.7694,-0.7694,-0.309,0.559,-0.9045,-0.309,0.2939,-0.9511,-0.309,0.0,-0.9045,-0.309,-0.2939,-0.7694,-0.309,-0.559,-0.559,-0.309,-0.7694,-0.2939,-0.309,-0.9045,0.0,-0.309,-0.9511,0.2939,-0.309,-0.9045,0.559,-0.309,-0.7694,0.7694,-0.309,-0.559,0.9045,-0.309,-0.2939,0.9511,-0.309,0.0,0.9045,-0.309,0.2939,0.9393,-0.1564,0.3052,0.7991,-0.1564,0.5805,0.5805,-0.1564,0.7991,0.3052,-0.1564,0.9393,0.0,-0.1564,0.9877,-0.3052,-0.1564,0.9393,-0.5805,-0.1564,0.7991,-0.7991,-0.1564,0.5805,-0.9393,-0.1564,0.3052,-0.9877,-0.1564,0.0,-0.9393,-0.1564,-0.3052,-0.7991,-0.1564,-0.5805,-0.5805,-0.1564,-0.7991,-0.3052,-0.1564,-0.9393,0.0,-0.1564,-0.9877,0.3052,-0.1564,-0.9393,0.5805,-0.1564,-0.7991,0.7991,-0.1564,-0.5805,0.9393,-0.1564,-0.3052,0.9877,-0.1564,0.0,0.9393,-0.1564,0.3052,0.9511,0.0,0.309,0.809,0.0,0.5878,0.5878,0.0,0.809,0.309,0.0,0.9511,0.0,0.0,1.0,-0.309,0.0,0.9511,-0.5878,0.0,0.809,-0.809,0.0,0.5878,-0.9511,0.0,0.309,-1.0,0.0,0.0,-0.9511,0.0,-0.309,-0.809,0.0,-0.5878,-0.5878,0.0,-0.809,-0.309,0.0,-0.9511,0.0,0.0,-1.0,0.309,0.0,-0.9511,0.5878,0.0,-0.809,0.809,0.0,-0.5878,0.9511,0.0,-0.309,1.0,0.0,0.0,0.9511,0.0,0.309,0.9393,0.1564,0.3052,0.7991,0.1564,0.5805,0.5805,0.1564,0.7991,0.3052,0.1564,0.9393,0.0,0.1564,0.9877,-0.3052,0.1564,0.9393,-0.5805,0.1564,0.7991,-0.7991,0.1564,0.5805,-0.9393,0.1564,0.3052,-0.9877,0.1564,0.0,-0.9393,0.1564,-0.3052,-0.7991,0.1564,-0.5805,-0.5805,0.1564,-0.7991,-0.3052,0.1564,-0.9393,0.0,0.1564,-0.9877,0.3052,0.1564,-0.9393,0.5805,0.1564,-0.7991,0.7991,0.1564,-0.5805,0.9393,0.1564,-0.3052,0.9877,0.1564,0.0,0.9393,0.1564,0.3052,0.9045,0.309,0.2939,0.7694,0.309,0.559,0.559,0.309,0.7694,0.2939,0.309,0.9045,0.0,0.309,0.9511,-0.2939,0.309,0.9045,-0.559,0.309,0.7694,-0.7694,0.309,0.559,-0.9045,0.309,0.2939,-0.9511,0.309,0.0,-0.9045,0.309,-0.2939,-0.7694,0.309,-0.559,-0.559,0.309,-0.7694,-0.2939,0.309,-0.9045,0.0,0.309,-0.9511,0.2939,0.309,-0.9045,0.559,0.309,-0.7694,0.7694,0.309,-0.559,0.9045,0.309,-0.2939,0.9511,0.309,0.0,0.9045,0.309,0.2939,0.8474,0.454,0.2753,0.7208,0.454,0.5237,0.5237,0.454,0.7208,0.2753,0.454,0.8474,0.0,0.454,0.891,-0.2753,0.454,0.8474,-0.5237,0.454,0.7208,-0.7208,0.454,0.5237,-0.8474,0.454,0.2753,-0.891,0.454,0.0,-0.8474,0.454,-0.2753,-0.7208,0.454,-0.5237,-0.5237,0.454,-0.7208,-0.2753,0.454,-0.8474,0.0,0.454,-0.891,0.2753,0.454,-0.8474,0.5237,0.454,-0.7208,0.7208,0.454,-0.5237,0.8474,0.454,-0.2753,0.891,0.454,0.0,0.8474,0.454,0.2753,0.7694,0.5878,0.25,0.6545,0.5878,0.4755,0.4755,0.5878,0.6545,0.25,0.5878,0.7694,0.0,0.5878,0.809,-0.25,0.5878,0.7694,-0.4755,0.5878,0.6545,-0.6545,0.5878,0.4755,-0.7694,0.5878,0.25,-0.809,0.5878,0.0,-0.7694,0.5878,-0.25,-0.6545,0.5878,-0.4755,-0.4755,0.5878,-0.6545,-0.25,0.5878,-0.7694,0.0,0.5878,-0.809,0.25,0.5878,-0.7694,0.4755,0.5878,-0.6545,0.6545,0.5878,-0.4755,0.7694,0.5878,-0.25,0.809,0.5878,0.0,0.7694,0.5878,0.25,0.6725,0.7071,0.2185,0.5721,0.7071,0.4156,0.4156,0.7071,0.5721,0.2185,0.7071,0.6725,0.0,0.7071,0.7071,-0.2185,0.7071,0.6725,-0.4156,0.7071,0.5721,-0.5721,0.7071,0.4156,-0.6725,0.7071,0.2185,-0.7071,0.7071,0.0,-0.6725,0.7071,-0.2185,-0.5721,0.7071,-0.4156,-0.4156,0.7071,-0.5721,-0.2185,0.7071,-0.6725,0.0,0.7071,-0.7071,0.2185,0.7071,-0.6725,0.4156,0.7071,-0.5721,0.5721,0.7071,-0.4156,0.6725,0.7071,-0.2185,0.7071,0.7071,0.0,0.6725,0.7071,0.2185,0.559,0.809,0.1816,0.4755,0.809,0.3455,0.3455,0.809,0.4755,0.1816,0.809,0.559,0.0,0.809,0.5878,-0.1816,0.809,0.559,-0.3455,0.809,0.4755,-0.4755,0.809,0.3455,-0.559,0.809,0.1816,-0.5878,0.809,0.0,-0.559,0.809,-0.1816,-0.4755,0.809,-0.3455,-0.3455,0.809,-0.4755,-0.1816,0.809,-0.559,0.0,0.809,-0.5878,0.1816,0.809,-0.559,0.3455,0.809,-0.4755,0.4755,0.809,-0.3455,0.559,0.809,-0.1816,0.5878,0.809,0.0,0.559,0.809,0.1816,0.4318,0.891,0.1403,0.3673,0.891,0.2668,0.2668,0.891,0.3673,0.1403,0.891,0.4318,0.0,0.891,0.454,-0.1403,0.891,0.4318,-0.2668,0.891,0.3673,-0.3673,0.891,0.2668,-0.4318,0.891,0.1403,-0.454,0.891,0.0,-0.4318,0.891,-0.1403,-0.3673,0.891,-0.2668,-0.2668,0.891,-0.3673,-0.1403,0.891,-0.4318,0.0,0.891,-0.454,0.1403,0.891,-0.4318,0.2668,0.891,-0.3673,0.3673,0.891,-0.2668,0.4318,0.891,-0.1403,0.454,0.891,0.0,0.4318,0.891,0.1403,0.2939,0.9511,0.0955,0.25,0.9511,0.1816,0.1816,0.9511,0.25,0.0955,0.9511,0.2939,0.0,0.9511,0.309,-0.0955,0.9511,0.2939,-0.1816,0.9511,0.25,-0.25,0.9511,0.1816,-0.2939,0.9511,0.0955,-0.309,0.9511,0.0,-0.2939,0.9511,-0.0955,-0.25,0.9511,-0.1816,-0.1816,0.9511,-0.25,-0.0955,0.9511,-0.2939,0.0,0.9511,-0.309,0.0955,0.9511,-0.2939,0.1816,0.9511,-0.25,0.25,0.9511,-0.1816,0.2939,0.9511,-0.0955,0.309,0.9511,0.0,0.2939,0.9511,0.0955,0.1488,0.9877,0.0483,0.1266,0.9877,0.0919,0.0919,0.9877,0.1266,0.0483,0.9877,0.1488,0.0,0.9877,0.1564,-0.0483,0.9877,0.1488,-0.0919,0.9877,0.1266,-0.1266,0.9877,0.0919,-0.1488,0.9877,0.0483,-0.1564,0.9877,0.0,-0.1488,0.9877,-0.0483,-0.1266,0.9877,-0.0919,-0.0919,0.9877,-0.1266,-0.0483,0.9877,-0.1488,0.0,0.9877,-0.1564,0.0483,0.9877,-0.1488,0.0919,0.9877,-0.1266,0.1266,0.9877,-0.0919,0.1488,0.9877,-0.0483,0.1564,0.9877,0.0,0.1488,0.9877,0.0483,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0],"normals":[0.1906,-0.9797,0.0619,0.1621,-0.9797,0.1178,0.3173,-0.9427,0.1031,0.2699,-0.9427,0.1961,0.1178,-0.9797,0.1621,0.1961,-0.9427,0.2699,0.0619,-0.9797,0.1906,0.1031,-0.9427,0.3173,0.0,-0.9797,0.2004,0.0,-0.9427,0.3336,-0.0619,-0.9797,0.1906,-0.1031,-0.9427,0.3173,-0.1178,-0.9797,0.1621,-0.1961,-0.9427,0.2699,-0.1621,-0.9797,0.1178,-0.2699,-0.9427,0.1961,-0.1906,-0.9797,0.0619,-0.3173,-0.9427,0.1031,-0.2004,-0.9797,0.0,-0.3336,-0.9427,0.0,-0.1906,-0.9797,-0.0619,-0.3173,-0.9427,-0.1031,-0.1621,-0.9797,-0.1178,-0.2699,-0.9427,-0.1961,-0.1178,-0.9797,-0.1621,-0.1961,-0.9427,-0.2699,-0.0619,-0.9797,-0.1906,-0.1031,-0.9427,-0.3173,0.0,-0.9797,-0.2004,0.0,-0.9427,-0.3336,0.0619,-0.9797,-0.1906,0.1031,-0.9427,-0.3173,0.1178,-0.9797,-0.1621,0.1961,-0.9427,-0.2699,0.1621,-0.9797,-0.1178,0.2699,-0.9427,-0.1961,0.1906,-0.9797,-0.0619,0.3173,-0.9427,-0.1031,0.2004,-0.9797,0.0,0.3336,-0.9427,0.0,0.1906,-0.9797,0.0619,0.3173,-0.9427,0.1031,0.4477,-0.8823,0.1455,0.3808,-0.8823,0.2767,0.2767,-0.8823,0.3808,0.1455,-0.8823,0.4477,0.0,-0.8823,0.4708,-0.1455,-0.8823,0.4477,-0.2767,-0.8823,0.3808,-0.3808,-0.8823,0.2767,-0.4477,-0.8823,0.1455,-0.4708,-0.8823,0.0,-0.4477,-0.8823,-0.1455,-0.3808,-0.8823,-0.2767,-0.2767,-0.8823,-0.3808,-0.1455,-0.8823,-0.4477,0.0,-0.8823,-0.4708,0.1455,-0.8823,-0.4477,0.2767,-0.8823,-0.3808,0.3808,-0.8823,-0.2767,0.4477,-0.8823,-0.1455,0.4708,-0.8823,0.0,0.4477,-0.8823,0.1455,0.5703,-0.8003,0.1853,0.4851,-0.8003,0.3525,0.3525,-0.8003,0.4851,0.1853,-0.8003,0.5703,0.0,-0.8003,0.5997,-0.1853,-0.8003,0.5703,-0.3525,-0.8003,0.4851,-0.4851,-0.8003,0.3525,-0.5703,-0.8003,0.1853,-0.5997,-0.8003,0.0,-0.5703,-0.8003,-0.1853,-0.4851,-0.8003,-0.3525,-0.3525,-0.8003,-0.4851,-0.1853,-0.8003,-0.5703,0.0,-0.8003,-0.5997,0.1853,-0.8003,-0.5703,0.3525,-0.8003,-0.4851,0.4851,-0.8003,-0.3525,0.5703,-0.8003,-0.1853,0.5997,-0.8003,0.0,0.5703,-0.8003,0.1853,0.6803,-0.6988,0.221,0.5787,-0.6988,0.4205,0.4205,-0.6988,0.5787,0.221,-0.6988,0.6803,0.0,-0.6988,0.7153,-0.221,-0.6988,0.6803,-0.4205,-0.6988,0.5787,-0.5787,-0.6988,0.4205,-0.6803,-0.6988,0.221,-0.7153,-0.6988,0.0,-0.6803,-0.6988,-0.221,-0.5787,-0.6988,-0.4205,-0.4205,-0.6988,-0.5787,-0.221,-0.6988,-0.6803,0.0,-0.6988,-0.7153,0.221,-0.6988,-0.6803,0.4205,-0.6988,-0.5787,0.5787,-0.6988,-0.4205,0.6803,-0.6988,-0.221,0.7153,-0.6988,0.0,0.6803,-0.6988,0.221,0.7745,-0.5804,0.2516,0.6588,-0.5804,0.4787,0.4787,-0.5804,0.6588,0.2516,-0.5804,0.7745,0.0,-0.5804,0.8143,-0.2516,-0.5804,0.7745,-0.4787,-0.5804,0.6588,-0.6588,-0.5804,0.4787,-0.7745,-0.5804,0.2516,-0.8143,-0.5804,0.0,-0.7745,-0.5804,-0.2516,-0.6588,-0.5804,-0.4787,-0.4787,-0.5804,-0.6588,-0.2516,-0.5804,-0.7745,0.0,-0.5804,-0.8143,0.2516,-0.5804,-0.7745,0.4787,-0.5804,-0.6588,0.6588,-0.5804,-0.4787,0.7745,-0.5804,-0.2516,0.8143,-0.5804,0.0,0.7745,-0.5804,0.2516,0.8503,-0.448,0.2763,0.7233,-0.448,0.5255,0.5255,-0.448,0.7233,0.2763,-0.448,0.8503,0.0,-0.448,0.894,-0.2763,-0.448,0.8503,-0.5255,-0.448,0.7233,-0.7233,-0.448,0.5255,-0.8503,-0.448,0.2763,-0.894,-0.448,0.0,-0.8503,-0.448,-0.2763,-0.7233,-0.448,-0.5255,-0.5255,-0.448,-0.7233,-0.2763,-0.448,-0.8503,0.0,-0.448,-0.894,0.2763,-0.448,-0.8503,0.5255,-0.448,-0.7233,0.7233,-0.448,-0.5255,0.8503,-0.448,-0.2763,0.894,-0.448,0.0,0.8503,-0.448,0.2763,0.9058,-0.3048,0.2943,0.7705,-0.3048,0.5598,0.5598,-0.3048,0.7705,0.2943,-0.3048,0.9058,0.0,-0.3048,0.9524,-0.2943,-0.3048,0.9058,-0.5598,-0.3048,0.7705,-0.7705,-0.3048,0.5598,-0.9058,-0.3048,0.2943,-0.9524,-0.3048,0.0,-0.9058,-0.3048,-0.2943,-0.7705,-0.3048,-0.5598,-0.5598,-0.3048,-0.7705,-0.2943,-0.3048,-0.9058,0.0,-0.3048,-0.9524,0.2943,-0.3048,-0.9058,0.5598,-0.3048,-0.7705,0.7705,-0.3048,-0.5598,0.9058,-0.3048,-0.2943,0.9524,-0.3048,0.0,0.9058,-0.3048,0.2943,0.9397,-0.1542,0.3053,0.7993,-0.1542,0.5808,0.5808,-0.1542,0.7993,0.3053,-0.1542,0.9397,0.0,-0.1542,0.988,-0.3053,-0.1542,0.9397,-0.5808,-0.1542,0.7993,-0.7993,-0.1542,0.5808,-0.9397,-0.1542,0.3053,-0.988,-0.1542,0.0,-0.9397,-0.1542,-0.3053,-0.7993,-0.1542,-0.5808,-0.5808,-0.1542,-0.7993,-0.3053,-0.1542,-0.9397,0.0,-0.1542,-0.988,0.3053,-0.1542,-0.9397,0.5808,-0.1542,-0.7993,0.7993,-0.1542,-0.5808,0.9397,-0.1542,-0.3053,0.988,-0.1542,0.0,0.9397,-0.1542,0.3053,0.9511,0.0,0.309,0.809,0.0,0.5878,0.5878,0.0,0.809,0.309,0.0,0.9511,0.0,0.0,1.0,-0.309,0.0,0.9511,-0.5878,0.0,0.809,-0.809,0.0,0.5878,-0.9511,0.0,0.309,-1.0,0.0,0.0,-0.9511,0.0,-0.309,-0.809,0.0,-0.5878,-0.5878,0.0,-0.809,-0.309,0.0,-0.9511,0.0,0.0,-1.0,0.309,0.0,-0.9511,0.5878,0.0,-0.809,0.809,0.0,-0.5878,0.9511,0.0,-0.309,1.0,0.0,0.0,0.9511,0.0,0.309,0.9397,0.1542,0.3053,0.7993,0.1542,0.5808,0.5808,0.1542,0.7993,0.3053,0.1542,0.9397,0.0,0.1542,0.988,-0.3053,0.1542,0.9397,-0.5808,0.1542,0.7993,-0.7993,0.1542,0.5808,-0.9397,0.1542,0.3053,-0.988,0.1542,0.0,-0.9397,0.1542,-0.3053,-0.7993,0.1542,-0.5808,-0.5808,0.1542,-0.7993,-0.3053,0.1542,-0.9397,0.0,0.1542,-0.988,0.3053,0.1542,-0.9397,0.5808,0.1542,-0.7993,0.7993,0.1542,-0.5808,0.9397,0.1542,-0.3053,0.988,0.1542,0.0,0.9397,0.1542,0.3053,0.9058,0.3048,0.2943,0.7705,0.3048,0.5598,0.5598,0.3048,0.7705,0.2943,0.3048,0.9058,0.0,0.3048,0.9524,-0.2943,0.3048,0.9058,-0.5598,0.3048,0.7705,-0.7705,0.3048,0.5598,-0.9058,0.3048,0.2943,-0.9524,0.3048,0.0,-0.9058,0.3048,-0.2943,-0.7705,0.3048,-0.5598,-0.5598,0.3048,-0.7705,-0.2943,0.3048,-0.9058,0.0,0.3048,-0.9524,0.2943,0.3048,-0.9058,0.5598,0.3048,-0.7705,0.7705,0.3048,-0.5598,0.9058,0.3048,-0.2943,0.9524,0.3048,0.0,0.9058,0.3048,0.2943,0.8503,0.448,0.2763,0.7233,0.448,0.5255,0.5255,0.448,0.7233,0.2763,0.448,0.8503,0.0,0.448,0.894,-0.2763,0.448,0.8503,-0.5255,0.448,0.7233,-0.7233,0.448,0.5255,-0.8503,0.448,0.2763,-0.894,0.448,0.0,-0.8503,0.448,-0.2763,-0.7233,0.448,-0.5255,-0.5255,0.448,-0.7233,-0.2763,0.448,-0.8503,0.0,0.448,-0.894,0.2763,0.448,-0.8503,0.5255,0.448,-0.7233,0.7233,0.448,-0.5255,0.8503,0.448,-0.2763,0.894,0.448,0.0,0.8503,0.448,0.2763,0.7745,0.5804,0.2516,0.6588,0.5804,0.4787,0.4787,0.5804,0.6588,0.2516,0.5804,0.7745,0.0,0.5804,0.8143,-0.2516,0.5804,0.7745,-0.4787,0.5804,0.6588,-0.6588,0.5804,0.4787,-0.7745,0.5804,0.2516,-0.8143,0.5804,0.0,-0.7745,0.5804,-0.2516,-0.6588,0.5804,-0.4787,-0.4787,0.5804,-0.6588,-0.2516,0.5804,-0.7745,0.0,0.5804,-0.8143,0.2516,0.5804,-0.7745,0.4787,0.5804,-0.6588,0.6588,0.5804,-0.4787,0.7745,0.5804,-0.2516,0.8143,0.5804,0.0,0.7745,0.5804,0.2516,0.6803,0.6988,0.221,0.5787,0.6988,0.4205,0.4205,0.6988,0.5787,0.221,0.6988,0.6803,0.0,0.6988,0.7153,-0.221,0.6988,0.6803,-0.4205,0.6988,0.5787,-0.5787,0.6988,0.4205,-0.6803,0.6988,0.221,-0.7153,0.6988,0.0,-0.6803,0.6988,-0.221,-0.5787,0.6988,-0.4205,-0.4205,0.6988,-0.5787,-0.221,0.6988,-0.6803,0.0,0.6988,-0.7153,0.221,0.6988,-0.6803,0.4205,0.6988,-0.5787,0.5787,0.6988,-0.4205,0.6803,0.6988,-0.221,0.7153,0.6988,0.0,0.6803,0.6988,0.221,0.5703,0.8003,0.1853,0.4851,0.8003,0.3525,0.3525,0.8003,0.4851,0.1853,0.8003,0.5703,0.0,0.8003,0.5997,-0.1853,0.8003,0.5703,-0.3525,0.8003,0.4851,-0.4851,0.8003,0.3525,-0.5703,0.8003,0.1853,-0.5997,0.8003,0.0,-0.5703,0.8003,-0.1853,-0.4851,0.8003,-0.3525,-0.3525,0.8003,-0.4851,-0.1853,0.8003,-0.5703,0.0,0.8003,-0.5997,0.1853,0.8003,-0.5703,0.3525,0.8003,-0.4851,0.4851,0.8003,-0.3525,0.5703,0.8003,-0.1853,0.5997,0.8003,0.0,0.5703,0.8003,0.1853,0.4477,0.8823,0.1455,0.3808,0.8823,0.2767,0.2767,0.8823,0.3808,0.1455,0.8823,0.4477,0.0,0.8823,0.4708,-0.1455,0.8823,0.4477,-0.2767,0.8823,0.3808,-0.3808,0.8823,0.2767,-0.4477,0.8823,0.1455,-0.4708,0.8823,0.0,-0.4477,0.8823,-0.1455,-0.3808,0.8823,-0.2767,-0.2767,0.8823,-0.3808,-0.1455,0.8823,-0.4477,0.0,0.8823,-0.4708,0.1455,0.8823,-0.4477,0.2767,0.8823,-0.3808,0.3808,0.8823,-0.2767,0.4477,0.8823,-0.1455,0.4708,0.8823,0.0,0.4477,0.8823,0.1455,0.3173,0.9427,0.1031,0.2699,0.9427,0.1961,0.1961,0.9427,0.2699,0.1031,0.9427,0.3173,0.0,0.9427,0.3336,-0.1031,0.9427,0.3173,-0.1961,0.9427,0.2699,-0.2699,0.9427,0.1961,-0.3173,0.9427,0.1031,-0.3336,0.9427,0.0,-0.3173,0.9427,-0.1031,-0.2699,0.9427,-0.1961,-0.1961,0.9427,-0.2699,-0.1031,0.9427,-0.3173,0.0,0.9427,-0.3336,0.1031,0.9427,-0.3173,0.1961,0.9427,-0.2699,0.2699,0.9427,-0.1961,0.3173,0.9427,-0.1031,0.3336,0.9427,0.0,0.3173,0.9427,0.1031,0.1906,0.9797,0.0619,0.1621,0.9797,0.1178,0.1178,0.9797,0.1621,0.0619,0.9797,0.1906,0.0,0.9797,0.2004,-0.0619,0.9797,0.1906,-0.1178,0.9797,0.1621,-0.1621,0.9797,0.1178,-0.1906,0.9797,0.0619,-0.2004,0.9797,0.0,-0.1906,0.9797,-0.0619,-0.1621,0.9797,-0.1178,-0.1178,0.9797,-0.1621,-0.0619,0.9797,-0.1906,0.0,0.9797,-0.2004,0.0619,0.9797,-0.1906,0.1178,0.9797,-0.1621,0.1621,0.9797,-0.1178,0.1906,0.9797,-0.0619,0.2004,0.9797,0.0,0.1906,0.9797,0.0619,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0],"tangents":[-0.4482,-0.0307,0.8934,-1.0,-0.5629,0.0062,0.8265,-1.0,-0.438,-0.0493,0.8976,-1.0,-0.5878,0.0,0.809,-1.0,-0.7908,0.0062,0.6121,-1.0,-0.809,0.0,0.5878,-1.0,-0.9412,0.0062,0.3378,-1.0,-0.9511,0.0,0.309,-1.0,-0.9995,0.0062,0.0304,-1.0,-1.0,0.0,0.0,-1.0,-0.96,0.0062,-0.28,-1.0,-0.9511,0.0,-0.309,-1.0,-0.8265,0.0062,-0.5629,-1.0,-0.809,0.0,-0.5878,-1.0,-0.6121,0.0062,-0.7908,-1.0,-0.5878,0.0,-0.809,-1.0,-0.3378,0.0062,-0.9412,-1.0,-0.309,0.0,-0.9511,-1.0,-0.0304,0.0062,-0.9995,-1.0,0.0,0.0,-1.0,-1.0,0.28,0.0062,-0.96,-1.0,0.309,0.0,-0.9511,-1.0,0.5629,0.0062,-0.8265,-1.0,0.5878,0.0,-0.809,-1.0,0.7908,0.0062,-0.6121,-1.0,0.809,0.0,-0.5878,-1.0,0.9412,0.0062,-0.3378,-1.0,0.9511,0.0,-0.309,-1.0,0.9995,0.0062,-0.0304,-1.0,1.0,0.0,0.0,-1.0,0.96,0.0062,0.28,-1.0,0.9511,0.0,0.309,-1.0,0.8265,0.0062,0.5629,-1.0,0.809,0.0,0.5878,-1.0,0.6121,0.0062,0.7908,-1.0,0.5878,0.0,0.809,-1.0,0.3378,0.0062,0.9412,-1.0,0.309,0.0,0.9511,-1.0,0.0304,0.0062,0.9995,-1.0,0.0,0.0,1.0,-1.0,-0.1625,0.0307,0.9862,-1.0,-0.1732,0.0493,0.9836,-1.0,-0.4222,-0.0651,0.9042,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.1899,0.0651,0.9796,-1.0,-0.4023,-0.0754,0.9124,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.2109,0.0754,0.9746,-1.0,-0.3802,-0.0787,0.9215,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.234,0.0787,0.969,-1.0,-0.3582,-0.0745,0.9306,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.2572,0.0745,0.9635,-1.0,-0.3384,-0.0633,0.9389,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.2781,0.0633,0.9585,-1.0,-0.3226,-0.0459,0.9454,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.2947,0.0459,0.9545,-1.0,-0.3125,-0.0241,0.9496,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.3053,0.0241,0.9519,-1.0,-0.309,0.0,0.9511,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.309,0.0,0.9511,-1.0,-0.3125,0.0241,0.9496,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.3053,-0.0241,0.9519,-1.0,-0.3226,0.0459,0.9454,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.2947,-0.0459,0.9545,-1.0,-0.3384,0.0633,0.9389,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.2781,-0.0633,0.9585,-1.0,-0.3582,0.0745,0.9306,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.2572,-0.0745,0.9635,-1.0,-0.3802,0.0787,0.9215,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.234,-0.0787,0.969,-1.0,-0.4023,0.0754,0.9124,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.2109,-0.0754,0.9746,-1.0,-0.4222,0.0651,0.9042,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.1899,-0.0651,0.9796,-1.0,-0.438,0.0493,0.8976,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.1732,-0.0493,0.9836,-1.0,-0.4482,0.0307,0.8934,-1.0,-0.6121,0.0062,0.7908,-1.0,-0.8265,0.0062,0.5629,-1.0,-0.96,0.0062,0.28,-1.0,-0.9995,0.0062,-0.0304,-1.0,-0.9412,0.0062,-0.3378,-1.0,-0.7908,0.0062,-0.6121,-1.0,-0.5629,0.0062,-0.8265,-1.0,-0.28,0.0062,-0.96,-1.0,0.0304,0.0062,-0.9995,-1.0,0.3378,0.0062,-0.9412,-1.0,0.6121,0.0062,-0.7908,-1.0,0.8265,0.0062,-0.5629,-1.0,0.96,0.0062,-0.28,-1.0,0.9995,0.0062,0.0304,-1.0,0.9412,0.0062,0.3378,-1.0,0.7908,0.0062,0.6121,-1.0,0.5629,0.0062,0.8265,-1.0,0.28,0.0062,0.96,-1.0,-0.0304,0.0062,0.9995,-1.0,-0.1625,-0.0307,0.9862,-1.0,-0.454,0.0,0.891,-1.0,-0.7071,0.0,0.7071,-1.0,-0.891,0.0,0.454,-1.0,-0.9877,0.0,0.1564,-1.0,-0.9877,0.0,-0.1564,-1.0,-0.891,0.0,-0.454,-1.0,-0.7071,0.0,-0.7071,-1.0,-0.454,0.0,-0.891,-1.0,-0.1564,0.0,-0.9877,-1.0,0.1564,0.0,-0.9877,-1.0,0.454,0.0,-0.891,-1.0,0.7071,0.0,-0.7071,-1.0,0.891,0.0,-0.454,-1.0,0.9877,0.0,-0.1564,-1.0,0.9877,0.0,0.1564,-1.0,0.891,0.0,0.454,-1.0,0.7071,0.0,0.7071,-1.0,0.454,0.0,0.891,-1.0,0.1564,0.0,0.9877,-1.0,-0.1564,0.0,0.9877,-1.0,-0.454,0.0,0.891,-1.0,-0.7071,0.0,0.7071,-1.0,-0.891,0.0,0.454,-1.0,-0.9877,0.0,0.1564,-1.0,-0.9877,0.0,-0.1564,-1.0,-0.891,0.0,-0.454,-1.0,-0.7071,0.0,-0.7071,-1.0,-0.454,0.0,-0.891,-1.0,-0.1564,0.0,-0.9877,-1.0,0.1564,0.0,-0.9877,-1.0,0.454,0.0,-0.891,-1.0,0.7071,0.0,-0.7071,-1.0,0.891,0.0,-0.454,-1.0,0.9877,0.0,-0.1564,-1.0,0.9877,0.0,0.1564,-1.0,0.891,0.0,0.454,-1.0,0.7071,0.0,0.7071,-1.0,0.454,0.0,0.891,-1.0,0.1564,0.0,0.9877,-1.0,-0.1564,0.0,0.9877,-1.0],"uvs":[0.0,0.05,0.05,0.05,0.0,0.1,0.05,0.1,0.1,0.05,0.1,0.1,0.15,0.05,0.15,0.1,0.2,0.05,0.2,0.1,0.25,0.05,0.25,0.1,0.3,0.05,0.3,0.1,0.35,0.05,0.35,0.1,0.4,0.05,0.4,0.1,0.45,0.05,0.45,0.1,0.5,0.05,0.5,0.1,0.55,0.05,0.55,0.1,0.6,0.05,0.6,0.1,0.65,0.05,0.65,0.1,0.7,0.05,0.7,0.1,0.75,0.05,0.75,0.1,0.8,0.05,0.8,0.1,0.85,0.05,0.85,0.1,0.9,0.05,0.9,0.1,0.95,0.05,0.95,0.1,1.0,0.05,1.0,0.1,0.0,0.15,0.05,0.15,0.1,0.15,0.15,0.15,0.2,0.15,0.25,0.15,0.3,0.15,0.35,0.15,0.4,0.15,0.45,0.15,0.5,0.15,0.55,0.15,0.6,0.15,0.65,0.15,0.7,0.15,0.75,0.15,0.8,0.15,0.85,0.15,0.9,0.15,0.95,0.15,1.0,0.15,0.0,0.2,0.05,0.2,0.1,0.2,0.15,0.2,0.2,0.2,0.25,0.2,0.3,0.2,0.35,0.2,0.4,0.2,0.45,0.2,0.5,0.2,0.55,0.2,0.6,0.2,0.65,0.2,0.7,0.2,0.75,0.2,0.8,0.2,0.85,0.2,0.9,0.2,0.95,0.2,1.0,0.2,0.0,0.25,0.05,0.25,0.1,0.25,0.15,0.25,0.2,0.25,0.25,0.25,0.3,0.25,0.35,0.25,0.4,0.25,0.45,0.25,0.5,0.25,0.55,0.25,0.6,0.25,0.65,0.25,0.7,0.25,0.75,0.25,0.8,0.25,0.85,0.25,0.9,0.25,0.95,0.25,1.0,0.25,0.0,0.3,0.05,0.3,0.1,0.3,0.15,0.3,0.2,0.3,0.25,0.3,0.3,0.3,0.35,0.3,0.4,0.3,0.45,0.3,0.5,0.3,0.55,0.3,0.6,0.3,0.65,0.3,0.7,0.3,0.75,0.3,0.8,0.3,0.85,0.3,0.9,0.3,0.95,0.3,1.0,0.3,0.0,0.35,0.05,0.35,0.1,0.35,0.15,0.35,0.2,0.35,0.25,0.35,0.3,0.35,0.35,0.35,0.4,0.35,0.45,0.35,0.5,0.35,0.55,0.35,0.6,0.35,0.65,0.35,0.7,0.35,0.75,0.35,0.8,0.35,0.85,0.35,0.9,0.35,0.95,0.35,1.0,0.35,0.0,0.4,0.05,0.4,0.1,0.4,0.15,0.4,0.2,0.4,0.25,0.4,0.3,0.4,0.35,0.4,0.4,0.4,0.45,0.4,0.5,0.4,0.55,0.4,0.6,0.4,0.65,0.4,0.7,0.4,0.75,0.4,0.8,0.4,0.85,0.4,0.9,0.4,0.95,0.4,1.0,0.4,0.0,0.45,0.05,0.45,0.1,0.45,0.15,0.45,0.2,0.45,0.25,0.45,0.3,0.45,0.35,0.45,0.4,0.45,0.45,0.45,0.5,0.45,0.55,0.45,0.6,0.45,0.65,0.45,0.7,0.45,0.75,0.45,0.8,0.45,0.85,0.45,0.9,0.45,0.95,0.45,1.0,0.45,0.0,0.5,0.05,0.5,0.1,0.5,0.15,0.5,0.2,0.5,0.25,0.5,0.3,0.5,0.35,0.5,0.4,0.5,0.45,0.5,0.5,0.5,0.55,0.5,0.6,0.5,0.65,0.5,0.7,0.5,0.75,0.5,0.8,0.5,0.85,0.5,0.9,0.5,0.95,0.5,1.0,0.5,0.0,0.55,0.05,0.55,0.1,0.55,0.15,0.55,0.2,0.55,0.25,0.55,0.3,0.55,0.35,0.55,0.4,0.55,0.45,0.55,0.5,0.55,0.55,0.55,0.6,0.55,0.65,0.55,0.7,0.55,0.75,0.55,0.8,0.55,0.85,0.55,0.9,0.55,0.95,0.55,1.0,0.55,0.0,0.6,0.05,0.6,0.1,0.6,0.15,0.6,0.2,0.6,0.25,0.6,0.3,0.6,0.35,0.6,0.4,0.6,0.45,0.6,0.5,0.6,0.55,0.6,0.6,0.6,0.65,0.6,0.7,0.6,0.75,0.6,0.8,0.6,0.85,0.6,0.9,0.6,0.95,0.6,1.0,0.6,0.0,0.65,0.05,0.65,0.1,0.65,0.15,0.65,0.2,0.65,0.25,0.65,0.3,0.65,0.35,0.65,0.4,0.65,0.45,0.65,0.5,0.65,0.55,0.65,0.6,0.65,0.65,0.65,0.7,0.65,0.75,0.65,0.8,0.65,0.85,0.65,0.9,0.65,0.95,0.65,1.0,0.65,0.0,0.7,0.05,0.7,0.1,0.7,0.15,0.7,0.2,0.7,0.25,0.7,0.3,0.7,0.35,0.7,0.4,0.7,0.45,0.7,0.5,0.7,0.55,0.7,0.6,0.7,0.65,0.7,0.7,0.7,0.75,0.7,0.8,0.7,0.85,0.7,0.9,0.7,0.95,0.7,1.0,0.7,0.0,0.75,0.05,0.75,0.1,0.75,0.15,0.75,0.2,0.75,0.25,0.75,0.3,0.75,0.35,0.75,0.4,0.75,0.45,0.75,0.5,0.75,0.55,0.75,0.6,0.75,0.65,0.75,0.7,0.75,0.75,0.75,0.8,0.75,0.85,0.75,0.9,0.75,0.95,0.75,1.0,0.75,0.0,0.8,0.05,0.8,0.1,0.8,0.15,0.8,0.2,0.8,0.25,0.8,0.3,0.8,0.35,0.8,0.4,0.8,0.45,0.8,0.5,0.8,0.55,0.8,0.6,0.8,0.65,0.8,0.7,0.8,0.75,0.8,0.8,0.8,0.85,0.8,0.9,0.8,0.95,0.8,1.0,0.8,0.0,0.85,0.05,0.85,0.1,0.85,0.15,0.85,0.2,0.85,0.25,0.85,0.3,0.85,0.35,0.85,0.4,0.85,0.45,0.85,0.5,0.85,0.55,0.85,0.6,0.85,0.65,0.85,0.7,0.85,0.75,0.85,0.8,0.85,0.85,0.85,0.9,0.85,0.95,0.85,1.0,0.85,0.0,0.9,0.05,0.9,0.1,0.9,0.15,0.9,0.2,0.9,0.25,0.9,0.3,0.9,0.35,0.9,0.4,0.9,0.45,0.9,0.5,0.9,0.55,0.9,0.6,0.9,0.65,0.9,0.7,0.9,0.75,0.9,0.8,0.9,0.85,0.9,0.9,0.9,0.95,0.9,1.0,0.9,0.0,0.95,0.05,0.95,0.1,0.95,0.15,0.95,0.2,0.95,0.25,0.95,0.3,0.95,0.35,0.95,0.4,0.95,0.45,0.95,0.5,0.95,0.55,0.95,0.6,0.95,0.65,0.95,0.7,0.95,0.75,0.95,0.8,0.95,0.85,0.95,0.9,0.95,0.95,0.95,1.0,0.95,0.025,0.0,0.075,0.0,0.125,0.0,0.175,0.0,0.225,0.0,0.275,0.0,0.325,0.0,0.375,0.0,0.425,0.0,0.475,0.0,0.525,0.0,0.575,0.0,0.625,0.0,0.675,0.0,0.725,0.0,0.775,0.0,0.825,0.0,0.875,0.0,0.925,0.0,0.975,0.0,0.025,1.0,0.075,1.0,0.125,1.0,0.175,1.0,0.225,1.0,0.275,1.0,0.325,1.0,0.375,1.0,0.425,1.0,0.475,1.0,0.525,1.0,0.575,1.0,0.625,1.0,0.675,1.0,0.725,1.0,0.775,1.0,0.825,1.0,0.875,1.0,0.925,1.0,0.975,1.0],"uvs2":null,"colors":null,"hasVertexAlpha":false,"matricesIndices":null,"matricesWeights":null,"matricesIndicesExtra":null,"matricesWeightsExtra":null,"indices":[0,1,2,2,1,3,1,4,3,3,4,5,4,6,5,5,6,7,6,8,7,7,8,9,8,10,9,9,10,11,10,12,11,11,12,13,12,14,13,13,14,15,14,16,15,15,16,17,16,18,17,17,18,19,18,20,19,19,20,21,20,22,21,21,22,23,22,24,23,23,24,25,24,26,25,25,26,27,26,28,27,27,28,29,28,30,29,29,30,31,30,32,31,31,32,33,32,34,33,33,34,35,34,36,35,35,36,37,36,38,37,37,38,39,38,40,39,39,40,41,2,3,42,42,3,43,3,5,43,43,5,44,5,7,44,44,7,45,7,9,45,45,9,46,9,11,46,46,11,47,11,13,47,47,13,48,13,15,48,48,15,49,15,17,49,49,17,50,17,19,50,50,19,51,19,21,51,51,21,52,21,23,52,52,23,53,23,25,53,53,25,54,25,27,54,54,27,55,27,29,55,55,29,56,29,31,56,56,31,57,31,33,57,57,33,58,33,35,58,58,35,59,35,37,59,59,37,60,37,39,60,60,39,61,39,41,61,61,41,62,42,43,63,63,43,64,43,44,64,64,44,65,44,45,65,65,45,66,45,46,66,66,46,67,46,47,67,67,47,68,47,48,68,68,48,69,48,49,69,69,49,70,49,50,70,70,50,71,50,51,71,71,51,72,51,52,72,72,52,73,52,53,73,73,53,74,53,54,74,74,54,75,54,55,75,75,55,76,55,56,76,76,56,77,56,57,77,77,57,78,57,58,78,78,58,79,58,59,79,79,59,80,59,60,80,80,60,81,60,61,81,81,61,82,61,62,82,82,62,83,63,64,84,84,64,85,64,65,85,85,65,86,65,66,86,86,66,87,66,67,87,87,67,88,67,68,88,88,68,89,68,69,89,89,69,90,69,70,90,90,70,91,70,71,91,91,71,92,71,72,92,92,72,93,72,73,93,93,73,94,73,74,94,94,74,95,74,75,95,95,75,96,75,76,96,96,76,97,76,77,97,97,77,98,77,78,98,98,78,99,78,79,99,99,79,100,79,80,100,100,80,101,80,81,101,101,81,102,81,82,102,102,82,103,82,83,103,103,83,104,84,85,105,105,85,106,85,86,106,106,86,107,86,87,107,107,87,108,87,88,108,108,88,109,88,89,109,109,89,110,89,90,110,110,90,111,90,91,111,111,91,112,91,92,112,112,92,113,92,93,113,113,93,114,93,94,114,114,94,115,94,95,115,115,95,116,95,96,116,116,96,117,96,97,117,117,97,118,97,98,118,118,98,119,98,99,119,119,99,120,99,100,120,120,100,121,100,101,121,121,101,122,101,102,122,122,102,123,102,103,123,123,103,124,103,104,124,124,104,125,105,106,126,126,106,127,106,107,127,127,107,128,107,108,128,128,108,129,108,109,129,129,109,130,109,110,130,130,110,131,110,111,131,131,111,132,111,112,132,132,112,133,112,113,133,133,113,134,113,114,134,134,114,135,114,115,135,135,115,136,115,116,136,136,116,137,116,117,137,137,117,138,117,118,138,138,118,139,118,119,139,139,119,140,119,120,140,140,120,141,120,121,141,141,121,142,121,122,142,142,122,143,122,123,143,143,123,144,123,124,144,144,124,145,124,125,145,145,125,146,126,127,147,147,127,148,127,128,148,148,128,149,128,129,149,149,129,150,129,130,150,150,130,151,130,131,151,151,131,152,131,132,152,152,132,153,132,133,153,153,133,154,133,134,154,154,134,155,134,135,155,155,135,156,135,136,156,156,136,157,136,137,157,157,137,158,137,138,158,158,138,159,138,139,159,159,139,160,139,140,160,160,140,161,140,141,161,161,141,162,141,142,162,162,142,163,142,143,163,163,143,164,143,144,164,164,144,165,144,145,165,165,145,166,145,146,166,166,146,167,147,148,168,168,148,169,148,149,169,169,149,170,149,150,170,170,150,171,150,151,171,171,151,172,151,152,172,172,152,173,152,153,173,173,153,174,153,154,174,174,154,175,154,155,175,175,155,176,155,156,176,176,156,177,156,157,177,177,157,178,157,158,178,178,158,179,158,159,179,179,159,180,159,160,180,180,160,181,160,161,181,181,161,182,161,162,182,182,162,183,162,163,183,183,163,184,163,164,184,184,164,185,164,165,185,185,165,186,165,166,186,186,166,187,166,167,187,187,167,188,168,169,189,189,169,190,169,170,190,190,170,191,170,171,191,191,171,192,171,172,192,192,172,193,172,173,193,193,173,194,173,174,194,194,174,195,174,175,195,195,175,196,175,176,196,196,176,197,176,177,197,197,177,198,177,178,198,198,178,199,178,179,199,199,179,200,179,180,200,200,180,201,180,181,201,201,181,202,181,182,202,202,182,203,182,183,203,203,183,204,183,184,204,204,184,205,184,185,205,205,185,206,185,186,206,206,186,207,186,187,207,207,187,208,187,188,208,208,188,209,189,190,210,210,190,211,190,191,211,211,191,212,191,192,212,212,192,213,192,193,213,213,193,214,193,194,214,214,194,215,194,195,215,215,195,216,195,196,216,216,196,217,196,197,217,217,197,218,197,198,218,218,198,219,198,199,219,219,199,220,199,200,220,220,200,221,200,201,221,221,201,222,201,202,222,222,202,223,202,203,223,223,203,224,203,204,224,224,204,225,204,205,225,225,205,226,205,206,226,226,206,227,206,207,227,227,207,228,207,208,228,228,208,229,208,209,229,229,209,230,210,211,231,231,211,232,211,212,232,232,212,233,212,213,233,233,213,234,213,214,234,234,214,235,214,215,235,235,215,236,215,216,236,236,216,237,216,217,237,237,217,238,217,218,238,238,218,239,218,219,239,239,219,240,219,220,240,240,220,241,220,221,241,241,221,242,221,222,242,242,222,243,222,223,243,243,223,244,223,224,244,244,224,245,224,225,245,245,225,246,225,226,246,246,226,247,226,227,247,247,227,248,227,228,248,248,228,249,228,229,249,249,229,250,229,230,250,250,230,251,231,232,252,252,232,253,232,233,253,253,233,254,233,234,254,254,234,255,234,235,255,255,235,256,235,236,256,256,236,257,236,237,257,257,237,258,237,238,258,258,238,259,238,239,259,259,239,260,239,240,260,260,240,261,240,241,261,261,241,262,241,242,262,262,242,263,242,243,263,263,243,264,243,244,264,264,244,265,244,245,265,265,245,266,245,246,266,266,246,267,246,247,267,267,247,268,247,248,268,268,248,269,248,249,269,269,249,270,249,250,270,270,250,271,250,251,271,271,251,272,252,253,273,273,253,274,253,254,274,274,254,275,254,255,275,275,255,276,255,256,276,276,256,277,256,257,277,277,257,278,257,258,278,278,258,279,258,259,279,279,259,280,259,260,280,280,260,281,260,261,281,281,261,282,261,262,282,282,262,283,262,263,283,283,263,284,263,264,284,284,264,285,264,265,285,285,265,286,265,266,286,286,266,287,266,267,287,287,267,288,267,268,288,288,268,289,268,269,289,289,269,290,269,270,290,290,270,291,270,271,291,291,271,292,271,272,292,292,272,293,273,274,294,294,274,295,274,275,295,295,275,296,275,276,296,296,276,297,276,277,297,297,277,298,277,278,298,298,278,299,278,279,299,299,279,300,279,280,300,300,280,301,280,281,301,301,281,302,281,282,302,302,282,303,282,283,303,303,283,304,283,284,304,304,284,305,284,285,305,305,285,306,285,286,306,306,286,307,286,287,307,307,287,308,287,288,308,308,288,309,288,289,309,309,289,310,289,290,310,310,290,311,290,291,311,311,291,312,291,292,312,312,292,313,292,293,313,313,293,314,294,295,315,315,295,316,295,296,316,316,296,317,296,297,317,317,297,318,297,298,318,318,298,319,298,299,319,319,299,320,299,300,320,320,300,321,300,301,321,321,301,322,301,302,322,322,302,323,302,303,323,323,303,324,303,304,324,324,304,325,304,305,325,325,305,326,305,306,326,326,306,327,306,307,327,327,307,328,307,308,328,328,308,329,308,309,329,329,309,330,309,310,330,330,310,331,310,311,331,331,311,332,311,312,332,332,312,333,312,313,333,333,313,334,313,314,334,334,314,335,315,316,336,336,316,337,316,317,337,337,317,338,317,318,338,338,318,339,318,319,339,339,319,340,319,320,340,340,320,341,320,321,341,341,321,342,321,322,342,342,322,343,322,323,343,343,323,344,323,324,344,344,324,345,324,325,345,345,325,346,325,326,346,346,326,347,326,327,347,347,327,348,327,328,348,348,328,349,328,329,349,349,329,350,329,330,350,350,330,351,330,331,351,351,331,352,331,332,352,352,332,353,332,333,353,353,333,354,333,334,354,354,334,355,334,335,355,355,335,356,336,337,357,357,337,358,337,338,358,358,338,359,338,339,359,359,339,360,339,340,360,360,340,361,340,341,361,361,341,362,341,342,362,362,342,363,342,343,363,363,343,364,343,344,364,364,344,365,344,345,365,365,345,366,345,346,366,366,346,367,346,347,367,367,347,368,347,348,368,368,348,369,348,349,369,369,349,370,349,350,370,370,350,371,350,351,371,371,351,372,351,352,372,372,352,373,352,353,373,373,353,374,353,354,374,374,354,375,354,355,375,375,355,376,355,356,376,376,356,377,357,358,378,378,358,379,358,359,379,379,359,380,359,360,380,380,360,381,360,361,381,381,361,382,361,362,382,382,362,383,362,363,383,383,363,384,363,364,384,384,364,385,364,365,385,385,365,386,365,366,386,386,366,387,366,367,387,387,367,388,367,368,388,388,368,389,368,369,389,389,369,390,369,370,390,390,370,391,370,371,391,391,371,392,371,372,392,392,372,393,372,373,393,393,373,394,373,374,394,394,374,395,374,375,395,395,375,396,375,376,396,396,376,397,376,377,397,397,377,398,1,0,399,4,1,400,6,4,401,8,6,402,10,8,403,12,10,404,14,12,405,16,14,406,18,16,407,20,18,408,22,20,409,24,22,410,26,24,411,28,26,412,30,28,413,32,30,414,34,32,415,36,34,416,38,36,417,40,38,418,378,379,419,379,380,420,380,381,421,381,382,422,382,383,423,383,384,424,384,385,425,385,386,426,386,387,427,387,388,428,388,389,429,389,390,430,390,391,431,391,392,432,392,393,433,393,394,434,394,395,435,395,396,436,396,397,437,397,398,438],"receiveShadows":false,"infiniteDistance":false,"billboardMode":0,"visibility":1.0,"subMeshes":[{"materialIndex":0,"verticesStart":0,"verticesCount":439,"indexStart":0,"indexCount":2280}],"instances":null,"skeletonId":-1,"numBoneInfluencers":4,"applyFog":false,"lodMeshIds":null,"lodDistances":null,"lodCoverages":null,"rotation":null,"scaling":[1.0,1.0,1.0],"rotationQuaternion":[0.0,0.1736,0.0,0.9848],"actions":null,"checkCollisions":false,"pickable":true,"showBoundingBox":false,"showSubMeshesBoundingBox":false,"alphaIndex":0,"physicsImpostor":0,"physicsMass":0.0,"physicsFriction":0.0,"physicsRestitution":0.0,"name":"pSphere1","id":"39830D1B-4903-0C71-E956-0EBDE718A360","parentId":null,"position":[0.0,0.0,0.0],"animations":[],"autoAnimate":true,"autoAnimateFrom":1,"autoAnimateTo":200,"autoAnimateLoop":true,"metadata":{}},{"materialId":"0E49D5E9-4200-91FB-CB7B-93B40CEF850E","isEnabled":true,"isVisible":true,"positions":[0.1488,-0.9877,0.0483,0.1266,-0.9877,0.0919,0.2939,-0.9511,0.0955,0.25,-0.9511,0.1816,0.0919,-0.9877,0.1266,0.1816,-0.9511,0.25,0.0483,-0.9877,0.1488,0.0955,-0.9511,0.2939,0.0,-0.9877,0.1564,0.0,-0.9511,0.309,-0.0483,-0.9877,0.1488,-0.0955,-0.9511,0.2939,-0.0919,-0.9877,0.1266,-0.1816,-0.9511,0.25,-0.1266,-0.9877,0.0919,-0.25,-0.9511,0.1816,-0.1488,-0.9877,0.0483,-0.2939,-0.9511,0.0955,-0.1564,-0.9877,0.0,-0.309,-0.9511,0.0,-0.1488,-0.9877,-0.0483,-0.2939,-0.9511,-0.0955,-0.1266,-0.9877,-0.0919,-0.25,-0.9511,-0.1816,-0.0919,-0.9877,-0.1266,-0.1816,-0.9511,-0.25,-0.0483,-0.9877,-0.1488,-0.0955,-0.9511,-0.2939,0.0,-0.9877,-0.1564,0.0,-0.9511,-0.309,0.0483,-0.9877,-0.1488,0.0955,-0.9511,-0.2939,0.0919,-0.9877,-0.1266,0.1816,-0.9511,-0.25,0.1266,-0.9877,-0.0919,0.25,-0.9511,-0.1816,0.1488,-0.9877,-0.0483,0.2939,-0.9511,-0.0955,0.1564,-0.9877,0.0,0.309,-0.9511,0.0,0.1488,-0.9877,0.0483,0.2939,-0.9511,0.0955,0.4318,-0.891,0.1403,0.3673,-0.891,0.2668,0.2668,-0.891,0.3673,0.1403,-0.891,0.4318,0.0,-0.891,0.454,-0.1403,-0.891,0.4318,-0.2668,-0.891,0.3673,-0.3673,-0.891,0.2668,-0.4318,-0.891,0.1403,-0.454,-0.891,0.0,-0.4318,-0.891,-0.1403,-0.3673,-0.891,-0.2668,-0.2668,-0.891,-0.3673,-0.1403,-0.891,-0.4318,0.0,-0.891,-0.454,0.1403,-0.891,-0.4318,0.2668,-0.891,-0.3673,0.3673,-0.891,-0.2668,0.4318,-0.891,-0.1403,0.454,-0.891,0.0,0.4318,-0.891,0.1403,0.559,-0.809,0.1816,0.4755,-0.809,0.3455,0.3455,-0.809,0.4755,0.1816,-0.809,0.559,0.0,-0.809,0.5878,-0.1816,-0.809,0.559,-0.3455,-0.809,0.4755,-0.4755,-0.809,0.3455,-0.559,-0.809,0.1816,-0.5878,-0.809,0.0,-0.559,-0.809,-0.1816,-0.4755,-0.809,-0.3455,-0.3455,-0.809,-0.4755,-0.1816,-0.809,-0.559,0.0,-0.809,-0.5878,0.1816,-0.809,-0.559,0.3455,-0.809,-0.4755,0.4755,-0.809,-0.3455,0.559,-0.809,-0.1816,0.5878,-0.809,0.0,0.559,-0.809,0.1816,0.6725,-0.7071,0.2185,0.5721,-0.7071,0.4156,0.4156,-0.7071,0.5721,0.2185,-0.7071,0.6725,0.0,-0.7071,0.7071,-0.2185,-0.7071,0.6725,-0.4156,-0.7071,0.5721,-0.5721,-0.7071,0.4156,-0.6725,-0.7071,0.2185,-0.7071,-0.7071,0.0,-0.6725,-0.7071,-0.2185,-0.5721,-0.7071,-0.4156,-0.4156,-0.7071,-0.5721,-0.2185,-0.7071,-0.6725,0.0,-0.7071,-0.7071,0.2185,-0.7071,-0.6725,0.4156,-0.7071,-0.5721,0.5721,-0.7071,-0.4156,0.6725,-0.7071,-0.2185,0.7071,-0.7071,0.0,0.6725,-0.7071,0.2185,0.7694,-0.5878,0.25,0.6545,-0.5878,0.4755,0.4755,-0.5878,0.6545,0.25,-0.5878,0.7694,0.0,-0.5878,0.809,-0.25,-0.5878,0.7694,-0.4755,-0.5878,0.6545,-0.6545,-0.5878,0.4755,-0.7694,-0.5878,0.25,-0.809,-0.5878,0.0,-0.7694,-0.5878,-0.25,-0.6545,-0.5878,-0.4755,-0.4755,-0.5878,-0.6545,-0.25,-0.5878,-0.7694,0.0,-0.5878,-0.809,0.25,-0.5878,-0.7694,0.4755,-0.5878,-0.6545,0.6545,-0.5878,-0.4755,0.7694,-0.5878,-0.25,0.809,-0.5878,0.0,0.7694,-0.5878,0.25,0.8474,-0.454,0.2753,0.7208,-0.454,0.5237,0.5237,-0.454,0.7208,0.2753,-0.454,0.8474,0.0,-0.454,0.891,-0.2753,-0.454,0.8474,-0.5237,-0.454,0.7208,-0.7208,-0.454,0.5237,-0.8474,-0.454,0.2753,-0.891,-0.454,0.0,-0.8474,-0.454,-0.2753,-0.7208,-0.454,-0.5237,-0.5237,-0.454,-0.7208,-0.2753,-0.454,-0.8474,0.0,-0.454,-0.891,0.2753,-0.454,-0.8474,0.5237,-0.454,-0.7208,0.7208,-0.454,-0.5237,0.8474,-0.454,-0.2753,0.891,-0.454,0.0,0.8474,-0.454,0.2753,0.9045,-0.309,0.2939,0.7694,-0.309,0.559,0.559,-0.309,0.7694,0.2939,-0.309,0.9045,0.0,-0.309,0.9511,-0.2939,-0.309,0.9045,-0.559,-0.309,0.7694,-0.7694,-0.309,0.559,-0.9045,-0.309,0.2939,-0.9511,-0.309,0.0,-0.9045,-0.309,-0.2939,-0.7694,-0.309,-0.559,-0.559,-0.309,-0.7694,-0.2939,-0.309,-0.9045,0.0,-0.309,-0.9511,0.2939,-0.309,-0.9045,0.559,-0.309,-0.7694,0.7694,-0.309,-0.559,0.9045,-0.309,-0.2939,0.9511,-0.309,0.0,0.9045,-0.309,0.2939,0.9393,-0.1564,0.3052,0.7991,-0.1564,0.5805,0.5805,-0.1564,0.7991,0.3052,-0.1564,0.9393,0.0,-0.1564,0.9877,-0.3052,-0.1564,0.9393,-0.5805,-0.1564,0.7991,-0.7991,-0.1564,0.5805,-0.9393,-0.1564,0.3052,-0.9877,-0.1564,0.0,-0.9393,-0.1564,-0.3052,-0.7991,-0.1564,-0.5805,-0.5805,-0.1564,-0.7991,-0.3052,-0.1564,-0.9393,0.0,-0.1564,-0.9877,0.3052,-0.1564,-0.9393,0.5805,-0.1564,-0.7991,0.7991,-0.1564,-0.5805,0.9393,-0.1564,-0.3052,0.9877,-0.1564,0.0,0.9393,-0.1564,0.3052,0.9511,0.0,0.309,0.809,0.0,0.5878,0.5878,0.0,0.809,0.309,0.0,0.9511,0.0,0.0,1.0,-0.309,0.0,0.9511,-0.5878,0.0,0.809,-0.809,0.0,0.5878,-0.9511,0.0,0.309,-1.0,0.0,0.0,-0.9511,0.0,-0.309,-0.809,0.0,-0.5878,-0.5878,0.0,-0.809,-0.309,0.0,-0.9511,0.0,0.0,-1.0,0.309,0.0,-0.9511,0.5878,0.0,-0.809,0.809,0.0,-0.5878,0.9511,0.0,-0.309,1.0,0.0,0.0,0.9511,0.0,0.309,0.9393,0.1564,0.3052,0.7991,0.1564,0.5805,0.5805,0.1564,0.7991,0.3052,0.1564,0.9393,0.0,0.1564,0.9877,-0.3052,0.1564,0.9393,-0.5805,0.1564,0.7991,-0.7991,0.1564,0.5805,-0.9393,0.1564,0.3052,-0.9877,0.1564,0.0,-0.9393,0.1564,-0.3052,-0.7991,0.1564,-0.5805,-0.5805,0.1564,-0.7991,-0.3052,0.1564,-0.9393,0.0,0.1564,-0.9877,0.3052,0.1564,-0.9393,0.5805,0.1564,-0.7991,0.7991,0.1564,-0.5805,0.9393,0.1564,-0.3052,0.9877,0.1564,0.0,0.9393,0.1564,0.3052,0.9045,0.309,0.2939,0.7694,0.309,0.559,0.559,0.309,0.7694,0.2939,0.309,0.9045,0.0,0.309,0.9511,-0.2939,0.309,0.9045,-0.559,0.309,0.7694,-0.7694,0.309,0.559,-0.9045,0.309,0.2939,-0.9511,0.309,0.0,-0.9045,0.309,-0.2939,-0.7694,0.309,-0.559,-0.559,0.309,-0.7694,-0.2939,0.309,-0.9045,0.0,0.309,-0.9511,0.2939,0.309,-0.9045,0.559,0.309,-0.7694,0.7694,0.309,-0.559,0.9045,0.309,-0.2939,0.9511,0.309,0.0,0.9045,0.309,0.2939,0.8474,0.454,0.2753,0.7208,0.454,0.5237,0.5237,0.454,0.7208,0.2753,0.454,0.8474,0.0,0.454,0.891,-0.2753,0.454,0.8474,-0.5237,0.454,0.7208,-0.7208,0.454,0.5237,-0.8474,0.454,0.2753,-0.891,0.454,0.0,-0.8474,0.454,-0.2753,-0.7208,0.454,-0.5237,-0.5237,0.454,-0.7208,-0.2753,0.454,-0.8474,0.0,0.454,-0.891,0.2753,0.454,-0.8474,0.5237,0.454,-0.7208,0.7208,0.454,-0.5237,0.8474,0.454,-0.2753,0.891,0.454,0.0,0.8474,0.454,0.2753,0.7694,0.5878,0.25,0.6545,0.5878,0.4755,0.4755,0.5878,0.6545,0.25,0.5878,0.7694,0.0,0.5878,0.809,-0.25,0.5878,0.7694,-0.4755,0.5878,0.6545,-0.6545,0.5878,0.4755,-0.7694,0.5878,0.25,-0.809,0.5878,0.0,-0.7694,0.5878,-0.25,-0.6545,0.5878,-0.4755,-0.4755,0.5878,-0.6545,-0.25,0.5878,-0.7694,0.0,0.5878,-0.809,0.25,0.5878,-0.7694,0.4755,0.5878,-0.6545,0.6545,0.5878,-0.4755,0.7694,0.5878,-0.25,0.809,0.5878,0.0,0.7694,0.5878,0.25,0.6725,0.7071,0.2185,0.5721,0.7071,0.4156,0.4156,0.7071,0.5721,0.2185,0.7071,0.6725,0.0,0.7071,0.7071,-0.2185,0.7071,0.6725,-0.4156,0.7071,0.5721,-0.5721,0.7071,0.4156,-0.6725,0.7071,0.2185,-0.7071,0.7071,0.0,-0.6725,0.7071,-0.2185,-0.5721,0.7071,-0.4156,-0.4156,0.7071,-0.5721,-0.2185,0.7071,-0.6725,0.0,0.7071,-0.7071,0.2185,0.7071,-0.6725,0.4156,0.7071,-0.5721,0.5721,0.7071,-0.4156,0.6725,0.7071,-0.2185,0.7071,0.7071,0.0,0.6725,0.7071,0.2185,0.559,0.809,0.1816,0.4755,0.809,0.3455,0.3455,0.809,0.4755,0.1816,0.809,0.559,0.0,0.809,0.5878,-0.1816,0.809,0.559,-0.3455,0.809,0.4755,-0.4755,0.809,0.3455,-0.559,0.809,0.1816,-0.5878,0.809,0.0,-0.559,0.809,-0.1816,-0.4755,0.809,-0.3455,-0.3455,0.809,-0.4755,-0.1816,0.809,-0.559,0.0,0.809,-0.5878,0.1816,0.809,-0.559,0.3455,0.809,-0.4755,0.4755,0.809,-0.3455,0.559,0.809,-0.1816,0.5878,0.809,0.0,0.559,0.809,0.1816,0.4318,0.891,0.1403,0.3673,0.891,0.2668,0.2668,0.891,0.3673,0.1403,0.891,0.4318,0.0,0.891,0.454,-0.1403,0.891,0.4318,-0.2668,0.891,0.3673,-0.3673,0.891,0.2668,-0.4318,0.891,0.1403,-0.454,0.891,0.0,-0.4318,0.891,-0.1403,-0.3673,0.891,-0.2668,-0.2668,0.891,-0.3673,-0.1403,0.891,-0.4318,0.0,0.891,-0.454,0.1403,0.891,-0.4318,0.2668,0.891,-0.3673,0.3673,0.891,-0.2668,0.4318,0.891,-0.1403,0.454,0.891,0.0,0.4318,0.891,0.1403,0.2939,0.9511,0.0955,0.25,0.9511,0.1816,0.1816,0.9511,0.25,0.0955,0.9511,0.2939,0.0,0.9511,0.309,-0.0955,0.9511,0.2939,-0.1816,0.9511,0.25,-0.25,0.9511,0.1816,-0.2939,0.9511,0.0955,-0.309,0.9511,0.0,-0.2939,0.9511,-0.0955,-0.25,0.9511,-0.1816,-0.1816,0.9511,-0.25,-0.0955,0.9511,-0.2939,0.0,0.9511,-0.309,0.0955,0.9511,-0.2939,0.1816,0.9511,-0.25,0.25,0.9511,-0.1816,0.2939,0.9511,-0.0955,0.309,0.9511,0.0,0.2939,0.9511,0.0955,0.1488,0.9877,0.0483,0.1266,0.9877,0.0919,0.0919,0.9877,0.1266,0.0483,0.9877,0.1488,0.0,0.9877,0.1564,-0.0483,0.9877,0.1488,-0.0919,0.9877,0.1266,-0.1266,0.9877,0.0919,-0.1488,0.9877,0.0483,-0.1564,0.9877,0.0,-0.1488,0.9877,-0.0483,-0.1266,0.9877,-0.0919,-0.0919,0.9877,-0.1266,-0.0483,0.9877,-0.1488,0.0,0.9877,-0.1564,0.0483,0.9877,-0.1488,0.0919,0.9877,-0.1266,0.1266,0.9877,-0.0919,0.1488,0.9877,-0.0483,0.1564,0.9877,0.0,0.1488,0.9877,0.0483,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0],"normals":[0.1906,-0.9797,0.0619,0.1621,-0.9797,0.1178,0.3173,-0.9427,0.1031,0.2699,-0.9427,0.1961,0.1178,-0.9797,0.1621,0.1961,-0.9427,0.2699,0.0619,-0.9797,0.1906,0.1031,-0.9427,0.3173,0.0,-0.9797,0.2004,0.0,-0.9427,0.3336,-0.0619,-0.9797,0.1906,-0.1031,-0.9427,0.3173,-0.1178,-0.9797,0.1621,-0.1961,-0.9427,0.2699,-0.1621,-0.9797,0.1178,-0.2699,-0.9427,0.1961,-0.1906,-0.9797,0.0619,-0.3173,-0.9427,0.1031,-0.2004,-0.9797,0.0,-0.3336,-0.9427,0.0,-0.1906,-0.9797,-0.0619,-0.3173,-0.9427,-0.1031,-0.1621,-0.9797,-0.1178,-0.2699,-0.9427,-0.1961,-0.1178,-0.9797,-0.1621,-0.1961,-0.9427,-0.2699,-0.0619,-0.9797,-0.1906,-0.1031,-0.9427,-0.3173,0.0,-0.9797,-0.2004,0.0,-0.9427,-0.3336,0.0619,-0.9797,-0.1906,0.1031,-0.9427,-0.3173,0.1178,-0.9797,-0.1621,0.1961,-0.9427,-0.2699,0.1621,-0.9797,-0.1178,0.2699,-0.9427,-0.1961,0.1906,-0.9797,-0.0619,0.3173,-0.9427,-0.1031,0.2004,-0.9797,0.0,0.3336,-0.9427,0.0,0.1906,-0.9797,0.0619,0.3173,-0.9427,0.1031,0.4477,-0.8823,0.1455,0.3808,-0.8823,0.2767,0.2767,-0.8823,0.3808,0.1455,-0.8823,0.4477,0.0,-0.8823,0.4708,-0.1455,-0.8823,0.4477,-0.2767,-0.8823,0.3808,-0.3808,-0.8823,0.2767,-0.4477,-0.8823,0.1455,-0.4708,-0.8823,0.0,-0.4477,-0.8823,-0.1455,-0.3808,-0.8823,-0.2767,-0.2767,-0.8823,-0.3808,-0.1455,-0.8823,-0.4477,0.0,-0.8823,-0.4708,0.1455,-0.8823,-0.4477,0.2767,-0.8823,-0.3808,0.3808,-0.8823,-0.2767,0.4477,-0.8823,-0.1455,0.4708,-0.8823,0.0,0.4477,-0.8823,0.1455,0.5703,-0.8003,0.1853,0.4851,-0.8003,0.3525,0.3525,-0.8003,0.4851,0.1853,-0.8003,0.5703,0.0,-0.8003,0.5997,-0.1853,-0.8003,0.5703,-0.3525,-0.8003,0.4851,-0.4851,-0.8003,0.3525,-0.5703,-0.8003,0.1853,-0.5997,-0.8003,0.0,-0.5703,-0.8003,-0.1853,-0.4851,-0.8003,-0.3525,-0.3525,-0.8003,-0.4851,-0.1853,-0.8003,-0.5703,0.0,-0.8003,-0.5997,0.1853,-0.8003,-0.5703,0.3525,-0.8003,-0.4851,0.4851,-0.8003,-0.3525,0.5703,-0.8003,-0.1853,0.5997,-0.8003,0.0,0.5703,-0.8003,0.1853,0.6803,-0.6988,0.221,0.5787,-0.6988,0.4205,0.4205,-0.6988,0.5787,0.221,-0.6988,0.6803,0.0,-0.6988,0.7153,-0.221,-0.6988,0.6803,-0.4205,-0.6988,0.5787,-0.5787,-0.6988,0.4205,-0.6803,-0.6988,0.221,-0.7153,-0.6988,0.0,-0.6803,-0.6988,-0.221,-0.5787,-0.6988,-0.4205,-0.4205,-0.6988,-0.5787,-0.221,-0.6988,-0.6803,0.0,-0.6988,-0.7153,0.221,-0.6988,-0.6803,0.4205,-0.6988,-0.5787,0.5787,-0.6988,-0.4205,0.6803,-0.6988,-0.221,0.7153,-0.6988,0.0,0.6803,-0.6988,0.221,0.7745,-0.5804,0.2516,0.6588,-0.5804,0.4787,0.4787,-0.5804,0.6588,0.2516,-0.5804,0.7745,0.0,-0.5804,0.8143,-0.2516,-0.5804,0.7745,-0.4787,-0.5804,0.6588,-0.6588,-0.5804,0.4787,-0.7745,-0.5804,0.2516,-0.8143,-0.5804,0.0,-0.7745,-0.5804,-0.2516,-0.6588,-0.5804,-0.4787,-0.4787,-0.5804,-0.6588,-0.2516,-0.5804,-0.7745,0.0,-0.5804,-0.8143,0.2516,-0.5804,-0.7745,0.4787,-0.5804,-0.6588,0.6588,-0.5804,-0.4787,0.7745,-0.5804,-0.2516,0.8143,-0.5804,0.0,0.7745,-0.5804,0.2516,0.8503,-0.448,0.2763,0.7233,-0.448,0.5255,0.5255,-0.448,0.7233,0.2763,-0.448,0.8503,0.0,-0.448,0.894,-0.2763,-0.448,0.8503,-0.5255,-0.448,0.7233,-0.7233,-0.448,0.5255,-0.8503,-0.448,0.2763,-0.894,-0.448,0.0,-0.8503,-0.448,-0.2763,-0.7233,-0.448,-0.5255,-0.5255,-0.448,-0.7233,-0.2763,-0.448,-0.8503,0.0,-0.448,-0.894,0.2763,-0.448,-0.8503,0.5255,-0.448,-0.7233,0.7233,-0.448,-0.5255,0.8503,-0.448,-0.2763,0.894,-0.448,0.0,0.8503,-0.448,0.2763,0.9058,-0.3048,0.2943,0.7705,-0.3048,0.5598,0.5598,-0.3048,0.7705,0.2943,-0.3048,0.9058,0.0,-0.3048,0.9524,-0.2943,-0.3048,0.9058,-0.5598,-0.3048,0.7705,-0.7705,-0.3048,0.5598,-0.9058,-0.3048,0.2943,-0.9524,-0.3048,0.0,-0.9058,-0.3048,-0.2943,-0.7705,-0.3048,-0.5598,-0.5598,-0.3048,-0.7705,-0.2943,-0.3048,-0.9058,0.0,-0.3048,-0.9524,0.2943,-0.3048,-0.9058,0.5598,-0.3048,-0.7705,0.7705,-0.3048,-0.5598,0.9058,-0.3048,-0.2943,0.9524,-0.3048,0.0,0.9058,-0.3048,0.2943,0.9397,-0.1542,0.3053,0.7993,-0.1542,0.5808,0.5808,-0.1542,0.7993,0.3053,-0.1542,0.9397,0.0,-0.1542,0.988,-0.3053,-0.1542,0.9397,-0.5808,-0.1542,0.7993,-0.7993,-0.1542,0.5808,-0.9397,-0.1542,0.3053,-0.988,-0.1542,0.0,-0.9397,-0.1542,-0.3053,-0.7993,-0.1542,-0.5808,-0.5808,-0.1542,-0.7993,-0.3053,-0.1542,-0.9397,0.0,-0.1542,-0.988,0.3053,-0.1542,-0.9397,0.5808,-0.1542,-0.7993,0.7993,-0.1542,-0.5808,0.9397,-0.1542,-0.3053,0.988,-0.1542,0.0,0.9397,-0.1542,0.3053,0.9511,0.0,0.309,0.809,0.0,0.5878,0.5878,0.0,0.809,0.309,0.0,0.9511,0.0,0.0,1.0,-0.309,0.0,0.9511,-0.5878,0.0,0.809,-0.809,0.0,0.5878,-0.9511,0.0,0.309,-1.0,0.0,0.0,-0.9511,0.0,-0.309,-0.809,0.0,-0.5878,-0.5878,0.0,-0.809,-0.309,0.0,-0.9511,0.0,0.0,-1.0,0.309,0.0,-0.9511,0.5878,0.0,-0.809,0.809,0.0,-0.5878,0.9511,0.0,-0.309,1.0,0.0,0.0,0.9511,0.0,0.309,0.9397,0.1542,0.3053,0.7993,0.1542,0.5808,0.5808,0.1542,0.7993,0.3053,0.1542,0.9397,0.0,0.1542,0.988,-0.3053,0.1542,0.9397,-0.5808,0.1542,0.7993,-0.7993,0.1542,0.5808,-0.9397,0.1542,0.3053,-0.988,0.1542,0.0,-0.9397,0.1542,-0.3053,-0.7993,0.1542,-0.5808,-0.5808,0.1542,-0.7993,-0.3053,0.1542,-0.9397,0.0,0.1542,-0.988,0.3053,0.1542,-0.9397,0.5808,0.1542,-0.7993,0.7993,0.1542,-0.5808,0.9397,0.1542,-0.3053,0.988,0.1542,0.0,0.9397,0.1542,0.3053,0.9058,0.3048,0.2943,0.7705,0.3048,0.5598,0.5598,0.3048,0.7705,0.2943,0.3048,0.9058,0.0,0.3048,0.9524,-0.2943,0.3048,0.9058,-0.5598,0.3048,0.7705,-0.7705,0.3048,0.5598,-0.9058,0.3048,0.2943,-0.9524,0.3048,0.0,-0.9058,0.3048,-0.2943,-0.7705,0.3048,-0.5598,-0.5598,0.3048,-0.7705,-0.2943,0.3048,-0.9058,0.0,0.3048,-0.9524,0.2943,0.3048,-0.9058,0.5598,0.3048,-0.7705,0.7705,0.3048,-0.5598,0.9058,0.3048,-0.2943,0.9524,0.3048,0.0,0.9058,0.3048,0.2943,0.8503,0.448,0.2763,0.7233,0.448,0.5255,0.5255,0.448,0.7233,0.2763,0.448,0.8503,0.0,0.448,0.894,-0.2763,0.448,0.8503,-0.5255,0.448,0.7233,-0.7233,0.448,0.5255,-0.8503,0.448,0.2763,-0.894,0.448,0.0,-0.8503,0.448,-0.2763,-0.7233,0.448,-0.5255,-0.5255,0.448,-0.7233,-0.2763,0.448,-0.8503,0.0,0.448,-0.894,0.2763,0.448,-0.8503,0.5255,0.448,-0.7233,0.7233,0.448,-0.5255,0.8503,0.448,-0.2763,0.894,0.448,0.0,0.8503,0.448,0.2763,0.7745,0.5804,0.2516,0.6588,0.5804,0.4787,0.4787,0.5804,0.6588,0.2516,0.5804,0.7745,0.0,0.5804,0.8143,-0.2516,0.5804,0.7745,-0.4787,0.5804,0.6588,-0.6588,0.5804,0.4787,-0.7745,0.5804,0.2516,-0.8143,0.5804,0.0,-0.7745,0.5804,-0.2516,-0.6588,0.5804,-0.4787,-0.4787,0.5804,-0.6588,-0.2516,0.5804,-0.7745,0.0,0.5804,-0.8143,0.2516,0.5804,-0.7745,0.4787,0.5804,-0.6588,0.6588,0.5804,-0.4787,0.7745,0.5804,-0.2516,0.8143,0.5804,0.0,0.7745,0.5804,0.2516,0.6803,0.6988,0.221,0.5787,0.6988,0.4205,0.4205,0.6988,0.5787,0.221,0.6988,0.6803,0.0,0.6988,0.7153,-0.221,0.6988,0.6803,-0.4205,0.6988,0.5787,-0.5787,0.6988,0.4205,-0.6803,0.6988,0.221,-0.7153,0.6988,0.0,-0.6803,0.6988,-0.221,-0.5787,0.6988,-0.4205,-0.4205,0.6988,-0.5787,-0.221,0.6988,-0.6803,0.0,0.6988,-0.7153,0.221,0.6988,-0.6803,0.4205,0.6988,-0.5787,0.5787,0.6988,-0.4205,0.6803,0.6988,-0.221,0.7153,0.6988,0.0,0.6803,0.6988,0.221,0.5703,0.8003,0.1853,0.4851,0.8003,0.3525,0.3525,0.8003,0.4851,0.1853,0.8003,0.5703,0.0,0.8003,0.5997,-0.1853,0.8003,0.5703,-0.3525,0.8003,0.4851,-0.4851,0.8003,0.3525,-0.5703,0.8003,0.1853,-0.5997,0.8003,0.0,-0.5703,0.8003,-0.1853,-0.4851,0.8003,-0.3525,-0.3525,0.8003,-0.4851,-0.1853,0.8003,-0.5703,0.0,0.8003,-0.5997,0.1853,0.8003,-0.5703,0.3525,0.8003,-0.4851,0.4851,0.8003,-0.3525,0.5703,0.8003,-0.1853,0.5997,0.8003,0.0,0.5703,0.8003,0.1853,0.4477,0.8823,0.1455,0.3808,0.8823,0.2767,0.2767,0.8823,0.3808,0.1455,0.8823,0.4477,0.0,0.8823,0.4708,-0.1455,0.8823,0.4477,-0.2767,0.8823,0.3808,-0.3808,0.8823,0.2767,-0.4477,0.8823,0.1455,-0.4708,0.8823,0.0,-0.4477,0.8823,-0.1455,-0.3808,0.8823,-0.2767,-0.2767,0.8823,-0.3808,-0.1455,0.8823,-0.4477,0.0,0.8823,-0.4708,0.1455,0.8823,-0.4477,0.2767,0.8823,-0.3808,0.3808,0.8823,-0.2767,0.4477,0.8823,-0.1455,0.4708,0.8823,0.0,0.4477,0.8823,0.1455,0.3173,0.9427,0.1031,0.2699,0.9427,0.1961,0.1961,0.9427,0.2699,0.1031,0.9427,0.3173,0.0,0.9427,0.3336,-0.1031,0.9427,0.3173,-0.1961,0.9427,0.2699,-0.2699,0.9427,0.1961,-0.3173,0.9427,0.1031,-0.3336,0.9427,0.0,-0.3173,0.9427,-0.1031,-0.2699,0.9427,-0.1961,-0.1961,0.9427,-0.2699,-0.1031,0.9427,-0.3173,0.0,0.9427,-0.3336,0.1031,0.9427,-0.3173,0.1961,0.9427,-0.2699,0.2699,0.9427,-0.1961,0.3173,0.9427,-0.1031,0.3336,0.9427,0.0,0.3173,0.9427,0.1031,0.1906,0.9797,0.0619,0.1621,0.9797,0.1178,0.1178,0.9797,0.1621,0.0619,0.9797,0.1906,0.0,0.9797,0.2004,-0.0619,0.9797,0.1906,-0.1178,0.9797,0.1621,-0.1621,0.9797,0.1178,-0.1906,0.9797,0.0619,-0.2004,0.9797,0.0,-0.1906,0.9797,-0.0619,-0.1621,0.9797,-0.1178,-0.1178,0.9797,-0.1621,-0.0619,0.9797,-0.1906,0.0,0.9797,-0.2004,0.0619,0.9797,-0.1906,0.1178,0.9797,-0.1621,0.1621,0.9797,-0.1178,0.1906,0.9797,-0.0619,0.2004,0.9797,0.0,0.1906,0.9797,0.0619,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0],"tangents":[-0.4482,-0.0307,0.8934,-1.0,-0.5629,0.0062,0.8265,-1.0,-0.438,-0.0493,0.8976,-1.0,-0.5878,0.0,0.809,-1.0,-0.7908,0.0062,0.6121,-1.0,-0.809,0.0,0.5878,-1.0,-0.9412,0.0062,0.3378,-1.0,-0.9511,0.0,0.309,-1.0,-0.9995,0.0062,0.0304,-1.0,-1.0,0.0,0.0,-1.0,-0.96,0.0062,-0.28,-1.0,-0.9511,0.0,-0.309,-1.0,-0.8265,0.0062,-0.5629,-1.0,-0.809,0.0,-0.5878,-1.0,-0.6121,0.0062,-0.7908,-1.0,-0.5878,0.0,-0.809,-1.0,-0.3378,0.0062,-0.9412,-1.0,-0.309,0.0,-0.9511,-1.0,-0.0304,0.0062,-0.9995,-1.0,0.0,0.0,-1.0,-1.0,0.28,0.0062,-0.96,-1.0,0.309,0.0,-0.9511,-1.0,0.5629,0.0062,-0.8265,-1.0,0.5878,0.0,-0.809,-1.0,0.7908,0.0062,-0.6121,-1.0,0.809,0.0,-0.5878,-1.0,0.9412,0.0062,-0.3378,-1.0,0.9511,0.0,-0.309,-1.0,0.9995,0.0062,-0.0304,-1.0,1.0,0.0,0.0,-1.0,0.96,0.0062,0.28,-1.0,0.9511,0.0,0.309,-1.0,0.8265,0.0062,0.5629,-1.0,0.809,0.0,0.5878,-1.0,0.6121,0.0062,0.7908,-1.0,0.5878,0.0,0.809,-1.0,0.3378,0.0062,0.9412,-1.0,0.309,0.0,0.9511,-1.0,0.0304,0.0062,0.9995,-1.0,0.0,0.0,1.0,-1.0,-0.1625,0.0307,0.9862,-1.0,-0.1732,0.0493,0.9836,-1.0,-0.4222,-0.0651,0.9042,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.1899,0.0651,0.9796,-1.0,-0.4023,-0.0754,0.9124,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.2109,0.0754,0.9746,-1.0,-0.3802,-0.0787,0.9215,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.234,0.0787,0.969,-1.0,-0.3582,-0.0745,0.9306,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.2572,0.0745,0.9635,-1.0,-0.3384,-0.0633,0.9389,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.2781,0.0633,0.9585,-1.0,-0.3226,-0.0459,0.9454,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.2947,0.0459,0.9545,-1.0,-0.3125,-0.0241,0.9496,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.3053,0.0241,0.9519,-1.0,-0.309,0.0,0.9511,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.309,0.0,0.9511,-1.0,-0.3125,0.0241,0.9496,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.3053,-0.0241,0.9519,-1.0,-0.3226,0.0459,0.9454,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.2947,-0.0459,0.9545,-1.0,-0.3384,0.0633,0.9389,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.2781,-0.0633,0.9585,-1.0,-0.3582,0.0745,0.9306,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.2572,-0.0745,0.9635,-1.0,-0.3802,0.0787,0.9215,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.234,-0.0787,0.969,-1.0,-0.4023,0.0754,0.9124,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.2109,-0.0754,0.9746,-1.0,-0.4222,0.0651,0.9042,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.1899,-0.0651,0.9796,-1.0,-0.438,0.0493,0.8976,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.1732,-0.0493,0.9836,-1.0,-0.4482,0.0307,0.8934,-1.0,-0.6121,0.0062,0.7908,-1.0,-0.8265,0.0062,0.5629,-1.0,-0.96,0.0062,0.28,-1.0,-0.9995,0.0062,-0.0304,-1.0,-0.9412,0.0062,-0.3378,-1.0,-0.7908,0.0062,-0.6121,-1.0,-0.5629,0.0062,-0.8265,-1.0,-0.28,0.0062,-0.96,-1.0,0.0304,0.0062,-0.9995,-1.0,0.3378,0.0062,-0.9412,-1.0,0.6121,0.0062,-0.7908,-1.0,0.8265,0.0062,-0.5629,-1.0,0.96,0.0062,-0.28,-1.0,0.9995,0.0062,0.0304,-1.0,0.9412,0.0062,0.3378,-1.0,0.7908,0.0062,0.6121,-1.0,0.5629,0.0062,0.8265,-1.0,0.28,0.0062,0.96,-1.0,-0.0304,0.0062,0.9995,-1.0,-0.1625,-0.0307,0.9862,-1.0,-0.454,0.0,0.891,-1.0,-0.7071,0.0,0.7071,-1.0,-0.891,0.0,0.454,-1.0,-0.9877,0.0,0.1564,-1.0,-0.9877,0.0,-0.1564,-1.0,-0.891,0.0,-0.454,-1.0,-0.7071,0.0,-0.7071,-1.0,-0.454,0.0,-0.891,-1.0,-0.1564,0.0,-0.9877,-1.0,0.1564,0.0,-0.9877,-1.0,0.454,0.0,-0.891,-1.0,0.7071,0.0,-0.7071,-1.0,0.891,0.0,-0.454,-1.0,0.9877,0.0,-0.1564,-1.0,0.9877,0.0,0.1564,-1.0,0.891,0.0,0.454,-1.0,0.7071,0.0,0.7071,-1.0,0.454,0.0,0.891,-1.0,0.1564,0.0,0.9877,-1.0,-0.1564,0.0,0.9877,-1.0,-0.454,0.0,0.891,-1.0,-0.7071,0.0,0.7071,-1.0,-0.891,0.0,0.454,-1.0,-0.9877,0.0,0.1564,-1.0,-0.9877,0.0,-0.1564,-1.0,-0.891,0.0,-0.454,-1.0,-0.7071,0.0,-0.7071,-1.0,-0.454,0.0,-0.891,-1.0,-0.1564,0.0,-0.9877,-1.0,0.1564,0.0,-0.9877,-1.0,0.454,0.0,-0.891,-1.0,0.7071,0.0,-0.7071,-1.0,0.891,0.0,-0.454,-1.0,0.9877,0.0,-0.1564,-1.0,0.9877,0.0,0.1564,-1.0,0.891,0.0,0.454,-1.0,0.7071,0.0,0.7071,-1.0,0.454,0.0,0.891,-1.0,0.1564,0.0,0.9877,-1.0,-0.1564,0.0,0.9877,-1.0],"uvs":[0.0,0.05,0.05,0.05,0.0,0.1,0.05,0.1,0.1,0.05,0.1,0.1,0.15,0.05,0.15,0.1,0.2,0.05,0.2,0.1,0.25,0.05,0.25,0.1,0.3,0.05,0.3,0.1,0.35,0.05,0.35,0.1,0.4,0.05,0.4,0.1,0.45,0.05,0.45,0.1,0.5,0.05,0.5,0.1,0.55,0.05,0.55,0.1,0.6,0.05,0.6,0.1,0.65,0.05,0.65,0.1,0.7,0.05,0.7,0.1,0.75,0.05,0.75,0.1,0.8,0.05,0.8,0.1,0.85,0.05,0.85,0.1,0.9,0.05,0.9,0.1,0.95,0.05,0.95,0.1,1.0,0.05,1.0,0.1,0.0,0.15,0.05,0.15,0.1,0.15,0.15,0.15,0.2,0.15,0.25,0.15,0.3,0.15,0.35,0.15,0.4,0.15,0.45,0.15,0.5,0.15,0.55,0.15,0.6,0.15,0.65,0.15,0.7,0.15,0.75,0.15,0.8,0.15,0.85,0.15,0.9,0.15,0.95,0.15,1.0,0.15,0.0,0.2,0.05,0.2,0.1,0.2,0.15,0.2,0.2,0.2,0.25,0.2,0.3,0.2,0.35,0.2,0.4,0.2,0.45,0.2,0.5,0.2,0.55,0.2,0.6,0.2,0.65,0.2,0.7,0.2,0.75,0.2,0.8,0.2,0.85,0.2,0.9,0.2,0.95,0.2,1.0,0.2,0.0,0.25,0.05,0.25,0.1,0.25,0.15,0.25,0.2,0.25,0.25,0.25,0.3,0.25,0.35,0.25,0.4,0.25,0.45,0.25,0.5,0.25,0.55,0.25,0.6,0.25,0.65,0.25,0.7,0.25,0.75,0.25,0.8,0.25,0.85,0.25,0.9,0.25,0.95,0.25,1.0,0.25,0.0,0.3,0.05,0.3,0.1,0.3,0.15,0.3,0.2,0.3,0.25,0.3,0.3,0.3,0.35,0.3,0.4,0.3,0.45,0.3,0.5,0.3,0.55,0.3,0.6,0.3,0.65,0.3,0.7,0.3,0.75,0.3,0.8,0.3,0.85,0.3,0.9,0.3,0.95,0.3,1.0,0.3,0.0,0.35,0.05,0.35,0.1,0.35,0.15,0.35,0.2,0.35,0.25,0.35,0.3,0.35,0.35,0.35,0.4,0.35,0.45,0.35,0.5,0.35,0.55,0.35,0.6,0.35,0.65,0.35,0.7,0.35,0.75,0.35,0.8,0.35,0.85,0.35,0.9,0.35,0.95,0.35,1.0,0.35,0.0,0.4,0.05,0.4,0.1,0.4,0.15,0.4,0.2,0.4,0.25,0.4,0.3,0.4,0.35,0.4,0.4,0.4,0.45,0.4,0.5,0.4,0.55,0.4,0.6,0.4,0.65,0.4,0.7,0.4,0.75,0.4,0.8,0.4,0.85,0.4,0.9,0.4,0.95,0.4,1.0,0.4,0.0,0.45,0.05,0.45,0.1,0.45,0.15,0.45,0.2,0.45,0.25,0.45,0.3,0.45,0.35,0.45,0.4,0.45,0.45,0.45,0.5,0.45,0.55,0.45,0.6,0.45,0.65,0.45,0.7,0.45,0.75,0.45,0.8,0.45,0.85,0.45,0.9,0.45,0.95,0.45,1.0,0.45,0.0,0.5,0.05,0.5,0.1,0.5,0.15,0.5,0.2,0.5,0.25,0.5,0.3,0.5,0.35,0.5,0.4,0.5,0.45,0.5,0.5,0.5,0.55,0.5,0.6,0.5,0.65,0.5,0.7,0.5,0.75,0.5,0.8,0.5,0.85,0.5,0.9,0.5,0.95,0.5,1.0,0.5,0.0,0.55,0.05,0.55,0.1,0.55,0.15,0.55,0.2,0.55,0.25,0.55,0.3,0.55,0.35,0.55,0.4,0.55,0.45,0.55,0.5,0.55,0.55,0.55,0.6,0.55,0.65,0.55,0.7,0.55,0.75,0.55,0.8,0.55,0.85,0.55,0.9,0.55,0.95,0.55,1.0,0.55,0.0,0.6,0.05,0.6,0.1,0.6,0.15,0.6,0.2,0.6,0.25,0.6,0.3,0.6,0.35,0.6,0.4,0.6,0.45,0.6,0.5,0.6,0.55,0.6,0.6,0.6,0.65,0.6,0.7,0.6,0.75,0.6,0.8,0.6,0.85,0.6,0.9,0.6,0.95,0.6,1.0,0.6,0.0,0.65,0.05,0.65,0.1,0.65,0.15,0.65,0.2,0.65,0.25,0.65,0.3,0.65,0.35,0.65,0.4,0.65,0.45,0.65,0.5,0.65,0.55,0.65,0.6,0.65,0.65,0.65,0.7,0.65,0.75,0.65,0.8,0.65,0.85,0.65,0.9,0.65,0.95,0.65,1.0,0.65,0.0,0.7,0.05,0.7,0.1,0.7,0.15,0.7,0.2,0.7,0.25,0.7,0.3,0.7,0.35,0.7,0.4,0.7,0.45,0.7,0.5,0.7,0.55,0.7,0.6,0.7,0.65,0.7,0.7,0.7,0.75,0.7,0.8,0.7,0.85,0.7,0.9,0.7,0.95,0.7,1.0,0.7,0.0,0.75,0.05,0.75,0.1,0.75,0.15,0.75,0.2,0.75,0.25,0.75,0.3,0.75,0.35,0.75,0.4,0.75,0.45,0.75,0.5,0.75,0.55,0.75,0.6,0.75,0.65,0.75,0.7,0.75,0.75,0.75,0.8,0.75,0.85,0.75,0.9,0.75,0.95,0.75,1.0,0.75,0.0,0.8,0.05,0.8,0.1,0.8,0.15,0.8,0.2,0.8,0.25,0.8,0.3,0.8,0.35,0.8,0.4,0.8,0.45,0.8,0.5,0.8,0.55,0.8,0.6,0.8,0.65,0.8,0.7,0.8,0.75,0.8,0.8,0.8,0.85,0.8,0.9,0.8,0.95,0.8,1.0,0.8,0.0,0.85,0.05,0.85,0.1,0.85,0.15,0.85,0.2,0.85,0.25,0.85,0.3,0.85,0.35,0.85,0.4,0.85,0.45,0.85,0.5,0.85,0.55,0.85,0.6,0.85,0.65,0.85,0.7,0.85,0.75,0.85,0.8,0.85,0.85,0.85,0.9,0.85,0.95,0.85,1.0,0.85,0.0,0.9,0.05,0.9,0.1,0.9,0.15,0.9,0.2,0.9,0.25,0.9,0.3,0.9,0.35,0.9,0.4,0.9,0.45,0.9,0.5,0.9,0.55,0.9,0.6,0.9,0.65,0.9,0.7,0.9,0.75,0.9,0.8,0.9,0.85,0.9,0.9,0.9,0.95,0.9,1.0,0.9,0.0,0.95,0.05,0.95,0.1,0.95,0.15,0.95,0.2,0.95,0.25,0.95,0.3,0.95,0.35,0.95,0.4,0.95,0.45,0.95,0.5,0.95,0.55,0.95,0.6,0.95,0.65,0.95,0.7,0.95,0.75,0.95,0.8,0.95,0.85,0.95,0.9,0.95,0.95,0.95,1.0,0.95,0.025,0.0,0.075,0.0,0.125,0.0,0.175,0.0,0.225,0.0,0.275,0.0,0.325,0.0,0.375,0.0,0.425,0.0,0.475,0.0,0.525,0.0,0.575,0.0,0.625,0.0,0.675,0.0,0.725,0.0,0.775,0.0,0.825,0.0,0.875,0.0,0.925,0.0,0.975,0.0,0.025,1.0,0.075,1.0,0.125,1.0,0.175,1.0,0.225,1.0,0.275,1.0,0.325,1.0,0.375,1.0,0.425,1.0,0.475,1.0,0.525,1.0,0.575,1.0,0.625,1.0,0.675,1.0,0.725,1.0,0.775,1.0,0.825,1.0,0.875,1.0,0.925,1.0,0.975,1.0],"uvs2":null,"colors":null,"hasVertexAlpha":false,"matricesIndices":null,"matricesWeights":null,"matricesIndicesExtra":null,"matricesWeightsExtra":null,"indices":[0,1,2,2,1,3,1,4,3,3,4,5,4,6,5,5,6,7,6,8,7,7,8,9,8,10,9,9,10,11,10,12,11,11,12,13,12,14,13,13,14,15,14,16,15,15,16,17,16,18,17,17,18,19,18,20,19,19,20,21,20,22,21,21,22,23,22,24,23,23,24,25,24,26,25,25,26,27,26,28,27,27,28,29,28,30,29,29,30,31,30,32,31,31,32,33,32,34,33,33,34,35,34,36,35,35,36,37,36,38,37,37,38,39,38,40,39,39,40,41,2,3,42,42,3,43,3,5,43,43,5,44,5,7,44,44,7,45,7,9,45,45,9,46,9,11,46,46,11,47,11,13,47,47,13,48,13,15,48,48,15,49,15,17,49,49,17,50,17,19,50,50,19,51,19,21,51,51,21,52,21,23,52,52,23,53,23,25,53,53,25,54,25,27,54,54,27,55,27,29,55,55,29,56,29,31,56,56,31,57,31,33,57,57,33,58,33,35,58,58,35,59,35,37,59,59,37,60,37,39,60,60,39,61,39,41,61,61,41,62,42,43,63,63,43,64,43,44,64,64,44,65,44,45,65,65,45,66,45,46,66,66,46,67,46,47,67,67,47,68,47,48,68,68,48,69,48,49,69,69,49,70,49,50,70,70,50,71,50,51,71,71,51,72,51,52,72,72,52,73,52,53,73,73,53,74,53,54,74,74,54,75,54,55,75,75,55,76,55,56,76,76,56,77,56,57,77,77,57,78,57,58,78,78,58,79,58,59,79,79,59,80,59,60,80,80,60,81,60,61,81,81,61,82,61,62,82,82,62,83,63,64,84,84,64,85,64,65,85,85,65,86,65,66,86,86,66,87,66,67,87,87,67,88,67,68,88,88,68,89,68,69,89,89,69,90,69,70,90,90,70,91,70,71,91,91,71,92,71,72,92,92,72,93,72,73,93,93,73,94,73,74,94,94,74,95,74,75,95,95,75,96,75,76,96,96,76,97,76,77,97,97,77,98,77,78,98,98,78,99,78,79,99,99,79,100,79,80,100,100,80,101,80,81,101,101,81,102,81,82,102,102,82,103,82,83,103,103,83,104,84,85,105,105,85,106,85,86,106,106,86,107,86,87,107,107,87,108,87,88,108,108,88,109,88,89,109,109,89,110,89,90,110,110,90,111,90,91,111,111,91,112,91,92,112,112,92,113,92,93,113,113,93,114,93,94,114,114,94,115,94,95,115,115,95,116,95,96,116,116,96,117,96,97,117,117,97,118,97,98,118,118,98,119,98,99,119,119,99,120,99,100,120,120,100,121,100,101,121,121,101,122,101,102,122,122,102,123,102,103,123,123,103,124,103,104,124,124,104,125,105,106,126,126,106,127,106,107,127,127,107,128,107,108,128,128,108,129,108,109,129,129,109,130,109,110,130,130,110,131,110,111,131,131,111,132,111,112,132,132,112,133,112,113,133,133,113,134,113,114,134,134,114,135,114,115,135,135,115,136,115,116,136,136,116,137,116,117,137,137,117,138,117,118,138,138,118,139,118,119,139,139,119,140,119,120,140,140,120,141,120,121,141,141,121,142,121,122,142,142,122,143,122,123,143,143,123,144,123,124,144,144,124,145,124,125,145,145,125,146,126,127,147,147,127,148,127,128,148,148,128,149,128,129,149,149,129,150,129,130,150,150,130,151,130,131,151,151,131,152,131,132,152,152,132,153,132,133,153,153,133,154,133,134,154,154,134,155,134,135,155,155,135,156,135,136,156,156,136,157,136,137,157,157,137,158,137,138,158,158,138,159,138,139,159,159,139,160,139,140,160,160,140,161,140,141,161,161,141,162,141,142,162,162,142,163,142,143,163,163,143,164,143,144,164,164,144,165,144,145,165,165,145,166,145,146,166,166,146,167,147,148,168,168,148,169,148,149,169,169,149,170,149,150,170,170,150,171,150,151,171,171,151,172,151,152,172,172,152,173,152,153,173,173,153,174,153,154,174,174,154,175,154,155,175,175,155,176,155,156,176,176,156,177,156,157,177,177,157,178,157,158,178,178,158,179,158,159,179,179,159,180,159,160,180,180,160,181,160,161,181,181,161,182,161,162,182,182,162,183,162,163,183,183,163,184,163,164,184,184,164,185,164,165,185,185,165,186,165,166,186,186,166,187,166,167,187,187,167,188,168,169,189,189,169,190,169,170,190,190,170,191,170,171,191,191,171,192,171,172,192,192,172,193,172,173,193,193,173,194,173,174,194,194,174,195,174,175,195,195,175,196,175,176,196,196,176,197,176,177,197,197,177,198,177,178,198,198,178,199,178,179,199,199,179,200,179,180,200,200,180,201,180,181,201,201,181,202,181,182,202,202,182,203,182,183,203,203,183,204,183,184,204,204,184,205,184,185,205,205,185,206,185,186,206,206,186,207,186,187,207,207,187,208,187,188,208,208,188,209,189,190,210,210,190,211,190,191,211,211,191,212,191,192,212,212,192,213,192,193,213,213,193,214,193,194,214,214,194,215,194,195,215,215,195,216,195,196,216,216,196,217,196,197,217,217,197,218,197,198,218,218,198,219,198,199,219,219,199,220,199,200,220,220,200,221,200,201,221,221,201,222,201,202,222,222,202,223,202,203,223,223,203,224,203,204,224,224,204,225,204,205,225,225,205,226,205,206,226,226,206,227,206,207,227,227,207,228,207,208,228,228,208,229,208,209,229,229,209,230,210,211,231,231,211,232,211,212,232,232,212,233,212,213,233,233,213,234,213,214,234,234,214,235,214,215,235,235,215,236,215,216,236,236,216,237,216,217,237,237,217,238,217,218,238,238,218,239,218,219,239,239,219,240,219,220,240,240,220,241,220,221,241,241,221,242,221,222,242,242,222,243,222,223,243,243,223,244,223,224,244,244,224,245,224,225,245,245,225,246,225,226,246,246,226,247,226,227,247,247,227,248,227,228,248,248,228,249,228,229,249,249,229,250,229,230,250,250,230,251,231,232,252,252,232,253,232,233,253,253,233,254,233,234,254,254,234,255,234,235,255,255,235,256,235,236,256,256,236,257,236,237,257,257,237,258,237,238,258,258,238,259,238,239,259,259,239,260,239,240,260,260,240,261,240,241,261,261,241,262,241,242,262,262,242,263,242,243,263,263,243,264,243,244,264,264,244,265,244,245,265,265,245,266,245,246,266,266,246,267,246,247,267,267,247,268,247,248,268,268,248,269,248,249,269,269,249,270,249,250,270,270,250,271,250,251,271,271,251,272,252,253,273,273,253,274,253,254,274,274,254,275,254,255,275,275,255,276,255,256,276,276,256,277,256,257,277,277,257,278,257,258,278,278,258,279,258,259,279,279,259,280,259,260,280,280,260,281,260,261,281,281,261,282,261,262,282,282,262,283,262,263,283,283,263,284,263,264,284,284,264,285,264,265,285,285,265,286,265,266,286,286,266,287,266,267,287,287,267,288,267,268,288,288,268,289,268,269,289,289,269,290,269,270,290,290,270,291,270,271,291,291,271,292,271,272,292,292,272,293,273,274,294,294,274,295,274,275,295,295,275,296,275,276,296,296,276,297,276,277,297,297,277,298,277,278,298,298,278,299,278,279,299,299,279,300,279,280,300,300,280,301,280,281,301,301,281,302,281,282,302,302,282,303,282,283,303,303,283,304,283,284,304,304,284,305,284,285,305,305,285,306,285,286,306,306,286,307,286,287,307,307,287,308,287,288,308,308,288,309,288,289,309,309,289,310,289,290,310,310,290,311,290,291,311,311,291,312,291,292,312,312,292,313,292,293,313,313,293,314,294,295,315,315,295,316,295,296,316,316,296,317,296,297,317,317,297,318,297,298,318,318,298,319,298,299,319,319,299,320,299,300,320,320,300,321,300,301,321,321,301,322,301,302,322,322,302,323,302,303,323,323,303,324,303,304,324,324,304,325,304,305,325,325,305,326,305,306,326,326,306,327,306,307,327,327,307,328,307,308,328,328,308,329,308,309,329,329,309,330,309,310,330,330,310,331,310,311,331,331,311,332,311,312,332,332,312,333,312,313,333,333,313,334,313,314,334,334,314,335,315,316,336,336,316,337,316,317,337,337,317,338,317,318,338,338,318,339,318,319,339,339,319,340,319,320,340,340,320,341,320,321,341,341,321,342,321,322,342,342,322,343,322,323,343,343,323,344,323,324,344,344,324,345,324,325,345,345,325,346,325,326,346,346,326,347,326,327,347,347,327,348,327,328,348,348,328,349,328,329,349,349,329,350,329,330,350,350,330,351,330,331,351,351,331,352,331,332,352,352,332,353,332,333,353,353,333,354,333,334,354,354,334,355,334,335,355,355,335,356,336,337,357,357,337,358,337,338,358,358,338,359,338,339,359,359,339,360,339,340,360,360,340,361,340,341,361,361,341,362,341,342,362,362,342,363,342,343,363,363,343,364,343,344,364,364,344,365,344,345,365,365,345,366,345,346,366,366,346,367,346,347,367,367,347,368,347,348,368,368,348,369,348,349,369,369,349,370,349,350,370,370,350,371,350,351,371,371,351,372,351,352,372,372,352,373,352,353,373,373,353,374,353,354,374,374,354,375,354,355,375,375,355,376,355,356,376,376,356,377,357,358,378,378,358,379,358,359,379,379,359,380,359,360,380,380,360,381,360,361,381,381,361,382,361,362,382,382,362,383,362,363,383,383,363,384,363,364,384,384,364,385,364,365,385,385,365,386,365,366,386,386,366,387,366,367,387,387,367,388,367,368,388,388,368,389,368,369,389,389,369,390,369,370,390,390,370,391,370,371,391,391,371,392,371,372,392,392,372,393,372,373,393,393,373,394,373,374,394,394,374,395,374,375,395,395,375,396,375,376,396,396,376,397,376,377,397,397,377,398,1,0,399,4,1,400,6,4,401,8,6,402,10,8,403,12,10,404,14,12,405,16,14,406,18,16,407,20,18,408,22,20,409,24,22,410,26,24,411,28,26,412,30,28,413,32,30,414,34,32,415,36,34,416,38,36,417,40,38,418,378,379,419,379,380,420,380,381,421,381,382,422,382,383,423,383,384,424,384,385,425,385,386,426,386,387,427,387,388,428,388,389,429,389,390,430,390,391,431,391,392,432,392,393,433,393,394,434,394,395,435,395,396,436,396,397,437,397,398,438],"receiveShadows":false,"infiniteDistance":false,"billboardMode":0,"visibility":1.0,"subMeshes":[{"materialIndex":0,"verticesStart":0,"verticesCount":439,"indexStart":0,"indexCount":2280}],"instances":null,"skeletonId":-1,"numBoneInfluencers":4,"applyFog":false,"lodMeshIds":null,"lodDistances":null,"lodCoverages":null,"rotation":null,"scaling":[1.0,1.0,1.0],"rotationQuaternion":[0.0,0.1736,0.0,0.9848],"actions":null,"checkCollisions":false,"pickable":true,"showBoundingBox":false,"showSubMeshesBoundingBox":false,"alphaIndex":0,"physicsImpostor":0,"physicsMass":0.0,"physicsFriction":0.0,"physicsRestitution":0.0,"name":"pSphere2","id":"AAE56DAE-40BF-882A-5CE8-0AB477E46CDB","parentId":null,"position":[3.0,0.0,0.0],"animations":[],"autoAnimate":true,"autoAnimateFrom":1,"autoAnimateTo":200,"autoAnimateLoop":true,"metadata":{}},{"materialId":"79CDF1A6-4409-889B-46A9-43A586C10D94","isEnabled":true,"isVisible":true,"positions":[0.1488,-0.9877,0.0483,0.1266,-0.9877,0.0919,0.2939,-0.9511,0.0955,0.25,-0.9511,0.1816,0.0919,-0.9877,0.1266,0.1816,-0.9511,0.25,0.0483,-0.9877,0.1488,0.0955,-0.9511,0.2939,0.0,-0.9877,0.1564,0.0,-0.9511,0.309,-0.0483,-0.9877,0.1488,-0.0955,-0.9511,0.2939,-0.0919,-0.9877,0.1266,-0.1816,-0.9511,0.25,-0.1266,-0.9877,0.0919,-0.25,-0.9511,0.1816,-0.1488,-0.9877,0.0483,-0.2939,-0.9511,0.0955,-0.1564,-0.9877,0.0,-0.309,-0.9511,0.0,-0.1488,-0.9877,-0.0483,-0.2939,-0.9511,-0.0955,-0.1266,-0.9877,-0.0919,-0.25,-0.9511,-0.1816,-0.0919,-0.9877,-0.1266,-0.1816,-0.9511,-0.25,-0.0483,-0.9877,-0.1488,-0.0955,-0.9511,-0.2939,0.0,-0.9877,-0.1564,0.0,-0.9511,-0.309,0.0483,-0.9877,-0.1488,0.0955,-0.9511,-0.2939,0.0919,-0.9877,-0.1266,0.1816,-0.9511,-0.25,0.1266,-0.9877,-0.0919,0.25,-0.9511,-0.1816,0.1488,-0.9877,-0.0483,0.2939,-0.9511,-0.0955,0.1564,-0.9877,0.0,0.309,-0.9511,0.0,0.1488,-0.9877,0.0483,0.2939,-0.9511,0.0955,0.4318,-0.891,0.1403,0.3673,-0.891,0.2668,0.2668,-0.891,0.3673,0.1403,-0.891,0.4318,0.0,-0.891,0.454,-0.1403,-0.891,0.4318,-0.2668,-0.891,0.3673,-0.3673,-0.891,0.2668,-0.4318,-0.891,0.1403,-0.454,-0.891,0.0,-0.4318,-0.891,-0.1403,-0.3673,-0.891,-0.2668,-0.2668,-0.891,-0.3673,-0.1403,-0.891,-0.4318,0.0,-0.891,-0.454,0.1403,-0.891,-0.4318,0.2668,-0.891,-0.3673,0.3673,-0.891,-0.2668,0.4318,-0.891,-0.1403,0.454,-0.891,0.0,0.4318,-0.891,0.1403,0.559,-0.809,0.1816,0.4755,-0.809,0.3455,0.3455,-0.809,0.4755,0.1816,-0.809,0.559,0.0,-0.809,0.5878,-0.1816,-0.809,0.559,-0.3455,-0.809,0.4755,-0.4755,-0.809,0.3455,-0.559,-0.809,0.1816,-0.5878,-0.809,0.0,-0.559,-0.809,-0.1816,-0.4755,-0.809,-0.3455,-0.3455,-0.809,-0.4755,-0.1816,-0.809,-0.559,0.0,-0.809,-0.5878,0.1816,-0.809,-0.559,0.3455,-0.809,-0.4755,0.4755,-0.809,-0.3455,0.559,-0.809,-0.1816,0.5878,-0.809,0.0,0.559,-0.809,0.1816,0.6725,-0.7071,0.2185,0.5721,-0.7071,0.4156,0.4156,-0.7071,0.5721,0.2185,-0.7071,0.6725,0.0,-0.7071,0.7071,-0.2185,-0.7071,0.6725,-0.4156,-0.7071,0.5721,-0.5721,-0.7071,0.4156,-0.6725,-0.7071,0.2185,-0.7071,-0.7071,0.0,-0.6725,-0.7071,-0.2185,-0.5721,-0.7071,-0.4156,-0.4156,-0.7071,-0.5721,-0.2185,-0.7071,-0.6725,0.0,-0.7071,-0.7071,0.2185,-0.7071,-0.6725,0.4156,-0.7071,-0.5721,0.5721,-0.7071,-0.4156,0.6725,-0.7071,-0.2185,0.7071,-0.7071,0.0,0.6725,-0.7071,0.2185,0.7694,-0.5878,0.25,0.6545,-0.5878,0.4755,0.4755,-0.5878,0.6545,0.25,-0.5878,0.7694,0.0,-0.5878,0.809,-0.25,-0.5878,0.7694,-0.4755,-0.5878,0.6545,-0.6545,-0.5878,0.4755,-0.7694,-0.5878,0.25,-0.809,-0.5878,0.0,-0.7694,-0.5878,-0.25,-0.6545,-0.5878,-0.4755,-0.4755,-0.5878,-0.6545,-0.25,-0.5878,-0.7694,0.0,-0.5878,-0.809,0.25,-0.5878,-0.7694,0.4755,-0.5878,-0.6545,0.6545,-0.5878,-0.4755,0.7694,-0.5878,-0.25,0.809,-0.5878,0.0,0.7694,-0.5878,0.25,0.8474,-0.454,0.2753,0.7208,-0.454,0.5237,0.5237,-0.454,0.7208,0.2753,-0.454,0.8474,0.0,-0.454,0.891,-0.2753,-0.454,0.8474,-0.5237,-0.454,0.7208,-0.7208,-0.454,0.5237,-0.8474,-0.454,0.2753,-0.891,-0.454,0.0,-0.8474,-0.454,-0.2753,-0.7208,-0.454,-0.5237,-0.5237,-0.454,-0.7208,-0.2753,-0.454,-0.8474,0.0,-0.454,-0.891,0.2753,-0.454,-0.8474,0.5237,-0.454,-0.7208,0.7208,-0.454,-0.5237,0.8474,-0.454,-0.2753,0.891,-0.454,0.0,0.8474,-0.454,0.2753,0.9045,-0.309,0.2939,0.7694,-0.309,0.559,0.559,-0.309,0.7694,0.2939,-0.309,0.9045,0.0,-0.309,0.9511,-0.2939,-0.309,0.9045,-0.559,-0.309,0.7694,-0.7694,-0.309,0.559,-0.9045,-0.309,0.2939,-0.9511,-0.309,0.0,-0.9045,-0.309,-0.2939,-0.7694,-0.309,-0.559,-0.559,-0.309,-0.7694,-0.2939,-0.309,-0.9045,0.0,-0.309,-0.9511,0.2939,-0.309,-0.9045,0.559,-0.309,-0.7694,0.7694,-0.309,-0.559,0.9045,-0.309,-0.2939,0.9511,-0.309,0.0,0.9045,-0.309,0.2939,0.9393,-0.1564,0.3052,0.7991,-0.1564,0.5805,0.5805,-0.1564,0.7991,0.3052,-0.1564,0.9393,0.0,-0.1564,0.9877,-0.3052,-0.1564,0.9393,-0.5805,-0.1564,0.7991,-0.7991,-0.1564,0.5805,-0.9393,-0.1564,0.3052,-0.9877,-0.1564,0.0,-0.9393,-0.1564,-0.3052,-0.7991,-0.1564,-0.5805,-0.5805,-0.1564,-0.7991,-0.3052,-0.1564,-0.9393,0.0,-0.1564,-0.9877,0.3052,-0.1564,-0.9393,0.5805,-0.1564,-0.7991,0.7991,-0.1564,-0.5805,0.9393,-0.1564,-0.3052,0.9877,-0.1564,0.0,0.9393,-0.1564,0.3052,0.9511,0.0,0.309,0.809,0.0,0.5878,0.5878,0.0,0.809,0.309,0.0,0.9511,0.0,0.0,1.0,-0.309,0.0,0.9511,-0.5878,0.0,0.809,-0.809,0.0,0.5878,-0.9511,0.0,0.309,-1.0,0.0,0.0,-0.9511,0.0,-0.309,-0.809,0.0,-0.5878,-0.5878,0.0,-0.809,-0.309,0.0,-0.9511,0.0,0.0,-1.0,0.309,0.0,-0.9511,0.5878,0.0,-0.809,0.809,0.0,-0.5878,0.9511,0.0,-0.309,1.0,0.0,0.0,0.9511,0.0,0.309,0.9393,0.1564,0.3052,0.7991,0.1564,0.5805,0.5805,0.1564,0.7991,0.3052,0.1564,0.9393,0.0,0.1564,0.9877,-0.3052,0.1564,0.9393,-0.5805,0.1564,0.7991,-0.7991,0.1564,0.5805,-0.9393,0.1564,0.3052,-0.9877,0.1564,0.0,-0.9393,0.1564,-0.3052,-0.7991,0.1564,-0.5805,-0.5805,0.1564,-0.7991,-0.3052,0.1564,-0.9393,0.0,0.1564,-0.9877,0.3052,0.1564,-0.9393,0.5805,0.1564,-0.7991,0.7991,0.1564,-0.5805,0.9393,0.1564,-0.3052,0.9877,0.1564,0.0,0.9393,0.1564,0.3052,0.9045,0.309,0.2939,0.7694,0.309,0.559,0.559,0.309,0.7694,0.2939,0.309,0.9045,0.0,0.309,0.9511,-0.2939,0.309,0.9045,-0.559,0.309,0.7694,-0.7694,0.309,0.559,-0.9045,0.309,0.2939,-0.9511,0.309,0.0,-0.9045,0.309,-0.2939,-0.7694,0.309,-0.559,-0.559,0.309,-0.7694,-0.2939,0.309,-0.9045,0.0,0.309,-0.9511,0.2939,0.309,-0.9045,0.559,0.309,-0.7694,0.7694,0.309,-0.559,0.9045,0.309,-0.2939,0.9511,0.309,0.0,0.9045,0.309,0.2939,0.8474,0.454,0.2753,0.7208,0.454,0.5237,0.5237,0.454,0.7208,0.2753,0.454,0.8474,0.0,0.454,0.891,-0.2753,0.454,0.8474,-0.5237,0.454,0.7208,-0.7208,0.454,0.5237,-0.8474,0.454,0.2753,-0.891,0.454,0.0,-0.8474,0.454,-0.2753,-0.7208,0.454,-0.5237,-0.5237,0.454,-0.7208,-0.2753,0.454,-0.8474,0.0,0.454,-0.891,0.2753,0.454,-0.8474,0.5237,0.454,-0.7208,0.7208,0.454,-0.5237,0.8474,0.454,-0.2753,0.891,0.454,0.0,0.8474,0.454,0.2753,0.7694,0.5878,0.25,0.6545,0.5878,0.4755,0.4755,0.5878,0.6545,0.25,0.5878,0.7694,0.0,0.5878,0.809,-0.25,0.5878,0.7694,-0.4755,0.5878,0.6545,-0.6545,0.5878,0.4755,-0.7694,0.5878,0.25,-0.809,0.5878,0.0,-0.7694,0.5878,-0.25,-0.6545,0.5878,-0.4755,-0.4755,0.5878,-0.6545,-0.25,0.5878,-0.7694,0.0,0.5878,-0.809,0.25,0.5878,-0.7694,0.4755,0.5878,-0.6545,0.6545,0.5878,-0.4755,0.7694,0.5878,-0.25,0.809,0.5878,0.0,0.7694,0.5878,0.25,0.6725,0.7071,0.2185,0.5721,0.7071,0.4156,0.4156,0.7071,0.5721,0.2185,0.7071,0.6725,0.0,0.7071,0.7071,-0.2185,0.7071,0.6725,-0.4156,0.7071,0.5721,-0.5721,0.7071,0.4156,-0.6725,0.7071,0.2185,-0.7071,0.7071,0.0,-0.6725,0.7071,-0.2185,-0.5721,0.7071,-0.4156,-0.4156,0.7071,-0.5721,-0.2185,0.7071,-0.6725,0.0,0.7071,-0.7071,0.2185,0.7071,-0.6725,0.4156,0.7071,-0.5721,0.5721,0.7071,-0.4156,0.6725,0.7071,-0.2185,0.7071,0.7071,0.0,0.6725,0.7071,0.2185,0.559,0.809,0.1816,0.4755,0.809,0.3455,0.3455,0.809,0.4755,0.1816,0.809,0.559,0.0,0.809,0.5878,-0.1816,0.809,0.559,-0.3455,0.809,0.4755,-0.4755,0.809,0.3455,-0.559,0.809,0.1816,-0.5878,0.809,0.0,-0.559,0.809,-0.1816,-0.4755,0.809,-0.3455,-0.3455,0.809,-0.4755,-0.1816,0.809,-0.559,0.0,0.809,-0.5878,0.1816,0.809,-0.559,0.3455,0.809,-0.4755,0.4755,0.809,-0.3455,0.559,0.809,-0.1816,0.5878,0.809,0.0,0.559,0.809,0.1816,0.4318,0.891,0.1403,0.3673,0.891,0.2668,0.2668,0.891,0.3673,0.1403,0.891,0.4318,0.0,0.891,0.454,-0.1403,0.891,0.4318,-0.2668,0.891,0.3673,-0.3673,0.891,0.2668,-0.4318,0.891,0.1403,-0.454,0.891,0.0,-0.4318,0.891,-0.1403,-0.3673,0.891,-0.2668,-0.2668,0.891,-0.3673,-0.1403,0.891,-0.4318,0.0,0.891,-0.454,0.1403,0.891,-0.4318,0.2668,0.891,-0.3673,0.3673,0.891,-0.2668,0.4318,0.891,-0.1403,0.454,0.891,0.0,0.4318,0.891,0.1403,0.2939,0.9511,0.0955,0.25,0.9511,0.1816,0.1816,0.9511,0.25,0.0955,0.9511,0.2939,0.0,0.9511,0.309,-0.0955,0.9511,0.2939,-0.1816,0.9511,0.25,-0.25,0.9511,0.1816,-0.2939,0.9511,0.0955,-0.309,0.9511,0.0,-0.2939,0.9511,-0.0955,-0.25,0.9511,-0.1816,-0.1816,0.9511,-0.25,-0.0955,0.9511,-0.2939,0.0,0.9511,-0.309,0.0955,0.9511,-0.2939,0.1816,0.9511,-0.25,0.25,0.9511,-0.1816,0.2939,0.9511,-0.0955,0.309,0.9511,0.0,0.2939,0.9511,0.0955,0.1488,0.9877,0.0483,0.1266,0.9877,0.0919,0.0919,0.9877,0.1266,0.0483,0.9877,0.1488,0.0,0.9877,0.1564,-0.0483,0.9877,0.1488,-0.0919,0.9877,0.1266,-0.1266,0.9877,0.0919,-0.1488,0.9877,0.0483,-0.1564,0.9877,0.0,-0.1488,0.9877,-0.0483,-0.1266,0.9877,-0.0919,-0.0919,0.9877,-0.1266,-0.0483,0.9877,-0.1488,0.0,0.9877,-0.1564,0.0483,0.9877,-0.1488,0.0919,0.9877,-0.1266,0.1266,0.9877,-0.0919,0.1488,0.9877,-0.0483,0.1564,0.9877,0.0,0.1488,0.9877,0.0483,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0],"normals":[0.1906,-0.9797,0.0619,0.1621,-0.9797,0.1178,0.3173,-0.9427,0.1031,0.2699,-0.9427,0.1961,0.1178,-0.9797,0.1621,0.1961,-0.9427,0.2699,0.0619,-0.9797,0.1906,0.1031,-0.9427,0.3173,0.0,-0.9797,0.2004,0.0,-0.9427,0.3336,-0.0619,-0.9797,0.1906,-0.1031,-0.9427,0.3173,-0.1178,-0.9797,0.1621,-0.1961,-0.9427,0.2699,-0.1621,-0.9797,0.1178,-0.2699,-0.9427,0.1961,-0.1906,-0.9797,0.0619,-0.3173,-0.9427,0.1031,-0.2004,-0.9797,0.0,-0.3336,-0.9427,0.0,-0.1906,-0.9797,-0.0619,-0.3173,-0.9427,-0.1031,-0.1621,-0.9797,-0.1178,-0.2699,-0.9427,-0.1961,-0.1178,-0.9797,-0.1621,-0.1961,-0.9427,-0.2699,-0.0619,-0.9797,-0.1906,-0.1031,-0.9427,-0.3173,0.0,-0.9797,-0.2004,0.0,-0.9427,-0.3336,0.0619,-0.9797,-0.1906,0.1031,-0.9427,-0.3173,0.1178,-0.9797,-0.1621,0.1961,-0.9427,-0.2699,0.1621,-0.9797,-0.1178,0.2699,-0.9427,-0.1961,0.1906,-0.9797,-0.0619,0.3173,-0.9427,-0.1031,0.2004,-0.9797,0.0,0.3336,-0.9427,0.0,0.1906,-0.9797,0.0619,0.3173,-0.9427,0.1031,0.4477,-0.8823,0.1455,0.3808,-0.8823,0.2767,0.2767,-0.8823,0.3808,0.1455,-0.8823,0.4477,0.0,-0.8823,0.4708,-0.1455,-0.8823,0.4477,-0.2767,-0.8823,0.3808,-0.3808,-0.8823,0.2767,-0.4477,-0.8823,0.1455,-0.4708,-0.8823,0.0,-0.4477,-0.8823,-0.1455,-0.3808,-0.8823,-0.2767,-0.2767,-0.8823,-0.3808,-0.1455,-0.8823,-0.4477,0.0,-0.8823,-0.4708,0.1455,-0.8823,-0.4477,0.2767,-0.8823,-0.3808,0.3808,-0.8823,-0.2767,0.4477,-0.8823,-0.1455,0.4708,-0.8823,0.0,0.4477,-0.8823,0.1455,0.5703,-0.8003,0.1853,0.4851,-0.8003,0.3525,0.3525,-0.8003,0.4851,0.1853,-0.8003,0.5703,0.0,-0.8003,0.5997,-0.1853,-0.8003,0.5703,-0.3525,-0.8003,0.4851,-0.4851,-0.8003,0.3525,-0.5703,-0.8003,0.1853,-0.5997,-0.8003,0.0,-0.5703,-0.8003,-0.1853,-0.4851,-0.8003,-0.3525,-0.3525,-0.8003,-0.4851,-0.1853,-0.8003,-0.5703,0.0,-0.8003,-0.5997,0.1853,-0.8003,-0.5703,0.3525,-0.8003,-0.4851,0.4851,-0.8003,-0.3525,0.5703,-0.8003,-0.1853,0.5997,-0.8003,0.0,0.5703,-0.8003,0.1853,0.6803,-0.6988,0.221,0.5787,-0.6988,0.4205,0.4205,-0.6988,0.5787,0.221,-0.6988,0.6803,0.0,-0.6988,0.7153,-0.221,-0.6988,0.6803,-0.4205,-0.6988,0.5787,-0.5787,-0.6988,0.4205,-0.6803,-0.6988,0.221,-0.7153,-0.6988,0.0,-0.6803,-0.6988,-0.221,-0.5787,-0.6988,-0.4205,-0.4205,-0.6988,-0.5787,-0.221,-0.6988,-0.6803,0.0,-0.6988,-0.7153,0.221,-0.6988,-0.6803,0.4205,-0.6988,-0.5787,0.5787,-0.6988,-0.4205,0.6803,-0.6988,-0.221,0.7153,-0.6988,0.0,0.6803,-0.6988,0.221,0.7745,-0.5804,0.2516,0.6588,-0.5804,0.4787,0.4787,-0.5804,0.6588,0.2516,-0.5804,0.7745,0.0,-0.5804,0.8143,-0.2516,-0.5804,0.7745,-0.4787,-0.5804,0.6588,-0.6588,-0.5804,0.4787,-0.7745,-0.5804,0.2516,-0.8143,-0.5804,0.0,-0.7745,-0.5804,-0.2516,-0.6588,-0.5804,-0.4787,-0.4787,-0.5804,-0.6588,-0.2516,-0.5804,-0.7745,0.0,-0.5804,-0.8143,0.2516,-0.5804,-0.7745,0.4787,-0.5804,-0.6588,0.6588,-0.5804,-0.4787,0.7745,-0.5804,-0.2516,0.8143,-0.5804,0.0,0.7745,-0.5804,0.2516,0.8503,-0.448,0.2763,0.7233,-0.448,0.5255,0.5255,-0.448,0.7233,0.2763,-0.448,0.8503,0.0,-0.448,0.894,-0.2763,-0.448,0.8503,-0.5255,-0.448,0.7233,-0.7233,-0.448,0.5255,-0.8503,-0.448,0.2763,-0.894,-0.448,0.0,-0.8503,-0.448,-0.2763,-0.7233,-0.448,-0.5255,-0.5255,-0.448,-0.7233,-0.2763,-0.448,-0.8503,0.0,-0.448,-0.894,0.2763,-0.448,-0.8503,0.5255,-0.448,-0.7233,0.7233,-0.448,-0.5255,0.8503,-0.448,-0.2763,0.894,-0.448,0.0,0.8503,-0.448,0.2763,0.9058,-0.3048,0.2943,0.7705,-0.3048,0.5598,0.5598,-0.3048,0.7705,0.2943,-0.3048,0.9058,0.0,-0.3048,0.9524,-0.2943,-0.3048,0.9058,-0.5598,-0.3048,0.7705,-0.7705,-0.3048,0.5598,-0.9058,-0.3048,0.2943,-0.9524,-0.3048,0.0,-0.9058,-0.3048,-0.2943,-0.7705,-0.3048,-0.5598,-0.5598,-0.3048,-0.7705,-0.2943,-0.3048,-0.9058,0.0,-0.3048,-0.9524,0.2943,-0.3048,-0.9058,0.5598,-0.3048,-0.7705,0.7705,-0.3048,-0.5598,0.9058,-0.3048,-0.2943,0.9524,-0.3048,0.0,0.9058,-0.3048,0.2943,0.9397,-0.1542,0.3053,0.7993,-0.1542,0.5808,0.5808,-0.1542,0.7993,0.3053,-0.1542,0.9397,0.0,-0.1542,0.988,-0.3053,-0.1542,0.9397,-0.5808,-0.1542,0.7993,-0.7993,-0.1542,0.5808,-0.9397,-0.1542,0.3053,-0.988,-0.1542,0.0,-0.9397,-0.1542,-0.3053,-0.7993,-0.1542,-0.5808,-0.5808,-0.1542,-0.7993,-0.3053,-0.1542,-0.9397,0.0,-0.1542,-0.988,0.3053,-0.1542,-0.9397,0.5808,-0.1542,-0.7993,0.7993,-0.1542,-0.5808,0.9397,-0.1542,-0.3053,0.988,-0.1542,0.0,0.9397,-0.1542,0.3053,0.9511,0.0,0.309,0.809,0.0,0.5878,0.5878,0.0,0.809,0.309,0.0,0.9511,0.0,0.0,1.0,-0.309,0.0,0.9511,-0.5878,0.0,0.809,-0.809,0.0,0.5878,-0.9511,0.0,0.309,-1.0,0.0,0.0,-0.9511,0.0,-0.309,-0.809,0.0,-0.5878,-0.5878,0.0,-0.809,-0.309,0.0,-0.9511,0.0,0.0,-1.0,0.309,0.0,-0.9511,0.5878,0.0,-0.809,0.809,0.0,-0.5878,0.9511,0.0,-0.309,1.0,0.0,0.0,0.9511,0.0,0.309,0.9397,0.1542,0.3053,0.7993,0.1542,0.5808,0.5808,0.1542,0.7993,0.3053,0.1542,0.9397,0.0,0.1542,0.988,-0.3053,0.1542,0.9397,-0.5808,0.1542,0.7993,-0.7993,0.1542,0.5808,-0.9397,0.1542,0.3053,-0.988,0.1542,0.0,-0.9397,0.1542,-0.3053,-0.7993,0.1542,-0.5808,-0.5808,0.1542,-0.7993,-0.3053,0.1542,-0.9397,0.0,0.1542,-0.988,0.3053,0.1542,-0.9397,0.5808,0.1542,-0.7993,0.7993,0.1542,-0.5808,0.9397,0.1542,-0.3053,0.988,0.1542,0.0,0.9397,0.1542,0.3053,0.9058,0.3048,0.2943,0.7705,0.3048,0.5598,0.5598,0.3048,0.7705,0.2943,0.3048,0.9058,0.0,0.3048,0.9524,-0.2943,0.3048,0.9058,-0.5598,0.3048,0.7705,-0.7705,0.3048,0.5598,-0.9058,0.3048,0.2943,-0.9524,0.3048,0.0,-0.9058,0.3048,-0.2943,-0.7705,0.3048,-0.5598,-0.5598,0.3048,-0.7705,-0.2943,0.3048,-0.9058,0.0,0.3048,-0.9524,0.2943,0.3048,-0.9058,0.5598,0.3048,-0.7705,0.7705,0.3048,-0.5598,0.9058,0.3048,-0.2943,0.9524,0.3048,0.0,0.9058,0.3048,0.2943,0.8503,0.448,0.2763,0.7233,0.448,0.5255,0.5255,0.448,0.7233,0.2763,0.448,0.8503,0.0,0.448,0.894,-0.2763,0.448,0.8503,-0.5255,0.448,0.7233,-0.7233,0.448,0.5255,-0.8503,0.448,0.2763,-0.894,0.448,0.0,-0.8503,0.448,-0.2763,-0.7233,0.448,-0.5255,-0.5255,0.448,-0.7233,-0.2763,0.448,-0.8503,0.0,0.448,-0.894,0.2763,0.448,-0.8503,0.5255,0.448,-0.7233,0.7233,0.448,-0.5255,0.8503,0.448,-0.2763,0.894,0.448,0.0,0.8503,0.448,0.2763,0.7745,0.5804,0.2516,0.6588,0.5804,0.4787,0.4787,0.5804,0.6588,0.2516,0.5804,0.7745,0.0,0.5804,0.8143,-0.2516,0.5804,0.7745,-0.4787,0.5804,0.6588,-0.6588,0.5804,0.4787,-0.7745,0.5804,0.2516,-0.8143,0.5804,0.0,-0.7745,0.5804,-0.2516,-0.6588,0.5804,-0.4787,-0.4787,0.5804,-0.6588,-0.2516,0.5804,-0.7745,0.0,0.5804,-0.8143,0.2516,0.5804,-0.7745,0.4787,0.5804,-0.6588,0.6588,0.5804,-0.4787,0.7745,0.5804,-0.2516,0.8143,0.5804,0.0,0.7745,0.5804,0.2516,0.6803,0.6988,0.221,0.5787,0.6988,0.4205,0.4205,0.6988,0.5787,0.221,0.6988,0.6803,0.0,0.6988,0.7153,-0.221,0.6988,0.6803,-0.4205,0.6988,0.5787,-0.5787,0.6988,0.4205,-0.6803,0.6988,0.221,-0.7153,0.6988,0.0,-0.6803,0.6988,-0.221,-0.5787,0.6988,-0.4205,-0.4205,0.6988,-0.5787,-0.221,0.6988,-0.6803,0.0,0.6988,-0.7153,0.221,0.6988,-0.6803,0.4205,0.6988,-0.5787,0.5787,0.6988,-0.4205,0.6803,0.6988,-0.221,0.7153,0.6988,0.0,0.6803,0.6988,0.221,0.5703,0.8003,0.1853,0.4851,0.8003,0.3525,0.3525,0.8003,0.4851,0.1853,0.8003,0.5703,0.0,0.8003,0.5997,-0.1853,0.8003,0.5703,-0.3525,0.8003,0.4851,-0.4851,0.8003,0.3525,-0.5703,0.8003,0.1853,-0.5997,0.8003,0.0,-0.5703,0.8003,-0.1853,-0.4851,0.8003,-0.3525,-0.3525,0.8003,-0.4851,-0.1853,0.8003,-0.5703,0.0,0.8003,-0.5997,0.1853,0.8003,-0.5703,0.3525,0.8003,-0.4851,0.4851,0.8003,-0.3525,0.5703,0.8003,-0.1853,0.5997,0.8003,0.0,0.5703,0.8003,0.1853,0.4477,0.8823,0.1455,0.3808,0.8823,0.2767,0.2767,0.8823,0.3808,0.1455,0.8823,0.4477,0.0,0.8823,0.4708,-0.1455,0.8823,0.4477,-0.2767,0.8823,0.3808,-0.3808,0.8823,0.2767,-0.4477,0.8823,0.1455,-0.4708,0.8823,0.0,-0.4477,0.8823,-0.1455,-0.3808,0.8823,-0.2767,-0.2767,0.8823,-0.3808,-0.1455,0.8823,-0.4477,0.0,0.8823,-0.4708,0.1455,0.8823,-0.4477,0.2767,0.8823,-0.3808,0.3808,0.8823,-0.2767,0.4477,0.8823,-0.1455,0.4708,0.8823,0.0,0.4477,0.8823,0.1455,0.3173,0.9427,0.1031,0.2699,0.9427,0.1961,0.1961,0.9427,0.2699,0.1031,0.9427,0.3173,0.0,0.9427,0.3336,-0.1031,0.9427,0.3173,-0.1961,0.9427,0.2699,-0.2699,0.9427,0.1961,-0.3173,0.9427,0.1031,-0.3336,0.9427,0.0,-0.3173,0.9427,-0.1031,-0.2699,0.9427,-0.1961,-0.1961,0.9427,-0.2699,-0.1031,0.9427,-0.3173,0.0,0.9427,-0.3336,0.1031,0.9427,-0.3173,0.1961,0.9427,-0.2699,0.2699,0.9427,-0.1961,0.3173,0.9427,-0.1031,0.3336,0.9427,0.0,0.3173,0.9427,0.1031,0.1906,0.9797,0.0619,0.1621,0.9797,0.1178,0.1178,0.9797,0.1621,0.0619,0.9797,0.1906,0.0,0.9797,0.2004,-0.0619,0.9797,0.1906,-0.1178,0.9797,0.1621,-0.1621,0.9797,0.1178,-0.1906,0.9797,0.0619,-0.2004,0.9797,0.0,-0.1906,0.9797,-0.0619,-0.1621,0.9797,-0.1178,-0.1178,0.9797,-0.1621,-0.0619,0.9797,-0.1906,0.0,0.9797,-0.2004,0.0619,0.9797,-0.1906,0.1178,0.9797,-0.1621,0.1621,0.9797,-0.1178,0.1906,0.9797,-0.0619,0.2004,0.9797,0.0,0.1906,0.9797,0.0619,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0],"tangents":[-0.4482,-0.0307,0.8934,-1.0,-0.5629,0.0062,0.8265,-1.0,-0.438,-0.0493,0.8976,-1.0,-0.5878,0.0,0.809,-1.0,-0.7908,0.0062,0.6121,-1.0,-0.809,0.0,0.5878,-1.0,-0.9412,0.0062,0.3378,-1.0,-0.9511,0.0,0.309,-1.0,-0.9995,0.0062,0.0304,-1.0,-1.0,0.0,0.0,-1.0,-0.96,0.0062,-0.28,-1.0,-0.9511,0.0,-0.309,-1.0,-0.8265,0.0062,-0.5629,-1.0,-0.809,0.0,-0.5878,-1.0,-0.6121,0.0062,-0.7908,-1.0,-0.5878,0.0,-0.809,-1.0,-0.3378,0.0062,-0.9412,-1.0,-0.309,0.0,-0.9511,-1.0,-0.0304,0.0062,-0.9995,-1.0,0.0,0.0,-1.0,-1.0,0.28,0.0062,-0.96,-1.0,0.309,0.0,-0.9511,-1.0,0.5629,0.0062,-0.8265,-1.0,0.5878,0.0,-0.809,-1.0,0.7908,0.0062,-0.6121,-1.0,0.809,0.0,-0.5878,-1.0,0.9412,0.0062,-0.3378,-1.0,0.9511,0.0,-0.309,-1.0,0.9995,0.0062,-0.0304,-1.0,1.0,0.0,0.0,-1.0,0.96,0.0062,0.28,-1.0,0.9511,0.0,0.309,-1.0,0.8265,0.0062,0.5629,-1.0,0.809,0.0,0.5878,-1.0,0.6121,0.0062,0.7908,-1.0,0.5878,0.0,0.809,-1.0,0.3378,0.0062,0.9412,-1.0,0.309,0.0,0.9511,-1.0,0.0304,0.0062,0.9995,-1.0,0.0,0.0,1.0,-1.0,-0.1625,0.0307,0.9862,-1.0,-0.1732,0.0493,0.9836,-1.0,-0.4222,-0.0651,0.9042,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.1899,0.0651,0.9796,-1.0,-0.4023,-0.0754,0.9124,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.2109,0.0754,0.9746,-1.0,-0.3802,-0.0787,0.9215,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.234,0.0787,0.969,-1.0,-0.3582,-0.0745,0.9306,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.2572,0.0745,0.9635,-1.0,-0.3384,-0.0633,0.9389,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.2781,0.0633,0.9585,-1.0,-0.3226,-0.0459,0.9454,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.2947,0.0459,0.9545,-1.0,-0.3125,-0.0241,0.9496,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.3053,0.0241,0.9519,-1.0,-0.309,0.0,0.9511,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.309,0.0,0.9511,-1.0,-0.3125,0.0241,0.9496,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.3053,-0.0241,0.9519,-1.0,-0.3226,0.0459,0.9454,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.2947,-0.0459,0.9545,-1.0,-0.3384,0.0633,0.9389,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.2781,-0.0633,0.9585,-1.0,-0.3582,0.0745,0.9306,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.2572,-0.0745,0.9635,-1.0,-0.3802,0.0787,0.9215,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.234,-0.0787,0.969,-1.0,-0.4023,0.0754,0.9124,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.2109,-0.0754,0.9746,-1.0,-0.4222,0.0651,0.9042,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.1899,-0.0651,0.9796,-1.0,-0.438,0.0493,0.8976,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.1732,-0.0493,0.9836,-1.0,-0.4482,0.0307,0.8934,-1.0,-0.6121,0.0062,0.7908,-1.0,-0.8265,0.0062,0.5629,-1.0,-0.96,0.0062,0.28,-1.0,-0.9995,0.0062,-0.0304,-1.0,-0.9412,0.0062,-0.3378,-1.0,-0.7908,0.0062,-0.6121,-1.0,-0.5629,0.0062,-0.8265,-1.0,-0.28,0.0062,-0.96,-1.0,0.0304,0.0062,-0.9995,-1.0,0.3378,0.0062,-0.9412,-1.0,0.6121,0.0062,-0.7908,-1.0,0.8265,0.0062,-0.5629,-1.0,0.96,0.0062,-0.28,-1.0,0.9995,0.0062,0.0304,-1.0,0.9412,0.0062,0.3378,-1.0,0.7908,0.0062,0.6121,-1.0,0.5629,0.0062,0.8265,-1.0,0.28,0.0062,0.96,-1.0,-0.0304,0.0062,0.9995,-1.0,-0.1625,-0.0307,0.9862,-1.0,-0.454,0.0,0.891,-1.0,-0.7071,0.0,0.7071,-1.0,-0.891,0.0,0.454,-1.0,-0.9877,0.0,0.1564,-1.0,-0.9877,0.0,-0.1564,-1.0,-0.891,0.0,-0.454,-1.0,-0.7071,0.0,-0.7071,-1.0,-0.454,0.0,-0.891,-1.0,-0.1564,0.0,-0.9877,-1.0,0.1564,0.0,-0.9877,-1.0,0.454,0.0,-0.891,-1.0,0.7071,0.0,-0.7071,-1.0,0.891,0.0,-0.454,-1.0,0.9877,0.0,-0.1564,-1.0,0.9877,0.0,0.1564,-1.0,0.891,0.0,0.454,-1.0,0.7071,0.0,0.7071,-1.0,0.454,0.0,0.891,-1.0,0.1564,0.0,0.9877,-1.0,-0.1564,0.0,0.9877,-1.0,-0.454,0.0,0.891,-1.0,-0.7071,0.0,0.7071,-1.0,-0.891,0.0,0.454,-1.0,-0.9877,0.0,0.1564,-1.0,-0.9877,0.0,-0.1564,-1.0,-0.891,0.0,-0.454,-1.0,-0.7071,0.0,-0.7071,-1.0,-0.454,0.0,-0.891,-1.0,-0.1564,0.0,-0.9877,-1.0,0.1564,0.0,-0.9877,-1.0,0.454,0.0,-0.891,-1.0,0.7071,0.0,-0.7071,-1.0,0.891,0.0,-0.454,-1.0,0.9877,0.0,-0.1564,-1.0,0.9877,0.0,0.1564,-1.0,0.891,0.0,0.454,-1.0,0.7071,0.0,0.7071,-1.0,0.454,0.0,0.891,-1.0,0.1564,0.0,0.9877,-1.0,-0.1564,0.0,0.9877,-1.0],"uvs":[0.0,0.05,0.05,0.05,0.0,0.1,0.05,0.1,0.1,0.05,0.1,0.1,0.15,0.05,0.15,0.1,0.2,0.05,0.2,0.1,0.25,0.05,0.25,0.1,0.3,0.05,0.3,0.1,0.35,0.05,0.35,0.1,0.4,0.05,0.4,0.1,0.45,0.05,0.45,0.1,0.5,0.05,0.5,0.1,0.55,0.05,0.55,0.1,0.6,0.05,0.6,0.1,0.65,0.05,0.65,0.1,0.7,0.05,0.7,0.1,0.75,0.05,0.75,0.1,0.8,0.05,0.8,0.1,0.85,0.05,0.85,0.1,0.9,0.05,0.9,0.1,0.95,0.05,0.95,0.1,1.0,0.05,1.0,0.1,0.0,0.15,0.05,0.15,0.1,0.15,0.15,0.15,0.2,0.15,0.25,0.15,0.3,0.15,0.35,0.15,0.4,0.15,0.45,0.15,0.5,0.15,0.55,0.15,0.6,0.15,0.65,0.15,0.7,0.15,0.75,0.15,0.8,0.15,0.85,0.15,0.9,0.15,0.95,0.15,1.0,0.15,0.0,0.2,0.05,0.2,0.1,0.2,0.15,0.2,0.2,0.2,0.25,0.2,0.3,0.2,0.35,0.2,0.4,0.2,0.45,0.2,0.5,0.2,0.55,0.2,0.6,0.2,0.65,0.2,0.7,0.2,0.75,0.2,0.8,0.2,0.85,0.2,0.9,0.2,0.95,0.2,1.0,0.2,0.0,0.25,0.05,0.25,0.1,0.25,0.15,0.25,0.2,0.25,0.25,0.25,0.3,0.25,0.35,0.25,0.4,0.25,0.45,0.25,0.5,0.25,0.55,0.25,0.6,0.25,0.65,0.25,0.7,0.25,0.75,0.25,0.8,0.25,0.85,0.25,0.9,0.25,0.95,0.25,1.0,0.25,0.0,0.3,0.05,0.3,0.1,0.3,0.15,0.3,0.2,0.3,0.25,0.3,0.3,0.3,0.35,0.3,0.4,0.3,0.45,0.3,0.5,0.3,0.55,0.3,0.6,0.3,0.65,0.3,0.7,0.3,0.75,0.3,0.8,0.3,0.85,0.3,0.9,0.3,0.95,0.3,1.0,0.3,0.0,0.35,0.05,0.35,0.1,0.35,0.15,0.35,0.2,0.35,0.25,0.35,0.3,0.35,0.35,0.35,0.4,0.35,0.45,0.35,0.5,0.35,0.55,0.35,0.6,0.35,0.65,0.35,0.7,0.35,0.75,0.35,0.8,0.35,0.85,0.35,0.9,0.35,0.95,0.35,1.0,0.35,0.0,0.4,0.05,0.4,0.1,0.4,0.15,0.4,0.2,0.4,0.25,0.4,0.3,0.4,0.35,0.4,0.4,0.4,0.45,0.4,0.5,0.4,0.55,0.4,0.6,0.4,0.65,0.4,0.7,0.4,0.75,0.4,0.8,0.4,0.85,0.4,0.9,0.4,0.95,0.4,1.0,0.4,0.0,0.45,0.05,0.45,0.1,0.45,0.15,0.45,0.2,0.45,0.25,0.45,0.3,0.45,0.35,0.45,0.4,0.45,0.45,0.45,0.5,0.45,0.55,0.45,0.6,0.45,0.65,0.45,0.7,0.45,0.75,0.45,0.8,0.45,0.85,0.45,0.9,0.45,0.95,0.45,1.0,0.45,0.0,0.5,0.05,0.5,0.1,0.5,0.15,0.5,0.2,0.5,0.25,0.5,0.3,0.5,0.35,0.5,0.4,0.5,0.45,0.5,0.5,0.5,0.55,0.5,0.6,0.5,0.65,0.5,0.7,0.5,0.75,0.5,0.8,0.5,0.85,0.5,0.9,0.5,0.95,0.5,1.0,0.5,0.0,0.55,0.05,0.55,0.1,0.55,0.15,0.55,0.2,0.55,0.25,0.55,0.3,0.55,0.35,0.55,0.4,0.55,0.45,0.55,0.5,0.55,0.55,0.55,0.6,0.55,0.65,0.55,0.7,0.55,0.75,0.55,0.8,0.55,0.85,0.55,0.9,0.55,0.95,0.55,1.0,0.55,0.0,0.6,0.05,0.6,0.1,0.6,0.15,0.6,0.2,0.6,0.25,0.6,0.3,0.6,0.35,0.6,0.4,0.6,0.45,0.6,0.5,0.6,0.55,0.6,0.6,0.6,0.65,0.6,0.7,0.6,0.75,0.6,0.8,0.6,0.85,0.6,0.9,0.6,0.95,0.6,1.0,0.6,0.0,0.65,0.05,0.65,0.1,0.65,0.15,0.65,0.2,0.65,0.25,0.65,0.3,0.65,0.35,0.65,0.4,0.65,0.45,0.65,0.5,0.65,0.55,0.65,0.6,0.65,0.65,0.65,0.7,0.65,0.75,0.65,0.8,0.65,0.85,0.65,0.9,0.65,0.95,0.65,1.0,0.65,0.0,0.7,0.05,0.7,0.1,0.7,0.15,0.7,0.2,0.7,0.25,0.7,0.3,0.7,0.35,0.7,0.4,0.7,0.45,0.7,0.5,0.7,0.55,0.7,0.6,0.7,0.65,0.7,0.7,0.7,0.75,0.7,0.8,0.7,0.85,0.7,0.9,0.7,0.95,0.7,1.0,0.7,0.0,0.75,0.05,0.75,0.1,0.75,0.15,0.75,0.2,0.75,0.25,0.75,0.3,0.75,0.35,0.75,0.4,0.75,0.45,0.75,0.5,0.75,0.55,0.75,0.6,0.75,0.65,0.75,0.7,0.75,0.75,0.75,0.8,0.75,0.85,0.75,0.9,0.75,0.95,0.75,1.0,0.75,0.0,0.8,0.05,0.8,0.1,0.8,0.15,0.8,0.2,0.8,0.25,0.8,0.3,0.8,0.35,0.8,0.4,0.8,0.45,0.8,0.5,0.8,0.55,0.8,0.6,0.8,0.65,0.8,0.7,0.8,0.75,0.8,0.8,0.8,0.85,0.8,0.9,0.8,0.95,0.8,1.0,0.8,0.0,0.85,0.05,0.85,0.1,0.85,0.15,0.85,0.2,0.85,0.25,0.85,0.3,0.85,0.35,0.85,0.4,0.85,0.45,0.85,0.5,0.85,0.55,0.85,0.6,0.85,0.65,0.85,0.7,0.85,0.75,0.85,0.8,0.85,0.85,0.85,0.9,0.85,0.95,0.85,1.0,0.85,0.0,0.9,0.05,0.9,0.1,0.9,0.15,0.9,0.2,0.9,0.25,0.9,0.3,0.9,0.35,0.9,0.4,0.9,0.45,0.9,0.5,0.9,0.55,0.9,0.6,0.9,0.65,0.9,0.7,0.9,0.75,0.9,0.8,0.9,0.85,0.9,0.9,0.9,0.95,0.9,1.0,0.9,0.0,0.95,0.05,0.95,0.1,0.95,0.15,0.95,0.2,0.95,0.25,0.95,0.3,0.95,0.35,0.95,0.4,0.95,0.45,0.95,0.5,0.95,0.55,0.95,0.6,0.95,0.65,0.95,0.7,0.95,0.75,0.95,0.8,0.95,0.85,0.95,0.9,0.95,0.95,0.95,1.0,0.95,0.025,0.0,0.075,0.0,0.125,0.0,0.175,0.0,0.225,0.0,0.275,0.0,0.325,0.0,0.375,0.0,0.425,0.0,0.475,0.0,0.525,0.0,0.575,0.0,0.625,0.0,0.675,0.0,0.725,0.0,0.775,0.0,0.825,0.0,0.875,0.0,0.925,0.0,0.975,0.0,0.025,1.0,0.075,1.0,0.125,1.0,0.175,1.0,0.225,1.0,0.275,1.0,0.325,1.0,0.375,1.0,0.425,1.0,0.475,1.0,0.525,1.0,0.575,1.0,0.625,1.0,0.675,1.0,0.725,1.0,0.775,1.0,0.825,1.0,0.875,1.0,0.925,1.0,0.975,1.0],"uvs2":null,"colors":null,"hasVertexAlpha":false,"matricesIndices":null,"matricesWeights":null,"matricesIndicesExtra":null,"matricesWeightsExtra":null,"indices":[0,1,2,2,1,3,1,4,3,3,4,5,4,6,5,5,6,7,6,8,7,7,8,9,8,10,9,9,10,11,10,12,11,11,12,13,12,14,13,13,14,15,14,16,15,15,16,17,16,18,17,17,18,19,18,20,19,19,20,21,20,22,21,21,22,23,22,24,23,23,24,25,24,26,25,25,26,27,26,28,27,27,28,29,28,30,29,29,30,31,30,32,31,31,32,33,32,34,33,33,34,35,34,36,35,35,36,37,36,38,37,37,38,39,38,40,39,39,40,41,2,3,42,42,3,43,3,5,43,43,5,44,5,7,44,44,7,45,7,9,45,45,9,46,9,11,46,46,11,47,11,13,47,47,13,48,13,15,48,48,15,49,15,17,49,49,17,50,17,19,50,50,19,51,19,21,51,51,21,52,21,23,52,52,23,53,23,25,53,53,25,54,25,27,54,54,27,55,27,29,55,55,29,56,29,31,56,56,31,57,31,33,57,57,33,58,33,35,58,58,35,59,35,37,59,59,37,60,37,39,60,60,39,61,39,41,61,61,41,62,42,43,63,63,43,64,43,44,64,64,44,65,44,45,65,65,45,66,45,46,66,66,46,67,46,47,67,67,47,68,47,48,68,68,48,69,48,49,69,69,49,70,49,50,70,70,50,71,50,51,71,71,51,72,51,52,72,72,52,73,52,53,73,73,53,74,53,54,74,74,54,75,54,55,75,75,55,76,55,56,76,76,56,77,56,57,77,77,57,78,57,58,78,78,58,79,58,59,79,79,59,80,59,60,80,80,60,81,60,61,81,81,61,82,61,62,82,82,62,83,63,64,84,84,64,85,64,65,85,85,65,86,65,66,86,86,66,87,66,67,87,87,67,88,67,68,88,88,68,89,68,69,89,89,69,90,69,70,90,90,70,91,70,71,91,91,71,92,71,72,92,92,72,93,72,73,93,93,73,94,73,74,94,94,74,95,74,75,95,95,75,96,75,76,96,96,76,97,76,77,97,97,77,98,77,78,98,98,78,99,78,79,99,99,79,100,79,80,100,100,80,101,80,81,101,101,81,102,81,82,102,102,82,103,82,83,103,103,83,104,84,85,105,105,85,106,85,86,106,106,86,107,86,87,107,107,87,108,87,88,108,108,88,109,88,89,109,109,89,110,89,90,110,110,90,111,90,91,111,111,91,112,91,92,112,112,92,113,92,93,113,113,93,114,93,94,114,114,94,115,94,95,115,115,95,116,95,96,116,116,96,117,96,97,117,117,97,118,97,98,118,118,98,119,98,99,119,119,99,120,99,100,120,120,100,121,100,101,121,121,101,122,101,102,122,122,102,123,102,103,123,123,103,124,103,104,124,124,104,125,105,106,126,126,106,127,106,107,127,127,107,128,107,108,128,128,108,129,108,109,129,129,109,130,109,110,130,130,110,131,110,111,131,131,111,132,111,112,132,132,112,133,112,113,133,133,113,134,113,114,134,134,114,135,114,115,135,135,115,136,115,116,136,136,116,137,116,117,137,137,117,138,117,118,138,138,118,139,118,119,139,139,119,140,119,120,140,140,120,141,120,121,141,141,121,142,121,122,142,142,122,143,122,123,143,143,123,144,123,124,144,144,124,145,124,125,145,145,125,146,126,127,147,147,127,148,127,128,148,148,128,149,128,129,149,149,129,150,129,130,150,150,130,151,130,131,151,151,131,152,131,132,152,152,132,153,132,133,153,153,133,154,133,134,154,154,134,155,134,135,155,155,135,156,135,136,156,156,136,157,136,137,157,157,137,158,137,138,158,158,138,159,138,139,159,159,139,160,139,140,160,160,140,161,140,141,161,161,141,162,141,142,162,162,142,163,142,143,163,163,143,164,143,144,164,164,144,165,144,145,165,165,145,166,145,146,166,166,146,167,147,148,168,168,148,169,148,149,169,169,149,170,149,150,170,170,150,171,150,151,171,171,151,172,151,152,172,172,152,173,152,153,173,173,153,174,153,154,174,174,154,175,154,155,175,175,155,176,155,156,176,176,156,177,156,157,177,177,157,178,157,158,178,178,158,179,158,159,179,179,159,180,159,160,180,180,160,181,160,161,181,181,161,182,161,162,182,182,162,183,162,163,183,183,163,184,163,164,184,184,164,185,164,165,185,185,165,186,165,166,186,186,166,187,166,167,187,187,167,188,168,169,189,189,169,190,169,170,190,190,170,191,170,171,191,191,171,192,171,172,192,192,172,193,172,173,193,193,173,194,173,174,194,194,174,195,174,175,195,195,175,196,175,176,196,196,176,197,176,177,197,197,177,198,177,178,198,198,178,199,178,179,199,199,179,200,179,180,200,200,180,201,180,181,201,201,181,202,181,182,202,202,182,203,182,183,203,203,183,204,183,184,204,204,184,205,184,185,205,205,185,206,185,186,206,206,186,207,186,187,207,207,187,208,187,188,208,208,188,209,189,190,210,210,190,211,190,191,211,211,191,212,191,192,212,212,192,213,192,193,213,213,193,214,193,194,214,214,194,215,194,195,215,215,195,216,195,196,216,216,196,217,196,197,217,217,197,218,197,198,218,218,198,219,198,199,219,219,199,220,199,200,220,220,200,221,200,201,221,221,201,222,201,202,222,222,202,223,202,203,223,223,203,224,203,204,224,224,204,225,204,205,225,225,205,226,205,206,226,226,206,227,206,207,227,227,207,228,207,208,228,228,208,229,208,209,229,229,209,230,210,211,231,231,211,232,211,212,232,232,212,233,212,213,233,233,213,234,213,214,234,234,214,235,214,215,235,235,215,236,215,216,236,236,216,237,216,217,237,237,217,238,217,218,238,238,218,239,218,219,239,239,219,240,219,220,240,240,220,241,220,221,241,241,221,242,221,222,242,242,222,243,222,223,243,243,223,244,223,224,244,244,224,245,224,225,245,245,225,246,225,226,246,246,226,247,226,227,247,247,227,248,227,228,248,248,228,249,228,229,249,249,229,250,229,230,250,250,230,251,231,232,252,252,232,253,232,233,253,253,233,254,233,234,254,254,234,255,234,235,255,255,235,256,235,236,256,256,236,257,236,237,257,257,237,258,237,238,258,258,238,259,238,239,259,259,239,260,239,240,260,260,240,261,240,241,261,261,241,262,241,242,262,262,242,263,242,243,263,263,243,264,243,244,264,264,244,265,244,245,265,265,245,266,245,246,266,266,246,267,246,247,267,267,247,268,247,248,268,268,248,269,248,249,269,269,249,270,249,250,270,270,250,271,250,251,271,271,251,272,252,253,273,273,253,274,253,254,274,274,254,275,254,255,275,275,255,276,255,256,276,276,256,277,256,257,277,277,257,278,257,258,278,278,258,279,258,259,279,279,259,280,259,260,280,280,260,281,260,261,281,281,261,282,261,262,282,282,262,283,262,263,283,283,263,284,263,264,284,284,264,285,264,265,285,285,265,286,265,266,286,286,266,287,266,267,287,287,267,288,267,268,288,288,268,289,268,269,289,289,269,290,269,270,290,290,270,291,270,271,291,291,271,292,271,272,292,292,272,293,273,274,294,294,274,295,274,275,295,295,275,296,275,276,296,296,276,297,276,277,297,297,277,298,277,278,298,298,278,299,278,279,299,299,279,300,279,280,300,300,280,301,280,281,301,301,281,302,281,282,302,302,282,303,282,283,303,303,283,304,283,284,304,304,284,305,284,285,305,305,285,306,285,286,306,306,286,307,286,287,307,307,287,308,287,288,308,308,288,309,288,289,309,309,289,310,289,290,310,310,290,311,290,291,311,311,291,312,291,292,312,312,292,313,292,293,313,313,293,314,294,295,315,315,295,316,295,296,316,316,296,317,296,297,317,317,297,318,297,298,318,318,298,319,298,299,319,319,299,320,299,300,320,320,300,321,300,301,321,321,301,322,301,302,322,322,302,323,302,303,323,323,303,324,303,304,324,324,304,325,304,305,325,325,305,326,305,306,326,326,306,327,306,307,327,327,307,328,307,308,328,328,308,329,308,309,329,329,309,330,309,310,330,330,310,331,310,311,331,331,311,332,311,312,332,332,312,333,312,313,333,333,313,334,313,314,334,334,314,335,315,316,336,336,316,337,316,317,337,337,317,338,317,318,338,338,318,339,318,319,339,339,319,340,319,320,340,340,320,341,320,321,341,341,321,342,321,322,342,342,322,343,322,323,343,343,323,344,323,324,344,344,324,345,324,325,345,345,325,346,325,326,346,346,326,347,326,327,347,347,327,348,327,328,348,348,328,349,328,329,349,349,329,350,329,330,350,350,330,351,330,331,351,351,331,352,331,332,352,352,332,353,332,333,353,353,333,354,333,334,354,354,334,355,334,335,355,355,335,356,336,337,357,357,337,358,337,338,358,358,338,359,338,339,359,359,339,360,339,340,360,360,340,361,340,341,361,361,341,362,341,342,362,362,342,363,342,343,363,363,343,364,343,344,364,364,344,365,344,345,365,365,345,366,345,346,366,366,346,367,346,347,367,367,347,368,347,348,368,368,348,369,348,349,369,369,349,370,349,350,370,370,350,371,350,351,371,371,351,372,351,352,372,372,352,373,352,353,373,373,353,374,353,354,374,374,354,375,354,355,375,375,355,376,355,356,376,376,356,377,357,358,378,378,358,379,358,359,379,379,359,380,359,360,380,380,360,381,360,361,381,381,361,382,361,362,382,382,362,383,362,363,383,383,363,384,363,364,384,384,364,385,364,365,385,385,365,386,365,366,386,386,366,387,366,367,387,387,367,388,367,368,388,388,368,389,368,369,389,389,369,390,369,370,390,390,370,391,370,371,391,391,371,392,371,372,392,392,372,393,372,373,393,393,373,394,373,374,394,394,374,395,374,375,395,395,375,396,375,376,396,396,376,397,376,377,397,397,377,398,1,0,399,4,1,400,6,4,401,8,6,402,10,8,403,12,10,404,14,12,405,16,14,406,18,16,407,20,18,408,22,20,409,24,22,410,26,24,411,28,26,412,30,28,413,32,30,414,34,32,415,36,34,416,38,36,417,40,38,418,378,379,419,379,380,420,380,381,421,381,382,422,382,383,423,383,384,424,384,385,425,385,386,426,386,387,427,387,388,428,388,389,429,389,390,430,390,391,431,391,392,432,392,393,433,393,394,434,394,395,435,395,396,436,396,397,437,397,398,438],"receiveShadows":false,"infiniteDistance":false,"billboardMode":0,"visibility":1.0,"subMeshes":[{"materialIndex":0,"verticesStart":0,"verticesCount":439,"indexStart":0,"indexCount":2280}],"instances":null,"skeletonId":-1,"numBoneInfluencers":4,"applyFog":false,"lodMeshIds":null,"lodDistances":null,"lodCoverages":null,"rotation":null,"scaling":[1.0,1.0,1.0],"rotationQuaternion":[0.0,0.1736,0.0,0.9848],"actions":null,"checkCollisions":false,"pickable":true,"showBoundingBox":false,"showSubMeshesBoundingBox":false,"alphaIndex":0,"physicsImpostor":0,"physicsMass":0.0,"physicsFriction":0.0,"physicsRestitution":0.0,"name":"pSphere3","id":"3CC7A685-448C-CD8D-6923-DC9A8FDA8EAE","parentId":null,"position":[6.0,0.0,0.0],"animations":[],"autoAnimate":true,"autoAnimateFrom":1,"autoAnimateTo":200,"autoAnimateLoop":true,"metadata":{}},{"materialId":"C33371E3-49CC-50AB-9549-80BD2392C0F8","isEnabled":true,"isVisible":true,"positions":[0.1488,-0.9877,0.0483,0.1266,-0.9877,0.0919,0.2939,-0.9511,0.0955,0.25,-0.9511,0.1816,0.0919,-0.9877,0.1266,0.1816,-0.9511,0.25,0.0483,-0.9877,0.1488,0.0955,-0.9511,0.2939,0.0,-0.9877,0.1564,0.0,-0.9511,0.309,-0.0483,-0.9877,0.1488,-0.0955,-0.9511,0.2939,-0.0919,-0.9877,0.1266,-0.1816,-0.9511,0.25,-0.1266,-0.9877,0.0919,-0.25,-0.9511,0.1816,-0.1488,-0.9877,0.0483,-0.2939,-0.9511,0.0955,-0.1564,-0.9877,0.0,-0.309,-0.9511,0.0,-0.1488,-0.9877,-0.0483,-0.2939,-0.9511,-0.0955,-0.1266,-0.9877,-0.0919,-0.25,-0.9511,-0.1816,-0.0919,-0.9877,-0.1266,-0.1816,-0.9511,-0.25,-0.0483,-0.9877,-0.1488,-0.0955,-0.9511,-0.2939,0.0,-0.9877,-0.1564,0.0,-0.9511,-0.309,0.0483,-0.9877,-0.1488,0.0955,-0.9511,-0.2939,0.0919,-0.9877,-0.1266,0.1816,-0.9511,-0.25,0.1266,-0.9877,-0.0919,0.25,-0.9511,-0.1816,0.1488,-0.9877,-0.0483,0.2939,-0.9511,-0.0955,0.1564,-0.9877,0.0,0.309,-0.9511,0.0,0.1488,-0.9877,0.0483,0.2939,-0.9511,0.0955,0.4318,-0.891,0.1403,0.3673,-0.891,0.2668,0.2668,-0.891,0.3673,0.1403,-0.891,0.4318,0.0,-0.891,0.454,-0.1403,-0.891,0.4318,-0.2668,-0.891,0.3673,-0.3673,-0.891,0.2668,-0.4318,-0.891,0.1403,-0.454,-0.891,0.0,-0.4318,-0.891,-0.1403,-0.3673,-0.891,-0.2668,-0.2668,-0.891,-0.3673,-0.1403,-0.891,-0.4318,0.0,-0.891,-0.454,0.1403,-0.891,-0.4318,0.2668,-0.891,-0.3673,0.3673,-0.891,-0.2668,0.4318,-0.891,-0.1403,0.454,-0.891,0.0,0.4318,-0.891,0.1403,0.559,-0.809,0.1816,0.4755,-0.809,0.3455,0.3455,-0.809,0.4755,0.1816,-0.809,0.559,0.0,-0.809,0.5878,-0.1816,-0.809,0.559,-0.3455,-0.809,0.4755,-0.4755,-0.809,0.3455,-0.559,-0.809,0.1816,-0.5878,-0.809,0.0,-0.559,-0.809,-0.1816,-0.4755,-0.809,-0.3455,-0.3455,-0.809,-0.4755,-0.1816,-0.809,-0.559,0.0,-0.809,-0.5878,0.1816,-0.809,-0.559,0.3455,-0.809,-0.4755,0.4755,-0.809,-0.3455,0.559,-0.809,-0.1816,0.5878,-0.809,0.0,0.559,-0.809,0.1816,0.6725,-0.7071,0.2185,0.5721,-0.7071,0.4156,0.4156,-0.7071,0.5721,0.2185,-0.7071,0.6725,0.0,-0.7071,0.7071,-0.2185,-0.7071,0.6725,-0.4156,-0.7071,0.5721,-0.5721,-0.7071,0.4156,-0.6725,-0.7071,0.2185,-0.7071,-0.7071,0.0,-0.6725,-0.7071,-0.2185,-0.5721,-0.7071,-0.4156,-0.4156,-0.7071,-0.5721,-0.2185,-0.7071,-0.6725,0.0,-0.7071,-0.7071,0.2185,-0.7071,-0.6725,0.4156,-0.7071,-0.5721,0.5721,-0.7071,-0.4156,0.6725,-0.7071,-0.2185,0.7071,-0.7071,0.0,0.6725,-0.7071,0.2185,0.7694,-0.5878,0.25,0.6545,-0.5878,0.4755,0.4755,-0.5878,0.6545,0.25,-0.5878,0.7694,0.0,-0.5878,0.809,-0.25,-0.5878,0.7694,-0.4755,-0.5878,0.6545,-0.6545,-0.5878,0.4755,-0.7694,-0.5878,0.25,-0.809,-0.5878,0.0,-0.7694,-0.5878,-0.25,-0.6545,-0.5878,-0.4755,-0.4755,-0.5878,-0.6545,-0.25,-0.5878,-0.7694,0.0,-0.5878,-0.809,0.25,-0.5878,-0.7694,0.4755,-0.5878,-0.6545,0.6545,-0.5878,-0.4755,0.7694,-0.5878,-0.25,0.809,-0.5878,0.0,0.7694,-0.5878,0.25,0.8474,-0.454,0.2753,0.7208,-0.454,0.5237,0.5237,-0.454,0.7208,0.2753,-0.454,0.8474,0.0,-0.454,0.891,-0.2753,-0.454,0.8474,-0.5237,-0.454,0.7208,-0.7208,-0.454,0.5237,-0.8474,-0.454,0.2753,-0.891,-0.454,0.0,-0.8474,-0.454,-0.2753,-0.7208,-0.454,-0.5237,-0.5237,-0.454,-0.7208,-0.2753,-0.454,-0.8474,0.0,-0.454,-0.891,0.2753,-0.454,-0.8474,0.5237,-0.454,-0.7208,0.7208,-0.454,-0.5237,0.8474,-0.454,-0.2753,0.891,-0.454,0.0,0.8474,-0.454,0.2753,0.9045,-0.309,0.2939,0.7694,-0.309,0.559,0.559,-0.309,0.7694,0.2939,-0.309,0.9045,0.0,-0.309,0.9511,-0.2939,-0.309,0.9045,-0.559,-0.309,0.7694,-0.7694,-0.309,0.559,-0.9045,-0.309,0.2939,-0.9511,-0.309,0.0,-0.9045,-0.309,-0.2939,-0.7694,-0.309,-0.559,-0.559,-0.309,-0.7694,-0.2939,-0.309,-0.9045,0.0,-0.309,-0.9511,0.2939,-0.309,-0.9045,0.559,-0.309,-0.7694,0.7694,-0.309,-0.559,0.9045,-0.309,-0.2939,0.9511,-0.309,0.0,0.9045,-0.309,0.2939,0.9393,-0.1564,0.3052,0.7991,-0.1564,0.5805,0.5805,-0.1564,0.7991,0.3052,-0.1564,0.9393,0.0,-0.1564,0.9877,-0.3052,-0.1564,0.9393,-0.5805,-0.1564,0.7991,-0.7991,-0.1564,0.5805,-0.9393,-0.1564,0.3052,-0.9877,-0.1564,0.0,-0.9393,-0.1564,-0.3052,-0.7991,-0.1564,-0.5805,-0.5805,-0.1564,-0.7991,-0.3052,-0.1564,-0.9393,0.0,-0.1564,-0.9877,0.3052,-0.1564,-0.9393,0.5805,-0.1564,-0.7991,0.7991,-0.1564,-0.5805,0.9393,-0.1564,-0.3052,0.9877,-0.1564,0.0,0.9393,-0.1564,0.3052,0.9511,0.0,0.309,0.809,0.0,0.5878,0.5878,0.0,0.809,0.309,0.0,0.9511,0.0,0.0,1.0,-0.309,0.0,0.9511,-0.5878,0.0,0.809,-0.809,0.0,0.5878,-0.9511,0.0,0.309,-1.0,0.0,0.0,-0.9511,0.0,-0.309,-0.809,0.0,-0.5878,-0.5878,0.0,-0.809,-0.309,0.0,-0.9511,0.0,0.0,-1.0,0.309,0.0,-0.9511,0.5878,0.0,-0.809,0.809,0.0,-0.5878,0.9511,0.0,-0.309,1.0,0.0,0.0,0.9511,0.0,0.309,0.9393,0.1564,0.3052,0.7991,0.1564,0.5805,0.5805,0.1564,0.7991,0.3052,0.1564,0.9393,0.0,0.1564,0.9877,-0.3052,0.1564,0.9393,-0.5805,0.1564,0.7991,-0.7991,0.1564,0.5805,-0.9393,0.1564,0.3052,-0.9877,0.1564,0.0,-0.9393,0.1564,-0.3052,-0.7991,0.1564,-0.5805,-0.5805,0.1564,-0.7991,-0.3052,0.1564,-0.9393,0.0,0.1564,-0.9877,0.3052,0.1564,-0.9393,0.5805,0.1564,-0.7991,0.7991,0.1564,-0.5805,0.9393,0.1564,-0.3052,0.9877,0.1564,0.0,0.9393,0.1564,0.3052,0.9045,0.309,0.2939,0.7694,0.309,0.559,0.559,0.309,0.7694,0.2939,0.309,0.9045,0.0,0.309,0.9511,-0.2939,0.309,0.9045,-0.559,0.309,0.7694,-0.7694,0.309,0.559,-0.9045,0.309,0.2939,-0.9511,0.309,0.0,-0.9045,0.309,-0.2939,-0.7694,0.309,-0.559,-0.559,0.309,-0.7694,-0.2939,0.309,-0.9045,0.0,0.309,-0.9511,0.2939,0.309,-0.9045,0.559,0.309,-0.7694,0.7694,0.309,-0.559,0.9045,0.309,-0.2939,0.9511,0.309,0.0,0.9045,0.309,0.2939,0.8474,0.454,0.2753,0.7208,0.454,0.5237,0.5237,0.454,0.7208,0.2753,0.454,0.8474,0.0,0.454,0.891,-0.2753,0.454,0.8474,-0.5237,0.454,0.7208,-0.7208,0.454,0.5237,-0.8474,0.454,0.2753,-0.891,0.454,0.0,-0.8474,0.454,-0.2753,-0.7208,0.454,-0.5237,-0.5237,0.454,-0.7208,-0.2753,0.454,-0.8474,0.0,0.454,-0.891,0.2753,0.454,-0.8474,0.5237,0.454,-0.7208,0.7208,0.454,-0.5237,0.8474,0.454,-0.2753,0.891,0.454,0.0,0.8474,0.454,0.2753,0.7694,0.5878,0.25,0.6545,0.5878,0.4755,0.4755,0.5878,0.6545,0.25,0.5878,0.7694,0.0,0.5878,0.809,-0.25,0.5878,0.7694,-0.4755,0.5878,0.6545,-0.6545,0.5878,0.4755,-0.7694,0.5878,0.25,-0.809,0.5878,0.0,-0.7694,0.5878,-0.25,-0.6545,0.5878,-0.4755,-0.4755,0.5878,-0.6545,-0.25,0.5878,-0.7694,0.0,0.5878,-0.809,0.25,0.5878,-0.7694,0.4755,0.5878,-0.6545,0.6545,0.5878,-0.4755,0.7694,0.5878,-0.25,0.809,0.5878,0.0,0.7694,0.5878,0.25,0.6725,0.7071,0.2185,0.5721,0.7071,0.4156,0.4156,0.7071,0.5721,0.2185,0.7071,0.6725,0.0,0.7071,0.7071,-0.2185,0.7071,0.6725,-0.4156,0.7071,0.5721,-0.5721,0.7071,0.4156,-0.6725,0.7071,0.2185,-0.7071,0.7071,0.0,-0.6725,0.7071,-0.2185,-0.5721,0.7071,-0.4156,-0.4156,0.7071,-0.5721,-0.2185,0.7071,-0.6725,0.0,0.7071,-0.7071,0.2185,0.7071,-0.6725,0.4156,0.7071,-0.5721,0.5721,0.7071,-0.4156,0.6725,0.7071,-0.2185,0.7071,0.7071,0.0,0.6725,0.7071,0.2185,0.559,0.809,0.1816,0.4755,0.809,0.3455,0.3455,0.809,0.4755,0.1816,0.809,0.559,0.0,0.809,0.5878,-0.1816,0.809,0.559,-0.3455,0.809,0.4755,-0.4755,0.809,0.3455,-0.559,0.809,0.1816,-0.5878,0.809,0.0,-0.559,0.809,-0.1816,-0.4755,0.809,-0.3455,-0.3455,0.809,-0.4755,-0.1816,0.809,-0.559,0.0,0.809,-0.5878,0.1816,0.809,-0.559,0.3455,0.809,-0.4755,0.4755,0.809,-0.3455,0.559,0.809,-0.1816,0.5878,0.809,0.0,0.559,0.809,0.1816,0.4318,0.891,0.1403,0.3673,0.891,0.2668,0.2668,0.891,0.3673,0.1403,0.891,0.4318,0.0,0.891,0.454,-0.1403,0.891,0.4318,-0.2668,0.891,0.3673,-0.3673,0.891,0.2668,-0.4318,0.891,0.1403,-0.454,0.891,0.0,-0.4318,0.891,-0.1403,-0.3673,0.891,-0.2668,-0.2668,0.891,-0.3673,-0.1403,0.891,-0.4318,0.0,0.891,-0.454,0.1403,0.891,-0.4318,0.2668,0.891,-0.3673,0.3673,0.891,-0.2668,0.4318,0.891,-0.1403,0.454,0.891,0.0,0.4318,0.891,0.1403,0.2939,0.9511,0.0955,0.25,0.9511,0.1816,0.1816,0.9511,0.25,0.0955,0.9511,0.2939,0.0,0.9511,0.309,-0.0955,0.9511,0.2939,-0.1816,0.9511,0.25,-0.25,0.9511,0.1816,-0.2939,0.9511,0.0955,-0.309,0.9511,0.0,-0.2939,0.9511,-0.0955,-0.25,0.9511,-0.1816,-0.1816,0.9511,-0.25,-0.0955,0.9511,-0.2939,0.0,0.9511,-0.309,0.0955,0.9511,-0.2939,0.1816,0.9511,-0.25,0.25,0.9511,-0.1816,0.2939,0.9511,-0.0955,0.309,0.9511,0.0,0.2939,0.9511,0.0955,0.1488,0.9877,0.0483,0.1266,0.9877,0.0919,0.0919,0.9877,0.1266,0.0483,0.9877,0.1488,0.0,0.9877,0.1564,-0.0483,0.9877,0.1488,-0.0919,0.9877,0.1266,-0.1266,0.9877,0.0919,-0.1488,0.9877,0.0483,-0.1564,0.9877,0.0,-0.1488,0.9877,-0.0483,-0.1266,0.9877,-0.0919,-0.0919,0.9877,-0.1266,-0.0483,0.9877,-0.1488,0.0,0.9877,-0.1564,0.0483,0.9877,-0.1488,0.0919,0.9877,-0.1266,0.1266,0.9877,-0.0919,0.1488,0.9877,-0.0483,0.1564,0.9877,0.0,0.1488,0.9877,0.0483,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0],"normals":[0.1906,-0.9797,0.0619,0.1621,-0.9797,0.1178,0.3173,-0.9427,0.1031,0.2699,-0.9427,0.1961,0.1178,-0.9797,0.1621,0.1961,-0.9427,0.2699,0.0619,-0.9797,0.1906,0.1031,-0.9427,0.3173,0.0,-0.9797,0.2004,0.0,-0.9427,0.3336,-0.0619,-0.9797,0.1906,-0.1031,-0.9427,0.3173,-0.1178,-0.9797,0.1621,-0.1961,-0.9427,0.2699,-0.1621,-0.9797,0.1178,-0.2699,-0.9427,0.1961,-0.1906,-0.9797,0.0619,-0.3173,-0.9427,0.1031,-0.2004,-0.9797,0.0,-0.3336,-0.9427,0.0,-0.1906,-0.9797,-0.0619,-0.3173,-0.9427,-0.1031,-0.1621,-0.9797,-0.1178,-0.2699,-0.9427,-0.1961,-0.1178,-0.9797,-0.1621,-0.1961,-0.9427,-0.2699,-0.0619,-0.9797,-0.1906,-0.1031,-0.9427,-0.3173,0.0,-0.9797,-0.2004,0.0,-0.9427,-0.3336,0.0619,-0.9797,-0.1906,0.1031,-0.9427,-0.3173,0.1178,-0.9797,-0.1621,0.1961,-0.9427,-0.2699,0.1621,-0.9797,-0.1178,0.2699,-0.9427,-0.1961,0.1906,-0.9797,-0.0619,0.3173,-0.9427,-0.1031,0.2004,-0.9797,0.0,0.3336,-0.9427,0.0,0.1906,-0.9797,0.0619,0.3173,-0.9427,0.1031,0.4477,-0.8823,0.1455,0.3808,-0.8823,0.2767,0.2767,-0.8823,0.3808,0.1455,-0.8823,0.4477,0.0,-0.8823,0.4708,-0.1455,-0.8823,0.4477,-0.2767,-0.8823,0.3808,-0.3808,-0.8823,0.2767,-0.4477,-0.8823,0.1455,-0.4708,-0.8823,0.0,-0.4477,-0.8823,-0.1455,-0.3808,-0.8823,-0.2767,-0.2767,-0.8823,-0.3808,-0.1455,-0.8823,-0.4477,0.0,-0.8823,-0.4708,0.1455,-0.8823,-0.4477,0.2767,-0.8823,-0.3808,0.3808,-0.8823,-0.2767,0.4477,-0.8823,-0.1455,0.4708,-0.8823,0.0,0.4477,-0.8823,0.1455,0.5703,-0.8003,0.1853,0.4851,-0.8003,0.3525,0.3525,-0.8003,0.4851,0.1853,-0.8003,0.5703,0.0,-0.8003,0.5997,-0.1853,-0.8003,0.5703,-0.3525,-0.8003,0.4851,-0.4851,-0.8003,0.3525,-0.5703,-0.8003,0.1853,-0.5997,-0.8003,0.0,-0.5703,-0.8003,-0.1853,-0.4851,-0.8003,-0.3525,-0.3525,-0.8003,-0.4851,-0.1853,-0.8003,-0.5703,0.0,-0.8003,-0.5997,0.1853,-0.8003,-0.5703,0.3525,-0.8003,-0.4851,0.4851,-0.8003,-0.3525,0.5703,-0.8003,-0.1853,0.5997,-0.8003,0.0,0.5703,-0.8003,0.1853,0.6803,-0.6988,0.221,0.5787,-0.6988,0.4205,0.4205,-0.6988,0.5787,0.221,-0.6988,0.6803,0.0,-0.6988,0.7153,-0.221,-0.6988,0.6803,-0.4205,-0.6988,0.5787,-0.5787,-0.6988,0.4205,-0.6803,-0.6988,0.221,-0.7153,-0.6988,0.0,-0.6803,-0.6988,-0.221,-0.5787,-0.6988,-0.4205,-0.4205,-0.6988,-0.5787,-0.221,-0.6988,-0.6803,0.0,-0.6988,-0.7153,0.221,-0.6988,-0.6803,0.4205,-0.6988,-0.5787,0.5787,-0.6988,-0.4205,0.6803,-0.6988,-0.221,0.7153,-0.6988,0.0,0.6803,-0.6988,0.221,0.7745,-0.5804,0.2516,0.6588,-0.5804,0.4787,0.4787,-0.5804,0.6588,0.2516,-0.5804,0.7745,0.0,-0.5804,0.8143,-0.2516,-0.5804,0.7745,-0.4787,-0.5804,0.6588,-0.6588,-0.5804,0.4787,-0.7745,-0.5804,0.2516,-0.8143,-0.5804,0.0,-0.7745,-0.5804,-0.2516,-0.6588,-0.5804,-0.4787,-0.4787,-0.5804,-0.6588,-0.2516,-0.5804,-0.7745,0.0,-0.5804,-0.8143,0.2516,-0.5804,-0.7745,0.4787,-0.5804,-0.6588,0.6588,-0.5804,-0.4787,0.7745,-0.5804,-0.2516,0.8143,-0.5804,0.0,0.7745,-0.5804,0.2516,0.8503,-0.448,0.2763,0.7233,-0.448,0.5255,0.5255,-0.448,0.7233,0.2763,-0.448,0.8503,0.0,-0.448,0.894,-0.2763,-0.448,0.8503,-0.5255,-0.448,0.7233,-0.7233,-0.448,0.5255,-0.8503,-0.448,0.2763,-0.894,-0.448,0.0,-0.8503,-0.448,-0.2763,-0.7233,-0.448,-0.5255,-0.5255,-0.448,-0.7233,-0.2763,-0.448,-0.8503,0.0,-0.448,-0.894,0.2763,-0.448,-0.8503,0.5255,-0.448,-0.7233,0.7233,-0.448,-0.5255,0.8503,-0.448,-0.2763,0.894,-0.448,0.0,0.8503,-0.448,0.2763,0.9058,-0.3048,0.2943,0.7705,-0.3048,0.5598,0.5598,-0.3048,0.7705,0.2943,-0.3048,0.9058,0.0,-0.3048,0.9524,-0.2943,-0.3048,0.9058,-0.5598,-0.3048,0.7705,-0.7705,-0.3048,0.5598,-0.9058,-0.3048,0.2943,-0.9524,-0.3048,0.0,-0.9058,-0.3048,-0.2943,-0.7705,-0.3048,-0.5598,-0.5598,-0.3048,-0.7705,-0.2943,-0.3048,-0.9058,0.0,-0.3048,-0.9524,0.2943,-0.3048,-0.9058,0.5598,-0.3048,-0.7705,0.7705,-0.3048,-0.5598,0.9058,-0.3048,-0.2943,0.9524,-0.3048,0.0,0.9058,-0.3048,0.2943,0.9397,-0.1542,0.3053,0.7993,-0.1542,0.5808,0.5808,-0.1542,0.7993,0.3053,-0.1542,0.9397,0.0,-0.1542,0.988,-0.3053,-0.1542,0.9397,-0.5808,-0.1542,0.7993,-0.7993,-0.1542,0.5808,-0.9397,-0.1542,0.3053,-0.988,-0.1542,0.0,-0.9397,-0.1542,-0.3053,-0.7993,-0.1542,-0.5808,-0.5808,-0.1542,-0.7993,-0.3053,-0.1542,-0.9397,0.0,-0.1542,-0.988,0.3053,-0.1542,-0.9397,0.5808,-0.1542,-0.7993,0.7993,-0.1542,-0.5808,0.9397,-0.1542,-0.3053,0.988,-0.1542,0.0,0.9397,-0.1542,0.3053,0.9511,0.0,0.309,0.809,0.0,0.5878,0.5878,0.0,0.809,0.309,0.0,0.9511,0.0,0.0,1.0,-0.309,0.0,0.9511,-0.5878,0.0,0.809,-0.809,0.0,0.5878,-0.9511,0.0,0.309,-1.0,0.0,0.0,-0.9511,0.0,-0.309,-0.809,0.0,-0.5878,-0.5878,0.0,-0.809,-0.309,0.0,-0.9511,0.0,0.0,-1.0,0.309,0.0,-0.9511,0.5878,0.0,-0.809,0.809,0.0,-0.5878,0.9511,0.0,-0.309,1.0,0.0,0.0,0.9511,0.0,0.309,0.9397,0.1542,0.3053,0.7993,0.1542,0.5808,0.5808,0.1542,0.7993,0.3053,0.1542,0.9397,0.0,0.1542,0.988,-0.3053,0.1542,0.9397,-0.5808,0.1542,0.7993,-0.7993,0.1542,0.5808,-0.9397,0.1542,0.3053,-0.988,0.1542,0.0,-0.9397,0.1542,-0.3053,-0.7993,0.1542,-0.5808,-0.5808,0.1542,-0.7993,-0.3053,0.1542,-0.9397,0.0,0.1542,-0.988,0.3053,0.1542,-0.9397,0.5808,0.1542,-0.7993,0.7993,0.1542,-0.5808,0.9397,0.1542,-0.3053,0.988,0.1542,0.0,0.9397,0.1542,0.3053,0.9058,0.3048,0.2943,0.7705,0.3048,0.5598,0.5598,0.3048,0.7705,0.2943,0.3048,0.9058,0.0,0.3048,0.9524,-0.2943,0.3048,0.9058,-0.5598,0.3048,0.7705,-0.7705,0.3048,0.5598,-0.9058,0.3048,0.2943,-0.9524,0.3048,0.0,-0.9058,0.3048,-0.2943,-0.7705,0.3048,-0.5598,-0.5598,0.3048,-0.7705,-0.2943,0.3048,-0.9058,0.0,0.3048,-0.9524,0.2943,0.3048,-0.9058,0.5598,0.3048,-0.7705,0.7705,0.3048,-0.5598,0.9058,0.3048,-0.2943,0.9524,0.3048,0.0,0.9058,0.3048,0.2943,0.8503,0.448,0.2763,0.7233,0.448,0.5255,0.5255,0.448,0.7233,0.2763,0.448,0.8503,0.0,0.448,0.894,-0.2763,0.448,0.8503,-0.5255,0.448,0.7233,-0.7233,0.448,0.5255,-0.8503,0.448,0.2763,-0.894,0.448,0.0,-0.8503,0.448,-0.2763,-0.7233,0.448,-0.5255,-0.5255,0.448,-0.7233,-0.2763,0.448,-0.8503,0.0,0.448,-0.894,0.2763,0.448,-0.8503,0.5255,0.448,-0.7233,0.7233,0.448,-0.5255,0.8503,0.448,-0.2763,0.894,0.448,0.0,0.8503,0.448,0.2763,0.7745,0.5804,0.2516,0.6588,0.5804,0.4787,0.4787,0.5804,0.6588,0.2516,0.5804,0.7745,0.0,0.5804,0.8143,-0.2516,0.5804,0.7745,-0.4787,0.5804,0.6588,-0.6588,0.5804,0.4787,-0.7745,0.5804,0.2516,-0.8143,0.5804,0.0,-0.7745,0.5804,-0.2516,-0.6588,0.5804,-0.4787,-0.4787,0.5804,-0.6588,-0.2516,0.5804,-0.7745,0.0,0.5804,-0.8143,0.2516,0.5804,-0.7745,0.4787,0.5804,-0.6588,0.6588,0.5804,-0.4787,0.7745,0.5804,-0.2516,0.8143,0.5804,0.0,0.7745,0.5804,0.2516,0.6803,0.6988,0.221,0.5787,0.6988,0.4205,0.4205,0.6988,0.5787,0.221,0.6988,0.6803,0.0,0.6988,0.7153,-0.221,0.6988,0.6803,-0.4205,0.6988,0.5787,-0.5787,0.6988,0.4205,-0.6803,0.6988,0.221,-0.7153,0.6988,0.0,-0.6803,0.6988,-0.221,-0.5787,0.6988,-0.4205,-0.4205,0.6988,-0.5787,-0.221,0.6988,-0.6803,0.0,0.6988,-0.7153,0.221,0.6988,-0.6803,0.4205,0.6988,-0.5787,0.5787,0.6988,-0.4205,0.6803,0.6988,-0.221,0.7153,0.6988,0.0,0.6803,0.6988,0.221,0.5703,0.8003,0.1853,0.4851,0.8003,0.3525,0.3525,0.8003,0.4851,0.1853,0.8003,0.5703,0.0,0.8003,0.5997,-0.1853,0.8003,0.5703,-0.3525,0.8003,0.4851,-0.4851,0.8003,0.3525,-0.5703,0.8003,0.1853,-0.5997,0.8003,0.0,-0.5703,0.8003,-0.1853,-0.4851,0.8003,-0.3525,-0.3525,0.8003,-0.4851,-0.1853,0.8003,-0.5703,0.0,0.8003,-0.5997,0.1853,0.8003,-0.5703,0.3525,0.8003,-0.4851,0.4851,0.8003,-0.3525,0.5703,0.8003,-0.1853,0.5997,0.8003,0.0,0.5703,0.8003,0.1853,0.4477,0.8823,0.1455,0.3808,0.8823,0.2767,0.2767,0.8823,0.3808,0.1455,0.8823,0.4477,0.0,0.8823,0.4708,-0.1455,0.8823,0.4477,-0.2767,0.8823,0.3808,-0.3808,0.8823,0.2767,-0.4477,0.8823,0.1455,-0.4708,0.8823,0.0,-0.4477,0.8823,-0.1455,-0.3808,0.8823,-0.2767,-0.2767,0.8823,-0.3808,-0.1455,0.8823,-0.4477,0.0,0.8823,-0.4708,0.1455,0.8823,-0.4477,0.2767,0.8823,-0.3808,0.3808,0.8823,-0.2767,0.4477,0.8823,-0.1455,0.4708,0.8823,0.0,0.4477,0.8823,0.1455,0.3173,0.9427,0.1031,0.2699,0.9427,0.1961,0.1961,0.9427,0.2699,0.1031,0.9427,0.3173,0.0,0.9427,0.3336,-0.1031,0.9427,0.3173,-0.1961,0.9427,0.2699,-0.2699,0.9427,0.1961,-0.3173,0.9427,0.1031,-0.3336,0.9427,0.0,-0.3173,0.9427,-0.1031,-0.2699,0.9427,-0.1961,-0.1961,0.9427,-0.2699,-0.1031,0.9427,-0.3173,0.0,0.9427,-0.3336,0.1031,0.9427,-0.3173,0.1961,0.9427,-0.2699,0.2699,0.9427,-0.1961,0.3173,0.9427,-0.1031,0.3336,0.9427,0.0,0.3173,0.9427,0.1031,0.1906,0.9797,0.0619,0.1621,0.9797,0.1178,0.1178,0.9797,0.1621,0.0619,0.9797,0.1906,0.0,0.9797,0.2004,-0.0619,0.9797,0.1906,-0.1178,0.9797,0.1621,-0.1621,0.9797,0.1178,-0.1906,0.9797,0.0619,-0.2004,0.9797,0.0,-0.1906,0.9797,-0.0619,-0.1621,0.9797,-0.1178,-0.1178,0.9797,-0.1621,-0.0619,0.9797,-0.1906,0.0,0.9797,-0.2004,0.0619,0.9797,-0.1906,0.1178,0.9797,-0.1621,0.1621,0.9797,-0.1178,0.1906,0.9797,-0.0619,0.2004,0.9797,0.0,0.1906,0.9797,0.0619,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0],"tangents":[-0.4482,-0.0307,0.8934,-1.0,-0.5629,0.0062,0.8265,-1.0,-0.438,-0.0493,0.8976,-1.0,-0.5878,0.0,0.809,-1.0,-0.7908,0.0062,0.6121,-1.0,-0.809,0.0,0.5878,-1.0,-0.9412,0.0062,0.3378,-1.0,-0.9511,0.0,0.309,-1.0,-0.9995,0.0062,0.0304,-1.0,-1.0,0.0,0.0,-1.0,-0.96,0.0062,-0.28,-1.0,-0.9511,0.0,-0.309,-1.0,-0.8265,0.0062,-0.5629,-1.0,-0.809,0.0,-0.5878,-1.0,-0.6121,0.0062,-0.7908,-1.0,-0.5878,0.0,-0.809,-1.0,-0.3378,0.0062,-0.9412,-1.0,-0.309,0.0,-0.9511,-1.0,-0.0304,0.0062,-0.9995,-1.0,0.0,0.0,-1.0,-1.0,0.28,0.0062,-0.96,-1.0,0.309,0.0,-0.9511,-1.0,0.5629,0.0062,-0.8265,-1.0,0.5878,0.0,-0.809,-1.0,0.7908,0.0062,-0.6121,-1.0,0.809,0.0,-0.5878,-1.0,0.9412,0.0062,-0.3378,-1.0,0.9511,0.0,-0.309,-1.0,0.9995,0.0062,-0.0304,-1.0,1.0,0.0,0.0,-1.0,0.96,0.0062,0.28,-1.0,0.9511,0.0,0.309,-1.0,0.8265,0.0062,0.5629,-1.0,0.809,0.0,0.5878,-1.0,0.6121,0.0062,0.7908,-1.0,0.5878,0.0,0.809,-1.0,0.3378,0.0062,0.9412,-1.0,0.309,0.0,0.9511,-1.0,0.0304,0.0062,0.9995,-1.0,0.0,0.0,1.0,-1.0,-0.1625,0.0307,0.9862,-1.0,-0.1732,0.0493,0.9836,-1.0,-0.4222,-0.0651,0.9042,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.1899,0.0651,0.9796,-1.0,-0.4023,-0.0754,0.9124,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.2109,0.0754,0.9746,-1.0,-0.3802,-0.0787,0.9215,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.234,0.0787,0.969,-1.0,-0.3582,-0.0745,0.9306,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.2572,0.0745,0.9635,-1.0,-0.3384,-0.0633,0.9389,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.2781,0.0633,0.9585,-1.0,-0.3226,-0.0459,0.9454,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.2947,0.0459,0.9545,-1.0,-0.3125,-0.0241,0.9496,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.3053,0.0241,0.9519,-1.0,-0.309,0.0,0.9511,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.309,0.0,0.9511,-1.0,-0.3125,0.0241,0.9496,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.3053,-0.0241,0.9519,-1.0,-0.3226,0.0459,0.9454,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.2947,-0.0459,0.9545,-1.0,-0.3384,0.0633,0.9389,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.2781,-0.0633,0.9585,-1.0,-0.3582,0.0745,0.9306,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.2572,-0.0745,0.9635,-1.0,-0.3802,0.0787,0.9215,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.234,-0.0787,0.969,-1.0,-0.4023,0.0754,0.9124,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.2109,-0.0754,0.9746,-1.0,-0.4222,0.0651,0.9042,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.1899,-0.0651,0.9796,-1.0,-0.438,0.0493,0.8976,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.1732,-0.0493,0.9836,-1.0,-0.4482,0.0307,0.8934,-1.0,-0.6121,0.0062,0.7908,-1.0,-0.8265,0.0062,0.5629,-1.0,-0.96,0.0062,0.28,-1.0,-0.9995,0.0062,-0.0304,-1.0,-0.9412,0.0062,-0.3378,-1.0,-0.7908,0.0062,-0.6121,-1.0,-0.5629,0.0062,-0.8265,-1.0,-0.28,0.0062,-0.96,-1.0,0.0304,0.0062,-0.9995,-1.0,0.3378,0.0062,-0.9412,-1.0,0.6121,0.0062,-0.7908,-1.0,0.8265,0.0062,-0.5629,-1.0,0.96,0.0062,-0.28,-1.0,0.9995,0.0062,0.0304,-1.0,0.9412,0.0062,0.3378,-1.0,0.7908,0.0062,0.6121,-1.0,0.5629,0.0062,0.8265,-1.0,0.28,0.0062,0.96,-1.0,-0.0304,0.0062,0.9995,-1.0,-0.1625,-0.0307,0.9862,-1.0,-0.454,0.0,0.891,-1.0,-0.7071,0.0,0.7071,-1.0,-0.891,0.0,0.454,-1.0,-0.9877,0.0,0.1564,-1.0,-0.9877,0.0,-0.1564,-1.0,-0.891,0.0,-0.454,-1.0,-0.7071,0.0,-0.7071,-1.0,-0.454,0.0,-0.891,-1.0,-0.1564,0.0,-0.9877,-1.0,0.1564,0.0,-0.9877,-1.0,0.454,0.0,-0.891,-1.0,0.7071,0.0,-0.7071,-1.0,0.891,0.0,-0.454,-1.0,0.9877,0.0,-0.1564,-1.0,0.9877,0.0,0.1564,-1.0,0.891,0.0,0.454,-1.0,0.7071,0.0,0.7071,-1.0,0.454,0.0,0.891,-1.0,0.1564,0.0,0.9877,-1.0,-0.1564,0.0,0.9877,-1.0,-0.454,0.0,0.891,-1.0,-0.7071,0.0,0.7071,-1.0,-0.891,0.0,0.454,-1.0,-0.9877,0.0,0.1564,-1.0,-0.9877,0.0,-0.1564,-1.0,-0.891,0.0,-0.454,-1.0,-0.7071,0.0,-0.7071,-1.0,-0.454,0.0,-0.891,-1.0,-0.1564,0.0,-0.9877,-1.0,0.1564,0.0,-0.9877,-1.0,0.454,0.0,-0.891,-1.0,0.7071,0.0,-0.7071,-1.0,0.891,0.0,-0.454,-1.0,0.9877,0.0,-0.1564,-1.0,0.9877,0.0,0.1564,-1.0,0.891,0.0,0.454,-1.0,0.7071,0.0,0.7071,-1.0,0.454,0.0,0.891,-1.0,0.1564,0.0,0.9877,-1.0,-0.1564,0.0,0.9877,-1.0],"uvs":[0.0,0.05,0.05,0.05,0.0,0.1,0.05,0.1,0.1,0.05,0.1,0.1,0.15,0.05,0.15,0.1,0.2,0.05,0.2,0.1,0.25,0.05,0.25,0.1,0.3,0.05,0.3,0.1,0.35,0.05,0.35,0.1,0.4,0.05,0.4,0.1,0.45,0.05,0.45,0.1,0.5,0.05,0.5,0.1,0.55,0.05,0.55,0.1,0.6,0.05,0.6,0.1,0.65,0.05,0.65,0.1,0.7,0.05,0.7,0.1,0.75,0.05,0.75,0.1,0.8,0.05,0.8,0.1,0.85,0.05,0.85,0.1,0.9,0.05,0.9,0.1,0.95,0.05,0.95,0.1,1.0,0.05,1.0,0.1,0.0,0.15,0.05,0.15,0.1,0.15,0.15,0.15,0.2,0.15,0.25,0.15,0.3,0.15,0.35,0.15,0.4,0.15,0.45,0.15,0.5,0.15,0.55,0.15,0.6,0.15,0.65,0.15,0.7,0.15,0.75,0.15,0.8,0.15,0.85,0.15,0.9,0.15,0.95,0.15,1.0,0.15,0.0,0.2,0.05,0.2,0.1,0.2,0.15,0.2,0.2,0.2,0.25,0.2,0.3,0.2,0.35,0.2,0.4,0.2,0.45,0.2,0.5,0.2,0.55,0.2,0.6,0.2,0.65,0.2,0.7,0.2,0.75,0.2,0.8,0.2,0.85,0.2,0.9,0.2,0.95,0.2,1.0,0.2,0.0,0.25,0.05,0.25,0.1,0.25,0.15,0.25,0.2,0.25,0.25,0.25,0.3,0.25,0.35,0.25,0.4,0.25,0.45,0.25,0.5,0.25,0.55,0.25,0.6,0.25,0.65,0.25,0.7,0.25,0.75,0.25,0.8,0.25,0.85,0.25,0.9,0.25,0.95,0.25,1.0,0.25,0.0,0.3,0.05,0.3,0.1,0.3,0.15,0.3,0.2,0.3,0.25,0.3,0.3,0.3,0.35,0.3,0.4,0.3,0.45,0.3,0.5,0.3,0.55,0.3,0.6,0.3,0.65,0.3,0.7,0.3,0.75,0.3,0.8,0.3,0.85,0.3,0.9,0.3,0.95,0.3,1.0,0.3,0.0,0.35,0.05,0.35,0.1,0.35,0.15,0.35,0.2,0.35,0.25,0.35,0.3,0.35,0.35,0.35,0.4,0.35,0.45,0.35,0.5,0.35,0.55,0.35,0.6,0.35,0.65,0.35,0.7,0.35,0.75,0.35,0.8,0.35,0.85,0.35,0.9,0.35,0.95,0.35,1.0,0.35,0.0,0.4,0.05,0.4,0.1,0.4,0.15,0.4,0.2,0.4,0.25,0.4,0.3,0.4,0.35,0.4,0.4,0.4,0.45,0.4,0.5,0.4,0.55,0.4,0.6,0.4,0.65,0.4,0.7,0.4,0.75,0.4,0.8,0.4,0.85,0.4,0.9,0.4,0.95,0.4,1.0,0.4,0.0,0.45,0.05,0.45,0.1,0.45,0.15,0.45,0.2,0.45,0.25,0.45,0.3,0.45,0.35,0.45,0.4,0.45,0.45,0.45,0.5,0.45,0.55,0.45,0.6,0.45,0.65,0.45,0.7,0.45,0.75,0.45,0.8,0.45,0.85,0.45,0.9,0.45,0.95,0.45,1.0,0.45,0.0,0.5,0.05,0.5,0.1,0.5,0.15,0.5,0.2,0.5,0.25,0.5,0.3,0.5,0.35,0.5,0.4,0.5,0.45,0.5,0.5,0.5,0.55,0.5,0.6,0.5,0.65,0.5,0.7,0.5,0.75,0.5,0.8,0.5,0.85,0.5,0.9,0.5,0.95,0.5,1.0,0.5,0.0,0.55,0.05,0.55,0.1,0.55,0.15,0.55,0.2,0.55,0.25,0.55,0.3,0.55,0.35,0.55,0.4,0.55,0.45,0.55,0.5,0.55,0.55,0.55,0.6,0.55,0.65,0.55,0.7,0.55,0.75,0.55,0.8,0.55,0.85,0.55,0.9,0.55,0.95,0.55,1.0,0.55,0.0,0.6,0.05,0.6,0.1,0.6,0.15,0.6,0.2,0.6,0.25,0.6,0.3,0.6,0.35,0.6,0.4,0.6,0.45,0.6,0.5,0.6,0.55,0.6,0.6,0.6,0.65,0.6,0.7,0.6,0.75,0.6,0.8,0.6,0.85,0.6,0.9,0.6,0.95,0.6,1.0,0.6,0.0,0.65,0.05,0.65,0.1,0.65,0.15,0.65,0.2,0.65,0.25,0.65,0.3,0.65,0.35,0.65,0.4,0.65,0.45,0.65,0.5,0.65,0.55,0.65,0.6,0.65,0.65,0.65,0.7,0.65,0.75,0.65,0.8,0.65,0.85,0.65,0.9,0.65,0.95,0.65,1.0,0.65,0.0,0.7,0.05,0.7,0.1,0.7,0.15,0.7,0.2,0.7,0.25,0.7,0.3,0.7,0.35,0.7,0.4,0.7,0.45,0.7,0.5,0.7,0.55,0.7,0.6,0.7,0.65,0.7,0.7,0.7,0.75,0.7,0.8,0.7,0.85,0.7,0.9,0.7,0.95,0.7,1.0,0.7,0.0,0.75,0.05,0.75,0.1,0.75,0.15,0.75,0.2,0.75,0.25,0.75,0.3,0.75,0.35,0.75,0.4,0.75,0.45,0.75,0.5,0.75,0.55,0.75,0.6,0.75,0.65,0.75,0.7,0.75,0.75,0.75,0.8,0.75,0.85,0.75,0.9,0.75,0.95,0.75,1.0,0.75,0.0,0.8,0.05,0.8,0.1,0.8,0.15,0.8,0.2,0.8,0.25,0.8,0.3,0.8,0.35,0.8,0.4,0.8,0.45,0.8,0.5,0.8,0.55,0.8,0.6,0.8,0.65,0.8,0.7,0.8,0.75,0.8,0.8,0.8,0.85,0.8,0.9,0.8,0.95,0.8,1.0,0.8,0.0,0.85,0.05,0.85,0.1,0.85,0.15,0.85,0.2,0.85,0.25,0.85,0.3,0.85,0.35,0.85,0.4,0.85,0.45,0.85,0.5,0.85,0.55,0.85,0.6,0.85,0.65,0.85,0.7,0.85,0.75,0.85,0.8,0.85,0.85,0.85,0.9,0.85,0.95,0.85,1.0,0.85,0.0,0.9,0.05,0.9,0.1,0.9,0.15,0.9,0.2,0.9,0.25,0.9,0.3,0.9,0.35,0.9,0.4,0.9,0.45,0.9,0.5,0.9,0.55,0.9,0.6,0.9,0.65,0.9,0.7,0.9,0.75,0.9,0.8,0.9,0.85,0.9,0.9,0.9,0.95,0.9,1.0,0.9,0.0,0.95,0.05,0.95,0.1,0.95,0.15,0.95,0.2,0.95,0.25,0.95,0.3,0.95,0.35,0.95,0.4,0.95,0.45,0.95,0.5,0.95,0.55,0.95,0.6,0.95,0.65,0.95,0.7,0.95,0.75,0.95,0.8,0.95,0.85,0.95,0.9,0.95,0.95,0.95,1.0,0.95,0.025,0.0,0.075,0.0,0.125,0.0,0.175,0.0,0.225,0.0,0.275,0.0,0.325,0.0,0.375,0.0,0.425,0.0,0.475,0.0,0.525,0.0,0.575,0.0,0.625,0.0,0.675,0.0,0.725,0.0,0.775,0.0,0.825,0.0,0.875,0.0,0.925,0.0,0.975,0.0,0.025,1.0,0.075,1.0,0.125,1.0,0.175,1.0,0.225,1.0,0.275,1.0,0.325,1.0,0.375,1.0,0.425,1.0,0.475,1.0,0.525,1.0,0.575,1.0,0.625,1.0,0.675,1.0,0.725,1.0,0.775,1.0,0.825,1.0,0.875,1.0,0.925,1.0,0.975,1.0],"uvs2":null,"colors":null,"hasVertexAlpha":false,"matricesIndices":null,"matricesWeights":null,"matricesIndicesExtra":null,"matricesWeightsExtra":null,"indices":[0,1,2,2,1,3,1,4,3,3,4,5,4,6,5,5,6,7,6,8,7,7,8,9,8,10,9,9,10,11,10,12,11,11,12,13,12,14,13,13,14,15,14,16,15,15,16,17,16,18,17,17,18,19,18,20,19,19,20,21,20,22,21,21,22,23,22,24,23,23,24,25,24,26,25,25,26,27,26,28,27,27,28,29,28,30,29,29,30,31,30,32,31,31,32,33,32,34,33,33,34,35,34,36,35,35,36,37,36,38,37,37,38,39,38,40,39,39,40,41,2,3,42,42,3,43,3,5,43,43,5,44,5,7,44,44,7,45,7,9,45,45,9,46,9,11,46,46,11,47,11,13,47,47,13,48,13,15,48,48,15,49,15,17,49,49,17,50,17,19,50,50,19,51,19,21,51,51,21,52,21,23,52,52,23,53,23,25,53,53,25,54,25,27,54,54,27,55,27,29,55,55,29,56,29,31,56,56,31,57,31,33,57,57,33,58,33,35,58,58,35,59,35,37,59,59,37,60,37,39,60,60,39,61,39,41,61,61,41,62,42,43,63,63,43,64,43,44,64,64,44,65,44,45,65,65,45,66,45,46,66,66,46,67,46,47,67,67,47,68,47,48,68,68,48,69,48,49,69,69,49,70,49,50,70,70,50,71,50,51,71,71,51,72,51,52,72,72,52,73,52,53,73,73,53,74,53,54,74,74,54,75,54,55,75,75,55,76,55,56,76,76,56,77,56,57,77,77,57,78,57,58,78,78,58,79,58,59,79,79,59,80,59,60,80,80,60,81,60,61,81,81,61,82,61,62,82,82,62,83,63,64,84,84,64,85,64,65,85,85,65,86,65,66,86,86,66,87,66,67,87,87,67,88,67,68,88,88,68,89,68,69,89,89,69,90,69,70,90,90,70,91,70,71,91,91,71,92,71,72,92,92,72,93,72,73,93,93,73,94,73,74,94,94,74,95,74,75,95,95,75,96,75,76,96,96,76,97,76,77,97,97,77,98,77,78,98,98,78,99,78,79,99,99,79,100,79,80,100,100,80,101,80,81,101,101,81,102,81,82,102,102,82,103,82,83,103,103,83,104,84,85,105,105,85,106,85,86,106,106,86,107,86,87,107,107,87,108,87,88,108,108,88,109,88,89,109,109,89,110,89,90,110,110,90,111,90,91,111,111,91,112,91,92,112,112,92,113,92,93,113,113,93,114,93,94,114,114,94,115,94,95,115,115,95,116,95,96,116,116,96,117,96,97,117,117,97,118,97,98,118,118,98,119,98,99,119,119,99,120,99,100,120,120,100,121,100,101,121,121,101,122,101,102,122,122,102,123,102,103,123,123,103,124,103,104,124,124,104,125,105,106,126,126,106,127,106,107,127,127,107,128,107,108,128,128,108,129,108,109,129,129,109,130,109,110,130,130,110,131,110,111,131,131,111,132,111,112,132,132,112,133,112,113,133,133,113,134,113,114,134,134,114,135,114,115,135,135,115,136,115,116,136,136,116,137,116,117,137,137,117,138,117,118,138,138,118,139,118,119,139,139,119,140,119,120,140,140,120,141,120,121,141,141,121,142,121,122,142,142,122,143,122,123,143,143,123,144,123,124,144,144,124,145,124,125,145,145,125,146,126,127,147,147,127,148,127,128,148,148,128,149,128,129,149,149,129,150,129,130,150,150,130,151,130,131,151,151,131,152,131,132,152,152,132,153,132,133,153,153,133,154,133,134,154,154,134,155,134,135,155,155,135,156,135,136,156,156,136,157,136,137,157,157,137,158,137,138,158,158,138,159,138,139,159,159,139,160,139,140,160,160,140,161,140,141,161,161,141,162,141,142,162,162,142,163,142,143,163,163,143,164,143,144,164,164,144,165,144,145,165,165,145,166,145,146,166,166,146,167,147,148,168,168,148,169,148,149,169,169,149,170,149,150,170,170,150,171,150,151,171,171,151,172,151,152,172,172,152,173,152,153,173,173,153,174,153,154,174,174,154,175,154,155,175,175,155,176,155,156,176,176,156,177,156,157,177,177,157,178,157,158,178,178,158,179,158,159,179,179,159,180,159,160,180,180,160,181,160,161,181,181,161,182,161,162,182,182,162,183,162,163,183,183,163,184,163,164,184,184,164,185,164,165,185,185,165,186,165,166,186,186,166,187,166,167,187,187,167,188,168,169,189,189,169,190,169,170,190,190,170,191,170,171,191,191,171,192,171,172,192,192,172,193,172,173,193,193,173,194,173,174,194,194,174,195,174,175,195,195,175,196,175,176,196,196,176,197,176,177,197,197,177,198,177,178,198,198,178,199,178,179,199,199,179,200,179,180,200,200,180,201,180,181,201,201,181,202,181,182,202,202,182,203,182,183,203,203,183,204,183,184,204,204,184,205,184,185,205,205,185,206,185,186,206,206,186,207,186,187,207,207,187,208,187,188,208,208,188,209,189,190,210,210,190,211,190,191,211,211,191,212,191,192,212,212,192,213,192,193,213,213,193,214,193,194,214,214,194,215,194,195,215,215,195,216,195,196,216,216,196,217,196,197,217,217,197,218,197,198,218,218,198,219,198,199,219,219,199,220,199,200,220,220,200,221,200,201,221,221,201,222,201,202,222,222,202,223,202,203,223,223,203,224,203,204,224,224,204,225,204,205,225,225,205,226,205,206,226,226,206,227,206,207,227,227,207,228,207,208,228,228,208,229,208,209,229,229,209,230,210,211,231,231,211,232,211,212,232,232,212,233,212,213,233,233,213,234,213,214,234,234,214,235,214,215,235,235,215,236,215,216,236,236,216,237,216,217,237,237,217,238,217,218,238,238,218,239,218,219,239,239,219,240,219,220,240,240,220,241,220,221,241,241,221,242,221,222,242,242,222,243,222,223,243,243,223,244,223,224,244,244,224,245,224,225,245,245,225,246,225,226,246,246,226,247,226,227,247,247,227,248,227,228,248,248,228,249,228,229,249,249,229,250,229,230,250,250,230,251,231,232,252,252,232,253,232,233,253,253,233,254,233,234,254,254,234,255,234,235,255,255,235,256,235,236,256,256,236,257,236,237,257,257,237,258,237,238,258,258,238,259,238,239,259,259,239,260,239,240,260,260,240,261,240,241,261,261,241,262,241,242,262,262,242,263,242,243,263,263,243,264,243,244,264,264,244,265,244,245,265,265,245,266,245,246,266,266,246,267,246,247,267,267,247,268,247,248,268,268,248,269,248,249,269,269,249,270,249,250,270,270,250,271,250,251,271,271,251,272,252,253,273,273,253,274,253,254,274,274,254,275,254,255,275,275,255,276,255,256,276,276,256,277,256,257,277,277,257,278,257,258,278,278,258,279,258,259,279,279,259,280,259,260,280,280,260,281,260,261,281,281,261,282,261,262,282,282,262,283,262,263,283,283,263,284,263,264,284,284,264,285,264,265,285,285,265,286,265,266,286,286,266,287,266,267,287,287,267,288,267,268,288,288,268,289,268,269,289,289,269,290,269,270,290,290,270,291,270,271,291,291,271,292,271,272,292,292,272,293,273,274,294,294,274,295,274,275,295,295,275,296,275,276,296,296,276,297,276,277,297,297,277,298,277,278,298,298,278,299,278,279,299,299,279,300,279,280,300,300,280,301,280,281,301,301,281,302,281,282,302,302,282,303,282,283,303,303,283,304,283,284,304,304,284,305,284,285,305,305,285,306,285,286,306,306,286,307,286,287,307,307,287,308,287,288,308,308,288,309,288,289,309,309,289,310,289,290,310,310,290,311,290,291,311,311,291,312,291,292,312,312,292,313,292,293,313,313,293,314,294,295,315,315,295,316,295,296,316,316,296,317,296,297,317,317,297,318,297,298,318,318,298,319,298,299,319,319,299,320,299,300,320,320,300,321,300,301,321,321,301,322,301,302,322,322,302,323,302,303,323,323,303,324,303,304,324,324,304,325,304,305,325,325,305,326,305,306,326,326,306,327,306,307,327,327,307,328,307,308,328,328,308,329,308,309,329,329,309,330,309,310,330,330,310,331,310,311,331,331,311,332,311,312,332,332,312,333,312,313,333,333,313,334,313,314,334,334,314,335,315,316,336,336,316,337,316,317,337,337,317,338,317,318,338,338,318,339,318,319,339,339,319,340,319,320,340,340,320,341,320,321,341,341,321,342,321,322,342,342,322,343,322,323,343,343,323,344,323,324,344,344,324,345,324,325,345,345,325,346,325,326,346,346,326,347,326,327,347,347,327,348,327,328,348,348,328,349,328,329,349,349,329,350,329,330,350,350,330,351,330,331,351,351,331,352,331,332,352,352,332,353,332,333,353,353,333,354,333,334,354,354,334,355,334,335,355,355,335,356,336,337,357,357,337,358,337,338,358,358,338,359,338,339,359,359,339,360,339,340,360,360,340,361,340,341,361,361,341,362,341,342,362,362,342,363,342,343,363,363,343,364,343,344,364,364,344,365,344,345,365,365,345,366,345,346,366,366,346,367,346,347,367,367,347,368,347,348,368,368,348,369,348,349,369,369,349,370,349,350,370,370,350,371,350,351,371,371,351,372,351,352,372,372,352,373,352,353,373,373,353,374,353,354,374,374,354,375,354,355,375,375,355,376,355,356,376,376,356,377,357,358,378,378,358,379,358,359,379,379,359,380,359,360,380,380,360,381,360,361,381,381,361,382,361,362,382,382,362,383,362,363,383,383,363,384,363,364,384,384,364,385,364,365,385,385,365,386,365,366,386,386,366,387,366,367,387,387,367,388,367,368,388,388,368,389,368,369,389,389,369,390,369,370,390,390,370,391,370,371,391,391,371,392,371,372,392,392,372,393,372,373,393,393,373,394,373,374,394,394,374,395,374,375,395,395,375,396,375,376,396,396,376,397,376,377,397,397,377,398,1,0,399,4,1,400,6,4,401,8,6,402,10,8,403,12,10,404,14,12,405,16,14,406,18,16,407,20,18,408,22,20,409,24,22,410,26,24,411,28,26,412,30,28,413,32,30,414,34,32,415,36,34,416,38,36,417,40,38,418,378,379,419,379,380,420,380,381,421,381,382,422,382,383,423,383,384,424,384,385,425,385,386,426,386,387,427,387,388,428,388,389,429,389,390,430,390,391,431,391,392,432,392,393,433,393,394,434,394,395,435,395,396,436,396,397,437,397,398,438],"receiveShadows":false,"infiniteDistance":false,"billboardMode":0,"visibility":1.0,"subMeshes":[{"materialIndex":0,"verticesStart":0,"verticesCount":439,"indexStart":0,"indexCount":2280}],"instances":null,"skeletonId":-1,"numBoneInfluencers":4,"applyFog":false,"lodMeshIds":null,"lodDistances":null,"lodCoverages":null,"rotation":null,"scaling":[1.0,1.0,1.0],"rotationQuaternion":[0.0,0.1736,0.0,0.9848],"actions":null,"checkCollisions":false,"pickable":true,"showBoundingBox":false,"showSubMeshesBoundingBox":false,"alphaIndex":0,"physicsImpostor":0,"physicsMass":0.0,"physicsFriction":0.0,"physicsRestitution":0.0,"name":"pSphere4","id":"2F4F3A92-41B4-BFAB-58D5-7DBF6D8F2419","parentId":null,"position":[9.0,0.0,0.0],"animations":[],"autoAnimate":true,"autoAnimateFrom":1,"autoAnimateTo":200,"autoAnimateLoop":true,"metadata":{}},{"materialId":"79CDF1A6-4409-889B-46A9-43A586C10D94","isEnabled":true,"isVisible":true,"positions":[0.1488,-0.9877,0.0483,0.1266,-0.9877,0.0919,0.2939,-0.9511,0.0955,0.25,-0.9511,0.1816,0.0919,-0.9877,0.1266,0.1816,-0.9511,0.25,0.0483,-0.9877,0.1488,0.0955,-0.9511,0.2939,0.0,-0.9877,0.1564,0.0,-0.9511,0.309,-0.0483,-0.9877,0.1488,-0.0955,-0.9511,0.2939,-0.0919,-0.9877,0.1266,-0.1816,-0.9511,0.25,-0.1266,-0.9877,0.0919,-0.25,-0.9511,0.1816,-0.1488,-0.9877,0.0483,-0.2939,-0.9511,0.0955,-0.1564,-0.9877,0.0,-0.309,-0.9511,0.0,-0.1488,-0.9877,-0.0483,-0.2939,-0.9511,-0.0955,-0.1266,-0.9877,-0.0919,-0.25,-0.9511,-0.1816,-0.0919,-0.9877,-0.1266,-0.1816,-0.9511,-0.25,-0.0483,-0.9877,-0.1488,-0.0955,-0.9511,-0.2939,0.0,-0.9877,-0.1564,0.0,-0.9511,-0.309,0.0483,-0.9877,-0.1488,0.0955,-0.9511,-0.2939,0.0919,-0.9877,-0.1266,0.1816,-0.9511,-0.25,0.1266,-0.9877,-0.0919,0.25,-0.9511,-0.1816,0.1488,-0.9877,-0.0483,0.2939,-0.9511,-0.0955,0.1564,-0.9877,0.0,0.309,-0.9511,0.0,0.1488,-0.9877,0.0483,0.2939,-0.9511,0.0955,0.4318,-0.891,0.1403,0.3673,-0.891,0.2668,0.2668,-0.891,0.3673,0.1403,-0.891,0.4318,0.0,-0.891,0.454,-0.1403,-0.891,0.4318,-0.2668,-0.891,0.3673,-0.3673,-0.891,0.2668,-0.4318,-0.891,0.1403,-0.454,-0.891,0.0,-0.4318,-0.891,-0.1403,-0.3673,-0.891,-0.2668,-0.2668,-0.891,-0.3673,-0.1403,-0.891,-0.4318,0.0,-0.891,-0.454,0.1403,-0.891,-0.4318,0.2668,-0.891,-0.3673,0.3673,-0.891,-0.2668,0.4318,-0.891,-0.1403,0.454,-0.891,0.0,0.4318,-0.891,0.1403,0.559,-0.809,0.1816,0.4755,-0.809,0.3455,0.3455,-0.809,0.4755,0.1816,-0.809,0.559,0.0,-0.809,0.5878,-0.1816,-0.809,0.559,-0.3455,-0.809,0.4755,-0.4755,-0.809,0.3455,-0.559,-0.809,0.1816,-0.5878,-0.809,0.0,-0.559,-0.809,-0.1816,-0.4755,-0.809,-0.3455,-0.3455,-0.809,-0.4755,-0.1816,-0.809,-0.559,0.0,-0.809,-0.5878,0.1816,-0.809,-0.559,0.3455,-0.809,-0.4755,0.4755,-0.809,-0.3455,0.559,-0.809,-0.1816,0.5878,-0.809,0.0,0.559,-0.809,0.1816,0.6725,-0.7071,0.2185,0.5721,-0.7071,0.4156,0.4156,-0.7071,0.5721,0.2185,-0.7071,0.6725,0.0,-0.7071,0.7071,-0.2185,-0.7071,0.6725,-0.4156,-0.7071,0.5721,-0.5721,-0.7071,0.4156,-0.6725,-0.7071,0.2185,-0.7071,-0.7071,0.0,-0.6725,-0.7071,-0.2185,-0.5721,-0.7071,-0.4156,-0.4156,-0.7071,-0.5721,-0.2185,-0.7071,-0.6725,0.0,-0.7071,-0.7071,0.2185,-0.7071,-0.6725,0.4156,-0.7071,-0.5721,0.5721,-0.7071,-0.4156,0.6725,-0.7071,-0.2185,0.7071,-0.7071,0.0,0.6725,-0.7071,0.2185,0.7694,-0.5878,0.25,0.6545,-0.5878,0.4755,0.4755,-0.5878,0.6545,0.25,-0.5878,0.7694,0.0,-0.5878,0.809,-0.25,-0.5878,0.7694,-0.4755,-0.5878,0.6545,-0.6545,-0.5878,0.4755,-0.7694,-0.5878,0.25,-0.809,-0.5878,0.0,-0.7694,-0.5878,-0.25,-0.6545,-0.5878,-0.4755,-0.4755,-0.5878,-0.6545,-0.25,-0.5878,-0.7694,0.0,-0.5878,-0.809,0.25,-0.5878,-0.7694,0.4755,-0.5878,-0.6545,0.6545,-0.5878,-0.4755,0.7694,-0.5878,-0.25,0.809,-0.5878,0.0,0.7694,-0.5878,0.25,0.8474,-0.454,0.2753,0.7208,-0.454,0.5237,0.5237,-0.454,0.7208,0.2753,-0.454,0.8474,0.0,-0.454,0.891,-0.2753,-0.454,0.8474,-0.5237,-0.454,0.7208,-0.7208,-0.454,0.5237,-0.8474,-0.454,0.2753,-0.891,-0.454,0.0,-0.8474,-0.454,-0.2753,-0.7208,-0.454,-0.5237,-0.5237,-0.454,-0.7208,-0.2753,-0.454,-0.8474,0.0,-0.454,-0.891,0.2753,-0.454,-0.8474,0.5237,-0.454,-0.7208,0.7208,-0.454,-0.5237,0.8474,-0.454,-0.2753,0.891,-0.454,0.0,0.8474,-0.454,0.2753,0.9045,-0.309,0.2939,0.7694,-0.309,0.559,0.559,-0.309,0.7694,0.2939,-0.309,0.9045,0.0,-0.309,0.9511,-0.2939,-0.309,0.9045,-0.559,-0.309,0.7694,-0.7694,-0.309,0.559,-0.9045,-0.309,0.2939,-0.9511,-0.309,0.0,-0.9045,-0.309,-0.2939,-0.7694,-0.309,-0.559,-0.559,-0.309,-0.7694,-0.2939,-0.309,-0.9045,0.0,-0.309,-0.9511,0.2939,-0.309,-0.9045,0.559,-0.309,-0.7694,0.7694,-0.309,-0.559,0.9045,-0.309,-0.2939,0.9511,-0.309,0.0,0.9045,-0.309,0.2939,0.9393,-0.1564,0.3052,0.7991,-0.1564,0.5805,0.5805,-0.1564,0.7991,0.3052,-0.1564,0.9393,0.0,-0.1564,0.9877,-0.3052,-0.1564,0.9393,-0.5805,-0.1564,0.7991,-0.7991,-0.1564,0.5805,-0.9393,-0.1564,0.3052,-0.9877,-0.1564,0.0,-0.9393,-0.1564,-0.3052,-0.7991,-0.1564,-0.5805,-0.5805,-0.1564,-0.7991,-0.3052,-0.1564,-0.9393,0.0,-0.1564,-0.9877,0.3052,-0.1564,-0.9393,0.5805,-0.1564,-0.7991,0.7991,-0.1564,-0.5805,0.9393,-0.1564,-0.3052,0.9877,-0.1564,0.0,0.9393,-0.1564,0.3052,0.9511,0.0,0.309,0.809,0.0,0.5878,0.5878,0.0,0.809,0.309,0.0,0.9511,0.0,0.0,1.0,-0.309,0.0,0.9511,-0.5878,0.0,0.809,-0.809,0.0,0.5878,-0.9511,0.0,0.309,-1.0,0.0,0.0,-0.9511,0.0,-0.309,-0.809,0.0,-0.5878,-0.5878,0.0,-0.809,-0.309,0.0,-0.9511,0.0,0.0,-1.0,0.309,0.0,-0.9511,0.5878,0.0,-0.809,0.809,0.0,-0.5878,0.9511,0.0,-0.309,1.0,0.0,0.0,0.9511,0.0,0.309,0.9393,0.1564,0.3052,0.7991,0.1564,0.5805,0.5805,0.1564,0.7991,0.3052,0.1564,0.9393,0.0,0.1564,0.9877,-0.3052,0.1564,0.9393,-0.5805,0.1564,0.7991,-0.7991,0.1564,0.5805,-0.9393,0.1564,0.3052,-0.9877,0.1564,0.0,-0.9393,0.1564,-0.3052,-0.7991,0.1564,-0.5805,-0.5805,0.1564,-0.7991,-0.3052,0.1564,-0.9393,0.0,0.1564,-0.9877,0.3052,0.1564,-0.9393,0.5805,0.1564,-0.7991,0.7991,0.1564,-0.5805,0.9393,0.1564,-0.3052,0.9877,0.1564,0.0,0.9393,0.1564,0.3052,0.9045,0.309,0.2939,0.7694,0.309,0.559,0.559,0.309,0.7694,0.2939,0.309,0.9045,0.0,0.309,0.9511,-0.2939,0.309,0.9045,-0.559,0.309,0.7694,-0.7694,0.309,0.559,-0.9045,0.309,0.2939,-0.9511,0.309,0.0,-0.9045,0.309,-0.2939,-0.7694,0.309,-0.559,-0.559,0.309,-0.7694,-0.2939,0.309,-0.9045,0.0,0.309,-0.9511,0.2939,0.309,-0.9045,0.559,0.309,-0.7694,0.7694,0.309,-0.559,0.9045,0.309,-0.2939,0.9511,0.309,0.0,0.9045,0.309,0.2939,0.8474,0.454,0.2753,0.7208,0.454,0.5237,0.5237,0.454,0.7208,0.2753,0.454,0.8474,0.0,0.454,0.891,-0.2753,0.454,0.8474,-0.5237,0.454,0.7208,-0.7208,0.454,0.5237,-0.8474,0.454,0.2753,-0.891,0.454,0.0,-0.8474,0.454,-0.2753,-0.7208,0.454,-0.5237,-0.5237,0.454,-0.7208,-0.2753,0.454,-0.8474,0.0,0.454,-0.891,0.2753,0.454,-0.8474,0.5237,0.454,-0.7208,0.7208,0.454,-0.5237,0.8474,0.454,-0.2753,0.891,0.454,0.0,0.8474,0.454,0.2753,0.7694,0.5878,0.25,0.6545,0.5878,0.4755,0.4755,0.5878,0.6545,0.25,0.5878,0.7694,0.0,0.5878,0.809,-0.25,0.5878,0.7694,-0.4755,0.5878,0.6545,-0.6545,0.5878,0.4755,-0.7694,0.5878,0.25,-0.809,0.5878,0.0,-0.7694,0.5878,-0.25,-0.6545,0.5878,-0.4755,-0.4755,0.5878,-0.6545,-0.25,0.5878,-0.7694,0.0,0.5878,-0.809,0.25,0.5878,-0.7694,0.4755,0.5878,-0.6545,0.6545,0.5878,-0.4755,0.7694,0.5878,-0.25,0.809,0.5878,0.0,0.7694,0.5878,0.25,0.6725,0.7071,0.2185,0.5721,0.7071,0.4156,0.4156,0.7071,0.5721,0.2185,0.7071,0.6725,0.0,0.7071,0.7071,-0.2185,0.7071,0.6725,-0.4156,0.7071,0.5721,-0.5721,0.7071,0.4156,-0.6725,0.7071,0.2185,-0.7071,0.7071,0.0,-0.6725,0.7071,-0.2185,-0.5721,0.7071,-0.4156,-0.4156,0.7071,-0.5721,-0.2185,0.7071,-0.6725,0.0,0.7071,-0.7071,0.2185,0.7071,-0.6725,0.4156,0.7071,-0.5721,0.5721,0.7071,-0.4156,0.6725,0.7071,-0.2185,0.7071,0.7071,0.0,0.6725,0.7071,0.2185,0.559,0.809,0.1816,0.4755,0.809,0.3455,0.3455,0.809,0.4755,0.1816,0.809,0.559,0.0,0.809,0.5878,-0.1816,0.809,0.559,-0.3455,0.809,0.4755,-0.4755,0.809,0.3455,-0.559,0.809,0.1816,-0.5878,0.809,0.0,-0.559,0.809,-0.1816,-0.4755,0.809,-0.3455,-0.3455,0.809,-0.4755,-0.1816,0.809,-0.559,0.0,0.809,-0.5878,0.1816,0.809,-0.559,0.3455,0.809,-0.4755,0.4755,0.809,-0.3455,0.559,0.809,-0.1816,0.5878,0.809,0.0,0.559,0.809,0.1816,0.4318,0.891,0.1403,0.3673,0.891,0.2668,0.2668,0.891,0.3673,0.1403,0.891,0.4318,0.0,0.891,0.454,-0.1403,0.891,0.4318,-0.2668,0.891,0.3673,-0.3673,0.891,0.2668,-0.4318,0.891,0.1403,-0.454,0.891,0.0,-0.4318,0.891,-0.1403,-0.3673,0.891,-0.2668,-0.2668,0.891,-0.3673,-0.1403,0.891,-0.4318,0.0,0.891,-0.454,0.1403,0.891,-0.4318,0.2668,0.891,-0.3673,0.3673,0.891,-0.2668,0.4318,0.891,-0.1403,0.454,0.891,0.0,0.4318,0.891,0.1403,0.2939,0.9511,0.0955,0.25,0.9511,0.1816,0.1816,0.9511,0.25,0.0955,0.9511,0.2939,0.0,0.9511,0.309,-0.0955,0.9511,0.2939,-0.1816,0.9511,0.25,-0.25,0.9511,0.1816,-0.2939,0.9511,0.0955,-0.309,0.9511,0.0,-0.2939,0.9511,-0.0955,-0.25,0.9511,-0.1816,-0.1816,0.9511,-0.25,-0.0955,0.9511,-0.2939,0.0,0.9511,-0.309,0.0955,0.9511,-0.2939,0.1816,0.9511,-0.25,0.25,0.9511,-0.1816,0.2939,0.9511,-0.0955,0.309,0.9511,0.0,0.2939,0.9511,0.0955,0.1488,0.9877,0.0483,0.1266,0.9877,0.0919,0.0919,0.9877,0.1266,0.0483,0.9877,0.1488,0.0,0.9877,0.1564,-0.0483,0.9877,0.1488,-0.0919,0.9877,0.1266,-0.1266,0.9877,0.0919,-0.1488,0.9877,0.0483,-0.1564,0.9877,0.0,-0.1488,0.9877,-0.0483,-0.1266,0.9877,-0.0919,-0.0919,0.9877,-0.1266,-0.0483,0.9877,-0.1488,0.0,0.9877,-0.1564,0.0483,0.9877,-0.1488,0.0919,0.9877,-0.1266,0.1266,0.9877,-0.0919,0.1488,0.9877,-0.0483,0.1564,0.9877,0.0,0.1488,0.9877,0.0483,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0],"normals":[0.1906,-0.9797,0.0619,0.1621,-0.9797,0.1178,0.3173,-0.9427,0.1031,0.2699,-0.9427,0.1961,0.1178,-0.9797,0.1621,0.1961,-0.9427,0.2699,0.0619,-0.9797,0.1906,0.1031,-0.9427,0.3173,0.0,-0.9797,0.2004,0.0,-0.9427,0.3336,-0.0619,-0.9797,0.1906,-0.1031,-0.9427,0.3173,-0.1178,-0.9797,0.1621,-0.1961,-0.9427,0.2699,-0.1621,-0.9797,0.1178,-0.2699,-0.9427,0.1961,-0.1906,-0.9797,0.0619,-0.3173,-0.9427,0.1031,-0.2004,-0.9797,0.0,-0.3336,-0.9427,0.0,-0.1906,-0.9797,-0.0619,-0.3173,-0.9427,-0.1031,-0.1621,-0.9797,-0.1178,-0.2699,-0.9427,-0.1961,-0.1178,-0.9797,-0.1621,-0.1961,-0.9427,-0.2699,-0.0619,-0.9797,-0.1906,-0.1031,-0.9427,-0.3173,0.0,-0.9797,-0.2004,0.0,-0.9427,-0.3336,0.0619,-0.9797,-0.1906,0.1031,-0.9427,-0.3173,0.1178,-0.9797,-0.1621,0.1961,-0.9427,-0.2699,0.1621,-0.9797,-0.1178,0.2699,-0.9427,-0.1961,0.1906,-0.9797,-0.0619,0.3173,-0.9427,-0.1031,0.2004,-0.9797,0.0,0.3336,-0.9427,0.0,0.1906,-0.9797,0.0619,0.3173,-0.9427,0.1031,0.4477,-0.8823,0.1455,0.3808,-0.8823,0.2767,0.2767,-0.8823,0.3808,0.1455,-0.8823,0.4477,0.0,-0.8823,0.4708,-0.1455,-0.8823,0.4477,-0.2767,-0.8823,0.3808,-0.3808,-0.8823,0.2767,-0.4477,-0.8823,0.1455,-0.4708,-0.8823,0.0,-0.4477,-0.8823,-0.1455,-0.3808,-0.8823,-0.2767,-0.2767,-0.8823,-0.3808,-0.1455,-0.8823,-0.4477,0.0,-0.8823,-0.4708,0.1455,-0.8823,-0.4477,0.2767,-0.8823,-0.3808,0.3808,-0.8823,-0.2767,0.4477,-0.8823,-0.1455,0.4708,-0.8823,0.0,0.4477,-0.8823,0.1455,0.5703,-0.8003,0.1853,0.4851,-0.8003,0.3525,0.3525,-0.8003,0.4851,0.1853,-0.8003,0.5703,0.0,-0.8003,0.5997,-0.1853,-0.8003,0.5703,-0.3525,-0.8003,0.4851,-0.4851,-0.8003,0.3525,-0.5703,-0.8003,0.1853,-0.5997,-0.8003,0.0,-0.5703,-0.8003,-0.1853,-0.4851,-0.8003,-0.3525,-0.3525,-0.8003,-0.4851,-0.1853,-0.8003,-0.5703,0.0,-0.8003,-0.5997,0.1853,-0.8003,-0.5703,0.3525,-0.8003,-0.4851,0.4851,-0.8003,-0.3525,0.5703,-0.8003,-0.1853,0.5997,-0.8003,0.0,0.5703,-0.8003,0.1853,0.6803,-0.6988,0.221,0.5787,-0.6988,0.4205,0.4205,-0.6988,0.5787,0.221,-0.6988,0.6803,0.0,-0.6988,0.7153,-0.221,-0.6988,0.6803,-0.4205,-0.6988,0.5787,-0.5787,-0.6988,0.4205,-0.6803,-0.6988,0.221,-0.7153,-0.6988,0.0,-0.6803,-0.6988,-0.221,-0.5787,-0.6988,-0.4205,-0.4205,-0.6988,-0.5787,-0.221,-0.6988,-0.6803,0.0,-0.6988,-0.7153,0.221,-0.6988,-0.6803,0.4205,-0.6988,-0.5787,0.5787,-0.6988,-0.4205,0.6803,-0.6988,-0.221,0.7153,-0.6988,0.0,0.6803,-0.6988,0.221,0.7745,-0.5804,0.2516,0.6588,-0.5804,0.4787,0.4787,-0.5804,0.6588,0.2516,-0.5804,0.7745,0.0,-0.5804,0.8143,-0.2516,-0.5804,0.7745,-0.4787,-0.5804,0.6588,-0.6588,-0.5804,0.4787,-0.7745,-0.5804,0.2516,-0.8143,-0.5804,0.0,-0.7745,-0.5804,-0.2516,-0.6588,-0.5804,-0.4787,-0.4787,-0.5804,-0.6588,-0.2516,-0.5804,-0.7745,0.0,-0.5804,-0.8143,0.2516,-0.5804,-0.7745,0.4787,-0.5804,-0.6588,0.6588,-0.5804,-0.4787,0.7745,-0.5804,-0.2516,0.8143,-0.5804,0.0,0.7745,-0.5804,0.2516,0.8503,-0.448,0.2763,0.7233,-0.448,0.5255,0.5255,-0.448,0.7233,0.2763,-0.448,0.8503,0.0,-0.448,0.894,-0.2763,-0.448,0.8503,-0.5255,-0.448,0.7233,-0.7233,-0.448,0.5255,-0.8503,-0.448,0.2763,-0.894,-0.448,0.0,-0.8503,-0.448,-0.2763,-0.7233,-0.448,-0.5255,-0.5255,-0.448,-0.7233,-0.2763,-0.448,-0.8503,0.0,-0.448,-0.894,0.2763,-0.448,-0.8503,0.5255,-0.448,-0.7233,0.7233,-0.448,-0.5255,0.8503,-0.448,-0.2763,0.894,-0.448,0.0,0.8503,-0.448,0.2763,0.9058,-0.3048,0.2943,0.7705,-0.3048,0.5598,0.5598,-0.3048,0.7705,0.2943,-0.3048,0.9058,0.0,-0.3048,0.9524,-0.2943,-0.3048,0.9058,-0.5598,-0.3048,0.7705,-0.7705,-0.3048,0.5598,-0.9058,-0.3048,0.2943,-0.9524,-0.3048,0.0,-0.9058,-0.3048,-0.2943,-0.7705,-0.3048,-0.5598,-0.5598,-0.3048,-0.7705,-0.2943,-0.3048,-0.9058,0.0,-0.3048,-0.9524,0.2943,-0.3048,-0.9058,0.5598,-0.3048,-0.7705,0.7705,-0.3048,-0.5598,0.9058,-0.3048,-0.2943,0.9524,-0.3048,0.0,0.9058,-0.3048,0.2943,0.9397,-0.1542,0.3053,0.7993,-0.1542,0.5808,0.5808,-0.1542,0.7993,0.3053,-0.1542,0.9397,0.0,-0.1542,0.988,-0.3053,-0.1542,0.9397,-0.5808,-0.1542,0.7993,-0.7993,-0.1542,0.5808,-0.9397,-0.1542,0.3053,-0.988,-0.1542,0.0,-0.9397,-0.1542,-0.3053,-0.7993,-0.1542,-0.5808,-0.5808,-0.1542,-0.7993,-0.3053,-0.1542,-0.9397,0.0,-0.1542,-0.988,0.3053,-0.1542,-0.9397,0.5808,-0.1542,-0.7993,0.7993,-0.1542,-0.5808,0.9397,-0.1542,-0.3053,0.988,-0.1542,0.0,0.9397,-0.1542,0.3053,0.9511,0.0,0.309,0.809,0.0,0.5878,0.5878,0.0,0.809,0.309,0.0,0.9511,0.0,0.0,1.0,-0.309,0.0,0.9511,-0.5878,0.0,0.809,-0.809,0.0,0.5878,-0.9511,0.0,0.309,-1.0,0.0,0.0,-0.9511,0.0,-0.309,-0.809,0.0,-0.5878,-0.5878,0.0,-0.809,-0.309,0.0,-0.9511,0.0,0.0,-1.0,0.309,0.0,-0.9511,0.5878,0.0,-0.809,0.809,0.0,-0.5878,0.9511,0.0,-0.309,1.0,0.0,0.0,0.9511,0.0,0.309,0.9397,0.1542,0.3053,0.7993,0.1542,0.5808,0.5808,0.1542,0.7993,0.3053,0.1542,0.9397,0.0,0.1542,0.988,-0.3053,0.1542,0.9397,-0.5808,0.1542,0.7993,-0.7993,0.1542,0.5808,-0.9397,0.1542,0.3053,-0.988,0.1542,0.0,-0.9397,0.1542,-0.3053,-0.7993,0.1542,-0.5808,-0.5808,0.1542,-0.7993,-0.3053,0.1542,-0.9397,0.0,0.1542,-0.988,0.3053,0.1542,-0.9397,0.5808,0.1542,-0.7993,0.7993,0.1542,-0.5808,0.9397,0.1542,-0.3053,0.988,0.1542,0.0,0.9397,0.1542,0.3053,0.9058,0.3048,0.2943,0.7705,0.3048,0.5598,0.5598,0.3048,0.7705,0.2943,0.3048,0.9058,0.0,0.3048,0.9524,-0.2943,0.3048,0.9058,-0.5598,0.3048,0.7705,-0.7705,0.3048,0.5598,-0.9058,0.3048,0.2943,-0.9524,0.3048,0.0,-0.9058,0.3048,-0.2943,-0.7705,0.3048,-0.5598,-0.5598,0.3048,-0.7705,-0.2943,0.3048,-0.9058,0.0,0.3048,-0.9524,0.2943,0.3048,-0.9058,0.5598,0.3048,-0.7705,0.7705,0.3048,-0.5598,0.9058,0.3048,-0.2943,0.9524,0.3048,0.0,0.9058,0.3048,0.2943,0.8503,0.448,0.2763,0.7233,0.448,0.5255,0.5255,0.448,0.7233,0.2763,0.448,0.8503,0.0,0.448,0.894,-0.2763,0.448,0.8503,-0.5255,0.448,0.7233,-0.7233,0.448,0.5255,-0.8503,0.448,0.2763,-0.894,0.448,0.0,-0.8503,0.448,-0.2763,-0.7233,0.448,-0.5255,-0.5255,0.448,-0.7233,-0.2763,0.448,-0.8503,0.0,0.448,-0.894,0.2763,0.448,-0.8503,0.5255,0.448,-0.7233,0.7233,0.448,-0.5255,0.8503,0.448,-0.2763,0.894,0.448,0.0,0.8503,0.448,0.2763,0.7745,0.5804,0.2516,0.6588,0.5804,0.4787,0.4787,0.5804,0.6588,0.2516,0.5804,0.7745,0.0,0.5804,0.8143,-0.2516,0.5804,0.7745,-0.4787,0.5804,0.6588,-0.6588,0.5804,0.4787,-0.7745,0.5804,0.2516,-0.8143,0.5804,0.0,-0.7745,0.5804,-0.2516,-0.6588,0.5804,-0.4787,-0.4787,0.5804,-0.6588,-0.2516,0.5804,-0.7745,0.0,0.5804,-0.8143,0.2516,0.5804,-0.7745,0.4787,0.5804,-0.6588,0.6588,0.5804,-0.4787,0.7745,0.5804,-0.2516,0.8143,0.5804,0.0,0.7745,0.5804,0.2516,0.6803,0.6988,0.221,0.5787,0.6988,0.4205,0.4205,0.6988,0.5787,0.221,0.6988,0.6803,0.0,0.6988,0.7153,-0.221,0.6988,0.6803,-0.4205,0.6988,0.5787,-0.5787,0.6988,0.4205,-0.6803,0.6988,0.221,-0.7153,0.6988,0.0,-0.6803,0.6988,-0.221,-0.5787,0.6988,-0.4205,-0.4205,0.6988,-0.5787,-0.221,0.6988,-0.6803,0.0,0.6988,-0.7153,0.221,0.6988,-0.6803,0.4205,0.6988,-0.5787,0.5787,0.6988,-0.4205,0.6803,0.6988,-0.221,0.7153,0.6988,0.0,0.6803,0.6988,0.221,0.5703,0.8003,0.1853,0.4851,0.8003,0.3525,0.3525,0.8003,0.4851,0.1853,0.8003,0.5703,0.0,0.8003,0.5997,-0.1853,0.8003,0.5703,-0.3525,0.8003,0.4851,-0.4851,0.8003,0.3525,-0.5703,0.8003,0.1853,-0.5997,0.8003,0.0,-0.5703,0.8003,-0.1853,-0.4851,0.8003,-0.3525,-0.3525,0.8003,-0.4851,-0.1853,0.8003,-0.5703,0.0,0.8003,-0.5997,0.1853,0.8003,-0.5703,0.3525,0.8003,-0.4851,0.4851,0.8003,-0.3525,0.5703,0.8003,-0.1853,0.5997,0.8003,0.0,0.5703,0.8003,0.1853,0.4477,0.8823,0.1455,0.3808,0.8823,0.2767,0.2767,0.8823,0.3808,0.1455,0.8823,0.4477,0.0,0.8823,0.4708,-0.1455,0.8823,0.4477,-0.2767,0.8823,0.3808,-0.3808,0.8823,0.2767,-0.4477,0.8823,0.1455,-0.4708,0.8823,0.0,-0.4477,0.8823,-0.1455,-0.3808,0.8823,-0.2767,-0.2767,0.8823,-0.3808,-0.1455,0.8823,-0.4477,0.0,0.8823,-0.4708,0.1455,0.8823,-0.4477,0.2767,0.8823,-0.3808,0.3808,0.8823,-0.2767,0.4477,0.8823,-0.1455,0.4708,0.8823,0.0,0.4477,0.8823,0.1455,0.3173,0.9427,0.1031,0.2699,0.9427,0.1961,0.1961,0.9427,0.2699,0.1031,0.9427,0.3173,0.0,0.9427,0.3336,-0.1031,0.9427,0.3173,-0.1961,0.9427,0.2699,-0.2699,0.9427,0.1961,-0.3173,0.9427,0.1031,-0.3336,0.9427,0.0,-0.3173,0.9427,-0.1031,-0.2699,0.9427,-0.1961,-0.1961,0.9427,-0.2699,-0.1031,0.9427,-0.3173,0.0,0.9427,-0.3336,0.1031,0.9427,-0.3173,0.1961,0.9427,-0.2699,0.2699,0.9427,-0.1961,0.3173,0.9427,-0.1031,0.3336,0.9427,0.0,0.3173,0.9427,0.1031,0.1906,0.9797,0.0619,0.1621,0.9797,0.1178,0.1178,0.9797,0.1621,0.0619,0.9797,0.1906,0.0,0.9797,0.2004,-0.0619,0.9797,0.1906,-0.1178,0.9797,0.1621,-0.1621,0.9797,0.1178,-0.1906,0.9797,0.0619,-0.2004,0.9797,0.0,-0.1906,0.9797,-0.0619,-0.1621,0.9797,-0.1178,-0.1178,0.9797,-0.1621,-0.0619,0.9797,-0.1906,0.0,0.9797,-0.2004,0.0619,0.9797,-0.1906,0.1178,0.9797,-0.1621,0.1621,0.9797,-0.1178,0.1906,0.9797,-0.0619,0.2004,0.9797,0.0,0.1906,0.9797,0.0619,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0],"tangents":[-0.4482,-0.0307,0.8934,-1.0,-0.5629,0.0062,0.8265,-1.0,-0.438,-0.0493,0.8976,-1.0,-0.5878,0.0,0.809,-1.0,-0.7908,0.0062,0.6121,-1.0,-0.809,0.0,0.5878,-1.0,-0.9412,0.0062,0.3378,-1.0,-0.9511,0.0,0.309,-1.0,-0.9995,0.0062,0.0304,-1.0,-1.0,0.0,0.0,-1.0,-0.96,0.0062,-0.28,-1.0,-0.9511,0.0,-0.309,-1.0,-0.8265,0.0062,-0.5629,-1.0,-0.809,0.0,-0.5878,-1.0,-0.6121,0.0062,-0.7908,-1.0,-0.5878,0.0,-0.809,-1.0,-0.3378,0.0062,-0.9412,-1.0,-0.309,0.0,-0.9511,-1.0,-0.0304,0.0062,-0.9995,-1.0,0.0,0.0,-1.0,-1.0,0.28,0.0062,-0.96,-1.0,0.309,0.0,-0.9511,-1.0,0.5629,0.0062,-0.8265,-1.0,0.5878,0.0,-0.809,-1.0,0.7908,0.0062,-0.6121,-1.0,0.809,0.0,-0.5878,-1.0,0.9412,0.0062,-0.3378,-1.0,0.9511,0.0,-0.309,-1.0,0.9995,0.0062,-0.0304,-1.0,1.0,0.0,0.0,-1.0,0.96,0.0062,0.28,-1.0,0.9511,0.0,0.309,-1.0,0.8265,0.0062,0.5629,-1.0,0.809,0.0,0.5878,-1.0,0.6121,0.0062,0.7908,-1.0,0.5878,0.0,0.809,-1.0,0.3378,0.0062,0.9412,-1.0,0.309,0.0,0.9511,-1.0,0.0304,0.0062,0.9995,-1.0,0.0,0.0,1.0,-1.0,-0.1625,0.0307,0.9862,-1.0,-0.1732,0.0493,0.9836,-1.0,-0.4222,-0.0651,0.9042,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.1899,0.0651,0.9796,-1.0,-0.4023,-0.0754,0.9124,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.2109,0.0754,0.9746,-1.0,-0.3802,-0.0787,0.9215,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.234,0.0787,0.969,-1.0,-0.3582,-0.0745,0.9306,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.2572,0.0745,0.9635,-1.0,-0.3384,-0.0633,0.9389,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.2781,0.0633,0.9585,-1.0,-0.3226,-0.0459,0.9454,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.2947,0.0459,0.9545,-1.0,-0.3125,-0.0241,0.9496,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.3053,0.0241,0.9519,-1.0,-0.309,0.0,0.9511,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.309,0.0,0.9511,-1.0,-0.3125,0.0241,0.9496,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.3053,-0.0241,0.9519,-1.0,-0.3226,0.0459,0.9454,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.2947,-0.0459,0.9545,-1.0,-0.3384,0.0633,0.9389,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.2781,-0.0633,0.9585,-1.0,-0.3582,0.0745,0.9306,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.2572,-0.0745,0.9635,-1.0,-0.3802,0.0787,0.9215,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.234,-0.0787,0.969,-1.0,-0.4023,0.0754,0.9124,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.2109,-0.0754,0.9746,-1.0,-0.4222,0.0651,0.9042,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.1899,-0.0651,0.9796,-1.0,-0.438,0.0493,0.8976,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.1732,-0.0493,0.9836,-1.0,-0.4482,0.0307,0.8934,-1.0,-0.6121,0.0062,0.7908,-1.0,-0.8265,0.0062,0.5629,-1.0,-0.96,0.0062,0.28,-1.0,-0.9995,0.0062,-0.0304,-1.0,-0.9412,0.0062,-0.3378,-1.0,-0.7908,0.0062,-0.6121,-1.0,-0.5629,0.0062,-0.8265,-1.0,-0.28,0.0062,-0.96,-1.0,0.0304,0.0062,-0.9995,-1.0,0.3378,0.0062,-0.9412,-1.0,0.6121,0.0062,-0.7908,-1.0,0.8265,0.0062,-0.5629,-1.0,0.96,0.0062,-0.28,-1.0,0.9995,0.0062,0.0304,-1.0,0.9412,0.0062,0.3378,-1.0,0.7908,0.0062,0.6121,-1.0,0.5629,0.0062,0.8265,-1.0,0.28,0.0062,0.96,-1.0,-0.0304,0.0062,0.9995,-1.0,-0.1625,-0.0307,0.9862,-1.0,-0.454,0.0,0.891,-1.0,-0.7071,0.0,0.7071,-1.0,-0.891,0.0,0.454,-1.0,-0.9877,0.0,0.1564,-1.0,-0.9877,0.0,-0.1564,-1.0,-0.891,0.0,-0.454,-1.0,-0.7071,0.0,-0.7071,-1.0,-0.454,0.0,-0.891,-1.0,-0.1564,0.0,-0.9877,-1.0,0.1564,0.0,-0.9877,-1.0,0.454,0.0,-0.891,-1.0,0.7071,0.0,-0.7071,-1.0,0.891,0.0,-0.454,-1.0,0.9877,0.0,-0.1564,-1.0,0.9877,0.0,0.1564,-1.0,0.891,0.0,0.454,-1.0,0.7071,0.0,0.7071,-1.0,0.454,0.0,0.891,-1.0,0.1564,0.0,0.9877,-1.0,-0.1564,0.0,0.9877,-1.0,-0.454,0.0,0.891,-1.0,-0.7071,0.0,0.7071,-1.0,-0.891,0.0,0.454,-1.0,-0.9877,0.0,0.1564,-1.0,-0.9877,0.0,-0.1564,-1.0,-0.891,0.0,-0.454,-1.0,-0.7071,0.0,-0.7071,-1.0,-0.454,0.0,-0.891,-1.0,-0.1564,0.0,-0.9877,-1.0,0.1564,0.0,-0.9877,-1.0,0.454,0.0,-0.891,-1.0,0.7071,0.0,-0.7071,-1.0,0.891,0.0,-0.454,-1.0,0.9877,0.0,-0.1564,-1.0,0.9877,0.0,0.1564,-1.0,0.891,0.0,0.454,-1.0,0.7071,0.0,0.7071,-1.0,0.454,0.0,0.891,-1.0,0.1564,0.0,0.9877,-1.0,-0.1564,0.0,0.9877,-1.0],"uvs":[0.0,0.05,0.05,0.05,0.0,0.1,0.05,0.1,0.1,0.05,0.1,0.1,0.15,0.05,0.15,0.1,0.2,0.05,0.2,0.1,0.25,0.05,0.25,0.1,0.3,0.05,0.3,0.1,0.35,0.05,0.35,0.1,0.4,0.05,0.4,0.1,0.45,0.05,0.45,0.1,0.5,0.05,0.5,0.1,0.55,0.05,0.55,0.1,0.6,0.05,0.6,0.1,0.65,0.05,0.65,0.1,0.7,0.05,0.7,0.1,0.75,0.05,0.75,0.1,0.8,0.05,0.8,0.1,0.85,0.05,0.85,0.1,0.9,0.05,0.9,0.1,0.95,0.05,0.95,0.1,1.0,0.05,1.0,0.1,0.0,0.15,0.05,0.15,0.1,0.15,0.15,0.15,0.2,0.15,0.25,0.15,0.3,0.15,0.35,0.15,0.4,0.15,0.45,0.15,0.5,0.15,0.55,0.15,0.6,0.15,0.65,0.15,0.7,0.15,0.75,0.15,0.8,0.15,0.85,0.15,0.9,0.15,0.95,0.15,1.0,0.15,0.0,0.2,0.05,0.2,0.1,0.2,0.15,0.2,0.2,0.2,0.25,0.2,0.3,0.2,0.35,0.2,0.4,0.2,0.45,0.2,0.5,0.2,0.55,0.2,0.6,0.2,0.65,0.2,0.7,0.2,0.75,0.2,0.8,0.2,0.85,0.2,0.9,0.2,0.95,0.2,1.0,0.2,0.0,0.25,0.05,0.25,0.1,0.25,0.15,0.25,0.2,0.25,0.25,0.25,0.3,0.25,0.35,0.25,0.4,0.25,0.45,0.25,0.5,0.25,0.55,0.25,0.6,0.25,0.65,0.25,0.7,0.25,0.75,0.25,0.8,0.25,0.85,0.25,0.9,0.25,0.95,0.25,1.0,0.25,0.0,0.3,0.05,0.3,0.1,0.3,0.15,0.3,0.2,0.3,0.25,0.3,0.3,0.3,0.35,0.3,0.4,0.3,0.45,0.3,0.5,0.3,0.55,0.3,0.6,0.3,0.65,0.3,0.7,0.3,0.75,0.3,0.8,0.3,0.85,0.3,0.9,0.3,0.95,0.3,1.0,0.3,0.0,0.35,0.05,0.35,0.1,0.35,0.15,0.35,0.2,0.35,0.25,0.35,0.3,0.35,0.35,0.35,0.4,0.35,0.45,0.35,0.5,0.35,0.55,0.35,0.6,0.35,0.65,0.35,0.7,0.35,0.75,0.35,0.8,0.35,0.85,0.35,0.9,0.35,0.95,0.35,1.0,0.35,0.0,0.4,0.05,0.4,0.1,0.4,0.15,0.4,0.2,0.4,0.25,0.4,0.3,0.4,0.35,0.4,0.4,0.4,0.45,0.4,0.5,0.4,0.55,0.4,0.6,0.4,0.65,0.4,0.7,0.4,0.75,0.4,0.8,0.4,0.85,0.4,0.9,0.4,0.95,0.4,1.0,0.4,0.0,0.45,0.05,0.45,0.1,0.45,0.15,0.45,0.2,0.45,0.25,0.45,0.3,0.45,0.35,0.45,0.4,0.45,0.45,0.45,0.5,0.45,0.55,0.45,0.6,0.45,0.65,0.45,0.7,0.45,0.75,0.45,0.8,0.45,0.85,0.45,0.9,0.45,0.95,0.45,1.0,0.45,0.0,0.5,0.05,0.5,0.1,0.5,0.15,0.5,0.2,0.5,0.25,0.5,0.3,0.5,0.35,0.5,0.4,0.5,0.45,0.5,0.5,0.5,0.55,0.5,0.6,0.5,0.65,0.5,0.7,0.5,0.75,0.5,0.8,0.5,0.85,0.5,0.9,0.5,0.95,0.5,1.0,0.5,0.0,0.55,0.05,0.55,0.1,0.55,0.15,0.55,0.2,0.55,0.25,0.55,0.3,0.55,0.35,0.55,0.4,0.55,0.45,0.55,0.5,0.55,0.55,0.55,0.6,0.55,0.65,0.55,0.7,0.55,0.75,0.55,0.8,0.55,0.85,0.55,0.9,0.55,0.95,0.55,1.0,0.55,0.0,0.6,0.05,0.6,0.1,0.6,0.15,0.6,0.2,0.6,0.25,0.6,0.3,0.6,0.35,0.6,0.4,0.6,0.45,0.6,0.5,0.6,0.55,0.6,0.6,0.6,0.65,0.6,0.7,0.6,0.75,0.6,0.8,0.6,0.85,0.6,0.9,0.6,0.95,0.6,1.0,0.6,0.0,0.65,0.05,0.65,0.1,0.65,0.15,0.65,0.2,0.65,0.25,0.65,0.3,0.65,0.35,0.65,0.4,0.65,0.45,0.65,0.5,0.65,0.55,0.65,0.6,0.65,0.65,0.65,0.7,0.65,0.75,0.65,0.8,0.65,0.85,0.65,0.9,0.65,0.95,0.65,1.0,0.65,0.0,0.7,0.05,0.7,0.1,0.7,0.15,0.7,0.2,0.7,0.25,0.7,0.3,0.7,0.35,0.7,0.4,0.7,0.45,0.7,0.5,0.7,0.55,0.7,0.6,0.7,0.65,0.7,0.7,0.7,0.75,0.7,0.8,0.7,0.85,0.7,0.9,0.7,0.95,0.7,1.0,0.7,0.0,0.75,0.05,0.75,0.1,0.75,0.15,0.75,0.2,0.75,0.25,0.75,0.3,0.75,0.35,0.75,0.4,0.75,0.45,0.75,0.5,0.75,0.55,0.75,0.6,0.75,0.65,0.75,0.7,0.75,0.75,0.75,0.8,0.75,0.85,0.75,0.9,0.75,0.95,0.75,1.0,0.75,0.0,0.8,0.05,0.8,0.1,0.8,0.15,0.8,0.2,0.8,0.25,0.8,0.3,0.8,0.35,0.8,0.4,0.8,0.45,0.8,0.5,0.8,0.55,0.8,0.6,0.8,0.65,0.8,0.7,0.8,0.75,0.8,0.8,0.8,0.85,0.8,0.9,0.8,0.95,0.8,1.0,0.8,0.0,0.85,0.05,0.85,0.1,0.85,0.15,0.85,0.2,0.85,0.25,0.85,0.3,0.85,0.35,0.85,0.4,0.85,0.45,0.85,0.5,0.85,0.55,0.85,0.6,0.85,0.65,0.85,0.7,0.85,0.75,0.85,0.8,0.85,0.85,0.85,0.9,0.85,0.95,0.85,1.0,0.85,0.0,0.9,0.05,0.9,0.1,0.9,0.15,0.9,0.2,0.9,0.25,0.9,0.3,0.9,0.35,0.9,0.4,0.9,0.45,0.9,0.5,0.9,0.55,0.9,0.6,0.9,0.65,0.9,0.7,0.9,0.75,0.9,0.8,0.9,0.85,0.9,0.9,0.9,0.95,0.9,1.0,0.9,0.0,0.95,0.05,0.95,0.1,0.95,0.15,0.95,0.2,0.95,0.25,0.95,0.3,0.95,0.35,0.95,0.4,0.95,0.45,0.95,0.5,0.95,0.55,0.95,0.6,0.95,0.65,0.95,0.7,0.95,0.75,0.95,0.8,0.95,0.85,0.95,0.9,0.95,0.95,0.95,1.0,0.95,0.025,0.0,0.075,0.0,0.125,0.0,0.175,0.0,0.225,0.0,0.275,0.0,0.325,0.0,0.375,0.0,0.425,0.0,0.475,0.0,0.525,0.0,0.575,0.0,0.625,0.0,0.675,0.0,0.725,0.0,0.775,0.0,0.825,0.0,0.875,0.0,0.925,0.0,0.975,0.0,0.025,1.0,0.075,1.0,0.125,1.0,0.175,1.0,0.225,1.0,0.275,1.0,0.325,1.0,0.375,1.0,0.425,1.0,0.475,1.0,0.525,1.0,0.575,1.0,0.625,1.0,0.675,1.0,0.725,1.0,0.775,1.0,0.825,1.0,0.875,1.0,0.925,1.0,0.975,1.0],"uvs2":null,"colors":null,"hasVertexAlpha":false,"matricesIndices":null,"matricesWeights":null,"matricesIndicesExtra":null,"matricesWeightsExtra":null,"indices":[0,1,2,2,1,3,1,4,3,3,4,5,4,6,5,5,6,7,6,8,7,7,8,9,8,10,9,9,10,11,10,12,11,11,12,13,12,14,13,13,14,15,14,16,15,15,16,17,16,18,17,17,18,19,18,20,19,19,20,21,20,22,21,21,22,23,22,24,23,23,24,25,24,26,25,25,26,27,26,28,27,27,28,29,28,30,29,29,30,31,30,32,31,31,32,33,32,34,33,33,34,35,34,36,35,35,36,37,36,38,37,37,38,39,38,40,39,39,40,41,2,3,42,42,3,43,3,5,43,43,5,44,5,7,44,44,7,45,7,9,45,45,9,46,9,11,46,46,11,47,11,13,47,47,13,48,13,15,48,48,15,49,15,17,49,49,17,50,17,19,50,50,19,51,19,21,51,51,21,52,21,23,52,52,23,53,23,25,53,53,25,54,25,27,54,54,27,55,27,29,55,55,29,56,29,31,56,56,31,57,31,33,57,57,33,58,33,35,58,58,35,59,35,37,59,59,37,60,37,39,60,60,39,61,39,41,61,61,41,62,42,43,63,63,43,64,43,44,64,64,44,65,44,45,65,65,45,66,45,46,66,66,46,67,46,47,67,67,47,68,47,48,68,68,48,69,48,49,69,69,49,70,49,50,70,70,50,71,50,51,71,71,51,72,51,52,72,72,52,73,52,53,73,73,53,74,53,54,74,74,54,75,54,55,75,75,55,76,55,56,76,76,56,77,56,57,77,77,57,78,57,58,78,78,58,79,58,59,79,79,59,80,59,60,80,80,60,81,60,61,81,81,61,82,61,62,82,82,62,83,63,64,84,84,64,85,64,65,85,85,65,86,65,66,86,86,66,87,66,67,87,87,67,88,67,68,88,88,68,89,68,69,89,89,69,90,69,70,90,90,70,91,70,71,91,91,71,92,71,72,92,92,72,93,72,73,93,93,73,94,73,74,94,94,74,95,74,75,95,95,75,96,75,76,96,96,76,97,76,77,97,97,77,98,77,78,98,98,78,99,78,79,99,99,79,100,79,80,100,100,80,101,80,81,101,101,81,102,81,82,102,102,82,103,82,83,103,103,83,104,84,85,105,105,85,106,85,86,106,106,86,107,86,87,107,107,87,108,87,88,108,108,88,109,88,89,109,109,89,110,89,90,110,110,90,111,90,91,111,111,91,112,91,92,112,112,92,113,92,93,113,113,93,114,93,94,114,114,94,115,94,95,115,115,95,116,95,96,116,116,96,117,96,97,117,117,97,118,97,98,118,118,98,119,98,99,119,119,99,120,99,100,120,120,100,121,100,101,121,121,101,122,101,102,122,122,102,123,102,103,123,123,103,124,103,104,124,124,104,125,105,106,126,126,106,127,106,107,127,127,107,128,107,108,128,128,108,129,108,109,129,129,109,130,109,110,130,130,110,131,110,111,131,131,111,132,111,112,132,132,112,133,112,113,133,133,113,134,113,114,134,134,114,135,114,115,135,135,115,136,115,116,136,136,116,137,116,117,137,137,117,138,117,118,138,138,118,139,118,119,139,139,119,140,119,120,140,140,120,141,120,121,141,141,121,142,121,122,142,142,122,143,122,123,143,143,123,144,123,124,144,144,124,145,124,125,145,145,125,146,126,127,147,147,127,148,127,128,148,148,128,149,128,129,149,149,129,150,129,130,150,150,130,151,130,131,151,151,131,152,131,132,152,152,132,153,132,133,153,153,133,154,133,134,154,154,134,155,134,135,155,155,135,156,135,136,156,156,136,157,136,137,157,157,137,158,137,138,158,158,138,159,138,139,159,159,139,160,139,140,160,160,140,161,140,141,161,161,141,162,141,142,162,162,142,163,142,143,163,163,143,164,143,144,164,164,144,165,144,145,165,165,145,166,145,146,166,166,146,167,147,148,168,168,148,169,148,149,169,169,149,170,149,150,170,170,150,171,150,151,171,171,151,172,151,152,172,172,152,173,152,153,173,173,153,174,153,154,174,174,154,175,154,155,175,175,155,176,155,156,176,176,156,177,156,157,177,177,157,178,157,158,178,178,158,179,158,159,179,179,159,180,159,160,180,180,160,181,160,161,181,181,161,182,161,162,182,182,162,183,162,163,183,183,163,184,163,164,184,184,164,185,164,165,185,185,165,186,165,166,186,186,166,187,166,167,187,187,167,188,168,169,189,189,169,190,169,170,190,190,170,191,170,171,191,191,171,192,171,172,192,192,172,193,172,173,193,193,173,194,173,174,194,194,174,195,174,175,195,195,175,196,175,176,196,196,176,197,176,177,197,197,177,198,177,178,198,198,178,199,178,179,199,199,179,200,179,180,200,200,180,201,180,181,201,201,181,202,181,182,202,202,182,203,182,183,203,203,183,204,183,184,204,204,184,205,184,185,205,205,185,206,185,186,206,206,186,207,186,187,207,207,187,208,187,188,208,208,188,209,189,190,210,210,190,211,190,191,211,211,191,212,191,192,212,212,192,213,192,193,213,213,193,214,193,194,214,214,194,215,194,195,215,215,195,216,195,196,216,216,196,217,196,197,217,217,197,218,197,198,218,218,198,219,198,199,219,219,199,220,199,200,220,220,200,221,200,201,221,221,201,222,201,202,222,222,202,223,202,203,223,223,203,224,203,204,224,224,204,225,204,205,225,225,205,226,205,206,226,226,206,227,206,207,227,227,207,228,207,208,228,228,208,229,208,209,229,229,209,230,210,211,231,231,211,232,211,212,232,232,212,233,212,213,233,233,213,234,213,214,234,234,214,235,214,215,235,235,215,236,215,216,236,236,216,237,216,217,237,237,217,238,217,218,238,238,218,239,218,219,239,239,219,240,219,220,240,240,220,241,220,221,241,241,221,242,221,222,242,242,222,243,222,223,243,243,223,244,223,224,244,244,224,245,224,225,245,245,225,246,225,226,246,246,226,247,226,227,247,247,227,248,227,228,248,248,228,249,228,229,249,249,229,250,229,230,250,250,230,251,231,232,252,252,232,253,232,233,253,253,233,254,233,234,254,254,234,255,234,235,255,255,235,256,235,236,256,256,236,257,236,237,257,257,237,258,237,238,258,258,238,259,238,239,259,259,239,260,239,240,260,260,240,261,240,241,261,261,241,262,241,242,262,262,242,263,242,243,263,263,243,264,243,244,264,264,244,265,244,245,265,265,245,266,245,246,266,266,246,267,246,247,267,267,247,268,247,248,268,268,248,269,248,249,269,269,249,270,249,250,270,270,250,271,250,251,271,271,251,272,252,253,273,273,253,274,253,254,274,274,254,275,254,255,275,275,255,276,255,256,276,276,256,277,256,257,277,277,257,278,257,258,278,278,258,279,258,259,279,279,259,280,259,260,280,280,260,281,260,261,281,281,261,282,261,262,282,282,262,283,262,263,283,283,263,284,263,264,284,284,264,285,264,265,285,285,265,286,265,266,286,286,266,287,266,267,287,287,267,288,267,268,288,288,268,289,268,269,289,289,269,290,269,270,290,290,270,291,270,271,291,291,271,292,271,272,292,292,272,293,273,274,294,294,274,295,274,275,295,295,275,296,275,276,296,296,276,297,276,277,297,297,277,298,277,278,298,298,278,299,278,279,299,299,279,300,279,280,300,300,280,301,280,281,301,301,281,302,281,282,302,302,282,303,282,283,303,303,283,304,283,284,304,304,284,305,284,285,305,305,285,306,285,286,306,306,286,307,286,287,307,307,287,308,287,288,308,308,288,309,288,289,309,309,289,310,289,290,310,310,290,311,290,291,311,311,291,312,291,292,312,312,292,313,292,293,313,313,293,314,294,295,315,315,295,316,295,296,316,316,296,317,296,297,317,317,297,318,297,298,318,318,298,319,298,299,319,319,299,320,299,300,320,320,300,321,300,301,321,321,301,322,301,302,322,322,302,323,302,303,323,323,303,324,303,304,324,324,304,325,304,305,325,325,305,326,305,306,326,326,306,327,306,307,327,327,307,328,307,308,328,328,308,329,308,309,329,329,309,330,309,310,330,330,310,331,310,311,331,331,311,332,311,312,332,332,312,333,312,313,333,333,313,334,313,314,334,334,314,335,315,316,336,336,316,337,316,317,337,337,317,338,317,318,338,338,318,339,318,319,339,339,319,340,319,320,340,340,320,341,320,321,341,341,321,342,321,322,342,342,322,343,322,323,343,343,323,344,323,324,344,344,324,345,324,325,345,345,325,346,325,326,346,346,326,347,326,327,347,347,327,348,327,328,348,348,328,349,328,329,349,349,329,350,329,330,350,350,330,351,330,331,351,351,331,352,331,332,352,352,332,353,332,333,353,353,333,354,333,334,354,354,334,355,334,335,355,355,335,356,336,337,357,357,337,358,337,338,358,358,338,359,338,339,359,359,339,360,339,340,360,360,340,361,340,341,361,361,341,362,341,342,362,362,342,363,342,343,363,363,343,364,343,344,364,364,344,365,344,345,365,365,345,366,345,346,366,366,346,367,346,347,367,367,347,368,347,348,368,368,348,369,348,349,369,369,349,370,349,350,370,370,350,371,350,351,371,371,351,372,351,352,372,372,352,373,352,353,373,373,353,374,353,354,374,374,354,375,354,355,375,375,355,376,355,356,376,376,356,377,357,358,378,378,358,379,358,359,379,379,359,380,359,360,380,380,360,381,360,361,381,381,361,382,361,362,382,382,362,383,362,363,383,383,363,384,363,364,384,384,364,385,364,365,385,385,365,386,365,366,386,386,366,387,366,367,387,387,367,388,367,368,388,388,368,389,368,369,389,389,369,390,369,370,390,390,370,391,370,371,391,391,371,392,371,372,392,392,372,393,372,373,393,393,373,394,373,374,394,394,374,395,374,375,395,395,375,396,375,376,396,396,376,397,376,377,397,397,377,398,1,0,399,4,1,400,6,4,401,8,6,402,10,8,403,12,10,404,14,12,405,16,14,406,18,16,407,20,18,408,22,20,409,24,22,410,26,24,411,28,26,412,30,28,413,32,30,414,34,32,415,36,34,416,38,36,417,40,38,418,378,379,419,379,380,420,380,381,421,381,382,422,382,383,423,383,384,424,384,385,425,385,386,426,386,387,427,387,388,428,388,389,429,389,390,430,390,391,431,391,392,432,392,393,433,393,394,434,394,395,435,395,396,436,396,397,437,397,398,438],"receiveShadows":false,"infiniteDistance":false,"billboardMode":0,"visibility":1.0,"subMeshes":[{"materialIndex":0,"verticesStart":0,"verticesCount":439,"indexStart":0,"indexCount":2280}],"instances":null,"skeletonId":-1,"numBoneInfluencers":4,"applyFog":false,"lodMeshIds":null,"lodDistances":null,"lodCoverages":null,"rotation":null,"scaling":[1.0,1.0,1.0],"rotationQuaternion":[0.0,0.1736,0.0,0.9848],"actions":null,"checkCollisions":false,"pickable":true,"showBoundingBox":false,"showSubMeshesBoundingBox":false,"alphaIndex":0,"physicsImpostor":0,"physicsMass":0.0,"physicsFriction":0.0,"physicsRestitution":0.0,"name":"pSphere5","id":"36C2E6AB-4AC0-8CA5-042B-7FB4C99705F1","parentId":null,"position":[6.0,0.0,5.0],"animations":[],"autoAnimate":true,"autoAnimateFrom":1,"autoAnimateTo":200,"autoAnimateLoop":true,"metadata":{}},{"materialId":null,"isEnabled":true,"isVisible":true,"positions":null,"normals":null,"tangents":null,"uvs":null,"uvs2":null,"colors":null,"hasVertexAlpha":false,"matricesIndices":null,"matricesWeights":null,"matricesIndicesExtra":null,"matricesWeightsExtra":null,"indices":null,"receiveShadows":false,"infiniteDistance":false,"billboardMode":0,"visibility":1.0,"subMeshes":null,"instances":null,"skeletonId":-1,"numBoneInfluencers":4,"applyFog":false,"lodMeshIds":null,"lodDistances":null,"lodCoverages":null,"rotation":null,"scaling":[1.0,1.0,1.0],"rotationQuaternion":[0.0,0.0,0.0,1.0],"actions":null,"checkCollisions":false,"pickable":true,"showBoundingBox":false,"showSubMeshesBoundingBox":false,"alphaIndex":0,"physicsImpostor":0,"physicsMass":0.0,"physicsFriction":0.0,"physicsRestitution":0.0,"name":"camera1_group","id":"445214BC-44AE-3B76-F9B7-F39619D41560","parentId":null,"position":[0.0,0.0,0.0],"animations":[],"autoAnimate":true,"autoAnimateFrom":1,"autoAnimateTo":200,"autoAnimateLoop":true,"metadata":null},{"materialId":null,"isEnabled":true,"isVisible":true,"positions":null,"normals":null,"tangents":null,"uvs":null,"uvs2":null,"colors":null,"hasVertexAlpha":false,"matricesIndices":null,"matricesWeights":null,"matricesIndicesExtra":null,"matricesWeightsExtra":null,"indices":null,"receiveShadows":false,"infiniteDistance":false,"billboardMode":0,"visibility":1.0,"subMeshes":null,"instances":null,"skeletonId":-1,"numBoneInfluencers":4,"applyFog":false,"lodMeshIds":null,"lodDistances":null,"lodCoverages":null,"rotation":null,"scaling":[1.0,1.0,1.0],"rotationQuaternion":[0.0,0.0,0.0,1.0],"actions":null,"checkCollisions":false,"pickable":true,"showBoundingBox":false,"showSubMeshesBoundingBox":false,"alphaIndex":0,"physicsImpostor":0,"physicsMass":0.0,"physicsFriction":0.0,"physicsRestitution":0.0,"name":"camera1_aim","id":"35B30E14-45FB-B1BA-1FA6-278686591A99","parentId":"445214BC-44AE-3B76-F9B7-F39619D41560","position":[4.6701,0.0,2.1927],"animations":[],"autoAnimate":true,"autoAnimateFrom":1,"autoAnimateTo":200,"autoAnimateLoop":true,"metadata":null}],"sounds":[],"materials":[{"customType":"BABYLON.StandardMaterial","ambient":[1.0,1.0,1.0],"diffuse":[1.0,0.0,0.0],"specular":[0.5,0.5,0.5],"emissive":[0.0,0.0,0.0],"specularPower":110.6414,"diffuseTexture":null,"diffuseFresnelParameters":null,"ambientTexture":null,"opacityTexture":null,"opacityFresnelParameters":null,"reflectionTexture":null,"reflectionFresnelParameters":null,"emissiveTexture":null,"lightmapTexture":null,"useLightmapAsShadowmap":false,"emissiveFresnelParameters":null,"specularTexture":null,"bumpTexture":null,"useSpecularOverAlpha":true,"disableLighting":false,"useEmissiveAsIllumination":false,"linkEmissiveWithDiffuse":true,"twoSidedLighting":false,"useGlossinessFromSpecularMapAlpha":false,"name":"phong1","id":"9B24F14E-4F69-6849-B864-07B9E4A7E9FF","backFaceCulling":true,"wireframe":false,"alpha":1.0,"alphaMode":2,"maxSimultaneousLights":4,"metadata":{}},{"customType":"BABYLON.PBRMetallicRoughnessMaterial","baseColor":[0.0,1.0,0.0],"baseTexture":null,"metallic":0.0,"roughness":0.33,"metallicRoughnessTexture":null,"disableLighting":false,"invertNormalMapX":false,"invertNormalMapY":false,"normalTexture":null,"emissive":[0.0,0.0,0.0],"emissiveTexture":null,"occlusionStrength":1.0,"occlusionTexture":null,"transparencyMode":0,"doubleSided":false,"clearCoat":{"isEnabled":false,"intensity":1.0,"roughness":0.0,"indexOfRefraction":1.5,"texture":null,"bumpTexture":null,"isTintEnabled":false,"tintColor":[1.0,1.0,1.0],"tintThickness":1.0,"tintTexture":null},"name":"StingrayPBS1","id":"0E49D5E9-4200-91FB-CB7B-93B40CEF850E","backFaceCulling":true,"wireframe":false,"alpha":1.0,"alphaMode":2,"maxSimultaneousLights":4,"metadata":null},{"customType":"BABYLON.PBRMetallicRoughnessMaterial","baseColor":[0.0,0.0,0.8],"baseTexture":null,"metallic":0.0,"roughness":0.1,"metallicRoughnessTexture":null,"disableLighting":false,"invertNormalMapX":false,"invertNormalMapY":false,"normalTexture":null,"emissive":[0.0,0.0,0.0],"emissiveTexture":null,"occlusionStrength":1.0,"occlusionTexture":null,"transparencyMode":0,"doubleSided":false,"clearCoat":{"isEnabled":false,"intensity":1.0,"roughness":0.0,"indexOfRefraction":1.5,"texture":null,"bumpTexture":null,"isTintEnabled":false,"tintColor":[1.0,1.0,1.0],"tintThickness":1.0,"tintTexture":null},"name":"aiStandardSurface1","id":"79CDF1A6-4409-889B-46A9-43A586C10D94","backFaceCulling":true,"wireframe":false,"alpha":1.0,"alphaMode":2,"maxSimultaneousLights":4,"metadata":null},{"customType":"BABYLON.StandardMaterial","ambient":[1.0,1.0,1.0],"diffuse":[0.5,0.5,0.5],"specular":[0.0,0.0,0.0],"emissive":[0.0,0.0,0.0],"specularPower":25.6,"diffuseTexture":null,"diffuseFresnelParameters":null,"ambientTexture":null,"opacityTexture":null,"opacityFresnelParameters":null,"reflectionTexture":null,"reflectionFresnelParameters":null,"emissiveTexture":null,"lightmapTexture":null,"useLightmapAsShadowmap":false,"emissiveFresnelParameters":null,"specularTexture":null,"bumpTexture":null,"useSpecularOverAlpha":true,"disableLighting":false,"useEmissiveAsIllumination":false,"linkEmissiveWithDiffuse":true,"twoSidedLighting":false,"useGlossinessFromSpecularMapAlpha":false,"name":"lambert1","id":"C33371E3-49CC-50AB-9549-80BD2392C0F8","backFaceCulling":true,"wireframe":false,"alpha":1.0,"alphaMode":2,"maxSimultaneousLights":4,"metadata":{}}],"multiMaterials":[],"particleSystems":null,"lensFlareSystems":null,"shadowGenerators":[],"skeletons":[],"actions":null,"metadata":null,"workerCollisions":false}
\ No newline at end of file
diff --git a/Maya/Samples/babylon/BabylonMaterialAttributes/TransparencyMode/Opaque/aiStandardSurface1_baseColor.png b/Maya/Samples/babylon/BabylonMaterialAttributes/TransparencyMode/Opaque/aiStandardSurface1_baseColor.png
new file mode 100644
index 00000000..1ab543b0
Binary files /dev/null and b/Maya/Samples/babylon/BabylonMaterialAttributes/TransparencyMode/Opaque/aiStandardSurface1_baseColor.png differ
diff --git a/Maya/Samples/babylon/BabylonMaterialAttributes/Unlit.babylon b/Maya/Samples/babylon/BabylonMaterialAttributes/Unlit.babylon
new file mode 100644
index 00000000..415ef3cf
--- /dev/null
+++ b/Maya/Samples/babylon/BabylonMaterialAttributes/Unlit.babylon
@@ -0,0 +1 @@
+{"producer":{"name":"Maya","version":"2018","exporter_version":"1.4.0","file":"Unlit.babylon"},"autoClear":true,"clearColor":[0.2,0.2,0.3],"ambientColor":[0.0,0.0,0.0],"fogMode":0,"fogColor":null,"fogStart":0.0,"fogEnd":0.0,"fogDensity":0.0,"gravity":[0.0,0.0,-0.9],"physicsEngine":null,"physicsEnabled":false,"physicsGravity":null,"lights":[{"direction":[0.0,1.0,0.0],"type":3,"diffuse":[1.0,1.0,1.0],"specular":[1.0,1.0,1.0],"intensity":1.0,"range":3.40282347E+38,"exponent":0.0,"angle":0.0,"groundColor":[0.0,0.0,0.0],"excludedMeshesIds":null,"includedOnlyMeshesIds":null,"lightmapMode":null,"falloffType":null,"name":"Default light","id":"eb3bf4e8-3030-46d7-be28-f37fd454a75b","parentId":null,"position":[0.0,0.0,0.0],"animations":null,"autoAnimate":false,"autoAnimateFrom":0,"autoAnimateTo":0,"autoAnimateLoop":false,"metadata":null}],"meshes":[{"materialId":"9B24F14E-4F69-6849-B864-07B9E4A7E9FF","isEnabled":true,"isVisible":true,"positions":[0.1488,-0.9877,0.0483,0.1266,-0.9877,0.0919,0.2939,-0.9511,0.0955,0.25,-0.9511,0.1816,0.0919,-0.9877,0.1266,0.1816,-0.9511,0.25,0.0483,-0.9877,0.1488,0.0955,-0.9511,0.2939,0.0,-0.9877,0.1564,0.0,-0.9511,0.309,-0.0483,-0.9877,0.1488,-0.0955,-0.9511,0.2939,-0.0919,-0.9877,0.1266,-0.1816,-0.9511,0.25,-0.1266,-0.9877,0.0919,-0.25,-0.9511,0.1816,-0.1488,-0.9877,0.0483,-0.2939,-0.9511,0.0955,-0.1564,-0.9877,0.0,-0.309,-0.9511,0.0,-0.1488,-0.9877,-0.0483,-0.2939,-0.9511,-0.0955,-0.1266,-0.9877,-0.0919,-0.25,-0.9511,-0.1816,-0.0919,-0.9877,-0.1266,-0.1816,-0.9511,-0.25,-0.0483,-0.9877,-0.1488,-0.0955,-0.9511,-0.2939,0.0,-0.9877,-0.1564,0.0,-0.9511,-0.309,0.0483,-0.9877,-0.1488,0.0955,-0.9511,-0.2939,0.0919,-0.9877,-0.1266,0.1816,-0.9511,-0.25,0.1266,-0.9877,-0.0919,0.25,-0.9511,-0.1816,0.1488,-0.9877,-0.0483,0.2939,-0.9511,-0.0955,0.1564,-0.9877,0.0,0.309,-0.9511,0.0,0.1488,-0.9877,0.0483,0.2939,-0.9511,0.0955,0.4318,-0.891,0.1403,0.3673,-0.891,0.2668,0.2668,-0.891,0.3673,0.1403,-0.891,0.4318,0.0,-0.891,0.454,-0.1403,-0.891,0.4318,-0.2668,-0.891,0.3673,-0.3673,-0.891,0.2668,-0.4318,-0.891,0.1403,-0.454,-0.891,0.0,-0.4318,-0.891,-0.1403,-0.3673,-0.891,-0.2668,-0.2668,-0.891,-0.3673,-0.1403,-0.891,-0.4318,0.0,-0.891,-0.454,0.1403,-0.891,-0.4318,0.2668,-0.891,-0.3673,0.3673,-0.891,-0.2668,0.4318,-0.891,-0.1403,0.454,-0.891,0.0,0.4318,-0.891,0.1403,0.559,-0.809,0.1816,0.4755,-0.809,0.3455,0.3455,-0.809,0.4755,0.1816,-0.809,0.559,0.0,-0.809,0.5878,-0.1816,-0.809,0.559,-0.3455,-0.809,0.4755,-0.4755,-0.809,0.3455,-0.559,-0.809,0.1816,-0.5878,-0.809,0.0,-0.559,-0.809,-0.1816,-0.4755,-0.809,-0.3455,-0.3455,-0.809,-0.4755,-0.1816,-0.809,-0.559,0.0,-0.809,-0.5878,0.1816,-0.809,-0.559,0.3455,-0.809,-0.4755,0.4755,-0.809,-0.3455,0.559,-0.809,-0.1816,0.5878,-0.809,0.0,0.559,-0.809,0.1816,0.6725,-0.7071,0.2185,0.5721,-0.7071,0.4156,0.4156,-0.7071,0.5721,0.2185,-0.7071,0.6725,0.0,-0.7071,0.7071,-0.2185,-0.7071,0.6725,-0.4156,-0.7071,0.5721,-0.5721,-0.7071,0.4156,-0.6725,-0.7071,0.2185,-0.7071,-0.7071,0.0,-0.6725,-0.7071,-0.2185,-0.5721,-0.7071,-0.4156,-0.4156,-0.7071,-0.5721,-0.2185,-0.7071,-0.6725,0.0,-0.7071,-0.7071,0.2185,-0.7071,-0.6725,0.4156,-0.7071,-0.5721,0.5721,-0.7071,-0.4156,0.6725,-0.7071,-0.2185,0.7071,-0.7071,0.0,0.6725,-0.7071,0.2185,0.7694,-0.5878,0.25,0.6545,-0.5878,0.4755,0.4755,-0.5878,0.6545,0.25,-0.5878,0.7694,0.0,-0.5878,0.809,-0.25,-0.5878,0.7694,-0.4755,-0.5878,0.6545,-0.6545,-0.5878,0.4755,-0.7694,-0.5878,0.25,-0.809,-0.5878,0.0,-0.7694,-0.5878,-0.25,-0.6545,-0.5878,-0.4755,-0.4755,-0.5878,-0.6545,-0.25,-0.5878,-0.7694,0.0,-0.5878,-0.809,0.25,-0.5878,-0.7694,0.4755,-0.5878,-0.6545,0.6545,-0.5878,-0.4755,0.7694,-0.5878,-0.25,0.809,-0.5878,0.0,0.7694,-0.5878,0.25,0.8474,-0.454,0.2753,0.7208,-0.454,0.5237,0.5237,-0.454,0.7208,0.2753,-0.454,0.8474,0.0,-0.454,0.891,-0.2753,-0.454,0.8474,-0.5237,-0.454,0.7208,-0.7208,-0.454,0.5237,-0.8474,-0.454,0.2753,-0.891,-0.454,0.0,-0.8474,-0.454,-0.2753,-0.7208,-0.454,-0.5237,-0.5237,-0.454,-0.7208,-0.2753,-0.454,-0.8474,0.0,-0.454,-0.891,0.2753,-0.454,-0.8474,0.5237,-0.454,-0.7208,0.7208,-0.454,-0.5237,0.8474,-0.454,-0.2753,0.891,-0.454,0.0,0.8474,-0.454,0.2753,0.9045,-0.309,0.2939,0.7694,-0.309,0.559,0.559,-0.309,0.7694,0.2939,-0.309,0.9045,0.0,-0.309,0.9511,-0.2939,-0.309,0.9045,-0.559,-0.309,0.7694,-0.7694,-0.309,0.559,-0.9045,-0.309,0.2939,-0.9511,-0.309,0.0,-0.9045,-0.309,-0.2939,-0.7694,-0.309,-0.559,-0.559,-0.309,-0.7694,-0.2939,-0.309,-0.9045,0.0,-0.309,-0.9511,0.2939,-0.309,-0.9045,0.559,-0.309,-0.7694,0.7694,-0.309,-0.559,0.9045,-0.309,-0.2939,0.9511,-0.309,0.0,0.9045,-0.309,0.2939,0.9393,-0.1564,0.3052,0.7991,-0.1564,0.5805,0.5805,-0.1564,0.7991,0.3052,-0.1564,0.9393,0.0,-0.1564,0.9877,-0.3052,-0.1564,0.9393,-0.5805,-0.1564,0.7991,-0.7991,-0.1564,0.5805,-0.9393,-0.1564,0.3052,-0.9877,-0.1564,0.0,-0.9393,-0.1564,-0.3052,-0.7991,-0.1564,-0.5805,-0.5805,-0.1564,-0.7991,-0.3052,-0.1564,-0.9393,0.0,-0.1564,-0.9877,0.3052,-0.1564,-0.9393,0.5805,-0.1564,-0.7991,0.7991,-0.1564,-0.5805,0.9393,-0.1564,-0.3052,0.9877,-0.1564,0.0,0.9393,-0.1564,0.3052,0.9511,0.0,0.309,0.809,0.0,0.5878,0.5878,0.0,0.809,0.309,0.0,0.9511,0.0,0.0,1.0,-0.309,0.0,0.9511,-0.5878,0.0,0.809,-0.809,0.0,0.5878,-0.9511,0.0,0.309,-1.0,0.0,0.0,-0.9511,0.0,-0.309,-0.809,0.0,-0.5878,-0.5878,0.0,-0.809,-0.309,0.0,-0.9511,0.0,0.0,-1.0,0.309,0.0,-0.9511,0.5878,0.0,-0.809,0.809,0.0,-0.5878,0.9511,0.0,-0.309,1.0,0.0,0.0,0.9511,0.0,0.309,0.9393,0.1564,0.3052,0.7991,0.1564,0.5805,0.5805,0.1564,0.7991,0.3052,0.1564,0.9393,0.0,0.1564,0.9877,-0.3052,0.1564,0.9393,-0.5805,0.1564,0.7991,-0.7991,0.1564,0.5805,-0.9393,0.1564,0.3052,-0.9877,0.1564,0.0,-0.9393,0.1564,-0.3052,-0.7991,0.1564,-0.5805,-0.5805,0.1564,-0.7991,-0.3052,0.1564,-0.9393,0.0,0.1564,-0.9877,0.3052,0.1564,-0.9393,0.5805,0.1564,-0.7991,0.7991,0.1564,-0.5805,0.9393,0.1564,-0.3052,0.9877,0.1564,0.0,0.9393,0.1564,0.3052,0.9045,0.309,0.2939,0.7694,0.309,0.559,0.559,0.309,0.7694,0.2939,0.309,0.9045,0.0,0.309,0.9511,-0.2939,0.309,0.9045,-0.559,0.309,0.7694,-0.7694,0.309,0.559,-0.9045,0.309,0.2939,-0.9511,0.309,0.0,-0.9045,0.309,-0.2939,-0.7694,0.309,-0.559,-0.559,0.309,-0.7694,-0.2939,0.309,-0.9045,0.0,0.309,-0.9511,0.2939,0.309,-0.9045,0.559,0.309,-0.7694,0.7694,0.309,-0.559,0.9045,0.309,-0.2939,0.9511,0.309,0.0,0.9045,0.309,0.2939,0.8474,0.454,0.2753,0.7208,0.454,0.5237,0.5237,0.454,0.7208,0.2753,0.454,0.8474,0.0,0.454,0.891,-0.2753,0.454,0.8474,-0.5237,0.454,0.7208,-0.7208,0.454,0.5237,-0.8474,0.454,0.2753,-0.891,0.454,0.0,-0.8474,0.454,-0.2753,-0.7208,0.454,-0.5237,-0.5237,0.454,-0.7208,-0.2753,0.454,-0.8474,0.0,0.454,-0.891,0.2753,0.454,-0.8474,0.5237,0.454,-0.7208,0.7208,0.454,-0.5237,0.8474,0.454,-0.2753,0.891,0.454,0.0,0.8474,0.454,0.2753,0.7694,0.5878,0.25,0.6545,0.5878,0.4755,0.4755,0.5878,0.6545,0.25,0.5878,0.7694,0.0,0.5878,0.809,-0.25,0.5878,0.7694,-0.4755,0.5878,0.6545,-0.6545,0.5878,0.4755,-0.7694,0.5878,0.25,-0.809,0.5878,0.0,-0.7694,0.5878,-0.25,-0.6545,0.5878,-0.4755,-0.4755,0.5878,-0.6545,-0.25,0.5878,-0.7694,0.0,0.5878,-0.809,0.25,0.5878,-0.7694,0.4755,0.5878,-0.6545,0.6545,0.5878,-0.4755,0.7694,0.5878,-0.25,0.809,0.5878,0.0,0.7694,0.5878,0.25,0.6725,0.7071,0.2185,0.5721,0.7071,0.4156,0.4156,0.7071,0.5721,0.2185,0.7071,0.6725,0.0,0.7071,0.7071,-0.2185,0.7071,0.6725,-0.4156,0.7071,0.5721,-0.5721,0.7071,0.4156,-0.6725,0.7071,0.2185,-0.7071,0.7071,0.0,-0.6725,0.7071,-0.2185,-0.5721,0.7071,-0.4156,-0.4156,0.7071,-0.5721,-0.2185,0.7071,-0.6725,0.0,0.7071,-0.7071,0.2185,0.7071,-0.6725,0.4156,0.7071,-0.5721,0.5721,0.7071,-0.4156,0.6725,0.7071,-0.2185,0.7071,0.7071,0.0,0.6725,0.7071,0.2185,0.559,0.809,0.1816,0.4755,0.809,0.3455,0.3455,0.809,0.4755,0.1816,0.809,0.559,0.0,0.809,0.5878,-0.1816,0.809,0.559,-0.3455,0.809,0.4755,-0.4755,0.809,0.3455,-0.559,0.809,0.1816,-0.5878,0.809,0.0,-0.559,0.809,-0.1816,-0.4755,0.809,-0.3455,-0.3455,0.809,-0.4755,-0.1816,0.809,-0.559,0.0,0.809,-0.5878,0.1816,0.809,-0.559,0.3455,0.809,-0.4755,0.4755,0.809,-0.3455,0.559,0.809,-0.1816,0.5878,0.809,0.0,0.559,0.809,0.1816,0.4318,0.891,0.1403,0.3673,0.891,0.2668,0.2668,0.891,0.3673,0.1403,0.891,0.4318,0.0,0.891,0.454,-0.1403,0.891,0.4318,-0.2668,0.891,0.3673,-0.3673,0.891,0.2668,-0.4318,0.891,0.1403,-0.454,0.891,0.0,-0.4318,0.891,-0.1403,-0.3673,0.891,-0.2668,-0.2668,0.891,-0.3673,-0.1403,0.891,-0.4318,0.0,0.891,-0.454,0.1403,0.891,-0.4318,0.2668,0.891,-0.3673,0.3673,0.891,-0.2668,0.4318,0.891,-0.1403,0.454,0.891,0.0,0.4318,0.891,0.1403,0.2939,0.9511,0.0955,0.25,0.9511,0.1816,0.1816,0.9511,0.25,0.0955,0.9511,0.2939,0.0,0.9511,0.309,-0.0955,0.9511,0.2939,-0.1816,0.9511,0.25,-0.25,0.9511,0.1816,-0.2939,0.9511,0.0955,-0.309,0.9511,0.0,-0.2939,0.9511,-0.0955,-0.25,0.9511,-0.1816,-0.1816,0.9511,-0.25,-0.0955,0.9511,-0.2939,0.0,0.9511,-0.309,0.0955,0.9511,-0.2939,0.1816,0.9511,-0.25,0.25,0.9511,-0.1816,0.2939,0.9511,-0.0955,0.309,0.9511,0.0,0.2939,0.9511,0.0955,0.1488,0.9877,0.0483,0.1266,0.9877,0.0919,0.0919,0.9877,0.1266,0.0483,0.9877,0.1488,0.0,0.9877,0.1564,-0.0483,0.9877,0.1488,-0.0919,0.9877,0.1266,-0.1266,0.9877,0.0919,-0.1488,0.9877,0.0483,-0.1564,0.9877,0.0,-0.1488,0.9877,-0.0483,-0.1266,0.9877,-0.0919,-0.0919,0.9877,-0.1266,-0.0483,0.9877,-0.1488,0.0,0.9877,-0.1564,0.0483,0.9877,-0.1488,0.0919,0.9877,-0.1266,0.1266,0.9877,-0.0919,0.1488,0.9877,-0.0483,0.1564,0.9877,0.0,0.1488,0.9877,0.0483,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0],"normals":[0.1906,-0.9797,0.0619,0.1621,-0.9797,0.1178,0.3173,-0.9427,0.1031,0.2699,-0.9427,0.1961,0.1178,-0.9797,0.1621,0.1961,-0.9427,0.2699,0.0619,-0.9797,0.1906,0.1031,-0.9427,0.3173,0.0,-0.9797,0.2004,0.0,-0.9427,0.3336,-0.0619,-0.9797,0.1906,-0.1031,-0.9427,0.3173,-0.1178,-0.9797,0.1621,-0.1961,-0.9427,0.2699,-0.1621,-0.9797,0.1178,-0.2699,-0.9427,0.1961,-0.1906,-0.9797,0.0619,-0.3173,-0.9427,0.1031,-0.2004,-0.9797,0.0,-0.3336,-0.9427,0.0,-0.1906,-0.9797,-0.0619,-0.3173,-0.9427,-0.1031,-0.1621,-0.9797,-0.1178,-0.2699,-0.9427,-0.1961,-0.1178,-0.9797,-0.1621,-0.1961,-0.9427,-0.2699,-0.0619,-0.9797,-0.1906,-0.1031,-0.9427,-0.3173,0.0,-0.9797,-0.2004,0.0,-0.9427,-0.3336,0.0619,-0.9797,-0.1906,0.1031,-0.9427,-0.3173,0.1178,-0.9797,-0.1621,0.1961,-0.9427,-0.2699,0.1621,-0.9797,-0.1178,0.2699,-0.9427,-0.1961,0.1906,-0.9797,-0.0619,0.3173,-0.9427,-0.1031,0.2004,-0.9797,0.0,0.3336,-0.9427,0.0,0.1906,-0.9797,0.0619,0.3173,-0.9427,0.1031,0.4477,-0.8823,0.1455,0.3808,-0.8823,0.2767,0.2767,-0.8823,0.3808,0.1455,-0.8823,0.4477,0.0,-0.8823,0.4708,-0.1455,-0.8823,0.4477,-0.2767,-0.8823,0.3808,-0.3808,-0.8823,0.2767,-0.4477,-0.8823,0.1455,-0.4708,-0.8823,0.0,-0.4477,-0.8823,-0.1455,-0.3808,-0.8823,-0.2767,-0.2767,-0.8823,-0.3808,-0.1455,-0.8823,-0.4477,0.0,-0.8823,-0.4708,0.1455,-0.8823,-0.4477,0.2767,-0.8823,-0.3808,0.3808,-0.8823,-0.2767,0.4477,-0.8823,-0.1455,0.4708,-0.8823,0.0,0.4477,-0.8823,0.1455,0.5703,-0.8003,0.1853,0.4851,-0.8003,0.3525,0.3525,-0.8003,0.4851,0.1853,-0.8003,0.5703,0.0,-0.8003,0.5997,-0.1853,-0.8003,0.5703,-0.3525,-0.8003,0.4851,-0.4851,-0.8003,0.3525,-0.5703,-0.8003,0.1853,-0.5997,-0.8003,0.0,-0.5703,-0.8003,-0.1853,-0.4851,-0.8003,-0.3525,-0.3525,-0.8003,-0.4851,-0.1853,-0.8003,-0.5703,0.0,-0.8003,-0.5997,0.1853,-0.8003,-0.5703,0.3525,-0.8003,-0.4851,0.4851,-0.8003,-0.3525,0.5703,-0.8003,-0.1853,0.5997,-0.8003,0.0,0.5703,-0.8003,0.1853,0.6803,-0.6988,0.221,0.5787,-0.6988,0.4205,0.4205,-0.6988,0.5787,0.221,-0.6988,0.6803,0.0,-0.6988,0.7153,-0.221,-0.6988,0.6803,-0.4205,-0.6988,0.5787,-0.5787,-0.6988,0.4205,-0.6803,-0.6988,0.221,-0.7153,-0.6988,0.0,-0.6803,-0.6988,-0.221,-0.5787,-0.6988,-0.4205,-0.4205,-0.6988,-0.5787,-0.221,-0.6988,-0.6803,0.0,-0.6988,-0.7153,0.221,-0.6988,-0.6803,0.4205,-0.6988,-0.5787,0.5787,-0.6988,-0.4205,0.6803,-0.6988,-0.221,0.7153,-0.6988,0.0,0.6803,-0.6988,0.221,0.7745,-0.5804,0.2516,0.6588,-0.5804,0.4787,0.4787,-0.5804,0.6588,0.2516,-0.5804,0.7745,0.0,-0.5804,0.8143,-0.2516,-0.5804,0.7745,-0.4787,-0.5804,0.6588,-0.6588,-0.5804,0.4787,-0.7745,-0.5804,0.2516,-0.8143,-0.5804,0.0,-0.7745,-0.5804,-0.2516,-0.6588,-0.5804,-0.4787,-0.4787,-0.5804,-0.6588,-0.2516,-0.5804,-0.7745,0.0,-0.5804,-0.8143,0.2516,-0.5804,-0.7745,0.4787,-0.5804,-0.6588,0.6588,-0.5804,-0.4787,0.7745,-0.5804,-0.2516,0.8143,-0.5804,0.0,0.7745,-0.5804,0.2516,0.8503,-0.448,0.2763,0.7233,-0.448,0.5255,0.5255,-0.448,0.7233,0.2763,-0.448,0.8503,0.0,-0.448,0.894,-0.2763,-0.448,0.8503,-0.5255,-0.448,0.7233,-0.7233,-0.448,0.5255,-0.8503,-0.448,0.2763,-0.894,-0.448,0.0,-0.8503,-0.448,-0.2763,-0.7233,-0.448,-0.5255,-0.5255,-0.448,-0.7233,-0.2763,-0.448,-0.8503,0.0,-0.448,-0.894,0.2763,-0.448,-0.8503,0.5255,-0.448,-0.7233,0.7233,-0.448,-0.5255,0.8503,-0.448,-0.2763,0.894,-0.448,0.0,0.8503,-0.448,0.2763,0.9058,-0.3048,0.2943,0.7705,-0.3048,0.5598,0.5598,-0.3048,0.7705,0.2943,-0.3048,0.9058,0.0,-0.3048,0.9524,-0.2943,-0.3048,0.9058,-0.5598,-0.3048,0.7705,-0.7705,-0.3048,0.5598,-0.9058,-0.3048,0.2943,-0.9524,-0.3048,0.0,-0.9058,-0.3048,-0.2943,-0.7705,-0.3048,-0.5598,-0.5598,-0.3048,-0.7705,-0.2943,-0.3048,-0.9058,0.0,-0.3048,-0.9524,0.2943,-0.3048,-0.9058,0.5598,-0.3048,-0.7705,0.7705,-0.3048,-0.5598,0.9058,-0.3048,-0.2943,0.9524,-0.3048,0.0,0.9058,-0.3048,0.2943,0.9397,-0.1542,0.3053,0.7993,-0.1542,0.5808,0.5808,-0.1542,0.7993,0.3053,-0.1542,0.9397,0.0,-0.1542,0.988,-0.3053,-0.1542,0.9397,-0.5808,-0.1542,0.7993,-0.7993,-0.1542,0.5808,-0.9397,-0.1542,0.3053,-0.988,-0.1542,0.0,-0.9397,-0.1542,-0.3053,-0.7993,-0.1542,-0.5808,-0.5808,-0.1542,-0.7993,-0.3053,-0.1542,-0.9397,0.0,-0.1542,-0.988,0.3053,-0.1542,-0.9397,0.5808,-0.1542,-0.7993,0.7993,-0.1542,-0.5808,0.9397,-0.1542,-0.3053,0.988,-0.1542,0.0,0.9397,-0.1542,0.3053,0.9511,0.0,0.309,0.809,0.0,0.5878,0.5878,0.0,0.809,0.309,0.0,0.9511,0.0,0.0,1.0,-0.309,0.0,0.9511,-0.5878,0.0,0.809,-0.809,0.0,0.5878,-0.9511,0.0,0.309,-1.0,0.0,0.0,-0.9511,0.0,-0.309,-0.809,0.0,-0.5878,-0.5878,0.0,-0.809,-0.309,0.0,-0.9511,0.0,0.0,-1.0,0.309,0.0,-0.9511,0.5878,0.0,-0.809,0.809,0.0,-0.5878,0.9511,0.0,-0.309,1.0,0.0,0.0,0.9511,0.0,0.309,0.9397,0.1542,0.3053,0.7993,0.1542,0.5808,0.5808,0.1542,0.7993,0.3053,0.1542,0.9397,0.0,0.1542,0.988,-0.3053,0.1542,0.9397,-0.5808,0.1542,0.7993,-0.7993,0.1542,0.5808,-0.9397,0.1542,0.3053,-0.988,0.1542,0.0,-0.9397,0.1542,-0.3053,-0.7993,0.1542,-0.5808,-0.5808,0.1542,-0.7993,-0.3053,0.1542,-0.9397,0.0,0.1542,-0.988,0.3053,0.1542,-0.9397,0.5808,0.1542,-0.7993,0.7993,0.1542,-0.5808,0.9397,0.1542,-0.3053,0.988,0.1542,0.0,0.9397,0.1542,0.3053,0.9058,0.3048,0.2943,0.7705,0.3048,0.5598,0.5598,0.3048,0.7705,0.2943,0.3048,0.9058,0.0,0.3048,0.9524,-0.2943,0.3048,0.9058,-0.5598,0.3048,0.7705,-0.7705,0.3048,0.5598,-0.9058,0.3048,0.2943,-0.9524,0.3048,0.0,-0.9058,0.3048,-0.2943,-0.7705,0.3048,-0.5598,-0.5598,0.3048,-0.7705,-0.2943,0.3048,-0.9058,0.0,0.3048,-0.9524,0.2943,0.3048,-0.9058,0.5598,0.3048,-0.7705,0.7705,0.3048,-0.5598,0.9058,0.3048,-0.2943,0.9524,0.3048,0.0,0.9058,0.3048,0.2943,0.8503,0.448,0.2763,0.7233,0.448,0.5255,0.5255,0.448,0.7233,0.2763,0.448,0.8503,0.0,0.448,0.894,-0.2763,0.448,0.8503,-0.5255,0.448,0.7233,-0.7233,0.448,0.5255,-0.8503,0.448,0.2763,-0.894,0.448,0.0,-0.8503,0.448,-0.2763,-0.7233,0.448,-0.5255,-0.5255,0.448,-0.7233,-0.2763,0.448,-0.8503,0.0,0.448,-0.894,0.2763,0.448,-0.8503,0.5255,0.448,-0.7233,0.7233,0.448,-0.5255,0.8503,0.448,-0.2763,0.894,0.448,0.0,0.8503,0.448,0.2763,0.7745,0.5804,0.2516,0.6588,0.5804,0.4787,0.4787,0.5804,0.6588,0.2516,0.5804,0.7745,0.0,0.5804,0.8143,-0.2516,0.5804,0.7745,-0.4787,0.5804,0.6588,-0.6588,0.5804,0.4787,-0.7745,0.5804,0.2516,-0.8143,0.5804,0.0,-0.7745,0.5804,-0.2516,-0.6588,0.5804,-0.4787,-0.4787,0.5804,-0.6588,-0.2516,0.5804,-0.7745,0.0,0.5804,-0.8143,0.2516,0.5804,-0.7745,0.4787,0.5804,-0.6588,0.6588,0.5804,-0.4787,0.7745,0.5804,-0.2516,0.8143,0.5804,0.0,0.7745,0.5804,0.2516,0.6803,0.6988,0.221,0.5787,0.6988,0.4205,0.4205,0.6988,0.5787,0.221,0.6988,0.6803,0.0,0.6988,0.7153,-0.221,0.6988,0.6803,-0.4205,0.6988,0.5787,-0.5787,0.6988,0.4205,-0.6803,0.6988,0.221,-0.7153,0.6988,0.0,-0.6803,0.6988,-0.221,-0.5787,0.6988,-0.4205,-0.4205,0.6988,-0.5787,-0.221,0.6988,-0.6803,0.0,0.6988,-0.7153,0.221,0.6988,-0.6803,0.4205,0.6988,-0.5787,0.5787,0.6988,-0.4205,0.6803,0.6988,-0.221,0.7153,0.6988,0.0,0.6803,0.6988,0.221,0.5703,0.8003,0.1853,0.4851,0.8003,0.3525,0.3525,0.8003,0.4851,0.1853,0.8003,0.5703,0.0,0.8003,0.5997,-0.1853,0.8003,0.5703,-0.3525,0.8003,0.4851,-0.4851,0.8003,0.3525,-0.5703,0.8003,0.1853,-0.5997,0.8003,0.0,-0.5703,0.8003,-0.1853,-0.4851,0.8003,-0.3525,-0.3525,0.8003,-0.4851,-0.1853,0.8003,-0.5703,0.0,0.8003,-0.5997,0.1853,0.8003,-0.5703,0.3525,0.8003,-0.4851,0.4851,0.8003,-0.3525,0.5703,0.8003,-0.1853,0.5997,0.8003,0.0,0.5703,0.8003,0.1853,0.4477,0.8823,0.1455,0.3808,0.8823,0.2767,0.2767,0.8823,0.3808,0.1455,0.8823,0.4477,0.0,0.8823,0.4708,-0.1455,0.8823,0.4477,-0.2767,0.8823,0.3808,-0.3808,0.8823,0.2767,-0.4477,0.8823,0.1455,-0.4708,0.8823,0.0,-0.4477,0.8823,-0.1455,-0.3808,0.8823,-0.2767,-0.2767,0.8823,-0.3808,-0.1455,0.8823,-0.4477,0.0,0.8823,-0.4708,0.1455,0.8823,-0.4477,0.2767,0.8823,-0.3808,0.3808,0.8823,-0.2767,0.4477,0.8823,-0.1455,0.4708,0.8823,0.0,0.4477,0.8823,0.1455,0.3173,0.9427,0.1031,0.2699,0.9427,0.1961,0.1961,0.9427,0.2699,0.1031,0.9427,0.3173,0.0,0.9427,0.3336,-0.1031,0.9427,0.3173,-0.1961,0.9427,0.2699,-0.2699,0.9427,0.1961,-0.3173,0.9427,0.1031,-0.3336,0.9427,0.0,-0.3173,0.9427,-0.1031,-0.2699,0.9427,-0.1961,-0.1961,0.9427,-0.2699,-0.1031,0.9427,-0.3173,0.0,0.9427,-0.3336,0.1031,0.9427,-0.3173,0.1961,0.9427,-0.2699,0.2699,0.9427,-0.1961,0.3173,0.9427,-0.1031,0.3336,0.9427,0.0,0.3173,0.9427,0.1031,0.1906,0.9797,0.0619,0.1621,0.9797,0.1178,0.1178,0.9797,0.1621,0.0619,0.9797,0.1906,0.0,0.9797,0.2004,-0.0619,0.9797,0.1906,-0.1178,0.9797,0.1621,-0.1621,0.9797,0.1178,-0.1906,0.9797,0.0619,-0.2004,0.9797,0.0,-0.1906,0.9797,-0.0619,-0.1621,0.9797,-0.1178,-0.1178,0.9797,-0.1621,-0.0619,0.9797,-0.1906,0.0,0.9797,-0.2004,0.0619,0.9797,-0.1906,0.1178,0.9797,-0.1621,0.1621,0.9797,-0.1178,0.1906,0.9797,-0.0619,0.2004,0.9797,0.0,0.1906,0.9797,0.0619,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0],"tangents":[-0.4482,-0.0307,0.8934,-1.0,-0.5629,0.0062,0.8265,-1.0,-0.438,-0.0493,0.8976,-1.0,-0.5878,0.0,0.809,-1.0,-0.7908,0.0062,0.6121,-1.0,-0.809,0.0,0.5878,-1.0,-0.9412,0.0062,0.3378,-1.0,-0.9511,0.0,0.309,-1.0,-0.9995,0.0062,0.0304,-1.0,-1.0,0.0,0.0,-1.0,-0.96,0.0062,-0.28,-1.0,-0.9511,0.0,-0.309,-1.0,-0.8265,0.0062,-0.5629,-1.0,-0.809,0.0,-0.5878,-1.0,-0.6121,0.0062,-0.7908,-1.0,-0.5878,0.0,-0.809,-1.0,-0.3378,0.0062,-0.9412,-1.0,-0.309,0.0,-0.9511,-1.0,-0.0304,0.0062,-0.9995,-1.0,0.0,0.0,-1.0,-1.0,0.28,0.0062,-0.96,-1.0,0.309,0.0,-0.9511,-1.0,0.5629,0.0062,-0.8265,-1.0,0.5878,0.0,-0.809,-1.0,0.7908,0.0062,-0.6121,-1.0,0.809,0.0,-0.5878,-1.0,0.9412,0.0062,-0.3378,-1.0,0.9511,0.0,-0.309,-1.0,0.9995,0.0062,-0.0304,-1.0,1.0,0.0,0.0,-1.0,0.96,0.0062,0.28,-1.0,0.9511,0.0,0.309,-1.0,0.8265,0.0062,0.5629,-1.0,0.809,0.0,0.5878,-1.0,0.6121,0.0062,0.7908,-1.0,0.5878,0.0,0.809,-1.0,0.3378,0.0062,0.9412,-1.0,0.309,0.0,0.9511,-1.0,0.0304,0.0062,0.9995,-1.0,0.0,0.0,1.0,-1.0,-0.1625,0.0307,0.9862,-1.0,-0.1732,0.0493,0.9836,-1.0,-0.4222,-0.0651,0.9042,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.1899,0.0651,0.9796,-1.0,-0.4023,-0.0754,0.9124,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.2109,0.0754,0.9746,-1.0,-0.3802,-0.0787,0.9215,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.234,0.0787,0.969,-1.0,-0.3582,-0.0745,0.9306,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.2572,0.0745,0.9635,-1.0,-0.3384,-0.0633,0.9389,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.2781,0.0633,0.9585,-1.0,-0.3226,-0.0459,0.9454,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.2947,0.0459,0.9545,-1.0,-0.3125,-0.0241,0.9496,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.3053,0.0241,0.9519,-1.0,-0.309,0.0,0.9511,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.309,0.0,0.9511,-1.0,-0.3125,0.0241,0.9496,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.3053,-0.0241,0.9519,-1.0,-0.3226,0.0459,0.9454,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.2947,-0.0459,0.9545,-1.0,-0.3384,0.0633,0.9389,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.2781,-0.0633,0.9585,-1.0,-0.3582,0.0745,0.9306,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.2572,-0.0745,0.9635,-1.0,-0.3802,0.0787,0.9215,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.234,-0.0787,0.969,-1.0,-0.4023,0.0754,0.9124,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.2109,-0.0754,0.9746,-1.0,-0.4222,0.0651,0.9042,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.1899,-0.0651,0.9796,-1.0,-0.438,0.0493,0.8976,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.1732,-0.0493,0.9836,-1.0,-0.4482,0.0307,0.8934,-1.0,-0.6121,0.0062,0.7908,-1.0,-0.8265,0.0062,0.5629,-1.0,-0.96,0.0062,0.28,-1.0,-0.9995,0.0062,-0.0304,-1.0,-0.9412,0.0062,-0.3378,-1.0,-0.7908,0.0062,-0.6121,-1.0,-0.5629,0.0062,-0.8265,-1.0,-0.28,0.0062,-0.96,-1.0,0.0304,0.0062,-0.9995,-1.0,0.3378,0.0062,-0.9412,-1.0,0.6121,0.0062,-0.7908,-1.0,0.8265,0.0062,-0.5629,-1.0,0.96,0.0062,-0.28,-1.0,0.9995,0.0062,0.0304,-1.0,0.9412,0.0062,0.3378,-1.0,0.7908,0.0062,0.6121,-1.0,0.5629,0.0062,0.8265,-1.0,0.28,0.0062,0.96,-1.0,-0.0304,0.0062,0.9995,-1.0,-0.1625,-0.0307,0.9862,-1.0,-0.454,0.0,0.891,-1.0,-0.7071,0.0,0.7071,-1.0,-0.891,0.0,0.454,-1.0,-0.9877,0.0,0.1564,-1.0,-0.9877,0.0,-0.1564,-1.0,-0.891,0.0,-0.454,-1.0,-0.7071,0.0,-0.7071,-1.0,-0.454,0.0,-0.891,-1.0,-0.1564,0.0,-0.9877,-1.0,0.1564,0.0,-0.9877,-1.0,0.454,0.0,-0.891,-1.0,0.7071,0.0,-0.7071,-1.0,0.891,0.0,-0.454,-1.0,0.9877,0.0,-0.1564,-1.0,0.9877,0.0,0.1564,-1.0,0.891,0.0,0.454,-1.0,0.7071,0.0,0.7071,-1.0,0.454,0.0,0.891,-1.0,0.1564,0.0,0.9877,-1.0,-0.1564,0.0,0.9877,-1.0,-0.454,0.0,0.891,-1.0,-0.7071,0.0,0.7071,-1.0,-0.891,0.0,0.454,-1.0,-0.9877,0.0,0.1564,-1.0,-0.9877,0.0,-0.1564,-1.0,-0.891,0.0,-0.454,-1.0,-0.7071,0.0,-0.7071,-1.0,-0.454,0.0,-0.891,-1.0,-0.1564,0.0,-0.9877,-1.0,0.1564,0.0,-0.9877,-1.0,0.454,0.0,-0.891,-1.0,0.7071,0.0,-0.7071,-1.0,0.891,0.0,-0.454,-1.0,0.9877,0.0,-0.1564,-1.0,0.9877,0.0,0.1564,-1.0,0.891,0.0,0.454,-1.0,0.7071,0.0,0.7071,-1.0,0.454,0.0,0.891,-1.0,0.1564,0.0,0.9877,-1.0,-0.1564,0.0,0.9877,-1.0],"uvs":[0.0,0.05,0.05,0.05,0.0,0.1,0.05,0.1,0.1,0.05,0.1,0.1,0.15,0.05,0.15,0.1,0.2,0.05,0.2,0.1,0.25,0.05,0.25,0.1,0.3,0.05,0.3,0.1,0.35,0.05,0.35,0.1,0.4,0.05,0.4,0.1,0.45,0.05,0.45,0.1,0.5,0.05,0.5,0.1,0.55,0.05,0.55,0.1,0.6,0.05,0.6,0.1,0.65,0.05,0.65,0.1,0.7,0.05,0.7,0.1,0.75,0.05,0.75,0.1,0.8,0.05,0.8,0.1,0.85,0.05,0.85,0.1,0.9,0.05,0.9,0.1,0.95,0.05,0.95,0.1,1.0,0.05,1.0,0.1,0.0,0.15,0.05,0.15,0.1,0.15,0.15,0.15,0.2,0.15,0.25,0.15,0.3,0.15,0.35,0.15,0.4,0.15,0.45,0.15,0.5,0.15,0.55,0.15,0.6,0.15,0.65,0.15,0.7,0.15,0.75,0.15,0.8,0.15,0.85,0.15,0.9,0.15,0.95,0.15,1.0,0.15,0.0,0.2,0.05,0.2,0.1,0.2,0.15,0.2,0.2,0.2,0.25,0.2,0.3,0.2,0.35,0.2,0.4,0.2,0.45,0.2,0.5,0.2,0.55,0.2,0.6,0.2,0.65,0.2,0.7,0.2,0.75,0.2,0.8,0.2,0.85,0.2,0.9,0.2,0.95,0.2,1.0,0.2,0.0,0.25,0.05,0.25,0.1,0.25,0.15,0.25,0.2,0.25,0.25,0.25,0.3,0.25,0.35,0.25,0.4,0.25,0.45,0.25,0.5,0.25,0.55,0.25,0.6,0.25,0.65,0.25,0.7,0.25,0.75,0.25,0.8,0.25,0.85,0.25,0.9,0.25,0.95,0.25,1.0,0.25,0.0,0.3,0.05,0.3,0.1,0.3,0.15,0.3,0.2,0.3,0.25,0.3,0.3,0.3,0.35,0.3,0.4,0.3,0.45,0.3,0.5,0.3,0.55,0.3,0.6,0.3,0.65,0.3,0.7,0.3,0.75,0.3,0.8,0.3,0.85,0.3,0.9,0.3,0.95,0.3,1.0,0.3,0.0,0.35,0.05,0.35,0.1,0.35,0.15,0.35,0.2,0.35,0.25,0.35,0.3,0.35,0.35,0.35,0.4,0.35,0.45,0.35,0.5,0.35,0.55,0.35,0.6,0.35,0.65,0.35,0.7,0.35,0.75,0.35,0.8,0.35,0.85,0.35,0.9,0.35,0.95,0.35,1.0,0.35,0.0,0.4,0.05,0.4,0.1,0.4,0.15,0.4,0.2,0.4,0.25,0.4,0.3,0.4,0.35,0.4,0.4,0.4,0.45,0.4,0.5,0.4,0.55,0.4,0.6,0.4,0.65,0.4,0.7,0.4,0.75,0.4,0.8,0.4,0.85,0.4,0.9,0.4,0.95,0.4,1.0,0.4,0.0,0.45,0.05,0.45,0.1,0.45,0.15,0.45,0.2,0.45,0.25,0.45,0.3,0.45,0.35,0.45,0.4,0.45,0.45,0.45,0.5,0.45,0.55,0.45,0.6,0.45,0.65,0.45,0.7,0.45,0.75,0.45,0.8,0.45,0.85,0.45,0.9,0.45,0.95,0.45,1.0,0.45,0.0,0.5,0.05,0.5,0.1,0.5,0.15,0.5,0.2,0.5,0.25,0.5,0.3,0.5,0.35,0.5,0.4,0.5,0.45,0.5,0.5,0.5,0.55,0.5,0.6,0.5,0.65,0.5,0.7,0.5,0.75,0.5,0.8,0.5,0.85,0.5,0.9,0.5,0.95,0.5,1.0,0.5,0.0,0.55,0.05,0.55,0.1,0.55,0.15,0.55,0.2,0.55,0.25,0.55,0.3,0.55,0.35,0.55,0.4,0.55,0.45,0.55,0.5,0.55,0.55,0.55,0.6,0.55,0.65,0.55,0.7,0.55,0.75,0.55,0.8,0.55,0.85,0.55,0.9,0.55,0.95,0.55,1.0,0.55,0.0,0.6,0.05,0.6,0.1,0.6,0.15,0.6,0.2,0.6,0.25,0.6,0.3,0.6,0.35,0.6,0.4,0.6,0.45,0.6,0.5,0.6,0.55,0.6,0.6,0.6,0.65,0.6,0.7,0.6,0.75,0.6,0.8,0.6,0.85,0.6,0.9,0.6,0.95,0.6,1.0,0.6,0.0,0.65,0.05,0.65,0.1,0.65,0.15,0.65,0.2,0.65,0.25,0.65,0.3,0.65,0.35,0.65,0.4,0.65,0.45,0.65,0.5,0.65,0.55,0.65,0.6,0.65,0.65,0.65,0.7,0.65,0.75,0.65,0.8,0.65,0.85,0.65,0.9,0.65,0.95,0.65,1.0,0.65,0.0,0.7,0.05,0.7,0.1,0.7,0.15,0.7,0.2,0.7,0.25,0.7,0.3,0.7,0.35,0.7,0.4,0.7,0.45,0.7,0.5,0.7,0.55,0.7,0.6,0.7,0.65,0.7,0.7,0.7,0.75,0.7,0.8,0.7,0.85,0.7,0.9,0.7,0.95,0.7,1.0,0.7,0.0,0.75,0.05,0.75,0.1,0.75,0.15,0.75,0.2,0.75,0.25,0.75,0.3,0.75,0.35,0.75,0.4,0.75,0.45,0.75,0.5,0.75,0.55,0.75,0.6,0.75,0.65,0.75,0.7,0.75,0.75,0.75,0.8,0.75,0.85,0.75,0.9,0.75,0.95,0.75,1.0,0.75,0.0,0.8,0.05,0.8,0.1,0.8,0.15,0.8,0.2,0.8,0.25,0.8,0.3,0.8,0.35,0.8,0.4,0.8,0.45,0.8,0.5,0.8,0.55,0.8,0.6,0.8,0.65,0.8,0.7,0.8,0.75,0.8,0.8,0.8,0.85,0.8,0.9,0.8,0.95,0.8,1.0,0.8,0.0,0.85,0.05,0.85,0.1,0.85,0.15,0.85,0.2,0.85,0.25,0.85,0.3,0.85,0.35,0.85,0.4,0.85,0.45,0.85,0.5,0.85,0.55,0.85,0.6,0.85,0.65,0.85,0.7,0.85,0.75,0.85,0.8,0.85,0.85,0.85,0.9,0.85,0.95,0.85,1.0,0.85,0.0,0.9,0.05,0.9,0.1,0.9,0.15,0.9,0.2,0.9,0.25,0.9,0.3,0.9,0.35,0.9,0.4,0.9,0.45,0.9,0.5,0.9,0.55,0.9,0.6,0.9,0.65,0.9,0.7,0.9,0.75,0.9,0.8,0.9,0.85,0.9,0.9,0.9,0.95,0.9,1.0,0.9,0.0,0.95,0.05,0.95,0.1,0.95,0.15,0.95,0.2,0.95,0.25,0.95,0.3,0.95,0.35,0.95,0.4,0.95,0.45,0.95,0.5,0.95,0.55,0.95,0.6,0.95,0.65,0.95,0.7,0.95,0.75,0.95,0.8,0.95,0.85,0.95,0.9,0.95,0.95,0.95,1.0,0.95,0.025,0.0,0.075,0.0,0.125,0.0,0.175,0.0,0.225,0.0,0.275,0.0,0.325,0.0,0.375,0.0,0.425,0.0,0.475,0.0,0.525,0.0,0.575,0.0,0.625,0.0,0.675,0.0,0.725,0.0,0.775,0.0,0.825,0.0,0.875,0.0,0.925,0.0,0.975,0.0,0.025,1.0,0.075,1.0,0.125,1.0,0.175,1.0,0.225,1.0,0.275,1.0,0.325,1.0,0.375,1.0,0.425,1.0,0.475,1.0,0.525,1.0,0.575,1.0,0.625,1.0,0.675,1.0,0.725,1.0,0.775,1.0,0.825,1.0,0.875,1.0,0.925,1.0,0.975,1.0],"uvs2":null,"colors":null,"hasVertexAlpha":false,"matricesIndices":null,"matricesWeights":null,"matricesIndicesExtra":null,"matricesWeightsExtra":null,"indices":[0,1,2,2,1,3,1,4,3,3,4,5,4,6,5,5,6,7,6,8,7,7,8,9,8,10,9,9,10,11,10,12,11,11,12,13,12,14,13,13,14,15,14,16,15,15,16,17,16,18,17,17,18,19,18,20,19,19,20,21,20,22,21,21,22,23,22,24,23,23,24,25,24,26,25,25,26,27,26,28,27,27,28,29,28,30,29,29,30,31,30,32,31,31,32,33,32,34,33,33,34,35,34,36,35,35,36,37,36,38,37,37,38,39,38,40,39,39,40,41,2,3,42,42,3,43,3,5,43,43,5,44,5,7,44,44,7,45,7,9,45,45,9,46,9,11,46,46,11,47,11,13,47,47,13,48,13,15,48,48,15,49,15,17,49,49,17,50,17,19,50,50,19,51,19,21,51,51,21,52,21,23,52,52,23,53,23,25,53,53,25,54,25,27,54,54,27,55,27,29,55,55,29,56,29,31,56,56,31,57,31,33,57,57,33,58,33,35,58,58,35,59,35,37,59,59,37,60,37,39,60,60,39,61,39,41,61,61,41,62,42,43,63,63,43,64,43,44,64,64,44,65,44,45,65,65,45,66,45,46,66,66,46,67,46,47,67,67,47,68,47,48,68,68,48,69,48,49,69,69,49,70,49,50,70,70,50,71,50,51,71,71,51,72,51,52,72,72,52,73,52,53,73,73,53,74,53,54,74,74,54,75,54,55,75,75,55,76,55,56,76,76,56,77,56,57,77,77,57,78,57,58,78,78,58,79,58,59,79,79,59,80,59,60,80,80,60,81,60,61,81,81,61,82,61,62,82,82,62,83,63,64,84,84,64,85,64,65,85,85,65,86,65,66,86,86,66,87,66,67,87,87,67,88,67,68,88,88,68,89,68,69,89,89,69,90,69,70,90,90,70,91,70,71,91,91,71,92,71,72,92,92,72,93,72,73,93,93,73,94,73,74,94,94,74,95,74,75,95,95,75,96,75,76,96,96,76,97,76,77,97,97,77,98,77,78,98,98,78,99,78,79,99,99,79,100,79,80,100,100,80,101,80,81,101,101,81,102,81,82,102,102,82,103,82,83,103,103,83,104,84,85,105,105,85,106,85,86,106,106,86,107,86,87,107,107,87,108,87,88,108,108,88,109,88,89,109,109,89,110,89,90,110,110,90,111,90,91,111,111,91,112,91,92,112,112,92,113,92,93,113,113,93,114,93,94,114,114,94,115,94,95,115,115,95,116,95,96,116,116,96,117,96,97,117,117,97,118,97,98,118,118,98,119,98,99,119,119,99,120,99,100,120,120,100,121,100,101,121,121,101,122,101,102,122,122,102,123,102,103,123,123,103,124,103,104,124,124,104,125,105,106,126,126,106,127,106,107,127,127,107,128,107,108,128,128,108,129,108,109,129,129,109,130,109,110,130,130,110,131,110,111,131,131,111,132,111,112,132,132,112,133,112,113,133,133,113,134,113,114,134,134,114,135,114,115,135,135,115,136,115,116,136,136,116,137,116,117,137,137,117,138,117,118,138,138,118,139,118,119,139,139,119,140,119,120,140,140,120,141,120,121,141,141,121,142,121,122,142,142,122,143,122,123,143,143,123,144,123,124,144,144,124,145,124,125,145,145,125,146,126,127,147,147,127,148,127,128,148,148,128,149,128,129,149,149,129,150,129,130,150,150,130,151,130,131,151,151,131,152,131,132,152,152,132,153,132,133,153,153,133,154,133,134,154,154,134,155,134,135,155,155,135,156,135,136,156,156,136,157,136,137,157,157,137,158,137,138,158,158,138,159,138,139,159,159,139,160,139,140,160,160,140,161,140,141,161,161,141,162,141,142,162,162,142,163,142,143,163,163,143,164,143,144,164,164,144,165,144,145,165,165,145,166,145,146,166,166,146,167,147,148,168,168,148,169,148,149,169,169,149,170,149,150,170,170,150,171,150,151,171,171,151,172,151,152,172,172,152,173,152,153,173,173,153,174,153,154,174,174,154,175,154,155,175,175,155,176,155,156,176,176,156,177,156,157,177,177,157,178,157,158,178,178,158,179,158,159,179,179,159,180,159,160,180,180,160,181,160,161,181,181,161,182,161,162,182,182,162,183,162,163,183,183,163,184,163,164,184,184,164,185,164,165,185,185,165,186,165,166,186,186,166,187,166,167,187,187,167,188,168,169,189,189,169,190,169,170,190,190,170,191,170,171,191,191,171,192,171,172,192,192,172,193,172,173,193,193,173,194,173,174,194,194,174,195,174,175,195,195,175,196,175,176,196,196,176,197,176,177,197,197,177,198,177,178,198,198,178,199,178,179,199,199,179,200,179,180,200,200,180,201,180,181,201,201,181,202,181,182,202,202,182,203,182,183,203,203,183,204,183,184,204,204,184,205,184,185,205,205,185,206,185,186,206,206,186,207,186,187,207,207,187,208,187,188,208,208,188,209,189,190,210,210,190,211,190,191,211,211,191,212,191,192,212,212,192,213,192,193,213,213,193,214,193,194,214,214,194,215,194,195,215,215,195,216,195,196,216,216,196,217,196,197,217,217,197,218,197,198,218,218,198,219,198,199,219,219,199,220,199,200,220,220,200,221,200,201,221,221,201,222,201,202,222,222,202,223,202,203,223,223,203,224,203,204,224,224,204,225,204,205,225,225,205,226,205,206,226,226,206,227,206,207,227,227,207,228,207,208,228,228,208,229,208,209,229,229,209,230,210,211,231,231,211,232,211,212,232,232,212,233,212,213,233,233,213,234,213,214,234,234,214,235,214,215,235,235,215,236,215,216,236,236,216,237,216,217,237,237,217,238,217,218,238,238,218,239,218,219,239,239,219,240,219,220,240,240,220,241,220,221,241,241,221,242,221,222,242,242,222,243,222,223,243,243,223,244,223,224,244,244,224,245,224,225,245,245,225,246,225,226,246,246,226,247,226,227,247,247,227,248,227,228,248,248,228,249,228,229,249,249,229,250,229,230,250,250,230,251,231,232,252,252,232,253,232,233,253,253,233,254,233,234,254,254,234,255,234,235,255,255,235,256,235,236,256,256,236,257,236,237,257,257,237,258,237,238,258,258,238,259,238,239,259,259,239,260,239,240,260,260,240,261,240,241,261,261,241,262,241,242,262,262,242,263,242,243,263,263,243,264,243,244,264,264,244,265,244,245,265,265,245,266,245,246,266,266,246,267,246,247,267,267,247,268,247,248,268,268,248,269,248,249,269,269,249,270,249,250,270,270,250,271,250,251,271,271,251,272,252,253,273,273,253,274,253,254,274,274,254,275,254,255,275,275,255,276,255,256,276,276,256,277,256,257,277,277,257,278,257,258,278,278,258,279,258,259,279,279,259,280,259,260,280,280,260,281,260,261,281,281,261,282,261,262,282,282,262,283,262,263,283,283,263,284,263,264,284,284,264,285,264,265,285,285,265,286,265,266,286,286,266,287,266,267,287,287,267,288,267,268,288,288,268,289,268,269,289,289,269,290,269,270,290,290,270,291,270,271,291,291,271,292,271,272,292,292,272,293,273,274,294,294,274,295,274,275,295,295,275,296,275,276,296,296,276,297,276,277,297,297,277,298,277,278,298,298,278,299,278,279,299,299,279,300,279,280,300,300,280,301,280,281,301,301,281,302,281,282,302,302,282,303,282,283,303,303,283,304,283,284,304,304,284,305,284,285,305,305,285,306,285,286,306,306,286,307,286,287,307,307,287,308,287,288,308,308,288,309,288,289,309,309,289,310,289,290,310,310,290,311,290,291,311,311,291,312,291,292,312,312,292,313,292,293,313,313,293,314,294,295,315,315,295,316,295,296,316,316,296,317,296,297,317,317,297,318,297,298,318,318,298,319,298,299,319,319,299,320,299,300,320,320,300,321,300,301,321,321,301,322,301,302,322,322,302,323,302,303,323,323,303,324,303,304,324,324,304,325,304,305,325,325,305,326,305,306,326,326,306,327,306,307,327,327,307,328,307,308,328,328,308,329,308,309,329,329,309,330,309,310,330,330,310,331,310,311,331,331,311,332,311,312,332,332,312,333,312,313,333,333,313,334,313,314,334,334,314,335,315,316,336,336,316,337,316,317,337,337,317,338,317,318,338,338,318,339,318,319,339,339,319,340,319,320,340,340,320,341,320,321,341,341,321,342,321,322,342,342,322,343,322,323,343,343,323,344,323,324,344,344,324,345,324,325,345,345,325,346,325,326,346,346,326,347,326,327,347,347,327,348,327,328,348,348,328,349,328,329,349,349,329,350,329,330,350,350,330,351,330,331,351,351,331,352,331,332,352,352,332,353,332,333,353,353,333,354,333,334,354,354,334,355,334,335,355,355,335,356,336,337,357,357,337,358,337,338,358,358,338,359,338,339,359,359,339,360,339,340,360,360,340,361,340,341,361,361,341,362,341,342,362,362,342,363,342,343,363,363,343,364,343,344,364,364,344,365,344,345,365,365,345,366,345,346,366,366,346,367,346,347,367,367,347,368,347,348,368,368,348,369,348,349,369,369,349,370,349,350,370,370,350,371,350,351,371,371,351,372,351,352,372,372,352,373,352,353,373,373,353,374,353,354,374,374,354,375,354,355,375,375,355,376,355,356,376,376,356,377,357,358,378,378,358,379,358,359,379,379,359,380,359,360,380,380,360,381,360,361,381,381,361,382,361,362,382,382,362,383,362,363,383,383,363,384,363,364,384,384,364,385,364,365,385,385,365,386,365,366,386,386,366,387,366,367,387,387,367,388,367,368,388,388,368,389,368,369,389,389,369,390,369,370,390,390,370,391,370,371,391,391,371,392,371,372,392,392,372,393,372,373,393,393,373,394,373,374,394,394,374,395,374,375,395,395,375,396,375,376,396,396,376,397,376,377,397,397,377,398,1,0,399,4,1,400,6,4,401,8,6,402,10,8,403,12,10,404,14,12,405,16,14,406,18,16,407,20,18,408,22,20,409,24,22,410,26,24,411,28,26,412,30,28,413,32,30,414,34,32,415,36,34,416,38,36,417,40,38,418,378,379,419,379,380,420,380,381,421,381,382,422,382,383,423,383,384,424,384,385,425,385,386,426,386,387,427,387,388,428,388,389,429,389,390,430,390,391,431,391,392,432,392,393,433,393,394,434,394,395,435,395,396,436,396,397,437,397,398,438],"receiveShadows":false,"infiniteDistance":false,"billboardMode":0,"visibility":1.0,"subMeshes":[{"materialIndex":0,"verticesStart":0,"verticesCount":439,"indexStart":0,"indexCount":2280}],"instances":null,"skeletonId":-1,"numBoneInfluencers":4,"applyFog":false,"lodMeshIds":null,"lodDistances":null,"lodCoverages":null,"rotation":null,"scaling":[1.0,1.0,1.0],"rotationQuaternion":[0.0,0.0,0.0,1.0],"actions":null,"checkCollisions":false,"pickable":true,"showBoundingBox":false,"showSubMeshesBoundingBox":false,"alphaIndex":0,"physicsImpostor":0,"physicsMass":0.0,"physicsFriction":0.0,"physicsRestitution":0.0,"name":"pSphere1","id":"39830D1B-4903-0C71-E956-0EBDE718A360","parentId":null,"position":[0.0,0.0,0.0],"animations":[],"autoAnimate":true,"autoAnimateFrom":1,"autoAnimateTo":200,"autoAnimateLoop":true,"metadata":{}},{"materialId":"0E49D5E9-4200-91FB-CB7B-93B40CEF850E","isEnabled":true,"isVisible":true,"positions":[0.1488,-0.9877,0.0483,0.1266,-0.9877,0.0919,0.2939,-0.9511,0.0955,0.25,-0.9511,0.1816,0.0919,-0.9877,0.1266,0.1816,-0.9511,0.25,0.0483,-0.9877,0.1488,0.0955,-0.9511,0.2939,0.0,-0.9877,0.1564,0.0,-0.9511,0.309,-0.0483,-0.9877,0.1488,-0.0955,-0.9511,0.2939,-0.0919,-0.9877,0.1266,-0.1816,-0.9511,0.25,-0.1266,-0.9877,0.0919,-0.25,-0.9511,0.1816,-0.1488,-0.9877,0.0483,-0.2939,-0.9511,0.0955,-0.1564,-0.9877,0.0,-0.309,-0.9511,0.0,-0.1488,-0.9877,-0.0483,-0.2939,-0.9511,-0.0955,-0.1266,-0.9877,-0.0919,-0.25,-0.9511,-0.1816,-0.0919,-0.9877,-0.1266,-0.1816,-0.9511,-0.25,-0.0483,-0.9877,-0.1488,-0.0955,-0.9511,-0.2939,0.0,-0.9877,-0.1564,0.0,-0.9511,-0.309,0.0483,-0.9877,-0.1488,0.0955,-0.9511,-0.2939,0.0919,-0.9877,-0.1266,0.1816,-0.9511,-0.25,0.1266,-0.9877,-0.0919,0.25,-0.9511,-0.1816,0.1488,-0.9877,-0.0483,0.2939,-0.9511,-0.0955,0.1564,-0.9877,0.0,0.309,-0.9511,0.0,0.1488,-0.9877,0.0483,0.2939,-0.9511,0.0955,0.4318,-0.891,0.1403,0.3673,-0.891,0.2668,0.2668,-0.891,0.3673,0.1403,-0.891,0.4318,0.0,-0.891,0.454,-0.1403,-0.891,0.4318,-0.2668,-0.891,0.3673,-0.3673,-0.891,0.2668,-0.4318,-0.891,0.1403,-0.454,-0.891,0.0,-0.4318,-0.891,-0.1403,-0.3673,-0.891,-0.2668,-0.2668,-0.891,-0.3673,-0.1403,-0.891,-0.4318,0.0,-0.891,-0.454,0.1403,-0.891,-0.4318,0.2668,-0.891,-0.3673,0.3673,-0.891,-0.2668,0.4318,-0.891,-0.1403,0.454,-0.891,0.0,0.4318,-0.891,0.1403,0.559,-0.809,0.1816,0.4755,-0.809,0.3455,0.3455,-0.809,0.4755,0.1816,-0.809,0.559,0.0,-0.809,0.5878,-0.1816,-0.809,0.559,-0.3455,-0.809,0.4755,-0.4755,-0.809,0.3455,-0.559,-0.809,0.1816,-0.5878,-0.809,0.0,-0.559,-0.809,-0.1816,-0.4755,-0.809,-0.3455,-0.3455,-0.809,-0.4755,-0.1816,-0.809,-0.559,0.0,-0.809,-0.5878,0.1816,-0.809,-0.559,0.3455,-0.809,-0.4755,0.4755,-0.809,-0.3455,0.559,-0.809,-0.1816,0.5878,-0.809,0.0,0.559,-0.809,0.1816,0.6725,-0.7071,0.2185,0.5721,-0.7071,0.4156,0.4156,-0.7071,0.5721,0.2185,-0.7071,0.6725,0.0,-0.7071,0.7071,-0.2185,-0.7071,0.6725,-0.4156,-0.7071,0.5721,-0.5721,-0.7071,0.4156,-0.6725,-0.7071,0.2185,-0.7071,-0.7071,0.0,-0.6725,-0.7071,-0.2185,-0.5721,-0.7071,-0.4156,-0.4156,-0.7071,-0.5721,-0.2185,-0.7071,-0.6725,0.0,-0.7071,-0.7071,0.2185,-0.7071,-0.6725,0.4156,-0.7071,-0.5721,0.5721,-0.7071,-0.4156,0.6725,-0.7071,-0.2185,0.7071,-0.7071,0.0,0.6725,-0.7071,0.2185,0.7694,-0.5878,0.25,0.6545,-0.5878,0.4755,0.4755,-0.5878,0.6545,0.25,-0.5878,0.7694,0.0,-0.5878,0.809,-0.25,-0.5878,0.7694,-0.4755,-0.5878,0.6545,-0.6545,-0.5878,0.4755,-0.7694,-0.5878,0.25,-0.809,-0.5878,0.0,-0.7694,-0.5878,-0.25,-0.6545,-0.5878,-0.4755,-0.4755,-0.5878,-0.6545,-0.25,-0.5878,-0.7694,0.0,-0.5878,-0.809,0.25,-0.5878,-0.7694,0.4755,-0.5878,-0.6545,0.6545,-0.5878,-0.4755,0.7694,-0.5878,-0.25,0.809,-0.5878,0.0,0.7694,-0.5878,0.25,0.8474,-0.454,0.2753,0.7208,-0.454,0.5237,0.5237,-0.454,0.7208,0.2753,-0.454,0.8474,0.0,-0.454,0.891,-0.2753,-0.454,0.8474,-0.5237,-0.454,0.7208,-0.7208,-0.454,0.5237,-0.8474,-0.454,0.2753,-0.891,-0.454,0.0,-0.8474,-0.454,-0.2753,-0.7208,-0.454,-0.5237,-0.5237,-0.454,-0.7208,-0.2753,-0.454,-0.8474,0.0,-0.454,-0.891,0.2753,-0.454,-0.8474,0.5237,-0.454,-0.7208,0.7208,-0.454,-0.5237,0.8474,-0.454,-0.2753,0.891,-0.454,0.0,0.8474,-0.454,0.2753,0.9045,-0.309,0.2939,0.7694,-0.309,0.559,0.559,-0.309,0.7694,0.2939,-0.309,0.9045,0.0,-0.309,0.9511,-0.2939,-0.309,0.9045,-0.559,-0.309,0.7694,-0.7694,-0.309,0.559,-0.9045,-0.309,0.2939,-0.9511,-0.309,0.0,-0.9045,-0.309,-0.2939,-0.7694,-0.309,-0.559,-0.559,-0.309,-0.7694,-0.2939,-0.309,-0.9045,0.0,-0.309,-0.9511,0.2939,-0.309,-0.9045,0.559,-0.309,-0.7694,0.7694,-0.309,-0.559,0.9045,-0.309,-0.2939,0.9511,-0.309,0.0,0.9045,-0.309,0.2939,0.9393,-0.1564,0.3052,0.7991,-0.1564,0.5805,0.5805,-0.1564,0.7991,0.3052,-0.1564,0.9393,0.0,-0.1564,0.9877,-0.3052,-0.1564,0.9393,-0.5805,-0.1564,0.7991,-0.7991,-0.1564,0.5805,-0.9393,-0.1564,0.3052,-0.9877,-0.1564,0.0,-0.9393,-0.1564,-0.3052,-0.7991,-0.1564,-0.5805,-0.5805,-0.1564,-0.7991,-0.3052,-0.1564,-0.9393,0.0,-0.1564,-0.9877,0.3052,-0.1564,-0.9393,0.5805,-0.1564,-0.7991,0.7991,-0.1564,-0.5805,0.9393,-0.1564,-0.3052,0.9877,-0.1564,0.0,0.9393,-0.1564,0.3052,0.9511,0.0,0.309,0.809,0.0,0.5878,0.5878,0.0,0.809,0.309,0.0,0.9511,0.0,0.0,1.0,-0.309,0.0,0.9511,-0.5878,0.0,0.809,-0.809,0.0,0.5878,-0.9511,0.0,0.309,-1.0,0.0,0.0,-0.9511,0.0,-0.309,-0.809,0.0,-0.5878,-0.5878,0.0,-0.809,-0.309,0.0,-0.9511,0.0,0.0,-1.0,0.309,0.0,-0.9511,0.5878,0.0,-0.809,0.809,0.0,-0.5878,0.9511,0.0,-0.309,1.0,0.0,0.0,0.9511,0.0,0.309,0.9393,0.1564,0.3052,0.7991,0.1564,0.5805,0.5805,0.1564,0.7991,0.3052,0.1564,0.9393,0.0,0.1564,0.9877,-0.3052,0.1564,0.9393,-0.5805,0.1564,0.7991,-0.7991,0.1564,0.5805,-0.9393,0.1564,0.3052,-0.9877,0.1564,0.0,-0.9393,0.1564,-0.3052,-0.7991,0.1564,-0.5805,-0.5805,0.1564,-0.7991,-0.3052,0.1564,-0.9393,0.0,0.1564,-0.9877,0.3052,0.1564,-0.9393,0.5805,0.1564,-0.7991,0.7991,0.1564,-0.5805,0.9393,0.1564,-0.3052,0.9877,0.1564,0.0,0.9393,0.1564,0.3052,0.9045,0.309,0.2939,0.7694,0.309,0.559,0.559,0.309,0.7694,0.2939,0.309,0.9045,0.0,0.309,0.9511,-0.2939,0.309,0.9045,-0.559,0.309,0.7694,-0.7694,0.309,0.559,-0.9045,0.309,0.2939,-0.9511,0.309,0.0,-0.9045,0.309,-0.2939,-0.7694,0.309,-0.559,-0.559,0.309,-0.7694,-0.2939,0.309,-0.9045,0.0,0.309,-0.9511,0.2939,0.309,-0.9045,0.559,0.309,-0.7694,0.7694,0.309,-0.559,0.9045,0.309,-0.2939,0.9511,0.309,0.0,0.9045,0.309,0.2939,0.8474,0.454,0.2753,0.7208,0.454,0.5237,0.5237,0.454,0.7208,0.2753,0.454,0.8474,0.0,0.454,0.891,-0.2753,0.454,0.8474,-0.5237,0.454,0.7208,-0.7208,0.454,0.5237,-0.8474,0.454,0.2753,-0.891,0.454,0.0,-0.8474,0.454,-0.2753,-0.7208,0.454,-0.5237,-0.5237,0.454,-0.7208,-0.2753,0.454,-0.8474,0.0,0.454,-0.891,0.2753,0.454,-0.8474,0.5237,0.454,-0.7208,0.7208,0.454,-0.5237,0.8474,0.454,-0.2753,0.891,0.454,0.0,0.8474,0.454,0.2753,0.7694,0.5878,0.25,0.6545,0.5878,0.4755,0.4755,0.5878,0.6545,0.25,0.5878,0.7694,0.0,0.5878,0.809,-0.25,0.5878,0.7694,-0.4755,0.5878,0.6545,-0.6545,0.5878,0.4755,-0.7694,0.5878,0.25,-0.809,0.5878,0.0,-0.7694,0.5878,-0.25,-0.6545,0.5878,-0.4755,-0.4755,0.5878,-0.6545,-0.25,0.5878,-0.7694,0.0,0.5878,-0.809,0.25,0.5878,-0.7694,0.4755,0.5878,-0.6545,0.6545,0.5878,-0.4755,0.7694,0.5878,-0.25,0.809,0.5878,0.0,0.7694,0.5878,0.25,0.6725,0.7071,0.2185,0.5721,0.7071,0.4156,0.4156,0.7071,0.5721,0.2185,0.7071,0.6725,0.0,0.7071,0.7071,-0.2185,0.7071,0.6725,-0.4156,0.7071,0.5721,-0.5721,0.7071,0.4156,-0.6725,0.7071,0.2185,-0.7071,0.7071,0.0,-0.6725,0.7071,-0.2185,-0.5721,0.7071,-0.4156,-0.4156,0.7071,-0.5721,-0.2185,0.7071,-0.6725,0.0,0.7071,-0.7071,0.2185,0.7071,-0.6725,0.4156,0.7071,-0.5721,0.5721,0.7071,-0.4156,0.6725,0.7071,-0.2185,0.7071,0.7071,0.0,0.6725,0.7071,0.2185,0.559,0.809,0.1816,0.4755,0.809,0.3455,0.3455,0.809,0.4755,0.1816,0.809,0.559,0.0,0.809,0.5878,-0.1816,0.809,0.559,-0.3455,0.809,0.4755,-0.4755,0.809,0.3455,-0.559,0.809,0.1816,-0.5878,0.809,0.0,-0.559,0.809,-0.1816,-0.4755,0.809,-0.3455,-0.3455,0.809,-0.4755,-0.1816,0.809,-0.559,0.0,0.809,-0.5878,0.1816,0.809,-0.559,0.3455,0.809,-0.4755,0.4755,0.809,-0.3455,0.559,0.809,-0.1816,0.5878,0.809,0.0,0.559,0.809,0.1816,0.4318,0.891,0.1403,0.3673,0.891,0.2668,0.2668,0.891,0.3673,0.1403,0.891,0.4318,0.0,0.891,0.454,-0.1403,0.891,0.4318,-0.2668,0.891,0.3673,-0.3673,0.891,0.2668,-0.4318,0.891,0.1403,-0.454,0.891,0.0,-0.4318,0.891,-0.1403,-0.3673,0.891,-0.2668,-0.2668,0.891,-0.3673,-0.1403,0.891,-0.4318,0.0,0.891,-0.454,0.1403,0.891,-0.4318,0.2668,0.891,-0.3673,0.3673,0.891,-0.2668,0.4318,0.891,-0.1403,0.454,0.891,0.0,0.4318,0.891,0.1403,0.2939,0.9511,0.0955,0.25,0.9511,0.1816,0.1816,0.9511,0.25,0.0955,0.9511,0.2939,0.0,0.9511,0.309,-0.0955,0.9511,0.2939,-0.1816,0.9511,0.25,-0.25,0.9511,0.1816,-0.2939,0.9511,0.0955,-0.309,0.9511,0.0,-0.2939,0.9511,-0.0955,-0.25,0.9511,-0.1816,-0.1816,0.9511,-0.25,-0.0955,0.9511,-0.2939,0.0,0.9511,-0.309,0.0955,0.9511,-0.2939,0.1816,0.9511,-0.25,0.25,0.9511,-0.1816,0.2939,0.9511,-0.0955,0.309,0.9511,0.0,0.2939,0.9511,0.0955,0.1488,0.9877,0.0483,0.1266,0.9877,0.0919,0.0919,0.9877,0.1266,0.0483,0.9877,0.1488,0.0,0.9877,0.1564,-0.0483,0.9877,0.1488,-0.0919,0.9877,0.1266,-0.1266,0.9877,0.0919,-0.1488,0.9877,0.0483,-0.1564,0.9877,0.0,-0.1488,0.9877,-0.0483,-0.1266,0.9877,-0.0919,-0.0919,0.9877,-0.1266,-0.0483,0.9877,-0.1488,0.0,0.9877,-0.1564,0.0483,0.9877,-0.1488,0.0919,0.9877,-0.1266,0.1266,0.9877,-0.0919,0.1488,0.9877,-0.0483,0.1564,0.9877,0.0,0.1488,0.9877,0.0483,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0],"normals":[0.1906,-0.9797,0.0619,0.1621,-0.9797,0.1178,0.3173,-0.9427,0.1031,0.2699,-0.9427,0.1961,0.1178,-0.9797,0.1621,0.1961,-0.9427,0.2699,0.0619,-0.9797,0.1906,0.1031,-0.9427,0.3173,0.0,-0.9797,0.2004,0.0,-0.9427,0.3336,-0.0619,-0.9797,0.1906,-0.1031,-0.9427,0.3173,-0.1178,-0.9797,0.1621,-0.1961,-0.9427,0.2699,-0.1621,-0.9797,0.1178,-0.2699,-0.9427,0.1961,-0.1906,-0.9797,0.0619,-0.3173,-0.9427,0.1031,-0.2004,-0.9797,0.0,-0.3336,-0.9427,0.0,-0.1906,-0.9797,-0.0619,-0.3173,-0.9427,-0.1031,-0.1621,-0.9797,-0.1178,-0.2699,-0.9427,-0.1961,-0.1178,-0.9797,-0.1621,-0.1961,-0.9427,-0.2699,-0.0619,-0.9797,-0.1906,-0.1031,-0.9427,-0.3173,0.0,-0.9797,-0.2004,0.0,-0.9427,-0.3336,0.0619,-0.9797,-0.1906,0.1031,-0.9427,-0.3173,0.1178,-0.9797,-0.1621,0.1961,-0.9427,-0.2699,0.1621,-0.9797,-0.1178,0.2699,-0.9427,-0.1961,0.1906,-0.9797,-0.0619,0.3173,-0.9427,-0.1031,0.2004,-0.9797,0.0,0.3336,-0.9427,0.0,0.1906,-0.9797,0.0619,0.3173,-0.9427,0.1031,0.4477,-0.8823,0.1455,0.3808,-0.8823,0.2767,0.2767,-0.8823,0.3808,0.1455,-0.8823,0.4477,0.0,-0.8823,0.4708,-0.1455,-0.8823,0.4477,-0.2767,-0.8823,0.3808,-0.3808,-0.8823,0.2767,-0.4477,-0.8823,0.1455,-0.4708,-0.8823,0.0,-0.4477,-0.8823,-0.1455,-0.3808,-0.8823,-0.2767,-0.2767,-0.8823,-0.3808,-0.1455,-0.8823,-0.4477,0.0,-0.8823,-0.4708,0.1455,-0.8823,-0.4477,0.2767,-0.8823,-0.3808,0.3808,-0.8823,-0.2767,0.4477,-0.8823,-0.1455,0.4708,-0.8823,0.0,0.4477,-0.8823,0.1455,0.5703,-0.8003,0.1853,0.4851,-0.8003,0.3525,0.3525,-0.8003,0.4851,0.1853,-0.8003,0.5703,0.0,-0.8003,0.5997,-0.1853,-0.8003,0.5703,-0.3525,-0.8003,0.4851,-0.4851,-0.8003,0.3525,-0.5703,-0.8003,0.1853,-0.5997,-0.8003,0.0,-0.5703,-0.8003,-0.1853,-0.4851,-0.8003,-0.3525,-0.3525,-0.8003,-0.4851,-0.1853,-0.8003,-0.5703,0.0,-0.8003,-0.5997,0.1853,-0.8003,-0.5703,0.3525,-0.8003,-0.4851,0.4851,-0.8003,-0.3525,0.5703,-0.8003,-0.1853,0.5997,-0.8003,0.0,0.5703,-0.8003,0.1853,0.6803,-0.6988,0.221,0.5787,-0.6988,0.4205,0.4205,-0.6988,0.5787,0.221,-0.6988,0.6803,0.0,-0.6988,0.7153,-0.221,-0.6988,0.6803,-0.4205,-0.6988,0.5787,-0.5787,-0.6988,0.4205,-0.6803,-0.6988,0.221,-0.7153,-0.6988,0.0,-0.6803,-0.6988,-0.221,-0.5787,-0.6988,-0.4205,-0.4205,-0.6988,-0.5787,-0.221,-0.6988,-0.6803,0.0,-0.6988,-0.7153,0.221,-0.6988,-0.6803,0.4205,-0.6988,-0.5787,0.5787,-0.6988,-0.4205,0.6803,-0.6988,-0.221,0.7153,-0.6988,0.0,0.6803,-0.6988,0.221,0.7745,-0.5804,0.2516,0.6588,-0.5804,0.4787,0.4787,-0.5804,0.6588,0.2516,-0.5804,0.7745,0.0,-0.5804,0.8143,-0.2516,-0.5804,0.7745,-0.4787,-0.5804,0.6588,-0.6588,-0.5804,0.4787,-0.7745,-0.5804,0.2516,-0.8143,-0.5804,0.0,-0.7745,-0.5804,-0.2516,-0.6588,-0.5804,-0.4787,-0.4787,-0.5804,-0.6588,-0.2516,-0.5804,-0.7745,0.0,-0.5804,-0.8143,0.2516,-0.5804,-0.7745,0.4787,-0.5804,-0.6588,0.6588,-0.5804,-0.4787,0.7745,-0.5804,-0.2516,0.8143,-0.5804,0.0,0.7745,-0.5804,0.2516,0.8503,-0.448,0.2763,0.7233,-0.448,0.5255,0.5255,-0.448,0.7233,0.2763,-0.448,0.8503,0.0,-0.448,0.894,-0.2763,-0.448,0.8503,-0.5255,-0.448,0.7233,-0.7233,-0.448,0.5255,-0.8503,-0.448,0.2763,-0.894,-0.448,0.0,-0.8503,-0.448,-0.2763,-0.7233,-0.448,-0.5255,-0.5255,-0.448,-0.7233,-0.2763,-0.448,-0.8503,0.0,-0.448,-0.894,0.2763,-0.448,-0.8503,0.5255,-0.448,-0.7233,0.7233,-0.448,-0.5255,0.8503,-0.448,-0.2763,0.894,-0.448,0.0,0.8503,-0.448,0.2763,0.9058,-0.3048,0.2943,0.7705,-0.3048,0.5598,0.5598,-0.3048,0.7705,0.2943,-0.3048,0.9058,0.0,-0.3048,0.9524,-0.2943,-0.3048,0.9058,-0.5598,-0.3048,0.7705,-0.7705,-0.3048,0.5598,-0.9058,-0.3048,0.2943,-0.9524,-0.3048,0.0,-0.9058,-0.3048,-0.2943,-0.7705,-0.3048,-0.5598,-0.5598,-0.3048,-0.7705,-0.2943,-0.3048,-0.9058,0.0,-0.3048,-0.9524,0.2943,-0.3048,-0.9058,0.5598,-0.3048,-0.7705,0.7705,-0.3048,-0.5598,0.9058,-0.3048,-0.2943,0.9524,-0.3048,0.0,0.9058,-0.3048,0.2943,0.9397,-0.1542,0.3053,0.7993,-0.1542,0.5808,0.5808,-0.1542,0.7993,0.3053,-0.1542,0.9397,0.0,-0.1542,0.988,-0.3053,-0.1542,0.9397,-0.5808,-0.1542,0.7993,-0.7993,-0.1542,0.5808,-0.9397,-0.1542,0.3053,-0.988,-0.1542,0.0,-0.9397,-0.1542,-0.3053,-0.7993,-0.1542,-0.5808,-0.5808,-0.1542,-0.7993,-0.3053,-0.1542,-0.9397,0.0,-0.1542,-0.988,0.3053,-0.1542,-0.9397,0.5808,-0.1542,-0.7993,0.7993,-0.1542,-0.5808,0.9397,-0.1542,-0.3053,0.988,-0.1542,0.0,0.9397,-0.1542,0.3053,0.9511,0.0,0.309,0.809,0.0,0.5878,0.5878,0.0,0.809,0.309,0.0,0.9511,0.0,0.0,1.0,-0.309,0.0,0.9511,-0.5878,0.0,0.809,-0.809,0.0,0.5878,-0.9511,0.0,0.309,-1.0,0.0,0.0,-0.9511,0.0,-0.309,-0.809,0.0,-0.5878,-0.5878,0.0,-0.809,-0.309,0.0,-0.9511,0.0,0.0,-1.0,0.309,0.0,-0.9511,0.5878,0.0,-0.809,0.809,0.0,-0.5878,0.9511,0.0,-0.309,1.0,0.0,0.0,0.9511,0.0,0.309,0.9397,0.1542,0.3053,0.7993,0.1542,0.5808,0.5808,0.1542,0.7993,0.3053,0.1542,0.9397,0.0,0.1542,0.988,-0.3053,0.1542,0.9397,-0.5808,0.1542,0.7993,-0.7993,0.1542,0.5808,-0.9397,0.1542,0.3053,-0.988,0.1542,0.0,-0.9397,0.1542,-0.3053,-0.7993,0.1542,-0.5808,-0.5808,0.1542,-0.7993,-0.3053,0.1542,-0.9397,0.0,0.1542,-0.988,0.3053,0.1542,-0.9397,0.5808,0.1542,-0.7993,0.7993,0.1542,-0.5808,0.9397,0.1542,-0.3053,0.988,0.1542,0.0,0.9397,0.1542,0.3053,0.9058,0.3048,0.2943,0.7705,0.3048,0.5598,0.5598,0.3048,0.7705,0.2943,0.3048,0.9058,0.0,0.3048,0.9524,-0.2943,0.3048,0.9058,-0.5598,0.3048,0.7705,-0.7705,0.3048,0.5598,-0.9058,0.3048,0.2943,-0.9524,0.3048,0.0,-0.9058,0.3048,-0.2943,-0.7705,0.3048,-0.5598,-0.5598,0.3048,-0.7705,-0.2943,0.3048,-0.9058,0.0,0.3048,-0.9524,0.2943,0.3048,-0.9058,0.5598,0.3048,-0.7705,0.7705,0.3048,-0.5598,0.9058,0.3048,-0.2943,0.9524,0.3048,0.0,0.9058,0.3048,0.2943,0.8503,0.448,0.2763,0.7233,0.448,0.5255,0.5255,0.448,0.7233,0.2763,0.448,0.8503,0.0,0.448,0.894,-0.2763,0.448,0.8503,-0.5255,0.448,0.7233,-0.7233,0.448,0.5255,-0.8503,0.448,0.2763,-0.894,0.448,0.0,-0.8503,0.448,-0.2763,-0.7233,0.448,-0.5255,-0.5255,0.448,-0.7233,-0.2763,0.448,-0.8503,0.0,0.448,-0.894,0.2763,0.448,-0.8503,0.5255,0.448,-0.7233,0.7233,0.448,-0.5255,0.8503,0.448,-0.2763,0.894,0.448,0.0,0.8503,0.448,0.2763,0.7745,0.5804,0.2516,0.6588,0.5804,0.4787,0.4787,0.5804,0.6588,0.2516,0.5804,0.7745,0.0,0.5804,0.8143,-0.2516,0.5804,0.7745,-0.4787,0.5804,0.6588,-0.6588,0.5804,0.4787,-0.7745,0.5804,0.2516,-0.8143,0.5804,0.0,-0.7745,0.5804,-0.2516,-0.6588,0.5804,-0.4787,-0.4787,0.5804,-0.6588,-0.2516,0.5804,-0.7745,0.0,0.5804,-0.8143,0.2516,0.5804,-0.7745,0.4787,0.5804,-0.6588,0.6588,0.5804,-0.4787,0.7745,0.5804,-0.2516,0.8143,0.5804,0.0,0.7745,0.5804,0.2516,0.6803,0.6988,0.221,0.5787,0.6988,0.4205,0.4205,0.6988,0.5787,0.221,0.6988,0.6803,0.0,0.6988,0.7153,-0.221,0.6988,0.6803,-0.4205,0.6988,0.5787,-0.5787,0.6988,0.4205,-0.6803,0.6988,0.221,-0.7153,0.6988,0.0,-0.6803,0.6988,-0.221,-0.5787,0.6988,-0.4205,-0.4205,0.6988,-0.5787,-0.221,0.6988,-0.6803,0.0,0.6988,-0.7153,0.221,0.6988,-0.6803,0.4205,0.6988,-0.5787,0.5787,0.6988,-0.4205,0.6803,0.6988,-0.221,0.7153,0.6988,0.0,0.6803,0.6988,0.221,0.5703,0.8003,0.1853,0.4851,0.8003,0.3525,0.3525,0.8003,0.4851,0.1853,0.8003,0.5703,0.0,0.8003,0.5997,-0.1853,0.8003,0.5703,-0.3525,0.8003,0.4851,-0.4851,0.8003,0.3525,-0.5703,0.8003,0.1853,-0.5997,0.8003,0.0,-0.5703,0.8003,-0.1853,-0.4851,0.8003,-0.3525,-0.3525,0.8003,-0.4851,-0.1853,0.8003,-0.5703,0.0,0.8003,-0.5997,0.1853,0.8003,-0.5703,0.3525,0.8003,-0.4851,0.4851,0.8003,-0.3525,0.5703,0.8003,-0.1853,0.5997,0.8003,0.0,0.5703,0.8003,0.1853,0.4477,0.8823,0.1455,0.3808,0.8823,0.2767,0.2767,0.8823,0.3808,0.1455,0.8823,0.4477,0.0,0.8823,0.4708,-0.1455,0.8823,0.4477,-0.2767,0.8823,0.3808,-0.3808,0.8823,0.2767,-0.4477,0.8823,0.1455,-0.4708,0.8823,0.0,-0.4477,0.8823,-0.1455,-0.3808,0.8823,-0.2767,-0.2767,0.8823,-0.3808,-0.1455,0.8823,-0.4477,0.0,0.8823,-0.4708,0.1455,0.8823,-0.4477,0.2767,0.8823,-0.3808,0.3808,0.8823,-0.2767,0.4477,0.8823,-0.1455,0.4708,0.8823,0.0,0.4477,0.8823,0.1455,0.3173,0.9427,0.1031,0.2699,0.9427,0.1961,0.1961,0.9427,0.2699,0.1031,0.9427,0.3173,0.0,0.9427,0.3336,-0.1031,0.9427,0.3173,-0.1961,0.9427,0.2699,-0.2699,0.9427,0.1961,-0.3173,0.9427,0.1031,-0.3336,0.9427,0.0,-0.3173,0.9427,-0.1031,-0.2699,0.9427,-0.1961,-0.1961,0.9427,-0.2699,-0.1031,0.9427,-0.3173,0.0,0.9427,-0.3336,0.1031,0.9427,-0.3173,0.1961,0.9427,-0.2699,0.2699,0.9427,-0.1961,0.3173,0.9427,-0.1031,0.3336,0.9427,0.0,0.3173,0.9427,0.1031,0.1906,0.9797,0.0619,0.1621,0.9797,0.1178,0.1178,0.9797,0.1621,0.0619,0.9797,0.1906,0.0,0.9797,0.2004,-0.0619,0.9797,0.1906,-0.1178,0.9797,0.1621,-0.1621,0.9797,0.1178,-0.1906,0.9797,0.0619,-0.2004,0.9797,0.0,-0.1906,0.9797,-0.0619,-0.1621,0.9797,-0.1178,-0.1178,0.9797,-0.1621,-0.0619,0.9797,-0.1906,0.0,0.9797,-0.2004,0.0619,0.9797,-0.1906,0.1178,0.9797,-0.1621,0.1621,0.9797,-0.1178,0.1906,0.9797,-0.0619,0.2004,0.9797,0.0,0.1906,0.9797,0.0619,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0],"tangents":[-0.4482,-0.0307,0.8934,-1.0,-0.5629,0.0062,0.8265,-1.0,-0.438,-0.0493,0.8976,-1.0,-0.5878,0.0,0.809,-1.0,-0.7908,0.0062,0.6121,-1.0,-0.809,0.0,0.5878,-1.0,-0.9412,0.0062,0.3378,-1.0,-0.9511,0.0,0.309,-1.0,-0.9995,0.0062,0.0304,-1.0,-1.0,0.0,0.0,-1.0,-0.96,0.0062,-0.28,-1.0,-0.9511,0.0,-0.309,-1.0,-0.8265,0.0062,-0.5629,-1.0,-0.809,0.0,-0.5878,-1.0,-0.6121,0.0062,-0.7908,-1.0,-0.5878,0.0,-0.809,-1.0,-0.3378,0.0062,-0.9412,-1.0,-0.309,0.0,-0.9511,-1.0,-0.0304,0.0062,-0.9995,-1.0,0.0,0.0,-1.0,-1.0,0.28,0.0062,-0.96,-1.0,0.309,0.0,-0.9511,-1.0,0.5629,0.0062,-0.8265,-1.0,0.5878,0.0,-0.809,-1.0,0.7908,0.0062,-0.6121,-1.0,0.809,0.0,-0.5878,-1.0,0.9412,0.0062,-0.3378,-1.0,0.9511,0.0,-0.309,-1.0,0.9995,0.0062,-0.0304,-1.0,1.0,0.0,0.0,-1.0,0.96,0.0062,0.28,-1.0,0.9511,0.0,0.309,-1.0,0.8265,0.0062,0.5629,-1.0,0.809,0.0,0.5878,-1.0,0.6121,0.0062,0.7908,-1.0,0.5878,0.0,0.809,-1.0,0.3378,0.0062,0.9412,-1.0,0.309,0.0,0.9511,-1.0,0.0304,0.0062,0.9995,-1.0,0.0,0.0,1.0,-1.0,-0.1625,0.0307,0.9862,-1.0,-0.1732,0.0493,0.9836,-1.0,-0.4222,-0.0651,0.9042,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.1899,0.0651,0.9796,-1.0,-0.4023,-0.0754,0.9124,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.2109,0.0754,0.9746,-1.0,-0.3802,-0.0787,0.9215,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.234,0.0787,0.969,-1.0,-0.3582,-0.0745,0.9306,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.2572,0.0745,0.9635,-1.0,-0.3384,-0.0633,0.9389,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.2781,0.0633,0.9585,-1.0,-0.3226,-0.0459,0.9454,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.2947,0.0459,0.9545,-1.0,-0.3125,-0.0241,0.9496,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.3053,0.0241,0.9519,-1.0,-0.309,0.0,0.9511,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.309,0.0,0.9511,-1.0,-0.3125,0.0241,0.9496,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.3053,-0.0241,0.9519,-1.0,-0.3226,0.0459,0.9454,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.2947,-0.0459,0.9545,-1.0,-0.3384,0.0633,0.9389,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.2781,-0.0633,0.9585,-1.0,-0.3582,0.0745,0.9306,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.2572,-0.0745,0.9635,-1.0,-0.3802,0.0787,0.9215,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.234,-0.0787,0.969,-1.0,-0.4023,0.0754,0.9124,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.2109,-0.0754,0.9746,-1.0,-0.4222,0.0651,0.9042,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.1899,-0.0651,0.9796,-1.0,-0.438,0.0493,0.8976,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.1732,-0.0493,0.9836,-1.0,-0.4482,0.0307,0.8934,-1.0,-0.6121,0.0062,0.7908,-1.0,-0.8265,0.0062,0.5629,-1.0,-0.96,0.0062,0.28,-1.0,-0.9995,0.0062,-0.0304,-1.0,-0.9412,0.0062,-0.3378,-1.0,-0.7908,0.0062,-0.6121,-1.0,-0.5629,0.0062,-0.8265,-1.0,-0.28,0.0062,-0.96,-1.0,0.0304,0.0062,-0.9995,-1.0,0.3378,0.0062,-0.9412,-1.0,0.6121,0.0062,-0.7908,-1.0,0.8265,0.0062,-0.5629,-1.0,0.96,0.0062,-0.28,-1.0,0.9995,0.0062,0.0304,-1.0,0.9412,0.0062,0.3378,-1.0,0.7908,0.0062,0.6121,-1.0,0.5629,0.0062,0.8265,-1.0,0.28,0.0062,0.96,-1.0,-0.0304,0.0062,0.9995,-1.0,-0.1625,-0.0307,0.9862,-1.0,-0.454,0.0,0.891,-1.0,-0.7071,0.0,0.7071,-1.0,-0.891,0.0,0.454,-1.0,-0.9877,0.0,0.1564,-1.0,-0.9877,0.0,-0.1564,-1.0,-0.891,0.0,-0.454,-1.0,-0.7071,0.0,-0.7071,-1.0,-0.454,0.0,-0.891,-1.0,-0.1564,0.0,-0.9877,-1.0,0.1564,0.0,-0.9877,-1.0,0.454,0.0,-0.891,-1.0,0.7071,0.0,-0.7071,-1.0,0.891,0.0,-0.454,-1.0,0.9877,0.0,-0.1564,-1.0,0.9877,0.0,0.1564,-1.0,0.891,0.0,0.454,-1.0,0.7071,0.0,0.7071,-1.0,0.454,0.0,0.891,-1.0,0.1564,0.0,0.9877,-1.0,-0.1564,0.0,0.9877,-1.0,-0.454,0.0,0.891,-1.0,-0.7071,0.0,0.7071,-1.0,-0.891,0.0,0.454,-1.0,-0.9877,0.0,0.1564,-1.0,-0.9877,0.0,-0.1564,-1.0,-0.891,0.0,-0.454,-1.0,-0.7071,0.0,-0.7071,-1.0,-0.454,0.0,-0.891,-1.0,-0.1564,0.0,-0.9877,-1.0,0.1564,0.0,-0.9877,-1.0,0.454,0.0,-0.891,-1.0,0.7071,0.0,-0.7071,-1.0,0.891,0.0,-0.454,-1.0,0.9877,0.0,-0.1564,-1.0,0.9877,0.0,0.1564,-1.0,0.891,0.0,0.454,-1.0,0.7071,0.0,0.7071,-1.0,0.454,0.0,0.891,-1.0,0.1564,0.0,0.9877,-1.0,-0.1564,0.0,0.9877,-1.0],"uvs":[0.0,0.05,0.05,0.05,0.0,0.1,0.05,0.1,0.1,0.05,0.1,0.1,0.15,0.05,0.15,0.1,0.2,0.05,0.2,0.1,0.25,0.05,0.25,0.1,0.3,0.05,0.3,0.1,0.35,0.05,0.35,0.1,0.4,0.05,0.4,0.1,0.45,0.05,0.45,0.1,0.5,0.05,0.5,0.1,0.55,0.05,0.55,0.1,0.6,0.05,0.6,0.1,0.65,0.05,0.65,0.1,0.7,0.05,0.7,0.1,0.75,0.05,0.75,0.1,0.8,0.05,0.8,0.1,0.85,0.05,0.85,0.1,0.9,0.05,0.9,0.1,0.95,0.05,0.95,0.1,1.0,0.05,1.0,0.1,0.0,0.15,0.05,0.15,0.1,0.15,0.15,0.15,0.2,0.15,0.25,0.15,0.3,0.15,0.35,0.15,0.4,0.15,0.45,0.15,0.5,0.15,0.55,0.15,0.6,0.15,0.65,0.15,0.7,0.15,0.75,0.15,0.8,0.15,0.85,0.15,0.9,0.15,0.95,0.15,1.0,0.15,0.0,0.2,0.05,0.2,0.1,0.2,0.15,0.2,0.2,0.2,0.25,0.2,0.3,0.2,0.35,0.2,0.4,0.2,0.45,0.2,0.5,0.2,0.55,0.2,0.6,0.2,0.65,0.2,0.7,0.2,0.75,0.2,0.8,0.2,0.85,0.2,0.9,0.2,0.95,0.2,1.0,0.2,0.0,0.25,0.05,0.25,0.1,0.25,0.15,0.25,0.2,0.25,0.25,0.25,0.3,0.25,0.35,0.25,0.4,0.25,0.45,0.25,0.5,0.25,0.55,0.25,0.6,0.25,0.65,0.25,0.7,0.25,0.75,0.25,0.8,0.25,0.85,0.25,0.9,0.25,0.95,0.25,1.0,0.25,0.0,0.3,0.05,0.3,0.1,0.3,0.15,0.3,0.2,0.3,0.25,0.3,0.3,0.3,0.35,0.3,0.4,0.3,0.45,0.3,0.5,0.3,0.55,0.3,0.6,0.3,0.65,0.3,0.7,0.3,0.75,0.3,0.8,0.3,0.85,0.3,0.9,0.3,0.95,0.3,1.0,0.3,0.0,0.35,0.05,0.35,0.1,0.35,0.15,0.35,0.2,0.35,0.25,0.35,0.3,0.35,0.35,0.35,0.4,0.35,0.45,0.35,0.5,0.35,0.55,0.35,0.6,0.35,0.65,0.35,0.7,0.35,0.75,0.35,0.8,0.35,0.85,0.35,0.9,0.35,0.95,0.35,1.0,0.35,0.0,0.4,0.05,0.4,0.1,0.4,0.15,0.4,0.2,0.4,0.25,0.4,0.3,0.4,0.35,0.4,0.4,0.4,0.45,0.4,0.5,0.4,0.55,0.4,0.6,0.4,0.65,0.4,0.7,0.4,0.75,0.4,0.8,0.4,0.85,0.4,0.9,0.4,0.95,0.4,1.0,0.4,0.0,0.45,0.05,0.45,0.1,0.45,0.15,0.45,0.2,0.45,0.25,0.45,0.3,0.45,0.35,0.45,0.4,0.45,0.45,0.45,0.5,0.45,0.55,0.45,0.6,0.45,0.65,0.45,0.7,0.45,0.75,0.45,0.8,0.45,0.85,0.45,0.9,0.45,0.95,0.45,1.0,0.45,0.0,0.5,0.05,0.5,0.1,0.5,0.15,0.5,0.2,0.5,0.25,0.5,0.3,0.5,0.35,0.5,0.4,0.5,0.45,0.5,0.5,0.5,0.55,0.5,0.6,0.5,0.65,0.5,0.7,0.5,0.75,0.5,0.8,0.5,0.85,0.5,0.9,0.5,0.95,0.5,1.0,0.5,0.0,0.55,0.05,0.55,0.1,0.55,0.15,0.55,0.2,0.55,0.25,0.55,0.3,0.55,0.35,0.55,0.4,0.55,0.45,0.55,0.5,0.55,0.55,0.55,0.6,0.55,0.65,0.55,0.7,0.55,0.75,0.55,0.8,0.55,0.85,0.55,0.9,0.55,0.95,0.55,1.0,0.55,0.0,0.6,0.05,0.6,0.1,0.6,0.15,0.6,0.2,0.6,0.25,0.6,0.3,0.6,0.35,0.6,0.4,0.6,0.45,0.6,0.5,0.6,0.55,0.6,0.6,0.6,0.65,0.6,0.7,0.6,0.75,0.6,0.8,0.6,0.85,0.6,0.9,0.6,0.95,0.6,1.0,0.6,0.0,0.65,0.05,0.65,0.1,0.65,0.15,0.65,0.2,0.65,0.25,0.65,0.3,0.65,0.35,0.65,0.4,0.65,0.45,0.65,0.5,0.65,0.55,0.65,0.6,0.65,0.65,0.65,0.7,0.65,0.75,0.65,0.8,0.65,0.85,0.65,0.9,0.65,0.95,0.65,1.0,0.65,0.0,0.7,0.05,0.7,0.1,0.7,0.15,0.7,0.2,0.7,0.25,0.7,0.3,0.7,0.35,0.7,0.4,0.7,0.45,0.7,0.5,0.7,0.55,0.7,0.6,0.7,0.65,0.7,0.7,0.7,0.75,0.7,0.8,0.7,0.85,0.7,0.9,0.7,0.95,0.7,1.0,0.7,0.0,0.75,0.05,0.75,0.1,0.75,0.15,0.75,0.2,0.75,0.25,0.75,0.3,0.75,0.35,0.75,0.4,0.75,0.45,0.75,0.5,0.75,0.55,0.75,0.6,0.75,0.65,0.75,0.7,0.75,0.75,0.75,0.8,0.75,0.85,0.75,0.9,0.75,0.95,0.75,1.0,0.75,0.0,0.8,0.05,0.8,0.1,0.8,0.15,0.8,0.2,0.8,0.25,0.8,0.3,0.8,0.35,0.8,0.4,0.8,0.45,0.8,0.5,0.8,0.55,0.8,0.6,0.8,0.65,0.8,0.7,0.8,0.75,0.8,0.8,0.8,0.85,0.8,0.9,0.8,0.95,0.8,1.0,0.8,0.0,0.85,0.05,0.85,0.1,0.85,0.15,0.85,0.2,0.85,0.25,0.85,0.3,0.85,0.35,0.85,0.4,0.85,0.45,0.85,0.5,0.85,0.55,0.85,0.6,0.85,0.65,0.85,0.7,0.85,0.75,0.85,0.8,0.85,0.85,0.85,0.9,0.85,0.95,0.85,1.0,0.85,0.0,0.9,0.05,0.9,0.1,0.9,0.15,0.9,0.2,0.9,0.25,0.9,0.3,0.9,0.35,0.9,0.4,0.9,0.45,0.9,0.5,0.9,0.55,0.9,0.6,0.9,0.65,0.9,0.7,0.9,0.75,0.9,0.8,0.9,0.85,0.9,0.9,0.9,0.95,0.9,1.0,0.9,0.0,0.95,0.05,0.95,0.1,0.95,0.15,0.95,0.2,0.95,0.25,0.95,0.3,0.95,0.35,0.95,0.4,0.95,0.45,0.95,0.5,0.95,0.55,0.95,0.6,0.95,0.65,0.95,0.7,0.95,0.75,0.95,0.8,0.95,0.85,0.95,0.9,0.95,0.95,0.95,1.0,0.95,0.025,0.0,0.075,0.0,0.125,0.0,0.175,0.0,0.225,0.0,0.275,0.0,0.325,0.0,0.375,0.0,0.425,0.0,0.475,0.0,0.525,0.0,0.575,0.0,0.625,0.0,0.675,0.0,0.725,0.0,0.775,0.0,0.825,0.0,0.875,0.0,0.925,0.0,0.975,0.0,0.025,1.0,0.075,1.0,0.125,1.0,0.175,1.0,0.225,1.0,0.275,1.0,0.325,1.0,0.375,1.0,0.425,1.0,0.475,1.0,0.525,1.0,0.575,1.0,0.625,1.0,0.675,1.0,0.725,1.0,0.775,1.0,0.825,1.0,0.875,1.0,0.925,1.0,0.975,1.0],"uvs2":null,"colors":null,"hasVertexAlpha":false,"matricesIndices":null,"matricesWeights":null,"matricesIndicesExtra":null,"matricesWeightsExtra":null,"indices":[0,1,2,2,1,3,1,4,3,3,4,5,4,6,5,5,6,7,6,8,7,7,8,9,8,10,9,9,10,11,10,12,11,11,12,13,12,14,13,13,14,15,14,16,15,15,16,17,16,18,17,17,18,19,18,20,19,19,20,21,20,22,21,21,22,23,22,24,23,23,24,25,24,26,25,25,26,27,26,28,27,27,28,29,28,30,29,29,30,31,30,32,31,31,32,33,32,34,33,33,34,35,34,36,35,35,36,37,36,38,37,37,38,39,38,40,39,39,40,41,2,3,42,42,3,43,3,5,43,43,5,44,5,7,44,44,7,45,7,9,45,45,9,46,9,11,46,46,11,47,11,13,47,47,13,48,13,15,48,48,15,49,15,17,49,49,17,50,17,19,50,50,19,51,19,21,51,51,21,52,21,23,52,52,23,53,23,25,53,53,25,54,25,27,54,54,27,55,27,29,55,55,29,56,29,31,56,56,31,57,31,33,57,57,33,58,33,35,58,58,35,59,35,37,59,59,37,60,37,39,60,60,39,61,39,41,61,61,41,62,42,43,63,63,43,64,43,44,64,64,44,65,44,45,65,65,45,66,45,46,66,66,46,67,46,47,67,67,47,68,47,48,68,68,48,69,48,49,69,69,49,70,49,50,70,70,50,71,50,51,71,71,51,72,51,52,72,72,52,73,52,53,73,73,53,74,53,54,74,74,54,75,54,55,75,75,55,76,55,56,76,76,56,77,56,57,77,77,57,78,57,58,78,78,58,79,58,59,79,79,59,80,59,60,80,80,60,81,60,61,81,81,61,82,61,62,82,82,62,83,63,64,84,84,64,85,64,65,85,85,65,86,65,66,86,86,66,87,66,67,87,87,67,88,67,68,88,88,68,89,68,69,89,89,69,90,69,70,90,90,70,91,70,71,91,91,71,92,71,72,92,92,72,93,72,73,93,93,73,94,73,74,94,94,74,95,74,75,95,95,75,96,75,76,96,96,76,97,76,77,97,97,77,98,77,78,98,98,78,99,78,79,99,99,79,100,79,80,100,100,80,101,80,81,101,101,81,102,81,82,102,102,82,103,82,83,103,103,83,104,84,85,105,105,85,106,85,86,106,106,86,107,86,87,107,107,87,108,87,88,108,108,88,109,88,89,109,109,89,110,89,90,110,110,90,111,90,91,111,111,91,112,91,92,112,112,92,113,92,93,113,113,93,114,93,94,114,114,94,115,94,95,115,115,95,116,95,96,116,116,96,117,96,97,117,117,97,118,97,98,118,118,98,119,98,99,119,119,99,120,99,100,120,120,100,121,100,101,121,121,101,122,101,102,122,122,102,123,102,103,123,123,103,124,103,104,124,124,104,125,105,106,126,126,106,127,106,107,127,127,107,128,107,108,128,128,108,129,108,109,129,129,109,130,109,110,130,130,110,131,110,111,131,131,111,132,111,112,132,132,112,133,112,113,133,133,113,134,113,114,134,134,114,135,114,115,135,135,115,136,115,116,136,136,116,137,116,117,137,137,117,138,117,118,138,138,118,139,118,119,139,139,119,140,119,120,140,140,120,141,120,121,141,141,121,142,121,122,142,142,122,143,122,123,143,143,123,144,123,124,144,144,124,145,124,125,145,145,125,146,126,127,147,147,127,148,127,128,148,148,128,149,128,129,149,149,129,150,129,130,150,150,130,151,130,131,151,151,131,152,131,132,152,152,132,153,132,133,153,153,133,154,133,134,154,154,134,155,134,135,155,155,135,156,135,136,156,156,136,157,136,137,157,157,137,158,137,138,158,158,138,159,138,139,159,159,139,160,139,140,160,160,140,161,140,141,161,161,141,162,141,142,162,162,142,163,142,143,163,163,143,164,143,144,164,164,144,165,144,145,165,165,145,166,145,146,166,166,146,167,147,148,168,168,148,169,148,149,169,169,149,170,149,150,170,170,150,171,150,151,171,171,151,172,151,152,172,172,152,173,152,153,173,173,153,174,153,154,174,174,154,175,154,155,175,175,155,176,155,156,176,176,156,177,156,157,177,177,157,178,157,158,178,178,158,179,158,159,179,179,159,180,159,160,180,180,160,181,160,161,181,181,161,182,161,162,182,182,162,183,162,163,183,183,163,184,163,164,184,184,164,185,164,165,185,185,165,186,165,166,186,186,166,187,166,167,187,187,167,188,168,169,189,189,169,190,169,170,190,190,170,191,170,171,191,191,171,192,171,172,192,192,172,193,172,173,193,193,173,194,173,174,194,194,174,195,174,175,195,195,175,196,175,176,196,196,176,197,176,177,197,197,177,198,177,178,198,198,178,199,178,179,199,199,179,200,179,180,200,200,180,201,180,181,201,201,181,202,181,182,202,202,182,203,182,183,203,203,183,204,183,184,204,204,184,205,184,185,205,205,185,206,185,186,206,206,186,207,186,187,207,207,187,208,187,188,208,208,188,209,189,190,210,210,190,211,190,191,211,211,191,212,191,192,212,212,192,213,192,193,213,213,193,214,193,194,214,214,194,215,194,195,215,215,195,216,195,196,216,216,196,217,196,197,217,217,197,218,197,198,218,218,198,219,198,199,219,219,199,220,199,200,220,220,200,221,200,201,221,221,201,222,201,202,222,222,202,223,202,203,223,223,203,224,203,204,224,224,204,225,204,205,225,225,205,226,205,206,226,226,206,227,206,207,227,227,207,228,207,208,228,228,208,229,208,209,229,229,209,230,210,211,231,231,211,232,211,212,232,232,212,233,212,213,233,233,213,234,213,214,234,234,214,235,214,215,235,235,215,236,215,216,236,236,216,237,216,217,237,237,217,238,217,218,238,238,218,239,218,219,239,239,219,240,219,220,240,240,220,241,220,221,241,241,221,242,221,222,242,242,222,243,222,223,243,243,223,244,223,224,244,244,224,245,224,225,245,245,225,246,225,226,246,246,226,247,226,227,247,247,227,248,227,228,248,248,228,249,228,229,249,249,229,250,229,230,250,250,230,251,231,232,252,252,232,253,232,233,253,253,233,254,233,234,254,254,234,255,234,235,255,255,235,256,235,236,256,256,236,257,236,237,257,257,237,258,237,238,258,258,238,259,238,239,259,259,239,260,239,240,260,260,240,261,240,241,261,261,241,262,241,242,262,262,242,263,242,243,263,263,243,264,243,244,264,264,244,265,244,245,265,265,245,266,245,246,266,266,246,267,246,247,267,267,247,268,247,248,268,268,248,269,248,249,269,269,249,270,249,250,270,270,250,271,250,251,271,271,251,272,252,253,273,273,253,274,253,254,274,274,254,275,254,255,275,275,255,276,255,256,276,276,256,277,256,257,277,277,257,278,257,258,278,278,258,279,258,259,279,279,259,280,259,260,280,280,260,281,260,261,281,281,261,282,261,262,282,282,262,283,262,263,283,283,263,284,263,264,284,284,264,285,264,265,285,285,265,286,265,266,286,286,266,287,266,267,287,287,267,288,267,268,288,288,268,289,268,269,289,289,269,290,269,270,290,290,270,291,270,271,291,291,271,292,271,272,292,292,272,293,273,274,294,294,274,295,274,275,295,295,275,296,275,276,296,296,276,297,276,277,297,297,277,298,277,278,298,298,278,299,278,279,299,299,279,300,279,280,300,300,280,301,280,281,301,301,281,302,281,282,302,302,282,303,282,283,303,303,283,304,283,284,304,304,284,305,284,285,305,305,285,306,285,286,306,306,286,307,286,287,307,307,287,308,287,288,308,308,288,309,288,289,309,309,289,310,289,290,310,310,290,311,290,291,311,311,291,312,291,292,312,312,292,313,292,293,313,313,293,314,294,295,315,315,295,316,295,296,316,316,296,317,296,297,317,317,297,318,297,298,318,318,298,319,298,299,319,319,299,320,299,300,320,320,300,321,300,301,321,321,301,322,301,302,322,322,302,323,302,303,323,323,303,324,303,304,324,324,304,325,304,305,325,325,305,326,305,306,326,326,306,327,306,307,327,327,307,328,307,308,328,328,308,329,308,309,329,329,309,330,309,310,330,330,310,331,310,311,331,331,311,332,311,312,332,332,312,333,312,313,333,333,313,334,313,314,334,334,314,335,315,316,336,336,316,337,316,317,337,337,317,338,317,318,338,338,318,339,318,319,339,339,319,340,319,320,340,340,320,341,320,321,341,341,321,342,321,322,342,342,322,343,322,323,343,343,323,344,323,324,344,344,324,345,324,325,345,345,325,346,325,326,346,346,326,347,326,327,347,347,327,348,327,328,348,348,328,349,328,329,349,349,329,350,329,330,350,350,330,351,330,331,351,351,331,352,331,332,352,352,332,353,332,333,353,353,333,354,333,334,354,354,334,355,334,335,355,355,335,356,336,337,357,357,337,358,337,338,358,358,338,359,338,339,359,359,339,360,339,340,360,360,340,361,340,341,361,361,341,362,341,342,362,362,342,363,342,343,363,363,343,364,343,344,364,364,344,365,344,345,365,365,345,366,345,346,366,366,346,367,346,347,367,367,347,368,347,348,368,368,348,369,348,349,369,369,349,370,349,350,370,370,350,371,350,351,371,371,351,372,351,352,372,372,352,373,352,353,373,373,353,374,353,354,374,374,354,375,354,355,375,375,355,376,355,356,376,376,356,377,357,358,378,378,358,379,358,359,379,379,359,380,359,360,380,380,360,381,360,361,381,381,361,382,361,362,382,382,362,383,362,363,383,383,363,384,363,364,384,384,364,385,364,365,385,385,365,386,365,366,386,386,366,387,366,367,387,387,367,388,367,368,388,388,368,389,368,369,389,389,369,390,369,370,390,390,370,391,370,371,391,391,371,392,371,372,392,392,372,393,372,373,393,393,373,394,373,374,394,394,374,395,374,375,395,395,375,396,375,376,396,396,376,397,376,377,397,397,377,398,1,0,399,4,1,400,6,4,401,8,6,402,10,8,403,12,10,404,14,12,405,16,14,406,18,16,407,20,18,408,22,20,409,24,22,410,26,24,411,28,26,412,30,28,413,32,30,414,34,32,415,36,34,416,38,36,417,40,38,418,378,379,419,379,380,420,380,381,421,381,382,422,382,383,423,383,384,424,384,385,425,385,386,426,386,387,427,387,388,428,388,389,429,389,390,430,390,391,431,391,392,432,392,393,433,393,394,434,394,395,435,395,396,436,396,397,437,397,398,438],"receiveShadows":false,"infiniteDistance":false,"billboardMode":0,"visibility":1.0,"subMeshes":[{"materialIndex":0,"verticesStart":0,"verticesCount":439,"indexStart":0,"indexCount":2280}],"instances":null,"skeletonId":-1,"numBoneInfluencers":4,"applyFog":false,"lodMeshIds":null,"lodDistances":null,"lodCoverages":null,"rotation":null,"scaling":[1.0,1.0,1.0],"rotationQuaternion":[0.0,0.0,0.0,1.0],"actions":null,"checkCollisions":false,"pickable":true,"showBoundingBox":false,"showSubMeshesBoundingBox":false,"alphaIndex":0,"physicsImpostor":0,"physicsMass":0.0,"physicsFriction":0.0,"physicsRestitution":0.0,"name":"pSphere2","id":"AAE56DAE-40BF-882A-5CE8-0AB477E46CDB","parentId":null,"position":[3.0,0.0,0.0],"animations":[],"autoAnimate":true,"autoAnimateFrom":1,"autoAnimateTo":200,"autoAnimateLoop":true,"metadata":{}},{"materialId":"79CDF1A6-4409-889B-46A9-43A586C10D94","isEnabled":true,"isVisible":true,"positions":[0.1488,-0.9877,0.0483,0.1266,-0.9877,0.0919,0.2939,-0.9511,0.0955,0.25,-0.9511,0.1816,0.0919,-0.9877,0.1266,0.1816,-0.9511,0.25,0.0483,-0.9877,0.1488,0.0955,-0.9511,0.2939,0.0,-0.9877,0.1564,0.0,-0.9511,0.309,-0.0483,-0.9877,0.1488,-0.0955,-0.9511,0.2939,-0.0919,-0.9877,0.1266,-0.1816,-0.9511,0.25,-0.1266,-0.9877,0.0919,-0.25,-0.9511,0.1816,-0.1488,-0.9877,0.0483,-0.2939,-0.9511,0.0955,-0.1564,-0.9877,0.0,-0.309,-0.9511,0.0,-0.1488,-0.9877,-0.0483,-0.2939,-0.9511,-0.0955,-0.1266,-0.9877,-0.0919,-0.25,-0.9511,-0.1816,-0.0919,-0.9877,-0.1266,-0.1816,-0.9511,-0.25,-0.0483,-0.9877,-0.1488,-0.0955,-0.9511,-0.2939,0.0,-0.9877,-0.1564,0.0,-0.9511,-0.309,0.0483,-0.9877,-0.1488,0.0955,-0.9511,-0.2939,0.0919,-0.9877,-0.1266,0.1816,-0.9511,-0.25,0.1266,-0.9877,-0.0919,0.25,-0.9511,-0.1816,0.1488,-0.9877,-0.0483,0.2939,-0.9511,-0.0955,0.1564,-0.9877,0.0,0.309,-0.9511,0.0,0.1488,-0.9877,0.0483,0.2939,-0.9511,0.0955,0.4318,-0.891,0.1403,0.3673,-0.891,0.2668,0.2668,-0.891,0.3673,0.1403,-0.891,0.4318,0.0,-0.891,0.454,-0.1403,-0.891,0.4318,-0.2668,-0.891,0.3673,-0.3673,-0.891,0.2668,-0.4318,-0.891,0.1403,-0.454,-0.891,0.0,-0.4318,-0.891,-0.1403,-0.3673,-0.891,-0.2668,-0.2668,-0.891,-0.3673,-0.1403,-0.891,-0.4318,0.0,-0.891,-0.454,0.1403,-0.891,-0.4318,0.2668,-0.891,-0.3673,0.3673,-0.891,-0.2668,0.4318,-0.891,-0.1403,0.454,-0.891,0.0,0.4318,-0.891,0.1403,0.559,-0.809,0.1816,0.4755,-0.809,0.3455,0.3455,-0.809,0.4755,0.1816,-0.809,0.559,0.0,-0.809,0.5878,-0.1816,-0.809,0.559,-0.3455,-0.809,0.4755,-0.4755,-0.809,0.3455,-0.559,-0.809,0.1816,-0.5878,-0.809,0.0,-0.559,-0.809,-0.1816,-0.4755,-0.809,-0.3455,-0.3455,-0.809,-0.4755,-0.1816,-0.809,-0.559,0.0,-0.809,-0.5878,0.1816,-0.809,-0.559,0.3455,-0.809,-0.4755,0.4755,-0.809,-0.3455,0.559,-0.809,-0.1816,0.5878,-0.809,0.0,0.559,-0.809,0.1816,0.6725,-0.7071,0.2185,0.5721,-0.7071,0.4156,0.4156,-0.7071,0.5721,0.2185,-0.7071,0.6725,0.0,-0.7071,0.7071,-0.2185,-0.7071,0.6725,-0.4156,-0.7071,0.5721,-0.5721,-0.7071,0.4156,-0.6725,-0.7071,0.2185,-0.7071,-0.7071,0.0,-0.6725,-0.7071,-0.2185,-0.5721,-0.7071,-0.4156,-0.4156,-0.7071,-0.5721,-0.2185,-0.7071,-0.6725,0.0,-0.7071,-0.7071,0.2185,-0.7071,-0.6725,0.4156,-0.7071,-0.5721,0.5721,-0.7071,-0.4156,0.6725,-0.7071,-0.2185,0.7071,-0.7071,0.0,0.6725,-0.7071,0.2185,0.7694,-0.5878,0.25,0.6545,-0.5878,0.4755,0.4755,-0.5878,0.6545,0.25,-0.5878,0.7694,0.0,-0.5878,0.809,-0.25,-0.5878,0.7694,-0.4755,-0.5878,0.6545,-0.6545,-0.5878,0.4755,-0.7694,-0.5878,0.25,-0.809,-0.5878,0.0,-0.7694,-0.5878,-0.25,-0.6545,-0.5878,-0.4755,-0.4755,-0.5878,-0.6545,-0.25,-0.5878,-0.7694,0.0,-0.5878,-0.809,0.25,-0.5878,-0.7694,0.4755,-0.5878,-0.6545,0.6545,-0.5878,-0.4755,0.7694,-0.5878,-0.25,0.809,-0.5878,0.0,0.7694,-0.5878,0.25,0.8474,-0.454,0.2753,0.7208,-0.454,0.5237,0.5237,-0.454,0.7208,0.2753,-0.454,0.8474,0.0,-0.454,0.891,-0.2753,-0.454,0.8474,-0.5237,-0.454,0.7208,-0.7208,-0.454,0.5237,-0.8474,-0.454,0.2753,-0.891,-0.454,0.0,-0.8474,-0.454,-0.2753,-0.7208,-0.454,-0.5237,-0.5237,-0.454,-0.7208,-0.2753,-0.454,-0.8474,0.0,-0.454,-0.891,0.2753,-0.454,-0.8474,0.5237,-0.454,-0.7208,0.7208,-0.454,-0.5237,0.8474,-0.454,-0.2753,0.891,-0.454,0.0,0.8474,-0.454,0.2753,0.9045,-0.309,0.2939,0.7694,-0.309,0.559,0.559,-0.309,0.7694,0.2939,-0.309,0.9045,0.0,-0.309,0.9511,-0.2939,-0.309,0.9045,-0.559,-0.309,0.7694,-0.7694,-0.309,0.559,-0.9045,-0.309,0.2939,-0.9511,-0.309,0.0,-0.9045,-0.309,-0.2939,-0.7694,-0.309,-0.559,-0.559,-0.309,-0.7694,-0.2939,-0.309,-0.9045,0.0,-0.309,-0.9511,0.2939,-0.309,-0.9045,0.559,-0.309,-0.7694,0.7694,-0.309,-0.559,0.9045,-0.309,-0.2939,0.9511,-0.309,0.0,0.9045,-0.309,0.2939,0.9393,-0.1564,0.3052,0.7991,-0.1564,0.5805,0.5805,-0.1564,0.7991,0.3052,-0.1564,0.9393,0.0,-0.1564,0.9877,-0.3052,-0.1564,0.9393,-0.5805,-0.1564,0.7991,-0.7991,-0.1564,0.5805,-0.9393,-0.1564,0.3052,-0.9877,-0.1564,0.0,-0.9393,-0.1564,-0.3052,-0.7991,-0.1564,-0.5805,-0.5805,-0.1564,-0.7991,-0.3052,-0.1564,-0.9393,0.0,-0.1564,-0.9877,0.3052,-0.1564,-0.9393,0.5805,-0.1564,-0.7991,0.7991,-0.1564,-0.5805,0.9393,-0.1564,-0.3052,0.9877,-0.1564,0.0,0.9393,-0.1564,0.3052,0.9511,0.0,0.309,0.809,0.0,0.5878,0.5878,0.0,0.809,0.309,0.0,0.9511,0.0,0.0,1.0,-0.309,0.0,0.9511,-0.5878,0.0,0.809,-0.809,0.0,0.5878,-0.9511,0.0,0.309,-1.0,0.0,0.0,-0.9511,0.0,-0.309,-0.809,0.0,-0.5878,-0.5878,0.0,-0.809,-0.309,0.0,-0.9511,0.0,0.0,-1.0,0.309,0.0,-0.9511,0.5878,0.0,-0.809,0.809,0.0,-0.5878,0.9511,0.0,-0.309,1.0,0.0,0.0,0.9511,0.0,0.309,0.9393,0.1564,0.3052,0.7991,0.1564,0.5805,0.5805,0.1564,0.7991,0.3052,0.1564,0.9393,0.0,0.1564,0.9877,-0.3052,0.1564,0.9393,-0.5805,0.1564,0.7991,-0.7991,0.1564,0.5805,-0.9393,0.1564,0.3052,-0.9877,0.1564,0.0,-0.9393,0.1564,-0.3052,-0.7991,0.1564,-0.5805,-0.5805,0.1564,-0.7991,-0.3052,0.1564,-0.9393,0.0,0.1564,-0.9877,0.3052,0.1564,-0.9393,0.5805,0.1564,-0.7991,0.7991,0.1564,-0.5805,0.9393,0.1564,-0.3052,0.9877,0.1564,0.0,0.9393,0.1564,0.3052,0.9045,0.309,0.2939,0.7694,0.309,0.559,0.559,0.309,0.7694,0.2939,0.309,0.9045,0.0,0.309,0.9511,-0.2939,0.309,0.9045,-0.559,0.309,0.7694,-0.7694,0.309,0.559,-0.9045,0.309,0.2939,-0.9511,0.309,0.0,-0.9045,0.309,-0.2939,-0.7694,0.309,-0.559,-0.559,0.309,-0.7694,-0.2939,0.309,-0.9045,0.0,0.309,-0.9511,0.2939,0.309,-0.9045,0.559,0.309,-0.7694,0.7694,0.309,-0.559,0.9045,0.309,-0.2939,0.9511,0.309,0.0,0.9045,0.309,0.2939,0.8474,0.454,0.2753,0.7208,0.454,0.5237,0.5237,0.454,0.7208,0.2753,0.454,0.8474,0.0,0.454,0.891,-0.2753,0.454,0.8474,-0.5237,0.454,0.7208,-0.7208,0.454,0.5237,-0.8474,0.454,0.2753,-0.891,0.454,0.0,-0.8474,0.454,-0.2753,-0.7208,0.454,-0.5237,-0.5237,0.454,-0.7208,-0.2753,0.454,-0.8474,0.0,0.454,-0.891,0.2753,0.454,-0.8474,0.5237,0.454,-0.7208,0.7208,0.454,-0.5237,0.8474,0.454,-0.2753,0.891,0.454,0.0,0.8474,0.454,0.2753,0.7694,0.5878,0.25,0.6545,0.5878,0.4755,0.4755,0.5878,0.6545,0.25,0.5878,0.7694,0.0,0.5878,0.809,-0.25,0.5878,0.7694,-0.4755,0.5878,0.6545,-0.6545,0.5878,0.4755,-0.7694,0.5878,0.25,-0.809,0.5878,0.0,-0.7694,0.5878,-0.25,-0.6545,0.5878,-0.4755,-0.4755,0.5878,-0.6545,-0.25,0.5878,-0.7694,0.0,0.5878,-0.809,0.25,0.5878,-0.7694,0.4755,0.5878,-0.6545,0.6545,0.5878,-0.4755,0.7694,0.5878,-0.25,0.809,0.5878,0.0,0.7694,0.5878,0.25,0.6725,0.7071,0.2185,0.5721,0.7071,0.4156,0.4156,0.7071,0.5721,0.2185,0.7071,0.6725,0.0,0.7071,0.7071,-0.2185,0.7071,0.6725,-0.4156,0.7071,0.5721,-0.5721,0.7071,0.4156,-0.6725,0.7071,0.2185,-0.7071,0.7071,0.0,-0.6725,0.7071,-0.2185,-0.5721,0.7071,-0.4156,-0.4156,0.7071,-0.5721,-0.2185,0.7071,-0.6725,0.0,0.7071,-0.7071,0.2185,0.7071,-0.6725,0.4156,0.7071,-0.5721,0.5721,0.7071,-0.4156,0.6725,0.7071,-0.2185,0.7071,0.7071,0.0,0.6725,0.7071,0.2185,0.559,0.809,0.1816,0.4755,0.809,0.3455,0.3455,0.809,0.4755,0.1816,0.809,0.559,0.0,0.809,0.5878,-0.1816,0.809,0.559,-0.3455,0.809,0.4755,-0.4755,0.809,0.3455,-0.559,0.809,0.1816,-0.5878,0.809,0.0,-0.559,0.809,-0.1816,-0.4755,0.809,-0.3455,-0.3455,0.809,-0.4755,-0.1816,0.809,-0.559,0.0,0.809,-0.5878,0.1816,0.809,-0.559,0.3455,0.809,-0.4755,0.4755,0.809,-0.3455,0.559,0.809,-0.1816,0.5878,0.809,0.0,0.559,0.809,0.1816,0.4318,0.891,0.1403,0.3673,0.891,0.2668,0.2668,0.891,0.3673,0.1403,0.891,0.4318,0.0,0.891,0.454,-0.1403,0.891,0.4318,-0.2668,0.891,0.3673,-0.3673,0.891,0.2668,-0.4318,0.891,0.1403,-0.454,0.891,0.0,-0.4318,0.891,-0.1403,-0.3673,0.891,-0.2668,-0.2668,0.891,-0.3673,-0.1403,0.891,-0.4318,0.0,0.891,-0.454,0.1403,0.891,-0.4318,0.2668,0.891,-0.3673,0.3673,0.891,-0.2668,0.4318,0.891,-0.1403,0.454,0.891,0.0,0.4318,0.891,0.1403,0.2939,0.9511,0.0955,0.25,0.9511,0.1816,0.1816,0.9511,0.25,0.0955,0.9511,0.2939,0.0,0.9511,0.309,-0.0955,0.9511,0.2939,-0.1816,0.9511,0.25,-0.25,0.9511,0.1816,-0.2939,0.9511,0.0955,-0.309,0.9511,0.0,-0.2939,0.9511,-0.0955,-0.25,0.9511,-0.1816,-0.1816,0.9511,-0.25,-0.0955,0.9511,-0.2939,0.0,0.9511,-0.309,0.0955,0.9511,-0.2939,0.1816,0.9511,-0.25,0.25,0.9511,-0.1816,0.2939,0.9511,-0.0955,0.309,0.9511,0.0,0.2939,0.9511,0.0955,0.1488,0.9877,0.0483,0.1266,0.9877,0.0919,0.0919,0.9877,0.1266,0.0483,0.9877,0.1488,0.0,0.9877,0.1564,-0.0483,0.9877,0.1488,-0.0919,0.9877,0.1266,-0.1266,0.9877,0.0919,-0.1488,0.9877,0.0483,-0.1564,0.9877,0.0,-0.1488,0.9877,-0.0483,-0.1266,0.9877,-0.0919,-0.0919,0.9877,-0.1266,-0.0483,0.9877,-0.1488,0.0,0.9877,-0.1564,0.0483,0.9877,-0.1488,0.0919,0.9877,-0.1266,0.1266,0.9877,-0.0919,0.1488,0.9877,-0.0483,0.1564,0.9877,0.0,0.1488,0.9877,0.0483,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0],"normals":[0.1906,-0.9797,0.0619,0.1621,-0.9797,0.1178,0.3173,-0.9427,0.1031,0.2699,-0.9427,0.1961,0.1178,-0.9797,0.1621,0.1961,-0.9427,0.2699,0.0619,-0.9797,0.1906,0.1031,-0.9427,0.3173,0.0,-0.9797,0.2004,0.0,-0.9427,0.3336,-0.0619,-0.9797,0.1906,-0.1031,-0.9427,0.3173,-0.1178,-0.9797,0.1621,-0.1961,-0.9427,0.2699,-0.1621,-0.9797,0.1178,-0.2699,-0.9427,0.1961,-0.1906,-0.9797,0.0619,-0.3173,-0.9427,0.1031,-0.2004,-0.9797,0.0,-0.3336,-0.9427,0.0,-0.1906,-0.9797,-0.0619,-0.3173,-0.9427,-0.1031,-0.1621,-0.9797,-0.1178,-0.2699,-0.9427,-0.1961,-0.1178,-0.9797,-0.1621,-0.1961,-0.9427,-0.2699,-0.0619,-0.9797,-0.1906,-0.1031,-0.9427,-0.3173,0.0,-0.9797,-0.2004,0.0,-0.9427,-0.3336,0.0619,-0.9797,-0.1906,0.1031,-0.9427,-0.3173,0.1178,-0.9797,-0.1621,0.1961,-0.9427,-0.2699,0.1621,-0.9797,-0.1178,0.2699,-0.9427,-0.1961,0.1906,-0.9797,-0.0619,0.3173,-0.9427,-0.1031,0.2004,-0.9797,0.0,0.3336,-0.9427,0.0,0.1906,-0.9797,0.0619,0.3173,-0.9427,0.1031,0.4477,-0.8823,0.1455,0.3808,-0.8823,0.2767,0.2767,-0.8823,0.3808,0.1455,-0.8823,0.4477,0.0,-0.8823,0.4708,-0.1455,-0.8823,0.4477,-0.2767,-0.8823,0.3808,-0.3808,-0.8823,0.2767,-0.4477,-0.8823,0.1455,-0.4708,-0.8823,0.0,-0.4477,-0.8823,-0.1455,-0.3808,-0.8823,-0.2767,-0.2767,-0.8823,-0.3808,-0.1455,-0.8823,-0.4477,0.0,-0.8823,-0.4708,0.1455,-0.8823,-0.4477,0.2767,-0.8823,-0.3808,0.3808,-0.8823,-0.2767,0.4477,-0.8823,-0.1455,0.4708,-0.8823,0.0,0.4477,-0.8823,0.1455,0.5703,-0.8003,0.1853,0.4851,-0.8003,0.3525,0.3525,-0.8003,0.4851,0.1853,-0.8003,0.5703,0.0,-0.8003,0.5997,-0.1853,-0.8003,0.5703,-0.3525,-0.8003,0.4851,-0.4851,-0.8003,0.3525,-0.5703,-0.8003,0.1853,-0.5997,-0.8003,0.0,-0.5703,-0.8003,-0.1853,-0.4851,-0.8003,-0.3525,-0.3525,-0.8003,-0.4851,-0.1853,-0.8003,-0.5703,0.0,-0.8003,-0.5997,0.1853,-0.8003,-0.5703,0.3525,-0.8003,-0.4851,0.4851,-0.8003,-0.3525,0.5703,-0.8003,-0.1853,0.5997,-0.8003,0.0,0.5703,-0.8003,0.1853,0.6803,-0.6988,0.221,0.5787,-0.6988,0.4205,0.4205,-0.6988,0.5787,0.221,-0.6988,0.6803,0.0,-0.6988,0.7153,-0.221,-0.6988,0.6803,-0.4205,-0.6988,0.5787,-0.5787,-0.6988,0.4205,-0.6803,-0.6988,0.221,-0.7153,-0.6988,0.0,-0.6803,-0.6988,-0.221,-0.5787,-0.6988,-0.4205,-0.4205,-0.6988,-0.5787,-0.221,-0.6988,-0.6803,0.0,-0.6988,-0.7153,0.221,-0.6988,-0.6803,0.4205,-0.6988,-0.5787,0.5787,-0.6988,-0.4205,0.6803,-0.6988,-0.221,0.7153,-0.6988,0.0,0.6803,-0.6988,0.221,0.7745,-0.5804,0.2516,0.6588,-0.5804,0.4787,0.4787,-0.5804,0.6588,0.2516,-0.5804,0.7745,0.0,-0.5804,0.8143,-0.2516,-0.5804,0.7745,-0.4787,-0.5804,0.6588,-0.6588,-0.5804,0.4787,-0.7745,-0.5804,0.2516,-0.8143,-0.5804,0.0,-0.7745,-0.5804,-0.2516,-0.6588,-0.5804,-0.4787,-0.4787,-0.5804,-0.6588,-0.2516,-0.5804,-0.7745,0.0,-0.5804,-0.8143,0.2516,-0.5804,-0.7745,0.4787,-0.5804,-0.6588,0.6588,-0.5804,-0.4787,0.7745,-0.5804,-0.2516,0.8143,-0.5804,0.0,0.7745,-0.5804,0.2516,0.8503,-0.448,0.2763,0.7233,-0.448,0.5255,0.5255,-0.448,0.7233,0.2763,-0.448,0.8503,0.0,-0.448,0.894,-0.2763,-0.448,0.8503,-0.5255,-0.448,0.7233,-0.7233,-0.448,0.5255,-0.8503,-0.448,0.2763,-0.894,-0.448,0.0,-0.8503,-0.448,-0.2763,-0.7233,-0.448,-0.5255,-0.5255,-0.448,-0.7233,-0.2763,-0.448,-0.8503,0.0,-0.448,-0.894,0.2763,-0.448,-0.8503,0.5255,-0.448,-0.7233,0.7233,-0.448,-0.5255,0.8503,-0.448,-0.2763,0.894,-0.448,0.0,0.8503,-0.448,0.2763,0.9058,-0.3048,0.2943,0.7705,-0.3048,0.5598,0.5598,-0.3048,0.7705,0.2943,-0.3048,0.9058,0.0,-0.3048,0.9524,-0.2943,-0.3048,0.9058,-0.5598,-0.3048,0.7705,-0.7705,-0.3048,0.5598,-0.9058,-0.3048,0.2943,-0.9524,-0.3048,0.0,-0.9058,-0.3048,-0.2943,-0.7705,-0.3048,-0.5598,-0.5598,-0.3048,-0.7705,-0.2943,-0.3048,-0.9058,0.0,-0.3048,-0.9524,0.2943,-0.3048,-0.9058,0.5598,-0.3048,-0.7705,0.7705,-0.3048,-0.5598,0.9058,-0.3048,-0.2943,0.9524,-0.3048,0.0,0.9058,-0.3048,0.2943,0.9397,-0.1542,0.3053,0.7993,-0.1542,0.5808,0.5808,-0.1542,0.7993,0.3053,-0.1542,0.9397,0.0,-0.1542,0.988,-0.3053,-0.1542,0.9397,-0.5808,-0.1542,0.7993,-0.7993,-0.1542,0.5808,-0.9397,-0.1542,0.3053,-0.988,-0.1542,0.0,-0.9397,-0.1542,-0.3053,-0.7993,-0.1542,-0.5808,-0.5808,-0.1542,-0.7993,-0.3053,-0.1542,-0.9397,0.0,-0.1542,-0.988,0.3053,-0.1542,-0.9397,0.5808,-0.1542,-0.7993,0.7993,-0.1542,-0.5808,0.9397,-0.1542,-0.3053,0.988,-0.1542,0.0,0.9397,-0.1542,0.3053,0.9511,0.0,0.309,0.809,0.0,0.5878,0.5878,0.0,0.809,0.309,0.0,0.9511,0.0,0.0,1.0,-0.309,0.0,0.9511,-0.5878,0.0,0.809,-0.809,0.0,0.5878,-0.9511,0.0,0.309,-1.0,0.0,0.0,-0.9511,0.0,-0.309,-0.809,0.0,-0.5878,-0.5878,0.0,-0.809,-0.309,0.0,-0.9511,0.0,0.0,-1.0,0.309,0.0,-0.9511,0.5878,0.0,-0.809,0.809,0.0,-0.5878,0.9511,0.0,-0.309,1.0,0.0,0.0,0.9511,0.0,0.309,0.9397,0.1542,0.3053,0.7993,0.1542,0.5808,0.5808,0.1542,0.7993,0.3053,0.1542,0.9397,0.0,0.1542,0.988,-0.3053,0.1542,0.9397,-0.5808,0.1542,0.7993,-0.7993,0.1542,0.5808,-0.9397,0.1542,0.3053,-0.988,0.1542,0.0,-0.9397,0.1542,-0.3053,-0.7993,0.1542,-0.5808,-0.5808,0.1542,-0.7993,-0.3053,0.1542,-0.9397,0.0,0.1542,-0.988,0.3053,0.1542,-0.9397,0.5808,0.1542,-0.7993,0.7993,0.1542,-0.5808,0.9397,0.1542,-0.3053,0.988,0.1542,0.0,0.9397,0.1542,0.3053,0.9058,0.3048,0.2943,0.7705,0.3048,0.5598,0.5598,0.3048,0.7705,0.2943,0.3048,0.9058,0.0,0.3048,0.9524,-0.2943,0.3048,0.9058,-0.5598,0.3048,0.7705,-0.7705,0.3048,0.5598,-0.9058,0.3048,0.2943,-0.9524,0.3048,0.0,-0.9058,0.3048,-0.2943,-0.7705,0.3048,-0.5598,-0.5598,0.3048,-0.7705,-0.2943,0.3048,-0.9058,0.0,0.3048,-0.9524,0.2943,0.3048,-0.9058,0.5598,0.3048,-0.7705,0.7705,0.3048,-0.5598,0.9058,0.3048,-0.2943,0.9524,0.3048,0.0,0.9058,0.3048,0.2943,0.8503,0.448,0.2763,0.7233,0.448,0.5255,0.5255,0.448,0.7233,0.2763,0.448,0.8503,0.0,0.448,0.894,-0.2763,0.448,0.8503,-0.5255,0.448,0.7233,-0.7233,0.448,0.5255,-0.8503,0.448,0.2763,-0.894,0.448,0.0,-0.8503,0.448,-0.2763,-0.7233,0.448,-0.5255,-0.5255,0.448,-0.7233,-0.2763,0.448,-0.8503,0.0,0.448,-0.894,0.2763,0.448,-0.8503,0.5255,0.448,-0.7233,0.7233,0.448,-0.5255,0.8503,0.448,-0.2763,0.894,0.448,0.0,0.8503,0.448,0.2763,0.7745,0.5804,0.2516,0.6588,0.5804,0.4787,0.4787,0.5804,0.6588,0.2516,0.5804,0.7745,0.0,0.5804,0.8143,-0.2516,0.5804,0.7745,-0.4787,0.5804,0.6588,-0.6588,0.5804,0.4787,-0.7745,0.5804,0.2516,-0.8143,0.5804,0.0,-0.7745,0.5804,-0.2516,-0.6588,0.5804,-0.4787,-0.4787,0.5804,-0.6588,-0.2516,0.5804,-0.7745,0.0,0.5804,-0.8143,0.2516,0.5804,-0.7745,0.4787,0.5804,-0.6588,0.6588,0.5804,-0.4787,0.7745,0.5804,-0.2516,0.8143,0.5804,0.0,0.7745,0.5804,0.2516,0.6803,0.6988,0.221,0.5787,0.6988,0.4205,0.4205,0.6988,0.5787,0.221,0.6988,0.6803,0.0,0.6988,0.7153,-0.221,0.6988,0.6803,-0.4205,0.6988,0.5787,-0.5787,0.6988,0.4205,-0.6803,0.6988,0.221,-0.7153,0.6988,0.0,-0.6803,0.6988,-0.221,-0.5787,0.6988,-0.4205,-0.4205,0.6988,-0.5787,-0.221,0.6988,-0.6803,0.0,0.6988,-0.7153,0.221,0.6988,-0.6803,0.4205,0.6988,-0.5787,0.5787,0.6988,-0.4205,0.6803,0.6988,-0.221,0.7153,0.6988,0.0,0.6803,0.6988,0.221,0.5703,0.8003,0.1853,0.4851,0.8003,0.3525,0.3525,0.8003,0.4851,0.1853,0.8003,0.5703,0.0,0.8003,0.5997,-0.1853,0.8003,0.5703,-0.3525,0.8003,0.4851,-0.4851,0.8003,0.3525,-0.5703,0.8003,0.1853,-0.5997,0.8003,0.0,-0.5703,0.8003,-0.1853,-0.4851,0.8003,-0.3525,-0.3525,0.8003,-0.4851,-0.1853,0.8003,-0.5703,0.0,0.8003,-0.5997,0.1853,0.8003,-0.5703,0.3525,0.8003,-0.4851,0.4851,0.8003,-0.3525,0.5703,0.8003,-0.1853,0.5997,0.8003,0.0,0.5703,0.8003,0.1853,0.4477,0.8823,0.1455,0.3808,0.8823,0.2767,0.2767,0.8823,0.3808,0.1455,0.8823,0.4477,0.0,0.8823,0.4708,-0.1455,0.8823,0.4477,-0.2767,0.8823,0.3808,-0.3808,0.8823,0.2767,-0.4477,0.8823,0.1455,-0.4708,0.8823,0.0,-0.4477,0.8823,-0.1455,-0.3808,0.8823,-0.2767,-0.2767,0.8823,-0.3808,-0.1455,0.8823,-0.4477,0.0,0.8823,-0.4708,0.1455,0.8823,-0.4477,0.2767,0.8823,-0.3808,0.3808,0.8823,-0.2767,0.4477,0.8823,-0.1455,0.4708,0.8823,0.0,0.4477,0.8823,0.1455,0.3173,0.9427,0.1031,0.2699,0.9427,0.1961,0.1961,0.9427,0.2699,0.1031,0.9427,0.3173,0.0,0.9427,0.3336,-0.1031,0.9427,0.3173,-0.1961,0.9427,0.2699,-0.2699,0.9427,0.1961,-0.3173,0.9427,0.1031,-0.3336,0.9427,0.0,-0.3173,0.9427,-0.1031,-0.2699,0.9427,-0.1961,-0.1961,0.9427,-0.2699,-0.1031,0.9427,-0.3173,0.0,0.9427,-0.3336,0.1031,0.9427,-0.3173,0.1961,0.9427,-0.2699,0.2699,0.9427,-0.1961,0.3173,0.9427,-0.1031,0.3336,0.9427,0.0,0.3173,0.9427,0.1031,0.1906,0.9797,0.0619,0.1621,0.9797,0.1178,0.1178,0.9797,0.1621,0.0619,0.9797,0.1906,0.0,0.9797,0.2004,-0.0619,0.9797,0.1906,-0.1178,0.9797,0.1621,-0.1621,0.9797,0.1178,-0.1906,0.9797,0.0619,-0.2004,0.9797,0.0,-0.1906,0.9797,-0.0619,-0.1621,0.9797,-0.1178,-0.1178,0.9797,-0.1621,-0.0619,0.9797,-0.1906,0.0,0.9797,-0.2004,0.0619,0.9797,-0.1906,0.1178,0.9797,-0.1621,0.1621,0.9797,-0.1178,0.1906,0.9797,-0.0619,0.2004,0.9797,0.0,0.1906,0.9797,0.0619,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0],"tangents":[-0.4482,-0.0307,0.8934,-1.0,-0.5629,0.0062,0.8265,-1.0,-0.438,-0.0493,0.8976,-1.0,-0.5878,0.0,0.809,-1.0,-0.7908,0.0062,0.6121,-1.0,-0.809,0.0,0.5878,-1.0,-0.9412,0.0062,0.3378,-1.0,-0.9511,0.0,0.309,-1.0,-0.9995,0.0062,0.0304,-1.0,-1.0,0.0,0.0,-1.0,-0.96,0.0062,-0.28,-1.0,-0.9511,0.0,-0.309,-1.0,-0.8265,0.0062,-0.5629,-1.0,-0.809,0.0,-0.5878,-1.0,-0.6121,0.0062,-0.7908,-1.0,-0.5878,0.0,-0.809,-1.0,-0.3378,0.0062,-0.9412,-1.0,-0.309,0.0,-0.9511,-1.0,-0.0304,0.0062,-0.9995,-1.0,0.0,0.0,-1.0,-1.0,0.28,0.0062,-0.96,-1.0,0.309,0.0,-0.9511,-1.0,0.5629,0.0062,-0.8265,-1.0,0.5878,0.0,-0.809,-1.0,0.7908,0.0062,-0.6121,-1.0,0.809,0.0,-0.5878,-1.0,0.9412,0.0062,-0.3378,-1.0,0.9511,0.0,-0.309,-1.0,0.9995,0.0062,-0.0304,-1.0,1.0,0.0,0.0,-1.0,0.96,0.0062,0.28,-1.0,0.9511,0.0,0.309,-1.0,0.8265,0.0062,0.5629,-1.0,0.809,0.0,0.5878,-1.0,0.6121,0.0062,0.7908,-1.0,0.5878,0.0,0.809,-1.0,0.3378,0.0062,0.9412,-1.0,0.309,0.0,0.9511,-1.0,0.0304,0.0062,0.9995,-1.0,0.0,0.0,1.0,-1.0,-0.1625,0.0307,0.9862,-1.0,-0.1732,0.0493,0.9836,-1.0,-0.4222,-0.0651,0.9042,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.1899,0.0651,0.9796,-1.0,-0.4023,-0.0754,0.9124,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.2109,0.0754,0.9746,-1.0,-0.3802,-0.0787,0.9215,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.234,0.0787,0.969,-1.0,-0.3582,-0.0745,0.9306,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.2572,0.0745,0.9635,-1.0,-0.3384,-0.0633,0.9389,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.2781,0.0633,0.9585,-1.0,-0.3226,-0.0459,0.9454,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.2947,0.0459,0.9545,-1.0,-0.3125,-0.0241,0.9496,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.3053,0.0241,0.9519,-1.0,-0.309,0.0,0.9511,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.309,0.0,0.9511,-1.0,-0.3125,0.0241,0.9496,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.3053,-0.0241,0.9519,-1.0,-0.3226,0.0459,0.9454,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.2947,-0.0459,0.9545,-1.0,-0.3384,0.0633,0.9389,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.2781,-0.0633,0.9585,-1.0,-0.3582,0.0745,0.9306,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.2572,-0.0745,0.9635,-1.0,-0.3802,0.0787,0.9215,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.234,-0.0787,0.969,-1.0,-0.4023,0.0754,0.9124,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.2109,-0.0754,0.9746,-1.0,-0.4222,0.0651,0.9042,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.1899,-0.0651,0.9796,-1.0,-0.438,0.0493,0.8976,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.1732,-0.0493,0.9836,-1.0,-0.4482,0.0307,0.8934,-1.0,-0.6121,0.0062,0.7908,-1.0,-0.8265,0.0062,0.5629,-1.0,-0.96,0.0062,0.28,-1.0,-0.9995,0.0062,-0.0304,-1.0,-0.9412,0.0062,-0.3378,-1.0,-0.7908,0.0062,-0.6121,-1.0,-0.5629,0.0062,-0.8265,-1.0,-0.28,0.0062,-0.96,-1.0,0.0304,0.0062,-0.9995,-1.0,0.3378,0.0062,-0.9412,-1.0,0.6121,0.0062,-0.7908,-1.0,0.8265,0.0062,-0.5629,-1.0,0.96,0.0062,-0.28,-1.0,0.9995,0.0062,0.0304,-1.0,0.9412,0.0062,0.3378,-1.0,0.7908,0.0062,0.6121,-1.0,0.5629,0.0062,0.8265,-1.0,0.28,0.0062,0.96,-1.0,-0.0304,0.0062,0.9995,-1.0,-0.1625,-0.0307,0.9862,-1.0,-0.454,0.0,0.891,-1.0,-0.7071,0.0,0.7071,-1.0,-0.891,0.0,0.454,-1.0,-0.9877,0.0,0.1564,-1.0,-0.9877,0.0,-0.1564,-1.0,-0.891,0.0,-0.454,-1.0,-0.7071,0.0,-0.7071,-1.0,-0.454,0.0,-0.891,-1.0,-0.1564,0.0,-0.9877,-1.0,0.1564,0.0,-0.9877,-1.0,0.454,0.0,-0.891,-1.0,0.7071,0.0,-0.7071,-1.0,0.891,0.0,-0.454,-1.0,0.9877,0.0,-0.1564,-1.0,0.9877,0.0,0.1564,-1.0,0.891,0.0,0.454,-1.0,0.7071,0.0,0.7071,-1.0,0.454,0.0,0.891,-1.0,0.1564,0.0,0.9877,-1.0,-0.1564,0.0,0.9877,-1.0,-0.454,0.0,0.891,-1.0,-0.7071,0.0,0.7071,-1.0,-0.891,0.0,0.454,-1.0,-0.9877,0.0,0.1564,-1.0,-0.9877,0.0,-0.1564,-1.0,-0.891,0.0,-0.454,-1.0,-0.7071,0.0,-0.7071,-1.0,-0.454,0.0,-0.891,-1.0,-0.1564,0.0,-0.9877,-1.0,0.1564,0.0,-0.9877,-1.0,0.454,0.0,-0.891,-1.0,0.7071,0.0,-0.7071,-1.0,0.891,0.0,-0.454,-1.0,0.9877,0.0,-0.1564,-1.0,0.9877,0.0,0.1564,-1.0,0.891,0.0,0.454,-1.0,0.7071,0.0,0.7071,-1.0,0.454,0.0,0.891,-1.0,0.1564,0.0,0.9877,-1.0,-0.1564,0.0,0.9877,-1.0],"uvs":[0.0,0.05,0.05,0.05,0.0,0.1,0.05,0.1,0.1,0.05,0.1,0.1,0.15,0.05,0.15,0.1,0.2,0.05,0.2,0.1,0.25,0.05,0.25,0.1,0.3,0.05,0.3,0.1,0.35,0.05,0.35,0.1,0.4,0.05,0.4,0.1,0.45,0.05,0.45,0.1,0.5,0.05,0.5,0.1,0.55,0.05,0.55,0.1,0.6,0.05,0.6,0.1,0.65,0.05,0.65,0.1,0.7,0.05,0.7,0.1,0.75,0.05,0.75,0.1,0.8,0.05,0.8,0.1,0.85,0.05,0.85,0.1,0.9,0.05,0.9,0.1,0.95,0.05,0.95,0.1,1.0,0.05,1.0,0.1,0.0,0.15,0.05,0.15,0.1,0.15,0.15,0.15,0.2,0.15,0.25,0.15,0.3,0.15,0.35,0.15,0.4,0.15,0.45,0.15,0.5,0.15,0.55,0.15,0.6,0.15,0.65,0.15,0.7,0.15,0.75,0.15,0.8,0.15,0.85,0.15,0.9,0.15,0.95,0.15,1.0,0.15,0.0,0.2,0.05,0.2,0.1,0.2,0.15,0.2,0.2,0.2,0.25,0.2,0.3,0.2,0.35,0.2,0.4,0.2,0.45,0.2,0.5,0.2,0.55,0.2,0.6,0.2,0.65,0.2,0.7,0.2,0.75,0.2,0.8,0.2,0.85,0.2,0.9,0.2,0.95,0.2,1.0,0.2,0.0,0.25,0.05,0.25,0.1,0.25,0.15,0.25,0.2,0.25,0.25,0.25,0.3,0.25,0.35,0.25,0.4,0.25,0.45,0.25,0.5,0.25,0.55,0.25,0.6,0.25,0.65,0.25,0.7,0.25,0.75,0.25,0.8,0.25,0.85,0.25,0.9,0.25,0.95,0.25,1.0,0.25,0.0,0.3,0.05,0.3,0.1,0.3,0.15,0.3,0.2,0.3,0.25,0.3,0.3,0.3,0.35,0.3,0.4,0.3,0.45,0.3,0.5,0.3,0.55,0.3,0.6,0.3,0.65,0.3,0.7,0.3,0.75,0.3,0.8,0.3,0.85,0.3,0.9,0.3,0.95,0.3,1.0,0.3,0.0,0.35,0.05,0.35,0.1,0.35,0.15,0.35,0.2,0.35,0.25,0.35,0.3,0.35,0.35,0.35,0.4,0.35,0.45,0.35,0.5,0.35,0.55,0.35,0.6,0.35,0.65,0.35,0.7,0.35,0.75,0.35,0.8,0.35,0.85,0.35,0.9,0.35,0.95,0.35,1.0,0.35,0.0,0.4,0.05,0.4,0.1,0.4,0.15,0.4,0.2,0.4,0.25,0.4,0.3,0.4,0.35,0.4,0.4,0.4,0.45,0.4,0.5,0.4,0.55,0.4,0.6,0.4,0.65,0.4,0.7,0.4,0.75,0.4,0.8,0.4,0.85,0.4,0.9,0.4,0.95,0.4,1.0,0.4,0.0,0.45,0.05,0.45,0.1,0.45,0.15,0.45,0.2,0.45,0.25,0.45,0.3,0.45,0.35,0.45,0.4,0.45,0.45,0.45,0.5,0.45,0.55,0.45,0.6,0.45,0.65,0.45,0.7,0.45,0.75,0.45,0.8,0.45,0.85,0.45,0.9,0.45,0.95,0.45,1.0,0.45,0.0,0.5,0.05,0.5,0.1,0.5,0.15,0.5,0.2,0.5,0.25,0.5,0.3,0.5,0.35,0.5,0.4,0.5,0.45,0.5,0.5,0.5,0.55,0.5,0.6,0.5,0.65,0.5,0.7,0.5,0.75,0.5,0.8,0.5,0.85,0.5,0.9,0.5,0.95,0.5,1.0,0.5,0.0,0.55,0.05,0.55,0.1,0.55,0.15,0.55,0.2,0.55,0.25,0.55,0.3,0.55,0.35,0.55,0.4,0.55,0.45,0.55,0.5,0.55,0.55,0.55,0.6,0.55,0.65,0.55,0.7,0.55,0.75,0.55,0.8,0.55,0.85,0.55,0.9,0.55,0.95,0.55,1.0,0.55,0.0,0.6,0.05,0.6,0.1,0.6,0.15,0.6,0.2,0.6,0.25,0.6,0.3,0.6,0.35,0.6,0.4,0.6,0.45,0.6,0.5,0.6,0.55,0.6,0.6,0.6,0.65,0.6,0.7,0.6,0.75,0.6,0.8,0.6,0.85,0.6,0.9,0.6,0.95,0.6,1.0,0.6,0.0,0.65,0.05,0.65,0.1,0.65,0.15,0.65,0.2,0.65,0.25,0.65,0.3,0.65,0.35,0.65,0.4,0.65,0.45,0.65,0.5,0.65,0.55,0.65,0.6,0.65,0.65,0.65,0.7,0.65,0.75,0.65,0.8,0.65,0.85,0.65,0.9,0.65,0.95,0.65,1.0,0.65,0.0,0.7,0.05,0.7,0.1,0.7,0.15,0.7,0.2,0.7,0.25,0.7,0.3,0.7,0.35,0.7,0.4,0.7,0.45,0.7,0.5,0.7,0.55,0.7,0.6,0.7,0.65,0.7,0.7,0.7,0.75,0.7,0.8,0.7,0.85,0.7,0.9,0.7,0.95,0.7,1.0,0.7,0.0,0.75,0.05,0.75,0.1,0.75,0.15,0.75,0.2,0.75,0.25,0.75,0.3,0.75,0.35,0.75,0.4,0.75,0.45,0.75,0.5,0.75,0.55,0.75,0.6,0.75,0.65,0.75,0.7,0.75,0.75,0.75,0.8,0.75,0.85,0.75,0.9,0.75,0.95,0.75,1.0,0.75,0.0,0.8,0.05,0.8,0.1,0.8,0.15,0.8,0.2,0.8,0.25,0.8,0.3,0.8,0.35,0.8,0.4,0.8,0.45,0.8,0.5,0.8,0.55,0.8,0.6,0.8,0.65,0.8,0.7,0.8,0.75,0.8,0.8,0.8,0.85,0.8,0.9,0.8,0.95,0.8,1.0,0.8,0.0,0.85,0.05,0.85,0.1,0.85,0.15,0.85,0.2,0.85,0.25,0.85,0.3,0.85,0.35,0.85,0.4,0.85,0.45,0.85,0.5,0.85,0.55,0.85,0.6,0.85,0.65,0.85,0.7,0.85,0.75,0.85,0.8,0.85,0.85,0.85,0.9,0.85,0.95,0.85,1.0,0.85,0.0,0.9,0.05,0.9,0.1,0.9,0.15,0.9,0.2,0.9,0.25,0.9,0.3,0.9,0.35,0.9,0.4,0.9,0.45,0.9,0.5,0.9,0.55,0.9,0.6,0.9,0.65,0.9,0.7,0.9,0.75,0.9,0.8,0.9,0.85,0.9,0.9,0.9,0.95,0.9,1.0,0.9,0.0,0.95,0.05,0.95,0.1,0.95,0.15,0.95,0.2,0.95,0.25,0.95,0.3,0.95,0.35,0.95,0.4,0.95,0.45,0.95,0.5,0.95,0.55,0.95,0.6,0.95,0.65,0.95,0.7,0.95,0.75,0.95,0.8,0.95,0.85,0.95,0.9,0.95,0.95,0.95,1.0,0.95,0.025,0.0,0.075,0.0,0.125,0.0,0.175,0.0,0.225,0.0,0.275,0.0,0.325,0.0,0.375,0.0,0.425,0.0,0.475,0.0,0.525,0.0,0.575,0.0,0.625,0.0,0.675,0.0,0.725,0.0,0.775,0.0,0.825,0.0,0.875,0.0,0.925,0.0,0.975,0.0,0.025,1.0,0.075,1.0,0.125,1.0,0.175,1.0,0.225,1.0,0.275,1.0,0.325,1.0,0.375,1.0,0.425,1.0,0.475,1.0,0.525,1.0,0.575,1.0,0.625,1.0,0.675,1.0,0.725,1.0,0.775,1.0,0.825,1.0,0.875,1.0,0.925,1.0,0.975,1.0],"uvs2":null,"colors":null,"hasVertexAlpha":false,"matricesIndices":null,"matricesWeights":null,"matricesIndicesExtra":null,"matricesWeightsExtra":null,"indices":[0,1,2,2,1,3,1,4,3,3,4,5,4,6,5,5,6,7,6,8,7,7,8,9,8,10,9,9,10,11,10,12,11,11,12,13,12,14,13,13,14,15,14,16,15,15,16,17,16,18,17,17,18,19,18,20,19,19,20,21,20,22,21,21,22,23,22,24,23,23,24,25,24,26,25,25,26,27,26,28,27,27,28,29,28,30,29,29,30,31,30,32,31,31,32,33,32,34,33,33,34,35,34,36,35,35,36,37,36,38,37,37,38,39,38,40,39,39,40,41,2,3,42,42,3,43,3,5,43,43,5,44,5,7,44,44,7,45,7,9,45,45,9,46,9,11,46,46,11,47,11,13,47,47,13,48,13,15,48,48,15,49,15,17,49,49,17,50,17,19,50,50,19,51,19,21,51,51,21,52,21,23,52,52,23,53,23,25,53,53,25,54,25,27,54,54,27,55,27,29,55,55,29,56,29,31,56,56,31,57,31,33,57,57,33,58,33,35,58,58,35,59,35,37,59,59,37,60,37,39,60,60,39,61,39,41,61,61,41,62,42,43,63,63,43,64,43,44,64,64,44,65,44,45,65,65,45,66,45,46,66,66,46,67,46,47,67,67,47,68,47,48,68,68,48,69,48,49,69,69,49,70,49,50,70,70,50,71,50,51,71,71,51,72,51,52,72,72,52,73,52,53,73,73,53,74,53,54,74,74,54,75,54,55,75,75,55,76,55,56,76,76,56,77,56,57,77,77,57,78,57,58,78,78,58,79,58,59,79,79,59,80,59,60,80,80,60,81,60,61,81,81,61,82,61,62,82,82,62,83,63,64,84,84,64,85,64,65,85,85,65,86,65,66,86,86,66,87,66,67,87,87,67,88,67,68,88,88,68,89,68,69,89,89,69,90,69,70,90,90,70,91,70,71,91,91,71,92,71,72,92,92,72,93,72,73,93,93,73,94,73,74,94,94,74,95,74,75,95,95,75,96,75,76,96,96,76,97,76,77,97,97,77,98,77,78,98,98,78,99,78,79,99,99,79,100,79,80,100,100,80,101,80,81,101,101,81,102,81,82,102,102,82,103,82,83,103,103,83,104,84,85,105,105,85,106,85,86,106,106,86,107,86,87,107,107,87,108,87,88,108,108,88,109,88,89,109,109,89,110,89,90,110,110,90,111,90,91,111,111,91,112,91,92,112,112,92,113,92,93,113,113,93,114,93,94,114,114,94,115,94,95,115,115,95,116,95,96,116,116,96,117,96,97,117,117,97,118,97,98,118,118,98,119,98,99,119,119,99,120,99,100,120,120,100,121,100,101,121,121,101,122,101,102,122,122,102,123,102,103,123,123,103,124,103,104,124,124,104,125,105,106,126,126,106,127,106,107,127,127,107,128,107,108,128,128,108,129,108,109,129,129,109,130,109,110,130,130,110,131,110,111,131,131,111,132,111,112,132,132,112,133,112,113,133,133,113,134,113,114,134,134,114,135,114,115,135,135,115,136,115,116,136,136,116,137,116,117,137,137,117,138,117,118,138,138,118,139,118,119,139,139,119,140,119,120,140,140,120,141,120,121,141,141,121,142,121,122,142,142,122,143,122,123,143,143,123,144,123,124,144,144,124,145,124,125,145,145,125,146,126,127,147,147,127,148,127,128,148,148,128,149,128,129,149,149,129,150,129,130,150,150,130,151,130,131,151,151,131,152,131,132,152,152,132,153,132,133,153,153,133,154,133,134,154,154,134,155,134,135,155,155,135,156,135,136,156,156,136,157,136,137,157,157,137,158,137,138,158,158,138,159,138,139,159,159,139,160,139,140,160,160,140,161,140,141,161,161,141,162,141,142,162,162,142,163,142,143,163,163,143,164,143,144,164,164,144,165,144,145,165,165,145,166,145,146,166,166,146,167,147,148,168,168,148,169,148,149,169,169,149,170,149,150,170,170,150,171,150,151,171,171,151,172,151,152,172,172,152,173,152,153,173,173,153,174,153,154,174,174,154,175,154,155,175,175,155,176,155,156,176,176,156,177,156,157,177,177,157,178,157,158,178,178,158,179,158,159,179,179,159,180,159,160,180,180,160,181,160,161,181,181,161,182,161,162,182,182,162,183,162,163,183,183,163,184,163,164,184,184,164,185,164,165,185,185,165,186,165,166,186,186,166,187,166,167,187,187,167,188,168,169,189,189,169,190,169,170,190,190,170,191,170,171,191,191,171,192,171,172,192,192,172,193,172,173,193,193,173,194,173,174,194,194,174,195,174,175,195,195,175,196,175,176,196,196,176,197,176,177,197,197,177,198,177,178,198,198,178,199,178,179,199,199,179,200,179,180,200,200,180,201,180,181,201,201,181,202,181,182,202,202,182,203,182,183,203,203,183,204,183,184,204,204,184,205,184,185,205,205,185,206,185,186,206,206,186,207,186,187,207,207,187,208,187,188,208,208,188,209,189,190,210,210,190,211,190,191,211,211,191,212,191,192,212,212,192,213,192,193,213,213,193,214,193,194,214,214,194,215,194,195,215,215,195,216,195,196,216,216,196,217,196,197,217,217,197,218,197,198,218,218,198,219,198,199,219,219,199,220,199,200,220,220,200,221,200,201,221,221,201,222,201,202,222,222,202,223,202,203,223,223,203,224,203,204,224,224,204,225,204,205,225,225,205,226,205,206,226,226,206,227,206,207,227,227,207,228,207,208,228,228,208,229,208,209,229,229,209,230,210,211,231,231,211,232,211,212,232,232,212,233,212,213,233,233,213,234,213,214,234,234,214,235,214,215,235,235,215,236,215,216,236,236,216,237,216,217,237,237,217,238,217,218,238,238,218,239,218,219,239,239,219,240,219,220,240,240,220,241,220,221,241,241,221,242,221,222,242,242,222,243,222,223,243,243,223,244,223,224,244,244,224,245,224,225,245,245,225,246,225,226,246,246,226,247,226,227,247,247,227,248,227,228,248,248,228,249,228,229,249,249,229,250,229,230,250,250,230,251,231,232,252,252,232,253,232,233,253,253,233,254,233,234,254,254,234,255,234,235,255,255,235,256,235,236,256,256,236,257,236,237,257,257,237,258,237,238,258,258,238,259,238,239,259,259,239,260,239,240,260,260,240,261,240,241,261,261,241,262,241,242,262,262,242,263,242,243,263,263,243,264,243,244,264,264,244,265,244,245,265,265,245,266,245,246,266,266,246,267,246,247,267,267,247,268,247,248,268,268,248,269,248,249,269,269,249,270,249,250,270,270,250,271,250,251,271,271,251,272,252,253,273,273,253,274,253,254,274,274,254,275,254,255,275,275,255,276,255,256,276,276,256,277,256,257,277,277,257,278,257,258,278,278,258,279,258,259,279,279,259,280,259,260,280,280,260,281,260,261,281,281,261,282,261,262,282,282,262,283,262,263,283,283,263,284,263,264,284,284,264,285,264,265,285,285,265,286,265,266,286,286,266,287,266,267,287,287,267,288,267,268,288,288,268,289,268,269,289,289,269,290,269,270,290,290,270,291,270,271,291,291,271,292,271,272,292,292,272,293,273,274,294,294,274,295,274,275,295,295,275,296,275,276,296,296,276,297,276,277,297,297,277,298,277,278,298,298,278,299,278,279,299,299,279,300,279,280,300,300,280,301,280,281,301,301,281,302,281,282,302,302,282,303,282,283,303,303,283,304,283,284,304,304,284,305,284,285,305,305,285,306,285,286,306,306,286,307,286,287,307,307,287,308,287,288,308,308,288,309,288,289,309,309,289,310,289,290,310,310,290,311,290,291,311,311,291,312,291,292,312,312,292,313,292,293,313,313,293,314,294,295,315,315,295,316,295,296,316,316,296,317,296,297,317,317,297,318,297,298,318,318,298,319,298,299,319,319,299,320,299,300,320,320,300,321,300,301,321,321,301,322,301,302,322,322,302,323,302,303,323,323,303,324,303,304,324,324,304,325,304,305,325,325,305,326,305,306,326,326,306,327,306,307,327,327,307,328,307,308,328,328,308,329,308,309,329,329,309,330,309,310,330,330,310,331,310,311,331,331,311,332,311,312,332,332,312,333,312,313,333,333,313,334,313,314,334,334,314,335,315,316,336,336,316,337,316,317,337,337,317,338,317,318,338,338,318,339,318,319,339,339,319,340,319,320,340,340,320,341,320,321,341,341,321,342,321,322,342,342,322,343,322,323,343,343,323,344,323,324,344,344,324,345,324,325,345,345,325,346,325,326,346,346,326,347,326,327,347,347,327,348,327,328,348,348,328,349,328,329,349,349,329,350,329,330,350,350,330,351,330,331,351,351,331,352,331,332,352,352,332,353,332,333,353,353,333,354,333,334,354,354,334,355,334,335,355,355,335,356,336,337,357,357,337,358,337,338,358,358,338,359,338,339,359,359,339,360,339,340,360,360,340,361,340,341,361,361,341,362,341,342,362,362,342,363,342,343,363,363,343,364,343,344,364,364,344,365,344,345,365,365,345,366,345,346,366,366,346,367,346,347,367,367,347,368,347,348,368,368,348,369,348,349,369,369,349,370,349,350,370,370,350,371,350,351,371,371,351,372,351,352,372,372,352,373,352,353,373,373,353,374,353,354,374,374,354,375,354,355,375,375,355,376,355,356,376,376,356,377,357,358,378,378,358,379,358,359,379,379,359,380,359,360,380,380,360,381,360,361,381,381,361,382,361,362,382,382,362,383,362,363,383,383,363,384,363,364,384,384,364,385,364,365,385,385,365,386,365,366,386,386,366,387,366,367,387,387,367,388,367,368,388,388,368,389,368,369,389,389,369,390,369,370,390,390,370,391,370,371,391,391,371,392,371,372,392,392,372,393,372,373,393,393,373,394,373,374,394,394,374,395,374,375,395,395,375,396,375,376,396,396,376,397,376,377,397,397,377,398,1,0,399,4,1,400,6,4,401,8,6,402,10,8,403,12,10,404,14,12,405,16,14,406,18,16,407,20,18,408,22,20,409,24,22,410,26,24,411,28,26,412,30,28,413,32,30,414,34,32,415,36,34,416,38,36,417,40,38,418,378,379,419,379,380,420,380,381,421,381,382,422,382,383,423,383,384,424,384,385,425,385,386,426,386,387,427,387,388,428,388,389,429,389,390,430,390,391,431,391,392,432,392,393,433,393,394,434,394,395,435,395,396,436,396,397,437,397,398,438],"receiveShadows":false,"infiniteDistance":false,"billboardMode":0,"visibility":1.0,"subMeshes":[{"materialIndex":0,"verticesStart":0,"verticesCount":439,"indexStart":0,"indexCount":2280}],"instances":null,"skeletonId":-1,"numBoneInfluencers":4,"applyFog":false,"lodMeshIds":null,"lodDistances":null,"lodCoverages":null,"rotation":null,"scaling":[1.0,1.0,1.0],"rotationQuaternion":[0.0,0.0,0.0,1.0],"actions":null,"checkCollisions":false,"pickable":true,"showBoundingBox":false,"showSubMeshesBoundingBox":false,"alphaIndex":0,"physicsImpostor":0,"physicsMass":0.0,"physicsFriction":0.0,"physicsRestitution":0.0,"name":"pSphere3","id":"3CC7A685-448C-CD8D-6923-DC9A8FDA8EAE","parentId":null,"position":[6.0,0.0,0.0],"animations":[],"autoAnimate":true,"autoAnimateFrom":1,"autoAnimateTo":200,"autoAnimateLoop":true,"metadata":{}},{"materialId":"C33371E3-49CC-50AB-9549-80BD2392C0F8","isEnabled":true,"isVisible":true,"positions":[0.1488,-0.9877,0.0483,0.1266,-0.9877,0.0919,0.2939,-0.9511,0.0955,0.25,-0.9511,0.1816,0.0919,-0.9877,0.1266,0.1816,-0.9511,0.25,0.0483,-0.9877,0.1488,0.0955,-0.9511,0.2939,0.0,-0.9877,0.1564,0.0,-0.9511,0.309,-0.0483,-0.9877,0.1488,-0.0955,-0.9511,0.2939,-0.0919,-0.9877,0.1266,-0.1816,-0.9511,0.25,-0.1266,-0.9877,0.0919,-0.25,-0.9511,0.1816,-0.1488,-0.9877,0.0483,-0.2939,-0.9511,0.0955,-0.1564,-0.9877,0.0,-0.309,-0.9511,0.0,-0.1488,-0.9877,-0.0483,-0.2939,-0.9511,-0.0955,-0.1266,-0.9877,-0.0919,-0.25,-0.9511,-0.1816,-0.0919,-0.9877,-0.1266,-0.1816,-0.9511,-0.25,-0.0483,-0.9877,-0.1488,-0.0955,-0.9511,-0.2939,0.0,-0.9877,-0.1564,0.0,-0.9511,-0.309,0.0483,-0.9877,-0.1488,0.0955,-0.9511,-0.2939,0.0919,-0.9877,-0.1266,0.1816,-0.9511,-0.25,0.1266,-0.9877,-0.0919,0.25,-0.9511,-0.1816,0.1488,-0.9877,-0.0483,0.2939,-0.9511,-0.0955,0.1564,-0.9877,0.0,0.309,-0.9511,0.0,0.1488,-0.9877,0.0483,0.2939,-0.9511,0.0955,0.4318,-0.891,0.1403,0.3673,-0.891,0.2668,0.2668,-0.891,0.3673,0.1403,-0.891,0.4318,0.0,-0.891,0.454,-0.1403,-0.891,0.4318,-0.2668,-0.891,0.3673,-0.3673,-0.891,0.2668,-0.4318,-0.891,0.1403,-0.454,-0.891,0.0,-0.4318,-0.891,-0.1403,-0.3673,-0.891,-0.2668,-0.2668,-0.891,-0.3673,-0.1403,-0.891,-0.4318,0.0,-0.891,-0.454,0.1403,-0.891,-0.4318,0.2668,-0.891,-0.3673,0.3673,-0.891,-0.2668,0.4318,-0.891,-0.1403,0.454,-0.891,0.0,0.4318,-0.891,0.1403,0.559,-0.809,0.1816,0.4755,-0.809,0.3455,0.3455,-0.809,0.4755,0.1816,-0.809,0.559,0.0,-0.809,0.5878,-0.1816,-0.809,0.559,-0.3455,-0.809,0.4755,-0.4755,-0.809,0.3455,-0.559,-0.809,0.1816,-0.5878,-0.809,0.0,-0.559,-0.809,-0.1816,-0.4755,-0.809,-0.3455,-0.3455,-0.809,-0.4755,-0.1816,-0.809,-0.559,0.0,-0.809,-0.5878,0.1816,-0.809,-0.559,0.3455,-0.809,-0.4755,0.4755,-0.809,-0.3455,0.559,-0.809,-0.1816,0.5878,-0.809,0.0,0.559,-0.809,0.1816,0.6725,-0.7071,0.2185,0.5721,-0.7071,0.4156,0.4156,-0.7071,0.5721,0.2185,-0.7071,0.6725,0.0,-0.7071,0.7071,-0.2185,-0.7071,0.6725,-0.4156,-0.7071,0.5721,-0.5721,-0.7071,0.4156,-0.6725,-0.7071,0.2185,-0.7071,-0.7071,0.0,-0.6725,-0.7071,-0.2185,-0.5721,-0.7071,-0.4156,-0.4156,-0.7071,-0.5721,-0.2185,-0.7071,-0.6725,0.0,-0.7071,-0.7071,0.2185,-0.7071,-0.6725,0.4156,-0.7071,-0.5721,0.5721,-0.7071,-0.4156,0.6725,-0.7071,-0.2185,0.7071,-0.7071,0.0,0.6725,-0.7071,0.2185,0.7694,-0.5878,0.25,0.6545,-0.5878,0.4755,0.4755,-0.5878,0.6545,0.25,-0.5878,0.7694,0.0,-0.5878,0.809,-0.25,-0.5878,0.7694,-0.4755,-0.5878,0.6545,-0.6545,-0.5878,0.4755,-0.7694,-0.5878,0.25,-0.809,-0.5878,0.0,-0.7694,-0.5878,-0.25,-0.6545,-0.5878,-0.4755,-0.4755,-0.5878,-0.6545,-0.25,-0.5878,-0.7694,0.0,-0.5878,-0.809,0.25,-0.5878,-0.7694,0.4755,-0.5878,-0.6545,0.6545,-0.5878,-0.4755,0.7694,-0.5878,-0.25,0.809,-0.5878,0.0,0.7694,-0.5878,0.25,0.8474,-0.454,0.2753,0.7208,-0.454,0.5237,0.5237,-0.454,0.7208,0.2753,-0.454,0.8474,0.0,-0.454,0.891,-0.2753,-0.454,0.8474,-0.5237,-0.454,0.7208,-0.7208,-0.454,0.5237,-0.8474,-0.454,0.2753,-0.891,-0.454,0.0,-0.8474,-0.454,-0.2753,-0.7208,-0.454,-0.5237,-0.5237,-0.454,-0.7208,-0.2753,-0.454,-0.8474,0.0,-0.454,-0.891,0.2753,-0.454,-0.8474,0.5237,-0.454,-0.7208,0.7208,-0.454,-0.5237,0.8474,-0.454,-0.2753,0.891,-0.454,0.0,0.8474,-0.454,0.2753,0.9045,-0.309,0.2939,0.7694,-0.309,0.559,0.559,-0.309,0.7694,0.2939,-0.309,0.9045,0.0,-0.309,0.9511,-0.2939,-0.309,0.9045,-0.559,-0.309,0.7694,-0.7694,-0.309,0.559,-0.9045,-0.309,0.2939,-0.9511,-0.309,0.0,-0.9045,-0.309,-0.2939,-0.7694,-0.309,-0.559,-0.559,-0.309,-0.7694,-0.2939,-0.309,-0.9045,0.0,-0.309,-0.9511,0.2939,-0.309,-0.9045,0.559,-0.309,-0.7694,0.7694,-0.309,-0.559,0.9045,-0.309,-0.2939,0.9511,-0.309,0.0,0.9045,-0.309,0.2939,0.9393,-0.1564,0.3052,0.7991,-0.1564,0.5805,0.5805,-0.1564,0.7991,0.3052,-0.1564,0.9393,0.0,-0.1564,0.9877,-0.3052,-0.1564,0.9393,-0.5805,-0.1564,0.7991,-0.7991,-0.1564,0.5805,-0.9393,-0.1564,0.3052,-0.9877,-0.1564,0.0,-0.9393,-0.1564,-0.3052,-0.7991,-0.1564,-0.5805,-0.5805,-0.1564,-0.7991,-0.3052,-0.1564,-0.9393,0.0,-0.1564,-0.9877,0.3052,-0.1564,-0.9393,0.5805,-0.1564,-0.7991,0.7991,-0.1564,-0.5805,0.9393,-0.1564,-0.3052,0.9877,-0.1564,0.0,0.9393,-0.1564,0.3052,0.9511,0.0,0.309,0.809,0.0,0.5878,0.5878,0.0,0.809,0.309,0.0,0.9511,0.0,0.0,1.0,-0.309,0.0,0.9511,-0.5878,0.0,0.809,-0.809,0.0,0.5878,-0.9511,0.0,0.309,-1.0,0.0,0.0,-0.9511,0.0,-0.309,-0.809,0.0,-0.5878,-0.5878,0.0,-0.809,-0.309,0.0,-0.9511,0.0,0.0,-1.0,0.309,0.0,-0.9511,0.5878,0.0,-0.809,0.809,0.0,-0.5878,0.9511,0.0,-0.309,1.0,0.0,0.0,0.9511,0.0,0.309,0.9393,0.1564,0.3052,0.7991,0.1564,0.5805,0.5805,0.1564,0.7991,0.3052,0.1564,0.9393,0.0,0.1564,0.9877,-0.3052,0.1564,0.9393,-0.5805,0.1564,0.7991,-0.7991,0.1564,0.5805,-0.9393,0.1564,0.3052,-0.9877,0.1564,0.0,-0.9393,0.1564,-0.3052,-0.7991,0.1564,-0.5805,-0.5805,0.1564,-0.7991,-0.3052,0.1564,-0.9393,0.0,0.1564,-0.9877,0.3052,0.1564,-0.9393,0.5805,0.1564,-0.7991,0.7991,0.1564,-0.5805,0.9393,0.1564,-0.3052,0.9877,0.1564,0.0,0.9393,0.1564,0.3052,0.9045,0.309,0.2939,0.7694,0.309,0.559,0.559,0.309,0.7694,0.2939,0.309,0.9045,0.0,0.309,0.9511,-0.2939,0.309,0.9045,-0.559,0.309,0.7694,-0.7694,0.309,0.559,-0.9045,0.309,0.2939,-0.9511,0.309,0.0,-0.9045,0.309,-0.2939,-0.7694,0.309,-0.559,-0.559,0.309,-0.7694,-0.2939,0.309,-0.9045,0.0,0.309,-0.9511,0.2939,0.309,-0.9045,0.559,0.309,-0.7694,0.7694,0.309,-0.559,0.9045,0.309,-0.2939,0.9511,0.309,0.0,0.9045,0.309,0.2939,0.8474,0.454,0.2753,0.7208,0.454,0.5237,0.5237,0.454,0.7208,0.2753,0.454,0.8474,0.0,0.454,0.891,-0.2753,0.454,0.8474,-0.5237,0.454,0.7208,-0.7208,0.454,0.5237,-0.8474,0.454,0.2753,-0.891,0.454,0.0,-0.8474,0.454,-0.2753,-0.7208,0.454,-0.5237,-0.5237,0.454,-0.7208,-0.2753,0.454,-0.8474,0.0,0.454,-0.891,0.2753,0.454,-0.8474,0.5237,0.454,-0.7208,0.7208,0.454,-0.5237,0.8474,0.454,-0.2753,0.891,0.454,0.0,0.8474,0.454,0.2753,0.7694,0.5878,0.25,0.6545,0.5878,0.4755,0.4755,0.5878,0.6545,0.25,0.5878,0.7694,0.0,0.5878,0.809,-0.25,0.5878,0.7694,-0.4755,0.5878,0.6545,-0.6545,0.5878,0.4755,-0.7694,0.5878,0.25,-0.809,0.5878,0.0,-0.7694,0.5878,-0.25,-0.6545,0.5878,-0.4755,-0.4755,0.5878,-0.6545,-0.25,0.5878,-0.7694,0.0,0.5878,-0.809,0.25,0.5878,-0.7694,0.4755,0.5878,-0.6545,0.6545,0.5878,-0.4755,0.7694,0.5878,-0.25,0.809,0.5878,0.0,0.7694,0.5878,0.25,0.6725,0.7071,0.2185,0.5721,0.7071,0.4156,0.4156,0.7071,0.5721,0.2185,0.7071,0.6725,0.0,0.7071,0.7071,-0.2185,0.7071,0.6725,-0.4156,0.7071,0.5721,-0.5721,0.7071,0.4156,-0.6725,0.7071,0.2185,-0.7071,0.7071,0.0,-0.6725,0.7071,-0.2185,-0.5721,0.7071,-0.4156,-0.4156,0.7071,-0.5721,-0.2185,0.7071,-0.6725,0.0,0.7071,-0.7071,0.2185,0.7071,-0.6725,0.4156,0.7071,-0.5721,0.5721,0.7071,-0.4156,0.6725,0.7071,-0.2185,0.7071,0.7071,0.0,0.6725,0.7071,0.2185,0.559,0.809,0.1816,0.4755,0.809,0.3455,0.3455,0.809,0.4755,0.1816,0.809,0.559,0.0,0.809,0.5878,-0.1816,0.809,0.559,-0.3455,0.809,0.4755,-0.4755,0.809,0.3455,-0.559,0.809,0.1816,-0.5878,0.809,0.0,-0.559,0.809,-0.1816,-0.4755,0.809,-0.3455,-0.3455,0.809,-0.4755,-0.1816,0.809,-0.559,0.0,0.809,-0.5878,0.1816,0.809,-0.559,0.3455,0.809,-0.4755,0.4755,0.809,-0.3455,0.559,0.809,-0.1816,0.5878,0.809,0.0,0.559,0.809,0.1816,0.4318,0.891,0.1403,0.3673,0.891,0.2668,0.2668,0.891,0.3673,0.1403,0.891,0.4318,0.0,0.891,0.454,-0.1403,0.891,0.4318,-0.2668,0.891,0.3673,-0.3673,0.891,0.2668,-0.4318,0.891,0.1403,-0.454,0.891,0.0,-0.4318,0.891,-0.1403,-0.3673,0.891,-0.2668,-0.2668,0.891,-0.3673,-0.1403,0.891,-0.4318,0.0,0.891,-0.454,0.1403,0.891,-0.4318,0.2668,0.891,-0.3673,0.3673,0.891,-0.2668,0.4318,0.891,-0.1403,0.454,0.891,0.0,0.4318,0.891,0.1403,0.2939,0.9511,0.0955,0.25,0.9511,0.1816,0.1816,0.9511,0.25,0.0955,0.9511,0.2939,0.0,0.9511,0.309,-0.0955,0.9511,0.2939,-0.1816,0.9511,0.25,-0.25,0.9511,0.1816,-0.2939,0.9511,0.0955,-0.309,0.9511,0.0,-0.2939,0.9511,-0.0955,-0.25,0.9511,-0.1816,-0.1816,0.9511,-0.25,-0.0955,0.9511,-0.2939,0.0,0.9511,-0.309,0.0955,0.9511,-0.2939,0.1816,0.9511,-0.25,0.25,0.9511,-0.1816,0.2939,0.9511,-0.0955,0.309,0.9511,0.0,0.2939,0.9511,0.0955,0.1488,0.9877,0.0483,0.1266,0.9877,0.0919,0.0919,0.9877,0.1266,0.0483,0.9877,0.1488,0.0,0.9877,0.1564,-0.0483,0.9877,0.1488,-0.0919,0.9877,0.1266,-0.1266,0.9877,0.0919,-0.1488,0.9877,0.0483,-0.1564,0.9877,0.0,-0.1488,0.9877,-0.0483,-0.1266,0.9877,-0.0919,-0.0919,0.9877,-0.1266,-0.0483,0.9877,-0.1488,0.0,0.9877,-0.1564,0.0483,0.9877,-0.1488,0.0919,0.9877,-0.1266,0.1266,0.9877,-0.0919,0.1488,0.9877,-0.0483,0.1564,0.9877,0.0,0.1488,0.9877,0.0483,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0],"normals":[0.1906,-0.9797,0.0619,0.1621,-0.9797,0.1178,0.3173,-0.9427,0.1031,0.2699,-0.9427,0.1961,0.1178,-0.9797,0.1621,0.1961,-0.9427,0.2699,0.0619,-0.9797,0.1906,0.1031,-0.9427,0.3173,0.0,-0.9797,0.2004,0.0,-0.9427,0.3336,-0.0619,-0.9797,0.1906,-0.1031,-0.9427,0.3173,-0.1178,-0.9797,0.1621,-0.1961,-0.9427,0.2699,-0.1621,-0.9797,0.1178,-0.2699,-0.9427,0.1961,-0.1906,-0.9797,0.0619,-0.3173,-0.9427,0.1031,-0.2004,-0.9797,0.0,-0.3336,-0.9427,0.0,-0.1906,-0.9797,-0.0619,-0.3173,-0.9427,-0.1031,-0.1621,-0.9797,-0.1178,-0.2699,-0.9427,-0.1961,-0.1178,-0.9797,-0.1621,-0.1961,-0.9427,-0.2699,-0.0619,-0.9797,-0.1906,-0.1031,-0.9427,-0.3173,0.0,-0.9797,-0.2004,0.0,-0.9427,-0.3336,0.0619,-0.9797,-0.1906,0.1031,-0.9427,-0.3173,0.1178,-0.9797,-0.1621,0.1961,-0.9427,-0.2699,0.1621,-0.9797,-0.1178,0.2699,-0.9427,-0.1961,0.1906,-0.9797,-0.0619,0.3173,-0.9427,-0.1031,0.2004,-0.9797,0.0,0.3336,-0.9427,0.0,0.1906,-0.9797,0.0619,0.3173,-0.9427,0.1031,0.4477,-0.8823,0.1455,0.3808,-0.8823,0.2767,0.2767,-0.8823,0.3808,0.1455,-0.8823,0.4477,0.0,-0.8823,0.4708,-0.1455,-0.8823,0.4477,-0.2767,-0.8823,0.3808,-0.3808,-0.8823,0.2767,-0.4477,-0.8823,0.1455,-0.4708,-0.8823,0.0,-0.4477,-0.8823,-0.1455,-0.3808,-0.8823,-0.2767,-0.2767,-0.8823,-0.3808,-0.1455,-0.8823,-0.4477,0.0,-0.8823,-0.4708,0.1455,-0.8823,-0.4477,0.2767,-0.8823,-0.3808,0.3808,-0.8823,-0.2767,0.4477,-0.8823,-0.1455,0.4708,-0.8823,0.0,0.4477,-0.8823,0.1455,0.5703,-0.8003,0.1853,0.4851,-0.8003,0.3525,0.3525,-0.8003,0.4851,0.1853,-0.8003,0.5703,0.0,-0.8003,0.5997,-0.1853,-0.8003,0.5703,-0.3525,-0.8003,0.4851,-0.4851,-0.8003,0.3525,-0.5703,-0.8003,0.1853,-0.5997,-0.8003,0.0,-0.5703,-0.8003,-0.1853,-0.4851,-0.8003,-0.3525,-0.3525,-0.8003,-0.4851,-0.1853,-0.8003,-0.5703,0.0,-0.8003,-0.5997,0.1853,-0.8003,-0.5703,0.3525,-0.8003,-0.4851,0.4851,-0.8003,-0.3525,0.5703,-0.8003,-0.1853,0.5997,-0.8003,0.0,0.5703,-0.8003,0.1853,0.6803,-0.6988,0.221,0.5787,-0.6988,0.4205,0.4205,-0.6988,0.5787,0.221,-0.6988,0.6803,0.0,-0.6988,0.7153,-0.221,-0.6988,0.6803,-0.4205,-0.6988,0.5787,-0.5787,-0.6988,0.4205,-0.6803,-0.6988,0.221,-0.7153,-0.6988,0.0,-0.6803,-0.6988,-0.221,-0.5787,-0.6988,-0.4205,-0.4205,-0.6988,-0.5787,-0.221,-0.6988,-0.6803,0.0,-0.6988,-0.7153,0.221,-0.6988,-0.6803,0.4205,-0.6988,-0.5787,0.5787,-0.6988,-0.4205,0.6803,-0.6988,-0.221,0.7153,-0.6988,0.0,0.6803,-0.6988,0.221,0.7745,-0.5804,0.2516,0.6588,-0.5804,0.4787,0.4787,-0.5804,0.6588,0.2516,-0.5804,0.7745,0.0,-0.5804,0.8143,-0.2516,-0.5804,0.7745,-0.4787,-0.5804,0.6588,-0.6588,-0.5804,0.4787,-0.7745,-0.5804,0.2516,-0.8143,-0.5804,0.0,-0.7745,-0.5804,-0.2516,-0.6588,-0.5804,-0.4787,-0.4787,-0.5804,-0.6588,-0.2516,-0.5804,-0.7745,0.0,-0.5804,-0.8143,0.2516,-0.5804,-0.7745,0.4787,-0.5804,-0.6588,0.6588,-0.5804,-0.4787,0.7745,-0.5804,-0.2516,0.8143,-0.5804,0.0,0.7745,-0.5804,0.2516,0.8503,-0.448,0.2763,0.7233,-0.448,0.5255,0.5255,-0.448,0.7233,0.2763,-0.448,0.8503,0.0,-0.448,0.894,-0.2763,-0.448,0.8503,-0.5255,-0.448,0.7233,-0.7233,-0.448,0.5255,-0.8503,-0.448,0.2763,-0.894,-0.448,0.0,-0.8503,-0.448,-0.2763,-0.7233,-0.448,-0.5255,-0.5255,-0.448,-0.7233,-0.2763,-0.448,-0.8503,0.0,-0.448,-0.894,0.2763,-0.448,-0.8503,0.5255,-0.448,-0.7233,0.7233,-0.448,-0.5255,0.8503,-0.448,-0.2763,0.894,-0.448,0.0,0.8503,-0.448,0.2763,0.9058,-0.3048,0.2943,0.7705,-0.3048,0.5598,0.5598,-0.3048,0.7705,0.2943,-0.3048,0.9058,0.0,-0.3048,0.9524,-0.2943,-0.3048,0.9058,-0.5598,-0.3048,0.7705,-0.7705,-0.3048,0.5598,-0.9058,-0.3048,0.2943,-0.9524,-0.3048,0.0,-0.9058,-0.3048,-0.2943,-0.7705,-0.3048,-0.5598,-0.5598,-0.3048,-0.7705,-0.2943,-0.3048,-0.9058,0.0,-0.3048,-0.9524,0.2943,-0.3048,-0.9058,0.5598,-0.3048,-0.7705,0.7705,-0.3048,-0.5598,0.9058,-0.3048,-0.2943,0.9524,-0.3048,0.0,0.9058,-0.3048,0.2943,0.9397,-0.1542,0.3053,0.7993,-0.1542,0.5808,0.5808,-0.1542,0.7993,0.3053,-0.1542,0.9397,0.0,-0.1542,0.988,-0.3053,-0.1542,0.9397,-0.5808,-0.1542,0.7993,-0.7993,-0.1542,0.5808,-0.9397,-0.1542,0.3053,-0.988,-0.1542,0.0,-0.9397,-0.1542,-0.3053,-0.7993,-0.1542,-0.5808,-0.5808,-0.1542,-0.7993,-0.3053,-0.1542,-0.9397,0.0,-0.1542,-0.988,0.3053,-0.1542,-0.9397,0.5808,-0.1542,-0.7993,0.7993,-0.1542,-0.5808,0.9397,-0.1542,-0.3053,0.988,-0.1542,0.0,0.9397,-0.1542,0.3053,0.9511,0.0,0.309,0.809,0.0,0.5878,0.5878,0.0,0.809,0.309,0.0,0.9511,0.0,0.0,1.0,-0.309,0.0,0.9511,-0.5878,0.0,0.809,-0.809,0.0,0.5878,-0.9511,0.0,0.309,-1.0,0.0,0.0,-0.9511,0.0,-0.309,-0.809,0.0,-0.5878,-0.5878,0.0,-0.809,-0.309,0.0,-0.9511,0.0,0.0,-1.0,0.309,0.0,-0.9511,0.5878,0.0,-0.809,0.809,0.0,-0.5878,0.9511,0.0,-0.309,1.0,0.0,0.0,0.9511,0.0,0.309,0.9397,0.1542,0.3053,0.7993,0.1542,0.5808,0.5808,0.1542,0.7993,0.3053,0.1542,0.9397,0.0,0.1542,0.988,-0.3053,0.1542,0.9397,-0.5808,0.1542,0.7993,-0.7993,0.1542,0.5808,-0.9397,0.1542,0.3053,-0.988,0.1542,0.0,-0.9397,0.1542,-0.3053,-0.7993,0.1542,-0.5808,-0.5808,0.1542,-0.7993,-0.3053,0.1542,-0.9397,0.0,0.1542,-0.988,0.3053,0.1542,-0.9397,0.5808,0.1542,-0.7993,0.7993,0.1542,-0.5808,0.9397,0.1542,-0.3053,0.988,0.1542,0.0,0.9397,0.1542,0.3053,0.9058,0.3048,0.2943,0.7705,0.3048,0.5598,0.5598,0.3048,0.7705,0.2943,0.3048,0.9058,0.0,0.3048,0.9524,-0.2943,0.3048,0.9058,-0.5598,0.3048,0.7705,-0.7705,0.3048,0.5598,-0.9058,0.3048,0.2943,-0.9524,0.3048,0.0,-0.9058,0.3048,-0.2943,-0.7705,0.3048,-0.5598,-0.5598,0.3048,-0.7705,-0.2943,0.3048,-0.9058,0.0,0.3048,-0.9524,0.2943,0.3048,-0.9058,0.5598,0.3048,-0.7705,0.7705,0.3048,-0.5598,0.9058,0.3048,-0.2943,0.9524,0.3048,0.0,0.9058,0.3048,0.2943,0.8503,0.448,0.2763,0.7233,0.448,0.5255,0.5255,0.448,0.7233,0.2763,0.448,0.8503,0.0,0.448,0.894,-0.2763,0.448,0.8503,-0.5255,0.448,0.7233,-0.7233,0.448,0.5255,-0.8503,0.448,0.2763,-0.894,0.448,0.0,-0.8503,0.448,-0.2763,-0.7233,0.448,-0.5255,-0.5255,0.448,-0.7233,-0.2763,0.448,-0.8503,0.0,0.448,-0.894,0.2763,0.448,-0.8503,0.5255,0.448,-0.7233,0.7233,0.448,-0.5255,0.8503,0.448,-0.2763,0.894,0.448,0.0,0.8503,0.448,0.2763,0.7745,0.5804,0.2516,0.6588,0.5804,0.4787,0.4787,0.5804,0.6588,0.2516,0.5804,0.7745,0.0,0.5804,0.8143,-0.2516,0.5804,0.7745,-0.4787,0.5804,0.6588,-0.6588,0.5804,0.4787,-0.7745,0.5804,0.2516,-0.8143,0.5804,0.0,-0.7745,0.5804,-0.2516,-0.6588,0.5804,-0.4787,-0.4787,0.5804,-0.6588,-0.2516,0.5804,-0.7745,0.0,0.5804,-0.8143,0.2516,0.5804,-0.7745,0.4787,0.5804,-0.6588,0.6588,0.5804,-0.4787,0.7745,0.5804,-0.2516,0.8143,0.5804,0.0,0.7745,0.5804,0.2516,0.6803,0.6988,0.221,0.5787,0.6988,0.4205,0.4205,0.6988,0.5787,0.221,0.6988,0.6803,0.0,0.6988,0.7153,-0.221,0.6988,0.6803,-0.4205,0.6988,0.5787,-0.5787,0.6988,0.4205,-0.6803,0.6988,0.221,-0.7153,0.6988,0.0,-0.6803,0.6988,-0.221,-0.5787,0.6988,-0.4205,-0.4205,0.6988,-0.5787,-0.221,0.6988,-0.6803,0.0,0.6988,-0.7153,0.221,0.6988,-0.6803,0.4205,0.6988,-0.5787,0.5787,0.6988,-0.4205,0.6803,0.6988,-0.221,0.7153,0.6988,0.0,0.6803,0.6988,0.221,0.5703,0.8003,0.1853,0.4851,0.8003,0.3525,0.3525,0.8003,0.4851,0.1853,0.8003,0.5703,0.0,0.8003,0.5997,-0.1853,0.8003,0.5703,-0.3525,0.8003,0.4851,-0.4851,0.8003,0.3525,-0.5703,0.8003,0.1853,-0.5997,0.8003,0.0,-0.5703,0.8003,-0.1853,-0.4851,0.8003,-0.3525,-0.3525,0.8003,-0.4851,-0.1853,0.8003,-0.5703,0.0,0.8003,-0.5997,0.1853,0.8003,-0.5703,0.3525,0.8003,-0.4851,0.4851,0.8003,-0.3525,0.5703,0.8003,-0.1853,0.5997,0.8003,0.0,0.5703,0.8003,0.1853,0.4477,0.8823,0.1455,0.3808,0.8823,0.2767,0.2767,0.8823,0.3808,0.1455,0.8823,0.4477,0.0,0.8823,0.4708,-0.1455,0.8823,0.4477,-0.2767,0.8823,0.3808,-0.3808,0.8823,0.2767,-0.4477,0.8823,0.1455,-0.4708,0.8823,0.0,-0.4477,0.8823,-0.1455,-0.3808,0.8823,-0.2767,-0.2767,0.8823,-0.3808,-0.1455,0.8823,-0.4477,0.0,0.8823,-0.4708,0.1455,0.8823,-0.4477,0.2767,0.8823,-0.3808,0.3808,0.8823,-0.2767,0.4477,0.8823,-0.1455,0.4708,0.8823,0.0,0.4477,0.8823,0.1455,0.3173,0.9427,0.1031,0.2699,0.9427,0.1961,0.1961,0.9427,0.2699,0.1031,0.9427,0.3173,0.0,0.9427,0.3336,-0.1031,0.9427,0.3173,-0.1961,0.9427,0.2699,-0.2699,0.9427,0.1961,-0.3173,0.9427,0.1031,-0.3336,0.9427,0.0,-0.3173,0.9427,-0.1031,-0.2699,0.9427,-0.1961,-0.1961,0.9427,-0.2699,-0.1031,0.9427,-0.3173,0.0,0.9427,-0.3336,0.1031,0.9427,-0.3173,0.1961,0.9427,-0.2699,0.2699,0.9427,-0.1961,0.3173,0.9427,-0.1031,0.3336,0.9427,0.0,0.3173,0.9427,0.1031,0.1906,0.9797,0.0619,0.1621,0.9797,0.1178,0.1178,0.9797,0.1621,0.0619,0.9797,0.1906,0.0,0.9797,0.2004,-0.0619,0.9797,0.1906,-0.1178,0.9797,0.1621,-0.1621,0.9797,0.1178,-0.1906,0.9797,0.0619,-0.2004,0.9797,0.0,-0.1906,0.9797,-0.0619,-0.1621,0.9797,-0.1178,-0.1178,0.9797,-0.1621,-0.0619,0.9797,-0.1906,0.0,0.9797,-0.2004,0.0619,0.9797,-0.1906,0.1178,0.9797,-0.1621,0.1621,0.9797,-0.1178,0.1906,0.9797,-0.0619,0.2004,0.9797,0.0,0.1906,0.9797,0.0619,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0],"tangents":[-0.4482,-0.0307,0.8934,-1.0,-0.5629,0.0062,0.8265,-1.0,-0.438,-0.0493,0.8976,-1.0,-0.5878,0.0,0.809,-1.0,-0.7908,0.0062,0.6121,-1.0,-0.809,0.0,0.5878,-1.0,-0.9412,0.0062,0.3378,-1.0,-0.9511,0.0,0.309,-1.0,-0.9995,0.0062,0.0304,-1.0,-1.0,0.0,0.0,-1.0,-0.96,0.0062,-0.28,-1.0,-0.9511,0.0,-0.309,-1.0,-0.8265,0.0062,-0.5629,-1.0,-0.809,0.0,-0.5878,-1.0,-0.6121,0.0062,-0.7908,-1.0,-0.5878,0.0,-0.809,-1.0,-0.3378,0.0062,-0.9412,-1.0,-0.309,0.0,-0.9511,-1.0,-0.0304,0.0062,-0.9995,-1.0,0.0,0.0,-1.0,-1.0,0.28,0.0062,-0.96,-1.0,0.309,0.0,-0.9511,-1.0,0.5629,0.0062,-0.8265,-1.0,0.5878,0.0,-0.809,-1.0,0.7908,0.0062,-0.6121,-1.0,0.809,0.0,-0.5878,-1.0,0.9412,0.0062,-0.3378,-1.0,0.9511,0.0,-0.309,-1.0,0.9995,0.0062,-0.0304,-1.0,1.0,0.0,0.0,-1.0,0.96,0.0062,0.28,-1.0,0.9511,0.0,0.309,-1.0,0.8265,0.0062,0.5629,-1.0,0.809,0.0,0.5878,-1.0,0.6121,0.0062,0.7908,-1.0,0.5878,0.0,0.809,-1.0,0.3378,0.0062,0.9412,-1.0,0.309,0.0,0.9511,-1.0,0.0304,0.0062,0.9995,-1.0,0.0,0.0,1.0,-1.0,-0.1625,0.0307,0.9862,-1.0,-0.1732,0.0493,0.9836,-1.0,-0.4222,-0.0651,0.9042,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.1899,0.0651,0.9796,-1.0,-0.4023,-0.0754,0.9124,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.2109,0.0754,0.9746,-1.0,-0.3802,-0.0787,0.9215,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.234,0.0787,0.969,-1.0,-0.3582,-0.0745,0.9306,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.2572,0.0745,0.9635,-1.0,-0.3384,-0.0633,0.9389,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.2781,0.0633,0.9585,-1.0,-0.3226,-0.0459,0.9454,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.2947,0.0459,0.9545,-1.0,-0.3125,-0.0241,0.9496,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.3053,0.0241,0.9519,-1.0,-0.309,0.0,0.9511,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.309,0.0,0.9511,-1.0,-0.3125,0.0241,0.9496,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.3053,-0.0241,0.9519,-1.0,-0.3226,0.0459,0.9454,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.2947,-0.0459,0.9545,-1.0,-0.3384,0.0633,0.9389,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.2781,-0.0633,0.9585,-1.0,-0.3582,0.0745,0.9306,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.2572,-0.0745,0.9635,-1.0,-0.3802,0.0787,0.9215,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.234,-0.0787,0.969,-1.0,-0.4023,0.0754,0.9124,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.2109,-0.0754,0.9746,-1.0,-0.4222,0.0651,0.9042,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.1899,-0.0651,0.9796,-1.0,-0.438,0.0493,0.8976,-1.0,-0.5878,0.0,0.809,-1.0,-0.809,0.0,0.5878,-1.0,-0.9511,0.0,0.309,-1.0,-1.0,0.0,0.0,-1.0,-0.9511,0.0,-0.309,-1.0,-0.809,0.0,-0.5878,-1.0,-0.5878,0.0,-0.809,-1.0,-0.309,0.0,-0.9511,-1.0,0.0,0.0,-1.0,-1.0,0.309,0.0,-0.9511,-1.0,0.5878,0.0,-0.809,-1.0,0.809,0.0,-0.5878,-1.0,0.9511,0.0,-0.309,-1.0,1.0,0.0,0.0,-1.0,0.9511,0.0,0.309,-1.0,0.809,0.0,0.5878,-1.0,0.5878,0.0,0.809,-1.0,0.309,0.0,0.9511,-1.0,0.0,0.0,1.0,-1.0,-0.1732,-0.0493,0.9836,-1.0,-0.4482,0.0307,0.8934,-1.0,-0.6121,0.0062,0.7908,-1.0,-0.8265,0.0062,0.5629,-1.0,-0.96,0.0062,0.28,-1.0,-0.9995,0.0062,-0.0304,-1.0,-0.9412,0.0062,-0.3378,-1.0,-0.7908,0.0062,-0.6121,-1.0,-0.5629,0.0062,-0.8265,-1.0,-0.28,0.0062,-0.96,-1.0,0.0304,0.0062,-0.9995,-1.0,0.3378,0.0062,-0.9412,-1.0,0.6121,0.0062,-0.7908,-1.0,0.8265,0.0062,-0.5629,-1.0,0.96,0.0062,-0.28,-1.0,0.9995,0.0062,0.0304,-1.0,0.9412,0.0062,0.3378,-1.0,0.7908,0.0062,0.6121,-1.0,0.5629,0.0062,0.8265,-1.0,0.28,0.0062,0.96,-1.0,-0.0304,0.0062,0.9995,-1.0,-0.1625,-0.0307,0.9862,-1.0,-0.454,0.0,0.891,-1.0,-0.7071,0.0,0.7071,-1.0,-0.891,0.0,0.454,-1.0,-0.9877,0.0,0.1564,-1.0,-0.9877,0.0,-0.1564,-1.0,-0.891,0.0,-0.454,-1.0,-0.7071,0.0,-0.7071,-1.0,-0.454,0.0,-0.891,-1.0,-0.1564,0.0,-0.9877,-1.0,0.1564,0.0,-0.9877,-1.0,0.454,0.0,-0.891,-1.0,0.7071,0.0,-0.7071,-1.0,0.891,0.0,-0.454,-1.0,0.9877,0.0,-0.1564,-1.0,0.9877,0.0,0.1564,-1.0,0.891,0.0,0.454,-1.0,0.7071,0.0,0.7071,-1.0,0.454,0.0,0.891,-1.0,0.1564,0.0,0.9877,-1.0,-0.1564,0.0,0.9877,-1.0,-0.454,0.0,0.891,-1.0,-0.7071,0.0,0.7071,-1.0,-0.891,0.0,0.454,-1.0,-0.9877,0.0,0.1564,-1.0,-0.9877,0.0,-0.1564,-1.0,-0.891,0.0,-0.454,-1.0,-0.7071,0.0,-0.7071,-1.0,-0.454,0.0,-0.891,-1.0,-0.1564,0.0,-0.9877,-1.0,0.1564,0.0,-0.9877,-1.0,0.454,0.0,-0.891,-1.0,0.7071,0.0,-0.7071,-1.0,0.891,0.0,-0.454,-1.0,0.9877,0.0,-0.1564,-1.0,0.9877,0.0,0.1564,-1.0,0.891,0.0,0.454,-1.0,0.7071,0.0,0.7071,-1.0,0.454,0.0,0.891,-1.0,0.1564,0.0,0.9877,-1.0,-0.1564,0.0,0.9877,-1.0],"uvs":[0.0,0.05,0.05,0.05,0.0,0.1,0.05,0.1,0.1,0.05,0.1,0.1,0.15,0.05,0.15,0.1,0.2,0.05,0.2,0.1,0.25,0.05,0.25,0.1,0.3,0.05,0.3,0.1,0.35,0.05,0.35,0.1,0.4,0.05,0.4,0.1,0.45,0.05,0.45,0.1,0.5,0.05,0.5,0.1,0.55,0.05,0.55,0.1,0.6,0.05,0.6,0.1,0.65,0.05,0.65,0.1,0.7,0.05,0.7,0.1,0.75,0.05,0.75,0.1,0.8,0.05,0.8,0.1,0.85,0.05,0.85,0.1,0.9,0.05,0.9,0.1,0.95,0.05,0.95,0.1,1.0,0.05,1.0,0.1,0.0,0.15,0.05,0.15,0.1,0.15,0.15,0.15,0.2,0.15,0.25,0.15,0.3,0.15,0.35,0.15,0.4,0.15,0.45,0.15,0.5,0.15,0.55,0.15,0.6,0.15,0.65,0.15,0.7,0.15,0.75,0.15,0.8,0.15,0.85,0.15,0.9,0.15,0.95,0.15,1.0,0.15,0.0,0.2,0.05,0.2,0.1,0.2,0.15,0.2,0.2,0.2,0.25,0.2,0.3,0.2,0.35,0.2,0.4,0.2,0.45,0.2,0.5,0.2,0.55,0.2,0.6,0.2,0.65,0.2,0.7,0.2,0.75,0.2,0.8,0.2,0.85,0.2,0.9,0.2,0.95,0.2,1.0,0.2,0.0,0.25,0.05,0.25,0.1,0.25,0.15,0.25,0.2,0.25,0.25,0.25,0.3,0.25,0.35,0.25,0.4,0.25,0.45,0.25,0.5,0.25,0.55,0.25,0.6,0.25,0.65,0.25,0.7,0.25,0.75,0.25,0.8,0.25,0.85,0.25,0.9,0.25,0.95,0.25,1.0,0.25,0.0,0.3,0.05,0.3,0.1,0.3,0.15,0.3,0.2,0.3,0.25,0.3,0.3,0.3,0.35,0.3,0.4,0.3,0.45,0.3,0.5,0.3,0.55,0.3,0.6,0.3,0.65,0.3,0.7,0.3,0.75,0.3,0.8,0.3,0.85,0.3,0.9,0.3,0.95,0.3,1.0,0.3,0.0,0.35,0.05,0.35,0.1,0.35,0.15,0.35,0.2,0.35,0.25,0.35,0.3,0.35,0.35,0.35,0.4,0.35,0.45,0.35,0.5,0.35,0.55,0.35,0.6,0.35,0.65,0.35,0.7,0.35,0.75,0.35,0.8,0.35,0.85,0.35,0.9,0.35,0.95,0.35,1.0,0.35,0.0,0.4,0.05,0.4,0.1,0.4,0.15,0.4,0.2,0.4,0.25,0.4,0.3,0.4,0.35,0.4,0.4,0.4,0.45,0.4,0.5,0.4,0.55,0.4,0.6,0.4,0.65,0.4,0.7,0.4,0.75,0.4,0.8,0.4,0.85,0.4,0.9,0.4,0.95,0.4,1.0,0.4,0.0,0.45,0.05,0.45,0.1,0.45,0.15,0.45,0.2,0.45,0.25,0.45,0.3,0.45,0.35,0.45,0.4,0.45,0.45,0.45,0.5,0.45,0.55,0.45,0.6,0.45,0.65,0.45,0.7,0.45,0.75,0.45,0.8,0.45,0.85,0.45,0.9,0.45,0.95,0.45,1.0,0.45,0.0,0.5,0.05,0.5,0.1,0.5,0.15,0.5,0.2,0.5,0.25,0.5,0.3,0.5,0.35,0.5,0.4,0.5,0.45,0.5,0.5,0.5,0.55,0.5,0.6,0.5,0.65,0.5,0.7,0.5,0.75,0.5,0.8,0.5,0.85,0.5,0.9,0.5,0.95,0.5,1.0,0.5,0.0,0.55,0.05,0.55,0.1,0.55,0.15,0.55,0.2,0.55,0.25,0.55,0.3,0.55,0.35,0.55,0.4,0.55,0.45,0.55,0.5,0.55,0.55,0.55,0.6,0.55,0.65,0.55,0.7,0.55,0.75,0.55,0.8,0.55,0.85,0.55,0.9,0.55,0.95,0.55,1.0,0.55,0.0,0.6,0.05,0.6,0.1,0.6,0.15,0.6,0.2,0.6,0.25,0.6,0.3,0.6,0.35,0.6,0.4,0.6,0.45,0.6,0.5,0.6,0.55,0.6,0.6,0.6,0.65,0.6,0.7,0.6,0.75,0.6,0.8,0.6,0.85,0.6,0.9,0.6,0.95,0.6,1.0,0.6,0.0,0.65,0.05,0.65,0.1,0.65,0.15,0.65,0.2,0.65,0.25,0.65,0.3,0.65,0.35,0.65,0.4,0.65,0.45,0.65,0.5,0.65,0.55,0.65,0.6,0.65,0.65,0.65,0.7,0.65,0.75,0.65,0.8,0.65,0.85,0.65,0.9,0.65,0.95,0.65,1.0,0.65,0.0,0.7,0.05,0.7,0.1,0.7,0.15,0.7,0.2,0.7,0.25,0.7,0.3,0.7,0.35,0.7,0.4,0.7,0.45,0.7,0.5,0.7,0.55,0.7,0.6,0.7,0.65,0.7,0.7,0.7,0.75,0.7,0.8,0.7,0.85,0.7,0.9,0.7,0.95,0.7,1.0,0.7,0.0,0.75,0.05,0.75,0.1,0.75,0.15,0.75,0.2,0.75,0.25,0.75,0.3,0.75,0.35,0.75,0.4,0.75,0.45,0.75,0.5,0.75,0.55,0.75,0.6,0.75,0.65,0.75,0.7,0.75,0.75,0.75,0.8,0.75,0.85,0.75,0.9,0.75,0.95,0.75,1.0,0.75,0.0,0.8,0.05,0.8,0.1,0.8,0.15,0.8,0.2,0.8,0.25,0.8,0.3,0.8,0.35,0.8,0.4,0.8,0.45,0.8,0.5,0.8,0.55,0.8,0.6,0.8,0.65,0.8,0.7,0.8,0.75,0.8,0.8,0.8,0.85,0.8,0.9,0.8,0.95,0.8,1.0,0.8,0.0,0.85,0.05,0.85,0.1,0.85,0.15,0.85,0.2,0.85,0.25,0.85,0.3,0.85,0.35,0.85,0.4,0.85,0.45,0.85,0.5,0.85,0.55,0.85,0.6,0.85,0.65,0.85,0.7,0.85,0.75,0.85,0.8,0.85,0.85,0.85,0.9,0.85,0.95,0.85,1.0,0.85,0.0,0.9,0.05,0.9,0.1,0.9,0.15,0.9,0.2,0.9,0.25,0.9,0.3,0.9,0.35,0.9,0.4,0.9,0.45,0.9,0.5,0.9,0.55,0.9,0.6,0.9,0.65,0.9,0.7,0.9,0.75,0.9,0.8,0.9,0.85,0.9,0.9,0.9,0.95,0.9,1.0,0.9,0.0,0.95,0.05,0.95,0.1,0.95,0.15,0.95,0.2,0.95,0.25,0.95,0.3,0.95,0.35,0.95,0.4,0.95,0.45,0.95,0.5,0.95,0.55,0.95,0.6,0.95,0.65,0.95,0.7,0.95,0.75,0.95,0.8,0.95,0.85,0.95,0.9,0.95,0.95,0.95,1.0,0.95,0.025,0.0,0.075,0.0,0.125,0.0,0.175,0.0,0.225,0.0,0.275,0.0,0.325,0.0,0.375,0.0,0.425,0.0,0.475,0.0,0.525,0.0,0.575,0.0,0.625,0.0,0.675,0.0,0.725,0.0,0.775,0.0,0.825,0.0,0.875,0.0,0.925,0.0,0.975,0.0,0.025,1.0,0.075,1.0,0.125,1.0,0.175,1.0,0.225,1.0,0.275,1.0,0.325,1.0,0.375,1.0,0.425,1.0,0.475,1.0,0.525,1.0,0.575,1.0,0.625,1.0,0.675,1.0,0.725,1.0,0.775,1.0,0.825,1.0,0.875,1.0,0.925,1.0,0.975,1.0],"uvs2":null,"colors":null,"hasVertexAlpha":false,"matricesIndices":null,"matricesWeights":null,"matricesIndicesExtra":null,"matricesWeightsExtra":null,"indices":[0,1,2,2,1,3,1,4,3,3,4,5,4,6,5,5,6,7,6,8,7,7,8,9,8,10,9,9,10,11,10,12,11,11,12,13,12,14,13,13,14,15,14,16,15,15,16,17,16,18,17,17,18,19,18,20,19,19,20,21,20,22,21,21,22,23,22,24,23,23,24,25,24,26,25,25,26,27,26,28,27,27,28,29,28,30,29,29,30,31,30,32,31,31,32,33,32,34,33,33,34,35,34,36,35,35,36,37,36,38,37,37,38,39,38,40,39,39,40,41,2,3,42,42,3,43,3,5,43,43,5,44,5,7,44,44,7,45,7,9,45,45,9,46,9,11,46,46,11,47,11,13,47,47,13,48,13,15,48,48,15,49,15,17,49,49,17,50,17,19,50,50,19,51,19,21,51,51,21,52,21,23,52,52,23,53,23,25,53,53,25,54,25,27,54,54,27,55,27,29,55,55,29,56,29,31,56,56,31,57,31,33,57,57,33,58,33,35,58,58,35,59,35,37,59,59,37,60,37,39,60,60,39,61,39,41,61,61,41,62,42,43,63,63,43,64,43,44,64,64,44,65,44,45,65,65,45,66,45,46,66,66,46,67,46,47,67,67,47,68,47,48,68,68,48,69,48,49,69,69,49,70,49,50,70,70,50,71,50,51,71,71,51,72,51,52,72,72,52,73,52,53,73,73,53,74,53,54,74,74,54,75,54,55,75,75,55,76,55,56,76,76,56,77,56,57,77,77,57,78,57,58,78,78,58,79,58,59,79,79,59,80,59,60,80,80,60,81,60,61,81,81,61,82,61,62,82,82,62,83,63,64,84,84,64,85,64,65,85,85,65,86,65,66,86,86,66,87,66,67,87,87,67,88,67,68,88,88,68,89,68,69,89,89,69,90,69,70,90,90,70,91,70,71,91,91,71,92,71,72,92,92,72,93,72,73,93,93,73,94,73,74,94,94,74,95,74,75,95,95,75,96,75,76,96,96,76,97,76,77,97,97,77,98,77,78,98,98,78,99,78,79,99,99,79,100,79,80,100,100,80,101,80,81,101,101,81,102,81,82,102,102,82,103,82,83,103,103,83,104,84,85,105,105,85,106,85,86,106,106,86,107,86,87,107,107,87,108,87,88,108,108,88,109,88,89,109,109,89,110,89,90,110,110,90,111,90,91,111,111,91,112,91,92,112,112,92,113,92,93,113,113,93,114,93,94,114,114,94,115,94,95,115,115,95,116,95,96,116,116,96,117,96,97,117,117,97,118,97,98,118,118,98,119,98,99,119,119,99,120,99,100,120,120,100,121,100,101,121,121,101,122,101,102,122,122,102,123,102,103,123,123,103,124,103,104,124,124,104,125,105,106,126,126,106,127,106,107,127,127,107,128,107,108,128,128,108,129,108,109,129,129,109,130,109,110,130,130,110,131,110,111,131,131,111,132,111,112,132,132,112,133,112,113,133,133,113,134,113,114,134,134,114,135,114,115,135,135,115,136,115,116,136,136,116,137,116,117,137,137,117,138,117,118,138,138,118,139,118,119,139,139,119,140,119,120,140,140,120,141,120,121,141,141,121,142,121,122,142,142,122,143,122,123,143,143,123,144,123,124,144,144,124,145,124,125,145,145,125,146,126,127,147,147,127,148,127,128,148,148,128,149,128,129,149,149,129,150,129,130,150,150,130,151,130,131,151,151,131,152,131,132,152,152,132,153,132,133,153,153,133,154,133,134,154,154,134,155,134,135,155,155,135,156,135,136,156,156,136,157,136,137,157,157,137,158,137,138,158,158,138,159,138,139,159,159,139,160,139,140,160,160,140,161,140,141,161,161,141,162,141,142,162,162,142,163,142,143,163,163,143,164,143,144,164,164,144,165,144,145,165,165,145,166,145,146,166,166,146,167,147,148,168,168,148,169,148,149,169,169,149,170,149,150,170,170,150,171,150,151,171,171,151,172,151,152,172,172,152,173,152,153,173,173,153,174,153,154,174,174,154,175,154,155,175,175,155,176,155,156,176,176,156,177,156,157,177,177,157,178,157,158,178,178,158,179,158,159,179,179,159,180,159,160,180,180,160,181,160,161,181,181,161,182,161,162,182,182,162,183,162,163,183,183,163,184,163,164,184,184,164,185,164,165,185,185,165,186,165,166,186,186,166,187,166,167,187,187,167,188,168,169,189,189,169,190,169,170,190,190,170,191,170,171,191,191,171,192,171,172,192,192,172,193,172,173,193,193,173,194,173,174,194,194,174,195,174,175,195,195,175,196,175,176,196,196,176,197,176,177,197,197,177,198,177,178,198,198,178,199,178,179,199,199,179,200,179,180,200,200,180,201,180,181,201,201,181,202,181,182,202,202,182,203,182,183,203,203,183,204,183,184,204,204,184,205,184,185,205,205,185,206,185,186,206,206,186,207,186,187,207,207,187,208,187,188,208,208,188,209,189,190,210,210,190,211,190,191,211,211,191,212,191,192,212,212,192,213,192,193,213,213,193,214,193,194,214,214,194,215,194,195,215,215,195,216,195,196,216,216,196,217,196,197,217,217,197,218,197,198,218,218,198,219,198,199,219,219,199,220,199,200,220,220,200,221,200,201,221,221,201,222,201,202,222,222,202,223,202,203,223,223,203,224,203,204,224,224,204,225,204,205,225,225,205,226,205,206,226,226,206,227,206,207,227,227,207,228,207,208,228,228,208,229,208,209,229,229,209,230,210,211,231,231,211,232,211,212,232,232,212,233,212,213,233,233,213,234,213,214,234,234,214,235,214,215,235,235,215,236,215,216,236,236,216,237,216,217,237,237,217,238,217,218,238,238,218,239,218,219,239,239,219,240,219,220,240,240,220,241,220,221,241,241,221,242,221,222,242,242,222,243,222,223,243,243,223,244,223,224,244,244,224,245,224,225,245,245,225,246,225,226,246,246,226,247,226,227,247,247,227,248,227,228,248,248,228,249,228,229,249,249,229,250,229,230,250,250,230,251,231,232,252,252,232,253,232,233,253,253,233,254,233,234,254,254,234,255,234,235,255,255,235,256,235,236,256,256,236,257,236,237,257,257,237,258,237,238,258,258,238,259,238,239,259,259,239,260,239,240,260,260,240,261,240,241,261,261,241,262,241,242,262,262,242,263,242,243,263,263,243,264,243,244,264,264,244,265,244,245,265,265,245,266,245,246,266,266,246,267,246,247,267,267,247,268,247,248,268,268,248,269,248,249,269,269,249,270,249,250,270,270,250,271,250,251,271,271,251,272,252,253,273,273,253,274,253,254,274,274,254,275,254,255,275,275,255,276,255,256,276,276,256,277,256,257,277,277,257,278,257,258,278,278,258,279,258,259,279,279,259,280,259,260,280,280,260,281,260,261,281,281,261,282,261,262,282,282,262,283,262,263,283,283,263,284,263,264,284,284,264,285,264,265,285,285,265,286,265,266,286,286,266,287,266,267,287,287,267,288,267,268,288,288,268,289,268,269,289,289,269,290,269,270,290,290,270,291,270,271,291,291,271,292,271,272,292,292,272,293,273,274,294,294,274,295,274,275,295,295,275,296,275,276,296,296,276,297,276,277,297,297,277,298,277,278,298,298,278,299,278,279,299,299,279,300,279,280,300,300,280,301,280,281,301,301,281,302,281,282,302,302,282,303,282,283,303,303,283,304,283,284,304,304,284,305,284,285,305,305,285,306,285,286,306,306,286,307,286,287,307,307,287,308,287,288,308,308,288,309,288,289,309,309,289,310,289,290,310,310,290,311,290,291,311,311,291,312,291,292,312,312,292,313,292,293,313,313,293,314,294,295,315,315,295,316,295,296,316,316,296,317,296,297,317,317,297,318,297,298,318,318,298,319,298,299,319,319,299,320,299,300,320,320,300,321,300,301,321,321,301,322,301,302,322,322,302,323,302,303,323,323,303,324,303,304,324,324,304,325,304,305,325,325,305,326,305,306,326,326,306,327,306,307,327,327,307,328,307,308,328,328,308,329,308,309,329,329,309,330,309,310,330,330,310,331,310,311,331,331,311,332,311,312,332,332,312,333,312,313,333,333,313,334,313,314,334,334,314,335,315,316,336,336,316,337,316,317,337,337,317,338,317,318,338,338,318,339,318,319,339,339,319,340,319,320,340,340,320,341,320,321,341,341,321,342,321,322,342,342,322,343,322,323,343,343,323,344,323,324,344,344,324,345,324,325,345,345,325,346,325,326,346,346,326,347,326,327,347,347,327,348,327,328,348,348,328,349,328,329,349,349,329,350,329,330,350,350,330,351,330,331,351,351,331,352,331,332,352,352,332,353,332,333,353,353,333,354,333,334,354,354,334,355,334,335,355,355,335,356,336,337,357,357,337,358,337,338,358,358,338,359,338,339,359,359,339,360,339,340,360,360,340,361,340,341,361,361,341,362,341,342,362,362,342,363,342,343,363,363,343,364,343,344,364,364,344,365,344,345,365,365,345,366,345,346,366,366,346,367,346,347,367,367,347,368,347,348,368,368,348,369,348,349,369,369,349,370,349,350,370,370,350,371,350,351,371,371,351,372,351,352,372,372,352,373,352,353,373,373,353,374,353,354,374,374,354,375,354,355,375,375,355,376,355,356,376,376,356,377,357,358,378,378,358,379,358,359,379,379,359,380,359,360,380,380,360,381,360,361,381,381,361,382,361,362,382,382,362,383,362,363,383,383,363,384,363,364,384,384,364,385,364,365,385,385,365,386,365,366,386,386,366,387,366,367,387,387,367,388,367,368,388,388,368,389,368,369,389,389,369,390,369,370,390,390,370,391,370,371,391,391,371,392,371,372,392,392,372,393,372,373,393,393,373,394,373,374,394,394,374,395,374,375,395,395,375,396,375,376,396,396,376,397,376,377,397,397,377,398,1,0,399,4,1,400,6,4,401,8,6,402,10,8,403,12,10,404,14,12,405,16,14,406,18,16,407,20,18,408,22,20,409,24,22,410,26,24,411,28,26,412,30,28,413,32,30,414,34,32,415,36,34,416,38,36,417,40,38,418,378,379,419,379,380,420,380,381,421,381,382,422,382,383,423,383,384,424,384,385,425,385,386,426,386,387,427,387,388,428,388,389,429,389,390,430,390,391,431,391,392,432,392,393,433,393,394,434,394,395,435,395,396,436,396,397,437,397,398,438],"receiveShadows":false,"infiniteDistance":false,"billboardMode":0,"visibility":1.0,"subMeshes":[{"materialIndex":0,"verticesStart":0,"verticesCount":439,"indexStart":0,"indexCount":2280}],"instances":null,"skeletonId":-1,"numBoneInfluencers":4,"applyFog":false,"lodMeshIds":null,"lodDistances":null,"lodCoverages":null,"rotation":null,"scaling":[1.0,1.0,1.0],"rotationQuaternion":[0.0,0.0,0.0,1.0],"actions":null,"checkCollisions":false,"pickable":true,"showBoundingBox":false,"showSubMeshesBoundingBox":false,"alphaIndex":0,"physicsImpostor":0,"physicsMass":0.0,"physicsFriction":0.0,"physicsRestitution":0.0,"name":"pSphere4","id":"2F4F3A92-41B4-BFAB-58D5-7DBF6D8F2419","parentId":null,"position":[9.0,0.0,0.0],"animations":[],"autoAnimate":true,"autoAnimateFrom":1,"autoAnimateTo":200,"autoAnimateLoop":true,"metadata":{}}],"sounds":[],"materials":[{"customType":"BABYLON.StandardMaterial","ambient":[1.0,1.0,1.0],"diffuse":[1.0,0.0,0.0],"specular":[0.5,0.5,0.5],"emissive":[1.0,0.0,0.0],"specularPower":110.6414,"diffuseTexture":null,"diffuseFresnelParameters":null,"ambientTexture":null,"opacityTexture":null,"opacityFresnelParameters":null,"reflectionTexture":null,"reflectionFresnelParameters":null,"emissiveTexture":null,"lightmapTexture":null,"useLightmapAsShadowmap":false,"emissiveFresnelParameters":null,"specularTexture":null,"bumpTexture":null,"useSpecularOverAlpha":true,"disableLighting":true,"useEmissiveAsIllumination":false,"linkEmissiveWithDiffuse":false,"twoSidedLighting":false,"useGlossinessFromSpecularMapAlpha":false,"name":"PhongUnlitMaterial","id":"9B24F14E-4F69-6849-B864-07B9E4A7E9FF","backFaceCulling":true,"wireframe":false,"alpha":1.0,"alphaMode":2,"maxSimultaneousLights":4,"metadata":{}},{"customType":"BABYLON.PBRMetallicRoughnessMaterial","baseColor":[0.0,1.0,0.0],"baseTexture":null,"metallic":0.0,"roughness":0.33,"metallicRoughnessTexture":null,"disableLighting":false,"invertNormalMapX":false,"invertNormalMapY":false,"normalTexture":null,"emissive":[0.0,0.0,0.0],"emissiveTexture":null,"occlusionStrength":1.0,"occlusionTexture":null,"transparencyMode":0,"doubleSided":false,"clearCoat":{"isEnabled":false,"intensity":1.0,"roughness":0.0,"indexOfRefraction":1.5,"texture":null,"bumpTexture":null,"isTintEnabled":false,"tintColor":[1.0,1.0,1.0],"tintThickness":1.0,"tintTexture":null},"_unlit":true,"name":"PhysicUnlitMaterial","id":"0E49D5E9-4200-91FB-CB7B-93B40CEF850E","backFaceCulling":true,"wireframe":false,"alpha":1.0,"alphaMode":2,"maxSimultaneousLights":4,"metadata":null},{"customType":"BABYLON.PBRMetallicRoughnessMaterial","baseColor":[0.0,0.0,0.8],"baseTexture":null,"metallic":0.0,"roughness":0.1,"metallicRoughnessTexture":null,"disableLighting":false,"invertNormalMapX":false,"invertNormalMapY":false,"normalTexture":null,"emissive":[0.0,0.0,0.0],"emissiveTexture":null,"occlusionStrength":1.0,"occlusionTexture":null,"transparencyMode":0,"doubleSided":false,"clearCoat":{"isEnabled":false,"intensity":1.0,"roughness":0.0,"indexOfRefraction":1.5,"texture":null,"bumpTexture":null,"isTintEnabled":false,"tintColor":[1.0,1.0,1.0],"tintThickness":1.0,"tintTexture":null},"_unlit":true,"name":"StandardArnoldUnlitMaterial","id":"79CDF1A6-4409-889B-46A9-43A586C10D94","backFaceCulling":true,"wireframe":false,"alpha":1.0,"alphaMode":2,"maxSimultaneousLights":4,"metadata":null},{"customType":"BABYLON.StandardMaterial","ambient":[1.0,1.0,1.0],"diffuse":[0.5,0.5,0.5],"specular":[0.0,0.0,0.0],"emissive":[0.5,0.5,0.5],"specularPower":25.6,"diffuseTexture":null,"diffuseFresnelParameters":null,"ambientTexture":null,"opacityTexture":null,"opacityFresnelParameters":null,"reflectionTexture":null,"reflectionFresnelParameters":null,"emissiveTexture":null,"lightmapTexture":null,"useLightmapAsShadowmap":false,"emissiveFresnelParameters":null,"specularTexture":null,"bumpTexture":null,"useSpecularOverAlpha":true,"disableLighting":true,"useEmissiveAsIllumination":false,"linkEmissiveWithDiffuse":false,"twoSidedLighting":false,"useGlossinessFromSpecularMapAlpha":false,"name":"lambert1","id":"C33371E3-49CC-50AB-9549-80BD2392C0F8","backFaceCulling":true,"wireframe":false,"alpha":1.0,"alphaMode":2,"maxSimultaneousLights":4,"metadata":{}}],"multiMaterials":[],"particleSystems":null,"lensFlareSystems":null,"shadowGenerators":[],"skeletons":[],"actions":null,"metadata":null,"workerCollisions":false}
\ No newline at end of file
diff --git a/Maya/Samples/babylon/CustomUserAttributes/Binary/CustomUserAttributes.binary.babylon b/Maya/Samples/babylon/CustomUserAttributes/Binary/CustomUserAttributes.binary.babylon
new file mode 100644
index 00000000..3b324f36
--- /dev/null
+++ b/Maya/Samples/babylon/CustomUserAttributes/Binary/CustomUserAttributes.binary.babylon
@@ -0,0 +1,696 @@
+{
+ "producer": {
+ "name": "Maya",
+ "version": "2018",
+ "exporter_version": "1.4.0",
+ "file": "CustomUserAttributes.babylon"
+ },
+ "autoClear": true,
+ "clearColor": [
+ 0.2,
+ 0.2,
+ 0.3
+ ],
+ "ambientColor": [
+ 0.0,
+ 0.0,
+ 0.0
+ ],
+ "fogMode": 0,
+ "fogColor": null,
+ "fogStart": 0.0,
+ "fogEnd": 0.0,
+ "fogDensity": 0.0,
+ "gravity": [
+ 0.0,
+ 0.0,
+ -0.9
+ ],
+ "physicsEngine": null,
+ "physicsEnabled": false,
+ "physicsGravity": null,
+ "cameras": [
+ {
+ "isStereoscopicSideBySide": false,
+ "lockedTargetId": "9D22FC8F-4E96-CA90-DA62-EEB4A0C4BC9B",
+ "type": "FreeCamera",
+ "rotation": null,
+ "rotationQuaternion": [
+ 0.243,
+ -0.1908,
+ 0.0488,
+ 0.9498
+ ],
+ "fov": 0.6606,
+ "minZ": 0.1,
+ "maxZ": 10000.0,
+ "speed": 1.0,
+ "inertia": 0.9,
+ "interaxialDistance": 0.0637,
+ "checkCollisions": false,
+ "applyGravity": false,
+ "ellipsoid": null,
+ "mode": 0,
+ "orthoLeft": null,
+ "orthoRight": null,
+ "orthoBottom": null,
+ "orthoTop": null,
+ "name": "camera1",
+ "id": "926F38F2-489F-8954-56FC-3A9C140247DA",
+ "parentId": "46271F21-417B-4B87-A0BD-F2922B98595B",
+ "position": [
+ 3.448,
+ 4.8982,
+ -8.2607
+ ],
+ "animations": [
+ {
+ "name": "rotationQuaternion animation",
+ "property": "rotationQuaternion",
+ "dataType": 2,
+ "enableBlending": false,
+ "blendingSpeed": 0.01,
+ "loopBehavior": 1,
+ "framePerSecond": 24,
+ "keys": [
+ {
+ "frame": 1,
+ "values": [
+ 0.243,
+ -0.1908,
+ 0.0488,
+ 0.9498
+ ]
+ },
+ {
+ "frame": 200,
+ "values": [
+ 0.243,
+ -0.1908,
+ 0.0488,
+ 0.9498
+ ]
+ }
+ ]
+ },
+ {
+ "name": "position animation",
+ "property": "position",
+ "dataType": 1,
+ "enableBlending": false,
+ "blendingSpeed": 0.01,
+ "loopBehavior": 1,
+ "framePerSecond": 24,
+ "keys": [
+ {
+ "frame": 1,
+ "values": [
+ 3.448,
+ 4.8982,
+ -8.2607
+ ]
+ },
+ {
+ "frame": 200,
+ "values": [
+ 3.448,
+ 4.8982,
+ -8.2607
+ ]
+ }
+ ]
+ },
+ {
+ "name": "visibility animation",
+ "property": "visibility",
+ "dataType": 0,
+ "enableBlending": false,
+ "blendingSpeed": 0.01,
+ "loopBehavior": 1,
+ "framePerSecond": 24,
+ "keys": [
+ {
+ "frame": 1,
+ "values": [
+ 1.0
+ ]
+ },
+ {
+ "frame": 200,
+ "values": [
+ 1.0
+ ]
+ }
+ ]
+ }
+ ],
+ "autoAnimate": true,
+ "autoAnimateFrom": 1,
+ "autoAnimateTo": 200,
+ "autoAnimateLoop": true,
+ "metadata": {
+ "vect": [
+ 5.0,
+ 4.0,
+ 3.0
+ ],
+ "int": 2,
+ "string": "test",
+ "float": 1.5,
+ "bool": 1,
+ "enum": 1
+ }
+ }
+ ],
+ "activeCameraID": "926F38F2-489F-8954-56FC-3A9C140247DA",
+ "lights": [
+ {
+ "direction": [
+ 0.0,
+ 0.0,
+ 1.0
+ ],
+ "type": 0,
+ "diffuse": [
+ 1.0,
+ 1.0,
+ 1.0
+ ],
+ "specular": [
+ 1.0,
+ 1.0,
+ 1.0
+ ],
+ "intensity": 1.0241,
+ "range": 3.40282347E+38,
+ "exponent": 0.0,
+ "angle": 0.0,
+ "groundColor": null,
+ "excludedMeshesIds": null,
+ "includedOnlyMeshesIds": [
+ "9B24696A-4279-EAD8-5E67-F3B48328961B",
+ "9C75F1A5-49D0-5822-B5FD-DA816DCF0CB2"
+ ],
+ "lightmapMode": null,
+ "falloffType": null,
+ "name": "pointLight1",
+ "id": "FA3DB035-4030-0F3F-037B-2B8BBB882BC7",
+ "parentId": null,
+ "position": [
+ 2.4253,
+ 2.8104,
+ -1.8836
+ ],
+ "animations": [],
+ "autoAnimate": true,
+ "autoAnimateFrom": 1,
+ "autoAnimateTo": 200,
+ "autoAnimateLoop": true,
+ "metadata": {
+ "float": 2.3,
+ "vect": [
+ 5.0,
+ 4.0,
+ 3.2
+ ],
+ "int": 5,
+ "string": "test",
+ "bool": 1,
+ "enum": 1
+ }
+ }
+ ],
+ "meshes": [
+ {
+ "materialId": "88258896-47E7-C049-5878-B1A9F78DF165",
+ "isEnabled": true,
+ "isVisible": true,
+ "positions": null,
+ "normals": null,
+ "tangents": [
+ 1.0,
+ 0.0,
+ 0.0,
+ -1.0,
+ 1.0,
+ 0.0,
+ 0.0,
+ -1.0,
+ 1.0,
+ 0.0,
+ 0.0,
+ -1.0,
+ 1.0,
+ 0.0,
+ 0.0,
+ -1.0,
+ 1.0,
+ 0.0,
+ 0.0,
+ -1.0,
+ 1.0,
+ 0.0,
+ 0.0,
+ -1.0,
+ 1.0,
+ 0.0,
+ 0.0,
+ -1.0,
+ 1.0,
+ 0.0,
+ 0.0,
+ -1.0,
+ 1.0,
+ 0.0,
+ 0.0,
+ -1.0,
+ 1.0,
+ 0.0,
+ 0.0,
+ -1.0,
+ 1.0,
+ 0.0,
+ 0.0,
+ -1.0,
+ 1.0,
+ 0.0,
+ 0.0,
+ -1.0,
+ 1.0,
+ 0.0,
+ 0.0,
+ -1.0,
+ 1.0,
+ 0.0,
+ 0.0,
+ -1.0,
+ 1.0,
+ 0.0,
+ 0.0,
+ -1.0,
+ 1.0,
+ 0.0,
+ 0.0,
+ -1.0,
+ 0.0,
+ 0.0,
+ 1.0,
+ -1.0,
+ 0.0,
+ 0.0,
+ 1.0,
+ -1.0,
+ 0.0,
+ 0.0,
+ 1.0,
+ -1.0,
+ 0.0,
+ 0.0,
+ 1.0,
+ -1.0,
+ 0.0,
+ 0.0,
+ -1.0,
+ -1.0,
+ 0.0,
+ 0.0,
+ -1.0,
+ -1.0,
+ 0.0,
+ 0.0,
+ -1.0,
+ -1.0,
+ 0.0,
+ 0.0,
+ -1.0,
+ -1.0
+ ],
+ "uvs": null,
+ "uvs2": null,
+ "colors": null,
+ "hasVertexAlpha": false,
+ "matricesIndices": null,
+ "matricesWeights": null,
+ "matricesIndicesExtra": null,
+ "matricesWeightsExtra": null,
+ "indices": null,
+ "receiveShadows": false,
+ "infiniteDistance": false,
+ "billboardMode": 0,
+ "visibility": 1.0,
+ "subMeshes": null,
+ "instances": [
+ {
+ "rotation": null,
+ "scaling": [
+ 1.0,
+ 1.0,
+ 1.0
+ ],
+ "rotationQuaternion": [
+ 0.0,
+ 0.0,
+ 0.0,
+ 1.0
+ ],
+ "actions": null,
+ "checkCollisions": false,
+ "pickable": false,
+ "showBoundingBox": false,
+ "showSubMeshesBoundingBox": false,
+ "alphaIndex": 0,
+ "physicsImpostor": 0,
+ "physicsMass": 0.0,
+ "physicsFriction": 0.0,
+ "physicsRestitution": 0.0,
+ "name": "pCube2",
+ "id": "9C75F1A5-49D0-5822-B5FD-DA816DCF0CB2",
+ "parentId": null,
+ "position": [
+ 2.0,
+ 0.0,
+ 0.0
+ ],
+ "animations": [],
+ "autoAnimate": true,
+ "autoAnimateFrom": 1,
+ "autoAnimateTo": 200,
+ "autoAnimateLoop": true,
+ "metadata": {
+ "vect": [
+ 4.0,
+ 5.0,
+ 6.0
+ ],
+ "int": 8,
+ "string": "test instance",
+ "float": 10.5,
+ "bool": 0,
+ "enum": 0
+ }
+ }
+ ],
+ "skeletonId": -1,
+ "numBoneInfluencers": 4,
+ "applyFog": false,
+ "lodMeshIds": null,
+ "lodDistances": null,
+ "lodCoverages": null,
+ "rotation": null,
+ "scaling": [
+ 1.0,
+ 1.0,
+ 1.0
+ ],
+ "rotationQuaternion": [
+ 0.0,
+ 0.0,
+ 0.0,
+ 1.0
+ ],
+ "actions": null,
+ "checkCollisions": false,
+ "pickable": true,
+ "showBoundingBox": false,
+ "showSubMeshesBoundingBox": false,
+ "alphaIndex": 0,
+ "physicsImpostor": 0,
+ "physicsMass": 0.0,
+ "physicsFriction": 0.0,
+ "physicsRestitution": 0.0,
+ "name": "pCube1",
+ "id": "9B24696A-4279-EAD8-5E67-F3B48328961B",
+ "parentId": null,
+ "position": [
+ 0.0,
+ 0.0,
+ 0.0
+ ],
+ "animations": [],
+ "autoAnimate": true,
+ "autoAnimateFrom": 1,
+ "autoAnimateTo": 200,
+ "autoAnimateLoop": true,
+ "metadata": {
+ "vect": [
+ 1.0,
+ 2.0,
+ 3.0
+ ],
+ "int": 4,
+ "string": "test",
+ "float": 5.5,
+ "bool": 1,
+ "enum": 1
+ },
+ "boundingBoxMinimum": [
+ -0.5,
+ -0.5,
+ -0.5
+ ],
+ "boundingBoxMaximum": [
+ 0.5,
+ 0.5,
+ 0.5
+ ],
+ "delayLoadingFile": "CustomUserAttributes.pCube1.9B24696A-4279-EAD8-5E67-F3B48328961B.babylonbinarymeshdata",
+ "hasUVs": true,
+ "_binaryInfo": {
+ "positionsAttrDesc": {
+ "count": 72,
+ "stride": 3,
+ "offset": 0,
+ "dataType": 1
+ },
+ "normalsAttrDesc": {
+ "count": 72,
+ "stride": 3,
+ "offset": 288,
+ "dataType": 1
+ },
+ "uvsAttrDesc": {
+ "count": 48,
+ "stride": 2,
+ "offset": 576,
+ "dataType": 1
+ },
+ "indicesAttrDesc": {
+ "count": 36,
+ "stride": 1,
+ "offset": 768,
+ "dataType": 0
+ },
+ "subMeshesAttrDesc": {
+ "count": 1,
+ "stride": 5,
+ "offset": 912,
+ "dataType": 0
+ }
+ }
+ },
+ {
+ "materialId": null,
+ "isEnabled": true,
+ "isVisible": true,
+ "positions": null,
+ "normals": null,
+ "tangents": null,
+ "uvs": null,
+ "uvs2": null,
+ "colors": null,
+ "hasVertexAlpha": false,
+ "matricesIndices": null,
+ "matricesWeights": null,
+ "matricesIndicesExtra": null,
+ "matricesWeightsExtra": null,
+ "indices": null,
+ "receiveShadows": false,
+ "infiniteDistance": false,
+ "billboardMode": 0,
+ "visibility": 1.0,
+ "subMeshes": null,
+ "instances": null,
+ "skeletonId": -1,
+ "numBoneInfluencers": 4,
+ "applyFog": false,
+ "lodMeshIds": null,
+ "lodDistances": null,
+ "lodCoverages": null,
+ "rotation": null,
+ "scaling": [
+ 1.0,
+ 1.0,
+ 1.0
+ ],
+ "rotationQuaternion": [
+ 0.0,
+ 0.0,
+ 0.0,
+ 1.0
+ ],
+ "actions": null,
+ "checkCollisions": false,
+ "pickable": true,
+ "showBoundingBox": false,
+ "showSubMeshesBoundingBox": false,
+ "alphaIndex": 0,
+ "physicsImpostor": 0,
+ "physicsMass": 0.0,
+ "physicsFriction": 0.0,
+ "physicsRestitution": 0.0,
+ "name": "camera1_group",
+ "id": "46271F21-417B-4B87-A0BD-F2922B98595B",
+ "parentId": null,
+ "position": [
+ 0.0,
+ 0.0,
+ 0.0
+ ],
+ "animations": [],
+ "autoAnimate": true,
+ "autoAnimateFrom": 1,
+ "autoAnimateTo": 200,
+ "autoAnimateLoop": true,
+ "metadata": {}
+ },
+ {
+ "materialId": null,
+ "isEnabled": true,
+ "isVisible": true,
+ "positions": null,
+ "normals": null,
+ "tangents": null,
+ "uvs": null,
+ "uvs2": null,
+ "colors": null,
+ "hasVertexAlpha": false,
+ "matricesIndices": null,
+ "matricesWeights": null,
+ "matricesIndicesExtra": null,
+ "matricesWeightsExtra": null,
+ "indices": null,
+ "receiveShadows": false,
+ "infiniteDistance": false,
+ "billboardMode": 0,
+ "visibility": 1.0,
+ "subMeshes": null,
+ "instances": null,
+ "skeletonId": -1,
+ "numBoneInfluencers": 4,
+ "applyFog": false,
+ "lodMeshIds": null,
+ "lodDistances": null,
+ "lodCoverages": null,
+ "rotation": null,
+ "scaling": [
+ 1.0,
+ 1.0,
+ 1.0
+ ],
+ "rotationQuaternion": [
+ 0.0,
+ 0.0,
+ 0.0,
+ 1.0
+ ],
+ "actions": null,
+ "checkCollisions": false,
+ "pickable": true,
+ "showBoundingBox": false,
+ "showSubMeshesBoundingBox": false,
+ "alphaIndex": 0,
+ "physicsImpostor": 0,
+ "physicsMass": 0.0,
+ "physicsFriction": 0.0,
+ "physicsRestitution": 0.0,
+ "name": "camera1_aim",
+ "id": "9D22FC8F-4E96-CA90-DA62-EEB4A0C4BC9B",
+ "parentId": "46271F21-417B-4B87-A0BD-F2922B98595B",
+ "position": [
+ 0.0035,
+ 0.0145,
+ -0.0309
+ ],
+ "animations": [],
+ "autoAnimate": true,
+ "autoAnimateFrom": 1,
+ "autoAnimateTo": 200,
+ "autoAnimateLoop": true,
+ "metadata": {}
+ }
+ ],
+ "sounds": [],
+ "materials": [
+ {
+ "customType": "BABYLON.StandardMaterial",
+ "ambient": [
+ 1.0,
+ 1.0,
+ 1.0
+ ],
+ "diffuse": [
+ 0.5,
+ 0.5,
+ 0.5
+ ],
+ "specular": [
+ 0.0,
+ 0.0,
+ 0.0
+ ],
+ "emissive": [
+ 0.0,
+ 0.0,
+ 0.0
+ ],
+ "specularPower": 25.6,
+ "diffuseTexture": null,
+ "diffuseFresnelParameters": null,
+ "ambientTexture": null,
+ "opacityTexture": null,
+ "opacityFresnelParameters": null,
+ "reflectionTexture": null,
+ "reflectionFresnelParameters": null,
+ "emissiveTexture": null,
+ "lightmapTexture": null,
+ "useLightmapAsShadowmap": false,
+ "emissiveFresnelParameters": null,
+ "specularTexture": null,
+ "bumpTexture": null,
+ "useSpecularOverAlpha": true,
+ "disableLighting": false,
+ "useEmissiveAsIllumination": false,
+ "linkEmissiveWithDiffuse": true,
+ "twoSidedLighting": false,
+ "maxSimultaneousLights": 4,
+ "useGlossinessFromSpecularMapAlpha": false,
+ "name": "lambert1",
+ "id": "88258896-47E7-C049-5878-B1A9F78DF165",
+ "backFaceCulling": true,
+ "wireframe": false,
+ "alpha": 1.0,
+ "alphaMode": 2,
+ "metadata": {
+ "vect": [
+ 1.0,
+ 2.0,
+ 3.5
+ ],
+ "int": 2,
+ "string": "test",
+ "float": 4.0,
+ "bool": 0,
+ "enum": 1
+ }
+ }
+ ],
+ "multiMaterials": [],
+ "particleSystems": null,
+ "lensFlareSystems": null,
+ "shadowGenerators": [],
+ "skeletons": [],
+ "actions": null,
+ "metadata": null,
+ "workerCollisions": false,
+ "useDelayedTextureLoading": true
+}
\ No newline at end of file
diff --git a/Maya/Samples/babylon/CustomUserAttributes/Binary/CustomUserAttributes.pCube1.9B24696A-4279-EAD8-5E67-F3B48328961B.babylonbinarymeshdata b/Maya/Samples/babylon/CustomUserAttributes/Binary/CustomUserAttributes.pCube1.9B24696A-4279-EAD8-5E67-F3B48328961B.babylonbinarymeshdata
new file mode 100644
index 00000000..797b04eb
Binary files /dev/null and b/Maya/Samples/babylon/CustomUserAttributes/Binary/CustomUserAttributes.pCube1.9B24696A-4279-EAD8-5E67-F3B48328961B.babylonbinarymeshdata differ
diff --git a/Maya/Samples/babylon/CustomUserAttributes/CustomUserAttributes.babylon b/Maya/Samples/babylon/CustomUserAttributes/CustomUserAttributes.babylon
new file mode 100644
index 00000000..02ef6a95
--- /dev/null
+++ b/Maya/Samples/babylon/CustomUserAttributes/CustomUserAttributes.babylon
@@ -0,0 +1 @@
+{"producer":{"name":"Maya","version":"2018","exporter_version":"1.4.0","file":"CustomUserAttributes.babylon"},"autoClear":true,"clearColor":[0.2,0.2,0.3],"ambientColor":[0.0,0.0,0.0],"fogMode":0,"fogColor":null,"fogStart":0.0,"fogEnd":0.0,"fogDensity":0.0,"gravity":[0.0,0.0,-0.9],"physicsEngine":null,"physicsEnabled":false,"physicsGravity":null,"cameras":[{"isStereoscopicSideBySide":false,"lockedTargetId":"9D22FC8F-4E96-CA90-DA62-EEB4A0C4BC9B","type":"FreeCamera","rotation":null,"rotationQuaternion":[0.243,-0.1908,0.0488,0.9498],"fov":0.6606,"minZ":0.1,"maxZ":10000.0,"speed":1.0,"inertia":0.9,"interaxialDistance":0.0637,"checkCollisions":false,"applyGravity":false,"ellipsoid":null,"mode":0,"orthoLeft":null,"orthoRight":null,"orthoBottom":null,"orthoTop":null,"name":"camera1","id":"926F38F2-489F-8954-56FC-3A9C140247DA","parentId":"46271F21-417B-4B87-A0BD-F2922B98595B","position":[3.448,4.8982,-8.2607],"animations":[{"name":"rotationQuaternion animation","property":"rotationQuaternion","dataType":2,"enableBlending":false,"blendingSpeed":0.01,"loopBehavior":1,"framePerSecond":24,"keys":[{"frame":1,"values":[0.243,-0.1908,0.0488,0.9498]},{"frame":200,"values":[0.243,-0.1908,0.0488,0.9498]}]},{"name":"position animation","property":"position","dataType":1,"enableBlending":false,"blendingSpeed":0.01,"loopBehavior":1,"framePerSecond":24,"keys":[{"frame":1,"values":[3.448,4.8982,-8.2607]},{"frame":200,"values":[3.448,4.8982,-8.2607]}]},{"name":"visibility animation","property":"visibility","dataType":0,"enableBlending":false,"blendingSpeed":0.01,"loopBehavior":1,"framePerSecond":24,"keys":[{"frame":1,"values":[1.0]},{"frame":200,"values":[1.0]}]}],"autoAnimate":true,"autoAnimateFrom":1,"autoAnimateTo":200,"autoAnimateLoop":true,"metadata":{"vect":[5.0,4.0,3.0],"int":2,"string":"test","float":1.5,"bool":1,"enum":1}}],"activeCameraID":"926F38F2-489F-8954-56FC-3A9C140247DA","lights":[{"direction":[0.0,0.0,1.0],"type":0,"diffuse":[1.0,1.0,1.0],"specular":[1.0,1.0,1.0],"intensity":1.0241,"range":3.40282347E+38,"exponent":0.0,"angle":0.0,"groundColor":null,"excludedMeshesIds":null,"includedOnlyMeshesIds":["9B24696A-4279-EAD8-5E67-F3B48328961B","9C75F1A5-49D0-5822-B5FD-DA816DCF0CB2"],"lightmapMode":null,"falloffType":null,"name":"pointLight1","id":"FA3DB035-4030-0F3F-037B-2B8BBB882BC7","parentId":null,"position":[2.4253,2.8104,-1.8836],"animations":[],"autoAnimate":true,"autoAnimateFrom":1,"autoAnimateTo":200,"autoAnimateLoop":true,"metadata":{"float":2.3,"vect":[5.0,4.0,3.2],"int":5,"string":"test","bool":1,"enum":1}}],"meshes":[{"materialId":"88258896-47E7-C049-5878-B1A9F78DF165","isEnabled":true,"isVisible":true,"positions":[-0.5,-0.5,-0.5,0.5,-0.5,-0.5,-0.5,0.5,-0.5,0.5,0.5,-0.5,-0.5,0.5,-0.5,0.5,0.5,-0.5,-0.5,0.5,0.5,0.5,0.5,0.5,-0.5,0.5,0.5,0.5,0.5,0.5,-0.5,-0.5,0.5,0.5,-0.5,0.5,-0.5,-0.5,0.5,0.5,-0.5,0.5,-0.5,-0.5,-0.5,0.5,-0.5,-0.5,0.5,-0.5,-0.5,0.5,-0.5,0.5,0.5,0.5,-0.5,0.5,0.5,0.5,-0.5,-0.5,0.5,-0.5,-0.5,-0.5,-0.5,0.5,0.5,-0.5,0.5,-0.5],"normals":[0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0],"tangents":[1.0,0.0,0.0,-1.0,1.0,0.0,0.0,-1.0,1.0,0.0,0.0,-1.0,1.0,0.0,0.0,-1.0,1.0,0.0,0.0,-1.0,1.0,0.0,0.0,-1.0,1.0,0.0,0.0,-1.0,1.0,0.0,0.0,-1.0,1.0,0.0,0.0,-1.0,1.0,0.0,0.0,-1.0,1.0,0.0,0.0,-1.0,1.0,0.0,0.0,-1.0,1.0,0.0,0.0,-1.0,1.0,0.0,0.0,-1.0,1.0,0.0,0.0,-1.0,1.0,0.0,0.0,-1.0,0.0,0.0,1.0,-1.0,0.0,0.0,1.0,-1.0,0.0,0.0,1.0,-1.0,0.0,0.0,1.0,-1.0,0.0,0.0,-1.0,-1.0,0.0,0.0,-1.0,-1.0,0.0,0.0,-1.0,-1.0,0.0,0.0,-1.0,-1.0],"uvs":[0.375,0.0,0.625,0.0,0.375,0.25,0.625,0.25,0.375,0.25,0.625,0.25,0.375,0.5,0.625,0.5,0.375,0.5,0.625,0.5,0.375,0.75,0.625,0.75,0.375,0.75,0.625,0.75,0.375,1.0,0.625,1.0,0.625,0.0,0.875,0.0,0.625,0.25,0.875,0.25,0.125,0.0,0.375,0.0,0.125,0.25,0.375,0.25],"uvs2":null,"colors":null,"hasVertexAlpha":false,"matricesIndices":null,"matricesWeights":null,"matricesIndicesExtra":null,"matricesWeightsExtra":null,"indices":[0,1,2,2,1,3,4,5,6,6,5,7,8,9,10,10,9,11,12,13,14,14,13,15,16,17,18,18,17,19,20,21,22,22,21,23],"receiveShadows":false,"infiniteDistance":false,"billboardMode":0,"visibility":1.0,"subMeshes":[{"materialIndex":0,"verticesStart":0,"verticesCount":24,"indexStart":0,"indexCount":36}],"instances":[{"rotation":null,"scaling":[1.0,1.0,1.0],"rotationQuaternion":[0.0,0.0,0.0,1.0],"actions":null,"checkCollisions":false,"pickable":false,"showBoundingBox":false,"showSubMeshesBoundingBox":false,"alphaIndex":0,"physicsImpostor":0,"physicsMass":0.0,"physicsFriction":0.0,"physicsRestitution":0.0,"name":"pCube2","id":"9C75F1A5-49D0-5822-B5FD-DA816DCF0CB2","parentId":null,"position":[2.0,0.0,0.0],"animations":[],"autoAnimate":true,"autoAnimateFrom":1,"autoAnimateTo":200,"autoAnimateLoop":true,"metadata":{"vect":[4.0,5.0,6.0],"int":8,"string":"test instance","float":10.5,"bool":0,"enum":0}}],"skeletonId":-1,"numBoneInfluencers":4,"applyFog":false,"lodMeshIds":null,"lodDistances":null,"lodCoverages":null,"rotation":null,"scaling":[1.0,1.0,1.0],"rotationQuaternion":[0.0,0.0,0.0,1.0],"actions":null,"checkCollisions":false,"pickable":true,"showBoundingBox":false,"showSubMeshesBoundingBox":false,"alphaIndex":0,"physicsImpostor":0,"physicsMass":0.0,"physicsFriction":0.0,"physicsRestitution":0.0,"name":"pCube1","id":"9B24696A-4279-EAD8-5E67-F3B48328961B","parentId":null,"position":[0.0,0.0,0.0],"animations":[],"autoAnimate":true,"autoAnimateFrom":1,"autoAnimateTo":200,"autoAnimateLoop":true,"metadata":{"vect":[1.0,2.0,3.0],"int":4,"string":"test","float":5.5,"bool":1,"enum":1}},{"materialId":null,"isEnabled":true,"isVisible":true,"positions":null,"normals":null,"tangents":null,"uvs":null,"uvs2":null,"colors":null,"hasVertexAlpha":false,"matricesIndices":null,"matricesWeights":null,"matricesIndicesExtra":null,"matricesWeightsExtra":null,"indices":null,"receiveShadows":false,"infiniteDistance":false,"billboardMode":0,"visibility":1.0,"subMeshes":null,"instances":null,"skeletonId":-1,"numBoneInfluencers":4,"applyFog":false,"lodMeshIds":null,"lodDistances":null,"lodCoverages":null,"rotation":null,"scaling":[1.0,1.0,1.0],"rotationQuaternion":[0.0,0.0,0.0,1.0],"actions":null,"checkCollisions":false,"pickable":true,"showBoundingBox":false,"showSubMeshesBoundingBox":false,"alphaIndex":0,"physicsImpostor":0,"physicsMass":0.0,"physicsFriction":0.0,"physicsRestitution":0.0,"name":"camera1_group","id":"46271F21-417B-4B87-A0BD-F2922B98595B","parentId":null,"position":[0.0,0.0,0.0],"animations":[],"autoAnimate":true,"autoAnimateFrom":1,"autoAnimateTo":200,"autoAnimateLoop":true,"metadata":{}},{"materialId":null,"isEnabled":true,"isVisible":true,"positions":null,"normals":null,"tangents":null,"uvs":null,"uvs2":null,"colors":null,"hasVertexAlpha":false,"matricesIndices":null,"matricesWeights":null,"matricesIndicesExtra":null,"matricesWeightsExtra":null,"indices":null,"receiveShadows":false,"infiniteDistance":false,"billboardMode":0,"visibility":1.0,"subMeshes":null,"instances":null,"skeletonId":-1,"numBoneInfluencers":4,"applyFog":false,"lodMeshIds":null,"lodDistances":null,"lodCoverages":null,"rotation":null,"scaling":[1.0,1.0,1.0],"rotationQuaternion":[0.0,0.0,0.0,1.0],"actions":null,"checkCollisions":false,"pickable":true,"showBoundingBox":false,"showSubMeshesBoundingBox":false,"alphaIndex":0,"physicsImpostor":0,"physicsMass":0.0,"physicsFriction":0.0,"physicsRestitution":0.0,"name":"camera1_aim","id":"9D22FC8F-4E96-CA90-DA62-EEB4A0C4BC9B","parentId":"46271F21-417B-4B87-A0BD-F2922B98595B","position":[0.0035,0.0145,-0.0309],"animations":[],"autoAnimate":true,"autoAnimateFrom":1,"autoAnimateTo":200,"autoAnimateLoop":true,"metadata":{}}],"sounds":[],"materials":[{"customType":"BABYLON.StandardMaterial","ambient":[1.0,1.0,1.0],"diffuse":[0.5,0.5,0.5],"specular":[0.0,0.0,0.0],"emissive":[0.0,0.0,0.0],"specularPower":25.6,"diffuseTexture":null,"diffuseFresnelParameters":null,"ambientTexture":null,"opacityTexture":null,"opacityFresnelParameters":null,"reflectionTexture":null,"reflectionFresnelParameters":null,"emissiveTexture":null,"lightmapTexture":null,"useLightmapAsShadowmap":false,"emissiveFresnelParameters":null,"specularTexture":null,"bumpTexture":null,"useSpecularOverAlpha":true,"disableLighting":false,"useEmissiveAsIllumination":false,"linkEmissiveWithDiffuse":true,"twoSidedLighting":false,"maxSimultaneousLights":4,"useGlossinessFromSpecularMapAlpha":false,"name":"lambert1","id":"88258896-47E7-C049-5878-B1A9F78DF165","backFaceCulling":true,"wireframe":false,"alpha":1.0,"alphaMode":2,"metadata":{"vect":[1.0,2.0,3.5],"int":2,"string":"test","float":4.0,"bool":0,"enum":1}}],"multiMaterials":[],"particleSystems":null,"lensFlareSystems":null,"shadowGenerators":[],"skeletons":[],"actions":null,"metadata":null,"workerCollisions":false}
\ No newline at end of file
diff --git a/Maya/Samples/babylon/DoubleSidedMaterial/DoubleSidedMaterial.babylon b/Maya/Samples/babylon/DoubleSidedMaterial/DoubleSidedMaterial.babylon
new file mode 100644
index 00000000..e6600443
--- /dev/null
+++ b/Maya/Samples/babylon/DoubleSidedMaterial/DoubleSidedMaterial.babylon
@@ -0,0 +1,15146 @@
+{
+ "producer": {
+ "name": "Maya",
+ "version": "2018",
+ "exporter_version": "1.4.0",
+ "file": "DoubleSidedMaterial.babylon"
+ },
+ "autoClear": true,
+ "clearColor": [
+ 0.2,
+ 0.2,
+ 0.3
+ ],
+ "ambientColor": [
+ 0,
+ 0,
+ 0
+ ],
+ "fogMode": 0,
+ "fogColor": null,
+ "fogStart": 0,
+ "fogEnd": 0,
+ "fogDensity": 0,
+ "gravity": [
+ 0,
+ 0,
+ -0.9
+ ],
+ "physicsEngine": null,
+ "physicsEnabled": false,
+ "physicsGravity": null,
+ "lights": [
+ {
+ "direction": [
+ 0,
+ 1,
+ 0
+ ],
+ "type": 3,
+ "diffuse": [
+ 1,
+ 1,
+ 1
+ ],
+ "specular": [
+ 1,
+ 1,
+ 1
+ ],
+ "intensity": 1,
+ "range": 3.40282347e+38,
+ "exponent": 0,
+ "angle": 0,
+ "groundColor": [
+ 0,
+ 0,
+ 0
+ ],
+ "excludedMeshesIds": null,
+ "includedOnlyMeshesIds": null,
+ "lightmapMode": null,
+ "falloffType": null,
+ "name": "Default light",
+ "id": "6d5bb995-2ea8-4a26-af49-27fd199c9eca",
+ "parentId": null,
+ "position": [
+ 0,
+ 0,
+ 0
+ ],
+ "animations": null,
+ "autoAnimate": false,
+ "autoAnimateFrom": 0,
+ "autoAnimateTo": 0,
+ "autoAnimateLoop": false,
+ "metadata": null
+ }
+ ],
+ "meshes": [
+ {
+ "materialId": "13586E33-45A4-88AF-D0C1-7C963DD5E6AF",
+ "isEnabled": true,
+ "isVisible": true,
+ "positions": [
+ -0.5,
+ 0,
+ -0.5,
+ 0.5,
+ 0,
+ -0.5,
+ -0.5,
+ 0,
+ 0.5,
+ 0.5,
+ 0,
+ 0.5,
+ -0.5,
+ 0,
+ -0.5,
+ 0.5,
+ 0,
+ -0.5,
+ -0.5,
+ 0,
+ 0.5,
+ 0.5,
+ 0,
+ 0.5
+ ],
+ "normals": [
+ 0,
+ 1,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ -1,
+ 0,
+ 0,
+ -1,
+ 0,
+ 0,
+ -1,
+ 0,
+ 0,
+ -1,
+ 0
+ ],
+ "tangents": [
+ 1,
+ 0,
+ 0,
+ -1,
+ 1,
+ 0,
+ 0,
+ -1,
+ 1,
+ 0,
+ 0,
+ -1,
+ 1,
+ 0,
+ 0,
+ -1,
+ 1,
+ 0,
+ 0,
+ -1,
+ 1,
+ 0,
+ 0,
+ -1,
+ 1,
+ 0,
+ 0,
+ -1,
+ 1,
+ 0,
+ 0,
+ -1
+ ],
+ "uvs": [
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 1,
+ 1,
+ 1,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 1,
+ 1,
+ 1
+ ],
+ "uvs2": null,
+ "colors": null,
+ "hasVertexAlpha": false,
+ "matricesIndices": null,
+ "matricesWeights": null,
+ "matricesIndicesExtra": null,
+ "matricesWeightsExtra": null,
+ "indices": [
+ 0,
+ 1,
+ 2,
+ 2,
+ 1,
+ 3,
+ 6,
+ 5,
+ 4,
+ 7,
+ 5,
+ 6
+ ],
+ "receiveShadows": false,
+ "infiniteDistance": false,
+ "billboardMode": 0,
+ "visibility": 1,
+ "subMeshes": [
+ {
+ "materialIndex": 0,
+ "verticesStart": 0,
+ "verticesCount": 4,
+ "indexStart": 0,
+ "indexCount": 6
+ },
+ {
+ "materialIndex": 1,
+ "verticesStart": 4,
+ "verticesCount": 4,
+ "indexStart": 6,
+ "indexCount": 6
+ }
+ ],
+ "instances": null,
+ "skeletonId": -1,
+ "numBoneInfluencers": 4,
+ "applyFog": false,
+ "lodMeshIds": null,
+ "lodDistances": null,
+ "lodCoverages": null,
+ "rotation": null,
+ "scaling": [
+ 1,
+ 1,
+ 1
+ ],
+ "rotationQuaternion": [
+ -0.7071,
+ 0,
+ 0,
+ 0.7071
+ ],
+ "actions": null,
+ "checkCollisions": false,
+ "pickable": true,
+ "showBoundingBox": false,
+ "showSubMeshesBoundingBox": false,
+ "alphaIndex": 0,
+ "physicsImpostor": 0,
+ "physicsMass": 0,
+ "physicsFriction": 0,
+ "physicsRestitution": 0,
+ "name": "pPlane1",
+ "id": "A18D4DC9-446C-CC45-D62B-B58CF2452F33",
+ "parentId": null,
+ "position": [
+ 0,
+ 0.4219,
+ 0.0634
+ ],
+ "animations": [],
+ "autoAnimate": true,
+ "autoAnimateFrom": 1,
+ "autoAnimateTo": 200,
+ "autoAnimateLoop": true,
+ "metadata": {}
+ },
+ {
+ "materialId": "13586E33-45A4-88AF-D0C1-7C963DD5E6AF",
+ "isEnabled": true,
+ "isVisible": true,
+ "positions": [
+ -0.5,
+ -0.5,
+ 0.5,
+ 0.5,
+ -0.5,
+ 0.5,
+ -0.5,
+ -0.5,
+ -0.5,
+ 0.5,
+ -0.5,
+ -0.5,
+ 0.5,
+ -0.5,
+ -0.5,
+ 0.5,
+ -0.5,
+ 0.5,
+ 0.5,
+ 0.5,
+ -0.5,
+ 0.5,
+ 0.5,
+ 0.5,
+ -0.5,
+ -0.5,
+ 0.5,
+ -0.5,
+ -0.5,
+ -0.5,
+ -0.5,
+ 0.5,
+ 0.5,
+ -0.5,
+ 0.5,
+ -0.5,
+ -0.5,
+ -0.5,
+ 0.5,
+ 0.5,
+ -0.5,
+ 0.5,
+ -0.5,
+ -0.5,
+ -0.5,
+ 0.5,
+ -0.5,
+ -0.5,
+ 0.5,
+ -0.5,
+ -0.5,
+ 0.5,
+ -0.5,
+ 0.5,
+ 0.5,
+ 0.5,
+ -0.5,
+ 0.5,
+ 0.5,
+ 0.5,
+ -0.5,
+ -0.5,
+ 0.5,
+ -0.5,
+ -0.5,
+ -0.5,
+ -0.5,
+ 0.5,
+ 0.5,
+ -0.5,
+ 0.5,
+ -0.5
+ ],
+ "normals": [
+ 0,
+ -1,
+ 0,
+ 0,
+ -1,
+ 0,
+ 0,
+ -1,
+ 0,
+ 0,
+ -1,
+ 0,
+ 1,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ -1,
+ 0,
+ 0,
+ -1,
+ 0,
+ 0,
+ -1,
+ 0,
+ 0,
+ -1,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 1,
+ 0,
+ -1,
+ 0,
+ 0,
+ -1,
+ 0,
+ 0,
+ -1,
+ 0,
+ 0,
+ -1,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0
+ ],
+ "tangents": [
+ 1,
+ 0,
+ 0,
+ -1,
+ 1,
+ 0,
+ 0,
+ -1,
+ 1,
+ 0,
+ 0,
+ -1,
+ 1,
+ 0,
+ 0,
+ -1,
+ 0,
+ 0,
+ 1,
+ -1,
+ 0,
+ 0,
+ 1,
+ -1,
+ 0,
+ 0,
+ 1,
+ -1,
+ 0,
+ 0,
+ 1,
+ -1,
+ 0,
+ 0,
+ -1,
+ -1,
+ 0,
+ 0,
+ -1,
+ -1,
+ 0,
+ 0,
+ -1,
+ -1,
+ 0,
+ 0,
+ -1,
+ -1,
+ 1,
+ 0,
+ 0,
+ -1,
+ 1,
+ 0,
+ 0,
+ -1,
+ 1,
+ 0,
+ 0,
+ -1,
+ 1,
+ 0,
+ 0,
+ -1,
+ 0,
+ 0,
+ 1,
+ -1,
+ 0,
+ 0,
+ 1,
+ -1,
+ 0,
+ 0,
+ 1,
+ -1,
+ 0,
+ 0,
+ 1,
+ -1,
+ 0,
+ 0,
+ -1,
+ -1,
+ 0,
+ 0,
+ -1,
+ -1,
+ 0,
+ 0,
+ -1,
+ -1,
+ 0,
+ 0,
+ -1,
+ -1
+ ],
+ "uvs": [
+ 0.375,
+ 0.75,
+ 0.625,
+ 0.75,
+ 0.375,
+ 1,
+ 0.625,
+ 1,
+ 0.625,
+ 0,
+ 0.875,
+ 0,
+ 0.625,
+ 0.25,
+ 0.875,
+ 0.25,
+ 0.125,
+ 0,
+ 0.375,
+ 0,
+ 0.125,
+ 0.25,
+ 0.375,
+ 0.25,
+ 0.375,
+ 0.75,
+ 0.625,
+ 0.75,
+ 0.375,
+ 1,
+ 0.625,
+ 1,
+ 0.625,
+ 0,
+ 0.875,
+ 0,
+ 0.625,
+ 0.25,
+ 0.875,
+ 0.25,
+ 0.125,
+ 0,
+ 0.375,
+ 0,
+ 0.125,
+ 0.25,
+ 0.375,
+ 0.25
+ ],
+ "uvs2": null,
+ "colors": null,
+ "hasVertexAlpha": false,
+ "matricesIndices": null,
+ "matricesWeights": null,
+ "matricesIndicesExtra": null,
+ "matricesWeightsExtra": null,
+ "indices": [
+ 0,
+ 1,
+ 2,
+ 2,
+ 1,
+ 3,
+ 4,
+ 5,
+ 6,
+ 6,
+ 5,
+ 7,
+ 8,
+ 9,
+ 10,
+ 10,
+ 9,
+ 11,
+ 14,
+ 13,
+ 12,
+ 15,
+ 13,
+ 14,
+ 18,
+ 17,
+ 16,
+ 19,
+ 17,
+ 18,
+ 22,
+ 21,
+ 20,
+ 23,
+ 21,
+ 22
+ ],
+ "receiveShadows": false,
+ "infiniteDistance": false,
+ "billboardMode": 0,
+ "visibility": 1,
+ "subMeshes": [
+ {
+ "materialIndex": 0,
+ "verticesStart": 0,
+ "verticesCount": 12,
+ "indexStart": 0,
+ "indexCount": 18
+ },
+ {
+ "materialIndex": 1,
+ "verticesStart": 12,
+ "verticesCount": 12,
+ "indexStart": 18,
+ "indexCount": 18
+ }
+ ],
+ "instances": null,
+ "skeletonId": -1,
+ "numBoneInfluencers": 4,
+ "applyFog": false,
+ "lodMeshIds": null,
+ "lodDistances": null,
+ "lodCoverages": null,
+ "rotation": null,
+ "scaling": [
+ 1,
+ 1,
+ 1
+ ],
+ "rotationQuaternion": [
+ 0,
+ 0,
+ 0,
+ 1
+ ],
+ "actions": null,
+ "checkCollisions": false,
+ "pickable": true,
+ "showBoundingBox": false,
+ "showSubMeshesBoundingBox": false,
+ "alphaIndex": 0,
+ "physicsImpostor": 0,
+ "physicsMass": 0,
+ "physicsFriction": 0,
+ "physicsRestitution": 0,
+ "name": "pCube1",
+ "id": "10CEACD6-4F57-9FA8-302E-D7B1404C663E",
+ "parentId": null,
+ "position": [
+ 1.514,
+ 0,
+ 0
+ ],
+ "animations": [],
+ "autoAnimate": true,
+ "autoAnimateFrom": 1,
+ "autoAnimateTo": 200,
+ "autoAnimateLoop": true,
+ "metadata": {}
+ },
+ {
+ "materialId": "13586E33-45A4-88AF-D0C1-7C963DD5E6AF",
+ "isEnabled": true,
+ "isVisible": true,
+ "positions": [
+ 0.1488,
+ -0.9877,
+ 0.0483,
+ 0.1266,
+ -0.9877,
+ 0.0919,
+ 0.2939,
+ -0.9511,
+ 0.0955,
+ 0.25,
+ -0.9511,
+ 0.1816,
+ 0.0919,
+ -0.9877,
+ 0.1266,
+ 0.1816,
+ -0.9511,
+ 0.25,
+ 0.0483,
+ -0.9877,
+ 0.1488,
+ 0.0955,
+ -0.9511,
+ 0.2939,
+ 0,
+ -0.9877,
+ 0.1564,
+ 0,
+ -0.9511,
+ 0.309,
+ -0.0483,
+ -0.9877,
+ 0.1488,
+ -0.0955,
+ -0.9511,
+ 0.2939,
+ -0.0919,
+ -0.9877,
+ 0.1266,
+ -0.1816,
+ -0.9511,
+ 0.25,
+ -0.1266,
+ -0.9877,
+ 0.0919,
+ -0.25,
+ -0.9511,
+ 0.1816,
+ -0.1488,
+ -0.9877,
+ 0.0483,
+ -0.2939,
+ -0.9511,
+ 0.0955,
+ -0.1564,
+ -0.9877,
+ 0,
+ -0.309,
+ -0.9511,
+ 0,
+ -0.1488,
+ -0.9877,
+ -0.0483,
+ -0.2939,
+ -0.9511,
+ -0.0955,
+ -0.1266,
+ -0.9877,
+ -0.0919,
+ -0.25,
+ -0.9511,
+ -0.1816,
+ -0.0919,
+ -0.9877,
+ -0.1266,
+ -0.1816,
+ -0.9511,
+ -0.25,
+ -0.0483,
+ -0.9877,
+ -0.1488,
+ -0.0955,
+ -0.9511,
+ -0.2939,
+ 0,
+ -0.9877,
+ -0.1564,
+ 0,
+ -0.9511,
+ -0.309,
+ 0.0483,
+ -0.9877,
+ -0.1488,
+ 0.0955,
+ -0.9511,
+ -0.2939,
+ 0.0919,
+ -0.9877,
+ -0.1266,
+ 0.1816,
+ -0.9511,
+ -0.25,
+ 0.1266,
+ -0.9877,
+ -0.0919,
+ 0.25,
+ -0.9511,
+ -0.1816,
+ 0.1488,
+ -0.9877,
+ -0.0483,
+ 0.2939,
+ -0.9511,
+ -0.0955,
+ 0.1564,
+ -0.9877,
+ 0,
+ 0.309,
+ -0.9511,
+ 0,
+ 0.1488,
+ -0.9877,
+ 0.0483,
+ 0.2939,
+ -0.9511,
+ 0.0955,
+ 0.4318,
+ -0.891,
+ 0.1403,
+ 0.3673,
+ -0.891,
+ 0.2668,
+ 0.2668,
+ -0.891,
+ 0.3673,
+ 0.1403,
+ -0.891,
+ 0.4318,
+ 0,
+ -0.891,
+ 0.454,
+ -0.1403,
+ -0.891,
+ 0.4318,
+ -0.2668,
+ -0.891,
+ 0.3673,
+ -0.3673,
+ -0.891,
+ 0.2668,
+ -0.4318,
+ -0.891,
+ 0.1403,
+ -0.454,
+ -0.891,
+ 0,
+ -0.4318,
+ -0.891,
+ -0.1403,
+ -0.3673,
+ -0.891,
+ -0.2668,
+ -0.2668,
+ -0.891,
+ -0.3673,
+ -0.1403,
+ -0.891,
+ -0.4318,
+ 0,
+ -0.891,
+ -0.454,
+ 0.1403,
+ -0.891,
+ -0.4318,
+ 0.2668,
+ -0.891,
+ -0.3673,
+ 0.3673,
+ -0.891,
+ -0.2668,
+ 0.4318,
+ -0.891,
+ -0.1403,
+ 0.454,
+ -0.891,
+ 0,
+ 0.4318,
+ -0.891,
+ 0.1403,
+ 0.559,
+ -0.809,
+ 0.1816,
+ 0.4755,
+ -0.809,
+ 0.3455,
+ 0.3455,
+ -0.809,
+ 0.4755,
+ 0.1816,
+ -0.809,
+ 0.559,
+ 0,
+ -0.809,
+ 0.5878,
+ -0.1816,
+ -0.809,
+ 0.559,
+ -0.3455,
+ -0.809,
+ 0.4755,
+ -0.4755,
+ -0.809,
+ 0.3455,
+ -0.559,
+ -0.809,
+ 0.1816,
+ -0.5878,
+ -0.809,
+ 0,
+ -0.559,
+ -0.809,
+ -0.1816,
+ -0.4755,
+ -0.809,
+ -0.3455,
+ -0.3455,
+ -0.809,
+ -0.4755,
+ -0.1816,
+ -0.809,
+ -0.559,
+ 0,
+ -0.809,
+ -0.5878,
+ 0.1816,
+ -0.809,
+ -0.559,
+ 0.3455,
+ -0.809,
+ -0.4755,
+ 0.4755,
+ -0.809,
+ -0.3455,
+ 0.559,
+ -0.809,
+ -0.1816,
+ 0.5878,
+ -0.809,
+ 0,
+ 0.559,
+ -0.809,
+ 0.1816,
+ 0.6725,
+ -0.7071,
+ 0.2185,
+ 0.5721,
+ -0.7071,
+ 0.4156,
+ 0.4156,
+ -0.7071,
+ 0.5721,
+ 0.2185,
+ -0.7071,
+ 0.6725,
+ 0,
+ -0.7071,
+ 0.7071,
+ -0.2185,
+ -0.7071,
+ 0.6725,
+ -0.4156,
+ -0.7071,
+ 0.5721,
+ -0.5721,
+ -0.7071,
+ 0.4156,
+ -0.6725,
+ -0.7071,
+ 0.2185,
+ -0.7071,
+ -0.7071,
+ 0,
+ -0.6725,
+ -0.7071,
+ -0.2185,
+ -0.5721,
+ -0.7071,
+ -0.4156,
+ -0.4156,
+ -0.7071,
+ -0.5721,
+ -0.2185,
+ -0.7071,
+ -0.6725,
+ 0,
+ -0.7071,
+ -0.7071,
+ 0.2185,
+ -0.7071,
+ -0.6725,
+ 0.4156,
+ -0.7071,
+ -0.5721,
+ 0.5721,
+ -0.7071,
+ -0.4156,
+ 0.6725,
+ -0.7071,
+ -0.2185,
+ 0.7071,
+ -0.7071,
+ 0,
+ 0.6725,
+ -0.7071,
+ 0.2185,
+ 0.7694,
+ -0.5878,
+ 0.25,
+ 0.6545,
+ -0.5878,
+ 0.4755,
+ 0.4755,
+ -0.5878,
+ 0.6545,
+ 0.25,
+ -0.5878,
+ 0.7694,
+ 0,
+ -0.5878,
+ 0.809,
+ -0.25,
+ -0.5878,
+ 0.7694,
+ -0.4755,
+ -0.5878,
+ 0.6545,
+ -0.6545,
+ -0.5878,
+ 0.4755,
+ -0.7694,
+ -0.5878,
+ 0.25,
+ -0.809,
+ -0.5878,
+ 0,
+ -0.7694,
+ -0.5878,
+ -0.25,
+ -0.6545,
+ -0.5878,
+ -0.4755,
+ -0.4755,
+ -0.5878,
+ -0.6545,
+ -0.25,
+ -0.5878,
+ -0.7694,
+ 0,
+ -0.5878,
+ -0.809,
+ 0.25,
+ -0.5878,
+ -0.7694,
+ 0.4755,
+ -0.5878,
+ -0.6545,
+ 0.6545,
+ -0.5878,
+ -0.4755,
+ 0.7694,
+ -0.5878,
+ -0.25,
+ 0.809,
+ -0.5878,
+ 0,
+ 0.7694,
+ -0.5878,
+ 0.25,
+ 0.8474,
+ -0.454,
+ 0.2753,
+ 0.7208,
+ -0.454,
+ 0.5237,
+ 0.5237,
+ -0.454,
+ 0.7208,
+ 0.2753,
+ -0.454,
+ 0.8474,
+ 0,
+ -0.454,
+ 0.891,
+ -0.2753,
+ -0.454,
+ 0.8474,
+ -0.5237,
+ -0.454,
+ 0.7208,
+ -0.7208,
+ -0.454,
+ 0.5237,
+ -0.8474,
+ -0.454,
+ 0.2753,
+ -0.891,
+ -0.454,
+ 0,
+ -0.8474,
+ -0.454,
+ -0.2753,
+ -0.7208,
+ -0.454,
+ -0.5237,
+ -0.5237,
+ -0.454,
+ -0.7208,
+ -0.2753,
+ -0.454,
+ -0.8474,
+ 0,
+ -0.454,
+ -0.891,
+ 0.2753,
+ -0.454,
+ -0.8474,
+ 0.5237,
+ -0.454,
+ -0.7208,
+ 0.7208,
+ -0.454,
+ -0.5237,
+ 0.8474,
+ -0.454,
+ -0.2753,
+ 0.891,
+ -0.454,
+ 0,
+ 0.8474,
+ -0.454,
+ 0.2753,
+ 0.9045,
+ -0.309,
+ 0.2939,
+ 0.7694,
+ -0.309,
+ 0.559,
+ 0.559,
+ -0.309,
+ 0.7694,
+ 0.2939,
+ -0.309,
+ 0.9045,
+ 0,
+ -0.309,
+ 0.9511,
+ -0.2939,
+ -0.309,
+ 0.9045,
+ -0.559,
+ -0.309,
+ 0.7694,
+ -0.7694,
+ -0.309,
+ 0.559,
+ -0.9045,
+ -0.309,
+ 0.2939,
+ -0.9511,
+ -0.309,
+ 0,
+ -0.9045,
+ -0.309,
+ -0.2939,
+ -0.7694,
+ -0.309,
+ -0.559,
+ -0.559,
+ -0.309,
+ -0.7694,
+ -0.2939,
+ -0.309,
+ -0.9045,
+ 0,
+ -0.309,
+ -0.9511,
+ 0.2939,
+ -0.309,
+ -0.9045,
+ 0.559,
+ -0.309,
+ -0.7694,
+ 0.7694,
+ -0.309,
+ -0.559,
+ 0.9045,
+ -0.309,
+ -0.2939,
+ 0.9511,
+ -0.309,
+ 0,
+ 0.9045,
+ -0.309,
+ 0.2939,
+ 0.9393,
+ -0.1564,
+ 0.3052,
+ 0.7991,
+ -0.1564,
+ 0.5805,
+ 0.5805,
+ -0.1564,
+ 0.7991,
+ 0.3052,
+ -0.1564,
+ 0.9393,
+ 0,
+ -0.1564,
+ 0.9877,
+ -0.3052,
+ -0.1564,
+ 0.9393,
+ -0.5805,
+ -0.1564,
+ 0.7991,
+ -0.7991,
+ -0.1564,
+ 0.5805,
+ -0.9393,
+ -0.1564,
+ 0.3052,
+ -0.9877,
+ -0.1564,
+ 0,
+ -0.9393,
+ -0.1564,
+ -0.3052,
+ -0.7991,
+ -0.1564,
+ -0.5805,
+ -0.5805,
+ -0.1564,
+ -0.7991,
+ -0.3052,
+ -0.1564,
+ -0.9393,
+ 0,
+ -0.1564,
+ -0.9877,
+ 0.3052,
+ -0.1564,
+ -0.9393,
+ 0.5805,
+ -0.1564,
+ -0.7991,
+ 0.7991,
+ -0.1564,
+ -0.5805,
+ 0.9393,
+ -0.1564,
+ -0.3052,
+ 0.9877,
+ -0.1564,
+ 0,
+ 0.9393,
+ -0.1564,
+ 0.3052,
+ 0.9511,
+ 0,
+ 0.309,
+ 0.809,
+ 0,
+ 0.5878,
+ -0.309,
+ 0,
+ 0.9511,
+ -0.5878,
+ 0,
+ 0.809,
+ -0.809,
+ 0,
+ 0.5878,
+ -0.9511,
+ 0,
+ 0.309,
+ -1,
+ 0,
+ 0,
+ -0.9511,
+ 0,
+ -0.309,
+ -0.809,
+ 0,
+ -0.5878,
+ -0.5878,
+ 0,
+ -0.809,
+ -0.309,
+ 0,
+ -0.9511,
+ 0,
+ 0,
+ -1,
+ 0.309,
+ 0,
+ -0.9511,
+ 0.5878,
+ 0,
+ -0.809,
+ 0.809,
+ 0,
+ -0.5878,
+ 0.9511,
+ 0,
+ -0.309,
+ 1,
+ 0,
+ 0,
+ 0.9511,
+ 0,
+ 0.309,
+ 0.9393,
+ 0.1564,
+ 0.3052,
+ 0.7991,
+ 0.1564,
+ 0.5805,
+ -0.3052,
+ 0.1564,
+ 0.9393,
+ -0.5805,
+ 0.1564,
+ 0.7991,
+ -0.7991,
+ 0.1564,
+ 0.5805,
+ -0.9393,
+ 0.1564,
+ 0.3052,
+ -0.9877,
+ 0.1564,
+ 0,
+ -0.9393,
+ 0.1564,
+ -0.3052,
+ -0.7991,
+ 0.1564,
+ -0.5805,
+ -0.5805,
+ 0.1564,
+ -0.7991,
+ -0.3052,
+ 0.1564,
+ -0.9393,
+ 0,
+ 0.1564,
+ -0.9877,
+ 0.3052,
+ 0.1564,
+ -0.9393,
+ 0.5805,
+ 0.1564,
+ -0.7991,
+ 0.7991,
+ 0.1564,
+ -0.5805,
+ 0.9393,
+ 0.1564,
+ -0.3052,
+ 0.9877,
+ 0.1564,
+ 0,
+ 0.9393,
+ 0.1564,
+ 0.3052,
+ 0.9045,
+ 0.309,
+ 0.2939,
+ 0.7694,
+ 0.309,
+ 0.559,
+ -0.2939,
+ 0.309,
+ 0.9045,
+ -0.559,
+ 0.309,
+ 0.7694,
+ -0.7694,
+ 0.309,
+ 0.559,
+ -0.9045,
+ 0.309,
+ 0.2939,
+ -0.9511,
+ 0.309,
+ 0,
+ -0.9045,
+ 0.309,
+ -0.2939,
+ -0.7694,
+ 0.309,
+ -0.559,
+ -0.559,
+ 0.309,
+ -0.7694,
+ -0.2939,
+ 0.309,
+ -0.9045,
+ 0,
+ 0.309,
+ -0.9511,
+ 0.2939,
+ 0.309,
+ -0.9045,
+ 0.559,
+ 0.309,
+ -0.7694,
+ 0.7694,
+ 0.309,
+ -0.559,
+ 0.9045,
+ 0.309,
+ -0.2939,
+ 0.9511,
+ 0.309,
+ 0,
+ 0.9045,
+ 0.309,
+ 0.2939,
+ 0.8474,
+ 0.454,
+ 0.2753,
+ 0.7208,
+ 0.454,
+ 0.5237,
+ -0.2753,
+ 0.454,
+ 0.8474,
+ -0.5237,
+ 0.454,
+ 0.7208,
+ -0.7208,
+ 0.454,
+ 0.5237,
+ -0.8474,
+ 0.454,
+ 0.2753,
+ -0.891,
+ 0.454,
+ 0,
+ -0.8474,
+ 0.454,
+ -0.2753,
+ -0.7208,
+ 0.454,
+ -0.5237,
+ -0.5237,
+ 0.454,
+ -0.7208,
+ -0.2753,
+ 0.454,
+ -0.8474,
+ 0,
+ 0.454,
+ -0.891,
+ 0.2753,
+ 0.454,
+ -0.8474,
+ 0.5237,
+ 0.454,
+ -0.7208,
+ 0.7208,
+ 0.454,
+ -0.5237,
+ 0.8474,
+ 0.454,
+ -0.2753,
+ 0.891,
+ 0.454,
+ 0,
+ 0.8474,
+ 0.454,
+ 0.2753,
+ 0.7694,
+ 0.5878,
+ 0.25,
+ 0.6545,
+ 0.5878,
+ 0.4755,
+ -0.25,
+ 0.5878,
+ 0.7694,
+ -0.4755,
+ 0.5878,
+ 0.6545,
+ -0.6545,
+ 0.5878,
+ 0.4755,
+ -0.7694,
+ 0.5878,
+ 0.25,
+ -0.809,
+ 0.5878,
+ 0,
+ -0.7694,
+ 0.5878,
+ -0.25,
+ -0.6545,
+ 0.5878,
+ -0.4755,
+ -0.4755,
+ 0.5878,
+ -0.6545,
+ -0.25,
+ 0.5878,
+ -0.7694,
+ 0,
+ 0.5878,
+ -0.809,
+ 0.25,
+ 0.5878,
+ -0.7694,
+ 0.4755,
+ 0.5878,
+ -0.6545,
+ 0.6545,
+ 0.5878,
+ -0.4755,
+ 0.7694,
+ 0.5878,
+ -0.25,
+ 0.809,
+ 0.5878,
+ 0,
+ 0.7694,
+ 0.5878,
+ 0.25,
+ 0.6725,
+ 0.7071,
+ 0.2185,
+ 0.5721,
+ 0.7071,
+ 0.4156,
+ -0.2185,
+ 0.7071,
+ 0.6725,
+ -0.4156,
+ 0.7071,
+ 0.5721,
+ -0.5721,
+ 0.7071,
+ 0.4156,
+ -0.6725,
+ 0.7071,
+ 0.2185,
+ -0.7071,
+ 0.7071,
+ 0,
+ -0.6725,
+ 0.7071,
+ -0.2185,
+ -0.5721,
+ 0.7071,
+ -0.4156,
+ -0.4156,
+ 0.7071,
+ -0.5721,
+ -0.2185,
+ 0.7071,
+ -0.6725,
+ 0,
+ 0.7071,
+ -0.7071,
+ 0.2185,
+ 0.7071,
+ -0.6725,
+ 0.4156,
+ 0.7071,
+ -0.5721,
+ 0.5721,
+ 0.7071,
+ -0.4156,
+ 0.6725,
+ 0.7071,
+ -0.2185,
+ 0.7071,
+ 0.7071,
+ 0,
+ 0.6725,
+ 0.7071,
+ 0.2185,
+ 0.559,
+ 0.809,
+ 0.1816,
+ 0.4755,
+ 0.809,
+ 0.3455,
+ -0.1816,
+ 0.809,
+ 0.559,
+ -0.3455,
+ 0.809,
+ 0.4755,
+ -0.4755,
+ 0.809,
+ 0.3455,
+ -0.559,
+ 0.809,
+ 0.1816,
+ -0.5878,
+ 0.809,
+ 0,
+ -0.559,
+ 0.809,
+ -0.1816,
+ -0.4755,
+ 0.809,
+ -0.3455,
+ -0.3455,
+ 0.809,
+ -0.4755,
+ -0.1816,
+ 0.809,
+ -0.559,
+ 0,
+ 0.809,
+ -0.5878,
+ 0.1816,
+ 0.809,
+ -0.559,
+ 0.3455,
+ 0.809,
+ -0.4755,
+ 0.4755,
+ 0.809,
+ -0.3455,
+ 0.559,
+ 0.809,
+ -0.1816,
+ 0.5878,
+ 0.809,
+ 0,
+ 0.559,
+ 0.809,
+ 0.1816,
+ 0.4318,
+ 0.891,
+ 0.1403,
+ 0.3673,
+ 0.891,
+ 0.2668,
+ -0.1403,
+ 0.891,
+ 0.4318,
+ -0.2668,
+ 0.891,
+ 0.3673,
+ -0.3673,
+ 0.891,
+ 0.2668,
+ -0.4318,
+ 0.891,
+ 0.1403,
+ -0.454,
+ 0.891,
+ 0,
+ -0.4318,
+ 0.891,
+ -0.1403,
+ -0.3673,
+ 0.891,
+ -0.2668,
+ -0.2668,
+ 0.891,
+ -0.3673,
+ -0.1403,
+ 0.891,
+ -0.4318,
+ 0,
+ 0.891,
+ -0.454,
+ 0.1403,
+ 0.891,
+ -0.4318,
+ 0.2668,
+ 0.891,
+ -0.3673,
+ 0.3673,
+ 0.891,
+ -0.2668,
+ 0.4318,
+ 0.891,
+ -0.1403,
+ 0.454,
+ 0.891,
+ 0,
+ 0.4318,
+ 0.891,
+ 0.1403,
+ 0.2939,
+ 0.9511,
+ 0.0955,
+ 0.25,
+ 0.9511,
+ 0.1816,
+ -0.0955,
+ 0.9511,
+ 0.2939,
+ -0.1816,
+ 0.9511,
+ 0.25,
+ -0.25,
+ 0.9511,
+ 0.1816,
+ -0.2939,
+ 0.9511,
+ 0.0955,
+ -0.309,
+ 0.9511,
+ 0,
+ -0.2939,
+ 0.9511,
+ -0.0955,
+ -0.25,
+ 0.9511,
+ -0.1816,
+ -0.1816,
+ 0.9511,
+ -0.25,
+ -0.0955,
+ 0.9511,
+ -0.2939,
+ 0,
+ 0.9511,
+ -0.309,
+ 0.0955,
+ 0.9511,
+ -0.2939,
+ 0.1816,
+ 0.9511,
+ -0.25,
+ 0.25,
+ 0.9511,
+ -0.1816,
+ 0.2939,
+ 0.9511,
+ -0.0955,
+ 0.309,
+ 0.9511,
+ 0,
+ 0.2939,
+ 0.9511,
+ 0.0955,
+ 0.1488,
+ 0.9877,
+ 0.0483,
+ 0.1266,
+ 0.9877,
+ 0.0919,
+ -0.0483,
+ 0.9877,
+ 0.1488,
+ -0.0919,
+ 0.9877,
+ 0.1266,
+ -0.1266,
+ 0.9877,
+ 0.0919,
+ -0.1488,
+ 0.9877,
+ 0.0483,
+ -0.1564,
+ 0.9877,
+ 0,
+ -0.1488,
+ 0.9877,
+ -0.0483,
+ -0.1266,
+ 0.9877,
+ -0.0919,
+ -0.0919,
+ 0.9877,
+ -0.1266,
+ -0.0483,
+ 0.9877,
+ -0.1488,
+ 0,
+ 0.9877,
+ -0.1564,
+ 0.0483,
+ 0.9877,
+ -0.1488,
+ 0.0919,
+ 0.9877,
+ -0.1266,
+ 0.1266,
+ 0.9877,
+ -0.0919,
+ 0.1488,
+ 0.9877,
+ -0.0483,
+ 0.1564,
+ 0.9877,
+ 0,
+ 0.1488,
+ 0.9877,
+ 0.0483,
+ 0,
+ -1,
+ 0,
+ 0,
+ -1,
+ 0,
+ 0,
+ -1,
+ 0,
+ 0,
+ -1,
+ 0,
+ 0,
+ -1,
+ 0,
+ 0,
+ -1,
+ 0,
+ 0,
+ -1,
+ 0,
+ 0,
+ -1,
+ 0,
+ 0,
+ -1,
+ 0,
+ 0,
+ -1,
+ 0,
+ 0,
+ -1,
+ 0,
+ 0,
+ -1,
+ 0,
+ 0,
+ -1,
+ 0,
+ 0,
+ -1,
+ 0,
+ 0,
+ -1,
+ 0,
+ 0,
+ -1,
+ 0,
+ 0,
+ -1,
+ 0,
+ 0,
+ -1,
+ 0,
+ 0,
+ -1,
+ 0,
+ 0,
+ -1,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0.0919,
+ 0.9877,
+ 0.1266,
+ 0,
+ 1,
+ 0,
+ 0.0483,
+ 0.9877,
+ 0.1488,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0.9877,
+ 0.1564,
+ 0,
+ 1,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0.1488,
+ -0.9877,
+ 0.0483,
+ 0.1266,
+ -0.9877,
+ 0.0919,
+ 0.2939,
+ -0.9511,
+ 0.0955,
+ 0.25,
+ -0.9511,
+ 0.1816,
+ 0.0919,
+ -0.9877,
+ 0.1266,
+ 0.1816,
+ -0.9511,
+ 0.25,
+ 0.0483,
+ -0.9877,
+ 0.1488,
+ 0.0955,
+ -0.9511,
+ 0.2939,
+ 0,
+ -0.9877,
+ 0.1564,
+ 0,
+ -0.9511,
+ 0.309,
+ -0.0483,
+ -0.9877,
+ 0.1488,
+ -0.0955,
+ -0.9511,
+ 0.2939,
+ -0.0919,
+ -0.9877,
+ 0.1266,
+ -0.1816,
+ -0.9511,
+ 0.25,
+ -0.1266,
+ -0.9877,
+ 0.0919,
+ -0.25,
+ -0.9511,
+ 0.1816,
+ -0.1488,
+ -0.9877,
+ 0.0483,
+ -0.2939,
+ -0.9511,
+ 0.0955,
+ -0.1564,
+ -0.9877,
+ 0,
+ -0.309,
+ -0.9511,
+ 0,
+ -0.1488,
+ -0.9877,
+ -0.0483,
+ -0.2939,
+ -0.9511,
+ -0.0955,
+ -0.1266,
+ -0.9877,
+ -0.0919,
+ -0.25,
+ -0.9511,
+ -0.1816,
+ -0.0919,
+ -0.9877,
+ -0.1266,
+ -0.1816,
+ -0.9511,
+ -0.25,
+ -0.0483,
+ -0.9877,
+ -0.1488,
+ -0.0955,
+ -0.9511,
+ -0.2939,
+ 0,
+ -0.9877,
+ -0.1564,
+ 0,
+ -0.9511,
+ -0.309,
+ 0.0483,
+ -0.9877,
+ -0.1488,
+ 0.0955,
+ -0.9511,
+ -0.2939,
+ 0.0919,
+ -0.9877,
+ -0.1266,
+ 0.1816,
+ -0.9511,
+ -0.25,
+ 0.1266,
+ -0.9877,
+ -0.0919,
+ 0.25,
+ -0.9511,
+ -0.1816,
+ 0.1488,
+ -0.9877,
+ -0.0483,
+ 0.2939,
+ -0.9511,
+ -0.0955,
+ 0.1564,
+ -0.9877,
+ 0,
+ 0.309,
+ -0.9511,
+ 0,
+ 0.1488,
+ -0.9877,
+ 0.0483,
+ 0.2939,
+ -0.9511,
+ 0.0955,
+ 0.4318,
+ -0.891,
+ 0.1403,
+ 0.3673,
+ -0.891,
+ 0.2668,
+ 0.2668,
+ -0.891,
+ 0.3673,
+ 0.1403,
+ -0.891,
+ 0.4318,
+ 0,
+ -0.891,
+ 0.454,
+ -0.1403,
+ -0.891,
+ 0.4318,
+ -0.2668,
+ -0.891,
+ 0.3673,
+ -0.3673,
+ -0.891,
+ 0.2668,
+ -0.4318,
+ -0.891,
+ 0.1403,
+ -0.454,
+ -0.891,
+ 0,
+ -0.4318,
+ -0.891,
+ -0.1403,
+ -0.3673,
+ -0.891,
+ -0.2668,
+ -0.2668,
+ -0.891,
+ -0.3673,
+ -0.1403,
+ -0.891,
+ -0.4318,
+ 0,
+ -0.891,
+ -0.454,
+ 0.1403,
+ -0.891,
+ -0.4318,
+ 0.2668,
+ -0.891,
+ -0.3673,
+ 0.3673,
+ -0.891,
+ -0.2668,
+ 0.4318,
+ -0.891,
+ -0.1403,
+ 0.454,
+ -0.891,
+ 0,
+ 0.4318,
+ -0.891,
+ 0.1403,
+ 0.559,
+ -0.809,
+ 0.1816,
+ 0.4755,
+ -0.809,
+ 0.3455,
+ 0.3455,
+ -0.809,
+ 0.4755,
+ 0.1816,
+ -0.809,
+ 0.559,
+ 0,
+ -0.809,
+ 0.5878,
+ -0.1816,
+ -0.809,
+ 0.559,
+ -0.3455,
+ -0.809,
+ 0.4755,
+ -0.4755,
+ -0.809,
+ 0.3455,
+ -0.559,
+ -0.809,
+ 0.1816,
+ -0.5878,
+ -0.809,
+ 0,
+ -0.559,
+ -0.809,
+ -0.1816,
+ -0.4755,
+ -0.809,
+ -0.3455,
+ -0.3455,
+ -0.809,
+ -0.4755,
+ -0.1816,
+ -0.809,
+ -0.559,
+ 0,
+ -0.809,
+ -0.5878,
+ 0.1816,
+ -0.809,
+ -0.559,
+ 0.3455,
+ -0.809,
+ -0.4755,
+ 0.4755,
+ -0.809,
+ -0.3455,
+ 0.559,
+ -0.809,
+ -0.1816,
+ 0.5878,
+ -0.809,
+ 0,
+ 0.559,
+ -0.809,
+ 0.1816,
+ 0.6725,
+ -0.7071,
+ 0.2185,
+ 0.5721,
+ -0.7071,
+ 0.4156,
+ 0.4156,
+ -0.7071,
+ 0.5721,
+ 0.2185,
+ -0.7071,
+ 0.6725,
+ 0,
+ -0.7071,
+ 0.7071,
+ -0.2185,
+ -0.7071,
+ 0.6725,
+ -0.4156,
+ -0.7071,
+ 0.5721,
+ -0.5721,
+ -0.7071,
+ 0.4156,
+ -0.6725,
+ -0.7071,
+ 0.2185,
+ -0.7071,
+ -0.7071,
+ 0,
+ -0.6725,
+ -0.7071,
+ -0.2185,
+ -0.5721,
+ -0.7071,
+ -0.4156,
+ -0.4156,
+ -0.7071,
+ -0.5721,
+ -0.2185,
+ -0.7071,
+ -0.6725,
+ 0,
+ -0.7071,
+ -0.7071,
+ 0.2185,
+ -0.7071,
+ -0.6725,
+ 0.4156,
+ -0.7071,
+ -0.5721,
+ 0.5721,
+ -0.7071,
+ -0.4156,
+ 0.6725,
+ -0.7071,
+ -0.2185,
+ 0.7071,
+ -0.7071,
+ 0,
+ 0.6725,
+ -0.7071,
+ 0.2185,
+ 0.7694,
+ -0.5878,
+ 0.25,
+ 0.6545,
+ -0.5878,
+ 0.4755,
+ 0.4755,
+ -0.5878,
+ 0.6545,
+ 0.25,
+ -0.5878,
+ 0.7694,
+ 0,
+ -0.5878,
+ 0.809,
+ -0.25,
+ -0.5878,
+ 0.7694,
+ -0.4755,
+ -0.5878,
+ 0.6545,
+ -0.6545,
+ -0.5878,
+ 0.4755,
+ -0.7694,
+ -0.5878,
+ 0.25,
+ -0.809,
+ -0.5878,
+ 0,
+ -0.7694,
+ -0.5878,
+ -0.25,
+ -0.6545,
+ -0.5878,
+ -0.4755,
+ -0.4755,
+ -0.5878,
+ -0.6545,
+ -0.25,
+ -0.5878,
+ -0.7694,
+ 0,
+ -0.5878,
+ -0.809,
+ 0.25,
+ -0.5878,
+ -0.7694,
+ 0.4755,
+ -0.5878,
+ -0.6545,
+ 0.6545,
+ -0.5878,
+ -0.4755,
+ 0.7694,
+ -0.5878,
+ -0.25,
+ 0.809,
+ -0.5878,
+ 0,
+ 0.7694,
+ -0.5878,
+ 0.25,
+ 0.8474,
+ -0.454,
+ 0.2753,
+ 0.7208,
+ -0.454,
+ 0.5237,
+ 0.5237,
+ -0.454,
+ 0.7208,
+ 0.2753,
+ -0.454,
+ 0.8474,
+ 0,
+ -0.454,
+ 0.891,
+ -0.2753,
+ -0.454,
+ 0.8474,
+ -0.5237,
+ -0.454,
+ 0.7208,
+ -0.7208,
+ -0.454,
+ 0.5237,
+ -0.8474,
+ -0.454,
+ 0.2753,
+ -0.891,
+ -0.454,
+ 0,
+ -0.8474,
+ -0.454,
+ -0.2753,
+ -0.7208,
+ -0.454,
+ -0.5237,
+ -0.5237,
+ -0.454,
+ -0.7208,
+ -0.2753,
+ -0.454,
+ -0.8474,
+ 0,
+ -0.454,
+ -0.891,
+ 0.2753,
+ -0.454,
+ -0.8474,
+ 0.5237,
+ -0.454,
+ -0.7208,
+ 0.7208,
+ -0.454,
+ -0.5237,
+ 0.8474,
+ -0.454,
+ -0.2753,
+ 0.891,
+ -0.454,
+ 0,
+ 0.8474,
+ -0.454,
+ 0.2753,
+ 0.9045,
+ -0.309,
+ 0.2939,
+ 0.7694,
+ -0.309,
+ 0.559,
+ 0.559,
+ -0.309,
+ 0.7694,
+ 0.2939,
+ -0.309,
+ 0.9045,
+ 0,
+ -0.309,
+ 0.9511,
+ -0.2939,
+ -0.309,
+ 0.9045,
+ -0.559,
+ -0.309,
+ 0.7694,
+ -0.7694,
+ -0.309,
+ 0.559,
+ -0.9045,
+ -0.309,
+ 0.2939,
+ -0.9511,
+ -0.309,
+ 0,
+ -0.9045,
+ -0.309,
+ -0.2939,
+ -0.7694,
+ -0.309,
+ -0.559,
+ -0.559,
+ -0.309,
+ -0.7694,
+ -0.2939,
+ -0.309,
+ -0.9045,
+ 0,
+ -0.309,
+ -0.9511,
+ 0.2939,
+ -0.309,
+ -0.9045,
+ 0.559,
+ -0.309,
+ -0.7694,
+ 0.7694,
+ -0.309,
+ -0.559,
+ 0.9045,
+ -0.309,
+ -0.2939,
+ 0.9511,
+ -0.309,
+ 0,
+ 0.9045,
+ -0.309,
+ 0.2939,
+ 0.9393,
+ -0.1564,
+ 0.3052,
+ 0.7991,
+ -0.1564,
+ 0.5805,
+ 0.5805,
+ -0.1564,
+ 0.7991,
+ 0.3052,
+ -0.1564,
+ 0.9393,
+ 0,
+ -0.1564,
+ 0.9877,
+ -0.3052,
+ -0.1564,
+ 0.9393,
+ -0.5805,
+ -0.1564,
+ 0.7991,
+ -0.7991,
+ -0.1564,
+ 0.5805,
+ -0.9393,
+ -0.1564,
+ 0.3052,
+ -0.9877,
+ -0.1564,
+ 0,
+ -0.9393,
+ -0.1564,
+ -0.3052,
+ -0.7991,
+ -0.1564,
+ -0.5805,
+ -0.5805,
+ -0.1564,
+ -0.7991,
+ -0.3052,
+ -0.1564,
+ -0.9393,
+ 0,
+ -0.1564,
+ -0.9877,
+ 0.3052,
+ -0.1564,
+ -0.9393,
+ 0.5805,
+ -0.1564,
+ -0.7991,
+ 0.7991,
+ -0.1564,
+ -0.5805,
+ 0.9393,
+ -0.1564,
+ -0.3052,
+ 0.9877,
+ -0.1564,
+ 0,
+ 0.9393,
+ -0.1564,
+ 0.3052,
+ 0.9511,
+ 0,
+ 0.309,
+ 0.809,
+ 0,
+ 0.5878,
+ -0.309,
+ 0,
+ 0.9511,
+ -0.5878,
+ 0,
+ 0.809,
+ -0.809,
+ 0,
+ 0.5878,
+ -0.9511,
+ 0,
+ 0.309,
+ -1,
+ 0,
+ 0,
+ -0.9511,
+ 0,
+ -0.309,
+ -0.809,
+ 0,
+ -0.5878,
+ -0.5878,
+ 0,
+ -0.809,
+ -0.309,
+ 0,
+ -0.9511,
+ 0,
+ 0,
+ -1,
+ 0.309,
+ 0,
+ -0.9511,
+ 0.5878,
+ 0,
+ -0.809,
+ 0.809,
+ 0,
+ -0.5878,
+ 0.9511,
+ 0,
+ -0.309,
+ 1,
+ 0,
+ 0,
+ 0.9511,
+ 0,
+ 0.309,
+ 0.9393,
+ 0.1564,
+ 0.3052,
+ 0.7991,
+ 0.1564,
+ 0.5805,
+ -0.3052,
+ 0.1564,
+ 0.9393,
+ -0.5805,
+ 0.1564,
+ 0.7991,
+ -0.7991,
+ 0.1564,
+ 0.5805,
+ -0.9393,
+ 0.1564,
+ 0.3052,
+ -0.9877,
+ 0.1564,
+ 0,
+ -0.9393,
+ 0.1564,
+ -0.3052,
+ -0.7991,
+ 0.1564,
+ -0.5805,
+ -0.5805,
+ 0.1564,
+ -0.7991,
+ -0.3052,
+ 0.1564,
+ -0.9393,
+ 0,
+ 0.1564,
+ -0.9877,
+ 0.3052,
+ 0.1564,
+ -0.9393,
+ 0.5805,
+ 0.1564,
+ -0.7991,
+ 0.7991,
+ 0.1564,
+ -0.5805,
+ 0.9393,
+ 0.1564,
+ -0.3052,
+ 0.9877,
+ 0.1564,
+ 0,
+ 0.9393,
+ 0.1564,
+ 0.3052,
+ 0.9045,
+ 0.309,
+ 0.2939,
+ 0.7694,
+ 0.309,
+ 0.559,
+ -0.2939,
+ 0.309,
+ 0.9045,
+ -0.559,
+ 0.309,
+ 0.7694,
+ -0.7694,
+ 0.309,
+ 0.559,
+ -0.9045,
+ 0.309,
+ 0.2939,
+ -0.9511,
+ 0.309,
+ 0,
+ -0.9045,
+ 0.309,
+ -0.2939,
+ -0.7694,
+ 0.309,
+ -0.559,
+ -0.559,
+ 0.309,
+ -0.7694,
+ -0.2939,
+ 0.309,
+ -0.9045,
+ 0,
+ 0.309,
+ -0.9511,
+ 0.2939,
+ 0.309,
+ -0.9045,
+ 0.559,
+ 0.309,
+ -0.7694,
+ 0.7694,
+ 0.309,
+ -0.559,
+ 0.9045,
+ 0.309,
+ -0.2939,
+ 0.9511,
+ 0.309,
+ 0,
+ 0.9045,
+ 0.309,
+ 0.2939,
+ 0.8474,
+ 0.454,
+ 0.2753,
+ 0.7208,
+ 0.454,
+ 0.5237,
+ -0.2753,
+ 0.454,
+ 0.8474,
+ -0.5237,
+ 0.454,
+ 0.7208,
+ -0.7208,
+ 0.454,
+ 0.5237,
+ -0.8474,
+ 0.454,
+ 0.2753,
+ -0.891,
+ 0.454,
+ 0,
+ -0.8474,
+ 0.454,
+ -0.2753,
+ -0.7208,
+ 0.454,
+ -0.5237,
+ -0.5237,
+ 0.454,
+ -0.7208,
+ -0.2753,
+ 0.454,
+ -0.8474,
+ 0,
+ 0.454,
+ -0.891,
+ 0.2753,
+ 0.454,
+ -0.8474,
+ 0.5237,
+ 0.454,
+ -0.7208,
+ 0.7208,
+ 0.454,
+ -0.5237,
+ 0.8474,
+ 0.454,
+ -0.2753,
+ 0.891,
+ 0.454,
+ 0,
+ 0.8474,
+ 0.454,
+ 0.2753,
+ 0.7694,
+ 0.5878,
+ 0.25,
+ 0.6545,
+ 0.5878,
+ 0.4755,
+ -0.25,
+ 0.5878,
+ 0.7694,
+ -0.4755,
+ 0.5878,
+ 0.6545,
+ -0.6545,
+ 0.5878,
+ 0.4755,
+ -0.7694,
+ 0.5878,
+ 0.25,
+ -0.809,
+ 0.5878,
+ 0,
+ -0.7694,
+ 0.5878,
+ -0.25,
+ -0.6545,
+ 0.5878,
+ -0.4755,
+ -0.4755,
+ 0.5878,
+ -0.6545,
+ -0.25,
+ 0.5878,
+ -0.7694,
+ 0,
+ 0.5878,
+ -0.809,
+ 0.25,
+ 0.5878,
+ -0.7694,
+ 0.4755,
+ 0.5878,
+ -0.6545,
+ 0.6545,
+ 0.5878,
+ -0.4755,
+ 0.7694,
+ 0.5878,
+ -0.25,
+ 0.809,
+ 0.5878,
+ 0,
+ 0.7694,
+ 0.5878,
+ 0.25,
+ 0.6725,
+ 0.7071,
+ 0.2185,
+ 0.5721,
+ 0.7071,
+ 0.4156,
+ -0.2185,
+ 0.7071,
+ 0.6725,
+ -0.4156,
+ 0.7071,
+ 0.5721,
+ -0.5721,
+ 0.7071,
+ 0.4156,
+ -0.6725,
+ 0.7071,
+ 0.2185,
+ -0.7071,
+ 0.7071,
+ 0,
+ -0.6725,
+ 0.7071,
+ -0.2185,
+ -0.5721,
+ 0.7071,
+ -0.4156,
+ -0.4156,
+ 0.7071,
+ -0.5721,
+ -0.2185,
+ 0.7071,
+ -0.6725,
+ 0,
+ 0.7071,
+ -0.7071,
+ 0.2185,
+ 0.7071,
+ -0.6725,
+ 0.4156,
+ 0.7071,
+ -0.5721,
+ 0.5721,
+ 0.7071,
+ -0.4156,
+ 0.6725,
+ 0.7071,
+ -0.2185,
+ 0.7071,
+ 0.7071,
+ 0,
+ 0.6725,
+ 0.7071,
+ 0.2185,
+ 0.559,
+ 0.809,
+ 0.1816,
+ 0.4755,
+ 0.809,
+ 0.3455,
+ -0.1816,
+ 0.809,
+ 0.559,
+ -0.3455,
+ 0.809,
+ 0.4755,
+ -0.4755,
+ 0.809,
+ 0.3455,
+ -0.559,
+ 0.809,
+ 0.1816,
+ -0.5878,
+ 0.809,
+ 0,
+ -0.559,
+ 0.809,
+ -0.1816,
+ -0.4755,
+ 0.809,
+ -0.3455,
+ -0.3455,
+ 0.809,
+ -0.4755,
+ -0.1816,
+ 0.809,
+ -0.559,
+ 0,
+ 0.809,
+ -0.5878,
+ 0.1816,
+ 0.809,
+ -0.559,
+ 0.3455,
+ 0.809,
+ -0.4755,
+ 0.4755,
+ 0.809,
+ -0.3455,
+ 0.559,
+ 0.809,
+ -0.1816,
+ 0.5878,
+ 0.809,
+ 0,
+ 0.559,
+ 0.809,
+ 0.1816,
+ 0.4318,
+ 0.891,
+ 0.1403,
+ 0.3673,
+ 0.891,
+ 0.2668,
+ -0.1403,
+ 0.891,
+ 0.4318,
+ -0.2668,
+ 0.891,
+ 0.3673,
+ -0.3673,
+ 0.891,
+ 0.2668,
+ -0.4318,
+ 0.891,
+ 0.1403,
+ -0.454,
+ 0.891,
+ 0,
+ -0.4318,
+ 0.891,
+ -0.1403,
+ -0.3673,
+ 0.891,
+ -0.2668,
+ -0.2668,
+ 0.891,
+ -0.3673,
+ -0.1403,
+ 0.891,
+ -0.4318,
+ 0,
+ 0.891,
+ -0.454,
+ 0.1403,
+ 0.891,
+ -0.4318,
+ 0.2668,
+ 0.891,
+ -0.3673,
+ 0.3673,
+ 0.891,
+ -0.2668,
+ 0.4318,
+ 0.891,
+ -0.1403,
+ 0.454,
+ 0.891,
+ 0,
+ 0.4318,
+ 0.891,
+ 0.1403,
+ 0.2939,
+ 0.9511,
+ 0.0955,
+ 0.25,
+ 0.9511,
+ 0.1816,
+ -0.0955,
+ 0.9511,
+ 0.2939,
+ -0.1816,
+ 0.9511,
+ 0.25,
+ -0.25,
+ 0.9511,
+ 0.1816,
+ -0.2939,
+ 0.9511,
+ 0.0955,
+ -0.309,
+ 0.9511,
+ 0,
+ -0.2939,
+ 0.9511,
+ -0.0955,
+ -0.25,
+ 0.9511,
+ -0.1816,
+ -0.1816,
+ 0.9511,
+ -0.25,
+ -0.0955,
+ 0.9511,
+ -0.2939,
+ 0,
+ 0.9511,
+ -0.309,
+ 0.0955,
+ 0.9511,
+ -0.2939,
+ 0.1816,
+ 0.9511,
+ -0.25,
+ 0.25,
+ 0.9511,
+ -0.1816,
+ 0.2939,
+ 0.9511,
+ -0.0955,
+ 0.309,
+ 0.9511,
+ 0,
+ 0.2939,
+ 0.9511,
+ 0.0955,
+ 0.1488,
+ 0.9877,
+ 0.0483,
+ 0.1266,
+ 0.9877,
+ 0.0919,
+ -0.0483,
+ 0.9877,
+ 0.1488,
+ -0.0919,
+ 0.9877,
+ 0.1266,
+ -0.1266,
+ 0.9877,
+ 0.0919,
+ -0.1488,
+ 0.9877,
+ 0.0483,
+ -0.1564,
+ 0.9877,
+ 0,
+ -0.1488,
+ 0.9877,
+ -0.0483,
+ -0.1266,
+ 0.9877,
+ -0.0919,
+ -0.0919,
+ 0.9877,
+ -0.1266,
+ -0.0483,
+ 0.9877,
+ -0.1488,
+ 0,
+ 0.9877,
+ -0.1564,
+ 0.0483,
+ 0.9877,
+ -0.1488,
+ 0.0919,
+ 0.9877,
+ -0.1266,
+ 0.1266,
+ 0.9877,
+ -0.0919,
+ 0.1488,
+ 0.9877,
+ -0.0483,
+ 0.1564,
+ 0.9877,
+ 0,
+ 0.1488,
+ 0.9877,
+ 0.0483,
+ 0,
+ -1,
+ 0,
+ 0,
+ -1,
+ 0,
+ 0,
+ -1,
+ 0,
+ 0,
+ -1,
+ 0,
+ 0,
+ -1,
+ 0,
+ 0,
+ -1,
+ 0,
+ 0,
+ -1,
+ 0,
+ 0,
+ -1,
+ 0,
+ 0,
+ -1,
+ 0,
+ 0,
+ -1,
+ 0,
+ 0,
+ -1,
+ 0,
+ 0,
+ -1,
+ 0,
+ 0,
+ -1,
+ 0,
+ 0,
+ -1,
+ 0,
+ 0,
+ -1,
+ 0,
+ 0,
+ -1,
+ 0,
+ 0,
+ -1,
+ 0,
+ 0,
+ -1,
+ 0,
+ 0,
+ -1,
+ 0,
+ 0,
+ -1,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0.0919,
+ 0.9877,
+ 0.1266,
+ 0,
+ 1,
+ 0,
+ 0.0483,
+ 0.9877,
+ 0.1488,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0.9877,
+ 0.1564,
+ 0,
+ 1,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 1,
+ 0
+ ],
+ "normals": [
+ 0.1906,
+ -0.9797,
+ 0.0619,
+ 0.1621,
+ -0.9797,
+ 0.1178,
+ 0.3173,
+ -0.9427,
+ 0.1031,
+ 0.2699,
+ -0.9427,
+ 0.1961,
+ 0.1178,
+ -0.9797,
+ 0.1621,
+ 0.1961,
+ -0.9427,
+ 0.2699,
+ 0.0619,
+ -0.9797,
+ 0.1906,
+ 0.1031,
+ -0.9427,
+ 0.3173,
+ 0,
+ -0.9797,
+ 0.2004,
+ 0,
+ -0.9427,
+ 0.3336,
+ -0.0619,
+ -0.9797,
+ 0.1906,
+ -0.1031,
+ -0.9427,
+ 0.3173,
+ -0.1178,
+ -0.9797,
+ 0.1621,
+ -0.1961,
+ -0.9427,
+ 0.2699,
+ -0.1621,
+ -0.9797,
+ 0.1178,
+ -0.2699,
+ -0.9427,
+ 0.1961,
+ -0.1906,
+ -0.9797,
+ 0.0619,
+ -0.3173,
+ -0.9427,
+ 0.1031,
+ -0.2004,
+ -0.9797,
+ 0,
+ -0.3336,
+ -0.9427,
+ 0,
+ -0.1906,
+ -0.9797,
+ -0.0619,
+ -0.3173,
+ -0.9427,
+ -0.1031,
+ -0.1621,
+ -0.9797,
+ -0.1178,
+ -0.2699,
+ -0.9427,
+ -0.1961,
+ -0.1178,
+ -0.9797,
+ -0.1621,
+ -0.1961,
+ -0.9427,
+ -0.2699,
+ -0.0619,
+ -0.9797,
+ -0.1906,
+ -0.1031,
+ -0.9427,
+ -0.3173,
+ 0,
+ -0.9797,
+ -0.2004,
+ 0,
+ -0.9427,
+ -0.3336,
+ 0.0619,
+ -0.9797,
+ -0.1906,
+ 0.1031,
+ -0.9427,
+ -0.3173,
+ 0.1178,
+ -0.9797,
+ -0.1621,
+ 0.1961,
+ -0.9427,
+ -0.2699,
+ 0.1621,
+ -0.9797,
+ -0.1178,
+ 0.2699,
+ -0.9427,
+ -0.1961,
+ 0.1906,
+ -0.9797,
+ -0.0619,
+ 0.3173,
+ -0.9427,
+ -0.1031,
+ 0.2004,
+ -0.9797,
+ 0,
+ 0.3336,
+ -0.9427,
+ 0,
+ 0.1906,
+ -0.9797,
+ 0.0619,
+ 0.3173,
+ -0.9427,
+ 0.1031,
+ 0.4477,
+ -0.8823,
+ 0.1455,
+ 0.3808,
+ -0.8823,
+ 0.2767,
+ 0.2767,
+ -0.8823,
+ 0.3808,
+ 0.1455,
+ -0.8823,
+ 0.4477,
+ 0,
+ -0.8823,
+ 0.4708,
+ -0.1455,
+ -0.8823,
+ 0.4477,
+ -0.2767,
+ -0.8823,
+ 0.3808,
+ -0.3808,
+ -0.8823,
+ 0.2767,
+ -0.4477,
+ -0.8823,
+ 0.1455,
+ -0.4708,
+ -0.8823,
+ 0,
+ -0.4477,
+ -0.8823,
+ -0.1455,
+ -0.3808,
+ -0.8823,
+ -0.2767,
+ -0.2767,
+ -0.8823,
+ -0.3808,
+ -0.1455,
+ -0.8823,
+ -0.4477,
+ 0,
+ -0.8823,
+ -0.4708,
+ 0.1455,
+ -0.8823,
+ -0.4477,
+ 0.2767,
+ -0.8823,
+ -0.3808,
+ 0.3808,
+ -0.8823,
+ -0.2767,
+ 0.4477,
+ -0.8823,
+ -0.1455,
+ 0.4708,
+ -0.8823,
+ 0,
+ 0.4477,
+ -0.8823,
+ 0.1455,
+ 0.5703,
+ -0.8003,
+ 0.1853,
+ 0.4851,
+ -0.8003,
+ 0.3525,
+ 0.3525,
+ -0.8003,
+ 0.4851,
+ 0.1853,
+ -0.8003,
+ 0.5703,
+ 0,
+ -0.8003,
+ 0.5997,
+ -0.1853,
+ -0.8003,
+ 0.5703,
+ -0.3525,
+ -0.8003,
+ 0.4851,
+ -0.4851,
+ -0.8003,
+ 0.3525,
+ -0.5703,
+ -0.8003,
+ 0.1853,
+ -0.5997,
+ -0.8003,
+ 0,
+ -0.5703,
+ -0.8003,
+ -0.1853,
+ -0.4851,
+ -0.8003,
+ -0.3525,
+ -0.3525,
+ -0.8003,
+ -0.4851,
+ -0.1853,
+ -0.8003,
+ -0.5703,
+ 0,
+ -0.8003,
+ -0.5997,
+ 0.1853,
+ -0.8003,
+ -0.5703,
+ 0.3525,
+ -0.8003,
+ -0.4851,
+ 0.4851,
+ -0.8003,
+ -0.3525,
+ 0.5703,
+ -0.8003,
+ -0.1853,
+ 0.5997,
+ -0.8003,
+ 0,
+ 0.5703,
+ -0.8003,
+ 0.1853,
+ 0.6803,
+ -0.6988,
+ 0.221,
+ 0.5787,
+ -0.6988,
+ 0.4205,
+ 0.4205,
+ -0.6988,
+ 0.5787,
+ 0.221,
+ -0.6988,
+ 0.6803,
+ 0,
+ -0.6988,
+ 0.7153,
+ -0.221,
+ -0.6988,
+ 0.6803,
+ -0.4205,
+ -0.6988,
+ 0.5787,
+ -0.5787,
+ -0.6988,
+ 0.4205,
+ -0.6803,
+ -0.6988,
+ 0.221,
+ -0.7153,
+ -0.6988,
+ 0,
+ -0.6803,
+ -0.6988,
+ -0.221,
+ -0.5787,
+ -0.6988,
+ -0.4205,
+ -0.4205,
+ -0.6988,
+ -0.5787,
+ -0.221,
+ -0.6988,
+ -0.6803,
+ 0,
+ -0.6988,
+ -0.7153,
+ 0.221,
+ -0.6988,
+ -0.6803,
+ 0.4205,
+ -0.6988,
+ -0.5787,
+ 0.5787,
+ -0.6988,
+ -0.4205,
+ 0.6803,
+ -0.6988,
+ -0.221,
+ 0.7153,
+ -0.6988,
+ 0,
+ 0.6803,
+ -0.6988,
+ 0.221,
+ 0.7745,
+ -0.5804,
+ 0.2516,
+ 0.6588,
+ -0.5804,
+ 0.4787,
+ 0.4787,
+ -0.5804,
+ 0.6588,
+ 0.2516,
+ -0.5804,
+ 0.7745,
+ 0,
+ -0.5804,
+ 0.8143,
+ -0.2516,
+ -0.5804,
+ 0.7745,
+ -0.4787,
+ -0.5804,
+ 0.6588,
+ -0.6588,
+ -0.5804,
+ 0.4787,
+ -0.7745,
+ -0.5804,
+ 0.2516,
+ -0.8143,
+ -0.5804,
+ 0,
+ -0.7745,
+ -0.5804,
+ -0.2516,
+ -0.6588,
+ -0.5804,
+ -0.4787,
+ -0.4787,
+ -0.5804,
+ -0.6588,
+ -0.2516,
+ -0.5804,
+ -0.7745,
+ 0,
+ -0.5804,
+ -0.8143,
+ 0.2516,
+ -0.5804,
+ -0.7745,
+ 0.4787,
+ -0.5804,
+ -0.6588,
+ 0.6588,
+ -0.5804,
+ -0.4787,
+ 0.7745,
+ -0.5804,
+ -0.2516,
+ 0.8143,
+ -0.5804,
+ 0,
+ 0.7745,
+ -0.5804,
+ 0.2516,
+ 0.8503,
+ -0.448,
+ 0.2763,
+ 0.7233,
+ -0.448,
+ 0.5255,
+ 0.5255,
+ -0.448,
+ 0.7233,
+ 0.2763,
+ -0.448,
+ 0.8503,
+ 0,
+ -0.448,
+ 0.894,
+ -0.2763,
+ -0.448,
+ 0.8503,
+ -0.5255,
+ -0.448,
+ 0.7233,
+ -0.7233,
+ -0.448,
+ 0.5255,
+ -0.8503,
+ -0.448,
+ 0.2763,
+ -0.894,
+ -0.448,
+ 0,
+ -0.8503,
+ -0.448,
+ -0.2763,
+ -0.7233,
+ -0.448,
+ -0.5255,
+ -0.5255,
+ -0.448,
+ -0.7233,
+ -0.2763,
+ -0.448,
+ -0.8503,
+ 0,
+ -0.448,
+ -0.894,
+ 0.2763,
+ -0.448,
+ -0.8503,
+ 0.5255,
+ -0.448,
+ -0.7233,
+ 0.7233,
+ -0.448,
+ -0.5255,
+ 0.8503,
+ -0.448,
+ -0.2763,
+ 0.894,
+ -0.448,
+ 0,
+ 0.8503,
+ -0.448,
+ 0.2763,
+ 0.9058,
+ -0.3048,
+ 0.2943,
+ 0.7705,
+ -0.3048,
+ 0.5598,
+ 0.5598,
+ -0.3048,
+ 0.7705,
+ 0.2943,
+ -0.3048,
+ 0.9058,
+ 0,
+ -0.3048,
+ 0.9524,
+ -0.2943,
+ -0.3048,
+ 0.9058,
+ -0.5598,
+ -0.3048,
+ 0.7705,
+ -0.7705,
+ -0.3048,
+ 0.5598,
+ -0.9058,
+ -0.3048,
+ 0.2943,
+ -0.9524,
+ -0.3048,
+ 0,
+ -0.9058,
+ -0.3048,
+ -0.2943,
+ -0.7705,
+ -0.3048,
+ -0.5598,
+ -0.5598,
+ -0.3048,
+ -0.7705,
+ -0.2943,
+ -0.3048,
+ -0.9058,
+ 0,
+ -0.3048,
+ -0.9524,
+ 0.2943,
+ -0.3048,
+ -0.9058,
+ 0.5598,
+ -0.3048,
+ -0.7705,
+ 0.7705,
+ -0.3048,
+ -0.5598,
+ 0.9058,
+ -0.3048,
+ -0.2943,
+ 0.9524,
+ -0.3048,
+ 0,
+ 0.9058,
+ -0.3048,
+ 0.2943,
+ 0.9397,
+ -0.1542,
+ 0.3053,
+ 0.8267,
+ -0.1801,
+ 0.533,
+ 0.5715,
+ -0.2334,
+ 0.7867,
+ 0.3005,
+ -0.2334,
+ 0.9248,
+ 0,
+ -0.2334,
+ 0.9724,
+ -0.3555,
+ -0.1801,
+ 0.9172,
+ -0.5808,
+ -0.1542,
+ 0.7993,
+ -0.7993,
+ -0.1542,
+ 0.5808,
+ -0.9397,
+ -0.1542,
+ 0.3053,
+ -0.988,
+ -0.1542,
+ 0,
+ -0.9397,
+ -0.1542,
+ -0.3053,
+ -0.7993,
+ -0.1542,
+ -0.5808,
+ -0.5808,
+ -0.1542,
+ -0.7993,
+ -0.3053,
+ -0.1542,
+ -0.9397,
+ 0,
+ -0.1542,
+ -0.988,
+ 0.3053,
+ -0.1542,
+ -0.9397,
+ 0.5808,
+ -0.1542,
+ -0.7993,
+ 0.7993,
+ -0.1542,
+ -0.5808,
+ 0.9397,
+ -0.1542,
+ -0.3053,
+ 0.988,
+ -0.1542,
+ 0,
+ 0.9397,
+ -0.1542,
+ 0.3053,
+ 0.9511,
+ 0,
+ 0.309,
+ 0.891,
+ 0,
+ 0.454,
+ -0.454,
+ 0,
+ 0.891,
+ -0.5878,
+ 0,
+ 0.809,
+ -0.809,
+ 0,
+ 0.5878,
+ -0.9511,
+ 0,
+ 0.309,
+ -1,
+ 0,
+ 0,
+ -0.9511,
+ 0,
+ -0.309,
+ -0.809,
+ 0,
+ -0.5878,
+ -0.5878,
+ 0,
+ -0.809,
+ -0.309,
+ 0,
+ -0.9511,
+ 0,
+ 0,
+ -1,
+ 0.309,
+ 0,
+ -0.9511,
+ 0.5878,
+ 0,
+ -0.809,
+ 0.809,
+ 0,
+ -0.5878,
+ 0.9511,
+ 0,
+ -0.309,
+ 1,
+ 0,
+ 0,
+ 0.9511,
+ 0,
+ 0.309,
+ 0.9397,
+ 0.1542,
+ 0.3053,
+ 0.8806,
+ 0.1524,
+ 0.4487,
+ -0.4487,
+ 0.1524,
+ 0.8806,
+ -0.5808,
+ 0.1542,
+ 0.7993,
+ -0.7993,
+ 0.1542,
+ 0.5808,
+ -0.9397,
+ 0.1542,
+ 0.3053,
+ -0.988,
+ 0.1542,
+ 0,
+ -0.9397,
+ 0.1542,
+ -0.3053,
+ -0.7993,
+ 0.1542,
+ -0.5808,
+ -0.5808,
+ 0.1542,
+ -0.7993,
+ -0.3053,
+ 0.1542,
+ -0.9397,
+ 0,
+ 0.1542,
+ -0.988,
+ 0.3053,
+ 0.1542,
+ -0.9397,
+ 0.5808,
+ 0.1542,
+ -0.7993,
+ 0.7993,
+ 0.1542,
+ -0.5808,
+ 0.9397,
+ 0.1542,
+ -0.3053,
+ 0.988,
+ 0.1542,
+ 0,
+ 0.9397,
+ 0.1542,
+ 0.3053,
+ 0.9058,
+ 0.3048,
+ 0.2943,
+ 0.8496,
+ 0.3014,
+ 0.4329,
+ -0.4329,
+ 0.3014,
+ 0.8496,
+ -0.5598,
+ 0.3048,
+ 0.7705,
+ -0.7705,
+ 0.3048,
+ 0.5598,
+ -0.9058,
+ 0.3048,
+ 0.2943,
+ -0.9524,
+ 0.3048,
+ 0,
+ -0.9058,
+ 0.3048,
+ -0.2943,
+ -0.7705,
+ 0.3048,
+ -0.5598,
+ -0.5598,
+ 0.3048,
+ -0.7705,
+ -0.2943,
+ 0.3048,
+ -0.9058,
+ 0,
+ 0.3048,
+ -0.9524,
+ 0.2943,
+ 0.3048,
+ -0.9058,
+ 0.5598,
+ 0.3048,
+ -0.7705,
+ 0.7705,
+ 0.3048,
+ -0.5598,
+ 0.9058,
+ 0.3048,
+ -0.2943,
+ 0.9524,
+ 0.3048,
+ 0,
+ 0.9058,
+ 0.3048,
+ 0.2943,
+ 0.8503,
+ 0.448,
+ 0.2763,
+ 0.7986,
+ 0.4436,
+ 0.4069,
+ -0.4069,
+ 0.4436,
+ 0.7986,
+ -0.5255,
+ 0.448,
+ 0.7233,
+ -0.7233,
+ 0.448,
+ 0.5255,
+ -0.8503,
+ 0.448,
+ 0.2763,
+ -0.894,
+ 0.448,
+ 0,
+ -0.8503,
+ 0.448,
+ -0.2763,
+ -0.7233,
+ 0.448,
+ -0.5255,
+ -0.5255,
+ 0.448,
+ -0.7233,
+ -0.2763,
+ 0.448,
+ -0.8503,
+ 0,
+ 0.448,
+ -0.894,
+ 0.2763,
+ 0.448,
+ -0.8503,
+ 0.5255,
+ 0.448,
+ -0.7233,
+ 0.7233,
+ 0.448,
+ -0.5255,
+ 0.8503,
+ 0.448,
+ -0.2763,
+ 0.894,
+ 0.448,
+ 0,
+ 0.8503,
+ 0.448,
+ 0.2763,
+ 0.7745,
+ 0.5804,
+ 0.2516,
+ 0.7286,
+ 0.5756,
+ 0.3712,
+ -0.3712,
+ 0.5756,
+ 0.7286,
+ -0.4787,
+ 0.5804,
+ 0.6588,
+ -0.6588,
+ 0.5804,
+ 0.4787,
+ -0.7745,
+ 0.5804,
+ 0.2516,
+ -0.8143,
+ 0.5804,
+ 0,
+ -0.7745,
+ 0.5804,
+ -0.2516,
+ -0.6588,
+ 0.5804,
+ -0.4787,
+ -0.4787,
+ 0.5804,
+ -0.6588,
+ -0.2516,
+ 0.5804,
+ -0.7745,
+ 0,
+ 0.5804,
+ -0.8143,
+ 0.2516,
+ 0.5804,
+ -0.7745,
+ 0.4787,
+ 0.5804,
+ -0.6588,
+ 0.6588,
+ 0.5804,
+ -0.4787,
+ 0.7745,
+ 0.5804,
+ -0.2516,
+ 0.8143,
+ 0.5804,
+ 0,
+ 0.7745,
+ 0.5804,
+ 0.2516,
+ 0.6803,
+ 0.6988,
+ 0.221,
+ 0.6412,
+ 0.6943,
+ 0.3267,
+ -0.3267,
+ 0.6943,
+ 0.6412,
+ -0.4205,
+ 0.6988,
+ 0.5787,
+ -0.5787,
+ 0.6988,
+ 0.4205,
+ -0.6803,
+ 0.6988,
+ 0.221,
+ -0.7153,
+ 0.6988,
+ 0,
+ -0.6803,
+ 0.6988,
+ -0.221,
+ -0.5787,
+ 0.6988,
+ -0.4205,
+ -0.4205,
+ 0.6988,
+ -0.5787,
+ -0.221,
+ 0.6988,
+ -0.6803,
+ 0,
+ 0.6988,
+ -0.7153,
+ 0.221,
+ 0.6988,
+ -0.6803,
+ 0.4205,
+ 0.6988,
+ -0.5787,
+ 0.5787,
+ 0.6988,
+ -0.4205,
+ 0.6803,
+ 0.6988,
+ -0.221,
+ 0.7153,
+ 0.6988,
+ 0,
+ 0.6803,
+ 0.6988,
+ 0.221,
+ 0.5703,
+ 0.8003,
+ 0.1853,
+ 0.5385,
+ 0.7967,
+ 0.2744,
+ -0.2744,
+ 0.7967,
+ 0.5385,
+ -0.3525,
+ 0.8003,
+ 0.4851,
+ -0.4851,
+ 0.8003,
+ 0.3525,
+ -0.5703,
+ 0.8003,
+ 0.1853,
+ -0.5997,
+ 0.8003,
+ 0,
+ -0.5703,
+ 0.8003,
+ -0.1853,
+ -0.4851,
+ 0.8003,
+ -0.3525,
+ -0.3525,
+ 0.8003,
+ -0.4851,
+ -0.1853,
+ 0.8003,
+ -0.5703,
+ 0,
+ 0.8003,
+ -0.5997,
+ 0.1853,
+ 0.8003,
+ -0.5703,
+ 0.3525,
+ 0.8003,
+ -0.4851,
+ 0.4851,
+ 0.8003,
+ -0.3525,
+ 0.5703,
+ 0.8003,
+ -0.1853,
+ 0.5997,
+ 0.8003,
+ 0,
+ 0.5703,
+ 0.8003,
+ 0.1853,
+ 0.4477,
+ 0.8823,
+ 0.1455,
+ 0.4235,
+ 0.8798,
+ 0.2158,
+ -0.2158,
+ 0.8798,
+ 0.4235,
+ -0.2767,
+ 0.8823,
+ 0.3808,
+ -0.3808,
+ 0.8823,
+ 0.2767,
+ -0.4477,
+ 0.8823,
+ 0.1455,
+ -0.4708,
+ 0.8823,
+ 0,
+ -0.4477,
+ 0.8823,
+ -0.1455,
+ -0.3808,
+ 0.8823,
+ -0.2767,
+ -0.2767,
+ 0.8823,
+ -0.3808,
+ -0.1455,
+ 0.8823,
+ -0.4477,
+ 0,
+ 0.8823,
+ -0.4708,
+ 0.1455,
+ 0.8823,
+ -0.4477,
+ 0.2767,
+ 0.8823,
+ -0.3808,
+ 0.3808,
+ 0.8823,
+ -0.2767,
+ 0.4477,
+ 0.8823,
+ -0.1455,
+ 0.4708,
+ 0.8823,
+ 0,
+ 0.4477,
+ 0.8823,
+ 0.1455,
+ 0.3173,
+ 0.9427,
+ 0.1031,
+ 0.3005,
+ 0.9414,
+ 0.1531,
+ -0.1531,
+ 0.9414,
+ 0.3005,
+ -0.1961,
+ 0.9427,
+ 0.2699,
+ -0.2699,
+ 0.9427,
+ 0.1961,
+ -0.3173,
+ 0.9427,
+ 0.1031,
+ -0.3336,
+ 0.9427,
+ 0,
+ -0.3173,
+ 0.9427,
+ -0.1031,
+ -0.2699,
+ 0.9427,
+ -0.1961,
+ -0.1961,
+ 0.9427,
+ -0.2699,
+ -0.1031,
+ 0.9427,
+ -0.3173,
+ 0,
+ 0.9427,
+ -0.3336,
+ 0.1031,
+ 0.9427,
+ -0.3173,
+ 0.1961,
+ 0.9427,
+ -0.2699,
+ 0.2699,
+ 0.9427,
+ -0.1961,
+ 0.3173,
+ 0.9427,
+ -0.1031,
+ 0.3336,
+ 0.9427,
+ 0,
+ 0.3173,
+ 0.9427,
+ 0.1031,
+ 0.1906,
+ 0.9797,
+ 0.0619,
+ 0.1587,
+ 0.9836,
+ 0.0858,
+ -0.078,
+ 0.9836,
+ 0.1627,
+ -0.1178,
+ 0.9797,
+ 0.1621,
+ -0.1621,
+ 0.9797,
+ 0.1178,
+ -0.1906,
+ 0.9797,
+ 0.0619,
+ -0.2004,
+ 0.9797,
+ 0,
+ -0.1906,
+ 0.9797,
+ -0.0619,
+ -0.1621,
+ 0.9797,
+ -0.1178,
+ -0.1178,
+ 0.9797,
+ -0.1621,
+ -0.0619,
+ 0.9797,
+ -0.1906,
+ 0,
+ 0.9797,
+ -0.2004,
+ 0.0619,
+ 0.9797,
+ -0.1906,
+ 0.1178,
+ 0.9797,
+ -0.1621,
+ 0.1621,
+ 0.9797,
+ -0.1178,
+ 0.1906,
+ 0.9797,
+ -0.0619,
+ 0.2004,
+ 0.9797,
+ 0,
+ 0.1906,
+ 0.9797,
+ 0.0619,
+ 0,
+ -1,
+ 0,
+ 0,
+ -1,
+ 0,
+ 0,
+ -1,
+ 0,
+ 0,
+ -1,
+ 0,
+ 0,
+ -1,
+ 0,
+ 0,
+ -1,
+ 0,
+ 0,
+ -1,
+ 0,
+ 0,
+ -1,
+ 0,
+ 0,
+ -1,
+ 0,
+ 0,
+ -1,
+ 0,
+ 0,
+ -1,
+ 0,
+ 0,
+ -1,
+ 0,
+ 0,
+ -1,
+ 0,
+ 0,
+ -1,
+ 0,
+ 0,
+ -1,
+ 0,
+ 0,
+ -1,
+ 0,
+ 0,
+ -1,
+ 0,
+ 0,
+ -1,
+ 0,
+ 0,
+ -1,
+ 0,
+ 0,
+ -1,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0.0461,
+ 0.9969,
+ 0.0635,
+ 0,
+ 1,
+ 0,
+ 0.0242,
+ 0.9969,
+ 0.0746,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0.9969,
+ 0.0785,
+ 0,
+ 1,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 1,
+ 0,
+ -0.1906,
+ 0.9797,
+ -0.0619,
+ -0.1621,
+ 0.9797,
+ -0.1178,
+ -0.3173,
+ 0.9427,
+ -0.1031,
+ -0.2699,
+ 0.9427,
+ -0.1961,
+ -0.1178,
+ 0.9797,
+ -0.1621,
+ -0.1961,
+ 0.9427,
+ -0.2699,
+ -0.0619,
+ 0.9797,
+ -0.1906,
+ -0.1031,
+ 0.9427,
+ -0.3173,
+ 0,
+ 0.9797,
+ -0.2004,
+ 0,
+ 0.9427,
+ -0.3336,
+ 0.0619,
+ 0.9797,
+ -0.1906,
+ 0.1031,
+ 0.9427,
+ -0.3173,
+ 0.1178,
+ 0.9797,
+ -0.1621,
+ 0.1961,
+ 0.9427,
+ -0.2699,
+ 0.1621,
+ 0.9797,
+ -0.1178,
+ 0.2699,
+ 0.9427,
+ -0.1961,
+ 0.1906,
+ 0.9797,
+ -0.0619,
+ 0.3173,
+ 0.9427,
+ -0.1031,
+ 0.2004,
+ 0.9797,
+ 0,
+ 0.3336,
+ 0.9427,
+ 0,
+ 0.1906,
+ 0.9797,
+ 0.0619,
+ 0.3173,
+ 0.9427,
+ 0.1031,
+ 0.1621,
+ 0.9797,
+ 0.1178,
+ 0.2699,
+ 0.9427,
+ 0.1961,
+ 0.1178,
+ 0.9797,
+ 0.1621,
+ 0.1961,
+ 0.9427,
+ 0.2699,
+ 0.0619,
+ 0.9797,
+ 0.1906,
+ 0.1031,
+ 0.9427,
+ 0.3173,
+ 0,
+ 0.9797,
+ 0.2004,
+ 0,
+ 0.9427,
+ 0.3336,
+ -0.0619,
+ 0.9797,
+ 0.1906,
+ -0.1031,
+ 0.9427,
+ 0.3173,
+ -0.1178,
+ 0.9797,
+ 0.1621,
+ -0.1961,
+ 0.9427,
+ 0.2699,
+ -0.1621,
+ 0.9797,
+ 0.1178,
+ -0.2699,
+ 0.9427,
+ 0.1961,
+ -0.1906,
+ 0.9797,
+ 0.0619,
+ -0.3173,
+ 0.9427,
+ 0.1031,
+ -0.2004,
+ 0.9797,
+ 0,
+ -0.3336,
+ 0.9427,
+ 0,
+ -0.1906,
+ 0.9797,
+ -0.0619,
+ -0.3173,
+ 0.9427,
+ -0.1031,
+ -0.4477,
+ 0.8823,
+ -0.1455,
+ -0.3808,
+ 0.8823,
+ -0.2767,
+ -0.2767,
+ 0.8823,
+ -0.3808,
+ -0.1455,
+ 0.8823,
+ -0.4477,
+ 0,
+ 0.8823,
+ -0.4708,
+ 0.1455,
+ 0.8823,
+ -0.4477,
+ 0.2767,
+ 0.8823,
+ -0.3808,
+ 0.3808,
+ 0.8823,
+ -0.2767,
+ 0.4477,
+ 0.8823,
+ -0.1455,
+ 0.4708,
+ 0.8823,
+ 0,
+ 0.4477,
+ 0.8823,
+ 0.1455,
+ 0.3808,
+ 0.8823,
+ 0.2767,
+ 0.2767,
+ 0.8823,
+ 0.3808,
+ 0.1455,
+ 0.8823,
+ 0.4477,
+ 0,
+ 0.8823,
+ 0.4708,
+ -0.1455,
+ 0.8823,
+ 0.4477,
+ -0.2767,
+ 0.8823,
+ 0.3808,
+ -0.3808,
+ 0.8823,
+ 0.2767,
+ -0.4477,
+ 0.8823,
+ 0.1455,
+ -0.4708,
+ 0.8823,
+ 0,
+ -0.4477,
+ 0.8823,
+ -0.1455,
+ -0.5703,
+ 0.8003,
+ -0.1853,
+ -0.4851,
+ 0.8003,
+ -0.3525,
+ -0.3525,
+ 0.8003,
+ -0.4851,
+ -0.1853,
+ 0.8003,
+ -0.5703,
+ 0,
+ 0.8003,
+ -0.5997,
+ 0.1853,
+ 0.8003,
+ -0.5703,
+ 0.3525,
+ 0.8003,
+ -0.4851,
+ 0.4851,
+ 0.8003,
+ -0.3525,
+ 0.5703,
+ 0.8003,
+ -0.1853,
+ 0.5997,
+ 0.8003,
+ 0,
+ 0.5703,
+ 0.8003,
+ 0.1853,
+ 0.4851,
+ 0.8003,
+ 0.3525,
+ 0.3525,
+ 0.8003,
+ 0.4851,
+ 0.1853,
+ 0.8003,
+ 0.5703,
+ 0,
+ 0.8003,
+ 0.5997,
+ -0.1853,
+ 0.8003,
+ 0.5703,
+ -0.3525,
+ 0.8003,
+ 0.4851,
+ -0.4851,
+ 0.8003,
+ 0.3525,
+ -0.5703,
+ 0.8003,
+ 0.1853,
+ -0.5997,
+ 0.8003,
+ 0,
+ -0.5703,
+ 0.8003,
+ -0.1853,
+ -0.6803,
+ 0.6988,
+ -0.221,
+ -0.5787,
+ 0.6988,
+ -0.4205,
+ -0.4205,
+ 0.6988,
+ -0.5787,
+ -0.221,
+ 0.6988,
+ -0.6803,
+ 0,
+ 0.6988,
+ -0.7153,
+ 0.221,
+ 0.6988,
+ -0.6803,
+ 0.4205,
+ 0.6988,
+ -0.5787,
+ 0.5787,
+ 0.6988,
+ -0.4205,
+ 0.6803,
+ 0.6988,
+ -0.221,
+ 0.7153,
+ 0.6988,
+ 0,
+ 0.6803,
+ 0.6988,
+ 0.221,
+ 0.5787,
+ 0.6988,
+ 0.4205,
+ 0.4205,
+ 0.6988,
+ 0.5787,
+ 0.221,
+ 0.6988,
+ 0.6803,
+ 0,
+ 0.6988,
+ 0.7153,
+ -0.221,
+ 0.6988,
+ 0.6803,
+ -0.4205,
+ 0.6988,
+ 0.5787,
+ -0.5787,
+ 0.6988,
+ 0.4205,
+ -0.6803,
+ 0.6988,
+ 0.221,
+ -0.7153,
+ 0.6988,
+ 0,
+ -0.6803,
+ 0.6988,
+ -0.221,
+ -0.7745,
+ 0.5804,
+ -0.2516,
+ -0.6588,
+ 0.5804,
+ -0.4787,
+ -0.4787,
+ 0.5804,
+ -0.6588,
+ -0.2516,
+ 0.5804,
+ -0.7745,
+ 0,
+ 0.5804,
+ -0.8143,
+ 0.2516,
+ 0.5804,
+ -0.7745,
+ 0.4787,
+ 0.5804,
+ -0.6588,
+ 0.6588,
+ 0.5804,
+ -0.4787,
+ 0.7745,
+ 0.5804,
+ -0.2516,
+ 0.8143,
+ 0.5804,
+ 0,
+ 0.7745,
+ 0.5804,
+ 0.2516,
+ 0.6588,
+ 0.5804,
+ 0.4787,
+ 0.4787,
+ 0.5804,
+ 0.6588,
+ 0.2516,
+ 0.5804,
+ 0.7745,
+ 0,
+ 0.5804,
+ 0.8143,
+ -0.2516,
+ 0.5804,
+ 0.7745,
+ -0.4787,
+ 0.5804,
+ 0.6588,
+ -0.6588,
+ 0.5804,
+ 0.4787,
+ -0.7745,
+ 0.5804,
+ 0.2516,
+ -0.8143,
+ 0.5804,
+ 0,
+ -0.7745,
+ 0.5804,
+ -0.2516,
+ -0.8503,
+ 0.448,
+ -0.2763,
+ -0.7233,
+ 0.448,
+ -0.5255,
+ -0.5255,
+ 0.448,
+ -0.7233,
+ -0.2763,
+ 0.448,
+ -0.8503,
+ 0,
+ 0.448,
+ -0.894,
+ 0.2763,
+ 0.448,
+ -0.8503,
+ 0.5255,
+ 0.448,
+ -0.7233,
+ 0.7233,
+ 0.448,
+ -0.5255,
+ 0.8503,
+ 0.448,
+ -0.2763,
+ 0.894,
+ 0.448,
+ 0,
+ 0.8503,
+ 0.448,
+ 0.2763,
+ 0.7233,
+ 0.448,
+ 0.5255,
+ 0.5255,
+ 0.448,
+ 0.7233,
+ 0.2763,
+ 0.448,
+ 0.8503,
+ 0,
+ 0.448,
+ 0.894,
+ -0.2763,
+ 0.448,
+ 0.8503,
+ -0.5255,
+ 0.448,
+ 0.7233,
+ -0.7233,
+ 0.448,
+ 0.5255,
+ -0.8503,
+ 0.448,
+ 0.2763,
+ -0.894,
+ 0.448,
+ 0,
+ -0.8503,
+ 0.448,
+ -0.2763,
+ -0.9058,
+ 0.3048,
+ -0.2943,
+ -0.7705,
+ 0.3048,
+ -0.5598,
+ -0.5598,
+ 0.3048,
+ -0.7705,
+ -0.2943,
+ 0.3048,
+ -0.9058,
+ 0,
+ 0.3048,
+ -0.9524,
+ 0.2943,
+ 0.3048,
+ -0.9058,
+ 0.5598,
+ 0.3048,
+ -0.7705,
+ 0.7705,
+ 0.3048,
+ -0.5598,
+ 0.9058,
+ 0.3048,
+ -0.2943,
+ 0.9524,
+ 0.3048,
+ 0,
+ 0.9058,
+ 0.3048,
+ 0.2943,
+ 0.7705,
+ 0.3048,
+ 0.5598,
+ 0.5598,
+ 0.3048,
+ 0.7705,
+ 0.2943,
+ 0.3048,
+ 0.9058,
+ 0,
+ 0.3048,
+ 0.9524,
+ -0.2943,
+ 0.3048,
+ 0.9058,
+ -0.5598,
+ 0.3048,
+ 0.7705,
+ -0.7705,
+ 0.3048,
+ 0.5598,
+ -0.9058,
+ 0.3048,
+ 0.2943,
+ -0.9524,
+ 0.3048,
+ 0,
+ -0.9058,
+ 0.3048,
+ -0.2943,
+ -0.9397,
+ 0.1542,
+ -0.3053,
+ -0.8267,
+ 0.1801,
+ -0.533,
+ -0.5715,
+ 0.2334,
+ -0.7867,
+ -0.3005,
+ 0.2334,
+ -0.9248,
+ 0,
+ 0.2334,
+ -0.9724,
+ 0.3555,
+ 0.1801,
+ -0.9172,
+ 0.5808,
+ 0.1542,
+ -0.7993,
+ 0.7993,
+ 0.1542,
+ -0.5808,
+ 0.9397,
+ 0.1542,
+ -0.3053,
+ 0.988,
+ 0.1542,
+ 0,
+ 0.9397,
+ 0.1542,
+ 0.3053,
+ 0.7993,
+ 0.1542,
+ 0.5808,
+ 0.5808,
+ 0.1542,
+ 0.7993,
+ 0.3053,
+ 0.1542,
+ 0.9397,
+ 0,
+ 0.1542,
+ 0.988,
+ -0.3053,
+ 0.1542,
+ 0.9397,
+ -0.5808,
+ 0.1542,
+ 0.7993,
+ -0.7993,
+ 0.1542,
+ 0.5808,
+ -0.9397,
+ 0.1542,
+ 0.3053,
+ -0.988,
+ 0.1542,
+ 0,
+ -0.9397,
+ 0.1542,
+ -0.3053,
+ -0.9511,
+ 0,
+ -0.309,
+ -0.891,
+ 0,
+ -0.454,
+ 0.454,
+ 0,
+ -0.891,
+ 0.5878,
+ 0,
+ -0.809,
+ 0.809,
+ 0,
+ -0.5878,
+ 0.9511,
+ 0,
+ -0.309,
+ 1,
+ 0,
+ 0,
+ 0.9511,
+ 0,
+ 0.309,
+ 0.809,
+ 0,
+ 0.5878,
+ 0.5878,
+ 0,
+ 0.809,
+ 0.309,
+ 0,
+ 0.9511,
+ 0,
+ 0,
+ 1,
+ -0.309,
+ 0,
+ 0.9511,
+ -0.5878,
+ 0,
+ 0.809,
+ -0.809,
+ 0,
+ 0.5878,
+ -0.9511,
+ 0,
+ 0.309,
+ -1,
+ 0,
+ 0,
+ -0.9511,
+ 0,
+ -0.309,
+ -0.9397,
+ -0.1542,
+ -0.3053,
+ -0.8806,
+ -0.1524,
+ -0.4487,
+ 0.4487,
+ -0.1524,
+ -0.8806,
+ 0.5808,
+ -0.1542,
+ -0.7993,
+ 0.7993,
+ -0.1542,
+ -0.5808,
+ 0.9397,
+ -0.1542,
+ -0.3053,
+ 0.988,
+ -0.1542,
+ 0,
+ 0.9397,
+ -0.1542,
+ 0.3053,
+ 0.7993,
+ -0.1542,
+ 0.5808,
+ 0.5808,
+ -0.1542,
+ 0.7993,
+ 0.3053,
+ -0.1542,
+ 0.9397,
+ 0,
+ -0.1542,
+ 0.988,
+ -0.3053,
+ -0.1542,
+ 0.9397,
+ -0.5808,
+ -0.1542,
+ 0.7993,
+ -0.7993,
+ -0.1542,
+ 0.5808,
+ -0.9397,
+ -0.1542,
+ 0.3053,
+ -0.988,
+ -0.1542,
+ 0,
+ -0.9397,
+ -0.1542,
+ -0.3053,
+ -0.9058,
+ -0.3048,
+ -0.2943,
+ -0.8496,
+ -0.3014,
+ -0.4329,
+ 0.4329,
+ -0.3014,
+ -0.8496,
+ 0.5598,
+ -0.3048,
+ -0.7705,
+ 0.7705,
+ -0.3048,
+ -0.5598,
+ 0.9058,
+ -0.3048,
+ -0.2943,
+ 0.9524,
+ -0.3048,
+ 0,
+ 0.9058,
+ -0.3048,
+ 0.2943,
+ 0.7705,
+ -0.3048,
+ 0.5598,
+ 0.5598,
+ -0.3048,
+ 0.7705,
+ 0.2943,
+ -0.3048,
+ 0.9058,
+ 0,
+ -0.3048,
+ 0.9524,
+ -0.2943,
+ -0.3048,
+ 0.9058,
+ -0.5598,
+ -0.3048,
+ 0.7705,
+ -0.7705,
+ -0.3048,
+ 0.5598,
+ -0.9058,
+ -0.3048,
+ 0.2943,
+ -0.9524,
+ -0.3048,
+ 0,
+ -0.9058,
+ -0.3048,
+ -0.2943,
+ -0.8503,
+ -0.448,
+ -0.2763,
+ -0.7986,
+ -0.4436,
+ -0.4069,
+ 0.4069,
+ -0.4436,
+ -0.7986,
+ 0.5255,
+ -0.448,
+ -0.7233,
+ 0.7233,
+ -0.448,
+ -0.5255,
+ 0.8503,
+ -0.448,
+ -0.2763,
+ 0.894,
+ -0.448,
+ 0,
+ 0.8503,
+ -0.448,
+ 0.2763,
+ 0.7233,
+ -0.448,
+ 0.5255,
+ 0.5255,
+ -0.448,
+ 0.7233,
+ 0.2763,
+ -0.448,
+ 0.8503,
+ 0,
+ -0.448,
+ 0.894,
+ -0.2763,
+ -0.448,
+ 0.8503,
+ -0.5255,
+ -0.448,
+ 0.7233,
+ -0.7233,
+ -0.448,
+ 0.5255,
+ -0.8503,
+ -0.448,
+ 0.2763,
+ -0.894,
+ -0.448,
+ 0,
+ -0.8503,
+ -0.448,
+ -0.2763,
+ -0.7745,
+ -0.5804,
+ -0.2516,
+ -0.7286,
+ -0.5756,
+ -0.3712,
+ 0.3712,
+ -0.5756,
+ -0.7286,
+ 0.4787,
+ -0.5804,
+ -0.6588,
+ 0.6588,
+ -0.5804,
+ -0.4787,
+ 0.7745,
+ -0.5804,
+ -0.2516,
+ 0.8143,
+ -0.5804,
+ 0,
+ 0.7745,
+ -0.5804,
+ 0.2516,
+ 0.6588,
+ -0.5804,
+ 0.4787,
+ 0.4787,
+ -0.5804,
+ 0.6588,
+ 0.2516,
+ -0.5804,
+ 0.7745,
+ 0,
+ -0.5804,
+ 0.8143,
+ -0.2516,
+ -0.5804,
+ 0.7745,
+ -0.4787,
+ -0.5804,
+ 0.6588,
+ -0.6588,
+ -0.5804,
+ 0.4787,
+ -0.7745,
+ -0.5804,
+ 0.2516,
+ -0.8143,
+ -0.5804,
+ 0,
+ -0.7745,
+ -0.5804,
+ -0.2516,
+ -0.6803,
+ -0.6988,
+ -0.221,
+ -0.6412,
+ -0.6943,
+ -0.3267,
+ 0.3267,
+ -0.6943,
+ -0.6412,
+ 0.4205,
+ -0.6988,
+ -0.5787,
+ 0.5787,
+ -0.6988,
+ -0.4205,
+ 0.6803,
+ -0.6988,
+ -0.221,
+ 0.7153,
+ -0.6988,
+ 0,
+ 0.6803,
+ -0.6988,
+ 0.221,
+ 0.5787,
+ -0.6988,
+ 0.4205,
+ 0.4205,
+ -0.6988,
+ 0.5787,
+ 0.221,
+ -0.6988,
+ 0.6803,
+ 0,
+ -0.6988,
+ 0.7153,
+ -0.221,
+ -0.6988,
+ 0.6803,
+ -0.4205,
+ -0.6988,
+ 0.5787,
+ -0.5787,
+ -0.6988,
+ 0.4205,
+ -0.6803,
+ -0.6988,
+ 0.221,
+ -0.7153,
+ -0.6988,
+ 0,
+ -0.6803,
+ -0.6988,
+ -0.221,
+ -0.5703,
+ -0.8003,
+ -0.1853,
+ -0.5385,
+ -0.7967,
+ -0.2744,
+ 0.2744,
+ -0.7967,
+ -0.5385,
+ 0.3525,
+ -0.8003,
+ -0.4851,
+ 0.4851,
+ -0.8003,
+ -0.3525,
+ 0.5703,
+ -0.8003,
+ -0.1853,
+ 0.5997,
+ -0.8003,
+ 0,
+ 0.5703,
+ -0.8003,
+ 0.1853,
+ 0.4851,
+ -0.8003,
+ 0.3525,
+ 0.3525,
+ -0.8003,
+ 0.4851,
+ 0.1853,
+ -0.8003,
+ 0.5703,
+ 0,
+ -0.8003,
+ 0.5997,
+ -0.1853,
+ -0.8003,
+ 0.5703,
+ -0.3525,
+ -0.8003,
+ 0.4851,
+ -0.4851,
+ -0.8003,
+ 0.3525,
+ -0.5703,
+ -0.8003,
+ 0.1853,
+ -0.5997,
+ -0.8003,
+ 0,
+ -0.5703,
+ -0.8003,
+ -0.1853,
+ -0.4477,
+ -0.8823,
+ -0.1455,
+ -0.4235,
+ -0.8798,
+ -0.2158,
+ 0.2158,
+ -0.8798,
+ -0.4235,
+ 0.2767,
+ -0.8823,
+ -0.3808,
+ 0.3808,
+ -0.8823,
+ -0.2767,
+ 0.4477,
+ -0.8823,
+ -0.1455,
+ 0.4708,
+ -0.8823,
+ 0,
+ 0.4477,
+ -0.8823,
+ 0.1455,
+ 0.3808,
+ -0.8823,
+ 0.2767,
+ 0.2767,
+ -0.8823,
+ 0.3808,
+ 0.1455,
+ -0.8823,
+ 0.4477,
+ 0,
+ -0.8823,
+ 0.4708,
+ -0.1455,
+ -0.8823,
+ 0.4477,
+ -0.2767,
+ -0.8823,
+ 0.3808,
+ -0.3808,
+ -0.8823,
+ 0.2767,
+ -0.4477,
+ -0.8823,
+ 0.1455,
+ -0.4708,
+ -0.8823,
+ 0,
+ -0.4477,
+ -0.8823,
+ -0.1455,
+ -0.3173,
+ -0.9427,
+ -0.1031,
+ -0.3005,
+ -0.9414,
+ -0.1531,
+ 0.1531,
+ -0.9414,
+ -0.3005,
+ 0.1961,
+ -0.9427,
+ -0.2699,
+ 0.2699,
+ -0.9427,
+ -0.1961,
+ 0.3173,
+ -0.9427,
+ -0.1031,
+ 0.3336,
+ -0.9427,
+ 0,
+ 0.3173,
+ -0.9427,
+ 0.1031,
+ 0.2699,
+ -0.9427,
+ 0.1961,
+ 0.1961,
+ -0.9427,
+ 0.2699,
+ 0.1031,
+ -0.9427,
+ 0.3173,
+ 0,
+ -0.9427,
+ 0.3336,
+ -0.1031,
+ -0.9427,
+ 0.3173,
+ -0.1961,
+ -0.9427,
+ 0.2699,
+ -0.2699,
+ -0.9427,
+ 0.1961,
+ -0.3173,
+ -0.9427,
+ 0.1031,
+ -0.3336,
+ -0.9427,
+ 0,
+ -0.3173,
+ -0.9427,
+ -0.1031,
+ -0.1906,
+ -0.9797,
+ -0.0619,
+ -0.1587,
+ -0.9836,
+ -0.0858,
+ 0.078,
+ -0.9836,
+ -0.1627,
+ 0.1178,
+ -0.9797,
+ -0.1621,
+ 0.1621,
+ -0.9797,
+ -0.1178,
+ 0.1906,
+ -0.9797,
+ -0.0619,
+ 0.2004,
+ -0.9797,
+ 0,
+ 0.1906,
+ -0.9797,
+ 0.0619,
+ 0.1621,
+ -0.9797,
+ 0.1178,
+ 0.1178,
+ -0.9797,
+ 0.1621,
+ 0.0619,
+ -0.9797,
+ 0.1906,
+ 0,
+ -0.9797,
+ 0.2004,
+ -0.0619,
+ -0.9797,
+ 0.1906,
+ -0.1178,
+ -0.9797,
+ 0.1621,
+ -0.1621,
+ -0.9797,
+ 0.1178,
+ -0.1906,
+ -0.9797,
+ 0.0619,
+ -0.2004,
+ -0.9797,
+ 0,
+ -0.1906,
+ -0.9797,
+ -0.0619,
+ 0,
+ 1,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ -1,
+ 0,
+ -0.0461,
+ -0.9969,
+ -0.0635,
+ 0,
+ -1,
+ 0,
+ -0.0242,
+ -0.9969,
+ -0.0746,
+ 0,
+ -1,
+ 0,
+ 0,
+ -0.9969,
+ -0.0785,
+ 0,
+ -1,
+ 0,
+ 0,
+ -1,
+ 0,
+ 0,
+ -1,
+ 0,
+ 0,
+ -1,
+ 0,
+ 0,
+ -1,
+ 0,
+ 0,
+ -1,
+ 0,
+ 0,
+ -1,
+ 0,
+ 0,
+ -1,
+ 0,
+ 0,
+ -1,
+ 0,
+ 0,
+ -1,
+ 0,
+ 0,
+ -1,
+ 0,
+ 0,
+ -1,
+ 0,
+ 0,
+ -1,
+ 0,
+ 0,
+ -1,
+ 0,
+ 0,
+ -1,
+ 0,
+ 0,
+ -1,
+ 0,
+ 0,
+ -1,
+ 0
+ ],
+ "tangents": [
+ -0.4482,
+ -0.0307,
+ 0.8934,
+ -1,
+ -0.5629,
+ 0.0062,
+ 0.8265,
+ -1,
+ -0.438,
+ -0.0493,
+ 0.8976,
+ -1,
+ -0.5878,
+ 0,
+ 0.809,
+ -1,
+ -0.7908,
+ 0.0062,
+ 0.6121,
+ -1,
+ -0.809,
+ 0,
+ 0.5878,
+ -1,
+ -0.9412,
+ 0.0062,
+ 0.3378,
+ -1,
+ -0.9511,
+ 0,
+ 0.309,
+ -1,
+ -0.9995,
+ 0.0062,
+ 0.0304,
+ -1,
+ -1,
+ 0,
+ 0,
+ -1,
+ -0.96,
+ 0.0062,
+ -0.28,
+ -1,
+ -0.9511,
+ 0,
+ -0.309,
+ -1,
+ -0.8265,
+ 0.0062,
+ -0.5629,
+ -1,
+ -0.809,
+ 0,
+ -0.5878,
+ -1,
+ -0.6121,
+ 0.0062,
+ -0.7908,
+ -1,
+ -0.5878,
+ 0,
+ -0.809,
+ -1,
+ -0.3378,
+ 0.0062,
+ -0.9412,
+ -1,
+ -0.309,
+ 0,
+ -0.9511,
+ -1,
+ -0.0304,
+ 0.0062,
+ -0.9995,
+ -1,
+ 0,
+ 0,
+ -1,
+ -1,
+ 0.28,
+ 0.0062,
+ -0.96,
+ -1,
+ 0.309,
+ 0,
+ -0.9511,
+ -1,
+ 0.5629,
+ 0.0062,
+ -0.8265,
+ -1,
+ 0.5878,
+ 0,
+ -0.809,
+ -1,
+ 0.7908,
+ 0.0062,
+ -0.6121,
+ -1,
+ 0.809,
+ 0,
+ -0.5878,
+ -1,
+ 0.9412,
+ 0.0062,
+ -0.3378,
+ -1,
+ 0.9511,
+ 0,
+ -0.309,
+ -1,
+ 0.9995,
+ 0.0062,
+ -0.0304,
+ -1,
+ 1,
+ 0,
+ 0,
+ -1,
+ 0.96,
+ 0.0062,
+ 0.28,
+ -1,
+ 0.9511,
+ 0,
+ 0.309,
+ -1,
+ 0.8265,
+ 0.0062,
+ 0.5629,
+ -1,
+ 0.809,
+ 0,
+ 0.5878,
+ -1,
+ 0.6121,
+ 0.0062,
+ 0.7908,
+ -1,
+ 0.5878,
+ 0,
+ 0.809,
+ -1,
+ 0.3378,
+ 0.0062,
+ 0.9412,
+ -1,
+ 0.309,
+ 0,
+ 0.9511,
+ -1,
+ 0.0304,
+ 0.0062,
+ 0.9995,
+ -1,
+ 0,
+ 0,
+ 1,
+ -1,
+ -0.1625,
+ 0.0307,
+ 0.9862,
+ -1,
+ -0.1732,
+ 0.0493,
+ 0.9836,
+ -1,
+ -0.4222,
+ -0.0651,
+ 0.9042,
+ -1,
+ -0.5878,
+ 0,
+ 0.809,
+ -1,
+ -0.809,
+ 0,
+ 0.5878,
+ -1,
+ -0.9511,
+ 0,
+ 0.309,
+ -1,
+ -1,
+ 0,
+ 0,
+ -1,
+ -0.9511,
+ 0,
+ -0.309,
+ -1,
+ -0.809,
+ 0,
+ -0.5878,
+ -1,
+ -0.5878,
+ 0,
+ -0.809,
+ -1,
+ -0.309,
+ 0,
+ -0.9511,
+ -1,
+ 0,
+ 0,
+ -1,
+ -1,
+ 0.309,
+ 0,
+ -0.9511,
+ -1,
+ 0.5878,
+ 0,
+ -0.809,
+ -1,
+ 0.809,
+ 0,
+ -0.5878,
+ -1,
+ 0.9511,
+ 0,
+ -0.309,
+ -1,
+ 1,
+ 0,
+ 0,
+ -1,
+ 0.9511,
+ 0,
+ 0.309,
+ -1,
+ 0.809,
+ 0,
+ 0.5878,
+ -1,
+ 0.5878,
+ 0,
+ 0.809,
+ -1,
+ 0.309,
+ 0,
+ 0.9511,
+ -1,
+ 0,
+ 0,
+ 1,
+ -1,
+ -0.1899,
+ 0.0651,
+ 0.9796,
+ -1,
+ -0.4023,
+ -0.0754,
+ 0.9124,
+ -1,
+ -0.5878,
+ 0,
+ 0.809,
+ -1,
+ -0.809,
+ 0,
+ 0.5878,
+ -1,
+ -0.9511,
+ 0,
+ 0.309,
+ -1,
+ -1,
+ 0,
+ 0,
+ -1,
+ -0.9511,
+ 0,
+ -0.309,
+ -1,
+ -0.809,
+ 0,
+ -0.5878,
+ -1,
+ -0.5878,
+ 0,
+ -0.809,
+ -1,
+ -0.309,
+ 0,
+ -0.9511,
+ -1,
+ 0,
+ 0,
+ -1,
+ -1,
+ 0.309,
+ 0,
+ -0.9511,
+ -1,
+ 0.5878,
+ 0,
+ -0.809,
+ -1,
+ 0.809,
+ 0,
+ -0.5878,
+ -1,
+ 0.9511,
+ 0,
+ -0.309,
+ -1,
+ 1,
+ 0,
+ 0,
+ -1,
+ 0.9511,
+ 0,
+ 0.309,
+ -1,
+ 0.809,
+ 0,
+ 0.5878,
+ -1,
+ 0.5878,
+ 0,
+ 0.809,
+ -1,
+ 0.309,
+ 0,
+ 0.9511,
+ -1,
+ 0,
+ 0,
+ 1,
+ -1,
+ -0.2109,
+ 0.0754,
+ 0.9746,
+ -1,
+ -0.3802,
+ -0.0787,
+ 0.9215,
+ -1,
+ -0.5878,
+ 0,
+ 0.809,
+ -1,
+ -0.809,
+ 0,
+ 0.5878,
+ -1,
+ -0.9511,
+ 0,
+ 0.309,
+ -1,
+ -1,
+ 0,
+ 0,
+ -1,
+ -0.9511,
+ 0,
+ -0.309,
+ -1,
+ -0.809,
+ 0,
+ -0.5878,
+ -1,
+ -0.5878,
+ 0,
+ -0.809,
+ -1,
+ -0.309,
+ 0,
+ -0.9511,
+ -1,
+ 0,
+ 0,
+ -1,
+ -1,
+ 0.309,
+ 0,
+ -0.9511,
+ -1,
+ 0.5878,
+ 0,
+ -0.809,
+ -1,
+ 0.809,
+ 0,
+ -0.5878,
+ -1,
+ 0.9511,
+ 0,
+ -0.309,
+ -1,
+ 1,
+ 0,
+ 0,
+ -1,
+ 0.9511,
+ 0,
+ 0.309,
+ -1,
+ 0.809,
+ 0,
+ 0.5878,
+ -1,
+ 0.5878,
+ 0,
+ 0.809,
+ -1,
+ 0.309,
+ 0,
+ 0.9511,
+ -1,
+ 0,
+ 0,
+ 1,
+ -1,
+ -0.234,
+ 0.0787,
+ 0.969,
+ -1,
+ -0.3582,
+ -0.0745,
+ 0.9306,
+ -1,
+ -0.5878,
+ 0,
+ 0.809,
+ -1,
+ -0.809,
+ 0,
+ 0.5878,
+ -1,
+ -0.9511,
+ 0,
+ 0.309,
+ -1,
+ -1,
+ 0,
+ 0,
+ -1,
+ -0.9511,
+ 0,
+ -0.309,
+ -1,
+ -0.809,
+ 0,
+ -0.5878,
+ -1,
+ -0.5878,
+ 0,
+ -0.809,
+ -1,
+ -0.309,
+ 0,
+ -0.9511,
+ -1,
+ 0,
+ 0,
+ -1,
+ -1,
+ 0.309,
+ 0,
+ -0.9511,
+ -1,
+ 0.5878,
+ 0,
+ -0.809,
+ -1,
+ 0.809,
+ 0,
+ -0.5878,
+ -1,
+ 0.9511,
+ 0,
+ -0.309,
+ -1,
+ 1,
+ 0,
+ 0,
+ -1,
+ 0.9511,
+ 0,
+ 0.309,
+ -1,
+ 0.809,
+ 0,
+ 0.5878,
+ -1,
+ 0.5878,
+ 0,
+ 0.809,
+ -1,
+ 0.309,
+ 0,
+ 0.9511,
+ -1,
+ 0,
+ 0,
+ 1,
+ -1,
+ -0.2572,
+ 0.0745,
+ 0.9635,
+ -1,
+ -0.3384,
+ -0.0633,
+ 0.9389,
+ -1,
+ -0.5878,
+ 0,
+ 0.809,
+ -1,
+ -0.809,
+ 0,
+ 0.5878,
+ -1,
+ -0.9511,
+ 0,
+ 0.309,
+ -1,
+ -1,
+ 0,
+ 0,
+ -1,
+ -0.9511,
+ 0,
+ -0.309,
+ -1,
+ -0.809,
+ 0,
+ -0.5878,
+ -1,
+ -0.5878,
+ 0,
+ -0.809,
+ -1,
+ -0.309,
+ 0,
+ -0.9511,
+ -1,
+ 0,
+ 0,
+ -1,
+ -1,
+ 0.309,
+ 0,
+ -0.9511,
+ -1,
+ 0.5878,
+ 0,
+ -0.809,
+ -1,
+ 0.809,
+ 0,
+ -0.5878,
+ -1,
+ 0.9511,
+ 0,
+ -0.309,
+ -1,
+ 1,
+ 0,
+ 0,
+ -1,
+ 0.9511,
+ 0,
+ 0.309,
+ -1,
+ 0.809,
+ 0,
+ 0.5878,
+ -1,
+ 0.5878,
+ 0,
+ 0.809,
+ -1,
+ 0.309,
+ 0,
+ 0.9511,
+ -1,
+ 0,
+ 0,
+ 1,
+ -1,
+ -0.2781,
+ 0.0633,
+ 0.9585,
+ -1,
+ -0.3226,
+ -0.0459,
+ 0.9454,
+ -1,
+ -0.5878,
+ 0,
+ 0.809,
+ -1,
+ -0.809,
+ 0,
+ 0.5878,
+ -1,
+ -0.9511,
+ 0,
+ 0.309,
+ -1,
+ -1,
+ 0,
+ 0,
+ -1,
+ -0.9511,
+ 0,
+ -0.309,
+ -1,
+ -0.809,
+ 0,
+ -0.5878,
+ -1,
+ -0.5878,
+ 0,
+ -0.809,
+ -1,
+ -0.309,
+ 0,
+ -0.9511,
+ -1,
+ 0,
+ 0,
+ -1,
+ -1,
+ 0.309,
+ 0,
+ -0.9511,
+ -1,
+ 0.5878,
+ 0,
+ -0.809,
+ -1,
+ 0.809,
+ 0,
+ -0.5878,
+ -1,
+ 0.9511,
+ 0,
+ -0.309,
+ -1,
+ 1,
+ 0,
+ 0,
+ -1,
+ 0.9511,
+ 0,
+ 0.309,
+ -1,
+ 0.809,
+ 0,
+ 0.5878,
+ -1,
+ 0.5878,
+ 0,
+ 0.809,
+ -1,
+ 0.309,
+ 0,
+ 0.9511,
+ -1,
+ 0,
+ 0,
+ 1,
+ -1,
+ -0.2947,
+ 0.0459,
+ 0.9545,
+ -1,
+ -0.3125,
+ -0.0241,
+ 0.9496,
+ -1,
+ -0.5426,
+ -0.0045,
+ 0.84,
+ -1,
+ -0.8106,
+ -0.012,
+ 0.5854,
+ -1,
+ -0.9519,
+ -0.012,
+ 0.3063,
+ -1,
+ -0.9999,
+ -0.012,
+ -0.0029,
+ -1,
+ -0.9321,
+ -0.004,
+ -0.3621,
+ -1,
+ -0.809,
+ 0,
+ -0.5878,
+ -1,
+ -0.5878,
+ 0,
+ -0.809,
+ -1,
+ -0.309,
+ 0,
+ -0.9511,
+ -1,
+ 0,
+ 0,
+ -1,
+ -1,
+ 0.309,
+ 0,
+ -0.9511,
+ -1,
+ 0.5878,
+ 0,
+ -0.809,
+ -1,
+ 0.809,
+ 0,
+ -0.5878,
+ -1,
+ 0.9511,
+ 0,
+ -0.309,
+ -1,
+ 1,
+ 0,
+ 0,
+ -1,
+ 0.9511,
+ 0,
+ 0.309,
+ -1,
+ 0.809,
+ 0,
+ 0.5878,
+ -1,
+ 0.5878,
+ 0,
+ 0.809,
+ -1,
+ 0.309,
+ 0,
+ 0.9511,
+ -1,
+ 0,
+ 0,
+ 1,
+ -1,
+ -0.3053,
+ 0.0241,
+ 0.9519,
+ -1,
+ -0.309,
+ 0,
+ 0.9511,
+ -1,
+ -0.454,
+ 0,
+ 0.891,
+ -1,
+ -0.891,
+ 0,
+ -0.454,
+ -1,
+ -0.809,
+ 0,
+ -0.5878,
+ -1,
+ -0.5878,
+ 0,
+ -0.809,
+ -1,
+ -0.309,
+ 0,
+ -0.9511,
+ -1,
+ 0,
+ 0,
+ -1,
+ -1,
+ 0.309,
+ 0,
+ -0.9511,
+ -1,
+ 0.5878,
+ 0,
+ -0.809,
+ -1,
+ 0.809,
+ 0,
+ -0.5878,
+ -1,
+ 0.9511,
+ 0,
+ -0.309,
+ -1,
+ 1,
+ 0,
+ 0,
+ -1,
+ 0.9511,
+ 0,
+ 0.309,
+ -1,
+ 0.809,
+ 0,
+ 0.5878,
+ -1,
+ 0.5878,
+ 0,
+ 0.809,
+ -1,
+ 0.309,
+ 0,
+ 0.9511,
+ -1,
+ 0,
+ 0,
+ 1,
+ -1,
+ -0.309,
+ 0,
+ 0.9511,
+ -1,
+ -0.3125,
+ 0.0241,
+ 0.9496,
+ -1,
+ -0.454,
+ 0,
+ 0.891,
+ -1,
+ -0.891,
+ 0,
+ -0.454,
+ -1,
+ -0.809,
+ 0,
+ -0.5878,
+ -1,
+ -0.5878,
+ 0,
+ -0.809,
+ -1,
+ -0.309,
+ 0,
+ -0.9511,
+ -1,
+ 0,
+ 0,
+ -1,
+ -1,
+ 0.309,
+ 0,
+ -0.9511,
+ -1,
+ 0.5878,
+ 0,
+ -0.809,
+ -1,
+ 0.809,
+ 0,
+ -0.5878,
+ -1,
+ 0.9511,
+ 0,
+ -0.309,
+ -1,
+ 1,
+ 0,
+ 0,
+ -1,
+ 0.9511,
+ 0,
+ 0.309,
+ -1,
+ 0.809,
+ 0,
+ 0.5878,
+ -1,
+ 0.5878,
+ 0,
+ 0.809,
+ -1,
+ 0.309,
+ 0,
+ 0.9511,
+ -1,
+ 0,
+ 0,
+ 1,
+ -1,
+ -0.3053,
+ -0.0241,
+ 0.9519,
+ -1,
+ -0.3226,
+ 0.0459,
+ 0.9454,
+ -1,
+ -0.454,
+ 0,
+ 0.891,
+ -1,
+ -0.891,
+ 0,
+ -0.454,
+ -1,
+ -0.809,
+ 0,
+ -0.5878,
+ -1,
+ -0.5878,
+ 0,
+ -0.809,
+ -1,
+ -0.309,
+ 0,
+ -0.9511,
+ -1,
+ 0,
+ 0,
+ -1,
+ -1,
+ 0.309,
+ 0,
+ -0.9511,
+ -1,
+ 0.5878,
+ 0,
+ -0.809,
+ -1,
+ 0.809,
+ 0,
+ -0.5878,
+ -1,
+ 0.9511,
+ 0,
+ -0.309,
+ -1,
+ 1,
+ 0,
+ 0,
+ -1,
+ 0.9511,
+ 0,
+ 0.309,
+ -1,
+ 0.809,
+ 0,
+ 0.5878,
+ -1,
+ 0.5878,
+ 0,
+ 0.809,
+ -1,
+ 0.309,
+ 0,
+ 0.9511,
+ -1,
+ 0,
+ 0,
+ 1,
+ -1,
+ -0.2947,
+ -0.0459,
+ 0.9545,
+ -1,
+ -0.3384,
+ 0.0633,
+ 0.9389,
+ -1,
+ -0.454,
+ 0,
+ 0.891,
+ -1,
+ -0.891,
+ 0,
+ -0.454,
+ -1,
+ -0.809,
+ 0,
+ -0.5878,
+ -1,
+ -0.5878,
+ 0,
+ -0.809,
+ -1,
+ -0.309,
+ 0,
+ -0.9511,
+ -1,
+ 0,
+ 0,
+ -1,
+ -1,
+ 0.309,
+ 0,
+ -0.9511,
+ -1,
+ 0.5878,
+ 0,
+ -0.809,
+ -1,
+ 0.809,
+ 0,
+ -0.5878,
+ -1,
+ 0.9511,
+ 0,
+ -0.309,
+ -1,
+ 1,
+ 0,
+ 0,
+ -1,
+ 0.9511,
+ 0,
+ 0.309,
+ -1,
+ 0.809,
+ 0,
+ 0.5878,
+ -1,
+ 0.5878,
+ 0,
+ 0.809,
+ -1,
+ 0.309,
+ 0,
+ 0.9511,
+ -1,
+ 0,
+ 0,
+ 1,
+ -1,
+ -0.2781,
+ -0.0633,
+ 0.9585,
+ -1,
+ -0.3582,
+ 0.0745,
+ 0.9306,
+ -1,
+ -0.454,
+ 0,
+ 0.891,
+ -1,
+ -0.891,
+ 0,
+ -0.454,
+ -1,
+ -0.809,
+ 0,
+ -0.5878,
+ -1,
+ -0.5878,
+ 0,
+ -0.809,
+ -1,
+ -0.309,
+ 0,
+ -0.9511,
+ -1,
+ 0,
+ 0,
+ -1,
+ -1,
+ 0.309,
+ 0,
+ -0.9511,
+ -1,
+ 0.5878,
+ 0,
+ -0.809,
+ -1,
+ 0.809,
+ 0,
+ -0.5878,
+ -1,
+ 0.9511,
+ 0,
+ -0.309,
+ -1,
+ 1,
+ 0,
+ 0,
+ -1,
+ 0.9511,
+ 0,
+ 0.309,
+ -1,
+ 0.809,
+ 0,
+ 0.5878,
+ -1,
+ 0.5878,
+ 0,
+ 0.809,
+ -1,
+ 0.309,
+ 0,
+ 0.9511,
+ -1,
+ 0,
+ 0,
+ 1,
+ -1,
+ -0.2572,
+ -0.0745,
+ 0.9635,
+ -1,
+ -0.3802,
+ 0.0787,
+ 0.9215,
+ -1,
+ -0.454,
+ 0,
+ 0.891,
+ -1,
+ -0.891,
+ 0,
+ -0.454,
+ -1,
+ -0.809,
+ 0,
+ -0.5878,
+ -1,
+ -0.5878,
+ 0,
+ -0.809,
+ -1,
+ -0.309,
+ 0,
+ -0.9511,
+ -1,
+ 0,
+ 0,
+ -1,
+ -1,
+ 0.309,
+ 0,
+ -0.9511,
+ -1,
+ 0.5878,
+ 0,
+ -0.809,
+ -1,
+ 0.809,
+ 0,
+ -0.5878,
+ -1,
+ 0.9511,
+ 0,
+ -0.309,
+ -1,
+ 1,
+ 0,
+ 0,
+ -1,
+ 0.9511,
+ 0,
+ 0.309,
+ -1,
+ 0.809,
+ 0,
+ 0.5878,
+ -1,
+ 0.5878,
+ 0,
+ 0.809,
+ -1,
+ 0.309,
+ 0,
+ 0.9511,
+ -1,
+ 0,
+ 0,
+ 1,
+ -1,
+ -0.234,
+ -0.0787,
+ 0.969,
+ -1,
+ -0.4023,
+ 0.0754,
+ 0.9124,
+ -1,
+ -0.454,
+ 0,
+ 0.891,
+ -1,
+ -0.891,
+ 0,
+ -0.454,
+ -1,
+ -0.809,
+ 0,
+ -0.5878,
+ -1,
+ -0.5878,
+ 0,
+ -0.809,
+ -1,
+ -0.309,
+ 0,
+ -0.9511,
+ -1,
+ 0,
+ 0,
+ -1,
+ -1,
+ 0.309,
+ 0,
+ -0.9511,
+ -1,
+ 0.5878,
+ 0,
+ -0.809,
+ -1,
+ 0.809,
+ 0,
+ -0.5878,
+ -1,
+ 0.9511,
+ 0,
+ -0.309,
+ -1,
+ 1,
+ 0,
+ 0,
+ -1,
+ 0.9511,
+ 0,
+ 0.309,
+ -1,
+ 0.809,
+ 0,
+ 0.5878,
+ -1,
+ 0.5878,
+ 0,
+ 0.809,
+ -1,
+ 0.309,
+ 0,
+ 0.9511,
+ -1,
+ 0,
+ 0,
+ 1,
+ -1,
+ -0.2109,
+ -0.0754,
+ 0.9746,
+ -1,
+ -0.4222,
+ 0.0651,
+ 0.9042,
+ -1,
+ -0.454,
+ 0,
+ 0.891,
+ -1,
+ -0.891,
+ 0,
+ -0.454,
+ -1,
+ -0.809,
+ 0,
+ -0.5878,
+ -1,
+ -0.5878,
+ 0,
+ -0.809,
+ -1,
+ -0.309,
+ 0,
+ -0.9511,
+ -1,
+ 0,
+ 0,
+ -1,
+ -1,
+ 0.309,
+ 0,
+ -0.9511,
+ -1,
+ 0.5878,
+ 0,
+ -0.809,
+ -1,
+ 0.809,
+ 0,
+ -0.5878,
+ -1,
+ 0.9511,
+ 0,
+ -0.309,
+ -1,
+ 1,
+ 0,
+ 0,
+ -1,
+ 0.9511,
+ 0,
+ 0.309,
+ -1,
+ 0.809,
+ 0,
+ 0.5878,
+ -1,
+ 0.5878,
+ 0,
+ 0.809,
+ -1,
+ 0.309,
+ 0,
+ 0.9511,
+ -1,
+ 0,
+ 0,
+ 1,
+ -1,
+ -0.1899,
+ -0.0651,
+ 0.9796,
+ -1,
+ -0.438,
+ 0.0493,
+ 0.8976,
+ -1,
+ -0.454,
+ 0,
+ 0.891,
+ -1,
+ -0.891,
+ 0,
+ -0.454,
+ -1,
+ -0.809,
+ 0,
+ -0.5878,
+ -1,
+ -0.5878,
+ 0,
+ -0.809,
+ -1,
+ -0.309,
+ 0,
+ -0.9511,
+ -1,
+ 0,
+ 0,
+ -1,
+ -1,
+ 0.309,
+ 0,
+ -0.9511,
+ -1,
+ 0.5878,
+ 0,
+ -0.809,
+ -1,
+ 0.809,
+ 0,
+ -0.5878,
+ -1,
+ 0.9511,
+ 0,
+ -0.309,
+ -1,
+ 1,
+ 0,
+ 0,
+ -1,
+ 0.9511,
+ 0,
+ 0.309,
+ -1,
+ 0.809,
+ 0,
+ 0.5878,
+ -1,
+ 0.5878,
+ 0,
+ 0.809,
+ -1,
+ 0.309,
+ 0,
+ 0.9511,
+ -1,
+ 0,
+ 0,
+ 1,
+ -1,
+ -0.1732,
+ -0.0493,
+ 0.9836,
+ -1,
+ -0.4482,
+ 0.0307,
+ 0.8934,
+ -1,
+ -0.5422,
+ 0.0142,
+ 0.8402,
+ -1,
+ -0.923,
+ -0.0096,
+ -0.3847,
+ -1,
+ -0.7908,
+ 0.0062,
+ -0.6121,
+ -1,
+ -0.5629,
+ 0.0062,
+ -0.8265,
+ -1,
+ -0.28,
+ 0.0062,
+ -0.96,
+ -1,
+ 0.0304,
+ 0.0062,
+ -0.9995,
+ -1,
+ 0.3378,
+ 0.0062,
+ -0.9412,
+ -1,
+ 0.6121,
+ 0.0062,
+ -0.7908,
+ -1,
+ 0.8265,
+ 0.0062,
+ -0.5629,
+ -1,
+ 0.96,
+ 0.0062,
+ -0.28,
+ -1,
+ 0.9995,
+ 0.0062,
+ 0.0304,
+ -1,
+ 0.9412,
+ 0.0062,
+ 0.3378,
+ -1,
+ 0.7908,
+ 0.0062,
+ 0.6121,
+ -1,
+ 0.5629,
+ 0.0062,
+ 0.8265,
+ -1,
+ 0.28,
+ 0.0062,
+ 0.96,
+ -1,
+ -0.0304,
+ 0.0062,
+ 0.9995,
+ -1,
+ -0.1625,
+ -0.0307,
+ 0.9862,
+ -1,
+ -0.454,
+ 0,
+ 0.891,
+ -1,
+ -0.7071,
+ 0,
+ 0.7071,
+ -1,
+ -0.891,
+ 0,
+ 0.454,
+ -1,
+ -0.9877,
+ 0,
+ 0.1564,
+ -1,
+ -0.9877,
+ 0,
+ -0.1564,
+ -1,
+ -0.891,
+ 0,
+ -0.454,
+ -1,
+ -0.7071,
+ 0,
+ -0.7071,
+ -1,
+ -0.454,
+ 0,
+ -0.891,
+ -1,
+ -0.1564,
+ 0,
+ -0.9877,
+ -1,
+ 0.1564,
+ 0,
+ -0.9877,
+ -1,
+ 0.454,
+ 0,
+ -0.891,
+ -1,
+ 0.7071,
+ 0,
+ -0.7071,
+ -1,
+ 0.891,
+ 0,
+ -0.454,
+ -1,
+ 0.9877,
+ 0,
+ -0.1564,
+ -1,
+ 0.9877,
+ 0,
+ 0.1564,
+ -1,
+ 0.891,
+ 0,
+ 0.454,
+ -1,
+ 0.7071,
+ 0,
+ 0.7071,
+ -1,
+ 0.454,
+ 0,
+ 0.891,
+ -1,
+ 0.1564,
+ 0,
+ 0.9877,
+ -1,
+ -0.1564,
+ 0,
+ 0.9877,
+ -1,
+ -0.454,
+ 0,
+ 0.891,
+ -1,
+ -0.809,
+ 0,
+ 0.5878,
+ -1,
+ -0.7071,
+ 0,
+ 0.7071,
+ -1,
+ -0.9511,
+ 0,
+ 0.309,
+ -1,
+ -0.891,
+ 0,
+ 0.454,
+ -1,
+ -1,
+ 0,
+ 0,
+ -1,
+ -0.9877,
+ 0,
+ 0.1564,
+ -1,
+ -0.9877,
+ 0,
+ -0.1564,
+ -1,
+ -0.891,
+ 0,
+ -0.454,
+ -1,
+ -0.7071,
+ 0,
+ -0.7071,
+ -1,
+ -0.454,
+ 0,
+ -0.891,
+ -1,
+ -0.1564,
+ 0,
+ -0.9877,
+ -1,
+ 0.1564,
+ 0,
+ -0.9877,
+ -1,
+ 0.454,
+ 0,
+ -0.891,
+ -1,
+ 0.7071,
+ 0,
+ -0.7071,
+ -1,
+ 0.891,
+ 0,
+ -0.454,
+ -1,
+ 0.9877,
+ 0,
+ -0.1564,
+ -1,
+ 0.9877,
+ 0,
+ 0.1564,
+ -1,
+ 0.891,
+ 0,
+ 0.454,
+ -1,
+ 0.7071,
+ 0,
+ 0.7071,
+ -1,
+ 0.454,
+ 0,
+ 0.891,
+ -1,
+ 0.1564,
+ 0,
+ 0.9877,
+ -1,
+ -0.1564,
+ 0,
+ 0.9877,
+ -1,
+ -0.4482,
+ -0.0307,
+ 0.8934,
+ -1,
+ -0.5629,
+ 0.0062,
+ 0.8265,
+ -1,
+ -0.438,
+ -0.0493,
+ 0.8976,
+ -1,
+ -0.5878,
+ 0,
+ 0.809,
+ -1,
+ -0.7908,
+ 0.0062,
+ 0.6121,
+ -1,
+ -0.809,
+ 0,
+ 0.5878,
+ -1,
+ -0.9412,
+ 0.0062,
+ 0.3378,
+ -1,
+ -0.9511,
+ 0,
+ 0.309,
+ -1,
+ -0.9995,
+ 0.0062,
+ 0.0304,
+ -1,
+ -1,
+ 0,
+ 0,
+ -1,
+ -0.96,
+ 0.0062,
+ -0.28,
+ -1,
+ -0.9511,
+ 0,
+ -0.309,
+ -1,
+ -0.8265,
+ 0.0062,
+ -0.5629,
+ -1,
+ -0.809,
+ 0,
+ -0.5878,
+ -1,
+ -0.6121,
+ 0.0062,
+ -0.7908,
+ -1,
+ -0.5878,
+ 0,
+ -0.809,
+ -1,
+ -0.3378,
+ 0.0062,
+ -0.9412,
+ -1,
+ -0.309,
+ 0,
+ -0.9511,
+ -1,
+ -0.0304,
+ 0.0062,
+ -0.9995,
+ -1,
+ 0,
+ 0,
+ -1,
+ -1,
+ 0.28,
+ 0.0062,
+ -0.96,
+ -1,
+ 0.309,
+ 0,
+ -0.9511,
+ -1,
+ 0.5629,
+ 0.0062,
+ -0.8265,
+ -1,
+ 0.5878,
+ 0,
+ -0.809,
+ -1,
+ 0.7908,
+ 0.0062,
+ -0.6121,
+ -1,
+ 0.809,
+ 0,
+ -0.5878,
+ -1,
+ 0.9412,
+ 0.0062,
+ -0.3378,
+ -1,
+ 0.9511,
+ 0,
+ -0.309,
+ -1,
+ 0.9995,
+ 0.0062,
+ -0.0304,
+ -1,
+ 1,
+ 0,
+ 0,
+ -1,
+ 0.96,
+ 0.0062,
+ 0.28,
+ -1,
+ 0.9511,
+ 0,
+ 0.309,
+ -1,
+ 0.8265,
+ 0.0062,
+ 0.5629,
+ -1,
+ 0.809,
+ 0,
+ 0.5878,
+ -1,
+ 0.6121,
+ 0.0062,
+ 0.7908,
+ -1,
+ 0.5878,
+ 0,
+ 0.809,
+ -1,
+ 0.3378,
+ 0.0062,
+ 0.9412,
+ -1,
+ 0.309,
+ 0,
+ 0.9511,
+ -1,
+ 0.0304,
+ 0.0062,
+ 0.9995,
+ -1,
+ 0,
+ 0,
+ 1,
+ -1,
+ -0.1625,
+ 0.0307,
+ 0.9862,
+ -1,
+ -0.1732,
+ 0.0493,
+ 0.9836,
+ -1,
+ -0.4222,
+ -0.0651,
+ 0.9042,
+ -1,
+ -0.5878,
+ 0,
+ 0.809,
+ -1,
+ -0.809,
+ 0,
+ 0.5878,
+ -1,
+ -0.9511,
+ 0,
+ 0.309,
+ -1,
+ -1,
+ 0,
+ 0,
+ -1,
+ -0.9511,
+ 0,
+ -0.309,
+ -1,
+ -0.809,
+ 0,
+ -0.5878,
+ -1,
+ -0.5878,
+ 0,
+ -0.809,
+ -1,
+ -0.309,
+ 0,
+ -0.9511,
+ -1,
+ 0,
+ 0,
+ -1,
+ -1,
+ 0.309,
+ 0,
+ -0.9511,
+ -1,
+ 0.5878,
+ 0,
+ -0.809,
+ -1,
+ 0.809,
+ 0,
+ -0.5878,
+ -1,
+ 0.9511,
+ 0,
+ -0.309,
+ -1,
+ 1,
+ 0,
+ 0,
+ -1,
+ 0.9511,
+ 0,
+ 0.309,
+ -1,
+ 0.809,
+ 0,
+ 0.5878,
+ -1,
+ 0.5878,
+ 0,
+ 0.809,
+ -1,
+ 0.309,
+ 0,
+ 0.9511,
+ -1,
+ 0,
+ 0,
+ 1,
+ -1,
+ -0.1899,
+ 0.0651,
+ 0.9796,
+ -1,
+ -0.4023,
+ -0.0754,
+ 0.9124,
+ -1,
+ -0.5878,
+ 0,
+ 0.809,
+ -1,
+ -0.809,
+ 0,
+ 0.5878,
+ -1,
+ -0.9511,
+ 0,
+ 0.309,
+ -1,
+ -1,
+ 0,
+ 0,
+ -1,
+ -0.9511,
+ 0,
+ -0.309,
+ -1,
+ -0.809,
+ 0,
+ -0.5878,
+ -1,
+ -0.5878,
+ 0,
+ -0.809,
+ -1,
+ -0.309,
+ 0,
+ -0.9511,
+ -1,
+ 0,
+ 0,
+ -1,
+ -1,
+ 0.309,
+ 0,
+ -0.9511,
+ -1,
+ 0.5878,
+ 0,
+ -0.809,
+ -1,
+ 0.809,
+ 0,
+ -0.5878,
+ -1,
+ 0.9511,
+ 0,
+ -0.309,
+ -1,
+ 1,
+ 0,
+ 0,
+ -1,
+ 0.9511,
+ 0,
+ 0.309,
+ -1,
+ 0.809,
+ 0,
+ 0.5878,
+ -1,
+ 0.5878,
+ 0,
+ 0.809,
+ -1,
+ 0.309,
+ 0,
+ 0.9511,
+ -1,
+ 0,
+ 0,
+ 1,
+ -1,
+ -0.2109,
+ 0.0754,
+ 0.9746,
+ -1,
+ -0.3802,
+ -0.0787,
+ 0.9215,
+ -1,
+ -0.5878,
+ 0,
+ 0.809,
+ -1,
+ -0.809,
+ 0,
+ 0.5878,
+ -1,
+ -0.9511,
+ 0,
+ 0.309,
+ -1,
+ -1,
+ 0,
+ 0,
+ -1,
+ -0.9511,
+ 0,
+ -0.309,
+ -1,
+ -0.809,
+ 0,
+ -0.5878,
+ -1,
+ -0.5878,
+ 0,
+ -0.809,
+ -1,
+ -0.309,
+ 0,
+ -0.9511,
+ -1,
+ 0,
+ 0,
+ -1,
+ -1,
+ 0.309,
+ 0,
+ -0.9511,
+ -1,
+ 0.5878,
+ 0,
+ -0.809,
+ -1,
+ 0.809,
+ 0,
+ -0.5878,
+ -1,
+ 0.9511,
+ 0,
+ -0.309,
+ -1,
+ 1,
+ 0,
+ 0,
+ -1,
+ 0.9511,
+ 0,
+ 0.309,
+ -1,
+ 0.809,
+ 0,
+ 0.5878,
+ -1,
+ 0.5878,
+ 0,
+ 0.809,
+ -1,
+ 0.309,
+ 0,
+ 0.9511,
+ -1,
+ 0,
+ 0,
+ 1,
+ -1,
+ -0.234,
+ 0.0787,
+ 0.969,
+ -1,
+ -0.3582,
+ -0.0745,
+ 0.9306,
+ -1,
+ -0.5878,
+ 0,
+ 0.809,
+ -1,
+ -0.809,
+ 0,
+ 0.5878,
+ -1,
+ -0.9511,
+ 0,
+ 0.309,
+ -1,
+ -1,
+ 0,
+ 0,
+ -1,
+ -0.9511,
+ 0,
+ -0.309,
+ -1,
+ -0.809,
+ 0,
+ -0.5878,
+ -1,
+ -0.5878,
+ 0,
+ -0.809,
+ -1,
+ -0.309,
+ 0,
+ -0.9511,
+ -1,
+ 0,
+ 0,
+ -1,
+ -1,
+ 0.309,
+ 0,
+ -0.9511,
+ -1,
+ 0.5878,
+ 0,
+ -0.809,
+ -1,
+ 0.809,
+ 0,
+ -0.5878,
+ -1,
+ 0.9511,
+ 0,
+ -0.309,
+ -1,
+ 1,
+ 0,
+ 0,
+ -1,
+ 0.9511,
+ 0,
+ 0.309,
+ -1,
+ 0.809,
+ 0,
+ 0.5878,
+ -1,
+ 0.5878,
+ 0,
+ 0.809,
+ -1,
+ 0.309,
+ 0,
+ 0.9511,
+ -1,
+ 0,
+ 0,
+ 1,
+ -1,
+ -0.2572,
+ 0.0745,
+ 0.9635,
+ -1,
+ -0.3384,
+ -0.0633,
+ 0.9389,
+ -1,
+ -0.5878,
+ 0,
+ 0.809,
+ -1,
+ -0.809,
+ 0,
+ 0.5878,
+ -1,
+ -0.9511,
+ 0,
+ 0.309,
+ -1,
+ -1,
+ 0,
+ 0,
+ -1,
+ -0.9511,
+ 0,
+ -0.309,
+ -1,
+ -0.809,
+ 0,
+ -0.5878,
+ -1,
+ -0.5878,
+ 0,
+ -0.809,
+ -1,
+ -0.309,
+ 0,
+ -0.9511,
+ -1,
+ 0,
+ 0,
+ -1,
+ -1,
+ 0.309,
+ 0,
+ -0.9511,
+ -1,
+ 0.5878,
+ 0,
+ -0.809,
+ -1,
+ 0.809,
+ 0,
+ -0.5878,
+ -1,
+ 0.9511,
+ 0,
+ -0.309,
+ -1,
+ 1,
+ 0,
+ 0,
+ -1,
+ 0.9511,
+ 0,
+ 0.309,
+ -1,
+ 0.809,
+ 0,
+ 0.5878,
+ -1,
+ 0.5878,
+ 0,
+ 0.809,
+ -1,
+ 0.309,
+ 0,
+ 0.9511,
+ -1,
+ 0,
+ 0,
+ 1,
+ -1,
+ -0.2781,
+ 0.0633,
+ 0.9585,
+ -1,
+ -0.3226,
+ -0.0459,
+ 0.9454,
+ -1,
+ -0.5878,
+ 0,
+ 0.809,
+ -1,
+ -0.809,
+ 0,
+ 0.5878,
+ -1,
+ -0.9511,
+ 0,
+ 0.309,
+ -1,
+ -1,
+ 0,
+ 0,
+ -1,
+ -0.9511,
+ 0,
+ -0.309,
+ -1,
+ -0.809,
+ 0,
+ -0.5878,
+ -1,
+ -0.5878,
+ 0,
+ -0.809,
+ -1,
+ -0.309,
+ 0,
+ -0.9511,
+ -1,
+ 0,
+ 0,
+ -1,
+ -1,
+ 0.309,
+ 0,
+ -0.9511,
+ -1,
+ 0.5878,
+ 0,
+ -0.809,
+ -1,
+ 0.809,
+ 0,
+ -0.5878,
+ -1,
+ 0.9511,
+ 0,
+ -0.309,
+ -1,
+ 1,
+ 0,
+ 0,
+ -1,
+ 0.9511,
+ 0,
+ 0.309,
+ -1,
+ 0.809,
+ 0,
+ 0.5878,
+ -1,
+ 0.5878,
+ 0,
+ 0.809,
+ -1,
+ 0.309,
+ 0,
+ 0.9511,
+ -1,
+ 0,
+ 0,
+ 1,
+ -1,
+ -0.2947,
+ 0.0459,
+ 0.9545,
+ -1,
+ -0.3125,
+ -0.0241,
+ 0.9496,
+ -1,
+ -0.5426,
+ -0.0045,
+ 0.84,
+ -1,
+ -0.8106,
+ -0.012,
+ 0.5854,
+ -1,
+ -0.9519,
+ -0.012,
+ 0.3063,
+ -1,
+ -0.9999,
+ -0.012,
+ -0.0029,
+ -1,
+ -0.9321,
+ -0.004,
+ -0.3621,
+ -1,
+ -0.809,
+ 0,
+ -0.5878,
+ -1,
+ -0.5878,
+ 0,
+ -0.809,
+ -1,
+ -0.309,
+ 0,
+ -0.9511,
+ -1,
+ 0,
+ 0,
+ -1,
+ -1,
+ 0.309,
+ 0,
+ -0.9511,
+ -1,
+ 0.5878,
+ 0,
+ -0.809,
+ -1,
+ 0.809,
+ 0,
+ -0.5878,
+ -1,
+ 0.9511,
+ 0,
+ -0.309,
+ -1,
+ 1,
+ 0,
+ 0,
+ -1,
+ 0.9511,
+ 0,
+ 0.309,
+ -1,
+ 0.809,
+ 0,
+ 0.5878,
+ -1,
+ 0.5878,
+ 0,
+ 0.809,
+ -1,
+ 0.309,
+ 0,
+ 0.9511,
+ -1,
+ 0,
+ 0,
+ 1,
+ -1,
+ -0.3053,
+ 0.0241,
+ 0.9519,
+ -1,
+ -0.309,
+ 0,
+ 0.9511,
+ -1,
+ -0.454,
+ 0,
+ 0.891,
+ -1,
+ -0.891,
+ 0,
+ -0.454,
+ -1,
+ -0.809,
+ 0,
+ -0.5878,
+ -1,
+ -0.5878,
+ 0,
+ -0.809,
+ -1,
+ -0.309,
+ 0,
+ -0.9511,
+ -1,
+ 0,
+ 0,
+ -1,
+ -1,
+ 0.309,
+ 0,
+ -0.9511,
+ -1,
+ 0.5878,
+ 0,
+ -0.809,
+ -1,
+ 0.809,
+ 0,
+ -0.5878,
+ -1,
+ 0.9511,
+ 0,
+ -0.309,
+ -1,
+ 1,
+ 0,
+ 0,
+ -1,
+ 0.9511,
+ 0,
+ 0.309,
+ -1,
+ 0.809,
+ 0,
+ 0.5878,
+ -1,
+ 0.5878,
+ 0,
+ 0.809,
+ -1,
+ 0.309,
+ 0,
+ 0.9511,
+ -1,
+ 0,
+ 0,
+ 1,
+ -1,
+ -0.309,
+ 0,
+ 0.9511,
+ -1,
+ -0.3125,
+ 0.0241,
+ 0.9496,
+ -1,
+ -0.454,
+ 0,
+ 0.891,
+ -1,
+ -0.891,
+ 0,
+ -0.454,
+ -1,
+ -0.809,
+ 0,
+ -0.5878,
+ -1,
+ -0.5878,
+ 0,
+ -0.809,
+ -1,
+ -0.309,
+ 0,
+ -0.9511,
+ -1,
+ 0,
+ 0,
+ -1,
+ -1,
+ 0.309,
+ 0,
+ -0.9511,
+ -1,
+ 0.5878,
+ 0,
+ -0.809,
+ -1,
+ 0.809,
+ 0,
+ -0.5878,
+ -1,
+ 0.9511,
+ 0,
+ -0.309,
+ -1,
+ 1,
+ 0,
+ 0,
+ -1,
+ 0.9511,
+ 0,
+ 0.309,
+ -1,
+ 0.809,
+ 0,
+ 0.5878,
+ -1,
+ 0.5878,
+ 0,
+ 0.809,
+ -1,
+ 0.309,
+ 0,
+ 0.9511,
+ -1,
+ 0,
+ 0,
+ 1,
+ -1,
+ -0.3053,
+ -0.0241,
+ 0.9519,
+ -1,
+ -0.3226,
+ 0.0459,
+ 0.9454,
+ -1,
+ -0.454,
+ 0,
+ 0.891,
+ -1,
+ -0.891,
+ 0,
+ -0.454,
+ -1,
+ -0.809,
+ 0,
+ -0.5878,
+ -1,
+ -0.5878,
+ 0,
+ -0.809,
+ -1,
+ -0.309,
+ 0,
+ -0.9511,
+ -1,
+ 0,
+ 0,
+ -1,
+ -1,
+ 0.309,
+ 0,
+ -0.9511,
+ -1,
+ 0.5878,
+ 0,
+ -0.809,
+ -1,
+ 0.809,
+ 0,
+ -0.5878,
+ -1,
+ 0.9511,
+ 0,
+ -0.309,
+ -1,
+ 1,
+ 0,
+ 0,
+ -1,
+ 0.9511,
+ 0,
+ 0.309,
+ -1,
+ 0.809,
+ 0,
+ 0.5878,
+ -1,
+ 0.5878,
+ 0,
+ 0.809,
+ -1,
+ 0.309,
+ 0,
+ 0.9511,
+ -1,
+ 0,
+ 0,
+ 1,
+ -1,
+ -0.2947,
+ -0.0459,
+ 0.9545,
+ -1,
+ -0.3384,
+ 0.0633,
+ 0.9389,
+ -1,
+ -0.454,
+ 0,
+ 0.891,
+ -1,
+ -0.891,
+ 0,
+ -0.454,
+ -1,
+ -0.809,
+ 0,
+ -0.5878,
+ -1,
+ -0.5878,
+ 0,
+ -0.809,
+ -1,
+ -0.309,
+ 0,
+ -0.9511,
+ -1,
+ 0,
+ 0,
+ -1,
+ -1,
+ 0.309,
+ 0,
+ -0.9511,
+ -1,
+ 0.5878,
+ 0,
+ -0.809,
+ -1,
+ 0.809,
+ 0,
+ -0.5878,
+ -1,
+ 0.9511,
+ 0,
+ -0.309,
+ -1,
+ 1,
+ 0,
+ 0,
+ -1,
+ 0.9511,
+ 0,
+ 0.309,
+ -1,
+ 0.809,
+ 0,
+ 0.5878,
+ -1,
+ 0.5878,
+ 0,
+ 0.809,
+ -1,
+ 0.309,
+ 0,
+ 0.9511,
+ -1,
+ 0,
+ 0,
+ 1,
+ -1,
+ -0.2781,
+ -0.0633,
+ 0.9585,
+ -1,
+ -0.3582,
+ 0.0745,
+ 0.9306,
+ -1,
+ -0.454,
+ 0,
+ 0.891,
+ -1,
+ -0.891,
+ 0,
+ -0.454,
+ -1,
+ -0.809,
+ 0,
+ -0.5878,
+ -1,
+ -0.5878,
+ 0,
+ -0.809,
+ -1,
+ -0.309,
+ 0,
+ -0.9511,
+ -1,
+ 0,
+ 0,
+ -1,
+ -1,
+ 0.309,
+ 0,
+ -0.9511,
+ -1,
+ 0.5878,
+ 0,
+ -0.809,
+ -1,
+ 0.809,
+ 0,
+ -0.5878,
+ -1,
+ 0.9511,
+ 0,
+ -0.309,
+ -1,
+ 1,
+ 0,
+ 0,
+ -1,
+ 0.9511,
+ 0,
+ 0.309,
+ -1,
+ 0.809,
+ 0,
+ 0.5878,
+ -1,
+ 0.5878,
+ 0,
+ 0.809,
+ -1,
+ 0.309,
+ 0,
+ 0.9511,
+ -1,
+ 0,
+ 0,
+ 1,
+ -1,
+ -0.2572,
+ -0.0745,
+ 0.9635,
+ -1,
+ -0.3802,
+ 0.0787,
+ 0.9215,
+ -1,
+ -0.454,
+ 0,
+ 0.891,
+ -1,
+ -0.891,
+ 0,
+ -0.454,
+ -1,
+ -0.809,
+ 0,
+ -0.5878,
+ -1,
+ -0.5878,
+ 0,
+ -0.809,
+ -1,
+ -0.309,
+ 0,
+ -0.9511,
+ -1,
+ 0,
+ 0,
+ -1,
+ -1,
+ 0.309,
+ 0,
+ -0.9511,
+ -1,
+ 0.5878,
+ 0,
+ -0.809,
+ -1,
+ 0.809,
+ 0,
+ -0.5878,
+ -1,
+ 0.9511,
+ 0,
+ -0.309,
+ -1,
+ 1,
+ 0,
+ 0,
+ -1,
+ 0.9511,
+ 0,
+ 0.309,
+ -1,
+ 0.809,
+ 0,
+ 0.5878,
+ -1,
+ 0.5878,
+ 0,
+ 0.809,
+ -1,
+ 0.309,
+ 0,
+ 0.9511,
+ -1,
+ 0,
+ 0,
+ 1,
+ -1,
+ -0.234,
+ -0.0787,
+ 0.969,
+ -1,
+ -0.4023,
+ 0.0754,
+ 0.9124,
+ -1,
+ -0.454,
+ 0,
+ 0.891,
+ -1,
+ -0.891,
+ 0,
+ -0.454,
+ -1,
+ -0.809,
+ 0,
+ -0.5878,
+ -1,
+ -0.5878,
+ 0,
+ -0.809,
+ -1,
+ -0.309,
+ 0,
+ -0.9511,
+ -1,
+ 0,
+ 0,
+ -1,
+ -1,
+ 0.309,
+ 0,
+ -0.9511,
+ -1,
+ 0.5878,
+ 0,
+ -0.809,
+ -1,
+ 0.809,
+ 0,
+ -0.5878,
+ -1,
+ 0.9511,
+ 0,
+ -0.309,
+ -1,
+ 1,
+ 0,
+ 0,
+ -1,
+ 0.9511,
+ 0,
+ 0.309,
+ -1,
+ 0.809,
+ 0,
+ 0.5878,
+ -1,
+ 0.5878,
+ 0,
+ 0.809,
+ -1,
+ 0.309,
+ 0,
+ 0.9511,
+ -1,
+ 0,
+ 0,
+ 1,
+ -1,
+ -0.2109,
+ -0.0754,
+ 0.9746,
+ -1,
+ -0.4222,
+ 0.0651,
+ 0.9042,
+ -1,
+ -0.454,
+ 0,
+ 0.891,
+ -1,
+ -0.891,
+ 0,
+ -0.454,
+ -1,
+ -0.809,
+ 0,
+ -0.5878,
+ -1,
+ -0.5878,
+ 0,
+ -0.809,
+ -1,
+ -0.309,
+ 0,
+ -0.9511,
+ -1,
+ 0,
+ 0,
+ -1,
+ -1,
+ 0.309,
+ 0,
+ -0.9511,
+ -1,
+ 0.5878,
+ 0,
+ -0.809,
+ -1,
+ 0.809,
+ 0,
+ -0.5878,
+ -1,
+ 0.9511,
+ 0,
+ -0.309,
+ -1,
+ 1,
+ 0,
+ 0,
+ -1,
+ 0.9511,
+ 0,
+ 0.309,
+ -1,
+ 0.809,
+ 0,
+ 0.5878,
+ -1,
+ 0.5878,
+ 0,
+ 0.809,
+ -1,
+ 0.309,
+ 0,
+ 0.9511,
+ -1,
+ 0,
+ 0,
+ 1,
+ -1,
+ -0.1899,
+ -0.0651,
+ 0.9796,
+ -1,
+ -0.438,
+ 0.0493,
+ 0.8976,
+ -1,
+ -0.454,
+ 0,
+ 0.891,
+ -1,
+ -0.891,
+ 0,
+ -0.454,
+ -1,
+ -0.809,
+ 0,
+ -0.5878,
+ -1,
+ -0.5878,
+ 0,
+ -0.809,
+ -1,
+ -0.309,
+ 0,
+ -0.9511,
+ -1,
+ 0,
+ 0,
+ -1,
+ -1,
+ 0.309,
+ 0,
+ -0.9511,
+ -1,
+ 0.5878,
+ 0,
+ -0.809,
+ -1,
+ 0.809,
+ 0,
+ -0.5878,
+ -1,
+ 0.9511,
+ 0,
+ -0.309,
+ -1,
+ 1,
+ 0,
+ 0,
+ -1,
+ 0.9511,
+ 0,
+ 0.309,
+ -1,
+ 0.809,
+ 0,
+ 0.5878,
+ -1,
+ 0.5878,
+ 0,
+ 0.809,
+ -1,
+ 0.309,
+ 0,
+ 0.9511,
+ -1,
+ 0,
+ 0,
+ 1,
+ -1,
+ -0.1732,
+ -0.0493,
+ 0.9836,
+ -1,
+ -0.4482,
+ 0.0307,
+ 0.8934,
+ -1,
+ -0.5422,
+ 0.0142,
+ 0.8402,
+ -1,
+ -0.923,
+ -0.0096,
+ -0.3847,
+ -1,
+ -0.7908,
+ 0.0062,
+ -0.6121,
+ -1,
+ -0.5629,
+ 0.0062,
+ -0.8265,
+ -1,
+ -0.28,
+ 0.0062,
+ -0.96,
+ -1,
+ 0.0304,
+ 0.0062,
+ -0.9995,
+ -1,
+ 0.3378,
+ 0.0062,
+ -0.9412,
+ -1,
+ 0.6121,
+ 0.0062,
+ -0.7908,
+ -1,
+ 0.8265,
+ 0.0062,
+ -0.5629,
+ -1,
+ 0.96,
+ 0.0062,
+ -0.28,
+ -1,
+ 0.9995,
+ 0.0062,
+ 0.0304,
+ -1,
+ 0.9412,
+ 0.0062,
+ 0.3378,
+ -1,
+ 0.7908,
+ 0.0062,
+ 0.6121,
+ -1,
+ 0.5629,
+ 0.0062,
+ 0.8265,
+ -1,
+ 0.28,
+ 0.0062,
+ 0.96,
+ -1,
+ -0.0304,
+ 0.0062,
+ 0.9995,
+ -1,
+ -0.1625,
+ -0.0307,
+ 0.9862,
+ -1,
+ -0.454,
+ 0,
+ 0.891,
+ -1,
+ -0.7071,
+ 0,
+ 0.7071,
+ -1,
+ -0.891,
+ 0,
+ 0.454,
+ -1,
+ -0.9877,
+ 0,
+ 0.1564,
+ -1,
+ -0.9877,
+ 0,
+ -0.1564,
+ -1,
+ -0.891,
+ 0,
+ -0.454,
+ -1,
+ -0.7071,
+ 0,
+ -0.7071,
+ -1,
+ -0.454,
+ 0,
+ -0.891,
+ -1,
+ -0.1564,
+ 0,
+ -0.9877,
+ -1,
+ 0.1564,
+ 0,
+ -0.9877,
+ -1,
+ 0.454,
+ 0,
+ -0.891,
+ -1,
+ 0.7071,
+ 0,
+ -0.7071,
+ -1,
+ 0.891,
+ 0,
+ -0.454,
+ -1,
+ 0.9877,
+ 0,
+ -0.1564,
+ -1,
+ 0.9877,
+ 0,
+ 0.1564,
+ -1,
+ 0.891,
+ 0,
+ 0.454,
+ -1,
+ 0.7071,
+ 0,
+ 0.7071,
+ -1,
+ 0.454,
+ 0,
+ 0.891,
+ -1,
+ 0.1564,
+ 0,
+ 0.9877,
+ -1,
+ -0.1564,
+ 0,
+ 0.9877,
+ -1,
+ -0.454,
+ 0,
+ 0.891,
+ -1,
+ -0.809,
+ 0,
+ 0.5878,
+ -1,
+ -0.7071,
+ 0,
+ 0.7071,
+ -1,
+ -0.9511,
+ 0,
+ 0.309,
+ -1,
+ -0.891,
+ 0,
+ 0.454,
+ -1,
+ -1,
+ 0,
+ 0,
+ -1,
+ -0.9877,
+ 0,
+ 0.1564,
+ -1,
+ -0.9877,
+ 0,
+ -0.1564,
+ -1,
+ -0.891,
+ 0,
+ -0.454,
+ -1,
+ -0.7071,
+ 0,
+ -0.7071,
+ -1,
+ -0.454,
+ 0,
+ -0.891,
+ -1,
+ -0.1564,
+ 0,
+ -0.9877,
+ -1,
+ 0.1564,
+ 0,
+ -0.9877,
+ -1,
+ 0.454,
+ 0,
+ -0.891,
+ -1,
+ 0.7071,
+ 0,
+ -0.7071,
+ -1,
+ 0.891,
+ 0,
+ -0.454,
+ -1,
+ 0.9877,
+ 0,
+ -0.1564,
+ -1,
+ 0.9877,
+ 0,
+ 0.1564,
+ -1,
+ 0.891,
+ 0,
+ 0.454,
+ -1,
+ 0.7071,
+ 0,
+ 0.7071,
+ -1,
+ 0.454,
+ 0,
+ 0.891,
+ -1,
+ 0.1564,
+ 0,
+ 0.9877,
+ -1,
+ -0.1564,
+ 0,
+ 0.9877,
+ -1
+ ],
+ "uvs": [
+ 0,
+ 0.05,
+ 0.05,
+ 0.05,
+ 0,
+ 0.1,
+ 0.05,
+ 0.1,
+ 0.1,
+ 0.05,
+ 0.1,
+ 0.1,
+ 0.15,
+ 0.05,
+ 0.15,
+ 0.1,
+ 0.2,
+ 0.05,
+ 0.2,
+ 0.1,
+ 0.25,
+ 0.05,
+ 0.25,
+ 0.1,
+ 0.3,
+ 0.05,
+ 0.3,
+ 0.1,
+ 0.35,
+ 0.05,
+ 0.35,
+ 0.1,
+ 0.4,
+ 0.05,
+ 0.4,
+ 0.1,
+ 0.45,
+ 0.05,
+ 0.45,
+ 0.1,
+ 0.5,
+ 0.05,
+ 0.5,
+ 0.1,
+ 0.55,
+ 0.05,
+ 0.55,
+ 0.1,
+ 0.6,
+ 0.05,
+ 0.6,
+ 0.1,
+ 0.65,
+ 0.05,
+ 0.65,
+ 0.1,
+ 0.7,
+ 0.05,
+ 0.7,
+ 0.1,
+ 0.75,
+ 0.05,
+ 0.75,
+ 0.1,
+ 0.8,
+ 0.05,
+ 0.8,
+ 0.1,
+ 0.85,
+ 0.05,
+ 0.85,
+ 0.1,
+ 0.9,
+ 0.05,
+ 0.9,
+ 0.1,
+ 0.95,
+ 0.05,
+ 0.95,
+ 0.1,
+ 1,
+ 0.05,
+ 1,
+ 0.1,
+ 0,
+ 0.15,
+ 0.05,
+ 0.15,
+ 0.1,
+ 0.15,
+ 0.15,
+ 0.15,
+ 0.2,
+ 0.15,
+ 0.25,
+ 0.15,
+ 0.3,
+ 0.15,
+ 0.35,
+ 0.15,
+ 0.4,
+ 0.15,
+ 0.45,
+ 0.15,
+ 0.5,
+ 0.15,
+ 0.55,
+ 0.15,
+ 0.6,
+ 0.15,
+ 0.65,
+ 0.15,
+ 0.7,
+ 0.15,
+ 0.75,
+ 0.15,
+ 0.8,
+ 0.15,
+ 0.85,
+ 0.15,
+ 0.9,
+ 0.15,
+ 0.95,
+ 0.15,
+ 1,
+ 0.15,
+ 0,
+ 0.2,
+ 0.05,
+ 0.2,
+ 0.1,
+ 0.2,
+ 0.15,
+ 0.2,
+ 0.2,
+ 0.2,
+ 0.25,
+ 0.2,
+ 0.3,
+ 0.2,
+ 0.35,
+ 0.2,
+ 0.4,
+ 0.2,
+ 0.45,
+ 0.2,
+ 0.5,
+ 0.2,
+ 0.55,
+ 0.2,
+ 0.6,
+ 0.2,
+ 0.65,
+ 0.2,
+ 0.7,
+ 0.2,
+ 0.75,
+ 0.2,
+ 0.8,
+ 0.2,
+ 0.85,
+ 0.2,
+ 0.9,
+ 0.2,
+ 0.95,
+ 0.2,
+ 1,
+ 0.2,
+ 0,
+ 0.25,
+ 0.05,
+ 0.25,
+ 0.1,
+ 0.25,
+ 0.15,
+ 0.25,
+ 0.2,
+ 0.25,
+ 0.25,
+ 0.25,
+ 0.3,
+ 0.25,
+ 0.35,
+ 0.25,
+ 0.4,
+ 0.25,
+ 0.45,
+ 0.25,
+ 0.5,
+ 0.25,
+ 0.55,
+ 0.25,
+ 0.6,
+ 0.25,
+ 0.65,
+ 0.25,
+ 0.7,
+ 0.25,
+ 0.75,
+ 0.25,
+ 0.8,
+ 0.25,
+ 0.85,
+ 0.25,
+ 0.9,
+ 0.25,
+ 0.95,
+ 0.25,
+ 1,
+ 0.25,
+ 0,
+ 0.3,
+ 0.05,
+ 0.3,
+ 0.1,
+ 0.3,
+ 0.15,
+ 0.3,
+ 0.2,
+ 0.3,
+ 0.25,
+ 0.3,
+ 0.3,
+ 0.3,
+ 0.35,
+ 0.3,
+ 0.4,
+ 0.3,
+ 0.45,
+ 0.3,
+ 0.5,
+ 0.3,
+ 0.55,
+ 0.3,
+ 0.6,
+ 0.3,
+ 0.65,
+ 0.3,
+ 0.7,
+ 0.3,
+ 0.75,
+ 0.3,
+ 0.8,
+ 0.3,
+ 0.85,
+ 0.3,
+ 0.9,
+ 0.3,
+ 0.95,
+ 0.3,
+ 1,
+ 0.3,
+ 0,
+ 0.35,
+ 0.05,
+ 0.35,
+ 0.1,
+ 0.35,
+ 0.15,
+ 0.35,
+ 0.2,
+ 0.35,
+ 0.25,
+ 0.35,
+ 0.3,
+ 0.35,
+ 0.35,
+ 0.35,
+ 0.4,
+ 0.35,
+ 0.45,
+ 0.35,
+ 0.5,
+ 0.35,
+ 0.55,
+ 0.35,
+ 0.6,
+ 0.35,
+ 0.65,
+ 0.35,
+ 0.7,
+ 0.35,
+ 0.75,
+ 0.35,
+ 0.8,
+ 0.35,
+ 0.85,
+ 0.35,
+ 0.9,
+ 0.35,
+ 0.95,
+ 0.35,
+ 1,
+ 0.35,
+ 0,
+ 0.4,
+ 0.05,
+ 0.4,
+ 0.1,
+ 0.4,
+ 0.15,
+ 0.4,
+ 0.2,
+ 0.4,
+ 0.25,
+ 0.4,
+ 0.3,
+ 0.4,
+ 0.35,
+ 0.4,
+ 0.4,
+ 0.4,
+ 0.45,
+ 0.4,
+ 0.5,
+ 0.4,
+ 0.55,
+ 0.4,
+ 0.6,
+ 0.4,
+ 0.65,
+ 0.4,
+ 0.7,
+ 0.4,
+ 0.75,
+ 0.4,
+ 0.8,
+ 0.4,
+ 0.85,
+ 0.4,
+ 0.9,
+ 0.4,
+ 0.95,
+ 0.4,
+ 1,
+ 0.4,
+ 0,
+ 0.45,
+ 0.05,
+ 0.45,
+ 0.1,
+ 0.45,
+ 0.15,
+ 0.45,
+ 0.2,
+ 0.45,
+ 0.25,
+ 0.45,
+ 0.3,
+ 0.45,
+ 0.35,
+ 0.45,
+ 0.4,
+ 0.45,
+ 0.45,
+ 0.45,
+ 0.5,
+ 0.45,
+ 0.55,
+ 0.45,
+ 0.6,
+ 0.45,
+ 0.65,
+ 0.45,
+ 0.7,
+ 0.45,
+ 0.75,
+ 0.45,
+ 0.8,
+ 0.45,
+ 0.85,
+ 0.45,
+ 0.9,
+ 0.45,
+ 0.95,
+ 0.45,
+ 1,
+ 0.45,
+ 0,
+ 0.5,
+ 0.05,
+ 0.5,
+ 0.25,
+ 0.5,
+ 0.3,
+ 0.5,
+ 0.35,
+ 0.5,
+ 0.4,
+ 0.5,
+ 0.45,
+ 0.5,
+ 0.5,
+ 0.5,
+ 0.55,
+ 0.5,
+ 0.6,
+ 0.5,
+ 0.65,
+ 0.5,
+ 0.7,
+ 0.5,
+ 0.75,
+ 0.5,
+ 0.8,
+ 0.5,
+ 0.85,
+ 0.5,
+ 0.9,
+ 0.5,
+ 0.95,
+ 0.5,
+ 1,
+ 0.5,
+ 0,
+ 0.55,
+ 0.05,
+ 0.55,
+ 0.25,
+ 0.55,
+ 0.3,
+ 0.55,
+ 0.35,
+ 0.55,
+ 0.4,
+ 0.55,
+ 0.45,
+ 0.55,
+ 0.5,
+ 0.55,
+ 0.55,
+ 0.55,
+ 0.6,
+ 0.55,
+ 0.65,
+ 0.55,
+ 0.7,
+ 0.55,
+ 0.75,
+ 0.55,
+ 0.8,
+ 0.55,
+ 0.85,
+ 0.55,
+ 0.9,
+ 0.55,
+ 0.95,
+ 0.55,
+ 1,
+ 0.55,
+ 0,
+ 0.6,
+ 0.05,
+ 0.6,
+ 0.25,
+ 0.6,
+ 0.3,
+ 0.6,
+ 0.35,
+ 0.6,
+ 0.4,
+ 0.6,
+ 0.45,
+ 0.6,
+ 0.5,
+ 0.6,
+ 0.55,
+ 0.6,
+ 0.6,
+ 0.6,
+ 0.65,
+ 0.6,
+ 0.7,
+ 0.6,
+ 0.75,
+ 0.6,
+ 0.8,
+ 0.6,
+ 0.85,
+ 0.6,
+ 0.9,
+ 0.6,
+ 0.95,
+ 0.6,
+ 1,
+ 0.6,
+ 0,
+ 0.65,
+ 0.05,
+ 0.65,
+ 0.25,
+ 0.65,
+ 0.3,
+ 0.65,
+ 0.35,
+ 0.65,
+ 0.4,
+ 0.65,
+ 0.45,
+ 0.65,
+ 0.5,
+ 0.65,
+ 0.55,
+ 0.65,
+ 0.6,
+ 0.65,
+ 0.65,
+ 0.65,
+ 0.7,
+ 0.65,
+ 0.75,
+ 0.65,
+ 0.8,
+ 0.65,
+ 0.85,
+ 0.65,
+ 0.9,
+ 0.65,
+ 0.95,
+ 0.65,
+ 1,
+ 0.65,
+ 0,
+ 0.7,
+ 0.05,
+ 0.7,
+ 0.25,
+ 0.7,
+ 0.3,
+ 0.7,
+ 0.35,
+ 0.7,
+ 0.4,
+ 0.7,
+ 0.45,
+ 0.7,
+ 0.5,
+ 0.7,
+ 0.55,
+ 0.7,
+ 0.6,
+ 0.7,
+ 0.65,
+ 0.7,
+ 0.7,
+ 0.7,
+ 0.75,
+ 0.7,
+ 0.8,
+ 0.7,
+ 0.85,
+ 0.7,
+ 0.9,
+ 0.7,
+ 0.95,
+ 0.7,
+ 1,
+ 0.7,
+ 0,
+ 0.75,
+ 0.05,
+ 0.75,
+ 0.25,
+ 0.75,
+ 0.3,
+ 0.75,
+ 0.35,
+ 0.75,
+ 0.4,
+ 0.75,
+ 0.45,
+ 0.75,
+ 0.5,
+ 0.75,
+ 0.55,
+ 0.75,
+ 0.6,
+ 0.75,
+ 0.65,
+ 0.75,
+ 0.7,
+ 0.75,
+ 0.75,
+ 0.75,
+ 0.8,
+ 0.75,
+ 0.85,
+ 0.75,
+ 0.9,
+ 0.75,
+ 0.95,
+ 0.75,
+ 1,
+ 0.75,
+ 0,
+ 0.8,
+ 0.05,
+ 0.8,
+ 0.25,
+ 0.8,
+ 0.3,
+ 0.8,
+ 0.35,
+ 0.8,
+ 0.4,
+ 0.8,
+ 0.45,
+ 0.8,
+ 0.5,
+ 0.8,
+ 0.55,
+ 0.8,
+ 0.6,
+ 0.8,
+ 0.65,
+ 0.8,
+ 0.7,
+ 0.8,
+ 0.75,
+ 0.8,
+ 0.8,
+ 0.8,
+ 0.85,
+ 0.8,
+ 0.9,
+ 0.8,
+ 0.95,
+ 0.8,
+ 1,
+ 0.8,
+ 0,
+ 0.85,
+ 0.05,
+ 0.85,
+ 0.25,
+ 0.85,
+ 0.3,
+ 0.85,
+ 0.35,
+ 0.85,
+ 0.4,
+ 0.85,
+ 0.45,
+ 0.85,
+ 0.5,
+ 0.85,
+ 0.55,
+ 0.85,
+ 0.6,
+ 0.85,
+ 0.65,
+ 0.85,
+ 0.7,
+ 0.85,
+ 0.75,
+ 0.85,
+ 0.8,
+ 0.85,
+ 0.85,
+ 0.85,
+ 0.9,
+ 0.85,
+ 0.95,
+ 0.85,
+ 1,
+ 0.85,
+ 0,
+ 0.9,
+ 0.05,
+ 0.9,
+ 0.25,
+ 0.9,
+ 0.3,
+ 0.9,
+ 0.35,
+ 0.9,
+ 0.4,
+ 0.9,
+ 0.45,
+ 0.9,
+ 0.5,
+ 0.9,
+ 0.55,
+ 0.9,
+ 0.6,
+ 0.9,
+ 0.65,
+ 0.9,
+ 0.7,
+ 0.9,
+ 0.75,
+ 0.9,
+ 0.8,
+ 0.9,
+ 0.85,
+ 0.9,
+ 0.9,
+ 0.9,
+ 0.95,
+ 0.9,
+ 1,
+ 0.9,
+ 0,
+ 0.95,
+ 0.05,
+ 0.95,
+ 0.25,
+ 0.95,
+ 0.3,
+ 0.95,
+ 0.35,
+ 0.95,
+ 0.4,
+ 0.95,
+ 0.45,
+ 0.95,
+ 0.5,
+ 0.95,
+ 0.55,
+ 0.95,
+ 0.6,
+ 0.95,
+ 0.65,
+ 0.95,
+ 0.7,
+ 0.95,
+ 0.75,
+ 0.95,
+ 0.8,
+ 0.95,
+ 0.85,
+ 0.95,
+ 0.9,
+ 0.95,
+ 0.95,
+ 0.95,
+ 1,
+ 0.95,
+ 0.025,
+ 0,
+ 0.075,
+ 0,
+ 0.125,
+ 0,
+ 0.175,
+ 0,
+ 0.225,
+ 0,
+ 0.275,
+ 0,
+ 0.325,
+ 0,
+ 0.375,
+ 0,
+ 0.425,
+ 0,
+ 0.475,
+ 0,
+ 0.525,
+ 0,
+ 0.575,
+ 0,
+ 0.625,
+ 0,
+ 0.675,
+ 0,
+ 0.725,
+ 0,
+ 0.775,
+ 0,
+ 0.825,
+ 0,
+ 0.875,
+ 0,
+ 0.925,
+ 0,
+ 0.975,
+ 0,
+ 0.025,
+ 1,
+ 0.1,
+ 0.95,
+ 0.075,
+ 1,
+ 0.15,
+ 0.95,
+ 0.125,
+ 1,
+ 0.2,
+ 0.95,
+ 0.175,
+ 1,
+ 0.225,
+ 1,
+ 0.275,
+ 1,
+ 0.325,
+ 1,
+ 0.375,
+ 1,
+ 0.425,
+ 1,
+ 0.475,
+ 1,
+ 0.525,
+ 1,
+ 0.575,
+ 1,
+ 0.625,
+ 1,
+ 0.675,
+ 1,
+ 0.725,
+ 1,
+ 0.775,
+ 1,
+ 0.825,
+ 1,
+ 0.875,
+ 1,
+ 0.925,
+ 1,
+ 0.975,
+ 1,
+ 0,
+ 0.05,
+ 0.05,
+ 0.05,
+ 0,
+ 0.1,
+ 0.05,
+ 0.1,
+ 0.1,
+ 0.05,
+ 0.1,
+ 0.1,
+ 0.15,
+ 0.05,
+ 0.15,
+ 0.1,
+ 0.2,
+ 0.05,
+ 0.2,
+ 0.1,
+ 0.25,
+ 0.05,
+ 0.25,
+ 0.1,
+ 0.3,
+ 0.05,
+ 0.3,
+ 0.1,
+ 0.35,
+ 0.05,
+ 0.35,
+ 0.1,
+ 0.4,
+ 0.05,
+ 0.4,
+ 0.1,
+ 0.45,
+ 0.05,
+ 0.45,
+ 0.1,
+ 0.5,
+ 0.05,
+ 0.5,
+ 0.1,
+ 0.55,
+ 0.05,
+ 0.55,
+ 0.1,
+ 0.6,
+ 0.05,
+ 0.6,
+ 0.1,
+ 0.65,
+ 0.05,
+ 0.65,
+ 0.1,
+ 0.7,
+ 0.05,
+ 0.7,
+ 0.1,
+ 0.75,
+ 0.05,
+ 0.75,
+ 0.1,
+ 0.8,
+ 0.05,
+ 0.8,
+ 0.1,
+ 0.85,
+ 0.05,
+ 0.85,
+ 0.1,
+ 0.9,
+ 0.05,
+ 0.9,
+ 0.1,
+ 0.95,
+ 0.05,
+ 0.95,
+ 0.1,
+ 1,
+ 0.05,
+ 1,
+ 0.1,
+ 0,
+ 0.15,
+ 0.05,
+ 0.15,
+ 0.1,
+ 0.15,
+ 0.15,
+ 0.15,
+ 0.2,
+ 0.15,
+ 0.25,
+ 0.15,
+ 0.3,
+ 0.15,
+ 0.35,
+ 0.15,
+ 0.4,
+ 0.15,
+ 0.45,
+ 0.15,
+ 0.5,
+ 0.15,
+ 0.55,
+ 0.15,
+ 0.6,
+ 0.15,
+ 0.65,
+ 0.15,
+ 0.7,
+ 0.15,
+ 0.75,
+ 0.15,
+ 0.8,
+ 0.15,
+ 0.85,
+ 0.15,
+ 0.9,
+ 0.15,
+ 0.95,
+ 0.15,
+ 1,
+ 0.15,
+ 0,
+ 0.2,
+ 0.05,
+ 0.2,
+ 0.1,
+ 0.2,
+ 0.15,
+ 0.2,
+ 0.2,
+ 0.2,
+ 0.25,
+ 0.2,
+ 0.3,
+ 0.2,
+ 0.35,
+ 0.2,
+ 0.4,
+ 0.2,
+ 0.45,
+ 0.2,
+ 0.5,
+ 0.2,
+ 0.55,
+ 0.2,
+ 0.6,
+ 0.2,
+ 0.65,
+ 0.2,
+ 0.7,
+ 0.2,
+ 0.75,
+ 0.2,
+ 0.8,
+ 0.2,
+ 0.85,
+ 0.2,
+ 0.9,
+ 0.2,
+ 0.95,
+ 0.2,
+ 1,
+ 0.2,
+ 0,
+ 0.25,
+ 0.05,
+ 0.25,
+ 0.1,
+ 0.25,
+ 0.15,
+ 0.25,
+ 0.2,
+ 0.25,
+ 0.25,
+ 0.25,
+ 0.3,
+ 0.25,
+ 0.35,
+ 0.25,
+ 0.4,
+ 0.25,
+ 0.45,
+ 0.25,
+ 0.5,
+ 0.25,
+ 0.55,
+ 0.25,
+ 0.6,
+ 0.25,
+ 0.65,
+ 0.25,
+ 0.7,
+ 0.25,
+ 0.75,
+ 0.25,
+ 0.8,
+ 0.25,
+ 0.85,
+ 0.25,
+ 0.9,
+ 0.25,
+ 0.95,
+ 0.25,
+ 1,
+ 0.25,
+ 0,
+ 0.3,
+ 0.05,
+ 0.3,
+ 0.1,
+ 0.3,
+ 0.15,
+ 0.3,
+ 0.2,
+ 0.3,
+ 0.25,
+ 0.3,
+ 0.3,
+ 0.3,
+ 0.35,
+ 0.3,
+ 0.4,
+ 0.3,
+ 0.45,
+ 0.3,
+ 0.5,
+ 0.3,
+ 0.55,
+ 0.3,
+ 0.6,
+ 0.3,
+ 0.65,
+ 0.3,
+ 0.7,
+ 0.3,
+ 0.75,
+ 0.3,
+ 0.8,
+ 0.3,
+ 0.85,
+ 0.3,
+ 0.9,
+ 0.3,
+ 0.95,
+ 0.3,
+ 1,
+ 0.3,
+ 0,
+ 0.35,
+ 0.05,
+ 0.35,
+ 0.1,
+ 0.35,
+ 0.15,
+ 0.35,
+ 0.2,
+ 0.35,
+ 0.25,
+ 0.35,
+ 0.3,
+ 0.35,
+ 0.35,
+ 0.35,
+ 0.4,
+ 0.35,
+ 0.45,
+ 0.35,
+ 0.5,
+ 0.35,
+ 0.55,
+ 0.35,
+ 0.6,
+ 0.35,
+ 0.65,
+ 0.35,
+ 0.7,
+ 0.35,
+ 0.75,
+ 0.35,
+ 0.8,
+ 0.35,
+ 0.85,
+ 0.35,
+ 0.9,
+ 0.35,
+ 0.95,
+ 0.35,
+ 1,
+ 0.35,
+ 0,
+ 0.4,
+ 0.05,
+ 0.4,
+ 0.1,
+ 0.4,
+ 0.15,
+ 0.4,
+ 0.2,
+ 0.4,
+ 0.25,
+ 0.4,
+ 0.3,
+ 0.4,
+ 0.35,
+ 0.4,
+ 0.4,
+ 0.4,
+ 0.45,
+ 0.4,
+ 0.5,
+ 0.4,
+ 0.55,
+ 0.4,
+ 0.6,
+ 0.4,
+ 0.65,
+ 0.4,
+ 0.7,
+ 0.4,
+ 0.75,
+ 0.4,
+ 0.8,
+ 0.4,
+ 0.85,
+ 0.4,
+ 0.9,
+ 0.4,
+ 0.95,
+ 0.4,
+ 1,
+ 0.4,
+ 0,
+ 0.45,
+ 0.05,
+ 0.45,
+ 0.1,
+ 0.45,
+ 0.15,
+ 0.45,
+ 0.2,
+ 0.45,
+ 0.25,
+ 0.45,
+ 0.3,
+ 0.45,
+ 0.35,
+ 0.45,
+ 0.4,
+ 0.45,
+ 0.45,
+ 0.45,
+ 0.5,
+ 0.45,
+ 0.55,
+ 0.45,
+ 0.6,
+ 0.45,
+ 0.65,
+ 0.45,
+ 0.7,
+ 0.45,
+ 0.75,
+ 0.45,
+ 0.8,
+ 0.45,
+ 0.85,
+ 0.45,
+ 0.9,
+ 0.45,
+ 0.95,
+ 0.45,
+ 1,
+ 0.45,
+ 0,
+ 0.5,
+ 0.05,
+ 0.5,
+ 0.25,
+ 0.5,
+ 0.3,
+ 0.5,
+ 0.35,
+ 0.5,
+ 0.4,
+ 0.5,
+ 0.45,
+ 0.5,
+ 0.5,
+ 0.5,
+ 0.55,
+ 0.5,
+ 0.6,
+ 0.5,
+ 0.65,
+ 0.5,
+ 0.7,
+ 0.5,
+ 0.75,
+ 0.5,
+ 0.8,
+ 0.5,
+ 0.85,
+ 0.5,
+ 0.9,
+ 0.5,
+ 0.95,
+ 0.5,
+ 1,
+ 0.5,
+ 0,
+ 0.55,
+ 0.05,
+ 0.55,
+ 0.25,
+ 0.55,
+ 0.3,
+ 0.55,
+ 0.35,
+ 0.55,
+ 0.4,
+ 0.55,
+ 0.45,
+ 0.55,
+ 0.5,
+ 0.55,
+ 0.55,
+ 0.55,
+ 0.6,
+ 0.55,
+ 0.65,
+ 0.55,
+ 0.7,
+ 0.55,
+ 0.75,
+ 0.55,
+ 0.8,
+ 0.55,
+ 0.85,
+ 0.55,
+ 0.9,
+ 0.55,
+ 0.95,
+ 0.55,
+ 1,
+ 0.55,
+ 0,
+ 0.6,
+ 0.05,
+ 0.6,
+ 0.25,
+ 0.6,
+ 0.3,
+ 0.6,
+ 0.35,
+ 0.6,
+ 0.4,
+ 0.6,
+ 0.45,
+ 0.6,
+ 0.5,
+ 0.6,
+ 0.55,
+ 0.6,
+ 0.6,
+ 0.6,
+ 0.65,
+ 0.6,
+ 0.7,
+ 0.6,
+ 0.75,
+ 0.6,
+ 0.8,
+ 0.6,
+ 0.85,
+ 0.6,
+ 0.9,
+ 0.6,
+ 0.95,
+ 0.6,
+ 1,
+ 0.6,
+ 0,
+ 0.65,
+ 0.05,
+ 0.65,
+ 0.25,
+ 0.65,
+ 0.3,
+ 0.65,
+ 0.35,
+ 0.65,
+ 0.4,
+ 0.65,
+ 0.45,
+ 0.65,
+ 0.5,
+ 0.65,
+ 0.55,
+ 0.65,
+ 0.6,
+ 0.65,
+ 0.65,
+ 0.65,
+ 0.7,
+ 0.65,
+ 0.75,
+ 0.65,
+ 0.8,
+ 0.65,
+ 0.85,
+ 0.65,
+ 0.9,
+ 0.65,
+ 0.95,
+ 0.65,
+ 1,
+ 0.65,
+ 0,
+ 0.7,
+ 0.05,
+ 0.7,
+ 0.25,
+ 0.7,
+ 0.3,
+ 0.7,
+ 0.35,
+ 0.7,
+ 0.4,
+ 0.7,
+ 0.45,
+ 0.7,
+ 0.5,
+ 0.7,
+ 0.55,
+ 0.7,
+ 0.6,
+ 0.7,
+ 0.65,
+ 0.7,
+ 0.7,
+ 0.7,
+ 0.75,
+ 0.7,
+ 0.8,
+ 0.7,
+ 0.85,
+ 0.7,
+ 0.9,
+ 0.7,
+ 0.95,
+ 0.7,
+ 1,
+ 0.7,
+ 0,
+ 0.75,
+ 0.05,
+ 0.75,
+ 0.25,
+ 0.75,
+ 0.3,
+ 0.75,
+ 0.35,
+ 0.75,
+ 0.4,
+ 0.75,
+ 0.45,
+ 0.75,
+ 0.5,
+ 0.75,
+ 0.55,
+ 0.75,
+ 0.6,
+ 0.75,
+ 0.65,
+ 0.75,
+ 0.7,
+ 0.75,
+ 0.75,
+ 0.75,
+ 0.8,
+ 0.75,
+ 0.85,
+ 0.75,
+ 0.9,
+ 0.75,
+ 0.95,
+ 0.75,
+ 1,
+ 0.75,
+ 0,
+ 0.8,
+ 0.05,
+ 0.8,
+ 0.25,
+ 0.8,
+ 0.3,
+ 0.8,
+ 0.35,
+ 0.8,
+ 0.4,
+ 0.8,
+ 0.45,
+ 0.8,
+ 0.5,
+ 0.8,
+ 0.55,
+ 0.8,
+ 0.6,
+ 0.8,
+ 0.65,
+ 0.8,
+ 0.7,
+ 0.8,
+ 0.75,
+ 0.8,
+ 0.8,
+ 0.8,
+ 0.85,
+ 0.8,
+ 0.9,
+ 0.8,
+ 0.95,
+ 0.8,
+ 1,
+ 0.8,
+ 0,
+ 0.85,
+ 0.05,
+ 0.85,
+ 0.25,
+ 0.85,
+ 0.3,
+ 0.85,
+ 0.35,
+ 0.85,
+ 0.4,
+ 0.85,
+ 0.45,
+ 0.85,
+ 0.5,
+ 0.85,
+ 0.55,
+ 0.85,
+ 0.6,
+ 0.85,
+ 0.65,
+ 0.85,
+ 0.7,
+ 0.85,
+ 0.75,
+ 0.85,
+ 0.8,
+ 0.85,
+ 0.85,
+ 0.85,
+ 0.9,
+ 0.85,
+ 0.95,
+ 0.85,
+ 1,
+ 0.85,
+ 0,
+ 0.9,
+ 0.05,
+ 0.9,
+ 0.25,
+ 0.9,
+ 0.3,
+ 0.9,
+ 0.35,
+ 0.9,
+ 0.4,
+ 0.9,
+ 0.45,
+ 0.9,
+ 0.5,
+ 0.9,
+ 0.55,
+ 0.9,
+ 0.6,
+ 0.9,
+ 0.65,
+ 0.9,
+ 0.7,
+ 0.9,
+ 0.75,
+ 0.9,
+ 0.8,
+ 0.9,
+ 0.85,
+ 0.9,
+ 0.9,
+ 0.9,
+ 0.95,
+ 0.9,
+ 1,
+ 0.9,
+ 0,
+ 0.95,
+ 0.05,
+ 0.95,
+ 0.25,
+ 0.95,
+ 0.3,
+ 0.95,
+ 0.35,
+ 0.95,
+ 0.4,
+ 0.95,
+ 0.45,
+ 0.95,
+ 0.5,
+ 0.95,
+ 0.55,
+ 0.95,
+ 0.6,
+ 0.95,
+ 0.65,
+ 0.95,
+ 0.7,
+ 0.95,
+ 0.75,
+ 0.95,
+ 0.8,
+ 0.95,
+ 0.85,
+ 0.95,
+ 0.9,
+ 0.95,
+ 0.95,
+ 0.95,
+ 1,
+ 0.95,
+ 0.025,
+ 0,
+ 0.075,
+ 0,
+ 0.125,
+ 0,
+ 0.175,
+ 0,
+ 0.225,
+ 0,
+ 0.275,
+ 0,
+ 0.325,
+ 0,
+ 0.375,
+ 0,
+ 0.425,
+ 0,
+ 0.475,
+ 0,
+ 0.525,
+ 0,
+ 0.575,
+ 0,
+ 0.625,
+ 0,
+ 0.675,
+ 0,
+ 0.725,
+ 0,
+ 0.775,
+ 0,
+ 0.825,
+ 0,
+ 0.875,
+ 0,
+ 0.925,
+ 0,
+ 0.975,
+ 0,
+ 0.025,
+ 1,
+ 0.1,
+ 0.95,
+ 0.075,
+ 1,
+ 0.15,
+ 0.95,
+ 0.125,
+ 1,
+ 0.2,
+ 0.95,
+ 0.175,
+ 1,
+ 0.225,
+ 1,
+ 0.275,
+ 1,
+ 0.325,
+ 1,
+ 0.375,
+ 1,
+ 0.425,
+ 1,
+ 0.475,
+ 1,
+ 0.525,
+ 1,
+ 0.575,
+ 1,
+ 0.625,
+ 1,
+ 0.675,
+ 1,
+ 0.725,
+ 1,
+ 0.775,
+ 1,
+ 0.825,
+ 1,
+ 0.875,
+ 1,
+ 0.925,
+ 1,
+ 0.975,
+ 1
+ ],
+ "uvs2": null,
+ "colors": null,
+ "hasVertexAlpha": false,
+ "matricesIndices": null,
+ "matricesWeights": null,
+ "matricesIndicesExtra": null,
+ "matricesWeightsExtra": null,
+ "indices": [
+ 0,
+ 1,
+ 2,
+ 2,
+ 1,
+ 3,
+ 1,
+ 4,
+ 3,
+ 3,
+ 4,
+ 5,
+ 4,
+ 6,
+ 5,
+ 5,
+ 6,
+ 7,
+ 6,
+ 8,
+ 7,
+ 7,
+ 8,
+ 9,
+ 8,
+ 10,
+ 9,
+ 9,
+ 10,
+ 11,
+ 10,
+ 12,
+ 11,
+ 11,
+ 12,
+ 13,
+ 12,
+ 14,
+ 13,
+ 13,
+ 14,
+ 15,
+ 14,
+ 16,
+ 15,
+ 15,
+ 16,
+ 17,
+ 16,
+ 18,
+ 17,
+ 17,
+ 18,
+ 19,
+ 18,
+ 20,
+ 19,
+ 19,
+ 20,
+ 21,
+ 20,
+ 22,
+ 21,
+ 21,
+ 22,
+ 23,
+ 22,
+ 24,
+ 23,
+ 23,
+ 24,
+ 25,
+ 24,
+ 26,
+ 25,
+ 25,
+ 26,
+ 27,
+ 26,
+ 28,
+ 27,
+ 27,
+ 28,
+ 29,
+ 28,
+ 30,
+ 29,
+ 29,
+ 30,
+ 31,
+ 30,
+ 32,
+ 31,
+ 31,
+ 32,
+ 33,
+ 32,
+ 34,
+ 33,
+ 33,
+ 34,
+ 35,
+ 34,
+ 36,
+ 35,
+ 35,
+ 36,
+ 37,
+ 36,
+ 38,
+ 37,
+ 37,
+ 38,
+ 39,
+ 38,
+ 40,
+ 39,
+ 39,
+ 40,
+ 41,
+ 2,
+ 3,
+ 42,
+ 42,
+ 3,
+ 43,
+ 3,
+ 5,
+ 43,
+ 43,
+ 5,
+ 44,
+ 5,
+ 7,
+ 44,
+ 44,
+ 7,
+ 45,
+ 7,
+ 9,
+ 45,
+ 45,
+ 9,
+ 46,
+ 9,
+ 11,
+ 46,
+ 46,
+ 11,
+ 47,
+ 11,
+ 13,
+ 47,
+ 47,
+ 13,
+ 48,
+ 13,
+ 15,
+ 48,
+ 48,
+ 15,
+ 49,
+ 15,
+ 17,
+ 49,
+ 49,
+ 17,
+ 50,
+ 17,
+ 19,
+ 50,
+ 50,
+ 19,
+ 51,
+ 19,
+ 21,
+ 51,
+ 51,
+ 21,
+ 52,
+ 21,
+ 23,
+ 52,
+ 52,
+ 23,
+ 53,
+ 23,
+ 25,
+ 53,
+ 53,
+ 25,
+ 54,
+ 25,
+ 27,
+ 54,
+ 54,
+ 27,
+ 55,
+ 27,
+ 29,
+ 55,
+ 55,
+ 29,
+ 56,
+ 29,
+ 31,
+ 56,
+ 56,
+ 31,
+ 57,
+ 31,
+ 33,
+ 57,
+ 57,
+ 33,
+ 58,
+ 33,
+ 35,
+ 58,
+ 58,
+ 35,
+ 59,
+ 35,
+ 37,
+ 59,
+ 59,
+ 37,
+ 60,
+ 37,
+ 39,
+ 60,
+ 60,
+ 39,
+ 61,
+ 39,
+ 41,
+ 61,
+ 61,
+ 41,
+ 62,
+ 42,
+ 43,
+ 63,
+ 63,
+ 43,
+ 64,
+ 43,
+ 44,
+ 64,
+ 64,
+ 44,
+ 65,
+ 44,
+ 45,
+ 65,
+ 65,
+ 45,
+ 66,
+ 45,
+ 46,
+ 66,
+ 66,
+ 46,
+ 67,
+ 46,
+ 47,
+ 67,
+ 67,
+ 47,
+ 68,
+ 47,
+ 48,
+ 68,
+ 68,
+ 48,
+ 69,
+ 48,
+ 49,
+ 69,
+ 69,
+ 49,
+ 70,
+ 49,
+ 50,
+ 70,
+ 70,
+ 50,
+ 71,
+ 50,
+ 51,
+ 71,
+ 71,
+ 51,
+ 72,
+ 51,
+ 52,
+ 72,
+ 72,
+ 52,
+ 73,
+ 52,
+ 53,
+ 73,
+ 73,
+ 53,
+ 74,
+ 53,
+ 54,
+ 74,
+ 74,
+ 54,
+ 75,
+ 54,
+ 55,
+ 75,
+ 75,
+ 55,
+ 76,
+ 55,
+ 56,
+ 76,
+ 76,
+ 56,
+ 77,
+ 56,
+ 57,
+ 77,
+ 77,
+ 57,
+ 78,
+ 57,
+ 58,
+ 78,
+ 78,
+ 58,
+ 79,
+ 58,
+ 59,
+ 79,
+ 79,
+ 59,
+ 80,
+ 59,
+ 60,
+ 80,
+ 80,
+ 60,
+ 81,
+ 60,
+ 61,
+ 81,
+ 81,
+ 61,
+ 82,
+ 61,
+ 62,
+ 82,
+ 82,
+ 62,
+ 83,
+ 63,
+ 64,
+ 84,
+ 84,
+ 64,
+ 85,
+ 64,
+ 65,
+ 85,
+ 85,
+ 65,
+ 86,
+ 65,
+ 66,
+ 86,
+ 86,
+ 66,
+ 87,
+ 66,
+ 67,
+ 87,
+ 87,
+ 67,
+ 88,
+ 67,
+ 68,
+ 88,
+ 88,
+ 68,
+ 89,
+ 68,
+ 69,
+ 89,
+ 89,
+ 69,
+ 90,
+ 69,
+ 70,
+ 90,
+ 90,
+ 70,
+ 91,
+ 70,
+ 71,
+ 91,
+ 91,
+ 71,
+ 92,
+ 71,
+ 72,
+ 92,
+ 92,
+ 72,
+ 93,
+ 72,
+ 73,
+ 93,
+ 93,
+ 73,
+ 94,
+ 73,
+ 74,
+ 94,
+ 94,
+ 74,
+ 95,
+ 74,
+ 75,
+ 95,
+ 95,
+ 75,
+ 96,
+ 75,
+ 76,
+ 96,
+ 96,
+ 76,
+ 97,
+ 76,
+ 77,
+ 97,
+ 97,
+ 77,
+ 98,
+ 77,
+ 78,
+ 98,
+ 98,
+ 78,
+ 99,
+ 78,
+ 79,
+ 99,
+ 99,
+ 79,
+ 100,
+ 79,
+ 80,
+ 100,
+ 100,
+ 80,
+ 101,
+ 80,
+ 81,
+ 101,
+ 101,
+ 81,
+ 102,
+ 81,
+ 82,
+ 102,
+ 102,
+ 82,
+ 103,
+ 82,
+ 83,
+ 103,
+ 103,
+ 83,
+ 104,
+ 84,
+ 85,
+ 105,
+ 105,
+ 85,
+ 106,
+ 85,
+ 86,
+ 106,
+ 106,
+ 86,
+ 107,
+ 86,
+ 87,
+ 107,
+ 107,
+ 87,
+ 108,
+ 87,
+ 88,
+ 108,
+ 108,
+ 88,
+ 109,
+ 88,
+ 89,
+ 109,
+ 109,
+ 89,
+ 110,
+ 89,
+ 90,
+ 110,
+ 110,
+ 90,
+ 111,
+ 90,
+ 91,
+ 111,
+ 111,
+ 91,
+ 112,
+ 91,
+ 92,
+ 112,
+ 112,
+ 92,
+ 113,
+ 92,
+ 93,
+ 113,
+ 113,
+ 93,
+ 114,
+ 93,
+ 94,
+ 114,
+ 114,
+ 94,
+ 115,
+ 94,
+ 95,
+ 115,
+ 115,
+ 95,
+ 116,
+ 95,
+ 96,
+ 116,
+ 116,
+ 96,
+ 117,
+ 96,
+ 97,
+ 117,
+ 117,
+ 97,
+ 118,
+ 97,
+ 98,
+ 118,
+ 118,
+ 98,
+ 119,
+ 98,
+ 99,
+ 119,
+ 119,
+ 99,
+ 120,
+ 99,
+ 100,
+ 120,
+ 120,
+ 100,
+ 121,
+ 100,
+ 101,
+ 121,
+ 121,
+ 101,
+ 122,
+ 101,
+ 102,
+ 122,
+ 122,
+ 102,
+ 123,
+ 102,
+ 103,
+ 123,
+ 123,
+ 103,
+ 124,
+ 103,
+ 104,
+ 124,
+ 124,
+ 104,
+ 125,
+ 105,
+ 106,
+ 126,
+ 126,
+ 106,
+ 127,
+ 106,
+ 107,
+ 127,
+ 127,
+ 107,
+ 128,
+ 107,
+ 108,
+ 128,
+ 128,
+ 108,
+ 129,
+ 108,
+ 109,
+ 129,
+ 129,
+ 109,
+ 130,
+ 109,
+ 110,
+ 130,
+ 130,
+ 110,
+ 131,
+ 110,
+ 111,
+ 131,
+ 131,
+ 111,
+ 132,
+ 111,
+ 112,
+ 132,
+ 132,
+ 112,
+ 133,
+ 112,
+ 113,
+ 133,
+ 133,
+ 113,
+ 134,
+ 113,
+ 114,
+ 134,
+ 134,
+ 114,
+ 135,
+ 114,
+ 115,
+ 135,
+ 135,
+ 115,
+ 136,
+ 115,
+ 116,
+ 136,
+ 136,
+ 116,
+ 137,
+ 116,
+ 117,
+ 137,
+ 137,
+ 117,
+ 138,
+ 117,
+ 118,
+ 138,
+ 138,
+ 118,
+ 139,
+ 118,
+ 119,
+ 139,
+ 139,
+ 119,
+ 140,
+ 119,
+ 120,
+ 140,
+ 140,
+ 120,
+ 141,
+ 120,
+ 121,
+ 141,
+ 141,
+ 121,
+ 142,
+ 121,
+ 122,
+ 142,
+ 142,
+ 122,
+ 143,
+ 122,
+ 123,
+ 143,
+ 143,
+ 123,
+ 144,
+ 123,
+ 124,
+ 144,
+ 144,
+ 124,
+ 145,
+ 124,
+ 125,
+ 145,
+ 145,
+ 125,
+ 146,
+ 126,
+ 127,
+ 147,
+ 147,
+ 127,
+ 148,
+ 127,
+ 128,
+ 148,
+ 148,
+ 128,
+ 149,
+ 128,
+ 129,
+ 149,
+ 149,
+ 129,
+ 150,
+ 129,
+ 130,
+ 150,
+ 150,
+ 130,
+ 151,
+ 130,
+ 131,
+ 151,
+ 151,
+ 131,
+ 152,
+ 131,
+ 132,
+ 152,
+ 152,
+ 132,
+ 153,
+ 132,
+ 133,
+ 153,
+ 153,
+ 133,
+ 154,
+ 133,
+ 134,
+ 154,
+ 154,
+ 134,
+ 155,
+ 134,
+ 135,
+ 155,
+ 155,
+ 135,
+ 156,
+ 135,
+ 136,
+ 156,
+ 156,
+ 136,
+ 157,
+ 136,
+ 137,
+ 157,
+ 157,
+ 137,
+ 158,
+ 137,
+ 138,
+ 158,
+ 158,
+ 138,
+ 159,
+ 138,
+ 139,
+ 159,
+ 159,
+ 139,
+ 160,
+ 139,
+ 140,
+ 160,
+ 160,
+ 140,
+ 161,
+ 140,
+ 141,
+ 161,
+ 161,
+ 141,
+ 162,
+ 141,
+ 142,
+ 162,
+ 162,
+ 142,
+ 163,
+ 142,
+ 143,
+ 163,
+ 163,
+ 143,
+ 164,
+ 143,
+ 144,
+ 164,
+ 164,
+ 144,
+ 165,
+ 144,
+ 145,
+ 165,
+ 165,
+ 145,
+ 166,
+ 145,
+ 146,
+ 166,
+ 166,
+ 146,
+ 167,
+ 147,
+ 148,
+ 168,
+ 168,
+ 148,
+ 169,
+ 148,
+ 149,
+ 169,
+ 169,
+ 149,
+ 170,
+ 149,
+ 150,
+ 170,
+ 170,
+ 150,
+ 171,
+ 150,
+ 151,
+ 171,
+ 171,
+ 151,
+ 172,
+ 151,
+ 152,
+ 172,
+ 172,
+ 152,
+ 173,
+ 152,
+ 153,
+ 173,
+ 173,
+ 153,
+ 174,
+ 153,
+ 154,
+ 174,
+ 174,
+ 154,
+ 175,
+ 154,
+ 155,
+ 175,
+ 175,
+ 155,
+ 176,
+ 155,
+ 156,
+ 176,
+ 176,
+ 156,
+ 177,
+ 156,
+ 157,
+ 177,
+ 177,
+ 157,
+ 178,
+ 157,
+ 158,
+ 178,
+ 178,
+ 158,
+ 179,
+ 158,
+ 159,
+ 179,
+ 179,
+ 159,
+ 180,
+ 159,
+ 160,
+ 180,
+ 180,
+ 160,
+ 181,
+ 160,
+ 161,
+ 181,
+ 181,
+ 161,
+ 182,
+ 161,
+ 162,
+ 182,
+ 182,
+ 162,
+ 183,
+ 162,
+ 163,
+ 183,
+ 183,
+ 163,
+ 184,
+ 163,
+ 164,
+ 184,
+ 184,
+ 164,
+ 185,
+ 164,
+ 165,
+ 185,
+ 185,
+ 165,
+ 186,
+ 165,
+ 166,
+ 186,
+ 186,
+ 166,
+ 187,
+ 166,
+ 167,
+ 187,
+ 187,
+ 167,
+ 188,
+ 168,
+ 169,
+ 189,
+ 189,
+ 169,
+ 190,
+ 173,
+ 174,
+ 191,
+ 191,
+ 174,
+ 192,
+ 174,
+ 175,
+ 192,
+ 192,
+ 175,
+ 193,
+ 175,
+ 176,
+ 193,
+ 193,
+ 176,
+ 194,
+ 176,
+ 177,
+ 194,
+ 194,
+ 177,
+ 195,
+ 177,
+ 178,
+ 195,
+ 195,
+ 178,
+ 196,
+ 178,
+ 179,
+ 196,
+ 196,
+ 179,
+ 197,
+ 179,
+ 180,
+ 197,
+ 197,
+ 180,
+ 198,
+ 180,
+ 181,
+ 198,
+ 198,
+ 181,
+ 199,
+ 181,
+ 182,
+ 199,
+ 199,
+ 182,
+ 200,
+ 182,
+ 183,
+ 200,
+ 200,
+ 183,
+ 201,
+ 183,
+ 184,
+ 201,
+ 201,
+ 184,
+ 202,
+ 184,
+ 185,
+ 202,
+ 202,
+ 185,
+ 203,
+ 185,
+ 186,
+ 203,
+ 203,
+ 186,
+ 204,
+ 186,
+ 187,
+ 204,
+ 204,
+ 187,
+ 205,
+ 187,
+ 188,
+ 205,
+ 205,
+ 188,
+ 206,
+ 189,
+ 190,
+ 207,
+ 207,
+ 190,
+ 208,
+ 191,
+ 192,
+ 209,
+ 209,
+ 192,
+ 210,
+ 192,
+ 193,
+ 210,
+ 210,
+ 193,
+ 211,
+ 193,
+ 194,
+ 211,
+ 211,
+ 194,
+ 212,
+ 194,
+ 195,
+ 212,
+ 212,
+ 195,
+ 213,
+ 195,
+ 196,
+ 213,
+ 213,
+ 196,
+ 214,
+ 196,
+ 197,
+ 214,
+ 214,
+ 197,
+ 215,
+ 197,
+ 198,
+ 215,
+ 215,
+ 198,
+ 216,
+ 198,
+ 199,
+ 216,
+ 216,
+ 199,
+ 217,
+ 199,
+ 200,
+ 217,
+ 217,
+ 200,
+ 218,
+ 200,
+ 201,
+ 218,
+ 218,
+ 201,
+ 219,
+ 201,
+ 202,
+ 219,
+ 219,
+ 202,
+ 220,
+ 202,
+ 203,
+ 220,
+ 220,
+ 203,
+ 221,
+ 203,
+ 204,
+ 221,
+ 221,
+ 204,
+ 222,
+ 204,
+ 205,
+ 222,
+ 222,
+ 205,
+ 223,
+ 205,
+ 206,
+ 223,
+ 223,
+ 206,
+ 224,
+ 207,
+ 208,
+ 225,
+ 225,
+ 208,
+ 226,
+ 209,
+ 210,
+ 227,
+ 227,
+ 210,
+ 228,
+ 210,
+ 211,
+ 228,
+ 228,
+ 211,
+ 229,
+ 211,
+ 212,
+ 229,
+ 229,
+ 212,
+ 230,
+ 212,
+ 213,
+ 230,
+ 230,
+ 213,
+ 231,
+ 213,
+ 214,
+ 231,
+ 231,
+ 214,
+ 232,
+ 214,
+ 215,
+ 232,
+ 232,
+ 215,
+ 233,
+ 215,
+ 216,
+ 233,
+ 233,
+ 216,
+ 234,
+ 216,
+ 217,
+ 234,
+ 234,
+ 217,
+ 235,
+ 217,
+ 218,
+ 235,
+ 235,
+ 218,
+ 236,
+ 218,
+ 219,
+ 236,
+ 236,
+ 219,
+ 237,
+ 219,
+ 220,
+ 237,
+ 237,
+ 220,
+ 238,
+ 220,
+ 221,
+ 238,
+ 238,
+ 221,
+ 239,
+ 221,
+ 222,
+ 239,
+ 239,
+ 222,
+ 240,
+ 222,
+ 223,
+ 240,
+ 240,
+ 223,
+ 241,
+ 223,
+ 224,
+ 241,
+ 241,
+ 224,
+ 242,
+ 225,
+ 226,
+ 243,
+ 243,
+ 226,
+ 244,
+ 227,
+ 228,
+ 245,
+ 245,
+ 228,
+ 246,
+ 228,
+ 229,
+ 246,
+ 246,
+ 229,
+ 247,
+ 229,
+ 230,
+ 247,
+ 247,
+ 230,
+ 248,
+ 230,
+ 231,
+ 248,
+ 248,
+ 231,
+ 249,
+ 231,
+ 232,
+ 249,
+ 249,
+ 232,
+ 250,
+ 232,
+ 233,
+ 250,
+ 250,
+ 233,
+ 251,
+ 233,
+ 234,
+ 251,
+ 251,
+ 234,
+ 252,
+ 234,
+ 235,
+ 252,
+ 252,
+ 235,
+ 253,
+ 235,
+ 236,
+ 253,
+ 253,
+ 236,
+ 254,
+ 236,
+ 237,
+ 254,
+ 254,
+ 237,
+ 255,
+ 237,
+ 238,
+ 255,
+ 255,
+ 238,
+ 256,
+ 238,
+ 239,
+ 256,
+ 256,
+ 239,
+ 257,
+ 239,
+ 240,
+ 257,
+ 257,
+ 240,
+ 258,
+ 240,
+ 241,
+ 258,
+ 258,
+ 241,
+ 259,
+ 241,
+ 242,
+ 259,
+ 259,
+ 242,
+ 260,
+ 243,
+ 244,
+ 261,
+ 261,
+ 244,
+ 262,
+ 245,
+ 246,
+ 263,
+ 263,
+ 246,
+ 264,
+ 246,
+ 247,
+ 264,
+ 264,
+ 247,
+ 265,
+ 247,
+ 248,
+ 265,
+ 265,
+ 248,
+ 266,
+ 248,
+ 249,
+ 266,
+ 266,
+ 249,
+ 267,
+ 249,
+ 250,
+ 267,
+ 267,
+ 250,
+ 268,
+ 250,
+ 251,
+ 268,
+ 268,
+ 251,
+ 269,
+ 251,
+ 252,
+ 269,
+ 269,
+ 252,
+ 270,
+ 252,
+ 253,
+ 270,
+ 270,
+ 253,
+ 271,
+ 253,
+ 254,
+ 271,
+ 271,
+ 254,
+ 272,
+ 254,
+ 255,
+ 272,
+ 272,
+ 255,
+ 273,
+ 255,
+ 256,
+ 273,
+ 273,
+ 256,
+ 274,
+ 256,
+ 257,
+ 274,
+ 274,
+ 257,
+ 275,
+ 257,
+ 258,
+ 275,
+ 275,
+ 258,
+ 276,
+ 258,
+ 259,
+ 276,
+ 276,
+ 259,
+ 277,
+ 259,
+ 260,
+ 277,
+ 277,
+ 260,
+ 278,
+ 261,
+ 262,
+ 279,
+ 279,
+ 262,
+ 280,
+ 263,
+ 264,
+ 281,
+ 281,
+ 264,
+ 282,
+ 264,
+ 265,
+ 282,
+ 282,
+ 265,
+ 283,
+ 265,
+ 266,
+ 283,
+ 283,
+ 266,
+ 284,
+ 266,
+ 267,
+ 284,
+ 284,
+ 267,
+ 285,
+ 267,
+ 268,
+ 285,
+ 285,
+ 268,
+ 286,
+ 268,
+ 269,
+ 286,
+ 286,
+ 269,
+ 287,
+ 269,
+ 270,
+ 287,
+ 287,
+ 270,
+ 288,
+ 270,
+ 271,
+ 288,
+ 288,
+ 271,
+ 289,
+ 271,
+ 272,
+ 289,
+ 289,
+ 272,
+ 290,
+ 272,
+ 273,
+ 290,
+ 290,
+ 273,
+ 291,
+ 273,
+ 274,
+ 291,
+ 291,
+ 274,
+ 292,
+ 274,
+ 275,
+ 292,
+ 292,
+ 275,
+ 293,
+ 275,
+ 276,
+ 293,
+ 293,
+ 276,
+ 294,
+ 276,
+ 277,
+ 294,
+ 294,
+ 277,
+ 295,
+ 277,
+ 278,
+ 295,
+ 295,
+ 278,
+ 296,
+ 279,
+ 280,
+ 297,
+ 297,
+ 280,
+ 298,
+ 281,
+ 282,
+ 299,
+ 299,
+ 282,
+ 300,
+ 282,
+ 283,
+ 300,
+ 300,
+ 283,
+ 301,
+ 283,
+ 284,
+ 301,
+ 301,
+ 284,
+ 302,
+ 284,
+ 285,
+ 302,
+ 302,
+ 285,
+ 303,
+ 285,
+ 286,
+ 303,
+ 303,
+ 286,
+ 304,
+ 286,
+ 287,
+ 304,
+ 304,
+ 287,
+ 305,
+ 287,
+ 288,
+ 305,
+ 305,
+ 288,
+ 306,
+ 288,
+ 289,
+ 306,
+ 306,
+ 289,
+ 307,
+ 289,
+ 290,
+ 307,
+ 307,
+ 290,
+ 308,
+ 290,
+ 291,
+ 308,
+ 308,
+ 291,
+ 309,
+ 291,
+ 292,
+ 309,
+ 309,
+ 292,
+ 310,
+ 292,
+ 293,
+ 310,
+ 310,
+ 293,
+ 311,
+ 293,
+ 294,
+ 311,
+ 311,
+ 294,
+ 312,
+ 294,
+ 295,
+ 312,
+ 312,
+ 295,
+ 313,
+ 295,
+ 296,
+ 313,
+ 313,
+ 296,
+ 314,
+ 297,
+ 298,
+ 315,
+ 315,
+ 298,
+ 316,
+ 299,
+ 300,
+ 317,
+ 317,
+ 300,
+ 318,
+ 300,
+ 301,
+ 318,
+ 318,
+ 301,
+ 319,
+ 301,
+ 302,
+ 319,
+ 319,
+ 302,
+ 320,
+ 302,
+ 303,
+ 320,
+ 320,
+ 303,
+ 321,
+ 303,
+ 304,
+ 321,
+ 321,
+ 304,
+ 322,
+ 304,
+ 305,
+ 322,
+ 322,
+ 305,
+ 323,
+ 305,
+ 306,
+ 323,
+ 323,
+ 306,
+ 324,
+ 306,
+ 307,
+ 324,
+ 324,
+ 307,
+ 325,
+ 307,
+ 308,
+ 325,
+ 325,
+ 308,
+ 326,
+ 308,
+ 309,
+ 326,
+ 326,
+ 309,
+ 327,
+ 309,
+ 310,
+ 327,
+ 327,
+ 310,
+ 328,
+ 310,
+ 311,
+ 328,
+ 328,
+ 311,
+ 329,
+ 311,
+ 312,
+ 329,
+ 329,
+ 312,
+ 330,
+ 312,
+ 313,
+ 330,
+ 330,
+ 313,
+ 331,
+ 313,
+ 314,
+ 331,
+ 331,
+ 314,
+ 332,
+ 315,
+ 316,
+ 333,
+ 333,
+ 316,
+ 334,
+ 317,
+ 318,
+ 335,
+ 335,
+ 318,
+ 336,
+ 318,
+ 319,
+ 336,
+ 336,
+ 319,
+ 337,
+ 319,
+ 320,
+ 337,
+ 337,
+ 320,
+ 338,
+ 320,
+ 321,
+ 338,
+ 338,
+ 321,
+ 339,
+ 321,
+ 322,
+ 339,
+ 339,
+ 322,
+ 340,
+ 322,
+ 323,
+ 340,
+ 340,
+ 323,
+ 341,
+ 323,
+ 324,
+ 341,
+ 341,
+ 324,
+ 342,
+ 324,
+ 325,
+ 342,
+ 342,
+ 325,
+ 343,
+ 325,
+ 326,
+ 343,
+ 343,
+ 326,
+ 344,
+ 326,
+ 327,
+ 344,
+ 344,
+ 327,
+ 345,
+ 327,
+ 328,
+ 345,
+ 345,
+ 328,
+ 346,
+ 328,
+ 329,
+ 346,
+ 346,
+ 329,
+ 347,
+ 329,
+ 330,
+ 347,
+ 347,
+ 330,
+ 348,
+ 330,
+ 331,
+ 348,
+ 348,
+ 331,
+ 349,
+ 331,
+ 332,
+ 349,
+ 349,
+ 332,
+ 350,
+ 333,
+ 334,
+ 351,
+ 351,
+ 334,
+ 352,
+ 335,
+ 336,
+ 353,
+ 353,
+ 336,
+ 354,
+ 336,
+ 337,
+ 354,
+ 354,
+ 337,
+ 355,
+ 337,
+ 338,
+ 355,
+ 355,
+ 338,
+ 356,
+ 338,
+ 339,
+ 356,
+ 356,
+ 339,
+ 357,
+ 339,
+ 340,
+ 357,
+ 357,
+ 340,
+ 358,
+ 340,
+ 341,
+ 358,
+ 358,
+ 341,
+ 359,
+ 341,
+ 342,
+ 359,
+ 359,
+ 342,
+ 360,
+ 342,
+ 343,
+ 360,
+ 360,
+ 343,
+ 361,
+ 343,
+ 344,
+ 361,
+ 361,
+ 344,
+ 362,
+ 344,
+ 345,
+ 362,
+ 362,
+ 345,
+ 363,
+ 345,
+ 346,
+ 363,
+ 363,
+ 346,
+ 364,
+ 346,
+ 347,
+ 364,
+ 364,
+ 347,
+ 365,
+ 347,
+ 348,
+ 365,
+ 365,
+ 348,
+ 366,
+ 348,
+ 349,
+ 366,
+ 366,
+ 349,
+ 367,
+ 349,
+ 350,
+ 367,
+ 367,
+ 350,
+ 368,
+ 1,
+ 0,
+ 369,
+ 4,
+ 1,
+ 370,
+ 6,
+ 4,
+ 371,
+ 8,
+ 6,
+ 372,
+ 10,
+ 8,
+ 373,
+ 12,
+ 10,
+ 374,
+ 14,
+ 12,
+ 375,
+ 16,
+ 14,
+ 376,
+ 18,
+ 16,
+ 377,
+ 20,
+ 18,
+ 378,
+ 22,
+ 20,
+ 379,
+ 24,
+ 22,
+ 380,
+ 26,
+ 24,
+ 381,
+ 28,
+ 26,
+ 382,
+ 30,
+ 28,
+ 383,
+ 32,
+ 30,
+ 384,
+ 34,
+ 32,
+ 385,
+ 36,
+ 34,
+ 386,
+ 38,
+ 36,
+ 387,
+ 40,
+ 38,
+ 388,
+ 351,
+ 352,
+ 389,
+ 352,
+ 390,
+ 391,
+ 390,
+ 392,
+ 393,
+ 392,
+ 394,
+ 395,
+ 394,
+ 353,
+ 396,
+ 353,
+ 354,
+ 397,
+ 354,
+ 355,
+ 398,
+ 355,
+ 356,
+ 399,
+ 356,
+ 357,
+ 400,
+ 357,
+ 358,
+ 401,
+ 358,
+ 359,
+ 402,
+ 359,
+ 360,
+ 403,
+ 360,
+ 361,
+ 404,
+ 361,
+ 362,
+ 405,
+ 362,
+ 363,
+ 406,
+ 363,
+ 364,
+ 407,
+ 364,
+ 365,
+ 408,
+ 365,
+ 366,
+ 409,
+ 366,
+ 367,
+ 410,
+ 367,
+ 368,
+ 411,
+ 414,
+ 413,
+ 412,
+ 415,
+ 413,
+ 414,
+ 415,
+ 416,
+ 413,
+ 417,
+ 416,
+ 415,
+ 417,
+ 418,
+ 416,
+ 419,
+ 418,
+ 417,
+ 419,
+ 420,
+ 418,
+ 421,
+ 420,
+ 419,
+ 421,
+ 422,
+ 420,
+ 423,
+ 422,
+ 421,
+ 423,
+ 424,
+ 422,
+ 425,
+ 424,
+ 423,
+ 425,
+ 426,
+ 424,
+ 427,
+ 426,
+ 425,
+ 427,
+ 428,
+ 426,
+ 429,
+ 428,
+ 427,
+ 429,
+ 430,
+ 428,
+ 431,
+ 430,
+ 429,
+ 431,
+ 432,
+ 430,
+ 433,
+ 432,
+ 431,
+ 433,
+ 434,
+ 432,
+ 435,
+ 434,
+ 433,
+ 435,
+ 436,
+ 434,
+ 437,
+ 436,
+ 435,
+ 437,
+ 438,
+ 436,
+ 439,
+ 438,
+ 437,
+ 439,
+ 440,
+ 438,
+ 441,
+ 440,
+ 439,
+ 441,
+ 442,
+ 440,
+ 443,
+ 442,
+ 441,
+ 443,
+ 444,
+ 442,
+ 445,
+ 444,
+ 443,
+ 445,
+ 446,
+ 444,
+ 447,
+ 446,
+ 445,
+ 447,
+ 448,
+ 446,
+ 449,
+ 448,
+ 447,
+ 449,
+ 450,
+ 448,
+ 451,
+ 450,
+ 449,
+ 451,
+ 452,
+ 450,
+ 453,
+ 452,
+ 451,
+ 454,
+ 415,
+ 414,
+ 455,
+ 415,
+ 454,
+ 455,
+ 417,
+ 415,
+ 456,
+ 417,
+ 455,
+ 456,
+ 419,
+ 417,
+ 457,
+ 419,
+ 456,
+ 457,
+ 421,
+ 419,
+ 458,
+ 421,
+ 457,
+ 458,
+ 423,
+ 421,
+ 459,
+ 423,
+ 458,
+ 459,
+ 425,
+ 423,
+ 460,
+ 425,
+ 459,
+ 460,
+ 427,
+ 425,
+ 461,
+ 427,
+ 460,
+ 461,
+ 429,
+ 427,
+ 462,
+ 429,
+ 461,
+ 462,
+ 431,
+ 429,
+ 463,
+ 431,
+ 462,
+ 463,
+ 433,
+ 431,
+ 464,
+ 433,
+ 463,
+ 464,
+ 435,
+ 433,
+ 465,
+ 435,
+ 464,
+ 465,
+ 437,
+ 435,
+ 466,
+ 437,
+ 465,
+ 466,
+ 439,
+ 437,
+ 467,
+ 439,
+ 466,
+ 467,
+ 441,
+ 439,
+ 468,
+ 441,
+ 467,
+ 468,
+ 443,
+ 441,
+ 469,
+ 443,
+ 468,
+ 469,
+ 445,
+ 443,
+ 470,
+ 445,
+ 469,
+ 470,
+ 447,
+ 445,
+ 471,
+ 447,
+ 470,
+ 471,
+ 449,
+ 447,
+ 472,
+ 449,
+ 471,
+ 472,
+ 451,
+ 449,
+ 473,
+ 451,
+ 472,
+ 473,
+ 453,
+ 451,
+ 474,
+ 453,
+ 473,
+ 475,
+ 455,
+ 454,
+ 476,
+ 455,
+ 475,
+ 476,
+ 456,
+ 455,
+ 477,
+ 456,
+ 476,
+ 477,
+ 457,
+ 456,
+ 478,
+ 457,
+ 477,
+ 478,
+ 458,
+ 457,
+ 479,
+ 458,
+ 478,
+ 479,
+ 459,
+ 458,
+ 480,
+ 459,
+ 479,
+ 480,
+ 460,
+ 459,
+ 481,
+ 460,
+ 480,
+ 481,
+ 461,
+ 460,
+ 482,
+ 461,
+ 481,
+ 482,
+ 462,
+ 461,
+ 483,
+ 462,
+ 482,
+ 483,
+ 463,
+ 462,
+ 484,
+ 463,
+ 483,
+ 484,
+ 464,
+ 463,
+ 485,
+ 464,
+ 484,
+ 485,
+ 465,
+ 464,
+ 486,
+ 465,
+ 485,
+ 486,
+ 466,
+ 465,
+ 487,
+ 466,
+ 486,
+ 487,
+ 467,
+ 466,
+ 488,
+ 467,
+ 487,
+ 488,
+ 468,
+ 467,
+ 489,
+ 468,
+ 488,
+ 489,
+ 469,
+ 468,
+ 490,
+ 469,
+ 489,
+ 490,
+ 470,
+ 469,
+ 491,
+ 470,
+ 490,
+ 491,
+ 471,
+ 470,
+ 492,
+ 471,
+ 491,
+ 492,
+ 472,
+ 471,
+ 493,
+ 472,
+ 492,
+ 493,
+ 473,
+ 472,
+ 494,
+ 473,
+ 493,
+ 494,
+ 474,
+ 473,
+ 495,
+ 474,
+ 494,
+ 496,
+ 476,
+ 475,
+ 497,
+ 476,
+ 496,
+ 497,
+ 477,
+ 476,
+ 498,
+ 477,
+ 497,
+ 498,
+ 478,
+ 477,
+ 499,
+ 478,
+ 498,
+ 499,
+ 479,
+ 478,
+ 500,
+ 479,
+ 499,
+ 500,
+ 480,
+ 479,
+ 501,
+ 480,
+ 500,
+ 501,
+ 481,
+ 480,
+ 502,
+ 481,
+ 501,
+ 502,
+ 482,
+ 481,
+ 503,
+ 482,
+ 502,
+ 503,
+ 483,
+ 482,
+ 504,
+ 483,
+ 503,
+ 504,
+ 484,
+ 483,
+ 505,
+ 484,
+ 504,
+ 505,
+ 485,
+ 484,
+ 506,
+ 485,
+ 505,
+ 506,
+ 486,
+ 485,
+ 507,
+ 486,
+ 506,
+ 507,
+ 487,
+ 486,
+ 508,
+ 487,
+ 507,
+ 508,
+ 488,
+ 487,
+ 509,
+ 488,
+ 508,
+ 509,
+ 489,
+ 488,
+ 510,
+ 489,
+ 509,
+ 510,
+ 490,
+ 489,
+ 511,
+ 490,
+ 510,
+ 511,
+ 491,
+ 490,
+ 512,
+ 491,
+ 511,
+ 512,
+ 492,
+ 491,
+ 513,
+ 492,
+ 512,
+ 513,
+ 493,
+ 492,
+ 514,
+ 493,
+ 513,
+ 514,
+ 494,
+ 493,
+ 515,
+ 494,
+ 514,
+ 515,
+ 495,
+ 494,
+ 516,
+ 495,
+ 515,
+ 517,
+ 497,
+ 496,
+ 518,
+ 497,
+ 517,
+ 518,
+ 498,
+ 497,
+ 519,
+ 498,
+ 518,
+ 519,
+ 499,
+ 498,
+ 520,
+ 499,
+ 519,
+ 520,
+ 500,
+ 499,
+ 521,
+ 500,
+ 520,
+ 521,
+ 501,
+ 500,
+ 522,
+ 501,
+ 521,
+ 522,
+ 502,
+ 501,
+ 523,
+ 502,
+ 522,
+ 523,
+ 503,
+ 502,
+ 524,
+ 503,
+ 523,
+ 524,
+ 504,
+ 503,
+ 525,
+ 504,
+ 524,
+ 525,
+ 505,
+ 504,
+ 526,
+ 505,
+ 525,
+ 526,
+ 506,
+ 505,
+ 527,
+ 506,
+ 526,
+ 527,
+ 507,
+ 506,
+ 528,
+ 507,
+ 527,
+ 528,
+ 508,
+ 507,
+ 529,
+ 508,
+ 528,
+ 529,
+ 509,
+ 508,
+ 530,
+ 509,
+ 529,
+ 530,
+ 510,
+ 509,
+ 531,
+ 510,
+ 530,
+ 531,
+ 511,
+ 510,
+ 532,
+ 511,
+ 531,
+ 532,
+ 512,
+ 511,
+ 533,
+ 512,
+ 532,
+ 533,
+ 513,
+ 512,
+ 534,
+ 513,
+ 533,
+ 534,
+ 514,
+ 513,
+ 535,
+ 514,
+ 534,
+ 535,
+ 515,
+ 514,
+ 536,
+ 515,
+ 535,
+ 536,
+ 516,
+ 515,
+ 537,
+ 516,
+ 536,
+ 538,
+ 518,
+ 517,
+ 539,
+ 518,
+ 538,
+ 539,
+ 519,
+ 518,
+ 540,
+ 519,
+ 539,
+ 540,
+ 520,
+ 519,
+ 541,
+ 520,
+ 540,
+ 541,
+ 521,
+ 520,
+ 542,
+ 521,
+ 541,
+ 542,
+ 522,
+ 521,
+ 543,
+ 522,
+ 542,
+ 543,
+ 523,
+ 522,
+ 544,
+ 523,
+ 543,
+ 544,
+ 524,
+ 523,
+ 545,
+ 524,
+ 544,
+ 545,
+ 525,
+ 524,
+ 546,
+ 525,
+ 545,
+ 546,
+ 526,
+ 525,
+ 547,
+ 526,
+ 546,
+ 547,
+ 527,
+ 526,
+ 548,
+ 527,
+ 547,
+ 548,
+ 528,
+ 527,
+ 549,
+ 528,
+ 548,
+ 549,
+ 529,
+ 528,
+ 550,
+ 529,
+ 549,
+ 550,
+ 530,
+ 529,
+ 551,
+ 530,
+ 550,
+ 551,
+ 531,
+ 530,
+ 552,
+ 531,
+ 551,
+ 552,
+ 532,
+ 531,
+ 553,
+ 532,
+ 552,
+ 553,
+ 533,
+ 532,
+ 554,
+ 533,
+ 553,
+ 554,
+ 534,
+ 533,
+ 555,
+ 534,
+ 554,
+ 555,
+ 535,
+ 534,
+ 556,
+ 535,
+ 555,
+ 556,
+ 536,
+ 535,
+ 557,
+ 536,
+ 556,
+ 557,
+ 537,
+ 536,
+ 558,
+ 537,
+ 557,
+ 559,
+ 539,
+ 538,
+ 560,
+ 539,
+ 559,
+ 560,
+ 540,
+ 539,
+ 561,
+ 540,
+ 560,
+ 561,
+ 541,
+ 540,
+ 562,
+ 541,
+ 561,
+ 562,
+ 542,
+ 541,
+ 563,
+ 542,
+ 562,
+ 563,
+ 543,
+ 542,
+ 564,
+ 543,
+ 563,
+ 564,
+ 544,
+ 543,
+ 565,
+ 544,
+ 564,
+ 565,
+ 545,
+ 544,
+ 566,
+ 545,
+ 565,
+ 566,
+ 546,
+ 545,
+ 567,
+ 546,
+ 566,
+ 567,
+ 547,
+ 546,
+ 568,
+ 547,
+ 567,
+ 568,
+ 548,
+ 547,
+ 569,
+ 548,
+ 568,
+ 569,
+ 549,
+ 548,
+ 570,
+ 549,
+ 569,
+ 570,
+ 550,
+ 549,
+ 571,
+ 550,
+ 570,
+ 571,
+ 551,
+ 550,
+ 572,
+ 551,
+ 571,
+ 572,
+ 552,
+ 551,
+ 573,
+ 552,
+ 572,
+ 573,
+ 553,
+ 552,
+ 574,
+ 553,
+ 573,
+ 574,
+ 554,
+ 553,
+ 575,
+ 554,
+ 574,
+ 575,
+ 555,
+ 554,
+ 576,
+ 555,
+ 575,
+ 576,
+ 556,
+ 555,
+ 577,
+ 556,
+ 576,
+ 577,
+ 557,
+ 556,
+ 578,
+ 557,
+ 577,
+ 578,
+ 558,
+ 557,
+ 579,
+ 558,
+ 578,
+ 580,
+ 560,
+ 559,
+ 581,
+ 560,
+ 580,
+ 581,
+ 561,
+ 560,
+ 582,
+ 561,
+ 581,
+ 582,
+ 562,
+ 561,
+ 583,
+ 562,
+ 582,
+ 583,
+ 563,
+ 562,
+ 584,
+ 563,
+ 583,
+ 584,
+ 564,
+ 563,
+ 585,
+ 564,
+ 584,
+ 585,
+ 565,
+ 564,
+ 586,
+ 565,
+ 585,
+ 586,
+ 566,
+ 565,
+ 587,
+ 566,
+ 586,
+ 587,
+ 567,
+ 566,
+ 588,
+ 567,
+ 587,
+ 588,
+ 568,
+ 567,
+ 589,
+ 568,
+ 588,
+ 589,
+ 569,
+ 568,
+ 590,
+ 569,
+ 589,
+ 590,
+ 570,
+ 569,
+ 591,
+ 570,
+ 590,
+ 591,
+ 571,
+ 570,
+ 592,
+ 571,
+ 591,
+ 592,
+ 572,
+ 571,
+ 593,
+ 572,
+ 592,
+ 593,
+ 573,
+ 572,
+ 594,
+ 573,
+ 593,
+ 594,
+ 574,
+ 573,
+ 595,
+ 574,
+ 594,
+ 595,
+ 575,
+ 574,
+ 596,
+ 575,
+ 595,
+ 596,
+ 576,
+ 575,
+ 597,
+ 576,
+ 596,
+ 597,
+ 577,
+ 576,
+ 598,
+ 577,
+ 597,
+ 598,
+ 578,
+ 577,
+ 599,
+ 578,
+ 598,
+ 599,
+ 579,
+ 578,
+ 600,
+ 579,
+ 599,
+ 601,
+ 581,
+ 580,
+ 602,
+ 581,
+ 601,
+ 603,
+ 586,
+ 585,
+ 604,
+ 586,
+ 603,
+ 604,
+ 587,
+ 586,
+ 605,
+ 587,
+ 604,
+ 605,
+ 588,
+ 587,
+ 606,
+ 588,
+ 605,
+ 606,
+ 589,
+ 588,
+ 607,
+ 589,
+ 606,
+ 607,
+ 590,
+ 589,
+ 608,
+ 590,
+ 607,
+ 608,
+ 591,
+ 590,
+ 609,
+ 591,
+ 608,
+ 609,
+ 592,
+ 591,
+ 610,
+ 592,
+ 609,
+ 610,
+ 593,
+ 592,
+ 611,
+ 593,
+ 610,
+ 611,
+ 594,
+ 593,
+ 612,
+ 594,
+ 611,
+ 612,
+ 595,
+ 594,
+ 613,
+ 595,
+ 612,
+ 613,
+ 596,
+ 595,
+ 614,
+ 596,
+ 613,
+ 614,
+ 597,
+ 596,
+ 615,
+ 597,
+ 614,
+ 615,
+ 598,
+ 597,
+ 616,
+ 598,
+ 615,
+ 616,
+ 599,
+ 598,
+ 617,
+ 599,
+ 616,
+ 617,
+ 600,
+ 599,
+ 618,
+ 600,
+ 617,
+ 619,
+ 602,
+ 601,
+ 620,
+ 602,
+ 619,
+ 621,
+ 604,
+ 603,
+ 622,
+ 604,
+ 621,
+ 622,
+ 605,
+ 604,
+ 623,
+ 605,
+ 622,
+ 623,
+ 606,
+ 605,
+ 624,
+ 606,
+ 623,
+ 624,
+ 607,
+ 606,
+ 625,
+ 607,
+ 624,
+ 625,
+ 608,
+ 607,
+ 626,
+ 608,
+ 625,
+ 626,
+ 609,
+ 608,
+ 627,
+ 609,
+ 626,
+ 627,
+ 610,
+ 609,
+ 628,
+ 610,
+ 627,
+ 628,
+ 611,
+ 610,
+ 629,
+ 611,
+ 628,
+ 629,
+ 612,
+ 611,
+ 630,
+ 612,
+ 629,
+ 630,
+ 613,
+ 612,
+ 631,
+ 613,
+ 630,
+ 631,
+ 614,
+ 613,
+ 632,
+ 614,
+ 631,
+ 632,
+ 615,
+ 614,
+ 633,
+ 615,
+ 632,
+ 633,
+ 616,
+ 615,
+ 634,
+ 616,
+ 633,
+ 634,
+ 617,
+ 616,
+ 635,
+ 617,
+ 634,
+ 635,
+ 618,
+ 617,
+ 636,
+ 618,
+ 635,
+ 637,
+ 620,
+ 619,
+ 638,
+ 620,
+ 637,
+ 639,
+ 622,
+ 621,
+ 640,
+ 622,
+ 639,
+ 640,
+ 623,
+ 622,
+ 641,
+ 623,
+ 640,
+ 641,
+ 624,
+ 623,
+ 642,
+ 624,
+ 641,
+ 642,
+ 625,
+ 624,
+ 643,
+ 625,
+ 642,
+ 643,
+ 626,
+ 625,
+ 644,
+ 626,
+ 643,
+ 644,
+ 627,
+ 626,
+ 645,
+ 627,
+ 644,
+ 645,
+ 628,
+ 627,
+ 646,
+ 628,
+ 645,
+ 646,
+ 629,
+ 628,
+ 647,
+ 629,
+ 646,
+ 647,
+ 630,
+ 629,
+ 648,
+ 630,
+ 647,
+ 648,
+ 631,
+ 630,
+ 649,
+ 631,
+ 648,
+ 649,
+ 632,
+ 631,
+ 650,
+ 632,
+ 649,
+ 650,
+ 633,
+ 632,
+ 651,
+ 633,
+ 650,
+ 651,
+ 634,
+ 633,
+ 652,
+ 634,
+ 651,
+ 652,
+ 635,
+ 634,
+ 653,
+ 635,
+ 652,
+ 653,
+ 636,
+ 635,
+ 654,
+ 636,
+ 653,
+ 655,
+ 638,
+ 637,
+ 656,
+ 638,
+ 655,
+ 657,
+ 640,
+ 639,
+ 658,
+ 640,
+ 657,
+ 658,
+ 641,
+ 640,
+ 659,
+ 641,
+ 658,
+ 659,
+ 642,
+ 641,
+ 660,
+ 642,
+ 659,
+ 660,
+ 643,
+ 642,
+ 661,
+ 643,
+ 660,
+ 661,
+ 644,
+ 643,
+ 662,
+ 644,
+ 661,
+ 662,
+ 645,
+ 644,
+ 663,
+ 645,
+ 662,
+ 663,
+ 646,
+ 645,
+ 664,
+ 646,
+ 663,
+ 664,
+ 647,
+ 646,
+ 665,
+ 647,
+ 664,
+ 665,
+ 648,
+ 647,
+ 666,
+ 648,
+ 665,
+ 666,
+ 649,
+ 648,
+ 667,
+ 649,
+ 666,
+ 667,
+ 650,
+ 649,
+ 668,
+ 650,
+ 667,
+ 668,
+ 651,
+ 650,
+ 669,
+ 651,
+ 668,
+ 669,
+ 652,
+ 651,
+ 670,
+ 652,
+ 669,
+ 670,
+ 653,
+ 652,
+ 671,
+ 653,
+ 670,
+ 671,
+ 654,
+ 653,
+ 672,
+ 654,
+ 671,
+ 673,
+ 656,
+ 655,
+ 674,
+ 656,
+ 673,
+ 675,
+ 658,
+ 657,
+ 676,
+ 658,
+ 675,
+ 676,
+ 659,
+ 658,
+ 677,
+ 659,
+ 676,
+ 677,
+ 660,
+ 659,
+ 678,
+ 660,
+ 677,
+ 678,
+ 661,
+ 660,
+ 679,
+ 661,
+ 678,
+ 679,
+ 662,
+ 661,
+ 680,
+ 662,
+ 679,
+ 680,
+ 663,
+ 662,
+ 681,
+ 663,
+ 680,
+ 681,
+ 664,
+ 663,
+ 682,
+ 664,
+ 681,
+ 682,
+ 665,
+ 664,
+ 683,
+ 665,
+ 682,
+ 683,
+ 666,
+ 665,
+ 684,
+ 666,
+ 683,
+ 684,
+ 667,
+ 666,
+ 685,
+ 667,
+ 684,
+ 685,
+ 668,
+ 667,
+ 686,
+ 668,
+ 685,
+ 686,
+ 669,
+ 668,
+ 687,
+ 669,
+ 686,
+ 687,
+ 670,
+ 669,
+ 688,
+ 670,
+ 687,
+ 688,
+ 671,
+ 670,
+ 689,
+ 671,
+ 688,
+ 689,
+ 672,
+ 671,
+ 690,
+ 672,
+ 689,
+ 691,
+ 674,
+ 673,
+ 692,
+ 674,
+ 691,
+ 693,
+ 676,
+ 675,
+ 694,
+ 676,
+ 693,
+ 694,
+ 677,
+ 676,
+ 695,
+ 677,
+ 694,
+ 695,
+ 678,
+ 677,
+ 696,
+ 678,
+ 695,
+ 696,
+ 679,
+ 678,
+ 697,
+ 679,
+ 696,
+ 697,
+ 680,
+ 679,
+ 698,
+ 680,
+ 697,
+ 698,
+ 681,
+ 680,
+ 699,
+ 681,
+ 698,
+ 699,
+ 682,
+ 681,
+ 700,
+ 682,
+ 699,
+ 700,
+ 683,
+ 682,
+ 701,
+ 683,
+ 700,
+ 701,
+ 684,
+ 683,
+ 702,
+ 684,
+ 701,
+ 702,
+ 685,
+ 684,
+ 703,
+ 685,
+ 702,
+ 703,
+ 686,
+ 685,
+ 704,
+ 686,
+ 703,
+ 704,
+ 687,
+ 686,
+ 705,
+ 687,
+ 704,
+ 705,
+ 688,
+ 687,
+ 706,
+ 688,
+ 705,
+ 706,
+ 689,
+ 688,
+ 707,
+ 689,
+ 706,
+ 707,
+ 690,
+ 689,
+ 708,
+ 690,
+ 707,
+ 709,
+ 692,
+ 691,
+ 710,
+ 692,
+ 709,
+ 711,
+ 694,
+ 693,
+ 712,
+ 694,
+ 711,
+ 712,
+ 695,
+ 694,
+ 713,
+ 695,
+ 712,
+ 713,
+ 696,
+ 695,
+ 714,
+ 696,
+ 713,
+ 714,
+ 697,
+ 696,
+ 715,
+ 697,
+ 714,
+ 715,
+ 698,
+ 697,
+ 716,
+ 698,
+ 715,
+ 716,
+ 699,
+ 698,
+ 717,
+ 699,
+ 716,
+ 717,
+ 700,
+ 699,
+ 718,
+ 700,
+ 717,
+ 718,
+ 701,
+ 700,
+ 719,
+ 701,
+ 718,
+ 719,
+ 702,
+ 701,
+ 720,
+ 702,
+ 719,
+ 720,
+ 703,
+ 702,
+ 721,
+ 703,
+ 720,
+ 721,
+ 704,
+ 703,
+ 722,
+ 704,
+ 721,
+ 722,
+ 705,
+ 704,
+ 723,
+ 705,
+ 722,
+ 723,
+ 706,
+ 705,
+ 724,
+ 706,
+ 723,
+ 724,
+ 707,
+ 706,
+ 725,
+ 707,
+ 724,
+ 725,
+ 708,
+ 707,
+ 726,
+ 708,
+ 725,
+ 727,
+ 710,
+ 709,
+ 728,
+ 710,
+ 727,
+ 729,
+ 712,
+ 711,
+ 730,
+ 712,
+ 729,
+ 730,
+ 713,
+ 712,
+ 731,
+ 713,
+ 730,
+ 731,
+ 714,
+ 713,
+ 732,
+ 714,
+ 731,
+ 732,
+ 715,
+ 714,
+ 733,
+ 715,
+ 732,
+ 733,
+ 716,
+ 715,
+ 734,
+ 716,
+ 733,
+ 734,
+ 717,
+ 716,
+ 735,
+ 717,
+ 734,
+ 735,
+ 718,
+ 717,
+ 736,
+ 718,
+ 735,
+ 736,
+ 719,
+ 718,
+ 737,
+ 719,
+ 736,
+ 737,
+ 720,
+ 719,
+ 738,
+ 720,
+ 737,
+ 738,
+ 721,
+ 720,
+ 739,
+ 721,
+ 738,
+ 739,
+ 722,
+ 721,
+ 740,
+ 722,
+ 739,
+ 740,
+ 723,
+ 722,
+ 741,
+ 723,
+ 740,
+ 741,
+ 724,
+ 723,
+ 742,
+ 724,
+ 741,
+ 742,
+ 725,
+ 724,
+ 743,
+ 725,
+ 742,
+ 743,
+ 726,
+ 725,
+ 744,
+ 726,
+ 743,
+ 745,
+ 728,
+ 727,
+ 746,
+ 728,
+ 745,
+ 747,
+ 730,
+ 729,
+ 748,
+ 730,
+ 747,
+ 748,
+ 731,
+ 730,
+ 749,
+ 731,
+ 748,
+ 749,
+ 732,
+ 731,
+ 750,
+ 732,
+ 749,
+ 750,
+ 733,
+ 732,
+ 751,
+ 733,
+ 750,
+ 751,
+ 734,
+ 733,
+ 752,
+ 734,
+ 751,
+ 752,
+ 735,
+ 734,
+ 753,
+ 735,
+ 752,
+ 753,
+ 736,
+ 735,
+ 754,
+ 736,
+ 753,
+ 754,
+ 737,
+ 736,
+ 755,
+ 737,
+ 754,
+ 755,
+ 738,
+ 737,
+ 756,
+ 738,
+ 755,
+ 756,
+ 739,
+ 738,
+ 757,
+ 739,
+ 756,
+ 757,
+ 740,
+ 739,
+ 758,
+ 740,
+ 757,
+ 758,
+ 741,
+ 740,
+ 759,
+ 741,
+ 758,
+ 759,
+ 742,
+ 741,
+ 760,
+ 742,
+ 759,
+ 760,
+ 743,
+ 742,
+ 761,
+ 743,
+ 760,
+ 761,
+ 744,
+ 743,
+ 762,
+ 744,
+ 761,
+ 763,
+ 746,
+ 745,
+ 764,
+ 746,
+ 763,
+ 765,
+ 748,
+ 747,
+ 766,
+ 748,
+ 765,
+ 766,
+ 749,
+ 748,
+ 767,
+ 749,
+ 766,
+ 767,
+ 750,
+ 749,
+ 768,
+ 750,
+ 767,
+ 768,
+ 751,
+ 750,
+ 769,
+ 751,
+ 768,
+ 769,
+ 752,
+ 751,
+ 770,
+ 752,
+ 769,
+ 770,
+ 753,
+ 752,
+ 771,
+ 753,
+ 770,
+ 771,
+ 754,
+ 753,
+ 772,
+ 754,
+ 771,
+ 772,
+ 755,
+ 754,
+ 773,
+ 755,
+ 772,
+ 773,
+ 756,
+ 755,
+ 774,
+ 756,
+ 773,
+ 774,
+ 757,
+ 756,
+ 775,
+ 757,
+ 774,
+ 775,
+ 758,
+ 757,
+ 776,
+ 758,
+ 775,
+ 776,
+ 759,
+ 758,
+ 777,
+ 759,
+ 776,
+ 777,
+ 760,
+ 759,
+ 778,
+ 760,
+ 777,
+ 778,
+ 761,
+ 760,
+ 779,
+ 761,
+ 778,
+ 779,
+ 762,
+ 761,
+ 780,
+ 762,
+ 779,
+ 781,
+ 412,
+ 413,
+ 782,
+ 413,
+ 416,
+ 783,
+ 416,
+ 418,
+ 784,
+ 418,
+ 420,
+ 785,
+ 420,
+ 422,
+ 786,
+ 422,
+ 424,
+ 787,
+ 424,
+ 426,
+ 788,
+ 426,
+ 428,
+ 789,
+ 428,
+ 430,
+ 790,
+ 430,
+ 432,
+ 791,
+ 432,
+ 434,
+ 792,
+ 434,
+ 436,
+ 793,
+ 436,
+ 438,
+ 794,
+ 438,
+ 440,
+ 795,
+ 440,
+ 442,
+ 796,
+ 442,
+ 444,
+ 797,
+ 444,
+ 446,
+ 798,
+ 446,
+ 448,
+ 799,
+ 448,
+ 450,
+ 800,
+ 450,
+ 452,
+ 801,
+ 764,
+ 763,
+ 803,
+ 802,
+ 764,
+ 805,
+ 804,
+ 802,
+ 807,
+ 806,
+ 804,
+ 808,
+ 765,
+ 806,
+ 809,
+ 766,
+ 765,
+ 810,
+ 767,
+ 766,
+ 811,
+ 768,
+ 767,
+ 812,
+ 769,
+ 768,
+ 813,
+ 770,
+ 769,
+ 814,
+ 771,
+ 770,
+ 815,
+ 772,
+ 771,
+ 816,
+ 773,
+ 772,
+ 817,
+ 774,
+ 773,
+ 818,
+ 775,
+ 774,
+ 819,
+ 776,
+ 775,
+ 820,
+ 777,
+ 776,
+ 821,
+ 778,
+ 777,
+ 822,
+ 779,
+ 778,
+ 823,
+ 780,
+ 779
+ ],
+ "receiveShadows": false,
+ "infiniteDistance": false,
+ "billboardMode": 0,
+ "visibility": 1,
+ "subMeshes": [
+ {
+ "materialIndex": 0,
+ "verticesStart": 0,
+ "verticesCount": 412,
+ "indexStart": 0,
+ "indexCount": 2040
+ },
+ {
+ "materialIndex": 1,
+ "verticesStart": 412,
+ "verticesCount": 412,
+ "indexStart": 2040,
+ "indexCount": 2040
+ }
+ ],
+ "instances": null,
+ "skeletonId": -1,
+ "numBoneInfluencers": 4,
+ "applyFog": false,
+ "lodMeshIds": null,
+ "lodDistances": null,
+ "lodCoverages": null,
+ "rotation": null,
+ "scaling": [
+ 1,
+ 1,
+ 1
+ ],
+ "rotationQuaternion": [
+ 0,
+ 0,
+ 0,
+ 1
+ ],
+ "actions": null,
+ "checkCollisions": false,
+ "pickable": true,
+ "showBoundingBox": false,
+ "showSubMeshesBoundingBox": false,
+ "alphaIndex": 0,
+ "physicsImpostor": 0,
+ "physicsMass": 0,
+ "physicsFriction": 0,
+ "physicsRestitution": 0,
+ "name": "pSphere1",
+ "id": "104DEDEF-4AA4-6C00-0711-638FCA101AE4",
+ "parentId": null,
+ "position": [
+ 0,
+ 0,
+ -2.3296
+ ],
+ "animations": [],
+ "autoAnimate": true,
+ "autoAnimateFrom": 1,
+ "autoAnimateTo": 200,
+ "autoAnimateLoop": true,
+ "metadata": {}
+ }
+ ],
+ "sounds": [],
+ "materials": [
+ {
+ "customType": "BABYLON.StandardMaterial",
+ "ambient": [
+ 1,
+ 1,
+ 1
+ ],
+ "diffuse": [
+ 1,
+ 1,
+ 1
+ ],
+ "specular": [
+ 0,
+ 0,
+ 0
+ ],
+ "emissive": [
+ 0,
+ 0,
+ 0
+ ],
+ "specularPower": 25.6,
+ "diffuseTexture": {
+ "name": "Warhol.jpg",
+ "level": 1,
+ "hasAlpha": false,
+ "getAlphaFromRGB": true,
+ "coordinatesMode": 0,
+ "isCube": false,
+ "uOffset": 0,
+ "vOffset": 0,
+ "uScale": 1,
+ "vScale": 1,
+ "uRotationCenter": 0.5,
+ "vRotationCenter": 0.5,
+ "wRotationCenter": 0.5,
+ "invertY": true,
+ "uAng": 0,
+ "vAng": 0,
+ "wAng": 0,
+ "wrapU": 1,
+ "wrapV": 1,
+ "coordinatesIndex": 0,
+ "isRenderTarget": false,
+ "renderTargetSize": 0,
+ "mirrorPlane": null,
+ "renderList": null,
+ "animations": [
+ {
+ "name": "uOffset animation",
+ "property": "uOffset",
+ "dataType": 0,
+ "enableBlending": false,
+ "blendingSpeed": 0.01,
+ "loopBehavior": 1,
+ "framePerSecond": 24,
+ "keys": [
+ {
+ "frame": 1,
+ "values": [
+ 0
+ ]
+ },
+ {
+ "frame": 200,
+ "values": [
+ 0
+ ]
+ }
+ ]
+ },
+ {
+ "name": "vOffset animation",
+ "property": "vOffset",
+ "dataType": 0,
+ "enableBlending": false,
+ "blendingSpeed": 0.01,
+ "loopBehavior": 1,
+ "framePerSecond": 24,
+ "keys": [
+ {
+ "frame": 1,
+ "values": [
+ 0
+ ]
+ },
+ {
+ "frame": 200,
+ "values": [
+ 0
+ ]
+ }
+ ]
+ },
+ {
+ "name": "uScale animation",
+ "property": "uScale",
+ "dataType": 0,
+ "enableBlending": false,
+ "blendingSpeed": 0.01,
+ "loopBehavior": 1,
+ "framePerSecond": 24,
+ "keys": [
+ {
+ "frame": 1,
+ "values": [
+ 1
+ ]
+ },
+ {
+ "frame": 200,
+ "values": [
+ 1
+ ]
+ }
+ ]
+ },
+ {
+ "name": "vScale animation",
+ "property": "vScale",
+ "dataType": 0,
+ "enableBlending": false,
+ "blendingSpeed": 0.01,
+ "loopBehavior": 1,
+ "framePerSecond": 24,
+ "keys": [
+ {
+ "frame": 1,
+ "values": [
+ 1
+ ]
+ },
+ {
+ "frame": 200,
+ "values": [
+ 1
+ ]
+ }
+ ]
+ },
+ {
+ "name": "wAng animation",
+ "property": "wAng",
+ "dataType": 0,
+ "enableBlending": false,
+ "blendingSpeed": 0.01,
+ "loopBehavior": 1,
+ "framePerSecond": 24,
+ "keys": [
+ {
+ "frame": 1,
+ "values": [
+ 0
+ ]
+ },
+ {
+ "frame": 200,
+ "values": [
+ 0
+ ]
+ }
+ ]
+ }
+ ],
+ "extensions": null,
+ "samplingMode": 3
+ },
+ "diffuseFresnelParameters": null,
+ "ambientTexture": null,
+ "opacityTexture": null,
+ "opacityFresnelParameters": null,
+ "reflectionTexture": null,
+ "reflectionFresnelParameters": null,
+ "emissiveTexture": null,
+ "lightmapTexture": null,
+ "useLightmapAsShadowmap": false,
+ "emissiveFresnelParameters": null,
+ "specularTexture": null,
+ "bumpTexture": null,
+ "useSpecularOverAlpha": true,
+ "disableLighting": false,
+ "useEmissiveAsIllumination": false,
+ "linkEmissiveWithDiffuse": true,
+ "twoSidedLighting": false,
+ "useGlossinessFromSpecularMapAlpha": false,
+ "name": "lambert1",
+ "id": "1FE006B6-44C2-215C-3800-2AB23093E51D",
+ "backFaceCulling": true,
+ "wireframe": false,
+ "alpha": 1,
+ "alphaMode": 2,
+ "maxSimultaneousLights": 4,
+ "metadata": {}
+ },
+ {
+ "customType": "BABYLON.StandardMaterial",
+ "ambient": [
+ 1,
+ 1,
+ 1
+ ],
+ "diffuse": [
+ 1,
+ 1,
+ 1
+ ],
+ "specular": [
+ 0,
+ 0,
+ 0
+ ],
+ "emissive": [
+ 0,
+ 0,
+ 0
+ ],
+ "specularPower": 25.6,
+ "diffuseTexture": {
+ "name": "TestImage.png",
+ "level": 1,
+ "hasAlpha": false,
+ "getAlphaFromRGB": true,
+ "coordinatesMode": 0,
+ "isCube": false,
+ "uOffset": 0,
+ "vOffset": 0,
+ "uScale": 1,
+ "vScale": 1,
+ "uRotationCenter": 0.5,
+ "vRotationCenter": 0.5,
+ "wRotationCenter": 0.5,
+ "invertY": true,
+ "uAng": 0,
+ "vAng": 0,
+ "wAng": 0,
+ "wrapU": 1,
+ "wrapV": 1,
+ "coordinatesIndex": 0,
+ "isRenderTarget": false,
+ "renderTargetSize": 0,
+ "mirrorPlane": null,
+ "renderList": null,
+ "animations": [
+ {
+ "name": "uOffset animation",
+ "property": "uOffset",
+ "dataType": 0,
+ "enableBlending": false,
+ "blendingSpeed": 0.01,
+ "loopBehavior": 1,
+ "framePerSecond": 24,
+ "keys": [
+ {
+ "frame": 1,
+ "values": [
+ 0
+ ]
+ },
+ {
+ "frame": 200,
+ "values": [
+ 0
+ ]
+ }
+ ]
+ },
+ {
+ "name": "vOffset animation",
+ "property": "vOffset",
+ "dataType": 0,
+ "enableBlending": false,
+ "blendingSpeed": 0.01,
+ "loopBehavior": 1,
+ "framePerSecond": 24,
+ "keys": [
+ {
+ "frame": 1,
+ "values": [
+ 0
+ ]
+ },
+ {
+ "frame": 200,
+ "values": [
+ 0
+ ]
+ }
+ ]
+ },
+ {
+ "name": "uScale animation",
+ "property": "uScale",
+ "dataType": 0,
+ "enableBlending": false,
+ "blendingSpeed": 0.01,
+ "loopBehavior": 1,
+ "framePerSecond": 24,
+ "keys": [
+ {
+ "frame": 1,
+ "values": [
+ 1
+ ]
+ },
+ {
+ "frame": 200,
+ "values": [
+ 1
+ ]
+ }
+ ]
+ },
+ {
+ "name": "vScale animation",
+ "property": "vScale",
+ "dataType": 0,
+ "enableBlending": false,
+ "blendingSpeed": 0.01,
+ "loopBehavior": 1,
+ "framePerSecond": 24,
+ "keys": [
+ {
+ "frame": 1,
+ "values": [
+ 1
+ ]
+ },
+ {
+ "frame": 200,
+ "values": [
+ 1
+ ]
+ }
+ ]
+ },
+ {
+ "name": "wAng animation",
+ "property": "wAng",
+ "dataType": 0,
+ "enableBlending": false,
+ "blendingSpeed": 0.01,
+ "loopBehavior": 1,
+ "framePerSecond": 24,
+ "keys": [
+ {
+ "frame": 1,
+ "values": [
+ 0
+ ]
+ },
+ {
+ "frame": 200,
+ "values": [
+ 0
+ ]
+ }
+ ]
+ }
+ ],
+ "extensions": null,
+ "samplingMode": 3
+ },
+ "diffuseFresnelParameters": null,
+ "ambientTexture": null,
+ "opacityTexture": null,
+ "opacityFresnelParameters": null,
+ "reflectionTexture": null,
+ "reflectionFresnelParameters": null,
+ "emissiveTexture": null,
+ "lightmapTexture": null,
+ "useLightmapAsShadowmap": false,
+ "emissiveFresnelParameters": null,
+ "specularTexture": null,
+ "bumpTexture": null,
+ "useSpecularOverAlpha": true,
+ "disableLighting": false,
+ "useEmissiveAsIllumination": false,
+ "linkEmissiveWithDiffuse": true,
+ "twoSidedLighting": false,
+ "useGlossinessFromSpecularMapAlpha": false,
+ "name": "BackMaterial",
+ "id": "3D8702F9-4307-CA5A-C2B0-8BA3C325FD9B",
+ "backFaceCulling": true,
+ "wireframe": false,
+ "alpha": 1,
+ "alphaMode": 2,
+ "maxSimultaneousLights": 4,
+ "metadata": {}
+ }
+ ],
+ "multiMaterials": [
+ {
+ "name": "lambert1_BackMaterial",
+ "id": "13586E33-45A4-88AF-D0C1-7C963DD5E6AF",
+ "materials": [
+ "1FE006B6-44C2-215C-3800-2AB23093E51D",
+ "3D8702F9-4307-CA5A-C2B0-8BA3C325FD9B"
+ ]
+ }
+ ],
+ "particleSystems": null,
+ "lensFlareSystems": null,
+ "shadowGenerators": [],
+ "skeletons": [],
+ "actions": null,
+ "metadata": null,
+ "workerCollisions": false
+}
\ No newline at end of file
diff --git a/Maya/Samples/babylon/DoubleSidedMaterial/TestImage.png b/Maya/Samples/babylon/DoubleSidedMaterial/TestImage.png
new file mode 100644
index 00000000..a951b93f
Binary files /dev/null and b/Maya/Samples/babylon/DoubleSidedMaterial/TestImage.png differ
diff --git a/Maya/Samples/babylon/DoubleSidedMaterial/Warhol.jpg b/Maya/Samples/babylon/DoubleSidedMaterial/Warhol.jpg
new file mode 100644
index 00000000..a4a365c8
Binary files /dev/null and b/Maya/Samples/babylon/DoubleSidedMaterial/Warhol.jpg differ
diff --git a/Maya/Samples/glTF 2.0/BabylonMaterialAttributes/BackfaceCulling.bin b/Maya/Samples/glTF 2.0/BabylonMaterialAttributes/BackfaceCulling.bin
new file mode 100644
index 00000000..215e1dce
Binary files /dev/null and b/Maya/Samples/glTF 2.0/BabylonMaterialAttributes/BackfaceCulling.bin differ
diff --git a/Maya/Samples/glTF 2.0/BabylonMaterialAttributes/BackfaceCulling.gltf b/Maya/Samples/glTF 2.0/BabylonMaterialAttributes/BackfaceCulling.gltf
new file mode 100644
index 00000000..7331b518
--- /dev/null
+++ b/Maya/Samples/glTF 2.0/BabylonMaterialAttributes/BackfaceCulling.gltf
@@ -0,0 +1 @@
+{"asset":{"version":"2.0","generator":"babylon.js glTF exporter for Maya 2018 v1.4.0"},"scene":0,"scenes":[{"nodes":[0,1,2,3,4,5,6,7,8,9,10,14],"extensions":{}}],"nodes":[{"mesh":0,"translation":[0.0,0.0,0.0],"rotation":[0.0,0.0,0.0,1.0],"scale":[1.0,1.0,1.0],"name":"pSphere1"},{"mesh":1,"translation":[3.0,0.0,0.0],"rotation":[0.0,0.0,0.0,1.0],"scale":[1.0,1.0,1.0],"name":"pSphere2"},{"mesh":2,"translation":[6.0,0.0,0.0],"rotation":[0.0,0.0,0.0,1.0],"scale":[1.0,1.0,1.0],"name":"pSphere3"},{"mesh":3,"translation":[9.0,0.0,0.0],"rotation":[0.0,0.0,0.0,1.0],"scale":[1.0,1.0,1.0],"name":"pSphere4"},{"mesh":4,"translation":[0.0,0.0,-5.0],"rotation":[0.0,0.0,0.0,1.0],"scale":[1.0,1.0,1.0],"name":"pSphere6"},{"mesh":5,"translation":[6.0,0.0,-5.0],"rotation":[0.0,0.0,0.0,1.0],"scale":[1.0,1.0,1.0],"name":"pSphere7"},{"mesh":6,"translation":[3.0,0.0,-5.0],"rotation":[0.0,0.0,0.0,1.0],"scale":[1.0,1.0,1.0],"name":"pSphere8"},{"mesh":7,"translation":[6.0,0.0,-5.0],"rotation":[0.0,0.0,0.0,1.0],"scale":[1.0,1.0,1.0],"name":"pSphere9"},{"mesh":8,"translation":[0.0,0.0,-5.0],"rotation":[0.0,0.0,0.0,1.0],"scale":[1.0,1.0,1.0],"name":"pSphere10"},{"mesh":9,"translation":[3.0,0.0,-5.0],"rotation":[0.0,0.0,0.0,1.0],"scale":[1.0,1.0,1.0],"name":"pSphere11"},{"children":[11,12,13],"translation":[0.0,0.0,0.0],"rotation":[0.0,0.0,0.0,1.0],"scale":[1.0,1.0,1.0],"name":"group"},{"mesh":10,"translation":[6.0,0.0,-5.0],"rotation":[0.0,0.0,0.0,1.0],"scale":[1.0,1.0,1.0],"name":"pasted__pSphere9"},{"mesh":11,"translation":[0.0,0.0,-5.0],"rotation":[0.0,0.0,0.0,1.0],"scale":[1.0,1.0,1.0],"name":"pasted__pSphere10"},{"mesh":12,"translation":[3.0,0.0,-5.0],"rotation":[0.0,0.0,0.0,1.0],"scale":[1.0,1.0,1.0],"name":"pasted__pSphere11"},{"translation":[0.0,0.0,0.0],"rotation":[0.0,0.0,0.0,1.0],"scale":[1.0,1.0,1.0],"name":"Default light"}],"meshes":[{"primitives":[{"attributes":{"POSITION":1,"TANGENT":2,"NORMAL":3,"TEXCOORD_0":4},"indices":0,"mode":4,"material":0}],"name":"pSphere1"},{"primitives":[{"attributes":{"POSITION":6,"TANGENT":7,"NORMAL":8,"TEXCOORD_0":9},"indices":5,"mode":4,"material":1}],"name":"pSphere2"},{"primitives":[{"attributes":{"POSITION":11,"TANGENT":12,"NORMAL":13,"TEXCOORD_0":14},"indices":10,"mode":4,"material":2}],"name":"pSphere3"},{"primitives":[{"attributes":{"POSITION":16,"TANGENT":17,"NORMAL":18,"TEXCOORD_0":19},"indices":15,"mode":4,"material":3}],"name":"pSphere4"},{"primitives":[{"attributes":{"POSITION":21,"TANGENT":22,"NORMAL":23,"TEXCOORD_0":24},"indices":20,"mode":4,"material":4}],"name":"pSphere6"},{"primitives":[{"attributes":{"POSITION":26,"TANGENT":27,"NORMAL":28,"TEXCOORD_0":29},"indices":25,"mode":4,"material":2}],"name":"pSphere7"},{"primitives":[{"attributes":{"POSITION":31,"TANGENT":32,"NORMAL":33,"TEXCOORD_0":34},"indices":30,"mode":4,"material":1}],"name":"pSphere8"},{"primitives":[{"attributes":{"POSITION":36,"TANGENT":37,"NORMAL":38,"TEXCOORD_0":39},"indices":35,"mode":4,"material":5}],"name":"pSphere9"},{"primitives":[{"attributes":{"POSITION":41,"TANGENT":42,"NORMAL":43,"TEXCOORD_0":44},"indices":40,"mode":4,"material":0}],"name":"pSphere10"},{"primitives":[{"attributes":{"POSITION":46,"TANGENT":47,"NORMAL":48,"TEXCOORD_0":49},"indices":45,"mode":4,"material":6}],"name":"pSphere11"},{"primitives":[{"attributes":{"POSITION":51,"TANGENT":52,"NORMAL":53,"TEXCOORD_0":54},"indices":50,"mode":4,"material":5}],"name":"pasted__pSphere9"},{"primitives":[{"attributes":{"POSITION":56,"TANGENT":57,"NORMAL":58,"TEXCOORD_0":59},"indices":55,"mode":4,"material":4}],"name":"pasted__pSphere10"},{"primitives":[{"attributes":{"POSITION":61,"TANGENT":62,"NORMAL":63,"TEXCOORD_0":64},"indices":60,"mode":4,"material":6}],"name":"pasted__pSphere11"}],"accessors":[{"bufferView":0,"componentType":5123,"count":1140,"type":"SCALAR","name":"accessorIndices"},{"bufferView":1,"componentType":5126,"count":229,"max":[0.0,1.0,1.00000012],"min":[-1.00000024,-1.0,-1.00000048],"type":"VEC3","name":"accessorPositions"},{"bufferView":2,"componentType":5126,"count":229,"type":"VEC4","name":"accessorTangents"},{"bufferView":1,"byteOffset":2748,"componentType":5126,"count":229,"type":"VEC3","name":"accessorNormals"},{"bufferView":3,"componentType":5126,"count":229,"type":"VEC2","name":"accessorUVs"},{"bufferView":0,"byteOffset":2280,"componentType":5123,"count":1140,"type":"SCALAR","name":"accessorIndices"},{"bufferView":1,"byteOffset":5496,"componentType":5126,"count":229,"max":[0.0,1.0,1.00000012],"min":[-1.00000024,-1.0,-1.00000048],"type":"VEC3","name":"accessorPositions"},{"bufferView":2,"byteOffset":3664,"componentType":5126,"count":229,"type":"VEC4","name":"accessorTangents"},{"bufferView":1,"byteOffset":8244,"componentType":5126,"count":229,"type":"VEC3","name":"accessorNormals"},{"bufferView":3,"byteOffset":1832,"componentType":5126,"count":229,"type":"VEC2","name":"accessorUVs"},{"bufferView":0,"byteOffset":4560,"componentType":5123,"count":1140,"type":"SCALAR","name":"accessorIndices"},{"bufferView":1,"byteOffset":10992,"componentType":5126,"count":229,"max":[0.0,1.0,1.00000012],"min":[-1.00000024,-1.0,-1.00000048],"type":"VEC3","name":"accessorPositions"},{"bufferView":2,"byteOffset":7328,"componentType":5126,"count":229,"type":"VEC4","name":"accessorTangents"},{"bufferView":1,"byteOffset":13740,"componentType":5126,"count":229,"type":"VEC3","name":"accessorNormals"},{"bufferView":3,"byteOffset":3664,"componentType":5126,"count":229,"type":"VEC2","name":"accessorUVs"},{"bufferView":0,"byteOffset":6840,"componentType":5123,"count":1140,"type":"SCALAR","name":"accessorIndices"},{"bufferView":1,"byteOffset":16488,"componentType":5126,"count":229,"max":[0.0,1.0,1.00000012],"min":[-1.00000024,-1.0,-1.00000048],"type":"VEC3","name":"accessorPositions"},{"bufferView":2,"byteOffset":10992,"componentType":5126,"count":229,"type":"VEC4","name":"accessorTangents"},{"bufferView":1,"byteOffset":19236,"componentType":5126,"count":229,"type":"VEC3","name":"accessorNormals"},{"bufferView":3,"byteOffset":5496,"componentType":5126,"count":229,"type":"VEC2","name":"accessorUVs"},{"bufferView":0,"byteOffset":9120,"componentType":5123,"count":1140,"type":"SCALAR","name":"accessorIndices"},{"bufferView":1,"byteOffset":21984,"componentType":5126,"count":229,"max":[0.0,1.0,1.00000012],"min":[-1.00000024,-1.0,-1.00000048],"type":"VEC3","name":"accessorPositions"},{"bufferView":2,"byteOffset":14656,"componentType":5126,"count":229,"type":"VEC4","name":"accessorTangents"},{"bufferView":1,"byteOffset":24732,"componentType":5126,"count":229,"type":"VEC3","name":"accessorNormals"},{"bufferView":3,"byteOffset":7328,"componentType":5126,"count":229,"type":"VEC2","name":"accessorUVs"},{"bufferView":0,"byteOffset":11400,"componentType":5123,"count":1140,"type":"SCALAR","name":"accessorIndices"},{"bufferView":1,"byteOffset":27480,"componentType":5126,"count":229,"max":[0.0,1.0,1.00000012],"min":[-1.00000024,-1.0,-1.00000048],"type":"VEC3","name":"accessorPositions"},{"bufferView":2,"byteOffset":18320,"componentType":5126,"count":229,"type":"VEC4","name":"accessorTangents"},{"bufferView":1,"byteOffset":30228,"componentType":5126,"count":229,"type":"VEC3","name":"accessorNormals"},{"bufferView":3,"byteOffset":9160,"componentType":5126,"count":229,"type":"VEC2","name":"accessorUVs"},{"bufferView":0,"byteOffset":13680,"componentType":5123,"count":1140,"type":"SCALAR","name":"accessorIndices"},{"bufferView":1,"byteOffset":32976,"componentType":5126,"count":229,"max":[0.0,1.0,1.00000012],"min":[-1.00000024,-1.0,-1.00000048],"type":"VEC3","name":"accessorPositions"},{"bufferView":2,"byteOffset":21984,"componentType":5126,"count":229,"type":"VEC4","name":"accessorTangents"},{"bufferView":1,"byteOffset":35724,"componentType":5126,"count":229,"type":"VEC3","name":"accessorNormals"},{"bufferView":3,"byteOffset":10992,"componentType":5126,"count":229,"type":"VEC2","name":"accessorUVs"},{"bufferView":0,"byteOffset":15960,"componentType":5123,"count":1140,"type":"SCALAR","name":"accessorIndices"},{"bufferView":1,"byteOffset":38472,"componentType":5126,"count":229,"max":[0.0,1.0,1.00000012],"min":[-1.00000024,-1.0,-1.00000048],"type":"VEC3","name":"accessorPositions"},{"bufferView":2,"byteOffset":25648,"componentType":5126,"count":229,"type":"VEC4","name":"accessorTangents"},{"bufferView":1,"byteOffset":41220,"componentType":5126,"count":229,"type":"VEC3","name":"accessorNormals"},{"bufferView":3,"byteOffset":12824,"componentType":5126,"count":229,"type":"VEC2","name":"accessorUVs"},{"bufferView":0,"byteOffset":18240,"componentType":5123,"count":1140,"type":"SCALAR","name":"accessorIndices"},{"bufferView":1,"byteOffset":43968,"componentType":5126,"count":229,"max":[0.0,1.0,1.00000012],"min":[-1.00000024,-1.0,-1.00000048],"type":"VEC3","name":"accessorPositions"},{"bufferView":2,"byteOffset":29312,"componentType":5126,"count":229,"type":"VEC4","name":"accessorTangents"},{"bufferView":1,"byteOffset":46716,"componentType":5126,"count":229,"type":"VEC3","name":"accessorNormals"},{"bufferView":3,"byteOffset":14656,"componentType":5126,"count":229,"type":"VEC2","name":"accessorUVs"},{"bufferView":0,"byteOffset":20520,"componentType":5123,"count":1140,"type":"SCALAR","name":"accessorIndices"},{"bufferView":1,"byteOffset":49464,"componentType":5126,"count":229,"max":[0.0,1.0,1.00000012],"min":[-1.00000024,-1.0,-1.00000048],"type":"VEC3","name":"accessorPositions"},{"bufferView":2,"byteOffset":32976,"componentType":5126,"count":229,"type":"VEC4","name":"accessorTangents"},{"bufferView":1,"byteOffset":52212,"componentType":5126,"count":229,"type":"VEC3","name":"accessorNormals"},{"bufferView":3,"byteOffset":16488,"componentType":5126,"count":229,"type":"VEC2","name":"accessorUVs"},{"bufferView":0,"byteOffset":22800,"componentType":5123,"count":1140,"type":"SCALAR","name":"accessorIndices"},{"bufferView":1,"byteOffset":54960,"componentType":5126,"count":229,"max":[0.0,1.0,1.00000012],"min":[-1.00000024,-1.0,-1.00000048],"type":"VEC3","name":"accessorPositions"},{"bufferView":2,"byteOffset":36640,"componentType":5126,"count":229,"type":"VEC4","name":"accessorTangents"},{"bufferView":1,"byteOffset":57708,"componentType":5126,"count":229,"type":"VEC3","name":"accessorNormals"},{"bufferView":3,"byteOffset":18320,"componentType":5126,"count":229,"type":"VEC2","name":"accessorUVs"},{"bufferView":0,"byteOffset":25080,"componentType":5123,"count":1140,"type":"SCALAR","name":"accessorIndices"},{"bufferView":1,"byteOffset":60456,"componentType":5126,"count":229,"max":[0.0,1.0,1.00000012],"min":[-1.00000024,-1.0,-1.00000048],"type":"VEC3","name":"accessorPositions"},{"bufferView":2,"byteOffset":40304,"componentType":5126,"count":229,"type":"VEC4","name":"accessorTangents"},{"bufferView":1,"byteOffset":63204,"componentType":5126,"count":229,"type":"VEC3","name":"accessorNormals"},{"bufferView":3,"byteOffset":20152,"componentType":5126,"count":229,"type":"VEC2","name":"accessorUVs"},{"bufferView":0,"byteOffset":27360,"componentType":5123,"count":1140,"type":"SCALAR","name":"accessorIndices"},{"bufferView":1,"byteOffset":65952,"componentType":5126,"count":229,"max":[0.0,1.0,1.00000012],"min":[-1.00000024,-1.0,-1.00000048],"type":"VEC3","name":"accessorPositions"},{"bufferView":2,"byteOffset":43968,"componentType":5126,"count":229,"type":"VEC4","name":"accessorTangents"},{"bufferView":1,"byteOffset":68700,"componentType":5126,"count":229,"type":"VEC3","name":"accessorNormals"},{"bufferView":3,"byteOffset":21984,"componentType":5126,"count":229,"type":"VEC2","name":"accessorUVs"}],"bufferViews":[{"buffer":0,"byteLength":29640,"name":"bufferViewScalar"},{"buffer":0,"byteOffset":29640,"byteLength":71448,"byteStride":12,"name":"bufferViewFloatVec3"},{"buffer":0,"byteOffset":101088,"byteLength":47632,"byteStride":16,"name":"bufferViewFloatVec4"},{"buffer":0,"byteOffset":148720,"byteLength":23816,"byteStride":8,"name":"bufferViewFloatVec2"}],"buffers":[{"uri":"BackfaceCulling.bin","byteLength":172536}],"materials":[{"pbrMetallicRoughness":{"baseColorFactor":[0.5,0.0,0.0,1.0],"metallicFactor":0.0,"roughnessFactor":0.2581639},"emissiveFactor":[0.0,0.0,0.0],"alphaMode":"OPAQUE","name":"StandardBackFaceMaterial"},{"pbrMetallicRoughness":{"baseColorFactor":[0.0,1.0,0.0,1.0],"metallicFactor":0.0,"roughnessFactor":0.33},"emissiveFactor":[0.0,0.0,0.0],"alphaMode":"OPAQUE","name":"PhysicalBackFaceMaterial"},{"pbrMetallicRoughness":{"baseColorFactor":[0.0,0.0,0.8,1.0],"metallicFactor":0.0,"roughnessFactor":0.1},"emissiveFactor":[0.0,0.0,0.0],"alphaMode":"OPAQUE","name":"StandardBackfaceArnold"},{"pbrMetallicRoughness":{"baseColorFactor":[0.25,0.25,0.25,1.0],"metallicFactor":0.0,"roughnessFactor":0.450053632},"emissiveFactor":[0.0,0.0,0.0],"alphaMode":"OPAQUE","name":"lambert1"},{"pbrMetallicRoughness":{"baseColorFactor":[0.5,0.0,0.0,1.0],"metallicFactor":0.0,"roughnessFactor":0.2581639},"emissiveFactor":[0.0,0.0,0.0],"alphaMode":"OPAQUE","doubleSided":true,"name":"StandardMaterial"},{"pbrMetallicRoughness":{"baseColorFactor":[0.0,0.0,0.8,1.0],"metallicFactor":0.0,"roughnessFactor":0.1},"emissiveFactor":[0.0,0.0,0.0],"alphaMode":"OPAQUE","doubleSided":true,"name":"StandardArnold"},{"pbrMetallicRoughness":{"baseColorFactor":[0.0,1.0,0.0,1.0],"metallicFactor":0.0,"roughnessFactor":0.33},"emissiveFactor":[0.0,0.0,0.0],"alphaMode":"OPAQUE","doubleSided":true,"name":"PhysicalMaterial"}]}
\ No newline at end of file
diff --git a/Maya/Samples/glTF 2.0/BabylonMaterialAttributes/Default.bin b/Maya/Samples/glTF 2.0/BabylonMaterialAttributes/Default.bin
new file mode 100644
index 00000000..01068a50
Binary files /dev/null and b/Maya/Samples/glTF 2.0/BabylonMaterialAttributes/Default.bin differ
diff --git a/Maya/Samples/glTF 2.0/BabylonMaterialAttributes/Default.gltf b/Maya/Samples/glTF 2.0/BabylonMaterialAttributes/Default.gltf
new file mode 100644
index 00000000..df4cb183
--- /dev/null
+++ b/Maya/Samples/glTF 2.0/BabylonMaterialAttributes/Default.gltf
@@ -0,0 +1 @@
+{"asset":{"version":"2.0","generator":"babylon.js glTF exporter for Maya 2018 v1.4.0"},"scene":0,"scenes":[{"nodes":[0,1,2,3,4],"extensions":{}}],"nodes":[{"mesh":0,"translation":[0.0,0.0,0.0],"rotation":[0.0,0.0,0.0,1.0],"scale":[1.0,1.0,1.0],"name":"pSphere1"},{"mesh":1,"translation":[3.0,0.0,0.0],"rotation":[0.0,0.0,0.0,1.0],"scale":[1.0,1.0,1.0],"name":"pSphere2"},{"mesh":2,"translation":[6.0,0.0,0.0],"rotation":[0.0,0.0,0.0,1.0],"scale":[1.0,1.0,1.0],"name":"pSphere3"},{"mesh":3,"translation":[9.0,0.0,0.0],"rotation":[0.0,0.0,0.0,1.0],"scale":[1.0,1.0,1.0],"name":"pSphere4"},{"translation":[0.0,0.0,0.0],"rotation":[0.0,0.0,0.0,1.0],"scale":[1.0,1.0,1.0],"name":"Default light"}],"meshes":[{"primitives":[{"attributes":{"POSITION":1,"TANGENT":2,"NORMAL":3,"TEXCOORD_0":4},"indices":0,"mode":4,"material":0}],"name":"pSphere1"},{"primitives":[{"attributes":{"POSITION":6,"TANGENT":7,"NORMAL":8,"TEXCOORD_0":9},"indices":5,"mode":4,"material":1}],"name":"pSphere2"},{"primitives":[{"attributes":{"POSITION":11,"TANGENT":12,"NORMAL":13,"TEXCOORD_0":14},"indices":10,"mode":4,"material":2}],"name":"pSphere3"},{"primitives":[{"attributes":{"POSITION":16,"TANGENT":17,"NORMAL":18,"TEXCOORD_0":19},"indices":15,"mode":4,"material":3}],"name":"pSphere4"}],"accessors":[{"bufferView":0,"componentType":5123,"count":2280,"type":"SCALAR","name":"accessorIndices"},{"bufferView":1,"componentType":5126,"count":439,"max":[1.0,1.0,1.00000012],"min":[-1.00000024,-1.0,-1.00000048],"type":"VEC3","name":"accessorPositions"},{"bufferView":2,"componentType":5126,"count":439,"type":"VEC4","name":"accessorTangents"},{"bufferView":1,"byteOffset":5268,"componentType":5126,"count":439,"type":"VEC3","name":"accessorNormals"},{"bufferView":3,"componentType":5126,"count":439,"type":"VEC2","name":"accessorUVs"},{"bufferView":0,"byteOffset":4560,"componentType":5123,"count":2280,"type":"SCALAR","name":"accessorIndices"},{"bufferView":1,"byteOffset":10536,"componentType":5126,"count":439,"max":[1.0,1.0,1.00000012],"min":[-1.00000024,-1.0,-1.00000048],"type":"VEC3","name":"accessorPositions"},{"bufferView":2,"byteOffset":7024,"componentType":5126,"count":439,"type":"VEC4","name":"accessorTangents"},{"bufferView":1,"byteOffset":15804,"componentType":5126,"count":439,"type":"VEC3","name":"accessorNormals"},{"bufferView":3,"byteOffset":3512,"componentType":5126,"count":439,"type":"VEC2","name":"accessorUVs"},{"bufferView":0,"byteOffset":9120,"componentType":5123,"count":2280,"type":"SCALAR","name":"accessorIndices"},{"bufferView":1,"byteOffset":21072,"componentType":5126,"count":439,"max":[1.0,1.0,1.00000012],"min":[-1.00000024,-1.0,-1.00000048],"type":"VEC3","name":"accessorPositions"},{"bufferView":2,"byteOffset":14048,"componentType":5126,"count":439,"type":"VEC4","name":"accessorTangents"},{"bufferView":1,"byteOffset":26340,"componentType":5126,"count":439,"type":"VEC3","name":"accessorNormals"},{"bufferView":3,"byteOffset":7024,"componentType":5126,"count":439,"type":"VEC2","name":"accessorUVs"},{"bufferView":0,"byteOffset":13680,"componentType":5123,"count":2280,"type":"SCALAR","name":"accessorIndices"},{"bufferView":1,"byteOffset":31608,"componentType":5126,"count":439,"max":[1.0,1.0,1.00000012],"min":[-1.00000024,-1.0,-1.00000048],"type":"VEC3","name":"accessorPositions"},{"bufferView":2,"byteOffset":21072,"componentType":5126,"count":439,"type":"VEC4","name":"accessorTangents"},{"bufferView":1,"byteOffset":36876,"componentType":5126,"count":439,"type":"VEC3","name":"accessorNormals"},{"bufferView":3,"byteOffset":10536,"componentType":5126,"count":439,"type":"VEC2","name":"accessorUVs"}],"bufferViews":[{"buffer":0,"byteLength":18240,"name":"bufferViewScalar"},{"buffer":0,"byteOffset":18240,"byteLength":42144,"byteStride":12,"name":"bufferViewFloatVec3"},{"buffer":0,"byteOffset":60384,"byteLength":28096,"byteStride":16,"name":"bufferViewFloatVec4"},{"buffer":0,"byteOffset":88480,"byteLength":14048,"byteStride":8,"name":"bufferViewFloatVec2"}],"buffers":[{"uri":"Default.bin","byteLength":102528}],"materials":[{"pbrMetallicRoughness":{"baseColorFactor":[0.5,0.0,0.0,1.0],"metallicFactor":0.0,"roughnessFactor":0.2581639},"emissiveFactor":[0.0,0.0,0.0],"alphaMode":"OPAQUE","name":"phong1"},{"pbrMetallicRoughness":{"baseColorFactor":[0.0,1.0,0.0,1.0],"metallicFactor":0.0,"roughnessFactor":0.33},"emissiveFactor":[0.0,0.0,0.0],"alphaMode":"OPAQUE","name":"StingrayPBS1"},{"pbrMetallicRoughness":{"baseColorFactor":[0.0,0.0,0.8,1.0],"metallicFactor":0.0,"roughnessFactor":0.1},"emissiveFactor":[0.0,0.0,0.0],"alphaMode":"OPAQUE","name":"aiStandardSurface1"},{"pbrMetallicRoughness":{"baseColorFactor":[0.25,0.25,0.25,1.0],"metallicFactor":0.0,"roughnessFactor":0.450053632},"emissiveFactor":[0.0,0.0,0.0],"alphaMode":"OPAQUE","name":"lambert1"}]}
\ No newline at end of file
diff --git a/Maya/Samples/glTF 2.0/BabylonMaterialAttributes/MaxSimultaneousLights.bin b/Maya/Samples/glTF 2.0/BabylonMaterialAttributes/MaxSimultaneousLights.bin
new file mode 100644
index 00000000..30d6bc2b
Binary files /dev/null and b/Maya/Samples/glTF 2.0/BabylonMaterialAttributes/MaxSimultaneousLights.bin differ
diff --git a/Maya/Samples/glTF 2.0/BabylonMaterialAttributes/MaxSimultaneousLights.gltf b/Maya/Samples/glTF 2.0/BabylonMaterialAttributes/MaxSimultaneousLights.gltf
new file mode 100644
index 00000000..272d8193
--- /dev/null
+++ b/Maya/Samples/glTF 2.0/BabylonMaterialAttributes/MaxSimultaneousLights.gltf
@@ -0,0 +1 @@
+{"asset":{"version":"2.0","generator":"babylon.js glTF exporter for Maya 2018 v1.4.0"},"scene":0,"scenes":[{"nodes":[0,1,2,3,4,5,6,7,9,12],"extensions":{}}],"nodes":[{"mesh":0,"translation":[0.0,0.0,0.0],"rotation":[0.0,0.0,0.0,1.0],"scale":[1.0,1.0,1.0],"name":"pSphere1"},{"mesh":1,"translation":[3.0,0.0,0.0],"rotation":[0.0,0.0,0.0,1.0],"scale":[1.0,1.0,1.0],"name":"pSphere2"},{"mesh":2,"translation":[6.0,0.0,0.0],"rotation":[0.0,0.0,0.0,1.0],"scale":[1.0,1.0,1.0],"name":"pSphere3"},{"mesh":3,"translation":[9.0,0.0,0.0],"rotation":[0.0,0.0,0.0,1.0],"scale":[1.0,1.0,1.0],"name":"pSphere4"},{"mesh":4,"translation":[6.0,0.0,-5.0],"rotation":[0.0,0.0,0.0,1.0],"scale":[1.0,1.0,1.0],"name":"pSphere6"},{"mesh":5,"translation":[0.0,0.0,-5.0],"rotation":[0.0,0.0,0.0,1.0],"scale":[1.0,1.0,1.0],"name":"pSphere8"},{"mesh":6,"translation":[3.0,0.0,-5.0],"rotation":[0.0,0.0,0.0,1.0],"scale":[1.0,1.0,1.0],"name":"pSphere9"},{"children":[8],"translation":[3.97393966,5.819078,0.0],"rotation":[0.0,0.0,-0.9848077,0.173648179],"scale":[1.0,1.0,1.0],"name":"group"},{"translation":[0.0,3.0,0.0],"rotation":[0.0,0.0,0.0,1.0],"scale":[1.0,1.0,1.0],"name":"pasted__directionalLight1"},{"children":[10,11],"translation":[0.0,0.0,0.0],"rotation":[0.0,0.0,0.0,1.0],"scale":[1.0,1.0,1.0],"name":"camera1_group"},{"translation":[4.768676,0.0,-1.375872],"rotation":[0.0,0.0,0.0,1.0],"scale":[1.0,1.0,1.0],"name":"camera1_aim"},{"camera":0,"translation":[7.51448154,4.345782,8.478183],"rotation":[-0.19767645,0.132735774,0.0270262,0.9708629],"scale":[1.0,1.0,1.0],"name":"camera1"},{"translation":[0.0,3.0,0.0],"rotation":[0.0,0.0,0.0,1.0],"scale":[1.0,1.0,1.0],"name":"directionalLight1"}],"cameras":[{"perspective":{"yfov":0.6605947,"zfar":10000.0,"znear":0.1},"type":"perspective","name":"camera1"}],"meshes":[{"primitives":[{"attributes":{"POSITION":1,"TANGENT":2,"NORMAL":3,"TEXCOORD_0":4},"indices":0,"mode":4,"material":0}],"name":"pSphere1"},{"primitives":[{"attributes":{"POSITION":6,"TANGENT":7,"NORMAL":8,"TEXCOORD_0":9},"indices":5,"mode":4,"material":1}],"name":"pSphere2"},{"primitives":[{"attributes":{"POSITION":11,"TANGENT":12,"NORMAL":13,"TEXCOORD_0":14},"indices":10,"mode":4,"material":2}],"name":"pSphere3"},{"primitives":[{"attributes":{"POSITION":16,"TANGENT":17,"NORMAL":18,"TEXCOORD_0":19},"indices":15,"mode":4,"material":3}],"name":"pSphere4"},{"primitives":[{"attributes":{"POSITION":21,"TANGENT":22,"NORMAL":23,"TEXCOORD_0":24},"indices":20,"mode":4,"material":4}],"name":"pSphere6"},{"primitives":[{"attributes":{"POSITION":26,"TANGENT":27,"NORMAL":28,"TEXCOORD_0":29},"indices":25,"mode":4,"material":5}],"name":"pSphere8"},{"primitives":[{"attributes":{"POSITION":31,"TANGENT":32,"NORMAL":33,"TEXCOORD_0":34},"indices":30,"mode":4,"material":6}],"name":"pSphere9"}],"accessors":[{"bufferView":0,"componentType":5123,"count":2280,"type":"SCALAR","name":"accessorIndices"},{"bufferView":1,"componentType":5126,"count":439,"max":[1.0,1.0,1.00000012],"min":[-1.00000024,-1.0,-1.00000048],"type":"VEC3","name":"accessorPositions"},{"bufferView":2,"componentType":5126,"count":439,"type":"VEC4","name":"accessorTangents"},{"bufferView":1,"byteOffset":5268,"componentType":5126,"count":439,"type":"VEC3","name":"accessorNormals"},{"bufferView":3,"componentType":5126,"count":439,"type":"VEC2","name":"accessorUVs"},{"bufferView":0,"byteOffset":4560,"componentType":5123,"count":2280,"type":"SCALAR","name":"accessorIndices"},{"bufferView":1,"byteOffset":10536,"componentType":5126,"count":439,"max":[1.0,1.0,1.00000012],"min":[-1.00000024,-1.0,-1.00000048],"type":"VEC3","name":"accessorPositions"},{"bufferView":2,"byteOffset":7024,"componentType":5126,"count":439,"type":"VEC4","name":"accessorTangents"},{"bufferView":1,"byteOffset":15804,"componentType":5126,"count":439,"type":"VEC3","name":"accessorNormals"},{"bufferView":3,"byteOffset":3512,"componentType":5126,"count":439,"type":"VEC2","name":"accessorUVs"},{"bufferView":0,"byteOffset":9120,"componentType":5123,"count":2280,"type":"SCALAR","name":"accessorIndices"},{"bufferView":1,"byteOffset":21072,"componentType":5126,"count":439,"max":[1.0,1.0,1.00000012],"min":[-1.00000024,-1.0,-1.00000048],"type":"VEC3","name":"accessorPositions"},{"bufferView":2,"byteOffset":14048,"componentType":5126,"count":439,"type":"VEC4","name":"accessorTangents"},{"bufferView":1,"byteOffset":26340,"componentType":5126,"count":439,"type":"VEC3","name":"accessorNormals"},{"bufferView":3,"byteOffset":7024,"componentType":5126,"count":439,"type":"VEC2","name":"accessorUVs"},{"bufferView":0,"byteOffset":13680,"componentType":5123,"count":2280,"type":"SCALAR","name":"accessorIndices"},{"bufferView":1,"byteOffset":31608,"componentType":5126,"count":439,"max":[1.0,1.0,1.00000012],"min":[-1.00000024,-1.0,-1.00000048],"type":"VEC3","name":"accessorPositions"},{"bufferView":2,"byteOffset":21072,"componentType":5126,"count":439,"type":"VEC4","name":"accessorTangents"},{"bufferView":1,"byteOffset":36876,"componentType":5126,"count":439,"type":"VEC3","name":"accessorNormals"},{"bufferView":3,"byteOffset":10536,"componentType":5126,"count":439,"type":"VEC2","name":"accessorUVs"},{"bufferView":0,"byteOffset":18240,"componentType":5123,"count":2280,"type":"SCALAR","name":"accessorIndices"},{"bufferView":1,"byteOffset":42144,"componentType":5126,"count":439,"max":[1.0,1.0,1.00000012],"min":[-1.00000024,-1.0,-1.00000048],"type":"VEC3","name":"accessorPositions"},{"bufferView":2,"byteOffset":28096,"componentType":5126,"count":439,"type":"VEC4","name":"accessorTangents"},{"bufferView":1,"byteOffset":47412,"componentType":5126,"count":439,"type":"VEC3","name":"accessorNormals"},{"bufferView":3,"byteOffset":14048,"componentType":5126,"count":439,"type":"VEC2","name":"accessorUVs"},{"bufferView":0,"byteOffset":22800,"componentType":5123,"count":2280,"type":"SCALAR","name":"accessorIndices"},{"bufferView":1,"byteOffset":52680,"componentType":5126,"count":439,"max":[1.0,1.0,1.00000012],"min":[-1.00000024,-1.0,-1.00000048],"type":"VEC3","name":"accessorPositions"},{"bufferView":2,"byteOffset":35120,"componentType":5126,"count":439,"type":"VEC4","name":"accessorTangents"},{"bufferView":1,"byteOffset":57948,"componentType":5126,"count":439,"type":"VEC3","name":"accessorNormals"},{"bufferView":3,"byteOffset":17560,"componentType":5126,"count":439,"type":"VEC2","name":"accessorUVs"},{"bufferView":0,"byteOffset":27360,"componentType":5123,"count":2280,"type":"SCALAR","name":"accessorIndices"},{"bufferView":1,"byteOffset":63216,"componentType":5126,"count":439,"max":[1.0,1.0,1.00000012],"min":[-1.00000024,-1.0,-1.00000048],"type":"VEC3","name":"accessorPositions"},{"bufferView":2,"byteOffset":42144,"componentType":5126,"count":439,"type":"VEC4","name":"accessorTangents"},{"bufferView":1,"byteOffset":68484,"componentType":5126,"count":439,"type":"VEC3","name":"accessorNormals"},{"bufferView":3,"byteOffset":21072,"componentType":5126,"count":439,"type":"VEC2","name":"accessorUVs"},{"bufferView":4,"componentType":5126,"count":2,"max":[8.291667],"min":[0.0],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":5,"componentType":5126,"count":2,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":4,"byteOffset":8,"componentType":5126,"count":2,"max":[8.291667],"min":[0.0],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":6,"componentType":5126,"count":2,"type":"VEC3","name":"accessorAnimationPositions"}],"bufferViews":[{"buffer":0,"byteLength":31920,"name":"bufferViewScalar"},{"buffer":0,"byteOffset":31920,"byteLength":73752,"byteStride":12,"name":"bufferViewFloatVec3"},{"buffer":0,"byteOffset":105672,"byteLength":49168,"byteStride":16,"name":"bufferViewFloatVec4"},{"buffer":0,"byteOffset":154840,"byteLength":24584,"byteStride":8,"name":"bufferViewFloatVec2"},{"buffer":0,"byteOffset":179424,"byteLength":16,"name":"bufferViewAnimationFloatScalar"},{"buffer":0,"byteOffset":179440,"byteLength":32,"name":"bufferViewAnimationFloatVec4"},{"buffer":0,"byteOffset":179472,"byteLength":24,"name":"bufferViewAnimationFloatVec3"}],"buffers":[{"uri":"MaxSimultaneousLights.bin","byteLength":179496}],"materials":[{"pbrMetallicRoughness":{"baseColorFactor":[0.5,0.0,0.0,1.0],"metallicFactor":0.0,"roughnessFactor":0.2581639},"emissiveFactor":[0.0,0.0,0.0],"alphaMode":"OPAQUE","name":"PhongMaterial1"},{"pbrMetallicRoughness":{"baseColorFactor":[0.0,1.0,0.0,1.0],"metallicFactor":0.0,"roughnessFactor":0.33},"emissiveFactor":[0.0,0.0,0.0],"alphaMode":"OPAQUE","name":"PhysicalMaterial1"},{"pbrMetallicRoughness":{"baseColorFactor":[0.0,0.0,0.8,1.0],"metallicFactor":0.0,"roughnessFactor":0.1},"emissiveFactor":[0.0,0.0,0.0],"alphaMode":"OPAQUE","name":"StandardArnoldMaterial1"},{"pbrMetallicRoughness":{"baseColorFactor":[0.25,0.25,0.25,1.0],"metallicFactor":0.0,"roughnessFactor":0.450053632},"emissiveFactor":[0.0,0.0,0.0],"alphaMode":"OPAQUE","name":"lambert1"},{"pbrMetallicRoughness":{"baseColorFactor":[0.0,0.0,0.8,1.0],"metallicFactor":0.0,"roughnessFactor":0.1},"emissiveFactor":[0.0,0.0,0.0],"alphaMode":"OPAQUE","name":"StandardArnoldMaterial2"},{"pbrMetallicRoughness":{"baseColorFactor":[0.5,0.0,0.0,1.0],"metallicFactor":0.0,"roughnessFactor":0.2581639},"emissiveFactor":[0.0,0.0,0.0],"alphaMode":"OPAQUE","name":"PhongMaterial2"},{"pbrMetallicRoughness":{"baseColorFactor":[0.0,1.0,0.0,1.0],"metallicFactor":0.0,"roughnessFactor":0.33},"emissiveFactor":[0.0,0.0,0.0],"alphaMode":"OPAQUE","name":"PhysicalMaterial2"}],"animations":[{"channels":[{"sampler":0,"target":{"node":11,"path":"rotation"}},{"sampler":1,"target":{"node":11,"path":"translation"}}],"samplers":[{"input":35,"interpolation":"LINEAR","output":36},{"input":37,"interpolation":"LINEAR","output":38}],"name":"All Animations"}]}
\ No newline at end of file
diff --git a/Maya/Samples/glTF 2.0/BabylonMaterialAttributes/TransparencyMode/Blend/StandardArnoldMaterial_baseColor.png b/Maya/Samples/glTF 2.0/BabylonMaterialAttributes/TransparencyMode/Blend/StandardArnoldMaterial_baseColor.png
new file mode 100644
index 00000000..1ab543b0
Binary files /dev/null and b/Maya/Samples/glTF 2.0/BabylonMaterialAttributes/TransparencyMode/Blend/StandardArnoldMaterial_baseColor.png differ
diff --git a/Maya/Samples/glTF 2.0/BabylonMaterialAttributes/TransparencyMode/Blend/TransparencyMode_Blend.bin b/Maya/Samples/glTF 2.0/BabylonMaterialAttributes/TransparencyMode/Blend/TransparencyMode_Blend.bin
new file mode 100644
index 00000000..01935369
Binary files /dev/null and b/Maya/Samples/glTF 2.0/BabylonMaterialAttributes/TransparencyMode/Blend/TransparencyMode_Blend.bin differ
diff --git a/Maya/Samples/glTF 2.0/BabylonMaterialAttributes/TransparencyMode/Blend/TransparencyMode_Blend.gltf b/Maya/Samples/glTF 2.0/BabylonMaterialAttributes/TransparencyMode/Blend/TransparencyMode_Blend.gltf
new file mode 100644
index 00000000..ced7bfaa
--- /dev/null
+++ b/Maya/Samples/glTF 2.0/BabylonMaterialAttributes/TransparencyMode/Blend/TransparencyMode_Blend.gltf
@@ -0,0 +1 @@
+{"asset":{"version":"2.0","generator":"babylon.js glTF exporter for Maya 2018 v1.4.0"},"scene":0,"scenes":[{"nodes":[0,1,2,3,4,5,8],"extensions":{}}],"nodes":[{"mesh":0,"translation":[0.0,0.0,0.0],"rotation":[0.0,-0.173648179,0.0,0.9848077],"scale":[1.0,1.0,1.0],"name":"pSphere1"},{"mesh":1,"translation":[3.0,0.0,0.0],"rotation":[0.0,-0.173648179,0.0,0.9848077],"scale":[1.0,1.0,1.0],"name":"pSphere2"},{"mesh":2,"translation":[6.0,0.0,0.0],"rotation":[0.0,-0.173648179,0.0,0.9848077],"scale":[1.0,1.0,1.0],"name":"pSphere3"},{"mesh":3,"translation":[9.0,0.0,0.0],"rotation":[0.0,-0.173648179,0.0,0.9848077],"scale":[1.0,1.0,1.0],"name":"pSphere4"},{"mesh":4,"translation":[6.0,0.0,-5.0],"rotation":[0.0,-0.173648179,0.0,0.9848077],"scale":[1.0,1.0,1.0],"name":"pSphere5"},{"children":[6,7],"translation":[0.0,0.0,0.0],"rotation":[0.0,0.0,0.0,1.0],"scale":[1.0,1.0,1.0],"name":"camera1_group"},{"translation":[4.670141,0.0,-2.192745],"rotation":[0.0,0.0,0.0,1.0],"scale":[1.0,1.0,1.0],"name":"camera1_aim"},{"camera":0,"translation":[7.37542868,9.61288,7.29171276],"rotation":[-0.3731197,0.128277212,0.05217274,0.9173901],"scale":[1.0,1.0,1.0],"name":"camera1"},{"translation":[0.0,0.0,0.0],"rotation":[0.0,0.0,0.0,1.0],"scale":[1.0,1.0,1.0],"name":"Default light"}],"cameras":[{"perspective":{"yfov":0.6605947,"zfar":10000.0,"znear":0.1},"type":"perspective","name":"camera1"}],"meshes":[{"primitives":[{"attributes":{"POSITION":1,"TANGENT":2,"NORMAL":3,"TEXCOORD_0":4},"indices":0,"mode":4,"material":0}],"name":"pSphere1"},{"primitives":[{"attributes":{"POSITION":6,"TANGENT":7,"NORMAL":8,"TEXCOORD_0":9},"indices":5,"mode":4,"material":1}],"name":"pSphere2"},{"primitives":[{"attributes":{"POSITION":11,"TANGENT":12,"NORMAL":13,"TEXCOORD_0":14},"indices":10,"mode":4,"material":2}],"name":"pSphere3"},{"primitives":[{"attributes":{"POSITION":16,"TANGENT":17,"NORMAL":18,"TEXCOORD_0":19},"indices":15,"mode":4,"material":3}],"name":"pSphere4"},{"primitives":[{"attributes":{"POSITION":21,"TANGENT":22,"NORMAL":23,"TEXCOORD_0":24},"indices":20,"mode":4,"material":4}],"name":"pSphere5"}],"accessors":[{"bufferView":0,"componentType":5123,"count":2280,"type":"SCALAR","name":"accessorIndices"},{"bufferView":1,"componentType":5126,"count":439,"max":[1.0,1.0,1.00000012],"min":[-1.00000024,-1.0,-1.00000048],"type":"VEC3","name":"accessorPositions"},{"bufferView":2,"componentType":5126,"count":439,"type":"VEC4","name":"accessorTangents"},{"bufferView":1,"byteOffset":5268,"componentType":5126,"count":439,"type":"VEC3","name":"accessorNormals"},{"bufferView":3,"componentType":5126,"count":439,"type":"VEC2","name":"accessorUVs"},{"bufferView":0,"byteOffset":4560,"componentType":5123,"count":2280,"type":"SCALAR","name":"accessorIndices"},{"bufferView":1,"byteOffset":10536,"componentType":5126,"count":439,"max":[1.0,1.0,1.00000012],"min":[-1.00000024,-1.0,-1.00000048],"type":"VEC3","name":"accessorPositions"},{"bufferView":2,"byteOffset":7024,"componentType":5126,"count":439,"type":"VEC4","name":"accessorTangents"},{"bufferView":1,"byteOffset":15804,"componentType":5126,"count":439,"type":"VEC3","name":"accessorNormals"},{"bufferView":3,"byteOffset":3512,"componentType":5126,"count":439,"type":"VEC2","name":"accessorUVs"},{"bufferView":0,"byteOffset":9120,"componentType":5123,"count":2280,"type":"SCALAR","name":"accessorIndices"},{"bufferView":1,"byteOffset":21072,"componentType":5126,"count":439,"max":[1.0,1.0,1.00000012],"min":[-1.00000024,-1.0,-1.00000048],"type":"VEC3","name":"accessorPositions"},{"bufferView":2,"byteOffset":14048,"componentType":5126,"count":439,"type":"VEC4","name":"accessorTangents"},{"bufferView":1,"byteOffset":26340,"componentType":5126,"count":439,"type":"VEC3","name":"accessorNormals"},{"bufferView":3,"byteOffset":7024,"componentType":5126,"count":439,"type":"VEC2","name":"accessorUVs"},{"bufferView":0,"byteOffset":13680,"componentType":5123,"count":2280,"type":"SCALAR","name":"accessorIndices"},{"bufferView":1,"byteOffset":31608,"componentType":5126,"count":439,"max":[1.0,1.0,1.00000012],"min":[-1.00000024,-1.0,-1.00000048],"type":"VEC3","name":"accessorPositions"},{"bufferView":2,"byteOffset":21072,"componentType":5126,"count":439,"type":"VEC4","name":"accessorTangents"},{"bufferView":1,"byteOffset":36876,"componentType":5126,"count":439,"type":"VEC3","name":"accessorNormals"},{"bufferView":3,"byteOffset":10536,"componentType":5126,"count":439,"type":"VEC2","name":"accessorUVs"},{"bufferView":0,"byteOffset":18240,"componentType":5123,"count":2280,"type":"SCALAR","name":"accessorIndices"},{"bufferView":1,"byteOffset":42144,"componentType":5126,"count":439,"max":[1.0,1.0,1.00000012],"min":[-1.00000024,-1.0,-1.00000048],"type":"VEC3","name":"accessorPositions"},{"bufferView":2,"byteOffset":28096,"componentType":5126,"count":439,"type":"VEC4","name":"accessorTangents"},{"bufferView":1,"byteOffset":47412,"componentType":5126,"count":439,"type":"VEC3","name":"accessorNormals"},{"bufferView":3,"byteOffset":14048,"componentType":5126,"count":439,"type":"VEC2","name":"accessorUVs"},{"bufferView":4,"componentType":5126,"count":2,"max":[8.291667],"min":[0.0],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":5,"componentType":5126,"count":2,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":4,"byteOffset":8,"componentType":5126,"count":2,"max":[8.291667],"min":[0.0],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":6,"componentType":5126,"count":2,"type":"VEC3","name":"accessorAnimationPositions"}],"bufferViews":[{"buffer":0,"byteLength":22800,"name":"bufferViewScalar"},{"buffer":0,"byteOffset":22800,"byteLength":52680,"byteStride":12,"name":"bufferViewFloatVec3"},{"buffer":0,"byteOffset":75480,"byteLength":35120,"byteStride":16,"name":"bufferViewFloatVec4"},{"buffer":0,"byteOffset":110600,"byteLength":17560,"byteStride":8,"name":"bufferViewFloatVec2"},{"buffer":0,"byteOffset":128160,"byteLength":16,"name":"bufferViewAnimationFloatScalar"},{"buffer":0,"byteOffset":128176,"byteLength":32,"name":"bufferViewAnimationFloatVec4"},{"buffer":0,"byteOffset":128208,"byteLength":24,"name":"bufferViewAnimationFloatVec3"}],"buffers":[{"uri":"TransparencyMode_Blend.bin","byteLength":128232}],"materials":[{"pbrMetallicRoughness":{"baseColorFactor":[1.0,1.0,1.0,1.0],"baseColorTexture":{"index":0,"texCoord":0},"metallicFactor":0.0,"roughnessFactor":0.2581639},"emissiveFactor":[0.0,0.0,0.0],"alphaMode":"BLEND","name":"phong"},{"pbrMetallicRoughness":{"baseColorFactor":[1.0,1.0,1.0,1.0],"baseColorTexture":{"index":1,"texCoord":0},"metallicFactor":0.0,"roughnessFactor":0.33},"emissiveFactor":[0.0,0.0,0.0],"alphaMode":"BLEND","name":"PhysicalMaterial"},{"pbrMetallicRoughness":{"baseColorFactor":[0.8,0.8,0.8,1.0],"baseColorTexture":{"index":2,"texCoord":0},"metallicFactor":0.0,"roughnessFactor":0.1},"emissiveFactor":[0.0,0.0,0.0],"alphaMode":"BLEND","name":"StandardArnoldMaterial"},{"pbrMetallicRoughness":{"baseColorFactor":[1.0,1.0,1.0,1.0],"baseColorTexture":{"index":3,"texCoord":0},"metallicFactor":0.0,"roughnessFactor":0.450053632},"emissiveFactor":[0.0,0.0,0.0],"alphaMode":"BLEND","name":"lambert1"},{"pbrMetallicRoughness":{"baseColorFactor":[0.8,0.8,0.8,1.0],"baseColorTexture":{"index":2,"texCoord":0},"metallicFactor":0.0,"roughnessFactor":0.1},"emissiveFactor":[0.0,0.0,0.0],"alphaMode":"OPAQUE","name":"StandardArnoldMaterial"}],"textures":[{"sampler":0,"source":0,"name":"phong_baseColor.png"},{"sampler":0,"source":1,"name":"diffuse_green_opacity_gradation_horizontal.png"},{"sampler":0,"source":2,"name":"StandardArnoldMaterial_baseColor.png"},{"sampler":0,"source":3,"name":"lambert1_baseColor.png"},{"sampler":0,"source":2,"name":"StandardArnoldMaterial_baseColor.png"}],"images":[{"uri":"phong_baseColor.png"},{"uri":"diffuse_green_opacity_gradation_horizontal.png"},{"uri":"StandardArnoldMaterial_baseColor.png"},{"uri":"lambert1_baseColor.png"}],"samplers":[{"magFilter":9729,"minFilter":9987,"wrapS":10497,"wrapT":10497}],"animations":[{"channels":[{"sampler":0,"target":{"node":7,"path":"rotation"}},{"sampler":1,"target":{"node":7,"path":"translation"}}],"samplers":[{"input":25,"interpolation":"LINEAR","output":26},{"input":27,"interpolation":"LINEAR","output":28}],"name":"All Animations"}]}
\ No newline at end of file
diff --git a/Maya/Samples/glTF 2.0/BabylonMaterialAttributes/TransparencyMode/Blend/aiStandardSurface1_baseColor.png b/Maya/Samples/glTF 2.0/BabylonMaterialAttributes/TransparencyMode/Blend/aiStandardSurface1_baseColor.png
new file mode 100644
index 00000000..1ab543b0
Binary files /dev/null and b/Maya/Samples/glTF 2.0/BabylonMaterialAttributes/TransparencyMode/Blend/aiStandardSurface1_baseColor.png differ
diff --git a/Maya/Samples/glTF 2.0/BabylonMaterialAttributes/TransparencyMode/Blend/diffuse_green_opacity_gradation_horizontal.png b/Maya/Samples/glTF 2.0/BabylonMaterialAttributes/TransparencyMode/Blend/diffuse_green_opacity_gradation_horizontal.png
new file mode 100644
index 00000000..c4b0e568
Binary files /dev/null and b/Maya/Samples/glTF 2.0/BabylonMaterialAttributes/TransparencyMode/Blend/diffuse_green_opacity_gradation_horizontal.png differ
diff --git a/Maya/Samples/glTF 2.0/BabylonMaterialAttributes/TransparencyMode/Blend/lambert1_baseColor.png b/Maya/Samples/glTF 2.0/BabylonMaterialAttributes/TransparencyMode/Blend/lambert1_baseColor.png
new file mode 100644
index 00000000..80c0241c
Binary files /dev/null and b/Maya/Samples/glTF 2.0/BabylonMaterialAttributes/TransparencyMode/Blend/lambert1_baseColor.png differ
diff --git a/Maya/Samples/glTF 2.0/BabylonMaterialAttributes/TransparencyMode/Blend/phong1_baseColor.png b/Maya/Samples/glTF 2.0/BabylonMaterialAttributes/TransparencyMode/Blend/phong1_baseColor.png
new file mode 100644
index 00000000..e277d21d
Binary files /dev/null and b/Maya/Samples/glTF 2.0/BabylonMaterialAttributes/TransparencyMode/Blend/phong1_baseColor.png differ
diff --git a/Maya/Samples/glTF 2.0/BabylonMaterialAttributes/TransparencyMode/Blend/phong_baseColor.png b/Maya/Samples/glTF 2.0/BabylonMaterialAttributes/TransparencyMode/Blend/phong_baseColor.png
new file mode 100644
index 00000000..e277d21d
Binary files /dev/null and b/Maya/Samples/glTF 2.0/BabylonMaterialAttributes/TransparencyMode/Blend/phong_baseColor.png differ
diff --git a/Maya/Samples/glTF 2.0/BabylonMaterialAttributes/TransparencyMode/Mask/ArnoldStandardBackFace_baseColor.png b/Maya/Samples/glTF 2.0/BabylonMaterialAttributes/TransparencyMode/Mask/ArnoldStandardBackFace_baseColor.png
new file mode 100644
index 00000000..1ab543b0
Binary files /dev/null and b/Maya/Samples/glTF 2.0/BabylonMaterialAttributes/TransparencyMode/Mask/ArnoldStandardBackFace_baseColor.png differ
diff --git a/Maya/Samples/glTF 2.0/BabylonMaterialAttributes/TransparencyMode/Mask/PhongMaterial_baseColor.png b/Maya/Samples/glTF 2.0/BabylonMaterialAttributes/TransparencyMode/Mask/PhongMaterial_baseColor.png
new file mode 100644
index 00000000..fcd01433
Binary files /dev/null and b/Maya/Samples/glTF 2.0/BabylonMaterialAttributes/TransparencyMode/Mask/PhongMaterial_baseColor.png differ
diff --git a/Maya/Samples/glTF 2.0/BabylonMaterialAttributes/TransparencyMode/Mask/PhysicalMaterialBackFaceWithoutOpacity_baseColor.png b/Maya/Samples/glTF 2.0/BabylonMaterialAttributes/TransparencyMode/Mask/PhysicalMaterialBackFaceWithoutOpacity_baseColor.png
new file mode 100644
index 00000000..c8587f76
Binary files /dev/null and b/Maya/Samples/glTF 2.0/BabylonMaterialAttributes/TransparencyMode/Mask/PhysicalMaterialBackFaceWithoutOpacity_baseColor.png differ
diff --git a/Maya/Samples/glTF 2.0/BabylonMaterialAttributes/TransparencyMode/Mask/StingrayPBS2_baseColor.png b/Maya/Samples/glTF 2.0/BabylonMaterialAttributes/TransparencyMode/Mask/StingrayPBS2_baseColor.png
new file mode 100644
index 00000000..c8587f76
Binary files /dev/null and b/Maya/Samples/glTF 2.0/BabylonMaterialAttributes/TransparencyMode/Mask/StingrayPBS2_baseColor.png differ
diff --git a/Maya/Samples/glTF 2.0/BabylonMaterialAttributes/TransparencyMode/Mask/TransparencyMode_Mask.bin b/Maya/Samples/glTF 2.0/BabylonMaterialAttributes/TransparencyMode/Mask/TransparencyMode_Mask.bin
new file mode 100644
index 00000000..204d9c9e
Binary files /dev/null and b/Maya/Samples/glTF 2.0/BabylonMaterialAttributes/TransparencyMode/Mask/TransparencyMode_Mask.bin differ
diff --git a/Maya/Samples/glTF 2.0/BabylonMaterialAttributes/TransparencyMode/Mask/TransparencyMode_Mask.gltf b/Maya/Samples/glTF 2.0/BabylonMaterialAttributes/TransparencyMode/Mask/TransparencyMode_Mask.gltf
new file mode 100644
index 00000000..40d2cb36
--- /dev/null
+++ b/Maya/Samples/glTF 2.0/BabylonMaterialAttributes/TransparencyMode/Mask/TransparencyMode_Mask.gltf
@@ -0,0 +1 @@
+{"asset":{"version":"2.0","generator":"babylon.js glTF exporter for Maya 2018 v1.4.0"},"scene":0,"scenes":[{"nodes":[0,1,2,3,4,5,6,7],"extensions":{}}],"nodes":[{"mesh":0,"translation":[0.0,0.0,0.0],"rotation":[0.0,-0.173648179,0.0,0.9848077],"scale":[1.0,1.0,1.0],"name":"pSphere1"},{"mesh":1,"translation":[3.0,0.0,0.0],"rotation":[0.0,-0.173648179,0.0,0.9848077],"scale":[1.0,1.0,1.0],"name":"pSphere2"},{"mesh":2,"translation":[6.0,0.0,0.0],"rotation":[0.0,-0.173648179,0.0,0.9848077],"scale":[1.0,1.0,1.0],"name":"pSphere3"},{"mesh":3,"translation":[9.0,0.0,0.0],"rotation":[0.0,-0.173648179,0.0,0.9848077],"scale":[1.0,1.0,1.0],"name":"pSphere4"},{"mesh":4,"translation":[6.0,0.0,-5.0],"rotation":[0.0,-0.173648179,0.0,0.9848077],"scale":[1.0,1.0,1.0],"name":"pSphere5"},{"mesh":5,"translation":[3.0,0.0,-10.0],"rotation":[0.0,0.0,0.0,1.0],"scale":[1.0,1.0,1.0],"name":"pSphere6"},{"mesh":6,"translation":[3.0,0.0,-5.0],"rotation":[0.0,-0.173648179,0.0,0.9848077],"scale":[1.0,1.0,1.0],"name":"pSphere7"},{"translation":[0.0,0.0,0.0],"rotation":[0.0,0.0,0.0,1.0],"scale":[1.0,1.0,1.0],"name":"Default light"}],"meshes":[{"primitives":[{"attributes":{"POSITION":1,"TANGENT":2,"NORMAL":3,"TEXCOORD_0":4},"indices":0,"mode":4,"material":0}],"name":"pSphere1"},{"primitives":[{"attributes":{"POSITION":6,"TANGENT":7,"NORMAL":8,"TEXCOORD_0":9},"indices":5,"mode":4,"material":1}],"name":"pSphere2"},{"primitives":[{"attributes":{"POSITION":11,"TANGENT":12,"NORMAL":13,"TEXCOORD_0":14},"indices":10,"mode":4,"material":2}],"name":"pSphere3"},{"primitives":[{"attributes":{"POSITION":16,"TANGENT":17,"NORMAL":18,"TEXCOORD_0":19},"indices":15,"mode":4,"material":3}],"name":"pSphere4"},{"primitives":[{"attributes":{"POSITION":21,"TANGENT":22,"NORMAL":23,"TEXCOORD_0":24},"indices":20,"mode":4,"material":4}],"name":"pSphere5"},{"primitives":[{"attributes":{"POSITION":26,"TANGENT":27,"NORMAL":28,"TEXCOORD_0":29},"indices":25,"mode":4,"material":5}],"name":"pSphere6"},{"primitives":[{"attributes":{"POSITION":31,"TANGENT":32,"NORMAL":33,"TEXCOORD_0":34},"indices":30,"mode":4,"material":6}],"name":"pSphere7"}],"accessors":[{"bufferView":0,"componentType":5123,"count":2280,"type":"SCALAR","name":"accessorIndices"},{"bufferView":1,"componentType":5126,"count":439,"max":[1.0,1.0,1.00000012],"min":[-1.00000024,-1.0,-1.00000048],"type":"VEC3","name":"accessorPositions"},{"bufferView":2,"componentType":5126,"count":439,"type":"VEC4","name":"accessorTangents"},{"bufferView":1,"byteOffset":5268,"componentType":5126,"count":439,"type":"VEC3","name":"accessorNormals"},{"bufferView":3,"componentType":5126,"count":439,"type":"VEC2","name":"accessorUVs"},{"bufferView":0,"byteOffset":4560,"componentType":5123,"count":2280,"type":"SCALAR","name":"accessorIndices"},{"bufferView":1,"byteOffset":10536,"componentType":5126,"count":439,"max":[1.0,1.0,1.00000012],"min":[-1.00000024,-1.0,-1.00000048],"type":"VEC3","name":"accessorPositions"},{"bufferView":2,"byteOffset":7024,"componentType":5126,"count":439,"type":"VEC4","name":"accessorTangents"},{"bufferView":1,"byteOffset":15804,"componentType":5126,"count":439,"type":"VEC3","name":"accessorNormals"},{"bufferView":3,"byteOffset":3512,"componentType":5126,"count":439,"type":"VEC2","name":"accessorUVs"},{"bufferView":0,"byteOffset":9120,"componentType":5123,"count":2280,"type":"SCALAR","name":"accessorIndices"},{"bufferView":1,"byteOffset":21072,"componentType":5126,"count":439,"max":[1.0,1.0,1.00000012],"min":[-1.00000024,-1.0,-1.00000048],"type":"VEC3","name":"accessorPositions"},{"bufferView":2,"byteOffset":14048,"componentType":5126,"count":439,"type":"VEC4","name":"accessorTangents"},{"bufferView":1,"byteOffset":26340,"componentType":5126,"count":439,"type":"VEC3","name":"accessorNormals"},{"bufferView":3,"byteOffset":7024,"componentType":5126,"count":439,"type":"VEC2","name":"accessorUVs"},{"bufferView":0,"byteOffset":13680,"componentType":5123,"count":2280,"type":"SCALAR","name":"accessorIndices"},{"bufferView":1,"byteOffset":31608,"componentType":5126,"count":439,"max":[1.0,1.0,1.00000012],"min":[-1.00000024,-1.0,-1.00000048],"type":"VEC3","name":"accessorPositions"},{"bufferView":2,"byteOffset":21072,"componentType":5126,"count":439,"type":"VEC4","name":"accessorTangents"},{"bufferView":1,"byteOffset":36876,"componentType":5126,"count":439,"type":"VEC3","name":"accessorNormals"},{"bufferView":3,"byteOffset":10536,"componentType":5126,"count":439,"type":"VEC2","name":"accessorUVs"},{"bufferView":0,"byteOffset":18240,"componentType":5123,"count":2280,"type":"SCALAR","name":"accessorIndices"},{"bufferView":1,"byteOffset":42144,"componentType":5126,"count":439,"max":[1.0,1.0,1.00000012],"min":[-1.00000024,-1.0,-1.00000048],"type":"VEC3","name":"accessorPositions"},{"bufferView":2,"byteOffset":28096,"componentType":5126,"count":439,"type":"VEC4","name":"accessorTangents"},{"bufferView":1,"byteOffset":47412,"componentType":5126,"count":439,"type":"VEC3","name":"accessorNormals"},{"bufferView":3,"byteOffset":14048,"componentType":5126,"count":439,"type":"VEC2","name":"accessorUVs"},{"bufferView":0,"byteOffset":22800,"componentType":5123,"count":2280,"type":"SCALAR","name":"accessorIndices"},{"bufferView":1,"byteOffset":52680,"componentType":5126,"count":439,"max":[1.0,1.0,1.00000012],"min":[-1.00000024,-1.0,-1.00000048],"type":"VEC3","name":"accessorPositions"},{"bufferView":2,"byteOffset":35120,"componentType":5126,"count":439,"type":"VEC4","name":"accessorTangents"},{"bufferView":1,"byteOffset":57948,"componentType":5126,"count":439,"type":"VEC3","name":"accessorNormals"},{"bufferView":3,"byteOffset":17560,"componentType":5126,"count":439,"type":"VEC2","name":"accessorUVs"},{"bufferView":0,"byteOffset":27360,"componentType":5123,"count":2280,"type":"SCALAR","name":"accessorIndices"},{"bufferView":1,"byteOffset":63216,"componentType":5126,"count":439,"max":[1.0,1.0,1.00000012],"min":[-1.00000024,-1.0,-1.00000048],"type":"VEC3","name":"accessorPositions"},{"bufferView":2,"byteOffset":42144,"componentType":5126,"count":439,"type":"VEC4","name":"accessorTangents"},{"bufferView":1,"byteOffset":68484,"componentType":5126,"count":439,"type":"VEC3","name":"accessorNormals"},{"bufferView":3,"byteOffset":21072,"componentType":5126,"count":439,"type":"VEC2","name":"accessorUVs"}],"bufferViews":[{"buffer":0,"byteLength":31920,"name":"bufferViewScalar"},{"buffer":0,"byteOffset":31920,"byteLength":73752,"byteStride":12,"name":"bufferViewFloatVec3"},{"buffer":0,"byteOffset":105672,"byteLength":49168,"byteStride":16,"name":"bufferViewFloatVec4"},{"buffer":0,"byteOffset":154840,"byteLength":24584,"byteStride":8,"name":"bufferViewFloatVec2"}],"buffers":[{"uri":"TransparencyMode_Mask.bin","byteLength":179424}],"materials":[{"pbrMetallicRoughness":{"baseColorFactor":[1.0,1.0,1.0,1.0],"baseColorTexture":{"index":0,"texCoord":0},"metallicFactor":0.0,"roughnessFactor":0.2581639},"emissiveFactor":[0.0,0.0,0.0],"alphaMode":"MASK","name":"PhongMaterial"},{"pbrMetallicRoughness":{"baseColorFactor":[1.0,1.0,1.0,1.0],"baseColorTexture":{"index":1,"texCoord":0},"metallicFactor":0.0,"roughnessFactor":0.33},"emissiveFactor":[0.0,0.0,0.0],"alphaMode":"MASK","name":"PhysicalMaterialBackFace0_5"},{"pbrMetallicRoughness":{"baseColorFactor":[0.8,0.8,0.8,1.0],"baseColorTexture":{"index":2,"texCoord":0},"metallicFactor":0.0,"roughnessFactor":0.1},"emissiveFactor":[0.0,0.0,0.0],"alphaMode":"MASK","name":"ArnoldStandardBackFace"},{"pbrMetallicRoughness":{"baseColorFactor":[1.0,1.0,1.0,1.0],"baseColorTexture":{"index":3,"texCoord":0},"metallicFactor":0.0,"roughnessFactor":0.450053632},"emissiveFactor":[0.0,0.0,0.0],"alphaMode":"MASK","name":"lambert1"},{"pbrMetallicRoughness":{"baseColorFactor":[0.8,0.8,0.8,1.0],"baseColorTexture":{"index":2,"texCoord":0},"metallicFactor":0.0,"roughnessFactor":0.1},"emissiveFactor":[0.0,0.0,0.0],"alphaMode":"OPAQUE","name":"ArnoldStandardBackFace"},{"pbrMetallicRoughness":{"baseColorFactor":[1.0,1.0,1.0,1.0],"baseColorTexture":{"index":5,"texCoord":0},"metallicFactor":0.0,"roughnessFactor":0.33},"emissiveFactor":[0.0,0.0,0.0],"alphaMode":"MASK","name":"PhysicalMaterialBackFaceWithoutOpacity"},{"pbrMetallicRoughness":{"baseColorFactor":[1.0,1.0,1.0,1.0],"baseColorTexture":{"index":1,"texCoord":0},"metallicFactor":0.0,"roughnessFactor":0.33},"emissiveFactor":[0.0,0.0,0.0],"alphaMode":"MASK","alphaCutoff":0.75,"name":"PhysicalMaterialBackFace0_75"}],"textures":[{"sampler":0,"source":0,"name":"PhongMaterial_baseColor.png"},{"sampler":0,"source":1,"name":"diffuse_green_opacity_gradation_horizontal.png"},{"sampler":0,"source":2,"name":"ArnoldStandardBackFace_baseColor.png"},{"sampler":0,"source":3,"name":"lambert1_baseColor.png"},{"sampler":0,"source":2,"name":"ArnoldStandardBackFace_baseColor.png"},{"sampler":0,"source":4,"name":"PhysicalMaterialBackFaceWithoutOpacity_baseColor.png"},{"sampler":0,"source":1,"name":"diffuse_green_opacity_gradation_horizontal.png"}],"images":[{"uri":"PhongMaterial_baseColor.png"},{"uri":"diffuse_green_opacity_gradation_horizontal.png"},{"uri":"ArnoldStandardBackFace_baseColor.png"},{"uri":"lambert1_baseColor.png"},{"uri":"PhysicalMaterialBackFaceWithoutOpacity_baseColor.png"}],"samplers":[{"magFilter":9729,"minFilter":9987,"wrapS":10497,"wrapT":10497}]}
\ No newline at end of file
diff --git a/Maya/Samples/glTF 2.0/BabylonMaterialAttributes/TransparencyMode/Mask/aiStandardSurface1_baseColor.png b/Maya/Samples/glTF 2.0/BabylonMaterialAttributes/TransparencyMode/Mask/aiStandardSurface1_baseColor.png
new file mode 100644
index 00000000..1ab543b0
Binary files /dev/null and b/Maya/Samples/glTF 2.0/BabylonMaterialAttributes/TransparencyMode/Mask/aiStandardSurface1_baseColor.png differ
diff --git a/Maya/Samples/glTF 2.0/BabylonMaterialAttributes/TransparencyMode/Mask/diffuse_green_opacity_gradation_horizontal.png b/Maya/Samples/glTF 2.0/BabylonMaterialAttributes/TransparencyMode/Mask/diffuse_green_opacity_gradation_horizontal.png
new file mode 100644
index 00000000..c4b0e568
Binary files /dev/null and b/Maya/Samples/glTF 2.0/BabylonMaterialAttributes/TransparencyMode/Mask/diffuse_green_opacity_gradation_horizontal.png differ
diff --git a/Maya/Samples/glTF 2.0/BabylonMaterialAttributes/TransparencyMode/Mask/lambert1_baseColor.png b/Maya/Samples/glTF 2.0/BabylonMaterialAttributes/TransparencyMode/Mask/lambert1_baseColor.png
new file mode 100644
index 00000000..424aeeb4
Binary files /dev/null and b/Maya/Samples/glTF 2.0/BabylonMaterialAttributes/TransparencyMode/Mask/lambert1_baseColor.png differ
diff --git a/Maya/Samples/glTF 2.0/BabylonMaterialAttributes/TransparencyMode/Mask/phong1_baseColor.png b/Maya/Samples/glTF 2.0/BabylonMaterialAttributes/TransparencyMode/Mask/phong1_baseColor.png
new file mode 100644
index 00000000..fcd01433
Binary files /dev/null and b/Maya/Samples/glTF 2.0/BabylonMaterialAttributes/TransparencyMode/Mask/phong1_baseColor.png differ
diff --git a/Maya/Samples/glTF 2.0/BabylonMaterialAttributes/TransparencyMode/Opaque/TransparencyMode_Opaque.bin b/Maya/Samples/glTF 2.0/BabylonMaterialAttributes/TransparencyMode/Opaque/TransparencyMode_Opaque.bin
new file mode 100644
index 00000000..01935369
Binary files /dev/null and b/Maya/Samples/glTF 2.0/BabylonMaterialAttributes/TransparencyMode/Opaque/TransparencyMode_Opaque.bin differ
diff --git a/Maya/Samples/glTF 2.0/BabylonMaterialAttributes/TransparencyMode/Opaque/TransparencyMode_Opaque.gltf b/Maya/Samples/glTF 2.0/BabylonMaterialAttributes/TransparencyMode/Opaque/TransparencyMode_Opaque.gltf
new file mode 100644
index 00000000..fbbfc688
--- /dev/null
+++ b/Maya/Samples/glTF 2.0/BabylonMaterialAttributes/TransparencyMode/Opaque/TransparencyMode_Opaque.gltf
@@ -0,0 +1 @@
+{"asset":{"version":"2.0","generator":"babylon.js glTF exporter for Maya 2018 v1.4.0"},"scene":0,"scenes":[{"nodes":[0,1,2,3,4,5,8],"extensions":{}}],"nodes":[{"mesh":0,"translation":[0.0,0.0,0.0],"rotation":[0.0,-0.173648179,0.0,0.9848077],"scale":[1.0,1.0,1.0],"name":"pSphere1"},{"mesh":1,"translation":[3.0,0.0,0.0],"rotation":[0.0,-0.173648179,0.0,0.9848077],"scale":[1.0,1.0,1.0],"name":"pSphere2"},{"mesh":2,"translation":[6.0,0.0,0.0],"rotation":[0.0,-0.173648179,0.0,0.9848077],"scale":[1.0,1.0,1.0],"name":"pSphere3"},{"mesh":3,"translation":[9.0,0.0,0.0],"rotation":[0.0,-0.173648179,0.0,0.9848077],"scale":[1.0,1.0,1.0],"name":"pSphere4"},{"mesh":4,"translation":[6.0,0.0,-5.0],"rotation":[0.0,-0.173648179,0.0,0.9848077],"scale":[1.0,1.0,1.0],"name":"pSphere5"},{"children":[6,7],"translation":[0.0,0.0,0.0],"rotation":[0.0,0.0,0.0,1.0],"scale":[1.0,1.0,1.0],"name":"camera1_group"},{"translation":[4.670141,0.0,-2.192745],"rotation":[0.0,0.0,0.0,1.0],"scale":[1.0,1.0,1.0],"name":"camera1_aim"},{"camera":0,"translation":[7.37542868,9.61288,7.29171276],"rotation":[-0.3731197,0.128277212,0.05217274,0.9173901],"scale":[1.0,1.0,1.0],"name":"camera1"},{"translation":[0.0,0.0,0.0],"rotation":[0.0,0.0,0.0,1.0],"scale":[1.0,1.0,1.0],"name":"Default light"}],"cameras":[{"perspective":{"yfov":0.6605947,"zfar":10000.0,"znear":0.1},"type":"perspective","name":"camera1"}],"meshes":[{"primitives":[{"attributes":{"POSITION":1,"TANGENT":2,"NORMAL":3,"TEXCOORD_0":4},"indices":0,"mode":4,"material":0}],"name":"pSphere1"},{"primitives":[{"attributes":{"POSITION":6,"TANGENT":7,"NORMAL":8,"TEXCOORD_0":9},"indices":5,"mode":4,"material":1}],"name":"pSphere2"},{"primitives":[{"attributes":{"POSITION":11,"TANGENT":12,"NORMAL":13,"TEXCOORD_0":14},"indices":10,"mode":4,"material":2}],"name":"pSphere3"},{"primitives":[{"attributes":{"POSITION":16,"TANGENT":17,"NORMAL":18,"TEXCOORD_0":19},"indices":15,"mode":4,"material":3}],"name":"pSphere4"},{"primitives":[{"attributes":{"POSITION":21,"TANGENT":22,"NORMAL":23,"TEXCOORD_0":24},"indices":20,"mode":4,"material":2}],"name":"pSphere5"}],"accessors":[{"bufferView":0,"componentType":5123,"count":2280,"type":"SCALAR","name":"accessorIndices"},{"bufferView":1,"componentType":5126,"count":439,"max":[1.0,1.0,1.00000012],"min":[-1.00000024,-1.0,-1.00000048],"type":"VEC3","name":"accessorPositions"},{"bufferView":2,"componentType":5126,"count":439,"type":"VEC4","name":"accessorTangents"},{"bufferView":1,"byteOffset":5268,"componentType":5126,"count":439,"type":"VEC3","name":"accessorNormals"},{"bufferView":3,"componentType":5126,"count":439,"type":"VEC2","name":"accessorUVs"},{"bufferView":0,"byteOffset":4560,"componentType":5123,"count":2280,"type":"SCALAR","name":"accessorIndices"},{"bufferView":1,"byteOffset":10536,"componentType":5126,"count":439,"max":[1.0,1.0,1.00000012],"min":[-1.00000024,-1.0,-1.00000048],"type":"VEC3","name":"accessorPositions"},{"bufferView":2,"byteOffset":7024,"componentType":5126,"count":439,"type":"VEC4","name":"accessorTangents"},{"bufferView":1,"byteOffset":15804,"componentType":5126,"count":439,"type":"VEC3","name":"accessorNormals"},{"bufferView":3,"byteOffset":3512,"componentType":5126,"count":439,"type":"VEC2","name":"accessorUVs"},{"bufferView":0,"byteOffset":9120,"componentType":5123,"count":2280,"type":"SCALAR","name":"accessorIndices"},{"bufferView":1,"byteOffset":21072,"componentType":5126,"count":439,"max":[1.0,1.0,1.00000012],"min":[-1.00000024,-1.0,-1.00000048],"type":"VEC3","name":"accessorPositions"},{"bufferView":2,"byteOffset":14048,"componentType":5126,"count":439,"type":"VEC4","name":"accessorTangents"},{"bufferView":1,"byteOffset":26340,"componentType":5126,"count":439,"type":"VEC3","name":"accessorNormals"},{"bufferView":3,"byteOffset":7024,"componentType":5126,"count":439,"type":"VEC2","name":"accessorUVs"},{"bufferView":0,"byteOffset":13680,"componentType":5123,"count":2280,"type":"SCALAR","name":"accessorIndices"},{"bufferView":1,"byteOffset":31608,"componentType":5126,"count":439,"max":[1.0,1.0,1.00000012],"min":[-1.00000024,-1.0,-1.00000048],"type":"VEC3","name":"accessorPositions"},{"bufferView":2,"byteOffset":21072,"componentType":5126,"count":439,"type":"VEC4","name":"accessorTangents"},{"bufferView":1,"byteOffset":36876,"componentType":5126,"count":439,"type":"VEC3","name":"accessorNormals"},{"bufferView":3,"byteOffset":10536,"componentType":5126,"count":439,"type":"VEC2","name":"accessorUVs"},{"bufferView":0,"byteOffset":18240,"componentType":5123,"count":2280,"type":"SCALAR","name":"accessorIndices"},{"bufferView":1,"byteOffset":42144,"componentType":5126,"count":439,"max":[1.0,1.0,1.00000012],"min":[-1.00000024,-1.0,-1.00000048],"type":"VEC3","name":"accessorPositions"},{"bufferView":2,"byteOffset":28096,"componentType":5126,"count":439,"type":"VEC4","name":"accessorTangents"},{"bufferView":1,"byteOffset":47412,"componentType":5126,"count":439,"type":"VEC3","name":"accessorNormals"},{"bufferView":3,"byteOffset":14048,"componentType":5126,"count":439,"type":"VEC2","name":"accessorUVs"},{"bufferView":4,"componentType":5126,"count":2,"max":[8.291667],"min":[0.0],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":5,"componentType":5126,"count":2,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":4,"byteOffset":8,"componentType":5126,"count":2,"max":[8.291667],"min":[0.0],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":6,"componentType":5126,"count":2,"type":"VEC3","name":"accessorAnimationPositions"}],"bufferViews":[{"buffer":0,"byteLength":22800,"name":"bufferViewScalar"},{"buffer":0,"byteOffset":22800,"byteLength":52680,"byteStride":12,"name":"bufferViewFloatVec3"},{"buffer":0,"byteOffset":75480,"byteLength":35120,"byteStride":16,"name":"bufferViewFloatVec4"},{"buffer":0,"byteOffset":110600,"byteLength":17560,"byteStride":8,"name":"bufferViewFloatVec2"},{"buffer":0,"byteOffset":128160,"byteLength":16,"name":"bufferViewAnimationFloatScalar"},{"buffer":0,"byteOffset":128176,"byteLength":32,"name":"bufferViewAnimationFloatVec4"},{"buffer":0,"byteOffset":128208,"byteLength":24,"name":"bufferViewAnimationFloatVec3"}],"buffers":[{"uri":"TransparencyMode_Opaque.bin","byteLength":128232}],"materials":[{"pbrMetallicRoughness":{"baseColorFactor":[0.5,0.0,0.0,1.0],"metallicFactor":0.0,"roughnessFactor":0.2581639},"emissiveFactor":[0.0,0.0,0.0],"alphaMode":"OPAQUE","name":"phong1"},{"pbrMetallicRoughness":{"baseColorFactor":[0.0,1.0,0.0,1.0],"metallicFactor":0.0,"roughnessFactor":0.33},"emissiveFactor":[0.0,0.0,0.0],"alphaMode":"OPAQUE","name":"StingrayPBS1"},{"pbrMetallicRoughness":{"baseColorFactor":[0.0,0.0,0.8,1.0],"metallicFactor":0.0,"roughnessFactor":0.1},"emissiveFactor":[0.0,0.0,0.0],"alphaMode":"OPAQUE","name":"aiStandardSurface1"},{"pbrMetallicRoughness":{"baseColorFactor":[0.25,0.25,0.25,1.0],"metallicFactor":0.0,"roughnessFactor":0.450053632},"emissiveFactor":[0.0,0.0,0.0],"alphaMode":"OPAQUE","name":"lambert1"}],"animations":[{"channels":[{"sampler":0,"target":{"node":7,"path":"rotation"}},{"sampler":1,"target":{"node":7,"path":"translation"}}],"samplers":[{"input":25,"interpolation":"LINEAR","output":26},{"input":27,"interpolation":"LINEAR","output":28}],"name":"All Animations"}]}
\ No newline at end of file
diff --git a/Maya/Samples/glTF 2.0/BabylonMaterialAttributes/TransparencyMode/Opaque/aiStandardSurface1_baseColor.png b/Maya/Samples/glTF 2.0/BabylonMaterialAttributes/TransparencyMode/Opaque/aiStandardSurface1_baseColor.png
new file mode 100644
index 00000000..1ab543b0
Binary files /dev/null and b/Maya/Samples/glTF 2.0/BabylonMaterialAttributes/TransparencyMode/Opaque/aiStandardSurface1_baseColor.png differ
diff --git a/Maya/Samples/glTF 2.0/BabylonMaterialAttributes/Unlit.bin b/Maya/Samples/glTF 2.0/BabylonMaterialAttributes/Unlit.bin
new file mode 100644
index 00000000..01068a50
Binary files /dev/null and b/Maya/Samples/glTF 2.0/BabylonMaterialAttributes/Unlit.bin differ
diff --git a/Maya/Samples/glTF 2.0/BabylonMaterialAttributes/Unlit.gltf b/Maya/Samples/glTF 2.0/BabylonMaterialAttributes/Unlit.gltf
new file mode 100644
index 00000000..dbaa5828
--- /dev/null
+++ b/Maya/Samples/glTF 2.0/BabylonMaterialAttributes/Unlit.gltf
@@ -0,0 +1 @@
+{"asset":{"version":"2.0","generator":"babylon.js glTF exporter for Maya 2018 v1.4.0"},"scene":0,"scenes":[{"nodes":[0,1,2,3,4],"extensions":{}}],"nodes":[{"mesh":0,"translation":[0.0,0.0,0.0],"rotation":[0.0,0.0,0.0,1.0],"scale":[1.0,1.0,1.0],"name":"pSphere1"},{"mesh":1,"translation":[3.0,0.0,0.0],"rotation":[0.0,0.0,0.0,1.0],"scale":[1.0,1.0,1.0],"name":"pSphere2"},{"mesh":2,"translation":[6.0,0.0,0.0],"rotation":[0.0,0.0,0.0,1.0],"scale":[1.0,1.0,1.0],"name":"pSphere3"},{"mesh":3,"translation":[9.0,0.0,0.0],"rotation":[0.0,0.0,0.0,1.0],"scale":[1.0,1.0,1.0],"name":"pSphere4"},{"translation":[0.0,0.0,0.0],"rotation":[0.0,0.0,0.0,1.0],"scale":[1.0,1.0,1.0],"name":"Default light"}],"meshes":[{"primitives":[{"attributes":{"POSITION":1,"TANGENT":2,"NORMAL":3,"TEXCOORD_0":4},"indices":0,"mode":4,"material":0}],"name":"pSphere1"},{"primitives":[{"attributes":{"POSITION":6,"TANGENT":7,"NORMAL":8,"TEXCOORD_0":9},"indices":5,"mode":4,"material":1}],"name":"pSphere2"},{"primitives":[{"attributes":{"POSITION":11,"TANGENT":12,"NORMAL":13,"TEXCOORD_0":14},"indices":10,"mode":4,"material":2}],"name":"pSphere3"},{"primitives":[{"attributes":{"POSITION":16,"TANGENT":17,"NORMAL":18,"TEXCOORD_0":19},"indices":15,"mode":4,"material":3}],"name":"pSphere4"}],"accessors":[{"bufferView":0,"componentType":5123,"count":2280,"type":"SCALAR","name":"accessorIndices"},{"bufferView":1,"componentType":5126,"count":439,"max":[1.0,1.0,1.00000012],"min":[-1.00000024,-1.0,-1.00000048],"type":"VEC3","name":"accessorPositions"},{"bufferView":2,"componentType":5126,"count":439,"type":"VEC4","name":"accessorTangents"},{"bufferView":1,"byteOffset":5268,"componentType":5126,"count":439,"type":"VEC3","name":"accessorNormals"},{"bufferView":3,"componentType":5126,"count":439,"type":"VEC2","name":"accessorUVs"},{"bufferView":0,"byteOffset":4560,"componentType":5123,"count":2280,"type":"SCALAR","name":"accessorIndices"},{"bufferView":1,"byteOffset":10536,"componentType":5126,"count":439,"max":[1.0,1.0,1.00000012],"min":[-1.00000024,-1.0,-1.00000048],"type":"VEC3","name":"accessorPositions"},{"bufferView":2,"byteOffset":7024,"componentType":5126,"count":439,"type":"VEC4","name":"accessorTangents"},{"bufferView":1,"byteOffset":15804,"componentType":5126,"count":439,"type":"VEC3","name":"accessorNormals"},{"bufferView":3,"byteOffset":3512,"componentType":5126,"count":439,"type":"VEC2","name":"accessorUVs"},{"bufferView":0,"byteOffset":9120,"componentType":5123,"count":2280,"type":"SCALAR","name":"accessorIndices"},{"bufferView":1,"byteOffset":21072,"componentType":5126,"count":439,"max":[1.0,1.0,1.00000012],"min":[-1.00000024,-1.0,-1.00000048],"type":"VEC3","name":"accessorPositions"},{"bufferView":2,"byteOffset":14048,"componentType":5126,"count":439,"type":"VEC4","name":"accessorTangents"},{"bufferView":1,"byteOffset":26340,"componentType":5126,"count":439,"type":"VEC3","name":"accessorNormals"},{"bufferView":3,"byteOffset":7024,"componentType":5126,"count":439,"type":"VEC2","name":"accessorUVs"},{"bufferView":0,"byteOffset":13680,"componentType":5123,"count":2280,"type":"SCALAR","name":"accessorIndices"},{"bufferView":1,"byteOffset":31608,"componentType":5126,"count":439,"max":[1.0,1.0,1.00000012],"min":[-1.00000024,-1.0,-1.00000048],"type":"VEC3","name":"accessorPositions"},{"bufferView":2,"byteOffset":21072,"componentType":5126,"count":439,"type":"VEC4","name":"accessorTangents"},{"bufferView":1,"byteOffset":36876,"componentType":5126,"count":439,"type":"VEC3","name":"accessorNormals"},{"bufferView":3,"byteOffset":10536,"componentType":5126,"count":439,"type":"VEC2","name":"accessorUVs"}],"bufferViews":[{"buffer":0,"byteLength":18240,"name":"bufferViewScalar"},{"buffer":0,"byteOffset":18240,"byteLength":42144,"byteStride":12,"name":"bufferViewFloatVec3"},{"buffer":0,"byteOffset":60384,"byteLength":28096,"byteStride":16,"name":"bufferViewFloatVec4"},{"buffer":0,"byteOffset":88480,"byteLength":14048,"byteStride":8,"name":"bufferViewFloatVec2"}],"buffers":[{"uri":"Unlit.bin","byteLength":102528}],"materials":[{"pbrMetallicRoughness":{"baseColorFactor":[0.5,0.0,0.0,1.0],"metallicFactor":0.0,"roughnessFactor":0.2581639},"emissiveFactor":[1.0,0.0,0.0],"alphaMode":"OPAQUE","name":"PhongUnlitMaterial"},{"pbrMetallicRoughness":{"baseColorFactor":[0.0,1.0,0.0,1.0],"metallicFactor":0.0,"roughnessFactor":0.33},"emissiveFactor":[0.0,0.0,0.0],"alphaMode":"OPAQUE","name":"PhysicUnlitMaterial"},{"pbrMetallicRoughness":{"baseColorFactor":[0.0,0.0,0.8,1.0],"metallicFactor":0.0,"roughnessFactor":0.1},"emissiveFactor":[0.0,0.0,0.0],"alphaMode":"OPAQUE","name":"StandardArnoldUnlitMaterial"},{"pbrMetallicRoughness":{"baseColorFactor":[0.25,0.25,0.25,1.0],"metallicFactor":0.0,"roughnessFactor":0.450053632},"emissiveFactor":[0.5,0.5,0.5],"alphaMode":"OPAQUE","name":"lambert1"}]}
\ No newline at end of file
diff --git a/Maya/Samples/glTF 2.0/CustomUserAttributes/CustomUserAttributes.bin b/Maya/Samples/glTF 2.0/CustomUserAttributes/CustomUserAttributes.bin
new file mode 100644
index 00000000..525754d6
Binary files /dev/null and b/Maya/Samples/glTF 2.0/CustomUserAttributes/CustomUserAttributes.bin differ
diff --git a/Maya/Samples/glTF 2.0/CustomUserAttributes/CustomUserAttributes.gltf b/Maya/Samples/glTF 2.0/CustomUserAttributes/CustomUserAttributes.gltf
new file mode 100644
index 00000000..c6ec18ec
--- /dev/null
+++ b/Maya/Samples/glTF 2.0/CustomUserAttributes/CustomUserAttributes.gltf
@@ -0,0 +1,437 @@
+{
+ "asset": {
+ "version": "2.0",
+ "generator": "babylon.js glTF exporter for Maya 2018 v1.4.0"
+ },
+ "scene": 0,
+ "scenes": [
+ {
+ "nodes": [
+ 0,
+ 1,
+ 2,
+ 5
+ ],
+ "extensions": {}
+ }
+ ],
+ "nodes": [
+ {
+ "mesh": 0,
+ "translation": [
+ 0,
+ 0,
+ 0
+ ],
+ "rotation": [
+ 0,
+ 0,
+ 0,
+ 1
+ ],
+ "scale": [
+ 1,
+ 1,
+ 1
+ ],
+ "name": "pCube1",
+ "extras": {
+ "vect": [
+ 1,
+ 2,
+ 3
+ ],
+ "int": 4,
+ "string": "test",
+ "float": 5.5,
+ "bool": 1,
+ "enum": 1
+ }
+ },
+ {
+ "mesh": 0,
+ "translation": [
+ 2,
+ 0,
+ 0
+ ],
+ "rotation": [
+ 0,
+ 0,
+ 0,
+ 1
+ ],
+ "scale": [
+ 1,
+ 1,
+ 1
+ ],
+ "name": "pCube2",
+ "extras": {
+ "vect": [
+ 4,
+ 5,
+ 6
+ ],
+ "int": 8,
+ "string": "test instance",
+ "float": 10.5,
+ "bool": 0,
+ "enum": 0
+ }
+ },
+ {
+ "children": [
+ 3,
+ 4
+ ],
+ "translation": [
+ 0,
+ 0,
+ 0
+ ],
+ "rotation": [
+ 0,
+ 0,
+ 0,
+ 1
+ ],
+ "scale": [
+ 1,
+ 1,
+ 1
+ ],
+ "name": "camera1_group"
+ },
+ {
+ "translation": [
+ 0.003538094,
+ 0.0144712785,
+ 0.0308891125
+ ],
+ "rotation": [
+ 0,
+ 0,
+ 0,
+ 1
+ ],
+ "scale": [
+ 1,
+ 1,
+ 1
+ ],
+ "name": "camera1_aim"
+ },
+ {
+ "camera": 0,
+ "translation": [
+ 3.447969,
+ 4.898194,
+ 8.26071548
+ ],
+ "rotation": [
+ -0.242964819,
+ 0.190752387,
+ 0.04879348,
+ 0.9498425
+ ],
+ "scale": [
+ 1,
+ 1,
+ 1
+ ],
+ "name": "camera1",
+ "extras": {
+ "vect": [
+ 5,
+ 4,
+ 3
+ ],
+ "int": 2,
+ "string": "test",
+ "float": 1.5,
+ "bool": 1,
+ "enum": 1
+ }
+ },
+ {
+ "translation": [
+ 2.425304,
+ 2.810355,
+ 1.88360775
+ ],
+ "rotation": [
+ 0,
+ 0,
+ 0,
+ 1
+ ],
+ "scale": [
+ 1,
+ 1,
+ 1
+ ],
+ "name": "pointLight1",
+ "extras": {
+ "float": 2.3,
+ "vect": [
+ 5,
+ 4,
+ 3.2
+ ],
+ "int": 5,
+ "string": "test",
+ "bool": 1,
+ "enum": 1
+ }
+ }
+ ],
+ "cameras": [
+ {
+ "perspective": {
+ "yfov": 0.6605947,
+ "zfar": 10000,
+ "znear": 0.1
+ },
+ "type": "perspective",
+ "name": "camera1",
+ "extras": {
+ "vect": [
+ 5,
+ 4,
+ 3
+ ],
+ "int": 2,
+ "string": "test",
+ "float": 1.5,
+ "bool": 1,
+ "enum": 1
+ }
+ }
+ ],
+ "meshes": [
+ {
+ "primitives": [
+ {
+ "attributes": {
+ "POSITION": 1,
+ "TANGENT": 2,
+ "NORMAL": 3,
+ "TEXCOORD_0": 4
+ },
+ "indices": 0,
+ "mode": 4,
+ "material": 0
+ }
+ ],
+ "name": "pCube1"
+ }
+ ],
+ "accessors": [
+ {
+ "bufferView": 0,
+ "componentType": 5123,
+ "count": 36,
+ "type": "SCALAR",
+ "name": "accessorIndices"
+ },
+ {
+ "bufferView": 1,
+ "componentType": 5126,
+ "count": 24,
+ "max": [
+ 0.5,
+ 0.5,
+ 0.5
+ ],
+ "min": [
+ -0.5,
+ -0.5,
+ -0.5
+ ],
+ "type": "VEC3",
+ "name": "accessorPositions"
+ },
+ {
+ "bufferView": 2,
+ "componentType": 5126,
+ "count": 24,
+ "type": "VEC4",
+ "name": "accessorTangents"
+ },
+ {
+ "bufferView": 1,
+ "byteOffset": 288,
+ "componentType": 5126,
+ "count": 24,
+ "type": "VEC3",
+ "name": "accessorNormals"
+ },
+ {
+ "bufferView": 3,
+ "componentType": 5126,
+ "count": 24,
+ "type": "VEC2",
+ "name": "accessorUVs"
+ },
+ {
+ "bufferView": 4,
+ "componentType": 5126,
+ "count": 2,
+ "max": [
+ 8.291667
+ ],
+ "min": [
+ 0
+ ],
+ "type": "SCALAR",
+ "name": "accessorAnimationInput"
+ },
+ {
+ "bufferView": 5,
+ "componentType": 5126,
+ "count": 2,
+ "type": "VEC4",
+ "name": "accessorAnimationRotations"
+ },
+ {
+ "bufferView": 4,
+ "byteOffset": 8,
+ "componentType": 5126,
+ "count": 2,
+ "max": [
+ 8.291667
+ ],
+ "min": [
+ 0
+ ],
+ "type": "SCALAR",
+ "name": "accessorAnimationInput"
+ },
+ {
+ "bufferView": 6,
+ "componentType": 5126,
+ "count": 2,
+ "type": "VEC3",
+ "name": "accessorAnimationPositions"
+ }
+ ],
+ "bufferViews": [
+ {
+ "buffer": 0,
+ "byteLength": 72,
+ "name": "bufferViewScalar"
+ },
+ {
+ "buffer": 0,
+ "byteOffset": 72,
+ "byteLength": 576,
+ "byteStride": 12,
+ "name": "bufferViewFloatVec3"
+ },
+ {
+ "buffer": 0,
+ "byteOffset": 648,
+ "byteLength": 384,
+ "byteStride": 16,
+ "name": "bufferViewFloatVec4"
+ },
+ {
+ "buffer": 0,
+ "byteOffset": 1032,
+ "byteLength": 192,
+ "byteStride": 8,
+ "name": "bufferViewFloatVec2"
+ },
+ {
+ "buffer": 0,
+ "byteOffset": 1224,
+ "byteLength": 16,
+ "name": "bufferViewAnimationFloatScalar"
+ },
+ {
+ "buffer": 0,
+ "byteOffset": 1240,
+ "byteLength": 32,
+ "name": "bufferViewAnimationFloatVec4"
+ },
+ {
+ "buffer": 0,
+ "byteOffset": 1272,
+ "byteLength": 24,
+ "name": "bufferViewAnimationFloatVec3"
+ }
+ ],
+ "buffers": [
+ {
+ "uri": "CustomUserAttributes.bin",
+ "byteLength": 1296
+ }
+ ],
+ "materials": [
+ {
+ "pbrMetallicRoughness": {
+ "baseColorFactor": [
+ 0.25,
+ 0.25,
+ 0.25,
+ 1
+ ],
+ "metallicFactor": 0,
+ "roughnessFactor": 0.450053632
+ },
+ "emissiveFactor": [
+ 0,
+ 0,
+ 0
+ ],
+ "alphaMode": "OPAQUE",
+ "name": "lambert1",
+ "extras": {
+ "vect": [
+ 1,
+ 2,
+ 3.5
+ ],
+ "int": 2,
+ "string": "test",
+ "float": 4,
+ "bool": 0,
+ "enum": 1
+ }
+ }
+ ],
+ "animations": [
+ {
+ "channels": [
+ {
+ "sampler": 0,
+ "target": {
+ "node": 4,
+ "path": "rotation"
+ }
+ },
+ {
+ "sampler": 1,
+ "target": {
+ "node": 4,
+ "path": "translation"
+ }
+ }
+ ],
+ "samplers": [
+ {
+ "input": 5,
+ "interpolation": "LINEAR",
+ "output": 6
+ },
+ {
+ "input": 7,
+ "interpolation": "LINEAR",
+ "output": 8
+ }
+ ],
+ "name": "All Animations"
+ }
+ ]
+}
\ No newline at end of file
diff --git a/Maya/Samples/glTF 2.0/DoubleSidedMaterial/BackMaterial_baseColor.png b/Maya/Samples/glTF 2.0/DoubleSidedMaterial/BackMaterial_baseColor.png
new file mode 100644
index 00000000..5af15d0b
Binary files /dev/null and b/Maya/Samples/glTF 2.0/DoubleSidedMaterial/BackMaterial_baseColor.png differ
diff --git a/Maya/Samples/glTF 2.0/DoubleSidedMaterial/DoubleSidedMaterial.bin b/Maya/Samples/glTF 2.0/DoubleSidedMaterial/DoubleSidedMaterial.bin
new file mode 100644
index 00000000..b5f124ff
Binary files /dev/null and b/Maya/Samples/glTF 2.0/DoubleSidedMaterial/DoubleSidedMaterial.bin differ
diff --git a/Maya/Samples/glTF 2.0/DoubleSidedMaterial/DoubleSidedMaterial.gltf b/Maya/Samples/glTF 2.0/DoubleSidedMaterial/DoubleSidedMaterial.gltf
new file mode 100644
index 00000000..69a997e4
--- /dev/null
+++ b/Maya/Samples/glTF 2.0/DoubleSidedMaterial/DoubleSidedMaterial.gltf
@@ -0,0 +1 @@
+{"asset":{"version":"2.0","generator":"babylon.js glTF exporter for Maya 2018 v1.4.0"},"scene":0,"scenes":[{"nodes":[0,1,2,3],"extensions":{}}],"nodes":[{"mesh":0,"translation":[0.0,0.421901762,-0.06339824],"rotation":[0.707106769,0.0,0.0,0.707106769],"scale":[1.0,1.0,1.0],"name":"Plane"},{"mesh":1,"translation":[1.51395357,0.0,0.0],"rotation":[0.0,0.0,0.0,1.0],"scale":[1.0,1.0,1.0],"name":"HalfCube"},{"mesh":2,"translation":[0.0,0.0,2.32959127],"rotation":[0.0,0.0,0.0,1.0],"scale":[1.0,1.0,1.0],"name":"Sphere"},{"translation":[0.0,0.0,0.0],"rotation":[0.0,0.0,0.0,1.0],"scale":[1.0,1.0,1.0],"name":"Default light"}],"meshes":[{"primitives":[{"attributes":{"POSITION":1,"TANGENT":2,"NORMAL":3,"TEXCOORD_0":4},"indices":0,"mode":4,"material":0},{"attributes":{"POSITION":6,"TANGENT":7,"NORMAL":8,"TEXCOORD_0":9},"indices":5,"mode":4,"material":1}],"name":"Plane"},{"primitives":[{"attributes":{"POSITION":11,"TANGENT":12,"NORMAL":13,"TEXCOORD_0":14},"indices":10,"mode":4,"material":0},{"attributes":{"POSITION":16,"TANGENT":17,"NORMAL":18,"TEXCOORD_0":19},"indices":15,"mode":4,"material":1}],"name":"HalfCube"},{"primitives":[{"attributes":{"POSITION":21,"TANGENT":22,"NORMAL":23,"TEXCOORD_0":24},"indices":20,"mode":4,"material":0},{"attributes":{"POSITION":26,"TANGENT":27,"NORMAL":28,"TEXCOORD_0":29},"indices":25,"mode":4,"material":1}],"name":"Sphere"}],"accessors":[{"bufferView":0,"componentType":5123,"count":6,"type":"SCALAR","name":"accessorIndices"},{"bufferView":1,"componentType":5126,"count":4,"max":[0.5,0.0,0.5],"min":[-0.5,0.0,-0.5],"type":"VEC3","name":"accessorPositions"},{"bufferView":2,"componentType":5126,"count":4,"type":"VEC4","name":"accessorTangents"},{"bufferView":1,"byteOffset":48,"componentType":5126,"count":4,"type":"VEC3","name":"accessorNormals"},{"bufferView":3,"componentType":5126,"count":4,"type":"VEC2","name":"accessorUVs"},{"bufferView":0,"byteOffset":12,"componentType":5123,"count":6,"type":"SCALAR","name":"accessorIndices"},{"bufferView":1,"byteOffset":96,"componentType":5126,"count":4,"max":[0.5,0.0,0.5],"min":[-0.5,0.0,-0.5],"type":"VEC3","name":"accessorPositions"},{"bufferView":2,"byteOffset":64,"componentType":5126,"count":4,"type":"VEC4","name":"accessorTangents"},{"bufferView":1,"byteOffset":144,"componentType":5126,"count":4,"type":"VEC3","name":"accessorNormals"},{"bufferView":3,"byteOffset":32,"componentType":5126,"count":4,"type":"VEC2","name":"accessorUVs"},{"bufferView":0,"byteOffset":24,"componentType":5123,"count":18,"type":"SCALAR","name":"accessorIndices"},{"bufferView":1,"byteOffset":192,"componentType":5126,"count":12,"max":[0.5,0.5,0.5],"min":[-0.5,-0.5,-0.5],"type":"VEC3","name":"accessorPositions"},{"bufferView":2,"byteOffset":128,"componentType":5126,"count":12,"type":"VEC4","name":"accessorTangents"},{"bufferView":1,"byteOffset":336,"componentType":5126,"count":12,"type":"VEC3","name":"accessorNormals"},{"bufferView":3,"byteOffset":64,"componentType":5126,"count":12,"type":"VEC2","name":"accessorUVs"},{"bufferView":0,"byteOffset":60,"componentType":5123,"count":18,"type":"SCALAR","name":"accessorIndices"},{"bufferView":1,"byteOffset":480,"componentType":5126,"count":12,"max":[0.5,0.5,0.5],"min":[-0.5,-0.5,-0.5],"type":"VEC3","name":"accessorPositions"},{"bufferView":2,"byteOffset":320,"componentType":5126,"count":12,"type":"VEC4","name":"accessorTangents"},{"bufferView":1,"byteOffset":624,"componentType":5126,"count":12,"type":"VEC3","name":"accessorNormals"},{"bufferView":3,"byteOffset":160,"componentType":5126,"count":12,"type":"VEC2","name":"accessorUVs"},{"bufferView":0,"byteOffset":96,"componentType":5123,"count":2040,"type":"SCALAR","name":"accessorIndices"},{"bufferView":1,"byteOffset":768,"componentType":5126,"count":412,"max":[1.0,1.0,1.00000012],"min":[-1.00000024,-1.0,-0.987688839],"type":"VEC3","name":"accessorPositions"},{"bufferView":2,"byteOffset":512,"componentType":5126,"count":412,"type":"VEC4","name":"accessorTangents"},{"bufferView":1,"byteOffset":5712,"componentType":5126,"count":412,"type":"VEC3","name":"accessorNormals"},{"bufferView":3,"byteOffset":256,"componentType":5126,"count":412,"type":"VEC2","name":"accessorUVs"},{"bufferView":0,"byteOffset":4176,"componentType":5123,"count":2040,"type":"SCALAR","name":"accessorIndices"},{"bufferView":1,"byteOffset":10656,"componentType":5126,"count":412,"max":[1.0,1.0,1.00000012],"min":[-1.00000024,-1.0,-0.987688839],"type":"VEC3","name":"accessorPositions"},{"bufferView":2,"byteOffset":7104,"componentType":5126,"count":412,"type":"VEC4","name":"accessorTangents"},{"bufferView":1,"byteOffset":15600,"componentType":5126,"count":412,"type":"VEC3","name":"accessorNormals"},{"bufferView":3,"byteOffset":3552,"componentType":5126,"count":412,"type":"VEC2","name":"accessorUVs"}],"bufferViews":[{"buffer":0,"byteLength":8256,"name":"bufferViewScalar"},{"buffer":0,"byteOffset":8256,"byteLength":20544,"byteStride":12,"name":"bufferViewFloatVec3"},{"buffer":0,"byteOffset":28800,"byteLength":13696,"byteStride":16,"name":"bufferViewFloatVec4"},{"buffer":0,"byteOffset":42496,"byteLength":6848,"byteStride":8,"name":"bufferViewFloatVec2"}],"buffers":[{"uri":"DoubleSidedMaterial.bin","byteLength":49344}],"materials":[{"pbrMetallicRoughness":{"baseColorFactor":[1.0,1.0,1.0,1.0],"baseColorTexture":{"index":0,"texCoord":0},"metallicFactor":0.0,"roughnessFactor":0.450053632},"emissiveFactor":[0.0,0.0,0.0],"alphaMode":"OPAQUE","name":"FrontMaterial"},{"pbrMetallicRoughness":{"baseColorFactor":[1.0,1.0,1.0,1.0],"baseColorTexture":{"index":1,"texCoord":0},"metallicFactor":0.0,"roughnessFactor":0.450053632},"emissiveFactor":[0.0,0.0,0.0],"alphaMode":"OPAQUE","name":"BackMaterial"}],"textures":[{"sampler":0,"source":0,"name":"FrontMaterial_baseColor.png"},{"sampler":0,"source":1,"name":"BackMaterial_baseColor.png"}],"images":[{"uri":"FrontMaterial_baseColor.png"},{"uri":"BackMaterial_baseColor.png"}],"samplers":[{"magFilter":9729,"minFilter":9987,"wrapS":10497,"wrapT":10497}]}
\ No newline at end of file
diff --git a/Maya/Samples/glTF 2.0/DoubleSidedMaterial/FrontMaterial_baseColor.png b/Maya/Samples/glTF 2.0/DoubleSidedMaterial/FrontMaterial_baseColor.png
new file mode 100644
index 00000000..b9ba8e5f
Binary files /dev/null and b/Maya/Samples/glTF 2.0/DoubleSidedMaterial/FrontMaterial_baseColor.png differ
diff --git a/Maya/Samples/sourceModels/BabylonMaterialAttributes/BackFaceCulling.mb b/Maya/Samples/sourceModels/BabylonMaterialAttributes/BackFaceCulling.mb
new file mode 100644
index 00000000..0f0782bc
Binary files /dev/null and b/Maya/Samples/sourceModels/BabylonMaterialAttributes/BackFaceCulling.mb differ
diff --git a/Maya/Samples/sourceModels/BabylonMaterialAttributes/Default.mb b/Maya/Samples/sourceModels/BabylonMaterialAttributes/Default.mb
new file mode 100644
index 00000000..a790678a
Binary files /dev/null and b/Maya/Samples/sourceModels/BabylonMaterialAttributes/Default.mb differ
diff --git a/Maya/Samples/sourceModels/BabylonMaterialAttributes/Default_afterExport.mb b/Maya/Samples/sourceModels/BabylonMaterialAttributes/Default_afterExport.mb
new file mode 100644
index 00000000..f19754fa
Binary files /dev/null and b/Maya/Samples/sourceModels/BabylonMaterialAttributes/Default_afterExport.mb differ
diff --git a/Maya/Samples/sourceModels/BabylonMaterialAttributes/MaxSimultaneousLights.mb b/Maya/Samples/sourceModels/BabylonMaterialAttributes/MaxSimultaneousLights.mb
new file mode 100644
index 00000000..e7703516
Binary files /dev/null and b/Maya/Samples/sourceModels/BabylonMaterialAttributes/MaxSimultaneousLights.mb differ
diff --git a/Maya/Samples/sourceModels/BabylonMaterialAttributes/TransparencyMode/TransparencyMode_Blend.mb b/Maya/Samples/sourceModels/BabylonMaterialAttributes/TransparencyMode/TransparencyMode_Blend.mb
new file mode 100644
index 00000000..8c81070b
Binary files /dev/null and b/Maya/Samples/sourceModels/BabylonMaterialAttributes/TransparencyMode/TransparencyMode_Blend.mb differ
diff --git a/Maya/Samples/sourceModels/BabylonMaterialAttributes/TransparencyMode/TransparencyMode_Mask.mb b/Maya/Samples/sourceModels/BabylonMaterialAttributes/TransparencyMode/TransparencyMode_Mask.mb
new file mode 100644
index 00000000..03969ab6
Binary files /dev/null and b/Maya/Samples/sourceModels/BabylonMaterialAttributes/TransparencyMode/TransparencyMode_Mask.mb differ
diff --git a/Maya/Samples/sourceModels/BabylonMaterialAttributes/TransparencyMode/TransparencyMode_Opaque.mb b/Maya/Samples/sourceModels/BabylonMaterialAttributes/TransparencyMode/TransparencyMode_Opaque.mb
new file mode 100644
index 00000000..c0c9eb04
Binary files /dev/null and b/Maya/Samples/sourceModels/BabylonMaterialAttributes/TransparencyMode/TransparencyMode_Opaque.mb differ
diff --git a/Maya/Samples/sourceModels/BabylonMaterialAttributes/TransparencyMode/diffuse_green_opacity_gradation_horizontal.png b/Maya/Samples/sourceModels/BabylonMaterialAttributes/TransparencyMode/diffuse_green_opacity_gradation_horizontal.png
new file mode 100644
index 00000000..c4b0e568
Binary files /dev/null and b/Maya/Samples/sourceModels/BabylonMaterialAttributes/TransparencyMode/diffuse_green_opacity_gradation_horizontal.png differ
diff --git a/Maya/Samples/sourceModels/BabylonMaterialAttributes/TransparencyMode/gradation_horizontal.jpg b/Maya/Samples/sourceModels/BabylonMaterialAttributes/TransparencyMode/gradation_horizontal.jpg
new file mode 100644
index 00000000..7437068c
Binary files /dev/null and b/Maya/Samples/sourceModels/BabylonMaterialAttributes/TransparencyMode/gradation_horizontal.jpg differ
diff --git a/Maya/Samples/sourceModels/BabylonMaterialAttributes/TransparencyMode/green.jpg b/Maya/Samples/sourceModels/BabylonMaterialAttributes/TransparencyMode/green.jpg
new file mode 100644
index 00000000..b3c3be04
Binary files /dev/null and b/Maya/Samples/sourceModels/BabylonMaterialAttributes/TransparencyMode/green.jpg differ
diff --git a/Maya/Samples/sourceModels/BabylonMaterialAttributes/Unlit.mb b/Maya/Samples/sourceModels/BabylonMaterialAttributes/Unlit.mb
new file mode 100644
index 00000000..8b546b61
Binary files /dev/null and b/Maya/Samples/sourceModels/BabylonMaterialAttributes/Unlit.mb differ
diff --git a/Maya/Samples/sourceModels/CustomUserAttributes/CustomUserAttributes.mb b/Maya/Samples/sourceModels/CustomUserAttributes/CustomUserAttributes.mb
new file mode 100644
index 00000000..1807bc00
Binary files /dev/null and b/Maya/Samples/sourceModels/CustomUserAttributes/CustomUserAttributes.mb differ
diff --git a/Maya/Samples/sourceModels/DoubleSidedMaterial/DoubleSidedMaterial.mb b/Maya/Samples/sourceModels/DoubleSidedMaterial/DoubleSidedMaterial.mb
new file mode 100644
index 00000000..22ea781b
Binary files /dev/null and b/Maya/Samples/sourceModels/DoubleSidedMaterial/DoubleSidedMaterial.mb differ
diff --git a/Maya/Samples/sourceModels/DoubleSidedMaterial/TestImage.png b/Maya/Samples/sourceModels/DoubleSidedMaterial/TestImage.png
new file mode 100644
index 00000000..a951b93f
Binary files /dev/null and b/Maya/Samples/sourceModels/DoubleSidedMaterial/TestImage.png differ
diff --git a/Maya/Samples/sourceModels/DoubleSidedMaterial/TestImage.tx b/Maya/Samples/sourceModels/DoubleSidedMaterial/TestImage.tx
new file mode 100644
index 00000000..d22474f0
Binary files /dev/null and b/Maya/Samples/sourceModels/DoubleSidedMaterial/TestImage.tx differ
diff --git a/Maya/Samples/sourceModels/DoubleSidedMaterial/Warhol.jpg b/Maya/Samples/sourceModels/DoubleSidedMaterial/Warhol.jpg
new file mode 100644
index 00000000..a4a365c8
Binary files /dev/null and b/Maya/Samples/sourceModels/DoubleSidedMaterial/Warhol.jpg differ
diff --git a/Maya/Samples/sourceModels/DoubleSidedMaterial/Warhol.tx b/Maya/Samples/sourceModels/DoubleSidedMaterial/Warhol.tx
new file mode 100644
index 00000000..8ce70a61
Binary files /dev/null and b/Maya/Samples/sourceModels/DoubleSidedMaterial/Warhol.tx differ
diff --git a/SharedProjects/Babylon2GLTF/GLTFExporter.Camera.cs b/SharedProjects/Babylon2GLTF/GLTFExporter.Camera.cs
index 6a7cbc8b..3e572a2f 100644
--- a/SharedProjects/Babylon2GLTF/GLTFExporter.Camera.cs
+++ b/SharedProjects/Babylon2GLTF/GLTFExporter.Camera.cs
@@ -1,5 +1,6 @@
using BabylonExport.Entities;
using GLTFExport.Entities;
+using System.Collections.Generic;
namespace Babylon2GLTF
{
@@ -33,6 +34,12 @@ private GLTFCamera ExportCamera(ref GLTFNode gltfNode, BabylonCamera babylonCame
gltfNode.camera = gltfCamera.index;
gltfCamera.gltfNode = gltfNode;
+ // Custom user properties
+ if(babylonCamera.metadata != null && babylonCamera.metadata.Count != 0)
+ {
+ gltfCamera.extras = babylonCamera.metadata;
+ }
+
// Camera type
switch (babylonCamera.mode)
{
diff --git a/SharedProjects/Babylon2GLTF/GLTFExporter.Light.cs b/SharedProjects/Babylon2GLTF/GLTFExporter.Light.cs
index daa4c057..96f842a1 100644
--- a/SharedProjects/Babylon2GLTF/GLTFExporter.Light.cs
+++ b/SharedProjects/Babylon2GLTF/GLTFExporter.Light.cs
@@ -30,6 +30,12 @@ private int AddLightExtension(ref GLTF gltf, BabylonLight babylonLight)
intensity = babylonLight.intensity,
};
+ // Custom user properties
+ if (babylonLight.metadata != null && babylonLight.metadata.Count != 0)
+ {
+ light.extras = babylonLight.metadata;
+ }
+
switch (babylonLight.type)
{
case (0): // point
@@ -82,6 +88,13 @@ private int AddLightExtension(ref GLTF gltf, BabylonLight babylonLight)
private GLTFNode ExportLight(ref GLTFNode gltfNode, BabylonLight babylonLight, GLTF gltf, GLTFNode gltfParentNode, BabylonScene babylonScene)
{
+
+ // Custom user properties
+ if (babylonLight.metadata != null && babylonLight.metadata.Count != 0)
+ {
+ gltfNode.extras = babylonLight.metadata;
+ }
+
if (exportParameters.enableKHRLightsPunctual)
{
if (babylonLight.type == 3) // ambient light
diff --git a/SharedProjects/Babylon2GLTF/GLTFExporter.Material.cs b/SharedProjects/Babylon2GLTF/GLTFExporter.Material.cs
index 55569e45..1c4a3496 100644
--- a/SharedProjects/Babylon2GLTF/GLTFExporter.Material.cs
+++ b/SharedProjects/Babylon2GLTF/GLTFExporter.Material.cs
@@ -1,228 +1,238 @@
-using BabylonExport.Entities;
-using Utilities;
-using GLTFExport.Entities;
-using System;
-using System.Drawing;
-using System.IO;
-using Utilities;
-
-namespace Babylon2GLTF
-{
- partial class GLTFExporter
- {
- private void ExportMaterial(BabylonMaterial babylonMaterial, GLTF gltf)
- {
- var name = babylonMaterial.name;
- var id = babylonMaterial.id;
+using BabylonExport.Entities;
+using Utilities;
+using GLTFExport.Entities;
+using System;
+using System.Drawing;
+using System.IO;
+using System.Collections.Generic;
+using Utilities;
+
+namespace Babylon2GLTF
+{
+ partial class GLTFExporter
+ {
+ private void ExportMaterial(BabylonMaterial babylonMaterial, GLTF gltf)
+ {
+ var name = babylonMaterial.name;
+ var id = babylonMaterial.id;
logger.RaiseMessage("GLTFExporter.Material | Export material named: " + name, 1);
-
- GLTFMaterial gltfMaterial = null;
- string message = null;
- IGLTFMaterialExporter customMaterialExporter = exportParameters.customGLTFMaterialExporter;
+
+ GLTFMaterial gltfMaterial = null;
+ string message = null;
+ IGLTFMaterialExporter customMaterialExporter = exportParameters.customGLTFMaterialExporter;
if (customMaterialExporter != null && customMaterialExporter.GetGltfMaterial(babylonMaterial, gltf, logger, out gltfMaterial))
{
gltfMaterial.index = gltf.MaterialsList.Count;
gltf.MaterialsList.Add(gltfMaterial);
- }
- else if (babylonMaterial.GetType() == typeof(BabylonStandardMaterial))
- {
- var babylonStandardMaterial = babylonMaterial as BabylonStandardMaterial;
-
-
- // --- prints ---
- #region prints
-
- logger.RaiseVerbose("GLTFExporter.Material | babylonMaterial data", 2);
- logger.RaiseVerbose("GLTFExporter.Material | babylonMaterial.alpha=" + babylonMaterial.alpha, 3);
- logger.RaiseVerbose("GLTFExporter.Material | babylonMaterial.alphaMode=" + babylonMaterial.alphaMode, 3);
- logger.RaiseVerbose("GLTFExporter.Material | babylonMaterial.backFaceCulling=" + babylonMaterial.backFaceCulling, 3);
- logger.RaiseVerbose("GLTFExporter.Material | babylonMaterial.wireframe=" + babylonMaterial.wireframe, 3);
-
- // Ambient
- for (int i = 0; i < babylonStandardMaterial.ambient.Length; i++)
- {
- logger.RaiseVerbose("GLTFExporter.Material | babylonStandardMaterial.ambient[" + i + "]=" + babylonStandardMaterial.ambient[i], 3);
- }
-
- // Diffuse
- logger.RaiseVerbose("GLTFExporter.Material | babylonStandardMaterial.diffuse.Length=" + babylonStandardMaterial.diffuse.Length, 3);
- for (int i = 0; i < babylonStandardMaterial.diffuse.Length; i++)
- {
- logger.RaiseVerbose("GLTFExporter.Material | babylonStandardMaterial.diffuse[" + i + "]=" + babylonStandardMaterial.diffuse[i], 3);
- }
- if (babylonStandardMaterial.diffuseTexture == null)
- {
- logger.RaiseVerbose("GLTFExporter.Material | babylonStandardMaterial.diffuseTexture=null", 3);
- }
- else
- {
- logger.RaiseVerbose("GLTFExporter.Material | babylonStandardMaterial.diffuseTexture.name=" + babylonStandardMaterial.diffuseTexture.name, 3);
- }
-
- // Normal / bump
- if (babylonStandardMaterial.bumpTexture == null)
- {
- logger.RaiseVerbose("GLTFExporter.Material | babylonStandardMaterial.bumpTexture=null", 3);
- }
- else
- {
- logger.RaiseVerbose("GLTFExporter.Material | babylonStandardMaterial.bumpTexture.name=" + babylonStandardMaterial.bumpTexture.name, 3);
- }
-
- // Opacity
- if (babylonStandardMaterial.opacityTexture == null)
- {
- logger.RaiseVerbose("GLTFExporter.Material | babylonStandardMaterial.opacityTexture=null", 3);
- }
- else
- {
- logger.RaiseVerbose("GLTFExporter.Material | babylonStandardMaterial.opacityTexture.name=" + babylonStandardMaterial.opacityTexture.name, 3);
- }
-
- // Specular
- for (int i = 0; i < babylonStandardMaterial.specular.Length; i++)
- {
- logger.RaiseVerbose("GLTFExporter.Material | babylonStandardMaterial.specular[" + i + "]=" + babylonStandardMaterial.specular[i], 3);
- }
- logger.RaiseVerbose("GLTFExporter.Material | babylonStandardMaterial.specularPower=" + babylonStandardMaterial.specularPower, 3);
- if (babylonStandardMaterial.specularTexture == null)
- {
- logger.RaiseVerbose("GLTFExporter.Material | babylonStandardMaterial.specularTexture=null", 3);
- }
- else
- {
- logger.RaiseVerbose("GLTFExporter.Material | babylonStandardMaterial.specularTexture.name=" + babylonStandardMaterial.specularTexture.name, 3);
- }
-
- // Occlusion
- if (babylonStandardMaterial.ambientTexture == null)
- {
- logger.RaiseVerbose("GLTFExporter.Material | babylonStandardMaterial.ambientTexture=null", 3);
- }
- else
- {
- logger.RaiseVerbose("GLTFExporter.Material | babylonStandardMaterial.ambientTexture.name=" + babylonStandardMaterial.ambientTexture.name, 3);
- }
-
- // Emissive
- for (int i = 0; i < babylonStandardMaterial.emissive.Length; i++)
- {
- logger.RaiseVerbose("GLTFExporter.Material | babylonStandardMaterial.emissive[" + i + "]=" + babylonStandardMaterial.emissive[i], 3);
- }
- if (babylonStandardMaterial.emissiveTexture == null)
- {
- logger.RaiseVerbose("GLTFExporter.Material | babylonStandardMaterial.emissiveTexture=null", 3);
- }
- else
- {
- logger.RaiseVerbose("GLTFExporter.Material | babylonStandardMaterial.emissiveTexture.name=" + babylonStandardMaterial.emissiveTexture.name, 3);
- }
- #endregion
-
-
- // --------------------------------
- // --------- gltfMaterial ---------
- // --------------------------------
-
- logger.RaiseMessage("GLTFExporter.Material | create gltfMaterial", 2);
- gltfMaterial = new GLTFMaterial
- {
- name = name
- };
- gltfMaterial.id = babylonMaterial.id;
- gltfMaterial.index = gltf.MaterialsList.Count;
- gltf.MaterialsList.Add(gltfMaterial);
-
- // Alpha
- string alphaMode;
- float? alphaCutoff;
- getAlphaMode(babylonStandardMaterial, out alphaMode, out alphaCutoff);
- gltfMaterial.alphaMode = alphaMode;
- gltfMaterial.alphaCutoff = alphaCutoff;
-
- // DoubleSided
- gltfMaterial.doubleSided = !babylonMaterial.backFaceCulling;
-
- // Normal
- gltfMaterial.normalTexture = ExportTexture(babylonStandardMaterial.bumpTexture, gltf);
-
- // Occulison
- gltfMaterial.occlusionTexture = ExportTexture(babylonStandardMaterial.ambientTexture, gltf);
-
- // Emissive
- gltfMaterial.emissiveFactor = babylonStandardMaterial.emissive;
- // linkEmissiveWithDiffuse attribute doesn't have an equivalent in gltf format
- // When true, the emissive texture needs to be manually multiplied with diffuse texture
- // Otherwise, the emissive texture is assumed to be already pre-multiplied
- if (babylonStandardMaterial.linkEmissiveWithDiffuse)
- {
- // Even when no emissive texture is provided, the self illumination value needs to be multiplied to the diffuse texture in order to get the pre-multiplied emissive (texture)
- if (babylonStandardMaterial.emissiveTexture != null || babylonStandardMaterial.selfIllum > 0)
- {
- // Default emissive is the raw value of the self illumination
- // It is not the babylon emissive value which is already pre-multiplied with diffuse color
- float[] defaultEmissive = new float[] { 1, 1, 1 }.Multiply(babylonStandardMaterial.selfIllum);
- gltfMaterial.emissiveTexture = ExportEmissiveTexture(babylonStandardMaterial, gltf, defaultEmissive, babylonStandardMaterial.diffuse);
- }
- }
- else
- {
- gltfMaterial.emissiveTexture = ExportTexture(babylonStandardMaterial.emissiveTexture, gltf);
- }
-
- // Constraints
- if (gltfMaterial.emissiveTexture != null)
- {
- gltfMaterial.emissiveFactor = new[] { 1.0f, 1.0f, 1.0f };
- }
-
- // --------------------------------
- // --- gltfPbrMetallicRoughness ---
- // --------------------------------
-
- logger.RaiseMessage("GLTFExporter.Material | create gltfPbrMetallicRoughness", 2);
- var gltfPbrMetallicRoughness = new GLTFPBRMetallicRoughness();
- gltfMaterial.pbrMetallicRoughness = gltfPbrMetallicRoughness;
-
- // --- Global ---
-
- // Eye Ball correction to limit overall brightness from std to PBR.
- // This only impacts the factors.
- var correctedDiffuse = new BabylonColor3(babylonStandardMaterial.diffuse).scale(0.5f);
-
- SpecularGlossiness _specularGlossiness = new SpecularGlossiness
- {
- diffuse = correctedDiffuse,
- opacity = babylonMaterial.alpha,
- specular = new BabylonColor3(babylonStandardMaterial.specular),
- glossiness = babylonStandardMaterial.specularPower / 256
- };
-
- MetallicRoughness _metallicRoughness = ConvertToMetallicRoughness(_specularGlossiness, true);
-
- // Base color
- gltfPbrMetallicRoughness.baseColorFactor = new float[4]
- {
- _metallicRoughness.baseColor.r,
- _metallicRoughness.baseColor.g,
- _metallicRoughness.baseColor.b,
- _metallicRoughness.opacity
- };
-
- // Metallic roughness
- gltfPbrMetallicRoughness.metallicFactor = _metallicRoughness.metallic;
- gltfPbrMetallicRoughness.roughnessFactor = _metallicRoughness.roughness;
-
-
- // --- Textures ---
- var babylonTexture = babylonStandardMaterial.diffuseTexture != null ? babylonStandardMaterial.diffuseTexture :
- babylonStandardMaterial.specularTexture != null ? babylonStandardMaterial.specularTexture :
- babylonStandardMaterial.opacityTexture != null ? babylonStandardMaterial.opacityTexture :
- null;
-
- if (babylonTexture != null)
- {
- //Check if the texture already exist
+ }
+ else if (babylonMaterial.GetType() == typeof(BabylonStandardMaterial))
+ {
+ var babylonStandardMaterial = babylonMaterial as BabylonStandardMaterial;
+
+
+ // --- prints ---
+ #region prints
+
+ logger.RaiseVerbose("GLTFExporter.Material | babylonMaterial data", 2);
+ logger.RaiseVerbose("GLTFExporter.Material | babylonMaterial.alpha=" + babylonMaterial.alpha, 3);
+ logger.RaiseVerbose("GLTFExporter.Material | babylonMaterial.alphaMode=" + babylonMaterial.alphaMode, 3);
+ logger.RaiseVerbose("GLTFExporter.Material | babylonMaterial.backFaceCulling=" + babylonMaterial.backFaceCulling, 3);
+ logger.RaiseVerbose("GLTFExporter.Material | babylonMaterial.wireframe=" + babylonMaterial.wireframe, 3);
+
+ // Ambient
+ for (int i = 0; i < babylonStandardMaterial.ambient.Length; i++)
+ {
+ logger.RaiseVerbose("GLTFExporter.Material | babylonStandardMaterial.ambient[" + i + "]=" + babylonStandardMaterial.ambient[i], 3);
+ }
+
+ // Diffuse
+ logger.RaiseVerbose("GLTFExporter.Material | babylonStandardMaterial.diffuse.Length=" + babylonStandardMaterial.diffuse.Length, 3);
+ for (int i = 0; i < babylonStandardMaterial.diffuse.Length; i++)
+ {
+ logger.RaiseVerbose("GLTFExporter.Material | babylonStandardMaterial.diffuse[" + i + "]=" + babylonStandardMaterial.diffuse[i], 3);
+ }
+ if (babylonStandardMaterial.diffuseTexture == null)
+ {
+ logger.RaiseVerbose("GLTFExporter.Material | babylonStandardMaterial.diffuseTexture=null", 3);
+ }
+ else
+ {
+ logger.RaiseVerbose("GLTFExporter.Material | babylonStandardMaterial.diffuseTexture.name=" + babylonStandardMaterial.diffuseTexture.name, 3);
+ }
+
+ // Normal / bump
+ if (babylonStandardMaterial.bumpTexture == null)
+ {
+ logger.RaiseVerbose("GLTFExporter.Material | babylonStandardMaterial.bumpTexture=null", 3);
+ }
+ else
+ {
+ logger.RaiseVerbose("GLTFExporter.Material | babylonStandardMaterial.bumpTexture.name=" + babylonStandardMaterial.bumpTexture.name, 3);
+ }
+
+ // Opacity
+ if (babylonStandardMaterial.opacityTexture == null)
+ {
+ logger.RaiseVerbose("GLTFExporter.Material | babylonStandardMaterial.opacityTexture=null", 3);
+ }
+ else
+ {
+ logger.RaiseVerbose("GLTFExporter.Material | babylonStandardMaterial.opacityTexture.name=" + babylonStandardMaterial.opacityTexture.name, 3);
+ }
+
+ // Specular
+ for (int i = 0; i < babylonStandardMaterial.specular.Length; i++)
+ {
+ logger.RaiseVerbose("GLTFExporter.Material | babylonStandardMaterial.specular[" + i + "]=" + babylonStandardMaterial.specular[i], 3);
+ }
+ logger.RaiseVerbose("GLTFExporter.Material | babylonStandardMaterial.specularPower=" + babylonStandardMaterial.specularPower, 3);
+ if (babylonStandardMaterial.specularTexture == null)
+ {
+ logger.RaiseVerbose("GLTFExporter.Material | babylonStandardMaterial.specularTexture=null", 3);
+ }
+ else
+ {
+ logger.RaiseVerbose("GLTFExporter.Material | babylonStandardMaterial.specularTexture.name=" + babylonStandardMaterial.specularTexture.name, 3);
+ }
+
+ // Occlusion
+ if (babylonStandardMaterial.ambientTexture == null)
+ {
+ logger.RaiseVerbose("GLTFExporter.Material | babylonStandardMaterial.ambientTexture=null", 3);
+ }
+ else
+ {
+ logger.RaiseVerbose("GLTFExporter.Material | babylonStandardMaterial.ambientTexture.name=" + babylonStandardMaterial.ambientTexture.name, 3);
+ }
+
+ // Emissive
+ for (int i = 0; i < babylonStandardMaterial.emissive.Length; i++)
+ {
+ logger.RaiseVerbose("GLTFExporter.Material | babylonStandardMaterial.emissive[" + i + "]=" + babylonStandardMaterial.emissive[i], 3);
+ }
+ if (babylonStandardMaterial.emissiveTexture == null)
+ {
+ logger.RaiseVerbose("GLTFExporter.Material | babylonStandardMaterial.emissiveTexture=null", 3);
+ }
+ else
+ {
+ logger.RaiseVerbose("GLTFExporter.Material | babylonStandardMaterial.emissiveTexture.name=" + babylonStandardMaterial.emissiveTexture.name, 3);
+ }
+ #endregion
+
+
+ // --------------------------------
+ // --------- gltfMaterial ---------
+ // --------------------------------
+
+ logger.RaiseMessage("GLTFExporter.Material | create gltfMaterial", 2);
+ gltfMaterial = new GLTFMaterial
+ {
+ name = name
+ };
+ gltfMaterial.id = babylonMaterial.id;
+ gltfMaterial.index = gltf.MaterialsList.Count;
+ gltf.MaterialsList.Add(gltfMaterial);
+
+ //Custom user properties
+ if (babylonStandardMaterial.metadata != null && babylonStandardMaterial.metadata.Count != 0)
+ {
+ gltfMaterial.extras = babylonStandardMaterial.metadata;
+ }
+
+ // Alpha
+ string alphaMode;
+ float? alphaCutoff;
+ getAlphaMode(babylonStandardMaterial, out alphaMode, out alphaCutoff);
+ gltfMaterial.alphaMode = alphaMode;
+ if (alphaCutoff.HasValue && alphaCutoff.Value != 0.5f) // do not export glTF default value
+ {
+ gltfMaterial.alphaCutoff = alphaCutoff;
+ }
+
+ // DoubleSided
+ gltfMaterial.doubleSided = !babylonMaterial.backFaceCulling;
+
+ // Normal
+ gltfMaterial.normalTexture = ExportTexture(babylonStandardMaterial.bumpTexture, gltf);
+
+ // Occulison
+ gltfMaterial.occlusionTexture = ExportTexture(babylonStandardMaterial.ambientTexture, gltf);
+
+ // Emissive
+ gltfMaterial.emissiveFactor = babylonStandardMaterial.emissive;
+ // linkEmissiveWithDiffuse attribute doesn't have an equivalent in gltf format
+ // When true, the emissive texture needs to be manually multiplied with diffuse texture
+ // Otherwise, the emissive texture is assumed to be already pre-multiplied
+ if (babylonStandardMaterial.linkEmissiveWithDiffuse)
+ {
+ // Even when no emissive texture is provided, the self illumination value needs to be multiplied to the diffuse texture in order to get the pre-multiplied emissive (texture)
+ if (babylonStandardMaterial.emissiveTexture != null || babylonStandardMaterial.selfIllum > 0)
+ {
+ // Default emissive is the raw value of the self illumination
+ // It is not the babylon emissive value which is already pre-multiplied with diffuse color
+ float[] defaultEmissive = new float[] { 1, 1, 1 }.Multiply(babylonStandardMaterial.selfIllum);
+ gltfMaterial.emissiveTexture = ExportEmissiveTexture(babylonStandardMaterial, gltf, defaultEmissive, babylonStandardMaterial.diffuse);
+ }
+ }
+ else
+ {
+ gltfMaterial.emissiveTexture = ExportTexture(babylonStandardMaterial.emissiveTexture, gltf);
+ }
+
+ // Constraints
+ if (gltfMaterial.emissiveTexture != null)
+ {
+ gltfMaterial.emissiveFactor = new[] { 1.0f, 1.0f, 1.0f };
+ }
+
+ // --------------------------------
+ // --- gltfPbrMetallicRoughness ---
+ // --------------------------------
+
+ logger.RaiseMessage("GLTFExporter.Material | create gltfPbrMetallicRoughness", 2);
+ var gltfPbrMetallicRoughness = new GLTFPBRMetallicRoughness();
+ gltfMaterial.pbrMetallicRoughness = gltfPbrMetallicRoughness;
+
+ // --- Global ---
+
+ // Eye Ball correction to limit overall brightness from std to PBR.
+ // This only impacts the factors.
+ var correctedDiffuse = new BabylonColor3(babylonStandardMaterial.diffuse).scale(0.5f);
+
+ SpecularGlossiness _specularGlossiness = new SpecularGlossiness
+ {
+ diffuse = correctedDiffuse,
+ opacity = babylonMaterial.alpha,
+ specular = new BabylonColor3(babylonStandardMaterial.specular),
+ glossiness = babylonStandardMaterial.specularPower / 256
+ };
+
+ MetallicRoughness _metallicRoughness = ConvertToMetallicRoughness(_specularGlossiness, true);
+
+ // Base color
+ gltfPbrMetallicRoughness.baseColorFactor = new float[4]
+ {
+ _metallicRoughness.baseColor.r,
+ _metallicRoughness.baseColor.g,
+ _metallicRoughness.baseColor.b,
+ _metallicRoughness.opacity
+ };
+
+ // Metallic roughness
+ gltfPbrMetallicRoughness.metallicFactor = _metallicRoughness.metallic;
+ gltfPbrMetallicRoughness.roughnessFactor = _metallicRoughness.roughness;
+
+
+ // --- Textures ---
+ var babylonTexture = babylonStandardMaterial.diffuseTexture != null ? babylonStandardMaterial.diffuseTexture :
+ babylonStandardMaterial.specularTexture != null ? babylonStandardMaterial.specularTexture :
+ babylonStandardMaterial.opacityTexture != null ? babylonStandardMaterial.opacityTexture :
+ null;
+
+ if (babylonTexture != null)
+ {
+ //Check if the texture already exist
var _key = SetStandText(babylonStandardMaterial);
if (GetStandTextInfo(_key) != null)
@@ -230,7 +240,7 @@ private void ExportMaterial(BabylonMaterial babylonMaterial, GLTF gltf)
var _pairBCMR = GetStandTextInfo(_key);
gltfPbrMetallicRoughness.baseColorTexture = _pairBCMR.baseColor;
gltfPbrMetallicRoughness.metallicRoughnessTexture = _pairBCMR.metallicRoughness;
- }
+ }
else
{
@@ -249,7 +259,16 @@ private void ExportMaterial(BabylonMaterial babylonMaterial, GLTF gltf)
Bitmap diffuseBitmap = null;
if (babylonStandardMaterial.diffuseTexture != null)
{
- diffuseBitmap = TextureUtilities.LoadTexture(babylonStandardMaterial.diffuseTexture.originalPath, logger);
+ if (babylonStandardMaterial.diffuseTexture.bitmap != null)
+ {
+ // Diffuse color map has been computed by the exporter
+ diffuseBitmap = babylonStandardMaterial.diffuseTexture.bitmap;
+ }
+ else
+ {
+ // Diffuse color map is straight input
+ diffuseBitmap = TextureUtilities.LoadTexture(babylonStandardMaterial.diffuseTexture.originalPath, logger);
+ }
}
// Specular
@@ -335,13 +354,15 @@ private void ExportMaterial(BabylonMaterial babylonMaterial, GLTF gltf)
//export textures
if (baseColorBitmap != null || babylonTexture.bitmap != null)
{
- textureInfoBC = ExportBitmapTexture(gltf, babylonTexture, baseColorBitmap);
+ string baseColorTextureName = name + "_baseColor" + ".png"; // TODO - unsafe name, may conflict with another texture name
+ textureInfoBC = ExportBitmapTexture(gltf, babylonTexture, baseColorBitmap, baseColorTextureName);
gltfPbrMetallicRoughness.baseColorTexture = textureInfoBC;
}
if (isTextureOk(babylonStandardMaterial.specularTexture))
{
- textureInfoMR = ExportBitmapTexture(gltf, babylonTexture, metallicRoughnessBitmap);
+ string metallicRoughnessTextureName = name + "_metallicRoughness" + ".jpg"; // TODO - unsafe name, may conflict with another texture name
+ textureInfoMR = ExportBitmapTexture(gltf, babylonTexture, metallicRoughnessBitmap, metallicRoughnessTextureName);
gltfPbrMetallicRoughness.metallicRoughnessTexture = textureInfoMR;
}
@@ -359,386 +380,393 @@ private void ExportMaterial(BabylonMaterial babylonMaterial, GLTF gltf)
{
gltfPbrMetallicRoughness.metallicFactor = 1.0f;
gltfPbrMetallicRoughness.roughnessFactor = 1.0f;
- }
- }
- }
- else if (babylonMaterial.GetType() == typeof(BabylonPBRMetallicRoughnessMaterial))
- {
- var babylonPBRMetallicRoughnessMaterial = babylonMaterial as BabylonPBRMetallicRoughnessMaterial;
- // --- prints ---
- #region prints
-
- logger.RaiseVerbose("GLTFExporter.Material | babylonMaterial data", 2);
- logger.RaiseVerbose("GLTFExporter.Material | babylonMaterial.alpha=" + babylonMaterial.alpha, 3);
- logger.RaiseVerbose("GLTFExporter.Material | babylonMaterial.alphaMode=" + babylonMaterial.alphaMode, 3);
- logger.RaiseVerbose("GLTFExporter.Material | babylonMaterial.backFaceCulling=" + babylonMaterial.backFaceCulling, 3);
- logger.RaiseVerbose("GLTFExporter.Material | babylonMaterial.wireframe=" + babylonMaterial.wireframe, 3);
-
- // Global
- logger.RaiseVerbose("GLTFExporter.Material | babylonPBRMetallicRoughnessMaterial.maxSimultaneousLights=" + babylonPBRMetallicRoughnessMaterial.maxSimultaneousLights, 3);
- logger.RaiseVerbose("GLTFExporter.Material | babylonPBRMetallicRoughnessMaterial.disableLighting=" + babylonPBRMetallicRoughnessMaterial.disableLighting, 3);
- logger.RaiseVerbose("GLTFExporter.Material | babylonPBRMetallicRoughnessMaterial.alphaCutOff=" + babylonPBRMetallicRoughnessMaterial.alphaCutOff, 3);
- logger.RaiseVerbose("GLTFExporter.Material | babylonPBRMetallicRoughnessMaterial.transparencyMode=" + babylonPBRMetallicRoughnessMaterial.transparencyMode, 3);
- logger.RaiseVerbose("GLTFExporter.Material | babylonPBRMetallicRoughnessMaterial.doubleSided=" + babylonPBRMetallicRoughnessMaterial.doubleSided, 3);
-
- // Base color
- logger.RaiseVerbose("GLTFExporter.Material | babylonPBRMetallicRoughnessMaterial.baseColor.Length=" + babylonPBRMetallicRoughnessMaterial.baseColor.Length, 3);
- for (int i = 0; i < babylonPBRMetallicRoughnessMaterial.baseColor.Length; i++)
- {
- logger.RaiseVerbose("GLTFExporter.Material | babylonPBRMetallicRoughnessMaterial.baseColor[" + i + "]=" + babylonPBRMetallicRoughnessMaterial.baseColor[i], 3);
- }
- if (babylonPBRMetallicRoughnessMaterial.baseTexture == null)
- {
- logger.RaiseVerbose("GLTFExporter.Material | babylonPBRMetallicRoughnessMaterial.baseTexture=null", 3);
- }
-
- // Metallic+roughness
- logger.RaiseVerbose("GLTFExporter.Material | babylonPBRMetallicRoughnessMaterial.metallic=" + babylonPBRMetallicRoughnessMaterial.metallic, 3);
- logger.RaiseVerbose("GLTFExporter.Material | babylonPBRMetallicRoughnessMaterial.roughness=" + babylonPBRMetallicRoughnessMaterial.roughness, 3);
- if (babylonPBRMetallicRoughnessMaterial.metallicRoughnessTexture == null)
- {
- logger.RaiseVerbose("GLTFExporter.Material | babylonPBRMetallicRoughnessMaterial.metallicRoughnessTexture=null", 3);
- }
-
- // Normal / bump
- if (babylonPBRMetallicRoughnessMaterial.normalTexture == null)
- {
- logger.RaiseVerbose("GLTFExporter.Material | babylonPBRMetallicRoughnessMaterial.normalTexture=null", 3);
- }
- logger.RaiseVerbose("GLTFExporter.Material | babylonPBRMetallicRoughnessMaterial.invertNormalMapX=" + babylonPBRMetallicRoughnessMaterial.invertNormalMapX, 3);
- logger.RaiseVerbose("GLTFExporter.Material | babylonPBRMetallicRoughnessMaterial.invertNormalMapY=" + babylonPBRMetallicRoughnessMaterial.invertNormalMapY, 3);
-
- // Emissive
- for (int i = 0; i < babylonPBRMetallicRoughnessMaterial.emissive.Length; i++)
- {
- logger.RaiseVerbose("GLTFExporter.Material | babylonPBRMetallicRoughnessMaterial.emissiveColor[" + i + "]=" + babylonPBRMetallicRoughnessMaterial.emissive[i], 3);
- }
- if (babylonPBRMetallicRoughnessMaterial.emissiveTexture == null)
- {
- logger.RaiseVerbose("GLTFExporter.Material | babylonPBRMetallicRoughnessMaterial.emissiveTexture=null", 3);
- }
-
- // Ambient occlusion
- logger.RaiseVerbose("GLTFExporter.Material | babylonPBRMetallicRoughnessMaterial.occlusionStrength=" + babylonPBRMetallicRoughnessMaterial.occlusionStrength, 3);
- if (babylonPBRMetallicRoughnessMaterial.occlusionTexture == null)
- {
- logger.RaiseVerbose("GLTFExporter.Material | babylonPBRMetallicRoughnessMaterial.occlusionTexture=null", 3);
- }
- #endregion
-
-
- // --------------------------------
- // --------- gltfMaterial ---------
- // --------------------------------
-
- logger.RaiseMessage("GLTFExporter.Material | create gltfMaterial", 2);
- gltfMaterial = new GLTFMaterial
- {
- name = name
- };
- gltfMaterial.id = babylonMaterial.id;
- gltfMaterial.index = gltf.MaterialsList.Count;
- gltf.MaterialsList.Add(gltfMaterial);
-
- // Alpha
- string alphaMode;
- float? alphaCutoff;
- getAlphaMode(babylonPBRMetallicRoughnessMaterial, out alphaMode, out alphaCutoff);
- gltfMaterial.alphaMode = alphaMode;
- gltfMaterial.alphaCutoff = alphaCutoff;
-
- // DoubleSided
- gltfMaterial.doubleSided = babylonPBRMetallicRoughnessMaterial.doubleSided;
-
- // Normal
- gltfMaterial.normalTexture = ExportTexture(babylonPBRMetallicRoughnessMaterial.normalTexture, gltf);
-
- // Occlusion
- if (babylonPBRMetallicRoughnessMaterial.occlusionTexture != null)
- {
- if (babylonPBRMetallicRoughnessMaterial.occlusionTexture.bitmap != null)
- {
- // ORM texture has been merged manually by the exporter
- // Occlusion is defined as well as metallic and/or roughness
- logger.RaiseVerbose("Occlusion is defined as well as metallic and/or roughness", 2);
- gltfMaterial.occlusionTexture = ExportBitmapTexture(gltf, babylonPBRMetallicRoughnessMaterial.occlusionTexture);
- }
- else
- {
- // ORM texture was already merged or only occlusion is defined
- logger.RaiseVerbose("ORM texture was already merged or only occlusion is defined", 2);
- gltfMaterial.occlusionTexture = ExportTexture(babylonPBRMetallicRoughnessMaterial.occlusionTexture, gltf);
- }
- }
-
- // Emissive
- gltfMaterial.emissiveFactor = babylonPBRMetallicRoughnessMaterial.emissive;
- gltfMaterial.emissiveTexture = ExportTexture(babylonPBRMetallicRoughnessMaterial.emissiveTexture, gltf);
-
-
- // --------------------------------
- // --- gltfPbrMetallicRoughness ---
- // --------------------------------
-
- logger.RaiseMessage("GLTFExporter.Material | create gltfPbrMetallicRoughness", 2);
- var gltfPbrMetallicRoughness = new GLTFPBRMetallicRoughness();
- gltfMaterial.pbrMetallicRoughness = gltfPbrMetallicRoughness;
-
- // --- Global ---
-
- // Base color
- gltfPbrMetallicRoughness.baseColorFactor = new float[4]
- {
- babylonPBRMetallicRoughnessMaterial.baseColor[0],
- babylonPBRMetallicRoughnessMaterial.baseColor[1],
- babylonPBRMetallicRoughnessMaterial.baseColor[2],
- babylonPBRMetallicRoughnessMaterial.alpha
- };
- if (babylonPBRMetallicRoughnessMaterial.baseTexture != null)
- {
- if (babylonPBRMetallicRoughnessMaterial.baseTexture.bitmap != null)
- {
- gltfPbrMetallicRoughness.baseColorTexture = ExportBitmapTexture(gltf, babylonPBRMetallicRoughnessMaterial.baseTexture);
- }
- else
- {
- gltfPbrMetallicRoughness.baseColorTexture = ExportTexture(babylonPBRMetallicRoughnessMaterial.baseTexture, gltf);
- }
- }
-
- // Metallic roughness
- gltfPbrMetallicRoughness.metallicFactor = babylonPBRMetallicRoughnessMaterial.metallic;
- gltfPbrMetallicRoughness.roughnessFactor = babylonPBRMetallicRoughnessMaterial.roughness;
- if (babylonPBRMetallicRoughnessMaterial.metallicRoughnessTexture != null)
- {
- if (babylonPBRMetallicRoughnessMaterial.metallicRoughnessTexture == babylonPBRMetallicRoughnessMaterial.occlusionTexture)
- {
- // Occlusion is defined as well as metallic and/or roughness
- // Use same texture
- logger.RaiseVerbose("Occlusion is defined as well as metallic and/or roughness", 2);
- gltfPbrMetallicRoughness.metallicRoughnessTexture = gltfMaterial.occlusionTexture;
- }
- else
- {
- // Occlusion is not defined, only metallic and/or roughness
- logger.RaiseVerbose("Occlusion is not defined, only metallic and/or roughness", 2);
-
- if (babylonPBRMetallicRoughnessMaterial.metallicRoughnessTexture.bitmap != null)
- {
- // Metallic & roughness texture has been merged manually by the exporter
- // Write bitmap file
- logger.RaiseVerbose("Metallic & roughness texture has been merged manually by the exporter", 2);
- gltfPbrMetallicRoughness.metallicRoughnessTexture = ExportBitmapTexture(gltf, babylonPBRMetallicRoughnessMaterial.metallicRoughnessTexture);
- }
- else
- {
-
- // Metallic & roughness texture was already merged
- // Copy file
- logger.RaiseVerbose("Metallic & roughness texture was already merged", 2);
- gltfPbrMetallicRoughness.metallicRoughnessTexture = ExportTexture(babylonPBRMetallicRoughnessMaterial.metallicRoughnessTexture, gltf);
- }
- }
- }
- }
- else
- {
- logger.RaiseWarning("GLTFExporter.Material | Unsupported material type: " + babylonMaterial.GetType(), 2);
- }
-
- if (gltfMaterial != null && babylonMaterial.isUnlit)
- {
- // Add Unlit extension
- if (!exportParameters.enableKHRMaterialsUnlit)
- {
- logger.RaiseWarning("GLTFExporter.Material | KHR_materials_unlit has not been enabled for export!", 2);
- }
- else
- {
- if (gltfMaterial.extensions == null)
- {
- gltfMaterial.extensions = new GLTFExtensions();
- }
- if (gltf.extensionsUsed == null)
- {
- gltf.extensionsUsed = new System.Collections.Generic.List();
- }
- if (!gltf.extensionsUsed.Contains("KHR_materials_unlit"))
- {
- gltf.extensionsUsed.Add("KHR_materials_unlit");
- }
- gltfMaterial.extensions["KHR_materials_unlit"] = new object();
- }
- }
-
- ExportGLTFExtension(babylonMaterial, ref gltfMaterial,gltf);
- }
-
- private void getAlphaMode(BabylonStandardMaterial babylonMaterial, out string alphaMode, out float? alphaCutoff)
- {
- // TODO: maybe we want to be able to handle both BabylonStandardMaterial and BabylonPBRMetallicRoughnessMaterial via the relevant fields being dropped to BabylonMaterial?
- // Serialization is going to be tricky, as we dont want BabylonStandardMaterial.alphaMode and BabylonStandardMaterial.alphaCutoff to be serialized (till we support it officially in-engine)
- alphaMode = null;
- alphaCutoff = null;
- switch (babylonMaterial.transparencyMode)
- {
- case (int)BabylonPBRMetallicRoughnessMaterial.TransparencyMode.OPAQUE: // reuse the BabylonPBRMaterialMetallicRoughness enum.
- alphaMode = GLTFMaterial.AlphaMode.OPAQUE.ToString();
- break;
- case (int)BabylonPBRMetallicRoughnessMaterial.TransparencyMode.ALPHABLEND:
- alphaMode = GLTFMaterial.AlphaMode.BLEND.ToString();
- break;
- case (int)BabylonPBRMetallicRoughnessMaterial.TransparencyMode.ALPHATEST:
- alphaCutoff = babylonMaterial.alphaCutOff;
- alphaMode = GLTFMaterial.AlphaMode.MASK.ToString();
- break;
- case (int)BabylonPBRMetallicRoughnessMaterial.TransparencyMode.ALPHATESTANDBLEND:
- logger.RaiseWarning("GLTFExporter.Material | Alpha test and blend mode is not supported in glTF. Alpha blend is used instead.", 3);
- alphaMode = GLTFMaterial.AlphaMode.BLEND.ToString();
- break;
- default:
- logger.RaiseWarning("GLTFExporter.Material | Unsupported transparency mode: " + babylonMaterial.transparencyMode, 3);
- break;
- }
- }
-
- private void getAlphaMode(BabylonPBRMetallicRoughnessMaterial babylonMaterial, out string alphaMode, out float? alphaCutoff)
- {
- alphaMode = null;
- alphaCutoff = null;
- switch (babylonMaterial.transparencyMode)
- {
- case (int)BabylonPBRMetallicRoughnessMaterial.TransparencyMode.OPAQUE:
- alphaMode = GLTFMaterial.AlphaMode.OPAQUE.ToString();
- break;
- case (int)BabylonPBRMetallicRoughnessMaterial.TransparencyMode.ALPHABLEND:
- alphaMode = GLTFMaterial.AlphaMode.BLEND.ToString();
- break;
- case (int)BabylonPBRMetallicRoughnessMaterial.TransparencyMode.ALPHATEST:
- alphaCutoff = babylonMaterial.alphaCutOff;
- alphaMode = GLTFMaterial.AlphaMode.MASK.ToString();
- break;
- case (int)BabylonPBRMetallicRoughnessMaterial.TransparencyMode.ALPHATESTANDBLEND:
- logger.RaiseWarning("GLTFExporter.Material | Alpha test and blend mode is not supported in glTF. Alpha blend is used instead.", 3);
- alphaMode = GLTFMaterial.AlphaMode.BLEND.ToString();
- break;
- default:
- logger.RaiseWarning("GLTFExporter.Material | Unsupported transparency mode: " + babylonMaterial.transparencyMode, 3);
- break;
- }
- }
-
- private bool isTextureOk(BabylonTexture texture)
- {
- return texture != null && File.Exists(texture.originalPath);
- }
-
- BabylonColor3 dielectricSpecular = new BabylonColor3(0.04f, 0.04f, 0.04f);
- const float epsilon = 1e-6f;
-
- /**
- * Helper function that defines the bezier curve as well.Given the control points, solve for x based on a given t for a cubic bezier curve
- * @param t a value between 0 and 1
- * @param p0 first control point
- * @param p1 second control point
- * @param p2 third control point
- * @param p3 fourth control point
- * @returns number result of cubic bezier curve at the specified t
- */
- private static float _cubicBezierCurve(float t, float p0, float p1, float p2, float p3)
- {
+ }
+ }
+ }
+ else if (babylonMaterial.GetType() == typeof(BabylonPBRMetallicRoughnessMaterial))
+ {
+ var babylonPBRMetallicRoughnessMaterial = babylonMaterial as BabylonPBRMetallicRoughnessMaterial;
+ // --- prints ---
+ #region prints
+
+ logger.RaiseVerbose("GLTFExporter.Material | babylonMaterial data", 2);
+ logger.RaiseVerbose("GLTFExporter.Material | babylonMaterial.alpha=" + babylonMaterial.alpha, 3);
+ logger.RaiseVerbose("GLTFExporter.Material | babylonMaterial.alphaMode=" + babylonMaterial.alphaMode, 3);
+ logger.RaiseVerbose("GLTFExporter.Material | babylonMaterial.backFaceCulling=" + babylonMaterial.backFaceCulling, 3);
+ logger.RaiseVerbose("GLTFExporter.Material | babylonMaterial.wireframe=" + babylonMaterial.wireframe, 3);
+
+ // Global
+ logger.RaiseVerbose("GLTFExporter.Material | babylonPBRMetallicRoughnessMaterial.maxSimultaneousLights=" + babylonPBRMetallicRoughnessMaterial.maxSimultaneousLights, 3);
+ logger.RaiseVerbose("GLTFExporter.Material | babylonPBRMetallicRoughnessMaterial.disableLighting=" + babylonPBRMetallicRoughnessMaterial.disableLighting, 3);
+ logger.RaiseVerbose("GLTFExporter.Material | babylonPBRMetallicRoughnessMaterial.alphaCutOff=" + babylonPBRMetallicRoughnessMaterial.alphaCutOff, 3);
+ logger.RaiseVerbose("GLTFExporter.Material | babylonPBRMetallicRoughnessMaterial.transparencyMode=" + babylonPBRMetallicRoughnessMaterial.transparencyMode, 3);
+ logger.RaiseVerbose("GLTFExporter.Material | babylonPBRMetallicRoughnessMaterial.doubleSided=" + babylonPBRMetallicRoughnessMaterial.doubleSided, 3);
+
+ // Base color
+ logger.RaiseVerbose("GLTFExporter.Material | babylonPBRMetallicRoughnessMaterial.baseColor.Length=" + babylonPBRMetallicRoughnessMaterial.baseColor.Length, 3);
+ for (int i = 0; i < babylonPBRMetallicRoughnessMaterial.baseColor.Length; i++)
+ {
+ logger.RaiseVerbose("GLTFExporter.Material | babylonPBRMetallicRoughnessMaterial.baseColor[" + i + "]=" + babylonPBRMetallicRoughnessMaterial.baseColor[i], 3);
+ }
+ if (babylonPBRMetallicRoughnessMaterial.baseTexture == null)
+ {
+ logger.RaiseVerbose("GLTFExporter.Material | babylonPBRMetallicRoughnessMaterial.baseTexture=null", 3);
+ }
+
+ // Metallic+roughness
+ logger.RaiseVerbose("GLTFExporter.Material | babylonPBRMetallicRoughnessMaterial.metallic=" + babylonPBRMetallicRoughnessMaterial.metallic, 3);
+ logger.RaiseVerbose("GLTFExporter.Material | babylonPBRMetallicRoughnessMaterial.roughness=" + babylonPBRMetallicRoughnessMaterial.roughness, 3);
+ if (babylonPBRMetallicRoughnessMaterial.metallicRoughnessTexture == null)
+ {
+ logger.RaiseVerbose("GLTFExporter.Material | babylonPBRMetallicRoughnessMaterial.metallicRoughnessTexture=null", 3);
+ }
+
+ // Normal / bump
+ if (babylonPBRMetallicRoughnessMaterial.normalTexture == null)
+ {
+ logger.RaiseVerbose("GLTFExporter.Material | babylonPBRMetallicRoughnessMaterial.normalTexture=null", 3);
+ }
+ logger.RaiseVerbose("GLTFExporter.Material | babylonPBRMetallicRoughnessMaterial.invertNormalMapX=" + babylonPBRMetallicRoughnessMaterial.invertNormalMapX, 3);
+ logger.RaiseVerbose("GLTFExporter.Material | babylonPBRMetallicRoughnessMaterial.invertNormalMapY=" + babylonPBRMetallicRoughnessMaterial.invertNormalMapY, 3);
+
+ // Emissive
+ for (int i = 0; i < babylonPBRMetallicRoughnessMaterial.emissive.Length; i++)
+ {
+ logger.RaiseVerbose("GLTFExporter.Material | babylonPBRMetallicRoughnessMaterial.emissiveColor[" + i + "]=" + babylonPBRMetallicRoughnessMaterial.emissive[i], 3);
+ }
+ if (babylonPBRMetallicRoughnessMaterial.emissiveTexture == null)
+ {
+ logger.RaiseVerbose("GLTFExporter.Material | babylonPBRMetallicRoughnessMaterial.emissiveTexture=null", 3);
+ }
+
+ // Ambient occlusion
+ logger.RaiseVerbose("GLTFExporter.Material | babylonPBRMetallicRoughnessMaterial.occlusionStrength=" + babylonPBRMetallicRoughnessMaterial.occlusionStrength, 3);
+ if (babylonPBRMetallicRoughnessMaterial.occlusionTexture == null)
+ {
+ logger.RaiseVerbose("GLTFExporter.Material | babylonPBRMetallicRoughnessMaterial.occlusionTexture=null", 3);
+ }
+ #endregion
+
+
+ // --------------------------------
+ // --------- gltfMaterial ---------
+ // --------------------------------
+
+ logger.RaiseMessage("GLTFExporter.Material | create gltfMaterial", 2);
+ gltfMaterial = new GLTFMaterial
+ {
+ name = name
+ };
+ gltfMaterial.id = babylonMaterial.id;
+ gltfMaterial.index = gltf.MaterialsList.Count;
+ gltf.MaterialsList.Add(gltfMaterial);
+
+ //Custom user properties
+ if (babylonMaterial.metadata != null && babylonMaterial.metadata.Count != 0)
+ {
+ gltfMaterial.extras = babylonMaterial.metadata;
+ }
+
+ // Alpha
+ string alphaMode;
+ float? alphaCutoff;
+ getAlphaMode(babylonPBRMetallicRoughnessMaterial, out alphaMode, out alphaCutoff);
+ gltfMaterial.alphaMode = alphaMode;
+ if (alphaCutoff.HasValue && alphaCutoff.Value != 0.5f) // do not export glTF default value
+ {
+ gltfMaterial.alphaCutoff = alphaCutoff;
+ }
+
+ // DoubleSided
+ gltfMaterial.doubleSided = babylonPBRMetallicRoughnessMaterial.doubleSided;
+
+ // Normal
+ gltfMaterial.normalTexture = ExportTexture(babylonPBRMetallicRoughnessMaterial.normalTexture, gltf);
+
+ // Occlusion
+ if (babylonPBRMetallicRoughnessMaterial.occlusionTexture != null)
+ {
+ if (babylonPBRMetallicRoughnessMaterial.occlusionTexture.bitmap != null)
+ {
+ // ORM texture has been merged manually by the exporter
+ // Occlusion is defined as well as metallic and/or roughness
+ logger.RaiseVerbose("Occlusion is defined as well as metallic and/or roughness", 2);
+ gltfMaterial.occlusionTexture = ExportBitmapTexture(gltf, babylonPBRMetallicRoughnessMaterial.occlusionTexture);
+ }
+ else
+ {
+ // ORM texture was already merged or only occlusion is defined
+ logger.RaiseVerbose("ORM texture was already merged or only occlusion is defined", 2);
+ gltfMaterial.occlusionTexture = ExportTexture(babylonPBRMetallicRoughnessMaterial.occlusionTexture, gltf);
+ }
+ }
+
+ // Emissive
+ gltfMaterial.emissiveFactor = babylonPBRMetallicRoughnessMaterial.emissive;
+ gltfMaterial.emissiveTexture = ExportTexture(babylonPBRMetallicRoughnessMaterial.emissiveTexture, gltf);
+
+
+ // --------------------------------
+ // --- gltfPbrMetallicRoughness ---
+ // --------------------------------
+
+ logger.RaiseMessage("GLTFExporter.Material | create gltfPbrMetallicRoughness", 2);
+ var gltfPbrMetallicRoughness = new GLTFPBRMetallicRoughness();
+ gltfMaterial.pbrMetallicRoughness = gltfPbrMetallicRoughness;
+
+ // --- Global ---
+
+ // Base color
+ gltfPbrMetallicRoughness.baseColorFactor = new float[4]
+ {
+ babylonPBRMetallicRoughnessMaterial.baseColor[0],
+ babylonPBRMetallicRoughnessMaterial.baseColor[1],
+ babylonPBRMetallicRoughnessMaterial.baseColor[2],
+ babylonPBRMetallicRoughnessMaterial.alpha
+ };
+ if (babylonPBRMetallicRoughnessMaterial.baseTexture != null)
+ {
+ if (babylonPBRMetallicRoughnessMaterial.baseTexture.bitmap != null)
+ {
+ gltfPbrMetallicRoughness.baseColorTexture = ExportBitmapTexture(gltf, babylonPBRMetallicRoughnessMaterial.baseTexture);
+ }
+ else
+ {
+ gltfPbrMetallicRoughness.baseColorTexture = ExportTexture(babylonPBRMetallicRoughnessMaterial.baseTexture, gltf);
+ }
+ }
+
+ // Metallic roughness
+ gltfPbrMetallicRoughness.metallicFactor = babylonPBRMetallicRoughnessMaterial.metallic;
+ gltfPbrMetallicRoughness.roughnessFactor = babylonPBRMetallicRoughnessMaterial.roughness;
+ if (babylonPBRMetallicRoughnessMaterial.metallicRoughnessTexture != null)
+ {
+ if (babylonPBRMetallicRoughnessMaterial.metallicRoughnessTexture == babylonPBRMetallicRoughnessMaterial.occlusionTexture)
+ {
+ // Occlusion is defined as well as metallic and/or roughness
+ // Use same texture
+ logger.RaiseVerbose("Occlusion is defined as well as metallic and/or roughness", 2);
+ gltfPbrMetallicRoughness.metallicRoughnessTexture = gltfMaterial.occlusionTexture;
+ }
+ else
+ {
+ // Occlusion is not defined, only metallic and/or roughness
+ logger.RaiseVerbose("Occlusion is not defined, only metallic and/or roughness", 2);
+
+ if (babylonPBRMetallicRoughnessMaterial.metallicRoughnessTexture.bitmap != null)
+ {
+ // Metallic & roughness texture has been merged manually by the exporter
+ // Write bitmap file
+ logger.RaiseVerbose("Metallic & roughness texture has been merged manually by the exporter", 2);
+ gltfPbrMetallicRoughness.metallicRoughnessTexture = ExportBitmapTexture(gltf, babylonPBRMetallicRoughnessMaterial.metallicRoughnessTexture);
+ }
+ else
+ {
+
+ // Metallic & roughness texture was already merged
+ // Copy file
+ logger.RaiseVerbose("Metallic & roughness texture was already merged", 2);
+ gltfPbrMetallicRoughness.metallicRoughnessTexture = ExportTexture(babylonPBRMetallicRoughnessMaterial.metallicRoughnessTexture, gltf);
+ }
+ }
+ }
+ }
+ else
+ {
+ logger.RaiseWarning("GLTFExporter.Material | Unsupported material type: " + babylonMaterial.GetType(), 2);
+ }
+
+ if (gltfMaterial != null && babylonMaterial.isUnlit)
+ {
+ // Add Unlit extension
+ if (!exportParameters.enableKHRMaterialsUnlit)
+ {
+ logger.RaiseWarning("GLTFExporter.Material | KHR_materials_unlit has not been enabled for export!", 2);
+ }
+ else
+ {
+ if (gltfMaterial.extensions == null)
+ {
+ gltfMaterial.extensions = new GLTFExtensions();
+ }
+ if (gltf.extensionsUsed == null)
+ {
+ gltf.extensionsUsed = new System.Collections.Generic.List();
+ }
+ if (!gltf.extensionsUsed.Contains("KHR_materials_unlit"))
+ {
+ gltf.extensionsUsed.Add("KHR_materials_unlit");
+ }
+ gltfMaterial.extensions["KHR_materials_unlit"] = new object();
+ }
+ }
+ }
+
+ private void getAlphaMode(BabylonStandardMaterial babylonMaterial, out string alphaMode, out float? alphaCutoff)
+ {
+ // TODO: maybe we want to be able to handle both BabylonStandardMaterial and BabylonPBRMetallicRoughnessMaterial via the relevant fields being dropped to BabylonMaterial?
+ // Serialization is going to be tricky, as we dont want BabylonStandardMaterial.alphaMode and BabylonStandardMaterial.alphaCutoff to be serialized (till we support it officially in-engine)
+ alphaMode = null;
+ alphaCutoff = 0.5f;
+ switch (babylonMaterial.transparencyMode)
+ {
+ case (int)BabylonPBRMetallicRoughnessMaterial.TransparencyMode.OPAQUE: // reuse the BabylonPBRMaterialMetallicRoughness enum.
+ alphaMode = GLTFMaterial.AlphaMode.OPAQUE.ToString();
+ break;
+ case (int)BabylonPBRMetallicRoughnessMaterial.TransparencyMode.ALPHABLEND:
+ alphaMode = GLTFMaterial.AlphaMode.BLEND.ToString();
+ break;
+ case (int)BabylonPBRMetallicRoughnessMaterial.TransparencyMode.ALPHATEST:
+ alphaCutoff = babylonMaterial.alphaCutOff;
+ alphaMode = GLTFMaterial.AlphaMode.MASK.ToString();
+ break;
+ case (int)BabylonPBRMetallicRoughnessMaterial.TransparencyMode.ALPHATESTANDBLEND:
+ logger.RaiseWarning("GLTFExporter.Material | Alpha test and blend mode is not supported in glTF. Alpha blend is used instead.", 3);
+ alphaMode = GLTFMaterial.AlphaMode.BLEND.ToString();
+ break;
+ default:
+ logger.RaiseWarning("GLTFExporter.Material | Unsupported transparency mode: " + babylonMaterial.transparencyMode, 3);
+ break;
+ }
+ }
+
+ private void getAlphaMode(BabylonPBRMetallicRoughnessMaterial babylonMaterial, out string alphaMode, out float? alphaCutoff)
+ {
+ alphaMode = null;
+ alphaCutoff = 0.5f;
+ switch (babylonMaterial.transparencyMode)
+ {
+ case (int)BabylonPBRMetallicRoughnessMaterial.TransparencyMode.OPAQUE:
+ alphaMode = GLTFMaterial.AlphaMode.OPAQUE.ToString();
+ break;
+ case (int)BabylonPBRMetallicRoughnessMaterial.TransparencyMode.ALPHABLEND:
+ alphaMode = GLTFMaterial.AlphaMode.BLEND.ToString();
+ break;
+ case (int)BabylonPBRMetallicRoughnessMaterial.TransparencyMode.ALPHATEST:
+ alphaCutoff = babylonMaterial.alphaCutOff;
+ alphaMode = GLTFMaterial.AlphaMode.MASK.ToString();
+ break;
+ case (int)BabylonPBRMetallicRoughnessMaterial.TransparencyMode.ALPHATESTANDBLEND:
+ logger.RaiseWarning("GLTFExporter.Material | Alpha test and blend mode is not supported in glTF. Alpha blend is used instead.", 3);
+ alphaMode = GLTFMaterial.AlphaMode.BLEND.ToString();
+ break;
+ default:
+ logger.RaiseWarning("GLTFExporter.Material | Unsupported transparency mode: " + babylonMaterial.transparencyMode, 3);
+ break;
+ }
+ }
+
+ private bool isTextureOk(BabylonTexture texture)
+ {
+ return texture != null && File.Exists(texture.originalPath);
+ }
+
+ BabylonColor3 dielectricSpecular = new BabylonColor3(0.04f, 0.04f, 0.04f);
+ const float epsilon = 1e-6f;
+
+ /**
+ * Helper function that defines the bezier curve as well.Given the control points, solve for x based on a given t for a cubic bezier curve
+ * @param t a value between 0 and 1
+ * @param p0 first control point
+ * @param p1 second control point
+ * @param p2 third control point
+ * @param p3 fourth control point
+ * @returns number result of cubic bezier curve at the specified t
+ */
+ private static float _cubicBezierCurve(float t, float p0, float p1, float p2, float p3)
+ {
return
- (
- (1 - t) * (1 - t) * (1 - t) * p0 +
- 3 * (1 - t) * (1 - t) * t * p1 +
- 3 * (1 - t) * t * t * p2 +
- t * t * t * p3
- );
- }
-
- /*
- * Helper function that calculates a roughness coefficient given a blinn-phong specular power coefficient
- * @param specularPower the blinn-phong specular power coefficient
- * @returns number result of specularPower -> roughness conversion curve.
- */
- private static float _solveForRoughness(float specularPower, BabylonVector2 P0, BabylonVector2 P1, BabylonVector2 P2, BabylonVector2 P3)
- {
- var t = Math.Pow(specularPower / P3.X, 0.333333);
- return _cubicBezierCurve((float)t, P0.Y, P1.Y, P2.Y, P3.Y);
- }
-
- private MetallicRoughness ConvertToMetallicRoughness(SpecularGlossiness specularGlossiness, bool displayPrints = false)
- {
- // Hard coded points used to define the specular power to roughness curve.
- var P0 = new BabylonVector2(0f, 1f);
- var P1 = new BabylonVector2(0f, 0.1f);
- var P2 = new BabylonVector2(0f, 0.1f);
- var P3 = new BabylonVector2(1300f, 0.1f);
-
- var diffuse = specularGlossiness.diffuse;
- var opacity = specularGlossiness.opacity;
- var glossiness = specularGlossiness.glossiness;
- var metallic = 0;
- var roughness = _solveForRoughness(glossiness * 256, P0, P1, P2, P3); // Glossiness = specularPower / 256
-
- if (displayPrints)
- {
- logger.RaiseVerbose("-----------------------", 3);
- logger.RaiseVerbose("diffuse=" + diffuse, 3);
- logger.RaiseVerbose("opacity=" + opacity, 3);
- logger.RaiseVerbose("glossiness=" + glossiness, 3);
- logger.RaiseVerbose("roughness=" + roughness, 3);
- logger.RaiseVerbose("metallic=" + metallic, 3);
- logger.RaiseVerbose("-----------------------", 3);
- }
-
- return new MetallicRoughness
- {
- baseColor = diffuse,
- opacity = opacity,
- metallic = metallic,
- roughness = roughness
- };
- }
-
- private float solveMetallic(float diffuse, float specular, float oneMinusSpecularStrength)
- {
- if (specular < dielectricSpecular.r)
- {
- return 0;
- }
-
- var a = dielectricSpecular.r;
- var b = diffuse * oneMinusSpecularStrength / (1 - dielectricSpecular.r) + specular - 2 * dielectricSpecular.r;
- var c = dielectricSpecular.r - specular;
- var D = b * b - 4 * a * c;
- return ClampScalar((float)(-b + Math.Sqrt(D)) / (2 * a), 0, 1);
- }
-
- /**
- * Returns the value itself if it's between min and max.
- * Returns min if the value is lower than min.
- * Returns max if the value is greater than max.
- */
- private static float ClampScalar(float value, float min = 0, float max = 1)
- {
- return Math.Min(max, Math.Max(min, value));
- }
-
- private class SpecularGlossiness
- {
- public BabylonColor3 diffuse;
- public float opacity;
- public BabylonColor3 specular;
- public float glossiness;
- }
-
- private class MetallicRoughness
- {
- public BabylonColor3 baseColor;
- public float opacity;
- public float metallic;
- public float roughness;
- }
- }
-}
+ (
+ (1 - t) * (1 - t) * (1 - t) * p0 +
+ 3 * (1 - t) * (1 - t) * t * p1 +
+ 3 * (1 - t) * t * t * p2 +
+ t * t * t * p3
+ );
+ }
+
+ /*
+ * Helper function that calculates a roughness coefficient given a blinn-phong specular power coefficient
+ * @param specularPower the blinn-phong specular power coefficient
+ * @returns number result of specularPower -> roughness conversion curve.
+ */
+ private static float _solveForRoughness(float specularPower, BabylonVector2 P0, BabylonVector2 P1, BabylonVector2 P2, BabylonVector2 P3)
+ {
+ var t = Math.Pow(specularPower / P3.X, 0.333333);
+ return _cubicBezierCurve((float)t, P0.Y, P1.Y, P2.Y, P3.Y);
+ }
+
+ private MetallicRoughness ConvertToMetallicRoughness(SpecularGlossiness specularGlossiness, bool displayPrints = false)
+ {
+ // Hard coded points used to define the specular power to roughness curve.
+ var P0 = new BabylonVector2(0f, 1f);
+ var P1 = new BabylonVector2(0f, 0.1f);
+ var P2 = new BabylonVector2(0f, 0.1f);
+ var P3 = new BabylonVector2(1300f, 0.1f);
+
+ var diffuse = specularGlossiness.diffuse;
+ var opacity = specularGlossiness.opacity;
+ var glossiness = specularGlossiness.glossiness;
+ var metallic = 0;
+ var roughness = _solveForRoughness(glossiness * 256, P0, P1, P2, P3); // Glossiness = specularPower / 256
+
+ if (displayPrints)
+ {
+ logger.RaiseVerbose("-----------------------", 3);
+ logger.RaiseVerbose("diffuse=" + diffuse, 3);
+ logger.RaiseVerbose("opacity=" + opacity, 3);
+ logger.RaiseVerbose("glossiness=" + glossiness, 3);
+ logger.RaiseVerbose("roughness=" + roughness, 3);
+ logger.RaiseVerbose("metallic=" + metallic, 3);
+ logger.RaiseVerbose("-----------------------", 3);
+ }
+
+ return new MetallicRoughness
+ {
+ baseColor = diffuse,
+ opacity = opacity,
+ metallic = metallic,
+ roughness = roughness
+ };
+ }
+
+ private float solveMetallic(float diffuse, float specular, float oneMinusSpecularStrength)
+ {
+ if (specular < dielectricSpecular.r)
+ {
+ return 0;
+ }
+
+ var a = dielectricSpecular.r;
+ var b = diffuse * oneMinusSpecularStrength / (1 - dielectricSpecular.r) + specular - 2 * dielectricSpecular.r;
+ var c = dielectricSpecular.r - specular;
+ var D = b * b - 4 * a * c;
+ return ClampScalar((float)(-b + Math.Sqrt(D)) / (2 * a), 0, 1);
+ }
+
+ /**
+ * Returns the value itself if it's between min and max.
+ * Returns min if the value is lower than min.
+ * Returns max if the value is greater than max.
+ */
+ private static float ClampScalar(float value, float min = 0, float max = 1)
+ {
+ return Math.Min(max, Math.Max(min, value));
+ }
+
+ private class SpecularGlossiness
+ {
+ public BabylonColor3 diffuse;
+ public float opacity;
+ public BabylonColor3 specular;
+ public float glossiness;
+ }
+
+ private class MetallicRoughness
+ {
+ public BabylonColor3 baseColor;
+ public float opacity;
+ public float metallic;
+ public float roughness;
+ }
+ }
+}
diff --git a/SharedProjects/Babylon2GLTF/GLTFExporter.Mesh.cs b/SharedProjects/Babylon2GLTF/GLTFExporter.Mesh.cs
index 533b91d5..7b08d3aa 100644
--- a/SharedProjects/Babylon2GLTF/GLTFExporter.Mesh.cs
+++ b/SharedProjects/Babylon2GLTF/GLTFExporter.Mesh.cs
@@ -38,6 +38,7 @@ private GLTFMesh ExportMesh(BabylonMesh babylonMesh, GLTF gltf, BabylonScene bab
bool hasBones = babylonMesh.matricesIndices != null && babylonMesh.matricesIndices.Length > 0;
bool hasBonesExtra = babylonMesh.matricesIndicesExtra != null && babylonMesh.matricesIndicesExtra.Length > 0;
bool hasTangents = babylonMesh.tangents != null && babylonMesh.tangents.Length > 0;
+ bool hasMetadata = babylonMesh.metadata != null && babylonMesh.metadata.Count > 0;
logger.RaiseMessage("GLTFExporter.Mesh | nbVertices=" + nbVertices, 3);
logger.RaiseMessage("GLTFExporter.Mesh | hasUV=" + hasUV, 3);
@@ -45,6 +46,7 @@ private GLTFMesh ExportMesh(BabylonMesh babylonMesh, GLTF gltf, BabylonScene bab
logger.RaiseMessage("GLTFExporter.Mesh | hasColor=" + hasColor, 3);
logger.RaiseMessage("GLTFExporter.Mesh | hasBones=" + hasBones, 3);
logger.RaiseMessage("GLTFExporter.Mesh | hasBonesExtra=" + hasBonesExtra, 3);
+ logger.RaiseMessage("GLTFExporter.Mesh | hasMetadata=" + hasMetadata, 3);
// Retreive vertices data from babylon mesh
List globalVertices = new List();
diff --git a/SharedProjects/Babylon2GLTF/GLTFExporter.cs b/SharedProjects/Babylon2GLTF/GLTFExporter.cs
index f5ebac39..afbc0ebc 100644
--- a/SharedProjects/Babylon2GLTF/GLTFExporter.cs
+++ b/SharedProjects/Babylon2GLTF/GLTFExporter.cs
@@ -555,6 +555,13 @@ private GLTFNode ExportNode(BabylonNode babylonNode, GLTF gltf, BabylonScene bab
name = GetUniqueNodeName(babylonNode.name),
index = gltf.NodesList.Count
};
+
+ // User Custom Attributes
+ if (babylonNode.metadata != null && babylonNode.metadata.Count != 0)
+ {
+ gltfNode.extras = babylonNode.metadata;
+ }
+
gltf.NodesList.Add(gltfNode); // add the node to the gltf list
nodeToGltfNodeMap.Add(babylonNode, gltfNode); // add the node to the global map
diff --git a/SharedProjects/BabylonExport.Entities/BabylonCamera.cs b/SharedProjects/BabylonExport.Entities/BabylonCamera.cs
index 15d725fd..22d88e5d 100644
--- a/SharedProjects/BabylonExport.Entities/BabylonCamera.cs
+++ b/SharedProjects/BabylonExport.Entities/BabylonCamera.cs
@@ -89,9 +89,6 @@ public enum Type
[DataMember]
public bool isStereoscopicSideBySide;
- [DataMember]
- public object metadata { get; set; }
-
public BabylonCamera()
{
// Default values
diff --git a/SharedProjects/BabylonExport.Entities/BabylonLight.cs b/SharedProjects/BabylonExport.Entities/BabylonLight.cs
index a9a045fb..04173d1d 100644
--- a/SharedProjects/BabylonExport.Entities/BabylonLight.cs
+++ b/SharedProjects/BabylonExport.Entities/BabylonLight.cs
@@ -1,4 +1,5 @@
-using System.Runtime.Serialization;
+using System.Collections.Generic;
+using System.Runtime.Serialization;
namespace BabylonExport.Entities
{
@@ -46,9 +47,6 @@ public enum Type
[DataMember]
public string[] includedOnlyMeshesIds { get; set; }
- [DataMember]
- public object metadata { get; set; }
-
[DataMember]
public int? lightmapMode { get; set; }
diff --git a/SharedProjects/BabylonExport.Entities/BabylonMaterial.cs b/SharedProjects/BabylonExport.Entities/BabylonMaterial.cs
index 9f9bbc45..1e3fca15 100644
--- a/SharedProjects/BabylonExport.Entities/BabylonMaterial.cs
+++ b/SharedProjects/BabylonExport.Entities/BabylonMaterial.cs
@@ -24,16 +24,21 @@ public partial class BabylonMaterial
[DataMember]
public int alphaMode { get; set; }
+ [DataMember]
+ public int maxSimultaneousLights { get; set; }
+
+ [DataMember]
+ public Dictionary metadata { get; set; }
+
public bool isUnlit = false;
public BabylonMaterial(string id)
{
this.id = id;
backFaceCulling = true;
-
alpha = 1.0f;
-
alphaMode = 2;
+ maxSimultaneousLights = 4;
}
public BabylonMaterial(BabylonMaterial original)
@@ -44,7 +49,9 @@ public BabylonMaterial(BabylonMaterial original)
wireframe = original.wireframe;
alpha = original.alpha;
alphaMode = original.alphaMode;
+ maxSimultaneousLights = 4;
isUnlit = original.isUnlit;
+ metadata = original.metadata != null ? new Dictionary(original.metadata) : null;
}
}
}
diff --git a/SharedProjects/BabylonExport.Entities/BabylonMesh.cs b/SharedProjects/BabylonExport.Entities/BabylonMesh.cs
index cc97b36b..38e199d5 100644
--- a/SharedProjects/BabylonExport.Entities/BabylonMesh.cs
+++ b/SharedProjects/BabylonExport.Entities/BabylonMesh.cs
@@ -1,132 +1,129 @@
using System;
-using System.Collections.Generic;
-using System.Linq;
-using System.Runtime.Serialization;
-
-namespace BabylonExport.Entities
-{
-
- [DataContract]
- public class BabylonMesh : BabylonAbstractMesh
- {
- [DataMember]
- public string materialId { get; set; }
-
- [DataMember]
- public bool isEnabled { get; set; }
-
- [DataMember]
- public bool isVisible { get; set; }
-
- [DataMember(EmitDefaultValue = false)]
- public float[] pivotMatrix { get; set; }
-
- [DataMember]
- public float[] positions { get; set; }
-
- [DataMember]
- public float[] normals { get; set; }
-
- [DataMember]
- public float[] tangents { get; set; }
-
- [DataMember]
- public float[] uvs { get; set; }
-
- [DataMember]
- public float[] uvs2 { get; set; }
-
- [DataMember]
- public float[] colors { get; set; }
-
- [DataMember]
- public bool hasVertexAlpha { get; set; }
-
- [DataMember]
- public int[] matricesIndices { get; set; }
-
- [DataMember]
- public float[] matricesWeights { get; set; }
-
- [DataMember]
- public int[] matricesIndicesExtra { get; set; }
-
- [DataMember]
- public float[] matricesWeightsExtra { get; set; }
-
- [DataMember]
- public int[] indices { get; set; }
-
- [DataMember]
- public bool receiveShadows { get; set; }
-
- [DataMember]
- public bool infiniteDistance { get; set; }
-
- [DataMember]
- public int billboardMode { get; set; }
-
- [DataMember]
- public float visibility { get; set; }
-
- [DataMember]
- public BabylonSubMesh[] subMeshes { get; set; }
-
- [DataMember]
- public BabylonAbstractMesh[] instances { get; set; }
-
- [DataMember]
- public int skeletonId { get; set; }
-
- [DataMember]
- public int numBoneInfluencers { get; set; }
-
- [DataMember]
- public bool applyFog { get; set; }
-
- [DataMember]
- public object metadata { get; set; }
-
- [DataMember(EmitDefaultValue = false)]
- public int? morphTargetManagerId { get; set; }
-
- [DataMember]
- public string[] lodMeshIds { get; set; }
-
- [DataMember]
- public int[] lodDistances { get; set; }
-
- [DataMember]
- public float[] lodCoverages { get; set; }
-
- public bool isDummy = false;
-
- public List VertexDatas { get; set; } = new List();
-
- public BabylonMesh()
- {
- isEnabled = true;
- isVisible = true;
-
- billboardMode = 0;
-
- visibility = 1.0f;
-
- skeletonId = -1;
-
- pickable = true;
-
- numBoneInfluencers = 4;
-
- lodMeshIds = null;
- lodCoverages = null;
- lodDistances = null;
-
- position = new float[] { 0, 0, 0 };
+using System.Collections.Generic;
+using System.Linq;
+using System.Runtime.Serialization;
+
+namespace BabylonExport.Entities
+{
+
+ [DataContract]
+ public class BabylonMesh : BabylonAbstractMesh
+ {
+ [DataMember]
+ public string materialId { get; set; }
+
+ [DataMember]
+ public bool isEnabled { get; set; }
+
+ [DataMember]
+ public bool isVisible { get; set; }
+
+ [DataMember(EmitDefaultValue = false)]
+ public float[] pivotMatrix { get; set; }
+
+ [DataMember]
+ public float[] positions { get; set; }
+
+ [DataMember]
+ public float[] normals { get; set; }
+
+ [DataMember]
+ public float[] tangents { get; set; }
+
+ [DataMember]
+ public float[] uvs { get; set; }
+
+ [DataMember]
+ public float[] uvs2 { get; set; }
+
+ [DataMember]
+ public float[] colors { get; set; }
+
+ [DataMember]
+ public bool hasVertexAlpha { get; set; }
+
+ [DataMember]
+ public int[] matricesIndices { get; set; }
+
+ [DataMember]
+ public float[] matricesWeights { get; set; }
+
+ [DataMember]
+ public int[] matricesIndicesExtra { get; set; }
+
+ [DataMember]
+ public float[] matricesWeightsExtra { get; set; }
+
+ [DataMember]
+ public int[] indices { get; set; }
+
+ [DataMember]
+ public bool receiveShadows { get; set; }
+
+ [DataMember]
+ public bool infiniteDistance { get; set; }
+
+ [DataMember]
+ public int billboardMode { get; set; }
+
+ [DataMember]
+ public float visibility { get; set; }
+
+ [DataMember]
+ public BabylonSubMesh[] subMeshes { get; set; }
+
+ [DataMember]
+ public BabylonAbstractMesh[] instances { get; set; }
+
+ [DataMember]
+ public int skeletonId { get; set; }
+
+ [DataMember]
+ public int numBoneInfluencers { get; set; }
+
+ [DataMember]
+ public bool applyFog { get; set; }
+
+ [DataMember(EmitDefaultValue = false)]
+ public int? morphTargetManagerId { get; set; }
+
+ [DataMember]
+ public string[] lodMeshIds { get; set; }
+
+ [DataMember]
+ public int[] lodDistances { get; set; }
+
+ [DataMember]
+ public float[] lodCoverages { get; set; }
+
+ public bool isDummy = false;
+
+ public List VertexDatas { get; set; } = new List();
+
+ public BabylonMesh()
+ {
+ isEnabled = true;
+ isVisible = true;
+
+ billboardMode = 0;
+
+ visibility = 1.0f;
+
+ skeletonId = -1;
+
+ pickable = true;
+
+ numBoneInfluencers = 4;
+
+ lodMeshIds = null;
+ lodCoverages = null;
+ lodDistances = null;
+
+ position = new float[] { 0, 0, 0 };
}
// sometimes the skinning weights can be a tad off between otherwise identically skinned meshes. This factor allow a variance of 5% influence.
- internal static float SkinningWeightToleranceThreshold = 0.05f;
+ internal static float SkinningWeightToleranceThreshold = 0.05f;
internal static bool MeshesShareSkin(BabylonMesh matchingSkinnedMesh, BabylonMesh babylonMesh)
@@ -141,24 +138,24 @@ internal static bool MeshesShareSkin(BabylonMesh matchingSkinnedMesh, BabylonMes
var skinDifference = babylonMesh.matricesWeights.Zip(matchingSkinnedMesh.matricesWeights, (first, second) => first - second).ToArray();
return skinDifference.All(value => Math.Abs(value) < BabylonMesh.SkinningWeightToleranceThreshold);
}
- }
-
- ///
- /// Store the data of the vertex used to extract the geometry.
- /// It used by the morph target in order to have the same vertex order between the mesh and the target.
- ///
- public class VertexData
- {
- public int polygonId { get; set; }
- public int vertexIndexGlobal { get; set; }
- public int vertexIndexLocal { get; set; }
-
- public VertexData(int _polygonId, int _vertexIndexGlobal, int _vertexIndexLocal)
- {
- polygonId = _polygonId;
- vertexIndexGlobal = _vertexIndexGlobal;
- vertexIndexLocal = _vertexIndexLocal;
- }
-
- }
-}
+ }
+
+ ///
+ /// Store the data of the vertex used to extract the geometry.
+ /// It used by the morph target in order to have the same vertex order between the mesh and the target.
+ ///
+ public class VertexData
+ {
+ public int polygonId { get; set; }
+ public int vertexIndexGlobal { get; set; }
+ public int vertexIndexLocal { get; set; }
+
+ public VertexData(int _polygonId, int _vertexIndexGlobal, int _vertexIndexLocal)
+ {
+ polygonId = _polygonId;
+ vertexIndexGlobal = _vertexIndexGlobal;
+ vertexIndexLocal = _vertexIndexLocal;
+ }
+
+ }
+}
diff --git a/SharedProjects/BabylonExport.Entities/BabylonNode.cs b/SharedProjects/BabylonExport.Entities/BabylonNode.cs
index f675e803..a0ce741e 100644
--- a/SharedProjects/BabylonExport.Entities/BabylonNode.cs
+++ b/SharedProjects/BabylonExport.Entities/BabylonNode.cs
@@ -42,7 +42,10 @@ public class BabylonNode : BabylonIAnimatable
[DataMember(EmitDefaultValue = false)]
public string tags { get; set; }
- // Animations exported for glTF but not for Babylon
+ [DataMember]
+ public Dictionary metadata { get; set; }
+
+ // Animations exported for glTF but not for Babylon
public List extraAnimations;
}
}
diff --git a/SharedProjects/BabylonExport.Entities/BabylonPBRMaterial.cs b/SharedProjects/BabylonExport.Entities/BabylonPBRMaterial.cs
index 966d722a..f44d0eac 100644
--- a/SharedProjects/BabylonExport.Entities/BabylonPBRMaterial.cs
+++ b/SharedProjects/BabylonExport.Entities/BabylonPBRMaterial.cs
@@ -133,11 +133,8 @@ public class BabylonPBRMaterial : BabylonMaterial
[DataMember]
public bool twoSidedLighting { get; set; }
- [DataMember]
- public int maxSimultaneousLights { get; set; }
-
- [DataMember]
- public float alphaCutOff { get; set; }
+ [DataMember(EmitDefaultValue = false)]
+ public float? alphaCutOff { get; set; }
[DataMember]
public int transparencyMode { get; set; }
@@ -165,7 +162,6 @@ public BabylonPBRMaterial(string id) : base(id)
cameraContrast = 1.0f;
indexOfRefraction = 0.66f;
twoSidedLighting = false;
- maxSimultaneousLights = 4;
useRadianceOverAlpha = true;
useSpecularOverAlpha = true;
usePhysicalLightFalloff = true;
@@ -190,7 +186,6 @@ public BabylonPBRMaterial(string id) : base(id)
invertNormalMapX = false;
invertNormalMapY = false;
ambientTextureStrength = 1.0f;
- alphaCutOff = 0.4f;
transparencyMode = (int)BabylonPBRMetallicRoughnessMaterial.TransparencyMode.OPAQUE;
clearCoat = new BabylonPBRClearCoat();
@@ -219,8 +214,6 @@ public BabylonPBRMaterial(BabylonPBRMetallicRoughnessMaterial origin) : base(ori
reflectivity = new[] { 1f, 1f, 1f };
reflection = new[] { 1f, 1f, 1f };
- maxSimultaneousLights = 4;
-
albedoTexture = origin.baseTexture;
alpha = origin.alpha;
alphaCutOff = origin.alphaCutOff;
diff --git a/SharedProjects/BabylonExport.Entities/BabylonPBRMetallicRoughnessMaterial.cs b/SharedProjects/BabylonExport.Entities/BabylonPBRMetallicRoughnessMaterial.cs
index aa8c54ba..4c837b71 100644
--- a/SharedProjects/BabylonExport.Entities/BabylonPBRMetallicRoughnessMaterial.cs
+++ b/SharedProjects/BabylonExport.Entities/BabylonPBRMetallicRoughnessMaterial.cs
@@ -31,9 +31,6 @@ public enum TransparencyMode
[DataMember]
public BabylonTexture metallicRoughnessTexture { get; set; }
- [DataMember]
- public int maxSimultaneousLights { get; set; }
-
[DataMember]
public bool disableLighting { get; set; }
@@ -58,8 +55,8 @@ public enum TransparencyMode
[DataMember]
public BabylonTexture occlusionTexture { get; set; }
- [DataMember]
- public float alphaCutOff { get; set; }
+ [DataMember(EmitDefaultValue = false)]
+ public float? alphaCutOff { get; set; }
[DataMember]
public int transparencyMode { get; set; }
@@ -70,15 +67,17 @@ public enum TransparencyMode
[DataMember]
public BabylonPBRClearCoat clearCoat { get; set; }
+ [DataMember(EmitDefaultValue = false)]
+ public bool _unlit { get; set; }
+
public BabylonPBRMetallicRoughnessMaterial(string id) : base(id)
{
customType = "BABYLON.PBRMetallicRoughnessMaterial";
-
- maxSimultaneousLights = 4;
+
emissive = new[] { 0f, 0f, 0f };
occlusionStrength = 1.0f;
- alphaCutOff = 0.5f;
transparencyMode = (int)TransparencyMode.OPAQUE;
+ _unlit = false;
clearCoat = new BabylonPBRClearCoat();
}
@@ -104,6 +103,7 @@ public BabylonPBRMetallicRoughnessMaterial(BabylonPBRMetallicRoughnessMaterial o
transparencyMode = original.transparencyMode;
doubleSided = original.doubleSided;
clearCoat = original.clearCoat;
+ _unlit = original._unlit;
}
}
}
diff --git a/SharedProjects/BabylonExport.Entities/BabylonStandardMaterial.cs b/SharedProjects/BabylonExport.Entities/BabylonStandardMaterial.cs
index dd7ca101..878118aa 100644
--- a/SharedProjects/BabylonExport.Entities/BabylonStandardMaterial.cs
+++ b/SharedProjects/BabylonExport.Entities/BabylonStandardMaterial.cs
@@ -74,16 +74,15 @@ public class BabylonStandardMaterial: BabylonMaterial
[DataMember]
public bool twoSidedLighting { get; set; }
- [DataMember]
- public int maxSimultaneousLights { get; set; }
-
[DataMember]
public bool useGlossinessFromSpecularMapAlpha { get; set; }
+ [DataMember(EmitDefaultValue = false)]
+ public float? alphaCutOff { get; set; }
+
// Used for gltf
public float selfIllum;
public int transparencyMode;
- public float alphaCutOff;
public BabylonStandardMaterial(string id) : base(id)
{
@@ -93,7 +92,6 @@ public BabylonStandardMaterial(string id) : base(id)
specular = new[] { 0f, 0f, 0f };
emissive = new[] { 0f, 0f, 0f };
specularPower = 25.6f; // 10%
- maxSimultaneousLights = 4;
useSpecularOverAlpha = true;
useEmissiveAsIllumination = false;
linkEmissiveWithDiffuse = false;